commit b7d888a71b768f91caf2ba98d5c43c244d091cee Author: wehub-resource-sync Date: Mon Jul 13 13:14:29 2026 +0800 chore: import upstream snapshot with attribution diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..69125e7b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,38 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: 'Type: Bug' +assignees: catenocrypt + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** + - OS: [e.g. iOS] + - Browser [e.g. chrome, safari] + - Version [e.g. 22] + +**Smartphone (please complete the following information):** + - Device: [e.g. iPhone6] + - OS: [e.g. iOS8.1] + - Browser [e.g. stock browser, safari] + - Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..ceb1199d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: 'Type: New Feature' +assignees: leedaniil + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 00000000..6fe1132b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,12 @@ +--- +name: Question +about: Any questions related to this repo +title: '' +labels: 'Type: Question' +assignees: '' + +--- + +## How can we help ? + + diff --git a/.github/assets.config.yaml b/.github/assets.config.yaml new file mode 100644 index 00000000..507e7d76 --- /dev/null +++ b/.github/assets.config.yaml @@ -0,0 +1,73 @@ +app: + log_level: "debug" + +client_urls: + binance: + dex: "https://dex.binance.org" + explorer: "https://explorer.binance.org" + assets_manager_api: "https://assets.trustwallet.com/api" + +urls: + assets_app: "https://assets-cdn.trustwallet.com" + logo: "https://trustwallet.com/assets/images/favicon.png" + +time_format: "2006-01-02T15:04:05.000000" + +validators_settings: + root_folder: + allowed_files: + - ".github" + - "blockchains" + - "dapps" + - "media" + - "node_modules" + - "script-old" + - "script" + - "test" + - ".gitignore" + - "azure-pipelines.yml" + - "jest.config.js" + - "LICENSE" + - "package-lock.json" + - "package.json" + - "README.md" + - ".git" + - ".eslintignore" + - ".eslintrc.js" + - "cmd" + - "internal" + - "go.mod" + - "go.sum" + - ".golangci.yml" + - "Makefile" + - "bin" + skip_files: + - "node_modules" + skip_dirs: + - ".git" + + chain_folder: + allowed_files: + - "assets" + - "tokenlist.json" + - "chainlist.json" + - "tokenlist-extended.json" + - "validators" + - "info" + + asset_folder: + allowed_files: + - "logo.png" + - "info.json" + + chain_info_folder: + has_files: + - "logo.png" + - "info.json" + + chain_validators_asset_folder: + has_files: + - "logo.png" + + dapps_folder: + ext: ".png" diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..e113aa8e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,29 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + # Go module dependencies + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + day: "wednesday" + open-pull-requests-limit: 3 + labels: + - "dependencies" + groups: + go-dependencies: + patterns: + - "*" + + # GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + open-pull-requests-limit: 3 + labels: + - "github-actions" diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 00000000..be5b4039 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,16 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 1 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 2 +# Issues with these labels will never be considered stale +exemptLabels: + - 'Payment Status: Paid' + - pinned + - security +# Comment to post when marking an issue as stale. Set to `false` to disable +markComment: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 00000000..ef400763 --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,31 @@ +name: Check + +on: + push: + branches: + - master + pull_request: + branches: + - master + workflow_dispatch: + +jobs: + check: + 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 check + run: make check + + - name: Unit Test + run: make test + + - name: Lint + run: make lint diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 00000000..925d6a1e --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,63 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# +name: "CodeQL" + +on: + push: + branches: [ "master" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "master" ] + schedule: + - cron: '43 20 * * 6' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'go' ] + # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] + # Use only 'java' to analyze code written in Java, Kotlin or both + # Use only 'javascript' to analyze code written in JavaScript, TypeScript or both + # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + + # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + # queries: security-extended,security-and-quality + + - name: Build assets binary + run: make build + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + with: + category: "/language:${{matrix.language}}" diff --git a/.github/workflows/upload-s3.yml b/.github/workflows/upload-s3.yml new file mode 100644 index 00000000..c6808ec5 --- /dev/null +++ b/.github/workflows/upload-s3.yml @@ -0,0 +1,61 @@ +name: Upload S3 +on: + push: + branches: + - 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 + +env: + AWS_REGION: us-east-1 + +jobs: + upload-s3: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Confiugre AWS credentials + uses: aws-actions/configure-aws-credentials@v2 + with: + role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} + aws-region: ${{ env.AWS_REGION }} + + - name: Sync to S3 + if: github.repository_owner == 'trustwallet' + shell: bash + 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 }} + + - name: Get changed files + uses: jitterbit/get-changed-files@v1 + if: github.event_name == 'push' + id: files + + - name: Filter files to invalidate + run: | + echo "::set-output name=paths::$(echo ${{ steps.files.outputs.added_modified }} | tr ' ' '\n' | grep -E 'blockchains/|dapps/' | awk '{print "/"$1}' | tr '\n' ' ')" + if: github.event_name == 'push' + id: filter + + - name: Invalidate CloudFront + if: github.repository_owner == 'trustwallet' && github.event_name == 'push' && steps.filter.outputs.paths != '' + uses: chetan/invalidate-cloudfront-action@v2 + env: + PATHS: ${{ steps.filter.outputs.paths }} + DISTRIBUTION: ${{ secrets.AWS_DISTRIBUTION }} diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..9573723c --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +**/.DS_Store +.idea +.vscode/ +*~ +*.txt +.env +.env.test +bin/ diff --git a/.golangci.yml b/.golangci.yml new file mode 100644 index 00000000..e8bdcae7 --- /dev/null +++ b/.golangci.yml @@ -0,0 +1,243 @@ +linters-settings: + cyclop: + max-complexity: 20 + # the maximal average package complexity. If it's higher than 0.0 (float) the check is enabled (default 0.0) + package-average: 0.0 + skip-tests: false + dogsled: + # checks assignments with too many blank identifiers; default is 2 + max-blank-identifiers: 2 + dupl: + threshold: 100 + errcheck: + check-type-assertions: false + check-blank: false + errorlint: + errorf: false + asserts: true + comparison: true + forbidigo: + # Forbid the following identifiers (identifiers are written using regexp): + forbid: + - ^print.*$ + - 'fmt\.Print.*' + exclude_godoc_examples: true + funlen: + lines: 60 + statements: 60 + gocognit: + min-complexity: 35 + goconst: + min-len: 3 + min-occurrences: 3 + ignore-tests: true + match-constant: true + numbers: false + min: 3 + max: 3 + ignore-calls: true + gocritic: + # Which checks should be disabled; can't be combined with 'enabled-checks' + disabled-checks: + - regexpMust + gocyclo: + min-complexity: 20 + godot: + # comments to be checked: `declarations`, `toplevel`, or `all` + scope: all + capital: false + godox: + # report any comments starting with keywords, this is useful for TODO or FIXME comments that + # might be left in the code accidentally and should be resolved before merging + keywords: + - TODO + - BUG + - FIXME + - NOTE + - OPTIMIZE # marks code that should be optimized before merging + - HACK # marks hack-arounds that should be removed before merging + gofmt: + # simplify code: gofmt with `-s` option + simplify: true + gofumpt: + # Select the Go version to target + lang-version: "1.18" + extra-rules: false + goimports: + # put imports beginning with prefix after 3rd-party packages; + # it's a comma-separated list of prefixes + local-prefixes: github.com/trustwallet + gomnd: + settings: + mnd: + # the list of enabled checks, see https://github.com/tommy-muehle/go-mnd/#checks for description. + checks: + - argument + - case + - condition + - operation + - return + - assign + ignored-numbers: 10,1000 + gomoddirectives: + replace-local: false + gosec: + # To select a subset of rules to run. + # Available rules: https://github.com/securego/gosec#available-rules + includes: + - G401 + - G306 + - G101 + gosimple: + # Select the Go version to target + go: "1.18" + # https://staticcheck.io/docs/options#checks + checks: [ "all" ] + govet: + check-shadowing: true + ifshort: + # Maximum length of variable declaration measured in number of lines, after which linter won't suggest using short syntax. + # Has higher priority than max-decl-chars. + max-decl-lines: 1 + # Maximum length of variable declaration measured in number of characters, after which linter won't suggest using short syntax. + max-decl-chars: 30 + importas: + # if set to `true`, force to use alias. + no-unaliased: true + # List of aliases + alias: + - pkg: github:com/trustwallet/go-libs/gin + alias: golibsGin + lll: + # max line length + line-length: 120 + tab-width: 1 + misspell: + locale: US + # ignore-words: + nolintlint: + # Enable to ensure that nolint directives are all used + allow-unused: false + # Disable to ensure that nolint directives don't have a leading space + allow-leading-space: true + # Exclude following linters from requiring an explanation + allow-no-explanation: [] + # Enable to require an explanation of nonzero length after each nolint directive + require-explanation: false + # Enable to require nolint directives to mention the specific linter being suppressed + require-specific: true + revive: + # see https://github.com/mgechev/revive#available-rules for details. + ignore-generated-header: true + severity: warning + rules: + - name: indent-error-flow + severity: warning + - name: time-naming + severity: warn + - name: errorf + severity: warn + - name: blank-imports + sevetiry: warn + # The error return parameter should be last + - name: error-return + severity: error + # Redundant if when returning an error + - name: if-return + severity: warn + # Warns when there are heading or trailing newlines in a block + - name: empty-lines + severity: error + staticcheck: + # Select the Go version to target + go: "1.18" + # https://staticcheck.io/docs/options#checks + checks: [ "all" ] + stylecheck: + # Select the Go version to target + go: "1.18" + # https://staticcheck.io/docs/options#checks + checks: [ "all", "-ST1000", "-ST1003", "-ST1016", "-ST1020", "-ST1021", "-ST1022" ] + # https://staticcheck.io/docs/options#dot_import_whitelist + dot-import-whitelist: + - fmt + # https://staticcheck.io/docs/options#initialisms + initialisms: [ "ACL", "API", "ASCII", "CPU", "CSS", "DNS", "EOF", "GUID", "HTML", "HTTP", "HTTPS", "ID", "IP", "JSON", "QPS", "RAM", "RPC", "SLA", "SMTP", "SQL", "SSH", "TCP", "TLS", "TTL", "UDP", "UI", "GID", "UID", "UUID", "URI", "URL", "UTF8", "VM", "XML", "XMPP", "XSRF", "XSS" ] + # https://staticcheck.io/docs/options#http_status_code_whitelist + http-status-code-whitelist: [ "200", "400", "404", "500" ] + unused: + # Select the Go version to target + go: "1.18" + whitespace: + multi-if: true # Enforces newlines (or comments) after every multi-line if statement + multi-func: false # Enforces newlines (or comments) after every multi-line function signature + wsl: + # See https://github.com/bombsimon/wsl/blob/master/doc/configuration.md for + # documentation of available settings + allow-assign-and-anything: false + allow-assign-and-call: true + allow-cuddle-declarations: false + allow-multiline-assign: true + allow-separated-leading-comment: false + allow-trailing-comment: false + force-case-trailing-whitespace: 0 + force-err-cuddling: false + force-short-decl-cuddling: false + strict-append: true + +linters: + disable-all: true + enable: + - bodyclose + - deadcode + - depguard + - dogsled + - errcheck + - exportloopref + - exhaustive + - funlen + - gochecknoinits + - goconst + - gocritic + - gocyclo + - gofmt + - goimports + # - gomnd + - goprintffuncname + - gosec + - gosimple + - govet + - ineffassign + - lll + - misspell + - nakedret + - noctx + - nolintlint + - rowserrcheck + - staticcheck + - structcheck + - stylecheck + - typecheck + - unconvert + - unparam + - unused + - varcheck + - whitespace + - asciicheck + # - gochecknoglobals + - gocognit + - godot + # - godox + # - goerr113 + # - nestif + - prealloc + # - revive + # - wsl + +output: + format: colored-line-number + print-issued-lines: true + print-linter-name: true + uniq-by-line: true + path-prefix: "" + sort-results: true \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..3a5c05c7 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019-2023 Trust Wallet + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..4ebbac00 --- /dev/null +++ b/Makefile @@ -0,0 +1,61 @@ +#! /usr/bin/make -f + +# Project variables. +VERSION := $(shell git describe --tags 2>/dev/null || git describe --all) +BUILD := $(shell git rev-parse --short HEAD) +PROJECT_NAME := $(shell basename "$(PWD)") +BUILD_TARGETS := $(shell find cmd -name \*main.go | awk -F'/' '{print $$0}') + +# Use linker flags to provide version/build settings +LDFLAGS=-ldflags "-X=main.Version=$(VERSION) -X=main.Build=$(BUILD)" + +# Make is verbose in Linux. Make it silent. +MAKEFLAGS += --silent + +# Go files. +GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor) + +# Common commands. +all: fmt lint test + +build: + @echo " > Building main.go to bin/assets" + go build $(LDFLAGS) -o bin/assets ./cmd + +test: + @echo " > Running unit tests" + go test -cover -race -coverprofile=coverage.txt -covermode=atomic -v ./... + +fmt: + @echo " > Format all go files" + gofmt -w ${GOFMT_FILES} + +lint-install: +ifeq (,$(wildcard test -f bin/golangci-lint)) + @echo " > Installing golint" + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- v1.50.1 +endif + +lint: lint-install + @echo " > Running golint" + bin/golangci-lint run --timeout=2m + +# Assets commands. +check: build + bin/assets check + +fix: build + bin/assets fix + +update-auto: build + bin/assets update-auto + +# Helper commands. +add-token: build + bin/assets add-token $(asset_id) + +add-tokenlist: build + bin/assets add-tokenlist $(asset_id) + +add-tokenlist-extended: build + bin/assets add-tokenlist-extended $(asset_id) diff --git a/README.md b/README.md new file mode 100644 index 00000000..f7f55372 --- /dev/null +++ b/README.md @@ -0,0 +1,81 @@ +# Trust Wallet Assets Info + +![Check](https://github.com/trustwallet/assets/workflows/Check/badge.svg) + +## 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_. + +
+ +## How to add token + +Please note that __brand new tokens are not accepted__, +the projects have to be sound, with information available, and __non-minimal circulation__ +(for limit details see ). + +### Assets App + +The [Assets web app](https://assets.trustwallet.com) can be used for most new token additions (Github account is needed). + +### 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. + + +## Documentation + +For details, see the [Developers site](https://developer.trustwallet.com): + +- [Contribution guidelines](https://developer.trustwallet.com/listing-new-assets/repository_details) + +- [FAQ](https://developer.trustwallet.com/listing-new-assets/faq) + +## 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. + +## 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. + +## 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. + +## 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. + +## License + +The scripts and documentation in this project are released under the [MIT License](LICENSE) diff --git a/README.wehub.md b/README.wehub.md new file mode 100644 index 00000000..d65ff287 --- /dev/null +++ b/README.wehub.md @@ -0,0 +1,7 @@ +# WeHub 来源说明 + +- 原始项目:`trustwallet/assets` +- 原始仓库:https://github.com/trustwallet/assets +- 导入方式:上游默认分支的最新快照 +- 原作者、版权和许可证信息以原始仓库及本仓库 LICENSE 为准 +- 本文件仅用于记录来源,不代表 WeHub 是原项目作者 diff --git a/blockchains/acala/info/info.json b/blockchains/acala/info/info.json new file mode 100644 index 00000000..93b8a1e8 --- /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 00000000..7b31d844 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 00000000..e78d8f86 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 00000000..92e3febb --- /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 00000000..793e015f 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 00000000..05fa4551 --- /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 00000000..b24cc964 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 00000000..986200f1 --- /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 00000000..7b31d844 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 00000000..e78d8f86 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 new file mode 100644 index 00000000..1c9c24f7 --- /dev/null +++ b/blockchains/aeternity/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Aeternity", + "website": "https://aeternity.com", + "description": "Aeternity is a blockchain platform with turing complete smart contracts. The platform implemented decentralized oracles to make it possible for decentralized applications to use real world data.", + "explorer": "https://www.aeknow.org/", + "research": "https://research.binance.com/en/projects/aeternity", + "symbol": "AE", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/aeternity" + }, + { + "name": "x", + "url": "https://x.com/aeternity" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Aeternity" + }, + { + "name": "whitepaper", + "url": "https://github.com/aeternity/white-paper/blob/master/paper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/aeternity/info/logo.png b/blockchains/aeternity/info/logo.png new file mode 100644 index 00000000..d1491704 Binary files /dev/null and b/blockchains/aeternity/info/logo.png differ diff --git a/blockchains/aeternity/info/square_logo.png b/blockchains/aeternity/info/square_logo.png new file mode 100644 index 00000000..0d21d7eb 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 new file mode 100644 index 00000000..78471509 --- /dev/null +++ b/blockchains/agoric/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Agoric", + "website": "https://agoric.com", + "description": "Agoric is a Proof-of-Stake chain utilizing Hardened JavaScript smart contracts to rapidly build and deploy DeFi.", + "explorer": "https://atomscan.com/agoric/", + "research": "", + "symbol": "BLD", + "type": "coin", + "decimals": 6, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/Agoric" + }, + { + "name": "x", + "url": "https://x.com/agoric" + }, + { + "name": "whitepaper", + "url": "https://agoric.com/wp-content/uploads/2022/08/Agoric-White-Paper-v1.1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/agoric/info/logo.png b/blockchains/agoric/info/logo.png new file mode 100644 index 00000000..6d017640 Binary files /dev/null and b/blockchains/agoric/info/logo.png differ diff --git a/blockchains/agoric/info/square_logo.png b/blockchains/agoric/info/square_logo.png new file mode 100644 index 00000000..4a02d355 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 00000000..36544b6f 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 00000000..c2cb86a4 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 00000000..ab2b2eda 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 00000000..0f6305d8 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 00000000..036eb403 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 00000000..eaf66cb5 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 00000000..e1178170 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 00000000..e5a5190b --- /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 new file mode 100644 index 00000000..d07bf687 --- /dev/null +++ b/blockchains/aion/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Aion", + "website": "https://theoan.com", + "description": "The Aion blockchain addresses the scalabilty problem. It has a bridging mechanism that makes inter-blockchain communication with data and value possible. The Aion blockchain also addresses the scalability problem with its virtual machine and enabling of applications to establish a multiple chain connection.", + "explorer": "https://mainnet.aion.network", + "research": "https://research.binance.com/en/projects/aion", + "symbol": "AION", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/aionnetwork" + }, + { + "name": "x", + "url": "https://x.com/Aion_OAN" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AionNetwork" + }, + { + "name": "whitepaper", + "url": "https://aion.network/developers/#whitepapers" + } + ] +} \ No newline at end of file diff --git a/blockchains/aion/info/logo.png b/blockchains/aion/info/logo.png new file mode 100644 index 00000000..6ff87c53 Binary files /dev/null and b/blockchains/aion/info/logo.png differ diff --git a/blockchains/aion/info/square_logo.png b/blockchains/aion/info/square_logo.png new file mode 100644 index 00000000..a1235b90 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 new file mode 100644 index 00000000..993c8349 --- /dev/null +++ b/blockchains/akash/info/info.json @@ -0,0 +1,31 @@ +{ + "name": "Akash Network", + "type": "coin", + "symbol": "AKT", + "decimals": 6, + "website": "https://akash.network/", + "description": "The world first decentralized open source cloud, and DeCloud for DeFi, built with the Cosmos SDK.", + "explorer": "https://www.mintscan.io/akash", + "status": "active", + "rpc_url": "https://akash-rpc.polkachu.com/", + "denom": "uakt", + "lcd_url": "https://akash-api.polkachu.com/", + "hrp": "akash", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/akash-network" + }, + { + "name": "whitepaper", + "url": "https://docs.akash.network/" + }, + { + "name": "x", + "url": "https://x.com/akashnet_" + } + ] +} \ No newline at end of file diff --git a/blockchains/akash/info/logo.png b/blockchains/akash/info/logo.png new file mode 100644 index 00000000..8c96414a Binary files /dev/null and b/blockchains/akash/info/logo.png differ diff --git a/blockchains/akash/info/square_logo.png b/blockchains/akash/info/square_logo.png new file mode 100644 index 00000000..e00728b4 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 00000000..d0388df6 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 00000000..eaf66cb5 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 00000000..9b28ec00 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 00000000..e1178170 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 00000000..8a7efc94 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 00000000..bed02519 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 00000000..9dff7bbe 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 00000000..c53de065 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 00000000..10205271 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 00000000..02916372 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 00000000..f9f1f5be 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 00000000..48eaf9ad 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 00000000..c2cb86a4 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 00000000..ea99248c --- /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 new file mode 100644 index 00000000..d5233d61 --- /dev/null +++ b/blockchains/algorand/assets/137594422/info.json @@ -0,0 +1,32 @@ +{ + "name": "HEADLINE", + "website": "https://www.headline-inc.com", + "description": "HEADLINE is the Algoramd utility token that powers AlgoCloud, FORUM, Vaults Protocol, and much more. HDL is developed by HEADLINE Crypto, the premier dev toolkit builder on the Algorand blockchain.", + "explorer": "https://algoexplorer.io/asset/137594422", + "id": "137594422", + "symbol": "HDL", + "type": "ASA", + "decimals": 6, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/headline-design" + }, + { + "name": "x", + "url": "https://x.com/headline_crypto" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/headlinecrypto" + }, + { + "name": "whitepaper", + "url": "https://www.headline-inc.com/files/white-paper.pdf" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/algorand/assets/137594422/logo.png b/blockchains/algorand/assets/137594422/logo.png new file mode 100644 index 00000000..f2e90322 Binary files /dev/null and b/blockchains/algorand/assets/137594422/logo.png differ diff --git a/blockchains/algorand/assets/312769/info.json b/blockchains/algorand/assets/312769/info.json new file mode 100644 index 00000000..a45a0c68 --- /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 00000000..b873452b 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 00000000..d563abd1 --- /dev/null +++ b/blockchains/algorand/assets/31566704/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://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 00000000..b74fafb2 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 new file mode 100644 index 00000000..d8833315 --- /dev/null +++ b/blockchains/algorand/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Algorand", + "website": "http://algorand.foundation", + "description": "Algorand is the first blockchain to provide immediate transaction finality. No forking. No uncertainty. Algorand removes the technical barriers that for years undermined mainstream blockchain adoption: decentralization, scale, and security.", + "explorer": "https://algoexplorer.io/", + "research": "https://research.binance.com/en/projects/algorand", + "symbol": "ALGO", + "type": "coin", + "decimals": 6, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/algorand" + }, + { + "name": "x", + "url": "https://x.com/AlgoFoundation" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AlgorandOfficial" + }, + { + "name": "whitepaper", + "url": "https://www.algorand.com/resources/white-papers/" + } + ] +} \ No newline at end of file diff --git a/blockchains/algorand/info/logo.png b/blockchains/algorand/info/logo.png new file mode 100644 index 00000000..55dcdc8b Binary files /dev/null and b/blockchains/algorand/info/logo.png differ diff --git a/blockchains/algorand/info/square_logo.png b/blockchains/algorand/info/square_logo.png new file mode 100644 index 00000000..72be4577 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 00000000..87942cd1 --- /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 US dollar and backed by U.S. treasuries, dollar deposits, and other cash equivalents.", + "website": "https://www.worldlibertyfinancial.com/", + "explorer": "https://explorer.aptoslabs.com", + "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 00000000..444ccb65 Binary files /dev/null and b/blockchains/aptos/assets/0x05fabd1b12e39967a3c24e91b7b8f67719a6dacee74f3c8b9fb7d93e855437d2/logo.png differ diff --git a/blockchains/aptos/assets/0x1000000fa32d122c18a6a31c009ce5e71674f22d06a581bb0a15575e6addadcc::usda::USDA/info.json b/blockchains/aptos/assets/0x1000000fa32d122c18a6a31c009ce5e71674f22d06a581bb0a15575e6addadcc::usda::USDA/info.json new file mode 100644 index 00000000..4e3815b6 --- /dev/null +++ b/blockchains/aptos/assets/0x1000000fa32d122c18a6a31c009ce5e71674f22d06a581bb0a15575e6addadcc::usda::USDA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Argo USD", + "symbol": "USDA", + "decimals": 6, + "website": "https://argo.fi/", + "status": "active", + "id": "0x1000000fa32d122c18a6a31c009ce5e71674f22d06a581bb0a15575e6addadcc::usda::USDA", + "tags": [ + "stablecoin" + ] + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0x1000000fa32d122c18a6a31c009ce5e71674f22d06a581bb0a15575e6addadcc::usda::USDA/logo.png b/blockchains/aptos/assets/0x1000000fa32d122c18a6a31c009ce5e71674f22d06a581bb0a15575e6addadcc::usda::USDA/logo.png new file mode 100644 index 00000000..adea4a50 Binary files /dev/null and b/blockchains/aptos/assets/0x1000000fa32d122c18a6a31c009ce5e71674f22d06a581bb0a15575e6addadcc::usda::USDA/logo.png differ diff --git a/blockchains/aptos/assets/0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6::oft::CakeOFT/info.json b/blockchains/aptos/assets/0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6::oft::CakeOFT/info.json new file mode 100644 index 00000000..a886cadb --- /dev/null +++ b/blockchains/aptos/assets/0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6::oft::CakeOFT/info.json @@ -0,0 +1,34 @@ +{ + "name": "PancakeSwap Token", + "symbol": "CAKE", + "decimals": 8, + "website": "https://pancakeswap.finance", + "status": "active", + "description": "PancakeSwap is a yield farming project whereby users can get FLIP for staking and get CAKE token as reward. CAKE holders can swap CAKE for SYRUP for additional incentivized staking.", + "id": "0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6%3A%3Aoft%3A%3ACakeOFT", + "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/coins/pancakeswap-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6::oft::CakeOFT/logo.png b/blockchains/aptos/assets/0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6::oft::CakeOFT/logo.png new file mode 100644 index 00000000..685fbc42 Binary files /dev/null and b/blockchains/aptos/assets/0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6::oft::CakeOFT/logo.png differ diff --git a/blockchains/aptos/assets/0x1f9dca8eb42832b9ea07a804d745ef08833051e0c75c45b82665ef6f6e7fac32::coin::T/info.json b/blockchains/aptos/assets/0x1f9dca8eb42832b9ea07a804d745ef08833051e0c75c45b82665ef6f6e7fac32::coin::T/info.json new file mode 100644 index 00000000..8e48ff58 --- /dev/null +++ b/blockchains/aptos/assets/0x1f9dca8eb42832b9ea07a804d745ef08833051e0c75c45b82665ef6f6e7fac32::coin::T/info.json @@ -0,0 +1,7 @@ + { + "name": "Nexum Coin", + "symbol": "NEXM", + "decimals": 8, + "status": "active", + "id": "0x1f9dca8eb42832b9ea07a804d745ef08833051e0c75c45b82665ef6f6e7fac32::coin::T" + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0x1f9dca8eb42832b9ea07a804d745ef08833051e0c75c45b82665ef6f6e7fac32::coin::T/logo.png b/blockchains/aptos/assets/0x1f9dca8eb42832b9ea07a804d745ef08833051e0c75c45b82665ef6f6e7fac32::coin::T/logo.png new file mode 100644 index 00000000..cf3a1c5b Binary files /dev/null and b/blockchains/aptos/assets/0x1f9dca8eb42832b9ea07a804d745ef08833051e0c75c45b82665ef6f6e7fac32::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0x2305dd96edd8debb5a2049be54379c74e61b37ceb54a49bd7dee4726d2a6b689::coin::T/info.json b/blockchains/aptos/assets/0x2305dd96edd8debb5a2049be54379c74e61b37ceb54a49bd7dee4726d2a6b689::coin::T/info.json new file mode 100644 index 00000000..c321fa5b --- /dev/null +++ b/blockchains/aptos/assets/0x2305dd96edd8debb5a2049be54379c74e61b37ceb54a49bd7dee4726d2a6b689::coin::T/info.json @@ -0,0 +1,7 @@ + { + "name": "SushiToken (Wormhole)", + "symbol": "SUSHI", + "decimals": 8, + "status": "active", + "id": "0x2305dd96edd8debb5a2049be54379c74e61b37ceb54a49bd7dee4726d2a6b689::coin::T" + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0x2305dd96edd8debb5a2049be54379c74e61b37ceb54a49bd7dee4726d2a6b689::coin::T/logo.png b/blockchains/aptos/assets/0x2305dd96edd8debb5a2049be54379c74e61b37ceb54a49bd7dee4726d2a6b689::coin::T/logo.png new file mode 100644 index 00000000..c6d7d72c Binary files /dev/null and b/blockchains/aptos/assets/0x2305dd96edd8debb5a2049be54379c74e61b37ceb54a49bd7dee4726d2a6b689::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b/info.json b/blockchains/aptos/assets/0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b/info.json new file mode 100644 index 00000000..de82e4d7 --- /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/0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b/logo.png b/blockchains/aptos/assets/0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b/logo.png new file mode 100644 index 00000000..0c62f4bc Binary files /dev/null and b/blockchains/aptos/assets/0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b/logo.png differ diff --git a/blockchains/aptos/assets/0x394205c024d8e932832deef4cbfc7d3bb17ff2e9dc184fa9609405c2836b94aa::coin::T/info.json b/blockchains/aptos/assets/0x394205c024d8e932832deef4cbfc7d3bb17ff2e9dc184fa9609405c2836b94aa::coin::T/info.json new file mode 100644 index 00000000..c81787b6 --- /dev/null +++ b/blockchains/aptos/assets/0x394205c024d8e932832deef4cbfc7d3bb17ff2e9dc184fa9609405c2836b94aa::coin::T/info.json @@ -0,0 +1,7 @@ +{ + "name": "NEAR (Wormhole)", + "symbol": "NEAR", + "decimals": 8, + "status": "active", + "id": "0x394205c024d8e932832deef4cbfc7d3bb17ff2e9dc184fa9609405c2836b94aa::coin::T" + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0x394205c024d8e932832deef4cbfc7d3bb17ff2e9dc184fa9609405c2836b94aa::coin::T/logo.png b/blockchains/aptos/assets/0x394205c024d8e932832deef4cbfc7d3bb17ff2e9dc184fa9609405c2836b94aa::coin::T/logo.png new file mode 100644 index 00000000..d9044fff Binary files /dev/null and b/blockchains/aptos/assets/0x394205c024d8e932832deef4cbfc7d3bb17ff2e9dc184fa9609405c2836b94aa::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0x39d84c2af3b0c9895b45d4da098049e382c451ba63bec0ce0396ff7af4bb5dff::coin::T/info.json b/blockchains/aptos/assets/0x39d84c2af3b0c9895b45d4da098049e382c451ba63bec0ce0396ff7af4bb5dff::coin::T/info.json new file mode 100644 index 00000000..c1d855df --- /dev/null +++ b/blockchains/aptos/assets/0x39d84c2af3b0c9895b45d4da098049e382c451ba63bec0ce0396ff7af4bb5dff::coin::T/info.json @@ -0,0 +1,10 @@ +{ + "name": "USD Coin (Wormhole Avalanche)", + "symbol": "USDCav", + "decimals": 6, + "status": "active", + "id": "0x39d84c2af3b0c9895b45d4da098049e382c451ba63bec0ce0396ff7af4bb5dff::coin::T", + "tags": [ + "stablecoin" + ] + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0x39d84c2af3b0c9895b45d4da098049e382c451ba63bec0ce0396ff7af4bb5dff::coin::T/logo.png b/blockchains/aptos/assets/0x39d84c2af3b0c9895b45d4da098049e382c451ba63bec0ce0396ff7af4bb5dff::coin::T/logo.png new file mode 100644 index 00000000..91ab8336 Binary files /dev/null and b/blockchains/aptos/assets/0x39d84c2af3b0c9895b45d4da098049e382c451ba63bec0ce0396ff7af4bb5dff::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0x407a220699982ebb514568d007938d2447d33667e4418372ffec1ddb24491b6c::coin::T/info.json b/blockchains/aptos/assets/0x407a220699982ebb514568d007938d2447d33667e4418372ffec1ddb24491b6c::coin::T/info.json new file mode 100644 index 00000000..e1a3a0ed --- /dev/null +++ b/blockchains/aptos/assets/0x407a220699982ebb514568d007938d2447d33667e4418372ffec1ddb24491b6c::coin::T/info.json @@ -0,0 +1,10 @@ + { + "name": "Dai Stablecoin (Wormhole)", + "symbol": "DAI", + "decimals": 8, + "status": "active", + "id": "0x407a220699982ebb514568d007938d2447d33667e4418372ffec1ddb24491b6c::coin::T", + "tags": [ + "stablecoin" + ] + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0x407a220699982ebb514568d007938d2447d33667e4418372ffec1ddb24491b6c::coin::T/logo.png b/blockchains/aptos/assets/0x407a220699982ebb514568d007938d2447d33667e4418372ffec1ddb24491b6c::coin::T/logo.png new file mode 100644 index 00000000..abe22674 Binary files /dev/null and b/blockchains/aptos/assets/0x407a220699982ebb514568d007938d2447d33667e4418372ffec1ddb24491b6c::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0x419d16ebaeda8dc374b1178a61d24fb699799d55a3f475f427998769c537b51b::coin::T/info.json b/blockchains/aptos/assets/0x419d16ebaeda8dc374b1178a61d24fb699799d55a3f475f427998769c537b51b::coin::T/info.json new file mode 100644 index 00000000..e6429365 --- /dev/null +++ b/blockchains/aptos/assets/0x419d16ebaeda8dc374b1178a61d24fb699799d55a3f475f427998769c537b51b::coin::T/info.json @@ -0,0 +1,7 @@ + { + "name": "FTX Token", + "symbol": "FTT", + "decimals": 8, + "status": "active", + "id": "0x419d16ebaeda8dc374b1178a61d24fb699799d55a3f475f427998769c537b51b::coin::T" + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0x419d16ebaeda8dc374b1178a61d24fb699799d55a3f475f427998769c537b51b::coin::T/logo.png b/blockchains/aptos/assets/0x419d16ebaeda8dc374b1178a61d24fb699799d55a3f475f427998769c537b51b::coin::T/logo.png new file mode 100644 index 00000000..9f6dfe02 Binary files /dev/null and b/blockchains/aptos/assets/0x419d16ebaeda8dc374b1178a61d24fb699799d55a3f475f427998769c537b51b::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0x5b1bbc25524d41b17a95dac402cf2f584f56400bf5cc06b53c36b331b1ec6e8f::coin::T/info.json b/blockchains/aptos/assets/0x5b1bbc25524d41b17a95dac402cf2f584f56400bf5cc06b53c36b331b1ec6e8f::coin::T/info.json new file mode 100644 index 00000000..ad5395ab --- /dev/null +++ b/blockchains/aptos/assets/0x5b1bbc25524d41b17a95dac402cf2f584f56400bf5cc06b53c36b331b1ec6e8f::coin::T/info.json @@ -0,0 +1,10 @@ + { + "name": "Wrapped AVAX (Wormhole)", + "symbol": "WAVAX", + "decimals": 8, + "status": "active", + "id": "0x5b1bbc25524d41b17a95dac402cf2f584f56400bf5cc06b53c36b331b1ec6e8f::coin::T", + "tags": [ + "wrapped" + ] + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0x5b1bbc25524d41b17a95dac402cf2f584f56400bf5cc06b53c36b331b1ec6e8f::coin::T/logo.png b/blockchains/aptos/assets/0x5b1bbc25524d41b17a95dac402cf2f584f56400bf5cc06b53c36b331b1ec6e8f::coin::T/logo.png new file mode 100644 index 00000000..91446ba9 Binary files /dev/null and b/blockchains/aptos/assets/0x5b1bbc25524d41b17a95dac402cf2f584f56400bf5cc06b53c36b331b1ec6e8f::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf::Aptoge::Aptoge/info.json b/blockchains/aptos/assets/0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf::Aptoge::Aptoge/info.json new file mode 100644 index 00000000..2e965748 --- /dev/null +++ b/blockchains/aptos/assets/0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf::Aptoge::Aptoge/info.json @@ -0,0 +1,8 @@ +{ + "name": "Aptoge", + "symbol": "APTOGE", + "decimals": 6, + "website": "https://aptoge.com", + "status": "active", + "id": "0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf::Aptoge::Aptoge" +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf::Aptoge::Aptoge/logo.png b/blockchains/aptos/assets/0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf::Aptoge::Aptoge/logo.png new file mode 100644 index 00000000..9e02c444 Binary files /dev/null and b/blockchains/aptos/assets/0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf::Aptoge::Aptoge/logo.png differ diff --git a/blockchains/aptos/assets/0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea::coin::T/info.json b/blockchains/aptos/assets/0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea::coin::T/info.json new file mode 100644 index 00000000..d9e9e505 --- /dev/null +++ b/blockchains/aptos/assets/0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea::coin::T/info.json @@ -0,0 +1,10 @@ +{ + "name": "USD Coin (Wormhole)", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea::coin::T", + "tags": [ + "stablecoin" + ] + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea::coin::T/logo.png b/blockchains/aptos/assets/0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea::coin::T/logo.png new file mode 100644 index 00000000..ca171792 Binary files /dev/null and b/blockchains/aptos/assets/0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0x6312bc0a484bc4e37013befc9949df2d7c8a78e01c6fe14a34018449d136ba86::coin::T/info.json b/blockchains/aptos/assets/0x6312bc0a484bc4e37013befc9949df2d7c8a78e01c6fe14a34018449d136ba86::coin::T/info.json new file mode 100644 index 00000000..5c7a35c3 --- /dev/null +++ b/blockchains/aptos/assets/0x6312bc0a484bc4e37013befc9949df2d7c8a78e01c6fe14a34018449d136ba86::coin::T/info.json @@ -0,0 +1,10 @@ +{ + "name": "Wrapped BNB (Wormhole)", + "symbol": "WBNB", + "decimals": 8, + "status": "active", + "id": "0x6312bc0a484bc4e37013befc9949df2d7c8a78e01c6fe14a34018449d136ba86::coin::T", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0x6312bc0a484bc4e37013befc9949df2d7c8a78e01c6fe14a34018449d136ba86::coin::T/logo.png b/blockchains/aptos/assets/0x6312bc0a484bc4e37013befc9949df2d7c8a78e01c6fe14a34018449d136ba86::coin::T/logo.png new file mode 100644 index 00000000..6157eefc Binary files /dev/null and b/blockchains/aptos/assets/0x6312bc0a484bc4e37013befc9949df2d7c8a78e01c6fe14a34018449d136ba86::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0x79a6ed7a0607fdad2d18d67d1a0e552d4b09ebce5951f1e5c851732c02437595::coin::T/info.json b/blockchains/aptos/assets/0x79a6ed7a0607fdad2d18d67d1a0e552d4b09ebce5951f1e5c851732c02437595::coin::T/info.json new file mode 100644 index 00000000..65779fac --- /dev/null +++ b/blockchains/aptos/assets/0x79a6ed7a0607fdad2d18d67d1a0e552d4b09ebce5951f1e5c851732c02437595::coin::T/info.json @@ -0,0 +1,10 @@ + { + "name": "USD Coin (Wormhole, BSC)", + "symbol": "USDCbs", + "decimals": 8, + "status": "active", + "id": "0x79a6ed7a0607fdad2d18d67d1a0e552d4b09ebce5951f1e5c851732c02437595::coin::T", + "tags": [ + "stablecoin" + ] + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0x79a6ed7a0607fdad2d18d67d1a0e552d4b09ebce5951f1e5c851732c02437595::coin::T/logo.png b/blockchains/aptos/assets/0x79a6ed7a0607fdad2d18d67d1a0e552d4b09ebce5951f1e5c851732c02437595::coin::T/logo.png new file mode 100644 index 00000000..7599e827 Binary files /dev/null and b/blockchains/aptos/assets/0x79a6ed7a0607fdad2d18d67d1a0e552d4b09ebce5951f1e5c851732c02437595::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114::staked_aptos_coin::StakedAptosCoin/info.json b/blockchains/aptos/assets/0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114::staked_aptos_coin::StakedAptosCoin/info.json new file mode 100644 index 00000000..365dca35 --- /dev/null +++ b/blockchains/aptos/assets/0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114::staked_aptos_coin::StakedAptosCoin/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tortuga Staked Aptos", + "symbol": "tAPT", + "decimals": 8, + "website": "https://tortuga.finance/", + "status": "active", + "id": "0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114::staked_aptos_coin::StakedAptosCoin", + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114::staked_aptos_coin::StakedAptosCoin/logo.png b/blockchains/aptos/assets/0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114::staked_aptos_coin::StakedAptosCoin/logo.png new file mode 100644 index 00000000..55226a4d Binary files /dev/null and b/blockchains/aptos/assets/0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114::staked_aptos_coin::StakedAptosCoin/logo.png differ diff --git a/blockchains/aptos/assets/0x881ac202b1f1e6ad4efcff7a1d0579411533f2502417a19211cfc49751ddb5f4::coin::MOJO/info.json b/blockchains/aptos/assets/0x881ac202b1f1e6ad4efcff7a1d0579411533f2502417a19211cfc49751ddb5f4::coin::MOJO/info.json new file mode 100644 index 00000000..dcdc96cc --- /dev/null +++ b/blockchains/aptos/assets/0x881ac202b1f1e6ad4efcff7a1d0579411533f2502417a19211cfc49751ddb5f4::coin::MOJO/info.json @@ -0,0 +1,8 @@ +{ + "name": "Mojito", + "symbol": "MOJO", + "decimals": 8, + "website": "https://www.mojito.markets/", + "status": "active", + "id": "0x881ac202b1f1e6ad4efcff7a1d0579411533f2502417a19211cfc49751ddb5f4::coin::MOJO" + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0x881ac202b1f1e6ad4efcff7a1d0579411533f2502417a19211cfc49751ddb5f4::coin::MOJO/logo.png b/blockchains/aptos/assets/0x881ac202b1f1e6ad4efcff7a1d0579411533f2502417a19211cfc49751ddb5f4::coin::MOJO/logo.png new file mode 100644 index 00000000..cafce215 Binary files /dev/null and b/blockchains/aptos/assets/0x881ac202b1f1e6ad4efcff7a1d0579411533f2502417a19211cfc49751ddb5f4::coin::MOJO/logo.png differ diff --git a/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BnbCoin/info.json b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BnbCoin/info.json new file mode 100644 index 00000000..0c0082d0 --- /dev/null +++ b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BnbCoin/info.json @@ -0,0 +1,8 @@ +{ + "name": "Binance Coin (Celer)", + "symbol": "ceBNB", + "decimals": 8, + "website": "https://celer.network", + "status": "active", + "id": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BnbCoin" +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BnbCoin/logo.png b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BnbCoin/logo.png new file mode 100644 index 00000000..aa5b2178 Binary files /dev/null and b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BnbCoin/logo.png differ diff --git a/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BusdCoin/info.json b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BusdCoin/info.json new file mode 100644 index 00000000..7c8a9a52 --- /dev/null +++ b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BusdCoin/info.json @@ -0,0 +1,11 @@ +{ + "name": "Binance USD (Celer)", + "symbol": "ceBUSD", + "decimals": 8, + "website": "https://celer.network", + "status": "active", + "id": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BusdCoin", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BusdCoin/logo.png b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BusdCoin/logo.png new file mode 100644 index 00000000..e6bb8fa7 Binary files /dev/null and b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BusdCoin/logo.png differ diff --git a/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::DaiCoin/info.json b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::DaiCoin/info.json new file mode 100644 index 00000000..815172a3 --- /dev/null +++ b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::DaiCoin/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dai Stablecoin (Celer)", + "symbol": "ceDAI", + "decimals": 8, + "website": "https://celer.network", + "status": "active", + "id": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::DaiCoin", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::DaiCoin/logo.png b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::DaiCoin/logo.png new file mode 100644 index 00000000..668bc9fe Binary files /dev/null and b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::DaiCoin/logo.png differ diff --git a/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdcCoin/info.json b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdcCoin/info.json new file mode 100644 index 00000000..9bef8c15 --- /dev/null +++ b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdcCoin/info.json @@ -0,0 +1,11 @@ +{ + "name": "USD Coin (Celer)", + "symbol": "ceUSDC", + "decimals": 6, + "website": "https://celer.network", + "status": "active", + "id": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdcCoin", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdcCoin/logo.png b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdcCoin/logo.png new file mode 100644 index 00000000..9eaca0ce Binary files /dev/null and b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdcCoin/logo.png differ diff --git a/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdtCoin/info.json b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdtCoin/info.json new file mode 100644 index 00000000..d539f8e8 --- /dev/null +++ b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdtCoin/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tether USD (Celer)", + "symbol": "ceUSDT", + "decimals": 6, + "website": "https://celer.network", + "status": "active", + "id": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdtCoin", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdtCoin/logo.png b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdtCoin/logo.png new file mode 100644 index 00000000..3612b539 Binary files /dev/null and b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdtCoin/logo.png differ diff --git a/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WbtcCoin/info.json b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WbtcCoin/info.json new file mode 100644 index 00000000..15f9a59c --- /dev/null +++ b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WbtcCoin/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped BTC (Celer)", + "symbol": "ceWBTC", + "decimals": 8, + "website": "https://celer.network", + "status": "active", + "id": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WbtcCoin", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WbtcCoin/logo.png b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WbtcCoin/logo.png new file mode 100644 index 00000000..e30d0e1a Binary files /dev/null and b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WbtcCoin/logo.png differ diff --git a/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WethCoin/info.json b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WethCoin/info.json new file mode 100644 index 00000000..2dc4b1cd --- /dev/null +++ b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WethCoin/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped Ether (Celer)", + "symbol": "ceWETH", + "decimals": 8, + "website": "https://celer.network", + "status": "active", + "id": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WethCoin", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WethCoin/logo.png b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WethCoin/logo.png new file mode 100644 index 00000000..8a4e7fe8 Binary files /dev/null and b/blockchains/aptos/assets/0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WethCoin/logo.png differ diff --git a/blockchains/aptos/assets/0x9aa4c03344444b53f4d9b1bca229ed2ac47504e3ea6cd0683ebdc0c5ecefd693::coin::T/info.json b/blockchains/aptos/assets/0x9aa4c03344444b53f4d9b1bca229ed2ac47504e3ea6cd0683ebdc0c5ecefd693::coin::T/info.json new file mode 100644 index 00000000..9a708416 --- /dev/null +++ b/blockchains/aptos/assets/0x9aa4c03344444b53f4d9b1bca229ed2ac47504e3ea6cd0683ebdc0c5ecefd693::coin::T/info.json @@ -0,0 +1,7 @@ +{ + "name": "SWEAT", + "symbol": "SWEAT", + "decimals": 8, + "status": "active", + "id": "0x9aa4c03344444b53f4d9b1bca229ed2ac47504e3ea6cd0683ebdc0c5ecefd693::coin::T" +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0x9aa4c03344444b53f4d9b1bca229ed2ac47504e3ea6cd0683ebdc0c5ecefd693::coin::T/logo.png b/blockchains/aptos/assets/0x9aa4c03344444b53f4d9b1bca229ed2ac47504e3ea6cd0683ebdc0c5ecefd693::coin::T/logo.png new file mode 100644 index 00000000..ac359368 Binary files /dev/null and b/blockchains/aptos/assets/0x9aa4c03344444b53f4d9b1bca229ed2ac47504e3ea6cd0683ebdc0c5ecefd693::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T/info.json b/blockchains/aptos/assets/0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T/info.json new file mode 100644 index 00000000..146d5b88 --- /dev/null +++ b/blockchains/aptos/assets/0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T/info.json @@ -0,0 +1,10 @@ +{ + "name": "Tether USD (Wormhole)", + "symbol": "USDT", + "decimals": 6, + "status": "abandoned", + "id": "0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T", + "tags": [ + "stablecoin" + ] + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0xac0c3c35d50f6ef00e3b4db6998732fe9ed6331384925fe8ec95fcd7745a9112::coin::T/info.json b/blockchains/aptos/assets/0xac0c3c35d50f6ef00e3b4db6998732fe9ed6331384925fe8ec95fcd7745a9112::coin::T/info.json new file mode 100644 index 00000000..2672c326 --- /dev/null +++ b/blockchains/aptos/assets/0xac0c3c35d50f6ef00e3b4db6998732fe9ed6331384925fe8ec95fcd7745a9112::coin::T/info.json @@ -0,0 +1,7 @@ +{ + "name": "Celo (Wormhole)", + "symbol": "CELO", + "decimals": 8, + "status": "active", + "id": "0xac0c3c35d50f6ef00e3b4db6998732fe9ed6331384925fe8ec95fcd7745a9112::coin::T" + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0xac0c3c35d50f6ef00e3b4db6998732fe9ed6331384925fe8ec95fcd7745a9112::coin::T/logo.png b/blockchains/aptos/assets/0xac0c3c35d50f6ef00e3b4db6998732fe9ed6331384925fe8ec95fcd7745a9112::coin::T/logo.png new file mode 100644 index 00000000..e7079903 Binary files /dev/null and b/blockchains/aptos/assets/0xac0c3c35d50f6ef00e3b4db6998732fe9ed6331384925fe8ec95fcd7745a9112::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T/info.json b/blockchains/aptos/assets/0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T/info.json new file mode 100644 index 00000000..bbeec2e9 --- /dev/null +++ b/blockchains/aptos/assets/0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T/info.json @@ -0,0 +1,11 @@ +{ + "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/0xae478ff7d83ed072dbc5e264250e67ef58f57c99d89b447efd8a0a2e8b2be76e::coin::T/info.json b/blockchains/aptos/assets/0xae478ff7d83ed072dbc5e264250e67ef58f57c99d89b447efd8a0a2e8b2be76e::coin::T/info.json new file mode 100644 index 00000000..3446b9a8 --- /dev/null +++ b/blockchains/aptos/assets/0xae478ff7d83ed072dbc5e264250e67ef58f57c99d89b447efd8a0a2e8b2be76e::coin::T/info.json @@ -0,0 +1,10 @@ + { + "name": "Wrapped BTC (Wormhole)", + "symbol": "WBTC", + "decimals": 8, + "status": "active", + "id": "0xae478ff7d83ed072dbc5e264250e67ef58f57c99d89b447efd8a0a2e8b2be76e::coin::T", + "tags": [ + "wrapped" + ] + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0xae478ff7d83ed072dbc5e264250e67ef58f57c99d89b447efd8a0a2e8b2be76e::coin::T/logo.png b/blockchains/aptos/assets/0xae478ff7d83ed072dbc5e264250e67ef58f57c99d89b447efd8a0a2e8b2be76e::coin::T/logo.png new file mode 100644 index 00000000..4480eb3d Binary files /dev/null and b/blockchains/aptos/assets/0xae478ff7d83ed072dbc5e264250e67ef58f57c99d89b447efd8a0a2e8b2be76e::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b/info.json b/blockchains/aptos/assets/0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b/info.json new file mode 100644 index 00000000..36db13a7 --- /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 00000000..2e9267c1 Binary files /dev/null and b/blockchains/aptos/assets/0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b/logo.png differ diff --git a/blockchains/aptos/assets/0xc7160b1c2415d19a88add188ec726e62aab0045f0aed798106a2ef2994a9101e::coin::T/info.json b/blockchains/aptos/assets/0xc7160b1c2415d19a88add188ec726e62aab0045f0aed798106a2ef2994a9101e::coin::T/info.json new file mode 100644 index 00000000..60f45c44 --- /dev/null +++ b/blockchains/aptos/assets/0xc7160b1c2415d19a88add188ec726e62aab0045f0aed798106a2ef2994a9101e::coin::T/info.json @@ -0,0 +1,10 @@ + { + "name": "USD Coin (Wormhole Polygon)", + "symbol": "USDCpo", + "decimals": 6, + "status": "active", + "id": "0xc7160b1c2415d19a88add188ec726e62aab0045f0aed798106a2ef2994a9101e::coin::T", + "tags": [ + "stablecoin" + ] + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0xc7160b1c2415d19a88add188ec726e62aab0045f0aed798106a2ef2994a9101e::coin::T/logo.png b/blockchains/aptos/assets/0xc7160b1c2415d19a88add188ec726e62aab0045f0aed798106a2ef2994a9101e::coin::T/logo.png new file mode 100644 index 00000000..a8488229 Binary files /dev/null and b/blockchains/aptos/assets/0xc7160b1c2415d19a88add188ec726e62aab0045f0aed798106a2ef2994a9101e::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0xc91d826e29a3183eb3b6f6aa3a722089fdffb8e9642b94c5fcd4c48d035c0080::coin::T/info.json b/blockchains/aptos/assets/0xc91d826e29a3183eb3b6f6aa3a722089fdffb8e9642b94c5fcd4c48d035c0080::coin::T/info.json new file mode 100644 index 00000000..68eb2c8c --- /dev/null +++ b/blockchains/aptos/assets/0xc91d826e29a3183eb3b6f6aa3a722089fdffb8e9642b94c5fcd4c48d035c0080::coin::T/info.json @@ -0,0 +1,10 @@ +{ + "name": "USD Coin (Wormhole Solana)", + "symbol": "USDCso", + "decimals": 6, + "status": "active", + "id": "0xc91d826e29a3183eb3b6f6aa3a722089fdffb8e9642b94c5fcd4c48d035c0080::coin::T", + "tags": [ + "stablecoin" + ] + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0xc91d826e29a3183eb3b6f6aa3a722089fdffb8e9642b94c5fcd4c48d035c0080::coin::T/logo.png b/blockchains/aptos/assets/0xc91d826e29a3183eb3b6f6aa3a722089fdffb8e9642b94c5fcd4c48d035c0080::coin::T/logo.png new file mode 100644 index 00000000..ca9eb708 Binary files /dev/null and b/blockchains/aptos/assets/0xc91d826e29a3183eb3b6f6aa3a722089fdffb8e9642b94c5fcd4c48d035c0080::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0xcc8a89c8dce9693d354449f1f73e60e14e347417854f029db5bc8e7454008abb::coin::T/info.json b/blockchains/aptos/assets/0xcc8a89c8dce9693d354449f1f73e60e14e347417854f029db5bc8e7454008abb::coin::T/info.json new file mode 100644 index 00000000..33ea7c71 --- /dev/null +++ b/blockchains/aptos/assets/0xcc8a89c8dce9693d354449f1f73e60e14e347417854f029db5bc8e7454008abb::coin::T/info.json @@ -0,0 +1,10 @@ +{ + "name": "Wrapped Ether (Wormhole)", + "symbol": "WETH", + "decimals": 8, + "status": "active", + "id": "0xcc8a89c8dce9693d354449f1f73e60e14e347417854f029db5bc8e7454008abb::coin::T", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0xcc8a89c8dce9693d354449f1f73e60e14e347417854f029db5bc8e7454008abb::coin::T/logo.png b/blockchains/aptos/assets/0xcc8a89c8dce9693d354449f1f73e60e14e347417854f029db5bc8e7454008abb::coin::T/logo.png new file mode 100644 index 00000000..e19aa6eb Binary files /dev/null and b/blockchains/aptos/assets/0xcc8a89c8dce9693d354449f1f73e60e14e347417854f029db5bc8e7454008abb::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0xccc9620d38c4f3991fa68a03ad98ef3735f18d04717cb75d7a1300dd8a7eed75::coin::T/info.json b/blockchains/aptos/assets/0xccc9620d38c4f3991fa68a03ad98ef3735f18d04717cb75d7a1300dd8a7eed75::coin::T/info.json new file mode 100644 index 00000000..fa659a70 --- /dev/null +++ b/blockchains/aptos/assets/0xccc9620d38c4f3991fa68a03ad98ef3735f18d04717cb75d7a1300dd8a7eed75::coin::T/info.json @@ -0,0 +1,10 @@ +{ + "name": "BUSD Token (Wormhole)", + "symbol": "BUSD", + "decimals": 8, + "status": "active", + "id": "0xccc9620d38c4f3991fa68a03ad98ef3735f18d04717cb75d7a1300dd8a7eed75::coin::T", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0xccc9620d38c4f3991fa68a03ad98ef3735f18d04717cb75d7a1300dd8a7eed75::coin::T/logo.png b/blockchains/aptos/assets/0xccc9620d38c4f3991fa68a03ad98ef3735f18d04717cb75d7a1300dd8a7eed75::coin::T/logo.png new file mode 100644 index 00000000..ee48d107 Binary files /dev/null and b/blockchains/aptos/assets/0xccc9620d38c4f3991fa68a03ad98ef3735f18d04717cb75d7a1300dd8a7eed75::coin::T/logo.png differ diff --git a/blockchains/aptos/assets/0xcefd39b563951a9ec2670aa57086f9adb3493671368ea60ff99e0bc98f697bb5::coin::T/info.json b/blockchains/aptos/assets/0xcefd39b563951a9ec2670aa57086f9adb3493671368ea60ff99e0bc98f697bb5::coin::T/info.json new file mode 100644 index 00000000..a15f734c --- /dev/null +++ b/blockchains/aptos/assets/0xcefd39b563951a9ec2670aa57086f9adb3493671368ea60ff99e0bc98f697bb5::coin::T/info.json @@ -0,0 +1,7 @@ + { + "name": "Chain", + "symbol": "XCN", + "decimals": 8, + "status": "active", + "id": "0xcefd39b563951a9ec2670aa57086f9adb3493671368ea60ff99e0bc98f697bb5::coin::T" + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0xcefd39b563951a9ec2670aa57086f9adb3493671368ea60ff99e0bc98f697bb5::coin::T/logo.png b/blockchains/aptos/assets/0xcefd39b563951a9ec2670aa57086f9adb3493671368ea60ff99e0bc98f697bb5::coin::T/logo.png new file mode 100644 index 00000000..b1cf2ef5 Binary files /dev/null and b/blockchains/aptos/assets/0xcefd39b563951a9ec2670aa57086f9adb3493671368ea60ff99e0bc98f697bb5::coin::T/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 new file mode 100644 index 00000000..4ec3dfcb --- /dev/null +++ b/blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ditto Staked Aptos", + "symbol": "stAPT", + "decimals": 8, + "website": "https://celer.network", + "status": "active", + "id": "0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos", + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos/logo.png b/blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos/logo.png new file mode 100644 index 00000000..7b98f95b Binary files /dev/null and b/blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos/logo.png differ diff --git a/blockchains/aptos/assets/0xdd89c0e695df0692205912fb69fc290418bed0dbe6e4573d744a6d5e6bab6c13::coin::T/info.json b/blockchains/aptos/assets/0xdd89c0e695df0692205912fb69fc290418bed0dbe6e4573d744a6d5e6bab6c13::coin::T/info.json new file mode 100644 index 00000000..f60e2616 --- /dev/null +++ b/blockchains/aptos/assets/0xdd89c0e695df0692205912fb69fc290418bed0dbe6e4573d744a6d5e6bab6c13::coin::T/info.json @@ -0,0 +1,7 @@ +{ + "name": "SOL (Wormhole)", + "symbol": "SOL", + "decimals": 8, + "status": "active", + "id": "0xdd89c0e695df0692205912fb69fc290418bed0dbe6e4573d744a6d5e6bab6c13::coin::T" +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0xdd89c0e695df0692205912fb69fc290418bed0dbe6e4573d744a6d5e6bab6c13::coin::T/logo.png b/blockchains/aptos/assets/0xdd89c0e695df0692205912fb69fc290418bed0dbe6e4573d744a6d5e6bab6c13::coin::T/logo.png new file mode 100644 index 00000000..dceed0bf Binary files /dev/null and b/blockchains/aptos/assets/0xdd89c0e695df0692205912fb69fc290418bed0dbe6e4573d744a6d5e6bab6c13::coin::T/logo.png differ 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 00000000..86e50ed5 --- /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 00000000..d5454d31 Binary files /dev/null and b/blockchains/aptos/assets/0xe4ccb6d39136469f376242c31b34d10515c8eaaa38092f804db8e08a8f53c5b2::assets_v1::EchoCoin002/logo.png differ diff --git a/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC/info.json b/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC/info.json new file mode 100644 index 00000000..494927c5 --- /dev/null +++ b/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC/info.json @@ -0,0 +1,10 @@ +{ + "name": "USD Coin (LayerZero)", + "symbol": "zUSDC", + "decimals": 6, + "status": "active", + "id": "0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC", + "tags": [ + "stablecoin" + ] + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC/logo.png b/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC/logo.png new file mode 100644 index 00000000..0a00d263 Binary files /dev/null and b/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC/logo.png differ diff --git a/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDT/info.json b/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDT/info.json new file mode 100644 index 00000000..301ef63d --- /dev/null +++ b/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDT/info.json @@ -0,0 +1,10 @@ +{ + "name": "USD Tether (LayerZero)", + "symbol": "zUSDT", + "decimals": 6, + "status": "active", + "id": "0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDT", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDT/logo.png b/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDT/logo.png new file mode 100644 index 00000000..ddc7b003 Binary files /dev/null and b/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDT/logo.png differ diff --git a/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::WETH/info.json b/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::WETH/info.json new file mode 100644 index 00000000..0e4e8177 --- /dev/null +++ b/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::WETH/info.json @@ -0,0 +1,10 @@ +{ + "name": "Wrapped Ether (LayerZero)", + "symbol": "zWETH", + "decimals": 6, + "status": "active", + "id": "0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::WETH", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::WETH/logo.png b/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::WETH/logo.png new file mode 100644 index 00000000..50620647 Binary files /dev/null and b/blockchains/aptos/assets/0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::WETH/logo.png differ diff --git a/blockchains/aptos/info/info.json b/blockchains/aptos/info/info.json new file mode 100644 index 00000000..071b4a18 --- /dev/null +++ b/blockchains/aptos/info/info.json @@ -0,0 +1,36 @@ +{ + "name": "Aptos", + "website": "https://aptoslabs.com", + "description": "Building the safest and most scalable Layer 1 blockchain.", + "explorer": "https://explorer.aptoslabs.com", + "symbol": "APT", + "type": "coin", + "decimals": 8, + "status": "active", + "tags": [ + "defi", + "dapp" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/aptoslabs" + }, + { + "name": "github", + "url": "https://github.com/aptoslabs" + }, + { + "name": "discord", + "url": "https://discord.com/invite/aptoslabs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/aptos/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/aptos/" + } + ] +} \ No newline at end of file diff --git a/blockchains/aptos/info/logo.png b/blockchains/aptos/info/logo.png new file mode 100644 index 00000000..d57a7212 Binary files /dev/null and b/blockchains/aptos/info/logo.png differ diff --git a/blockchains/aptos/info/square_logo.png b/blockchains/aptos/info/square_logo.png new file mode 100644 index 00000000..13074da3 Binary files /dev/null and b/blockchains/aptos/info/square_logo.png differ diff --git a/blockchains/aptos/validators/assets/0x8f396e4246b2ba87b51c0739ef5ea4f26515a98375308c31ac2ec1e42142a57f/logo.png b/blockchains/aptos/validators/assets/0x8f396e4246b2ba87b51c0739ef5ea4f26515a98375308c31ac2ec1e42142a57f/logo.png new file mode 100644 index 00000000..b1fde1e9 Binary files /dev/null and b/blockchains/aptos/validators/assets/0x8f396e4246b2ba87b51c0739ef5ea4f26515a98375308c31ac2ec1e42142a57f/logo.png differ diff --git a/blockchains/aptos/validators/list.json b/blockchains/aptos/validators/list.json new file mode 100644 index 00000000..51db7ed2 --- /dev/null +++ b/blockchains/aptos/validators/list.json @@ -0,0 +1,8 @@ +[ + { + "id": "0x8f396e4246b2ba87b51c0739ef5ea4f26515a98375308c31ac2ec1e42142a57f", + "name": "Tortuga Finance", + "description": "Tortuga issues tAPT (Tortuga Staked APT) which allows you to stay staked while participating in the Aptos DeFi ecosystem.", + "website": "https://tortuga.finance" + } +] diff --git a/blockchains/arbitrum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json b/blockchains/arbitrum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json new file mode 100644 index 00000000..d1448f79 --- /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 00000000..b41ffbfb 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 00000000..649ff083 --- /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 00000000..759db2e9 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 00000000..18d42686 --- /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 00000000..bd3cb317 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 00000000..bee433aa --- /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 00000000..a0fd0bd2 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 00000000..e210e88c --- /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 00000000..dbf1b942 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 00000000..05110b52 --- /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 00000000..c58ac57e 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 00000000..e5c1afe9 --- /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 00000000..e8b83366 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 00000000..d78198f4 --- /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 00000000..af7129b1 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 00000000..e748bb03 --- /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 00000000..156b8acc 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 00000000..aa3929b5 --- /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 00000000..70683dfd 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 new file mode 100644 index 00000000..34929aaf --- /dev/null +++ b/blockchains/arbitrum/assets/0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8/info.json @@ -0,0 +1,28 @@ +{ + "name": "Balancer", + "website": "https://balancer.finance/", + "description": "Balancer is an automated portfolio manager and trading platform.", + "explorer": "https://arbiscan.io/token/0x040d1edc9569d4bab2d15287dc5a4f10f56a56b8", + "type": "ARBITRUM", + "symbol": "BAL", + "decimals": 18, + "status": "active", + "id": "0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/balancer-labs" + }, + { + "name": "x", + "url": "https://x.com/BalancerLabs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/balancer/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8/logo.png b/blockchains/arbitrum/assets/0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8/logo.png new file mode 100644 index 00000000..56f9d83a Binary files /dev/null and b/blockchains/arbitrum/assets/0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8/logo.png differ diff --git a/blockchains/arbitrum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json b/blockchains/arbitrum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json new file mode 100644 index 00000000..614f0f19 --- /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 00000000..861002db 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 00000000..dd8809ae --- /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 00000000..1759e67f 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 00000000..bdf88512 --- /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 00000000..72db0bd9 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 new file mode 100644 index 00000000..dfa07a20 --- /dev/null +++ b/blockchains/arbitrum/assets/0x080F6AEd32Fc474DD5717105Dba5ea57268F46eb/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://arbiscan.io/token/0x080f6aed32fc474dd5717105dba5ea57268f46eb", + "type": "ARBITRUM", + "symbol": "SYN", + "decimals": 18, + "status": "active", + "id": "0x080F6AEd32Fc474DD5717105Dba5ea57268F46eb", + "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/arbitrum/assets/0x080F6AEd32Fc474DD5717105Dba5ea57268F46eb/logo.png b/blockchains/arbitrum/assets/0x080F6AEd32Fc474DD5717105Dba5ea57268F46eb/logo.png new file mode 100644 index 00000000..577673c4 Binary files /dev/null and b/blockchains/arbitrum/assets/0x080F6AEd32Fc474DD5717105Dba5ea57268F46eb/logo.png differ diff --git a/blockchains/arbitrum/assets/0x088cd8f5eF3652623c22D48b1605DCfE860Cd704/info.json b/blockchains/arbitrum/assets/0x088cd8f5eF3652623c22D48b1605DCfE860Cd704/info.json new file mode 100644 index 00000000..41b159d5 --- /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 00000000..824f91c2 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 00000000..9148fb3e --- /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 00000000..ef4c4544 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 00000000..e18ca279 --- /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 00000000..e2179b00 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 00000000..caddd922 --- /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 00000000..afa7fedd 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 00000000..f9566dde --- /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 00000000..f938a108 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 00000000..e1da61ea --- /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 00000000..c089d4f9 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 00000000..5c52dc1b --- /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 00000000..075eb49f 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 00000000..09d1011e --- /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/arbitrum/assets/0x11cDb42B0EB46D95f990BeDD4695A6e3fA034978/logo.png b/blockchains/arbitrum/assets/0x11cDb42B0EB46D95f990BeDD4695A6e3fA034978/logo.png new file mode 100644 index 00000000..b820f250 Binary files /dev/null and b/blockchains/arbitrum/assets/0x11cDb42B0EB46D95f990BeDD4695A6e3fA034978/logo.png differ diff --git a/blockchains/arbitrum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json b/blockchains/arbitrum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json new file mode 100644 index 00000000..e9e1093e --- /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 00000000..1add0de4 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 00000000..4d8d623b --- /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 00000000..40889bdf 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 00000000..451804ed --- /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 00000000..2b7f52ad 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 00000000..857d59c3 --- /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 00000000..e9f3bc92 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 00000000..99e1bb6d --- /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 00000000..bf2de834 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 00000000..864b3434 --- /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 00000000..9051b3f3 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 00000000..ca687f82 --- /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 00000000..27057e35 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 00000000..344b803a --- /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 00000000..d432b14f 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 00000000..0a487ec5 --- /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 00000000..8522e440 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 00000000..89d11c29 --- /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 00000000..762d2dd3 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 new file mode 100644 index 00000000..4316bab2 --- /dev/null +++ b/blockchains/arbitrum/assets/0x18c11FD286C5EC11c3b683Caa813B77f5163A122/info.json @@ -0,0 +1,52 @@ +{ + "name": "Gains Network", + "type": "ARBITRUM", + "symbol": "GNS", + "decimals": 18, + "website": "https://gains.trade/", + "description": "Gains Network is developing the next-gen decentralized leveraged trading platform - gTrade.", + "explorer": "https://arbiscan.io/token/0x18c11FD286C5EC11c3b683Caa813B77f5163A122", + "status": "active", + "id": "0x18c11FD286C5EC11c3b683Caa813B77f5163A122", + "links": [ + { + "name": "telegram", + "url": "https://t.me/GainsNetwork" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gains-network/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gains-network/" + }, + { + "name": "whitepaper", + "url": "https://gains-network.gitbook.io/docs-home/" + }, + { + "name": "docs", + "url": "https://gains-network.gitbook.io/docs-home/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/gains-network" + }, + { + "name": "github", + "url": "https://github.com/GainsNetwork/" + }, + { + "name": "blog", + "url": "https://medium.com/gains-network" + }, + { + "name": "x", + "url": "https://x.com/GainsNetwork_io" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x18c11FD286C5EC11c3b683Caa813B77f5163A122/logo.png b/blockchains/arbitrum/assets/0x18c11FD286C5EC11c3b683Caa813B77f5163A122/logo.png new file mode 100644 index 00000000..a7d79ca8 Binary files /dev/null and b/blockchains/arbitrum/assets/0x18c11FD286C5EC11c3b683Caa813B77f5163A122/logo.png differ diff --git a/blockchains/arbitrum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json b/blockchains/arbitrum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json new file mode 100644 index 00000000..7d59aa01 --- /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 00000000..59de8858 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 00000000..adb7c049 --- /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 00000000..8c6b118c 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 00000000..f570b1cd --- /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 00000000..1407faec 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 00000000..bf8c78db --- /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 00000000..c35598c6 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 00000000..e714759f --- /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 00000000..a1e0daff 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 00000000..df087cc2 --- /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 00000000..7cb78c52 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 00000000..3025abf9 --- /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 00000000..169fc4bb 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 00000000..ce822e52 --- /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 00000000..d5d61a9c --- /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 00000000..e1836e9f 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 00000000..7a9b110c --- /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 00000000..72cd9e09 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 00000000..367a8d48 --- /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 00000000..30817f4f 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 00000000..56eed68a --- /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 00000000..11bbde89 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 00000000..28cc6190 --- /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 00000000..85a92734 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 new file mode 100644 index 00000000..f566295b --- /dev/null +++ b/blockchains/arbitrum/assets/0x23A941036Ae778Ac51Ab04CEa08Ed6e2FE103614/info.json @@ -0,0 +1,37 @@ +{ + "name": "The Graph", + "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://arbiscan.io/token/0x23a941036ae778ac51ab04cea08ed6e2fe103614", + "research": "https://github.com/graphprotocol/research", + "type": "ARBITRUM", + "symbol": "GRT", + "decimals": 18, + "status": "abandoned", + "id": "0x23A941036Ae778Ac51Ab04CEa08Ed6e2FE103614", + "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/arbitrum/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json b/blockchains/arbitrum/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json new file mode 100644 index 00000000..e8e09bc3 --- /dev/null +++ b/blockchains/arbitrum/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json @@ -0,0 +1,68 @@ +{ + "name": "Axelar", + "type": "ARBITRUM", + "symbol": "AXL", + "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://arbiscan.io/token/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f", + "status": "active", + "id": "0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f", + "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" + }, + { + "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/axelar/" + }, + { + "name": "blog", + "url": "https://axelar.network/blog" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Axelarcore" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/logo.png b/blockchains/arbitrum/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/logo.png new file mode 100644 index 00000000..6c156aba Binary files /dev/null and b/blockchains/arbitrum/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/logo.png differ diff --git a/blockchains/arbitrum/assets/0x266E5923F6118F8b340cA5a23AE7f71897361476/info.json b/blockchains/arbitrum/assets/0x266E5923F6118F8b340cA5a23AE7f71897361476/info.json new file mode 100644 index 00000000..c32b1532 --- /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 00000000..02774d0b 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 00000000..dbc647a2 --- /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 00000000..89ea00eb 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 00000000..5bf8f09c --- /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 00000000..702d64a2 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 00000000..59f9ef8e --- /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 00000000..e555fa9b 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 new file mode 100644 index 00000000..0b7d47c3 --- /dev/null +++ b/blockchains/arbitrum/assets/0x3082CC23568eA640225c2467653dB90e9250AaA0/info.json @@ -0,0 +1,32 @@ +{ + "name": "Radiant", + "type": "ARBITRUM", + "symbol": "RDNT", + "decimals": 18, + "website": "https://app.radiant.capital/", + "description": "$RDNT, an OFT-20, is Radiant's native utility token. Radiant Capital is an omnichain money market built atop Layer Zero. Deposit and borrow assets cross-chain, seamlessly. Through decentralized discussions, voting, and governance, the Radiant DAO determines the decisions, and, ultimately, the vision of the Radiant ecosystem.", + "explorer": "https://arbiscan.io/token/0x3082CC23568eA640225c2467653dB90e9250AaA0", + "status": "active", + "id": "0x3082CC23568eA640225c2467653dB90e9250AaA0", + "links": [ + { + "name": "github", + "url": "https://github.com/radiant-capital" + }, + { + "name": "x", + "url": "https://x.com/RDNTCapital" + }, + { + "name": "discord", + "url": "https://discord.com/invite/radiantcapital" + }, + { + "name": "telegram", + "url": "https://t.me/radiantcapitalofficial" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3082CC23568eA640225c2467653dB90e9250AaA0/logo.png b/blockchains/arbitrum/assets/0x3082CC23568eA640225c2467653dB90e9250AaA0/logo.png new file mode 100644 index 00000000..61eec068 Binary files /dev/null and b/blockchains/arbitrum/assets/0x3082CC23568eA640225c2467653dB90e9250AaA0/logo.png differ diff --git a/blockchains/arbitrum/assets/0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386/info.json b/blockchains/arbitrum/assets/0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386/info.json new file mode 100644 index 00000000..424499cb --- /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 00000000..84493019 --- /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 00000000..c358f4e9 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 00000000..ff34eabb --- /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 00000000..3e359ad5 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 new file mode 100644 index 00000000..0cfd5db7 --- /dev/null +++ b/blockchains/arbitrum/assets/0x319f865b287fCC10b30d8cE6144e8b6D1b476999/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cartesi", + "type": "ARBITRUM", + "symbol": "CTSI", + "decimals": 18, + "website": "https://cartesi.io/", + "description": "Cartesi, The Blockchain OS, is a layer-2 platform for the development and deployment of scalable decentralized applications. The Blockchain OS offers a Linux operating system coupled with a blockchain infrastructure.", + "explorer": "https://arbiscan.io/token/0x319f865b287fCC10b30d8cE6144e8b6D1b476999", + "status": "active", + "id": "0x319f865b287fCC10b30d8cE6144e8b6D1b476999", + "links": [ + { + "name": "telegram", + "url": "https://t.me/cartesiproject" + }, + { + "name": "x", + "url": "https://x.com/cartesiproject" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x319f865b287fCC10b30d8cE6144e8b6D1b476999/logo.png b/blockchains/arbitrum/assets/0x319f865b287fCC10b30d8cE6144e8b6D1b476999/logo.png new file mode 100644 index 00000000..41911a04 Binary files /dev/null and b/blockchains/arbitrum/assets/0x319f865b287fCC10b30d8cE6144e8b6D1b476999/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json b/blockchains/arbitrum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json new file mode 100644 index 00000000..affff6a8 --- /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 00000000..4e802b83 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 00000000..0f5f7599 --- /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 00000000..1b179f11 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 00000000..cd5425b7 --- /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 00000000..18f94a8e 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 00000000..29d993f6 --- /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 00000000..76a44d36 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 00000000..bc0508ef --- /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 00000000..00db496a 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 00000000..49cc57f3 --- /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 00000000..c3916659 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 new file mode 100644 index 00000000..58ddf2ae --- /dev/null +++ b/blockchains/arbitrum/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json @@ -0,0 +1,25 @@ +{ + "name": "JOE", + "symbol": "JOE", + "type": "ARBITRUM", + "decimals": 18, + "description": "One-stop Decentralized Trading on Avalanche.", + "website": "https://traderjoexyz.com/", + "explorer": "https://arbiscan.io/token/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07", + "status": "active", + "id": "0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07", + "links": [ + { + "name": "x", + "url": "https://x.com/traderjoe_xyz" + }, + { + "name": "telegram", + "url": "https://t.me/traderjoe_xyz" + }, + { + "name": "github", + "url": "https://github.com/traderjoe-xyz/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/logo.png b/blockchains/arbitrum/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/logo.png new file mode 100644 index 00000000..7cf47068 Binary files /dev/null and b/blockchains/arbitrum/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/logo.png differ diff --git a/blockchains/arbitrum/assets/0x37a645648dF29205C6261289983FB04ECD70b4B3/info.json b/blockchains/arbitrum/assets/0x37a645648dF29205C6261289983FB04ECD70b4B3/info.json new file mode 100644 index 00000000..d8a01568 --- /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 00000000..a1311b72 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 00000000..e605192d --- /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 00000000..e437be04 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 00000000..f06a0aff --- /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 00000000..1407faec 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 00000000..d35392cf --- /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 00000000..c34f31c6 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 00000000..2ba7c00d --- /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 00000000..88e9ab8f 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 00000000..2627cdab --- /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 00000000..44c060c1 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 00000000..f21ce021 --- /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 00000000..fc7438b7 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 00000000..ce4f5b53 --- /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 00000000..80b9ebb6 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 00000000..bab913ad --- /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 00000000..52dc3ec3 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 00000000..c98d1e8b --- /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 00000000..dc44bcce 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 00000000..4bded06b --- /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 00000000..fff441f8 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 00000000..cf8a857c --- /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 00000000..0ae989c4 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 00000000..a4b25c29 --- /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 00000000..44c118da 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 00000000..be447684 --- /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 00000000..803702a5 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 00000000..8a937968 --- /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 00000000..55633083 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 00000000..9d5c9070 --- /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 00000000..637fe091 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 00000000..26caea7d --- /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 00000000..ad320471 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 00000000..4e6233e8 --- /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 00000000..05861150 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 00000000..87141846 --- /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 00000000..bd835bcb 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 00000000..4cd3f9d5 --- /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 00000000..d060b979 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 00000000..b751ec01 --- /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 00000000..fc5f5be1 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 00000000..cb88e740 --- /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 00000000..a937d858 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 00000000..615fc082 --- /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 00000000..ee172cac 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 new file mode 100644 index 00000000..028eec7f --- /dev/null +++ b/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/info.json @@ -0,0 +1,28 @@ +{ + "name": "Kortana", + "type": "ARBITRUM", + "symbol": "KORA", + "decimals": 18, + "website": "https://kortanalegacy.com/", + "description": "Kortana Legacy is a 3rd-person shooter game that allows players to earn financial rewards through betting. With fast-paced action and competitive gameplay, players can stake their cryptocurrency to win big while battling it out in immersive, high-stakes battles.", + "explorer": "https://arbiscan.io/token/0x50e401255275dc405a99d3281f396cca681eea9d", + "status": "active", + "id": "0x50E401255275dc405A99d3281f396cCa681eEa9d", + "links": [ + { + "name": "x", + "url": "https://x.com/KortanaLegacy" + }, + { + "name": "telegram", + "url": "https://t.me/KortanaLegacyOFFICIAL" + }, + { + "name": "whitepaper", + "url": "https://kortanalegacy.com/wp-content/uploads/2023/05/KORTANA-LEGACY-WHITEPAPER-1.pdf" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/logo.png b/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/logo.png new file mode 100644 index 00000000..f20a797d Binary files /dev/null and b/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/logo.png differ diff --git a/blockchains/arbitrum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json b/blockchains/arbitrum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json new file mode 100644 index 00000000..9edde87a --- /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 00000000..29c2803e 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 00000000..65b599af --- /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 00000000..43ad8fab 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 00000000..80147918 --- /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 00000000..cf1609ac 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 00000000..e3ef9809 --- /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 00000000..16844a45 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 00000000..d972559b --- /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 00000000..8179bd11 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 00000000..feff37a7 --- /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 00000000..d7049660 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 00000000..3c407b07 --- /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 00000000..b24148bc 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 00000000..56ad6373 --- /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 00000000..149d2563 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 00000000..4291b29b --- /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 00000000..409e4ece 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 00000000..9a34819c --- /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 00000000..64c06ffd --- /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 00000000..be5c8241 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 00000000..03e9cb9a --- /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 00000000..b2b272f0 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 00000000..8dc2329b --- /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 00000000..98eba57c 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 00000000..36d211fb --- /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 00000000..fdfa7369 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 00000000..f66540d1 --- /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 00000000..d5946212 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 00000000..76686149 --- /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 00000000..63a3758a 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 00000000..3e0acaea --- /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 00000000..188c34df 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 00000000..edfa1795 --- /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 00000000..2757f36e 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 00000000..97885f90 --- /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 00000000..a9a0af06 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 00000000..66d4c7c9 --- /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 00000000..e3647bea Binary files /dev/null and b/blockchains/arbitrum/assets/0x6491c05A82219b8D1479057361ff1654749b876b/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6694340fc020c5E6B96567843da2df01b2CE1eb6/info.json b/blockchains/arbitrum/assets/0x6694340fc020c5E6B96567843da2df01b2CE1eb6/info.json new file mode 100644 index 00000000..0638d130 --- /dev/null +++ b/blockchains/arbitrum/assets/0x6694340fc020c5E6B96567843da2df01b2CE1eb6/info.json @@ -0,0 +1,32 @@ +{ + "name": "Stargate", + "type": "ARBITRUM", + "symbol": "STG", + "decimals": 18, + "website": "https://stargate.finance/", + "description": "Stargate is a fully composable liquidity transport protocol.", + "explorer": "https://arbiscan.io/token/0x6694340fc020c5e6b96567843da2df01b2ce1eb6", + "status": "active", + "id": "0x6694340fc020c5E6B96567843da2df01b2CE1eb6", + "links": [ + { + "name": "telegram", + "url": "https://t.me/joinchat/LEM0ELklmO1kODdh" + }, + { + "name": "whitepaper", + "url": "https://stargateprotocol.gitbook.io/stargate/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/stargate-finance/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stargate-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6694340fc020c5E6B96567843da2df01b2CE1eb6/logo.png b/blockchains/arbitrum/assets/0x6694340fc020c5E6B96567843da2df01b2CE1eb6/logo.png new file mode 100644 index 00000000..49d61fc7 Binary files /dev/null and b/blockchains/arbitrum/assets/0x6694340fc020c5E6B96567843da2df01b2CE1eb6/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/arbitrum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 00000000..96a41da6 --- /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 00000000..203a846c 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 00000000..24bfcd5b --- /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 00000000..3e5c7496 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 00000000..51dc645b --- /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 00000000..67c369c2 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 new file mode 100644 index 00000000..91af1fc3 --- /dev/null +++ b/blockchains/arbitrum/assets/0x6C2C06790b3E3E3c38e12Ee22F8183b37a13EE55/info.json @@ -0,0 +1,25 @@ +{ + "name": "Dopex Governance Token", + "symbol": "DPX", + "type": "ARBITRUM", + "decimals": 18, + "description": "DPX - vanilla governance and protocol fee accrual token", + "website": "https://www.dopex.io/", + "explorer": "https://arbiscan.io/token/0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55", + "status": "active", + "id": "0x6C2C06790b3E3E3c38e12Ee22F8183b37a13EE55", + "links": [ + { + "name": "x", + "url": "https://x.com/dopex_io" + }, + { + "name": "github", + "url": "https://github.com/dopex-io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dopex/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6C2C06790b3E3E3c38e12Ee22F8183b37a13EE55/logo.png b/blockchains/arbitrum/assets/0x6C2C06790b3E3E3c38e12Ee22F8183b37a13EE55/logo.png new file mode 100644 index 00000000..780df35d Binary files /dev/null and b/blockchains/arbitrum/assets/0x6C2C06790b3E3E3c38e12Ee22F8183b37a13EE55/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json b/blockchains/arbitrum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json new file mode 100644 index 00000000..38f01a51 --- /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 00000000..857fe690 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 00000000..bc54ccd1 --- /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 00000000..ffecf414 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 00000000..0badea6d --- /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 00000000..585138b8 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 00000000..b5d1b720 --- /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 00000000..da0a1030 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 00000000..5e265583 --- /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 00000000..5968d83b 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 00000000..5a170dab --- /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 00000000..7bf6c55a 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 00000000..905c2152 --- /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 00000000..45d47b8b 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 00000000..3e090c5d --- /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 00000000..64519f76 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 00000000..7afbaa19 --- /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 00000000..a49ae723 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 00000000..18ac5c99 --- /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 00000000..ef21853a 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 00000000..e1678378 --- /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 00000000..c43b8397 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 00000000..9e0bf66e --- /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 00000000..8b13cfa7 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 00000000..7ee7fafa --- /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 00000000..d56fc9d8 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 00000000..0f020861 --- /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 00000000..8a2f11bb 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 00000000..bad4339c --- /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 00000000..a3cdfb7f 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 00000000..87c3358c --- /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/0x82aF49447D8a07e3bd95BD0d56f35241523fBab1/info.json b/blockchains/arbitrum/assets/0x82aF49447D8a07e3bd95BD0d56f35241523fBab1/info.json new file mode 100644 index 00000000..af518bac --- /dev/null +++ b/blockchains/arbitrum/assets/0x82aF49447D8a07e3bd95BD0d56f35241523fBab1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped Ether", + "type": "ARBITRUM", + "symbol": "WETH", + "decimals": 18, + "website": "https://weth.io/", + "description": "wETH is wrapped ETH", + "explorer": "https://arbiscan.io/token/0x82af49447d8a07e3bd95bd0d56f35241523fbab1", + "status": "active", + "id": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1", + "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/arbitrum/assets/0x82aF49447D8a07e3bd95BD0d56f35241523fBab1/logo.png b/blockchains/arbitrum/assets/0x82aF49447D8a07e3bd95BD0d56f35241523fBab1/logo.png new file mode 100644 index 00000000..5ebf2888 Binary files /dev/null and b/blockchains/arbitrum/assets/0x82aF49447D8a07e3bd95BD0d56f35241523fBab1/logo.png differ diff --git a/blockchains/arbitrum/assets/0x82e3A8F066a6989666b031d916c43672085b1582/info.json b/blockchains/arbitrum/assets/0x82e3A8F066a6989666b031d916c43672085b1582/info.json new file mode 100644 index 00000000..01690505 --- /dev/null +++ b/blockchains/arbitrum/assets/0x82e3A8F066a6989666b031d916c43672085b1582/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://arbiscan.io/token/0x82e3A8F066a6989666b031d916c43672085b1582", + "research": "https://research.binance.com/en/projects/yearnfinance", + "type": "ARBITRUM", + "symbol": "YFI", + "decimals": 18, + "status": "active", + "id": "0x82e3A8F066a6989666b031d916c43672085b1582", + "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/arbitrum/assets/0x82e3A8F066a6989666b031d916c43672085b1582/logo.png b/blockchains/arbitrum/assets/0x82e3A8F066a6989666b031d916c43672085b1582/logo.png new file mode 100644 index 00000000..eaf09484 Binary files /dev/null and b/blockchains/arbitrum/assets/0x82e3A8F066a6989666b031d916c43672085b1582/logo.png differ diff --git a/blockchains/arbitrum/assets/0x847503FbF003cE8B005546Aa3c03B80b7C2F9771/info.json b/blockchains/arbitrum/assets/0x847503FbF003cE8B005546Aa3c03B80b7C2F9771/info.json new file mode 100644 index 00000000..1480d8e7 --- /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 00000000..637961cf 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 00000000..601042fd --- /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 00000000..5cd9068d 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 00000000..d50cd4e1 --- /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 00000000..64a8d40c 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 00000000..81d08674 --- /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 00000000..c82cd60e 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 00000000..d0692655 --- /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 00000000..5028dbfc 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 00000000..730fcd47 --- /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 00000000..d9bf1609 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 00000000..4602397a --- /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 00000000..a2c0d185 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 00000000..6393f708 --- /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 00000000..63973551 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 00000000..92ec9663 --- /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 00000000..c4ee269a 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 new file mode 100644 index 00000000..0da942ad --- /dev/null +++ b/blockchains/arbitrum/assets/0x912CE59144191C1204E64559FE8253a0e49E6548/info.json @@ -0,0 +1,29 @@ +{ + "name": "Arbitrum", + "type": "ARBITRUM", + "symbol": "ARB", + "decimals": 18, + "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://arbiscan.io/token/0x912ce59144191c1204e64559fe8253a0e49e6548", + "status": "active", + "id": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "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/arbitrum/assets/0x912CE59144191C1204E64559FE8253a0e49E6548/logo.png b/blockchains/arbitrum/assets/0x912CE59144191C1204E64559FE8253a0e49E6548/logo.png new file mode 100644 index 00000000..5402ed6b Binary files /dev/null and b/blockchains/arbitrum/assets/0x912CE59144191C1204E64559FE8253a0e49E6548/logo.png differ diff --git a/blockchains/arbitrum/assets/0x93E62845C1DD5822EbC807ab71A5Fb750DecD15A/info.json b/blockchains/arbitrum/assets/0x93E62845C1DD5822EbC807ab71A5Fb750DecD15A/info.json new file mode 100644 index 00000000..7331e411 --- /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 00000000..83524596 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 00000000..e8ab19af --- /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 00000000..a3a12d74 --- /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 00000000..a404e19b 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 00000000..d3455e6b --- /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 00000000..02341173 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 new file mode 100644 index 00000000..9ee92ce3 --- /dev/null +++ b/blockchains/arbitrum/assets/0x9623063377AD1B27544C965cCd7342f7EA7e88C7/info.json @@ -0,0 +1,37 @@ +{ + "name": "The Graph", + "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://arbiscan.io/token/0x9623063377ad1b27544c965ccd7342f7ea7e88c7", + "research": "https://github.com/graphprotocol/research", + "type": "ARBITRUM", + "symbol": "GRT", + "decimals": 18, + "status": "active", + "id": "0x9623063377AD1B27544C965cCd7342f7EA7e88C7", + "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/arbitrum/assets/0x9623063377AD1B27544C965cCd7342f7EA7e88C7/logo.png b/blockchains/arbitrum/assets/0x9623063377AD1B27544C965cCd7342f7EA7e88C7/logo.png new file mode 100644 index 00000000..f4d96d2e Binary files /dev/null and b/blockchains/arbitrum/assets/0x9623063377AD1B27544C965cCd7342f7EA7e88C7/logo.png differ diff --git a/blockchains/arbitrum/assets/0x965d00aA7ABC62CA10132e641D08593435aC811d/info.json b/blockchains/arbitrum/assets/0x965d00aA7ABC62CA10132e641D08593435aC811d/info.json new file mode 100644 index 00000000..4c57d62c --- /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 00000000..1aee5474 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 00000000..ad4a75bb --- /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 00000000..bce8b3c7 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 00000000..8b9e90e3 --- /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 00000000..59df7489 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 00000000..3f9a0192 --- /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/arbitrum/assets/0x99C409E5f62E4bd2AC142f17caFb6810B8F0BAAE/logo.png b/blockchains/arbitrum/assets/0x99C409E5f62E4bd2AC142f17caFb6810B8F0BAAE/logo.png new file mode 100644 index 00000000..6ad4e4b1 Binary files /dev/null and b/blockchains/arbitrum/assets/0x99C409E5f62E4bd2AC142f17caFb6810B8F0BAAE/logo.png differ diff --git a/blockchains/arbitrum/assets/0x9E758B8a98a42d612b3D38B66a22074DC03D7370/info.json b/blockchains/arbitrum/assets/0x9E758B8a98a42d612b3D38B66a22074DC03D7370/info.json new file mode 100644 index 00000000..79a6187b --- /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 00000000..26f3dbd5 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 new file mode 100644 index 00000000..d7d2d0f0 --- /dev/null +++ b/blockchains/arbitrum/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json @@ -0,0 +1,33 @@ +{ + "name": "Multichain", + "type": "ARBITRUM", + "symbol": "MULTI", + "decimals": 18, + "website": "https://multichain.org/", + "description": "Multichain is a cross-chain router protocol (CRP), to be the ultimate router for Web3.", + "explorer": "https://arbiscan.io/token/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3", + "status": "active", + "id": "0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3", + "links": [ + { + "name": "x", + "url": "https://x.com/multichainorg" + }, + { + "name": "github", + "url": "https://github.com/anyswap" + }, + { + "name": "telegram", + "url": "https://t.me/anyswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multichain/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/multichain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/logo.png b/blockchains/arbitrum/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/logo.png new file mode 100644 index 00000000..9d7b0435 Binary files /dev/null and b/blockchains/arbitrum/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/logo.png differ diff --git a/blockchains/arbitrum/assets/0x9a2486fbe7bC17C9100be65c31aBE7c9Bf84C23c/info.json b/blockchains/arbitrum/assets/0x9a2486fbe7bC17C9100be65c31aBE7c9Bf84C23c/info.json new file mode 100644 index 00000000..88964735 --- /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 00000000..98e91130 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 00000000..fbaa4ae9 --- /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 00000000..d1cb8531 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 00000000..65918cb4 --- /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 00000000..2af9425e 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 00000000..d0122f7c --- /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 00000000..2053bae1 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 00000000..aab11f70 --- /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 00000000..c0f15c64 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 00000000..44b35b1c --- /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 00000000..80132f12 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 00000000..8eaa1284 --- /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 00000000..ac7024ca 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 00000000..b7c266dc --- /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 00000000..7cb316a4 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 00000000..93ccb631 --- /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 00000000..d5c48229 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 00000000..2c884021 --- /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 00000000..b6fb457e 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 00000000..301b393f --- /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 00000000..472c951a 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 00000000..c8e9a857 --- /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 00000000..fdfd0ac0 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 00000000..63c7d529 --- /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 00000000..9de4e292 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 00000000..6b6f2efa --- /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 00000000..58852053 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 00000000..2a06a339 --- /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 00000000..1711648e 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 00000000..98604f3b --- /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 00000000..a3d18c9a 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 00000000..91d4f3c4 --- /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 00000000..9179fb7a 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 new file mode 100644 index 00000000..17db4301 --- /dev/null +++ b/blockchains/arbitrum/assets/0xBfa641051Ba0a0Ad1b0AcF549a89536A0D76472E/info.json @@ -0,0 +1,29 @@ +{ + "name": "Badger", + "website": "https://badger.finance/", + "description": "DAO dedicated to building products and infrastructure to bring Bitcoin to DeFi.", + "explorer": "https://arbiscan.io/token/0xbfa641051ba0a0ad1b0acf549a89536a0d76472e", + "type": "ARBITRUM", + "symbol": "BADGER", + "decimals": 18, + "status": "active", + "id": "0xBfa641051Ba0a0Ad1b0AcF549a89536A0D76472E", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/$BADGER" + }, + { + "name": "discord", + "url": "https://discord.com/invite/xSPFHHS" + }, + { + "name": "medium", + "url": "https://badgerdao.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xBfa641051Ba0a0Ad1b0AcF549a89536A0D76472E/logo.png b/blockchains/arbitrum/assets/0xBfa641051Ba0a0Ad1b0AcF549a89536A0D76472E/logo.png new file mode 100644 index 00000000..36827cd6 Binary files /dev/null and b/blockchains/arbitrum/assets/0xBfa641051Ba0a0Ad1b0AcF549a89536A0D76472E/logo.png differ diff --git a/blockchains/arbitrum/assets/0xC641E2eBF6E076e2AE53477C2E725b3c67C0fd94/info.json b/blockchains/arbitrum/assets/0xC641E2eBF6E076e2AE53477C2E725b3c67C0fd94/info.json new file mode 100644 index 00000000..1489342a --- /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 00000000..effb7c65 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 00000000..7e965679 --- /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 00000000..f1805f82 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 00000000..425f6e67 --- /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 00000000..10a80b01 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 00000000..abc497ec --- /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 00000000..c6fa133d 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 00000000..6aec47e2 --- /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 00000000..56ac027a 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 00000000..c60bc239 --- /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 00000000..c43b8397 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 00000000..f67d5459 --- /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 00000000..c82223c5 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 00000000..6b05d7a7 --- /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 00000000..5c46ccf3 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 00000000..8eeece2f --- /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 00000000..df73bbcc 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 new file mode 100644 index 00000000..e65f5e09 --- /dev/null +++ b/blockchains/arbitrum/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/info.json @@ -0,0 +1,33 @@ +{ + "name": "Dai Stablecoin", + "type": "ARBITRUM", + "symbol": "DAI", + "decimals": 18, + "website": "https://tether.to/", + "description": "Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.", + "explorer": "https://arbiscan.io/token/0xda10009cbd5d07dd0cecc66161fc93d7c9000da1", + "status": "active", + "id": "0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-collateral-dai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/dai/" + }, + { + "name": "x", + "url": "https://x.com/MakerDAO" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/whitepaper/" + } + ], + "tags": [ + "stablecoin", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/logo.png b/blockchains/arbitrum/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/logo.png new file mode 100644 index 00000000..cae16b81 Binary files /dev/null and b/blockchains/arbitrum/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/logo.png differ diff --git a/blockchains/arbitrum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/info.json b/blockchains/arbitrum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/info.json new file mode 100644 index 00000000..2bfe8825 --- /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 00000000..78a6538f 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 00000000..abb00d81 --- /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 00000000..7c9c6544 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 00000000..9c4423b8 --- /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 00000000..29807210 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 00000000..c8d9e5c4 --- /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 00000000..41bfda5c 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 00000000..b9a648c3 --- /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 00000000..09deda21 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 00000000..139d281d --- /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 00000000..a0ca86f1 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 new file mode 100644 index 00000000..b72370fe --- /dev/null +++ b/blockchains/arbitrum/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -0,0 +1,68 @@ +{ + "name": "Axelar Wrapped USDC", + "type": "ARBITRUM", + "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://arbiscan.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": [ + "wrapped" + ] +} diff --git a/blockchains/arbitrum/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png b/blockchains/arbitrum/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png new file mode 100644 index 00000000..69911cae Binary files /dev/null and b/blockchains/arbitrum/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/arbitrum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json b/blockchains/arbitrum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json new file mode 100644 index 00000000..ddbc1e59 --- /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 00000000..7051dcb4 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 00000000..1967f919 --- /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 00000000..8327b516 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 00000000..0baaa246 --- /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 00000000..b343e016 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 00000000..67df9c22 --- /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 00000000..312a0fd5 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 00000000..ee62d97f --- /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 00000000..d55ca6ed 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 00000000..a1e8a4d1 --- /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 00000000..c866fd61 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 00000000..031d34a4 --- /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 00000000..b80f4f7f 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 00000000..db86413a --- /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 00000000..41018132 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 00000000..d63d8233 --- /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 00000000..ea3dae36 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 new file mode 100644 index 00000000..85bab77a --- /dev/null +++ b/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/info.json @@ -0,0 +1,25 @@ +{ + "name": "Bridged USDC", + "type": "ARBITRUM", + "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.", + "explorer": "https://arbiscan.io/token/0xff970a61a04b1ca14834a43f5de4533ebddb5cc8", + "status": "active", + "id": "0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8", + "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" + } + ] +} diff --git a/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/logo.png b/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/logo.png new file mode 100644 index 00000000..b6f150d8 Binary files /dev/null and b/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/logo.png differ diff --git a/blockchains/arbitrum/assets/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0/info.json b/blockchains/arbitrum/assets/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0/info.json new file mode 100644 index 00000000..b35074cd --- /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 00000000..893ef55c 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 new file mode 100644 index 00000000..b5010b67 --- /dev/null +++ b/blockchains/arbitrum/assets/0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9/info.json @@ -0,0 +1,32 @@ +{ + "name": "Tether USD", + "type": "ARBITRUM", + "symbol": "USDT", + "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://arbiscan.io/token/0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9", + "status": "active", + "id": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/tether/" + }, + { + "name": "x", + "url": "https://x.com/Tether_to" + }, + { + "name": "whitepaper", + "url": "https://stableset.com/audits/tether_audit_v1/tether_audit_v1.pdf" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9/logo.png b/blockchains/arbitrum/assets/0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9/logo.png new file mode 100644 index 00000000..59d44aee Binary files /dev/null and b/blockchains/arbitrum/assets/0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9/logo.png differ diff --git a/blockchains/arbitrum/assets/0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1/info.json b/blockchains/arbitrum/assets/0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1/info.json new file mode 100644 index 00000000..cc698a9d --- /dev/null +++ b/blockchains/arbitrum/assets/0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1/info.json @@ -0,0 +1,40 @@ +{ + "name": "Gnosis", + "website": "https://gnosis.io", + "description": "Gnosis is a decentralized prediction market built on the Ethereum protocol.", + "explorer": "https://arbiscan.io/token/0xa0b862f60edef4452f25b4160f177db44deb6cf1", + "type": "ARBITRUM", + "symbol": "GNO", + "decimals": 18, + "status": "active", + "id": "0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/gnosis" + }, + { + "name": "x", + "url": "https://x.com/gnosisPM" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/gnosisPM/" + }, + { + "name": "blog", + "url": "https://blog.gnosis.io/" + }, + { + "name": "facebook", + "url": "https://facebook.com/Gnosis.pm/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gnosis/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1/logo.png b/blockchains/arbitrum/assets/0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1/logo.png new file mode 100644 index 00000000..e3cd7aeb Binary files /dev/null and b/blockchains/arbitrum/assets/0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1/logo.png differ diff --git a/blockchains/arbitrum/assets/0xa150245f155778e749185C9446e9e59E406674eF/info.json b/blockchains/arbitrum/assets/0xa150245f155778e749185C9446e9e59E406674eF/info.json new file mode 100644 index 00000000..a2439319 --- /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 00000000..b7ed0768 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 00000000..e73c4fc4 --- /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 00000000..57731b24 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 00000000..937b47af --- /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 00000000..c18ee436 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 00000000..2055eae2 --- /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 00000000..94b0d060 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 00000000..6bf46e58 --- /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 00000000..7151d49b 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 00000000..ceec2a78 --- /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 00000000..39f842c8 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 00000000..f1bc3576 --- /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 00000000..4b74437e 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 00000000..ec839d58 --- /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 00000000..e79aa166 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 00000000..ada58a22 --- /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 00000000..85d32ed8 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 00000000..3e06821c --- /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 00000000..3cf3b0c4 Binary files /dev/null and b/blockchains/arbitrum/assets/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c/logo.png differ diff --git a/blockchains/arbitrum/assets/0xaE6aab43C4f3E0cea4Ab83752C278f8dEbabA689/info.json b/blockchains/arbitrum/assets/0xaE6aab43C4f3E0cea4Ab83752C278f8dEbabA689/info.json new file mode 100644 index 00000000..a2ed700f --- /dev/null +++ b/blockchains/arbitrum/assets/0xaE6aab43C4f3E0cea4Ab83752C278f8dEbabA689/info.json @@ -0,0 +1,32 @@ +{ + "name": "dForce", + "type": "ARBITRUM", + "symbol": "DF", + "decimals": 18, + "website": "http://dforce.network/", + "description": "dForce advocates for building an integrated and interoperable and scalable open finance protocol network, cultivating intra-protocol liquidity and network effects, while remain in full openness to interact and integrated with other protocols.", + "explorer": "https://arbiscan.io/token/0xaE6aab43C4f3E0cea4Ab83752C278f8dEbabA689", + "status": "active", + "id": "0xaE6aab43C4f3E0cea4Ab83752C278f8dEbabA689", + "links": [ + { + "name": "telegram", + "url": "https://t.me/dforcenet" + }, + { + "name": "github", + "url": "https://github.com/dforce-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dforce-token/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dforce/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xaE6aab43C4f3E0cea4Ab83752C278f8dEbabA689/logo.png b/blockchains/arbitrum/assets/0xaE6aab43C4f3E0cea4Ab83752C278f8dEbabA689/logo.png new file mode 100644 index 00000000..36fcfbc4 Binary files /dev/null and b/blockchains/arbitrum/assets/0xaE6aab43C4f3E0cea4Ab83752C278f8dEbabA689/logo.png differ diff --git a/blockchains/arbitrum/assets/0xaa54e84A3e6e5A80288d2C2f8e36eA5cA3A3Ca30/info.json b/blockchains/arbitrum/assets/0xaa54e84A3e6e5A80288d2C2f8e36eA5cA3A3Ca30/info.json new file mode 100644 index 00000000..f99ffddd --- /dev/null +++ b/blockchains/arbitrum/assets/0xaa54e84A3e6e5A80288d2C2f8e36eA5cA3A3Ca30/info.json @@ -0,0 +1,24 @@ +{ + "name": "SHARBI", + "type": "ARBITRUM", + "symbol": "SHARBI", + "decimals": 9, + "website": "https://sharbi.net/", + "description": "Sharbi is a community-owned, Arbitrum and Ethereum token. Sharbi is known for being the mistress of Shiba.", + "explorer": "https://arbiscan.io/token/0xaa54e84a3e6e5a80288d2c2f8e36ea5ca3a3ca30", + "status": "active", + "id": "0xaa54e84A3e6e5A80288d2C2f8e36eA5cA3A3Ca30", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SharbiPortal" + }, + { + "name": "x", + "url": "https://x.com/SharbiToken" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xaa54e84A3e6e5A80288d2C2f8e36eA5cA3A3Ca30/logo.png b/blockchains/arbitrum/assets/0xaa54e84A3e6e5A80288d2C2f8e36eA5cA3A3Ca30/logo.png new file mode 100644 index 00000000..855db6d9 Binary files /dev/null and b/blockchains/arbitrum/assets/0xaa54e84A3e6e5A80288d2C2f8e36eA5cA3A3Ca30/logo.png differ diff --git a/blockchains/arbitrum/assets/0xabD587f2607542723b17f14d00d99b987C29b074/info.json b/blockchains/arbitrum/assets/0xabD587f2607542723b17f14d00d99b987C29b074/info.json new file mode 100644 index 00000000..d6d8b8e4 --- /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 00000000..d193ae87 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 00000000..9205125c --- /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 00000000..019ab57f 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 00000000..af59c7da --- /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 00000000..6d22d110 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 00000000..247bc6d3 --- /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 00000000..fb7784c7 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 00000000..c2de5864 --- /dev/null +++ b/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/info.json @@ -0,0 +1,28 @@ +{ + "name": "USD Coin", + "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 00000000..a135c887 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 00000000..6fb2eeec --- /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 00000000..7e70f357 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 00000000..6b760c1c --- /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 00000000..85dccc98 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 00000000..2b5c0798 --- /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 00000000..c04093e3 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 00000000..8a1a644a --- /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 00000000..ec248062 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 00000000..c3a4e495 --- /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 00000000..ce91cfbf 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 00000000..013af0df --- /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 00000000..d66f3d33 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 00000000..2d467bdf --- /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 00000000..d53b1142 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 00000000..b336b442 --- /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 00000000..3700a2b1 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 00000000..e996efc6 --- /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 00000000..c7ff3dea 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 00000000..e8e995b7 --- /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 00000000..f976982e 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 00000000..65bff663 --- /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 00000000..b7945306 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 00000000..2f98d356 --- /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 00000000..e5efd01e 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 00000000..e993d4a0 --- /dev/null +++ b/blockchains/arbitrum/assets/0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b/info.json @@ -0,0 +1,36 @@ +{ + "name": "Wootrade Network", + "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 00000000..5cd7c399 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 00000000..c6b565b5 --- /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 00000000..463552d9 --- /dev/null +++ b/blockchains/arbitrum/assets/0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04/info.json @@ -0,0 +1,56 @@ +{ + "name": "CoW Protocol Token", + "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 00000000..8df3f5b4 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 00000000..2e1d078b --- /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 00000000..07385912 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 00000000..147c080d --- /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 00000000..dceff00b 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 00000000..1ccaca0b --- /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 00000000..29c0b21d 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 00000000..9bbaf588 --- /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 00000000..77ea66f7 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 new file mode 100644 index 00000000..673b3643 --- /dev/null +++ b/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json @@ -0,0 +1,36 @@ +{ + "name": "Okcash", + "type": "ARBITRUM", + "symbol": "OK", + "decimals": 18, + "website": "https://okcash.co", + "description": "OK is the leading multi chain PoS, web3 + NFTs open source electronic cash, its design is public, nobody owns or controls Okcash and everyone can take part.", + "explorer": "https://arbiscan.io/token/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", + "status": "active", + "id": "0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", + "links": [ + { + "name": "x", + "url": "https://x.com/OkcashCrypto" + }, + { + "name": "github", + "url": "https://github.com/okcashpro" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/okcash/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/okcash" + }, + { + "name": "medium", + "url": "https://medium.com/okcash" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png b/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png new file mode 100644 index 00000000..a3b20074 Binary files /dev/null and b/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png differ diff --git a/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/info.json b/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/info.json new file mode 100644 index 00000000..13e40727 --- /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 00000000..37523b87 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 00000000..a52057c4 --- /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 00000000..f1295da4 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 00000000..cb92feb7 --- /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 00000000..c4974d79 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 00000000..ae08aebc --- /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 00000000..5bf18545 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 00000000..095807f0 --- /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 00000000..be41fcea 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 00000000..b5cdfcc6 --- /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 00000000..448e7266 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 00000000..107cdbc1 --- /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 00000000..c5abdfcd 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 00000000..7e95a436 --- /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 00000000..857fe690 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 00000000..8327c4b7 --- /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 00000000..179b22a7 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 00000000..f04e74f4 --- /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 00000000..3b7a5c57 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 00000000..ef32f6bc --- /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 00000000..8f845a1c 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 00000000..1910efc6 --- /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 00000000..cb6c4903 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 00000000..e79dd450 --- /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 00000000..6d985419 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 00000000..72ee69f5 --- /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 00000000..0c6d1b72 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 00000000..3ae68a0d --- /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 00000000..4ca5efce 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 00000000..6928f8af --- /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 00000000..338f6dea 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 00000000..6a5cb840 --- /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 00000000..ba89f2dd 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 00000000..7b68fab0 --- /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 00000000..d0c4e5f8 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 00000000..7d62a943 --- /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 00000000..c1902f7a 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 00000000..6ae51214 --- /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 00000000..d565ce6e 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 00000000..3195707a --- /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/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/logo.png b/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/logo.png new file mode 100644 index 00000000..ab55f5e2 Binary files /dev/null and b/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/logo.png differ diff --git a/blockchains/arbitrum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json b/blockchains/arbitrum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json new file mode 100644 index 00000000..91bdd35d --- /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 00000000..ab73b87a 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 00000000..d425c587 --- /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 00000000..38cc9015 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 00000000..e1b5eba9 --- /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 00000000..6084f5d6 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 00000000..94506257 --- /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 00000000..984236e9 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 new file mode 100644 index 00000000..6458f594 --- /dev/null +++ b/blockchains/arbitrum/assets/0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a/info.json @@ -0,0 +1,32 @@ +{ + "name": "GMX", + "type": "ARBITRUM", + "symbol": "GMX", + "decimals": 18, + "website": "https://gmx.io/", + "description": "GMX is a decentralized spot and perpetual exchange that supports low swap fees and zero price impact trades.", + "explorer": "https://arbiscan.io/token/0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a", + "status": "active", + "id": "0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gmx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/gmx/" + }, + { + "name": "x", + "url": "https://x.com/GMX_IO" + }, + { + "name": "telegram", + "url": "https://t.me/GMX_IO" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a/logo.png b/blockchains/arbitrum/assets/0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a/logo.png new file mode 100644 index 00000000..1e964f0a Binary files /dev/null and b/blockchains/arbitrum/assets/0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a/logo.png differ diff --git a/blockchains/arbitrum/info/info.json b/blockchains/arbitrum/info/info.json new file mode 100644 index 00000000..a4713f86 --- /dev/null +++ b/blockchains/arbitrum/info/info.json @@ -0,0 +1,22 @@ +{ + "name": "Arbitrum", + "website": "https://offchainlabs.com", + "description": "Arbitrum is a Layer 2 cryptocurrency platform that makes smart contracts scalable, fast, and private", + "explorer": "https://arbiscan.io", + "research": "https://coinmarketcap.com/alexandria/article/what-is-arbitrum", + "symbol": "ARETH", + "rpc_url": "https://rpc.ankr.com/arbitrum", + "coin_type": 9001, + "type": "coin", + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/arbitrum" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/info/logo.png b/blockchains/arbitrum/info/logo.png new file mode 100644 index 00000000..284e7894 Binary files /dev/null and b/blockchains/arbitrum/info/logo.png differ diff --git a/blockchains/arbitrum/info/square_logo.png b/blockchains/arbitrum/info/square_logo.png new file mode 100644 index 00000000..0ee5b2f3 Binary files /dev/null and b/blockchains/arbitrum/info/square_logo.png differ diff --git a/blockchains/arbitrum/tokenlist-extended.json b/blockchains/arbitrum/tokenlist-extended.json new file mode 100644 index 00000000..50e2de74 --- /dev/null +++ b/blockchains/arbitrum/tokenlist-extended.json @@ -0,0 +1,12 @@ +{ + "name": "Trust Wallet: Arbitrum", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-01-30T13:48:32.500787", + "tokens": [ + ], + "version": { + "major": 6, + "minor": 0, + "patch": 0 + } +} diff --git a/blockchains/arbitrum/tokenlist.json b/blockchains/arbitrum/tokenlist.json new file mode 100644 index 00000000..4b0809ad --- /dev/null +++ b/blockchains/arbitrum/tokenlist.json @@ -0,0 +1,72 @@ +{ + "name": "Trust Wallet: Arbitrum List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-01-27T14:33:26.183301", + "tokens": [ + { + "asset": "c10042221_t0x82aF49447D8a07e3bd95BD0d56f35241523fBab1", + "type": "ARBITRUM", + "address": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/arbitrum/assets/0x82aF49447D8a07e3bd95BD0d56f35241523fBab1/logo.png", + "pairs": [] + }, + { + "asset": "c10042221_t0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8", + "type": "ARBITRUM", + "address": "0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8", + "name": "Bridged USDC", + "symbol": "USDC.e", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/logo.png", + "pairs": [] + }, + { + "asset": "c10042221_t0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1", + "type": "ARBITRUM", + "address": "0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1", + "name": "Dai Stablecoin", + "symbol": "DAI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/arbitrum/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/logo.png", + "pairs": [] + }, + { + "asset": "c10042221_t0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", + "type": "ARBITRUM", + "address": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/arbitrum/assets/0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9/logo.png", + "pairs": [] + }, + { + "asset": "c10042221_t0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a", + "type": "ARBITRUM", + "address": "0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a", + "name": "GMX", + "symbol": "GMX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/arbitrum/assets/0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a/logo.png", + "pairs": [] + }, + { + "asset": "c10042221_t0x9623063377AD1B27544C965cCd7342f7EA7e88C7", + "type": "ARBITRUM", + "address": "0x9623063377AD1B27544C965cCd7342f7EA7e88C7", + "name": "The Graph", + "symbol": "GRT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/arbitrum/assets/0x9623063377AD1B27544C965cCd7342f7EA7e88C7/logo.png", + "pairs": [] + } + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} diff --git a/blockchains/arbitrumgoerli/info/info.json b/blockchains/arbitrumgoerli/info/info.json new file mode 100644 index 00000000..3daf8322 --- /dev/null +++ b/blockchains/arbitrumgoerli/info/info.json @@ -0,0 +1,18 @@ +{ + "name": "Arbitrum Goerli Testnet", + "website": "https://goerlifaucet.com", + "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": "tAGOR", + "rpc_url": "https://goerli-rollup.arbitrum.io/rpc", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/community/search/top/goerli-eth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrumgoerli/info/logo.png b/blockchains/arbitrumgoerli/info/logo.png new file mode 100644 index 00000000..ad463789 Binary files /dev/null and b/blockchains/arbitrumgoerli/info/logo.png differ diff --git a/blockchains/arbitrumgoerli/info/square_logo.png b/blockchains/arbitrumgoerli/info/square_logo.png new file mode 100644 index 00000000..793f7b4a 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 new file mode 100644 index 00000000..92948971 --- /dev/null +++ b/blockchains/ark/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ark", + "website": "http://ark.io/", + "description": "ARK provides users, developers, and startups with innovative blockchain technologies. Aim to create an entire ecosystem of linked chains and a virtual spiderweb of endless use-cases that make ARK highly flexible, adaptable, and scalable.", + "explorer": "https://explorer.ark.io", + "research": "https://research.binance.com/en/projects/ark", + "symbol": "ARK", + "type": "coin", + "decimals": 8, + "status": "abandoned", + "links": [ + { + "name": "github", + "url": "https://github.com/ArkEcosystem" + }, + { + "name": "x", + "url": "https://x.com/ArkEcosystem" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ArkEcosystem" + }, + { + "name": "whitepaper", + "url": "https://ark.io/Whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ark/info/logo.png b/blockchains/ark/info/logo.png new file mode 100644 index 00000000..3baecccc Binary files /dev/null and b/blockchains/ark/info/logo.png differ diff --git a/blockchains/ark/info/square_logo.png b/blockchains/ark/info/square_logo.png new file mode 100644 index 00000000..1021715b 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 new file mode 100644 index 00000000..4e4f6791 --- /dev/null +++ b/blockchains/aryacoin/info/info.json @@ -0,0 +1,25 @@ +{ + "name": "Aryacoin", + "website": "https://aryacoin.io", + "description": "Aryacoin is a new age cryptocurrency, which withholds the original principle on which the concept of cryptocurrency was established", + "explorer": "https://explorer2.aryacoin.io", + "research": "", + "symbol": "AYA", + "type": "coin", + "decimals": 8, + "status": "abandoned", + "links": [ + { + "name": "github", + "url": "https://github.com/Aryacoin/Aryacoin" + }, + { + "name": "x", + "url": "https://x.com/AryacoinAYA" + }, + { + "name": "whitepaper", + "url": "https://aryacoin.io/Aryacoin.html" + } + ] +} \ No newline at end of file diff --git a/blockchains/aryacoin/info/logo.png b/blockchains/aryacoin/info/logo.png new file mode 100644 index 00000000..215eb956 Binary files /dev/null and b/blockchains/aryacoin/info/logo.png differ diff --git a/blockchains/aryacoin/info/square_logo.png b/blockchains/aryacoin/info/square_logo.png new file mode 100644 index 00000000..38e63799 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 00000000..0dd6cb85 --- /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 00000000..cb6c4903 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 new file mode 100644 index 00000000..ea47c1f1 --- /dev/null +++ b/blockchains/aurora/assets/0x7faA64Faf54750a2E3eE621166635fEAF406Ab22/info.json @@ -0,0 +1,25 @@ +{ + "name": "WannaSwap", + "type": "AURORA", + "symbol": "WANNA", + "decimals": 18, + "description": "The WannaSwap team has been formed and planed to build a DEX with the goal of becoming a liquidity hub on Near's Aurora EVM.", + "website": "https://wannaswap.finance/", + "explorer": "https://aurorascan.dev/address/0x7faa64faf54750a2e3ee621166635feaf406ab22", + "status": "active", + "id": "0x7faA64Faf54750a2E3eE621166635fEAF406Ab22", + "links": [ + { + "name": "x", + "url": "https://x.com/wannaswapamm" + }, + { + "name": "github", + "url": "https://github.com/wannaswap" + }, + { + "name": "telegram", + "url": "https://t.me/wannaswap" + } + ] +} \ No newline at end of file diff --git a/blockchains/aurora/assets/0x7faA64Faf54750a2E3eE621166635fEAF406Ab22/logo.png b/blockchains/aurora/assets/0x7faA64Faf54750a2E3eE621166635fEAF406Ab22/logo.png new file mode 100644 index 00000000..12008356 Binary files /dev/null and b/blockchains/aurora/assets/0x7faA64Faf54750a2E3eE621166635fEAF406Ab22/logo.png differ diff --git a/blockchains/aurora/assets/0x8BEc47865aDe3B172A928df8f990Bc7f2A3b9f79/info.json b/blockchains/aurora/assets/0x8BEc47865aDe3B172A928df8f990Bc7f2A3b9f79/info.json new file mode 100644 index 00000000..1091abdb --- /dev/null +++ b/blockchains/aurora/assets/0x8BEc47865aDe3B172A928df8f990Bc7f2A3b9f79/info.json @@ -0,0 +1,28 @@ +{ + "name": "Aurora", + "type": "AURORA", + "symbol": "AURORA", + "decimals": 18, + "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.", + "website": "https://aurora.dev/", + "explorer": "https://aurorascan.dev/address/0x8bec47865ade3b172a928df8f990bc7f2a3b9f79", + "status": "active", + "id": "0x8BEc47865aDe3B172A928df8f990Bc7f2A3b9f79", + "links": [ + { + "name": "x", + "url": "https://x.com/auroraisnear" + }, + { + "name": "github", + "url": "https://github.com/aurora-is-near" + }, + { + "name": "telegram", + "url": "https://t.me/auroraisnear" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/aurora/assets/0x8BEc47865aDe3B172A928df8f990Bc7f2A3b9f79/logo.png b/blockchains/aurora/assets/0x8BEc47865aDe3B172A928df8f990Bc7f2A3b9f79/logo.png new file mode 100644 index 00000000..21df1e53 Binary files /dev/null and b/blockchains/aurora/assets/0x8BEc47865aDe3B172A928df8f990Bc7f2A3b9f79/logo.png differ diff --git a/blockchains/aurora/info/info.json b/blockchains/aurora/info/info.json new file mode 100644 index 00000000..ec4f794d --- /dev/null +++ b/blockchains/aurora/info/info.json @@ -0,0 +1,21 @@ +{ + "name": "Aurora", + "website": "https://aurora.dev", + "description": "Aurora provides Ethereum compatibility, NEAR Protocol scalability, and industry-first user experience through affordable transactions.", + "explorer": "https://explorer.mainnet.aurora.dev/", + "research": "", + "symbol": "ETH", + "type": "coin", + "decimals": 18, + "rpc_url": "https://mainnet.aurora.dev", + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/auroraisnear" + } + ] +} \ No newline at end of file diff --git a/blockchains/aurora/info/logo.png b/blockchains/aurora/info/logo.png new file mode 100644 index 00000000..21df1e53 Binary files /dev/null and b/blockchains/aurora/info/logo.png differ diff --git a/blockchains/aurora/info/square_logo.png b/blockchains/aurora/info/square_logo.png new file mode 100644 index 00000000..387b7690 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 00000000..5e8188f9 --- /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 00000000..b41ffbfb Binary files /dev/null and b/blockchains/avalanchec/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png differ diff --git a/blockchains/avalanchec/assets/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665/info.json b/blockchains/avalanchec/assets/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665/info.json new file mode 100644 index 00000000..d60f394b --- /dev/null +++ b/blockchains/avalanchec/assets/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665/info.json @@ -0,0 +1,28 @@ +{ + "name": "SHIBA INU", + "symbol": "SHIB.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "The Avalanche Bridge Wrapped SHIBA INU. SHIBA INU is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik and the other half were locked to a Uniswap pool and the keys burned.", + "website": "https://shibatoken.com/", + "explorer": "https://snowtrace.io/token/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665", + "status": "active", + "id": "0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shiba-inu/" + }, + { + "name": "telegram", + "url": "https://t.me/shibainuthedogecoinkiller" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665/logo.png b/blockchains/avalanchec/assets/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665/logo.png new file mode 100644 index 00000000..2bb8d92d Binary files /dev/null and b/blockchains/avalanchec/assets/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665/logo.png differ diff --git a/blockchains/avalanchec/assets/0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA/info.json b/blockchains/avalanchec/assets/0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA/info.json new file mode 100644 index 00000000..74a6bad9 --- /dev/null +++ b/blockchains/avalanchec/assets/0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Solana)", + "symbol": "USDCso", + "type": "AVALANCHE", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://snowtrace.io/token/0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA", + "status": "active", + "id": "0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA/logo.png b/blockchains/avalanchec/assets/0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA/logo.png new file mode 100644 index 00000000..c9ca8307 Binary files /dev/null and b/blockchains/avalanchec/assets/0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA/logo.png differ diff --git a/blockchains/avalanchec/assets/0x0f669808d88B2b0b3D23214DCD2a1cc6A8B1B5cd/info.json b/blockchains/avalanchec/assets/0x0f669808d88B2b0b3D23214DCD2a1cc6A8B1B5cd/info.json new file mode 100644 index 00000000..aead6633 --- /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 00000000..fde6c2db Binary files /dev/null and b/blockchains/avalanchec/assets/0x0f669808d88B2b0b3D23214DCD2a1cc6A8B1B5cd/logo.png differ diff --git a/blockchains/avalanchec/assets/0x12AF5C1a232675f62F405b5812A80e7a6F75D746/info.json b/blockchains/avalanchec/assets/0x12AF5C1a232675f62F405b5812A80e7a6F75D746/info.json new file mode 100644 index 00000000..e25da56e --- /dev/null +++ b/blockchains/avalanchec/assets/0x12AF5C1a232675f62F405b5812A80e7a6F75D746/info.json @@ -0,0 +1,14 @@ +{ + "name": "ROSE (Portal)", + "symbol": "ROSE", + "type": "AVALANCHE", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://oasisprotocol.org/", + "explorer": "https://snowtrace.io/token/0x12AF5C1a232675f62F405b5812A80e7a6F75D746", + "status": "active", + "id": "0x12AF5C1a232675f62F405b5812A80e7a6F75D746", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x12AF5C1a232675f62F405b5812A80e7a6F75D746/logo.png b/blockchains/avalanchec/assets/0x12AF5C1a232675f62F405b5812A80e7a6F75D746/logo.png new file mode 100644 index 00000000..32179bc3 Binary files /dev/null and b/blockchains/avalanchec/assets/0x12AF5C1a232675f62F405b5812A80e7a6F75D746/logo.png differ diff --git a/blockchains/avalanchec/assets/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1/info.json b/blockchains/avalanchec/assets/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1/info.json new file mode 100644 index 00000000..c13f03da --- /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 00000000..7275004f 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 new file mode 100644 index 00000000..33af6cd4 --- /dev/null +++ b/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json @@ -0,0 +1,32 @@ +{ + "name": "Binance USD", + "symbol": "BUSD.e", + "type": "AVALANCHE", + "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", + "status": "active", + "id": "0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98", + "links": [ + { + "name": "x", + "url": "https://x.com/PaxosGlobal" + }, + { + "name": "github", + "url": "https://github.com/paxosglobal/busd-contract" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binance-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binance-usd/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/logo.png b/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/logo.png new file mode 100644 index 00000000..76d02e37 Binary files /dev/null and b/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/logo.png differ diff --git a/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/info.json b/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/info.json new file mode 100644 index 00000000..da2b48eb --- /dev/null +++ b/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/info.json @@ -0,0 +1,28 @@ +{ + "name": "TrueUSD", + "symbol": "TUSD", + "type": "AVALANCHE", + "decimals": 18, + "description": "A regulated, exchange-independent stablecoin backed 1-for-1 with US Dollars.", + "website": "https://trueusd.com/", + "explorer": "https://snowtrace.io/token/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB", + "status": "active", + "id": "0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trueusd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/true-usd/" + }, + { + "name": "x", + "url": "https://x.com/tusd_official" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/logo.png b/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/logo.png new file mode 100644 index 00000000..0ae677cd Binary files /dev/null and b/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/logo.png differ diff --git a/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json b/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json new file mode 100644 index 00000000..8e1240b0 --- /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 00000000..b86b0fca 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 new file mode 100644 index 00000000..41053e68 --- /dev/null +++ b/blockchains/avalanchec/assets/0x1f1E7c893855525b303f99bDF5c3c05Be09ca251/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://snowtrace.io/token/0x1f1e7c893855525b303f99bdf5c3c05be09ca251", + "type": "AVALANCHE", + "symbol": "SYN", + "decimals": 18, + "status": "active", + "id": "0x1f1E7c893855525b303f99bDF5c3c05Be09ca251", + "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/avalanchec/assets/0x1f1E7c893855525b303f99bDF5c3c05Be09ca251/logo.png b/blockchains/avalanchec/assets/0x1f1E7c893855525b303f99bDF5c3c05Be09ca251/logo.png new file mode 100644 index 00000000..577673c4 Binary files /dev/null and b/blockchains/avalanchec/assets/0x1f1E7c893855525b303f99bDF5c3c05Be09ca251/logo.png differ diff --git a/blockchains/avalanchec/assets/0x20CF1b6E9d856321ed4686877CF4538F2C84B4dE/info.json b/blockchains/avalanchec/assets/0x20CF1b6E9d856321ed4686877CF4538F2C84B4dE/info.json new file mode 100644 index 00000000..0d6e4d0b --- /dev/null +++ b/blockchains/avalanchec/assets/0x20CF1b6E9d856321ed4686877CF4538F2C84B4dE/info.json @@ -0,0 +1,56 @@ +{ + "name": "Ankr Network", + "type": "AVALANCHE", + "symbol": "ANKR", + "decimals": 18, + "website": "https://ankr.com", + "description": "Ankr is building an infrastructure platform and marketplace for Web3-stack deployment.", + "explorer": "https://snowtrace.io/token/0x20cf1b6e9d856321ed4686877cf4538f2c84b4de", + "status": "active", + "id": "0x20CF1b6E9d856321ed4686877CF4538F2C84B4dE", + "links": [ + { + "name": "x", + "url": "https://x.com/ankr" + }, + { + "name": "github", + "url": "https://github.com/Ankr-network" + }, + { + "name": "telegram", + "url": "https://t.me/ankrnetwork" + }, + { + "name": "docs", + "url": "https://ankr.com/docs/staking/overview/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Ankrofficial/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@AnkrOfficial" + }, + { + "name": "whitepaper", + "url": "https://ankr.com/ankr-whitepaper-2.0.pdf" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ankr" + }, + { + "name": "medium", + "url": "https://medium.com/ankr-network" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ankr-network" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x20CF1b6E9d856321ed4686877CF4538F2C84B4dE/logo.png b/blockchains/avalanchec/assets/0x20CF1b6E9d856321ed4686877CF4538F2C84B4dE/logo.png new file mode 100644 index 00000000..1660741a Binary files /dev/null and b/blockchains/avalanchec/assets/0x20CF1b6E9d856321ed4686877CF4538F2C84B4dE/logo.png differ diff --git a/blockchains/avalanchec/assets/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f/info.json b/blockchains/avalanchec/assets/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f/info.json new file mode 100644 index 00000000..03219ae9 --- /dev/null +++ b/blockchains/avalanchec/assets/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f/info.json @@ -0,0 +1,32 @@ +{ + "name": "AlphaToken", + "symbol": "ALPHA.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "Alpha Finance Lab is an ecosystem of DeFi products and focused on building an ecosystem of automated yield-maximizing Alpha products that interoperate to bring optimal alpha to users on a cross-chain level.", + "website": "https://alphafinance.io/", + "explorer": "https://snowtrace.io/token/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f", + "status": "active", + "id": "0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f", + "links": [ + { + "name": "x", + "url": "https://x.com/alphafinancelab" + }, + { + "name": "telegram", + "url": "https://t.me/AlphaFinanceLab" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alpha-finance-lab/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/alpha-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f/logo.png b/blockchains/avalanchec/assets/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f/logo.png new file mode 100644 index 00000000..ea505242 Binary files /dev/null and b/blockchains/avalanchec/assets/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f/logo.png differ diff --git a/blockchains/avalanchec/assets/0x214DB107654fF987AD859F34125307783fC8e387/info.json b/blockchains/avalanchec/assets/0x214DB107654fF987AD859F34125307783fC8e387/info.json new file mode 100644 index 00000000..373248ed --- /dev/null +++ b/blockchains/avalanchec/assets/0x214DB107654fF987AD859F34125307783fC8e387/info.json @@ -0,0 +1,32 @@ +{ + "name": "Frax Share", + "symbol": "FXS", + "type": "AVALANCHE", + "decimals": 18, + "description": "FXS is the value accrual and governance token of the entire Frax ecosystem. Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC.", + "website": "https://frax.finance/", + "explorer": "https://snowtrace.io/token/0x214DB107654fF987AD859F34125307783fC8e387", + "status": "active", + "id": "0x214DB107654fF987AD859F34125307783fC8e387", + "links": [ + { + "name": "x", + "url": "https://x.com/fraxfinance" + }, + { + "name": "telegram", + "url": "https://t.me/fraxfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/frax-share/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/frax-share/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x214DB107654fF987AD859F34125307783fC8e387/logo.png b/blockchains/avalanchec/assets/0x214DB107654fF987AD859F34125307783fC8e387/logo.png new file mode 100644 index 00000000..5072baa5 Binary files /dev/null and b/blockchains/avalanchec/assets/0x214DB107654fF987AD859F34125307783fC8e387/logo.png differ diff --git a/blockchains/avalanchec/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json b/blockchains/avalanchec/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json new file mode 100644 index 00000000..bf0340a4 --- /dev/null +++ b/blockchains/avalanchec/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json @@ -0,0 +1,47 @@ +{ + "name": "EverRise NFT Stakes", + "symbol": "nftRISE", + "type": "AVALANCHE", + "decimals": 0, + "description": "EverRise Staking NFTs are containers of Vote Escrowed (ve)EverRise weighted governance tokens. veRISE generates rewards from the auto-buyback with a market driven yield curve, based on the transaction volume of EverRise trades and veEverRise sales.", + "website": "https://www.everrise.com/", + "explorer": "https://snowtrace.io/token/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", + "status": "active", + "id": "0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", + "links": [ + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png b/blockchains/avalanchec/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png new file mode 100644 index 00000000..4272c382 Binary files /dev/null and b/blockchains/avalanchec/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png differ diff --git a/blockchains/avalanchec/assets/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06/info.json b/blockchains/avalanchec/assets/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06/info.json new file mode 100644 index 00000000..dfaa074e --- /dev/null +++ b/blockchains/avalanchec/assets/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06/info.json @@ -0,0 +1,28 @@ +{ + "name": "Curve DAO Token", + "symbol": "CRV.e", + "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.finance/", + "explorer": "https://snowtrace.io/token/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06", + "status": "active", + "id": "0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/curve-dao-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/curve-dao-token/" + }, + { + "name": "x", + "url": "https://x.com/CurveFinance" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06/logo.png b/blockchains/avalanchec/assets/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06/logo.png new file mode 100644 index 00000000..b820f250 Binary files /dev/null and b/blockchains/avalanchec/assets/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06/logo.png differ diff --git a/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json b/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json new file mode 100644 index 00000000..ad47979f --- /dev/null +++ b/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/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://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 00000000..f983849d 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 new file mode 100644 index 00000000..873f6479 --- /dev/null +++ b/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/info.json @@ -0,0 +1,57 @@ +{ + "name": "Staked AVAX", + "symbol": "sAVAX", + "type": "AVALANCHE", + "decimals": 18, + "description": "Staked AVAX, sAVAX, represents each user's ownership of their staked AVAX position in BENQI Liquid Staking. The yield-bearing asset grants users the ability to remain liquid and participate within other DeFi applications such as AAVE, Trader Joe, Platypus and BENQI.", + "website": "https://benqi.fi", + "explorer": "https://snowtrace.io/token/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE", + "id": "0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/BenqiFinance" + }, + { + "name": "telegram", + "url": "https://t.me/BENQIFinance" + }, + { + "name": "telegram_news", + "url": "https://t.me/BENQIFinance_Announcements" + }, + { + "name": "discord", + "url": "https://discord.com/invite/jyPAjZjwk6" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/benqi-liquid-staked-avax" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/benqi-liquid-staked-avax/markets" + }, + { + "name": "docs", + "url": "https://docs.benqi.fi" + }, + { + "name": "medium", + "url": "https://benqifinance.medium.com" + }, + { + "name": "github", + "url": "https://github.com/Benqi-fi" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/BENQIfinance" + } + ], + "tags": [ + "staking", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/logo.png b/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/logo.png new file mode 100644 index 00000000..41058cf5 Binary files /dev/null and b/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/logo.png differ diff --git a/blockchains/avalanchec/assets/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A/info.json b/blockchains/avalanchec/assets/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A/info.json new file mode 100644 index 00000000..c15cf80d --- /dev/null +++ b/blockchains/avalanchec/assets/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A/info.json @@ -0,0 +1,36 @@ +{ + "name": "Orbs", + "symbol": "ORBS", + "type": "AVALANCHE", + "decimals": 18, + "description": "Orbs is a public blockchain built for the needs of apps with millions of users, from SLAs to adjustable fee models to on-demand capacity.", + "website": "https://www.orbs.com/", + "explorer": "https://snowtrace.io/token/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A", + "status": "active", + "id": "0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A", + "links": [ + { + "name": "x", + "url": "https://x.com/orbs_network" + }, + { + "name": "medium", + "url": "https://medium.com/orbs-network" + }, + { + "name": "telegram", + "url": "https://t.me/orbs_network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/orbs/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/orbs/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A/logo.png b/blockchains/avalanchec/assets/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A/logo.png new file mode 100644 index 00000000..a9684ccf Binary files /dev/null and b/blockchains/avalanchec/assets/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A/logo.png differ diff --git a/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/info.json b/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/info.json new file mode 100644 index 00000000..d8ed5432 --- /dev/null +++ b/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/info.json @@ -0,0 +1,36 @@ +{ + "name": "SushiToken", + "symbol": "SUSHI.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "Be a DeFi Chef with Sushi - Swap, earn, stack yields, lend, borrow, leverage all on one decentralized, community driven platform.", + "website": "https://sushi.com/", + "explorer": "https://snowtrace.io/token/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76", + "status": "active", + "id": "0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76", + "links": [ + { + "name": "x", + "url": "https://x.com/sushiswap" + }, + { + "name": "medium", + "url": "https://medium.com/sushiswap/" + }, + { + "name": "github", + "url": "https://github.com/sushiswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sushiswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sushi/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/logo.png b/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/logo.png new file mode 100644 index 00000000..b1b9c8c0 Binary files /dev/null and b/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/logo.png differ diff --git a/blockchains/avalanchec/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/avalanchec/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 00000000..4d49bd89 --- /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 00000000..c34f31c6 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 new file mode 100644 index 00000000..91993e16 --- /dev/null +++ b/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/info.json @@ -0,0 +1,36 @@ +{ + "name": "Kyber Network Crystal v2", + "symbol": "KNC", + "type": "AVALANCHE", + "decimals": 18, + "description": "Kyber is a blockchain-based liquidity protocol that aggregates liquidity from a wide range of reserves, powering instant and secure token exchange in any decentralized application.", + "website": "https://kyber.network/", + "explorer": "https://snowtrace.io/token/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f", + "status": "active", + "id": "0x39fC9e94Caeacb435842FADeDeCB783589F50f5f", + "links": [ + { + "name": "x", + "url": "https://x.com/KyberNetwork" + }, + { + "name": "blog", + "url": "https://blog.kyber.network/" + }, + { + "name": "github", + "url": "https://github.com/KyberNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kyber-network-crystal-v2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kyber-network-crystal/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/logo.png b/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/logo.png new file mode 100644 index 00000000..a9961dac Binary files /dev/null and b/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/logo.png differ diff --git a/blockchains/avalanchec/assets/0x3Ab1C9aDb065F3FcA0059652Cd7A52B05C98f9a9/info.json b/blockchains/avalanchec/assets/0x3Ab1C9aDb065F3FcA0059652Cd7A52B05C98f9a9/info.json new file mode 100644 index 00000000..0d501b82 --- /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 00000000..ba89f2dd 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 new file mode 100644 index 00000000..5e77b388 --- /dev/null +++ b/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/info.json @@ -0,0 +1,36 @@ +{ + "name": "UMA Voting Token v1", + "symbol": "UMA.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "UMA is a decentralized financial contracts platform built to enable Universal Market Access.", + "website": "https://umaproject.org/", + "explorer": "https://snowtrace.io/token/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339", + "status": "active", + "id": "0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339", + "links": [ + { + "name": "x", + "url": "https://x.com/umaprotocol/" + }, + { + "name": "medium", + "url": "https://medium.com/uma-project" + }, + { + "name": "github", + "url": "https://github.com/UMAprotocol/protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uma/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uma/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/logo.png b/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/logo.png new file mode 100644 index 00000000..743d6a15 Binary files /dev/null and b/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/logo.png differ diff --git a/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json b/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json new file mode 100644 index 00000000..36ab197f --- /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 00000000..6876a666 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 00000000..6ef40e01 --- /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 00000000..0ca1800e Binary files /dev/null and b/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/logo.png differ diff --git a/blockchains/avalanchec/assets/0x442F7f22b1EE2c842bEAFf52880d4573E9201158/info.json b/blockchains/avalanchec/assets/0x442F7f22b1EE2c842bEAFf52880d4573E9201158/info.json new file mode 100644 index 00000000..058c2d2f --- /dev/null +++ b/blockchains/avalanchec/assets/0x442F7f22b1EE2c842bEAFf52880d4573E9201158/info.json @@ -0,0 +1,14 @@ +{ + "name": "Binance Coin (Portal)", + "symbol": "BNB", + "type": "AVALANCHE", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.binance.com/", + "explorer": "https://snowtrace.io/token/0x442F7f22b1EE2c842bEAFf52880d4573E9201158", + "status": "active", + "id": "0x442F7f22b1EE2c842bEAFf52880d4573E9201158", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x442F7f22b1EE2c842bEAFf52880d4573E9201158/logo.png b/blockchains/avalanchec/assets/0x442F7f22b1EE2c842bEAFf52880d4573E9201158/logo.png new file mode 100644 index 00000000..24a702d4 Binary files /dev/null and b/blockchains/avalanchec/assets/0x442F7f22b1EE2c842bEAFf52880d4573E9201158/logo.png differ diff --git a/blockchains/avalanchec/assets/0x44c784266cf024a60e8acF2427b9857Ace194C5d/info.json b/blockchains/avalanchec/assets/0x44c784266cf024a60e8acF2427b9857Ace194C5d/info.json new file mode 100644 index 00000000..1d143cd5 --- /dev/null +++ b/blockchains/avalanchec/assets/0x44c784266cf024a60e8acF2427b9857Ace194C5d/info.json @@ -0,0 +1,68 @@ +{ + "name": "Axelar", + "symbol": "AXL", + "type": "AVALANCHE", + "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://snowtrace.io/token/0x44c784266cf024a60e8acF2427b9857Ace194C5d", + "status": "active", + "id": "0x44c784266cf024a60e8acF2427b9857Ace194C5d", + "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" + }, + { + "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/axelar/" + }, + { + "name": "blog", + "url": "https://axelar.network/blog" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Axelarcore" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x44c784266cf024a60e8acF2427b9857Ace194C5d/logo.png b/blockchains/avalanchec/assets/0x44c784266cf024a60e8acF2427b9857Ace194C5d/logo.png new file mode 100644 index 00000000..6c156aba Binary files /dev/null and b/blockchains/avalanchec/assets/0x44c784266cf024a60e8acF2427b9857Ace194C5d/logo.png differ diff --git a/blockchains/avalanchec/assets/0x50b7545627a5162F82A992c33b87aDc75187B218/info.json b/blockchains/avalanchec/assets/0x50b7545627a5162F82A992c33b87aDc75187B218/info.json new file mode 100644 index 00000000..a322337f --- /dev/null +++ b/blockchains/avalanchec/assets/0x50b7545627a5162F82A992c33b87aDc75187B218/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped BTC", + "symbol": "WBTC.e", + "type": "AVALANCHE", + "decimals": 8, + "description": "Wrapped Bitcoin is an ERC20 token backed 1:1 with Bitcoin. Completely transparent. 100% verifiable. Community led.", + "website": "https://www.wbtc.network/", + "explorer": "https://snowtrace.io/token/0x50b7545627a5162F82A992c33b87aDc75187B218", + "status": "active", + "id": "0x50b7545627a5162F82A992c33b87aDc75187B218", + "links": [ + { + "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/avalanchec/assets/0x50b7545627a5162F82A992c33b87aDc75187B218/logo.png b/blockchains/avalanchec/assets/0x50b7545627a5162F82A992c33b87aDc75187B218/logo.png new file mode 100644 index 00000000..6aa8ad78 Binary files /dev/null and b/blockchains/avalanchec/assets/0x50b7545627a5162F82A992c33b87aDc75187B218/logo.png differ diff --git a/blockchains/avalanchec/assets/0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8/info.json b/blockchains/avalanchec/assets/0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8/info.json new file mode 100644 index 00000000..6a8255b6 --- /dev/null +++ b/blockchains/avalanchec/assets/0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (PoS) (Portal from Polygon)", + "symbol": "USDCpo", + "type": "AVALANCHE", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://snowtrace.io/token/0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8", + "status": "active", + "id": "0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8/logo.png b/blockchains/avalanchec/assets/0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8/logo.png new file mode 100644 index 00000000..4e3f74d2 Binary files /dev/null and b/blockchains/avalanchec/assets/0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8/logo.png differ diff --git a/blockchains/avalanchec/assets/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33/info.json b/blockchains/avalanchec/assets/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33/info.json new file mode 100644 index 00000000..99eb43fd --- /dev/null +++ b/blockchains/avalanchec/assets/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33/info.json @@ -0,0 +1,32 @@ +{ + "name": "JoeBar", + "symbol": "xJOE", + "type": "AVALANCHE", + "decimals": 18, + "description": "One-stop Decentralized Trading on Avalanche.", + "website": "https://traderjoexyz.com/", + "explorer": "https://snowtrace.io/token/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33", + "status": "abandoned", + "id": "0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33", + "links": [ + { + "name": "x", + "url": "https://x.com/traderjoe_xyz" + }, + { + "name": "telegram", + "url": "https://t.me/traderjoe_xyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/joe/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/joe/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/info.json b/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/info.json new file mode 100644 index 00000000..a84ab55d --- /dev/null +++ b/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/info.json @@ -0,0 +1,28 @@ +{ + "name": "Chainlink Token", + "symbol": "LINK.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.", + "website": "https://chain.link/", + "explorer": "https://snowtrace.io/token/0x5947BB275c521040051D82396192181b413227A3", + "status": "active", + "id": "0x5947BB275c521040051D82396192181b413227A3", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chainlink/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chainlink/" + }, + { + "name": "telegram", + "url": "https://t.me/chainlinkofficial" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/logo.png b/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/logo.png new file mode 100644 index 00000000..ab55f5e2 Binary files /dev/null and b/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/logo.png differ diff --git a/blockchains/avalanchec/assets/0x596fA47043f99A4e0F122243B841E55375cdE0d2/info.json b/blockchains/avalanchec/assets/0x596fA47043f99A4e0F122243B841E55375cdE0d2/info.json new file mode 100644 index 00000000..7ee1450b --- /dev/null +++ b/blockchains/avalanchec/assets/0x596fA47043f99A4e0F122243B841E55375cdE0d2/info.json @@ -0,0 +1,36 @@ +{ + "name": "ZRX", + "symbol": "ZRX.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "0x is an open, permissionless protocol allowing for tokens to be traded on the Ethereum blockchain.", + "website": "https://0x.org/", + "explorer": "https://snowtrace.io/token/0x596fA47043f99A4e0F122243B841E55375cdE0d2", + "status": "active", + "id": "0x596fA47043f99A4e0F122243B841E55375cdE0d2", + "links": [ + { + "name": "x", + "url": "https://x.com/0xproject" + }, + { + "name": "blog", + "url": "https://blog.0xproject.com/latest" + }, + { + "name": "discord", + "url": "https://discord.com/d3FTX3M" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/0x/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/0x/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x596fA47043f99A4e0F122243B841E55375cdE0d2/logo.png b/blockchains/avalanchec/assets/0x596fA47043f99A4e0F122243B841E55375cdE0d2/logo.png new file mode 100644 index 00000000..f4fe2ab0 Binary files /dev/null and b/blockchains/avalanchec/assets/0x596fA47043f99A4e0F122243B841E55375cdE0d2/logo.png differ diff --git a/blockchains/avalanchec/assets/0x5fC17416925789E0852FBFcd81c490ca4abc51F9/info.json b/blockchains/avalanchec/assets/0x5fC17416925789E0852FBFcd81c490ca4abc51F9/info.json new file mode 100644 index 00000000..0913280c --- /dev/null +++ b/blockchains/avalanchec/assets/0x5fC17416925789E0852FBFcd81c490ca4abc51F9/info.json @@ -0,0 +1,36 @@ +{ + "name": "inSure", + "symbol": "SURE", + "type": "AVALANCHE", + "decimals": 18, + "description": "inSure DeFi is a Decentralized Insurance Ecosystem, trusted by thousands of community members to protect their crypto portfolios from scams, exchange closures, and drastic devaluations.", + "website": "https://insuretoken.net/", + "explorer": "https://snowtrace.io/token/0x5fC17416925789E0852FBFcd81c490ca4abc51F9", + "status": "active", + "id": "0x5fC17416925789E0852FBFcd81c490ca4abc51F9", + "links": [ + { + "name": "x", + "url": "https://x.com/InsureToken" + }, + { + "name": "medium", + "url": "https://insureteam.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/insuretoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/insure/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/insure/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x5fC17416925789E0852FBFcd81c490ca4abc51F9/logo.png b/blockchains/avalanchec/assets/0x5fC17416925789E0852FBFcd81c490ca4abc51F9/logo.png new file mode 100644 index 00000000..fa4c0972 Binary files /dev/null and b/blockchains/avalanchec/assets/0x5fC17416925789E0852FBFcd81c490ca4abc51F9/logo.png differ diff --git a/blockchains/avalanchec/assets/0x60781C2586D68229fde47564546784ab3fACA982/info.json b/blockchains/avalanchec/assets/0x60781C2586D68229fde47564546784ab3fACA982/info.json new file mode 100644 index 00000000..8603b1b7 --- /dev/null +++ b/blockchains/avalanchec/assets/0x60781C2586D68229fde47564546784ab3fACA982/info.json @@ -0,0 +1,12 @@ +{ + "name": "Pangolin", + "symbol": "PNG", + "type": "AVALANCHE", + "decimals": 18, + "description": "A community-driven decentralized exchange for Avalanche and Ethereum assets with fast settlement, low transaction fees, and a democratic distribution–powered by Avalanche", + "website": "https://pangolin.exchange/", + "explorer": "https://snowtrace.io/token/0x60781C2586D68229fde47564546784ab3fACA982", + "research": "https://research.binance.com/en/projects/avalanche", + "status": "active", + "id": "0x60781C2586D68229fde47564546784ab3fACA982" +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x60781C2586D68229fde47564546784ab3fACA982/logo.png b/blockchains/avalanchec/assets/0x60781C2586D68229fde47564546784ab3fACA982/logo.png new file mode 100644 index 00000000..d1da9056 Binary files /dev/null and b/blockchains/avalanchec/assets/0x60781C2586D68229fde47564546784ab3fACA982/logo.png differ diff --git a/blockchains/avalanchec/assets/0x6145E8a910aE937913426BF32De2b26039728ACF/info.json b/blockchains/avalanchec/assets/0x6145E8a910aE937913426BF32De2b26039728ACF/info.json new file mode 100644 index 00000000..fb1143f5 --- /dev/null +++ b/blockchains/avalanchec/assets/0x6145E8a910aE937913426BF32De2b26039728ACF/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from BSC)", + "symbol": "USDCbs", + "type": "AVALANCHE", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://snowtrace.io/token/0x6145E8a910aE937913426BF32De2b26039728ACF", + "status": "active", + "id": "0x6145E8a910aE937913426BF32De2b26039728ACF", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x6145E8a910aE937913426BF32De2b26039728ACF/logo.png b/blockchains/avalanchec/assets/0x6145E8a910aE937913426BF32De2b26039728ACF/logo.png new file mode 100644 index 00000000..8ec55937 Binary files /dev/null and b/blockchains/avalanchec/assets/0x6145E8a910aE937913426BF32De2b26039728ACF/logo.png differ diff --git a/blockchains/avalanchec/assets/0x62edc0692BD897D2295872a9FFCac5425011c661/info.json b/blockchains/avalanchec/assets/0x62edc0692BD897D2295872a9FFCac5425011c661/info.json new file mode 100644 index 00000000..599d69d0 --- /dev/null +++ b/blockchains/avalanchec/assets/0x62edc0692BD897D2295872a9FFCac5425011c661/info.json @@ -0,0 +1,32 @@ +{ + "name": "GMX", + "type": "AVALANCHE", + "symbol": "GMX", + "decimals": 18, + "website": "https://gmx.io/", + "description": "GMX is a decentralized spot and perpetual exchange that supports low swap fees and zero price impact trades.", + "explorer": "https://snowtrace.io/token/0x62edc0692BD897D2295872a9FFCac5425011c661", + "status": "active", + "id": "0x62edc0692BD897D2295872a9FFCac5425011c661", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gmx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/gmx/" + }, + { + "name": "x", + "url": "https://x.com/GMX_IO" + }, + { + "name": "telegram", + "url": "https://t.me/GMX_IO" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x62edc0692BD897D2295872a9FFCac5425011c661/logo.png b/blockchains/avalanchec/assets/0x62edc0692BD897D2295872a9FFCac5425011c661/logo.png new file mode 100644 index 00000000..1e964f0a Binary files /dev/null and b/blockchains/avalanchec/assets/0x62edc0692BD897D2295872a9FFCac5425011c661/logo.png differ diff --git a/blockchains/avalanchec/assets/0x63a72806098Bd3D9520cC43356dD78afe5D386D9/info.json b/blockchains/avalanchec/assets/0x63a72806098Bd3D9520cC43356dD78afe5D386D9/info.json new file mode 100644 index 00000000..a5f15add --- /dev/null +++ b/blockchains/avalanchec/assets/0x63a72806098Bd3D9520cC43356dD78afe5D386D9/info.json @@ -0,0 +1,28 @@ +{ + "name": "Aave Token", + "symbol": "AAVE.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "The Avalanche Bridge Wrapped Aave Token. 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/", + "explorer": "https://snowtrace.io/token/0x63a72806098Bd3D9520cC43356dD78afe5D386D9", + "status": "active", + "id": "0x63a72806098Bd3D9520cC43356dD78afe5D386D9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aave/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aave/" + }, + { + "name": "x", + "url": "https://x.com/AaveAave" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x63a72806098Bd3D9520cC43356dD78afe5D386D9/logo.png b/blockchains/avalanchec/assets/0x63a72806098Bd3D9520cC43356dD78afe5D386D9/logo.png new file mode 100644 index 00000000..1e7cef36 Binary files /dev/null and b/blockchains/avalanchec/assets/0x63a72806098Bd3D9520cC43356dD78afe5D386D9/logo.png differ diff --git a/blockchains/avalanchec/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/avalanchec/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 00000000..09c48eef --- /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 00000000..203a846c 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 00000000..f48b3e82 --- /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 00000000..afa7fedd 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 00000000..6e9a7270 --- /dev/null +++ b/blockchains/avalanchec/assets/0x6b289CCeAA8639e3831095D75A3e43520faBf552/info.json @@ -0,0 +1,28 @@ +{ + "name": "Cartesi Token (PoS)", + "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 00000000..8317ac64 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 new file mode 100644 index 00000000..696f508f --- /dev/null +++ b/blockchains/avalanchec/assets/0x6e84a6216eA6dACC71eE8E6b0a5B7322EEbC0fDd/info.json @@ -0,0 +1,25 @@ +{ + "name": "JOE", + "symbol": "JOE", + "type": "AVALANCHE", + "decimals": 18, + "description": "One-stop Decentralized Trading on Avalanche.", + "website": "https://traderjoexyz.com/", + "explorer": "https://snowtrace.io/token/0x6e84a6216eA6dACC71eE8E6b0a5B7322EEbC0fDd", + "status": "active", + "id": "0x6e84a6216eA6dACC71eE8E6b0a5B7322EEbC0fDd", + "links": [ + { + "name": "x", + "url": "https://x.com/traderjoe_xyz" + }, + { + "name": "telegram", + "url": "https://t.me/traderjoe_xyz" + }, + { + "name": "github", + "url": "https://github.com/traderjoe-xyz/" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x6e84a6216eA6dACC71eE8E6b0a5B7322EEbC0fDd/logo.png b/blockchains/avalanchec/assets/0x6e84a6216eA6dACC71eE8E6b0a5B7322EEbC0fDd/logo.png new file mode 100644 index 00000000..7cf47068 Binary files /dev/null and b/blockchains/avalanchec/assets/0x6e84a6216eA6dACC71eE8E6b0a5B7322EEbC0fDd/logo.png differ diff --git a/blockchains/avalanchec/assets/0x70928E5B188def72817b7775F0BF6325968e563B/info.json b/blockchains/avalanchec/assets/0x70928E5B188def72817b7775F0BF6325968e563B/info.json new file mode 100644 index 00000000..cd0f0a4f --- /dev/null +++ b/blockchains/avalanchec/assets/0x70928E5B188def72817b7775F0BF6325968e563B/info.json @@ -0,0 +1,14 @@ +{ + "name": "LUNA (Portal)", + "symbol": "LUNA", + "type": "AVALANCHE", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://terra.money", + "explorer": "https://snowtrace.io/token/0x70928E5B188def72817b7775F0BF6325968e563B", + "status": "active", + "id": "0x70928E5B188def72817b7775F0BF6325968e563B", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x70928E5B188def72817b7775F0BF6325968e563B/logo.png b/blockchains/avalanchec/assets/0x70928E5B188def72817b7775F0BF6325968e563B/logo.png new file mode 100644 index 00000000..2a885151 Binary files /dev/null and b/blockchains/avalanchec/assets/0x70928E5B188def72817b7775F0BF6325968e563B/logo.png differ diff --git a/blockchains/avalanchec/assets/0x714f020C54cc9D104B6F4f6998C63ce2a31D1888/info.json b/blockchains/avalanchec/assets/0x714f020C54cc9D104B6F4f6998C63ce2a31D1888/info.json new file mode 100644 index 00000000..20d3ca0d --- /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 00000000..981faa3d 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 new file mode 100644 index 00000000..096cb2e7 --- /dev/null +++ b/blockchains/avalanchec/assets/0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf/info.json @@ -0,0 +1,48 @@ +{ + "name": "Pollen", + "type": "AVALANCHE", + "symbol": "PLN", + "decimals": 18, + "website": "https://pollen.id", + "description": "Pollen is a crypto asset management suite that brings together the core principles of DeFi with collective intelligence.", + "explorer": "https://snowtrace.io/token/0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf", + "status": "active", + "id": "0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf", + "links": [ + { + "name": "x", + "url": "https://x.com/PollenDeFi" + }, + { + "name": "github", + "url": "https://github.com/PollenDeFi" + }, + { + "name": "telegram", + "url": "https://t.me/pollen_dao" + }, + { + "name": "medium", + "url": "https://medium.com/pollen-defi" + }, + { + "name": "whitepaper", + "url": "https://pollen.id/litepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pollen/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pollen" + }, + { + "name": "discord", + "url": "https://discord.com/invite/KJzrVTU8RT" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf/logo.png b/blockchains/avalanchec/assets/0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf/logo.png new file mode 100644 index 00000000..84683b77 Binary files /dev/null and b/blockchains/avalanchec/assets/0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf/logo.png differ diff --git a/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/info.json b/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/info.json new file mode 100644 index 00000000..7a3320fa --- /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 00000000..fa649485 Binary files /dev/null and b/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/logo.png differ diff --git a/blockchains/avalanchec/assets/0x88128fd4b259552A9A1D457f435a6527AAb72d42/info.json b/blockchains/avalanchec/assets/0x88128fd4b259552A9A1D457f435a6527AAb72d42/info.json new file mode 100644 index 00000000..d4af20ba --- /dev/null +++ b/blockchains/avalanchec/assets/0x88128fd4b259552A9A1D457f435a6527AAb72d42/info.json @@ -0,0 +1,28 @@ +{ + "name": "Maker", + "symbol": "MKR.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "The Avalanche Bridge Wrapped Maker. Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain.", + "website": "https://makerdao.com/", + "explorer": "https://snowtrace.io/token/0x88128fd4b259552A9A1D457f435a6527AAb72d42", + "status": "active", + "id": "0x88128fd4b259552A9A1D457f435a6527AAb72d42", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maker/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/maker/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/assets/documents/purple.pdf" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x88128fd4b259552A9A1D457f435a6527AAb72d42/logo.png b/blockchains/avalanchec/assets/0x88128fd4b259552A9A1D457f435a6527AAb72d42/logo.png new file mode 100644 index 00000000..903f0969 Binary files /dev/null and b/blockchains/avalanchec/assets/0x88128fd4b259552A9A1D457f435a6527AAb72d42/logo.png differ diff --git a/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/info.json b/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/info.json new file mode 100644 index 00000000..900423aa --- /dev/null +++ b/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/info.json @@ -0,0 +1,28 @@ +{ + "name": "Graph Token", + "symbol": "GRT.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "The Graph is an indexing protocol and global API for organizing blockchain data and making it easily accessible with GraphQL.", + "website": "https://thegraph.com/", + "explorer": "https://snowtrace.io/token/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9", + "status": "active", + "id": "0x8a0cAc13c7da965a312f08ea4229c37869e85cB9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-graph/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-graph/" + }, + { + "name": "x", + "url": "https://x.com/graphprotocol" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/logo.png b/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/logo.png new file mode 100644 index 00000000..0552c7bc Binary files /dev/null and b/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/logo.png differ diff --git a/blockchains/avalanchec/assets/0x8b82A291F83ca07Af22120ABa21632088fC92931/info.json b/blockchains/avalanchec/assets/0x8b82A291F83ca07Af22120ABa21632088fC92931/info.json new file mode 100644 index 00000000..90b908d0 --- /dev/null +++ b/blockchains/avalanchec/assets/0x8b82A291F83ca07Af22120ABa21632088fC92931/info.json @@ -0,0 +1,14 @@ +{ + "name": "Ether (Portal)", + "symbol": "ETH", + "type": "AVALANCHE", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://ethereum.org/en/", + "explorer": "https://snowtrace.io/token/0x8b82A291F83ca07Af22120ABa21632088fC92931", + "status": "active", + "id": "0x8b82A291F83ca07Af22120ABa21632088fC92931", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x8b82A291F83ca07Af22120ABa21632088fC92931/logo.png b/blockchains/avalanchec/assets/0x8b82A291F83ca07Af22120ABa21632088fC92931/logo.png new file mode 100644 index 00000000..2d99a939 Binary files /dev/null and b/blockchains/avalanchec/assets/0x8b82A291F83ca07Af22120ABa21632088fC92931/logo.png differ diff --git a/blockchains/avalanchec/assets/0x8cE2Dee54bB9921a2AE0A63dBb2DF8eD88B91dD9/info.json b/blockchains/avalanchec/assets/0x8cE2Dee54bB9921a2AE0A63dBb2DF8eD88B91dD9/info.json new file mode 100644 index 00000000..4a13d5ad --- /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 00000000..d53b1142 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 new file mode 100644 index 00000000..5c399309 --- /dev/null +++ b/blockchains/avalanchec/assets/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580/info.json @@ -0,0 +1,28 @@ +{ + "name": "Uniswap", + "symbol": "UNI.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "The Avalanche Bridge Wrapped Uniswap. Unwrapped Etherscan ERC20 Desc Below:UNI token served as governance token for Uniswap protocol with 1 billion UNI have been minted at genesis. 60% of the UNI genesis supply is allocated to Uniswap community members and remaining for team, investors and advisors.", + "website": "https://uniswap.org/", + "explorer": "https://snowtrace.io/token/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580", + "status": "active", + "id": "0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uniswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uniswap/" + }, + { + "name": "x", + "url": "https://x.com/uniswap/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580/logo.png b/blockchains/avalanchec/assets/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580/logo.png new file mode 100644 index 00000000..893ef55c Binary files /dev/null and b/blockchains/avalanchec/assets/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580/logo.png differ diff --git a/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json b/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json new file mode 100644 index 00000000..eb8eb076 --- /dev/null +++ b/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/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/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", + "status": "abandoned", + "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", + "links": [ + { + "name": "x", + "url": "https://x.com/dypfinance" + }, + { + "name": "github", + "url": "https://github.com/dypfinance/" + }, + { + "name": "medium", + "url": "https://dypfinance.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defi-yield-protocol/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dypius" + }, + { + "name": "discord", + "url": "https://discord.com/invite/dypcaws" + }, + { + "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/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/info.json b/blockchains/avalanchec/assets/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/info.json new file mode 100644 index 00000000..258500b5 --- /dev/null +++ b/blockchains/avalanchec/assets/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/info.json @@ -0,0 +1,32 @@ +{ + "name": "TetherToken", + "symbol": "USDt", + "type": "AVALANCHE", + "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/", + "explorer": "https://snowtrace.io/token/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7", + "status": "active", + "id": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7", + "links": [ + { + "name": "x", + "url": "https://x.com/Tether_to" + }, + { + "name": "whitepaper", + "url": "https://tether.to/wp-content/uploads/2016/06/TetherWhitePaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/logo.png b/blockchains/avalanchec/assets/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/logo.png new file mode 100644 index 00000000..d440f6c3 Binary files /dev/null and b/blockchains/avalanchec/assets/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/logo.png differ diff --git a/blockchains/avalanchec/assets/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588/info.json b/blockchains/avalanchec/assets/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588/info.json new file mode 100644 index 00000000..6e24a6ed --- /dev/null +++ b/blockchains/avalanchec/assets/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588/info.json @@ -0,0 +1,28 @@ +{ + "name": "Basic Attention Token", + "symbol": "BAT.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "The Avalanche Bridge Wrapped BAT. The Basic Attention Token is the new token for the digital advertising industry.", + "website": "https://basicattentiontoken.org/", + "explorer": "https://snowtrace.io/token/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588", + "status": "active", + "id": "0x98443B96EA4b0858FDF3219Cd13e98C7A4690588", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/basic-attention-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/basic-attention-token/" + }, + { + "name": "x", + "url": "https://x.com/@attentiontoken" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588/logo.png b/blockchains/avalanchec/assets/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588/logo.png new file mode 100644 index 00000000..e30c1e59 Binary files /dev/null and b/blockchains/avalanchec/assets/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588/logo.png differ diff --git a/blockchains/avalanchec/assets/0x98a4d09036Cc5337810096b1D004109686E56Afc/info.json b/blockchains/avalanchec/assets/0x98a4d09036Cc5337810096b1D004109686E56Afc/info.json new file mode 100644 index 00000000..9a2a0486 --- /dev/null +++ b/blockchains/avalanchec/assets/0x98a4d09036Cc5337810096b1D004109686E56Afc/info.json @@ -0,0 +1,14 @@ +{ + "name": "PancakeSwap Token (Portal)", + "symbol": "CAKE", + "type": "AVALANCHE", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://pancakeswap.finance/", + "explorer": "https://snowtrace.io/token/0x98a4d09036Cc5337810096b1D004109686E56Afc", + "status": "active", + "id": "0x98a4d09036Cc5337810096b1D004109686E56Afc", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x98a4d09036Cc5337810096b1D004109686E56Afc/logo.png b/blockchains/avalanchec/assets/0x98a4d09036Cc5337810096b1D004109686E56Afc/logo.png new file mode 100644 index 00000000..cb6457e6 Binary files /dev/null and b/blockchains/avalanchec/assets/0x98a4d09036Cc5337810096b1D004109686E56Afc/logo.png differ diff --git a/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json new file mode 100644 index 00000000..307b2716 --- /dev/null +++ b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/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://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 00000000..76d02e37 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 new file mode 100644 index 00000000..7bc46491 --- /dev/null +++ b/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/info.json @@ -0,0 +1,36 @@ +{ + "name": "yearn.finance", + "symbol": "YFI.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "DeFi made simple.", + "website": "https://yearn.finance/", + "explorer": "https://snowtrace.io/token/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc", + "status": "active", + "id": "0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc", + "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/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/logo.png b/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/logo.png new file mode 100644 index 00000000..8f06d5eb Binary files /dev/null and b/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/logo.png differ diff --git a/blockchains/avalanchec/assets/0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a/info.json b/blockchains/avalanchec/assets/0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a/info.json new file mode 100644 index 00000000..5d5c1588 --- /dev/null +++ b/blockchains/avalanchec/assets/0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a/info.json @@ -0,0 +1,14 @@ +{ + "name": "Binance USD (Portal from BSC)", + "symbol": "BUSDbs", + "type": "AVALANCHE", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.paxos.com/busd/", + "explorer": "https://snowtrace.io/token/0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a", + "status": "active", + "id": "0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a/logo.png b/blockchains/avalanchec/assets/0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a/logo.png new file mode 100644 index 00000000..58b66f7e Binary files /dev/null and b/blockchains/avalanchec/assets/0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a/logo.png differ diff --git a/blockchains/avalanchec/assets/0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B/info.json b/blockchains/avalanchec/assets/0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B/info.json new file mode 100644 index 00000000..1daf409c --- /dev/null +++ b/blockchains/avalanchec/assets/0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from BSC)", + "symbol": "USDTbs", + "type": "AVALANCHE", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://snowtrace.io/token/0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B", + "status": "active", + "id": "0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B/logo.png b/blockchains/avalanchec/assets/0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B/logo.png new file mode 100644 index 00000000..49821981 Binary files /dev/null and b/blockchains/avalanchec/assets/0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B/logo.png differ diff --git a/blockchains/avalanchec/assets/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664/info.json b/blockchains/avalanchec/assets/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664/info.json new file mode 100644 index 00000000..57554e0d --- /dev/null +++ b/blockchains/avalanchec/assets/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664/info.json @@ -0,0 +1,32 @@ +{ + "name": "USD Coin", + "symbol": "USDC.e", + "type": "AVALANCHE", + "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/", + "explorer": "https://snowtrace.io/token/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664", + "status": "active", + "id": "0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664", + "links": [ + { + "name": "x", + "url": "https://x.com/centre_io" + }, + { + "name": "whitepaper", + "url": "https://f.hubspotusercontent30.net/hubfs/9304636/PDF/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/avalanchec/assets/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664/logo.png b/blockchains/avalanchec/assets/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664/logo.png new file mode 100644 index 00000000..f3ff8bea Binary files /dev/null and b/blockchains/avalanchec/assets/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664/logo.png differ diff --git a/blockchains/avalanchec/assets/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E/info.json b/blockchains/avalanchec/assets/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E/info.json new file mode 100644 index 00000000..56eefcce --- /dev/null +++ b/blockchains/avalanchec/assets/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E/info.json @@ -0,0 +1,40 @@ +{ + "name": "Oddz", + "symbol": "ODDZ", + "type": "AVALANCHE", + "decimals": 18, + "description": "Multi-chain Derivatives Trading Protocol.", + "website": "https://www.oddz.fi/", + "explorer": "https://snowtrace.io/token/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E", + "status": "active", + "id": "0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E", + "links": [ + { + "name": "telegram", + "url": "https://t.me/oddz_fi_announcements" + }, + { + "name": "x", + "url": "https://x.com/oddz_finance" + }, + { + "name": "facebook", + "url": "https://facebook.com/Oddz.fi" + }, + { + "name": "whitepaper", + "url": "https://docsend.com/view/mefxr8h3ymzuhwqk" + }, + { + "name": "github", + "url": "https://github.com/oddz-finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oddz/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E/logo.png b/blockchains/avalanchec/assets/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E/logo.png new file mode 100644 index 00000000..e80daa2e Binary files /dev/null and b/blockchains/avalanchec/assets/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E/logo.png differ diff --git a/blockchains/avalanchec/assets/0xB24CA28D4e2742907115fECda335b40dbda07a4C/info.json b/blockchains/avalanchec/assets/0xB24CA28D4e2742907115fECda335b40dbda07a4C/info.json new file mode 100644 index 00000000..5573cadf --- /dev/null +++ b/blockchains/avalanchec/assets/0xB24CA28D4e2742907115fECda335b40dbda07a4C/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Ethereum)", + "symbol": "USDCet", + "type": "AVALANCHE", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://snowtrace.io/token/0xB24CA28D4e2742907115fECda335b40dbda07a4C", + "status": "active", + "id": "0xB24CA28D4e2742907115fECda335b40dbda07a4C", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xB24CA28D4e2742907115fECda335b40dbda07a4C/logo.png b/blockchains/avalanchec/assets/0xB24CA28D4e2742907115fECda335b40dbda07a4C/logo.png new file mode 100644 index 00000000..ed00e43f Binary files /dev/null and b/blockchains/avalanchec/assets/0xB24CA28D4e2742907115fECda335b40dbda07a4C/logo.png differ diff --git a/blockchains/avalanchec/assets/0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7/info.json b/blockchains/avalanchec/assets/0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7/info.json new file mode 100644 index 00000000..d2ea5f3b --- /dev/null +++ b/blockchains/avalanchec/assets/0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7/info.json @@ -0,0 +1,28 @@ +{ + "name": "Wrapped AVAX", + "symbol": "WAVAX", + "type": "AVALANCHE", + "decimals": 18, + "description": "Avalanche is the fastest smart contracts platform in the blockchain industry, as measured by time-to-finality, and has the most validators securing its activity of any proof-of-stake protocol.", + "website": "https://www.avax.network/", + "explorer": "https://snowtrace.io/token/0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "status": "active", + "id": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/avalanche/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/avalanche-2/" + }, + { + "name": "telegram", + "url": "https://t.me/avalancheavax" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7/logo.png b/blockchains/avalanchec/assets/0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7/logo.png new file mode 100644 index 00000000..ea109525 Binary files /dev/null and b/blockchains/avalanchec/assets/0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7/logo.png differ diff --git a/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json b/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json new file mode 100644 index 00000000..6be98e31 --- /dev/null +++ b/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json @@ -0,0 +1,32 @@ +{ + "name": "Anyswap", + "symbol": "ANY", + "type": "AVALANCHE", + "decimals": 18, + "description": "Anyswap is a mpc decentralized cross-chain swap protocol.", + "website": "https://anyswap.exchange/", + "explorer": "https://snowtrace.io/token/0xB44a9B6905aF7c801311e8F4E76932ee959c663C", + "status": "active", + "id": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C", + "links": [ + { + "name": "x", + "url": "https://x.com/AnyswapNetwork" + }, + { + "name": "telegram", + "url": "https://t.me/anyswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/anyswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/anyswap/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png b/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png new file mode 100644 index 00000000..f2d3a884 Binary files /dev/null and b/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png differ diff --git a/blockchains/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/info.json b/blockchains/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/info.json new file mode 100644 index 00000000..473b09d1 --- /dev/null +++ b/blockchains/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/info.json @@ -0,0 +1,32 @@ +{ + "name": "USD Coin", + "symbol": "USDC", + "type": "AVALANCHE", + "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/", + "explorer": "https://snowtrace.io/token/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "status": "active", + "id": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "links": [ + { + "name": "x", + "url": "https://x.com/centre_io" + }, + { + "name": "whitepaper", + "url": "https://f.hubspotusercontent30.net/hubfs/9304636/PDF/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/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/logo.png b/blockchains/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/logo.png new file mode 100644 index 00000000..f3ff8bea Binary files /dev/null and b/blockchains/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/logo.png differ diff --git a/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json b/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json new file mode 100644 index 00000000..e20268f2 --- /dev/null +++ b/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json @@ -0,0 +1,45 @@ +{ + "name": "iDeFiYieldProtocol", + "type": "AVALANCHE", + "symbol": "iDYP", + "decimals": 18, + "website": "https://www.dypius.com/", + "description": "iDYP is part of the Dypius dual token economy and is used as a component of smart contract strategies related to staking, analytical tools, NFTs, and metaverse.", + "explorer": "https://snowtrace.io/token/0xBD100d061E120b2c67A24453CF6368E63f1Be056", + "status": "active", + "id": "0xBD100d061E120b2c67A24453CF6368E63f1Be056", + "links": [ + { + "name": "x", + "url": "https://x.com/dypfinance" + }, + { + "name": "github", + "url": "https://github.com/dypfinance/" + }, + { + "name": "medium", + "url": "https://dypfinance.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/idefiyieldprotocol/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/idefiyieldprotocol" + }, + { + "name": "discord", + "url": "https://discord.com/invite/dypcaws" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/drive/folders/1PprliiDlNB6Cx-35eaEun-gmjk0-a1O4" + } + ], + "tags": [ + "governance", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png b/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png new file mode 100644 index 00000000..68ecfe32 Binary files /dev/null and b/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png differ diff --git a/blockchains/avalanchec/assets/0xBeC243C995409E6520D7C41E404da5dEba4b209B/info.json b/blockchains/avalanchec/assets/0xBeC243C995409E6520D7C41E404da5dEba4b209B/info.json new file mode 100644 index 00000000..e011225a --- /dev/null +++ b/blockchains/avalanchec/assets/0xBeC243C995409E6520D7C41E404da5dEba4b209B/info.json @@ -0,0 +1,36 @@ +{ + "name": "Synthetix Network Token", + "symbol": "SNX.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "The Avalanche Bridge Wrapped Synthetix Network Token. The Synthetix Network Token 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.", + "website": "https://www.synthetix.io/", + "explorer": "https://snowtrace.io/token/0xBeC243C995409E6520D7C41E404da5dEba4b209B", + "status": "active", + "id": "0xBeC243C995409E6520D7C41E404da5dEba4b209B", + "links": [ + { + "name": "x", + "url": "https://x.com/synthetix_io" + }, + { + "name": "blog", + "url": "https://blog.synthetix.io/" + }, + { + "name": "github", + "url": "https://github.com/havven/havven" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/synthetix-network-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/havven/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xBeC243C995409E6520D7C41E404da5dEba4b209B/logo.png b/blockchains/avalanchec/assets/0xBeC243C995409E6520D7C41E404da5dEba4b209B/logo.png new file mode 100644 index 00000000..2a850de0 Binary files /dev/null and b/blockchains/avalanchec/assets/0xBeC243C995409E6520D7C41E404da5dEba4b209B/logo.png differ diff --git a/blockchains/avalanchec/assets/0xC0C5AA69Dbe4d6DDdfBc89c0957686ec60F24389/info.json b/blockchains/avalanchec/assets/0xC0C5AA69Dbe4d6DDdfBc89c0957686ec60F24389/info.json new file mode 100644 index 00000000..3fb1bd7c --- /dev/null +++ b/blockchains/avalanchec/assets/0xC0C5AA69Dbe4d6DDdfBc89c0957686ec60F24389/info.json @@ -0,0 +1,25 @@ +{ + "name": "XEN Crypto", + "symbol": "XEN", + "type": "AVALANCHE", + "decimals": 18, + "description": "XEN aims to become a community-building crypto asset that connects like minded people together and provide the lowest barrier to entry through its unique tokenomics.", + "website": "https://xen.network/", + "explorer": "https://snowtrace.io/token/0xC0C5AA69Dbe4d6DDdfBc89c0957686ec60F24389", + "status": "active", + "id": "0xC0C5AA69Dbe4d6DDdfBc89c0957686ec60F24389", + "links": [ + { + "name": "x", + "url": "https://x.com/XEN_Crypto" + }, + { + "name": "telegram", + "url": "https://t.me/XENCryptoTalk" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xen-crypto/" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xC0C5AA69Dbe4d6DDdfBc89c0957686ec60F24389/logo.png b/blockchains/avalanchec/assets/0xC0C5AA69Dbe4d6DDdfBc89c0957686ec60F24389/logo.png new file mode 100644 index 00000000..78379574 Binary files /dev/null and b/blockchains/avalanchec/assets/0xC0C5AA69Dbe4d6DDdfBc89c0957686ec60F24389/logo.png differ diff --git a/blockchains/avalanchec/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json b/blockchains/avalanchec/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json new file mode 100644 index 00000000..98c6debc --- /dev/null +++ b/blockchains/avalanchec/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json @@ -0,0 +1,55 @@ +{ + "name": "EverRise", + "symbol": "RISE", + "type": "AVALANCHE", + "decimals": 18, + "description": "The Original Buyback Token Powering The EverRise Ecosystem. EverRise token (RISE) is a multi-chain collateralized cryptocurrency that protects both the ecosystem and investors with its innovative buyback and staking protocol.", + "website": "https://www.everrise.com/", + "explorer": "https://snowtrace.io/token/0xC17c30e98541188614dF99239cABD40280810cA3", + "status": "active", + "id": "0xC17c30e98541188614dF99239cABD40280810cA3", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/everrise/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/everrise" + }, + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png b/blockchains/avalanchec/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png new file mode 100644 index 00000000..fb9f7a63 Binary files /dev/null and b/blockchains/avalanchec/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png differ diff --git a/blockchains/avalanchec/assets/0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD/info.json b/blockchains/avalanchec/assets/0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD/info.json new file mode 100644 index 00000000..3780cae1 --- /dev/null +++ b/blockchains/avalanchec/assets/0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD/info.json @@ -0,0 +1,24 @@ +{ + "name": "Euro Coin", + "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 00000000..77007fae 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 new file mode 100644 index 00000000..0c0b0d16 --- /dev/null +++ b/blockchains/avalanchec/assets/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814/info.json @@ -0,0 +1,32 @@ +{ + "name": "Spell Token", + "symbol": "SPELL", + "type": "AVALANCHE", + "decimals": 18, + "description": "Abracadabra.money is a lending platform that allows users to borrow funds using Interest Bearing Tokens as collateral.", + "website": "https://abracadabra.money/", + "explorer": "https://snowtrace.io/token/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814", + "status": "active", + "id": "0xCE1bFFBD5374Dac86a2893119683F4911a2F7814", + "links": [ + { + "name": "x", + "url": "https://x.com/MIM_Spell" + }, + { + "name": "medium", + "url": "https://abracadabramoney.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spell-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/spell-token/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814/logo.png b/blockchains/avalanchec/assets/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814/logo.png new file mode 100644 index 00000000..3df427c3 Binary files /dev/null and b/blockchains/avalanchec/assets/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814/logo.png differ diff --git a/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/info.json b/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/info.json new file mode 100644 index 00000000..827557e8 --- /dev/null +++ b/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/info.json @@ -0,0 +1,29 @@ +{ + "name": "Frax", + "symbol": "FRAX", + "type": "AVALANCHE", + "decimals": 18, + "description": "Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.", + "website": "https://frax.finance/", + "explorer": "https://snowtrace.io/token/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64", + "status": "active", + "id": "0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/frax/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/frax/" + }, + { + "name": "x", + "url": "https://x.com/fraxfinance" + } + ], + "tags": [ + "defi", + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/logo.png b/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/logo.png new file mode 100644 index 00000000..762d2dd3 Binary files /dev/null and b/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/logo.png differ diff --git a/blockchains/avalanchec/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/info.json b/blockchains/avalanchec/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/info.json new file mode 100644 index 00000000..28b11101 --- /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 00000000..40c6216b 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 new file mode 100644 index 00000000..8ff334b0 --- /dev/null +++ b/blockchains/avalanchec/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json @@ -0,0 +1,47 @@ +{ + "name": "Vote-escrowed EverRise", + "symbol": "veRISE", + "type": "AVALANCHE", + "decimals": 18, + "description": "Virtual token that allows the Vote Escrowed (ve) EverRise weighted governance tokens from EverRise Staking NFTs to display in wallet balances.", + "website": "https://www.everrise.com/", + "explorer": "https://snowtrace.io/token/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", + "status": "active", + "id": "0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", + "links": [ + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png b/blockchains/avalanchec/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png new file mode 100644 index 00000000..47ffbe08 Binary files /dev/null and b/blockchains/avalanchec/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png differ diff --git a/blockchains/avalanchec/assets/0xF0FF231e3F1A50F83136717f287ADAB862f89431/info.json b/blockchains/avalanchec/assets/0xF0FF231e3F1A50F83136717f287ADAB862f89431/info.json new file mode 100644 index 00000000..3b446a41 --- /dev/null +++ b/blockchains/avalanchec/assets/0xF0FF231e3F1A50F83136717f287ADAB862f89431/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from Solana)", + "symbol": "USDTso", + "type": "AVALANCHE", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://snowtrace.io/token/0xF0FF231e3F1A50F83136717f287ADAB862f89431", + "status": "active", + "id": "0xF0FF231e3F1A50F83136717f287ADAB862f89431", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xF0FF231e3F1A50F83136717f287ADAB862f89431/logo.png b/blockchains/avalanchec/assets/0xF0FF231e3F1A50F83136717f287ADAB862f89431/logo.png new file mode 100644 index 00000000..d52df831 Binary files /dev/null and b/blockchains/avalanchec/assets/0xF0FF231e3F1A50F83136717f287ADAB862f89431/logo.png differ diff --git a/blockchains/avalanchec/assets/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0/info.json b/blockchains/avalanchec/assets/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0/info.json new file mode 100644 index 00000000..95d7e948 --- /dev/null +++ b/blockchains/avalanchec/assets/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0/info.json @@ -0,0 +1,34 @@ +{ + "name": "Galaxy Goggle", + "symbol": "GG", + "type": "AVALANCHE", + "decimals": 9, + "description": "Galaxy Goggle DAO is a decentralized reserve currency protocol based on the GG token. Each GG token is backed by a basket of assets (e.g. MIM, AVAX) in the collateral pool, giving it an intrinsic value that it cannot fall below. GGDAO also introduces economic and game-theoretic dynamics into the market through staking and minting.", + "website": "https://app.galaxygoggle.money", + "explorer": "https://snowtrace.io/token/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0", + "research": "https://research.binance.com/en/projects/avalanche", + "status": "active", + "id": "0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0", + "links": [ + { + "name": "github", + "url": "https://github.com/GalaxyGoggle" + }, + { + "name": "x", + "url": "https://x.com/galaxygoggledao" + }, + { + "name": "telegram", + "url": "https://t.me/ApeX_Token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/galaxygoggle-dao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/galaxygoogle-dao" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0/logo.png b/blockchains/avalanchec/assets/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0/logo.png new file mode 100644 index 00000000..5eb7f133 Binary files /dev/null and b/blockchains/avalanchec/assets/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0/logo.png differ diff --git a/blockchains/avalanchec/assets/0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F/info.json b/blockchains/avalanchec/assets/0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F/info.json new file mode 100644 index 00000000..295f3968 --- /dev/null +++ b/blockchains/avalanchec/assets/0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F/info.json @@ -0,0 +1,14 @@ +{ + "name": "SOL (Portal)", + "symbol": "SOL", + "type": "AVALANCHE", + "decimals": 9, + "description": "Cross Chain Portal Bridged Token", + "website": "https://solana.com/", + "explorer": "https://snowtrace.io/token/0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F", + "status": "active", + "id": "0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F/logo.png b/blockchains/avalanchec/assets/0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F/logo.png new file mode 100644 index 00000000..7a2e75fd Binary files /dev/null and b/blockchains/avalanchec/assets/0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F/logo.png differ diff --git a/blockchains/avalanchec/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json b/blockchains/avalanchec/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json new file mode 100644 index 00000000..b7f6fd6c --- /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 00000000..ea3dae36 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 00000000..d3b43c1e --- /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 00000000..e4e65ed4 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 00000000..370acd27 --- /dev/null +++ b/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/info.json @@ -0,0 +1,36 @@ +{ + "name": "Wootrade Network", + "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 00000000..5cd7c399 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 new file mode 100644 index 00000000..b38ae7c0 --- /dev/null +++ b/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/info.json @@ -0,0 +1,14 @@ +{ + "name": "UST (Portal)", + "symbol": "UST", + "type": "AVALANCHE", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://terra.money", + "explorer": "https://snowtrace.io/token/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1", + "status": "active", + "id": "0xb599c3590F42f8F995ECfa0f85D2980B76862fc1", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/logo.png b/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/logo.png new file mode 100644 index 00000000..e3110cce Binary files /dev/null and b/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/logo.png differ diff --git a/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json b/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json new file mode 100644 index 00000000..db20d381 --- /dev/null +++ b/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json @@ -0,0 +1,47 @@ +{ + "name": "EverRise Rewards", + "symbol": "claimRISE", + "type": "AVALANCHE", + "decimals": 18, + "description": "Virtual token that allows unclaimed rewards from EverRise Staking NFTs and its Vote Escrowed (ve) EverRise to display in wallet balances.", + "website": "https://www.everrise.com/", + "explorer": "https://snowtrace.io/token/0xbBD7B847C6d0d0B5691518a363194D71426475F1", + "status": "active", + "id": "0xbBD7B847C6d0d0B5691518a363194D71426475F1", + "links": [ + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png b/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png new file mode 100644 index 00000000..efff8d00 Binary files /dev/null and b/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png differ diff --git a/blockchains/avalanchec/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json b/blockchains/avalanchec/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json new file mode 100644 index 00000000..49ad2dce --- /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 00000000..d66f3d33 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 new file mode 100644 index 00000000..59698356 --- /dev/null +++ b/blockchains/avalanchec/assets/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437/info.json @@ -0,0 +1,28 @@ +{ + "name": "Compound", + "symbol": "COMP.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "The Avalanche Bridge Wrapped Compound.", + "website": "https://compound.finance/", + "explorer": "https://snowtrace.io/token/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437", + "status": "active", + "id": "0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/compound/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/compound-governance-token/" + }, + { + "name": "x", + "url": "https://x.com/compoundfinance" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437/logo.png b/blockchains/avalanchec/assets/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437/logo.png new file mode 100644 index 00000000..7f6b0a1a Binary files /dev/null and b/blockchains/avalanchec/assets/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437/logo.png differ diff --git a/blockchains/avalanchec/assets/0xc3344870d52688874b06d844E0C36cc39FC727F6/info.json b/blockchains/avalanchec/assets/0xc3344870d52688874b06d844E0C36cc39FC727F6/info.json new file mode 100644 index 00000000..258a3f76 --- /dev/null +++ b/blockchains/avalanchec/assets/0xc3344870d52688874b06d844E0C36cc39FC727F6/info.json @@ -0,0 +1,56 @@ +{ + "name": "Ankr Staked AVAX", + "type": "AVALANCHE", + "symbol": "ankrAVAX", + "decimals": 18, + "website": "https://ankr.com", + "description": "ankrAVAX represents your staked AVAX and provides liquidity for your staked position. All staking rewards are built into the token price, and ankrAVAX grows daily in value, but never in number.", + "explorer": "https://snowtrace.io/token/0xc3344870d52688874b06d844e0c36cc39fc727f6", + "status": "active", + "id": "0xc3344870d52688874b06d844E0C36cc39FC727F6", + "links": [ + { + "name": "x", + "url": "https://x.com/ankr" + }, + { + "name": "github", + "url": "https://github.com/Ankr-network" + }, + { + "name": "telegram", + "url": "https://t.me/ankrnetwork" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ankr-staked-avax" + }, + { + "name": "youtube", + "url": "https://youtube.com/@AnkrOfficial" + }, + { + "name": "medium", + "url": "https://medium.com/ankr-network" + }, + { + "name": "docs", + "url": "https://ankr.com/docs/staking/overview" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ankr" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Ankrofficial/" + }, + { + "name": "whitepaper", + "url": "https://ankr.com/ankr-whitepaper-2.0.pdf" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xc3344870d52688874b06d844E0C36cc39FC727F6/logo.png b/blockchains/avalanchec/assets/0xc3344870d52688874b06d844E0C36cc39FC727F6/logo.png new file mode 100644 index 00000000..9b53519c Binary files /dev/null and b/blockchains/avalanchec/assets/0xc3344870d52688874b06d844E0C36cc39FC727F6/logo.png differ diff --git a/blockchains/avalanchec/assets/0xc4B06F17ECcB2215a5DBf042C672101Fc20daF55/info.json b/blockchains/avalanchec/assets/0xc4B06F17ECcB2215a5DBf042C672101Fc20daF55/info.json new file mode 100644 index 00000000..4824d999 --- /dev/null +++ b/blockchains/avalanchec/assets/0xc4B06F17ECcB2215a5DBf042C672101Fc20daF55/info.json @@ -0,0 +1,40 @@ +{ + "name": "Flux", + "type": "AVALANCHE", + "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://snowtrace.io/token/0xc4B06F17ECcB2215a5DBf042C672101Fc20daF55", + "status": "active", + "id": "0xc4B06F17ECcB2215a5DBf042C672101Fc20daF55", + "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/avalanchec/assets/0xc4B06F17ECcB2215a5DBf042C672101Fc20daF55/logo.png b/blockchains/avalanchec/assets/0xc4B06F17ECcB2215a5DBf042C672101Fc20daF55/logo.png new file mode 100644 index 00000000..9d7b0435 Binary files /dev/null and b/blockchains/avalanchec/assets/0xc4B06F17ECcB2215a5DBf042C672101Fc20daF55/logo.png differ diff --git a/blockchains/avalanchec/assets/0xc7198437980c041c805A1EDcbA50c1Ce5db95118/info.json b/blockchains/avalanchec/assets/0xc7198437980c041c805A1EDcbA50c1Ce5db95118/info.json new file mode 100644 index 00000000..c2ba9bac --- /dev/null +++ b/blockchains/avalanchec/assets/0xc7198437980c041c805A1EDcbA50c1Ce5db95118/info.json @@ -0,0 +1,32 @@ +{ + "name": "Tether USD", + "symbol": "USDT.e", + "type": "AVALANCHE", + "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/", + "explorer": "https://snowtrace.io/token/0xc7198437980c041c805A1EDcbA50c1Ce5db95118", + "status": "active", + "id": "0xc7198437980c041c805A1EDcbA50c1Ce5db95118", + "links": [ + { + "name": "x", + "url": "https://x.com/Tether_to" + }, + { + "name": "whitepaper", + "url": "https://tether.to/wp-content/uploads/2016/06/TetherWhitePaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xc7198437980c041c805A1EDcbA50c1Ce5db95118/logo.png b/blockchains/avalanchec/assets/0xc7198437980c041c805A1EDcbA50c1Ce5db95118/logo.png new file mode 100644 index 00000000..d440f6c3 Binary files /dev/null and b/blockchains/avalanchec/assets/0xc7198437980c041c805A1EDcbA50c1Ce5db95118/logo.png differ diff --git a/blockchains/avalanchec/assets/0xcf799767d366d789e8B446981C2D578E241fa25c/info.json b/blockchains/avalanchec/assets/0xcf799767d366d789e8B446981C2D578E241fa25c/info.json new file mode 100644 index 00000000..d3100545 --- /dev/null +++ b/blockchains/avalanchec/assets/0xcf799767d366d789e8B446981C2D578E241fa25c/info.json @@ -0,0 +1,28 @@ +{ + "name": "Decentralized USD", + "symbol": "USDD", + "type": "AVALANCHE", + "decimals": 18, + "description": "USDD is a fully decentralized over-collateralization stablecoin.", + "website": "https://usdd.io/", + "explorer": "https://snowtrace.io/token/0xcf799767d366d789e8B446981C2D578E241fa25c", + "status": "active", + "id": "0xcf799767d366d789e8B446981C2D578E241fa25c", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usdd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usdd/" + }, + { + "name": "x", + "url": "https://x.com/usddio" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xcf799767d366d789e8B446981C2D578E241fa25c/logo.png b/blockchains/avalanchec/assets/0xcf799767d366d789e8B446981C2D578E241fa25c/logo.png new file mode 100644 index 00000000..b17bf63f Binary files /dev/null and b/blockchains/avalanchec/assets/0xcf799767d366d789e8B446981C2D578E241fa25c/logo.png differ diff --git a/blockchains/avalanchec/assets/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5/info.json b/blockchains/avalanchec/assets/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5/info.json new file mode 100644 index 00000000..639a0166 --- /dev/null +++ b/blockchains/avalanchec/assets/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5/info.json @@ -0,0 +1,34 @@ +{ + "name": "Ape-X", + "symbol": "APE-X", + "type": "AVALANCHE", + "decimals": 9, + "description": "Liquidity Generating, Frictionless Yield, and Self Sustaining Smart Contract", + "website": "https://ape-x.io/", + "explorer": "https://snowtrace.io/token/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5", + "research": "https://research.binance.com/en/projects/avalanche", + "status": "active", + "id": "0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5", + "links": [ + { + "name": "github", + "url": "https://github.com/ape-x-token" + }, + { + "name": "x", + "url": "https://x.com/apexthetoken" + }, + { + "name": "telegram", + "url": "https://t.me/ApeX_Token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ape-x/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ape-x" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5/logo.png b/blockchains/avalanchec/assets/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5/logo.png new file mode 100644 index 00000000..4afc899e Binary files /dev/null and b/blockchains/avalanchec/assets/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5/logo.png differ diff --git a/blockchains/avalanchec/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/avalanchec/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json new file mode 100644 index 00000000..6c9cb175 --- /dev/null +++ b/blockchains/avalanchec/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json @@ -0,0 +1,36 @@ +{ + "name": "Okcash", + "type": "AVALANCHE", + "symbol": "OK", + "decimals": 18, + "website": "https://okcash.co", + "description": "OK is the leading multi chain PoS, web3 + NFTs open source electronic cash, its design is public, nobody owns or controls Okcash and everyone can take part.", + "explorer": "https://snowtrace.io/token/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", + "status": "active", + "id": "0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", + "links": [ + { + "name": "x", + "url": "https://x.com/OkcashCrypto" + }, + { + "name": "github", + "url": "https://github.com/okcashpro" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/okcash/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/okcash" + }, + { + "name": "medium", + "url": "https://medium.com/okcash" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png b/blockchains/avalanchec/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png new file mode 100644 index 00000000..a3b20074 Binary files /dev/null and b/blockchains/avalanchec/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png differ diff --git a/blockchains/avalanchec/assets/0xd402298a793948698b9a63311404FBBEe944eAfD/info.json b/blockchains/avalanchec/assets/0xd402298a793948698b9a63311404FBBEe944eAfD/info.json new file mode 100644 index 00000000..a9b6e4c4 --- /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 00000000..245b81bf 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 new file mode 100644 index 00000000..fb126963 --- /dev/null +++ b/blockchains/avalanchec/assets/0xd501281565bf7789224523144Fe5D98e8B28f267/info.json @@ -0,0 +1,28 @@ +{ + "name": "1INCH Token", + "symbol": "1INCH.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "The Avalanche Bridge Wrapped 1INCH Token. 1inch is a decentralized exchange aggregator that sources liquidity from various exchanges and is capable of splitting a single trade transaction across multiple DEXs.", + "website": "https://1inch.io/", + "explorer": "https://snowtrace.io/token/0xd501281565bf7789224523144Fe5D98e8B28f267", + "status": "active", + "id": "0xd501281565bf7789224523144Fe5D98e8B28f267", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/basic-attention-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/basic-attention-token/" + }, + { + "name": "x", + "url": "https://x.com/@attentiontoken" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xd501281565bf7789224523144Fe5D98e8B28f267/logo.png b/blockchains/avalanchec/assets/0xd501281565bf7789224523144Fe5D98e8B28f267/logo.png new file mode 100644 index 00000000..fc04d19d Binary files /dev/null and b/blockchains/avalanchec/assets/0xd501281565bf7789224523144Fe5D98e8B28f267/logo.png differ diff --git a/blockchains/avalanchec/assets/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70/info.json b/blockchains/avalanchec/assets/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70/info.json new file mode 100644 index 00000000..8570c684 --- /dev/null +++ b/blockchains/avalanchec/assets/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70/info.json @@ -0,0 +1,32 @@ +{ + "name": "Dai Stablecoin", + "symbol": "DAI.e", + "type": "AVALANCHE", + "decimals": 18, + "description": "Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.", + "website": "https://makerdao.com/", + "explorer": "https://snowtrace.io/token/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70", + "status": "active", + "id": "0xd586E7F844cEa2F87f50152665BCbc2C279D8d70", + "links": [ + { + "name": "x", + "url": "https://x.com/MakerDAO" + }, + { + "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/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70/logo.png b/blockchains/avalanchec/assets/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70/logo.png new file mode 100644 index 00000000..bdb1d065 Binary files /dev/null and b/blockchains/avalanchec/assets/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70/logo.png differ diff --git a/blockchains/avalanchec/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json b/blockchains/avalanchec/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json new file mode 100644 index 00000000..b9917b61 --- /dev/null +++ b/blockchains/avalanchec/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json @@ -0,0 +1,32 @@ +{ + "name": "beefy.finance", + "symbol": "BIFI", + "type": "AVALANCHE", + "decimals": 18, + "description": "The MultiChain Yield Optimizer", + "website": "https://beefy.finance/", + "explorer": "https://snowtrace.io/token/0xd6070ae98b8069de6B494332d1A1a81B6179D960", + "status": "active", + "id": "0xd6070ae98b8069de6B494332d1A1a81B6179D960", + "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/avalanchec/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/logo.png b/blockchains/avalanchec/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/logo.png new file mode 100644 index 00000000..6ad4e4b1 Binary files /dev/null and b/blockchains/avalanchec/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/logo.png differ diff --git a/blockchains/avalanchec/assets/0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb/info.json b/blockchains/avalanchec/assets/0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb/info.json new file mode 100644 index 00000000..e118c17a --- /dev/null +++ b/blockchains/avalanchec/assets/0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb/info.json @@ -0,0 +1,14 @@ +{ + "name": "MATIC (Portal from Polygon)", + "symbol": "MATICpo", + "type": "AVALANCHE", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://polygon.technology/", + "explorer": "https://snowtrace.io/token/0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb", + "status": "active", + "id": "0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb/logo.png b/blockchains/avalanchec/assets/0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb/logo.png new file mode 100644 index 00000000..60c97897 Binary files /dev/null and b/blockchains/avalanchec/assets/0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb/logo.png differ diff --git a/blockchains/avalanchec/assets/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b/info.json b/blockchains/avalanchec/assets/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b/info.json new file mode 100644 index 00000000..bf6f3a2b --- /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 00000000..45d5fa65 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 new file mode 100644 index 00000000..22d6e0dd --- /dev/null +++ b/blockchains/avalanchec/assets/0xfaB550568C688d5D8A52C7d794cb93Edc26eC0eC/info.json @@ -0,0 +1,69 @@ +{ + "name": "Axelar Wrapped USDC", + "symbol": "axlUSDC", + "type": "AVALANCHE", + "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://snowtrace.io/token/0xfaB550568C688d5D8A52C7d794cb93Edc26eC0eC", + "status": "active", + "id": "0xfaB550568C688d5D8A52C7d794cb93Edc26eC0eC", + "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/avalanchec/assets/0xfaB550568C688d5D8A52C7d794cb93Edc26eC0eC/logo.png b/blockchains/avalanchec/assets/0xfaB550568C688d5D8A52C7d794cb93Edc26eC0eC/logo.png new file mode 100644 index 00000000..69911cae Binary files /dev/null and b/blockchains/avalanchec/assets/0xfaB550568C688d5D8A52C7d794cb93Edc26eC0eC/logo.png differ diff --git a/blockchains/avalanchec/info/info.json b/blockchains/avalanchec/info/info.json new file mode 100644 index 00000000..b3f6d918 --- /dev/null +++ b/blockchains/avalanchec/info/info.json @@ -0,0 +1,26 @@ +{ + "name": "Avalanche C-Chain", + "website": "http://avax.network", + "description": "Avalanche is an open-source platform for launching highly decentralized applications, new financial primitives, and new interoperable blockchains. This is the C-Chain, the default smart contract blockchain on Avalanche that enables the creation of any Ethereum-compatible smart contracts.", + "explorer": "https://explorer.avax.network", + "research": "https://research.binance.com/en/projects/avalanche", + "symbol": "AVAX", + "type": "coin", + "rpc_url": "https://api.avax.network/ext/bc/C/rpc", + "decimals": 18, + "status": "active", + "tags": [ + "defi", + "dapp" + ], + "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/avalanchec/info/logo.png b/blockchains/avalanchec/info/logo.png new file mode 100644 index 00000000..99dc6ffc Binary files /dev/null and b/blockchains/avalanchec/info/logo.png differ diff --git a/blockchains/avalanchec/info/square_logo.png b/blockchains/avalanchec/info/square_logo.png new file mode 100644 index 00000000..f6333d9e Binary files /dev/null and b/blockchains/avalanchec/info/square_logo.png differ diff --git a/blockchains/avalanchec/tokenlist-extended.json b/blockchains/avalanchec/tokenlist-extended.json new file mode 100644 index 00000000..ae2dbe53 --- /dev/null +++ b/blockchains/avalanchec/tokenlist-extended.json @@ -0,0 +1,12 @@ +{ + "name": "Trust Wallet: Avalanche C Chain Extended List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-01-27T14:33:26.183301", + "tokens": [ + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} \ No newline at end of file diff --git a/blockchains/avalanchec/tokenlist.json b/blockchains/avalanchec/tokenlist.json new file mode 100644 index 00000000..edc714ad --- /dev/null +++ b/blockchains/avalanchec/tokenlist.json @@ -0,0 +1,592 @@ +{ + "name": "Trust Wallet: Avalanche C Chain List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-06-16T17:19:11.183301", + "tokens": [ + { + "asset": "c10009000_t0x8b82A291F83ca07Af22120ABa21632088fC92931", + "type": "AVALANCHE", + "address": "0x8b82A291F83ca07Af22120ABa21632088fC92931", + "name": "Ether (Portal)", + "symbol": "ETH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x8b82A291F83ca07Af22120ABa21632088fC92931/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x12AF5C1a232675f62F405b5812A80e7a6F75D746", + "type": "AVALANCHE", + "address": "0x12AF5C1a232675f62F405b5812A80e7a6F75D746", + "name": "ROSE (Portal)", + "symbol": "ROSE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x12AF5C1a232675f62F405b5812A80e7a6F75D746/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", + "type": "AVALANCHE", + "address": "0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", + "name": "EverRise NFT Stakes", + "symbol": "nftRISE", + "decimals": 0, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x98a4d09036Cc5337810096b1D004109686E56Afc", + "type": "AVALANCHE", + "address": "0x98a4d09036Cc5337810096b1D004109686E56Afc", + "name": "PancakeSwap Token (Portal)", + "symbol": "CAKE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x98a4d09036Cc5337810096b1D004109686E56Afc/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x442F7f22b1EE2c842bEAFf52880d4573E9201158", + "type": "AVALANCHE", + "address": "0x442F7f22b1EE2c842bEAFf52880d4573E9201158", + "name": "Binance Coin (Portal)", + "symbol": "BNB", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x442F7f22b1EE2c842bEAFf52880d4573E9201158/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA", + "type": "AVALANCHE", + "address": "0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA", + "name": "USD Coin (Portal from Solana)", + "symbol": "USDCso", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x6145E8a910aE937913426BF32De2b26039728ACF", + "type": "AVALANCHE", + "address": "0x6145E8a910aE937913426BF32De2b26039728ACF", + "name": "USD Coin (Portal from BSC)", + "symbol": "USDCbs", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x6145E8a910aE937913426BF32De2b26039728ACF/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x60781C2586D68229fde47564546784ab3fACA982", + "type": "AVALANCHE", + "address": "0x60781C2586D68229fde47564546784ab3fACA982", + "name": "Pangolin", + "symbol": "PNG", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x60781C2586D68229fde47564546784ab3fACA982/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x70928E5B188def72817b7775F0BF6325968e563B", + "type": "AVALANCHE", + "address": "0x70928E5B188def72817b7775F0BF6325968e563B", + "name": "LUNA (Portal)", + "symbol": "LUNA", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x70928E5B188def72817b7775F0BF6325968e563B/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8", + "type": "AVALANCHE", + "address": "0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8", + "name": "USD Coin (PoS) (Portal from Polygon)", + "symbol": "USDCpo", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B", + "type": "AVALANCHE", + "address": "0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B", + "name": "Tether USD (Portal from BSC)", + "symbol": "USDTbs", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a", + "type": "AVALANCHE", + "address": "0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a", + "name": "Binance USD (Portal from BSC)", + "symbol": "BUSDbs", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E", + "type": "AVALANCHE", + "address": "0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E", + "name": "Oddz", + "symbol": "ODDZ", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xB24CA28D4e2742907115fECda335b40dbda07a4C", + "type": "AVALANCHE", + "address": "0xB24CA28D4e2742907115fECda335b40dbda07a4C", + "name": "USD Coin (Portal from Ethereum)", + "symbol": "USDCet", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xB24CA28D4e2742907115fECda335b40dbda07a4C/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xb599c3590F42f8F995ECfa0f85D2980B76862fc1", + "type": "AVALANCHE", + "address": "0xb599c3590F42f8F995ECfa0f85D2980B76862fc1", + "name": "UST (Portal)", + "symbol": "UST", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xbBD7B847C6d0d0B5691518a363194D71426475F1", + "type": "AVALANCHE", + "address": "0xbBD7B847C6d0d0B5691518a363194D71426475F1", + "name": "EverRise Rewards", + "symbol": "claimRISE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xC17c30e98541188614dF99239cABD40280810cA3", + "type": "AVALANCHE", + "address": "0xC17c30e98541188614dF99239cABD40280810cA3", + "name": "EverRise", + "symbol": "RISE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5", + "type": "AVALANCHE", + "address": "0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5", + "name": "Ape-X", + "symbol": "APE-X", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", + "type": "AVALANCHE", + "address": "0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", + "name": "Vote-escrowed EverRise", + "symbol": "veRISE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xF0FF231e3F1A50F83136717f287ADAB862f89431", + "type": "AVALANCHE", + "address": "0xF0FF231e3F1A50F83136717f287ADAB862f89431", + "name": "Tether USD (Portal from Solana)", + "symbol": "USDTso", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xF0FF231e3F1A50F83136717f287ADAB862f89431/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0", + "type": "AVALANCHE", + "address": "0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0", + "name": "Galaxy Goggle", + "symbol": "GG", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb", + "type": "AVALANCHE", + "address": "0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb", + "name": "MATIC (Portal from Polygon)", + "symbol": "MATICpo", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F", + "type": "AVALANCHE", + "address": "0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F", + "name": "SOL (Portal)", + "symbol": "SOL", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xc7198437980c041c805A1EDcbA50c1Ce5db95118", + "type": "AVALANCHE", + "address": "0xc7198437980c041c805A1EDcbA50c1Ce5db95118", + "name": "Tether USD", + "symbol": "USDT.e", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xc7198437980c041c805A1EDcbA50c1Ce5db95118/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7", + "type": "AVALANCHE", + "address": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7", + "name": "TetherToken", + "symbol": "USDt", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "type": "AVALANCHE", + "address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664", + "type": "AVALANCHE", + "address": "0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664", + "name": "USD Coin", + "symbol": "USDC.e", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98", + "type": "AVALANCHE", + "address": "0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98", + "name": "Binance USD", + "symbol": "BUSD.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xd586E7F844cEa2F87f50152665BCbc2C279D8d70", + "type": "AVALANCHE", + "address": "0xd586E7F844cEa2F87f50152665BCbc2C279D8d70", + "name": "Dai Stablecoin", + "symbol": "DAI.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x50b7545627a5162F82A992c33b87aDc75187B218", + "type": "AVALANCHE", + "address": "0x50b7545627a5162F82A992c33b87aDc75187B218", + "name": "Wrapped BTC", + "symbol": "WBTC.e", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x50b7545627a5162F82A992c33b87aDc75187B218/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665", + "type": "AVALANCHE", + "address": "0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665", + "name": "SHIBA INU", + "symbol": "SHIB.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "type": "AVALANCHE", + "address": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "name": "Wrapped AVAX", + "symbol": "WAVAX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x5947BB275c521040051D82396192181b413227A3", + "type": "AVALANCHE", + "address": "0x5947BB275c521040051D82396192181b413227A3", + "name": "Chainlink Token", + "symbol": "LINK.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580", + "type": "AVALANCHE", + "address": "0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580", + "name": "Uniswap", + "symbol": "UNI.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64", + "type": "AVALANCHE", + "address": "0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64", + "name": "Frax", + "symbol": "FRAX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB", + "type": "AVALANCHE", + "address": "0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB", + "name": "TrueUSD", + "symbol": "TUSD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x63a72806098Bd3D9520cC43356dD78afe5D386D9", + "type": "AVALANCHE", + "address": "0x63a72806098Bd3D9520cC43356dD78afe5D386D9", + "name": "Aave Token", + "symbol": "AAVE.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x63a72806098Bd3D9520cC43356dD78afe5D386D9/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xcf799767d366d789e8B446981C2D578E241fa25c", + "type": "AVALANCHE", + "address": "0xcf799767d366d789e8B446981C2D578E241fa25c", + "name": "Decentralized USD", + "symbol": "USDD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xcf799767d366d789e8B446981C2D578E241fa25c/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x88128fd4b259552A9A1D457f435a6527AAb72d42", + "type": "AVALANCHE", + "address": "0x88128fd4b259552A9A1D457f435a6527AAb72d42", + "name": "Maker", + "symbol": "MKR.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x88128fd4b259552A9A1D457f435a6527AAb72d42/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x8a0cAc13c7da965a312f08ea4229c37869e85cB9", + "type": "AVALANCHE", + "address": "0x8a0cAc13c7da965a312f08ea4229c37869e85cB9", + "name": "Graph Token", + "symbol": "GRT.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x98443B96EA4b0858FDF3219Cd13e98C7A4690588", + "type": "AVALANCHE", + "address": "0x98443B96EA4b0858FDF3219Cd13e98C7A4690588", + "name": "Basic Attention Token", + "symbol": "BAT.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xd501281565bf7789224523144Fe5D98e8B28f267", + "type": "AVALANCHE", + "address": "0xd501281565bf7789224523144Fe5D98e8B28f267", + "name": "1INCH Token", + "symbol": "1INCH.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xd501281565bf7789224523144Fe5D98e8B28f267/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06", + "type": "AVALANCHE", + "address": "0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06", + "name": "Curve DAO Token", + "symbol": "CRV.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437", + "type": "AVALANCHE", + "address": "0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437", + "name": "Compound", + "symbol": "COMP.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x596fA47043f99A4e0F122243B841E55375cdE0d2", + "type": "AVALANCHE", + "address": "0x596fA47043f99A4e0F122243B841E55375cdE0d2", + "name": "ZRX", + "symbol": "ZRX.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x596fA47043f99A4e0F122243B841E55375cdE0d2/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xBeC243C995409E6520D7C41E404da5dEba4b209B", + "type": "AVALANCHE", + "address": "0xBeC243C995409E6520D7C41E404da5dEba4b209B", + "name": "Synthetix Network Token", + "symbol": "SNX.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xBeC243C995409E6520D7C41E404da5dEba4b209B/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339", + "type": "AVALANCHE", + "address": "0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339", + "name": "UMA Voting Token v1", + "symbol": "UMA.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc", + "type": "AVALANCHE", + "address": "0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc", + "name": "yearn.finance", + "symbol": "YFI.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x39fC9e94Caeacb435842FADeDeCB783589F50f5f", + "type": "AVALANCHE", + "address": "0x39fC9e94Caeacb435842FADeDeCB783589F50f5f", + "name": "Kyber Network Crystal v2", + "symbol": "KNC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76", + "type": "AVALANCHE", + "address": "0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76", + "name": "SushiToken", + "symbol": "SUSHI.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A", + "type": "AVALANCHE", + "address": "0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A", + "name": "Orbs", + "symbol": "ORBS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x5fC17416925789E0852FBFcd81c490ca4abc51F9", + "type": "AVALANCHE", + "address": "0x5fC17416925789E0852FBFcd81c490ca4abc51F9", + "name": "inSure", + "symbol": "SURE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x5fC17416925789E0852FBFcd81c490ca4abc51F9/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xCE1bFFBD5374Dac86a2893119683F4911a2F7814", + "type": "AVALANCHE", + "address": "0xCE1bFFBD5374Dac86a2893119683F4911a2F7814", + "name": "Spell Token", + "symbol": "SPELL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x214DB107654fF987AD859F34125307783fC8e387", + "type": "AVALANCHE", + "address": "0x214DB107654fF987AD859F34125307783fC8e387", + "name": "Frax Share", + "symbol": "FXS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x214DB107654fF987AD859F34125307783fC8e387/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xB44a9B6905aF7c801311e8F4E76932ee959c663C", + "type": "AVALANCHE", + "address": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C", + "name": "Anyswap", + "symbol": "ANY", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f", + "type": "AVALANCHE", + "address": "0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f", + "name": "AlphaToken", + "symbol": "ALPHA.e", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0xd6070ae98b8069de6B494332d1A1a81B6179D960", + "type": "AVALANCHE", + "address": "0xd6070ae98b8069de6B494332d1A1a81B6179D960", + "name": "beefy.finance", + "symbol": "BIFI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/logo.png", + "pairs": [] + }, + { + "asset": "c10009000_t0x62edc0692BD897D2295872a9FFCac5425011c661", + "type": "AVALANCHE", + "address": "0x62edc0692BD897D2295872a9FFCac5425011c661", + "name": "GMX", + "symbol": "GMX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x62edc0692BD897D2295872a9FFCac5425011c661/logo.png", + "pairs": [] + } + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} diff --git a/blockchains/avalanchecfuji/info/info.json b/blockchains/avalanchecfuji/info/info.json new file mode 100644 index 00000000..99df5795 --- /dev/null +++ b/blockchains/avalanchecfuji/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "Avalanche C-Chain Fuji Testnet", + "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": "tAVAX", + "rpc_url": "https://api.avax-test.network/ext/bc/C/rpc", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/avalanchecfuji/info/logo.png b/blockchains/avalanchecfuji/info/logo.png new file mode 100644 index 00000000..bd5c8e6a Binary files /dev/null and b/blockchains/avalanchecfuji/info/logo.png differ diff --git a/blockchains/avalanchecfuji/info/square_logo.png b/blockchains/avalanchecfuji/info/square_logo.png new file mode 100644 index 00000000..f6333d9e Binary files /dev/null and b/blockchains/avalanchecfuji/info/square_logo.png differ diff --git a/blockchains/avalanchex/info/info.json b/blockchains/avalanchex/info/info.json new file mode 100644 index 00000000..148d1d6c --- /dev/null +++ b/blockchains/avalanchex/info/info.json @@ -0,0 +1,24 @@ +{ + "name": "Avalanche X-Chain", + "website": "http://avax.network", + "description": "Avalanche is an open-source platform for launching highly decentralized applications, new financial primitives, and new interoperable blockchains. This is the X-Chain, the default asset blockchain on Avalanche and enables the creation of new assets, exchanging between assets, and cross-subnet transfers.", + "explorer": "https://explorer.avax.network", + "research": "https://research.binance.com/en/projects/avalanche", + "symbol": "AVAX", + "type": "coin", + "decimals": 9, + "status": "active", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ava-labs" + }, + { + "name": "whitepaper", + "url": "https://www.avalabs.org/whitepapers" + } + ] +} diff --git a/blockchains/avalanchex/info/logo.png b/blockchains/avalanchex/info/logo.png new file mode 100644 index 00000000..99dc6ffc Binary files /dev/null and b/blockchains/avalanchex/info/logo.png differ diff --git a/blockchains/avalanchex/info/square_logo.png b/blockchains/avalanchex/info/square_logo.png new file mode 100644 index 00000000..8f6511fc 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 new file mode 100644 index 00000000..1c8a3e73 --- /dev/null +++ b/blockchains/axelar/info/info.json @@ -0,0 +1,74 @@ +{ + "name": "Axelar", + "type": "coin", + "symbol": "AXL", + "decimals": 6, + "website": "https://axelar.network", + "description": "A decentralized multi-chain network that enables cross chain communication with a simple pegging mechanism.", + "explorer": "https://www.mintscan.io/axelar", + "status": "active", + "rpc_url": "https://axelar-rpc.polkachu.com", + "denom": "uaxl", + "lcd_url": "https://axelar-api.polkachu.com", + "hrp": "axelar", + "fee_rate": "0.01", + "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" + }, + { + "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/axelar/" + }, + { + "name": "blog", + "url": "https://axelar.network/blog" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Axelarcore" + } + ], + "tags": [ + "governance", + "staking", + "staking-native" + ] +} \ No newline at end of file diff --git a/blockchains/axelar/info/logo.png b/blockchains/axelar/info/logo.png new file mode 100644 index 00000000..7c2b2efe Binary files /dev/null and b/blockchains/axelar/info/logo.png differ diff --git a/blockchains/axelar/info/square_logo.png b/blockchains/axelar/info/square_logo.png new file mode 100644 index 00000000..3d9ddbd5 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 00000000..02916372 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 00000000..bed02519 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 00000000..c2cb86a4 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 00000000..3404c787 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 00000000..585324aa 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 00000000..eaf66cb5 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 00000000..477fe8df 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 00000000..b649d065 --- /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 new file mode 100644 index 00000000..88035992 --- /dev/null +++ b/blockchains/band/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "BandChain", + "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://cosmoscan.io/", + "research": "https://research.binance.com/en/projects/band-protocol", + "symbol": "BAND", + "type": "coin", + "decimals": 6, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/bandprotocol/bandchain" + }, + { + "name": "x", + "url": "https://x.com/bandprotocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/bandprotocol/" + }, + { + "name": "whitepaper", + "url": "https://github.com/bandprotocol/bandchain/wiki" + } + ] +} \ No newline at end of file diff --git a/blockchains/band/info/logo.png b/blockchains/band/info/logo.png new file mode 100644 index 00000000..f89a34f7 Binary files /dev/null and b/blockchains/band/info/logo.png differ diff --git a/blockchains/band/info/square_logo.png b/blockchains/band/info/square_logo.png new file mode 100644 index 00000000..9454fe01 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 00000000..02916372 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 00000000..0888af01 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper17s35yz3rglx7pnjppm4u9l9ht2k9mr9tq0eyh6/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper1hcu2spr3r80v36us40mg938f5qhaqq2qeajtfv/logo.png b/blockchains/band/validators/assets/bandvaloper1hcu2spr3r80v36us40mg938f5qhaqq2qeajtfv/logo.png new file mode 100644 index 00000000..95674f5f Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1hcu2spr3r80v36us40mg938f5qhaqq2qeajtfv/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 00000000..e1178170 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper1nmlds05h9zpj0m3actleslnmf5ett8xfvmjgju/logo.png b/blockchains/band/validators/assets/bandvaloper1nmlds05h9zpj0m3actleslnmf5ett8xfvmjgju/logo.png new file mode 100644 index 00000000..63fe5615 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1nmlds05h9zpj0m3actleslnmf5ett8xfvmjgju/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 00000000..bed02519 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1plau7keptn9qdt7nmhphltakv5t054f8lgwjdn/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper1qgvcttnjx3enjqg9pnhclt6d4z7qdknavg4q9c/logo.png b/blockchains/band/validators/assets/bandvaloper1qgvcttnjx3enjqg9pnhclt6d4z7qdknavg4q9c/logo.png new file mode 100644 index 00000000..362d6366 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1qgvcttnjx3enjqg9pnhclt6d4z7qdknavg4q9c/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 00000000..c2cb86a4 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 new file mode 100644 index 00000000..a1dbafbf --- /dev/null +++ b/blockchains/band/validators/list.json @@ -0,0 +1,50 @@ +[ + { + "id": "bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "bandvaloper1qgvcttnjx3enjqg9pnhclt6d4z7qdknavg4q9c", + "name": "WeStaking", + "description": "Secured & Trusted Staking Service", + "website": "https://westaking.io" + }, + { + "id": "bandvaloper1nmlds05h9zpj0m3actleslnmf5ett8xfvmjgju", + "name": "Smart Stake", + "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 00000000..2c548758 --- /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 00000000..fb2e51eb 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 00000000..ffca3770 --- /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 00000000..58b9c818 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 00000000..34073072 --- /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 00000000..39cf7124 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 00000000..df7ca183 --- /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 00000000..66199d25 --- /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 00000000..d5376542 --- /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 00000000..f1805f82 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 00000000..5f86c9d7 --- /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 00000000..6cc8b59e --- /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 00000000..d1ecd77b 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 00000000..e6ecd64e --- /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 00000000..4219b450 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 00000000..abfcf8e8 --- /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 00000000..156b8acc 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 00000000..8829834a --- /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 00000000..f22da65a --- /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 00000000..b3e0a4be 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 00000000..24a3a9c8 --- /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 00000000..d465d1c1 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 00000000..adecbe86 --- /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 00000000..fb361472 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 00000000..2627ff73 --- /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 00000000..687a92f9 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 00000000..e814d33e --- /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 00000000..5ea3323e 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 00000000..4cff2880 --- /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 00000000..a1075e97 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 00000000..bde75377 --- /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 00000000..66f09f85 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 00000000..31cf7d3a --- /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 00000000..0a17901b 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 00000000..e8d293f4 --- /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 00000000..2c33c7b4 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 00000000..5bd78d82 --- /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 00000000..31b63c6b 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 00000000..33b5b816 --- /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 00000000..c0b1f287 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 00000000..7c2c9f21 --- /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 00000000..7aafcd06 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 00000000..2368999b --- /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 00000000..be1b6bf2 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 00000000..ecf52ff2 --- /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 00000000..8c642c60 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 00000000..77a73ed0 --- /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 00000000..8b64bdfc 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 00000000..6c806554 --- /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 00000000..56453e9a 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 00000000..b0aa3411 --- /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 00000000..6fb6fcf4 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 00000000..d68e0f0f --- /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 00000000..4470efa5 --- /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 00000000..81692d38 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 00000000..2ead29bd --- /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 00000000..425de884 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 00000000..df596dce --- /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 00000000..afa7fedd 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 00000000..30e38111 --- /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 00000000..76c5f31e 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 00000000..2cea3b3d --- /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 00000000..4a8c4e08 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 00000000..a8fa487a --- /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 00000000..7af71346 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 00000000..bf2993ff --- /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 00000000..f772ec23 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 00000000..aaeeb6c8 --- /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 00000000..b579a5bb 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 00000000..ab599783 --- /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 00000000..01032476 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 00000000..a7cbc2d6 --- /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 00000000..30adc27c 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 00000000..d249cc1d --- /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 00000000..8c6c6778 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 00000000..4a4a2bfd --- /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 00000000..ddaf14a2 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 00000000..ea7c3939 --- /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 00000000..3c954c69 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 00000000..fdcef2c1 --- /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 00000000..81f35891 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 00000000..583d7dd2 --- /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 00000000..09e48cde 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 00000000..4cd2a58c --- /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 00000000..8fff094e 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 00000000..288219d7 --- /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 00000000..25571871 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 00000000..31a894fd --- /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 00000000..7332394f 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 00000000..15077553 --- /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 00000000..8ecc2ab8 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 00000000..3f71293b --- /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 00000000..5dd9cbe1 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 00000000..321ada7a --- /dev/null +++ b/blockchains/base/assets/0x259Fac10c5CbFEFE3E710e1D9467f70a76138d45/info.json @@ -0,0 +1,28 @@ +{ + "name": "Cartesi Token (PoS)", + "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 00000000..8317ac64 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 00000000..621643e0 --- /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 00000000..fb37ed80 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 00000000..5ace510c --- /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 00000000..09728af6 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 00000000..927b9002 --- /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 00000000..243a6e25 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 00000000..8d01bb06 --- /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 00000000..3d91ba8d 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 00000000..2cf57d0b --- /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 00000000..1520a569 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 00000000..65e785e8 --- /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 00000000..07dfd06e 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 00000000..a16c3234 --- /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 00000000..89d8a4a4 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 00000000..d46d0c14 --- /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 00000000..88182c47 --- /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 00000000..82cd8e5f 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 00000000..86e5196b --- /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 00000000..dc17287f 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 00000000..c53923b0 --- /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 00000000..d11798d8 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 00000000..f06df0b4 --- /dev/null +++ b/blockchains/base/assets/0x3055913c90Fcc1A6CE9a358911721eEb942013A1/info.json @@ -0,0 +1,25 @@ +{ + "name": "PancakeSwap Token", + "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 00000000..13865921 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 00000000..b13ddc28 --- /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 00000000..9078703a Binary files /dev/null and b/blockchains/base/assets/0x3124678D62D2aa1f615B54525310fbfDa6DcF7AE/logo.png differ diff --git a/blockchains/base/assets/0x333333C465a19C85f85c6CfbED7B16b0B26E3333/info.json b/blockchains/base/assets/0x333333C465a19C85f85c6CfbED7B16b0B26E3333/info.json new file mode 100644 index 00000000..7cc4a9a8 --- /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 00000000..415101a6 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 00000000..5f011a1e --- /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 00000000..f2a3f779 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 00000000..6ca99ac0 --- /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 00000000..854c9b59 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 00000000..7222291f --- /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 00000000..f05cb79d 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 00000000..1f7bf28f --- /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 00000000..89c43e76 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 00000000..87386318 --- /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 00000000..7dda77fe 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 00000000..bf19b80e --- /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 00000000..c34f31c6 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 00000000..c351b357 --- /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 00000000..0190fcb4 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 00000000..315ec6c2 --- /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 00000000..936cfa6a 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 00000000..b04fa10a --- /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 00000000..40235ab6 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 00000000..3c03b781 --- /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 00000000..78a6538f 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 00000000..ef209767 --- /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 00000000..f9328d95 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 00000000..08a96a91 --- /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 00000000..fbfb3db9 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 00000000..981ff5d2 --- /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 00000000..0a3e8b56 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 00000000..75aadb95 --- /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 00000000..77c0d3e9 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 00000000..29ad06ec --- /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 00000000..bb0e7293 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 00000000..ee1a5afd --- /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 00000000..714766d6 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 00000000..3e62ae8d --- /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 00000000..d612fad2 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 00000000..9941b10e --- /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 00000000..a5b09979 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 00000000..33933cf6 --- /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 00000000..f87d2a95 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 00000000..651cfb34 --- /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 00000000..0e184657 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 00000000..994ca61d --- /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 00000000..1fd956cb 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 00000000..bf05699d --- /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 00000000..d9f16488 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 00000000..1f74b897 --- /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 00000000..7cb78c52 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 00000000..f56f482c --- /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 00000000..43e9af9a 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 00000000..cae6bf88 --- /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 00000000..a0443410 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 00000000..8f043ea5 --- /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 00000000..a701d44e 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 00000000..3f75e330 --- /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 00000000..6f8fa384 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 00000000..fe7ca08e --- /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 00000000..72db0bd9 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 00000000..88d27931 --- /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 00000000..f5d5c1db 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 00000000..690adc6d --- /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 00000000..c787c85f 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 00000000..b2a51d17 --- /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 00000000..b97d498d 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 00000000..e88f9225 --- /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 00000000..593a517f 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 00000000..5ba228ae --- /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 00000000..77007fae 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 00000000..c3692952 --- /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 00000000..08570c22 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 00000000..8896b93b --- /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 00000000..2868477e 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 00000000..b2270609 --- /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 00000000..25982bb7 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 00000000..f0831c2e --- /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 00000000..f174c9a9 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 00000000..19e5196b --- /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 00000000..39c3f391 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 00000000..3e247321 --- /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 00000000..24c49ba0 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 00000000..14abd058 --- /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 00000000..9dd6919d 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 00000000..c89b743a --- /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 00000000..203a846c 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 00000000..66167754 --- /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 00000000..d4a23cea 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 00000000..88e2c957 --- /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 00000000..63eaf5f5 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 00000000..81baacd9 --- /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 00000000..f55d16d6 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 00000000..e3d23f90 --- /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 00000000..0306244d 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 00000000..8d248aa0 --- /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 00000000..0d077860 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 00000000..5704830a --- /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 00000000..6c66329c 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 00000000..3b15a339 --- /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 00000000..4c77387d 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 00000000..e7700028 --- /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 00000000..cce27353 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 00000000..a763ef87 --- /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 00000000..75e3ccee 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 00000000..17a731c1 --- /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 00000000..20c7da55 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 00000000..c4fe6d05 --- /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 00000000..18349b22 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 00000000..f9ca254a --- /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 00000000..a7fa225d 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 00000000..17cb3a87 --- /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 00000000..b528a600 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 00000000..72f0a8ed --- /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 00000000..656b33b1 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 00000000..e548ac69 --- /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 00000000..0c163348 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 00000000..5b7154af --- /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 00000000..d2dd3f18 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 00000000..7f6a7194 --- /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 00000000..20b1d135 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 00000000..af6c3de1 --- /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 00000000..46dabeef 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 00000000..f36ad736 --- /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 00000000..06315a05 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 00000000..0f62d392 --- /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 00000000..718c5c30 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 00000000..32d356ae --- /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 00000000..6fc69171 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 00000000..42eea48f --- /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 00000000..b6133132 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 00000000..04e2bbfe --- /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 00000000..534aeb60 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 00000000..d907c2c6 --- /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 00000000..206e4a28 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 00000000..9126ec31 --- /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 00000000..48154769 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 00000000..9767d94d --- /dev/null +++ b/blockchains/base/assets/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913/info.json @@ -0,0 +1,36 @@ +{ + "name": "USD Coin", + "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 00000000..a135c887 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 00000000..00666833 --- /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 00000000..1187e04d 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 00000000..91cb7a48 --- /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 00000000..e2a52a1b 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 00000000..0b1bc63b --- /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 00000000..db6f6d37 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 00000000..c50f1ff3 --- /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 00000000..c6bd87c2 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 00000000..2843391f --- /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 00000000..d7908c3b 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 00000000..6db61e7d --- /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 00000000..626e3688 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 00000000..4a05e4bc --- /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 00000000..b820f250 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 00000000..ec2152b0 --- /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 00000000..1ed9f85b 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 00000000..c9ddd1b7 --- /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 00000000..68a3b570 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 00000000..4a1228a9 --- /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 00000000..c7f511bb 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 00000000..87863b2b --- /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 00000000..fed5325e 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 00000000..9df6331d --- /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 00000000..21cb73b6 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 00000000..5c28eccf --- /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 00000000..bc80f16b 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 00000000..d8dd7493 --- /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 00000000..c03d201d 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 00000000..f28b4d06 --- /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 00000000..d8a3aa6d 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 00000000..4fcb1d67 --- /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 00000000..2cd0275d 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 00000000..f26770df --- /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 00000000..aaaee704 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 00000000..710c5aed --- /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 00000000..8fab54dd 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 00000000..afab7c60 --- /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 00000000..9a1ba684 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 00000000..eeb0eff4 --- /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 00000000..c79f277a 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 00000000..6153c1fb --- /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 00000000..bd3dcb73 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 00000000..f2b615fc --- /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 00000000..f90423a7 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 00000000..f2a8f239 --- /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 00000000..8de8678b 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 00000000..7b1b949f --- /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 00000000..7702a608 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 00000000..9c13b858 --- /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 00000000..1b0bb276 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 00000000..820476a2 --- /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 00000000..8f06d5eb 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 00000000..329e9233 --- /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 00000000..4fa51780 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 00000000..b081764a --- /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 00000000..392f6c76 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 00000000..ecf69c68 --- /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 00000000..b85586b1 Binary files /dev/null and b/blockchains/base/assets/0x9aAaE745cf2830FB8DDc6248B17436dC3a5E701C/logo.png differ diff --git a/blockchains/base/assets/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C/info.json b/blockchains/base/assets/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C/info.json new file mode 100644 index 00000000..0fd67273 --- /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 00000000..18629f0e 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 00000000..6c1afd08 --- /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 00000000..9a0131c5 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 00000000..8bb5d5b7 --- /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 00000000..3f350d25 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 00000000..fb0cafc6 --- /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 00000000..885fbedb 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 00000000..261503bb --- /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 00000000..a47eb124 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 00000000..18e95fe6 --- /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 00000000..0fd6617f 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 00000000..b13663f5 --- /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 00000000..895070a5 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 00000000..2510d4eb --- /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 00000000..77c0554f 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 00000000..8cfc1d97 --- /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 00000000..cb6c4903 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 00000000..0c4d84c6 --- /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 00000000..f1907577 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 00000000..a49cdd04 --- /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 00000000..b66ede27 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 00000000..393e0474 --- /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 00000000..dbb88b69 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 00000000..6bbabced --- /dev/null +++ b/blockchains/base/assets/0xBAa5CC21fd487B8Fcc2F632f3F4E8D37262a0842/info.json @@ -0,0 +1,25 @@ +{ + "name": "Morpho Token", + "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 00000000..87b1a4f8 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 00000000..71ac6786 --- /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 00000000..5cd9068d 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 00000000..380d35ff --- /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 00000000..8774677f 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 00000000..1d029287 --- /dev/null +++ b/blockchains/base/assets/0xBCBAf311ceC8a4EAC0430193A528d9FF27ae38C1/info.json @@ -0,0 +1,41 @@ +{ + "name": "IoTeX Network", + "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 00000000..2e533fb2 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 00000000..6dc18f38 --- /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 00000000..34b73d1d 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 00000000..d25e4471 --- /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 00000000..52814de0 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 00000000..9ccb0b13 --- /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 00000000..485b7e16 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 00000000..8f134994 --- /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 00000000..a0f5b97a 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 00000000..96ce6e8f --- /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 00000000..8ee9a104 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 00000000..4c36ab60 --- /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 00000000..a1ff3065 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 00000000..cfef1369 --- /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 00000000..ca7574b0 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 00000000..7f0c723f --- /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 00000000..c791dbd3 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 00000000..de86c86c --- /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 00000000..b68420f2 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 00000000..bc30d341 --- /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 00000000..093ecc8b 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 00000000..785e7083 --- /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 00000000..8930ad0f 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 00000000..9e762d3c --- /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 00000000..6a9e9da2 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 00000000..b1cc4292 --- /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 00000000..4d8ab01b 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 00000000..70b0dca1 --- /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 00000000..00716830 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 00000000..c065f1dd --- /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 00000000..abf0bc23 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 00000000..7ac3695e --- /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 00000000..61792dd3 --- /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 00000000..755f1e03 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 00000000..c83bfb08 --- /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 00000000..e3bfa945 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 00000000..8f6f0234 --- /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 00000000..55831e1a 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 00000000..b5d25f41 --- /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 00000000..8db4b84a 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 00000000..46e1cb3c --- /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 00000000..c47971bf 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 00000000..24c8eb85 --- /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 00000000..f983849d 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 00000000..b414d6b4 --- /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 00000000..686dbf33 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 00000000..c932735f --- /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 00000000..69911cae 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 00000000..b881ac98 --- /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 00000000..f84a1f3f 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 00000000..d5b1a6d8 --- /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 00000000..a8ce6ec6 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 00000000..90254ecb --- /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 00000000..7f20eda1 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 00000000..3962cd70 --- /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 00000000..6294f21d 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 00000000..cd797679 --- /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 00000000..37ddc3da 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 00000000..832a7703 --- /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 00000000..b87a5502 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 00000000..0254800e --- /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 00000000..9b80767e 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 00000000..d237f185 --- /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 00000000..8d017f49 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 00000000..51fd7a4a --- /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 00000000..64965ec2 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 00000000..e381ef50 --- /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 00000000..d7c69de2 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 00000000..30ab95b8 --- /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 00000000..59548f34 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 00000000..ee32c36c --- /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 00000000..2af89132 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 00000000..f7111aeb --- /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 00000000..ca284f82 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 00000000..f219cc21 --- /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 00000000..46edd325 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 00000000..162886f2 --- /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 00000000..c57123e3 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 00000000..b98bb569 --- /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 00000000..2d97905c 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 00000000..43ea476c --- /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 00000000..0ddcda72 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 00000000..13672a8f --- /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 00000000..0fc629c2 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 00000000..0dc3d3c5 --- /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 00000000..e8f30365 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 00000000..1f2bfa3d --- /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 00000000..71285a1d 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 00000000..fd298a43 --- /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 00000000..e35d5a3e 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 00000000..a313fc05 --- /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 00000000..2c0c7bd1 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 00000000..a03a29d4 --- /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 00000000..42441af8 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 00000000..43f59f4f --- /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 00000000..9d7b0435 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 00000000..04385e3e --- /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 00000000..d66f2190 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 00000000..91b7bb98 --- /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 00000000..66d7174d 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 00000000..8f5233c2 --- /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 00000000..eef0ece4 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 00000000..3e942623 --- /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 00000000..6b0b38ab 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 00000000..881cb9c3 --- /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 00000000..01b5cb06 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 00000000..4a5957c5 --- /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 00000000..918abc64 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 00000000..a8dd1b98 --- /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 00000000..e7522749 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 00000000..9ae89fcf --- /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 00000000..3700a2b1 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 00000000..1a6c27fc --- /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 00000000..d6b1cd55 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 00000000..b1b0abca --- /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 00000000..1f5a433a 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 00000000..435dfc98 --- /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 00000000..668609cb Binary files /dev/null and b/blockchains/base/assets/0xc799AdA44171b741Abf41Ee54fb1B47fda5960bE/logo.png differ diff --git a/blockchains/base/assets/0xca73ed1815e5915489570014e024b7EbE65dE679/info.json b/blockchains/base/assets/0xca73ed1815e5915489570014e024b7EbE65dE679/info.json new file mode 100644 index 00000000..bb7f059c --- /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 00000000..1b5cf84c 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 00000000..e445f081 --- /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 00000000..48f28566 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 00000000..1e7c280f --- /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 00000000..df55d1fd 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 00000000..9a950e0e --- /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 00000000..fd1beffc 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 00000000..89464493 --- /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 00000000..ec7f2708 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 00000000..e27d845b --- /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 00000000..dbc3b1c1 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 00000000..f670068a --- /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 00000000..c7dfa7af 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 00000000..10acf059 --- /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 00000000..7efeb939 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 00000000..0291ab8b --- /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 00000000..819922b5 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 00000000..dba48a5a --- /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 00000000..fa8a0508 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 00000000..a4d57bfa --- /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 00000000..fbb49c47 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 00000000..4454f32b --- /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 00000000..58fdf1b4 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 00000000..c116d4bd --- /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 00000000..e7d7f22a 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 00000000..20d92964 --- /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 00000000..69d770fb 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 00000000..e7daebe6 --- /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 00000000..e2fb98a2 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 00000000..bf487666 --- /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 00000000..016b2dc7 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 00000000..9090a00b --- /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 00000000..811be4cb 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 00000000..3921056c --- /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 00000000..50d7cdc5 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 00000000..b2b02ab0 --- /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 00000000..1abcc5a5 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 00000000..9ebcb705 --- /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 00000000..d73f3de7 --- /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 00000000..446373ce 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 00000000..7ef98588 --- /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 00000000..e30fd675 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 00000000..68c33ffe --- /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 00000000..dcd9b55e 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 00000000..fb9fb9d8 --- /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 00000000..e7e92a33 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 00000000..05a32198 --- /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 00000000..f6bffb3c 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 00000000..1f48424e --- /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 00000000..1aea1924 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 00000000..16a9c05e --- /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 00000000..baf39772 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 00000000..01ca18b1 --- /dev/null +++ b/blockchains/base/assets/0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2/info.json @@ -0,0 +1,20 @@ +{ + "name": "Bridged Tether USD", + "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 00000000..4b302730 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 00000000..d4d8d34f --- /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 00000000..9ddeb947 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 00000000..a1f6f016 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 00000000..cf12f16f --- /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/AAVE-8FA/info.json b/blockchains/binance/assets/AAVE-8FA/info.json new file mode 100644 index 00000000..3638a4e0 --- /dev/null +++ b/blockchains/binance/assets/AAVE-8FA/info.json @@ -0,0 +1,12 @@ +{ + "name": "Aave Token", + "symbol": "AAVE", + "type": "BEP2", + "decimals": 8, + "description": "Aave is a decentralized finance protocol that allows people to lend and borrow crypto.", + "website": "https://aave.com", + "explorer": "https://explorer.binance.org/asset/AAVE-8FA", + "research": "https://research.binance.com/en/projects/aave-protocol", + "status": "active", + "id": "AAVE-8FA" +} \ No newline at end of file diff --git a/blockchains/binance/assets/AAVE-8FA/logo.png b/blockchains/binance/assets/AAVE-8FA/logo.png new file mode 100644 index 00000000..14cd6ff7 Binary files /dev/null and b/blockchains/binance/assets/AAVE-8FA/logo.png differ diff --git a/blockchains/binance/assets/ABCD-5D8/info.json b/blockchains/binance/assets/ABCD-5D8/info.json new file mode 100644 index 00000000..afd07d70 --- /dev/null +++ b/blockchains/binance/assets/ABCD-5D8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Africa Stable-Coin", + "symbol": "ABCD", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "abandoned", + "explorer": "https://explorer.binance.org/asset/ABCD-5D8", + "status": "active", + "id": "ABCD-5D8" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ABCD-5D8/logo.png b/blockchains/binance/assets/ABCD-5D8/logo.png new file mode 100644 index 00000000..88327bf7 Binary files /dev/null and b/blockchains/binance/assets/ABCD-5D8/logo.png differ diff --git a/blockchains/binance/assets/ADA-9F4/info.json b/blockchains/binance/assets/ADA-9F4/info.json new file mode 100644 index 00000000..6b58029f --- /dev/null +++ b/blockchains/binance/assets/ADA-9F4/info.json @@ -0,0 +1,11 @@ +{ + "name": "CardanoBEP2", + "symbol": "ADA", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/ADA-9F4", + "status": "active", + "id": "ADA-9F4" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ADA-9F4/logo.png b/blockchains/binance/assets/ADA-9F4/logo.png new file mode 100644 index 00000000..fb5bcfcb Binary files /dev/null and b/blockchains/binance/assets/ADA-9F4/logo.png differ diff --git a/blockchains/binance/assets/AERGO-46B/info.json b/blockchains/binance/assets/AERGO-46B/info.json new file mode 100644 index 00000000..a11588be --- /dev/null +++ b/blockchains/binance/assets/AERGO-46B/info.json @@ -0,0 +1,12 @@ +{ + "name": "Aergo", + "website": "https://aergo.io", + "description": "Aergo describes itself as an open-source enterprise blockchain platform optimized for hybrid deployments, which consist of both permissioned and permissionless blockchain architectures.", + "explorer": "https://explorer.binance.org/asset/AERGO-46B", + "research": "https://research.binance.com/en/projects/aergo", + "type": "BEP2", + "symbol": "AERGO", + "decimals": 8, + "status": "active", + "id": "AERGO-46B" +} \ No newline at end of file diff --git a/blockchains/binance/assets/AERGO-46B/logo.png b/blockchains/binance/assets/AERGO-46B/logo.png new file mode 100644 index 00000000..c12b843e Binary files /dev/null and b/blockchains/binance/assets/AERGO-46B/logo.png differ diff --git a/blockchains/binance/assets/ALA-DCD/info.json b/blockchains/binance/assets/ALA-DCD/info.json new file mode 100644 index 00000000..54cec427 --- /dev/null +++ b/blockchains/binance/assets/ALA-DCD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alaris", + "symbol": "ALA", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/ALA-DCD", + "status": "active", + "id": "ALA-DCD" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ALA-DCD/logo.png b/blockchains/binance/assets/ALA-DCD/logo.png new file mode 100644 index 00000000..1b28bd7f Binary files /dev/null and b/blockchains/binance/assets/ALA-DCD/logo.png differ diff --git a/blockchains/binance/assets/ANKR-E97/info.json b/blockchains/binance/assets/ANKR-E97/info.json new file mode 100644 index 00000000..92a0d413 --- /dev/null +++ b/blockchains/binance/assets/ANKR-E97/info.json @@ -0,0 +1,26 @@ +{ + "name": "ANKR", + "website": "https://ankr.com", + "description": "Ankr is building an infrastructure platform and marketplace for Web3-stack deployment.", + "explorer": "https://explorer.binance.org/asset/ANKR-E97", + "research": "https://research.binance.com/en/projects/ankr-network", + "type": "BEP2", + "symbol": "ANKR", + "decimals": 8, + "status": "active", + "id": "ANKR-E97", + "links": [ + { + "name": "blog", + "url": "https://medium.com/ankr-network" + }, + { + "name": "x", + "url": "https://x.com/ankr" + }, + { + "name": "whitepaper", + "url": "https://s3-us-west-1.amazonaws.com/app.ankr.network/assets/Ankr_Whitepaper_20190524.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/binance/assets/ANKR-E97/logo.png b/blockchains/binance/assets/ANKR-E97/logo.png new file mode 100644 index 00000000..22118303 Binary files /dev/null and b/blockchains/binance/assets/ANKR-E97/logo.png differ diff --git a/blockchains/binance/assets/ARN-71B/info.json b/blockchains/binance/assets/ARN-71B/info.json new file mode 100644 index 00000000..0a508bc2 --- /dev/null +++ b/blockchains/binance/assets/ARN-71B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aeron", + "symbol": "ARN", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/ARN-71B", + "status": "abandoned", + "id": "ARN-71B" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ARN-71B/logo.png b/blockchains/binance/assets/ARN-71B/logo.png new file mode 100644 index 00000000..eb6704e1 Binary files /dev/null and b/blockchains/binance/assets/ARN-71B/logo.png differ diff --git a/blockchains/binance/assets/ARPA-575/info.json b/blockchains/binance/assets/ARPA-575/info.json new file mode 100644 index 00000000..943847c3 --- /dev/null +++ b/blockchains/binance/assets/ARPA-575/info.json @@ -0,0 +1,11 @@ +{ + "name": "ARPA", + "symbol": "ARPA", + "type": "BEP2", + "decimals": 8, + "description": "ARPA cryptographically enables private smart contract, unprecedented data-at-use privacy protection, as well as scalable computational sharding", + "website": "https://arpachain.io/", + "explorer": "https://explorer.binance.org/asset/ARPA-575", + "status": "active", + "id": "ARPA-575" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ARPA-575/logo.png b/blockchains/binance/assets/ARPA-575/logo.png new file mode 100644 index 00000000..34ad0ca8 Binary files /dev/null and b/blockchains/binance/assets/ARPA-575/logo.png differ diff --git a/blockchains/binance/assets/ART-3C9/info.json b/blockchains/binance/assets/ART-3C9/info.json new file mode 100644 index 00000000..1bad0636 --- /dev/null +++ b/blockchains/binance/assets/ART-3C9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Maecenas ART Token", + "symbol": "ART", + "type": "BEP2", + "decimals": 8, + "description": "Maecenas is the first open blockchain platform that democratises access to Fine Art", + "website": "http://www.maecenas.co/", + "explorer": "https://explorer.binance.org/asset/ART-3C9", + "status": "active", + "id": "ART-3C9" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ART-3C9/logo.png b/blockchains/binance/assets/ART-3C9/logo.png new file mode 100644 index 00000000..e46a6e7f Binary files /dev/null and b/blockchains/binance/assets/ART-3C9/logo.png differ diff --git a/blockchains/binance/assets/ATOM-596/info.json b/blockchains/binance/assets/ATOM-596/info.json new file mode 100644 index 00000000..01839811 --- /dev/null +++ b/blockchains/binance/assets/ATOM-596/info.json @@ -0,0 +1,11 @@ +{ + "name": "ATOMBEP2", + "symbol": "ATOM", + "type": "BEP2", + "decimals": 8, + "description": "ATOM BEP2 is a token on Binance Chain issued by Binance, where the price is pegged to ATOM at a rate of 1 ATOM BEP2 = 1 ATOM", + "website": "https://binance.org", + "explorer": "https://explorer.binance.org/asset/ATOM-596", + "status": "active", + "id": "ATOM-596" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ATOM-596/logo.png b/blockchains/binance/assets/ATOM-596/logo.png new file mode 100644 index 00000000..319ae9b3 Binary files /dev/null and b/blockchains/binance/assets/ATOM-596/logo.png differ diff --git a/blockchains/binance/assets/ATP-38C/info.json b/blockchains/binance/assets/ATP-38C/info.json new file mode 100644 index 00000000..c41a3996 --- /dev/null +++ b/blockchains/binance/assets/ATP-38C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Atlas Protocol", + "symbol": "ATP", + "type": "BEP2", + "decimals": 8, + "description": "Offering one-stop blockchain enterprise solutions to users, circulating value using crypto tokens.", + "website": "https://atlasp.io/", + "explorer": "https://explorer.binance.org/asset/ATP-38C", + "status": "active", + "id": "ATP-38C" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ATP-38C/logo.png b/blockchains/binance/assets/ATP-38C/logo.png new file mode 100644 index 00000000..f4c6ac64 Binary files /dev/null and b/blockchains/binance/assets/ATP-38C/logo.png differ diff --git a/blockchains/binance/assets/AVA-645/info.json b/blockchains/binance/assets/AVA-645/info.json new file mode 100644 index 00000000..9e1b204e --- /dev/null +++ b/blockchains/binance/assets/AVA-645/info.json @@ -0,0 +1,12 @@ +{ + "name": "Travala.com Token", + "website": "https://travala.com", + "description": "Travala.com claims to be the leading blockchain-based travel booking platform.", + "explorer": "https://explorer.binance.org/asset/AVA-645", + "research": "https://research.binance.com/en/projects/travala", + "type": "BEP2", + "symbol": "AVA", + "decimals": 8, + "status": "active", + "id": "AVA-645" +} \ No newline at end of file diff --git a/blockchains/binance/assets/AVA-645/logo.png b/blockchains/binance/assets/AVA-645/logo.png new file mode 100644 index 00000000..f0cfeef3 Binary files /dev/null and b/blockchains/binance/assets/AVA-645/logo.png differ diff --git a/blockchains/binance/assets/AWC-986/info.json b/blockchains/binance/assets/AWC-986/info.json new file mode 100644 index 00000000..a5f59af9 --- /dev/null +++ b/blockchains/binance/assets/AWC-986/info.json @@ -0,0 +1,11 @@ +{ + "name": "Atomic Wallet Token", + "symbol": "AWC", + "type": "BEP2", + "decimals": 8, + "description": "AWC Tokens will serve as an internal currency for Atomic Wallet users.", + "website": "https://atomicwallet.io/", + "explorer": "https://explorer.binance.org/asset/AWC-986", + "status": "active", + "id": "AWC-986" +} \ No newline at end of file diff --git a/blockchains/binance/assets/AWC-986/logo.png b/blockchains/binance/assets/AWC-986/logo.png new file mode 100644 index 00000000..6e218fa0 Binary files /dev/null and b/blockchains/binance/assets/AWC-986/logo.png differ diff --git a/blockchains/binance/assets/AXPR-777/info.json b/blockchains/binance/assets/AXPR-777/info.json new file mode 100644 index 00000000..a5c5b11c --- /dev/null +++ b/blockchains/binance/assets/AXPR-777/info.json @@ -0,0 +1,11 @@ +{ + "name": "AXPR.B", + "symbol": "AXPR", + "type": "BEP2", + "decimals": 8, + "description": "aXpire has launched its latest technology innovation into the Fund Administration Services space. aXpire will initially serve to help asset and fund administrators and managers at banks, hedge funds, private equity firms and others to deal with the resource and time-costly process of allocating and apportioning outside vendor costs to each fund, or split of funds as is appropriate, based on the deal.", + "website": "https://www.axpire.io/", + "explorer": "https://explorer.binance.org/asset/AXPR-777", + "status": "active", + "id": "AXPR-777" +} \ No newline at end of file diff --git a/blockchains/binance/assets/AXPR-777/logo.png b/blockchains/binance/assets/AXPR-777/logo.png new file mode 100644 index 00000000..80d66958 Binary files /dev/null and b/blockchains/binance/assets/AXPR-777/logo.png differ diff --git a/blockchains/binance/assets/BAKE-5E0/info.json b/blockchains/binance/assets/BAKE-5E0/info.json new file mode 100644 index 00000000..efad8ae0 --- /dev/null +++ b/blockchains/binance/assets/BAKE-5E0/info.json @@ -0,0 +1,11 @@ +{ + "name": "BakeryToken", + "type": "BEP2", + "symbol": "BAKE", + "decimals": 8, + "website": "", + "description": "-", + "explorer": "https://explorer.binance.org/asset/BAKE-5E0", + "status": "active", + "id": "BAKE-5E0" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BAKE-5E0/logo.png b/blockchains/binance/assets/BAKE-5E0/logo.png new file mode 100644 index 00000000..da2f51ba Binary files /dev/null and b/blockchains/binance/assets/BAKE-5E0/logo.png differ diff --git a/blockchains/binance/assets/BAND-34B/info.json b/blockchains/binance/assets/BAND-34B/info.json new file mode 100644 index 00000000..1b7df3af --- /dev/null +++ b/blockchains/binance/assets/BAND-34B/info.json @@ -0,0 +1,11 @@ +{ + "name": "BandProtocolBEP2", + "symbol": "BAND", + "type": "BEP2", + "decimals": 8, + "description": "cross-chain data oracle platform that aggregates and connects real-world data and APIs to smart contracts.", + "website": "https://bandprotocol.com/", + "explorer": "https://explorer.binance.org/asset/BAND-34B", + "status": "active", + "id": "BAND-34B" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BAND-34B/logo.png b/blockchains/binance/assets/BAND-34B/logo.png new file mode 100644 index 00000000..65db187d Binary files /dev/null and b/blockchains/binance/assets/BAND-34B/logo.png differ diff --git a/blockchains/binance/assets/BAT-07A/info.json b/blockchains/binance/assets/BAT-07A/info.json new file mode 100644 index 00000000..e1eb595e --- /dev/null +++ b/blockchains/binance/assets/BAT-07A/info.json @@ -0,0 +1,12 @@ +{ + "name": "Basic Attention Token", + "website": "https://basicattentiontoken.org", + "description": "Basic Attention Token (BAT) project is an open-source, decentralized ad exchange platform built, on the Ethereum platform.", + "explorer": "https://explorer.binance.org/asset/BAT-07A", + "research": "https://research.binance.com/en/projects/basic-attention-token", + "type": "BEP2", + "symbol": "BAT", + "decimals": 8, + "status": "active", + "id": "BAT-07A" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BAT-07A/logo.png b/blockchains/binance/assets/BAT-07A/logo.png new file mode 100644 index 00000000..e30c1e59 Binary files /dev/null and b/blockchains/binance/assets/BAT-07A/logo.png differ diff --git a/blockchains/binance/assets/BAW-DFB/info.json b/blockchains/binance/assets/BAW-DFB/info.json new file mode 100644 index 00000000..a0488228 --- /dev/null +++ b/blockchains/binance/assets/BAW-DFB/info.json @@ -0,0 +1,11 @@ +{ + "name": "BAWnetwork", + "symbol": "BAW", + "type": "BEP2", + "decimals": 8, + "description": "BAW provides an answer to the question of scalabiity facing several blockchains.", + "website": "https://baw.network/", + "explorer": "https://explorer.binance.org/asset/BAW-DFB", + "status": "abandoned", + "id": "BAW-DFB" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BAW-DFB/logo.png b/blockchains/binance/assets/BAW-DFB/logo.png new file mode 100644 index 00000000..7ea57f71 Binary files /dev/null and b/blockchains/binance/assets/BAW-DFB/logo.png differ diff --git a/blockchains/binance/assets/BCH-1FD/info.json b/blockchains/binance/assets/BCH-1FD/info.json new file mode 100644 index 00000000..11fda445 --- /dev/null +++ b/blockchains/binance/assets/BCH-1FD/info.json @@ -0,0 +1,11 @@ +{ + "name": "BCH BEP2", + "symbol": "BCH", + "type": "BEP2", + "decimals": 8, + "description": "BCH BEP2 is a token on Binance Chain issued by Binance, where the price is pegged to BCH at a rate of 1 BCH BEP2 = 1 BCH", + "website": "https://binance.org", + "explorer": "https://explorer.binance.org/asset/BCH-1FD", + "status": "active", + "id": "BCH-1FD" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BCH-1FD/logo.png b/blockchains/binance/assets/BCH-1FD/logo.png new file mode 100644 index 00000000..e937e267 Binary files /dev/null and b/blockchains/binance/assets/BCH-1FD/logo.png differ diff --git a/blockchains/binance/assets/BCHA-959/info.json b/blockchains/binance/assets/BCHA-959/info.json new file mode 100644 index 00000000..2f03dba0 --- /dev/null +++ b/blockchains/binance/assets/BCHA-959/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Cash ABC", + "symbol": "BCHA", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/BCHA-959", + "status": "active", + "id": "BCHA-959" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BCHA-959/logo.png b/blockchains/binance/assets/BCHA-959/logo.png new file mode 100644 index 00000000..b0a8da96 Binary files /dev/null and b/blockchains/binance/assets/BCHA-959/logo.png differ diff --git a/blockchains/binance/assets/BCPT-95A/info.json b/blockchains/binance/assets/BCPT-95A/info.json new file mode 100644 index 00000000..27b61d67 --- /dev/null +++ b/blockchains/binance/assets/BCPT-95A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockmason Credit Protocol", + "symbol": "BCPT", + "type": "BEP2", + "decimals": 8, + "description": "Blockmason’s Credit Protocol is a standardized, reliable and secure method for recording and permanently storing debt and credit obligations on the blockchain", + "website": "https://blockmason.io/", + "explorer": "https://explorer.binance.org/asset/BCPT-95A", + "status": "active", + "id": "BCPT-95A" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BCPT-95A/logo.png b/blockchains/binance/assets/BCPT-95A/logo.png new file mode 100644 index 00000000..33c3016a Binary files /dev/null and b/blockchains/binance/assets/BCPT-95A/logo.png differ diff --git a/blockchains/binance/assets/BEAR-14C/info.json b/blockchains/binance/assets/BEAR-14C/info.json new file mode 100644 index 00000000..4a129f44 --- /dev/null +++ b/blockchains/binance/assets/BEAR-14C/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Short Bitcoin Token", + "symbol": "BEAR", + "type": "BEP2", + "decimals": 8, + "description": "3X Short Bitcoin Token (BEAR) is an BEP2 token which seeks a return that corresponds to -3 times the daily return of Bitcoin.", + "website": "https://ftx.com/", + "explorer": "https://explorer.binance.org/asset/BEAR-14C", + "status": "active", + "id": "BEAR-14C" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BEAR-14C/logo.png b/blockchains/binance/assets/BEAR-14C/logo.png new file mode 100644 index 00000000..a4da7ac8 Binary files /dev/null and b/blockchains/binance/assets/BEAR-14C/logo.png differ diff --git a/blockchains/binance/assets/BEL-D85/info.json b/blockchains/binance/assets/BEL-D85/info.json new file mode 100644 index 00000000..22168651 --- /dev/null +++ b/blockchains/binance/assets/BEL-D85/info.json @@ -0,0 +1,12 @@ +{ + "name": "Bella Protocol", + "website": "https://bella.fi", + "description": "Bella Protocol is described to be a set of DeFi products for one-click crypto banking.", + "explorer": "https://explorer.binance.org/asset/BEL-D85", + "research": "https://research.binance.com/en/projects/bella", + "type": "BEP2", + "symbol": "BEL", + "decimals": 8, + "status": "active", + "id": "BEL-D85" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BEL-D85/logo.png b/blockchains/binance/assets/BEL-D85/logo.png new file mode 100644 index 00000000..e60767da Binary files /dev/null and b/blockchains/binance/assets/BEL-D85/logo.png differ diff --git a/blockchains/binance/assets/BET-844/info.json b/blockchains/binance/assets/BET-844/info.json new file mode 100644 index 00000000..daf73abe --- /dev/null +++ b/blockchains/binance/assets/BET-844/info.json @@ -0,0 +1,11 @@ +{ + "name": "EOSBet Token", + "symbol": "BET", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/BET-844", + "status": "active", + "id": "BET-844" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BET-844/logo.png b/blockchains/binance/assets/BET-844/logo.png new file mode 100644 index 00000000..ee299c03 Binary files /dev/null and b/blockchains/binance/assets/BET-844/logo.png differ diff --git a/blockchains/binance/assets/BETH-654/info.json b/blockchains/binance/assets/BETH-654/info.json new file mode 100644 index 00000000..30cdd232 --- /dev/null +++ b/blockchains/binance/assets/BETH-654/info.json @@ -0,0 +1,12 @@ +{ + "name": "Binance Beacon ETH", + "website": "https://binance.com/en/eth2", + "description": "BETH is a tokenized asset representing staked ETH at Binance Staking on a 1:1 basis.", + "explorer": "https://explorer.binance.org/asset/BETH-654", + "research": "", + "type": "BEP2", + "symbol": "BETH", + "decimals": 8, + "status": "active", + "id": "BETH-654" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BETH-654/logo.png b/blockchains/binance/assets/BETH-654/logo.png new file mode 100644 index 00000000..e9bdb789 Binary files /dev/null and b/blockchains/binance/assets/BETH-654/logo.png differ diff --git a/blockchains/binance/assets/BETX-A0C/info.json b/blockchains/binance/assets/BETX-A0C/info.json new file mode 100644 index 00000000..b82da2a5 --- /dev/null +++ b/blockchains/binance/assets/BETX-A0C/info.json @@ -0,0 +1,11 @@ +{ + "name": "BETX Token", + "symbol": "BETX", + "type": "BEP2", + "decimals": 8, + "description": "BETX.FUN provides users with a community autonomous gaming platform with rich entertainment games.", + "website": "https://www.betx.fun", + "explorer": "https://explorer.binance.org/asset/BETX-A0C", + "status": "abandoned", + "id": "BETX-A0C" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BETX-A0C/logo.png b/blockchains/binance/assets/BETX-A0C/logo.png new file mode 100644 index 00000000..15c7d867 Binary files /dev/null and b/blockchains/binance/assets/BETX-A0C/logo.png differ diff --git a/blockchains/binance/assets/BGBP-CF3/info.json b/blockchains/binance/assets/BGBP-CF3/info.json new file mode 100644 index 00000000..c606ce80 --- /dev/null +++ b/blockchains/binance/assets/BGBP-CF3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Binance GBP Stable Coin", + "symbol": "BGBP", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/BGBP-CF3", + "status": "abandoned", + "id": "BGBP-CF3" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BGBP-CF3/logo.png b/blockchains/binance/assets/BGBP-CF3/logo.png new file mode 100644 index 00000000..729c32b3 Binary files /dev/null and b/blockchains/binance/assets/BGBP-CF3/logo.png differ diff --git a/blockchains/binance/assets/BHC-3E8M/info.json b/blockchains/binance/assets/BHC-3E8M/info.json new file mode 100644 index 00000000..878db57b --- /dev/null +++ b/blockchains/binance/assets/BHC-3E8M/info.json @@ -0,0 +1,11 @@ +{ + "name": "Billion Happiness", + "type": "BEP2", + "symbol": "BHC", + "decimals": 8, + "website": "", + "description": "-", + "explorer": "https://explorer.binance.org/asset/BHC-3E8M", + "status": "abandoned", + "id": "BHC-3E8M" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BHC-3E8M/logo.png b/blockchains/binance/assets/BHC-3E8M/logo.png new file mode 100644 index 00000000..79cc66fe Binary files /dev/null and b/blockchains/binance/assets/BHC-3E8M/logo.png differ diff --git a/blockchains/binance/assets/BHFT-BBE/info.json b/blockchains/binance/assets/BHFT-BBE/info.json new file mode 100644 index 00000000..5f4e09a7 --- /dev/null +++ b/blockchains/binance/assets/BHFT-BBE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Humanity First Token", + "symbol": "BHFT", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/BHFT-BBE", + "status": "active", + "id": "BHFT-BBE" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BHFT-BBE/logo.png b/blockchains/binance/assets/BHFT-BBE/logo.png new file mode 100644 index 00000000..2b06a5aa Binary files /dev/null and b/blockchains/binance/assets/BHFT-BBE/logo.png differ diff --git a/blockchains/binance/assets/BIDR-0E9/info.json b/blockchains/binance/assets/BIDR-0E9/info.json new file mode 100644 index 00000000..a66e6051 --- /dev/null +++ b/blockchains/binance/assets/BIDR-0E9/info.json @@ -0,0 +1,12 @@ +{ + "name": "Binance IDR", + "website": "https://binance.com/en/news/flash/36564", + "description": "Binance IDR (BIDR) is a token issued by Tokocrypto with a price pegged to the Indonesian Rupiah at a 1:1 rate.", + "explorer": "https://explorer.binance.org/asset/BIDR-0E9", + "research": "https://research.binance.com/en/projects/binance-idr", + "type": "BEP2", + "symbol": "BIDR", + "decimals": 8, + "status": "active", + "id": "BIDR-0E9" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BIDR-0E9/logo.png b/blockchains/binance/assets/BIDR-0E9/logo.png new file mode 100644 index 00000000..6da8d892 Binary files /dev/null and b/blockchains/binance/assets/BIDR-0E9/logo.png differ diff --git a/blockchains/binance/assets/BIFI-290/info.json b/blockchains/binance/assets/BIFI-290/info.json new file mode 100644 index 00000000..edff854a --- /dev/null +++ b/blockchains/binance/assets/BIFI-290/info.json @@ -0,0 +1,24 @@ +{ + "name": "beefy.finance", + "symbol": "BIFI", + "type": "BEP2", + "decimals": 8, + "description": "The Multichain Yield Optimizer", + "website": "https://beefy.finance", + "explorer": "https://explorer.binance.org/asset/BIFI-290", + "status": "active", + "id": "BIFI-290", + "links": [ + { + "name": "x", + "url": "https://x.com/beefyfinance" + }, + { + "name": "telegram", + "url": "https://t.me/beefyannouncement" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/binance/assets/BIFI-290/logo.png b/blockchains/binance/assets/BIFI-290/logo.png new file mode 100644 index 00000000..6c09bb9a Binary files /dev/null and b/blockchains/binance/assets/BIFI-290/logo.png differ diff --git a/blockchains/binance/assets/BKBT-3A6/info.json b/blockchains/binance/assets/BKBT-3A6/info.json new file mode 100644 index 00000000..cbf96d34 --- /dev/null +++ b/blockchains/binance/assets/BKBT-3A6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitwires Token", + "symbol": "BKBT", + "type": "BEP2", + "decimals": 8, + "description": "The Bitwires token (BKBT) acts as the token incentive within the Bitwires blockchain-based social media platform. The Bitwires network rewards users for reading, sharing, and contributing its platform in BKBT tokens.", + "website": "https://www.bitwires.com/en/", + "explorer": "https://explorer.binance.org/asset/BKBT-3A6", + "status": "active", + "id": "BKBT-3A6" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BKBT-3A6/logo.png b/blockchains/binance/assets/BKBT-3A6/logo.png new file mode 100644 index 00000000..0e5c0bdc Binary files /dev/null and b/blockchains/binance/assets/BKBT-3A6/logo.png differ diff --git a/blockchains/binance/assets/BKRW-AB7/info.json b/blockchains/binance/assets/BKRW-AB7/info.json new file mode 100644 index 00000000..aecbf585 --- /dev/null +++ b/blockchains/binance/assets/BKRW-AB7/info.json @@ -0,0 +1,12 @@ +{ + "name": "Binance KRW", + "website": "https://binance.zendesk.com/hc/en-us/articles/360040135172", + "description": "Binance KRW (BKRW) is a token issued by Binance Korea with a price pegged to the Korean Won at a 1:1 rate.", + "explorer": "https://explorer.binance.org/asset/BKRW-AB7", + "research": "https://research.binance.com/en/projects/binance-krw", + "type": "BEP2", + "symbol": "BKRW", + "decimals": 8, + "status": "active", + "id": "BKRW-AB7" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BKRW-AB7/logo.png b/blockchains/binance/assets/BKRW-AB7/logo.png new file mode 100644 index 00000000..82e90a2f Binary files /dev/null and b/blockchains/binance/assets/BKRW-AB7/logo.png differ diff --git a/blockchains/binance/assets/BLINK-9C6/info.json b/blockchains/binance/assets/BLINK-9C6/info.json new file mode 100644 index 00000000..3cc67c52 --- /dev/null +++ b/blockchains/binance/assets/BLINK-9C6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockmason Link", + "symbol": "BLINK", + "type": "BEP2", + "decimals": 8, + "description": "Blockmason Link aims to create conventional web-based APIs for any smart contract written on a programmatic blockchain. Any software capable of using a web API can reportedly use the Link app with no special libraries, tools, or blockchain knowledge required.", + "website": "https://blockmason.link/", + "explorer": "https://explorer.binance.org/asset/BLINK-9C6", + "status": "active", + "id": "BLINK-9C6" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BLINK-9C6/logo.png b/blockchains/binance/assets/BLINK-9C6/logo.png new file mode 100644 index 00000000..0281cd8c Binary files /dev/null and b/blockchains/binance/assets/BLINK-9C6/logo.png differ diff --git a/blockchains/binance/assets/BOLT-4C6/info.json b/blockchains/binance/assets/BOLT-4C6/info.json new file mode 100644 index 00000000..5bba9350 --- /dev/null +++ b/blockchains/binance/assets/BOLT-4C6/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOLT Token", + "symbol": "BOLT", + "type": "BEP2", + "decimals": 8, + "description": "Watch your favourite channels LIVE on BOLT+ and get rewarded in BOLT X.", + "website": "https://bolt.global/", + "explorer": "https://explorer.binance.org/asset/BOLT-4C6", + "status": "active", + "id": "BOLT-4C6" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BOLT-4C6/logo.png b/blockchains/binance/assets/BOLT-4C6/logo.png new file mode 100644 index 00000000..bd61bde5 Binary files /dev/null and b/blockchains/binance/assets/BOLT-4C6/logo.png differ diff --git a/blockchains/binance/assets/BST2-2F2/info.json b/blockchains/binance/assets/BST2-2F2/info.json new file mode 100644 index 00000000..39d46a31 --- /dev/null +++ b/blockchains/binance/assets/BST2-2F2/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOOSTO", + "symbol": "BST2", + "type": "BEP2", + "decimals": 8, + "description": "Combine the talents of App developers and social media content creators, to build up a Decentralized DApp Ecosystem.", + "website": "https://boosto.io/", + "explorer": "https://explorer.binance.org/asset/BST2-2F2", + "status": "active", + "id": "BST2-2F2" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BST2-2F2/logo.png b/blockchains/binance/assets/BST2-2F2/logo.png new file mode 100644 index 00000000..9457f5e8 Binary files /dev/null and b/blockchains/binance/assets/BST2-2F2/logo.png differ diff --git a/blockchains/binance/assets/BTCB-1DE/info.json b/blockchains/binance/assets/BTCB-1DE/info.json new file mode 100644 index 00000000..40c3ba3a --- /dev/null +++ b/blockchains/binance/assets/BTCB-1DE/info.json @@ -0,0 +1,22 @@ +{ + "name": "Bitcoin BEP2", + "website": "https://binance.org", + "description": "Bitcoin BEP2 (BTCB) is a token on Binance Chain issued by Binance, where the price is pegged to BTC at a rate of 1 BTCB = 1 BTC.", + "explorer": "https://explorer.binance.org/asset/BTCB-1DE", + "research": "", + "type": "BEP2", + "symbol": "BTCB", + "decimals": 8, + "status": "active", + "id": "BTCB-1DE", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BinanceDEXchange" + }, + { + "name": "x", + "url": "https://x.com/BinanceChain" + } + ] +} \ No newline at end of file diff --git a/blockchains/binance/assets/BTCB-1DE/logo.png b/blockchains/binance/assets/BTCB-1DE/logo.png new file mode 100644 index 00000000..f26deab0 Binary files /dev/null and b/blockchains/binance/assets/BTCB-1DE/logo.png differ diff --git a/blockchains/binance/assets/BTTB-D31/info.json b/blockchains/binance/assets/BTTB-D31/info.json new file mode 100644 index 00000000..bc408ec8 --- /dev/null +++ b/blockchains/binance/assets/BTTB-D31/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTTB", + "symbol": "BTTB", + "type": "BEP2", + "decimals": 8, + "description": "BTT utility token that allows content creators to connect with their audience, earn and spend digital currency without a middleman.", + "website": "https://www.bittorrent.com/btt/", + "explorer": "https://explorer.binance.org/asset/BTTB-D31", + "status": "active", + "id": "BTTB-D31" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BTTB-D31/logo.png b/blockchains/binance/assets/BTTB-D31/logo.png new file mode 100644 index 00000000..a3336a10 Binary files /dev/null and b/blockchains/binance/assets/BTTB-D31/logo.png differ diff --git a/blockchains/binance/assets/BULL-BE4/info.json b/blockchains/binance/assets/BULL-BE4/info.json new file mode 100644 index 00000000..19cc8599 --- /dev/null +++ b/blockchains/binance/assets/BULL-BE4/info.json @@ -0,0 +1,11 @@ +{ + "name": "3x Long Bitcoin Token", + "symbol": "BULL", + "type": "BEP2", + "decimals": 8, + "description": "seeks a return that corresponds to 3 times the daily return of Bitcoin.", + "website": "https://ftx.com/", + "explorer": "https://explorer.binance.org/asset/BULL-BE4", + "status": "active", + "id": "BULL-BE4" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BULL-BE4/logo.png b/blockchains/binance/assets/BULL-BE4/logo.png new file mode 100644 index 00000000..9f93159d Binary files /dev/null and b/blockchains/binance/assets/BULL-BE4/logo.png differ diff --git a/blockchains/binance/assets/BURGER-33A/info.json b/blockchains/binance/assets/BURGER-33A/info.json new file mode 100644 index 00000000..22c9c6b5 --- /dev/null +++ b/blockchains/binance/assets/BURGER-33A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Burger Swap", + "type": "BEP2", + "symbol": "BURGER", + "decimals": 8, + "website": "", + "description": "-", + "explorer": "https://explorer.binance.org/asset/BURGER-33A", + "status": "active", + "id": "BURGER-33A" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BURGER-33A/logo.png b/blockchains/binance/assets/BURGER-33A/logo.png new file mode 100644 index 00000000..57a698f7 Binary files /dev/null and b/blockchains/binance/assets/BURGER-33A/logo.png differ diff --git a/blockchains/binance/assets/BUSD-BD1/info.json b/blockchains/binance/assets/BUSD-BD1/info.json new file mode 100644 index 00000000..27b922f0 --- /dev/null +++ b/blockchains/binance/assets/BUSD-BD1/info.json @@ -0,0 +1,12 @@ +{ + "name": "Binance USD", + "website": "https://paxos.com/busd", + "description": "BUSD is a stablecoin issued by Paxos in partnership with Binance.", + "explorer": "https://explorer.binance.org/asset/BUSD-BD1", + "research": "https://research.binance.com/en/projects/binance-usd", + "type": "BEP2", + "symbol": "BUSD", + "decimals": 8, + "status": "active", + "id": "BUSD-BD1" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BUSD-BD1/logo.png b/blockchains/binance/assets/BUSD-BD1/logo.png new file mode 100644 index 00000000..76d02e37 Binary files /dev/null and b/blockchains/binance/assets/BUSD-BD1/logo.png differ diff --git a/blockchains/binance/assets/BZNT-464/info.json b/blockchains/binance/assets/BZNT-464/info.json new file mode 100644 index 00000000..87a8b6c4 --- /dev/null +++ b/blockchains/binance/assets/BZNT-464/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bezant Token", + "symbol": "BZNT", + "type": "BEP2", + "decimals": 8, + "description": "Bezant is a decentralized payment protocol that allows content creators and online merchants to setup stores and send/receive payments internationally.", + "website": "https://bezant.io/", + "explorer": "https://explorer.binance.org/asset/BZNT-464", + "status": "active", + "id": "BZNT-464" +} \ No newline at end of file diff --git a/blockchains/binance/assets/BZNT-464/logo.png b/blockchains/binance/assets/BZNT-464/logo.png new file mode 100644 index 00000000..04ce6234 Binary files /dev/null and b/blockchains/binance/assets/BZNT-464/logo.png differ diff --git a/blockchains/binance/assets/CAKE-435/info.json b/blockchains/binance/assets/CAKE-435/info.json new file mode 100644 index 00000000..d9478c8f --- /dev/null +++ b/blockchains/binance/assets/CAKE-435/info.json @@ -0,0 +1,12 @@ +{ + "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://explorer.binance.org/asset/CAKE-435", + "research": "https://research.binance.com/en/projects/pancakeswap", + "type": "BEP2", + "symbol": "CAKE", + "decimals": 8, + "status": "active", + "id": "CAKE-435" +} \ No newline at end of file diff --git a/blockchains/binance/assets/CAKE-435/logo.png b/blockchains/binance/assets/CAKE-435/logo.png new file mode 100644 index 00000000..0c04cbb0 Binary files /dev/null and b/blockchains/binance/assets/CAKE-435/logo.png differ diff --git a/blockchains/binance/assets/CAN-677/info.json b/blockchains/binance/assets/CAN-677/info.json new file mode 100644 index 00000000..fc6504e7 --- /dev/null +++ b/blockchains/binance/assets/CAN-677/info.json @@ -0,0 +1,11 @@ +{ + "name": "CanYaCoin", + "symbol": "CAN", + "type": "BEP2", + "decimals": 8, + "description": "CanYa is a peer to peer market of skilled services - where users are instantly connected to service providers. Unlike most ICO's we already have a working product, high user growth and an experienced team.", + "website": "https://canya.io/", + "explorer": "https://explorer.binance.org/asset/CAN-677", + "status": "active", + "id": "CAN-677" +} \ No newline at end of file diff --git a/blockchains/binance/assets/CAN-677/logo.png b/blockchains/binance/assets/CAN-677/logo.png new file mode 100644 index 00000000..66e4e427 Binary files /dev/null and b/blockchains/binance/assets/CAN-677/logo.png differ diff --git a/blockchains/binance/assets/CAS-167/info.json b/blockchains/binance/assets/CAS-167/info.json new file mode 100644 index 00000000..882e67b6 --- /dev/null +++ b/blockchains/binance/assets/CAS-167/info.json @@ -0,0 +1,11 @@ +{ + "name": "CASHAA", + "symbol": "CAS", + "type": "BEP2", + "decimals": 8, + "website": "https://cashaa.com", + "description": "Cashaa is a global banking solution for the crypto industry. It’s the world’s first banking platform that enables the seamless transaction of both fiat and crypto from the one account dashboard.", + "explorer": "https://explorer.binance.org/asset/CAS-167", + "status": "active", + "id": "CAS-167" +} \ No newline at end of file diff --git a/blockchains/binance/assets/CAS-167/logo.png b/blockchains/binance/assets/CAS-167/logo.png new file mode 100644 index 00000000..4e572284 Binary files /dev/null and b/blockchains/binance/assets/CAS-167/logo.png differ diff --git a/blockchains/binance/assets/CBIX-3C9/info.json b/blockchains/binance/assets/CBIX-3C9/info.json new file mode 100644 index 00000000..0a41b1d2 --- /dev/null +++ b/blockchains/binance/assets/CBIX-3C9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cubiex", + "symbol": "CBIX", + "type": "BEP2", + "decimals": 8, + "description": "European-based next-generation tokenized streaming network for eSports & gaming enthusiasts", + "website": "https://www.cubiex.com/", + "explorer": "https://explorer.binance.org/asset/CBIX-3C9", + "status": "active", + "id": "CBIX-3C9" +} \ No newline at end of file diff --git a/blockchains/binance/assets/CBIX-3C9/logo.png b/blockchains/binance/assets/CBIX-3C9/logo.png new file mode 100644 index 00000000..5cdb23be Binary files /dev/null and b/blockchains/binance/assets/CBIX-3C9/logo.png differ diff --git a/blockchains/binance/assets/CBM-4B2/info.json b/blockchains/binance/assets/CBM-4B2/info.json new file mode 100644 index 00000000..1be923e8 --- /dev/null +++ b/blockchains/binance/assets/CBM-4B2/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoBonusMiles", + "symbol": "CBM", + "type": "BEP2", + "decimals": 8, + "description": "CryptoBonusMiles helps to save on travelling even more, by adding CBM reward points to standard airline loyalty programs. CryptoBonusMiles expands Aeron solution to the mass market for millions of people who have ever flown, bringing convenience to the air travelers.", + "website": "https://cryptobonusmiles.com/", + "explorer": "https://explorer.binance.org/asset/CBM-4B2", + "status": "active", + "id": "CBM-4B2" +} \ No newline at end of file diff --git a/blockchains/binance/assets/CBM-4B2/logo.png b/blockchains/binance/assets/CBM-4B2/logo.png new file mode 100644 index 00000000..cdc7ca7e Binary files /dev/null and b/blockchains/binance/assets/CBM-4B2/logo.png differ diff --git a/blockchains/binance/assets/CHZ-ECD/info.json b/blockchains/binance/assets/CHZ-ECD/info.json new file mode 100644 index 00000000..ec04b49c --- /dev/null +++ b/blockchains/binance/assets/CHZ-ECD/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.binance.org/asset/CHZ-ECD", + "type": "BEP2", + "symbol": "CHZ", + "decimals": 8, + "status": "active", + "id": "CHZ-ECD", + "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/binance/assets/CHZ-ECD/logo.png b/blockchains/binance/assets/CHZ-ECD/logo.png new file mode 100644 index 00000000..4adeaf43 Binary files /dev/null and b/blockchains/binance/assets/CHZ-ECD/logo.png differ diff --git a/blockchains/binance/assets/CNNS-E16/info.json b/blockchains/binance/assets/CNNS-E16/info.json new file mode 100644 index 00000000..9cac5f0b --- /dev/null +++ b/blockchains/binance/assets/CNNS-E16/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crypto Neo-value Neural System", + "symbol": "CNNS", + "type": "BEP2", + "decimals": 8, + "description": "A vibrant global ecosystem for information and value exchange to gain maximum benefit for all the key participants in the blockchain industry.", + "website": "https://cnns.io/", + "explorer": "https://explorer.binance.org/asset/CNNS-E16", + "status": "active", + "id": "CNNS-E16" +} \ No newline at end of file diff --git a/blockchains/binance/assets/CNNS-E16/logo.png b/blockchains/binance/assets/CNNS-E16/logo.png new file mode 100644 index 00000000..bf2f282b Binary files /dev/null and b/blockchains/binance/assets/CNNS-E16/logo.png differ diff --git a/blockchains/binance/assets/COCOS-CED/info.json b/blockchains/binance/assets/COCOS-CED/info.json new file mode 100644 index 00000000..c745fb48 --- /dev/null +++ b/blockchains/binance/assets/COCOS-CED/info.json @@ -0,0 +1,11 @@ +{ + "name": "CocosTokenV2", + "symbol": "COCOS", + "type": "BEP2", + "decimals": 8, + "description": "https://research.binance.com/en/projects/cocos-bcx", + "website": "http://www.cocosbcx.io/en/", + "explorer": "https://explorer.binance.org/asset/COCOS-CED", + "status": "active", + "id": "COCOS-CED" +} \ No newline at end of file diff --git a/blockchains/binance/assets/COCOS-CED/logo.png b/blockchains/binance/assets/COCOS-CED/logo.png new file mode 100644 index 00000000..3575393d Binary files /dev/null and b/blockchains/binance/assets/COCOS-CED/logo.png differ diff --git a/blockchains/binance/assets/COMP-DEE/info.json b/blockchains/binance/assets/COMP-DEE/info.json new file mode 100644 index 00000000..5203ff38 --- /dev/null +++ b/blockchains/binance/assets/COMP-DEE/info.json @@ -0,0 +1,12 @@ +{ + "name": "Compound", + "website": "https://compound.finance", + "description": "Compound is the governance token for the Compound protocol.", + "explorer": "https://explorer.binance.org/asset/COMP-DEE", + "research": "https://research.binance.com/en/projects/compound", + "type": "BEP2", + "symbol": "COMP", + "decimals": 8, + "status": "active", + "id": "COMP-DEE" +} \ No newline at end of file diff --git a/blockchains/binance/assets/COMP-DEE/logo.png b/blockchains/binance/assets/COMP-DEE/logo.png new file mode 100644 index 00000000..5011b1a3 Binary files /dev/null and b/blockchains/binance/assets/COMP-DEE/logo.png differ diff --git a/blockchains/binance/assets/COS-2E4/info.json b/blockchains/binance/assets/COS-2E4/info.json new file mode 100644 index 00000000..afb0a1c8 --- /dev/null +++ b/blockchains/binance/assets/COS-2E4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Contentos", + "symbol": "COS", + "type": "BEP2", + "decimals": 8, + "description": "The Decentralized Global Content Ecosystem", + "website": "https://www.contentos.io/", + "explorer": "https://explorer.binance.org/asset/COS-2E4", + "status": "active", + "id": "COS-2E4" +} \ No newline at end of file diff --git a/blockchains/binance/assets/COS-2E4/logo.png b/blockchains/binance/assets/COS-2E4/logo.png new file mode 100644 index 00000000..7739db47 Binary files /dev/null and b/blockchains/binance/assets/COS-2E4/logo.png differ diff --git a/blockchains/binance/assets/COTI-CBB/info.json b/blockchains/binance/assets/COTI-CBB/info.json new file mode 100644 index 00000000..29813f15 --- /dev/null +++ b/blockchains/binance/assets/COTI-CBB/info.json @@ -0,0 +1,11 @@ +{ + "name": "COTI", + "website": "https://coti.io", + "description": "COTI describes itself as a 'fully encompassing finance on the blockchain” ecosystem that is designed specifically to meet the challenges of traditional finance.", + "explorer": "https://explorer.binance.org/asset/COTI-CBB", + "type": "BEP2", + "symbol": "COTI", + "decimals": 8, + "status": "active", + "id": "COTI-CBB" +} \ No newline at end of file diff --git a/blockchains/binance/assets/COTI-CBB/logo.png b/blockchains/binance/assets/COTI-CBB/logo.png new file mode 100644 index 00000000..c62f7751 Binary files /dev/null and b/blockchains/binance/assets/COTI-CBB/logo.png differ diff --git a/blockchains/binance/assets/COVA-218/info.json b/blockchains/binance/assets/COVA-218/info.json new file mode 100644 index 00000000..d7891a49 --- /dev/null +++ b/blockchains/binance/assets/COVA-218/info.json @@ -0,0 +1,11 @@ +{ + "name": "Covalent Token", + "symbol": "COVA", + "type": "BEP2", + "decimals": 8, + "description": "COVA Unity is a blockchain protocol that allows the monetization of enterprise data without compromising user data privacy.", + "website": "http://covalent.ai/", + "explorer": "https://explorer.binance.org/asset/COVA-218", + "status": "active", + "id": "COVA-218" +} \ No newline at end of file diff --git a/blockchains/binance/assets/COVA-218/logo.png b/blockchains/binance/assets/COVA-218/logo.png new file mode 100644 index 00000000..9463a5c6 Binary files /dev/null and b/blockchains/binance/assets/COVA-218/logo.png differ diff --git a/blockchains/binance/assets/CRPT-8C9/info.json b/blockchains/binance/assets/CRPT-8C9/info.json new file mode 100644 index 00000000..edc4e3f6 --- /dev/null +++ b/blockchains/binance/assets/CRPT-8C9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crypterium Token", + "symbol": "CRPT", + "type": "BEP2", + "decimals": 8, + "description": "Utility token intended for usage in any B2B/B2C products with different mechanics and is mainly used as a fee payment solution in Crypterium ecosystem.", + "website": "https://crypterium.com/", + "explorer": "https://explorer.binance.org/asset/CRPT-8C9", + "status": "active", + "id": "CRPT-8C9" +} \ No newline at end of file diff --git a/blockchains/binance/assets/CRPT-8C9/logo.png b/blockchains/binance/assets/CRPT-8C9/logo.png new file mode 100644 index 00000000..00d368a1 Binary files /dev/null and b/blockchains/binance/assets/CRPT-8C9/logo.png differ diff --git a/blockchains/binance/assets/CSM-734/info.json b/blockchains/binance/assets/CSM-734/info.json new file mode 100644 index 00000000..e312cc50 --- /dev/null +++ b/blockchains/binance/assets/CSM-734/info.json @@ -0,0 +1,11 @@ +{ + "name": "“Consentium”", + "symbol": "CSM", + "type": "BEP2", + "decimals": 8, + "description": "Best-in-class chat application with multi-digital-currency C2C (consumer to consumer) transfers as well as proprietary chat community monetisation model (CCM)", + "website": "https://www.consentium.net/", + "explorer": "https://explorer.binance.org/asset/CSM-734", + "status": "active", + "id": "CSM-734" +} \ No newline at end of file diff --git a/blockchains/binance/assets/CSM-734/logo.png b/blockchains/binance/assets/CSM-734/logo.png new file mode 100644 index 00000000..3142944e Binary files /dev/null and b/blockchains/binance/assets/CSM-734/logo.png differ diff --git a/blockchains/binance/assets/CTK-EB8/info.json b/blockchains/binance/assets/CTK-EB8/info.json new file mode 100644 index 00000000..2adde99b --- /dev/null +++ b/blockchains/binance/assets/CTK-EB8/info.json @@ -0,0 +1,11 @@ +{ + "name": "CertiK Token", + "type": "BEP2", + "symbol": "CTK-EB8", + "decimals": 8, + "website": "", + "description": "-", + "explorer": "https://explorer.binance.org/asset/CTK-EB8", + "status": "active", + "id": "CTK-EB8" +} \ No newline at end of file diff --git a/blockchains/binance/assets/CTK-EB8/logo.png b/blockchains/binance/assets/CTK-EB8/logo.png new file mode 100644 index 00000000..90ff21db Binary files /dev/null and b/blockchains/binance/assets/CTK-EB8/logo.png differ diff --git a/blockchains/binance/assets/DAI-D75/info.json b/blockchains/binance/assets/DAI-D75/info.json new file mode 100644 index 00000000..35735052 --- /dev/null +++ b/blockchains/binance/assets/DAI-D75/info.json @@ -0,0 +1,11 @@ +{ + "name": "DaiBEP2", + "symbol": "DAI", + "type": "BEP2", + "decimals": 8, + "description": "DAI BEP2 is a token on Binance Chain issued by Binance, where the price is pegged to DAI at a rate of 1 DAI BEP2 = 1 DAI", + "website": "https://binance.org", + "explorer": "https://explorer.binance.org/asset/DAI-D75", + "status": "active", + "id": "DAI-D75" +} \ No newline at end of file diff --git a/blockchains/binance/assets/DAI-D75/logo.png b/blockchains/binance/assets/DAI-D75/logo.png new file mode 100644 index 00000000..2d41a147 Binary files /dev/null and b/blockchains/binance/assets/DAI-D75/logo.png differ diff --git a/blockchains/binance/assets/DARC-087/info.json b/blockchains/binance/assets/DARC-087/info.json new file mode 100644 index 00000000..e207ae93 --- /dev/null +++ b/blockchains/binance/assets/DARC-087/info.json @@ -0,0 +1,21 @@ +{ + "name": "DARC Token", + "symbol": "DARC", + "type": "BEP2", + "decimals": 8, + "description": "DARC is the main token for Konstellation network, a blockchain ecosystem for the global financial services industry.", + "website": "https://konstellation.tech/", + "explorer": "https://explorer.binance.org/asset/DARC-087", + "status": "active", + "id": "DARC-087", + "links": [ + { + "name": "x", + "url": "https://x.com/KNSTL_TECH" + }, + { + "name": "telegram", + "url": "https://t.me/Konstellation" + } + ] +} \ No newline at end of file diff --git a/blockchains/binance/assets/DARC-087/logo.png b/blockchains/binance/assets/DARC-087/logo.png new file mode 100644 index 00000000..9c293516 Binary files /dev/null and b/blockchains/binance/assets/DARC-087/logo.png differ diff --git a/blockchains/binance/assets/DARC-24B/info.json b/blockchains/binance/assets/DARC-24B/info.json new file mode 100644 index 00000000..ba2d6fe6 --- /dev/null +++ b/blockchains/binance/assets/DARC-24B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Konstellation Network", + "symbol": "DARC", + "type": "BEP2", + "decimals": 8, + "description": "a fintech company focused on development and implementation of blockchain technology for the global financial services industry.", + "website": "https://konstellation.tech/", + "explorer": "https://explorer.binance.org/asset/DARC-24B", + "status": "abandoned", + "id": "DARC-24B" +} \ No newline at end of file diff --git a/blockchains/binance/assets/DEEP-9D3/info.json b/blockchains/binance/assets/DEEP-9D3/info.json new file mode 100644 index 00000000..8f4ba739 --- /dev/null +++ b/blockchains/binance/assets/DEEP-9D3/info.json @@ -0,0 +1,11 @@ +{ + "name": "DeepCloud", + "symbol": "DEEP", + "type": "BEP2", + "decimals": 8, + "description": "Decentralized cloud for decentralized applications.", + "website": "https://www.deepcloudai.com/", + "explorer": "https://explorer.binance.org/asset/DEEP-9D3", + "status": "abandoned", + "id": "DEEP-9D3" +} \ No newline at end of file diff --git a/blockchains/binance/assets/DEEP-9D3/logo.png b/blockchains/binance/assets/DEEP-9D3/logo.png new file mode 100644 index 00000000..9a7f9716 Binary files /dev/null and b/blockchains/binance/assets/DEEP-9D3/logo.png differ diff --git a/blockchains/binance/assets/DEFI-FA5/info.json b/blockchains/binance/assets/DEFI-FA5/info.json new file mode 100644 index 00000000..398c35f0 --- /dev/null +++ b/blockchains/binance/assets/DEFI-FA5/info.json @@ -0,0 +1,11 @@ +{ + "name": "DeFi Token", + "symbol": "DEFI", + "type": "BEP2", + "decimals": 8, + "description": "Defi aims to be the world’s leading enterprise-grade blockchain-based multi-party credit data collaboration platform that can accommodate credit information for the next billion consumers.", + "website": "https://www.defilab.com/", + "explorer": "https://explorer.binance.org/asset/DEFI-FA5", + "status": "active", + "id": "DEFI-FA5" +} \ No newline at end of file diff --git a/blockchains/binance/assets/DEFI-FA5/logo.png b/blockchains/binance/assets/DEFI-FA5/logo.png new file mode 100644 index 00000000..692a2677 Binary files /dev/null and b/blockchains/binance/assets/DEFI-FA5/logo.png differ diff --git a/blockchains/binance/assets/DFY-EA0/info.json b/blockchains/binance/assets/DFY-EA0/info.json new file mode 100644 index 00000000..5a811a02 --- /dev/null +++ b/blockchains/binance/assets/DFY-EA0/info.json @@ -0,0 +1,38 @@ +{ + "name": "DeFi For You.", + "website": "https://defi.com.vn", + "description": "DEFI For You. Is a listing where by users can make pawn loans online to a worldwide market. We are basically letting you run your own online finance company with rates of your choosing. If you ever dreamed of owning your own bank well now you can. DEFi For You aims to clean up the Pawn industry using DFY smart contracts. At last Cryptocurrency has come if age. This is a world first and the market is limitless.", + "explorer": "https://explorer.binance.org/asset/DFY-EA0", + "research": "", + "type": "BEP2", + "symbol": "DFY", + "decimals": 8, + "status": "active", + "id": "DFY-EA0", + "links": [ + { + "name": "github", + "url": "https://github.com/defi-vn/DeFi-VN-Smart-Contract" + }, + { + "name": "x", + "url": "https://x.com/DeFi For You." + }, + { + "name": "telegram", + "url": "https://t.me/DefiForYouDFY" + }, + { + "name": "facebook", + "url": "https://facebook.com/DeFiForYouDFY" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/DeFiForYou" + }, + { + "name": "whitepaper", + "url": "https://defi.com.vn/document/DFY-White-Paper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/binance/assets/DFY-EA0/logo.png b/blockchains/binance/assets/DFY-EA0/logo.png new file mode 100644 index 00000000..68868948 Binary files /dev/null and b/blockchains/binance/assets/DFY-EA0/logo.png differ diff --git a/blockchains/binance/assets/DOGE-B67/info.json b/blockchains/binance/assets/DOGE-B67/info.json new file mode 100644 index 00000000..423f8016 --- /dev/null +++ b/blockchains/binance/assets/DOGE-B67/info.json @@ -0,0 +1,12 @@ +{ + "name": "Dogecoin", + "website": "https://dogecoin.com/", + "description": "An Open Source Peer-To-Peer Digital Currency Favored By All Shiba Inus Worldwide.", + "explorer": "https://explorer.binance.org/asset/DOGE-B67", + "research": "https://research.binance.com/en/projects/dogecoin", + "type": "BEP2", + "symbol": "DOGE", + "decimals": 8, + "status": "active", + "id": "DOGE-B67" +} \ No newline at end of file diff --git a/blockchains/binance/assets/DOGE-B67/logo.png b/blockchains/binance/assets/DOGE-B67/logo.png new file mode 100644 index 00000000..8db4b84a Binary files /dev/null and b/blockchains/binance/assets/DOGE-B67/logo.png differ diff --git a/blockchains/binance/assets/DOS-120/info.json b/blockchains/binance/assets/DOS-120/info.json new file mode 100644 index 00000000..ba37b52e --- /dev/null +++ b/blockchains/binance/assets/DOS-120/info.json @@ -0,0 +1,11 @@ +{ + "name": "DOS Network Token", + "symbol": "DOS", + "type": "BEP2", + "decimals": 8, + "description": "A Decentralized Oracle Service supporting multiple heterogeneous blockchains.", + "website": "https://dos.network/", + "explorer": "https://explorer.binance.org/asset/DOS-120", + "status": "active", + "id": "DOS-120" +} \ No newline at end of file diff --git a/blockchains/binance/assets/DOS-120/logo.png b/blockchains/binance/assets/DOS-120/logo.png new file mode 100644 index 00000000..d871307e Binary files /dev/null and b/blockchains/binance/assets/DOS-120/logo.png differ diff --git a/blockchains/binance/assets/DOT-64C/info.json b/blockchains/binance/assets/DOT-64C/info.json new file mode 100644 index 00000000..84024ef8 --- /dev/null +++ b/blockchains/binance/assets/DOT-64C/info.json @@ -0,0 +1,11 @@ +{ + "name": "PolkadotBEP2", + "symbol": "DOT", + "type": "BEP2", + "decimals": 8, + "description": "Polkadot BEP2 is a token on Binance Chain issued by Binance, where the price is pegged to DOT at a rate of 1 DOT BEP2 = 1 DOT", + "website": "https://binance.org", + "explorer": "https://explorer.binance.org/asset/DOT-64C", + "status": "active", + "id": "DOT-64C" +} \ No newline at end of file diff --git a/blockchains/binance/assets/DOT-64C/logo.png b/blockchains/binance/assets/DOT-64C/logo.png new file mode 100644 index 00000000..5e36153e Binary files /dev/null and b/blockchains/binance/assets/DOT-64C/logo.png differ diff --git a/blockchains/binance/assets/DREP-7D2/info.json b/blockchains/binance/assets/DREP-7D2/info.json new file mode 100644 index 00000000..7d781443 --- /dev/null +++ b/blockchains/binance/assets/DREP-7D2/info.json @@ -0,0 +1,11 @@ +{ + "name": "DREP", + "symbol": "DREP", + "type": "BEP2", + "decimals": 8, + "description": "Decentralized Reputation System (DREP) enables Internet platforms to quantify, monetize, and share reputation value.", + "website": "https://www.drep.org/", + "explorer": "https://explorer.binance.org/asset/DREP-7D2", + "status": "active", + "id": "DREP-7D2" +} \ No newline at end of file diff --git a/blockchains/binance/assets/DREP-7D2/logo.png b/blockchains/binance/assets/DREP-7D2/logo.png new file mode 100644 index 00000000..8928b0f8 Binary files /dev/null and b/blockchains/binance/assets/DREP-7D2/logo.png differ diff --git a/blockchains/binance/assets/DUSK-45E/info.json b/blockchains/binance/assets/DUSK-45E/info.json new file mode 100644 index 00000000..427cdabc --- /dev/null +++ b/blockchains/binance/assets/DUSK-45E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dusk Network", + "symbol": "DUSK", + "type": "BEP2", + "decimals": 8, + "description": "An open source and secure blockchain (DLT) infrastructure that businesses use to tokenize financial instruments and automate costly processes.", + "website": "https://dusk.network/", + "explorer": "https://explorer.binance.org/asset/DUSK-45E", + "status": "active", + "id": "DUSK-45E" +} \ No newline at end of file diff --git a/blockchains/binance/assets/DUSK-45E/logo.png b/blockchains/binance/assets/DUSK-45E/logo.png new file mode 100644 index 00000000..0613538c Binary files /dev/null and b/blockchains/binance/assets/DUSK-45E/logo.png differ diff --git a/blockchains/binance/assets/EBST-783/info.json b/blockchains/binance/assets/EBST-783/info.json new file mode 100644 index 00000000..2aedfc88 --- /dev/null +++ b/blockchains/binance/assets/EBST-783/info.json @@ -0,0 +1,11 @@ +{ + "name": "eBoost", + "symbol": "EBST", + "type": "BEP2", + "decimals": 8, + "description": "Cryptocurrency that can be integrated into mobile games for in-game purchases, used for gamers to trade in-game items, and sponsor eSports tournaments.", + "website": "http://www.eboost.fun/", + "explorer": "https://explorer.binance.org/asset/EBST-783", + "status": "active", + "id": "EBST-783" +} \ No newline at end of file diff --git a/blockchains/binance/assets/EBST-783/logo.png b/blockchains/binance/assets/EBST-783/logo.png new file mode 100644 index 00000000..dd5cdc29 Binary files /dev/null and b/blockchains/binance/assets/EBST-783/logo.png differ diff --git a/blockchains/binance/assets/ECO-083/info.json b/blockchains/binance/assets/ECO-083/info.json new file mode 100644 index 00000000..dd4aa9ac --- /dev/null +++ b/blockchains/binance/assets/ECO-083/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ormeus Ecosystem", + "symbol": "ECO", + "type": "BEP2", + "decimals": 8, + "description": "Ormeus Ecosystem aims to become the world's first business-backed blockchain smart economy.", + "website": "http://eco-system.io/", + "explorer": "https://explorer.binance.org/asset/ECO-083", + "status": "active", + "id": "ECO-083" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ECO-083/logo.png b/blockchains/binance/assets/ECO-083/logo.png new file mode 100644 index 00000000..26266aed Binary files /dev/null and b/blockchains/binance/assets/ECO-083/logo.png differ diff --git a/blockchains/binance/assets/EET-45C/info.json b/blockchains/binance/assets/EET-45C/info.json new file mode 100644 index 00000000..f038e3fb --- /dev/null +++ b/blockchains/binance/assets/EET-45C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Energy Eco Token", + "symbol": "EET", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "https://www.energyecochain.com/", + "explorer": "https://explorer.binance.org/asset/EET-45C", + "status": "abandoned", + "id": "EET-45C" +} \ No newline at end of file diff --git a/blockchains/binance/assets/EET-45C/logo.png b/blockchains/binance/assets/EET-45C/logo.png new file mode 100644 index 00000000..1162d354 Binary files /dev/null and b/blockchains/binance/assets/EET-45C/logo.png differ diff --git a/blockchains/binance/assets/ELF-D72/info.json b/blockchains/binance/assets/ELF-D72/info.json new file mode 100644 index 00000000..53c7b86e --- /dev/null +++ b/blockchains/binance/assets/ELF-D72/info.json @@ -0,0 +1,12 @@ +{ + "name": "aelf", + "website": "http://aelf.io", + "description": "Aelf (ELF) is an enterprise-focused blockchain platform powered by cloud computing. Leveraging cloud nodes and parallel processing, Aelf is reportedly able to achieve secure transactions at scale for commercial use cases.", + "explorer": "https://explorer.binance.org/asset/ELF-D72", + "research": "https://research.binance.com/en/projects/aelf", + "type": "BEP2", + "symbol": "ELF", + "decimals": 8, + "status": "active", + "id": "ELF-D72" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ELF-D72/logo.png b/blockchains/binance/assets/ELF-D72/logo.png new file mode 100644 index 00000000..0aacaaa8 Binary files /dev/null and b/blockchains/binance/assets/ELF-D72/logo.png differ diff --git a/blockchains/binance/assets/ENTRP-C8D/info.json b/blockchains/binance/assets/ENTRP-C8D/info.json new file mode 100644 index 00000000..574d7631 --- /dev/null +++ b/blockchains/binance/assets/ENTRP-C8D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hut34 Entropy", + "symbol": "ENTRP", + "type": "BEP2", + "decimals": 8, + "description": "Building the tools for the new data economy.", + "website": "https://www.hut34.io/", + "explorer": "https://explorer.binance.org/asset/ENTRP-C8D", + "status": "active", + "id": "ENTRP-C8D" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ENTRP-C8D/logo.png b/blockchains/binance/assets/ENTRP-C8D/logo.png new file mode 100644 index 00000000..f42e1e94 Binary files /dev/null and b/blockchains/binance/assets/ENTRP-C8D/logo.png differ diff --git a/blockchains/binance/assets/EOS-CDD/info.json b/blockchains/binance/assets/EOS-CDD/info.json new file mode 100644 index 00000000..567d8a3c --- /dev/null +++ b/blockchains/binance/assets/EOS-CDD/info.json @@ -0,0 +1,11 @@ +{ + "name": "EOS BEP2", + "symbol": "EOS", + "type": "BEP2", + "decimals": 8, + "description": "EOS BEP2 is a token on Binance Chain issued by Binance, where the price is pegged to EOS at a rate of 1 EOS BEP2 = 1 EOS", + "website": "https://binance.org", + "explorer": "https://explorer.binance.org/asset/EOS-CDD", + "status": "active", + "id": "EOS-CDD" +} \ No newline at end of file diff --git a/blockchains/binance/assets/EOS-CDD/logo.png b/blockchains/binance/assets/EOS-CDD/logo.png new file mode 100644 index 00000000..aad94e52 Binary files /dev/null and b/blockchains/binance/assets/EOS-CDD/logo.png differ diff --git a/blockchains/binance/assets/EOSBEAR-721/info.json b/blockchains/binance/assets/EOSBEAR-721/info.json new file mode 100644 index 00000000..d7143449 --- /dev/null +++ b/blockchains/binance/assets/EOSBEAR-721/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Short EOS Token", + "symbol": "EOSBEAR", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/EOSBEAR-721", + "status": "active", + "id": "EOSBEAR-721" +} \ No newline at end of file diff --git a/blockchains/binance/assets/EOSBEAR-721/logo.png b/blockchains/binance/assets/EOSBEAR-721/logo.png new file mode 100644 index 00000000..9b762990 Binary files /dev/null and b/blockchains/binance/assets/EOSBEAR-721/logo.png differ diff --git a/blockchains/binance/assets/EOSBULL-F0D/info.json b/blockchains/binance/assets/EOSBULL-F0D/info.json new file mode 100644 index 00000000..9ef13223 --- /dev/null +++ b/blockchains/binance/assets/EOSBULL-F0D/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Long EOS Token", + "symbol": "EOSBULL", + "type": "BEP2", + "decimals": 8, + "description": "Token which seeks a return that corresponds to 3 times the daily return of EOS.", + "website": "https://ftx.com/", + "explorer": "https://explorer.binance.org/asset/EOSBULL-F0D", + "status": "active", + "id": "EOSBULL-F0D" +} \ No newline at end of file diff --git a/blockchains/binance/assets/EOSBULL-F0D/logo.png b/blockchains/binance/assets/EOSBULL-F0D/logo.png new file mode 100644 index 00000000..0fe34de7 Binary files /dev/null and b/blockchains/binance/assets/EOSBULL-F0D/logo.png differ diff --git a/blockchains/binance/assets/EQL-586/info.json b/blockchains/binance/assets/EQL-586/info.json new file mode 100644 index 00000000..227f4515 --- /dev/null +++ b/blockchains/binance/assets/EQL-586/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQUAL", + "symbol": "EQL", + "type": "BEP2", + "decimals": 8, + "description": "A multi-chain web3 wallet that aims to reduce the complexities involved with interacting with the blockchain.", + "website": "https://equal.tech/", + "explorer": "https://explorer.binance.org/asset/EQL-586", + "status": "active", + "id": "EQL-586" +} \ No newline at end of file diff --git a/blockchains/binance/assets/EQL-586/logo.png b/blockchains/binance/assets/EQL-586/logo.png new file mode 100644 index 00000000..0e65515c Binary files /dev/null and b/blockchains/binance/assets/EQL-586/logo.png differ diff --git a/blockchains/binance/assets/ERD-D06/info.json b/blockchains/binance/assets/ERD-D06/info.json new file mode 100644 index 00000000..7e4a7a71 --- /dev/null +++ b/blockchains/binance/assets/ERD-D06/info.json @@ -0,0 +1,11 @@ +{ + "name": "Elrond", + "symbol": "ERD", + "type": "BEP2", + "decimals": 8, + "description": "A highly scalable, fast and secure blockchain platform for distributed apps, enterprise use cases and the new internet economy.", + "website": "https://elrond.com/", + "explorer": "https://explorer.binance.org/asset/ERD-D06", + "status": "active", + "id": "ERD-D06" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ERD-D06/logo.png b/blockchains/binance/assets/ERD-D06/logo.png new file mode 100644 index 00000000..4fb3e435 Binary files /dev/null and b/blockchains/binance/assets/ERD-D06/logo.png differ diff --git a/blockchains/binance/assets/ETC-758/info.json b/blockchains/binance/assets/ETC-758/info.json new file mode 100644 index 00000000..f7e25b36 --- /dev/null +++ b/blockchains/binance/assets/ETC-758/info.json @@ -0,0 +1,12 @@ +{ + "name": "Ethereum Classic", + "website": "https://ethereumclassic.org", + "description": "Ethereum Classic (ETC) is a hard fork of Ethereum (ETH) that launched in July 2016.", + "explorer": "https://explorer.binance.org/asset/ETC-758", + "research": "https://research.binance.com/en/projects/ethereum-classic", + "type": "BEP2", + "symbol": "ETC", + "decimals": 8, + "status": "active", + "id": "ETC-758" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ETC-758/logo.png b/blockchains/binance/assets/ETC-758/logo.png new file mode 100644 index 00000000..eb921c2b Binary files /dev/null and b/blockchains/binance/assets/ETC-758/logo.png differ diff --git a/blockchains/binance/assets/ETH-1C9/info.json b/blockchains/binance/assets/ETH-1C9/info.json new file mode 100644 index 00000000..9c11818f --- /dev/null +++ b/blockchains/binance/assets/ETH-1C9/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETH BEP2", + "symbol": "ETH", + "type": "BEP2", + "decimals": 8, + "description": "Binance-Peg Ethereum (ETH BEP2) is a token issued by Binance on Binance Chain; its price is pegged to Ethereum (ETH) at a ratio of 1:1.", + "website": "https://binance.org", + "explorer": "https://explorer.binance.org/asset/ETH-1C9", + "status": "active", + "id": "ETH-1C9" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ETH-1C9/logo.png b/blockchains/binance/assets/ETH-1C9/logo.png new file mode 100644 index 00000000..bf957d38 Binary files /dev/null and b/blockchains/binance/assets/ETH-1C9/logo.png differ diff --git a/blockchains/binance/assets/ETHBEAR-B2B/info.json b/blockchains/binance/assets/ETHBEAR-B2B/info.json new file mode 100644 index 00000000..d4733369 --- /dev/null +++ b/blockchains/binance/assets/ETHBEAR-B2B/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Short Ethereum Token", + "symbol": "ETHBEAR", + "type": "BEP2", + "decimals": 8, + "description": "3X Short Ethereum Token (ETHBEAR) is a token which seeks a return that corresponds to -3 times the daily return of Ethereum.", + "website": "https://ftx.com/tokens/ETHBEAR", + "explorer": "https://explorer.binance.org/asset/ETHBEAR-B2B", + "status": "active", + "id": "ETHBEAR-B2B" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ETHBEAR-B2B/logo.png b/blockchains/binance/assets/ETHBEAR-B2B/logo.png new file mode 100644 index 00000000..4f4c1f03 Binary files /dev/null and b/blockchains/binance/assets/ETHBEAR-B2B/logo.png differ diff --git a/blockchains/binance/assets/ETHBULL-D33/info.json b/blockchains/binance/assets/ETHBULL-D33/info.json new file mode 100644 index 00000000..95fefc00 --- /dev/null +++ b/blockchains/binance/assets/ETHBULL-D33/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Long Ethereum Token", + "symbol": "ETHBULL", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/ETHBULL-D33", + "status": "active", + "id": "ETHBULL-D33" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ETHBULL-D33/logo.png b/blockchains/binance/assets/ETHBULL-D33/logo.png new file mode 100644 index 00000000..3a74a930 Binary files /dev/null and b/blockchains/binance/assets/ETHBULL-D33/logo.png differ diff --git a/blockchains/binance/assets/EVT-49B/info.json b/blockchains/binance/assets/EVT-49B/info.json new file mode 100644 index 00000000..460889b1 --- /dev/null +++ b/blockchains/binance/assets/EVT-49B/info.json @@ -0,0 +1,11 @@ +{ + "name": "everiToken", + "symbol": "EVT", + "type": "BEP2", + "decimals": 8, + "description": "Blockchain for real business,Lightning-fast crypto payment and Secure and simple contracts.", + "website": "https://www.everitoken.io/", + "explorer": "https://explorer.binance.org/asset/EVT-49B", + "status": "active", + "id": "EVT-49B" +} \ No newline at end of file diff --git a/blockchains/binance/assets/EVT-49B/logo.png b/blockchains/binance/assets/EVT-49B/logo.png new file mode 100644 index 00000000..8c72f2cf Binary files /dev/null and b/blockchains/binance/assets/EVT-49B/logo.png differ diff --git a/blockchains/binance/assets/FIL-E2C/info.json b/blockchains/binance/assets/FIL-E2C/info.json new file mode 100644 index 00000000..87b5a08c --- /dev/null +++ b/blockchains/binance/assets/FIL-E2C/info.json @@ -0,0 +1,12 @@ +{ + "name": "Filecoin", + "website": "https://filecoin.io", + "description": "Filecoin provides a blockchain-based marketplace that aims to revolutionize the global storage economy.", + "explorer": "https://explorer.binance.org/asset/FIL-E2C", + "research": "https://research.binance.com/en/projects/filecoin", + "type": "BEP2", + "symbol": "FIL", + "decimals": 8, + "status": "active", + "id": "FIL-E2C" +} \ No newline at end of file diff --git a/blockchains/binance/assets/FIL-E2C/logo.png b/blockchains/binance/assets/FIL-E2C/logo.png new file mode 100644 index 00000000..a3f86803 Binary files /dev/null and b/blockchains/binance/assets/FIL-E2C/logo.png differ diff --git a/blockchains/binance/assets/FRM-DE7/info.json b/blockchains/binance/assets/FRM-DE7/info.json new file mode 100644 index 00000000..ded04e1e --- /dev/null +++ b/blockchains/binance/assets/FRM-DE7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ferrum Network Token", + "symbol": "FRM", + "type": "BEP2", + "decimals": 8, + "description": "Ferrum Network aims to empower individuals with decentalized financial technology.", + "website": "https://ferrum.network/", + "explorer": "https://explorer.binance.org/asset/FRM-DE7", + "status": "active", + "id": "FRM-DE7" +} \ No newline at end of file diff --git a/blockchains/binance/assets/FRM-DE7/logo.png b/blockchains/binance/assets/FRM-DE7/logo.png new file mode 100755 index 00000000..2053bae1 Binary files /dev/null and b/blockchains/binance/assets/FRM-DE7/logo.png differ diff --git a/blockchains/binance/assets/FSN-E14/info.json b/blockchains/binance/assets/FSN-E14/info.json new file mode 100644 index 00000000..8411d716 --- /dev/null +++ b/blockchains/binance/assets/FSN-E14/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fusion", + "symbol": "FSN", + "type": "BEP2", + "decimals": 8, + "description": "The FSN token is an essential component of all the tools available in the Fusion ecosystem.", + "website": "https://www.fusion.org/", + "explorer": "https://explorer.binance.org/asset/FSN-E14", + "status": "active", + "id": "FSN-E14" +} \ No newline at end of file diff --git a/blockchains/binance/assets/FSN-E14/logo.png b/blockchains/binance/assets/FSN-E14/logo.png new file mode 100644 index 00000000..a48ba953 Binary files /dev/null and b/blockchains/binance/assets/FSN-E14/logo.png differ diff --git a/blockchains/binance/assets/FTM-A64/info.json b/blockchains/binance/assets/FTM-A64/info.json new file mode 100644 index 00000000..061392d2 --- /dev/null +++ b/blockchains/binance/assets/FTM-A64/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fantom", + "symbol": "FTM", + "type": "BEP2", + "decimals": 8, + "description": "FANTOM is a new DAG based Smart Contract platform that intends to solve the scalability issues of existing public distributed ledger technologies.", + "website": "https://fantom.foundation/", + "explorer": "https://explorer.binance.org/asset/FTM-A64", + "status": "active", + "id": "FTM-A64" +} \ No newline at end of file diff --git a/blockchains/binance/assets/FTM-A64/logo.png b/blockchains/binance/assets/FTM-A64/logo.png new file mode 100644 index 00000000..3442784e Binary files /dev/null and b/blockchains/binance/assets/FTM-A64/logo.png differ diff --git a/blockchains/binance/assets/FTT-F11/info.json b/blockchains/binance/assets/FTT-F11/info.json new file mode 100644 index 00000000..0141f24d --- /dev/null +++ b/blockchains/binance/assets/FTT-F11/info.json @@ -0,0 +1,33 @@ +{ + "name": "FTX Token", + "type": "BEP2", + "symbol": "FTT", + "decimals": 8, + "description": "FTX’s leveraged tokens aim to provide a clean, automated way for users to get leverage. FTT is the FTX ecosystem utility token.", + "website": "https://ftx.com", + "explorer": "https://explorer.binance.org/asset/FTT-F11", + "status": "active", + "id": "FTT-F11", + "links": [ + { + "name": "x", + "url": "https://x.com/FTX_Official" + }, + { + "name": "telegram", + "url": "https://t.me/FTX_Official" + }, + { + "name": "whitepaper", + "url": "https://docs.google.com/document/d/1u5MOkENoWP8PGcjuoKqRkNP5Gl1LLRB9JvAHwffQ7ec/view" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ftx-token/" + }, + { + "name": "blog", + "url": "https://blog.ftx.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/binance/assets/FTT-F11/logo.png b/blockchains/binance/assets/FTT-F11/logo.png new file mode 100644 index 00000000..8476fe01 Binary files /dev/null and b/blockchains/binance/assets/FTT-F11/logo.png differ diff --git a/blockchains/binance/assets/GIV-94E/info.json b/blockchains/binance/assets/GIV-94E/info.json new file mode 100644 index 00000000..c4277486 --- /dev/null +++ b/blockchains/binance/assets/GIV-94E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Givly Coin", + "symbol": "GIV", + "type": "BEP2", + "decimals": 8, + "description": "GIV claims to be a utility token on the P2P exchange CryptoLocally. It can be used to purchase discounts and trade offer boosts on the platform.", + "website": "https://cryptolocally.com/en/giv/", + "explorer": "https://explorer.binance.org/asset/GIV-94E", + "status": "active", + "id": "GIV-94E" +} \ No newline at end of file diff --git a/blockchains/binance/assets/GIV-94E/logo.png b/blockchains/binance/assets/GIV-94E/logo.png new file mode 100644 index 00000000..b43dbd08 Binary files /dev/null and b/blockchains/binance/assets/GIV-94E/logo.png differ diff --git a/blockchains/binance/assets/GMAT-FC8/info.json b/blockchains/binance/assets/GMAT-FC8/info.json new file mode 100644 index 00000000..4ba3e672 --- /dev/null +++ b/blockchains/binance/assets/GMAT-FC8/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoWithMi", + "symbol": "GMAT", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "https://www.gowithmi.com/", + "explorer": "https://explorer.binance.org/asset/GMAT-FC8", + "status": "active", + "id": "GMAT-FC8" +} \ No newline at end of file diff --git a/blockchains/binance/assets/GMAT-FC8/logo.png b/blockchains/binance/assets/GMAT-FC8/logo.png new file mode 100644 index 00000000..5c1dc678 Binary files /dev/null and b/blockchains/binance/assets/GMAT-FC8/logo.png differ diff --git a/blockchains/binance/assets/GTEX-71B/info.json b/blockchains/binance/assets/GTEX-71B/info.json new file mode 100644 index 00000000..62307571 --- /dev/null +++ b/blockchains/binance/assets/GTEX-71B/info.json @@ -0,0 +1,11 @@ +{ + "name": "GTEX", + "symbol": "GTEX", + "type": "BEP2", + "decimals": 8, + "description": "GTEX PoA Network is blockchain designed specifically for gaming. By using Proof of Authority technology to validate transactions, GTEX PoA Network will have the fastest transaction speed and make our chain home of decentralized gaming.", + "website": "https://gtexgame.io/", + "explorer": "https://explorer.binance.org/asset/GTEX-71B", + "status": "active", + "id": "GTEX-71B" +} \ No newline at end of file diff --git a/blockchains/binance/assets/GTEX-71B/logo.png b/blockchains/binance/assets/GTEX-71B/logo.png new file mode 100644 index 00000000..ddf2a98e Binary files /dev/null and b/blockchains/binance/assets/GTEX-71B/logo.png differ diff --git a/blockchains/binance/assets/GTO-908/info.json b/blockchains/binance/assets/GTO-908/info.json new file mode 100644 index 00000000..ddae3da3 --- /dev/null +++ b/blockchains/binance/assets/GTO-908/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gifto", + "symbol": "GTO", + "type": "BEP2", + "decimals": 8, + "description": "GIFTO a decentralized virtual gifting protocol running on Ethereum. The project facilitates the creation and exchange of virtual gifts by allowing users to send and receive the GIFTO ERC-20 token on any Social Media Platform.", + "website": "https://gifto.io/", + "explorer": "https://explorer.binance.org/asset/GTO-908", + "status": "active", + "id": "GTO-908" +} \ No newline at end of file diff --git a/blockchains/binance/assets/GTO-908/logo.png b/blockchains/binance/assets/GTO-908/logo.png new file mode 100644 index 00000000..2df57838 Binary files /dev/null and b/blockchains/binance/assets/GTO-908/logo.png differ diff --git a/blockchains/binance/assets/HNST-3C9/info.json b/blockchains/binance/assets/HNST-3C9/info.json new file mode 100644 index 00000000..da0efbb7 --- /dev/null +++ b/blockchains/binance/assets/HNST-3C9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Honest", + "symbol": "HNST", + "type": "BEP2", + "decimals": 8, + "description": "Honest Mining is everyone's crypto mining partner. We offer a staking platform that makes people easily join masternode and earn masternode rewards.", + "website": "https://honestmining.com/", + "explorer": "https://explorer.binance.org/asset/HNST-3C9", + "status": "active", + "id": "HNST-3C9" +} \ No newline at end of file diff --git a/blockchains/binance/assets/HNST-3C9/logo.png b/blockchains/binance/assets/HNST-3C9/logo.png new file mode 100644 index 00000000..842cd336 Binary files /dev/null and b/blockchains/binance/assets/HNST-3C9/logo.png differ diff --git a/blockchains/binance/assets/HYN-F21/info.json b/blockchains/binance/assets/HYN-F21/info.json new file mode 100644 index 00000000..534aa53d --- /dev/null +++ b/blockchains/binance/assets/HYN-F21/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hyperion Token", + "symbol": "HYN", + "type": "BEP2", + "decimals": 8, + "description": "Hyperion is a decentralized map platform that aims to create a unified global data map and services, and make it available for everyone to use.", + "website": "https://www.hyn.space/", + "explorer": "https://explorer.binance.org/asset/HYN-F21", + "status": "active", + "id": "HYN-F21" +} \ No newline at end of file diff --git a/blockchains/binance/assets/HYN-F21/logo.png b/blockchains/binance/assets/HYN-F21/logo.png new file mode 100644 index 00000000..521f995f Binary files /dev/null and b/blockchains/binance/assets/HYN-F21/logo.png differ diff --git a/blockchains/binance/assets/IDRTB-178/info.json b/blockchains/binance/assets/IDRTB-178/info.json new file mode 100644 index 00000000..078fbf60 --- /dev/null +++ b/blockchains/binance/assets/IDRTB-178/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rupiah Token", + "symbol": "IDRTB", + "type": "BEP2", + "decimals": 8, + "description": "Rupiah Token (IDRT) is the first and most adopted Indonesian Rupiah stablecoin that is fully collateralized 1:1 by Rupiah (IDR) fiat currency.", + "website": "https://rupiahtoken.com/", + "explorer": "https://explorer.binance.org/asset/IDRTB-178", + "status": "active", + "id": "IDRTB-178" +} \ No newline at end of file diff --git a/blockchains/binance/assets/IDRTB-178/logo.png b/blockchains/binance/assets/IDRTB-178/logo.png new file mode 100644 index 00000000..31e48b71 Binary files /dev/null and b/blockchains/binance/assets/IDRTB-178/logo.png differ diff --git a/blockchains/binance/assets/INJ-FAE/info.json b/blockchains/binance/assets/INJ-FAE/info.json new file mode 100644 index 00000000..60b00eb7 --- /dev/null +++ b/blockchains/binance/assets/INJ-FAE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Injective Protocol", + "symbol": "INJ", + "type": "BEP2", + "decimals": 8, + "description": "The Injective Chain is a fully-decentralized sidechain relayer network which serves as a layer- 2 derivatives platform, trade execution coordinator(TEC), and decentralized orderbook.", + "website": "https://injectiveprotocol.com/", + "explorer": "https://explorer.binance.org/asset/INJ-FAE", + "status": "active", + "id": "INJ-FAE" +} \ No newline at end of file diff --git a/blockchains/binance/assets/INJ-FAE/logo.png b/blockchains/binance/assets/INJ-FAE/logo.png new file mode 100644 index 00000000..d77b0d43 Binary files /dev/null and b/blockchains/binance/assets/INJ-FAE/logo.png differ diff --git a/blockchains/binance/assets/IOTX-0ED/info.json b/blockchains/binance/assets/IOTX-0ED/info.json new file mode 100644 index 00000000..8f68f755 --- /dev/null +++ b/blockchains/binance/assets/IOTX-0ED/info.json @@ -0,0 +1,12 @@ +{ + "name": "IoTeX Network", + "website": "https://iotex.io", + "description": "IOTX will be a Decentralized Network for Internet of Things. Powered by a Privacy-Centric Blockchain.", + "explorer": "https://explorer.binance.org/asset/IOTX-0ED", + "research": "https://research.binance.com/en/projects/iotx", + "type": "BEP2", + "symbol": "IOTX", + "decimals": 8, + "status": "active", + "id": "IOTX-0ED" +} \ No newline at end of file diff --git a/blockchains/binance/assets/IOTX-0ED/logo.png b/blockchains/binance/assets/IOTX-0ED/logo.png new file mode 100644 index 00000000..2e533fb2 Binary files /dev/null and b/blockchains/binance/assets/IOTX-0ED/logo.png differ diff --git a/blockchains/binance/assets/IRIS-D88/info.json b/blockchains/binance/assets/IRIS-D88/info.json new file mode 100644 index 00000000..45830c7f --- /dev/null +++ b/blockchains/binance/assets/IRIS-D88/info.json @@ -0,0 +1,12 @@ +{ + "name": "IRIS Network", + "website": "https://irisnet.org", + "description": "IRISnet is a blockchain infrastructure that serves as a communication relayer for other blockchains and their applications.", + "explorer": "https://explorer.binance.org/asset/IRIS-D88", + "research": "https://research.binance.com/en/projects/irisnet", + "type": "BEP2", + "symbol": "IRIS", + "decimals": 8, + "status": "active", + "id": "IRIS-D88" +} \ No newline at end of file diff --git a/blockchains/binance/assets/IRIS-D88/logo.png b/blockchains/binance/assets/IRIS-D88/logo.png new file mode 100644 index 00000000..e2fd4c2b Binary files /dev/null and b/blockchains/binance/assets/IRIS-D88/logo.png differ diff --git a/blockchains/binance/assets/JDXU-706/info.json b/blockchains/binance/assets/JDXU-706/info.json new file mode 100644 index 00000000..5284bafc --- /dev/null +++ b/blockchains/binance/assets/JDXU-706/info.json @@ -0,0 +1,11 @@ +{ + "name": "JDXUCoin", + "symbol": "JDXU", + "type": "BEP2", + "decimals": 8, + "description": "Asset backed tokens and secure payment system, JDX Coin exist to monitize rare, White Jade Antiques that have been hidden from the world for over a century.", + "website": "https://jdxcoin.com/", + "explorer": "https://explorer.binance.org/asset/JDXU-706", + "status": "active", + "id": "JDXU-706" +} \ No newline at end of file diff --git a/blockchains/binance/assets/JDXU-706/logo.png b/blockchains/binance/assets/JDXU-706/logo.png new file mode 100644 index 00000000..f7e91b37 Binary files /dev/null and b/blockchains/binance/assets/JDXU-706/logo.png differ diff --git a/blockchains/binance/assets/KAT-7BB/info.json b/blockchains/binance/assets/KAT-7BB/info.json new file mode 100644 index 00000000..2ea2da55 --- /dev/null +++ b/blockchains/binance/assets/KAT-7BB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kambria Token", + "symbol": "KAT", + "type": "BEP2", + "decimals": 8, + "description": "Kambria aims to accelerate the process of robotics innovation, enabling faster, cheaper, and easier robotics development and adoption by everyone.", + "website": "https://kambria.io/", + "explorer": "https://explorer.binance.org/asset/KAT-7BB", + "status": "active", + "id": "KAT-7BB" +} \ No newline at end of file diff --git a/blockchains/binance/assets/KAT-7BB/logo.png b/blockchains/binance/assets/KAT-7BB/logo.png new file mode 100644 index 00000000..8f2197b1 Binary files /dev/null and b/blockchains/binance/assets/KAT-7BB/logo.png differ diff --git a/blockchains/binance/assets/KAVA-10C/info.json b/blockchains/binance/assets/KAVA-10C/info.json new file mode 100644 index 00000000..30373494 --- /dev/null +++ b/blockchains/binance/assets/KAVA-10C/info.json @@ -0,0 +1,28 @@ +{ + "name": "Kava BEP2 Token", + "symbol": "KAVA", + "type": "BEP2", + "decimals": 8, + "description": "Kava is a cross-chain DeFi Lending platform enabling stablecoin loans for users of major cryptocurrencies.", + "website": "https://www.kava.io/", + "explorer": "https://explorer.binance.org/asset/KAVA-10C", + "status": "active", + "id": "KAVA-10C", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/kava-labs" + }, + { + "name": "x", + "url": "https://x.com/kava_labs" + }, + { + "name": "telegram", + "url": "https://t.me/kavalabs" + } + ] +} \ No newline at end of file diff --git a/blockchains/binance/assets/KAVA-10C/logo.png b/blockchains/binance/assets/KAVA-10C/logo.png new file mode 100644 index 00000000..34c9b163 Binary files /dev/null and b/blockchains/binance/assets/KAVA-10C/logo.png differ diff --git a/blockchains/binance/assets/LBA-340/info.json b/blockchains/binance/assets/LBA-340/info.json new file mode 100644 index 00000000..6bdf91cf --- /dev/null +++ b/blockchains/binance/assets/LBA-340/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lend-Borrow-Asset", + "symbol": "LBA", + "type": "BEP2", + "decimals": 8, + "description": "Cred is a founder of the Universal Protocol Alliance (the UP Alliance), a coalition of the world’s leading blockchain companies solving some of crypto’s hardest challenges.", + "website": "https://www.mycred.io/", + "explorer": "https://explorer.binance.org/asset/LBA-340", + "status": "active", + "id": "LBA-340" +} \ No newline at end of file diff --git a/blockchains/binance/assets/LBA-340/logo.png b/blockchains/binance/assets/LBA-340/logo.png new file mode 100644 index 00000000..ae697888 Binary files /dev/null and b/blockchains/binance/assets/LBA-340/logo.png differ diff --git a/blockchains/binance/assets/LINK-AAD/info.json b/blockchains/binance/assets/LINK-AAD/info.json new file mode 100644 index 00000000..5144c6d2 --- /dev/null +++ b/blockchains/binance/assets/LINK-AAD/info.json @@ -0,0 +1,11 @@ +{ + "name": "LINKBEP2", + "symbol": "LINK", + "type": "BEP2", + "decimals": 8, + "description": "LINK BEP2 is a token on Binance Chain issued by Binance, where the price is pegged to LINK at a rate of 1 LINK BEP2 = 1 LINK", + "website": "https://binance.org", + "explorer": "https://explorer.binance.org/asset/LINK-AAD", + "status": "active", + "id": "LINK-AAD" +} \ No newline at end of file diff --git a/blockchains/binance/assets/LINK-AAD/logo.png b/blockchains/binance/assets/LINK-AAD/logo.png new file mode 100644 index 00000000..48c89738 Binary files /dev/null and b/blockchains/binance/assets/LINK-AAD/logo.png differ diff --git a/blockchains/binance/assets/LIT-099/info.json b/blockchains/binance/assets/LIT-099/info.json new file mode 100644 index 00000000..2886f69c --- /dev/null +++ b/blockchains/binance/assets/LIT-099/info.json @@ -0,0 +1,11 @@ +{ + "name": "LITION", + "symbol": "LIT", + "type": "BEP2", + "decimals": 8, + "description": "Lition innovates on the traditional fiat-based financial system by utilizing a unique private blockchain solution for central banks to issue and monitor digital currency usage and transactions.", + "website": "https://lition.io/", + "explorer": "https://explorer.binance.org/asset/LIT-099", + "status": "active", + "id": "LIT-099" +} \ No newline at end of file diff --git a/blockchains/binance/assets/LIT-099/logo.png b/blockchains/binance/assets/LIT-099/logo.png new file mode 100644 index 00000000..09dc9afa Binary files /dev/null and b/blockchains/binance/assets/LIT-099/logo.png differ diff --git a/blockchains/binance/assets/LOKI-6A9/info.json b/blockchains/binance/assets/LOKI-6A9/info.json new file mode 100644 index 00000000..90679e79 --- /dev/null +++ b/blockchains/binance/assets/LOKI-6A9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Loki", + "symbol": "LOKI", + "type": "BEP2", + "decimals": 8, + "description": "Loki creates privacy tools that enable untraceable, secure transactions and anonymous communication.", + "website": "https://oxen.io/", + "explorer": "https://explorer.binance.org/asset/LOKI-6A9", + "status": "active", + "id": "LOKI-6A9" +} \ No newline at end of file diff --git a/blockchains/binance/assets/LOKI-6A9/logo.png b/blockchains/binance/assets/LOKI-6A9/logo.png new file mode 100644 index 00000000..dede5e09 Binary files /dev/null and b/blockchains/binance/assets/LOKI-6A9/logo.png differ diff --git a/blockchains/binance/assets/LTC-F07/info.json b/blockchains/binance/assets/LTC-F07/info.json new file mode 100644 index 00000000..815b0bdd --- /dev/null +++ b/blockchains/binance/assets/LTC-F07/info.json @@ -0,0 +1,11 @@ +{ + "name": "LTC BEP2", + "symbol": "LTC", + "type": "BEP2", + "decimals": 8, + "description": "LTC BEP2 is a token on Binance Chain issued by Binance, where the price is pegged to LTC at a rate of 1 LTC BEP2 = 1 LTC", + "website": "https://binance.org", + "explorer": "https://explorer.binance.org/asset/LTC-F07", + "status": "active", + "id": "LTC-F07" +} \ No newline at end of file diff --git a/blockchains/binance/assets/LTC-F07/logo.png b/blockchains/binance/assets/LTC-F07/logo.png new file mode 100644 index 00000000..0ceac6a5 Binary files /dev/null and b/blockchains/binance/assets/LTC-F07/logo.png differ diff --git a/blockchains/binance/assets/LTO-BDF/info.json b/blockchains/binance/assets/LTO-BDF/info.json new file mode 100644 index 00000000..f0488cb8 --- /dev/null +++ b/blockchains/binance/assets/LTO-BDF/info.json @@ -0,0 +1,11 @@ +{ + "name": "LTO Network", + "symbol": "LTO", + "type": "BEP2", + "decimals": 8, + "description": "LTO Network is a hybrid blockchain for securing, verifying and exchanging business critical information.", + "website": "https://ltonetwork.com/", + "explorer": "https://explorer.binance.org/asset/LTO-BDF", + "status": "active", + "id": "LTO-BDF" +} \ No newline at end of file diff --git a/blockchains/binance/assets/LTO-BDF/logo.png b/blockchains/binance/assets/LTO-BDF/logo.png new file mode 100644 index 00000000..0e771790 Binary files /dev/null and b/blockchains/binance/assets/LTO-BDF/logo.png differ diff --git a/blockchains/binance/assets/LYFE-6AB/info.json b/blockchains/binance/assets/LYFE-6AB/info.json new file mode 100644 index 00000000..6df44211 --- /dev/null +++ b/blockchains/binance/assets/LYFE-6AB/info.json @@ -0,0 +1,11 @@ +{ + "name": "LYFE", + "symbol": "LYFE", + "type": "BEP2", + "decimals": 8, + "description": "The first rewards & gamification platform for healthy lifestyle in Indonesia", + "website": "https://lyfe.health/", + "explorer": "https://explorer.binance.org/asset/LYFE-6AB", + "status": "active", + "id": "LYFE-6AB" +} \ No newline at end of file diff --git a/blockchains/binance/assets/LYFE-6AB/logo.png b/blockchains/binance/assets/LYFE-6AB/logo.png new file mode 100644 index 00000000..e134293b Binary files /dev/null and b/blockchains/binance/assets/LYFE-6AB/logo.png differ diff --git a/blockchains/binance/assets/MATIC-84A/info.json b/blockchains/binance/assets/MATIC-84A/info.json new file mode 100644 index 00000000..60f49464 --- /dev/null +++ b/blockchains/binance/assets/MATIC-84A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Matic Token", + "symbol": "MATIC", + "type": "BEP2", + "decimals": 8, + "description": "Matic Network is a layer-2 scaling solution that uses sidechains for off-chain computation while ensuring asset security using Plasma framework and a decentralized network of Proof-of-Stake (PoS) vailidators.", + "website": "https://matic.network/", + "explorer": "https://explorer.binance.org/asset/MATIC-84A", + "status": "active", + "id": "MATIC-84A" +} \ No newline at end of file diff --git a/blockchains/binance/assets/MATIC-84A/logo.png b/blockchains/binance/assets/MATIC-84A/logo.png new file mode 100644 index 00000000..68141461 Binary files /dev/null and b/blockchains/binance/assets/MATIC-84A/logo.png differ diff --git a/blockchains/binance/assets/MCASH-869/info.json b/blockchains/binance/assets/MCASH-869/info.json new file mode 100644 index 00000000..23c010d9 --- /dev/null +++ b/blockchains/binance/assets/MCASH-869/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mcashchain", + "symbol": "MCASH", + "type": "BEP2", + "decimals": 8, + "description": "MCashChain aims to provide a solution for one of our ambitious projects which aims to challenge Ebay’s Model on Blockchain.", + "website": "https://mcash.network/", + "explorer": "https://explorer.binance.org/asset/MCASH-869", + "status": "active", + "id": "MCASH-869" +} \ No newline at end of file diff --git a/blockchains/binance/assets/MCASH-869/logo.png b/blockchains/binance/assets/MCASH-869/logo.png new file mode 100644 index 00000000..7c1194b1 Binary files /dev/null and b/blockchains/binance/assets/MCASH-869/logo.png differ diff --git a/blockchains/binance/assets/MDAB-D42/info.json b/blockchains/binance/assets/MDAB-D42/info.json new file mode 100644 index 00000000..bbe17d6d --- /dev/null +++ b/blockchains/binance/assets/MDAB-D42/info.json @@ -0,0 +1,11 @@ +{ + "name": "MDAB", + "symbol": "MDAB", + "type": "BEP2", + "decimals": 8, + "description": "Blockchain-based global fund investment and management platform.", + "website": "https://blocplatform.com/", + "explorer": "https://explorer.binance.org/asset/MDAB-D42", + "status": "active", + "id": "MDAB-D42" +} \ No newline at end of file diff --git a/blockchains/binance/assets/MDAB-D42/logo.png b/blockchains/binance/assets/MDAB-D42/logo.png new file mode 100644 index 00000000..478e774f Binary files /dev/null and b/blockchains/binance/assets/MDAB-D42/logo.png differ diff --git a/blockchains/binance/assets/MDT-14A/info.json b/blockchains/binance/assets/MDT-14A/info.json new file mode 100644 index 00000000..c98672f2 --- /dev/null +++ b/blockchains/binance/assets/MDT-14A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Measurable Data Token", + "type": "BEP2", + "symbol": "MDT", + "decimals": 8, + "website": "", + "description": "-", + "explorer": "https://explorer.binance.org/asset/MDT-14A", + "status": "active", + "id": "MDT-14A" +} \ No newline at end of file diff --git a/blockchains/binance/assets/MDT-14A/logo.png b/blockchains/binance/assets/MDT-14A/logo.png new file mode 100644 index 00000000..63b8f71b Binary files /dev/null and b/blockchains/binance/assets/MDT-14A/logo.png differ diff --git a/blockchains/binance/assets/MEDB-87E/info.json b/blockchains/binance/assets/MEDB-87E/info.json new file mode 100644 index 00000000..6363a29c --- /dev/null +++ b/blockchains/binance/assets/MEDB-87E/info.json @@ -0,0 +1,11 @@ +{ + "name": "MediBloc", + "symbol": "MEDB", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/MEDB-87E", + "status": "abandoned", + "id": "MEDB-87E" +} \ No newline at end of file diff --git a/blockchains/binance/assets/MEDB-87E/logo.png b/blockchains/binance/assets/MEDB-87E/logo.png new file mode 100644 index 00000000..04b36bde Binary files /dev/null and b/blockchains/binance/assets/MEDB-87E/logo.png differ diff --git a/blockchains/binance/assets/MEETONE-031/info.json b/blockchains/binance/assets/MEETONE-031/info.json new file mode 100644 index 00000000..eaa746e6 --- /dev/null +++ b/blockchains/binance/assets/MEETONE-031/info.json @@ -0,0 +1,11 @@ +{ + "name": "MEET.ONE", + "symbol": "MEETONE", + "type": "BEP2", + "decimals": 8, + "description": "MEET.ONE's goal is to become a unified portal for blockchain users.", + "website": "https://meet.one/", + "explorer": "https://explorer.binance.org/asset/MEETONE-031", + "status": "active", + "id": "MEETONE-031" +} \ No newline at end of file diff --git a/blockchains/binance/assets/MEETONE-031/logo.png b/blockchains/binance/assets/MEETONE-031/logo.png new file mode 100644 index 00000000..6f2ffc3b Binary files /dev/null and b/blockchains/binance/assets/MEETONE-031/logo.png differ diff --git a/blockchains/binance/assets/MITH-C76/info.json b/blockchains/binance/assets/MITH-C76/info.json new file mode 100644 index 00000000..ae86f291 --- /dev/null +++ b/blockchains/binance/assets/MITH-C76/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mithril", + "symbol": "MITH", + "type": "BEP2", + "decimals": 8, + "description": "Mithril (MITH) is a decentralized social media platform that rewards users for creating content.", + "website": "https://mith.io/", + "explorer": "https://explorer.binance.org/asset/MITH-C76", + "status": "active", + "id": "MITH-C76" +} \ No newline at end of file diff --git a/blockchains/binance/assets/MITH-C76/logo.png b/blockchains/binance/assets/MITH-C76/logo.png new file mode 100644 index 00000000..01e33592 Binary files /dev/null and b/blockchains/binance/assets/MITH-C76/logo.png differ diff --git a/blockchains/binance/assets/MITX-CAA/info.json b/blockchains/binance/assets/MITX-CAA/info.json new file mode 100644 index 00000000..73c28568 --- /dev/null +++ b/blockchains/binance/assets/MITX-CAA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Morpheus Infrastructure Token", + "symbol": "MITX", + "type": "BEP2", + "decimals": 8, + "description": "We empower you to develop, deploy and integrate application on blockchain technology to solve real-life problems. ", + "website": "https://www.morpheuslabs.io/", + "explorer": "https://explorer.binance.org/asset/MITX-CAA", + "status": "active", + "id": "MITX-CAA" +} \ No newline at end of file diff --git a/blockchains/binance/assets/MITX-CAA/logo.png b/blockchains/binance/assets/MITX-CAA/logo.png new file mode 100644 index 00000000..284ac7f5 Binary files /dev/null and b/blockchains/binance/assets/MITX-CAA/logo.png differ diff --git a/blockchains/binance/assets/MKR-F04/info.json b/blockchains/binance/assets/MKR-F04/info.json new file mode 100644 index 00000000..ff1a3ea9 --- /dev/null +++ b/blockchains/binance/assets/MKR-F04/info.json @@ -0,0 +1,12 @@ +{ + "name": "Maker", + "website": "https://makerdao.com", + "description": "Maker (MKR) is a utility token, governance token and recapitalization resource of the Maker system.", + "explorer": "https://explorer.binance.org/asset/MKR-F04", + "research": "https://research.binance.com/en/projects/maker", + "type": "BEP2", + "symbol": "MKR", + "decimals": 8, + "status": "active", + "id": "MKR-F04" +} \ No newline at end of file diff --git a/blockchains/binance/assets/MKR-F04/logo.png b/blockchains/binance/assets/MKR-F04/logo.png new file mode 100644 index 00000000..7b7d27e4 Binary files /dev/null and b/blockchains/binance/assets/MKR-F04/logo.png differ diff --git a/blockchains/binance/assets/MTV-4C6/info.json b/blockchains/binance/assets/MTV-4C6/info.json new file mode 100644 index 00000000..89477500 --- /dev/null +++ b/blockchains/binance/assets/MTV-4C6/info.json @@ -0,0 +1,11 @@ +{ + "name": "MultiVAC", + "symbol": "MTV", + "type": "BEP2", + "decimals": 8, + "description": "MultiVAC describes itself as a 'next-generation public blockchain that aims to achieve high-throughput, Dapp flexibility, and infinite scalability'.", + "website": "https://www.mtv.ac/", + "explorer": "https://explorer.binance.org/asset/MTV-4C6", + "status": "active", + "id": "MTV-4C6" +} \ No newline at end of file diff --git a/blockchains/binance/assets/MTV-4C6/logo.png b/blockchains/binance/assets/MTV-4C6/logo.png new file mode 100644 index 00000000..f17c1691 Binary files /dev/null and b/blockchains/binance/assets/MTV-4C6/logo.png differ diff --git a/blockchains/binance/assets/MTXLT-286/info.json b/blockchains/binance/assets/MTXLT-286/info.json new file mode 100644 index 00000000..a40c172e --- /dev/null +++ b/blockchains/binance/assets/MTXLT-286/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tixl", + "symbol": "MTXLT", + "type": "BEP2", + "decimals": 8, + "description": "Platform for Interoperable Smart Contracts & dApps.", + "website": "https://tixl.me/", + "explorer": "https://explorer.binance.org/asset/MTXLT-286", + "status": "active", + "id": "MTXLT-286" +} \ No newline at end of file diff --git a/blockchains/binance/assets/MTXLT-286/logo.png b/blockchains/binance/assets/MTXLT-286/logo.png new file mode 100644 index 00000000..93d99fc1 Binary files /dev/null and b/blockchains/binance/assets/MTXLT-286/logo.png differ diff --git a/blockchains/binance/assets/MVL-7B0/info.json b/blockchains/binance/assets/MVL-7B0/info.json new file mode 100644 index 00000000..30491a9b --- /dev/null +++ b/blockchains/binance/assets/MVL-7B0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mass Vehicle Ledger", + "symbol": "MVL", + "type": "BEP2", + "decimals": 8, + "description": "It is a blockchain-based ecosystem that connects all services, like the car dealer shops, mechanic shops and car rental companies, that touch your car to collect its lifetime data.", + "website": "https://mvlchain.io/", + "explorer": "https://explorer.binance.org/asset/MVL-7B0", + "status": "active", + "id": "MVL-7B0" +} \ No newline at end of file diff --git a/blockchains/binance/assets/MVL-7B0/logo.png b/blockchains/binance/assets/MVL-7B0/logo.png new file mode 100644 index 00000000..a97f00d1 Binary files /dev/null and b/blockchains/binance/assets/MVL-7B0/logo.png differ diff --git a/blockchains/binance/assets/MZK-2C7/info.json b/blockchains/binance/assets/MZK-2C7/info.json new file mode 100644 index 00000000..ecde4ede --- /dev/null +++ b/blockchains/binance/assets/MZK-2C7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Muzika", + "symbol": "MZK", + "type": "BEP2", + "decimals": 8, + "description": "Muzika is a Korea-based music blockchain project and research center established and run by Mapiacompany, with the mission to bring innovation to the digital music industry", + "website": "https://muzika.network/", + "explorer": "https://explorer.binance.org/asset/MZK-2C7", + "status": "active", + "id": "MZK-2C7" +} \ No newline at end of file diff --git a/blockchains/binance/assets/MZK-2C7/logo.png b/blockchains/binance/assets/MZK-2C7/logo.png new file mode 100644 index 00000000..86b9ff95 Binary files /dev/null and b/blockchains/binance/assets/MZK-2C7/logo.png differ diff --git a/blockchains/binance/assets/NEAR-4FD/info.json b/blockchains/binance/assets/NEAR-4FD/info.json new file mode 100644 index 00000000..6aca03c0 --- /dev/null +++ b/blockchains/binance/assets/NEAR-4FD/info.json @@ -0,0 +1,12 @@ +{ + "name": "NEAR Protocol", + "website": "https://near.org", + "description": "NEAR is an open source platform that accelerates the development of decentralized applications.", + "explorer": "https://explorer.binance.org/asset/NEAR-4FD", + "research": "https://research.binance.com/en/projects/near-protocol", + "type": "BEP2", + "symbol": "NEAR", + "decimals": 8, + "status": "active", + "id": "NEAR-4FD" +} \ No newline at end of file diff --git a/blockchains/binance/assets/NEAR-4FD/logo.png b/blockchains/binance/assets/NEAR-4FD/logo.png new file mode 100644 index 00000000..15b08b2d Binary files /dev/null and b/blockchains/binance/assets/NEAR-4FD/logo.png differ diff --git a/blockchains/binance/assets/NEW-09E/info.json b/blockchains/binance/assets/NEW-09E/info.json new file mode 100644 index 00000000..7b078251 --- /dev/null +++ b/blockchains/binance/assets/NEW-09E/info.json @@ -0,0 +1,11 @@ +{ + "name": "NEWTON", + "symbol": "NEW", + "type": "BEP2", + "decimals": 8, + "description": "Newton aims to create a new kind of economy - the community economy - by building blockchain infrastructure to enable freer, fairer transactions by anyone in the world.", + "website": "https://www.newtonproject.org/", + "explorer": "https://explorer.binance.org/asset/NEW-09E", + "status": "active", + "id": "NEW-09E" +} \ No newline at end of file diff --git a/blockchains/binance/assets/NEW-09E/logo.png b/blockchains/binance/assets/NEW-09E/logo.png new file mode 100644 index 00000000..4a1f5c30 Binary files /dev/null and b/blockchains/binance/assets/NEW-09E/logo.png differ diff --git a/blockchains/binance/assets/NEXO-A84/info.json b/blockchains/binance/assets/NEXO-A84/info.json new file mode 100644 index 00000000..3a4e8ae9 --- /dev/null +++ b/blockchains/binance/assets/NEXO-A84/info.json @@ -0,0 +1,41 @@ +{ + "name": "Nexo", + "website": "http://nexo.io", + "description": "NEXO (NEXO) is a compliant token that is backed by the underlying assets of Nexo’s loan portfolio.", + "explorer": "https://explorer.binance.org/asset/NEXO-A84", + "type": "BEP2", + "symbol": "NEXO", + "decimals": 8, + "status": "active", + "id": "NEXO-A84", + "links": [ + { + "name": "github", + "url": "https://github.com/nexofinance/NEXO-Token/" + }, + { + "name": "x", + "url": "https://x.com/NexoFinance" + }, + { + "name": "blog", + "url": "https://medium.com/nexo" + }, + { + "name": "facebook", + "url": "https://facebook.com/NexoFinance" + }, + { + "name": "telegram", + "url": "https://t.me/nexofinance" + }, + { + "name": "whitepaper", + "url": "https://nexo.io/assets/downloads/Nexo-Whitepaper.pdf?=a" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nexo/" + } + ] +} \ No newline at end of file diff --git a/blockchains/binance/assets/NEXO-A84/logo.png b/blockchains/binance/assets/NEXO-A84/logo.png new file mode 100644 index 00000000..603a9f9f Binary files /dev/null and b/blockchains/binance/assets/NEXO-A84/logo.png differ diff --git a/blockchains/binance/assets/NODE-F3A/info.json b/blockchains/binance/assets/NODE-F3A/info.json new file mode 100644 index 00000000..ccfe0409 --- /dev/null +++ b/blockchains/binance/assets/NODE-F3A/info.json @@ -0,0 +1,11 @@ +{ + "name": "NODE", + "symbol": "NODE", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/NODE-F3A", + "status": "abandoned", + "id": "NODE-F3A" +} \ No newline at end of file diff --git a/blockchains/binance/assets/NODE-F3A/logo.png b/blockchains/binance/assets/NODE-F3A/logo.png new file mode 100644 index 00000000..15ce4886 Binary files /dev/null and b/blockchains/binance/assets/NODE-F3A/logo.png differ diff --git a/blockchains/binance/assets/NOIZB-878/info.json b/blockchains/binance/assets/NOIZB-878/info.json new file mode 100644 index 00000000..32e4ab26 --- /dev/null +++ b/blockchains/binance/assets/NOIZB-878/info.json @@ -0,0 +1,11 @@ +{ + "name": "NOIZ Token", + "symbol": "NOIZB", + "type": "BEP2", + "decimals": 8, + "description": "A communication/marketing technology platform that aims to turn engagement into impact. ", + "website": "https://noizchain.com/", + "explorer": "https://explorer.binance.org/asset/NOIZB-878", + "status": "active", + "id": "NOIZB-878" +} \ No newline at end of file diff --git a/blockchains/binance/assets/NOIZB-878/logo.png b/blockchains/binance/assets/NOIZB-878/logo.png new file mode 100644 index 00000000..4380d15e Binary files /dev/null and b/blockchains/binance/assets/NOIZB-878/logo.png differ diff --git a/blockchains/binance/assets/NOW-E68/info.json b/blockchains/binance/assets/NOW-E68/info.json new file mode 100644 index 00000000..93a8fafb --- /dev/null +++ b/blockchains/binance/assets/NOW-E68/info.json @@ -0,0 +1,11 @@ +{ + "name": "NOW Token", + "symbol": "NOW", + "type": "BEP2", + "decimals": 8, + "description": "NOW Token is a utility token of ChangeNOW exchange platform.", + "website": "https://changenow.io/", + "explorer": "https://explorer.binance.org/asset/NOW-E68", + "status": "active", + "id": "NOW-E68" +} \ No newline at end of file diff --git a/blockchains/binance/assets/NOW-E68/logo.png b/blockchains/binance/assets/NOW-E68/logo.png new file mode 100644 index 00000000..8c24a9dc Binary files /dev/null and b/blockchains/binance/assets/NOW-E68/logo.png differ diff --git a/blockchains/binance/assets/NPXB-1E8/info.json b/blockchains/binance/assets/NPXB-1E8/info.json new file mode 100644 index 00000000..a74863b4 --- /dev/null +++ b/blockchains/binance/assets/NPXB-1E8/info.json @@ -0,0 +1,11 @@ +{ + "name": "NPX Binance token", + "symbol": "NPXB", + "type": "BEP2", + "decimals": 8, + "description": "NaPoleonX is the first 100% algorithmic crypto asset manager. It has been designed by ex multi-billions asset managers specifically to holders of cryptos who are looking for a return on their savings.", + "website": "https://napoleonx.ai/", + "explorer": "https://explorer.binance.org/asset/NPXB-1E8", + "status": "active", + "id": "NPXB-1E8" +} \ No newline at end of file diff --git a/blockchains/binance/assets/NPXB-1E8/logo.png b/blockchains/binance/assets/NPXB-1E8/logo.png new file mode 100644 index 00000000..294e0587 Binary files /dev/null and b/blockchains/binance/assets/NPXB-1E8/logo.png differ diff --git a/blockchains/binance/assets/NPXSXEM-89C/info.json b/blockchains/binance/assets/NPXSXEM-89C/info.json new file mode 100644 index 00000000..736c7c63 --- /dev/null +++ b/blockchains/binance/assets/NPXSXEM-89C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pundi X NEM", + "symbol": "NPXSXEM", + "type": "BEP2", + "decimals": 8, + "description": "We have been deploying our blockchain-based point-of-sale (POS) solution and solidifying partnerships with governments, payment companies, and retailers.", + "website": "https://pundix.com/", + "explorer": "https://explorer.binance.org/asset/NPXSXEM-89C", + "status": "active", + "id": "NPXSXEM-89C" +} \ No newline at end of file diff --git a/blockchains/binance/assets/NPXSXEM-89C/logo.png b/blockchains/binance/assets/NPXSXEM-89C/logo.png new file mode 100644 index 00000000..5446a9ba Binary files /dev/null and b/blockchains/binance/assets/NPXSXEM-89C/logo.png differ diff --git a/blockchains/binance/assets/ONE-5F9/info.json b/blockchains/binance/assets/ONE-5F9/info.json new file mode 100644 index 00000000..69ea613d --- /dev/null +++ b/blockchains/binance/assets/ONE-5F9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Harmony.One", + "symbol": "ONE", + "type": "BEP2", + "decimals": 8, + "description": "Harmony aims to offer a fast and open blockchain for decentralized applications.", + "website": "https://harmony.one/", + "explorer": "https://explorer.binance.org/asset/ONE-5F9", + "status": "active", + "id": "ONE-5F9" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ONE-5F9/logo.png b/blockchains/binance/assets/ONE-5F9/logo.png new file mode 100644 index 00000000..a2e1b712 Binary files /dev/null and b/blockchains/binance/assets/ONE-5F9/logo.png differ diff --git a/blockchains/binance/assets/ONT-33D/info.json b/blockchains/binance/assets/ONT-33D/info.json new file mode 100644 index 00000000..5f5613aa --- /dev/null +++ b/blockchains/binance/assets/ONT-33D/info.json @@ -0,0 +1,11 @@ +{ + "name": "ONTBEP2", + "symbol": "ONT", + "type": "BEP2", + "decimals": 8, + "description": "ONT BEP2 is a token on Binance Chain issued by Binance, where the price is pegged to ONT at a rate of 1 ONT BEP2 = 1 ONT", + "website": "https://binance.org", + "explorer": "https://explorer.binance.org/asset/ONT-33D", + "status": "active", + "id": "ONT-33D" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ONT-33D/logo.png b/blockchains/binance/assets/ONT-33D/logo.png new file mode 100644 index 00000000..25ffd17b Binary files /dev/null and b/blockchains/binance/assets/ONT-33D/logo.png differ diff --git a/blockchains/binance/assets/OWTX-A6B/info.json b/blockchains/binance/assets/OWTX-A6B/info.json new file mode 100644 index 00000000..81c82d77 --- /dev/null +++ b/blockchains/binance/assets/OWTX-A6B/info.json @@ -0,0 +1,11 @@ +{ + "name": "OpenWeb Token", + "symbol": "OWTX", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "https://openweb.network/", + "explorer": "https://explorer.binance.org/asset/OWTX-A6B", + "status": "abandoned", + "id": "OWTX-A6B" +} \ No newline at end of file diff --git a/blockchains/binance/assets/OWTX-A6B/logo.png b/blockchains/binance/assets/OWTX-A6B/logo.png new file mode 100644 index 00000000..c36ee3d6 Binary files /dev/null and b/blockchains/binance/assets/OWTX-A6B/logo.png differ diff --git a/blockchains/binance/assets/PAX-F25/info.json b/blockchains/binance/assets/PAX-F25/info.json new file mode 100644 index 00000000..427103f0 --- /dev/null +++ b/blockchains/binance/assets/PAX-F25/info.json @@ -0,0 +1,12 @@ +{ + "name": "Paxos Standard", + "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://explorer.binance.org/asset/PAX-F25", + "research": "https://research.binance.com/en/projects/paxos-standard", + "type": "BEP2", + "symbol": "PAX", + "decimals": 8, + "status": "active", + "id": "PAX-F25" +} \ No newline at end of file diff --git a/blockchains/binance/assets/PAX-F25/logo.png b/blockchains/binance/assets/PAX-F25/logo.png new file mode 100644 index 00000000..a62ce280 Binary files /dev/null and b/blockchains/binance/assets/PAX-F25/logo.png differ diff --git a/blockchains/binance/assets/PCAT-4BB/info.json b/blockchains/binance/assets/PCAT-4BB/info.json new file mode 100644 index 00000000..1cb745ef --- /dev/null +++ b/blockchains/binance/assets/PCAT-4BB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pink Care Token", + "symbol": "PCAT", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/PCAT-4BB", + "status": "abandoned", + "id": "PCAT-4BB" +} \ No newline at end of file diff --git a/blockchains/binance/assets/PCAT-4BB/logo.png b/blockchains/binance/assets/PCAT-4BB/logo.png new file mode 100644 index 00000000..165859b7 Binary files /dev/null and b/blockchains/binance/assets/PCAT-4BB/logo.png differ diff --git a/blockchains/binance/assets/PHB-2DF/info.json b/blockchains/binance/assets/PHB-2DF/info.json new file mode 100644 index 00000000..84fe971d --- /dev/null +++ b/blockchains/binance/assets/PHB-2DF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Red Pulse Phoenix Binance", + "symbol": "PHB", + "type": "BEP2", + "decimals": 8, + "description": "PHX includes features such as Proof of Creation, Proof of Ownership, regulatory compliance, IP protection and accountability built right into the new smart contract.", + "website": "https://www.redpulse.com/", + "explorer": "https://explorer.binance.org/asset/PHB-2DF", + "status": "active", + "id": "PHB-2DF" +} \ No newline at end of file diff --git a/blockchains/binance/assets/PHB-2DF/logo.png b/blockchains/binance/assets/PHB-2DF/logo.png new file mode 100644 index 00000000..dc3ad0ba Binary files /dev/null and b/blockchains/binance/assets/PHB-2DF/logo.png differ diff --git a/blockchains/binance/assets/PHV-4A1/info.json b/blockchains/binance/assets/PHV-4A1/info.json new file mode 100644 index 00000000..7e02d0e8 --- /dev/null +++ b/blockchains/binance/assets/PHV-4A1/info.json @@ -0,0 +1,11 @@ +{ + "name": "PathHive Network", + "symbol": "PHV", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/PHV-4A1", + "status": "active", + "id": "PHV-4A1" +} \ No newline at end of file diff --git a/blockchains/binance/assets/PHV-4A1/logo.png b/blockchains/binance/assets/PHV-4A1/logo.png new file mode 100644 index 00000000..58c60fd6 Binary files /dev/null and b/blockchains/binance/assets/PHV-4A1/logo.png differ diff --git a/blockchains/binance/assets/PIBNB-43C/info.json b/blockchains/binance/assets/PIBNB-43C/info.json new file mode 100644 index 00000000..c5d6155e --- /dev/null +++ b/blockchains/binance/assets/PIBNB-43C/info.json @@ -0,0 +1,11 @@ +{ + "name": "PCHAIN Token", + "symbol": "PIBNB", + "type": "BEP2", + "decimals": 8, + "description": "PCHAIN is the first native multichain system in the world that supports Ethereum Virtual Machine (EVM), which consists of one main chain and multiple derived chains.", + "website": "https://www.pchain.org/", + "explorer": "https://explorer.binance.org/asset/PIBNB-43C", + "status": "active", + "id": "PIBNB-43C" +} \ No newline at end of file diff --git a/blockchains/binance/assets/PIBNB-43C/logo.png b/blockchains/binance/assets/PIBNB-43C/logo.png new file mode 100644 index 00000000..5175811c Binary files /dev/null and b/blockchains/binance/assets/PIBNB-43C/logo.png differ diff --git a/blockchains/binance/assets/PLG-D8D/info.json b/blockchains/binance/assets/PLG-D8D/info.json new file mode 100644 index 00000000..ec7646be --- /dev/null +++ b/blockchains/binance/assets/PLG-D8D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pledge Coin", + "symbol": "PLG", + "type": "BEP2", + "decimals": 8, + "description": "Pledgecamp is securing the future of crowdfunding with blockchain protected investments.", + "website": "https://pledgecamp.com/", + "explorer": "https://explorer.binance.org/asset/PLG-D8D", + "status": "active", + "id": "PLG-D8D" +} \ No newline at end of file diff --git a/blockchains/binance/assets/PLG-D8D/logo.png b/blockchains/binance/assets/PLG-D8D/logo.png new file mode 100644 index 00000000..4cb141e5 Binary files /dev/null and b/blockchains/binance/assets/PLG-D8D/logo.png differ diff --git a/blockchains/binance/assets/PROPEL-6D9/info.json b/blockchains/binance/assets/PROPEL-6D9/info.json new file mode 100644 index 00000000..d500c6eb --- /dev/null +++ b/blockchains/binance/assets/PROPEL-6D9/info.json @@ -0,0 +1,22 @@ +{ + "name": "Propel", + "website": "https://payrue.com/", + "description": "PayRue is a financial platform that operates exchanges, wallets, and transfers with cryptocurrencies.", + "explorer": "https://explorer.binance.org/asset/PROPEL-6D9", + "research": "", + "type": "BEP2", + "symbol": "PROPEL", + "decimals": 8, + "status": "active", + "id": "PROPEL-6D9", + "links": [ + { + "name": "x", + "url": "https://x.com/payrue" + }, + { + "name": "reddit", + "url": "https://reddit.com/u/payrue" + } + ] +} \ No newline at end of file diff --git a/blockchains/binance/assets/PROPEL-6D9/logo.png b/blockchains/binance/assets/PROPEL-6D9/logo.png new file mode 100644 index 00000000..61ac1bdf Binary files /dev/null and b/blockchains/binance/assets/PROPEL-6D9/logo.png differ diff --git a/blockchains/binance/assets/PVT-554/info.json b/blockchains/binance/assets/PVT-554/info.json new file mode 100644 index 00000000..228a6a93 --- /dev/null +++ b/blockchains/binance/assets/PVT-554/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pivot Token", + "symbol": "PVT", + "type": "BEP2", + "decimals": 8, + "description": "It is dedicated to providing users with real-time cryptocurrency market data and function as a one-stop-shop for trading services.", + "website": "https://www.pivot.one/", + "explorer": "https://explorer.binance.org/asset/PVT-554", + "status": "active", + "id": "PVT-554" +} \ No newline at end of file diff --git a/blockchains/binance/assets/PVT-554/logo.png b/blockchains/binance/assets/PVT-554/logo.png new file mode 100644 index 00000000..1c061fa9 Binary files /dev/null and b/blockchains/binance/assets/PVT-554/logo.png differ diff --git a/blockchains/binance/assets/PYN-C37/info.json b/blockchains/binance/assets/PYN-C37/info.json new file mode 100644 index 00000000..9b434d72 --- /dev/null +++ b/blockchains/binance/assets/PYN-C37/info.json @@ -0,0 +1,11 @@ +{ + "name": "paycentos", + "symbol": "PYN", + "type": "BEP2", + "decimals": 8, + "description": "Global mobile dual e-wallet that can be funded by cryptocurrencies (e.g. Bitcoin, Ether, Litecoin) with high liquidity and fiat currencies within the same mobile application.", + "website": "https://paycent.com/", + "explorer": "https://explorer.binance.org/asset/PYN-C37", + "status": "active", + "id": "PYN-C37" +} \ No newline at end of file diff --git a/blockchains/binance/assets/PYN-C37/logo.png b/blockchains/binance/assets/PYN-C37/logo.png new file mode 100644 index 00000000..f34a180c Binary files /dev/null and b/blockchains/binance/assets/PYN-C37/logo.png differ diff --git a/blockchains/binance/assets/QBX-38C/info.json b/blockchains/binance/assets/QBX-38C/info.json new file mode 100644 index 00000000..fe7a5b0d --- /dev/null +++ b/blockchains/binance/assets/QBX-38C/info.json @@ -0,0 +1,11 @@ +{ + "name": "qiibeeToken", + "symbol": "QBX", + "type": "BEP2", + "decimals": 8, + "description": "Through qiibee’s plug & play solutions, businesses worldwide are running and operating loyalty programs on the blockchain in a few hours, while reducing costs and maximizing customer lifetime value.", + "website": "https://qiibee.com/", + "explorer": "https://explorer.binance.org/asset/QBX-38C", + "status": "active", + "id": "QBX-38C" +} \ No newline at end of file diff --git a/blockchains/binance/assets/QBX-38C/logo.png b/blockchains/binance/assets/QBX-38C/logo.png new file mode 100644 index 00000000..bd686453 Binary files /dev/null and b/blockchains/binance/assets/QBX-38C/logo.png differ diff --git a/blockchains/binance/assets/RAVEN-F66/info.json b/blockchains/binance/assets/RAVEN-F66/info.json new file mode 100644 index 00000000..849c753c --- /dev/null +++ b/blockchains/binance/assets/RAVEN-F66/info.json @@ -0,0 +1,11 @@ +{ + "name": "Raven Protocol", + "symbol": "RAVEN", + "type": "BEP2", + "decimals": 8, + "description": "Decentralised & Distributed deep-learning training protocol.", + "website": "https://www.ravenprotocol.com", + "explorer": "https://explorer.binance.org/asset/RAVEN-F66", + "status": "active", + "id": "RAVEN-F66" +} \ No newline at end of file diff --git a/blockchains/binance/assets/RAVEN-F66/logo.png b/blockchains/binance/assets/RAVEN-F66/logo.png new file mode 100644 index 00000000..a308502b Binary files /dev/null and b/blockchains/binance/assets/RAVEN-F66/logo.png differ diff --git a/blockchains/binance/assets/RNO-14E/info.json b/blockchains/binance/assets/RNO-14E/info.json new file mode 100644 index 00000000..bb7237b0 --- /dev/null +++ b/blockchains/binance/assets/RNO-14E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Earneo", + "symbol": "RNO", + "type": "BEP2", + "decimals": 8, + "description": "Earneo, the first videos sharing platform that benefits everyone.", + "website": "https://www.earneo.io/", + "explorer": "https://explorer.binance.org/asset/RNO-14E", + "status": "active", + "id": "RNO-14E" +} \ No newline at end of file diff --git a/blockchains/binance/assets/RNO-14E/logo.png b/blockchains/binance/assets/RNO-14E/logo.png new file mode 100644 index 00000000..3846942d Binary files /dev/null and b/blockchains/binance/assets/RNO-14E/logo.png differ diff --git a/blockchains/binance/assets/RUNE-B1A/info.json b/blockchains/binance/assets/RUNE-B1A/info.json new file mode 100644 index 00000000..e9fbacc4 --- /dev/null +++ b/blockchains/binance/assets/RUNE-B1A/info.json @@ -0,0 +1,15 @@ +{ + "name": "Rune", + "website": "https://thorchain.org", + "description": "THORChain describes itself as a decentralized liquidity network that allows users to swap assets instantly at manipulation-resistant market prices.", + "explorer": "https://explorer.binance.org/asset/RUNE-B1A", + "research": "https://research.binance.com/en/projects/thorchain", + "type": "BEP2", + "symbol": "RUNE", + "decimals": 8, + "status": "active", + "id": "RUNE-B1A", + "tags": [ + "defi" + ] +} diff --git a/blockchains/binance/assets/RUNE-B1A/logo.png b/blockchains/binance/assets/RUNE-B1A/logo.png new file mode 100644 index 00000000..b7f9fd9e Binary files /dev/null and b/blockchains/binance/assets/RUNE-B1A/logo.png differ diff --git a/blockchains/binance/assets/SBC-5D4/info.json b/blockchains/binance/assets/SBC-5D4/info.json new file mode 100644 index 00000000..08203bcf --- /dev/null +++ b/blockchains/binance/assets/SBC-5D4/info.json @@ -0,0 +1,11 @@ +{ + "name": "SB Token", + "symbol": "SBC", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/SBC-5D4", + "status": "abandoned", + "id": "SBC-5D4" +} \ No newline at end of file diff --git a/blockchains/binance/assets/SBC-5D4/logo.png b/blockchains/binance/assets/SBC-5D4/logo.png new file mode 100644 index 00000000..9f495d98 Binary files /dev/null and b/blockchains/binance/assets/SBC-5D4/logo.png differ diff --git a/blockchains/binance/assets/SHR-DB6/info.json b/blockchains/binance/assets/SHR-DB6/info.json new file mode 100644 index 00000000..2d047ca5 --- /dev/null +++ b/blockchains/binance/assets/SHR-DB6/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShareToken", + "symbol": "SHR", + "type": "BEP2", + "decimals": 8, + "description": "ShareToken is a digital utility token that is used to make payments for sharing services across industries and geographies on the ShareRing platform — which includes the ShareRing application, ShareRing shop and each user’s ShareRing ID.", + "website": "https://sharering.network", + "explorer": "https://explorer.binance.org/asset/SHR-DB6", + "status": "active", + "id": "SHR-DB6" +} \ No newline at end of file diff --git a/blockchains/binance/assets/SHR-DB6/logo.png b/blockchains/binance/assets/SHR-DB6/logo.png new file mode 100644 index 00000000..d4ba13c0 Binary files /dev/null and b/blockchains/binance/assets/SHR-DB6/logo.png differ diff --git a/blockchains/binance/assets/SLV-986/info.json b/blockchains/binance/assets/SLV-986/info.json new file mode 100644 index 00000000..edcd13e5 --- /dev/null +++ b/blockchains/binance/assets/SLV-986/info.json @@ -0,0 +1,11 @@ +{ + "name": "Silverway", + "symbol": "SLV", + "type": "BEP2", + "decimals": 8, + "description": "Silverway provides aggregated and structured OTC (over-the-counter) data for crypto markets.", + "website": "https://silverway.io/", + "explorer": "https://explorer.binance.org/asset/SLV-986", + "status": "active", + "id": "SLV-986" +} \ No newline at end of file diff --git a/blockchains/binance/assets/SLV-986/logo.png b/blockchains/binance/assets/SLV-986/logo.png new file mode 100644 index 00000000..6b6adb4f Binary files /dev/null and b/blockchains/binance/assets/SLV-986/logo.png differ diff --git a/blockchains/binance/assets/SNX-C26/info.json b/blockchains/binance/assets/SNX-C26/info.json new file mode 100644 index 00000000..f160ed87 --- /dev/null +++ b/blockchains/binance/assets/SNX-C26/info.json @@ -0,0 +1,12 @@ +{ + "name": "Synthetix Network Token", + "website": "https://synthetix.io", + "description": "Synthetix is a derivatives liquidity protocol on Ethereum that enables the issuance and trading of synthetic assets.", + "explorer": "https://explorer.binance.org/asset/SNX-C26", + "research": "https://research.binance.com/en/projects/synthetix", + "type": "BEP2", + "symbol": "SNX", + "decimals": 8, + "status": "active", + "id": "SNX-C26" +} \ No newline at end of file diff --git a/blockchains/binance/assets/SNX-C26/logo.png b/blockchains/binance/assets/SNX-C26/logo.png new file mode 100644 index 00000000..2a850de0 Binary files /dev/null and b/blockchains/binance/assets/SNX-C26/logo.png differ diff --git a/blockchains/binance/assets/SPARTA-7F3/info.json b/blockchains/binance/assets/SPARTA-7F3/info.json new file mode 100644 index 00000000..0d4629ad --- /dev/null +++ b/blockchains/binance/assets/SPARTA-7F3/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPARTAN PROTOCOL TOKEN", + "type": "BEP2", + "symbol": "SPARTA-7F3", + "decimals": 8, + "website": "", + "description": "-", + "explorer": "https://explorer.binance.org/asset/SPARTA-7F3", + "status": "active", + "id": "SPARTA-7F3" +} \ No newline at end of file diff --git a/blockchains/binance/assets/SPARTA-7F3/logo.png b/blockchains/binance/assets/SPARTA-7F3/logo.png new file mode 100644 index 00000000..cf8426bb Binary files /dev/null and b/blockchains/binance/assets/SPARTA-7F3/logo.png differ diff --git a/blockchains/binance/assets/SPNDB-916/info.json b/blockchains/binance/assets/SPNDB-916/info.json new file mode 100644 index 00000000..a3289c90 --- /dev/null +++ b/blockchains/binance/assets/SPNDB-916/info.json @@ -0,0 +1,11 @@ +{ + "name": "Spendcoin", + "symbol": "SPNDB", + "type": "BEP2", + "decimals": 8, + "description": "Spendcoin is a decentralized cryptocurrency that powers the Spend.com ecosystem of products. Spend has two financial services products, the Spend App and Spend Card, which are products of Spend.com that give our users a multi-currency digital wallet that they are able to store fiat and digital assets/currencies.", + "website": "https://spendcoin.org/", + "explorer": "https://explorer.binance.org/asset/SPNDB-916", + "status": "active", + "id": "SPNDB-916" +} \ No newline at end of file diff --git a/blockchains/binance/assets/SPNDB-916/logo.png b/blockchains/binance/assets/SPNDB-916/logo.png new file mode 100644 index 00000000..610b7862 Binary files /dev/null and b/blockchains/binance/assets/SPNDB-916/logo.png differ diff --git a/blockchains/binance/assets/STYL-65B/info.json b/blockchains/binance/assets/STYL-65B/info.json new file mode 100644 index 00000000..15c8e812 --- /dev/null +++ b/blockchains/binance/assets/STYL-65B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yin Lang Music IP Token", + "symbol": "STYL", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/STYL-65B", + "status": "active", + "id": "STYL-65B" +} \ No newline at end of file diff --git a/blockchains/binance/assets/STYL-65B/logo.png b/blockchains/binance/assets/STYL-65B/logo.png new file mode 100644 index 00000000..fd875347 Binary files /dev/null and b/blockchains/binance/assets/STYL-65B/logo.png differ diff --git a/blockchains/binance/assets/SUSHI-134/info.json b/blockchains/binance/assets/SUSHI-134/info.json new file mode 100644 index 00000000..fb4dbe7a --- /dev/null +++ b/blockchains/binance/assets/SUSHI-134/info.json @@ -0,0 +1,12 @@ +{ + "name": "SushiToken", + "website": "https://sushiswap.fi", + "description": "SushiSwap claims to be an evolution of #Uniswap with $SUSHI tokenomics.", + "explorer": "https://explorer.binance.org/asset/SUSHI-134", + "research": "https://research.binance.com/en/projects/sushi", + "type": "BEP2", + "symbol": "SUSHI", + "decimals": 8, + "status": "active", + "id": "SUSHI-134" +} \ No newline at end of file diff --git a/blockchains/binance/assets/SUSHI-134/logo.png b/blockchains/binance/assets/SUSHI-134/logo.png new file mode 100644 index 00000000..37523b87 Binary files /dev/null and b/blockchains/binance/assets/SUSHI-134/logo.png differ diff --git a/blockchains/binance/assets/SWINGBY-888/info.json b/blockchains/binance/assets/SWINGBY-888/info.json new file mode 100644 index 00000000..f751323b --- /dev/null +++ b/blockchains/binance/assets/SWINGBY-888/info.json @@ -0,0 +1,11 @@ +{ + "name": "Swingby Token", + "symbol": "SWINGBY", + "type": "BEP2", + "decimals": 8, + "description": "Swingby is a decentralized proof-of-stake network that uses the latest advancements in cryptography research to allow you to move your tokens onto other chains without a trusted party.", + "website": "https://swingby.network/", + "explorer": "https://explorer.binance.org/asset/SWINGBY-888", + "status": "active", + "id": "SWINGBY-888" +} \ No newline at end of file diff --git a/blockchains/binance/assets/SWINGBY-888/logo.png b/blockchains/binance/assets/SWINGBY-888/logo.png new file mode 100644 index 00000000..2c85369c Binary files /dev/null and b/blockchains/binance/assets/SWINGBY-888/logo.png differ diff --git a/blockchains/binance/assets/SWIPE.B-DC0/info.json b/blockchains/binance/assets/SWIPE.B-DC0/info.json new file mode 100644 index 00000000..b321eb9f --- /dev/null +++ b/blockchains/binance/assets/SWIPE.B-DC0/info.json @@ -0,0 +1,11 @@ +{ + "name": "SWIPE Token", + "symbol": "SWIPE.B", + "type": "BEP2", + "decimals": 8, + "description": "SWIPE Network is a Blockchain Infrastructure for Trustless Data Economy. It allows mobile app developers and users to monetize their data on the blockchain without compromising user privacy.", + "website": "https://swipecrypto.com/", + "explorer": "https://explorer.binance.org/asset/SWIPE.B-DC0", + "status": "active", + "id": "SWIPE.B-DC0" +} \ No newline at end of file diff --git a/blockchains/binance/assets/SWIPE.B-DC0/logo.png b/blockchains/binance/assets/SWIPE.B-DC0/logo.png new file mode 100644 index 00000000..bc664051 Binary files /dev/null and b/blockchains/binance/assets/SWIPE.B-DC0/logo.png differ diff --git a/blockchains/binance/assets/SXP-CCC/info.json b/blockchains/binance/assets/SXP-CCC/info.json new file mode 100644 index 00000000..cc344b18 --- /dev/null +++ b/blockchains/binance/assets/SXP-CCC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Swipe", + "symbol": "SXP", + "type": "BEP2", + "decimals": 8, + "description": "Swipe is a platform that looks to form a bridge between the fiat and cryptocurrency worlds with its three main existing products: the Swipe multi-asset mobile wallet, the Swipe cryptocurrency-funded debit card and the Swipe Token", + "website": "https://www.swipe.io", + "explorer": "https://explorer.binance.org/asset/SXP-CCC", + "status": "active", + "id": "SXP-CCC" +} \ No newline at end of file diff --git a/blockchains/binance/assets/SXP-CCC/logo.png b/blockchains/binance/assets/SXP-CCC/logo.png new file mode 100644 index 00000000..fdb099a2 Binary files /dev/null and b/blockchains/binance/assets/SXP-CCC/logo.png differ diff --git a/blockchains/binance/assets/TAUDB-888/info.json b/blockchains/binance/assets/TAUDB-888/info.json new file mode 100644 index 00000000..b8bbc5ed --- /dev/null +++ b/blockchains/binance/assets/TAUDB-888/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueAUD", + "symbol": "TAUDB", + "type": "BEP2", + "decimals": 8, + "description": "Tokenized version of the AUD", + "website": "https://trusttoken.com/", + "explorer": "https://explorer.binance.org/asset/TAUDB-888", + "status": "active", + "id": "TAUDB-888" +} \ No newline at end of file diff --git a/blockchains/binance/assets/TAUDB-888/logo.png b/blockchains/binance/assets/TAUDB-888/logo.png new file mode 100644 index 00000000..fa9d6a8b Binary files /dev/null and b/blockchains/binance/assets/TAUDB-888/logo.png differ diff --git a/blockchains/binance/assets/TBC-3A7/info.json b/blockchains/binance/assets/TBC-3A7/info.json new file mode 100644 index 00000000..07373003 --- /dev/null +++ b/blockchains/binance/assets/TBC-3A7/info.json @@ -0,0 +1,11 @@ +{ + "name": "TBCC Coin", + "symbol": "TBC", + "type": "BEP2", + "decimals": 8, + "description": "Convenient and versatile decentralized solution for contactless cryptocurrency trading. Cross-network exchange of cryptocurrencies between users. The exchange takes place even in various blockchain networks.", + "website": "https://tbccwallet.com/", + "explorer": "https://explorer.binance.org/asset/TBC-3A7", + "status": "active", + "id": "TBC-3A7" +} \ No newline at end of file diff --git a/blockchains/binance/assets/TBC-3A7/logo.png b/blockchains/binance/assets/TBC-3A7/logo.png new file mode 100644 index 00000000..76e73b65 Binary files /dev/null and b/blockchains/binance/assets/TBC-3A7/logo.png differ diff --git a/blockchains/binance/assets/TCADB-888/info.json b/blockchains/binance/assets/TCADB-888/info.json new file mode 100644 index 00000000..a0fd3dd3 --- /dev/null +++ b/blockchains/binance/assets/TCADB-888/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueCAD", + "symbol": "TCADB", + "type": "BEP2", + "decimals": 8, + "description": "We're on a mission to open access to financial opportunities and global trade", + "website": "https://trusttoken.com", + "explorer": "https://explorer.binance.org/asset/TCADB-888", + "status": "active", + "id": "TCADB-888" +} \ No newline at end of file diff --git a/blockchains/binance/assets/TCADB-888/logo.png b/blockchains/binance/assets/TCADB-888/logo.png new file mode 100644 index 00000000..ae15fd5f Binary files /dev/null and b/blockchains/binance/assets/TCADB-888/logo.png differ diff --git a/blockchains/binance/assets/TCT-826/info.json b/blockchains/binance/assets/TCT-826/info.json new file mode 100644 index 00000000..d7fa4cb0 --- /dev/null +++ b/blockchains/binance/assets/TCT-826/info.json @@ -0,0 +1,12 @@ +{ + "name": "TokenClub", + "website": "http://www.tokenclub.com", + "description": "TokenClub provides investors with one-stop services, and aims at building an autonomous, trusting, and efficient investor community.", + "explorer": "https://explorer.binance.org/asset/TCT-826", + "research": "https://research.binance.com/en/projects/tokenclub", + "type": "BEP2", + "symbol": "TCT", + "decimals": 8, + "status": "active", + "id": "TCT-826" +} \ No newline at end of file diff --git a/blockchains/binance/assets/TCT-826/logo.png b/blockchains/binance/assets/TCT-826/logo.png new file mode 100644 index 00000000..45407627 Binary files /dev/null and b/blockchains/binance/assets/TCT-826/logo.png differ diff --git a/blockchains/binance/assets/TGBPB-888/info.json b/blockchains/binance/assets/TGBPB-888/info.json new file mode 100644 index 00000000..59558149 --- /dev/null +++ b/blockchains/binance/assets/TGBPB-888/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueGBP", + "symbol": "TGBPB", + "type": "BEP2", + "decimals": 8, + "description": "Tokenized version of the GBP.", + "website": "http://trusttoken.com/", + "explorer": "https://explorer.binance.org/asset/TGBPB-888", + "status": "active", + "id": "TGBPB-888" +} \ No newline at end of file diff --git a/blockchains/binance/assets/TGBPB-888/logo.png b/blockchains/binance/assets/TGBPB-888/logo.png new file mode 100644 index 00000000..daf71085 Binary files /dev/null and b/blockchains/binance/assets/TGBPB-888/logo.png differ diff --git a/blockchains/binance/assets/THKDB-888/info.json b/blockchains/binance/assets/THKDB-888/info.json new file mode 100644 index 00000000..01654b4d --- /dev/null +++ b/blockchains/binance/assets/THKDB-888/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueHKD", + "symbol": "THKDB", + "type": "BEP2", + "decimals": 8, + "description": "The leading stablecoin backed by the Hong Kong dollar.", + "website": "https://trusttoken.com/", + "explorer": "https://explorer.binance.org/asset/THKDB-888", + "status": "active", + "id": "THKDB-888" +} \ No newline at end of file diff --git a/blockchains/binance/assets/THKDB-888/logo.png b/blockchains/binance/assets/THKDB-888/logo.png new file mode 100644 index 00000000..1234ec7f Binary files /dev/null and b/blockchains/binance/assets/THKDB-888/logo.png differ diff --git a/blockchains/binance/assets/TM2-0C4/info.json b/blockchains/binance/assets/TM2-0C4/info.json new file mode 100644 index 00000000..12a2699c --- /dev/null +++ b/blockchains/binance/assets/TM2-0C4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Traxia 2", + "symbol": "TM2", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/TM2-0C4", + "status": "active", + "id": "TM2-0C4" +} \ No newline at end of file diff --git a/blockchains/binance/assets/TM2-0C4/logo.png b/blockchains/binance/assets/TM2-0C4/logo.png new file mode 100644 index 00000000..c69eff62 Binary files /dev/null and b/blockchains/binance/assets/TM2-0C4/logo.png differ diff --git a/blockchains/binance/assets/TOMOB-4BC/info.json b/blockchains/binance/assets/TOMOB-4BC/info.json new file mode 100644 index 00000000..5ffca0e2 --- /dev/null +++ b/blockchains/binance/assets/TOMOB-4BC/info.json @@ -0,0 +1,11 @@ +{ + "name": "TomoChain", + "symbol": "TOMOB", + "type": "BEP2", + "decimals": 8, + "description": "TomoChain is a scalable blockchain-powered via Proof-of-Stake Voting consensus which is used commercially by companies globally.", + "website": "https://tomochain.com/", + "explorer": "https://explorer.binance.org/asset/TOMOB-4BC", + "status": "active", + "id": "TOMOB-4BC" +} \ No newline at end of file diff --git a/blockchains/binance/assets/TOMOB-4BC/logo.png b/blockchains/binance/assets/TOMOB-4BC/logo.png new file mode 100644 index 00000000..9b00b4c7 Binary files /dev/null and b/blockchains/binance/assets/TOMOB-4BC/logo.png differ diff --git a/blockchains/binance/assets/TOP-491/info.json b/blockchains/binance/assets/TOP-491/info.json new file mode 100644 index 00000000..2cc20725 --- /dev/null +++ b/blockchains/binance/assets/TOP-491/info.json @@ -0,0 +1,11 @@ +{ + "name": "TOP Network", + "symbol": "TOP", + "type": "BEP2", + "decimals": 8, + "description": "TOP Network is a decentralized open communication network that provides cloud communication services on the blockchain.", + "website": "https://www.topnetwork.org/", + "explorer": "https://explorer.binance.org/asset/TOP-491", + "status": "active", + "id": "TOP-491" +} \ No newline at end of file diff --git a/blockchains/binance/assets/TOP-491/logo.png b/blockchains/binance/assets/TOP-491/logo.png new file mode 100644 index 00000000..81062cad Binary files /dev/null and b/blockchains/binance/assets/TOP-491/logo.png differ diff --git a/blockchains/binance/assets/TROY-9B8/info.json b/blockchains/binance/assets/TROY-9B8/info.json new file mode 100644 index 00000000..4c9601b8 --- /dev/null +++ b/blockchains/binance/assets/TROY-9B8/info.json @@ -0,0 +1,11 @@ +{ + "name": "TROY", + "symbol": "TROY", + "type": "BEP2", + "decimals": 8, + "description": "Troy Trade is a global prime broker specialized in crypto trading and asset management.", + "website": "https://troytrade.com", + "explorer": "https://explorer.binance.org/asset/TROY-9B8", + "status": "active", + "id": "TROY-9B8" +} \ No newline at end of file diff --git a/blockchains/binance/assets/TROY-9B8/logo.png b/blockchains/binance/assets/TROY-9B8/logo.png new file mode 100644 index 00000000..6438a182 Binary files /dev/null and b/blockchains/binance/assets/TROY-9B8/logo.png differ diff --git a/blockchains/binance/assets/TRUE-D84/info.json b/blockchains/binance/assets/TRUE-D84/info.json new file mode 100644 index 00000000..39dfb4ff --- /dev/null +++ b/blockchains/binance/assets/TRUE-D84/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueChain", + "symbol": "TRUE", + "type": "BEP2", + "decimals": 8, + "description": "With the digital advertising becoming a preserve for the affluent multinationals, True Chain (TRUE) seeks to give small and medium size business a say in the industry.", + "website": "http://www.truechain.pro/", + "explorer": "https://explorer.binance.org/asset/TRUE-D84", + "status": "active", + "id": "TRUE-D84" +} \ No newline at end of file diff --git a/blockchains/binance/assets/TRUE-D84/logo.png b/blockchains/binance/assets/TRUE-D84/logo.png new file mode 100644 index 00000000..f1acf785 Binary files /dev/null and b/blockchains/binance/assets/TRUE-D84/logo.png differ diff --git a/blockchains/binance/assets/TRXB-2E6/info.json b/blockchains/binance/assets/TRXB-2E6/info.json new file mode 100644 index 00000000..152cfbd2 --- /dev/null +++ b/blockchains/binance/assets/TRXB-2E6/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRXB", + "symbol": "TRXB", + "type": "BEP2", + "decimals": 8, + "description": "TRON is a dedicated to build the infrastructure for a truly decentralized Internet.", + "website": "https://tron.network/", + "explorer": "https://explorer.binance.org/asset/TRXB-2E6", + "status": "active", + "id": "TRXB-2E6" +} \ No newline at end of file diff --git a/blockchains/binance/assets/TRXB-2E6/logo.png b/blockchains/binance/assets/TRXB-2E6/logo.png new file mode 100644 index 00000000..74ec9785 Binary files /dev/null and b/blockchains/binance/assets/TRXB-2E6/logo.png differ diff --git a/blockchains/binance/assets/TUSDB-888/info.json b/blockchains/binance/assets/TUSDB-888/info.json new file mode 100644 index 00000000..1f276a59 --- /dev/null +++ b/blockchains/binance/assets/TUSDB-888/info.json @@ -0,0 +1,32 @@ +{ + "name": "TrueUSD", + "symbol": "TUSDB", + "type": "BEP2", + "decimals": 8, + "description": "TrueUSD (TUSD) is the first independently-verified digital asset redeemable 1-for-1 for US Dollars.", + "website": "https://www.trueusd.com/", + "explorer": "https://explorer.binance.org/asset/TUSDB-888", + "status": "active", + "id": "TUSDB-888", + "tags": [ + "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": "coingecko", + "url": "https://coingecko.com/en/coins/true-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/binance/assets/TUSDB-888/logo.png b/blockchains/binance/assets/TUSDB-888/logo.png new file mode 100644 index 00000000..0ae677cd Binary files /dev/null and b/blockchains/binance/assets/TUSDB-888/logo.png differ diff --git a/blockchains/binance/assets/TWT-8C2/info.json b/blockchains/binance/assets/TWT-8C2/info.json new file mode 100644 index 00000000..0af01387 --- /dev/null +++ b/blockchains/binance/assets/TWT-8C2/info.json @@ -0,0 +1,26 @@ +{ + "name": "Trust Wallet", + "website": "https://trustwallet.com", + "description": "Utility token to increase adoption of cryptocurrency.", + "explorer": "https://explorer.binance.org/asset/TWT-8C2", + "research": "https://research.binance.com/en/projects/trustwallet", + "type": "BEP2", + "symbol": "TWT", + "decimals": 8, + "status": "active", + "id": "TWT-8C2", + "links": [ + { + "name": "github", + "url": "https://github.com/trustwallet" + }, + { + "name": "x", + "url": "https://x.com/trustwallet" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/trustapp" + } + ] +} \ No newline at end of file diff --git a/blockchains/binance/assets/TWT-8C2/logo.png b/blockchains/binance/assets/TWT-8C2/logo.png new file mode 100644 index 00000000..276a83ba Binary files /dev/null and b/blockchains/binance/assets/TWT-8C2/logo.png differ diff --git a/blockchains/binance/assets/UGAS-B0C/info.json b/blockchains/binance/assets/UGAS-B0C/info.json new file mode 100644 index 00000000..a3b99b75 --- /dev/null +++ b/blockchains/binance/assets/UGAS-B0C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ultrain Coin", + "symbol": "UGAS", + "type": "BEP2", + "decimals": 8, + "description": "Ultrain is committed to construct a responsible and sustainable commercial ecosystem that enables all industrial applications.", + "website": "https://www.ultrain.io/", + "explorer": "https://explorer.binance.org/asset/UGAS-B0C", + "status": "active", + "id": "UGAS-B0C" +} \ No newline at end of file diff --git a/blockchains/binance/assets/UGAS-B0C/logo.png b/blockchains/binance/assets/UGAS-B0C/logo.png new file mode 100644 index 00000000..1c602150 Binary files /dev/null and b/blockchains/binance/assets/UGAS-B0C/logo.png differ diff --git a/blockchains/binance/assets/UND-EBC/info.json b/blockchains/binance/assets/UND-EBC/info.json new file mode 100644 index 00000000..f9727c9c --- /dev/null +++ b/blockchains/binance/assets/UND-EBC/info.json @@ -0,0 +1,11 @@ +{ + "name": "United Network Distribution", + "symbol": "UND", + "type": "BEP2", + "decimals": 8, + "description": "$FUND token holders can securely delegate $FUND to nodes who will stake these for you and share a commission % of the rewards accrued for running the network.", + "website": "http://www.unification.com/", + "explorer": "https://explorer.binance.org/asset/UND-EBC", + "status": "active", + "id": "UND-EBC" +} \ No newline at end of file diff --git a/blockchains/binance/assets/UND-EBC/logo.png b/blockchains/binance/assets/UND-EBC/logo.png new file mode 100644 index 00000000..88476ae2 Binary files /dev/null and b/blockchains/binance/assets/UND-EBC/logo.png differ diff --git a/blockchains/binance/assets/UNFI-FB7/info.json b/blockchains/binance/assets/UNFI-FB7/info.json new file mode 100644 index 00000000..612e0fc9 --- /dev/null +++ b/blockchains/binance/assets/UNFI-FB7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Uniswap Finance", + "type": "BEP2", + "symbol": "UNFI-FB7", + "decimals": 8, + "website": "", + "description": "-", + "explorer": "https://explorer.binance.org/asset/UNFI-FB7", + "status": "active", + "id": "UNFI-FB7" +} \ No newline at end of file diff --git a/blockchains/binance/assets/UNFI-FB7/logo.png b/blockchains/binance/assets/UNFI-FB7/logo.png new file mode 100644 index 00000000..fb4c89f2 Binary files /dev/null and b/blockchains/binance/assets/UNFI-FB7/logo.png differ diff --git a/blockchains/binance/assets/UNI-DD8/info.json b/blockchains/binance/assets/UNI-DD8/info.json new file mode 100644 index 00000000..ad727d8a --- /dev/null +++ b/blockchains/binance/assets/UNI-DD8/info.json @@ -0,0 +1,12 @@ +{ + "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://explorer.binance.org/asset/UNI-DD8", + "research": "https://research.binance.com/en/projects/uniswap", + "type": "BEP2", + "symbol": "UNI", + "decimals": 8, + "status": "active", + "id": "UNI-DD8" +} \ No newline at end of file diff --git a/blockchains/binance/assets/UNI-DD8/logo.png b/blockchains/binance/assets/UNI-DD8/logo.png new file mode 100644 index 00000000..893ef55c Binary files /dev/null and b/blockchains/binance/assets/UNI-DD8/logo.png differ diff --git a/blockchains/binance/assets/UPX-F3E/info.json b/blockchains/binance/assets/UPX-F3E/info.json new file mode 100644 index 00000000..3222ae34 --- /dev/null +++ b/blockchains/binance/assets/UPX-F3E/info.json @@ -0,0 +1,11 @@ +{ + "name": "UPX", + "symbol": "UPX", + "type": "BEP2", + "decimals": 8, + "description": "Universal Ðecentralized Asset Platform - a Blockchain Middleware for Tokenizing Everything", + "website": "https://www.udap.io", + "explorer": "https://explorer.binance.org/asset/UPX-F3E", + "status": "active", + "id": "UPX-F3E" +} \ No newline at end of file diff --git a/blockchains/binance/assets/UPX-F3E/logo.png b/blockchains/binance/assets/UPX-F3E/logo.png new file mode 100644 index 00000000..c8f50f0f Binary files /dev/null and b/blockchains/binance/assets/UPX-F3E/logo.png differ diff --git a/blockchains/binance/assets/USDC-CD2/info.json b/blockchains/binance/assets/USDC-CD2/info.json new file mode 100644 index 00000000..b01a4ba0 --- /dev/null +++ b/blockchains/binance/assets/USDC-CD2/info.json @@ -0,0 +1,11 @@ +{ + "name": "USD Coin", + "symbol": "USDC", + "type": "BEP2", + "decimals": 8, + "description": "USDC BEP2 is a token on Binance Chain issued by Binance, where the price is pegged to USDC at a rate of 1 USDC BEP2 = 1 USDC", + "website": "https://binance.org", + "explorer": "https://explorer.binance.org/asset/USDC-CD2", + "status": "active", + "id": "USDC-CD2" +} \ No newline at end of file diff --git a/blockchains/binance/assets/USDC-CD2/logo.png b/blockchains/binance/assets/USDC-CD2/logo.png new file mode 100644 index 00000000..bdf25c4d Binary files /dev/null and b/blockchains/binance/assets/USDC-CD2/logo.png differ diff --git a/blockchains/binance/assets/USDH-5B5/info.json b/blockchains/binance/assets/USDH-5B5/info.json new file mode 100644 index 00000000..23b337d7 --- /dev/null +++ b/blockchains/binance/assets/USDH-5B5/info.json @@ -0,0 +1,11 @@ +{ + "name": "HonestCoin", + "symbol": "USDH", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/USDH-5B5", + "status": "abandoned", + "id": "USDH-5B5" +} \ No newline at end of file diff --git a/blockchains/binance/assets/USDH-5B5/logo.png b/blockchains/binance/assets/USDH-5B5/logo.png new file mode 100644 index 00000000..f6fe4db2 Binary files /dev/null and b/blockchains/binance/assets/USDH-5B5/logo.png differ diff --git a/blockchains/binance/assets/USDSB-1AC/info.json b/blockchains/binance/assets/USDSB-1AC/info.json new file mode 100644 index 00000000..becd60d2 --- /dev/null +++ b/blockchains/binance/assets/USDSB-1AC/info.json @@ -0,0 +1,11 @@ +{ + "name": "USDS", + "symbol": "USDSB", + "type": "BEP2", + "decimals": 8, + "description": "Our mission is to make financial transactions faster, cheaper and more transparent through a Borderless Neobanking platform powered by blockchain, stablecoins and open finance APIs.", + "website": "https://www.stably.io", + "explorer": "https://explorer.binance.org/asset/USDSB-1AC", + "status": "active", + "id": "USDSB-1AC" +} \ No newline at end of file diff --git a/blockchains/binance/assets/USDSB-1AC/logo.png b/blockchains/binance/assets/USDSB-1AC/logo.png new file mode 100644 index 00000000..fb71fe62 Binary files /dev/null and b/blockchains/binance/assets/USDSB-1AC/logo.png differ diff --git a/blockchains/binance/assets/USDT-6D8/info.json b/blockchains/binance/assets/USDT-6D8/info.json new file mode 100644 index 00000000..14c9be1f --- /dev/null +++ b/blockchains/binance/assets/USDT-6D8/info.json @@ -0,0 +1,11 @@ +{ + "name": "USDTBEP2", + "symbol": "USDT", + "type": "BEP2", + "decimals": 8, + "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.binance.org/asset/USDT-6D8", + "status": "active", + "id": "USDT-6D8" +} \ No newline at end of file diff --git a/blockchains/binance/assets/USDT-6D8/logo.png b/blockchains/binance/assets/USDT-6D8/logo.png new file mode 100644 index 00000000..4b302730 Binary files /dev/null and b/blockchains/binance/assets/USDT-6D8/logo.png differ diff --git a/blockchains/binance/assets/VDX-A17/info.json b/blockchains/binance/assets/VDX-A17/info.json new file mode 100644 index 00000000..277af3da --- /dev/null +++ b/blockchains/binance/assets/VDX-A17/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vodi X", + "symbol": "VDX", + "type": "BEP2", + "decimals": 8, + "description": "Vodi X is positioned on the already widely adopted mobile payments application.", + "website": "https://vodix.io/", + "explorer": "https://explorer.binance.org/asset/VDX-A17", + "status": "active", + "id": "VDX-A17" +} \ No newline at end of file diff --git a/blockchains/binance/assets/VDX-A17/logo.png b/blockchains/binance/assets/VDX-A17/logo.png new file mode 100644 index 00000000..847b482e Binary files /dev/null and b/blockchains/binance/assets/VDX-A17/logo.png differ diff --git a/blockchains/binance/assets/VIDT-F53/info.json b/blockchains/binance/assets/VIDT-F53/info.json new file mode 100644 index 00000000..b3484269 --- /dev/null +++ b/blockchains/binance/assets/VIDT-F53/info.json @@ -0,0 +1,11 @@ +{ + "name": "V-ID Token", + "symbol": "VIDT", + "type": "BEP2", + "decimals": 8, + "description": "A hybrid blockchain validation platform, already in use by numerous integrators.", + "website": "https://about.v-id.org/token", + "explorer": "https://explorer.binance.org/asset/VIDT-F53", + "status": "active", + "id": "VIDT-F53" +} \ No newline at end of file diff --git a/blockchains/binance/assets/VIDT-F53/logo.png b/blockchains/binance/assets/VIDT-F53/logo.png new file mode 100644 index 00000000..f76315ce Binary files /dev/null and b/blockchains/binance/assets/VIDT-F53/logo.png differ diff --git a/blockchains/binance/assets/VNDC-DB9/info.json b/blockchains/binance/assets/VNDC-DB9/info.json new file mode 100644 index 00000000..0c751cfd --- /dev/null +++ b/blockchains/binance/assets/VNDC-DB9/info.json @@ -0,0 +1,11 @@ +{ + "name": "VNDC", + "symbol": "VNDC", + "type": "BEP2", + "decimals": 8, + "description": "VNDC is a stablecoin of Vietnam Dong on the blockchain smart contract system, pegged to VND by the rate of 1:1, so that the price of digital currency assets could be stabilised.", + "website": "https://vndc.io/", + "explorer": "https://explorer.binance.org/asset/VNDC-DB9", + "status": "active", + "id": "VNDC-DB9" +} \ No newline at end of file diff --git a/blockchains/binance/assets/VNDC-DB9/logo.png b/blockchains/binance/assets/VNDC-DB9/logo.png new file mode 100644 index 00000000..e2f48cb6 Binary files /dev/null and b/blockchains/binance/assets/VNDC-DB9/logo.png differ diff --git a/blockchains/binance/assets/VOTE-FD4/info.json b/blockchains/binance/assets/VOTE-FD4/info.json new file mode 100644 index 00000000..c044f076 --- /dev/null +++ b/blockchains/binance/assets/VOTE-FD4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vote", + "symbol": "VOTE", + "type": "BEP2", + "decimals": 8, + "description": "Agora is a protocol company built for the purpose of voting, that allows anyone anywhere to vote. It aims to eradicate fraud and corruption, reduce costs, and engage voters in a modern, secure, convenient and accessible way.", + "website": "https://www.agora.vote/", + "explorer": "https://explorer.binance.org/asset/VOTE-FD4", + "status": "active", + "id": "VOTE-FD4" +} \ No newline at end of file diff --git a/blockchains/binance/assets/VOTE-FD4/logo.png b/blockchains/binance/assets/VOTE-FD4/logo.png new file mode 100644 index 00000000..85cff69f Binary files /dev/null and b/blockchains/binance/assets/VOTE-FD4/logo.png differ diff --git a/blockchains/binance/assets/VRAB-B56/info.json b/blockchains/binance/assets/VRAB-B56/info.json new file mode 100644 index 00000000..35b5ba65 --- /dev/null +++ b/blockchains/binance/assets/VRAB-B56/info.json @@ -0,0 +1,11 @@ +{ + "name": "VERA", + "type": "BEP2", + "symbol": "VRAB", + "decimals": 8, + "website": "", + "description": "-", + "explorer": "https://explorer.binance.org/asset/VRAB-B56", + "status": "active", + "id": "VRAB-B56" +} \ No newline at end of file diff --git a/blockchains/binance/assets/VRAB-B56/logo.png b/blockchains/binance/assets/VRAB-B56/logo.png new file mode 100644 index 00000000..dc8ef789 Binary files /dev/null and b/blockchains/binance/assets/VRAB-B56/logo.png differ diff --git a/blockchains/binance/assets/WICC-01D/info.json b/blockchains/binance/assets/WICC-01D/info.json new file mode 100644 index 00000000..ff2dff0e --- /dev/null +++ b/blockchains/binance/assets/WICC-01D/info.json @@ -0,0 +1,11 @@ +{ + "name": "WaykiChain Coin", + "symbol": "WICC", + "type": "BEP2", + "decimals": 8, + "description": "WaykiChain(WICC) is a finance-centric public blockchain that provides decentralized finance infrastructure through core-layer implementation of decentralized exchanges (DEX) and crypto-asset backed stablecoin (WUSD) technologies.", + "website": "http://waykichain.com/", + "explorer": "https://explorer.binance.org/asset/WICC-01D", + "status": "active", + "id": "WICC-01D" +} \ No newline at end of file diff --git a/blockchains/binance/assets/WICC-01D/logo.png b/blockchains/binance/assets/WICC-01D/logo.png new file mode 100644 index 00000000..7cd8c73e Binary files /dev/null and b/blockchains/binance/assets/WICC-01D/logo.png differ diff --git a/blockchains/binance/assets/WINB-41F/info.json b/blockchains/binance/assets/WINB-41F/info.json new file mode 100644 index 00000000..9a728581 --- /dev/null +++ b/blockchains/binance/assets/WINB-41F/info.json @@ -0,0 +1,11 @@ +{ + "name": "WINB", + "symbol": "WINB", + "type": "BEP2", + "decimals": 8, + "description": "WINK describes itself as betting DApp.", + "website": "https://www.wink.org/#/", + "explorer": "https://explorer.binance.org/asset/WINB-41F", + "status": "active", + "id": "WINB-41F" +} \ No newline at end of file diff --git a/blockchains/binance/assets/WINB-41F/logo.png b/blockchains/binance/assets/WINB-41F/logo.png new file mode 100644 index 00000000..981c0e37 Binary files /dev/null and b/blockchains/binance/assets/WINB-41F/logo.png differ diff --git a/blockchains/binance/assets/WISH-2D5/info.json b/blockchains/binance/assets/WISH-2D5/info.json new file mode 100644 index 00000000..79fb65a6 --- /dev/null +++ b/blockchains/binance/assets/WISH-2D5/info.json @@ -0,0 +1,11 @@ +{ + "name": "MyWish", + "symbol": "WISH", + "type": "BEP2", + "decimals": 8, + "description": "Decentralized full cycle platform: Smart contracts creation, Audit, Deployment, Systematic calling on schedule, Execution.", + "website": "https://mywish.io", + "explorer": "https://explorer.binance.org/asset/WISH-2D5", + "status": "active", + "id": "WISH-2D5" +} \ No newline at end of file diff --git a/blockchains/binance/assets/WISH-2D5/logo.png b/blockchains/binance/assets/WISH-2D5/logo.png new file mode 100644 index 00000000..18bdad14 Binary files /dev/null and b/blockchains/binance/assets/WISH-2D5/logo.png differ diff --git a/blockchains/binance/assets/WRX-ED1/info.json b/blockchains/binance/assets/WRX-ED1/info.json new file mode 100644 index 00000000..614dc237 --- /dev/null +++ b/blockchains/binance/assets/WRX-ED1/info.json @@ -0,0 +1,30 @@ +{ + "name": "WazirX Token", + "website": "https://wazirx.com", + "description": "The WRX token is used for trading fee discounts, WRX Trade Mining (unlock and earn WRX tokens by performing trades), paying for margin fees, and more.", + "explorer": "https://explorer.binance.org/asset/WRX-ED1", + "research": "https://research.binance.com/en/projects/wazirx", + "type": "BEP2", + "symbol": "WRX", + "decimals": 8, + "status": "active", + "id": "WRX-ED1", + "links": [ + { + "name": "whitepaper", + "url": "https://download.wazirx.com/wrx/wrx-whitepaper.pdf" + }, + { + "name": "x", + "url": "https://x.com/wazirxindiap" + }, + { + "name": "facebook", + "url": "https://facebook.com/wazirx" + }, + { + "name": "github", + "url": "https://github.com/wazirx" + } + ] +} \ No newline at end of file diff --git a/blockchains/binance/assets/WRX-ED1/logo.png b/blockchains/binance/assets/WRX-ED1/logo.png new file mode 100644 index 00000000..d5740aec Binary files /dev/null and b/blockchains/binance/assets/WRX-ED1/logo.png differ diff --git a/blockchains/binance/assets/XBASE-CD2/info.json b/blockchains/binance/assets/XBASE-CD2/info.json new file mode 100644 index 00000000..a09d8dde --- /dev/null +++ b/blockchains/binance/assets/XBASE-CD2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eterbase Coin", + "symbol": "XBASE", + "type": "BEP2", + "decimals": 8, + "description": "ETERBASE describes itself as a cryptocurrency exchange platform with a focus on crypto to SEPA integration (via individual IBAN accounts), multi-asset support, and regulatory compliance.", + "website": "https://www.eterbase.com/", + "explorer": "https://explorer.binance.org/asset/XBASE-CD2", + "status": "active", + "id": "XBASE-CD2" +} \ No newline at end of file diff --git a/blockchains/binance/assets/XBASE-CD2/logo.png b/blockchains/binance/assets/XBASE-CD2/logo.png new file mode 100644 index 00000000..4c9a95ac Binary files /dev/null and b/blockchains/binance/assets/XBASE-CD2/logo.png differ diff --git a/blockchains/binance/assets/XNS-760/info.json b/blockchains/binance/assets/XNS-760/info.json new file mode 100644 index 00000000..cbb015be --- /dev/null +++ b/blockchains/binance/assets/XNS-760/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xeonbit Token", + "symbol": "XNS", + "type": "BEP2", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://explorer.binance.org/asset/XNS-760", + "status": "abandoned", + "id": "XNS-760" +} \ No newline at end of file diff --git a/blockchains/binance/assets/XNS-760/logo.png b/blockchains/binance/assets/XNS-760/logo.png new file mode 100644 index 00000000..cad0a958 Binary files /dev/null and b/blockchains/binance/assets/XNS-760/logo.png differ diff --git a/blockchains/binance/assets/XRP-BF2/info.json b/blockchains/binance/assets/XRP-BF2/info.json new file mode 100644 index 00000000..6b20ca02 --- /dev/null +++ b/blockchains/binance/assets/XRP-BF2/info.json @@ -0,0 +1,11 @@ +{ + "name": "XRP BEP2", + "symbol": "XRP", + "type": "BEP2", + "decimals": 8, + "description": "XRP BEP2 (XRP) is a token on Binance Chain issued by Binance, where the price is pegged to XRP at a rate of 1 XRP BEP2 = 1 XRP.", + "website": "https://binance.org", + "explorer": "https://explorer.binance.org/asset/XRP-BF2", + "status": "active", + "id": "XRP-BF2" +} \ No newline at end of file diff --git a/blockchains/binance/assets/XRP-BF2/logo.png b/blockchains/binance/assets/XRP-BF2/logo.png new file mode 100644 index 00000000..4505ee53 Binary files /dev/null and b/blockchains/binance/assets/XRP-BF2/logo.png differ diff --git a/blockchains/binance/assets/XRPBEAR-00B/info.json b/blockchains/binance/assets/XRPBEAR-00B/info.json new file mode 100644 index 00000000..5fc77c95 --- /dev/null +++ b/blockchains/binance/assets/XRPBEAR-00B/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Short XRP Token", + "symbol": "XRPBEAR", + "type": "BEP2", + "decimals": 8, + "description": "3X Short XRP Token (XRPBEAR) is a token which seeks a return that corresponds to -3 times the daily return of XRP.", + "website": "https://ftx.com/", + "explorer": "https://explorer.binance.org/asset/XRPBEAR-00B", + "status": "active", + "id": "XRPBEAR-00B" +} \ No newline at end of file diff --git a/blockchains/binance/assets/XRPBEAR-00B/logo.png b/blockchains/binance/assets/XRPBEAR-00B/logo.png new file mode 100644 index 00000000..e6bd5c3c Binary files /dev/null and b/blockchains/binance/assets/XRPBEAR-00B/logo.png differ diff --git a/blockchains/binance/assets/XRPBULL-E7C/info.json b/blockchains/binance/assets/XRPBULL-E7C/info.json new file mode 100644 index 00000000..98b4531c --- /dev/null +++ b/blockchains/binance/assets/XRPBULL-E7C/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Long XRP Token", + "symbol": "XRPBULL", + "type": "BEP2", + "decimals": 8, + "description": "3X Long XRP Token (XRPBULL) is an ERC20 token which seeks a return that corresponds to 3 times the daily return of XRP.", + "website": "https://ftx.com/tokens/XRPBULL", + "explorer": "https://explorer.binance.org/asset/XRPBULL-E7C", + "status": "active", + "id": "XRPBULL-E7C" +} \ No newline at end of file diff --git a/blockchains/binance/assets/XRPBULL-E7C/logo.png b/blockchains/binance/assets/XRPBULL-E7C/logo.png new file mode 100644 index 00000000..18f97e74 Binary files /dev/null and b/blockchains/binance/assets/XRPBULL-E7C/logo.png differ diff --git a/blockchains/binance/assets/XTZ-F7A/info.json b/blockchains/binance/assets/XTZ-F7A/info.json new file mode 100644 index 00000000..620a7983 --- /dev/null +++ b/blockchains/binance/assets/XTZ-F7A/info.json @@ -0,0 +1,11 @@ +{ + "name": "XTZ BEP2", + "symbol": "XTZ", + "type": "BEP2", + "decimals": 8, + "description": "XTZ BEP2 (XTZ) is a token on Binance Chain issued by Binance, where the price is pegged to XTZ at a rate of 1 XTZ BEP2 = 1 XTZ.", + "website": "https://binance.org", + "explorer": "https://explorer.binance.org/asset/XTZ-F7A", + "status": "active", + "id": "XTZ-F7A" +} \ No newline at end of file diff --git a/blockchains/binance/assets/XTZ-F7A/logo.png b/blockchains/binance/assets/XTZ-F7A/logo.png new file mode 100644 index 00000000..c1982048 Binary files /dev/null and b/blockchains/binance/assets/XTZ-F7A/logo.png differ diff --git a/blockchains/binance/assets/XVS-795/info.json b/blockchains/binance/assets/XVS-795/info.json new file mode 100644 index 00000000..43eff7da --- /dev/null +++ b/blockchains/binance/assets/XVS-795/info.json @@ -0,0 +1,11 @@ +{ + "name": "Venus", + "type": "BEP2", + "symbol": "XVS", + "decimals": 8, + "website": "", + "description": "-", + "explorer": "https://explorer.binance.org/asset/XVS-795", + "status": "active", + "id": "XVS-795" +} \ No newline at end of file diff --git a/blockchains/binance/assets/XVS-795/logo.png b/blockchains/binance/assets/XVS-795/logo.png new file mode 100644 index 00000000..008d2243 Binary files /dev/null and b/blockchains/binance/assets/XVS-795/logo.png differ diff --git a/blockchains/binance/assets/YFI-1A4/info.json b/blockchains/binance/assets/YFI-1A4/info.json new file mode 100644 index 00000000..4e6e618b --- /dev/null +++ b/blockchains/binance/assets/YFI-1A4/info.json @@ -0,0 +1,11 @@ +{ + "name": "yearnfinance", + "symbol": "YFI", + "type": "BEP2", + "decimals": 8, + "description": "YFI BEP2 is a token on Binance Chain issued by Binance, where the price is pegged to YFI at a rate of 1 YFI BEP2 = 1 YFI", + "website": "https://binance.org", + "explorer": "https://explorer.binance.org/asset/YFI-1A4", + "status": "active", + "id": "YFI-1A4" +} \ No newline at end of file diff --git a/blockchains/binance/assets/YFI-1A4/logo.png b/blockchains/binance/assets/YFI-1A4/logo.png new file mode 100644 index 00000000..7dcbd889 Binary files /dev/null and b/blockchains/binance/assets/YFI-1A4/logo.png differ diff --git a/blockchains/binance/assets/YFII-061/info.json b/blockchains/binance/assets/YFII-061/info.json new file mode 100644 index 00000000..a95c42fc --- /dev/null +++ b/blockchains/binance/assets/YFII-061/info.json @@ -0,0 +1,11 @@ +{ + "name": "YFIIBEP2", + "symbol": "YFII", + "type": "BEP2", + "decimals": 8, + "description": "YFII BEP2 is a token on Binance Chain issued by Binance, where the price is pegged to YFII at a rate of 1 YFII BEP2 = 1 YFII", + "website": "https://binance.org", + "explorer": "https://explorer.binance.org/asset/YFII-061", + "status": "active", + "id": "YFII-061" +} \ No newline at end of file diff --git a/blockchains/binance/assets/YFII-061/logo.png b/blockchains/binance/assets/YFII-061/logo.png new file mode 100644 index 00000000..7a12bc9c Binary files /dev/null and b/blockchains/binance/assets/YFII-061/logo.png differ diff --git a/blockchains/binance/assets/ZEBI-84F/info.json b/blockchains/binance/assets/ZEBI-84F/info.json new file mode 100644 index 00000000..641ea361 --- /dev/null +++ b/blockchains/binance/assets/ZEBI-84F/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZEBI", + "symbol": "ZEBI", + "type": "BEP2", + "decimals": 8, + "description": "Zebi Public Blockchain (Zebi Mainnet) is a public blockchain designed to be a multi-chain and multi-token platform built on Cosmos", + "website": "https://zebi.io", + "explorer": "https://explorer.binance.org/asset/ZEBI-84F", + "status": "active", + "id": "ZEBI-84F" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ZEBI-84F/logo.png b/blockchains/binance/assets/ZEBI-84F/logo.png new file mode 100644 index 00000000..61da3716 Binary files /dev/null and b/blockchains/binance/assets/ZEBI-84F/logo.png differ diff --git a/blockchains/binance/assets/ZEC-93E/info.json b/blockchains/binance/assets/ZEC-93E/info.json new file mode 100644 index 00000000..c9dd785c --- /dev/null +++ b/blockchains/binance/assets/ZEC-93E/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZECBEP2", + "symbol": "ZEC", + "type": "BEP2", + "decimals": 8, + "description": "ZEC BEP2 is a token on Binance Chain issued by Binance, where the price is pegged to ZEC at a rate of 1 ZEC BEP2 = 1 ZEC", + "website": "https://binance.org", + "explorer": "https://explorer.binance.org/asset/ZEC-93E", + "status": "active", + "id": "ZEC-93E" +} \ No newline at end of file diff --git a/blockchains/binance/assets/ZEC-93E/logo.png b/blockchains/binance/assets/ZEC-93E/logo.png new file mode 100644 index 00000000..6ecf20b8 Binary files /dev/null and b/blockchains/binance/assets/ZEC-93E/logo.png differ diff --git a/blockchains/binance/info/info.json b/blockchains/binance/info/info.json new file mode 100644 index 00000000..7ff0f98c --- /dev/null +++ b/blockchains/binance/info/info.json @@ -0,0 +1,32 @@ +{ + "name": "BNB Beacon Chain", + "website": "https://binance.org/", + "description": "Fast and secure decentralized digital asset exchange. The new crypto currency trading standard is here.", + "explorer": "https://explorer.binance.org/", + "research": "https://research.binance.com/en/projects/bnb", + "symbol": "BNB", + "type": "coin", + "decimals": 8, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/binance-chain/" + }, + { + "name": "x", + "url": "https://x.com/binance_dex" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BinanceExchange" + }, + { + "name": "whitepaper", + "url": "https://www.binance.com/resources/ico/Binance_WhitePaper_en.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/binance/info/logo.png b/blockchains/binance/info/logo.png new file mode 100644 index 00000000..27688c0a Binary files /dev/null and b/blockchains/binance/info/logo.png differ diff --git a/blockchains/binance/info/square_logo.png b/blockchains/binance/info/square_logo.png new file mode 100644 index 00000000..74c6adce Binary files /dev/null and b/blockchains/binance/info/square_logo.png differ diff --git a/blockchains/binance/tokenlist-extended.json b/blockchains/binance/tokenlist-extended.json new file mode 100644 index 00000000..4b3aba58 --- /dev/null +++ b/blockchains/binance/tokenlist-extended.json @@ -0,0 +1,13 @@ +{ + "name": "Trust Wallet: Binance Chain Token List Extended", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-01-31T13:11:43.029652", + "tokens": [ + + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} \ No newline at end of file diff --git a/blockchains/binance/tokenlist.json b/blockchains/binance/tokenlist.json new file mode 100644 index 00000000..f0168c17 --- /dev/null +++ b/blockchains/binance/tokenlist.json @@ -0,0 +1,13 @@ +{ + "name": "Trust Wallet: BNB", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-09-05T14:41:49.306430", + "tokens": [ + + ], + "version": { + "major": 389, + "minor": 0, + "patch": 0 + } +} \ No newline at end of file diff --git a/blockchains/binance/validators/assets/bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg/logo.png b/blockchains/binance/validators/assets/bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg/logo.png new file mode 100644 index 00000000..52943487 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg/logo.png differ diff --git a/blockchains/binance/validators/assets/bva139vgg7x68z3z7mjcyg6q02h3y0pvah678vr0y3/logo.png b/blockchains/binance/validators/assets/bva139vgg7x68z3z7mjcyg6q02h3y0pvah678vr0y3/logo.png new file mode 100644 index 00000000..5bb63595 Binary files /dev/null and b/blockchains/binance/validators/assets/bva139vgg7x68z3z7mjcyg6q02h3y0pvah678vr0y3/logo.png differ diff --git a/blockchains/binance/validators/assets/bva13le7wtdw3kttw0cp30pprq049esmndvdsavysq/logo.png b/blockchains/binance/validators/assets/bva13le7wtdw3kttw0cp30pprq049esmndvdsavysq/logo.png new file mode 100644 index 00000000..3f6ccdcd Binary files /dev/null and b/blockchains/binance/validators/assets/bva13le7wtdw3kttw0cp30pprq049esmndvdsavysq/logo.png differ diff --git a/blockchains/binance/validators/assets/bva142lu7y78yk23cdeujduy9g8gqxp7xl3wrz4ska/logo.png b/blockchains/binance/validators/assets/bva142lu7y78yk23cdeujduy9g8gqxp7xl3wrz4ska/logo.png new file mode 100644 index 00000000..a2060a0a Binary files /dev/null and b/blockchains/binance/validators/assets/bva142lu7y78yk23cdeujduy9g8gqxp7xl3wrz4ska/logo.png differ diff --git a/blockchains/binance/validators/assets/bva16av8zgzpjwlt7m8khwdl69ge0hx865lzq7wu80/logo.png b/blockchains/binance/validators/assets/bva16av8zgzpjwlt7m8khwdl69ge0hx865lzq7wu80/logo.png new file mode 100644 index 00000000..2e417f5b Binary files /dev/null and b/blockchains/binance/validators/assets/bva16av8zgzpjwlt7m8khwdl69ge0hx865lzq7wu80/logo.png differ diff --git a/blockchains/binance/validators/assets/bva16kujlngdxq4pvyf87gpzx2x7ya4lgsz96j0aqt/logo.png b/blockchains/binance/validators/assets/bva16kujlngdxq4pvyf87gpzx2x7ya4lgsz96j0aqt/logo.png new file mode 100644 index 00000000..9c2ed158 Binary files /dev/null and b/blockchains/binance/validators/assets/bva16kujlngdxq4pvyf87gpzx2x7ya4lgsz96j0aqt/logo.png differ diff --git a/blockchains/binance/validators/assets/bva16usf4rcvk9dyzpe8n82gq4nw9x5emlhhs2fftr/logo.png b/blockchains/binance/validators/assets/bva16usf4rcvk9dyzpe8n82gq4nw9x5emlhhs2fftr/logo.png new file mode 100644 index 00000000..04df7170 Binary files /dev/null and b/blockchains/binance/validators/assets/bva16usf4rcvk9dyzpe8n82gq4nw9x5emlhhs2fftr/logo.png differ diff --git a/blockchains/binance/validators/assets/bva16wc0mnv7g3kcvegd0ee5f3u25y05g97w7nqyhz/logo.png b/blockchains/binance/validators/assets/bva16wc0mnv7g3kcvegd0ee5f3u25y05g97w7nqyhz/logo.png new file mode 100644 index 00000000..3c5033ac Binary files /dev/null and b/blockchains/binance/validators/assets/bva16wc0mnv7g3kcvegd0ee5f3u25y05g97w7nqyhz/logo.png differ diff --git a/blockchains/binance/validators/assets/bva18w9m90ksmcnsw6rd2kwpd74m4l5agkc68su3et/logo.png b/blockchains/binance/validators/assets/bva18w9m90ksmcnsw6rd2kwpd74m4l5agkc68su3et/logo.png new file mode 100644 index 00000000..91722037 Binary files /dev/null and b/blockchains/binance/validators/assets/bva18w9m90ksmcnsw6rd2kwpd74m4l5agkc68su3et/logo.png differ diff --git a/blockchains/binance/validators/assets/bva18wgcs0k0glcmaxreweyeydu9mudtsftcxpkt4n/logo.png b/blockchains/binance/validators/assets/bva18wgcs0k0glcmaxreweyeydu9mudtsftcxpkt4n/logo.png new file mode 100644 index 00000000..95bde921 Binary files /dev/null and b/blockchains/binance/validators/assets/bva18wgcs0k0glcmaxreweyeydu9mudtsftcxpkt4n/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1a7n56r44h4tlgrk3mazxx6cavhgpkrm7a8p6g4/logo.png b/blockchains/binance/validators/assets/bva1a7n56r44h4tlgrk3mazxx6cavhgpkrm7a8p6g4/logo.png new file mode 100644 index 00000000..ed13bb26 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1a7n56r44h4tlgrk3mazxx6cavhgpkrm7a8p6g4/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1ah8tgrjj5zes0rt5y6gc6m3zr5zwayt6nzaghh/logo.png b/blockchains/binance/validators/assets/bva1ah8tgrjj5zes0rt5y6gc6m3zr5zwayt6nzaghh/logo.png new file mode 100644 index 00000000..976a545f Binary files /dev/null and b/blockchains/binance/validators/assets/bva1ah8tgrjj5zes0rt5y6gc6m3zr5zwayt6nzaghh/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1asktsxqny35hwxltpzqsvr64s5vr2ph2t2vlnw/logo.png b/blockchains/binance/validators/assets/bva1asktsxqny35hwxltpzqsvr64s5vr2ph2t2vlnw/logo.png new file mode 100644 index 00000000..02e0dc37 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1asktsxqny35hwxltpzqsvr64s5vr2ph2t2vlnw/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png b/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png new file mode 100644 index 00000000..f5f3ada9 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1ds4jdqh2mh6qczwur2nrx22l53kwt4eellrgyz/logo.png b/blockchains/binance/validators/assets/bva1ds4jdqh2mh6qczwur2nrx22l53kwt4eellrgyz/logo.png new file mode 100644 index 00000000..bd841012 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1ds4jdqh2mh6qczwur2nrx22l53kwt4eellrgyz/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1fjtft76yv69d9e00ey9a5ud0aa23z6yu4m2jch/logo.png b/blockchains/binance/validators/assets/bva1fjtft76yv69d9e00ey9a5ud0aa23z6yu4m2jch/logo.png new file mode 100644 index 00000000..8fc3c244 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1fjtft76yv69d9e00ey9a5ud0aa23z6yu4m2jch/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1ghewcuxuunp4g0xj6yznnk6j2ccgxxhtf6h0r2/logo.png b/blockchains/binance/validators/assets/bva1ghewcuxuunp4g0xj6yznnk6j2ccgxxhtf6h0r2/logo.png new file mode 100644 index 00000000..c2cea99e Binary files /dev/null and b/blockchains/binance/validators/assets/bva1ghewcuxuunp4g0xj6yznnk6j2ccgxxhtf6h0r2/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1gz3mdtzsznsrs7d3hr6gjusfh22tr59qf4rtzp/logo.png b/blockchains/binance/validators/assets/bva1gz3mdtzsznsrs7d3hr6gjusfh22tr59qf4rtzp/logo.png new file mode 100644 index 00000000..7f1aa1e3 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1gz3mdtzsznsrs7d3hr6gjusfh22tr59qf4rtzp/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1jdv73wa8u9wya5zgwj3tgddeuwc432f8ex0j74/logo.png b/blockchains/binance/validators/assets/bva1jdv73wa8u9wya5zgwj3tgddeuwc432f8ex0j74/logo.png new file mode 100644 index 00000000..32bff0a7 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1jdv73wa8u9wya5zgwj3tgddeuwc432f8ex0j74/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1jh99vrdj0g3n2snrelzrh45s7cs7usqr3x40kk/logo.png b/blockchains/binance/validators/assets/bva1jh99vrdj0g3n2snrelzrh45s7cs7usqr3x40kk/logo.png new file mode 100644 index 00000000..c804c9e6 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1jh99vrdj0g3n2snrelzrh45s7cs7usqr3x40kk/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1krd023w6ptjs388fgkw7futq4fmzkscrmr0hg5/logo.png b/blockchains/binance/validators/assets/bva1krd023w6ptjs388fgkw7futq4fmzkscrmr0hg5/logo.png new file mode 100644 index 00000000..3266b3c6 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1krd023w6ptjs388fgkw7futq4fmzkscrmr0hg5/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r/logo.png b/blockchains/binance/validators/assets/bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r/logo.png new file mode 100644 index 00000000..5d267ae6 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1m02zrj77ahdz3597nscq7a6dhxnwsuutsljcvj/logo.png b/blockchains/binance/validators/assets/bva1m02zrj77ahdz3597nscq7a6dhxnwsuutsljcvj/logo.png new file mode 100644 index 00000000..4bd9e376 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1m02zrj77ahdz3597nscq7a6dhxnwsuutsljcvj/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1m3nj2sglp7mlz3y08qjlqyhycenz8m9cl4h4ht/logo.png b/blockchains/binance/validators/assets/bva1m3nj2sglp7mlz3y08qjlqyhycenz8m9cl4h4ht/logo.png new file mode 100644 index 00000000..0164dd7d Binary files /dev/null and b/blockchains/binance/validators/assets/bva1m3nj2sglp7mlz3y08qjlqyhycenz8m9cl4h4ht/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 00000000..a907d86b Binary files /dev/null and b/blockchains/binance/validators/assets/bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1nwyq37v4f02wu7zkc2rsynn8y7hh97ura39qyf/logo.png b/blockchains/binance/validators/assets/bva1nwyq37v4f02wu7zkc2rsynn8y7hh97ura39qyf/logo.png new file mode 100644 index 00000000..63d38629 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1nwyq37v4f02wu7zkc2rsynn8y7hh97ura39qyf/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1r3g3akxj46p85tye2vjy64tal9ql2hyce4y4d3/logo.png b/blockchains/binance/validators/assets/bva1r3g3akxj46p85tye2vjy64tal9ql2hyce4y4d3/logo.png new file mode 100644 index 00000000..7da7d355 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1r3g3akxj46p85tye2vjy64tal9ql2hyce4y4d3/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1r57gcwpa7f0slcef7z8jl7m50e2vmc854wnf7l/logo.png b/blockchains/binance/validators/assets/bva1r57gcwpa7f0slcef7z8jl7m50e2vmc854wnf7l/logo.png new file mode 100644 index 00000000..749d9fc7 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1r57gcwpa7f0slcef7z8jl7m50e2vmc854wnf7l/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1s0ntnh523dc2u5ez3dcj2t34k2x7y60cue46rt/logo.png b/blockchains/binance/validators/assets/bva1s0ntnh523dc2u5ez3dcj2t34k2x7y60cue46rt/logo.png new file mode 100644 index 00000000..0292a94c Binary files /dev/null and b/blockchains/binance/validators/assets/bva1s0ntnh523dc2u5ez3dcj2t34k2x7y60cue46rt/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 00000000..8ebdc302 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1t42gtf6hawqgpmdpjzmvlzvmlttlqtkvlmgjxt/logo.png b/blockchains/binance/validators/assets/bva1t42gtf6hawqgpmdpjzmvlzvmlttlqtkvlmgjxt/logo.png new file mode 100755 index 00000000..17a26fc5 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1t42gtf6hawqgpmdpjzmvlzvmlttlqtkvlmgjxt/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1vr8d0kzvnkfgxl4980udka8psdj7434zxjezuq/logo.png b/blockchains/binance/validators/assets/bva1vr8d0kzvnkfgxl4980udka8psdj7434zxjezuq/logo.png new file mode 100644 index 00000000..10058c1b Binary files /dev/null and b/blockchains/binance/validators/assets/bva1vr8d0kzvnkfgxl4980udka8psdj7434zxjezuq/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1we4frydjkyejdzp506gzpljaqpqu5fs0flu60p/logo.png b/blockchains/binance/validators/assets/bva1we4frydjkyejdzp506gzpljaqpqu5fs0flu60p/logo.png new file mode 100644 index 00000000..68e8a348 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1we4frydjkyejdzp506gzpljaqpqu5fs0flu60p/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1wlrgdtdu2fs2555ed3qdg3e74ayhdtmavy3pg2/logo.png b/blockchains/binance/validators/assets/bva1wlrgdtdu2fs2555ed3qdg3e74ayhdtmavy3pg2/logo.png new file mode 100644 index 00000000..750720e0 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1wlrgdtdu2fs2555ed3qdg3e74ayhdtmavy3pg2/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1xnudjls7x4p48qrk0j247htt7rl2k2dzp3mr3j/logo.png b/blockchains/binance/validators/assets/bva1xnudjls7x4p48qrk0j247htt7rl2k2dzp3mr3j/logo.png new file mode 100644 index 00000000..22118303 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1xnudjls7x4p48qrk0j247htt7rl2k2dzp3mr3j/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1yck3fkt2ltedev80skwjdmtfftv2lvpzfwmzfl/logo.png b/blockchains/binance/validators/assets/bva1yck3fkt2ltedev80skwjdmtfftv2lvpzfwmzfl/logo.png new file mode 100644 index 00000000..782ec31b Binary files /dev/null and b/blockchains/binance/validators/assets/bva1yck3fkt2ltedev80skwjdmtfftv2lvpzfwmzfl/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1ygrhjdjfyn2ffh5ha5llf5g6l3wxjt29hz9q4s/logo.png b/blockchains/binance/validators/assets/bva1ygrhjdjfyn2ffh5ha5llf5g6l3wxjt29hz9q4s/logo.png new file mode 100644 index 00000000..13423eda Binary files /dev/null and b/blockchains/binance/validators/assets/bva1ygrhjdjfyn2ffh5ha5llf5g6l3wxjt29hz9q4s/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1z0g0cg8dkgczr6r8t6khva3srn5mwj8w5tlu7h/logo.png b/blockchains/binance/validators/assets/bva1z0g0cg8dkgczr6r8t6khva3srn5mwj8w5tlu7h/logo.png new file mode 100644 index 00000000..21f0f410 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1z0g0cg8dkgczr6r8t6khva3srn5mwj8w5tlu7h/logo.png differ diff --git a/blockchains/binance/validators/list.json b/blockchains/binance/validators/list.json new file mode 100644 index 00000000..61300089 --- /dev/null +++ b/blockchains/binance/validators/list.json @@ -0,0 +1,230 @@ +[ + { + "id": "bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "bva1m02zrj77ahdz3597nscq7a6dhxnwsuutsljcvj", + "name": "Synclub", + "description": "Synclub provides competitive fees to maximize yields and institutional infrastructure to minimize risk.", + "website": "https://synclub.io" + }, + { + "id": "bva16kujlngdxq4pvyf87gpzx2x7ya4lgsz96j0aqt", + "name": "pexmons", + "description": "pexmons validator", + "website": "https://www.binance.org/en/staking/validator/bva16kujlngdxq4pvyf87gpzx2x7ya4lgsz96j0aqt" + }, + { + "id": "bva16av8zgzpjwlt7m8khwdl69ge0hx865lzq7wu80", + "name": "coinlix", + "description": "coinlix validator", + "website": "https://www.binance.org/en/staking/validator/bva16av8zgzpjwlt7m8khwdl69ge0hx865lzq7wu80" + }, + { + "id": "bva1fjtft76yv69d9e00ey9a5ud0aa23z6yu4m2jch", + "name": "namelix", + "description": "namelix validator", + "website": "https://www.binance.org/en/staking/validator/bva1fjtft76yv69d9e00ey9a5ud0aa23z6yu4m2jch" + }, + { + "id": "bva1ah8tgrjj5zes0rt5y6gc6m3zr5zwayt6nzaghh", + "name": "raptoken", + "description": "raptoken validator", + "website": "https://www.binance.org/en/staking/validator/bva1ah8tgrjj5zes0rt5y6gc6m3zr5zwayt6nzaghh" + }, + { + "id": "bva18wgcs0k0glcmaxreweyeydu9mudtsftcxpkt4n", + "name": "fuji", + "description": "fuji validator", + "website": "https://www.binance.org/en/staking/validator/bva18wgcs0k0glcmaxreweyeydu9mudtsftcxpkt4n" + }, + { + "id": "bva1nwyq37v4f02wu7zkc2rsynn8y7hh97ura39qyf", + "name": "piececoin", + "description": "piececoin validator", + "website": "https://www.binance.org/en/staking/validator/bva1nwyq37v4f02wu7zkc2rsynn8y7hh97ura39qyf" + }, + { + "id": "bva18w9m90ksmcnsw6rd2kwpd74m4l5agkc68su3et", + "name": "defibit", + "description": "defibit validator", + "website": "https://www.binance.org/en/staking/validator/bva18w9m90ksmcnsw6rd2kwpd74m4l5agkc68su3et" + }, + { + "id": "bva1yck3fkt2ltedev80skwjdmtfftv2lvpzfwmzfl", + "name": "ciscox", + "description": "ciscox validator", + "website": "https://www.binance.org/en/staking/validator/bva1yck3fkt2ltedev80skwjdmtfftv2lvpzfwmzfl" + }, + { + "id": "bva1krd023w6ptjs388fgkw7futq4fmzkscrmr0hg5", + "name": "leapbnb", + "description": "leapbnb validator", + "website": "https://www.binance.org/en/staking/validator/bva1krd023w6ptjs388fgkw7futq4fmzkscrmr0hg5" + }, + { + "id": "bva1wlrgdtdu2fs2555ed3qdg3e74ayhdtmavy3pg2", + "name": "kita", + "description": "kita validator", + "website": "https://www.binance.org/en/staking/validator/bva1wlrgdtdu2fs2555ed3qdg3e74ayhdtmavy3pg2" + }, + { + "id": "bva1jdv73wa8u9wya5zgwj3tgddeuwc432f8ex0j74", + "name": "Everest", + "description": "Everest validator", + "website": "https://www.binance.org/en/staking/validator/bva1jdv73wa8u9wya5zgwj3tgddeuwc432f8ex0j74" + }, + { + "id": "bva1r57gcwpa7f0slcef7z8jl7m50e2vmc854wnf7l", + "name": "Ararat", + "description": "Ararat validator", + "website": "https://www.binance.org/en/staking/validator/bva1r57gcwpa7f0slcef7z8jl7m50e2vmc854wnf7l" + }, + { + "id": "bva13le7wtdw3kttw0cp30pprq049esmndvdsavysq", + "name": "alps", + "description": "alps validator", + "website": "https://www.binance.org/en/staking/validator/bva13le7wtdw3kttw0cp30pprq049esmndvdsavysq" + }, + { + "id": "bva1ghewcuxuunp4g0xj6yznnk6j2ccgxxhtf6h0r2", + "name": "Seoraksan", + "description": "Seoraksan validator", + "website": "https://www.binance.org/en/staking/validator/bva1ghewcuxuunp4g0xj6yznnk6j2ccgxxhtf6h0r2" + }, + { + "id": "bva1t42gtf6hawqgpmdpjzmvlzvmlttlqtkvlmgjxt", + "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://bscscan.com" + }, + { + "id": "bva1ygrhjdjfyn2ffh5ha5llf5g6l3wxjt29hz9q4s", + "name": "BNB48 Club", + "description": "Makes BNB Holders Happy", + "website": "https://www.bnb48.club" + }, + { + "id": "bva1gz3mdtzsznsrs7d3hr6gjusfh22tr59qf4rtzp", + "name": "James Clerk Maxwell", + "description": "Thoroughly conscious ignorance is the prelude to every real advance in science.", + "website": "https://www.binance.org/en/staking/validator/bva1gz3mdtzsznsrs7d3hr6gjusfh22tr59qf4rtzp" + }, + { + "id": "bva1ds4jdqh2mh6qczwur2nrx22l53kwt4eellrgyz", + "name": "Claude Shannon", + "description": "Information matters.", + "website": "https://www.binance.org/en/staking/validator/bva1ds4jdqh2mh6qczwur2nrx22l53kwt4eellrgyz" + }, + { + "id": "bva16wc0mnv7g3kcvegd0ee5f3u25y05g97w7nqyhz", + "name": "Enrico Fermi", + "description": "Never underestimate the joy people derive from hearing something they already know.", + "website": "https://www.binance.org/en/staking/validator/bva16wc0mnv7g3kcvegd0ee5f3u25y05g97w7nqyhz" + }, + { + "id": "bva1vr8d0kzvnkfgxl4980udka8psdj7434zxjezuq", + "name": "Alan Turing", + "description": "Those who can imagine anything, can create the impossible.", + "website": "https://www.binance.org/en/staking/validator/bva1vr8d0kzvnkfgxl4980udka8psdj7434zxjezuq" + }, + { + "id": "bva1s0ntnh523dc2u5ez3dcj2t34k2x7y60cue46rt", + "name": "Avengers", + "description": "Earth's Mightiest Heroes", + "website": "https://www.binance.org/en/staking/validator/bva1s0ntnh523dc2u5ez3dcj2t34k2x7y60cue46rt" + }, + { + "id": "bva1jh99vrdj0g3n2snrelzrh45s7cs7usqr3x40kk", + "name": "stake2me", + "description": "just stake 2 me", + "website": "https://www.binance.org/en/staking/validator/bva1jh99vrdj0g3n2snrelzrh45s7cs7usqr3x40kk" + }, + { + "id": "bva1xnudjls7x4p48qrk0j247htt7rl2k2dzp3mr3j", + "name": "Ankr", + "description": "Connect to Web3 in minutes", + "website": "https://www.ankr.com/products-staking" + }, + { + "id": "bva1a7n56r44h4tlgrk3mazxx6cavhgpkrm7a8p6g4", + "name": "InfStones", + "description": "Fueling Blockchains, Infinitely", + "website": "https://infstones.com/" + }, + { + "id": "bva1r3g3akxj46p85tye2vjy64tal9ql2hyce4y4d3", + "name": "Burnaby", + "description": "Burnaby validator", + "website": "https://www.binance.org/en/staking/validator/bva1r3g3akxj46p85tye2vjy64tal9ql2hyce4y4d3" + }, + { + "id": "bva1asktsxqny35hwxltpzqsvr64s5vr2ph2t2vlnw", + "name": "C.R.E.A.M.", + "description": "Crypto Rules Everything Around Me", + "website": "https://cream.finance/" + }, + { + "id": "bva142lu7y78yk23cdeujduy9g8gqxp7xl3wrz4ska", + "name": "Legend", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.binance.org/en/staking/validator/bva142lu7y78yk23cdeujduy9g8gqxp7xl3wrz4ska" + }, + { + "id": "bva16usf4rcvk9dyzpe8n82gq4nw9x5emlhhs2fftr", + "name": "Legend II", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.binance.org/en/staking/validator/bva16usf4rcvk9dyzpe8n82gq4nw9x5emlhhs2fftr" + }, + { + "id": "bva1z0g0cg8dkgczr6r8t6khva3srn5mwj8w5tlu7h", + "name": "Legend III", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.binance.org/en/staking/validator/bva1z0g0cg8dkgczr6r8t6khva3srn5mwj8w5tlu7h" + }, + { + "id": "bva1we4frydjkyejdzp506gzpljaqpqu5fs0flu60p", + "name": "Legend IV - Alternate", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/staking/validator/bva1we4frydjkyejdzp506gzpljaqpqu5fs0flu60p" + }, + { + "id": "bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r", + "name": "Legend V - Alternate", + "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", + "description": "Professional Staking+ Ecosystem Service Provider", + "website": "https://www.hashquark.io/" + }, + { + "id": "bva1m3nj2sglp7mlz3y08qjlqyhycenz8m9cl4h4ht", + "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 00000000..77e9f7f8 --- /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 00000000..461dba63 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 00000000..3a84c3b6 --- /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 00000000..45774bb9 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 00000000..e8c062ad --- /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 00000000..7bf5c346 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 00000000..c8d99d33 --- /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 00000000..864b13b3 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 00000000..aba7d246 --- /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 00000000..8e736469 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 00000000..3eb1af0d --- /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 00000000..f2e82f29 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 new file mode 100644 index 00000000..d0eb2d99 --- /dev/null +++ b/blockchains/bitcoin/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Bitcoin", + "website": "https://bitcoin.org", + "description": "Bitcoin is a cryptocurrency and worldwide payment system. It is the first decentralized digital currency, as the system works without a central bank or single administrator.", + "explorer": "https://blockchain.info", + "research": "https://research.binance.com/en/projects/bitcoin", + "symbol": "BTC", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/bitcoin" + }, + { + "name": "x", + "url": "https://x.com/Bitcoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Bitcoin" + }, + { + "name": "whitepaper", + "url": "https://bitcoin.org/bitcoin.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/bitcoin/info/logo.png b/blockchains/bitcoin/info/logo.png new file mode 100644 index 00000000..335d6b7f Binary files /dev/null and b/blockchains/bitcoin/info/logo.png differ diff --git a/blockchains/bitcoin/info/square_logo.png b/blockchains/bitcoin/info/square_logo.png new file mode 100644 index 00000000..29adb63a 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 new file mode 100644 index 00000000..ad11aa79 --- /dev/null +++ b/blockchains/bitcoincash/info/info.json @@ -0,0 +1,29 @@ +{ + "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://blockchair.com/bitcoin-cash", + "research": "https://research.binance.com/en/projects/bitcoin-cash", + "symbol": "BCH", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/bitcoincashorg/" + }, + { + "name": "x", + "url": "https://x.com/BITCOlNCASH" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Bitcoincash" + }, + { + "name": "whitepaper", + "url": "https://www.bitcoincash.org/bitcoin.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/bitcoincash/info/logo.png b/blockchains/bitcoincash/info/logo.png new file mode 100644 index 00000000..e937e267 Binary files /dev/null and b/blockchains/bitcoincash/info/logo.png differ diff --git a/blockchains/bitcoincash/info/square_logo.png b/blockchains/bitcoincash/info/square_logo.png new file mode 100644 index 00000000..018d2137 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 new file mode 100644 index 00000000..c0de273b --- /dev/null +++ b/blockchains/bitcoingold/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Bitcoin Gold", + "website": "https://bitcoingold.org/", + "description": "Bitcoin Gold is a Hard Fork of Bitcoin. BTG implements a new PoW algorithm, Equihash, that makes mining decentralized again with ASIC resistant algorithm.", + "explorer": "https://explorer.bitcoingold.org/insight/", + "research": "https://research.binance.com/en/projects/bitcoin-gold", + "symbol": "BTG", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/BTCGPU/BTCGPU" + }, + { + "name": "x", + "url": "https://x.com/bitcoingold" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BitcoinGoldHQ" + }, + { + "name": "whitepaper", + "url": "https://github.com/BTCGPU/BTCGPU/wiki/Technical-Spec" + } + ] +} \ No newline at end of file diff --git a/blockchains/bitcoingold/info/logo.png b/blockchains/bitcoingold/info/logo.png new file mode 100644 index 00000000..031daca4 Binary files /dev/null and b/blockchains/bitcoingold/info/logo.png differ diff --git a/blockchains/bitcoingold/info/square_logo.png b/blockchains/bitcoingold/info/square_logo.png new file mode 100644 index 00000000..98d5b298 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 00000000..0102d27e --- /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 00000000..0dd3194e 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 00000000..8d9bfb64 --- /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 00000000..d7f5e93d 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 00000000..8b156e84 --- /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 00000000..a3116589 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 00000000..1d052d63 --- /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 00000000..a85442d8 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 00000000..2c553dbd --- /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 00000000..48e5c5ac 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 00000000..5e5d842a --- /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 00000000..0abd2b8e 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 00000000..4607942a --- /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 00000000..7c7d2031 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 00000000..ed2ebac5 --- /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 00000000..cefea3ce 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 00000000..f3344ebe --- /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 00000000..f9328d95 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 00000000..ea64203c --- /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 00000000..e55f481d 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 00000000..ae386e3d --- /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 00000000..ba8cca27 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 00000000..419fb6de --- /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 00000000..85d6d377 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 00000000..f06c2c28 --- /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 00000000..3da09203 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 00000000..9e21d5e4 --- /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 00000000..ff291f49 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 00000000..69c8d380 --- /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 00000000..fd362b75 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 00000000..629b4ca3 --- /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 00000000..98896b17 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 00000000..19c7b2d7 --- /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 00000000..bfc10fb1 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 00000000..44daab45 --- /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 00000000..1e9bc086 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 00000000..c85335bb --- /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 00000000..8076d82c 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 00000000..5ca19e9d --- /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 00000000..07b48f70 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 00000000..b87f1d97 --- /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 00000000..4d7cfc66 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 00000000..89f415e7 --- /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 00000000..4fda4001 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 00000000..e784d0aa --- /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 00000000..702d64a2 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 00000000..67daa180 --- /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 00000000..eb2ba94a 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 00000000..0bd4c775 --- /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 00000000..e421ee61 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 00000000..172d010a --- /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 00000000..d4fa4aaa 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 00000000..01fa4d28 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 new file mode 100644 index 00000000..569d8e57 --- /dev/null +++ b/blockchains/bluzelle/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Bluzelle", + "website": "https://bluzelle.com/", + "description": "Bluzelle is a decentralized data network for dapps to manage data in a secure, tamper-proof, and highly scalable manner.", + "explorer": "http://bigdipper.net.bluzelle.com/", + "research": "https://research.binance.com/en/projects/bluzelle", + "symbol": "BLZ", + "type": "coin", + "decimals": 6, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/bluzelle" + }, + { + "name": "x", + "url": "https://x.com/BluzelleHQ" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Bluzelle/" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.io/document/340/bluzelle-whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/bluzelle/info/logo.png b/blockchains/bluzelle/info/logo.png new file mode 100644 index 00000000..68960764 Binary files /dev/null and b/blockchains/bluzelle/info/logo.png differ diff --git a/blockchains/bluzelle/info/square_logo.png b/blockchains/bluzelle/info/square_logo.png new file mode 100644 index 00000000..23cffaa1 Binary files /dev/null and b/blockchains/bluzelle/info/square_logo.png differ diff --git a/blockchains/bnbt/info/info.json b/blockchains/bnbt/info/info.json new file mode 100644 index 00000000..81ca51ad --- /dev/null +++ b/blockchains/bnbt/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "Binance Smart Chain Testnet", + "website": "https://testnet.binance.org/", + "description": "Fast and secure decentralized digital asset exchange", + "explorer": "https://testnet.bscscan.com", + "symbol": "tBNB", + "rpc_url": "https://data-seed-prebsc-1-s1.binance.org:8545", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/bnbt/info/logo.png b/blockchains/bnbt/info/logo.png new file mode 100644 index 00000000..b331d64d Binary files /dev/null and b/blockchains/bnbt/info/logo.png differ diff --git a/blockchains/bnbt/info/square_logo.png b/blockchains/bnbt/info/square_logo.png new file mode 100644 index 00000000..35b8d54d 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 new file mode 100644 index 00000000..559cc5b4 --- /dev/null +++ b/blockchains/boba/info/info.json @@ -0,0 +1,18 @@ +{ + "name": "Boba", + "website": "https://boba.network", + "description": "Boba Network is an Optimistic Rollup with swap-based onramp, fast exit and cross-chain bridging.", + "explorer": "https://blockexplorer.boba.network/", + "research": "", + "symbol": "BOBAETH", + "type": "coin", + "decimals": 18, + "rpc_url": "https://mainnet.boba.network", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/bobanetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/boba/info/logo.png b/blockchains/boba/info/logo.png new file mode 100644 index 00000000..0f91d9ff Binary files /dev/null and b/blockchains/boba/info/logo.png differ diff --git a/blockchains/boba/info/square_logo.png b/blockchains/boba/info/square_logo.png new file mode 100644 index 00000000..1c357f94 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 00000000..adec0a8e --- /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 00000000..9fcd0e25 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 00000000..c1c7b793 --- /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 00000000..9fa7dad0 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 00000000..bd415a5f --- /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 00000000..4cd00c51 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 00000000..49cb2ac2 --- /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 00000000..3d8d9d46 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 00000000..21c42f64 --- /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 00000000..ce839ee8 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 00000000..6abb6011 --- /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 00000000..2f7732aa 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 00000000..6a4bc5cb --- /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 00000000..b9884ba9 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 00000000..14aa6b36 --- /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 00000000..72bb72a0 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 00000000..1a9ed714 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 00000000..ef1f5528 --- /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 00000000..b1ab6e0c 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 00000000..269e75fe 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 new file mode 100644 index 00000000..0e27a648 --- /dev/null +++ b/blockchains/callisto/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Callisto Network", + "website": "https://callisto.network", + "description": "Callisto Network is a blockchain platform with its own cryptocurrency (CLO) that is based on Ethereum protocol. Callisto Network is developed by Ethereum Commonwealth.", + "explorer": "https://explorer2.callisto.network", + "symbol": "CLO", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/EthereumCommonwealth" + }, + { + "name": "x", + "url": "https://x.com/CallistoSupport" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/CallistoCrypto" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.callisto.network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/callisto/info/logo.png b/blockchains/callisto/info/logo.png new file mode 100644 index 00000000..c59da71c Binary files /dev/null and b/blockchains/callisto/info/logo.png differ diff --git a/blockchains/callisto/info/square_logo.png b/blockchains/callisto/info/square_logo.png new file mode 100644 index 00000000..2881399b 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 00000000..3821eba2 --- /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 00000000..229cbdc6 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 00000000..59b3e599 --- /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 00000000..1c05ab87 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 00000000..6a192838 --- /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 00000000..dab9b67b 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 00000000..0792992b --- /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 00000000..285c0d3c 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 00000000..a7fee529 --- /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 00000000..68d2410a 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 new file mode 100644 index 00000000..04885ab3 --- /dev/null +++ b/blockchains/cardano/info/info.json @@ -0,0 +1,32 @@ +{ + "name": "Cardano", + "website": "https://cardano.org", + "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.", + "explorer": "https://cardanoexplorer.com/", + "research": "https://research.binance.com/en/projects/cardano", + "symbol": "ADA", + "type": "coin", + "decimals": 6, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/input-output-hk/cardano-sl/" + }, + { + "name": "x", + "url": "https://x.com/cardano" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/cardano" + }, + { + "name": "whitepaper", + "url": "https://www.cardano.org/en/academic-papers/" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/info/logo.png b/blockchains/cardano/info/logo.png new file mode 100644 index 00000000..b463a55e Binary files /dev/null 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 00000000..73ce3eea Binary files /dev/null and b/blockchains/cardano/info/square_logo.png differ diff --git a/blockchains/cardano/validators/assets/pool10akpqvczl93ep4rc59c0aqyn3dm0env2ydysuwmdm670wl24pd8/logo.png b/blockchains/cardano/validators/assets/pool10akpqvczl93ep4rc59c0aqyn3dm0env2ydysuwmdm670wl24pd8/logo.png new file mode 100644 index 00000000..82f97abd Binary files /dev/null and b/blockchains/cardano/validators/assets/pool10akpqvczl93ep4rc59c0aqyn3dm0env2ydysuwmdm670wl24pd8/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool10c9l3k0z50ytt4krkfet7w3gwpv9d9nq47kk9ecy2c5f2uyvkgk/logo.png b/blockchains/cardano/validators/assets/pool10c9l3k0z50ytt4krkfet7w3gwpv9d9nq47kk9ecy2c5f2uyvkgk/logo.png new file mode 100644 index 00000000..9e0a327c Binary files /dev/null and b/blockchains/cardano/validators/assets/pool10c9l3k0z50ytt4krkfet7w3gwpv9d9nq47kk9ecy2c5f2uyvkgk/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool12z39rkzfylvn9wfe8j6x9ucq6g2l4mw4azj70y0gd8ejczznyj3/logo.png b/blockchains/cardano/validators/assets/pool12z39rkzfylvn9wfe8j6x9ucq6g2l4mw4azj70y0gd8ejczznyj3/logo.png new file mode 100644 index 00000000..0ebea80d Binary files /dev/null and b/blockchains/cardano/validators/assets/pool12z39rkzfylvn9wfe8j6x9ucq6g2l4mw4azj70y0gd8ejczznyj3/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool15wkxegrfflzcyhurrjxsm9ljqtz09xr5rtnqsarnp7hmsz5um3t/logo.png b/blockchains/cardano/validators/assets/pool15wkxegrfflzcyhurrjxsm9ljqtz09xr5rtnqsarnp7hmsz5um3t/logo.png new file mode 100644 index 00000000..70ee36d1 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool15wkxegrfflzcyhurrjxsm9ljqtz09xr5rtnqsarnp7hmsz5um3t/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool16agnvfan65ypnswgg6rml52lqtcqe5guxltexkn82sqgj2crqtx/logo.png b/blockchains/cardano/validators/assets/pool16agnvfan65ypnswgg6rml52lqtcqe5guxltexkn82sqgj2crqtx/logo.png new file mode 100644 index 00000000..76473481 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool16agnvfan65ypnswgg6rml52lqtcqe5guxltexkn82sqgj2crqtx/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool16fyda57p3c8gp5r6gmcq5tvqsp6mnzwvkxswgznkuh8wztrp6vv/logo.png b/blockchains/cardano/validators/assets/pool16fyda57p3c8gp5r6gmcq5tvqsp6mnzwvkxswgznkuh8wztrp6vv/logo.png new file mode 100644 index 00000000..0354b951 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool16fyda57p3c8gp5r6gmcq5tvqsp6mnzwvkxswgznkuh8wztrp6vv/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool17rjst78s67lvellg8s586rf076jxa3wnsdz730f4xk2zwuhrtej/logo.png b/blockchains/cardano/validators/assets/pool17rjst78s67lvellg8s586rf076jxa3wnsdz730f4xk2zwuhrtej/logo.png new file mode 100644 index 00000000..4602bf67 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool17rjst78s67lvellg8s586rf076jxa3wnsdz730f4xk2zwuhrtej/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 00000000..c2cb86a4 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool194usk2h8vcq6yw89xs5asrvw22g08kcfy72xyfrnnkg6qrhtlfw/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool195gdnmj6smzuakm4etxsxw3fgh8asqc4awtcskpyfnkpcvh2v8t/logo.png b/blockchains/cardano/validators/assets/pool195gdnmj6smzuakm4etxsxw3fgh8asqc4awtcskpyfnkpcvh2v8t/logo.png new file mode 100644 index 00000000..a9332372 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool195gdnmj6smzuakm4etxsxw3fgh8asqc4awtcskpyfnkpcvh2v8t/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool19w5khsnmu27au0kprw0kjm8jr7knneysj7lfkqvnu66hyz0jxsx/logo.png b/blockchains/cardano/validators/assets/pool19w5khsnmu27au0kprw0kjm8jr7knneysj7lfkqvnu66hyz0jxsx/logo.png new file mode 100644 index 00000000..b41947b2 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool19w5khsnmu27au0kprw0kjm8jr7knneysj7lfkqvnu66hyz0jxsx/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 00000000..10205271 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 00000000..f5f3ada9 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1ju8f57hyvaa32tp85r468kuedvmjmcy56f8u9968drea57p50l5/logo.png b/blockchains/cardano/validators/assets/pool1ju8f57hyvaa32tp85r468kuedvmjmcy56f8u9968drea57p50l5/logo.png new file mode 100644 index 00000000..90235397 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1ju8f57hyvaa32tp85r468kuedvmjmcy56f8u9968drea57p50l5/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 00000000..c2cb86a4 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1ljywsch33t7gaf02aeeqkqpuku0ngpwl9fm04t7u5sl5xyunmgp/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1qqqqdktl6pq46td0mwut0qn30g7nlue0sete9wxl0hwsq37wrw8/logo.png b/blockchains/cardano/validators/assets/pool1qqqqdktl6pq46td0mwut0qn30g7nlue0sete9wxl0hwsq37wrw8/logo.png new file mode 100644 index 00000000..e9f1b4d0 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1qqqqdktl6pq46td0mwut0qn30g7nlue0sete9wxl0hwsq37wrw8/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 00000000..f5f3ada9 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1qxpjz94fpwdwnltngf036yjkh63nrl55xkshug56aukqqwn6gsn/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1vx9tzlkgafernd9vpjpxkenutx2gncj4yn88fpq69823qlwcqrt/logo.png b/blockchains/cardano/validators/assets/pool1vx9tzlkgafernd9vpjpxkenutx2gncj4yn88fpq69823qlwcqrt/logo.png new file mode 100644 index 00000000..6ccb375c Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1vx9tzlkgafernd9vpjpxkenutx2gncj4yn88fpq69823qlwcqrt/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 00000000..c2cb86a4 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 00000000..c2cb86a4 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 new file mode 100644 index 00000000..6a365e64 --- /dev/null +++ b/blockchains/cardano/validators/list.json @@ -0,0 +1,110 @@ +[ + { + "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": "pool1qqqqdktl6pq46td0mwut0qn30g7nlue0sete9wxl0hwsq37wrw8", + "name": "Straight Pool", + "description": "", + "website": "https://str8pool.com" + }, + { + "id": "pool16agnvfan65ypnswgg6rml52lqtcqe5guxltexkn82sqgj2crqtx", + "name": "Spire Staking | Top 50 Operator - Pool A", + "description": "", + "website": "https://www.spirestaking.com/" + }, + { + "id": "pool12z39rkzfylvn9wfe8j6x9ucq6g2l4mw4azj70y0gd8ejczznyj3", + "name": "Bravo pool", + "description": "", + "website": "https://bravostakepool.nl/" + }, + { + "id": "pool17rjst78s67lvellg8s586rf076jxa3wnsdz730f4xk2zwuhrtej", + "name": "#2 Nordic Poollub", + "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", + "description": "", + "website": "https://www.stakepool.at/" + }, + { + "id": "pool16fyda57p3c8gp5r6gmcq5tvqsp6mnzwvkxswgznkuh8wztrp6vv", + "name": "Hermes Stakepool Germany #1", + "description": "", + "website": "https://hermespool.jimdofree.com/" + }, + { + "id": "pool195gdnmj6smzuakm4etxsxw3fgh8asqc4awtcskpyfnkpcvh2v8t", + "name": "Sunshine Stake Pool", + "description": "", + "website": "https://sunnyada.io/" + }, + { + "id": "pool1ju8f57hyvaa32tp85r468kuedvmjmcy56f8u9968drea57p50l5", + "name": "Aichi Stake Pool", + "description": "", + "website": "https://aichi-stakepool.com/" + }, + { + "id": "pool15wkxegrfflzcyhurrjxsm9ljqtz09xr5rtnqsarnp7hmsz5um3t", + "name": "Atomic Nodes", + "description": "Atomic Nodes is a multi chain staking operator, trusted by over 200,000 delegators since 2019.", + "website": "https://atomicnodes.com" + }, + { + "id": "pool10c9l3k0z50ytt4krkfet7w3gwpv9d9nq47kk9ecy2c5f2uyvkgk", + "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 00000000..938a577a --- /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 00000000..c6865118 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 00000000..1835aa06 --- /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 00000000..9ce20af1 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 new file mode 100644 index 00000000..60187dc2 --- /dev/null +++ b/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json @@ -0,0 +1,68 @@ +{ + "name": "Axelar", + "type": "CELO", + "symbol": "AXL", + "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.bitquery.io/celo_rc1/token/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f", + "status": "active", + "id": "0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f", + "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" + }, + { + "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/axelar/" + }, + { + "name": "blog", + "url": "https://axelar.network/blog" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Axelarcore" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/logo.png b/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/logo.png new file mode 100644 index 00000000..6c156aba Binary files /dev/null and b/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/logo.png differ diff --git a/blockchains/celo/assets/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9/info.json b/blockchains/celo/assets/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9/info.json new file mode 100644 index 00000000..25e92b0d --- /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 00000000..735c8954 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 00000000..30beaa3f --- /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 00000000..e26310ee 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 00000000..1bd78edb --- /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 00000000..8d0a5572 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 00000000..2b2ca1a3 --- /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 00000000..82d7b7a6 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 00000000..62b4752f --- /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 00000000..218a5c47 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 new file mode 100644 index 00000000..803d7568 --- /dev/null +++ b/blockchains/celo/assets/0x639A647fbe20b6c8ac19E48E2de44ea792c62c5C/info.json @@ -0,0 +1,37 @@ +{ + "name": "beefy.finance", + "symbol": "BIFI", + "type": "CELO", + "decimals": 18, + "description": "The Multichain Yield Optimizer", + "website": "https://beefy.finance/", + "explorer": "https://explorer.bitquery.io/celo_rc1/token/0x639A647fbe20b6c8ac19E48E2de44ea792c62c5C", + "status": "active", + "id": "0x639A647fbe20b6c8ac19E48E2de44ea792c62c5C", + "links": [ + { + "name": "github", + "url": "https://github.com/beefyfinance" + }, + { + "name": "x", + "url": "https://x.com/beefyfinance" + }, + { + "name": "telegram", + "url": "https://t.me/beefyannouncement" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/beefy-finance/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/beefy-finance/" + } + ], + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x639A647fbe20b6c8ac19E48E2de44ea792c62c5C/logo.png b/blockchains/celo/assets/0x639A647fbe20b6c8ac19E48E2de44ea792c62c5C/logo.png new file mode 100644 index 00000000..6c09bb9a Binary files /dev/null and b/blockchains/celo/assets/0x639A647fbe20b6c8ac19E48E2de44ea792c62c5C/logo.png differ diff --git a/blockchains/celo/assets/0x6e512BFC33be36F2666754E996ff103AD1680Cc9/info.json b/blockchains/celo/assets/0x6e512BFC33be36F2666754E996ff103AD1680Cc9/info.json new file mode 100644 index 00000000..72a69b45 --- /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 00000000..148f406c 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 00000000..8e2e5ad9 --- /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 00000000..536d9a58 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 00000000..e49d38ed --- /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 00000000..7978e16a 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 new file mode 100644 index 00000000..2915b3e8 --- /dev/null +++ b/blockchains/celo/assets/0x74c0C58B99b68cF16A717279AC2d056A34ba2bFe/info.json @@ -0,0 +1,28 @@ +{ + "name": "SOURCE", + "website": "https://resource.finance", + "description": "SOURCE is the utility token that powers the ReSource protocol—a DeFi protocol enabling the world’s first on-chain mutual credit economic system.", + "explorer": "https://explorer.bitquery.io/celo_rc1/token/0x74c0c58b99b68cf16a717279ac2d056a34ba2bfe", + "type": "CELO", + "symbol": "SOURCE", + "decimals": 18, + "status": "active", + "id": "0x74c0C58B99b68cF16A717279AC2d056A34ba2bFe", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ReSource_Fi" + }, + { + "name": "telegram", + "url": "https://t.me/theresourcenetwork" + }, + { + "name": "github", + "url": "https://github.com/ReSource-Network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x74c0C58B99b68cF16A717279AC2d056A34ba2bFe/logo.png b/blockchains/celo/assets/0x74c0C58B99b68cF16A717279AC2d056A34ba2bFe/logo.png new file mode 100644 index 00000000..7c604f41 Binary files /dev/null and b/blockchains/celo/assets/0x74c0C58B99b68cF16A717279AC2d056A34ba2bFe/logo.png differ diff --git a/blockchains/celo/assets/0x765DE816845861e75A25fCA122bb6898B8B1282a/info.json b/blockchains/celo/assets/0x765DE816845861e75A25fCA122bb6898B8B1282a/info.json new file mode 100644 index 00000000..ed08d1e3 --- /dev/null +++ b/blockchains/celo/assets/0x765DE816845861e75A25fCA122bb6898B8B1282a/info.json @@ -0,0 +1,40 @@ +{ + "name": "Mento Dollar", + "type": "CELO", + "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", + "links": [ + { + "name": "x", + "url": "https://x.com/mentolabs" + }, + { + "name": "telegram", + "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": "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 new file mode 100644 index 00000000..c0a635d9 Binary files /dev/null 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 00000000..06bb42fa --- /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 00000000..4fe7000a 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 00000000..8c54687a --- /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 00000000..63a54507 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 00000000..a46ac4eb --- /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 00000000..9ce20af1 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 00000000..4211cc59 --- /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 00000000..8881e0ba 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 new file mode 100644 index 00000000..37a106bf --- /dev/null +++ b/blockchains/celo/assets/0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73/info.json @@ -0,0 +1,40 @@ +{ + "name": "Mento Euro", + "type": "CELO", + "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", + "links": [ + { + "name": "x", + "url": "https://x.com/mentolabs" + }, + { + "name": "telegram", + "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": "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 new file mode 100644 index 00000000..8138ede1 Binary files /dev/null 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 00000000..5d169e8e --- /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 00000000..a80af5f1 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 00000000..c84136c4 --- /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 00000000..9ce20af1 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 00000000..d8b03e84 --- /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 00000000..1b1289ec 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 new file mode 100644 index 00000000..53efa2e3 --- /dev/null +++ b/blockchains/celo/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -0,0 +1,69 @@ +{ + "name": "Axelar Wrapped USDC", + "type": "CELO", + "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.bitquery.io/celo_rc1/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/celo/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png b/blockchains/celo/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png new file mode 100644 index 00000000..69911cae Binary files /dev/null and b/blockchains/celo/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/celo/assets/0xb55a79F398E759E43C95b979163f30eC87Ee131D/info.json b/blockchains/celo/assets/0xb55a79F398E759E43C95b979163f30eC87Ee131D/info.json new file mode 100644 index 00000000..246d791c --- /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 00000000..86d93269 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 00000000..dbd0b393 --- /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 00000000..9940370d 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 00000000..5d69d879 --- /dev/null +++ b/blockchains/celo/assets/0xcebA9300f2b948710d2653dD7B07f33A8B32118C/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://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 00000000..eafbaac1 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 new file mode 100644 index 00000000..124bff20 --- /dev/null +++ b/blockchains/celo/assets/0xe8537a3d056DA446677B9E9d6c5dB704EaAb4787/info.json @@ -0,0 +1,40 @@ +{ + "name": "Mento Brazilian Real", + "type": "CELO", + "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", + "links": [ + { + "name": "x", + "url": "https://x.com/mentolabs" + }, + { + "name": "telegram", + "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": "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 new file mode 100644 index 00000000..2efc123e Binary files /dev/null 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 00000000..ab0b5df0 --- /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 00000000..c379ad83 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 00000000..f0ffb63a --- /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 00000000..2541668d 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 new file mode 100644 index 00000000..a673031e --- /dev/null +++ b/blockchains/celo/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Celo", + "website": "https://celo.org/", + "description": "Celo is an open platform that makes financial tools accessible to anyone with a mobile phone", + "explorer": "https://explorer.celo.org/", + "research": "https://docs.celo.org/", + "symbol": "CELO", + "type": "coin", + "rpc_url": "https://forno.celo.org", + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/celo-org/celo-blockchain" + }, + { + "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 new file mode 100644 index 00000000..a2f6999c Binary files /dev/null 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 00000000..4db671a2 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 00000000..7bc43879 --- /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 00000000..df4a0f3a 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 00000000..6c4be565 --- /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 00000000..4a53c248 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 00000000..48eaff18 --- /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 00000000..c8907ec9 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 00000000..78961c30 Binary files /dev/null and b/blockchains/cfxevm/info/square_logo.png differ diff --git a/blockchains/classic/assets/0x0000000000b3F879cb30FE243b4Dfee438691c04/info.json b/blockchains/classic/assets/0x0000000000b3F879cb30FE243b4Dfee438691c04/info.json new file mode 100644 index 00000000..cbd06c00 --- /dev/null +++ b/blockchains/classic/assets/0x0000000000b3F879cb30FE243b4Dfee438691c04/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gastoken.io", + "symbol": "GST2", + "type": "ETC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x0000000000b3F879cb30FE243b4Dfee438691c04", + "status": "active", + "id": "0x0000000000b3F879cb30FE243b4Dfee438691c04" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x0000000000b3F879cb30FE243b4Dfee438691c04/logo.png b/blockchains/classic/assets/0x0000000000b3F879cb30FE243b4Dfee438691c04/logo.png new file mode 100644 index 00000000..8844f745 Binary files /dev/null and b/blockchains/classic/assets/0x0000000000b3F879cb30FE243b4Dfee438691c04/logo.png differ diff --git a/blockchains/classic/assets/0x085B0FDf115aA9E16AE1Bddd396CE1F993c52220/info.json b/blockchains/classic/assets/0x085B0FDf115aA9E16AE1Bddd396CE1F993c52220/info.json new file mode 100644 index 00000000..bc527e65 --- /dev/null +++ b/blockchains/classic/assets/0x085B0FDf115aA9E16AE1Bddd396CE1F993c52220/info.json @@ -0,0 +1,11 @@ +{ + "name": "ONEX Network", + "symbol": "ONEX", + "type": "ETC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x085B0FDf115aA9E16AE1Bddd396CE1F993c52220", + "status": "active", + "id": "0x085B0FDf115aA9E16AE1Bddd396CE1F993c52220" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x085B0FDf115aA9E16AE1Bddd396CE1F993c52220/logo.png b/blockchains/classic/assets/0x085B0FDf115aA9E16AE1Bddd396CE1F993c52220/logo.png new file mode 100644 index 00000000..5c909ce9 Binary files /dev/null and b/blockchains/classic/assets/0x085B0FDf115aA9E16AE1Bddd396CE1F993c52220/logo.png differ diff --git a/blockchains/classic/assets/0x0DC554d2BBc8f4Cda0577CeD2CD86c54689Af3Db/info.json b/blockchains/classic/assets/0x0DC554d2BBc8f4Cda0577CeD2CD86c54689Af3Db/info.json new file mode 100644 index 00000000..5b55c3f2 --- /dev/null +++ b/blockchains/classic/assets/0x0DC554d2BBc8f4Cda0577CeD2CD86c54689Af3Db/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUnits Millium", + "symbol": "MLIUM", + "type": "ETC20", + "decimals": 12, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x0DC554d2BBc8f4Cda0577CeD2CD86c54689Af3Db", + "status": "active", + "id": "0x0DC554d2BBc8f4Cda0577CeD2CD86c54689Af3Db" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x0DC554d2BBc8f4Cda0577CeD2CD86c54689Af3Db/logo.png b/blockchains/classic/assets/0x0DC554d2BBc8f4Cda0577CeD2CD86c54689Af3Db/logo.png new file mode 100755 index 00000000..7c3a10c1 Binary files /dev/null and b/blockchains/classic/assets/0x0DC554d2BBc8f4Cda0577CeD2CD86c54689Af3Db/logo.png differ diff --git a/blockchains/classic/assets/0x0b6f824FAB88281ea8bd883bdfC1F586743F92FA/info.json b/blockchains/classic/assets/0x0b6f824FAB88281ea8bd883bdfC1F586743F92FA/info.json new file mode 100644 index 00000000..48486e06 --- /dev/null +++ b/blockchains/classic/assets/0x0b6f824FAB88281ea8bd883bdfC1F586743F92FA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Candy Classic", + "symbol": "CANDY", + "type": "ETC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x0b6f824FAB88281ea8bd883bdfC1F586743F92FA", + "status": "active", + "id": "0x0b6f824FAB88281ea8bd883bdfC1F586743F92FA" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x0b6f824FAB88281ea8bd883bdfC1F586743F92FA/logo.png b/blockchains/classic/assets/0x0b6f824FAB88281ea8bd883bdfC1F586743F92FA/logo.png new file mode 100644 index 00000000..8266e2f9 Binary files /dev/null and b/blockchains/classic/assets/0x0b6f824FAB88281ea8bd883bdfC1F586743F92FA/logo.png differ diff --git a/blockchains/classic/assets/0x0f54903F62Dc03DFBE1d99064B41a65D461F61b9/info.json b/blockchains/classic/assets/0x0f54903F62Dc03DFBE1d99064B41a65D461F61b9/info.json new file mode 100644 index 00000000..b72a57f2 --- /dev/null +++ b/blockchains/classic/assets/0x0f54903F62Dc03DFBE1d99064B41a65D461F61b9/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETC PYRAMID", + "symbol": "ETCP", + "type": "ETC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x0f54903F62Dc03DFBE1d99064B41a65D461F61b9", + "status": "active", + "id": "0x0f54903F62Dc03DFBE1d99064B41a65D461F61b9" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x0f54903F62Dc03DFBE1d99064B41a65D461F61b9/logo.png b/blockchains/classic/assets/0x0f54903F62Dc03DFBE1d99064B41a65D461F61b9/logo.png new file mode 100644 index 00000000..9f0ea3a9 Binary files /dev/null and b/blockchains/classic/assets/0x0f54903F62Dc03DFBE1d99064B41a65D461F61b9/logo.png differ diff --git a/blockchains/classic/assets/0x1178d40896cf784Db203eB40f159D78Ab6E99a29/info.json b/blockchains/classic/assets/0x1178d40896cf784Db203eB40f159D78Ab6E99a29/info.json new file mode 100644 index 00000000..ca81eede --- /dev/null +++ b/blockchains/classic/assets/0x1178d40896cf784Db203eB40f159D78Ab6E99a29/info.json @@ -0,0 +1,11 @@ +{ + "name": "iETC", + "symbol": "iETC", + "type": "ETC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x1178d40896cf784Db203eB40f159D78Ab6E99a29", + "status": "active", + "id": "0x1178d40896cf784Db203eB40f159D78Ab6E99a29" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x1178d40896cf784Db203eB40f159D78Ab6E99a29/logo.png b/blockchains/classic/assets/0x1178d40896cf784Db203eB40f159D78Ab6E99a29/logo.png new file mode 100644 index 00000000..a6bc2f09 Binary files /dev/null and b/blockchains/classic/assets/0x1178d40896cf784Db203eB40f159D78Ab6E99a29/logo.png differ diff --git a/blockchains/classic/assets/0x15c56f9edE6a53AFaFF8505D88F47B03b57B52AB/info.json b/blockchains/classic/assets/0x15c56f9edE6a53AFaFF8505D88F47B03b57B52AB/info.json new file mode 100644 index 00000000..1ae9e753 --- /dev/null +++ b/blockchains/classic/assets/0x15c56f9edE6a53AFaFF8505D88F47B03b57B52AB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neuron", + "symbol": "NRNG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x15c56f9edE6a53AFaFF8505D88F47B03b57B52AB", + "status": "active", + "id": "0x15c56f9edE6a53AFaFF8505D88F47B03b57B52AB" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x15c56f9edE6a53AFaFF8505D88F47B03b57B52AB/logo.png b/blockchains/classic/assets/0x15c56f9edE6a53AFaFF8505D88F47B03b57B52AB/logo.png new file mode 100644 index 00000000..e9224cf3 Binary files /dev/null and b/blockchains/classic/assets/0x15c56f9edE6a53AFaFF8505D88F47B03b57B52AB/logo.png differ diff --git a/blockchains/classic/assets/0x169a4d7aB1244eB57433082B94d8ded5BB97483f/info.json b/blockchains/classic/assets/0x169a4d7aB1244eB57433082B94d8ded5BB97483f/info.json new file mode 100644 index 00000000..ba887fbd --- /dev/null +++ b/blockchains/classic/assets/0x169a4d7aB1244eB57433082B94d8ded5BB97483f/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUnits Fermium", + "symbol": "BFM", + "type": "ETC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x169a4d7aB1244eB57433082B94d8ded5BB97483f", + "status": "active", + "id": "0x169a4d7aB1244eB57433082B94d8ded5BB97483f" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x169a4d7aB1244eB57433082B94d8ded5BB97483f/logo.png b/blockchains/classic/assets/0x169a4d7aB1244eB57433082B94d8ded5BB97483f/logo.png new file mode 100644 index 00000000..a18ba26c Binary files /dev/null and b/blockchains/classic/assets/0x169a4d7aB1244eB57433082B94d8ded5BB97483f/logo.png differ diff --git a/blockchains/classic/assets/0x171040cd10f204F3b257e45b41ce65D36150558C/info.json b/blockchains/classic/assets/0x171040cd10f204F3b257e45b41ce65D36150558C/info.json new file mode 100644 index 00000000..cfa4d37e --- /dev/null +++ b/blockchains/classic/assets/0x171040cd10f204F3b257e45b41ce65D36150558C/info.json @@ -0,0 +1,11 @@ +{ + "name": "eBOMB", + "symbol": "POW", + "type": "ETC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x171040cd10f204F3b257e45b41ce65D36150558C", + "status": "active", + "id": "0x171040cd10f204F3b257e45b41ce65D36150558C" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x171040cd10f204F3b257e45b41ce65D36150558C/logo.png b/blockchains/classic/assets/0x171040cd10f204F3b257e45b41ce65D36150558C/logo.png new file mode 100644 index 00000000..6bae8257 Binary files /dev/null and b/blockchains/classic/assets/0x171040cd10f204F3b257e45b41ce65D36150558C/logo.png differ diff --git a/blockchains/classic/assets/0x17CDb23E6151Dca9A75457d3d795CC5A63648949/info.json b/blockchains/classic/assets/0x17CDb23E6151Dca9A75457d3d795CC5A63648949/info.json new file mode 100644 index 00000000..83923324 --- /dev/null +++ b/blockchains/classic/assets/0x17CDb23E6151Dca9A75457d3d795CC5A63648949/info.json @@ -0,0 +1,11 @@ +{ + "name": "Uzel", + "symbol": "UZG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x17CDb23E6151Dca9A75457d3d795CC5A63648949", + "status": "active", + "id": "0x17CDb23E6151Dca9A75457d3d795CC5A63648949" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x17CDb23E6151Dca9A75457d3d795CC5A63648949/logo.png b/blockchains/classic/assets/0x17CDb23E6151Dca9A75457d3d795CC5A63648949/logo.png new file mode 100644 index 00000000..ce5ad602 Binary files /dev/null and b/blockchains/classic/assets/0x17CDb23E6151Dca9A75457d3d795CC5A63648949/logo.png differ diff --git a/blockchains/classic/assets/0x1BE6D61B1103D91F7f86D47e6ca0429259A15ff0/info.json b/blockchains/classic/assets/0x1BE6D61B1103D91F7f86D47e6ca0429259A15ff0/info.json new file mode 100644 index 00000000..1e4496f2 --- /dev/null +++ b/blockchains/classic/assets/0x1BE6D61B1103D91F7f86D47e6ca0429259A15ff0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Classic Token", + "symbol": "BCT", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x1BE6D61B1103D91F7f86D47e6ca0429259A15ff0", + "status": "active", + "id": "0x1BE6D61B1103D91F7f86D47e6ca0429259A15ff0" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x1BE6D61B1103D91F7f86D47e6ca0429259A15ff0/logo.png b/blockchains/classic/assets/0x1BE6D61B1103D91F7f86D47e6ca0429259A15ff0/logo.png new file mode 100755 index 00000000..c365d430 Binary files /dev/null and b/blockchains/classic/assets/0x1BE6D61B1103D91F7f86D47e6ca0429259A15ff0/logo.png differ diff --git a/blockchains/classic/assets/0x1Fe3164dA6B47C52349E98c14440879A42852D71/info.json b/blockchains/classic/assets/0x1Fe3164dA6B47C52349E98c14440879A42852D71/info.json new file mode 100644 index 00000000..e19ac118 --- /dev/null +++ b/blockchains/classic/assets/0x1Fe3164dA6B47C52349E98c14440879A42852D71/info.json @@ -0,0 +1,11 @@ +{ + "name": "Classic Cannabis Joints", + "symbol": "WEED", + "type": "ETC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x1Fe3164dA6B47C52349E98c14440879A42852D71", + "status": "active", + "id": "0x1Fe3164dA6B47C52349E98c14440879A42852D71" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x1Fe3164dA6B47C52349E98c14440879A42852D71/logo.png b/blockchains/classic/assets/0x1Fe3164dA6B47C52349E98c14440879A42852D71/logo.png new file mode 100644 index 00000000..01c44e67 Binary files /dev/null and b/blockchains/classic/assets/0x1Fe3164dA6B47C52349E98c14440879A42852D71/logo.png differ diff --git a/blockchains/classic/assets/0x1ce1b789E291FFA8812D03fa7E67e538f91f132d/info.json b/blockchains/classic/assets/0x1ce1b789E291FFA8812D03fa7E67e538f91f132d/info.json new file mode 100644 index 00000000..5230812a --- /dev/null +++ b/blockchains/classic/assets/0x1ce1b789E291FFA8812D03fa7E67e538f91f132d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unity classic token", + "symbol": "UXT", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x1ce1b789E291FFA8812D03fa7E67e538f91f132d", + "status": "active", + "id": "0x1ce1b789E291FFA8812D03fa7E67e538f91f132d" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x1ce1b789E291FFA8812D03fa7E67e538f91f132d/logo.png b/blockchains/classic/assets/0x1ce1b789E291FFA8812D03fa7E67e538f91f132d/logo.png new file mode 100644 index 00000000..c1a5b0b3 Binary files /dev/null and b/blockchains/classic/assets/0x1ce1b789E291FFA8812D03fa7E67e538f91f132d/logo.png differ diff --git a/blockchains/classic/assets/0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40/info.json b/blockchains/classic/assets/0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40/info.json new file mode 100644 index 00000000..cf90c879 --- /dev/null +++ b/blockchains/classic/assets/0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40/info.json @@ -0,0 +1,11 @@ +{ + "name": "BCDN", + "symbol": "BCDN", + "type": "ETC20", + "decimals": 15, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40", + "status": "active", + "id": "0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40/logo.png b/blockchains/classic/assets/0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40/logo.png new file mode 100755 index 00000000..d61558ed Binary files /dev/null and b/blockchains/classic/assets/0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40/logo.png differ diff --git a/blockchains/classic/assets/0x22B3f1d789B189fDd2040d7d5B59568a291Ef611/info.json b/blockchains/classic/assets/0x22B3f1d789B189fDd2040d7d5B59568a291Ef611/info.json new file mode 100644 index 00000000..854f7c45 --- /dev/null +++ b/blockchains/classic/assets/0x22B3f1d789B189fDd2040d7d5B59568a291Ef611/info.json @@ -0,0 +1,11 @@ +{ + "name": "Searyver", + "symbol": "SEAG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x22B3f1d789B189fDd2040d7d5B59568a291Ef611", + "status": "active", + "id": "0x22B3f1d789B189fDd2040d7d5B59568a291Ef611" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x22B3f1d789B189fDd2040d7d5B59568a291Ef611/logo.png b/blockchains/classic/assets/0x22B3f1d789B189fDd2040d7d5B59568a291Ef611/logo.png new file mode 100644 index 00000000..55a3766e Binary files /dev/null and b/blockchains/classic/assets/0x22B3f1d789B189fDd2040d7d5B59568a291Ef611/logo.png differ diff --git a/blockchains/classic/assets/0x24ccaAaE74041985e3D75712D5cce63b0bD9C4A3/info.json b/blockchains/classic/assets/0x24ccaAaE74041985e3D75712D5cce63b0bD9C4A3/info.json new file mode 100644 index 00000000..98d27cc7 --- /dev/null +++ b/blockchains/classic/assets/0x24ccaAaE74041985e3D75712D5cce63b0bD9C4A3/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUnits Brazil", + "symbol": "BRZL", + "type": "ETC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x24ccaAaE74041985e3D75712D5cce63b0bD9C4A3", + "status": "active", + "id": "0x24ccaAaE74041985e3D75712D5cce63b0bD9C4A3" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x24ccaAaE74041985e3D75712D5cce63b0bD9C4A3/logo.png b/blockchains/classic/assets/0x24ccaAaE74041985e3D75712D5cce63b0bD9C4A3/logo.png new file mode 100644 index 00000000..7bef832b Binary files /dev/null and b/blockchains/classic/assets/0x24ccaAaE74041985e3D75712D5cce63b0bD9C4A3/logo.png differ diff --git a/blockchains/classic/assets/0x2B682bd9d5c31E67a95cbdF0292017C02E51923C/info.json b/blockchains/classic/assets/0x2B682bd9d5c31E67a95cbdF0292017C02E51923C/info.json new file mode 100644 index 00000000..04b7d4c2 --- /dev/null +++ b/blockchains/classic/assets/0x2B682bd9d5c31E67a95cbdF0292017C02E51923C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ether Klown", + "symbol": "KLOWN2", + "type": "ETC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x2B682bd9d5c31E67a95cbdF0292017C02E51923C", + "status": "active", + "id": "0x2B682bd9d5c31E67a95cbdF0292017C02E51923C" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x2B682bd9d5c31E67a95cbdF0292017C02E51923C/logo.png b/blockchains/classic/assets/0x2B682bd9d5c31E67a95cbdF0292017C02E51923C/logo.png new file mode 100644 index 00000000..4ae423d6 Binary files /dev/null and b/blockchains/classic/assets/0x2B682bd9d5c31E67a95cbdF0292017C02E51923C/logo.png differ diff --git a/blockchains/classic/assets/0x2EB1D7785469FC5d478E59Ca09F66CBb9170C519/info.json b/blockchains/classic/assets/0x2EB1D7785469FC5d478E59Ca09F66CBb9170C519/info.json new file mode 100644 index 00000000..317a6b80 --- /dev/null +++ b/blockchains/classic/assets/0x2EB1D7785469FC5d478E59Ca09F66CBb9170C519/info.json @@ -0,0 +1,12 @@ +{ + "name": "C3D Network", + "type": "ETC20", + "symbol": "C3D", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x2EB1D7785469FC5d478E59Ca09F66CBb9170C519", + "status": "active", + "id": "0x2EB1D7785469FC5d478E59Ca09F66CBb9170C519", + "links": [] +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x2EB1D7785469FC5d478E59Ca09F66CBb9170C519/logo.png b/blockchains/classic/assets/0x2EB1D7785469FC5d478E59Ca09F66CBb9170C519/logo.png new file mode 100644 index 00000000..5221c213 Binary files /dev/null and b/blockchains/classic/assets/0x2EB1D7785469FC5d478E59Ca09F66CBb9170C519/logo.png differ diff --git a/blockchains/classic/assets/0x3398EB75EE22523fEfdA99574dBc62fD19F8c58B/info.json b/blockchains/classic/assets/0x3398EB75EE22523fEfdA99574dBc62fD19F8c58B/info.json new file mode 100644 index 00000000..ed6131ce --- /dev/null +++ b/blockchains/classic/assets/0x3398EB75EE22523fEfdA99574dBc62fD19F8c58B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Arcadium Token", + "symbol": "ACDN", + "type": "ETC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x3398EB75EE22523fEfdA99574dBc62fD19F8c58B", + "status": "active", + "id": "0x3398EB75EE22523fEfdA99574dBc62fD19F8c58B" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x3398EB75EE22523fEfdA99574dBc62fD19F8c58B/logo.png b/blockchains/classic/assets/0x3398EB75EE22523fEfdA99574dBc62fD19F8c58B/logo.png new file mode 100644 index 00000000..e2c10299 Binary files /dev/null and b/blockchains/classic/assets/0x3398EB75EE22523fEfdA99574dBc62fD19F8c58B/logo.png differ diff --git a/blockchains/classic/assets/0x33E89a9db4F5a44d80A3E9d2Bdff6c168cbbd15c/info.json b/blockchains/classic/assets/0x33E89a9db4F5a44d80A3E9d2Bdff6c168cbbd15c/info.json new file mode 100644 index 00000000..b436f7e1 --- /dev/null +++ b/blockchains/classic/assets/0x33E89a9db4F5a44d80A3E9d2Bdff6c168cbbd15c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Slyike", + "symbol": "SLYG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x33E89a9db4F5a44d80A3E9d2Bdff6c168cbbd15c", + "status": "active", + "id": "0x33E89a9db4F5a44d80A3E9d2Bdff6c168cbbd15c" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x33E89a9db4F5a44d80A3E9d2Bdff6c168cbbd15c/logo.png b/blockchains/classic/assets/0x33E89a9db4F5a44d80A3E9d2Bdff6c168cbbd15c/logo.png new file mode 100644 index 00000000..bf7e0413 Binary files /dev/null and b/blockchains/classic/assets/0x33E89a9db4F5a44d80A3E9d2Bdff6c168cbbd15c/logo.png differ diff --git a/blockchains/classic/assets/0x3E6eC3A0A995d3c58d3854AaE41C77C687C07E7f/info.json b/blockchains/classic/assets/0x3E6eC3A0A995d3c58d3854AaE41C77C687C07E7f/info.json new file mode 100644 index 00000000..513f52a4 --- /dev/null +++ b/blockchains/classic/assets/0x3E6eC3A0A995d3c58d3854AaE41C77C687C07E7f/info.json @@ -0,0 +1,11 @@ +{ + "name": "42 Coin", + "symbol": "42", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x3E6eC3A0A995d3c58d3854AaE41C77C687C07E7f", + "status": "active", + "id": "0x3E6eC3A0A995d3c58d3854AaE41C77C687C07E7f" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x3E6eC3A0A995d3c58d3854AaE41C77C687C07E7f/logo.png b/blockchains/classic/assets/0x3E6eC3A0A995d3c58d3854AaE41C77C687C07E7f/logo.png new file mode 100644 index 00000000..7c80f46d Binary files /dev/null and b/blockchains/classic/assets/0x3E6eC3A0A995d3c58d3854AaE41C77C687C07E7f/logo.png differ diff --git a/blockchains/classic/assets/0x3a6979EAB0ad99549158c05F2635C3B85dCAf5e2/info.json b/blockchains/classic/assets/0x3a6979EAB0ad99549158c05F2635C3B85dCAf5e2/info.json new file mode 100644 index 00000000..95f71f2f --- /dev/null +++ b/blockchains/classic/assets/0x3a6979EAB0ad99549158c05F2635C3B85dCAf5e2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blazenite", + "symbol": "BLZG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x3a6979EAB0ad99549158c05F2635C3B85dCAf5e2", + "status": "active", + "id": "0x3a6979EAB0ad99549158c05F2635C3B85dCAf5e2" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x3a6979EAB0ad99549158c05F2635C3B85dCAf5e2/logo.png b/blockchains/classic/assets/0x3a6979EAB0ad99549158c05F2635C3B85dCAf5e2/logo.png new file mode 100644 index 00000000..494d6270 Binary files /dev/null and b/blockchains/classic/assets/0x3a6979EAB0ad99549158c05F2635C3B85dCAf5e2/logo.png differ diff --git a/blockchains/classic/assets/0x4479B4e96252B829934bA0f8fb8f5c96883DA7E5/info.json b/blockchains/classic/assets/0x4479B4e96252B829934bA0f8fb8f5c96883DA7E5/info.json new file mode 100644 index 00000000..6ed019da --- /dev/null +++ b/blockchains/classic/assets/0x4479B4e96252B829934bA0f8fb8f5c96883DA7E5/info.json @@ -0,0 +1,11 @@ +{ + "name": "BBBtesttoken", + "symbol": "BBB", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x4479B4e96252B829934bA0f8fb8f5c96883DA7E5", + "status": "active", + "id": "0x4479B4e96252B829934bA0f8fb8f5c96883DA7E5" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x4479B4e96252B829934bA0f8fb8f5c96883DA7E5/logo.png b/blockchains/classic/assets/0x4479B4e96252B829934bA0f8fb8f5c96883DA7E5/logo.png new file mode 100755 index 00000000..17e8816a Binary files /dev/null and b/blockchains/classic/assets/0x4479B4e96252B829934bA0f8fb8f5c96883DA7E5/logo.png differ diff --git a/blockchains/classic/assets/0x45e42D659D9f9466cD5DF622506033145a9b89Bc/info.json b/blockchains/classic/assets/0x45e42D659D9f9466cD5DF622506033145a9b89Bc/info.json new file mode 100644 index 00000000..a00598b4 --- /dev/null +++ b/blockchains/classic/assets/0x45e42D659D9f9466cD5DF622506033145a9b89Bc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nexium", + "symbol": "NxC", + "type": "ETC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x45e42D659D9f9466cD5DF622506033145a9b89Bc", + "status": "active", + "id": "0x45e42D659D9f9466cD5DF622506033145a9b89Bc" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x45e42D659D9f9466cD5DF622506033145a9b89Bc/logo.png b/blockchains/classic/assets/0x45e42D659D9f9466cD5DF622506033145a9b89Bc/logo.png new file mode 100755 index 00000000..2e761588 Binary files /dev/null and b/blockchains/classic/assets/0x45e42D659D9f9466cD5DF622506033145a9b89Bc/logo.png differ diff --git a/blockchains/classic/assets/0x477964C7B2CDFe2653b0D89469e40D8A5eeF9E52/info.json b/blockchains/classic/assets/0x477964C7B2CDFe2653b0D89469e40D8A5eeF9E52/info.json new file mode 100644 index 00000000..05cb5c86 --- /dev/null +++ b/blockchains/classic/assets/0x477964C7B2CDFe2653b0D89469e40D8A5eeF9E52/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dredxon", + "symbol": "DRXG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x477964C7B2CDFe2653b0D89469e40D8A5eeF9E52", + "status": "active", + "id": "0x477964C7B2CDFe2653b0D89469e40D8A5eeF9E52" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x477964C7B2CDFe2653b0D89469e40D8A5eeF9E52/logo.png b/blockchains/classic/assets/0x477964C7B2CDFe2653b0D89469e40D8A5eeF9E52/logo.png new file mode 100644 index 00000000..cc7ceac7 Binary files /dev/null and b/blockchains/classic/assets/0x477964C7B2CDFe2653b0D89469e40D8A5eeF9E52/logo.png differ diff --git a/blockchains/classic/assets/0x4970515788ab15d4De4E9f8ed1E1079f6d25dC77/info.json b/blockchains/classic/assets/0x4970515788ab15d4De4E9f8ed1E1079f6d25dC77/info.json new file mode 100644 index 00000000..6a5c3d03 --- /dev/null +++ b/blockchains/classic/assets/0x4970515788ab15d4De4E9f8ed1E1079f6d25dC77/info.json @@ -0,0 +1,11 @@ +{ + "name": "Treeigh", + "symbol": "TREEG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x4970515788ab15d4De4E9f8ed1E1079f6d25dC77", + "status": "active", + "id": "0x4970515788ab15d4De4E9f8ed1E1079f6d25dC77" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x4970515788ab15d4De4E9f8ed1E1079f6d25dC77/logo.png b/blockchains/classic/assets/0x4970515788ab15d4De4E9f8ed1E1079f6d25dC77/logo.png new file mode 100644 index 00000000..78223d63 Binary files /dev/null and b/blockchains/classic/assets/0x4970515788ab15d4De4E9f8ed1E1079f6d25dC77/logo.png differ diff --git a/blockchains/classic/assets/0x4a3a14d47634E0712B1Aa33f17EC31316a0D5BAB/info.json b/blockchains/classic/assets/0x4a3a14d47634E0712B1Aa33f17EC31316a0D5BAB/info.json new file mode 100644 index 00000000..2e6a538d --- /dev/null +++ b/blockchains/classic/assets/0x4a3a14d47634E0712B1Aa33f17EC31316a0D5BAB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Litecoin Classic Token", + "symbol": "LCT", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x4a3a14d47634E0712B1Aa33f17EC31316a0D5BAB", + "status": "active", + "id": "0x4a3a14d47634E0712B1Aa33f17EC31316a0D5BAB" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x4a3a14d47634E0712B1Aa33f17EC31316a0D5BAB/logo.png b/blockchains/classic/assets/0x4a3a14d47634E0712B1Aa33f17EC31316a0D5BAB/logo.png new file mode 100644 index 00000000..ce9d8290 Binary files /dev/null and b/blockchains/classic/assets/0x4a3a14d47634E0712B1Aa33f17EC31316a0D5BAB/logo.png differ diff --git a/blockchains/classic/assets/0x4dF86FD5bf250D692C503592Bde3d3E9087F6232/info.json b/blockchains/classic/assets/0x4dF86FD5bf250D692C503592Bde3d3E9087F6232/info.json new file mode 100644 index 00000000..e3a1df46 --- /dev/null +++ b/blockchains/classic/assets/0x4dF86FD5bf250D692C503592Bde3d3E9087F6232/info.json @@ -0,0 +1,11 @@ +{ + "name": "AITBot Token", + "symbol": "AITBOT", + "type": "ETC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x4dF86FD5bf250D692C503592Bde3d3E9087F6232", + "status": "active", + "id": "0x4dF86FD5bf250D692C503592Bde3d3E9087F6232" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x4dF86FD5bf250D692C503592Bde3d3E9087F6232/logo.png b/blockchains/classic/assets/0x4dF86FD5bf250D692C503592Bde3d3E9087F6232/logo.png new file mode 100644 index 00000000..7661f817 Binary files /dev/null and b/blockchains/classic/assets/0x4dF86FD5bf250D692C503592Bde3d3E9087F6232/logo.png differ diff --git a/blockchains/classic/assets/0x4fab5005176F5E4c00988623c35107cCB40dC19D/info.json b/blockchains/classic/assets/0x4fab5005176F5E4c00988623c35107cCB40dC19D/info.json new file mode 100644 index 00000000..584af2b5 --- /dev/null +++ b/blockchains/classic/assets/0x4fab5005176F5E4c00988623c35107cCB40dC19D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Qelax", + "symbol": "QLXG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x4fab5005176F5E4c00988623c35107cCB40dC19D", + "status": "active", + "id": "0x4fab5005176F5E4c00988623c35107cCB40dC19D" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x4fab5005176F5E4c00988623c35107cCB40dC19D/logo.png b/blockchains/classic/assets/0x4fab5005176F5E4c00988623c35107cCB40dC19D/logo.png new file mode 100644 index 00000000..79c02e2d Binary files /dev/null and b/blockchains/classic/assets/0x4fab5005176F5E4c00988623c35107cCB40dC19D/logo.png differ diff --git a/blockchains/classic/assets/0x5046E6b2C9D11458bC3718e0cF5Bc8557bCCf5dc/info.json b/blockchains/classic/assets/0x5046E6b2C9D11458bC3718e0cF5Bc8557bCCf5dc/info.json new file mode 100644 index 00000000..4c982750 --- /dev/null +++ b/blockchains/classic/assets/0x5046E6b2C9D11458bC3718e0cF5Bc8557bCCf5dc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wahdereau", + "symbol": "WADRG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x5046E6b2C9D11458bC3718e0cF5Bc8557bCCf5dc", + "status": "active", + "id": "0x5046E6b2C9D11458bC3718e0cF5Bc8557bCCf5dc" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x5046E6b2C9D11458bC3718e0cF5Bc8557bCCf5dc/logo.png b/blockchains/classic/assets/0x5046E6b2C9D11458bC3718e0cF5Bc8557bCCf5dc/logo.png new file mode 100644 index 00000000..9fd44cc0 Binary files /dev/null and b/blockchains/classic/assets/0x5046E6b2C9D11458bC3718e0cF5Bc8557bCCf5dc/logo.png differ diff --git a/blockchains/classic/assets/0x50fA6146E86deAd56bf9E8e4655DFc2b5235D355/info.json b/blockchains/classic/assets/0x50fA6146E86deAd56bf9E8e4655DFc2b5235D355/info.json new file mode 100644 index 00000000..cd79de5d --- /dev/null +++ b/blockchains/classic/assets/0x50fA6146E86deAd56bf9E8e4655DFc2b5235D355/info.json @@ -0,0 +1,11 @@ +{ + "name": "Merainer", + "symbol": "MERG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x50fA6146E86deAd56bf9E8e4655DFc2b5235D355", + "status": "active", + "id": "0x50fA6146E86deAd56bf9E8e4655DFc2b5235D355" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x50fA6146E86deAd56bf9E8e4655DFc2b5235D355/logo.png b/blockchains/classic/assets/0x50fA6146E86deAd56bf9E8e4655DFc2b5235D355/logo.png new file mode 100644 index 00000000..c584c600 Binary files /dev/null and b/blockchains/classic/assets/0x50fA6146E86deAd56bf9E8e4655DFc2b5235D355/logo.png differ diff --git a/blockchains/classic/assets/0x51396a258BAe60D1fDE2a4Be900371f3B9C52c43/info.json b/blockchains/classic/assets/0x51396a258BAe60D1fDE2a4Be900371f3B9C52c43/info.json new file mode 100644 index 00000000..0a7a4ef2 --- /dev/null +++ b/blockchains/classic/assets/0x51396a258BAe60D1fDE2a4Be900371f3B9C52c43/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUnits Asia", + "symbol": "XSIA", + "type": "ETC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x51396a258BAe60D1fDE2a4Be900371f3B9C52c43", + "status": "active", + "id": "0x51396a258BAe60D1fDE2a4Be900371f3B9C52c43" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x51396a258BAe60D1fDE2a4Be900371f3B9C52c43/logo.png b/blockchains/classic/assets/0x51396a258BAe60D1fDE2a4Be900371f3B9C52c43/logo.png new file mode 100644 index 00000000..d1a745ba Binary files /dev/null and b/blockchains/classic/assets/0x51396a258BAe60D1fDE2a4Be900371f3B9C52c43/logo.png differ diff --git a/blockchains/classic/assets/0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855/info.json b/blockchains/classic/assets/0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855/info.json new file mode 100644 index 00000000..d2ef1d37 --- /dev/null +++ b/blockchains/classic/assets/0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "\"\"", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855", + "status": "active", + "id": "0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855/logo.png b/blockchains/classic/assets/0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855/logo.png new file mode 100644 index 00000000..b47bbd3e Binary files /dev/null and b/blockchains/classic/assets/0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855/logo.png differ diff --git a/blockchains/classic/assets/0x5BEb463647b1Fd55D3F876E9b042c27Aa63F4bA8/info.json b/blockchains/classic/assets/0x5BEb463647b1Fd55D3F876E9b042c27Aa63F4bA8/info.json new file mode 100644 index 00000000..ddd9d67b --- /dev/null +++ b/blockchains/classic/assets/0x5BEb463647b1Fd55D3F876E9b042c27Aa63F4bA8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fifty-Thousand Coin", + "symbol": "FTC", + "type": "ETC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x5BEb463647b1Fd55D3F876E9b042c27Aa63F4bA8", + "status": "active", + "id": "0x5BEb463647b1Fd55D3F876E9b042c27Aa63F4bA8" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x5BEb463647b1Fd55D3F876E9b042c27Aa63F4bA8/logo.png b/blockchains/classic/assets/0x5BEb463647b1Fd55D3F876E9b042c27Aa63F4bA8/logo.png new file mode 100644 index 00000000..b7e4e79a Binary files /dev/null and b/blockchains/classic/assets/0x5BEb463647b1Fd55D3F876E9b042c27Aa63F4bA8/logo.png differ diff --git a/blockchains/classic/assets/0x5eB99507170F41bAA521cb71C9bCEa2a8A96827C/info.json b/blockchains/classic/assets/0x5eB99507170F41bAA521cb71C9bCEa2a8A96827C/info.json new file mode 100644 index 00000000..ee134791 --- /dev/null +++ b/blockchains/classic/assets/0x5eB99507170F41bAA521cb71C9bCEa2a8A96827C/info.json @@ -0,0 +1,12 @@ +{ + "name": "Axiom", + "type": "ETC20", + "symbol": "XOM", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x5eB99507170F41bAA521cb71C9bCEa2a8A96827C", + "status": "active", + "id": "0x5eB99507170F41bAA521cb71C9bCEa2a8A96827C", + "links": [] +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x5eB99507170F41bAA521cb71C9bCEa2a8A96827C/logo.png b/blockchains/classic/assets/0x5eB99507170F41bAA521cb71C9bCEa2a8A96827C/logo.png new file mode 100644 index 00000000..e906fb09 Binary files /dev/null and b/blockchains/classic/assets/0x5eB99507170F41bAA521cb71C9bCEa2a8A96827C/logo.png differ diff --git a/blockchains/classic/assets/0x64fd6EeB4c86A66b0CfeEAFeC11FbC57A2993E67/info.json b/blockchains/classic/assets/0x64fd6EeB4c86A66b0CfeEAFeC11FbC57A2993E67/info.json new file mode 100644 index 00000000..9adf9b44 --- /dev/null +++ b/blockchains/classic/assets/0x64fd6EeB4c86A66b0CfeEAFeC11FbC57A2993E67/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUnits Indo", + "symbol": "XNDO", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x64fd6EeB4c86A66b0CfeEAFeC11FbC57A2993E67", + "status": "active", + "id": "0x64fd6EeB4c86A66b0CfeEAFeC11FbC57A2993E67" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x64fd6EeB4c86A66b0CfeEAFeC11FbC57A2993E67/logo.png b/blockchains/classic/assets/0x64fd6EeB4c86A66b0CfeEAFeC11FbC57A2993E67/logo.png new file mode 100644 index 00000000..7e96d2b0 Binary files /dev/null and b/blockchains/classic/assets/0x64fd6EeB4c86A66b0CfeEAFeC11FbC57A2993E67/logo.png differ diff --git a/blockchains/classic/assets/0x651074850053b7FaCf7F7200068B29A2E3525B40/info.json b/blockchains/classic/assets/0x651074850053b7FaCf7F7200068B29A2E3525B40/info.json new file mode 100644 index 00000000..3754b662 --- /dev/null +++ b/blockchains/classic/assets/0x651074850053b7FaCf7F7200068B29A2E3525B40/info.json @@ -0,0 +1,11 @@ +{ + "name": "Astral Gold", + "symbol": "GOLD", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x651074850053b7FaCf7F7200068B29A2E3525B40", + "status": "active", + "id": "0x651074850053b7FaCf7F7200068B29A2E3525B40" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x651074850053b7FaCf7F7200068B29A2E3525B40/logo.png b/blockchains/classic/assets/0x651074850053b7FaCf7F7200068B29A2E3525B40/logo.png new file mode 100644 index 00000000..f359f554 Binary files /dev/null and b/blockchains/classic/assets/0x651074850053b7FaCf7F7200068B29A2E3525B40/logo.png differ diff --git a/blockchains/classic/assets/0x690D4d5e3722e140fCa16e25E7A579588D93eB75/info.json b/blockchains/classic/assets/0x690D4d5e3722e140fCa16e25E7A579588D93eB75/info.json new file mode 100644 index 00000000..05280f14 --- /dev/null +++ b/blockchains/classic/assets/0x690D4d5e3722e140fCa16e25E7A579588D93eB75/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUnits Titan", + "symbol": "TITAN", + "type": "ETC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x690D4d5e3722e140fCa16e25E7A579588D93eB75", + "status": "active", + "id": "0x690D4d5e3722e140fCa16e25E7A579588D93eB75" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x690D4d5e3722e140fCa16e25E7A579588D93eB75/logo.png b/blockchains/classic/assets/0x690D4d5e3722e140fCa16e25E7A579588D93eB75/logo.png new file mode 100755 index 00000000..a764f6fe Binary files /dev/null and b/blockchains/classic/assets/0x690D4d5e3722e140fCa16e25E7A579588D93eB75/logo.png differ diff --git a/blockchains/classic/assets/0x6A37eC2C49E2FB35F9c029128e996f46928dDecC/info.json b/blockchains/classic/assets/0x6A37eC2C49E2FB35F9c029128e996f46928dDecC/info.json new file mode 100644 index 00000000..03c748f4 --- /dev/null +++ b/blockchains/classic/assets/0x6A37eC2C49E2FB35F9c029128e996f46928dDecC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Buy Crypto News Articles", + "symbol": "BCNA", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x6A37eC2C49E2FB35F9c029128e996f46928dDecC", + "status": "active", + "id": "0x6A37eC2C49E2FB35F9c029128e996f46928dDecC" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x6A37eC2C49E2FB35F9c029128e996f46928dDecC/logo.png b/blockchains/classic/assets/0x6A37eC2C49E2FB35F9c029128e996f46928dDecC/logo.png new file mode 100755 index 00000000..4c4154d6 Binary files /dev/null and b/blockchains/classic/assets/0x6A37eC2C49E2FB35F9c029128e996f46928dDecC/logo.png differ diff --git a/blockchains/classic/assets/0x6FD253A6D78df35f2D932aCf4bCEF4bB650a2263/info.json b/blockchains/classic/assets/0x6FD253A6D78df35f2D932aCf4bCEF4bB650a2263/info.json new file mode 100644 index 00000000..a036cdf0 --- /dev/null +++ b/blockchains/classic/assets/0x6FD253A6D78df35f2D932aCf4bCEF4bB650a2263/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUnits Africa", + "symbol": "AFRI", + "type": "ETC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x6FD253A6D78df35f2D932aCf4bCEF4bB650a2263", + "status": "active", + "id": "0x6FD253A6D78df35f2D932aCf4bCEF4bB650a2263" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x6FD253A6D78df35f2D932aCf4bCEF4bB650a2263/logo.png b/blockchains/classic/assets/0x6FD253A6D78df35f2D932aCf4bCEF4bB650a2263/logo.png new file mode 100755 index 00000000..d4490325 Binary files /dev/null and b/blockchains/classic/assets/0x6FD253A6D78df35f2D932aCf4bCEF4bB650a2263/logo.png differ diff --git a/blockchains/classic/assets/0x76d0184CF511788032A74a1FB91146e63F43dd53/info.json b/blockchains/classic/assets/0x76d0184CF511788032A74a1FB91146e63F43dd53/info.json new file mode 100644 index 00000000..a6327720 --- /dev/null +++ b/blockchains/classic/assets/0x76d0184CF511788032A74a1FB91146e63F43dd53/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniversalCoin", + "symbol": "UVC", + "type": "ETC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x76d0184CF511788032A74a1FB91146e63F43dd53", + "status": "active", + "id": "0x76d0184CF511788032A74a1FB91146e63F43dd53" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x76d0184CF511788032A74a1FB91146e63F43dd53/logo.png b/blockchains/classic/assets/0x76d0184CF511788032A74a1FB91146e63F43dd53/logo.png new file mode 100644 index 00000000..d4039463 Binary files /dev/null and b/blockchains/classic/assets/0x76d0184CF511788032A74a1FB91146e63F43dd53/logo.png differ diff --git a/blockchains/classic/assets/0x7b355c571FEde83F152E9585143306C0d2b53193/info.json b/blockchains/classic/assets/0x7b355c571FEde83F152E9585143306C0d2b53193/info.json new file mode 100644 index 00000000..ee6234f0 --- /dev/null +++ b/blockchains/classic/assets/0x7b355c571FEde83F152E9585143306C0d2b53193/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUnits Proof of Work Reward", + "symbol": "BPOWR", + "type": "ETC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x7b355c571FEde83F152E9585143306C0d2b53193", + "status": "active", + "id": "0x7b355c571FEde83F152E9585143306C0d2b53193" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x7b355c571FEde83F152E9585143306C0d2b53193/logo.png b/blockchains/classic/assets/0x7b355c571FEde83F152E9585143306C0d2b53193/logo.png new file mode 100644 index 00000000..0c3dc59d Binary files /dev/null and b/blockchains/classic/assets/0x7b355c571FEde83F152E9585143306C0d2b53193/logo.png differ diff --git a/blockchains/classic/assets/0x876A68D9efbc3CadaA886e9868D93737035F717C/info.json b/blockchains/classic/assets/0x876A68D9efbc3CadaA886e9868D93737035F717C/info.json new file mode 100644 index 00000000..9a767bb2 --- /dev/null +++ b/blockchains/classic/assets/0x876A68D9efbc3CadaA886e9868D93737035F717C/info.json @@ -0,0 +1,11 @@ +{ + "name": "WiiggoCoin", + "symbol": "WIIG", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x876A68D9efbc3CadaA886e9868D93737035F717C", + "status": "active", + "id": "0x876A68D9efbc3CadaA886e9868D93737035F717C" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x876A68D9efbc3CadaA886e9868D93737035F717C/logo.png b/blockchains/classic/assets/0x876A68D9efbc3CadaA886e9868D93737035F717C/logo.png new file mode 100644 index 00000000..e70668fc Binary files /dev/null and b/blockchains/classic/assets/0x876A68D9efbc3CadaA886e9868D93737035F717C/logo.png differ diff --git a/blockchains/classic/assets/0x88d60255F917e3eb94eaE199d827DAd837fac4cB/info.json b/blockchains/classic/assets/0x88d60255F917e3eb94eaE199d827DAd837fac4cB/info.json new file mode 100644 index 00000000..fa29b87c --- /dev/null +++ b/blockchains/classic/assets/0x88d60255F917e3eb94eaE199d827DAd837fac4cB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gastoken.io", + "symbol": "GST1", + "type": "ETC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x88d60255F917e3eb94eaE199d827DAd837fac4cB", + "status": "active", + "id": "0x88d60255F917e3eb94eaE199d827DAd837fac4cB" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x88d60255F917e3eb94eaE199d827DAd837fac4cB/logo.png b/blockchains/classic/assets/0x88d60255F917e3eb94eaE199d827DAd837fac4cB/logo.png new file mode 100644 index 00000000..ca527c4c Binary files /dev/null and b/blockchains/classic/assets/0x88d60255F917e3eb94eaE199d827DAd837fac4cB/logo.png differ diff --git a/blockchains/classic/assets/0x8900f34372f27Ebb5881D4eC6b35844A3655CCFc/info.json b/blockchains/classic/assets/0x8900f34372f27Ebb5881D4eC6b35844A3655CCFc/info.json new file mode 100644 index 00000000..0f8f5e7d --- /dev/null +++ b/blockchains/classic/assets/0x8900f34372f27Ebb5881D4eC6b35844A3655CCFc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Phoenix", + "symbol": "PHX", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x8900f34372f27Ebb5881D4eC6b35844A3655CCFc", + "status": "active", + "id": "0x8900f34372f27Ebb5881D4eC6b35844A3655CCFc" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x8900f34372f27Ebb5881D4eC6b35844A3655CCFc/logo.png b/blockchains/classic/assets/0x8900f34372f27Ebb5881D4eC6b35844A3655CCFc/logo.png new file mode 100755 index 00000000..ba327ed7 Binary files /dev/null and b/blockchains/classic/assets/0x8900f34372f27Ebb5881D4eC6b35844A3655CCFc/logo.png differ diff --git a/blockchains/classic/assets/0x8E100855e6647bd24F1A32999c4A6C91497C9f62/info.json b/blockchains/classic/assets/0x8E100855e6647bd24F1A32999c4A6C91497C9f62/info.json new file mode 100644 index 00000000..eec60ce4 --- /dev/null +++ b/blockchains/classic/assets/0x8E100855e6647bd24F1A32999c4A6C91497C9f62/info.json @@ -0,0 +1,11 @@ +{ + "name": "G Coin", + "symbol": "GTC", + "type": "ETC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x8E100855e6647bd24F1A32999c4A6C91497C9f62", + "status": "active", + "id": "0x8E100855e6647bd24F1A32999c4A6C91497C9f62" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x8E100855e6647bd24F1A32999c4A6C91497C9f62/logo.png b/blockchains/classic/assets/0x8E100855e6647bd24F1A32999c4A6C91497C9f62/logo.png new file mode 100644 index 00000000..7bb1501b Binary files /dev/null and b/blockchains/classic/assets/0x8E100855e6647bd24F1A32999c4A6C91497C9f62/logo.png differ diff --git a/blockchains/classic/assets/0x935E058102AFa0CC3c29Af024AF3208Ba521bcB0/info.json b/blockchains/classic/assets/0x935E058102AFa0CC3c29Af024AF3208Ba521bcB0/info.json new file mode 100644 index 00000000..31eb2217 --- /dev/null +++ b/blockchains/classic/assets/0x935E058102AFa0CC3c29Af024AF3208Ba521bcB0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Leafekey", + "symbol": "KEYG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x935E058102AFa0CC3c29Af024AF3208Ba521bcB0", + "status": "active", + "id": "0x935E058102AFa0CC3c29Af024AF3208Ba521bcB0" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x935E058102AFa0CC3c29Af024AF3208Ba521bcB0/logo.png b/blockchains/classic/assets/0x935E058102AFa0CC3c29Af024AF3208Ba521bcB0/logo.png new file mode 100644 index 00000000..4ae5b339 Binary files /dev/null and b/blockchains/classic/assets/0x935E058102AFa0CC3c29Af024AF3208Ba521bcB0/logo.png differ diff --git a/blockchains/classic/assets/0x9946C9C519638740EAc4Ee3Aa9f20eBe1Ce36c2c/info.json b/blockchains/classic/assets/0x9946C9C519638740EAc4Ee3Aa9f20eBe1Ce36c2c/info.json new file mode 100644 index 00000000..1b8f81ff --- /dev/null +++ b/blockchains/classic/assets/0x9946C9C519638740EAc4Ee3Aa9f20eBe1Ce36c2c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aim Token", + "symbol": "AIM", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x9946C9C519638740EAc4Ee3Aa9f20eBe1Ce36c2c", + "status": "active", + "id": "0x9946C9C519638740EAc4Ee3Aa9f20eBe1Ce36c2c" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x9946C9C519638740EAc4Ee3Aa9f20eBe1Ce36c2c/logo.png b/blockchains/classic/assets/0x9946C9C519638740EAc4Ee3Aa9f20eBe1Ce36c2c/logo.png new file mode 100644 index 00000000..83b8543d Binary files /dev/null and b/blockchains/classic/assets/0x9946C9C519638740EAc4Ee3Aa9f20eBe1Ce36c2c/logo.png differ diff --git a/blockchains/classic/assets/0x9a145BABB0315F461eD40cB8Cd17523A039e0370/info.json b/blockchains/classic/assets/0x9a145BABB0315F461eD40cB8Cd17523A039e0370/info.json new file mode 100644 index 00000000..b37be37f --- /dev/null +++ b/blockchains/classic/assets/0x9a145BABB0315F461eD40cB8Cd17523A039e0370/info.json @@ -0,0 +1,11 @@ +{ + "name": "Astral Diamonds", + "symbol": "Astral", + "type": "ETC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x9a145BABB0315F461eD40cB8Cd17523A039e0370", + "status": "active", + "id": "0x9a145BABB0315F461eD40cB8Cd17523A039e0370" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x9a145BABB0315F461eD40cB8Cd17523A039e0370/logo.png b/blockchains/classic/assets/0x9a145BABB0315F461eD40cB8Cd17523A039e0370/logo.png new file mode 100755 index 00000000..d3a491ce Binary files /dev/null and b/blockchains/classic/assets/0x9a145BABB0315F461eD40cB8Cd17523A039e0370/logo.png differ diff --git a/blockchains/classic/assets/0x9aBcecb1CB8e174b4d158021c9C710c81a989487/info.json b/blockchains/classic/assets/0x9aBcecb1CB8e174b4d158021c9C710c81a989487/info.json new file mode 100644 index 00000000..52c3223a --- /dev/null +++ b/blockchains/classic/assets/0x9aBcecb1CB8e174b4d158021c9C710c81a989487/info.json @@ -0,0 +1,11 @@ +{ + "name": "Feyloo", + "symbol": "LOOG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x9aBcecb1CB8e174b4d158021c9C710c81a989487", + "status": "active", + "id": "0x9aBcecb1CB8e174b4d158021c9C710c81a989487" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x9aBcecb1CB8e174b4d158021c9C710c81a989487/logo.png b/blockchains/classic/assets/0x9aBcecb1CB8e174b4d158021c9C710c81a989487/logo.png new file mode 100644 index 00000000..9eaa2bf7 Binary files /dev/null and b/blockchains/classic/assets/0x9aBcecb1CB8e174b4d158021c9C710c81a989487/logo.png differ diff --git a/blockchains/classic/assets/0x9bd05bCd368BDB8050E85E35b8D38753e72b44BF/info.json b/blockchains/classic/assets/0x9bd05bCd368BDB8050E85E35b8D38753e72b44BF/info.json new file mode 100644 index 00000000..ce075578 --- /dev/null +++ b/blockchains/classic/assets/0x9bd05bCd368BDB8050E85E35b8D38753e72b44BF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Arcadium Oxide", + "symbol": "AOX", + "type": "ETC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x9bd05bCd368BDB8050E85E35b8D38753e72b44BF", + "status": "active", + "id": "0x9bd05bCd368BDB8050E85E35b8D38753e72b44BF" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x9bd05bCd368BDB8050E85E35b8D38753e72b44BF/logo.png b/blockchains/classic/assets/0x9bd05bCd368BDB8050E85E35b8D38753e72b44BF/logo.png new file mode 100644 index 00000000..5e061c99 Binary files /dev/null and b/blockchains/classic/assets/0x9bd05bCd368BDB8050E85E35b8D38753e72b44BF/logo.png differ diff --git a/blockchains/classic/assets/0x9c5D60F5D1493F3FA05cdE2403b4Bd4B9CF01057/info.json b/blockchains/classic/assets/0x9c5D60F5D1493F3FA05cdE2403b4Bd4B9CF01057/info.json new file mode 100644 index 00000000..6d40ebbd --- /dev/null +++ b/blockchains/classic/assets/0x9c5D60F5D1493F3FA05cdE2403b4Bd4B9CF01057/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUnits Americas", + "symbol": "AMRX", + "type": "ETC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0x9c5D60F5D1493F3FA05cdE2403b4Bd4B9CF01057", + "status": "active", + "id": "0x9c5D60F5D1493F3FA05cdE2403b4Bd4B9CF01057" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0x9c5D60F5D1493F3FA05cdE2403b4Bd4B9CF01057/logo.png b/blockchains/classic/assets/0x9c5D60F5D1493F3FA05cdE2403b4Bd4B9CF01057/logo.png new file mode 100755 index 00000000..2bb274ce Binary files /dev/null and b/blockchains/classic/assets/0x9c5D60F5D1493F3FA05cdE2403b4Bd4B9CF01057/logo.png differ diff --git a/blockchains/classic/assets/0xAC55641Cbb734bdf6510d1bBd62E240c2409040f/info.json b/blockchains/classic/assets/0xAC55641Cbb734bdf6510d1bBd62E240c2409040f/info.json new file mode 100644 index 00000000..30648a42 --- /dev/null +++ b/blockchains/classic/assets/0xAC55641Cbb734bdf6510d1bBd62E240c2409040f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Saturn Classic DAO Token", + "symbol": "SATURN", + "type": "ETC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xAC55641Cbb734bdf6510d1bBd62E240c2409040f", + "status": "active", + "id": "0xAC55641Cbb734bdf6510d1bBd62E240c2409040f" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xAC55641Cbb734bdf6510d1bBd62E240c2409040f/logo.png b/blockchains/classic/assets/0xAC55641Cbb734bdf6510d1bBd62E240c2409040f/logo.png new file mode 100644 index 00000000..9b654bd0 Binary files /dev/null and b/blockchains/classic/assets/0xAC55641Cbb734bdf6510d1bBd62E240c2409040f/logo.png differ diff --git a/blockchains/classic/assets/0xAf4D36C8c744F345E060345b6eAf4E899eC7547c/info.json b/blockchains/classic/assets/0xAf4D36C8c744F345E060345b6eAf4E899eC7547c/info.json new file mode 100644 index 00000000..06ad041c --- /dev/null +++ b/blockchains/classic/assets/0xAf4D36C8c744F345E060345b6eAf4E899eC7547c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dusk", + "symbol": "DUSKG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xAf4D36C8c744F345E060345b6eAf4E899eC7547c", + "status": "active", + "id": "0xAf4D36C8c744F345E060345b6eAf4E899eC7547c" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xAf4D36C8c744F345E060345b6eAf4E899eC7547c/logo.png b/blockchains/classic/assets/0xAf4D36C8c744F345E060345b6eAf4E899eC7547c/logo.png new file mode 100644 index 00000000..92dc89fc Binary files /dev/null and b/blockchains/classic/assets/0xAf4D36C8c744F345E060345b6eAf4E899eC7547c/logo.png differ diff --git a/blockchains/classic/assets/0xB932b16ccc42917dF3608bfC1519e948b42fdFD9/info.json b/blockchains/classic/assets/0xB932b16ccc42917dF3608bfC1519e948b42fdFD9/info.json new file mode 100644 index 00000000..aac76c91 --- /dev/null +++ b/blockchains/classic/assets/0xB932b16ccc42917dF3608bfC1519e948b42fdFD9/info.json @@ -0,0 +1,11 @@ +{ + "name": "INTRO TOKEN", + "symbol": "NTRO", + "type": "ETC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xB932b16ccc42917dF3608bfC1519e948b42fdFD9", + "status": "active", + "id": "0xB932b16ccc42917dF3608bfC1519e948b42fdFD9" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xB932b16ccc42917dF3608bfC1519e948b42fdFD9/logo.png b/blockchains/classic/assets/0xB932b16ccc42917dF3608bfC1519e948b42fdFD9/logo.png new file mode 100644 index 00000000..14fd5094 Binary files /dev/null and b/blockchains/classic/assets/0xB932b16ccc42917dF3608bfC1519e948b42fdFD9/logo.png differ diff --git a/blockchains/classic/assets/0xC2E0bC52D1995dF11949425cfdf78D0B6D2cfE0a/info.json b/blockchains/classic/assets/0xC2E0bC52D1995dF11949425cfdf78D0B6D2cfE0a/info.json new file mode 100644 index 00000000..39aadebb --- /dev/null +++ b/blockchains/classic/assets/0xC2E0bC52D1995dF11949425cfdf78D0B6D2cfE0a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wayn", + "symbol": "WAYG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xC2E0bC52D1995dF11949425cfdf78D0B6D2cfE0a", + "status": "active", + "id": "0xC2E0bC52D1995dF11949425cfdf78D0B6D2cfE0a" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xC2E0bC52D1995dF11949425cfdf78D0B6D2cfE0a/logo.png b/blockchains/classic/assets/0xC2E0bC52D1995dF11949425cfdf78D0B6D2cfE0a/logo.png new file mode 100644 index 00000000..04298a6f Binary files /dev/null and b/blockchains/classic/assets/0xC2E0bC52D1995dF11949425cfdf78D0B6D2cfE0a/logo.png differ diff --git a/blockchains/classic/assets/0xC68dDd84fDC77506A5b7AB43B8E13DBA0AF74Ff4/info.json b/blockchains/classic/assets/0xC68dDd84fDC77506A5b7AB43B8E13DBA0AF74Ff4/info.json new file mode 100644 index 00000000..89d6340f --- /dev/null +++ b/blockchains/classic/assets/0xC68dDd84fDC77506A5b7AB43B8E13DBA0AF74Ff4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Princess Xole", + "symbol": "PXG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xC68dDd84fDC77506A5b7AB43B8E13DBA0AF74Ff4", + "status": "active", + "id": "0xC68dDd84fDC77506A5b7AB43B8E13DBA0AF74Ff4" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xC68dDd84fDC77506A5b7AB43B8E13DBA0AF74Ff4/logo.png b/blockchains/classic/assets/0xC68dDd84fDC77506A5b7AB43B8E13DBA0AF74Ff4/logo.png new file mode 100644 index 00000000..fb31b132 Binary files /dev/null and b/blockchains/classic/assets/0xC68dDd84fDC77506A5b7AB43B8E13DBA0AF74Ff4/logo.png differ diff --git a/blockchains/classic/assets/0xC8671e3eAAd0793de26c4a7Ba5ca10a992a80c7A/info.json b/blockchains/classic/assets/0xC8671e3eAAd0793de26c4a7Ba5ca10a992a80c7A/info.json new file mode 100644 index 00000000..fa0a5d9b --- /dev/null +++ b/blockchains/classic/assets/0xC8671e3eAAd0793de26c4a7Ba5ca10a992a80c7A/info.json @@ -0,0 +1,11 @@ +{ + "name": "kwhcredit", + "symbol": "Euro", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xC8671e3eAAd0793de26c4a7Ba5ca10a992a80c7A", + "status": "active", + "id": "0xC8671e3eAAd0793de26c4a7Ba5ca10a992a80c7A" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xC8671e3eAAd0793de26c4a7Ba5ca10a992a80c7A/logo.png b/blockchains/classic/assets/0xC8671e3eAAd0793de26c4a7Ba5ca10a992a80c7A/logo.png new file mode 100644 index 00000000..31897be4 Binary files /dev/null and b/blockchains/classic/assets/0xC8671e3eAAd0793de26c4a7Ba5ca10a992a80c7A/logo.png differ diff --git a/blockchains/classic/assets/0xCA68fE57A0E9987F940Ebcc65fe5F96E7bC30128/info.json b/blockchains/classic/assets/0xCA68fE57A0E9987F940Ebcc65fe5F96E7bC30128/info.json new file mode 100644 index 00000000..94545ab2 --- /dev/null +++ b/blockchains/classic/assets/0xCA68fE57A0E9987F940Ebcc65fe5F96E7bC30128/info.json @@ -0,0 +1,11 @@ +{ + "name": "Litecoin Classic Token", + "symbol": "LCT", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xCA68fE57A0E9987F940Ebcc65fe5F96E7bC30128", + "status": "active", + "id": "0xCA68fE57A0E9987F940Ebcc65fe5F96E7bC30128" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xCA68fE57A0E9987F940Ebcc65fe5F96E7bC30128/logo.png b/blockchains/classic/assets/0xCA68fE57A0E9987F940Ebcc65fe5F96E7bC30128/logo.png new file mode 100755 index 00000000..c65671f0 Binary files /dev/null and b/blockchains/classic/assets/0xCA68fE57A0E9987F940Ebcc65fe5F96E7bC30128/logo.png differ diff --git a/blockchains/classic/assets/0xD1c10d433C888E6d1841fF924d0CE45157f0d5Cd/info.json b/blockchains/classic/assets/0xD1c10d433C888E6d1841fF924d0CE45157f0d5Cd/info.json new file mode 100644 index 00000000..39cc51f5 --- /dev/null +++ b/blockchains/classic/assets/0xD1c10d433C888E6d1841fF924d0CE45157f0d5Cd/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUnits", + "symbol": "UNITS", + "type": "ETC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xD1c10d433C888E6d1841fF924d0CE45157f0d5Cd", + "status": "active", + "id": "0xD1c10d433C888E6d1841fF924d0CE45157f0d5Cd" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xD1c10d433C888E6d1841fF924d0CE45157f0d5Cd/logo.png b/blockchains/classic/assets/0xD1c10d433C888E6d1841fF924d0CE45157f0d5Cd/logo.png new file mode 100644 index 00000000..6491607f Binary files /dev/null and b/blockchains/classic/assets/0xD1c10d433C888E6d1841fF924d0CE45157f0d5Cd/logo.png differ diff --git a/blockchains/classic/assets/0xD1eBe08dAe15E604B043789cb140be646E0bd27b/info.json b/blockchains/classic/assets/0xD1eBe08dAe15E604B043789cb140be646E0bd27b/info.json new file mode 100644 index 00000000..f76c3ac1 --- /dev/null +++ b/blockchains/classic/assets/0xD1eBe08dAe15E604B043789cb140be646E0bd27b/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUnits HyperBytes", + "symbol": "BHB", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xD1eBe08dAe15E604B043789cb140be646E0bd27b", + "status": "active", + "id": "0xD1eBe08dAe15E604B043789cb140be646E0bd27b" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xD1eBe08dAe15E604B043789cb140be646E0bd27b/logo.png b/blockchains/classic/assets/0xD1eBe08dAe15E604B043789cb140be646E0bd27b/logo.png new file mode 100644 index 00000000..4400a5f2 Binary files /dev/null and b/blockchains/classic/assets/0xD1eBe08dAe15E604B043789cb140be646E0bd27b/logo.png differ diff --git a/blockchains/classic/assets/0xD4729a47FFDBDd190a015BB0C29fC613c5aD3cFE/info.json b/blockchains/classic/assets/0xD4729a47FFDBDd190a015BB0C29fC613c5aD3cFE/info.json new file mode 100644 index 00000000..8d0e478e --- /dev/null +++ b/blockchains/classic/assets/0xD4729a47FFDBDd190a015BB0C29fC613c5aD3cFE/info.json @@ -0,0 +1,11 @@ +{ + "name": "BCash Classic", + "symbol": "BCHC", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xD4729a47FFDBDd190a015BB0C29fC613c5aD3cFE", + "status": "active", + "id": "0xD4729a47FFDBDd190a015BB0C29fC613c5aD3cFE" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xD4729a47FFDBDd190a015BB0C29fC613c5aD3cFE/logo.png b/blockchains/classic/assets/0xD4729a47FFDBDd190a015BB0C29fC613c5aD3cFE/logo.png new file mode 100644 index 00000000..c263e215 Binary files /dev/null and b/blockchains/classic/assets/0xD4729a47FFDBDd190a015BB0C29fC613c5aD3cFE/logo.png differ diff --git a/blockchains/classic/assets/0xD507fAa6B65cF9E970d67cd108B224162495de30/info.json b/blockchains/classic/assets/0xD507fAa6B65cF9E970d67cd108B224162495de30/info.json new file mode 100644 index 00000000..425a0fdb --- /dev/null +++ b/blockchains/classic/assets/0xD507fAa6B65cF9E970d67cd108B224162495de30/info.json @@ -0,0 +1,11 @@ +{ + "name": "Arcadium Classic", + "symbol": "ACD", + "type": "ETC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xD507fAa6B65cF9E970d67cd108B224162495de30", + "status": "active", + "id": "0xD507fAa6B65cF9E970d67cd108B224162495de30" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xD507fAa6B65cF9E970d67cd108B224162495de30/logo.png b/blockchains/classic/assets/0xD507fAa6B65cF9E970d67cd108B224162495de30/logo.png new file mode 100644 index 00000000..97876875 Binary files /dev/null and b/blockchains/classic/assets/0xD507fAa6B65cF9E970d67cd108B224162495de30/logo.png differ diff --git a/blockchains/classic/assets/0xDF23a076b82a08cEFe696346DB702BBDD86838Bf/info.json b/blockchains/classic/assets/0xDF23a076b82a08cEFe696346DB702BBDD86838Bf/info.json new file mode 100644 index 00000000..f57e602d --- /dev/null +++ b/blockchains/classic/assets/0xDF23a076b82a08cEFe696346DB702BBDD86838Bf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vylingx", + "symbol": "VYLG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xDF23a076b82a08cEFe696346DB702BBDD86838Bf", + "status": "active", + "id": "0xDF23a076b82a08cEFe696346DB702BBDD86838Bf" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xDF23a076b82a08cEFe696346DB702BBDD86838Bf/logo.png b/blockchains/classic/assets/0xDF23a076b82a08cEFe696346DB702BBDD86838Bf/logo.png new file mode 100644 index 00000000..6b963778 Binary files /dev/null and b/blockchains/classic/assets/0xDF23a076b82a08cEFe696346DB702BBDD86838Bf/logo.png differ diff --git a/blockchains/classic/assets/0xDF9AaC76b722B08511A4C561607A9bf3AfA62E49/info.json b/blockchains/classic/assets/0xDF9AaC76b722B08511A4C561607A9bf3AfA62E49/info.json new file mode 100644 index 00000000..d4e98f92 --- /dev/null +++ b/blockchains/classic/assets/0xDF9AaC76b722B08511A4C561607A9bf3AfA62E49/info.json @@ -0,0 +1,11 @@ +{ + "name": "PoWH3C", + "symbol": "P3C", + "type": "ETC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xDF9AaC76b722B08511A4C561607A9bf3AfA62E49", + "status": "active", + "id": "0xDF9AaC76b722B08511A4C561607A9bf3AfA62E49" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xDF9AaC76b722B08511A4C561607A9bf3AfA62E49/logo.png b/blockchains/classic/assets/0xDF9AaC76b722B08511A4C561607A9bf3AfA62E49/logo.png new file mode 100644 index 00000000..582e1697 Binary files /dev/null and b/blockchains/classic/assets/0xDF9AaC76b722B08511A4C561607A9bf3AfA62E49/logo.png differ diff --git a/blockchains/classic/assets/0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A/info.json b/blockchains/classic/assets/0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A/info.json new file mode 100644 index 00000000..9dfa7577 --- /dev/null +++ b/blockchains/classic/assets/0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A/info.json @@ -0,0 +1,12 @@ +{ + "name": "?", + "type": "ETC20", + "symbol": "?", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A", + "status": "abandoned", + "id": "0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A", + "links": [] +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A/logo.png b/blockchains/classic/assets/0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A/logo.png new file mode 100755 index 00000000..9f2ecb97 Binary files /dev/null and b/blockchains/classic/assets/0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A/logo.png differ diff --git a/blockchains/classic/assets/0xFC07d3E0e36330a151c09384C3aD45e745227688/info.json b/blockchains/classic/assets/0xFC07d3E0e36330a151c09384C3aD45e745227688/info.json new file mode 100644 index 00000000..71eb3e87 --- /dev/null +++ b/blockchains/classic/assets/0xFC07d3E0e36330a151c09384C3aD45e745227688/info.json @@ -0,0 +1,11 @@ +{ + "name": "Highlander", + "symbol": "ONE", + "type": "ETC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xFC07d3E0e36330a151c09384C3aD45e745227688", + "status": "active", + "id": "0xFC07d3E0e36330a151c09384C3aD45e745227688" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xFC07d3E0e36330a151c09384C3aD45e745227688/logo.png b/blockchains/classic/assets/0xFC07d3E0e36330a151c09384C3aD45e745227688/logo.png new file mode 100644 index 00000000..f2678c57 Binary files /dev/null and b/blockchains/classic/assets/0xFC07d3E0e36330a151c09384C3aD45e745227688/logo.png differ diff --git a/blockchains/classic/assets/0xFF197d0558aa9CD8fF788c7f0d4A1A48E1c399D6/info.json b/blockchains/classic/assets/0xFF197d0558aa9CD8fF788c7f0d4A1A48E1c399D6/info.json new file mode 100644 index 00000000..72679138 --- /dev/null +++ b/blockchains/classic/assets/0xFF197d0558aa9CD8fF788c7f0d4A1A48E1c399D6/info.json @@ -0,0 +1,11 @@ +{ + "name": "DrakXat", + "symbol": "KXATG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xFF197d0558aa9CD8fF788c7f0d4A1A48E1c399D6", + "status": "active", + "id": "0xFF197d0558aa9CD8fF788c7f0d4A1A48E1c399D6" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xFF197d0558aa9CD8fF788c7f0d4A1A48E1c399D6/logo.png b/blockchains/classic/assets/0xFF197d0558aa9CD8fF788c7f0d4A1A48E1c399D6/logo.png new file mode 100644 index 00000000..667e605f Binary files /dev/null and b/blockchains/classic/assets/0xFF197d0558aa9CD8fF788c7f0d4A1A48E1c399D6/logo.png differ diff --git a/blockchains/classic/assets/0xFf8596169865c7cc1458b1c0eCCAFd4092C7F10f/info.json b/blockchains/classic/assets/0xFf8596169865c7cc1458b1c0eCCAFd4092C7F10f/info.json new file mode 100644 index 00000000..220708e6 --- /dev/null +++ b/blockchains/classic/assets/0xFf8596169865c7cc1458b1c0eCCAFd4092C7F10f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dogecoin Classic Token", + "symbol": "DOGECT", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xFf8596169865c7cc1458b1c0eCCAFd4092C7F10f", + "status": "active", + "id": "0xFf8596169865c7cc1458b1c0eCCAFd4092C7F10f" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xFf8596169865c7cc1458b1c0eCCAFd4092C7F10f/logo.png b/blockchains/classic/assets/0xFf8596169865c7cc1458b1c0eCCAFd4092C7F10f/logo.png new file mode 100644 index 00000000..6a9a974f Binary files /dev/null and b/blockchains/classic/assets/0xFf8596169865c7cc1458b1c0eCCAFd4092C7F10f/logo.png differ diff --git a/blockchains/classic/assets/0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f/info.json b/blockchains/classic/assets/0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f/info.json new file mode 100644 index 00000000..8f09d2b7 --- /dev/null +++ b/blockchains/classic/assets/0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f/info.json @@ -0,0 +1,12 @@ +{ + "name": "Coinibal", + "type": "ETC20", + "symbol": "COIN", + "decimals": 16, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f", + "status": "active", + "id": "0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f", + "links": [] +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f/logo.png b/blockchains/classic/assets/0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f/logo.png new file mode 100644 index 00000000..55383355 Binary files /dev/null and b/blockchains/classic/assets/0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f/logo.png differ diff --git a/blockchains/classic/assets/0xb81BbB68D2C32398e628f5183D1cfe9f24dFb678/info.json b/blockchains/classic/assets/0xb81BbB68D2C32398e628f5183D1cfe9f24dFb678/info.json new file mode 100644 index 00000000..9b0b44fb --- /dev/null +++ b/blockchains/classic/assets/0xb81BbB68D2C32398e628f5183D1cfe9f24dFb678/info.json @@ -0,0 +1,11 @@ +{ + "name": "USMilCoin", + "symbol": "UMC", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xb81BbB68D2C32398e628f5183D1cfe9f24dFb678", + "status": "active", + "id": "0xb81BbB68D2C32398e628f5183D1cfe9f24dFb678" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xb81BbB68D2C32398e628f5183D1cfe9f24dFb678/logo.png b/blockchains/classic/assets/0xb81BbB68D2C32398e628f5183D1cfe9f24dFb678/logo.png new file mode 100644 index 00000000..8371d2ab Binary files /dev/null and b/blockchains/classic/assets/0xb81BbB68D2C32398e628f5183D1cfe9f24dFb678/logo.png differ diff --git a/blockchains/classic/assets/0xc2A4CE7835c7b6de4F3F15303E25b3eF0bB43bDF/info.json b/blockchains/classic/assets/0xc2A4CE7835c7b6de4F3F15303E25b3eF0bB43bDF/info.json new file mode 100644 index 00000000..a7a24ce2 --- /dev/null +++ b/blockchains/classic/assets/0xc2A4CE7835c7b6de4F3F15303E25b3eF0bB43bDF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Spike", + "symbol": "SPKG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xc2A4CE7835c7b6de4F3F15303E25b3eF0bB43bDF", + "status": "active", + "id": "0xc2A4CE7835c7b6de4F3F15303E25b3eF0bB43bDF" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xc2A4CE7835c7b6de4F3F15303E25b3eF0bB43bDF/logo.png b/blockchains/classic/assets/0xc2A4CE7835c7b6de4F3F15303E25b3eF0bB43bDF/logo.png new file mode 100644 index 00000000..fe651b77 Binary files /dev/null and b/blockchains/classic/assets/0xc2A4CE7835c7b6de4F3F15303E25b3eF0bB43bDF/logo.png differ diff --git a/blockchains/classic/assets/0xc658E8372DaFFf26caa7439B95a1fF723baaef6E/info.json b/blockchains/classic/assets/0xc658E8372DaFFf26caa7439B95a1fF723baaef6E/info.json new file mode 100644 index 00000000..f33f88d9 --- /dev/null +++ b/blockchains/classic/assets/0xc658E8372DaFFf26caa7439B95a1fF723baaef6E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Flowejin", + "symbol": "FLOWG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xc658E8372DaFFf26caa7439B95a1fF723baaef6E", + "status": "active", + "id": "0xc658E8372DaFFf26caa7439B95a1fF723baaef6E" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xc658E8372DaFFf26caa7439B95a1fF723baaef6E/logo.png b/blockchains/classic/assets/0xc658E8372DaFFf26caa7439B95a1fF723baaef6E/logo.png new file mode 100644 index 00000000..8c853f56 Binary files /dev/null and b/blockchains/classic/assets/0xc658E8372DaFFf26caa7439B95a1fF723baaef6E/logo.png differ diff --git a/blockchains/classic/assets/0xc98333457471f82871B0193D0E4F03C6D7D7dFF8/info.json b/blockchains/classic/assets/0xc98333457471f82871B0193D0E4F03C6D7D7dFF8/info.json new file mode 100644 index 00000000..44c34f61 --- /dev/null +++ b/blockchains/classic/assets/0xc98333457471f82871B0193D0E4F03C6D7D7dFF8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xarrk", + "symbol": "ARKG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xc98333457471f82871B0193D0E4F03C6D7D7dFF8", + "status": "active", + "id": "0xc98333457471f82871B0193D0E4F03C6D7D7dFF8" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xc98333457471f82871B0193D0E4F03C6D7D7dFF8/logo.png b/blockchains/classic/assets/0xc98333457471f82871B0193D0E4F03C6D7D7dFF8/logo.png new file mode 100644 index 00000000..63134a27 Binary files /dev/null and b/blockchains/classic/assets/0xc98333457471f82871B0193D0E4F03C6D7D7dFF8/logo.png differ diff --git a/blockchains/classic/assets/0xca08DaeC07f11d9375cA64478e83a12fC35B09d2/info.json b/blockchains/classic/assets/0xca08DaeC07f11d9375cA64478e83a12fC35B09d2/info.json new file mode 100644 index 00000000..0d1367bf --- /dev/null +++ b/blockchains/classic/assets/0xca08DaeC07f11d9375cA64478e83a12fC35B09d2/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoneroToken", + "symbol": "XMRT", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xca08DaeC07f11d9375cA64478e83a12fC35B09d2", + "status": "active", + "id": "0xca08DaeC07f11d9375cA64478e83a12fC35B09d2" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xca08DaeC07f11d9375cA64478e83a12fC35B09d2/logo.png b/blockchains/classic/assets/0xca08DaeC07f11d9375cA64478e83a12fC35B09d2/logo.png new file mode 100644 index 00000000..54a4486e Binary files /dev/null and b/blockchains/classic/assets/0xca08DaeC07f11d9375cA64478e83a12fC35B09d2/logo.png differ diff --git a/blockchains/classic/assets/0xd6dF0C579f2A65049a893fDaEC9fCE098CC19F87/info.json b/blockchains/classic/assets/0xd6dF0C579f2A65049a893fDaEC9fCE098CC19F87/info.json new file mode 100644 index 00000000..0085a856 --- /dev/null +++ b/blockchains/classic/assets/0xd6dF0C579f2A65049a893fDaEC9fCE098CC19F87/info.json @@ -0,0 +1,12 @@ +{ + "name": "UniversalCoin X", + "type": "ETC20", + "symbol": "UVCX", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xd6dF0C579f2A65049a893fDaEC9fCE098CC19F87", + "status": "active", + "id": "0xd6dF0C579f2A65049a893fDaEC9fCE098CC19F87", + "links": [] +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xd6dF0C579f2A65049a893fDaEC9fCE098CC19F87/logo.png b/blockchains/classic/assets/0xd6dF0C579f2A65049a893fDaEC9fCE098CC19F87/logo.png new file mode 100644 index 00000000..61474ef9 Binary files /dev/null and b/blockchains/classic/assets/0xd6dF0C579f2A65049a893fDaEC9fCE098CC19F87/logo.png differ diff --git a/blockchains/classic/assets/0xdEb7ade9417f98AFbB60cd6b4a49d4B002AB79c9/info.json b/blockchains/classic/assets/0xdEb7ade9417f98AFbB60cd6b4a49d4B002AB79c9/info.json new file mode 100644 index 00000000..260f39bd --- /dev/null +++ b/blockchains/classic/assets/0xdEb7ade9417f98AFbB60cd6b4a49d4B002AB79c9/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUnits Jamaica", + "symbol": "BJAM", + "type": "ETC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xdEb7ade9417f98AFbB60cd6b4a49d4B002AB79c9", + "status": "active", + "id": "0xdEb7ade9417f98AFbB60cd6b4a49d4B002AB79c9" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xdEb7ade9417f98AFbB60cd6b4a49d4B002AB79c9/logo.png b/blockchains/classic/assets/0xdEb7ade9417f98AFbB60cd6b4a49d4B002AB79c9/logo.png new file mode 100644 index 00000000..9f67d934 Binary files /dev/null and b/blockchains/classic/assets/0xdEb7ade9417f98AFbB60cd6b4a49d4B002AB79c9/logo.png differ diff --git a/blockchains/classic/assets/0xdfd0A6BeD91d7609a0d84389Dcb7AAb5877e6AfA/info.json b/blockchains/classic/assets/0xdfd0A6BeD91d7609a0d84389Dcb7AAb5877e6AfA/info.json new file mode 100644 index 00000000..fd495c31 --- /dev/null +++ b/blockchains/classic/assets/0xdfd0A6BeD91d7609a0d84389Dcb7AAb5877e6AfA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gawks", + "symbol": "GKG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xdfd0A6BeD91d7609a0d84389Dcb7AAb5877e6AfA", + "status": "active", + "id": "0xdfd0A6BeD91d7609a0d84389Dcb7AAb5877e6AfA" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xdfd0A6BeD91d7609a0d84389Dcb7AAb5877e6AfA/logo.png b/blockchains/classic/assets/0xdfd0A6BeD91d7609a0d84389Dcb7AAb5877e6AfA/logo.png new file mode 100644 index 00000000..292de0be Binary files /dev/null and b/blockchains/classic/assets/0xdfd0A6BeD91d7609a0d84389Dcb7AAb5877e6AfA/logo.png differ diff --git a/blockchains/classic/assets/0xe37B29Ce789CFa51b72c64c93e0d7E2D7BA46681/info.json b/blockchains/classic/assets/0xe37B29Ce789CFa51b72c64c93e0d7E2D7BA46681/info.json new file mode 100644 index 00000000..c9eadd7f --- /dev/null +++ b/blockchains/classic/assets/0xe37B29Ce789CFa51b72c64c93e0d7E2D7BA46681/info.json @@ -0,0 +1,11 @@ +{ + "name": "Prince Draieo", + "symbol": "PDG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xe37B29Ce789CFa51b72c64c93e0d7E2D7BA46681", + "status": "active", + "id": "0xe37B29Ce789CFa51b72c64c93e0d7E2D7BA46681" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xe37B29Ce789CFa51b72c64c93e0d7E2D7BA46681/logo.png b/blockchains/classic/assets/0xe37B29Ce789CFa51b72c64c93e0d7E2D7BA46681/logo.png new file mode 100755 index 00000000..a279b68c Binary files /dev/null and b/blockchains/classic/assets/0xe37B29Ce789CFa51b72c64c93e0d7E2D7BA46681/logo.png differ diff --git a/blockchains/classic/assets/0xe9506979c9FA6f34b93846792c2d4aad7974ea55/info.json b/blockchains/classic/assets/0xe9506979c9FA6f34b93846792c2d4aad7974ea55/info.json new file mode 100644 index 00000000..6ce91c9b --- /dev/null +++ b/blockchains/classic/assets/0xe9506979c9FA6f34b93846792c2d4aad7974ea55/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ellekner", + "symbol": "ELG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xe9506979c9FA6f34b93846792c2d4aad7974ea55", + "status": "active", + "id": "0xe9506979c9FA6f34b93846792c2d4aad7974ea55" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xe9506979c9FA6f34b93846792c2d4aad7974ea55/logo.png b/blockchains/classic/assets/0xe9506979c9FA6f34b93846792c2d4aad7974ea55/logo.png new file mode 100755 index 00000000..725de21b Binary files /dev/null and b/blockchains/classic/assets/0xe9506979c9FA6f34b93846792c2d4aad7974ea55/logo.png differ diff --git a/blockchains/classic/assets/0xeceaDBB8441AA28b76D8c756EE873aC574068204/info.json b/blockchains/classic/assets/0xeceaDBB8441AA28b76D8c756EE873aC574068204/info.json new file mode 100644 index 00000000..cbff24b4 --- /dev/null +++ b/blockchains/classic/assets/0xeceaDBB8441AA28b76D8c756EE873aC574068204/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUnits Europa", + "symbol": "OPA", + "type": "ETC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xeceaDBB8441AA28b76D8c756EE873aC574068204", + "status": "active", + "id": "0xeceaDBB8441AA28b76D8c756EE873aC574068204" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xeceaDBB8441AA28b76D8c756EE873aC574068204/logo.png b/blockchains/classic/assets/0xeceaDBB8441AA28b76D8c756EE873aC574068204/logo.png new file mode 100644 index 00000000..e502c84e Binary files /dev/null and b/blockchains/classic/assets/0xeceaDBB8441AA28b76D8c756EE873aC574068204/logo.png differ diff --git a/blockchains/classic/assets/0xf03A967b0F6EedE6f73fd747a93006E9130525d4/info.json b/blockchains/classic/assets/0xf03A967b0F6EedE6f73fd747a93006E9130525d4/info.json new file mode 100644 index 00000000..753e8842 --- /dev/null +++ b/blockchains/classic/assets/0xf03A967b0F6EedE6f73fd747a93006E9130525d4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Atlantis", + "symbol": "eFork", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xf03A967b0F6EedE6f73fd747a93006E9130525d4", + "status": "active", + "id": "0xf03A967b0F6EedE6f73fd747a93006E9130525d4" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xf03A967b0F6EedE6f73fd747a93006E9130525d4/logo.png b/blockchains/classic/assets/0xf03A967b0F6EedE6f73fd747a93006E9130525d4/logo.png new file mode 100644 index 00000000..72a4d581 Binary files /dev/null and b/blockchains/classic/assets/0xf03A967b0F6EedE6f73fd747a93006E9130525d4/logo.png differ diff --git a/blockchains/classic/assets/0xf8af8f48ba1743ccb0001778070e4ce189225e90/info.json b/blockchains/classic/assets/0xf8af8f48ba1743ccb0001778070e4ce189225e90/info.json new file mode 100644 index 00000000..786ac8a1 --- /dev/null +++ b/blockchains/classic/assets/0xf8af8f48ba1743ccb0001778070e4ce189225e90/info.json @@ -0,0 +1,11 @@ +{ + "name": "USVeteranToken", + "symbol": "USVT", + "type": "ETC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xf8af8f48ba1743ccb0001778070e4ce189225e90", + "status": "active", + "id": "0xf8af8f48ba1743ccb0001778070e4ce189225e90" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xf8af8f48ba1743ccb0001778070e4ce189225e90/logo.png b/blockchains/classic/assets/0xf8af8f48ba1743ccb0001778070e4ce189225e90/logo.png new file mode 100644 index 00000000..6c091901 Binary files /dev/null and b/blockchains/classic/assets/0xf8af8f48ba1743ccb0001778070e4ce189225e90/logo.png differ diff --git a/blockchains/classic/assets/0xf962Ce2544f9e22da3DAE54b2A3040db7867f029/info.json b/blockchains/classic/assets/0xf962Ce2544f9e22da3DAE54b2A3040db7867f029/info.json new file mode 100644 index 00000000..3b35545b --- /dev/null +++ b/blockchains/classic/assets/0xf962Ce2544f9e22da3DAE54b2A3040db7867f029/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gorxon", + "symbol": "GRXG1", + "type": "ETC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/etc/mainnet/tokens/0xf962Ce2544f9e22da3DAE54b2A3040db7867f029", + "status": "active", + "id": "0xf962Ce2544f9e22da3DAE54b2A3040db7867f029" +} \ No newline at end of file diff --git a/blockchains/classic/assets/0xf962Ce2544f9e22da3DAE54b2A3040db7867f029/logo.png b/blockchains/classic/assets/0xf962Ce2544f9e22da3DAE54b2A3040db7867f029/logo.png new file mode 100755 index 00000000..8f5befc5 Binary files /dev/null and b/blockchains/classic/assets/0xf962Ce2544f9e22da3DAE54b2A3040db7867f029/logo.png differ diff --git a/blockchains/classic/info/info.json b/blockchains/classic/info/info.json new file mode 100644 index 00000000..334bdac9 --- /dev/null +++ b/blockchains/classic/info/info.json @@ -0,0 +1,31 @@ +{ + "name": "Ethereum Classic", + "website": "https://ethereumclassic.org/", + "description": "Ethereum Classic is an open-source, public, blockchain-based distributed computing platform featuring smart contract functionality.It is a continuation of the original Ethereum blockchain.", + "explorer": "https://blockscout.com/etc/mainnet/", + "research": "https://research.binance.com/en/projects/ethereum-classic", + "rpc_url": "https://besu-at.etc-network.info", + "coin_type": 61, + "symbol": "ETC", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/ethereumclassic/" + }, + { + "name": "x", + "url": "https://x.com/eth_classic" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EthereumClassic" + }, + { + "name": "whitepaper", + "url": "https://whitepaperdatabase.com/ethereum-classic-etc-whitepaper/" + } + ] +} \ No newline at end of file diff --git a/blockchains/classic/info/logo.png b/blockchains/classic/info/logo.png new file mode 100644 index 00000000..eb921c2b Binary files /dev/null and b/blockchains/classic/info/logo.png differ diff --git a/blockchains/classic/info/square_logo.png b/blockchains/classic/info/square_logo.png new file mode 100644 index 00000000..24e7635b 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 new file mode 100644 index 00000000..4c541db1 --- /dev/null +++ b/blockchains/comdex/info/info.json @@ -0,0 +1,24 @@ +{ + "name": "Comdex", + "type": "coin", + "symbol": "CMDX", + "decimals": 6, + "website": "https://comdex.one/", + "description": "Comdex is an interchain DeFi infrastructure layer housing a suite of composable solutions on-chain.", + "explorer": "https://www.mintscan.io/comdex", + "status": "active", + "rpc_url": "https://rpc-comdex.whispernode.com/", + "denom": "ucmdx", + "lcd_url": "https://rest.comdex.one/", + "hrp": "comdex", + "links": [ + { + "name": "github", + "url": "https://github.com/comdex-official" + }, + { + "name": "x", + "url": "https://x.com/ComdexOfficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/comdex/info/logo.png b/blockchains/comdex/info/logo.png new file mode 100644 index 00000000..919e9902 Binary files /dev/null and b/blockchains/comdex/info/logo.png differ diff --git a/blockchains/comdex/info/square_logo.png b/blockchains/comdex/info/square_logo.png new file mode 100644 index 00000000..bf05d3df 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 00000000..9b28ec00 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 00000000..0888af01 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 00000000..c2cb86a4 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 00000000..4b098137 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 00000000..02916372 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 00000000..c53de065 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 00000000..09f4545d --- /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 new file mode 100644 index 00000000..191afbfd --- /dev/null +++ b/blockchains/coreum/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Coreum", + "type": "coin", + "symbol": "CORE", + "decimals": 6, + "website": "https://www.coreum.com/", + "description": "Coreum is an enterprise-grade L1 blockchain to serve as a core infrastructure of future decentralized applications.", + "explorer": "https://www.mintscan.io/coreum", + "status": "active", + "rpc_url": "https://full-node-californium.mainnet-1.coreum.dev:26657/", + "denom": "ucore", + "lcd_url": "https://rest-coreum.ecostake.com/", + "hrp": "core", + "links": [ + { + "name": "github", + "url": "https://github.com/CoreumFoundation" + }, + { + "name": "github", + "url": "https://github.com/CoreumFoundation" + }, + { + "name": "x", + "url": "https://x.com/CoreumOfficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/coreum/info/logo.png b/blockchains/coreum/info/logo.png new file mode 100644 index 00000000..a8a6a75a Binary files /dev/null and b/blockchains/coreum/info/logo.png differ diff --git a/blockchains/coreum/info/square_logo.png b/blockchains/coreum/info/square_logo.png new file mode 100644 index 00000000..793f7b4a 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 00000000..02916372 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 00000000..10205271 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 00000000..c8e3f989 --- /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/chainlist.json b/blockchains/cosmos/chainlist.json new file mode 100644 index 00000000..fc060c82 --- /dev/null +++ b/blockchains/cosmos/chainlist.json @@ -0,0 +1,24 @@ +{ + "chains":[ + { + "chain":"juno-1", + "coinId":"juno" + }, + { + "chain":"stargaze-1", + "coinId":"stargaze" + }, + { + "chain":"axelar-dojo-1", + "coinId":"axelar" + }, + { + "chain":"irishub-1", + "coinId":"iris" + }, + { + "chain":"teritori-1", + "coinId":"teritori" + } + ] +} diff --git a/blockchains/cosmos/info/info.json b/blockchains/cosmos/info/info.json new file mode 100644 index 00000000..36131394 --- /dev/null +++ b/blockchains/cosmos/info/info.json @@ -0,0 +1,32 @@ +{ + "name": "Cosmos", + "website": "https://cosmos.network/", + "description": "Cosmos is a secure & scalable blockchain ecosystem where thousands of dApps interoperate to create the foundation for a new token economy.", + "explorer": "https://www.mintscan.io/", + "research": "https://research.binance.com/en/projects/cosmos-network", + "symbol": "ATOM", + "type": "coin", + "decimals": 6, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/cosmos" + }, + { + "name": "x", + "url": "https://x.com/cosmos" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/cosmosnetwork" + }, + { + "name": "whitepaper", + "url": "https://cosmos.network/resources/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/cosmos/info/logo.png b/blockchains/cosmos/info/logo.png new file mode 100644 index 00000000..8d272457 Binary files /dev/null and b/blockchains/cosmos/info/logo.png differ diff --git a/blockchains/cosmos/info/square_logo.png b/blockchains/cosmos/info/square_logo.png new file mode 100644 index 00000000..f2767309 Binary files /dev/null and b/blockchains/cosmos/info/square_logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1000ya26q2cmh399q4c5aaacd9lmmdqp90kw2jn/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1000ya26q2cmh399q4c5aaacd9lmmdqp90kw2jn/logo.png new file mode 100644 index 00000000..a349d55e Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1000ya26q2cmh399q4c5aaacd9lmmdqp90kw2jn/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper102ruvpv2srmunfffxavttxnhezln6fnc54at8c/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper102ruvpv2srmunfffxavttxnhezln6fnc54at8c/logo.png new file mode 100644 index 00000000..46722e10 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper102ruvpv2srmunfffxavttxnhezln6fnc54at8c/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper10e4vsut6suau8tk9m6dnrm0slgd6npe3jx5xpv/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper10e4vsut6suau8tk9m6dnrm0slgd6npe3jx5xpv/logo.png new file mode 100644 index 00000000..5d7b594d Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper10e4vsut6suau8tk9m6dnrm0slgd6npe3jx5xpv/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper10nzaaeh2kq28t3nqsh5m8kmyv90vx7ym5mpakx/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper10nzaaeh2kq28t3nqsh5m8kmyv90vx7ym5mpakx/logo.png new file mode 100644 index 00000000..8bfc7d3d Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper10nzaaeh2kq28t3nqsh5m8kmyv90vx7ym5mpakx/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper124maqmcqv8tquy764ktz7cu0gxnzfw54n3vww8/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper124maqmcqv8tquy764ktz7cu0gxnzfw54n3vww8/logo.png new file mode 100644 index 00000000..abb2e25f Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper124maqmcqv8tquy764ktz7cu0gxnzfw54n3vww8/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper132juzk0gdmwuxvx4phug7m3ymyatxlh9734g4w/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper132juzk0gdmwuxvx4phug7m3ymyatxlh9734g4w/logo.png new file mode 100644 index 00000000..7dbad06b Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper132juzk0gdmwuxvx4phug7m3ymyatxlh9734g4w/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8dnp684/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8dnp684/logo.png new file mode 100644 index 00000000..c53de065 Binary files /dev/null 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 00000000..9b28ec00 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zfd832j/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper146kwpzhmleafmhtaxulfptyhnvwxzlvm87hwnm/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper146kwpzhmleafmhtaxulfptyhnvwxzlvm87hwnm/logo.png new file mode 100644 index 00000000..4f52b211 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper146kwpzhmleafmhtaxulfptyhnvwxzlvm87hwnm/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper14k4pzckkre6uxxyd2lnhnpp8sngys9m6hl6ml7/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper14k4pzckkre6uxxyd2lnhnpp8sngys9m6hl6ml7/logo.png new file mode 100644 index 00000000..3932fa7c Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper14k4pzckkre6uxxyd2lnhnpp8sngys9m6hl6ml7/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper14kn0kk33szpwus9nh8n87fjel8djx0y070ymmj/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper14kn0kk33szpwus9nh8n87fjel8djx0y070ymmj/logo.png new file mode 100644 index 00000000..c5be095b Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper14kn0kk33szpwus9nh8n87fjel8djx0y070ymmj/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper14l0fp639yudfl46zauvv8rkzjgd4u0zk2aseys/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper14l0fp639yudfl46zauvv8rkzjgd4u0zk2aseys/logo.png new file mode 100644 index 00000000..7fe8f539 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper14l0fp639yudfl46zauvv8rkzjgd4u0zk2aseys/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper156gqf9837u7d4c4678yt3rl4ls9c5vuursrrzf/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper156gqf9837u7d4c4678yt3rl4ls9c5vuursrrzf/logo.png new file mode 100644 index 00000000..fad0b4ab Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper156gqf9837u7d4c4678yt3rl4ls9c5vuursrrzf/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper15r4tc0m6hc7z8drq3dzlrtcs6rq2q9l2nvwher/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper15r4tc0m6hc7z8drq3dzlrtcs6rq2q9l2nvwher/logo.png new file mode 100644 index 00000000..b49b56fa Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper15r4tc0m6hc7z8drq3dzlrtcs6rq2q9l2nvwher/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper15urq2dtp9qce4fyc85m6upwm9xul3049e02707/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper15urq2dtp9qce4fyc85m6upwm9xul3049e02707/logo.png new file mode 100644 index 00000000..64b5e5a8 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper15urq2dtp9qce4fyc85m6upwm9xul3049e02707/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 00000000..dc486ae3 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper16k579jk6yt2cwmqx9dz5xvq9fug2tekvlu9qdv/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper16k579jk6yt2cwmqx9dz5xvq9fug2tekvlu9qdv/logo.png new file mode 100644 index 00000000..e41c9d08 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper16k579jk6yt2cwmqx9dz5xvq9fug2tekvlu9qdv/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper16yupepagywvlk7uhpfchtwa0stu5f8cyhh54f2/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper16yupepagywvlk7uhpfchtwa0stu5f8cyhh54f2/logo.png new file mode 100644 index 00000000..0f6305d8 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper16yupepagywvlk7uhpfchtwa0stu5f8cyhh54f2/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper17h2x3j7u44qkrq0sk8ul0r2qr440rwgjkfg0gh/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper17h2x3j7u44qkrq0sk8ul0r2qr440rwgjkfg0gh/logo.png new file mode 100644 index 00000000..cbd25859 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper17h2x3j7u44qkrq0sk8ul0r2qr440rwgjkfg0gh/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper17mggn4znyeyg25wd7498qxl7r2jhgue8u4qjcq/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper17mggn4znyeyg25wd7498qxl7r2jhgue8u4qjcq/logo.png new file mode 100644 index 00000000..dac9370d Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper17mggn4znyeyg25wd7498qxl7r2jhgue8u4qjcq/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 00000000..9dff7bbe Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper18extdhzzl5c8tr6453e5hzaj3exrdlea90fj3y/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper18extdhzzl5c8tr6453e5hzaj3exrdlea90fj3y/logo.png new file mode 100644 index 00000000..63fe5615 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper18extdhzzl5c8tr6453e5hzaj3exrdlea90fj3y/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcvrj90c/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcvrj90c/logo.png new file mode 100644 index 00000000..16dfb3fc Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcvrj90c/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper19v9ej55ataqrfl39v83pf4e0dm69u89rngf928/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper19v9ej55ataqrfl39v83pf4e0dm69u89rngf928/logo.png new file mode 100644 index 00000000..010e8ca1 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper19v9ej55ataqrfl39v83pf4e0dm69u89rngf928/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1clpqr4nrk4khgkxj78fcwwh6dl3uw4epsluffn/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1clpqr4nrk4khgkxj78fcwwh6dl3uw4epsluffn/logo.png new file mode 100644 index 00000000..a0e2ca38 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1clpqr4nrk4khgkxj78fcwwh6dl3uw4epsluffn/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1crqm3598z6qmyn2kkcl9dz7uqs4qdqnr6s8jdn/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1crqm3598z6qmyn2kkcl9dz7uqs4qdqnr6s8jdn/logo.png new file mode 100644 index 00000000..e8390872 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1crqm3598z6qmyn2kkcl9dz7uqs4qdqnr6s8jdn/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1d0aup392g3enru7eash83sedqclaxvp7fzh6gk/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1d0aup392g3enru7eash83sedqclaxvp7fzh6gk/logo.png new file mode 100644 index 00000000..95078b56 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1d0aup392g3enru7eash83sedqclaxvp7fzh6gk/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1e0plfg475phrsvrlzw8gwppeva0zk5yg9fgg8c/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1e0plfg475phrsvrlzw8gwppeva0zk5yg9fgg8c/logo.png new file mode 100644 index 00000000..2df0ac0e Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1e0plfg475phrsvrlzw8gwppeva0zk5yg9fgg8c/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1ehkfl7palwrh6w2hhr2yfrgrq8jetgucudztfe/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1ehkfl7palwrh6w2hhr2yfrgrq8jetgucudztfe/logo.png new file mode 100644 index 00000000..479c102e Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1ehkfl7palwrh6w2hhr2yfrgrq8jetgucudztfe/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1ey69r37gfxvxg62sh4r0ktpuc46pzjrm873ae8/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1ey69r37gfxvxg62sh4r0ktpuc46pzjrm873ae8/logo.png new file mode 100755 index 00000000..f0d03247 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1ey69r37gfxvxg62sh4r0ktpuc46pzjrm873ae8/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1fhr7e04ct0zslmkzqt9smakg3sxrdve6ulclj2/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1fhr7e04ct0zslmkzqt9smakg3sxrdve6ulclj2/logo.png new file mode 100644 index 00000000..7d9d7432 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1fhr7e04ct0zslmkzqt9smakg3sxrdve6ulclj2/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1gf4wlkutql95j7wwsxz490s6fahlvk2s9xpwax/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1gf4wlkutql95j7wwsxz490s6fahlvk2s9xpwax/logo.png new file mode 100644 index 00000000..95674f5f Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1gf4wlkutql95j7wwsxz490s6fahlvk2s9xpwax/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 00000000..02916372 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1gpx52r9h3zeul45amvcy2pysgvcwddxrgx6cnv/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1grgelyng2v6v3t8z87wu3sxgt9m5s03xfytvz7/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1grgelyng2v6v3t8z87wu3sxgt9m5s03xfytvz7/logo.png new file mode 100644 index 00000000..f9aadec0 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1grgelyng2v6v3t8z87wu3sxgt9m5s03xfytvz7/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1hjadhj9nqzpye2vkmkz4thahhd0z8dh3udhq74/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1hjadhj9nqzpye2vkmkz4thahhd0z8dh3udhq74/logo.png new file mode 100644 index 00000000..0dc38d6a Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1hjadhj9nqzpye2vkmkz4thahhd0z8dh3udhq74/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpfdn6m9d/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpfdn6m9d/logo.png new file mode 100644 index 00000000..5ed55497 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpfdn6m9d/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1j0vaeh27t4rll7zhmarwcuq8xtrmvqhudrgcky/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1j0vaeh27t4rll7zhmarwcuq8xtrmvqhudrgcky/logo.png new file mode 100644 index 00000000..6bced9c2 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1j0vaeh27t4rll7zhmarwcuq8xtrmvqhudrgcky/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1jlr62guqwrwkdt4m3y00zh2rrsamhjf9num5xr/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1jlr62guqwrwkdt4m3y00zh2rrsamhjf9num5xr/logo.png new file mode 100644 index 00000000..1e347a8f Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1jlr62guqwrwkdt4m3y00zh2rrsamhjf9num5xr/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1jmykcq8gylmy5tgqtel4xj4q62fdt49sl584xd/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1jmykcq8gylmy5tgqtel4xj4q62fdt49sl584xd/logo.png new file mode 100644 index 00000000..4a94972e Binary files /dev/null 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 00000000..f5f3ada9 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1k6e7l0lz497l8njqjxpd3g4wlkdfwe93uqf03k/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1k9a0cs97vul8w2vwknlfmpez6prv8klv03lv3d/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1k9a0cs97vul8w2vwknlfmpez6prv8klv03lv3d/logo.png new file mode 100644 index 00000000..1ccd9ce9 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1k9a0cs97vul8w2vwknlfmpez6prv8klv03lv3d/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1kgddca7qj96z0qcxr2c45z73cfl0c75p7f3s2e/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1kgddca7qj96z0qcxr2c45z73cfl0c75p7f3s2e/logo.png new file mode 100644 index 00000000..c0f3ef94 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1kgddca7qj96z0qcxr2c45z73cfl0c75p7f3s2e/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1kj0h4kn4z5xvedu2nd9c4a9a559wvpuvu0h6qn/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1kj0h4kn4z5xvedu2nd9c4a9a559wvpuvu0h6qn/logo.png new file mode 100644 index 00000000..86d3233d Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1kj0h4kn4z5xvedu2nd9c4a9a559wvpuvu0h6qn/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1n229vhepft6wnkt5tjpwmxdmcnfz55jv3vp77d/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1n229vhepft6wnkt5tjpwmxdmcnfz55jv3vp77d/logo.png new file mode 100644 index 00000000..933fbfbc Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1n229vhepft6wnkt5tjpwmxdmcnfz55jv3vp77d/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1ptyzewnns2kn37ewtmv6ppsvhdnmeapvtfc9y5/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1ptyzewnns2kn37ewtmv6ppsvhdnmeapvtfc9y5/logo.png new file mode 100644 index 00000000..362d6366 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1ptyzewnns2kn37ewtmv6ppsvhdnmeapvtfc9y5/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1qwl879nx9t6kef4supyazayf7vjhennyh568ys/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1qwl879nx9t6kef4supyazayf7vjhennyh568ys/logo.png new file mode 100644 index 00000000..1cd09248 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1qwl879nx9t6kef4supyazayf7vjhennyh568ys/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1r2dthxctqzhwg299e7aaeqwfkgcc9hg8k3yd7m/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1r2dthxctqzhwg299e7aaeqwfkgcc9hg8k3yd7m/logo.png new file mode 100644 index 00000000..145cb3cb Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1r2dthxctqzhwg299e7aaeqwfkgcc9hg8k3yd7m/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1rcp29q3hpd246n6qak7jluqep4v006cdsc2kkl/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1rcp29q3hpd246n6qak7jluqep4v006cdsc2kkl/logo.png new file mode 100644 index 00000000..194e9693 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1rcp29q3hpd246n6qak7jluqep4v006cdsc2kkl/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1rfpar0qx3umnhu0f6wjp4hvnr3x6u5389e094j/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1rfpar0qx3umnhu0f6wjp4hvnr3x6u5389e094j/logo.png new file mode 100644 index 00000000..23ff32c9 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1rfpar0qx3umnhu0f6wjp4hvnr3x6u5389e094j/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1rwh0cxa72d3yle3r4l8gd7vyphrmjy2kpe4x72/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1rwh0cxa72d3yle3r4l8gd7vyphrmjy2kpe4x72/logo.png new file mode 100644 index 00000000..586f27b8 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1rwh0cxa72d3yle3r4l8gd7vyphrmjy2kpe4x72/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1sd4tl9aljmmezzudugs7zlaya7pg2895ws8tfs/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1sd4tl9aljmmezzudugs7zlaya7pg2895ws8tfs/logo.png new file mode 100644 index 00000000..6891376c Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1sd4tl9aljmmezzudugs7zlaya7pg2895ws8tfs/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9u2lcnj0/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9u2lcnj0/logo.png new file mode 100644 index 00000000..d01251cf Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9u2lcnj0/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1sxx9mszve0gaedz5ld7qdkjkfv8z992ax69k08/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1sxx9mszve0gaedz5ld7qdkjkfv8z992ax69k08/logo.png new file mode 100644 index 00000000..ba8ac31f Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1sxx9mszve0gaedz5ld7qdkjkfv8z992ax69k08/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1te8nxpc2myjfrhaty0dnzdhs5ahdh5agzuym9v/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1te8nxpc2myjfrhaty0dnzdhs5ahdh5agzuym9v/logo.png new file mode 100644 index 00000000..fe41a4ec Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1te8nxpc2myjfrhaty0dnzdhs5ahdh5agzuym9v/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1tflk30mq5vgqjdly92kkhhq3raev2hnz6eete3/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1tflk30mq5vgqjdly92kkhhq3raev2hnz6eete3/logo.png new file mode 100644 index 00000000..fbaf2f22 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1tflk30mq5vgqjdly92kkhhq3raev2hnz6eete3/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1ualhu3fjgg77g485gmyswkq3w0dp7gys6qzwrv/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1ualhu3fjgg77g485gmyswkq3w0dp7gys6qzwrv/logo.png new file mode 100644 index 00000000..b3f18138 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1ualhu3fjgg77g485gmyswkq3w0dp7gys6qzwrv/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1udpsgkgyutgsglauk9vk9rs03a3skc62gup9ny/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1udpsgkgyutgsglauk9vk9rs03a3skc62gup9ny/logo.png new file mode 100644 index 00000000..9ec4e254 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1udpsgkgyutgsglauk9vk9rs03a3skc62gup9ny/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1uutuwrwt3z2a5z8z3uasml3rftlpmu25aga5c6/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1uutuwrwt3z2a5z8z3uasml3rftlpmu25aga5c6/logo.png new file mode 100644 index 00000000..f88b24d9 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1uutuwrwt3z2a5z8z3uasml3rftlpmu25aga5c6/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1vjn3559ncztu87qj8v4ryasgny7vjfx7jhxzu6/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1vjn3559ncztu87qj8v4ryasgny7vjfx7jhxzu6/logo.png new file mode 100644 index 00000000..55a7246b Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1vjn3559ncztu87qj8v4ryasgny7vjfx7jhxzu6/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1vk706z2tfnqhdg6jrkngyx7f463jq58nj0x7p7/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1vk706z2tfnqhdg6jrkngyx7f463jq58nj0x7p7/logo.png new file mode 100644 index 00000000..d4c17acf Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1vk706z2tfnqhdg6jrkngyx7f463jq58nj0x7p7/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1w024sqzpvj5g57maxmvnlzellzwapwsv42360d/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1w024sqzpvj5g57maxmvnlzellzwapwsv42360d/logo.png new file mode 100644 index 00000000..c51d2ef1 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1w024sqzpvj5g57maxmvnlzellzwapwsv42360d/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1w42lm7zv55jrh5ggpecg0v643qeatfkd9aqf3f/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1w42lm7zv55jrh5ggpecg0v643qeatfkd9aqf3f/logo.png new file mode 100644 index 00000000..7e32aa5d Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1w42lm7zv55jrh5ggpecg0v643qeatfkd9aqf3f/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png new file mode 100644 index 00000000..0888af01 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1we6knm8qartmmh2r0qfpsz6pq0s7emv3e0meuw/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1we6knm8qartmmh2r0qfpsz6pq0s7emv3e0meuw/logo.png new file mode 100644 index 00000000..bda0e742 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1we6knm8qartmmh2r0qfpsz6pq0s7emv3e0meuw/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 00000000..bed02519 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1wrx0x9m9ykdhw9sg04v7uljme53wuj03aa5d4f/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1wwspfe7whh3zu4ql5rvpg044lyk6cuu7fpnd9e/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1wwspfe7whh3zu4ql5rvpg044lyk6cuu7fpnd9e/logo.png new file mode 100644 index 00000000..bba7c4c5 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1wwspfe7whh3zu4ql5rvpg044lyk6cuu7fpnd9e/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1x88j7vp2xnw3zec8ur3g4waxycyz7m0mahdv3p/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1x88j7vp2xnw3zec8ur3g4waxycyz7m0mahdv3p/logo.png new file mode 100644 index 00000000..b96a8b48 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1x88j7vp2xnw3zec8ur3g4waxycyz7m0mahdv3p/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2ztve7q/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2ztve7q/logo.png new file mode 100644 index 00000000..abcfc329 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2ztve7q/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1zqgheeawp7cmqk27dgyctd80rd8ryhqs6la9wc/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1zqgheeawp7cmqk27dgyctd80rd8ryhqs6la9wc/logo.png new file mode 100644 index 00000000..d263de35 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1zqgheeawp7cmqk27dgyctd80rd8ryhqs6la9wc/logo.png differ diff --git a/blockchains/cosmos/validators/list.json b/blockchains/cosmos/validators/list.json new file mode 100644 index 00000000..f65dbb22 --- /dev/null +++ b/blockchains/cosmos/validators/list.json @@ -0,0 +1,416 @@ +[ + { + "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", + "description": "Experienced validator based in Switzerland. We offer a highly secure and stable staking infrastructure.", + "website": "https://swiss-staking.ch" + }, + { + "id": "cosmosvaloper1r2dthxctqzhwg299e7aaeqwfkgcc9hg8k3yd7m", + "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": "cosmosvaloper1w42lm7zv55jrh5ggpecg0v643qeatfkd9aqf3f", + "name": "Mythos", + "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", + "description": "Fair and Equitable Staking for All / Operated by Chris Remus (@cjremus) / Validating since October 2017", + "website": "https://chainflow.io/cosmos/" + }, + { + "id": "cosmosvaloper16k579jk6yt2cwmqx9dz5xvq9fug2tekvlu9qdv", + "name": "Cephalopod Equipment", + "description": "Infrastructure for decentralized intelligence - by a Cosmos co-founder and some of the earliest team members", + "website": "https://cephalopod.equipment/" + }, + { + "id": "cosmosvaloper1ey69r37gfxvxg62sh4r0ktpuc46pzjrm873ae8", + "name": "Sikka", + "description": "The People's Validator. Operated by Sunny Aggarwal (@sunnya97) and Dev Ojha (@ValarDragon)", + "website": "https://sikka.tech/" + }, + { + "id": "cosmosvaloper1rwh0cxa72d3yle3r4l8gd7vyphrmjy2kpe4x72", + "name": "SparkPool", + "description": "The Largest Ethereum Mining Pool and the Keeper of Blockchain Networks. Delegate to SparkPool, Earn Your Lambo.", + "website": "https://cosmos.sparkpool.com/" + }, + { + "id": "cosmosvaloper1kj0h4kn4z5xvedu2nd9c4a9a559wvpuvu0h6qn", + "name": "Cryptium Labs", + "description": "Secure and available validation from the Swiss Alps.", + "website": "https://cosmos.cryptium.ch/" + }, + { + "id": "cosmosvaloper102ruvpv2srmunfffxavttxnhezln6fnc54at8c", + "name": "Ztake.org", + "description": "We have been participating in the validating role since early 2018 and is a proud member of the Never Jailed Crew of the Game of Stakes", + "website": "https://ztake.org" + }, + { + "id": "cosmosvaloper1qwl879nx9t6kef4supyazayf7vjhennyh568ys", + "name": "Certus One", + "description": "Stake and earn rewards with the most secure and stable validator. Winner of the Game of Stakes. Operated by Certus One Inc. By delegating, you confirm that you are aware of the risk of slashing and that Certus One Inc is not liable for any potential damages to your investment.", + "website": "https://certus.one" + }, + { + "id": "cosmosvaloper1grgelyng2v6v3t8z87wu3sxgt9m5s03xfytvz7", + "name": "iqlusion", + "description": "Iqlusion is the original developer of core Cosmos validator infrastructure such as the Tendermint KMS and HSM integration. We are focused on future potential of the Cosmos Hub and Zones. Visit our blog https://iqlusion.blog/ to learn more about state of the art security and benefits for our delegators.", + "website": "https://iqlusion.io/" + }, + { + "id": "cosmosvaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9u2lcnj0", + "name": "🐠stake.fish", + "description": "Leading validator for Proof of Stake blockchains and official winner of the Game of Stakes. Stake your cryptocurrencies with us. We know validating.", + "website": "https://stake.fish/" + }, + { + "id": "cosmosvaloper1clpqr4nrk4khgkxj78fcwwh6dl3uw4epsluffn", + "name": "Cosmostation", + "description": "We are Cosmostation. Delegate your ATOMs and start earning staking rewards with the most secure and reliable validator.", + "website": "https://cosmostation.io" + }, + { + "id": "cosmosvaloper1sxx9mszve0gaedz5ld7qdkjkfv8z992ax69k08", + "name": "validator.network", + "description": "Highly resilient and secure validator operating out of Northern Europe. See website for terms of service.", + "website": "https://validator.network" + }, + { + "id": "cosmosvaloper14kn0kk33szpwus9nh8n87fjel8djx0y070ymmj", + "name": "Forbole", + "description": "We are a named winner in Game of Stakes, HackAtom3 and HackAtom Seoul by Cosmos proving us as a validator with high uptime and never jailed. We are currently running a #PWYW campaign which you can choose how much commission you would like to pay us.", + "website": "https://forbole.com/cosmos-hub-validator/" + }, + { + "id": "cosmosvaloper1x88j7vp2xnw3zec8ur3g4waxycyz7m0mahdv3p", + "name": "Staking Facilities", + "description": "State of the art validator infrastructure. More than $1,000,000 in generated customer rewards. A named winner of Game of Stakes. Access your staking dashboard on our website.", + "website": "https://stakingfacilities.com/cosmos" + }, + { + "id": "cosmosvaloper14l0fp639yudfl46zauvv8rkzjgd4u0zk2aseys", + "name": "ATEAM", + "description": "[GOS Never Jailed crew & Top-Tier] Node A-Team promises to provide validator node operation services at the highest quality.", + "website": "https://nodeateam.com/" + }, + { + "id": "cosmosvaloper1sd4tl9aljmmezzudugs7zlaya7pg2895ws8tfs", + "name": "InfStones", + "description": "World's leading cloud infrastructure and staking as a service provicer for blockchains. Supernodes on EOS, TRON, VeChain, Ontology, LOOM, IOST and many other chains.", + "website": "https://infstones.io/" + }, + { + "id": "cosmosvaloper10e4vsut6suau8tk9m6dnrm0slgd6npe3jx5xpv", + "name": "B-Harvest", + "description": "B-Harvest focus on the value of high standard security & stability, active community participation on Cosmos Network, and real world practical use-case of blockchain technology.", + "website": "https://bharvest.io" + }, + { + "id": "cosmosvaloper132juzk0gdmwuxvx4phug7m3ymyatxlh9734g4w", + "name": "P2P Validator", + "description": "Simple, secure and intelligent staking service to help you generate rewards on your blockchain assets across 9+ networks within a single interface. One of the winners of Cosmos Game of Stakes. Let’s stake together - p2p.org", + "website": "https://p2p.org" + }, + { + "id": "cosmosvaloper1jlr62guqwrwkdt4m3y00zh2rrsamhjf9num5xr", + "name": "StakeWith.Us", + "description": "Secured Staking Made Easy. Put Your Crypto to Work - Hassle Free. Disclaimer: Delegators should understand that delegation comes with slashing risk. By delegating to StakeWithUs Pte Ltd, you acknowledge that StakeWithUs Pte Ltd is not liable for any losses on your investment.", + "website": "https://stakewith.us/" + }, + { + "id": "cosmosvaloper1te8nxpc2myjfrhaty0dnzdhs5ahdh5agzuym9v", + "name": "Coinone Node", + "description": "The more, the easier. Coinone Node manages your assets securely", + "website": "https://node.coinone.co.kr" + }, + { + "id": "cosmosvaloper1we6knm8qartmmh2r0qfpsz6pq0s7emv3e0meuw", + "name": "Staked", + "description": "Staked is the leading staking partner for the smartest investors in crypto, delivering staking rewards securely and reliably. Staked supports the largest number of chains and offers comprehensive reporting for tax & accounting.", + "website": "https://staked.us/" + }, + { + "id": "cosmosvaloper17mggn4znyeyg25wd7498qxl7r2jhgue8u4qjcq", + "name": "01node.com", + "description": "01node Secure Staking Services", + "website": "https://01node.com/" + }, + { + "id": "cosmosvaloper14k4pzckkre6uxxyd2lnhnpp8sngys9m6hl6ml7", + "name": "Polychain Labs", + "description": "Secure, institutional grade staking.", + "website": "https://polychainlabs.com" + }, + { + "id": "cosmosvaloper1ptyzewnns2kn37ewtmv6ppsvhdnmeapvtfc9y5", + "name": "WeStaking", + "description": "Secure Staking as a Service", + "website": "https://westaking.io" + }, + { + "id": "cosmosvaloper1tflk30mq5vgqjdly92kkhhq3raev2hnz6eete3", + "name": "Everstake", + "description": "Everstake - Staking Service Platform. Delegate ATOM with Everstake, your trustful staking service.", + "website": "https://everstake.one" + }, + { + "id": "cosmosvaloper146kwpzhmleafmhtaxulfptyhnvwxzlvm87hwnm", + "name": "KysenPool.io", + "description": "Based in Silicon Valley. Validators are backed by HSMs in Tier 3 enterprise-grade Data Centers. Creators of CosmosOutpost.io, a macroeconomic insights destination. Help secure Cosmos by delegating to KysenPool.", + "website": "https://kysenpool.io" + }, + { + "id": "cosmosvaloper15urq2dtp9qce4fyc85m6upwm9xul3049e02707", + "name": "Chorus One", + "description": "Secure Cosmos and shape its future by delegating to Chorus One, a highly secure and stable validator. By delegating, you agree to the terms of service at: https://chorus.one/cosmos/tos", + "website": "https://chorus.one/" + }, + { + "id": "cosmosvaloper15r4tc0m6hc7z8drq3dzlrtcs6rq2q9l2nvwher", + "name": "DragonStake", + "description": "Proud genesis block validator and Game of Stake winner", + "website": "https://dragonstake.io" + }, + { + "id": "cosmosvaloper1ehkfl7palwrh6w2hhr2yfrgrq8jetgucudztfe", + "name": "KalpaTech", + "description": "Description: KalpaTech | Genesis Validator | Game of Stakes winner | Services dedicated exclusively for Cosmos Hub | All resources put in one network", + "website": "https://kalpatech.co" + }, + { + "id": "cosmosvaloper1uutuwrwt3z2a5z8z3uasml3rftlpmu25aga5c6", + "name": "DelegaNetworks∞", + "description": "Your currencies are safe with Delega Networks", + "website": "https://delega.io" + }, + { + "id": "cosmosvaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpfdn6m9d", + "name": "Figment Networks", + "description": "Your Trusted Staking Partner: Offering institutional grade staking infrastructure, services & compliance tools for token holders and stake-based blockchains.", + "website": "https://figment.network/networks/cosmos" + }, + { + "id": "cosmosvaloper1kgddca7qj96z0qcxr2c45z73cfl0c75p7f3s2e", + "name": "ChainLayer", + "description": "Secure and reliable validator, simply because we care!", + "website": "https://chainlayer.io" + }, + { + "id": "cosmosvaloper156gqf9837u7d4c4678yt3rl4ls9c5vuursrrzf", + "name": "Binance Staking", + "description": "Binance exchange staking provider", + "website": "https://binance.com" + }, + { + "id": "cosmosvaloper1k9a0cs97vul8w2vwknlfmpez6prv8klv03lv3d", + "name": "Stake Capital DAO", + "description": "Trustless Digital Asset Management", + "website": "https://stake.capital" + }, + { + "id": "cosmosvaloper1d0aup392g3enru7eash83sedqclaxvp7fzh6gk", + "name": "Stir", + "description": "Staking as a Service Provider based in Singapore and Japan. Start Earning Staking Rewards. | Improve Blockchain UX and make it accessible for everyone.", + "website": "https://stir.network/" + }, + { + "id": "cosmosvaloper1zqgheeawp7cmqk27dgyctd80rd8ryhqs6la9wc", + "name": "melea", + "description": "Decentralized, secure and trusted Validator awarded in -Game Of Steaks-. Validating since 2017", + "website": "https://meleatrust.com" + }, + { + "id": "cosmosvaloper19v9ej55ataqrfl39v83pf4e0dm69u89rngf928", + "name": "blockscape", + "description": "Take control of your delegations. We are work hard to protect your assets and maximize your proft. Trusted, secure and high highly available Validator Infrastructure. 24/7 Support", + "website": "https://blockscape.network" + }, + { + "id": "cosmosvaloper1rfpar0qx3umnhu0f6wjp4hvnr3x6u5389e094j", + "name": "stake.zone", + "description": "secure and reliable with verifiable commitment through significant self-stake", + "website": "http://stake.zone" + }, + { + "id": "cosmosvaloper1000ya26q2cmh399q4c5aaacd9lmmdqp90kw2jn", + "name": "Staking Fund", + "description": "Staking Fund has been participating in the validating role since early 2018 and is a proud member of the Never Jailed Crew of Game of Stakes.", + "website": "https://staking.fund" + }, + { + "id": "cosmosvaloper1rcp29q3hpd246n6qak7jluqep4v006cdsc2kkl", + "name": "in3s.com", + "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" + }, + { + "id": "cosmosvaloper17h2x3j7u44qkrq0sk8ul0r2qr440rwgjkfg0gh", + "name": "FreshATOMS", + "description": "FreshAtoms runs on bare metal in a SSAE16 SOC2 certified Tier 3 datacenter, geographically distributed sentry nodes, YubiHSM2 signing, wrapped in 24/7 monitoring, alerting, and analytics.", + "website": "https://freshatoms.com/" + }, + { + "id": "cosmosvaloper1fhr7e04ct0zslmkzqt9smakg3sxrdve6ulclj2", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "cosmosvaloper1crqm3598z6qmyn2kkcl9dz7uqs4qdqnr6s8jdn", + "name": "Bison Trails", + "description": "Bison Trails is the easiest way to run secure Cosmos infrastructure. Our technology platform provides enterprise-grade security. We run redundant validators and sentry nodes across multiple regions and cloud providers, with a 99% node uptime guarantee.", + "website": "https://bisontrails.co/cosmos" + }, + { + "id": "cosmosvaloper1wwspfe7whh3zu4ql5rvpg044lyk6cuu7fpnd9e", + "name": "Bit Cat🐱", + "description": "Secure and stable Cosmos validator service from China team", + "website": "https://bitcat365.com" + }, + { + "id": "cosmosvaloper1vjn3559ncztu87qj8v4ryasgny7vjfx7jhxzu6", + "name": "Anonstake", + "description": "Anonstake.com is an EU based secure staking service. Keep your coins safe, delegate them and receive automatic payouts!", + "website": "https://anonstake.com" + }, + { + "id": "cosmosvaloper1e0plfg475phrsvrlzw8gwppeva0zk5yg9fgg8c", + "name": "Easy 2 Stake", + "description": "Easy.Stake.Trust. as easy and as simple as you would click next. Complete transparency and trust with a secure and stable validator. GoS winner, Never Jailed Crew", + "website": "https://easy2stake.com" + }, + { + "id": "cosmosvaloper1vk706z2tfnqhdg6jrkngyx7f463jq58nj0x7p7", + "name": "Public Payments", + "description": "A trusted proof of stake company that runs high performance nodes to guarantee the highest rewards.", + "website": "https://publicpayments.io/home/" + }, + { + "id": "cosmosvaloper124maqmcqv8tquy764ktz7cu0gxnzfw54n3vww8", + "name": "Simply Staking", + "description": "Simply Staking runs highly reliable and secure infrastructure in our own datacentre in Malta, built with the aim of supporting the growth of the blockchain ecosystem.", + "website": "http://simply-vc.com.mt/" + }, + { + "id": "cosmosvaloper1n229vhepft6wnkt5tjpwmxdmcnfz55jv3vp77d", + "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" + }, + { + "id": "cosmosvaloper1udpsgkgyutgsglauk9vk9rs03a3skc62gup9ny", + "name": "AUDIT.one", + "description": "Validators of today, Auditors of tomorrow", + "website": "https://audit.one" + }, + { + "id": "cosmosvaloper1ualhu3fjgg77g485gmyswkq3w0dp7gys6qzwrv", + "name": "Stake Systems", + "description": "Building infrastructure to support awesome projects running in the blockchain landscape", + "website": "https://stake.systems" + }, + { + "id": "cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna", + "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", + "name": "SG-1", + "description": "We are the blockchain SG-1 team. Our mission is to validate Cosmos SDK blockchains, develop Software around Cosmos and Tendermint. Our mission is to find new planets and ecosystems.", + "website": "https://sg-1.online" + }, + { + "id": "cosmosvaloper1w024sqzpvj5g57maxmvnlzellzwapwsv42360d", + "name": "Earn Stash", + "description": "Stake with us to earn more. High reliability. Low commission. We are a team of experienced node operator.", + "website": "https://earnstash.com" + }, + { + "id": "cosmosvaloper1jmykcq8gylmy5tgqtel4xj4q62fdt49sl584xd", + "name": "Blocks United", + "description": "Elevate your staking experience with autocompounding rewards, exclusive airdrop eligibility, and low commissions for maximized returns.", + "website": "https://blocksunited.com" + }, + { + "id": "cosmosvaloper18extdhzzl5c8tr6453e5hzaj3exrdlea90fj3y", + "name": "Smart Stake", + "description": "0% commission promo till April 2022. Commission fixed at 5% after promotion ends. Transparent & professional staking validator with automated monitoring tools to ensure high uptime. Dedicated support @ t.me/SmartStake", + "website": "https://smartstake.io/" + }, + { + "id": "cosmosvaloper10nzaaeh2kq28t3nqsh5m8kmyv90vx7ym5mpakx", + "name": "Blockdaemon", + "description": "Blockdaemon provides maximum uptime for the Cosmos network so that you can be confident your node will be there, ready and secure, for optimal reward generation.", + "website": "https://blockdaemon.com/marketplace/#staking" + }, + { + "id": "cosmosvaloper1hjadhj9nqzpye2vkmkz4thahhd0z8dh3udhq74", + "name": "Atomic Nodes", + "description": "Atomic Nodes is a multi chain staking operator, trusted by over 200,000 delegators since 2019.", + "website": "https://atomicnodes.com/" + }, + { + "id": "cosmosvaloper16yupepagywvlk7uhpfchtwa0stu5f8cyhh54f2", + "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": "cosmosvaloper1gf4wlkutql95j7wwsxz490s6fahlvk2s9xpwax", + "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": "cosmosvaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8dnp684", + "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 new file mode 100644 index 00000000..ba871961 --- /dev/null +++ b/blockchains/crescent/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Crescent", + "type": "coin", + "symbol": "CRE", + "decimals": 6, + "website": "https://crescent.network", + "description": "Crescent is to provide a connected DeFi functionality for Cosmos Ecosystem to enhance capital efficiency and manage risk effectively.", + "explorer": "https://www.mintscan.io/crescent", + "status": "active", + "rpc_url": "https://mainnet.crescent.network:26657/", + "denom": "ucre", + "lcd_url": "https://mainnet.crescent.network:1317/", + "hrp": "cre", + "links": [ + { + "name": "github", + "url": "https://github.com/crescent-network/crescent" + }, + { + "name": "telegram", + "url": "https://t.me/crescentnetwork" + }, + { + "name": "x", + "url": "https://x.com/CrescentHub" + } + ] +} \ No newline at end of file diff --git a/blockchains/crescent/info/logo.png b/blockchains/crescent/info/logo.png new file mode 100644 index 00000000..303368e4 Binary files /dev/null and b/blockchains/crescent/info/logo.png differ diff --git a/blockchains/crescent/info/square_logo.png b/blockchains/crescent/info/square_logo.png new file mode 100644 index 00000000..8c0aa479 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 00000000..4b098137 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 00000000..cbc90da9 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 00000000..0888af01 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 00000000..02916372 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 00000000..269ff481 --- /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/0xf58988341516DFADE0eaE3710D69083E0Ce75235/info.json b/blockchains/cronos/assets/0xf58988341516DFADE0eaE3710D69083E0Ce75235/info.json new file mode 100644 index 00000000..d3d82357 --- /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 00000000..cb6c4903 Binary files /dev/null and b/blockchains/cronos/assets/0xf58988341516DFADE0eaE3710D69083E0Ce75235/logo.png differ diff --git a/blockchains/cronos/info/info.json b/blockchains/cronos/info/info.json new file mode 100644 index 00000000..024f3026 --- /dev/null +++ b/blockchains/cronos/info/info.json @@ -0,0 +1,36 @@ +{ + "name": "Cronos", + "type": "coin", + "symbol": "CRO", + "decimals": 18, + "website": "https://crypto.com", + "research": "https://medium.com/about", + "description": "Pay and be paid in crypto anywhere, with any crypto, for free.", + "explorer": "https://cronoscan.com", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/cryptocom" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoComOfficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/Crypto_com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crypto-com-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/crypto-com-chain/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/info/logo.png b/blockchains/cronos/info/logo.png new file mode 100644 index 00000000..ae4b44e6 Binary files /dev/null and b/blockchains/cronos/info/logo.png differ diff --git a/blockchains/cronos/info/square_logo.png b/blockchains/cronos/info/square_logo.png new file mode 100644 index 00000000..073e3037 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 00000000..962a5206 --- /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/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/logo.png b/blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/logo.png new file mode 100644 index 00000000..adc4fb00 Binary files /dev/null and b/blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/logo.png differ diff --git a/blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/info.json b/blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/info.json new file mode 100644 index 00000000..1c026da5 --- /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/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/logo.png b/blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/logo.png new file mode 100644 index 00000000..1ab80529 Binary files /dev/null and b/blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/logo.png differ diff --git a/blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/info.json b/blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/info.json new file mode 100644 index 00000000..282e0764 --- /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/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/logo.png b/blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/logo.png new file mode 100644 index 00000000..4c55ec1d Binary files /dev/null and b/blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/logo.png differ diff --git a/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json b/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json new file mode 100644 index 00000000..ea894441 --- /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/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png b/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png new file mode 100644 index 00000000..ddeecff3 Binary files /dev/null and b/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png differ diff --git a/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json b/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json new file mode 100644 index 00000000..34bae815 --- /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/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/logo.png b/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/logo.png new file mode 100644 index 00000000..06f52b8a Binary files /dev/null and b/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/logo.png differ diff --git a/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/info.json b/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/info.json new file mode 100644 index 00000000..ab191e68 --- /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 00000000..ab55f5e2 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 00000000..dab6e503 --- /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/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/logo.png b/blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/logo.png new file mode 100644 index 00000000..d054ff56 Binary files /dev/null and b/blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/logo.png differ diff --git a/blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/info.json b/blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/info.json new file mode 100644 index 00000000..2ce4c6eb --- /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/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/logo.png b/blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/logo.png new file mode 100644 index 00000000..ff2f0603 Binary files /dev/null and b/blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/logo.png differ diff --git a/blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/info.json b/blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/info.json new file mode 100644 index 00000000..1f3ce7b4 --- /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/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/logo.png b/blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/logo.png new file mode 100644 index 00000000..4237ea55 Binary files /dev/null and b/blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/logo.png differ diff --git a/blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/info.json b/blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/info.json new file mode 100644 index 00000000..ae0e9b98 --- /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/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/logo.png b/blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/logo.png new file mode 100644 index 00000000..deffb845 Binary files /dev/null and b/blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/logo.png differ diff --git a/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/info.json b/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/info.json new file mode 100644 index 00000000..422f22cd --- /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/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/logo.png b/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/logo.png new file mode 100644 index 00000000..9e2aeeb4 Binary files /dev/null and b/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/logo.png differ diff --git a/blockchains/cryptoorg/info/info.json b/blockchains/cryptoorg/info/info.json new file mode 100644 index 00000000..5874ab19 --- /dev/null +++ b/blockchains/cryptoorg/info/info.json @@ -0,0 +1,31 @@ +{ + "name": "Crypto.org", + "website": "https://crypto.org/", + "description": "Crypto.org Chain is a blockchain application built using Cosmos SDK and Tendermint, intended as a backbone for some of the existing and future Crypto.org ecosystem.", + "explorer": "https://crypto.org/explorer", + "symbol": "CRO", + "type": "coin", + "decimals": 8, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/crypto-org-chain" + }, + { + "name": "x", + "url": "https://x.com/cryptocom" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Crypto_com/" + }, + { + "name": "whitepaper", + "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 new file mode 100644 index 00000000..08d6bd8e Binary files /dev/null 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 00000000..b6379e9d 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 00000000..9f0f2ffb 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 00000000..eaf66cb5 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 00000000..4169fbd4 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 00000000..0f6305d8 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 00000000..5870da0b 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 00000000..b2402257 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 00000000..cae8c0bc 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 00000000..40d99e26 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 00000000..78c9a408 --- /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 new file mode 100644 index 00000000..a3aad8cd --- /dev/null +++ b/blockchains/dash/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Dash", + "website": "https://dash.org/", + "description": "Dash (DASH) is digital cash designed to offer financial freedom to everyone. Payments are instant, easy and secure, with near-zero fees.", + "explorer": "https://blockchair.com/dash", + "research": "https://research.binance.com/en/projects/dash", + "symbol": "DASH", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/dashpay/dash" + }, + { + "name": "x", + "url": "https://x.com/Dashpay" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/dashpay" + }, + { + "name": "whitepaper", + "url": "https://github.com/dashpay/dash/wiki/Whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/dash/info/logo.png b/blockchains/dash/info/logo.png new file mode 100644 index 00000000..119370b3 Binary files /dev/null and b/blockchains/dash/info/logo.png differ diff --git a/blockchains/dash/info/square_logo.png b/blockchains/dash/info/square_logo.png new file mode 100644 index 00000000..78d6a43a 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 new file mode 100644 index 00000000..77a7736f --- /dev/null +++ b/blockchains/decred/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Decred", + "website": "https://decred.org", + "description": "Decred is a community-directed cryptocurrency with built-in governance to make it a superior long-term store of value.", + "explorer": "https://dcrdata.decred.org", + "research": "https://research.binance.com/en/projects/decred", + "symbol": "DCR", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/decred" + }, + { + "name": "x", + "url": "https://x.com/decredproject" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/decred" + }, + { + "name": "whitepaper", + "url": "https://docs.decred.org" + } + ] +} \ No newline at end of file diff --git a/blockchains/decred/info/logo.png b/blockchains/decred/info/logo.png new file mode 100644 index 00000000..064ecc7b Binary files /dev/null and b/blockchains/decred/info/logo.png differ diff --git a/blockchains/decred/info/square_logo.png b/blockchains/decred/info/square_logo.png new file mode 100644 index 00000000..72a9bdda 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 new file mode 100644 index 00000000..ca8c462a --- /dev/null +++ b/blockchains/digibyte/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "DigiByte", + "website": "http://digibyte.io", + "description": "DigiByte is a blockchain which focusses mainly on cybersecurity and fast transactions. Its blockrate of 1 block per 15 seconds makes it one of the fastest blockchains today.", + "explorer": "https://digiexplorer.info/", + "research": "https://research.binance.com/en/projects/digibyte", + "symbol": "DGB", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/DigiByte-Core" + }, + { + "name": "x", + "url": "https://x.com/DigiByteCoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Digibyte" + }, + { + "name": "whitepaper", + "url": "https://www.digibyte.io/digibyte-blockchain-faq" + } + ] +} \ No newline at end of file diff --git a/blockchains/digibyte/info/logo.png b/blockchains/digibyte/info/logo.png new file mode 100644 index 00000000..a11e79dd Binary files /dev/null and b/blockchains/digibyte/info/logo.png differ diff --git a/blockchains/digibyte/info/square_logo.png b/blockchains/digibyte/info/square_logo.png new file mode 100644 index 00000000..d8f93cf4 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 new file mode 100644 index 00000000..a8e71ce6 --- /dev/null +++ b/blockchains/doge/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Dogecoin", + "website": "http://dogecoin.com", + "description": "Dogecoin is an open source peer-to-peer digital currency, favored by Shiba Inus worldwide. Introduced as a joke currency on 6 December 2013, Dogecoin quickly developed its own online community.", + "explorer": "https://blockchair.com/dogecoin", + "research": "https://research.binance.com/en/projects/dogecoin", + "symbol": "DOGE", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/dogecoin/dogecoin" + }, + { + "name": "x", + "url": "https://x.com/dogecoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/dogecoin" + }, + { + "name": "whitepaper", + "url": "https://github.com/dogecoin/dogecoin/blob/master/README.md" + } + ] +} \ No newline at end of file diff --git a/blockchains/doge/info/logo.png b/blockchains/doge/info/logo.png new file mode 100644 index 00000000..99a72725 Binary files /dev/null and b/blockchains/doge/info/logo.png differ diff --git a/blockchains/doge/info/square_logo.png b/blockchains/doge/info/square_logo.png new file mode 100644 index 00000000..9f14a04a 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 new file mode 100644 index 00000000..6d76bf60 --- /dev/null +++ b/blockchains/ecash/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "eCash", + "website": "https://e.cash/", + "description": "eCash is an electronic cash platform that allows peer-to-peer online cash payments.", + "explorer": "https://explorer.bitcoinabc.org", + "research": "https://research.binance.com/en/projects/ecash", + "symbol": "XEC", + "type": "coin", + "decimals": 2, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/Bitcoin-ABC/bitcoin-abc" + }, + { + "name": "x", + "url": "https://x.com/eCashOfficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ecash" + }, + { + "name": "whitepaper", + "url": "https://www.bitcoincash.org/bitcoin.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ecash/info/logo.png b/blockchains/ecash/info/logo.png new file mode 100644 index 00000000..98de0667 Binary files /dev/null and b/blockchains/ecash/info/logo.png differ diff --git a/blockchains/ecash/info/square_logo.png b/blockchains/ecash/info/square_logo.png new file mode 100644 index 00000000..ded1d833 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 new file mode 100644 index 00000000..1c25220e --- /dev/null +++ b/blockchains/ellaism/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Ellaism", + "website": "https://ellaism.org", + "description": "A stable Ethereum-like network with no premine and no dev fees. Monetary policy is enabled with a total supply of 280 million ELLA.", + "explorer": "https://limax-explorer.outdoordevs.com/home", + "symbol": "ELLA", + "type": "coin", + "decimals": 8, + "status": "abandoned", + "links": [ + { + "name": "github", + "url": "https://github.com/ellaism" + }, + { + "name": "x", + "url": "https://x.com/ellaismproject" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ellaism" + }, + { + "name": "whitepaper", + "url": "https://wiki.ellaism.org/about/technical-informations" + } + ] +} \ No newline at end of file diff --git a/blockchains/ellaism/info/logo.png b/blockchains/ellaism/info/logo.png new file mode 100644 index 00000000..1bdc7954 Binary files /dev/null and b/blockchains/ellaism/info/logo.png differ diff --git a/blockchains/ellaism/info/square_logo.png b/blockchains/ellaism/info/square_logo.png new file mode 100644 index 00000000..51e3db19 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 new file mode 100644 index 00000000..df010968 --- /dev/null +++ b/blockchains/elrond/assets/ASH-a642d1/info.json @@ -0,0 +1,44 @@ +{ + "type": "ESDT", + "id": "ASH-a642d1", + "name": "AshSwap (on MultiversX)", + "symbol": "ASH", + "decimals": 18, + "status": "active", + "description": "AshSwap is the first stable-swap DEX built on the MultiversX blockchain that allows users to trade stable assets with high volume and small slippage.", + "website": "https://ashswap.io", + "explorer": "https://explorer.multiversx.com/tokens/ASH-a642d1", + "links": [ + { + "name": "blog", + "url": "https://medium.com/@ashswap" + }, + { + "name": "x", + "url": "https://x.com/ash_swap" + }, + { + "name": "whitepaper", + "url": "https://docs.ashswap.io/getting-started/ashswap-litepaper" + }, + { + "name": "telegram", + "url": "https://t.me/ashswapglobal" + }, + { + "name": "source_code", + "url": "https://github.com/ashswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ashswap" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ashswap" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/ASH-a642d1/logo.png b/blockchains/elrond/assets/ASH-a642d1/logo.png new file mode 100644 index 00000000..641969db Binary files /dev/null and b/blockchains/elrond/assets/ASH-a642d1/logo.png differ diff --git a/blockchains/elrond/assets/ASHWEGLD-38545c/info.json b/blockchains/elrond/assets/ASHWEGLD-38545c/info.json new file mode 100644 index 00000000..c6b7044f --- /dev/null +++ b/blockchains/elrond/assets/ASHWEGLD-38545c/info.json @@ -0,0 +1,44 @@ +{ + "type": "ESDT", + "id": "ASHWEGLD-38545c", + "name": "ASH/WEGLD LP (on MultiversX)", + "symbol": "ASHWEGLD", + "decimals": 18, + "status": "active", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the EGLD/ASH pool on xExchange.", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/ASHWEGLD-38545c", + "links": [ + { + "name": "docs", + "url": "https://docs.xexchange.com" + }, + { + "name": "x", + "url": "https://x.com/xExchangeApp" + }, + { + "name": "telegram", + "url": "https://t.me/xExchangeApp" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "source_code", + "url": "https://github.com/multiversx/mx-exchange-sc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/ASHWEGLD-38545c/logo.png b/blockchains/elrond/assets/ASHWEGLD-38545c/logo.png new file mode 100644 index 00000000..a3f6037e Binary files /dev/null and b/blockchains/elrond/assets/ASHWEGLD-38545c/logo.png differ diff --git a/blockchains/elrond/assets/BHAT-c1fde3/info.json b/blockchains/elrond/assets/BHAT-c1fde3/info.json new file mode 100644 index 00000000..ea06ee78 --- /dev/null +++ b/blockchains/elrond/assets/BHAT-c1fde3/info.json @@ -0,0 +1,36 @@ +{ + "type": "ESDT", + "id": "BHAT-c1fde3", + "name": "BHNetwork (on MultiversX)", + "symbol": "BHAT", + "decimals": 18, + "status": "active", + "description": "The BHAT Token is the epicenter of the BH Network web3 hub and allows access and interaction with all DeFi modules within the hub.", + "website": "https://bh.network/", + "explorer": "https://explorer.multiversx.com/tokens/BHAT-c1fde3", + "links": [ + { + "name": "blog", + "url": "https://bh.network/blog" + }, + { + "name": "x", + "url": "https://x.com/BlackHatNetwork" + }, + { + "name": "whitepaper", + "url": "https://bh.network/Whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bh-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/bhnetwork" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/BHAT-c1fde3/logo.png b/blockchains/elrond/assets/BHAT-c1fde3/logo.png new file mode 100644 index 00000000..b02967b8 Binary files /dev/null and b/blockchains/elrond/assets/BHAT-c1fde3/logo.png differ diff --git a/blockchains/elrond/assets/BHATWEGLD-f45935/info.json b/blockchains/elrond/assets/BHATWEGLD-f45935/info.json new file mode 100644 index 00000000..0620dd6e --- /dev/null +++ b/blockchains/elrond/assets/BHATWEGLD-f45935/info.json @@ -0,0 +1,44 @@ +{ + "type": "ESDT", + "id": "BHATWEGLD-f45935", + "name": "BHAT/WEGLD LP (on MultiversX)", + "symbol": "BHATWEGLD", + "decimals": 18, + "status": "active", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the BHAT/EGLD pool on xExchange.", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/BHATWEGLD-f45935", + "links": [ + { + "name": "docs", + "url": "https://docs.xexchange.com" + }, + { + "name": "x", + "url": "https://x.com/xExchangeApp" + }, + { + "name": "telegram", + "url": "https://t.me/xExchangeApp" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "source_code", + "url": "https://github.com/multiversx/mx-exchange-sc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/BHATWEGLD-f45935/logo.png b/blockchains/elrond/assets/BHATWEGLD-f45935/logo.png new file mode 100644 index 00000000..a3f6037e Binary files /dev/null and b/blockchains/elrond/assets/BHATWEGLD-f45935/logo.png differ diff --git a/blockchains/elrond/assets/CRT-52decf/info.json b/blockchains/elrond/assets/CRT-52decf/info.json new file mode 100644 index 00000000..61937d02 --- /dev/null +++ b/blockchains/elrond/assets/CRT-52decf/info.json @@ -0,0 +1,37 @@ +{ + "type": "ESDT", + "id": "CRT-52decf", + "name": "CantinaRoyale (on MultiversX)", + "symbol": "CRT", + "decimals": 18, + "status": "active", + "description": "The CRT token is essential for powering in-game utilities like NFT character progression, NFT recruiting, staking, and unlocking in-game assets inside of the Cantina Royale ecosystem.", + "website": "https://cantinaroyale.io", + "explorer": "https://explorer.multiversx.com/tokens/CRT-52decf", + "links": [ + { + "name": "blog", + "url": "https://blog.cantinaroyale.io" + }, + { + "name": "x", + "url": "https://x.com/CantinaRoyale" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.cantinaroyale.io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cantina-royale" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cantina-royale" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/CRT-52decf/logo.png b/blockchains/elrond/assets/CRT-52decf/logo.png new file mode 100644 index 00000000..13bda232 Binary files /dev/null and b/blockchains/elrond/assets/CRT-52decf/logo.png differ diff --git a/blockchains/elrond/assets/CRTWEGLD-1fac3f/info.json b/blockchains/elrond/assets/CRTWEGLD-1fac3f/info.json new file mode 100644 index 00000000..5d7dd373 --- /dev/null +++ b/blockchains/elrond/assets/CRTWEGLD-1fac3f/info.json @@ -0,0 +1,44 @@ +{ + "type": "ESDT", + "id": "CRTWEGLD-1fac3f", + "name": "CRT/WEGLD LP (on MultiversX)", + "symbol": "CRTWEGLD", + "decimals": 18, + "status": "active", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the EGLD/CRT pool on xExchange.", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/CRTWEGLD-1fac3f", + "links": [ + { + "name": "docs", + "url": "https://docs.xexchange.com" + }, + { + "name": "x", + "url": "https://x.com/xExchangeApp" + }, + { + "name": "telegram", + "url": "https://t.me/xExchangeApp" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "source_code", + "url": "https://github.com/multiversx/mx-exchange-sc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/CRTWEGLD-1fac3f/logo.png b/blockchains/elrond/assets/CRTWEGLD-1fac3f/logo.png new file mode 100644 index 00000000..a3f6037e Binary files /dev/null and b/blockchains/elrond/assets/CRTWEGLD-1fac3f/logo.png differ diff --git a/blockchains/elrond/assets/CRU-a5f4aa/info.json b/blockchains/elrond/assets/CRU-a5f4aa/info.json new file mode 100644 index 00000000..13bb378e --- /dev/null +++ b/blockchains/elrond/assets/CRU-a5f4aa/info.json @@ -0,0 +1,32 @@ +{ + "type": "ESDT", + "id": "CRU-a5f4aa", + "name": "CrustNetwork (on MultiversX)", + "symbol": "CRU", + "decimals": 18, + "status": "active", + "description": "Crust provides a Web3.0 decentralized storage network for the Metaverse. It is designed to realize core values of decentralization, privacy and assurance. Crust supports multiple storage-layer protocols such as IPFS, and exposes instant accessible on-chain storage functions to users. Crust's technical stack is also capable of supporting data manipulating and computing.", + "website": "https://www.crust.network", + "explorer": "https://explorer.multiversx.com/tokens/CRU-a5f4aa", + "links": [ + { + "name": "x", + "url": "https://x.com/crustnetwork" + }, + { + "name": "whitepaper", + "url": "https://gw.crustapps.net/ipfs/QmRYJN6V5BzwnXp7A2Avcp5WXkgzyunQwqP3Es2Q789phF" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crustnetwork/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/crust-network" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/CRU-a5f4aa/logo.png b/blockchains/elrond/assets/CRU-a5f4aa/logo.png new file mode 100644 index 00000000..a80795f9 Binary files /dev/null and b/blockchains/elrond/assets/CRU-a5f4aa/logo.png differ diff --git a/blockchains/elrond/assets/CRUWEGLD-76c269/info.json b/blockchains/elrond/assets/CRUWEGLD-76c269/info.json new file mode 100644 index 00000000..704dfb5f --- /dev/null +++ b/blockchains/elrond/assets/CRUWEGLD-76c269/info.json @@ -0,0 +1,44 @@ +{ + "type": "ESDT", + "id": "CRUWEGLD-76c269", + "name": "CRU/WEGLD LP (on MultiversX)", + "symbol": "CRUWEGLD", + "decimals": 18, + "status": "active", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the CRU/EGLD pool on xExchange.", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/CRUWEGLD-76c269", + "links": [ + { + "name": "docs", + "url": "https://docs.xexchange.com" + }, + { + "name": "x", + "url": "https://x.com/xExchangeApp" + }, + { + "name": "telegram", + "url": "https://t.me/xExchangeApp" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "source_code", + "url": "https://github.com/multiversx/mx-exchange-sc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/CRUWEGLD-76c269/logo.png b/blockchains/elrond/assets/CRUWEGLD-76c269/logo.png new file mode 100644 index 00000000..4a866ea6 Binary files /dev/null and b/blockchains/elrond/assets/CRUWEGLD-76c269/logo.png differ diff --git a/blockchains/elrond/assets/CYBER-489c1c/info.json b/blockchains/elrond/assets/CYBER-489c1c/info.json new file mode 100644 index 00000000..37a36905 --- /dev/null +++ b/blockchains/elrond/assets/CYBER-489c1c/info.json @@ -0,0 +1,37 @@ +{ + "type": "ESDT", + "id": "CYBER-489c1c", + "name": "CyberpunkCity (on MultiversX)", + "symbol": "CYBER", + "decimals": 18, + "status": "active", + "description": "CYBER token is the default currency used within Cyberpunk City Metaverse.", + "website": "https://cyberpunkcity.com", + "explorer": "https://explorer.multiversx.com/tokens/CYBER-489c1c", + "links": [ + { + "name": "blog", + "url": "https://cyberpunkcity.com/news" + }, + { + "name": "x", + "url": "https://x.com/cyberpunkcity" + }, + { + "name": "whitepaper", + "url": "https://cyberpunkcity.com/whitepaper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cyberpunk-city" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cyberpunk-city" + } + ], + "tags": [ + "governance", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/CYBER-489c1c/logo.png b/blockchains/elrond/assets/CYBER-489c1c/logo.png new file mode 100644 index 00000000..affb6cdf Binary files /dev/null and b/blockchains/elrond/assets/CYBER-489c1c/logo.png differ diff --git a/blockchains/elrond/assets/CYBERWEGLD-45a866/info.json b/blockchains/elrond/assets/CYBERWEGLD-45a866/info.json new file mode 100644 index 00000000..52dcc509 --- /dev/null +++ b/blockchains/elrond/assets/CYBERWEGLD-45a866/info.json @@ -0,0 +1,44 @@ +{ + "type": "ESDT", + "id": "CYBERWEGLD-45a866", + "name": "CYBER/WEGLD LP (on MultiversX)", + "symbol": "CYBERWEGLD", + "decimals": 18, + "status": "active", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the CYBER/WEGLD pool on xExchange.", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/CYBERWEGLD-45a866", + "links": [ + { + "name": "docs", + "url": "https://docs.xexchange.com" + }, + { + "name": "x", + "url": "https://x.com/xExchangeApp" + }, + { + "name": "telegram", + "url": "https://t.me/xExchangeApp" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "source_code", + "url": "https://github.com/multiversx/mx-exchange-sc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/CYBERWEGLD-45a866/logo.png b/blockchains/elrond/assets/CYBERWEGLD-45a866/logo.png new file mode 100644 index 00000000..a3f6037e Binary files /dev/null and b/blockchains/elrond/assets/CYBERWEGLD-45a866/logo.png differ diff --git a/blockchains/elrond/assets/EGLDMEX-0be9e5/info.json b/blockchains/elrond/assets/EGLDMEX-0be9e5/info.json new file mode 100644 index 00000000..43b06ef3 --- /dev/null +++ b/blockchains/elrond/assets/EGLDMEX-0be9e5/info.json @@ -0,0 +1,44 @@ +{ + "type": "ESDT", + "id": "EGLDMEX-0be9e5", + "name": "EGLD/MEX LP (on MultiversX)", + "symbol": "EGLDMEX", + "decimals": 18, + "status": "active", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the EGLD/MEX pool on xExchange.", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/EGLDMEX-0be9e5", + "links": [ + { + "name": "docs", + "url": "https://docs.xexchange.com" + }, + { + "name": "x", + "url": "https://x.com/xExchangeApp" + }, + { + "name": "telegram", + "url": "https://t.me/xExchangeApp" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "source_code", + "url": "https://github.com/multiversx/mx-exchange-sc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/EGLDMEX-0be9e5/logo.png b/blockchains/elrond/assets/EGLDMEX-0be9e5/logo.png new file mode 100644 index 00000000..4a866ea6 Binary files /dev/null and b/blockchains/elrond/assets/EGLDMEX-0be9e5/logo.png differ diff --git a/blockchains/elrond/assets/EGLDMEXF-5bcc57/info.json b/blockchains/elrond/assets/EGLDMEXF-5bcc57/info.json new file mode 100644 index 00000000..7fb2e12d --- /dev/null +++ b/blockchains/elrond/assets/EGLDMEXF-5bcc57/info.json @@ -0,0 +1,44 @@ +{ + "name": "EGLD/MEX LP Staked", + "symbol": "EGLDMEXF", + "type": "ESDT", + "decimals": 18, + "description": "This token tracks your LP token stake in the EGLD/MEX farm on the Maiar DEX.", + "website": "https://maiar.exchange", + "explorer": "https://explorer.multiversx.com/tokens/EGLDMEXF-5bcc57", + "status": "abandoned", + "id": "EGLDMEXF-5bcc57", + "links": [ + { + "name": "docs", + "url": "https://docs.maiar.exchange" + }, + { + "name": "x", + "url": "https://x.com/MaiarExchange" + }, + { + "name": "telegram", + "url": "https://t.me/MaiarExchange" + }, + { + "name": "facebook", + "url": "https://facebook.com/ElrondNetwork" + }, + { + "name": "blog", + "url": "https://elrond.com/blog" + }, + { + "name": "github", + "url": "https://github.com/ElrondNetwork" + }, + { + "name": "source_code", + "url": "https://github.com/ElrondNetwork/sc-dex-rs" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/EGLDRIDE-7bd51a/info.json b/blockchains/elrond/assets/EGLDRIDE-7bd51a/info.json new file mode 100644 index 00000000..c69fb55a --- /dev/null +++ b/blockchains/elrond/assets/EGLDRIDE-7bd51a/info.json @@ -0,0 +1,44 @@ +{ + "type": "ESDT", + "id": "EGLDRIDE-7bd51a", + "name": "EGLD/RIDE LP (on MultiversX)", + "symbol": "EGLDRIDE", + "decimals": 18, + "status": "active", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the EGLD/RIDE pool on xExchange.", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/EGLDRIDE-7bd51a", + "links": [ + { + "name": "docs", + "url": "https://docs.xexchange.com" + }, + { + "name": "x", + "url": "https://x.com/xExchangeApp" + }, + { + "name": "telegram", + "url": "https://t.me/xExchangeApp" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "source_code", + "url": "https://github.com/multiversx/mx-exchange-sc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/EGLDRIDE-7bd51a/logo.png b/blockchains/elrond/assets/EGLDRIDE-7bd51a/logo.png new file mode 100644 index 00000000..4a866ea6 Binary files /dev/null and b/blockchains/elrond/assets/EGLDRIDE-7bd51a/logo.png differ diff --git a/blockchains/elrond/assets/EGLDUSDC-594e5e/info.json b/blockchains/elrond/assets/EGLDUSDC-594e5e/info.json new file mode 100644 index 00000000..fd11d439 --- /dev/null +++ b/blockchains/elrond/assets/EGLDUSDC-594e5e/info.json @@ -0,0 +1,44 @@ +{ + "type": "ESDT", + "id": "EGLDUSDC-594e5e", + "name": "EGLD/USDC LP (on MultiversX)", + "symbol": "EGLDUSDC", + "decimals": 18, + "status": "active", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the EGLD/USDC pool on xExchange.", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/EGLDUSDC-594e5e", + "links": [ + { + "name": "docs", + "url": "https://docs.xexchange.com" + }, + { + "name": "x", + "url": "https://x.com/xExchangeApp" + }, + { + "name": "telegram", + "url": "https://t.me/xExchangeApp" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "source_code", + "url": "https://github.com/multiversx/mx-exchange-sc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/EGLDUSDC-594e5e/logo.png b/blockchains/elrond/assets/EGLDUSDC-594e5e/logo.png new file mode 100644 index 00000000..4a866ea6 Binary files /dev/null and b/blockchains/elrond/assets/EGLDUSDC-594e5e/logo.png differ diff --git a/blockchains/elrond/assets/EGLDUSDCF-8600f8/info.json b/blockchains/elrond/assets/EGLDUSDCF-8600f8/info.json new file mode 100644 index 00000000..880ceb36 --- /dev/null +++ b/blockchains/elrond/assets/EGLDUSDCF-8600f8/info.json @@ -0,0 +1,44 @@ +{ + "name": "EGLD/USDC LP Staked", + "symbol": "EGLDUSDCF", + "type": "ESDT", + "decimals": 18, + "description": "This token tracks your LP token stake in the EGLD/USDC farm on the Maiar DEX.", + "website": "https://maiar.exchange", + "explorer": "https://explorer.multiversx.com/tokens/EGLDUSDCF-8600f8", + "status": "abandoned", + "id": "EGLDUSDCF-8600f8", + "links": [ + { + "name": "docs", + "url": "https://docs.maiar.exchange" + }, + { + "name": "x", + "url": "https://x.com/MaiarExchange" + }, + { + "name": "telegram", + "url": "https://t.me/MaiarExchange" + }, + { + "name": "facebook", + "url": "https://facebook.com/ElrondNetwork" + }, + { + "name": "blog", + "url": "https://elrond.com/blog" + }, + { + "name": "github", + "url": "https://github.com/ElrondNetwork" + }, + { + "name": "source_code", + "url": "https://github.com/ElrondNetwork/sc-dex-rs" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/ITHEUM-df6f26/info.json b/blockchains/elrond/assets/ITHEUM-df6f26/info.json new file mode 100644 index 00000000..fb46630f --- /dev/null +++ b/blockchains/elrond/assets/ITHEUM-df6f26/info.json @@ -0,0 +1,38 @@ +{ + "type": "ESDT", + "id": "ITHEUM-df6f26", + "name": "Itheum (on MultiversX)", + "symbol": "ITHEUM", + "decimals": 18, + "status": "active", + "description": "The ITHEUM token forms the foundation for a decentralized web3 data economy, enabling vibrant and personalized metaverse worlds where data is traded with shared value between data creators and data consumers.", + "website": "https://www.itheum.io", + "explorer": "https://explorer.multiversx.com/tokens/ITHEUM-df6f26", + "links": [ + { + "name": "blog", + "url": "https://itheum.medium.com" + }, + { + "name": "x", + "url": "https://x.com/itheum" + }, + { + "name": "whitepaper", + "url": "https://itheum.io/whitepaper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/itheum/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/itheum" + } + ], + "tags": [ + "governance", + "nft", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/ITHEUM-df6f26/logo.png b/blockchains/elrond/assets/ITHEUM-df6f26/logo.png new file mode 100644 index 00000000..86d295ff Binary files /dev/null and b/blockchains/elrond/assets/ITHEUM-df6f26/logo.png differ diff --git a/blockchains/elrond/assets/ITHWEGLD-1adc53/info.json b/blockchains/elrond/assets/ITHWEGLD-1adc53/info.json new file mode 100644 index 00000000..eabb76f9 --- /dev/null +++ b/blockchains/elrond/assets/ITHWEGLD-1adc53/info.json @@ -0,0 +1,44 @@ +{ + "type": "ESDT", + "id": "ITHWEGLD-1adc53", + "name": "ITH/WEGLD LP (on MultiversX)", + "symbol": "ITHWEGLD", + "decimals": 18, + "status": "active", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the ITH/EGLD pool on xExchange.", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/ITHWEGLD-1adc53", + "links": [ + { + "name": "docs", + "url": "https://docs.xexchange.com" + }, + { + "name": "x", + "url": "https://x.com/xExchangeApp" + }, + { + "name": "telegram", + "url": "https://t.me/xExchangeApp" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "source_code", + "url": "https://github.com/multiversx/mx-exchange-sc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/ITHWEGLD-1adc53/logo.png b/blockchains/elrond/assets/ITHWEGLD-1adc53/logo.png new file mode 100644 index 00000000..4a866ea6 Binary files /dev/null and b/blockchains/elrond/assets/ITHWEGLD-1adc53/logo.png differ diff --git a/blockchains/elrond/assets/LKMEX-aab910/info.json b/blockchains/elrond/assets/LKMEX-aab910/info.json new file mode 100644 index 00000000..0231a25a --- /dev/null +++ b/blockchains/elrond/assets/LKMEX-aab910/info.json @@ -0,0 +1,45 @@ +{ + "name": "Locked MEX", + "symbol": "LKMEX", + "type": "ESDT", + "decimals": 18, + "description": "Locked MEX. Equal in value to MEX. Not tradeable.", + "website": "https://maiar.exchange", + "explorer": "https://explorer.multiversx.com/tokens/LKMEX-aab910", + "status": "abandoned", + "id": "LKMEX-aab910", + "links": [ + { + "name": "docs", + "url": "https://docs.maiar.exchange" + }, + { + "name": "x", + "url": "https://x.com/MaiarExchange" + }, + { + "name": "telegram", + "url": "https://t.me/MaiarExchange" + }, + { + "name": "facebook", + "url": "https://facebook.com/ElrondNetwork" + }, + { + "name": "blog", + "url": "https://elrond.com/blog" + }, + { + "name": "github", + "url": "https://github.com/ElrondNetwork" + }, + { + "name": "source_code", + "url": "https://github.com/ElrondNetwork/sc-dex-rs" + } + ], + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/MEX-455c57/info.json b/blockchains/elrond/assets/MEX-455c57/info.json new file mode 100644 index 00000000..1703a399 --- /dev/null +++ b/blockchains/elrond/assets/MEX-455c57/info.json @@ -0,0 +1,53 @@ +{ + "type": "ESDT", + "id": "MEX-455c57", + "name": "MEX (on MultiversX)", + "symbol": "MEX", + "decimals": 18, + "status": "active", + "description": "MEX is the utility token of xExchange.", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/MEX-455c57", + "links": [ + { + "name": "docs", + "url": "https://docs.xexchange.com" + }, + { + "name": "x", + "url": "https://x.com/xExchangeApp" + }, + { + "name": "telegram", + "url": "https://t.me/xExchangeApp" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "source_code", + "url": "https://github.com/multiversx/mx-exchange-sc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xexchange" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/xexchange" + } + ], + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/MEX-455c57/logo.png b/blockchains/elrond/assets/MEX-455c57/logo.png new file mode 100644 index 00000000..34f31a1a Binary files /dev/null and b/blockchains/elrond/assets/MEX-455c57/logo.png differ diff --git a/blockchains/elrond/assets/MEXFARM-e7af52/info.json b/blockchains/elrond/assets/MEXFARM-e7af52/info.json new file mode 100644 index 00000000..27d972c9 --- /dev/null +++ b/blockchains/elrond/assets/MEXFARM-e7af52/info.json @@ -0,0 +1,44 @@ +{ + "name": "MEX Staked", + "symbol": "MEXFARM", + "type": "ESDT", + "decimals": 18, + "description": "This token tracks your MEX stake in the MEX farm on the Maiar DEX.", + "website": "https://maiar.exchange", + "explorer": "https://explorer.multiversx.com/tokens/MEXFARM-e7af52", + "status": "abandoned", + "id": "MEXFARM-e7af52", + "links": [ + { + "name": "docs", + "url": "https://docs.maiar.exchange" + }, + { + "name": "x", + "url": "https://x.com/MaiarExchange" + }, + { + "name": "telegram", + "url": "https://t.me/MaiarExchange" + }, + { + "name": "facebook", + "url": "https://facebook.com/ElrondNetwork" + }, + { + "name": "blog", + "url": "https://elrond.com/blog" + }, + { + "name": "github", + "url": "https://github.com/ElrondNetwork" + }, + { + "name": "source_code", + "url": "https://github.com/ElrondNetwork/sc-dex-rs" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/OFE-29eb54/info.json b/blockchains/elrond/assets/OFE-29eb54/info.json new file mode 100644 index 00000000..75d4c1c4 --- /dev/null +++ b/blockchains/elrond/assets/OFE-29eb54/info.json @@ -0,0 +1,44 @@ +{ + "type": "ESDT", + "id": "OFE-29eb54", + "name": "Ofero (on MultiversX)", + "symbol": "OFE", + "decimals": 4, + "status": "active", + "description": "The Ofero Token (OFE) is the utility Token of the Ofero Network.", + "website": "https://ofero.network", + "explorer": "https://explorer.multiversx.com/tokens/OFE-29eb54", + "links": [ + { + "name": "x", + "url": "https://x.com/oferonetwork" + }, + { + "name": "whitepaper", + "url": "https://ofero.network/documents/whitepaper.pdf" + }, + { + "name": "github", + "url": "https://github.com/oferonetwork" + }, + { + "name": "youtube", + "url": "https://youtube.com/@oferonetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ofero-network/" + }, + { + "name": "facebook", + "url": "https://facebook.com/oferonetwork" + }, + { + "name": "telegram", + "url": "https://t.me/oferonetwork" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/OFE-29eb54/logo.png b/blockchains/elrond/assets/OFE-29eb54/logo.png new file mode 100644 index 00000000..cfd0570e Binary files /dev/null and b/blockchains/elrond/assets/OFE-29eb54/logo.png differ diff --git a/blockchains/elrond/assets/QWT-46ac01/info.json b/blockchains/elrond/assets/QWT-46ac01/info.json new file mode 100644 index 00000000..01caf741 --- /dev/null +++ b/blockchains/elrond/assets/QWT-46ac01/info.json @@ -0,0 +1,32 @@ +{ + "type": "ESDT", + "id": "QWT-46ac01", + "name": "QoWatt (on MultiversX)", + "symbol": "QWT", + "decimals": 6, + "status": "active", + "description": "QoWatt Tokens, first EV charging network using Blockchain in Europe.", + "website": "https://qowatt.network", + "explorer": "https://explorer.multiversx.com/tokens/QWT-46ac01", + "links": [ + { + "name": "x", + "url": "https://x.com/QoWattEcosystem" + }, + { + "name": "whitepaper", + "url": "https://qowatt.network/_doc/QoWatt_Whitepaper_EN.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qowatt" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/qowatt" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/QWT-46ac01/logo.png b/blockchains/elrond/assets/QWT-46ac01/logo.png new file mode 100644 index 00000000..039e7a50 Binary files /dev/null and b/blockchains/elrond/assets/QWT-46ac01/logo.png differ diff --git a/blockchains/elrond/assets/QWTWEGLD-3eff55/info.json b/blockchains/elrond/assets/QWTWEGLD-3eff55/info.json new file mode 100644 index 00000000..667f7b47 --- /dev/null +++ b/blockchains/elrond/assets/QWTWEGLD-3eff55/info.json @@ -0,0 +1,44 @@ +{ + "type": "ESDT", + "id": "QWTWEGLD-3eff55", + "name": "QWT/WEGLD LP (on MultiversX)", + "symbol": "QWTWEGLD", + "decimals": 18, + "status": "active", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the EGLD/QWT pool on xExchange.", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/QWTWEGLD-3eff55", + "links": [ + { + "name": "docs", + "url": "https://docs.xexchange.com" + }, + { + "name": "x", + "url": "https://x.com/xExchangeApp" + }, + { + "name": "telegram", + "url": "https://t.me/xExchangeApp" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "source_code", + "url": "https://github.com/multiversx/mx-exchange-sc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/QWTWEGLD-3eff55/logo.png b/blockchains/elrond/assets/QWTWEGLD-3eff55/logo.png new file mode 100644 index 00000000..a3f6037e Binary files /dev/null and b/blockchains/elrond/assets/QWTWEGLD-3eff55/logo.png differ diff --git a/blockchains/elrond/assets/RIDE-7d18e9/info.json b/blockchains/elrond/assets/RIDE-7d18e9/info.json new file mode 100644 index 00000000..19cbda10 --- /dev/null +++ b/blockchains/elrond/assets/RIDE-7d18e9/info.json @@ -0,0 +1,36 @@ +{ + "type": "ESDT", + "id": "RIDE-7d18e9", + "name": "holoride (on MultiversX)", + "symbol": "RIDE", + "decimals": 18, + "status": "active", + "description": "The RIDE token is essential for building a vibrant and sustainable economy for the holoride ecosystem, connecting car manufacturers, content creators, brands, and passengers and enabling them to capture value along the way.", + "website": "https://www.holoride.com", + "explorer": "https://explorer.multiversx.com/tokens/RIDE-7d18e9", + "links": [ + { + "name": "blog", + "url": "https://www.holoride.com/newsroom" + }, + { + "name": "x", + "url": "https://x.com/holoride" + }, + { + "name": "whitepaper", + "url": "https://a.storyblok.com/f/113424/x/334861532d/holoride_litepaper_v2-1_nov21.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/holoride/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/holoride" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/RIDE-7d18e9/logo.png b/blockchains/elrond/assets/RIDE-7d18e9/logo.png new file mode 100644 index 00000000..e8f721d1 Binary files /dev/null and b/blockchains/elrond/assets/RIDE-7d18e9/logo.png differ diff --git a/blockchains/elrond/assets/SFIT-aebc90/info.json b/blockchains/elrond/assets/SFIT-aebc90/info.json new file mode 100644 index 00000000..54549549 --- /dev/null +++ b/blockchains/elrond/assets/SFIT-aebc90/info.json @@ -0,0 +1,36 @@ +{ + "type": "ESDT", + "id": "SFIT-aebc90", + "name": "Sense4FIT (on MultiversX)", + "symbol": "SFIT", + "decimals": 18, + "status": "active", + "description": "SFIT is the utility token for the entire Sense4FIT Ecosystem.", + "website": "https://sense4fit.io/", + "explorer": "https://explorer.multiversx.com/tokens/SFIT-aebc90", + "links": [ + { + "name": "x", + "url": "https://x.com/sense4fit" + }, + { + "name": "whitepaper", + "url": "https://sense4fit.gitbook.io/whitepaper" + }, + { + "name": "telegram", + "url": "https://t.me/Sense4FIT_Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sense4fit" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sense4fit" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/SFIT-aebc90/logo.png b/blockchains/elrond/assets/SFIT-aebc90/logo.png new file mode 100644 index 00000000..89e144ae Binary files /dev/null and b/blockchains/elrond/assets/SFIT-aebc90/logo.png differ diff --git a/blockchains/elrond/assets/SFITWEGLD-934909/info.json b/blockchains/elrond/assets/SFITWEGLD-934909/info.json new file mode 100644 index 00000000..2b9be060 --- /dev/null +++ b/blockchains/elrond/assets/SFITWEGLD-934909/info.json @@ -0,0 +1,44 @@ +{ + "type": "ESDT", + "id": "SFITWEGLD-934909", + "name": "SFIT/WEGLD LP (on MultiversX)", + "symbol": "SFITWEGLD", + "decimals": 18, + "status": "active", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the SFIT/WEGLD pool on xExchange.", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/SFITWEGLD-934909", + "links": [ + { + "name": "docs", + "url": "https://docs.xexchange.com" + }, + { + "name": "x", + "url": "https://x.com/xExchangeApp" + }, + { + "name": "telegram", + "url": "https://t.me/xExchangeApp" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "source_code", + "url": "https://github.com/multiversx/mx-exchange-sc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/SFITWEGLD-934909/logo.png b/blockchains/elrond/assets/SFITWEGLD-934909/logo.png new file mode 100644 index 00000000..a3f6037e Binary files /dev/null and b/blockchains/elrond/assets/SFITWEGLD-934909/logo.png differ diff --git a/blockchains/elrond/assets/USDC-c76f1f/info.json b/blockchains/elrond/assets/USDC-c76f1f/info.json new file mode 100644 index 00000000..67e4042a --- /dev/null +++ b/blockchains/elrond/assets/USDC-c76f1f/info.json @@ -0,0 +1,29 @@ +{ + "type": "ESDT", + "id": "USDC-c76f1f", + "name": "Wrapped USDC (on MultiversX)", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "description": "USDC stablecoin originating on Ethereum, bridged as an ESDT token on MultiversX. 1 USDC = 1 Wrapped USDC", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/USDC-c76f1f", + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin" + } + ], + "tags": [ + "stablecoin", + "wrapped" + ] +} diff --git a/blockchains/elrond/assets/USDC-c76f1f/logo.png b/blockchains/elrond/assets/USDC-c76f1f/logo.png new file mode 100644 index 00000000..4ff6e996 Binary files /dev/null and b/blockchains/elrond/assets/USDC-c76f1f/logo.png differ diff --git a/blockchains/elrond/assets/USDT-f8c08c/info.json b/blockchains/elrond/assets/USDT-f8c08c/info.json new file mode 100644 index 00000000..5337eaaa --- /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 00000000..4b302730 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 new file mode 100644 index 00000000..16e1827c --- /dev/null +++ b/blockchains/elrond/assets/UTK-2f80e9/info.json @@ -0,0 +1,32 @@ +{ + "type": "ESDT", + "id": "UTK-2f80e9", + "name": "Utrust (on MultiversX)", + "symbol": "UTK", + "decimals": 18, + "status": "active", + "description": "Web3 L1 Payments Technology", + "website": "https://utrust.com/", + "explorer": "https://explorer.multiversx.com/tokens/UTK-2f80e9", + "links": [ + { + "name": "blog", + "url": "https://medium.com/utrust" + }, + { + "name": "x", + "url": "https://x.com/utrust" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/utrust" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/utrust" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/UTK-2f80e9/logo.png b/blockchains/elrond/assets/UTK-2f80e9/logo.png new file mode 100644 index 00000000..04dbcdc4 Binary files /dev/null and b/blockchains/elrond/assets/UTK-2f80e9/logo.png differ diff --git a/blockchains/elrond/assets/UTKWEGLD-c960d1/info.json b/blockchains/elrond/assets/UTKWEGLD-c960d1/info.json new file mode 100644 index 00000000..69855ae4 --- /dev/null +++ b/blockchains/elrond/assets/UTKWEGLD-c960d1/info.json @@ -0,0 +1,44 @@ +{ + "type": "ESDT", + "id": "UTKWEGLD-c960d1", + "name": "UTK/WEGLD LP (on MultiversX)", + "symbol": "UTKWEGLD", + "decimals": 18, + "status": "active", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the UTK/EGLD pool on xExchange.", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/UTKWEGLD-c960d1", + "links": [ + { + "name": "docs", + "url": "https://docs.xexchange.com" + }, + { + "name": "x", + "url": "https://x.com/xExchangeApp" + }, + { + "name": "telegram", + "url": "https://t.me/xExchangeApp" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "source_code", + "url": "https://github.com/multiversx/mx-exchange-sc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/UTKWEGLD-c960d1/logo.png b/blockchains/elrond/assets/UTKWEGLD-c960d1/logo.png new file mode 100644 index 00000000..4a866ea6 Binary files /dev/null and b/blockchains/elrond/assets/UTKWEGLD-c960d1/logo.png differ diff --git a/blockchains/elrond/assets/WEGLD-bd4d79/info.json b/blockchains/elrond/assets/WEGLD-bd4d79/info.json new file mode 100644 index 00000000..8322bcf5 --- /dev/null +++ b/blockchains/elrond/assets/WEGLD-bd4d79/info.json @@ -0,0 +1,48 @@ +{ + "type": "ESDT", + "id": "WEGLD-bd4d79", + "name": "Wrapped EGLD (on MultiversX)", + "symbol": "WEGLD", + "decimals": 18, + "status": "active", + "description": "WEGLD is an ESDT token that has the same value as EGLD, the native coin of the MultiversX blockchain.", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/WEGLD-bd4d79", + "links": [ + { + "name": "docs", + "url": "https://docs.multiversx.com" + }, + { + "name": "x", + "url": "https://x.com/MultiversX" + }, + { + "name": "telegram", + "url": "https://t.me/MultiversX" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-multiversx-egld" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-egld" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/WEGLD-bd4d79/logo.png b/blockchains/elrond/assets/WEGLD-bd4d79/logo.png new file mode 100644 index 00000000..bc7f1cca Binary files /dev/null and b/blockchains/elrond/assets/WEGLD-bd4d79/logo.png differ diff --git a/blockchains/elrond/assets/ZPAY-247875/info.json b/blockchains/elrond/assets/ZPAY-247875/info.json new file mode 100644 index 00000000..9a0216a7 --- /dev/null +++ b/blockchains/elrond/assets/ZPAY-247875/info.json @@ -0,0 +1,36 @@ +{ + "type": "ESDT", + "id": "ZPAY-247875", + "name": "ZoidPay (on MultiversX)", + "symbol": "ZPAY", + "decimals": 18, + "status": "active", + "description": "Shop Anything from Anywhere with Crypto", + "website": "https://www.zoidpay.com", + "explorer": "https://explorer.multiversx.com/tokens/ZPAY-247875", + "links": [ + { + "name": "blog", + "url": "https://medium.com/zoidcoin-network" + }, + { + "name": "x", + "url": "https://x.com/zoidpay" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1ZRwyAikfe22v9treyjeJoKi83W5U0y1j/view?usp=sharing" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zoidpay/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zoid-pay" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/ZPAY-247875/logo.png b/blockchains/elrond/assets/ZPAY-247875/logo.png new file mode 100644 index 00000000..04075259 Binary files /dev/null and b/blockchains/elrond/assets/ZPAY-247875/logo.png differ diff --git a/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/info.json b/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/info.json new file mode 100644 index 00000000..8831aacb --- /dev/null +++ b/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/info.json @@ -0,0 +1,44 @@ +{ + "type": "ESDT", + "id": "ZPAYWEGLD-34e5c1", + "name": "ZPAY/WEGLD LP (on MultiversX)", + "symbol": "ZPAYWEGLD", + "decimals": 18, + "status": "active", + "description": "Liquidity Provider (LP) Token obtained by adding liquidity in the ZPAY/EGLD pool on xExchange.", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/ZPAYWEGLD-34e5c1", + "links": [ + { + "name": "docs", + "url": "https://docs.xexchange.com" + }, + { + "name": "x", + "url": "https://x.com/xExchangeApp" + }, + { + "name": "telegram", + "url": "https://t.me/xExchangeApp" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "source_code", + "url": "https://github.com/multiversx/mx-exchange-sc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/logo.png b/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/logo.png new file mode 100644 index 00000000..4a866ea6 Binary files /dev/null and b/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/logo.png differ diff --git a/blockchains/elrond/info/info.json b/blockchains/elrond/info/info.json new file mode 100644 index 00000000..89115a56 --- /dev/null +++ b/blockchains/elrond/info/info.json @@ -0,0 +1,49 @@ +{ + "name": "MultiversX", + "website": "https://multiversx.com", + "description": "MultiversX is a highly scalable, fast and secure blockchain platform for distributed apps, enterprise use cases and the new internet economy.", + "explorer": "https://explorer.multiversx.com", + "research": "https://research.binance.com/en/projects/multiversx", + "symbol": "EGLD", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "docs", + "url": "https://docs.multiversx.com" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "x", + "url": "https://x.com/MultiversX" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiversX" + }, + { + "name": "telegram", + "url": "https://t.me/MultiversX" + }, + { + "name": "blog", + "url": "https://multiversx.com/blog" + }, + { + "name": "whitepaper", + "url": "https://github.com/multiversx/mx-chain-whitepaper/blob/master/out/MultiversX_Whitepaper_EN.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multiversx-egld" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/multiversx" + } + ] +} \ No newline at end of file diff --git a/blockchains/elrond/info/logo.png b/blockchains/elrond/info/logo.png new file mode 100644 index 00000000..5932b300 Binary files /dev/null and b/blockchains/elrond/info/logo.png differ diff --git a/blockchains/elrond/info/square_logo.png b/blockchains/elrond/info/square_logo.png new file mode 100644 index 00000000..49a03784 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 00000000..8b600a18 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 00000000..9c3ba8a3 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 00000000..16c9e97d 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 00000000..fa3fa1d2 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 00000000..27aaddd1 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 00000000..59717b3f --- /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 new file mode 100644 index 00000000..aa624c6c --- /dev/null +++ b/blockchains/energyweb/info/info.json @@ -0,0 +1,32 @@ +{ + "name": "Energy Web Token", + "website": "https://energyweb.org", + "description": "Energy Web Token is the operational token behind the Energy Web Chain, a blockchain-based virtual machine designed to support and further application development for the energy sector. Energy Web aims to bring diversity to the energy sector by allowing developers to create decentralized applications.", + "explorer": "https://explorer.energyweb.org/", + "symbol": "EWT", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/energywebfoundation" + }, + { + "name": "x", + "url": "https://x.com/energywebx" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EnergyWeb/" + }, + { + "name": "whitepaper", + "url": "https://www.energyweb.org/wp-content/uploads/2019/12/EnergyWeb-EWDOS-PART1-VisionPurpose-202006-vFinal.pdf" + }, + { + "name": "docs", + "url": "https://energy-web-foundation.gitbook.io/energy-web/" + } + ] +} \ No newline at end of file diff --git a/blockchains/energyweb/info/logo.png b/blockchains/energyweb/info/logo.png new file mode 100644 index 00000000..887e79d3 Binary files /dev/null and b/blockchains/energyweb/info/logo.png differ diff --git a/blockchains/energyweb/info/square_logo.png b/blockchains/energyweb/info/square_logo.png new file mode 100644 index 00000000..377416ad Binary files /dev/null and b/blockchains/energyweb/info/square_logo.png differ diff --git a/blockchains/eos/assets/volentixgsys/info.json b/blockchains/eos/assets/volentixgsys/info.json new file mode 100644 index 00000000..8a3343d4 --- /dev/null +++ b/blockchains/eos/assets/volentixgsys/info.json @@ -0,0 +1,11 @@ +{ + "name": "volentixgsys", + "type": "EOS", + "symbol": "VTX", + "decimals": 8, + "website": "", + "description": "-", + "explorer": "https://bloks.io/account/volentixgsys", + "status": "active", + "id": "volentixgsys" +} \ No newline at end of file diff --git a/blockchains/eos/assets/volentixgsys/logo.png b/blockchains/eos/assets/volentixgsys/logo.png new file mode 100644 index 00000000..52ba1579 Binary files /dev/null and b/blockchains/eos/assets/volentixgsys/logo.png differ diff --git a/blockchains/eos/info/info.json b/blockchains/eos/info/info.json new file mode 100644 index 00000000..140ee4ea --- /dev/null +++ b/blockchains/eos/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "EOS", + "website": "https://eos.io", + "description": "EOS is a cryptocurrency token and blockchain that operates as a smart contract platform for the deployment of decentralized applications and decentralized autonomous corporations.", + "explorer": "https://bloks.io/", + "research": "https://research.binance.com/en/projects/eos", + "symbol": "EOS", + "type": "coin", + "decimals": 4, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/eosio" + }, + { + "name": "x", + "url": "https://x.com/block_one_" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EOS" + }, + { + "name": "whitepaper", + "url": "https://github.com/EOSIO/Documentation/blob/master/TechnicalWhitePaper.md" + } + ] +} \ No newline at end of file diff --git a/blockchains/eos/info/logo.png b/blockchains/eos/info/logo.png new file mode 100644 index 00000000..a60252aa Binary files /dev/null and b/blockchains/eos/info/logo.png differ diff --git a/blockchains/eos/info/square_logo.png b/blockchains/eos/info/square_logo.png new file mode 100644 index 00000000..5b1e1439 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 new file mode 100644 index 00000000..27290edd --- /dev/null +++ b/blockchains/ether-1/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Ether-1", + "website": "https://ether1.org/", + "description": "The Ether-1 Project aims to disrupt how information is shared and controlled on the internet by providing a new solution for how files are fundamentally stored and accessed.", + "explorer": "https://explorer.ether1.org/", + "symbol": "ETHO", + "type": "coin", + "decimals": 18, + "status": "abandoned", + "links": [ + { + "name": "github", + "url": "https://github.com/Ether1Project" + }, + { + "name": "x", + "url": "https://x.com/Ether1Official" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/etho1/" + }, + { + "name": "whitepaper", + "url": "https://www.ether1.cloud/images/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ether-1/info/logo.png b/blockchains/ether-1/info/logo.png new file mode 100644 index 00000000..2d50c6a3 Binary files /dev/null and b/blockchains/ether-1/info/logo.png differ diff --git a/blockchains/ether-1/info/square_logo.png b/blockchains/ether-1/info/square_logo.png new file mode 100644 index 00000000..793f7b4a 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 new file mode 100644 index 00000000..da136e4a --- /dev/null +++ b/blockchains/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/info.json @@ -0,0 +1,36 @@ +{ + "name": "TrueUSD", + "website": "https://www.trueusd.com/", + "description": "TrueUSD is the first independently-verified digital asset redeemable 1-for-1 for US Dollars.", + "explorer": "https://etherscan.io/token/0x0000000000085d4780B73119b644AE5ecd22b376", + "type": "ERC20", + "symbol": "TUSD", + "decimals": 18, + "status": "active", + "id": "0x0000000000085d4780B73119b644AE5ecd22b376", + "tags": [ + "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/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/logo.png b/blockchains/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/logo.png new file mode 100644 index 00000000..0ae677cd Binary files /dev/null and b/blockchains/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/logo.png differ diff --git a/blockchains/ethereum/assets/0x0000000000095413afC295d19EDeb1Ad7B71c952/info.json b/blockchains/ethereum/assets/0x0000000000095413afC295d19EDeb1Ad7B71c952/info.json new file mode 100644 index 00000000..64762b54 --- /dev/null +++ b/blockchains/ethereum/assets/0x0000000000095413afC295d19EDeb1Ad7B71c952/info.json @@ -0,0 +1,29 @@ +{ + "name": "Tokenlon", + "website": "https://tokenlon.im/lon", + "description": "LON backs the Tokenlon decentralized exchange and payment settlement protocol based on Ethereum blockchain technology. It currently powers Tokenlon DEX, a decentralized exchange and payment settlement protocol which aims to provide a secure, reliable and seamless trading experience to the masses.", + "explorer": "https://etherscan.io/token/0x0000000000095413afc295d19edeb1ad7b71c952", + "type": "ERC20", + "symbol": "LON", + "decimals": 18, + "status": "active", + "id": "0x0000000000095413afC295d19EDeb1Ad7B71c952", + "links": [ + { + "name": "x", + "url": "https://x.com/tokenlon" + }, + { + "name": "discord", + "url": "https://discord.com/invite/nPmsMrG" + }, + { + "name": "medium", + "url": "https://medium.com/@tokenlon" + }, + { + "name": "whitepaper", + "url": "https://tokenlon.im/files/Tokenlon-litepaper_en-us.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0000000000095413afC295d19EDeb1Ad7B71c952/logo.png b/blockchains/ethereum/assets/0x0000000000095413afC295d19EDeb1Ad7B71c952/logo.png new file mode 100644 index 00000000..f66d005d Binary files /dev/null and b/blockchains/ethereum/assets/0x0000000000095413afC295d19EDeb1Ad7B71c952/logo.png differ diff --git a/blockchains/ethereum/assets/0x00000000001876eB1444c986fD502e618c587430/info.json b/blockchains/ethereum/assets/0x00000000001876eB1444c986fD502e618c587430/info.json new file mode 100644 index 00000000..ae3f8369 --- /dev/null +++ b/blockchains/ethereum/assets/0x00000000001876eB1444c986fD502e618c587430/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dharma Dai", + "symbol": "dDai", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x00000000001876eB1444c986fD502e618c587430", + "status": "abandoned", + "id": "0x00000000001876eB1444c986fD502e618c587430" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00000000001876eB1444c986fD502e618c587430/logo.png b/blockchains/ethereum/assets/0x00000000001876eB1444c986fD502e618c587430/logo.png new file mode 100644 index 00000000..d77afef4 Binary files /dev/null and b/blockchains/ethereum/assets/0x00000000001876eB1444c986fD502e618c587430/logo.png differ diff --git a/blockchains/ethereum/assets/0x00000000008943c65cAf789FFFCF953bE156f6f8/info.json b/blockchains/ethereum/assets/0x00000000008943c65cAf789FFFCF953bE156f6f8/info.json new file mode 100644 index 00000000..bed46cf4 --- /dev/null +++ b/blockchains/ethereum/assets/0x00000000008943c65cAf789FFFCF953bE156f6f8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dharma USD Coin", + "symbol": "dUSDC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x00000000008943c65cAf789FFFCF953bE156f6f8", + "status": "abandoned", + "id": "0x00000000008943c65cAf789FFFCF953bE156f6f8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00000000008943c65cAf789FFFCF953bE156f6f8/logo.png b/blockchains/ethereum/assets/0x00000000008943c65cAf789FFFCF953bE156f6f8/logo.png new file mode 100644 index 00000000..aad4aa1f Binary files /dev/null and b/blockchains/ethereum/assets/0x00000000008943c65cAf789FFFCF953bE156f6f8/logo.png differ diff --git a/blockchains/ethereum/assets/0x0000000000b3F879cb30FE243b4Dfee438691c04/info.json b/blockchains/ethereum/assets/0x0000000000b3F879cb30FE243b4Dfee438691c04/info.json new file mode 100644 index 00000000..c20bb72d --- /dev/null +++ b/blockchains/ethereum/assets/0x0000000000b3F879cb30FE243b4Dfee438691c04/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gastoken", + "type": "ERC20", + "symbol": "GST2", + "decimals": 2, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0x0000000000b3f879cb30fe243b4dfee438691c04", + "status": "active", + "id": "0x0000000000b3F879cb30FE243b4Dfee438691c04" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0000000000b3F879cb30FE243b4Dfee438691c04/logo.png b/blockchains/ethereum/assets/0x0000000000b3F879cb30FE243b4Dfee438691c04/logo.png new file mode 100644 index 00000000..8844f745 Binary files /dev/null and b/blockchains/ethereum/assets/0x0000000000b3F879cb30FE243b4Dfee438691c04/logo.png differ diff --git a/blockchains/ethereum/assets/0x00000000441378008EA67F4284A57932B1c000a5/info.json b/blockchains/ethereum/assets/0x00000000441378008EA67F4284A57932B1c000a5/info.json new file mode 100644 index 00000000..e0432146 --- /dev/null +++ b/blockchains/ethereum/assets/0x00000000441378008EA67F4284A57932B1c000a5/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueGBP", + "symbol": "TGBP", + "type": "ERC20", + "decimals": 18, + "description": "Tokenized version of the GBP", + "website": "https://www.trusttoken.com/truegbp/", + "explorer": "https://etherscan.io/token/0x00000000441378008EA67F4284A57932B1c000a5", + "status": "active", + "id": "0x00000000441378008EA67F4284A57932B1c000a5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00000000441378008EA67F4284A57932B1c000a5/logo.png b/blockchains/ethereum/assets/0x00000000441378008EA67F4284A57932B1c000a5/logo.png new file mode 100644 index 00000000..5c77c397 Binary files /dev/null and b/blockchains/ethereum/assets/0x00000000441378008EA67F4284A57932B1c000a5/logo.png differ diff --git a/blockchains/ethereum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json b/blockchains/ethereum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/info.json new file mode 100644 index 00000000..619cedae --- /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 00000000..b41ffbfb Binary files /dev/null and b/blockchains/ethereum/assets/0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a/logo.png differ diff --git a/blockchains/ethereum/assets/0x00000100F2A2bd000715001920eB70D229700085/info.json b/blockchains/ethereum/assets/0x00000100F2A2bd000715001920eB70D229700085/info.json new file mode 100644 index 00000000..e5c62855 --- /dev/null +++ b/blockchains/ethereum/assets/0x00000100F2A2bd000715001920eB70D229700085/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueCAD", + "symbol": "TCAD", + "type": "ERC20", + "decimals": 18, + "description": "The most traded stablecoin that’s backed by the Canadian dollar.", + "website": "https://www.trusttoken.com/truecad/", + "explorer": "https://etherscan.io/token/0x00000100F2A2bd000715001920eB70D229700085", + "status": "active", + "id": "0x00000100F2A2bd000715001920eB70D229700085" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00000100F2A2bd000715001920eB70D229700085/logo.png b/blockchains/ethereum/assets/0x00000100F2A2bd000715001920eB70D229700085/logo.png new file mode 100644 index 00000000..2e147543 Binary files /dev/null and b/blockchains/ethereum/assets/0x00000100F2A2bd000715001920eB70D229700085/logo.png differ diff --git a/blockchains/ethereum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json b/blockchains/ethereum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json new file mode 100644 index 00000000..ba7b3c81 --- /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 00000000..759db2e9 Binary files /dev/null and b/blockchains/ethereum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png differ diff --git a/blockchains/ethereum/assets/0x00006100F7090010005F1bd7aE6122c3C2CF0090/info.json b/blockchains/ethereum/assets/0x00006100F7090010005F1bd7aE6122c3C2CF0090/info.json new file mode 100644 index 00000000..a7b7b65d --- /dev/null +++ b/blockchains/ethereum/assets/0x00006100F7090010005F1bd7aE6122c3C2CF0090/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueAUD", + "symbol": "TAUD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x00006100F7090010005F1bd7aE6122c3C2CF0090", + "status": "active", + "id": "0x00006100F7090010005F1bd7aE6122c3C2CF0090" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00006100F7090010005F1bd7aE6122c3C2CF0090/logo.png b/blockchains/ethereum/assets/0x00006100F7090010005F1bd7aE6122c3C2CF0090/logo.png new file mode 100644 index 00000000..88dde527 Binary files /dev/null and b/blockchains/ethereum/assets/0x00006100F7090010005F1bd7aE6122c3C2CF0090/logo.png differ diff --git a/blockchains/ethereum/assets/0x0000852600CEB001E08e00bC008be620d60031F2/info.json b/blockchains/ethereum/assets/0x0000852600CEB001E08e00bC008be620d60031F2/info.json new file mode 100644 index 00000000..9d81495e --- /dev/null +++ b/blockchains/ethereum/assets/0x0000852600CEB001E08e00bC008be620d60031F2/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueHKD", + "symbol": "THKD", + "type": "ERC20", + "decimals": 18, + "description": "Tokenized version of the HKD", + "website": "https://www.trusttoken.com/truehkd", + "explorer": "https://etherscan.io/token/0x0000852600CEB001E08e00bC008be620d60031F2", + "status": "active", + "id": "0x0000852600CEB001E08e00bC008be620d60031F2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0000852600CEB001E08e00bC008be620d60031F2/logo.png b/blockchains/ethereum/assets/0x0000852600CEB001E08e00bC008be620d60031F2/logo.png new file mode 100644 index 00000000..97fe25cd Binary files /dev/null and b/blockchains/ethereum/assets/0x0000852600CEB001E08e00bC008be620d60031F2/logo.png differ diff --git a/blockchains/ethereum/assets/0x0000A1c00009A619684135B824Ba02f7FbF3A572/info.json b/blockchains/ethereum/assets/0x0000A1c00009A619684135B824Ba02f7FbF3A572/info.json new file mode 100644 index 00000000..974f950a --- /dev/null +++ b/blockchains/ethereum/assets/0x0000A1c00009A619684135B824Ba02f7FbF3A572/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alchemy", + "type": "ERC20", + "symbol": "ALCH", + "decimals": 18, + "website": "https://alchemydao.com/", + "description": "Alchemy allows users to create a tokenized DAO for any NFT. Turn your NFTs into liquid, community controlled assets that can be traded, vote and control all your NFTs. Create funds, communities, split collections between friends and all with no coding or technical experience.", + "explorer": "https://etherscan.io/token/0x0000A1c00009A619684135B824Ba02f7FbF3A572", + "status": "active", + "id": "0x0000A1c00009A619684135B824Ba02f7FbF3A572" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0000A1c00009A619684135B824Ba02f7FbF3A572/logo.png b/blockchains/ethereum/assets/0x0000A1c00009A619684135B824Ba02f7FbF3A572/logo.png new file mode 100644 index 00000000..a8bac0c6 Binary files /dev/null and b/blockchains/ethereum/assets/0x0000A1c00009A619684135B824Ba02f7FbF3A572/logo.png differ diff --git a/blockchains/ethereum/assets/0x0001A500A6B18995B03f44bb040A5fFc28E45CB0/info.json b/blockchains/ethereum/assets/0x0001A500A6B18995B03f44bb040A5fFc28E45CB0/info.json new file mode 100644 index 00000000..8de4606c --- /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 00000000..a54c1845 Binary files /dev/null and b/blockchains/ethereum/assets/0x0001A500A6B18995B03f44bb040A5fFc28E45CB0/logo.png differ diff --git a/blockchains/ethereum/assets/0x000214f253a824d1230aFf79848faC3EC2858ee9/info.json b/blockchains/ethereum/assets/0x000214f253a824d1230aFf79848faC3EC2858ee9/info.json new file mode 100644 index 00000000..f80f0369 --- /dev/null +++ b/blockchains/ethereum/assets/0x000214f253a824d1230aFf79848faC3EC2858ee9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Scalareum", + "symbol": "SCLR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x000214f253a824d1230aFf79848faC3EC2858ee9", + "status": "abandoned", + "id": "0x000214f253a824d1230aFf79848faC3EC2858ee9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x000214f253a824d1230aFf79848faC3EC2858ee9/logo.png b/blockchains/ethereum/assets/0x000214f253a824d1230aFf79848faC3EC2858ee9/logo.png new file mode 100644 index 00000000..720d6e5a Binary files /dev/null and b/blockchains/ethereum/assets/0x000214f253a824d1230aFf79848faC3EC2858ee9/logo.png differ diff --git a/blockchains/ethereum/assets/0x00059AE69c1622A7542EdC15E8d17b060fE307b6/info.json b/blockchains/ethereum/assets/0x00059AE69c1622A7542EdC15E8d17b060fE307b6/info.json new file mode 100644 index 00000000..194740b4 --- /dev/null +++ b/blockchains/ethereum/assets/0x00059AE69c1622A7542EdC15E8d17b060fE307b6/info.json @@ -0,0 +1,11 @@ +{ + "name": "AmonD", + "symbol": "AMON", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.amond.cc/", + "explorer": "https://etherscan.io/token/0x00059AE69c1622A7542EdC15E8d17b060fE307b6", + "status": "active", + "id": "0x00059AE69c1622A7542EdC15E8d17b060fE307b6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00059AE69c1622A7542EdC15E8d17b060fE307b6/logo.png b/blockchains/ethereum/assets/0x00059AE69c1622A7542EdC15E8d17b060fE307b6/logo.png new file mode 100644 index 00000000..068416a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x00059AE69c1622A7542EdC15E8d17b060fE307b6/logo.png differ diff --git a/blockchains/ethereum/assets/0x0006634f2FDB9A12b179D05A2b5165B3210bade8/info.json b/blockchains/ethereum/assets/0x0006634f2FDB9A12b179D05A2b5165B3210bade8/info.json new file mode 100644 index 00000000..29e6f4ee --- /dev/null +++ b/blockchains/ethereum/assets/0x0006634f2FDB9A12b179D05A2b5165B3210bade8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Scripts", + "symbol": "SCRIPT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0006634f2FDB9A12b179D05A2b5165B3210bade8", + "status": "abandoned", + "id": "0x0006634f2FDB9A12b179D05A2b5165B3210bade8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0006634f2FDB9A12b179D05A2b5165B3210bade8/logo.png b/blockchains/ethereum/assets/0x0006634f2FDB9A12b179D05A2b5165B3210bade8/logo.png new file mode 100644 index 00000000..8081ff2d Binary files /dev/null and b/blockchains/ethereum/assets/0x0006634f2FDB9A12b179D05A2b5165B3210bade8/logo.png differ diff --git a/blockchains/ethereum/assets/0x000C100050E98C91f9114fa5Dd75CE6869Bf4F53/info.json b/blockchains/ethereum/assets/0x000C100050E98C91f9114fa5Dd75CE6869Bf4F53/info.json new file mode 100644 index 00000000..43cd23c0 --- /dev/null +++ b/blockchains/ethereum/assets/0x000C100050E98C91f9114fa5Dd75CE6869Bf4F53/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRYPTO10 Hedged", + "symbol": "C10", + "type": "ERC20", + "decimals": 18, + "description": "An open fund by Invictus Capital, holding the top ten cryptocurrencies by market cap, with data-backed risk hedging in cash.", + "website": "https://invictuscapital.com/crypto10hedged", + "explorer": "https://etherscan.io/token/0x000C100050E98C91f9114fa5Dd75CE6869Bf4F53", + "status": "active", + "id": "0x000C100050E98C91f9114fa5Dd75CE6869Bf4F53" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x000C100050E98C91f9114fa5Dd75CE6869Bf4F53/logo.png b/blockchains/ethereum/assets/0x000C100050E98C91f9114fa5Dd75CE6869Bf4F53/logo.png new file mode 100644 index 00000000..3b457d29 Binary files /dev/null and b/blockchains/ethereum/assets/0x000C100050E98C91f9114fa5Dd75CE6869Bf4F53/logo.png differ diff --git a/blockchains/ethereum/assets/0x001F0aA5dA15585e5b2305DbaB2bac425ea71007/info.json b/blockchains/ethereum/assets/0x001F0aA5dA15585e5b2305DbaB2bac425ea71007/info.json new file mode 100644 index 00000000..5366ff8e --- /dev/null +++ b/blockchains/ethereum/assets/0x001F0aA5dA15585e5b2305DbaB2bac425ea71007/info.json @@ -0,0 +1,11 @@ +{ + "name": "IPSX", + "symbol": "IPSX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ip.sx/", + "explorer": "https://etherscan.io/token/0x001F0aA5dA15585e5b2305DbaB2bac425ea71007", + "status": "active", + "id": "0x001F0aA5dA15585e5b2305DbaB2bac425ea71007" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x001F0aA5dA15585e5b2305DbaB2bac425ea71007/logo.png b/blockchains/ethereum/assets/0x001F0aA5dA15585e5b2305DbaB2bac425ea71007/logo.png new file mode 100755 index 00000000..9d9b8467 Binary files /dev/null and b/blockchains/ethereum/assets/0x001F0aA5dA15585e5b2305DbaB2bac425ea71007/logo.png differ diff --git a/blockchains/ethereum/assets/0x001Fc4a7f2f586596308091c7B296D4535A25a90/info.json b/blockchains/ethereum/assets/0x001Fc4a7f2f586596308091c7B296D4535A25a90/info.json new file mode 100644 index 00000000..92969e5c --- /dev/null +++ b/blockchains/ethereum/assets/0x001Fc4a7f2f586596308091c7B296D4535A25a90/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hubscop", + "symbol": "HUBS", + "type": "ERC20", + "decimals": 18, + "description": "Hubscop is a peer to peer networking system for delivering and marketing contents in a fair and ethical manner.", + "website": "https://hubscop.com/", + "explorer": "https://etherscan.io/token/0x001Fc4a7f2f586596308091c7B296D4535A25a90", + "status": "abandoned", + "id": "0x001Fc4a7f2f586596308091c7B296D4535A25a90" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x001Fc4a7f2f586596308091c7B296D4535A25a90/logo.png b/blockchains/ethereum/assets/0x001Fc4a7f2f586596308091c7B296D4535A25a90/logo.png new file mode 100644 index 00000000..0856bd00 Binary files /dev/null and b/blockchains/ethereum/assets/0x001Fc4a7f2f586596308091c7B296D4535A25a90/logo.png differ diff --git a/blockchains/ethereum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json b/blockchains/ethereum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json new file mode 100644 index 00000000..f00a95db --- /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 00000000..a0fd0bd2 Binary files /dev/null and b/blockchains/ethereum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png differ diff --git a/blockchains/ethereum/assets/0x0027449Bf0887ca3E431D263FFDeFb244D95b555/info.json b/blockchains/ethereum/assets/0x0027449Bf0887ca3E431D263FFDeFb244D95b555/info.json new file mode 100644 index 00000000..82ee38a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x0027449Bf0887ca3E431D263FFDeFb244D95b555/info.json @@ -0,0 +1,11 @@ +{ + "name": "Not", + "symbol": "NOT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://exonomousid.com", + "explorer": "https://etherscan.io/token/0x0027449Bf0887ca3E431D263FFDeFb244D95b555", + "status": "spam", + "id": "0x0027449Bf0887ca3E431D263FFDeFb244D95b555" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0027449Bf0887ca3E431D263FFDeFb244D95b555/logo.png b/blockchains/ethereum/assets/0x0027449Bf0887ca3E431D263FFDeFb244D95b555/logo.png new file mode 100755 index 00000000..dc2270f1 Binary files /dev/null and b/blockchains/ethereum/assets/0x0027449Bf0887ca3E431D263FFDeFb244D95b555/logo.png differ diff --git a/blockchains/ethereum/assets/0x002ACD33D758FcbDc72242A86Ed27eFA0006d42f/info.json b/blockchains/ethereum/assets/0x002ACD33D758FcbDc72242A86Ed27eFA0006d42f/info.json new file mode 100644 index 00000000..68b1743b --- /dev/null +++ b/blockchains/ethereum/assets/0x002ACD33D758FcbDc72242A86Ed27eFA0006d42f/info.json @@ -0,0 +1,11 @@ +{ + "name": "CWIOS", + "symbol": "CWIOS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x002ACD33D758FcbDc72242A86Ed27eFA0006d42f", + "status": "abandoned", + "id": "0x002ACD33D758FcbDc72242A86Ed27eFA0006d42f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x002ACD33D758FcbDc72242A86Ed27eFA0006d42f/logo.png b/blockchains/ethereum/assets/0x002ACD33D758FcbDc72242A86Ed27eFA0006d42f/logo.png new file mode 100644 index 00000000..b6a12302 Binary files /dev/null and b/blockchains/ethereum/assets/0x002ACD33D758FcbDc72242A86Ed27eFA0006d42f/logo.png differ diff --git a/blockchains/ethereum/assets/0x00380143129167395e8B4F0a35EDc1bC60E7cE65/info.json b/blockchains/ethereum/assets/0x00380143129167395e8B4F0a35EDc1bC60E7cE65/info.json new file mode 100644 index 00000000..6e01b560 --- /dev/null +++ b/blockchains/ethereum/assets/0x00380143129167395e8B4F0a35EDc1bC60E7cE65/info.json @@ -0,0 +1,11 @@ +{ + "name": "CIorigin", + "symbol": "CIG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.ciorigin.net/", + "explorer": "https://etherscan.io/token/0x00380143129167395e8B4F0a35EDc1bC60E7cE65", + "status": "abandoned", + "id": "0x00380143129167395e8B4F0a35EDc1bC60E7cE65" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00380143129167395e8B4F0a35EDc1bC60E7cE65/logo.png b/blockchains/ethereum/assets/0x00380143129167395e8B4F0a35EDc1bC60E7cE65/logo.png new file mode 100644 index 00000000..a421f85c Binary files /dev/null and b/blockchains/ethereum/assets/0x00380143129167395e8B4F0a35EDc1bC60E7cE65/logo.png differ diff --git a/blockchains/ethereum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json b/blockchains/ethereum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json new file mode 100644 index 00000000..64cb969c --- /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 00000000..dbf1b942 Binary files /dev/null and b/blockchains/ethereum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png differ diff --git a/blockchains/ethereum/assets/0x0051d363A60bD98d8A10927D10708e5eF853b306/info.json b/blockchains/ethereum/assets/0x0051d363A60bD98d8A10927D10708e5eF853b306/info.json new file mode 100644 index 00000000..d98c9ab0 --- /dev/null +++ b/blockchains/ethereum/assets/0x0051d363A60bD98d8A10927D10708e5eF853b306/info.json @@ -0,0 +1,11 @@ +{ + "name": "SWAPCOINZ", + "symbol": "SPZ", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0051d363A60bD98d8A10927D10708e5eF853b306", + "status": "abandoned", + "id": "0x0051d363A60bD98d8A10927D10708e5eF853b306" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0051d363A60bD98d8A10927D10708e5eF853b306/logo.png b/blockchains/ethereum/assets/0x0051d363A60bD98d8A10927D10708e5eF853b306/logo.png new file mode 100644 index 00000000..92e1c80a Binary files /dev/null and b/blockchains/ethereum/assets/0x0051d363A60bD98d8A10927D10708e5eF853b306/logo.png differ diff --git a/blockchains/ethereum/assets/0x005B148048E06A250939f5B0Fc32AaE19c6c2c84/info.json b/blockchains/ethereum/assets/0x005B148048E06A250939f5B0Fc32AaE19c6c2c84/info.json new file mode 100644 index 00000000..8183965e --- /dev/null +++ b/blockchains/ethereum/assets/0x005B148048E06A250939f5B0Fc32AaE19c6c2c84/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decentralized Accessible Content Chain", + "symbol": "DACC", + "type": "ERC20", + "decimals": 6, + "description": "DACC – Decentralized Accessible Content – is the first public chain that revolutionize online content and media identity and access management (IAM) worldwide. As an interactive platform, DAC, through the innovative use of blockchain technology, allows creators to control and protect their content, while also giving them a secure and efficient way of selling it globally.", + "website": "http://dacc.co/", + "explorer": "https://etherscan.io/token/0x005B148048E06A250939f5B0Fc32AaE19c6c2c84", + "status": "active", + "id": "0x005B148048E06A250939f5B0Fc32AaE19c6c2c84" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x005B148048E06A250939f5B0Fc32AaE19c6c2c84/logo.png b/blockchains/ethereum/assets/0x005B148048E06A250939f5B0Fc32AaE19c6c2c84/logo.png new file mode 100644 index 00000000..9fbc575e Binary files /dev/null and b/blockchains/ethereum/assets/0x005B148048E06A250939f5B0Fc32AaE19c6c2c84/logo.png differ diff --git a/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/info.json b/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/info.json new file mode 100644 index 00000000..3939ee40 --- /dev/null +++ b/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/info.json @@ -0,0 +1,28 @@ +{ + "name": "Kiba Inu", + "type": "ERC20", + "symbol": "KIBA", + "decimals": 18, + "website": "https://kibainu.space", + "description": "Kiba Inu is creating an all in one dex trading platform for meme coins and will include built-in honeypot checker, reflections gains tracker in USD value with charts on the swap platform.", + "explorer": "https://etherscan.io/token/0x005D1123878Fc55fbd56b54C73963b234a64af3c", + "status": "active", + "id": "0x005D1123878Fc55fbd56b54C73963b234a64af3c", + "links": [ + { + "name": "x", + "url": "https://x.com/kibainukiba" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kiba-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/kiba-inu/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/logo.png b/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/logo.png new file mode 100644 index 00000000..ef782813 Binary files /dev/null and b/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/logo.png differ diff --git a/blockchains/ethereum/assets/0x006BeA43Baa3f7A6f765F14f10A1a1b08334EF45/info.json b/blockchains/ethereum/assets/0x006BeA43Baa3f7A6f765F14f10A1a1b08334EF45/info.json new file mode 100644 index 00000000..eebb67d3 --- /dev/null +++ b/blockchains/ethereum/assets/0x006BeA43Baa3f7A6f765F14f10A1a1b08334EF45/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stox", + "symbol": "STX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.stox.com/en", + "explorer": "https://etherscan.io/token/0x006BeA43Baa3f7A6f765F14f10A1a1b08334EF45", + "status": "active", + "id": "0x006BeA43Baa3f7A6f765F14f10A1a1b08334EF45" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x006BeA43Baa3f7A6f765F14f10A1a1b08334EF45/logo.png b/blockchains/ethereum/assets/0x006BeA43Baa3f7A6f765F14f10A1a1b08334EF45/logo.png new file mode 100644 index 00000000..d7d869f0 Binary files /dev/null and b/blockchains/ethereum/assets/0x006BeA43Baa3f7A6f765F14f10A1a1b08334EF45/logo.png differ diff --git a/blockchains/ethereum/assets/0x00763473e9d7c82f38Ed843F021e2558D7422AD8/info.json b/blockchains/ethereum/assets/0x00763473e9d7c82f38Ed843F021e2558D7422AD8/info.json new file mode 100644 index 00000000..713ab2e5 --- /dev/null +++ b/blockchains/ethereum/assets/0x00763473e9d7c82f38Ed843F021e2558D7422AD8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ducat", + "symbol": "DUCAT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x00763473e9d7c82f38Ed843F021e2558D7422AD8", + "status": "abandoned", + "id": "0x00763473e9d7c82f38Ed843F021e2558D7422AD8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00763473e9d7c82f38Ed843F021e2558D7422AD8/logo.png b/blockchains/ethereum/assets/0x00763473e9d7c82f38Ed843F021e2558D7422AD8/logo.png new file mode 100644 index 00000000..0007281a Binary files /dev/null and b/blockchains/ethereum/assets/0x00763473e9d7c82f38Ed843F021e2558D7422AD8/logo.png differ diff --git a/blockchains/ethereum/assets/0x00865a6CA2529862Be9344C4f88800741B737Ee9/info.json b/blockchains/ethereum/assets/0x00865a6CA2529862Be9344C4f88800741B737Ee9/info.json new file mode 100644 index 00000000..a29a1a28 --- /dev/null +++ b/blockchains/ethereum/assets/0x00865a6CA2529862Be9344C4f88800741B737Ee9/info.json @@ -0,0 +1,11 @@ +{ + "name": "KOPEX", + "symbol": "KPX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x00865a6CA2529862Be9344C4f88800741B737Ee9", + "status": "abandoned", + "id": "0x00865a6CA2529862Be9344C4f88800741B737Ee9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00865a6CA2529862Be9344C4f88800741B737Ee9/logo.png b/blockchains/ethereum/assets/0x00865a6CA2529862Be9344C4f88800741B737Ee9/logo.png new file mode 100644 index 00000000..7a3cc1a7 Binary files /dev/null and b/blockchains/ethereum/assets/0x00865a6CA2529862Be9344C4f88800741B737Ee9/logo.png differ diff --git a/blockchains/ethereum/assets/0x009631F3cb11a9aF2E2f0186e698a2bC976D86Eb/info.json b/blockchains/ethereum/assets/0x009631F3cb11a9aF2E2f0186e698a2bC976D86Eb/info.json new file mode 100644 index 00000000..5d123abd --- /dev/null +++ b/blockchains/ethereum/assets/0x009631F3cb11a9aF2E2f0186e698a2bC976D86Eb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Dragon", + "symbol": "ETHD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x009631F3cb11a9aF2E2f0186e698a2bC976D86Eb", + "status": "abandoned", + "id": "0x009631F3cb11a9aF2E2f0186e698a2bC976D86Eb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x009631F3cb11a9aF2E2f0186e698a2bC976D86Eb/logo.png b/blockchains/ethereum/assets/0x009631F3cb11a9aF2E2f0186e698a2bC976D86Eb/logo.png new file mode 100644 index 00000000..39d33b2e Binary files /dev/null and b/blockchains/ethereum/assets/0x009631F3cb11a9aF2E2f0186e698a2bC976D86Eb/logo.png differ diff --git a/blockchains/ethereum/assets/0x009a7c8B62Ec98f734FdE06904Def69E95898726/info.json b/blockchains/ethereum/assets/0x009a7c8B62Ec98f734FdE06904Def69E95898726/info.json new file mode 100644 index 00000000..91471cb7 --- /dev/null +++ b/blockchains/ethereum/assets/0x009a7c8B62Ec98f734FdE06904Def69E95898726/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 069-CN31", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x009a7c8B62Ec98f734FdE06904Def69E95898726", + "status": "abandoned", + "id": "0x009a7c8B62Ec98f734FdE06904Def69E95898726" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x009a7c8B62Ec98f734FdE06904Def69E95898726/logo.png b/blockchains/ethereum/assets/0x009a7c8B62Ec98f734FdE06904Def69E95898726/logo.png new file mode 100644 index 00000000..8e7e6c06 Binary files /dev/null and b/blockchains/ethereum/assets/0x009a7c8B62Ec98f734FdE06904Def69E95898726/logo.png differ diff --git a/blockchains/ethereum/assets/0x00A79FF8fff20331B9DF63fC6f92eb7D9991C223/info.json b/blockchains/ethereum/assets/0x00A79FF8fff20331B9DF63fC6f92eb7D9991C223/info.json new file mode 100644 index 00000000..30ea8251 --- /dev/null +++ b/blockchains/ethereum/assets/0x00A79FF8fff20331B9DF63fC6f92eb7D9991C223/info.json @@ -0,0 +1,11 @@ +{ + "name": "the Naperie", + "symbol": "NAP", + "type": "ERC20", + "decimals": 1, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x00A79FF8fff20331B9DF63fC6f92eb7D9991C223", + "status": "abandoned", + "id": "0x00A79FF8fff20331B9DF63fC6f92eb7D9991C223" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00A79FF8fff20331B9DF63fC6f92eb7D9991C223/logo.png b/blockchains/ethereum/assets/0x00A79FF8fff20331B9DF63fC6f92eb7D9991C223/logo.png new file mode 100644 index 00000000..b0fa5d9c Binary files /dev/null and b/blockchains/ethereum/assets/0x00A79FF8fff20331B9DF63fC6f92eb7D9991C223/logo.png differ diff --git a/blockchains/ethereum/assets/0x00B7db6B4431e345eee5cc23D21E8dbC1d5cADA3/info.json b/blockchains/ethereum/assets/0x00B7db6B4431e345eee5cc23D21E8dbC1d5cADA3/info.json new file mode 100644 index 00000000..224f5f56 --- /dev/null +++ b/blockchains/ethereum/assets/0x00B7db6B4431e345eee5cc23D21E8dbC1d5cADA3/info.json @@ -0,0 +1,11 @@ +{ + "name": "CyberTronChain", + "symbol": "CTC", + "type": "ERC20", + "decimals": 18, + "description": "Cybertronchain is an oracle of connecting payment system with the blockchain network for kiosk and payment terminals. It bridging kiosks and payment terminals with cryptocurrencies such Ethereum, bitcoin, ripple, litecoin, and many more others", + "website": "https://cybertronchain.com/", + "explorer": "https://etherscan.io/token/0x00B7db6B4431e345eee5cc23D21E8dbC1d5cADA3", + "status": "active", + "id": "0x00B7db6B4431e345eee5cc23D21E8dbC1d5cADA3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00B7db6B4431e345eee5cc23D21E8dbC1d5cADA3/logo.png b/blockchains/ethereum/assets/0x00B7db6B4431e345eee5cc23D21E8dbC1d5cADA3/logo.png new file mode 100644 index 00000000..0f9588b7 Binary files /dev/null and b/blockchains/ethereum/assets/0x00B7db6B4431e345eee5cc23D21E8dbC1d5cADA3/logo.png differ diff --git a/blockchains/ethereum/assets/0x00D1793D7C3aAE506257Ba985b34C76AaF642557/info.json b/blockchains/ethereum/assets/0x00D1793D7C3aAE506257Ba985b34C76AaF642557/info.json new file mode 100644 index 00000000..5d3444aa --- /dev/null +++ b/blockchains/ethereum/assets/0x00D1793D7C3aAE506257Ba985b34C76AaF642557/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tacos", + "symbol": "TACO", + "type": "ERC20", + "decimals": 18, + "description": "TACO claims to be an NFT Platform for taco related art created by mostly latino artists. It is claimed that this project serves as a launchpad for aspiring artists to connect with NFT collectors around the world.", + "website": "https://www.taconomics.io", + "explorer": "https://etherscan.io/token/0x00D1793D7C3aAE506257Ba985b34C76AaF642557", + "status": "active", + "id": "0x00D1793D7C3aAE506257Ba985b34C76AaF642557" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00D1793D7C3aAE506257Ba985b34C76AaF642557/logo.png b/blockchains/ethereum/assets/0x00D1793D7C3aAE506257Ba985b34C76AaF642557/logo.png new file mode 100644 index 00000000..dd7dab62 Binary files /dev/null and b/blockchains/ethereum/assets/0x00D1793D7C3aAE506257Ba985b34C76AaF642557/logo.png differ diff --git a/blockchains/ethereum/assets/0x00D270d9A41886A8E6E433911AE2F7D257b60051/info.json b/blockchains/ethereum/assets/0x00D270d9A41886A8E6E433911AE2F7D257b60051/info.json new file mode 100644 index 00000000..7531eb05 --- /dev/null +++ b/blockchains/ethereum/assets/0x00D270d9A41886A8E6E433911AE2F7D257b60051/info.json @@ -0,0 +1,11 @@ +{ + "name": "BUZZ", + "symbol": "BUZZ", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x00D270d9A41886A8E6E433911AE2F7D257b60051", + "status": "abandoned", + "id": "0x00D270d9A41886A8E6E433911AE2F7D257b60051" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00D270d9A41886A8E6E433911AE2F7D257b60051/logo.png b/blockchains/ethereum/assets/0x00D270d9A41886A8E6E433911AE2F7D257b60051/logo.png new file mode 100644 index 00000000..64da3db9 Binary files /dev/null and b/blockchains/ethereum/assets/0x00D270d9A41886A8E6E433911AE2F7D257b60051/logo.png differ diff --git a/blockchains/ethereum/assets/0x00E150D741Eda1d49d341189CAE4c08a73a49C95/info.json b/blockchains/ethereum/assets/0x00E150D741Eda1d49d341189CAE4c08a73a49C95/info.json new file mode 100644 index 00000000..cdca38c3 --- /dev/null +++ b/blockchains/ethereum/assets/0x00E150D741Eda1d49d341189CAE4c08a73a49C95/info.json @@ -0,0 +1,11 @@ +{ + "name": "InfinitusTokens", + "symbol": "INF", + "type": "ERC20", + "decimals": 18, + "description": "Infinitus describes itself as a blockchain-based decentralised mobile app (dApp). Users can reportedly safekeep encrypted digital data such as private keys, passwords, recovery seeds, pincodes or any alphanumeric data on a decentralised network.", + "website": "https://inftech.io/", + "explorer": "https://etherscan.io/token/0x00E150D741Eda1d49d341189CAE4c08a73a49C95", + "status": "active", + "id": "0x00E150D741Eda1d49d341189CAE4c08a73a49C95" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00E150D741Eda1d49d341189CAE4c08a73a49C95/logo.png b/blockchains/ethereum/assets/0x00E150D741Eda1d49d341189CAE4c08a73a49C95/logo.png new file mode 100644 index 00000000..ddb2cb8f Binary files /dev/null and b/blockchains/ethereum/assets/0x00E150D741Eda1d49d341189CAE4c08a73a49C95/logo.png differ diff --git a/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/info.json b/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/info.json new file mode 100644 index 00000000..fd3e8905 --- /dev/null +++ b/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/info.json @@ -0,0 +1,41 @@ +{ + "name": "AllianceBlock", + "website": "https://allianceblock.io", + "description": "AllianceBlock is establishing the world’s first globally compliant decentralized capital market. Our solution is built on the principles of censorship resistance, transparency, and openness. AllianceBlock’s Prometheus protocol aims to realize a decentralized, collaborative and sustainable capital market that brings together issuers, investors, institutions, traders, experts, advisors, other service providers, and even talent.", + "explorer": "https://etherscan.io/token/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0", + "type": "ERC20", + "symbol": "ALBT", + "decimals": 18, + "status": "abandoned", + "id": "0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0", + "links": [ + { + "name": "github", + "url": "https://github.com/Stichting-AllianceBlock-Foundation/AllianceBlock-Contracts" + }, + { + "name": "x", + "url": "https://x.com/allianceblock" + }, + { + "name": "telegram", + "url": "https://t.me/allianceblock" + }, + { + "name": "discord", + "url": "https://discord.com/invite/hF7AGgt" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Allianceblock/" + }, + { + "name": "medium", + "url": "https://medium.com/@allianceblock" + }, + { + "name": "whitepaper", + "url": "https://www.allianceblock.io/AllianceBlock_WhitePaper_n47oEn0Aa.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00c4B398500645eb5dA00a1a379a88B11683ba01/info.json b/blockchains/ethereum/assets/0x00c4B398500645eb5dA00a1a379a88B11683ba01/info.json new file mode 100644 index 00000000..ec756499 --- /dev/null +++ b/blockchains/ethereum/assets/0x00c4B398500645eb5dA00a1a379a88B11683ba01/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eximchain Token", + "symbol": "EXC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.eximchain.com/", + "explorer": "https://etherscan.io/token/0x00c4B398500645eb5dA00a1a379a88B11683ba01", + "status": "abandoned", + "id": "0x00c4B398500645eb5dA00a1a379a88B11683ba01" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00c4B398500645eb5dA00a1a379a88B11683ba01/logo.png b/blockchains/ethereum/assets/0x00c4B398500645eb5dA00a1a379a88B11683ba01/logo.png new file mode 100644 index 00000000..431c1736 Binary files /dev/null and b/blockchains/ethereum/assets/0x00c4B398500645eb5dA00a1a379a88B11683ba01/logo.png differ diff --git a/blockchains/ethereum/assets/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7/info.json b/blockchains/ethereum/assets/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7/info.json new file mode 100644 index 00000000..2003aea2 --- /dev/null +++ b/blockchains/ethereum/assets/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7/info.json @@ -0,0 +1,17 @@ +{ + "name": "SKALE Network", + "website": "https://skale.network/", + "description": "Skale is an ethereum interoperable elastic blockchain network.", + "explorer": "https://etherscan.io/token/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7", + "type": "ERC20", + "symbol": "SKL", + "decimals": 18, + "status": "active", + "id": "0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7", + "links": [ + { + "name": "whitepaper", + "url": "https://skale.network/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7/logo.png b/blockchains/ethereum/assets/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7/logo.png new file mode 100644 index 00000000..32d64d50 Binary files /dev/null and b/blockchains/ethereum/assets/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7/logo.png differ diff --git a/blockchains/ethereum/assets/0x00eA6f91B00E080e816f1bB2faD71b0fe1528983/info.json b/blockchains/ethereum/assets/0x00eA6f91B00E080e816f1bB2faD71b0fe1528983/info.json new file mode 100644 index 00000000..3b57fbac --- /dev/null +++ b/blockchains/ethereum/assets/0x00eA6f91B00E080e816f1bB2faD71b0fe1528983/info.json @@ -0,0 +1,11 @@ +{ + "name": "VCOIN", + "symbol": "VN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x00eA6f91B00E080e816f1bB2faD71b0fe1528983", + "status": "abandoned", + "id": "0x00eA6f91B00E080e816f1bB2faD71b0fe1528983" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00eA6f91B00E080e816f1bB2faD71b0fe1528983/logo.png b/blockchains/ethereum/assets/0x00eA6f91B00E080e816f1bB2faD71b0fe1528983/logo.png new file mode 100644 index 00000000..ae541d4b Binary files /dev/null and b/blockchains/ethereum/assets/0x00eA6f91B00E080e816f1bB2faD71b0fe1528983/logo.png differ diff --git a/blockchains/ethereum/assets/0x00fC270C9cc13e878Ab5363D00354bebF6f05C15/info.json b/blockchains/ethereum/assets/0x00fC270C9cc13e878Ab5363D00354bebF6f05C15/info.json new file mode 100644 index 00000000..58080844 --- /dev/null +++ b/blockchains/ethereum/assets/0x00fC270C9cc13e878Ab5363D00354bebF6f05C15/info.json @@ -0,0 +1,11 @@ +{ + "name": "VNX Exchange", + "symbol": "VNXLU", + "type": "ERC20", + "decimals": 18, + "description": "VNX is developing the world's first decentralized marketplace and trading platform, where investors can buy and sell tokenized investment portfolios of venture capital funds and accelerators.", + "website": "https://vnx.io/", + "explorer": "https://etherscan.io/token/0x00fC270C9cc13e878Ab5363D00354bebF6f05C15", + "status": "active", + "id": "0x00fC270C9cc13e878Ab5363D00354bebF6f05C15" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x00fC270C9cc13e878Ab5363D00354bebF6f05C15/logo.png b/blockchains/ethereum/assets/0x00fC270C9cc13e878Ab5363D00354bebF6f05C15/logo.png new file mode 100644 index 00000000..e138baf2 Binary files /dev/null and b/blockchains/ethereum/assets/0x00fC270C9cc13e878Ab5363D00354bebF6f05C15/logo.png differ diff --git a/blockchains/ethereum/assets/0x010c282118aA76174CE5952572BA715CF60A0c9B/info.json b/blockchains/ethereum/assets/0x010c282118aA76174CE5952572BA715CF60A0c9B/info.json new file mode 100644 index 00000000..d804279f --- /dev/null +++ b/blockchains/ethereum/assets/0x010c282118aA76174CE5952572BA715CF60A0c9B/info.json @@ -0,0 +1,11 @@ +{ + "name": "VINX", + "website": "https://vinxcoin.com/", + "description": "Asset Backed By Wine And Vineyard Investment Funds", + "explorer": "https://etherscan.io/token/0x010c282118aA76174CE5952572BA715CF60A0c9B", + "type": "ERC20", + "symbol": "VINX", + "decimals": 18, + "status": "active", + "id": "0x010c282118aA76174CE5952572BA715CF60A0c9B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x010c282118aA76174CE5952572BA715CF60A0c9B/logo.png b/blockchains/ethereum/assets/0x010c282118aA76174CE5952572BA715CF60A0c9B/logo.png new file mode 100644 index 00000000..9d189b6d Binary files /dev/null and b/blockchains/ethereum/assets/0x010c282118aA76174CE5952572BA715CF60A0c9B/logo.png differ diff --git a/blockchains/ethereum/assets/0x0110Aa21dD3908837b8589eCc4bD5161b0235bB8/info.json b/blockchains/ethereum/assets/0x0110Aa21dD3908837b8589eCc4bD5161b0235bB8/info.json new file mode 100644 index 00000000..7be3847c --- /dev/null +++ b/blockchains/ethereum/assets/0x0110Aa21dD3908837b8589eCc4bD5161b0235bB8/info.json @@ -0,0 +1,11 @@ +{ + "name": "PoaToken", + "symbol": "POA", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0110Aa21dD3908837b8589eCc4bD5161b0235bB8", + "status": "abandoned", + "id": "0x0110Aa21dD3908837b8589eCc4bD5161b0235bB8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0110Aa21dD3908837b8589eCc4bD5161b0235bB8/logo.png b/blockchains/ethereum/assets/0x0110Aa21dD3908837b8589eCc4bD5161b0235bB8/logo.png new file mode 100755 index 00000000..1a1dddb6 Binary files /dev/null and b/blockchains/ethereum/assets/0x0110Aa21dD3908837b8589eCc4bD5161b0235bB8/logo.png differ diff --git a/blockchains/ethereum/assets/0x01139476be434EDf3A5041748d458c85e85B3313/info.json b/blockchains/ethereum/assets/0x01139476be434EDf3A5041748d458c85e85B3313/info.json new file mode 100644 index 00000000..f488ed95 --- /dev/null +++ b/blockchains/ethereum/assets/0x01139476be434EDf3A5041748d458c85e85B3313/info.json @@ -0,0 +1,11 @@ +{ + "name": "W", + "symbol": "TUKFR1-34/50W34", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x01139476be434EDf3A5041748d458c85e85B3313", + "status": "abandoned", + "id": "0x01139476be434EDf3A5041748d458c85e85B3313" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01139476be434EDf3A5041748d458c85e85B3313/logo.png b/blockchains/ethereum/assets/0x01139476be434EDf3A5041748d458c85e85B3313/logo.png new file mode 100644 index 00000000..2f5e0aaf Binary files /dev/null and b/blockchains/ethereum/assets/0x01139476be434EDf3A5041748d458c85e85B3313/logo.png differ diff --git a/blockchains/ethereum/assets/0x0132A1871B9c985354Ad16D5fC1cc6f1eC32c4D4/info.json b/blockchains/ethereum/assets/0x0132A1871B9c985354Ad16D5fC1cc6f1eC32c4D4/info.json new file mode 100644 index 00000000..4d34533c --- /dev/null +++ b/blockchains/ethereum/assets/0x0132A1871B9c985354Ad16D5fC1cc6f1eC32c4D4/info.json @@ -0,0 +1,11 @@ +{ + "name": "cash", + "symbol": "cash", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0132A1871B9c985354Ad16D5fC1cc6f1eC32c4D4", + "status": "abandoned", + "id": "0x0132A1871B9c985354Ad16D5fC1cc6f1eC32c4D4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0132A1871B9c985354Ad16D5fC1cc6f1eC32c4D4/logo.png b/blockchains/ethereum/assets/0x0132A1871B9c985354Ad16D5fC1cc6f1eC32c4D4/logo.png new file mode 100755 index 00000000..8e850bcb Binary files /dev/null and b/blockchains/ethereum/assets/0x0132A1871B9c985354Ad16D5fC1cc6f1eC32c4D4/logo.png differ diff --git a/blockchains/ethereum/assets/0x0132aDFEB4FD0F361f5E69F7D269e2d80496B2f3/info.json b/blockchains/ethereum/assets/0x0132aDFEB4FD0F361f5E69F7D269e2d80496B2f3/info.json new file mode 100644 index 00000000..d128e15d --- /dev/null +++ b/blockchains/ethereum/assets/0x0132aDFEB4FD0F361f5E69F7D269e2d80496B2f3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dafco Token", + "symbol": "DAFCO", + "type": "ERC20", + "decimals": 18, + "description": "DAFCO token is a foreign-exchange securities investment fund company and owns AI Technology with DAF BOT AI. DAFC provides solutions and technologies of robot fintech & foreign currencies.", + "website": "https://dafco.info/", + "explorer": "https://etherscan.io/token/0x0132aDFEB4FD0F361f5E69F7D269e2d80496B2f3", + "status": "active", + "id": "0x0132aDFEB4FD0F361f5E69F7D269e2d80496B2f3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0132aDFEB4FD0F361f5E69F7D269e2d80496B2f3/logo.png b/blockchains/ethereum/assets/0x0132aDFEB4FD0F361f5E69F7D269e2d80496B2f3/logo.png new file mode 100644 index 00000000..459ece17 Binary files /dev/null and b/blockchains/ethereum/assets/0x0132aDFEB4FD0F361f5E69F7D269e2d80496B2f3/logo.png differ diff --git a/blockchains/ethereum/assets/0x013A06558f07d9E6F9A00c95a33f3a0E0255176b/info.json b/blockchains/ethereum/assets/0x013A06558f07d9E6F9A00c95a33f3a0E0255176b/info.json new file mode 100644 index 00000000..fe6362d4 --- /dev/null +++ b/blockchains/ethereum/assets/0x013A06558f07d9E6F9A00c95a33f3a0E0255176b/info.json @@ -0,0 +1,11 @@ +{ + "name": "BALI COIN", + "symbol": "BALI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x013A06558f07d9E6F9A00c95a33f3a0E0255176b", + "status": "abandoned", + "id": "0x013A06558f07d9E6F9A00c95a33f3a0E0255176b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x013A06558f07d9E6F9A00c95a33f3a0E0255176b/logo.png b/blockchains/ethereum/assets/0x013A06558f07d9E6F9A00c95a33f3a0E0255176b/logo.png new file mode 100755 index 00000000..ce2c25f6 Binary files /dev/null and b/blockchains/ethereum/assets/0x013A06558f07d9E6F9A00c95a33f3a0E0255176b/logo.png differ diff --git a/blockchains/ethereum/assets/0x013AE307648f529aa72c5767A334DDd37aaB43c3/info.json b/blockchains/ethereum/assets/0x013AE307648f529aa72c5767A334DDd37aaB43c3/info.json new file mode 100644 index 00000000..bbe7018f --- /dev/null +++ b/blockchains/ethereum/assets/0x013AE307648f529aa72c5767A334DDd37aaB43c3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Synth sBNB", + "symbol": "sBNB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://etherscan.io/token/0x013ae307648f529aa72c5767a334ddd37aab43c3", + "explorer": "https://etherscan.io/token/0x013AE307648f529aa72c5767A334DDd37aaB43c3", + "status": "abandoned", + "id": "0x013AE307648f529aa72c5767A334DDd37aaB43c3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x013AE307648f529aa72c5767A334DDd37aaB43c3/logo.png b/blockchains/ethereum/assets/0x013AE307648f529aa72c5767A334DDd37aaB43c3/logo.png new file mode 100644 index 00000000..90ea4155 Binary files /dev/null and b/blockchains/ethereum/assets/0x013AE307648f529aa72c5767A334DDd37aaB43c3/logo.png differ diff --git a/blockchains/ethereum/assets/0x0142C3B2fC51819B5aF5dFc4AA52Df9722790851/info.json b/blockchains/ethereum/assets/0x0142C3B2fC51819B5aF5dFc4AA52Df9722790851/info.json new file mode 100644 index 00000000..76650434 --- /dev/null +++ b/blockchains/ethereum/assets/0x0142C3B2fC51819B5aF5dFc4AA52Df9722790851/info.json @@ -0,0 +1,11 @@ +{ + "name": "Paycentos Token", + "symbol": "PYN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://paycent.com/", + "explorer": "https://etherscan.io/token/0x0142C3B2fC51819B5aF5dFc4AA52Df9722790851", + "status": "abandoned", + "id": "0x0142C3B2fC51819B5aF5dFc4AA52Df9722790851" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0142C3B2fC51819B5aF5dFc4AA52Df9722790851/logo.png b/blockchains/ethereum/assets/0x0142C3B2fC51819B5aF5dFc4AA52Df9722790851/logo.png new file mode 100644 index 00000000..fe2cb363 Binary files /dev/null and b/blockchains/ethereum/assets/0x0142C3B2fC51819B5aF5dFc4AA52Df9722790851/logo.png differ diff --git a/blockchains/ethereum/assets/0x014B50466590340D41307Cc54DCee990c8D58aa8/info.json b/blockchains/ethereum/assets/0x014B50466590340D41307Cc54DCee990c8D58aa8/info.json new file mode 100644 index 00000000..fae1a508 --- /dev/null +++ b/blockchains/ethereum/assets/0x014B50466590340D41307Cc54DCee990c8D58aa8/info.json @@ -0,0 +1,11 @@ +{ + "name": "ICOS", + "symbol": "\"\"", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://icos.icobox.io/", + "explorer": "https://etherscan.io/token/0x014B50466590340D41307Cc54DCee990c8D58aa8", + "status": "abandoned", + "id": "0x014B50466590340D41307Cc54DCee990c8D58aa8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x014B50466590340D41307Cc54DCee990c8D58aa8/logo.png b/blockchains/ethereum/assets/0x014B50466590340D41307Cc54DCee990c8D58aa8/logo.png new file mode 100644 index 00000000..43d5fe88 Binary files /dev/null and b/blockchains/ethereum/assets/0x014B50466590340D41307Cc54DCee990c8D58aa8/logo.png differ diff --git a/blockchains/ethereum/assets/0x015228e32287BaCD2d8AA9B703C3e110BBCfCE0f/info.json b/blockchains/ethereum/assets/0x015228e32287BaCD2d8AA9B703C3e110BBCfCE0f/info.json new file mode 100644 index 00000000..9fe77083 --- /dev/null +++ b/blockchains/ethereum/assets/0x015228e32287BaCD2d8AA9B703C3e110BBCfCE0f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jahcoin", + "symbol": "JAH", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x015228e32287BaCD2d8AA9B703C3e110BBCfCE0f", + "status": "abandoned", + "id": "0x015228e32287BaCD2d8AA9B703C3e110BBCfCE0f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x015228e32287BaCD2d8AA9B703C3e110BBCfCE0f/logo.png b/blockchains/ethereum/assets/0x015228e32287BaCD2d8AA9B703C3e110BBCfCE0f/logo.png new file mode 100644 index 00000000..74131f64 Binary files /dev/null and b/blockchains/ethereum/assets/0x015228e32287BaCD2d8AA9B703C3e110BBCfCE0f/logo.png differ diff --git a/blockchains/ethereum/assets/0x01522e6c543FF04E74842abD0F2AFEcC5EF5C281/info.json b/blockchains/ethereum/assets/0x01522e6c543FF04E74842abD0F2AFEcC5EF5C281/info.json new file mode 100644 index 00000000..5c7a93cd --- /dev/null +++ b/blockchains/ethereum/assets/0x01522e6c543FF04E74842abD0F2AFEcC5EF5C281/info.json @@ -0,0 +1,11 @@ +{ + "name": "upscaleeth", + "symbol": "USC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x01522e6c543FF04E74842abD0F2AFEcC5EF5C281", + "status": "abandoned", + "id": "0x01522e6c543FF04E74842abD0F2AFEcC5EF5C281" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01522e6c543FF04E74842abD0F2AFEcC5EF5C281/logo.png b/blockchains/ethereum/assets/0x01522e6c543FF04E74842abD0F2AFEcC5EF5C281/logo.png new file mode 100644 index 00000000..8f8a571b Binary files /dev/null and b/blockchains/ethereum/assets/0x01522e6c543FF04E74842abD0F2AFEcC5EF5C281/logo.png differ diff --git a/blockchains/ethereum/assets/0x016396044709EB3edc69C44f4d5Fa6996917E4e8/info.json b/blockchains/ethereum/assets/0x016396044709EB3edc69C44f4d5Fa6996917E4e8/info.json new file mode 100644 index 00000000..d66fa383 --- /dev/null +++ b/blockchains/ethereum/assets/0x016396044709EB3edc69C44f4d5Fa6996917E4e8/info.json @@ -0,0 +1,11 @@ +{ + "name": "KingXChain", + "symbol": "KXC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://kingxchain.com/", + "explorer": "https://etherscan.io/token/0x016396044709EB3edc69C44f4d5Fa6996917E4e8", + "status": "abandoned", + "id": "0x016396044709EB3edc69C44f4d5Fa6996917E4e8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x016396044709EB3edc69C44f4d5Fa6996917E4e8/logo.png b/blockchains/ethereum/assets/0x016396044709EB3edc69C44f4d5Fa6996917E4e8/logo.png new file mode 100644 index 00000000..aee25f37 Binary files /dev/null and b/blockchains/ethereum/assets/0x016396044709EB3edc69C44f4d5Fa6996917E4e8/logo.png differ diff --git a/blockchains/ethereum/assets/0x016ee7373248a80BDe1fD6bAA001311d233b3CFa/info.json b/blockchains/ethereum/assets/0x016ee7373248a80BDe1fD6bAA001311d233b3CFa/info.json new file mode 100644 index 00000000..38b4a4c7 --- /dev/null +++ b/blockchains/ethereum/assets/0x016ee7373248a80BDe1fD6bAA001311d233b3CFa/info.json @@ -0,0 +1,11 @@ +{ + "name": " 3X Short Bitcoin Token", + "symbol": "BEAR", + "type": "ERC20", + "decimals": 18, + "description": "3X Short Bitcoin Token (BEAR) is an ERC20 token which seeks a return that corresponds to -3 times the daily return of Bitcoin.", + "website": "https://ftx.com/tokens/BEAR", + "explorer": "https://etherscan.io/token/0x016ee7373248a80BDe1fD6bAA001311d233b3CFa", + "status": "active", + "id": "0x016ee7373248a80BDe1fD6bAA001311d233b3CFa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x016ee7373248a80BDe1fD6bAA001311d233b3CFa/logo.png b/blockchains/ethereum/assets/0x016ee7373248a80BDe1fD6bAA001311d233b3CFa/logo.png new file mode 100644 index 00000000..36d37c8b Binary files /dev/null and b/blockchains/ethereum/assets/0x016ee7373248a80BDe1fD6bAA001311d233b3CFa/logo.png differ diff --git a/blockchains/ethereum/assets/0x0172BF2edEd9D1CE712E52Fd27e8f18a502B1172/info.json b/blockchains/ethereum/assets/0x0172BF2edEd9D1CE712E52Fd27e8f18a502B1172/info.json new file mode 100644 index 00000000..04ca0fba --- /dev/null +++ b/blockchains/ethereum/assets/0x0172BF2edEd9D1CE712E52Fd27e8f18a502B1172/info.json @@ -0,0 +1,11 @@ +{ + "name": "Town", + "symbol": "TOWN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0172BF2edEd9D1CE712E52Fd27e8f18a502B1172", + "status": "abandoned", + "id": "0x0172BF2edEd9D1CE712E52Fd27e8f18a502B1172" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0172BF2edEd9D1CE712E52Fd27e8f18a502B1172/logo.png b/blockchains/ethereum/assets/0x0172BF2edEd9D1CE712E52Fd27e8f18a502B1172/logo.png new file mode 100644 index 00000000..2a928c9e Binary files /dev/null and b/blockchains/ethereum/assets/0x0172BF2edEd9D1CE712E52Fd27e8f18a502B1172/logo.png differ diff --git a/blockchains/ethereum/assets/0x0189d31F6629c359007f72B8D5Ec8Fa1C126f95c/info.json b/blockchains/ethereum/assets/0x0189d31F6629c359007f72B8D5Ec8Fa1C126f95c/info.json new file mode 100644 index 00000000..5c4dba55 --- /dev/null +++ b/blockchains/ethereum/assets/0x0189d31F6629c359007f72B8D5Ec8Fa1C126f95c/info.json @@ -0,0 +1,11 @@ +{ + "name": "SNSTOKEN", + "symbol": "SNS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0189d31F6629c359007f72B8D5Ec8Fa1C126f95c", + "status": "abandoned", + "id": "0x0189d31F6629c359007f72B8D5Ec8Fa1C126f95c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0189d31F6629c359007f72B8D5Ec8Fa1C126f95c/logo.png b/blockchains/ethereum/assets/0x0189d31F6629c359007f72B8D5Ec8Fa1C126f95c/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x0189d31F6629c359007f72B8D5Ec8Fa1C126f95c/logo.png differ diff --git a/blockchains/ethereum/assets/0x018DD3A0Dd7F213cc822076b3800816d3CE1ED86/info.json b/blockchains/ethereum/assets/0x018DD3A0Dd7F213cc822076b3800816d3CE1ED86/info.json new file mode 100644 index 00000000..36dcb2c4 --- /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 00000000..fe412542 Binary files /dev/null and b/blockchains/ethereum/assets/0x018DD3A0Dd7F213cc822076b3800816d3CE1ED86/logo.png differ diff --git a/blockchains/ethereum/assets/0x018d7D179350f1Bb9853D04982820E37ccE13a92/info.json b/blockchains/ethereum/assets/0x018d7D179350f1Bb9853D04982820E37ccE13a92/info.json new file mode 100644 index 00000000..bcd6f9a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x018d7D179350f1Bb9853D04982820E37ccE13a92/info.json @@ -0,0 +1,11 @@ +{ + "name": "INMAX", + "symbol": "INX", + "type": "ERC20", + "decimals": 8, + "description": "INMAX is A dependable digital asset exchange and financial system.", + "website": "https://inmax.live", + "explorer": "https://etherscan.io/token/0x018d7D179350f1Bb9853D04982820E37ccE13a92", + "status": "active", + "id": "0x018d7D179350f1Bb9853D04982820E37ccE13a92" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x018d7D179350f1Bb9853D04982820E37ccE13a92/logo.png b/blockchains/ethereum/assets/0x018d7D179350f1Bb9853D04982820E37ccE13a92/logo.png new file mode 100644 index 00000000..3c903435 Binary files /dev/null and b/blockchains/ethereum/assets/0x018d7D179350f1Bb9853D04982820E37ccE13a92/logo.png differ diff --git a/blockchains/ethereum/assets/0x0198f46f520F33cd4329bd4bE380a25a90536CD5/info.json b/blockchains/ethereum/assets/0x0198f46f520F33cd4329bd4bE380a25a90536CD5/info.json new file mode 100644 index 00000000..e49b42d0 --- /dev/null +++ b/blockchains/ethereum/assets/0x0198f46f520F33cd4329bd4bE380a25a90536CD5/info.json @@ -0,0 +1,11 @@ +{ + "name": "PlayChip", + "symbol": "PLA", + "type": "ERC20", + "decimals": 18, + "description": "PlayChip’s vision is to become the Universal Gaming Token. PlayChip is an ERC20 token at the centre of an existing online gaming ecosystem.", + "website": "https://www.playchip.global/", + "explorer": "https://etherscan.io/token/0x0198f46f520F33cd4329bd4bE380a25a90536CD5", + "status": "active", + "id": "0x0198f46f520F33cd4329bd4bE380a25a90536CD5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0198f46f520F33cd4329bd4bE380a25a90536CD5/logo.png b/blockchains/ethereum/assets/0x0198f46f520F33cd4329bd4bE380a25a90536CD5/logo.png new file mode 100644 index 00000000..9da32f8f Binary files /dev/null and b/blockchains/ethereum/assets/0x0198f46f520F33cd4329bd4bE380a25a90536CD5/logo.png differ diff --git a/blockchains/ethereum/assets/0x01995786f1435743C42B7f2276C496a610B58612/info.json b/blockchains/ethereum/assets/0x01995786f1435743C42B7f2276C496a610B58612/info.json new file mode 100644 index 00000000..51c1f859 --- /dev/null +++ b/blockchains/ethereum/assets/0x01995786f1435743C42B7f2276C496a610B58612/info.json @@ -0,0 +1,11 @@ +{ + "name": "SanDianZhong", + "symbol": "SDZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x01995786f1435743C42B7f2276C496a610B58612", + "status": "abandoned", + "id": "0x01995786f1435743C42B7f2276C496a610B58612" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01995786f1435743C42B7f2276C496a610B58612/logo.png b/blockchains/ethereum/assets/0x01995786f1435743C42B7f2276C496a610B58612/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x01995786f1435743C42B7f2276C496a610B58612/logo.png differ diff --git a/blockchains/ethereum/assets/0x01B19c68f8A9eE3a480dA788ba401cFAbdf19B93/info.json b/blockchains/ethereum/assets/0x01B19c68f8A9eE3a480dA788ba401cFAbdf19B93/info.json new file mode 100644 index 00000000..db45e9ee --- /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 00000000..1bc23284 Binary files /dev/null and b/blockchains/ethereum/assets/0x01B19c68f8A9eE3a480dA788ba401cFAbdf19B93/logo.png differ diff --git a/blockchains/ethereum/assets/0x01C0987E88F778DF6640787226bc96354E1a9766/info.json b/blockchains/ethereum/assets/0x01C0987E88F778DF6640787226bc96354E1a9766/info.json new file mode 100644 index 00000000..ac4a3640 --- /dev/null +++ b/blockchains/ethereum/assets/0x01C0987E88F778DF6640787226bc96354E1a9766/info.json @@ -0,0 +1,11 @@ +{ + "name": "UltrAlpha token", + "symbol": "UAT", + "type": "ERC20", + "decimals": 18, + "description": "UAT is a non-refundable functional utility token which will be used as the payment medium of service exchange between participants on the UAT platform.", + "website": "https://ultralpha.io/", + "explorer": "https://etherscan.io/token/0x01C0987E88F778DF6640787226bc96354E1a9766", + "status": "active", + "id": "0x01C0987E88F778DF6640787226bc96354E1a9766" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01C0987E88F778DF6640787226bc96354E1a9766/logo.png b/blockchains/ethereum/assets/0x01C0987E88F778DF6640787226bc96354E1a9766/logo.png new file mode 100644 index 00000000..e1109991 Binary files /dev/null and b/blockchains/ethereum/assets/0x01C0987E88F778DF6640787226bc96354E1a9766/logo.png differ diff --git a/blockchains/ethereum/assets/0x01E2087BE8C34fB06229Aa9e49BF801a89d30d9D/info.json b/blockchains/ethereum/assets/0x01E2087BE8C34fB06229Aa9e49BF801a89d30d9D/info.json new file mode 100644 index 00000000..6c3c33d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x01E2087BE8C34fB06229Aa9e49BF801a89d30d9D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Miles Coin", + "symbol": "MILES", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x01E2087BE8C34fB06229Aa9e49BF801a89d30d9D", + "status": "abandoned", + "id": "0x01E2087BE8C34fB06229Aa9e49BF801a89d30d9D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01E2087BE8C34fB06229Aa9e49BF801a89d30d9D/logo.png b/blockchains/ethereum/assets/0x01E2087BE8C34fB06229Aa9e49BF801a89d30d9D/logo.png new file mode 100644 index 00000000..4a6f2c77 Binary files /dev/null and b/blockchains/ethereum/assets/0x01E2087BE8C34fB06229Aa9e49BF801a89d30d9D/logo.png differ diff --git a/blockchains/ethereum/assets/0x01E45B8D0c51f05F17385DD3416fE3aA5BFd89aC/info.json b/blockchains/ethereum/assets/0x01E45B8D0c51f05F17385DD3416fE3aA5BFd89aC/info.json new file mode 100644 index 00000000..2f8cc8cf --- /dev/null +++ b/blockchains/ethereum/assets/0x01E45B8D0c51f05F17385DD3416fE3aA5BFd89aC/info.json @@ -0,0 +1,11 @@ +{ + "name": "COINBIG", + "symbol": "CB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.coinbig.com/cb.html", + "explorer": "https://etherscan.io/token/0x01E45B8D0c51f05F17385DD3416fE3aA5BFd89aC", + "status": "abandoned", + "id": "0x01E45B8D0c51f05F17385DD3416fE3aA5BFd89aC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01E45B8D0c51f05F17385DD3416fE3aA5BFd89aC/logo.png b/blockchains/ethereum/assets/0x01E45B8D0c51f05F17385DD3416fE3aA5BFd89aC/logo.png new file mode 100644 index 00000000..cb727de6 Binary files /dev/null and b/blockchains/ethereum/assets/0x01E45B8D0c51f05F17385DD3416fE3aA5BFd89aC/logo.png differ diff --git a/blockchains/ethereum/assets/0x01FDB5103a0D9De8d12e32E7775D5799bD715a54/info.json b/blockchains/ethereum/assets/0x01FDB5103a0D9De8d12e32E7775D5799bD715a54/info.json new file mode 100644 index 00000000..4947ce8e --- /dev/null +++ b/blockchains/ethereum/assets/0x01FDB5103a0D9De8d12e32E7775D5799bD715a54/info.json @@ -0,0 +1,11 @@ +{ + "name": "QBUX", + "symbol": "QBUX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x01FDB5103a0D9De8d12e32E7775D5799bD715a54", + "status": "abandoned", + "id": "0x01FDB5103a0D9De8d12e32E7775D5799bD715a54" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01FDB5103a0D9De8d12e32E7775D5799bD715a54/logo.png b/blockchains/ethereum/assets/0x01FDB5103a0D9De8d12e32E7775D5799bD715a54/logo.png new file mode 100644 index 00000000..761d98ae Binary files /dev/null and b/blockchains/ethereum/assets/0x01FDB5103a0D9De8d12e32E7775D5799bD715a54/logo.png differ diff --git a/blockchains/ethereum/assets/0x01aF924198e893fC57A1b2D2BE5a6CC420B8764A/info.json b/blockchains/ethereum/assets/0x01aF924198e893fC57A1b2D2BE5a6CC420B8764A/info.json new file mode 100644 index 00000000..52ad279b --- /dev/null +++ b/blockchains/ethereum/assets/0x01aF924198e893fC57A1b2D2BE5a6CC420B8764A/info.json @@ -0,0 +1,11 @@ +{ + "name": "RaiseEntertainmentToken", + "symbol": "RET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x01aF924198e893fC57A1b2D2BE5a6CC420B8764A", + "status": "abandoned", + "id": "0x01aF924198e893fC57A1b2D2BE5a6CC420B8764A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01aF924198e893fC57A1b2D2BE5a6CC420B8764A/logo.png b/blockchains/ethereum/assets/0x01aF924198e893fC57A1b2D2BE5a6CC420B8764A/logo.png new file mode 100644 index 00000000..1586f72b Binary files /dev/null and b/blockchains/ethereum/assets/0x01aF924198e893fC57A1b2D2BE5a6CC420B8764A/logo.png differ diff --git a/blockchains/ethereum/assets/0x01aa952C2aa0259198E403c10799557e9a6B1EC1/info.json b/blockchains/ethereum/assets/0x01aa952C2aa0259198E403c10799557e9a6B1EC1/info.json new file mode 100644 index 00000000..5548721a --- /dev/null +++ b/blockchains/ethereum/assets/0x01aa952C2aa0259198E403c10799557e9a6B1EC1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Brezcoin", + "symbol": "BREZ", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x01aa952C2aa0259198E403c10799557e9a6B1EC1", + "status": "abandoned", + "id": "0x01aa952C2aa0259198E403c10799557e9a6B1EC1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01aa952C2aa0259198E403c10799557e9a6B1EC1/logo.png b/blockchains/ethereum/assets/0x01aa952C2aa0259198E403c10799557e9a6B1EC1/logo.png new file mode 100755 index 00000000..f1427ad8 Binary files /dev/null and b/blockchains/ethereum/assets/0x01aa952C2aa0259198E403c10799557e9a6B1EC1/logo.png differ diff --git a/blockchains/ethereum/assets/0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab/info.json b/blockchains/ethereum/assets/0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab/info.json new file mode 100644 index 00000000..2beb644e --- /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 00000000..f4a7fd81 Binary files /dev/null and b/blockchains/ethereum/assets/0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab/logo.png differ diff --git a/blockchains/ethereum/assets/0x01b3Ec4aAe1B8729529BEB4965F27d008788B0EB/info.json b/blockchains/ethereum/assets/0x01b3Ec4aAe1B8729529BEB4965F27d008788B0EB/info.json new file mode 100644 index 00000000..c374c6ff --- /dev/null +++ b/blockchains/ethereum/assets/0x01b3Ec4aAe1B8729529BEB4965F27d008788B0EB/info.json @@ -0,0 +1,11 @@ +{ + "name": "DA Power Play Token", + "symbol": "DPP", + "type": "ERC20", + "decimals": 18, + "description": "Digital Assets Power Play Ltd. (DPP) is the leading developer of algorithmic crypto trading tools, services, and software. DPP offers a full suite of revolutionary and intuitive tools for algo strategy creation, DPP DataStreams, DPP Historical, DPP Trader+, DPP TradeVenue and DPP Coinvestor.", + "website": "https://dapowerplay.com/", + "explorer": "https://etherscan.io/token/0x01b3Ec4aAe1B8729529BEB4965F27d008788B0EB", + "status": "active", + "id": "0x01b3Ec4aAe1B8729529BEB4965F27d008788B0EB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01b3Ec4aAe1B8729529BEB4965F27d008788B0EB/logo.png b/blockchains/ethereum/assets/0x01b3Ec4aAe1B8729529BEB4965F27d008788B0EB/logo.png new file mode 100644 index 00000000..0c0700aa Binary files /dev/null and b/blockchains/ethereum/assets/0x01b3Ec4aAe1B8729529BEB4965F27d008788B0EB/logo.png differ diff --git a/blockchains/ethereum/assets/0x01bcd148c54cA43Dad8C195100998DED48FaD39c/info.json b/blockchains/ethereum/assets/0x01bcd148c54cA43Dad8C195100998DED48FaD39c/info.json new file mode 100644 index 00000000..6fd8025a --- /dev/null +++ b/blockchains/ethereum/assets/0x01bcd148c54cA43Dad8C195100998DED48FaD39c/info.json @@ -0,0 +1,11 @@ +{ + "name": "RACECOIN", + "symbol": "RAN", + "type": "ERC20", + "decimals": 18, + "description": "aceCoin is designed to be a precious possession in the growing cryptocurrency market. We give RaceCoin owners control over their money without compromising on convenience.", + "website": "https://racecoin.io/", + "explorer": "https://etherscan.io/token/0x01bcd148c54cA43Dad8C195100998DED48FaD39c", + "status": "active", + "id": "0x01bcd148c54cA43Dad8C195100998DED48FaD39c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01bcd148c54cA43Dad8C195100998DED48FaD39c/logo.png b/blockchains/ethereum/assets/0x01bcd148c54cA43Dad8C195100998DED48FaD39c/logo.png new file mode 100644 index 00000000..4fb479f0 Binary files /dev/null and b/blockchains/ethereum/assets/0x01bcd148c54cA43Dad8C195100998DED48FaD39c/logo.png differ diff --git a/blockchains/ethereum/assets/0x01cC4151fe5f00EfB8dF2F90ff833725d3a482a3/info.json b/blockchains/ethereum/assets/0x01cC4151fe5f00EfB8dF2F90ff833725d3a482a3/info.json new file mode 100644 index 00000000..ccfdd8ac --- /dev/null +++ b/blockchains/ethereum/assets/0x01cC4151fe5f00EfB8dF2F90ff833725d3a482a3/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPECTRUM", + "symbol": "SPT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://spectrum-token.com/", + "explorer": "https://etherscan.io/token/0x01cC4151fe5f00EfB8dF2F90ff833725d3a482a3", + "status": "abandoned", + "id": "0x01cC4151fe5f00EfB8dF2F90ff833725d3a482a3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01cC4151fe5f00EfB8dF2F90ff833725d3a482a3/logo.png b/blockchains/ethereum/assets/0x01cC4151fe5f00EfB8dF2F90ff833725d3a482a3/logo.png new file mode 100644 index 00000000..b456d75a Binary files /dev/null and b/blockchains/ethereum/assets/0x01cC4151fe5f00EfB8dF2F90ff833725d3a482a3/logo.png differ diff --git a/blockchains/ethereum/assets/0x01cd3D9dF5869ca7954745663bd6201C571E05Cf/info.json b/blockchains/ethereum/assets/0x01cd3D9dF5869ca7954745663bd6201C571E05Cf/info.json new file mode 100644 index 00000000..f00467ac --- /dev/null +++ b/blockchains/ethereum/assets/0x01cd3D9dF5869ca7954745663bd6201C571E05Cf/info.json @@ -0,0 +1,11 @@ +{ + "name": "LULU Token", + "symbol": "LULU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x01cd3D9dF5869ca7954745663bd6201C571E05Cf", + "status": "abandoned", + "id": "0x01cd3D9dF5869ca7954745663bd6201C571E05Cf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01cd3D9dF5869ca7954745663bd6201C571E05Cf/logo.png b/blockchains/ethereum/assets/0x01cd3D9dF5869ca7954745663bd6201C571E05Cf/logo.png new file mode 100644 index 00000000..dfc5ca43 Binary files /dev/null and b/blockchains/ethereum/assets/0x01cd3D9dF5869ca7954745663bd6201C571E05Cf/logo.png differ diff --git a/blockchains/ethereum/assets/0x01e1d7cBD3Bc0EB1030485F33708421011459459/info.json b/blockchains/ethereum/assets/0x01e1d7cBD3Bc0EB1030485F33708421011459459/info.json new file mode 100644 index 00000000..53d496cf --- /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 00000000..9535fbe7 Binary files /dev/null and b/blockchains/ethereum/assets/0x01e1d7cBD3Bc0EB1030485F33708421011459459/logo.png differ diff --git a/blockchains/ethereum/assets/0x01f79a6d6023C3b7d66144A14a1a0513E0077FcE/info.json b/blockchains/ethereum/assets/0x01f79a6d6023C3b7d66144A14a1a0513E0077FcE/info.json new file mode 100644 index 00000000..a77fc551 --- /dev/null +++ b/blockchains/ethereum/assets/0x01f79a6d6023C3b7d66144A14a1a0513E0077FcE/info.json @@ -0,0 +1,11 @@ +{ + "name": "COMMUNITY MONEY", + "symbol": "CMMO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x01f79a6d6023C3b7d66144A14a1a0513E0077FcE", + "status": "abandoned", + "id": "0x01f79a6d6023C3b7d66144A14a1a0513E0077FcE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01f79a6d6023C3b7d66144A14a1a0513E0077FcE/logo.png b/blockchains/ethereum/assets/0x01f79a6d6023C3b7d66144A14a1a0513E0077FcE/logo.png new file mode 100644 index 00000000..6e5a72c7 Binary files /dev/null and b/blockchains/ethereum/assets/0x01f79a6d6023C3b7d66144A14a1a0513E0077FcE/logo.png differ diff --git a/blockchains/ethereum/assets/0x01fF50f8b7f74E4f00580d9596cd3D0d6d6E326f/info.json b/blockchains/ethereum/assets/0x01fF50f8b7f74E4f00580d9596cd3D0d6d6E326f/info.json new file mode 100644 index 00000000..f64e028b --- /dev/null +++ b/blockchains/ethereum/assets/0x01fF50f8b7f74E4f00580d9596cd3D0d6d6E326f/info.json @@ -0,0 +1,11 @@ +{ + "name": "BF Token", + "symbol": "BFT", + "type": "ERC20", + "decimals": 18, + "description": "BnKToTheFuture (BFT) is an online investment platform created to facilitate investments in equity and cryptoassets", + "website": "https://bf-token.bnktothefuture.com", + "explorer": "https://etherscan.io/token/0x01fF50f8b7f74E4f00580d9596cd3D0d6d6E326f", + "status": "active", + "id": "0x01fF50f8b7f74E4f00580d9596cd3D0d6d6E326f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x01fF50f8b7f74E4f00580d9596cd3D0d6d6E326f/logo.png b/blockchains/ethereum/assets/0x01fF50f8b7f74E4f00580d9596cd3D0d6d6E326f/logo.png new file mode 100644 index 00000000..49cb656f Binary files /dev/null and b/blockchains/ethereum/assets/0x01fF50f8b7f74E4f00580d9596cd3D0d6d6E326f/logo.png differ diff --git a/blockchains/ethereum/assets/0x0200412995f1baFef0D3F97C4E28Ac2515EC1eCE/info.json b/blockchains/ethereum/assets/0x0200412995f1baFef0D3F97C4E28Ac2515EC1eCE/info.json new file mode 100644 index 00000000..72912b7b --- /dev/null +++ b/blockchains/ethereum/assets/0x0200412995f1baFef0D3F97C4E28Ac2515EC1eCE/info.json @@ -0,0 +1,11 @@ +{ + "name": "FollowCoin", + "symbol": "FLLW", + "type": "ERC20", + "decimals": 18, + "description": "Follow Coin is the platform to excel in trading in the Cryptocurrency world! You can follow and copy influencers with the highest reputation and much more!", + "website": "https://followcoin.io/", + "explorer": "https://etherscan.io/token/0x0200412995f1baFef0D3F97C4E28Ac2515EC1eCE", + "status": "abandoned", + "id": "0x0200412995f1baFef0D3F97C4E28Ac2515EC1eCE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0200412995f1baFef0D3F97C4E28Ac2515EC1eCE/logo.png b/blockchains/ethereum/assets/0x0200412995f1baFef0D3F97C4E28Ac2515EC1eCE/logo.png new file mode 100755 index 00000000..7f685527 Binary files /dev/null and b/blockchains/ethereum/assets/0x0200412995f1baFef0D3F97C4E28Ac2515EC1eCE/logo.png differ diff --git a/blockchains/ethereum/assets/0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1/info.json b/blockchains/ethereum/assets/0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1/info.json new file mode 100644 index 00000000..a59ba9b0 --- /dev/null +++ b/blockchains/ethereum/assets/0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1/info.json @@ -0,0 +1,29 @@ +{ + "name": "UniLend", + "website": "https://unilend.finance//", + "description": "UniLend is a permission-less decentralized protocol that combines spot trading services and money markets with lending and borrowing services through smart contracts. Existing DeFi platforms act as a gatekeeper, thereby barring the majority of assets from participation. Multi-asset pools also expose lenders to risk associated with all of the included assets.", + "explorer": "https://etherscan.io/token/0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1", + "type": "ERC20", + "symbol": "UFT", + "decimals": 18, + "status": "active", + "id": "0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1", + "links": [ + { + "name": "github", + "url": "https://github.com/unilend" + }, + { + "name": "x", + "url": "https://x.com/UniLend_Finance" + }, + { + "name": "telegram", + "url": "https://t.me/UniLendFinance" + }, + { + "name": "medium", + "url": "https://medium.com/@UniLend" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1/logo.png b/blockchains/ethereum/assets/0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1/logo.png new file mode 100644 index 00000000..dca861df Binary files /dev/null and b/blockchains/ethereum/assets/0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1/logo.png differ diff --git a/blockchains/ethereum/assets/0x020C710646e23AB868dbE5B88004892797fE4eFb/info.json b/blockchains/ethereum/assets/0x020C710646e23AB868dbE5B88004892797fE4eFb/info.json new file mode 100644 index 00000000..2afb0990 --- /dev/null +++ b/blockchains/ethereum/assets/0x020C710646e23AB868dbE5B88004892797fE4eFb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Golfcoin", + "symbol": "GOLF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.golfcoin.cc/", + "explorer": "https://etherscan.io/token/0x020C710646e23AB868dbE5B88004892797fE4eFb", + "status": "abandoned", + "id": "0x020C710646e23AB868dbE5B88004892797fE4eFb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x020C710646e23AB868dbE5B88004892797fE4eFb/logo.png b/blockchains/ethereum/assets/0x020C710646e23AB868dbE5B88004892797fE4eFb/logo.png new file mode 100755 index 00000000..ac96e9f3 Binary files /dev/null and b/blockchains/ethereum/assets/0x020C710646e23AB868dbE5B88004892797fE4eFb/logo.png differ diff --git a/blockchains/ethereum/assets/0x0218C4E3Aad7eCF71CCc5D5AaA43C02245F45cCD/info.json b/blockchains/ethereum/assets/0x0218C4E3Aad7eCF71CCc5D5AaA43C02245F45cCD/info.json new file mode 100644 index 00000000..baf2880b --- /dev/null +++ b/blockchains/ethereum/assets/0x0218C4E3Aad7eCF71CCc5D5AaA43C02245F45cCD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Erosion", + "symbol": "EROS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0218C4E3Aad7eCF71CCc5D5AaA43C02245F45cCD", + "status": "abandoned", + "id": "0x0218C4E3Aad7eCF71CCc5D5AaA43C02245F45cCD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0218C4E3Aad7eCF71CCc5D5AaA43C02245F45cCD/logo.png b/blockchains/ethereum/assets/0x0218C4E3Aad7eCF71CCc5D5AaA43C02245F45cCD/logo.png new file mode 100644 index 00000000..b46a3cf4 Binary files /dev/null and b/blockchains/ethereum/assets/0x0218C4E3Aad7eCF71CCc5D5AaA43C02245F45cCD/logo.png differ diff --git a/blockchains/ethereum/assets/0x0223fc70574214F65813fE336D870Ac47E147fAe/info.json b/blockchains/ethereum/assets/0x0223fc70574214F65813fE336D870Ac47E147fAe/info.json new file mode 100644 index 00000000..88727385 --- /dev/null +++ b/blockchains/ethereum/assets/0x0223fc70574214F65813fE336D870Ac47E147fAe/info.json @@ -0,0 +1,11 @@ +{ + "name": "CZR", + "symbol": "CZR", + "type": "ERC20", + "decimals": 18, + "description": "CanonChain will be triggered from the protocol layer and the chipset layer of data communications to provide a robust foundation for the entire blockchain industry.", + "website": "http://www.canonchain.com/", + "explorer": "https://etherscan.io/token/0x0223fc70574214F65813fE336D870Ac47E147fAe", + "status": "active", + "id": "0x0223fc70574214F65813fE336D870Ac47E147fAe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0223fc70574214F65813fE336D870Ac47E147fAe/logo.png b/blockchains/ethereum/assets/0x0223fc70574214F65813fE336D870Ac47E147fAe/logo.png new file mode 100644 index 00000000..a5ffa9d8 Binary files /dev/null and b/blockchains/ethereum/assets/0x0223fc70574214F65813fE336D870Ac47E147fAe/logo.png differ diff --git a/blockchains/ethereum/assets/0x0235fE624e044A05eeD7A43E16E3083bc8A4287A/info.json b/blockchains/ethereum/assets/0x0235fE624e044A05eeD7A43E16E3083bc8A4287A/info.json new file mode 100644 index 00000000..7edfbd3e --- /dev/null +++ b/blockchains/ethereum/assets/0x0235fE624e044A05eeD7A43E16E3083bc8A4287A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Original Crypto Coin", + "symbol": "OCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0235fE624e044A05eeD7A43E16E3083bc8A4287A", + "status": "abandoned", + "id": "0x0235fE624e044A05eeD7A43E16E3083bc8A4287A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0235fE624e044A05eeD7A43E16E3083bc8A4287A/logo.png b/blockchains/ethereum/assets/0x0235fE624e044A05eeD7A43E16E3083bc8A4287A/logo.png new file mode 100644 index 00000000..59fdbf0c Binary files /dev/null and b/blockchains/ethereum/assets/0x0235fE624e044A05eeD7A43E16E3083bc8A4287A/logo.png differ diff --git a/blockchains/ethereum/assets/0x023eBB622F461a15A344Edc45e6a5eabb5A68e03/info.json b/blockchains/ethereum/assets/0x023eBB622F461a15A344Edc45e6a5eabb5A68e03/info.json new file mode 100644 index 00000000..3c7ed1da --- /dev/null +++ b/blockchains/ethereum/assets/0x023eBB622F461a15A344Edc45e6a5eabb5A68e03/info.json @@ -0,0 +1,11 @@ +{ + "name": "DYX Network", + "website": "https://dyx.network", + "description": "DYX is a hyper deflationary staking meme token that burns 10% on every transaction and rewards stakers for their long term holdings.", + "explorer": "https://etherscan.io/token/0x023eBB622F461a15A344Edc45e6a5eabb5A68e03", + "type": "ERC20", + "symbol": "DYX", + "decimals": 18, + "status": "active", + "id": "0x023eBB622F461a15A344Edc45e6a5eabb5A68e03" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x023eBB622F461a15A344Edc45e6a5eabb5A68e03/logo.png b/blockchains/ethereum/assets/0x023eBB622F461a15A344Edc45e6a5eabb5A68e03/logo.png new file mode 100644 index 00000000..42da52e5 Binary files /dev/null and b/blockchains/ethereum/assets/0x023eBB622F461a15A344Edc45e6a5eabb5A68e03/logo.png differ diff --git a/blockchains/ethereum/assets/0x02585E4A14dA274D02dF09b222D4606B10a4E940/info.json b/blockchains/ethereum/assets/0x02585E4A14dA274D02dF09b222D4606B10a4E940/info.json new file mode 100644 index 00000000..2ac7a311 --- /dev/null +++ b/blockchains/ethereum/assets/0x02585E4A14dA274D02dF09b222D4606B10a4E940/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hero Origen Token", + "symbol": "HERO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x02585E4A14dA274D02dF09b222D4606B10a4E940", + "status": "abandoned", + "id": "0x02585E4A14dA274D02dF09b222D4606B10a4E940" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x02585E4A14dA274D02dF09b222D4606B10a4E940/logo.png b/blockchains/ethereum/assets/0x02585E4A14dA274D02dF09b222D4606B10a4E940/logo.png new file mode 100644 index 00000000..8dc8fa09 Binary files /dev/null and b/blockchains/ethereum/assets/0x02585E4A14dA274D02dF09b222D4606B10a4E940/logo.png differ diff --git a/blockchains/ethereum/assets/0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a/info.json b/blockchains/ethereum/assets/0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a/info.json new file mode 100644 index 00000000..64ede0a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a/info.json @@ -0,0 +1,34 @@ +{ + "name": "Orion Protocol", + "website": "https://orionprotocol.io/", + "description": "Built on the most advanced liquidity aggregator ever developed, Orion Protocol solves some of the largest issues in DeFi by aggregating the liquidity of the entire crypto market into one decentralized platform. This underpins each solution built on the protocol, including revolutionary trading solution Orion Terminal - aggregating the liquidity of the entire crypto market on one decentralized platform. The roadmap also includes a price oracle and a high-margin DEX.", + "explorer": "https://etherscan.io/token/0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a", + "research": "https://research.binance.com/en/projects/orion-protocol", + "type": "ERC20", + "symbol": "ORN", + "decimals": 8, + "status": "active", + "id": "0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a", + "links": [ + { + "name": "github", + "url": "https://github.com/orionprotocol" + }, + { + "name": "x", + "url": "https://x.com/orion_protocol" + }, + { + "name": "telegram", + "url": "https://t.me/orionprotocol" + }, + { + "name": "medium", + "url": "https://medium.com/orion-protocol" + }, + { + "name": "whitepaper", + "url": "https://www.orionprotocol.io/hubfs/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a/logo.png b/blockchains/ethereum/assets/0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a/logo.png new file mode 100644 index 00000000..39e7c4b3 Binary files /dev/null and b/blockchains/ethereum/assets/0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a/logo.png differ diff --git a/blockchains/ethereum/assets/0x025daf950C6e814dEe4c96e13c98D3196D22E60C/info.json b/blockchains/ethereum/assets/0x025daf950C6e814dEe4c96e13c98D3196D22E60C/info.json new file mode 100644 index 00000000..e0c7b3b1 --- /dev/null +++ b/blockchains/ethereum/assets/0x025daf950C6e814dEe4c96e13c98D3196D22E60C/info.json @@ -0,0 +1,11 @@ +{ + "name": "RICH Token", + "symbol": "RICH", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://richtoken.co.in/", + "explorer": "https://etherscan.io/token/0x025daf950C6e814dEe4c96e13c98D3196D22E60C", + "status": "spam", + "id": "0x025daf950C6e814dEe4c96e13c98D3196D22E60C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x025daf950C6e814dEe4c96e13c98D3196D22E60C/logo.png b/blockchains/ethereum/assets/0x025daf950C6e814dEe4c96e13c98D3196D22E60C/logo.png new file mode 100644 index 00000000..a04c129a Binary files /dev/null and b/blockchains/ethereum/assets/0x025daf950C6e814dEe4c96e13c98D3196D22E60C/logo.png differ diff --git a/blockchains/ethereum/assets/0x02639FC688DF086f18Ce5E7f0F014bc74DE0229b/info.json b/blockchains/ethereum/assets/0x02639FC688DF086f18Ce5E7f0F014bc74DE0229b/info.json new file mode 100644 index 00000000..7eed1c54 --- /dev/null +++ b/blockchains/ethereum/assets/0x02639FC688DF086f18Ce5E7f0F014bc74DE0229b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Golden Berry", + "symbol": "GBC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x02639FC688DF086f18Ce5E7f0F014bc74DE0229b", + "status": "abandoned", + "id": "0x02639FC688DF086f18Ce5E7f0F014bc74DE0229b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x02639FC688DF086f18Ce5E7f0F014bc74DE0229b/logo.png b/blockchains/ethereum/assets/0x02639FC688DF086f18Ce5E7f0F014bc74DE0229b/logo.png new file mode 100644 index 00000000..42098708 Binary files /dev/null and b/blockchains/ethereum/assets/0x02639FC688DF086f18Ce5E7f0F014bc74DE0229b/logo.png differ diff --git a/blockchains/ethereum/assets/0x026B2693a7C724E8eD0122f39aB6fBC4d5a4Fb22/info.json b/blockchains/ethereum/assets/0x026B2693a7C724E8eD0122f39aB6fBC4d5a4Fb22/info.json new file mode 100644 index 00000000..ed083897 --- /dev/null +++ b/blockchains/ethereum/assets/0x026B2693a7C724E8eD0122f39aB6fBC4d5a4Fb22/info.json @@ -0,0 +1,11 @@ +{ + "name": "TUR", + "symbol": "TUR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x026B2693a7C724E8eD0122f39aB6fBC4d5a4Fb22", + "status": "abandoned", + "id": "0x026B2693a7C724E8eD0122f39aB6fBC4d5a4Fb22" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x026B2693a7C724E8eD0122f39aB6fBC4d5a4Fb22/logo.png b/blockchains/ethereum/assets/0x026B2693a7C724E8eD0122f39aB6fBC4d5a4Fb22/logo.png new file mode 100644 index 00000000..7f51ac51 Binary files /dev/null and b/blockchains/ethereum/assets/0x026B2693a7C724E8eD0122f39aB6fBC4d5a4Fb22/logo.png differ diff --git a/blockchains/ethereum/assets/0x026e62dDEd1a6aD07D93D39f96b9eabd59665e0d/info.json b/blockchains/ethereum/assets/0x026e62dDEd1a6aD07D93D39f96b9eabd59665e0d/info.json new file mode 100644 index 00000000..ca00bc80 --- /dev/null +++ b/blockchains/ethereum/assets/0x026e62dDEd1a6aD07D93D39f96b9eabd59665e0d/info.json @@ -0,0 +1,11 @@ +{ + "name": "BirdCoin", + "symbol": "BIRD", + "type": "ERC20", + "decimals": 18, + "description": "Birdchain is a decentralized instant messaging application. It will give its users opportunity to earn extra income by selling their unused SMS messages, watching promotional videos, and selling their data.", + "website": "https://www.birdchain.io/", + "explorer": "https://etherscan.io/token/0x026e62dDEd1a6aD07D93D39f96b9eabd59665e0d", + "status": "active", + "id": "0x026e62dDEd1a6aD07D93D39f96b9eabd59665e0d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x026e62dDEd1a6aD07D93D39f96b9eabd59665e0d/logo.png b/blockchains/ethereum/assets/0x026e62dDEd1a6aD07D93D39f96b9eabd59665e0d/logo.png new file mode 100644 index 00000000..c9c13594 Binary files /dev/null and b/blockchains/ethereum/assets/0x026e62dDEd1a6aD07D93D39f96b9eabd59665e0d/logo.png differ diff --git a/blockchains/ethereum/assets/0x026f8D523D49F36db657e012C96488465d8d88f9/info.json b/blockchains/ethereum/assets/0x026f8D523D49F36db657e012C96488465d8d88f9/info.json new file mode 100644 index 00000000..f0a6c43d --- /dev/null +++ b/blockchains/ethereum/assets/0x026f8D523D49F36db657e012C96488465d8d88f9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Odyssey", + "symbol": "ODY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x026f8D523D49F36db657e012C96488465d8d88f9", + "status": "abandoned", + "id": "0x026f8D523D49F36db657e012C96488465d8d88f9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x026f8D523D49F36db657e012C96488465d8d88f9/logo.png b/blockchains/ethereum/assets/0x026f8D523D49F36db657e012C96488465d8d88f9/logo.png new file mode 100644 index 00000000..ad01329e Binary files /dev/null and b/blockchains/ethereum/assets/0x026f8D523D49F36db657e012C96488465d8d88f9/logo.png differ diff --git a/blockchains/ethereum/assets/0x028171bCA77440897B824Ca71D1c56caC55b68A3/info.json b/blockchains/ethereum/assets/0x028171bCA77440897B824Ca71D1c56caC55b68A3/info.json new file mode 100644 index 00000000..916e57ed --- /dev/null +++ b/blockchains/ethereum/assets/0x028171bCA77440897B824Ca71D1c56caC55b68A3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave DAI", + "symbol": "aDAI", + "type": "ERC20", + "decimals": 18, + "description": "Aave DAI is an interest bearing token pegged 1:1 to the underlying DAI deposited in Aave. aDAI accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x028171bCA77440897B824Ca71D1c56caC55b68A3", + "status": "active", + "id": "0x028171bCA77440897B824Ca71D1c56caC55b68A3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x028171bCA77440897B824Ca71D1c56caC55b68A3/logo.png b/blockchains/ethereum/assets/0x028171bCA77440897B824Ca71D1c56caC55b68A3/logo.png new file mode 100644 index 00000000..8fc2c80b Binary files /dev/null and b/blockchains/ethereum/assets/0x028171bCA77440897B824Ca71D1c56caC55b68A3/logo.png differ diff --git a/blockchains/ethereum/assets/0x028CE5EA3298a50c0D8a27b937b1F48Cf0d68b56/info.json b/blockchains/ethereum/assets/0x028CE5EA3298a50c0D8a27b937b1F48Cf0d68b56/info.json new file mode 100644 index 00000000..043c033c --- /dev/null +++ b/blockchains/ethereum/assets/0x028CE5EA3298a50c0D8a27b937b1F48Cf0d68b56/info.json @@ -0,0 +1,11 @@ +{ + "name": "OnTime", + "symbol": "OTO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.ontimefoundation.org/", + "explorer": "https://etherscan.io/token/0x028CE5EA3298a50c0D8a27b937b1F48Cf0d68b56", + "status": "abandoned", + "id": "0x028CE5EA3298a50c0D8a27b937b1F48Cf0d68b56" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x028CE5EA3298a50c0D8a27b937b1F48Cf0d68b56/logo.png b/blockchains/ethereum/assets/0x028CE5EA3298a50c0D8a27b937b1F48Cf0d68b56/logo.png new file mode 100644 index 00000000..37e83383 Binary files /dev/null and b/blockchains/ethereum/assets/0x028CE5EA3298a50c0D8a27b937b1F48Cf0d68b56/logo.png differ diff --git a/blockchains/ethereum/assets/0x0290B327A8583bD6FA63c130B732a808864e55Fc/info.json b/blockchains/ethereum/assets/0x0290B327A8583bD6FA63c130B732a808864e55Fc/info.json new file mode 100644 index 00000000..75a56c83 --- /dev/null +++ b/blockchains/ethereum/assets/0x0290B327A8583bD6FA63c130B732a808864e55Fc/info.json @@ -0,0 +1,11 @@ +{ + "name": "MIDAS", + "website": "https://midas-defi.finance", + "description": "Every time you stake and unstake tokens, the contract will automatically harvest MDS rewards for you", + "explorer": "https://etherscan.io/token/0x0290B327A8583bD6FA63c130B732a808864e55Fc", + "type": "ERC20", + "symbol": "MDS", + "decimals": 18, + "status": "active", + "id": "0x0290B327A8583bD6FA63c130B732a808864e55Fc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0290B327A8583bD6FA63c130B732a808864e55Fc/logo.png b/blockchains/ethereum/assets/0x0290B327A8583bD6FA63c130B732a808864e55Fc/logo.png new file mode 100644 index 00000000..6ddc7bb2 Binary files /dev/null and b/blockchains/ethereum/assets/0x0290B327A8583bD6FA63c130B732a808864e55Fc/logo.png differ diff --git a/blockchains/ethereum/assets/0x029606e5ec44caD1346d6a1273a53b971fa93AD6/info.json b/blockchains/ethereum/assets/0x029606e5ec44caD1346d6a1273a53b971fa93AD6/info.json new file mode 100644 index 00000000..3696ed08 --- /dev/null +++ b/blockchains/ethereum/assets/0x029606e5ec44caD1346d6a1273a53b971fa93AD6/info.json @@ -0,0 +1,11 @@ +{ + "name": "empowr orange", + "symbol": "EMPRO", + "type": "ERC20", + "decimals": 18, + "description": "empowr is a democratic social economy. It is uniquely enabling the sharing of everything ", + "website": "http://www.empowr.com/", + "explorer": "https://etherscan.io/token/0x029606e5ec44caD1346d6a1273a53b971fa93AD6", + "status": "active", + "id": "0x029606e5ec44caD1346d6a1273a53b971fa93AD6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x029606e5ec44caD1346d6a1273a53b971fa93AD6/logo.png b/blockchains/ethereum/assets/0x029606e5ec44caD1346d6a1273a53b971fa93AD6/logo.png new file mode 100644 index 00000000..45fcf16f Binary files /dev/null and b/blockchains/ethereum/assets/0x029606e5ec44caD1346d6a1273a53b971fa93AD6/logo.png differ diff --git a/blockchains/ethereum/assets/0x02C12964e74A0EbB4EcFA13C3717797DeDD9EF6F/info.json b/blockchains/ethereum/assets/0x02C12964e74A0EbB4EcFA13C3717797DeDD9EF6F/info.json new file mode 100644 index 00000000..0bc8f66c --- /dev/null +++ b/blockchains/ethereum/assets/0x02C12964e74A0EbB4EcFA13C3717797DeDD9EF6F/info.json @@ -0,0 +1,11 @@ +{ + "name": "EXInteractive", + "symbol": "EXI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x02C12964e74A0EbB4EcFA13C3717797DeDD9EF6F", + "status": "abandoned", + "id": "0x02C12964e74A0EbB4EcFA13C3717797DeDD9EF6F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x02C12964e74A0EbB4EcFA13C3717797DeDD9EF6F/logo.png b/blockchains/ethereum/assets/0x02C12964e74A0EbB4EcFA13C3717797DeDD9EF6F/logo.png new file mode 100644 index 00000000..f04c6da3 Binary files /dev/null and b/blockchains/ethereum/assets/0x02C12964e74A0EbB4EcFA13C3717797DeDD9EF6F/logo.png differ diff --git a/blockchains/ethereum/assets/0x02C4C78C462E32cCa4a90Bc499bF411Fb7bc6aFB/info.json b/blockchains/ethereum/assets/0x02C4C78C462E32cCa4a90Bc499bF411Fb7bc6aFB/info.json new file mode 100644 index 00000000..61ccbbd4 --- /dev/null +++ b/blockchains/ethereum/assets/0x02C4C78C462E32cCa4a90Bc499bF411Fb7bc6aFB/info.json @@ -0,0 +1,11 @@ +{ + "name": "InvestDigital Token", + "symbol": "IDT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x02C4C78C462E32cCa4a90Bc499bF411Fb7bc6aFB", + "status": "active", + "id": "0x02C4C78C462E32cCa4a90Bc499bF411Fb7bc6aFB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x02C4C78C462E32cCa4a90Bc499bF411Fb7bc6aFB/logo.png b/blockchains/ethereum/assets/0x02C4C78C462E32cCa4a90Bc499bF411Fb7bc6aFB/logo.png new file mode 100644 index 00000000..449e3bea Binary files /dev/null and b/blockchains/ethereum/assets/0x02C4C78C462E32cCa4a90Bc499bF411Fb7bc6aFB/logo.png differ diff --git a/blockchains/ethereum/assets/0x02E2C716230C6750208F7Cb1Af34049472C91527/info.json b/blockchains/ethereum/assets/0x02E2C716230C6750208F7Cb1Af34049472C91527/info.json new file mode 100644 index 00000000..a4b3edce --- /dev/null +++ b/blockchains/ethereum/assets/0x02E2C716230C6750208F7Cb1Af34049472C91527/info.json @@ -0,0 +1,11 @@ +{ + "name": "YP", + "symbol": "YP", + "type": "ERC20", + "decimals": 2, + "description": "The blockchain technology of Yep Chain touches multiple social levels and can solve problems such as logistics tracking and verification, vehicle life tracking and so on, as well as help build a smart city.", + "website": "http://www.yepchain.io/", + "explorer": "https://etherscan.io/token/0x02E2C716230C6750208F7Cb1Af34049472C91527", + "status": "abandoned", + "id": "0x02E2C716230C6750208F7Cb1Af34049472C91527" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x02E2C716230C6750208F7Cb1Af34049472C91527/logo.png b/blockchains/ethereum/assets/0x02E2C716230C6750208F7Cb1Af34049472C91527/logo.png new file mode 100755 index 00000000..b5aa9dcf Binary files /dev/null and b/blockchains/ethereum/assets/0x02E2C716230C6750208F7Cb1Af34049472C91527/logo.png differ diff --git a/blockchains/ethereum/assets/0x02Eb3dA777EB3fF40914Fd3D5C249123cc2Df04A/info.json b/blockchains/ethereum/assets/0x02Eb3dA777EB3fF40914Fd3D5C249123cc2Df04A/info.json new file mode 100644 index 00000000..01d6bc22 --- /dev/null +++ b/blockchains/ethereum/assets/0x02Eb3dA777EB3fF40914Fd3D5C249123cc2Df04A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Edu Stars Coins", + "symbol": "EDSTR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x02Eb3dA777EB3fF40914Fd3D5C249123cc2Df04A", + "status": "abandoned", + "id": "0x02Eb3dA777EB3fF40914Fd3D5C249123cc2Df04A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x02Eb3dA777EB3fF40914Fd3D5C249123cc2Df04A/logo.png b/blockchains/ethereum/assets/0x02Eb3dA777EB3fF40914Fd3D5C249123cc2Df04A/logo.png new file mode 100755 index 00000000..2cf2e56c Binary files /dev/null and b/blockchains/ethereum/assets/0x02Eb3dA777EB3fF40914Fd3D5C249123cc2Df04A/logo.png differ diff --git a/blockchains/ethereum/assets/0x02F2D4a04E6E01aCE88bD2Cd632875543b2eF577/info.json b/blockchains/ethereum/assets/0x02F2D4a04E6E01aCE88bD2Cd632875543b2eF577/info.json new file mode 100644 index 00000000..649cf2bd --- /dev/null +++ b/blockchains/ethereum/assets/0x02F2D4a04E6E01aCE88bD2Cd632875543b2eF577/info.json @@ -0,0 +1,11 @@ +{ + "name": "PKG Token", + "symbol": "PKG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://pkgtoken.io/", + "explorer": "https://etherscan.io/token/0x02F2D4a04E6E01aCE88bD2Cd632875543b2eF577", + "status": "abandoned", + "id": "0x02F2D4a04E6E01aCE88bD2Cd632875543b2eF577" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x02F2D4a04E6E01aCE88bD2Cd632875543b2eF577/logo.png b/blockchains/ethereum/assets/0x02F2D4a04E6E01aCE88bD2Cd632875543b2eF577/logo.png new file mode 100644 index 00000000..aefe11fd Binary files /dev/null and b/blockchains/ethereum/assets/0x02F2D4a04E6E01aCE88bD2Cd632875543b2eF577/logo.png differ diff --git a/blockchains/ethereum/assets/0x02F61Fd266DA6E8B102D4121f5CE7b992640CF98/info.json b/blockchains/ethereum/assets/0x02F61Fd266DA6E8B102D4121f5CE7b992640CF98/info.json new file mode 100644 index 00000000..394aa1f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x02F61Fd266DA6E8B102D4121f5CE7b992640CF98/info.json @@ -0,0 +1,11 @@ +{ + "name": "LikeCoin", + "symbol": "LIKE", + "type": "ERC20", + "decimals": 18, + "description": "LikeCoin is a protocol for content attribution, monetization and distribution. LikeCoin chain is a Bonded Proof of Stake blockchain developed on top of Cosmos SDK. As a permissionless protocol, 800+ media chose to adopt LikeCoin with her WordPress plugin.", + "website": "https://like.co/", + "explorer": "https://etherscan.io/token/0x02F61Fd266DA6E8B102D4121f5CE7b992640CF98", + "status": "active", + "id": "0x02F61Fd266DA6E8B102D4121f5CE7b992640CF98" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x02F61Fd266DA6E8B102D4121f5CE7b992640CF98/logo.png b/blockchains/ethereum/assets/0x02F61Fd266DA6E8B102D4121f5CE7b992640CF98/logo.png new file mode 100755 index 00000000..1c9a5ff9 Binary files /dev/null and b/blockchains/ethereum/assets/0x02F61Fd266DA6E8B102D4121f5CE7b992640CF98/logo.png differ diff --git a/blockchains/ethereum/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json b/blockchains/ethereum/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json new file mode 100644 index 00000000..21d40f8d --- /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 00000000..af7129b1 Binary files /dev/null and b/blockchains/ethereum/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/logo.png differ diff --git a/blockchains/ethereum/assets/0x02b1669bC9EE893edAFf3cADfD326A294d643f99/info.json b/blockchains/ethereum/assets/0x02b1669bC9EE893edAFf3cADfD326A294d643f99/info.json new file mode 100644 index 00000000..0863360a --- /dev/null +++ b/blockchains/ethereum/assets/0x02b1669bC9EE893edAFf3cADfD326A294d643f99/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wolfs Group AG", + "symbol": "WLF", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://wolfs.group/", + "explorer": "https://etherscan.io/token/0x02b1669bC9EE893edAFf3cADfD326A294d643f99", + "status": "abandoned", + "id": "0x02b1669bC9EE893edAFf3cADfD326A294d643f99" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x02b1669bC9EE893edAFf3cADfD326A294d643f99/logo.png b/blockchains/ethereum/assets/0x02b1669bC9EE893edAFf3cADfD326A294d643f99/logo.png new file mode 100644 index 00000000..8a9a62ff Binary files /dev/null and b/blockchains/ethereum/assets/0x02b1669bC9EE893edAFf3cADfD326A294d643f99/logo.png differ diff --git a/blockchains/ethereum/assets/0x02e3083a51E8632E571fBd6A62aC396C10c653Ba/info.json b/blockchains/ethereum/assets/0x02e3083a51E8632E571fBd6A62aC396C10c653Ba/info.json new file mode 100644 index 00000000..2fa0bc8a --- /dev/null +++ b/blockchains/ethereum/assets/0x02e3083a51E8632E571fBd6A62aC396C10c653Ba/info.json @@ -0,0 +1,11 @@ +{ + "name": "EplusCoin", + "symbol": "EPLUS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://www.ep-coin.com/", + "explorer": "https://etherscan.io/token/0x02e3083a51E8632E571fBd6A62aC396C10c653Ba", + "status": "abandoned", + "id": "0x02e3083a51E8632E571fBd6A62aC396C10c653Ba" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x02e3083a51E8632E571fBd6A62aC396C10c653Ba/logo.png b/blockchains/ethereum/assets/0x02e3083a51E8632E571fBd6A62aC396C10c653Ba/logo.png new file mode 100755 index 00000000..7c086bf4 Binary files /dev/null and b/blockchains/ethereum/assets/0x02e3083a51E8632E571fBd6A62aC396C10c653Ba/logo.png differ diff --git a/blockchains/ethereum/assets/0x02eC0C9e6d3C08B8fB12feC51CCBa048AFbC36A6/info.json b/blockchains/ethereum/assets/0x02eC0C9e6d3C08B8fB12feC51CCBa048AFbC36A6/info.json new file mode 100644 index 00000000..5da7b5ce --- /dev/null +++ b/blockchains/ethereum/assets/0x02eC0C9e6d3C08B8fB12feC51CCBa048AFbC36A6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stable Set", + "type": "ERC20", + "symbol": "STBL", + "decimals": 18, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0x02ec0c9e6d3c08b8fb12fec51ccba048afbc36a6", + "status": "active", + "id": "0x02eC0C9e6d3C08B8fB12feC51CCBa048AFbC36A6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x02eC0C9e6d3C08B8fB12feC51CCBa048AFbC36A6/logo.png b/blockchains/ethereum/assets/0x02eC0C9e6d3C08B8fB12feC51CCBa048AFbC36A6/logo.png new file mode 100755 index 00000000..3fe9f406 Binary files /dev/null and b/blockchains/ethereum/assets/0x02eC0C9e6d3C08B8fB12feC51CCBa048AFbC36A6/logo.png differ diff --git a/blockchains/ethereum/assets/0x02f02e0cA8a521EF73daA9C45353b9fBEFc5Ee10/info.json b/blockchains/ethereum/assets/0x02f02e0cA8a521EF73daA9C45353b9fBEFc5Ee10/info.json new file mode 100644 index 00000000..a6965e38 --- /dev/null +++ b/blockchains/ethereum/assets/0x02f02e0cA8a521EF73daA9C45353b9fBEFc5Ee10/info.json @@ -0,0 +1,11 @@ +{ + "name": "RenrenBit Token", + "symbol": "RRB", + "type": "ERC20", + "decimals": 8, + "description": "RenrenBit is a safe, transparent lending platform. Borrow or lend money with crypto as collateral.", + "website": "https://renrenbit.com/", + "explorer": "https://etherscan.io/token/0x02f02e0cA8a521EF73daA9C45353b9fBEFc5Ee10", + "status": "active", + "id": "0x02f02e0cA8a521EF73daA9C45353b9fBEFc5Ee10" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x02f02e0cA8a521EF73daA9C45353b9fBEFc5Ee10/logo.png b/blockchains/ethereum/assets/0x02f02e0cA8a521EF73daA9C45353b9fBEFc5Ee10/logo.png new file mode 100755 index 00000000..099e99a8 Binary files /dev/null and b/blockchains/ethereum/assets/0x02f02e0cA8a521EF73daA9C45353b9fBEFc5Ee10/logo.png differ diff --git a/blockchains/ethereum/assets/0x02f28544C89b2D704Eb0d1F9f4fc60d688ad8959/info.json b/blockchains/ethereum/assets/0x02f28544C89b2D704Eb0d1F9f4fc60d688ad8959/info.json new file mode 100644 index 00000000..d36f3fdf --- /dev/null +++ b/blockchains/ethereum/assets/0x02f28544C89b2D704Eb0d1F9f4fc60d688ad8959/info.json @@ -0,0 +1,11 @@ +{ + "name": "Smart Pharma Token", + "symbol": "SMPT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x02f28544C89b2D704Eb0d1F9f4fc60d688ad8959", + "status": "abandoned", + "id": "0x02f28544C89b2D704Eb0d1F9f4fc60d688ad8959" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x02f28544C89b2D704Eb0d1F9f4fc60d688ad8959/logo.png b/blockchains/ethereum/assets/0x02f28544C89b2D704Eb0d1F9f4fc60d688ad8959/logo.png new file mode 100644 index 00000000..626d4211 Binary files /dev/null and b/blockchains/ethereum/assets/0x02f28544C89b2D704Eb0d1F9f4fc60d688ad8959/logo.png differ diff --git a/blockchains/ethereum/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/info.json b/blockchains/ethereum/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/info.json new file mode 100644 index 00000000..973e0857 --- /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 00000000..156b8acc Binary files /dev/null and b/blockchains/ethereum/assets/0x02f92800F57BCD74066F5709F1Daa1A4302Df875/logo.png differ diff --git a/blockchains/ethereum/assets/0x03042482d64577A7bdb282260e2eA4c8a89C064B/info.json b/blockchains/ethereum/assets/0x03042482d64577A7bdb282260e2eA4c8a89C064B/info.json new file mode 100644 index 00000000..c85977e0 --- /dev/null +++ b/blockchains/ethereum/assets/0x03042482d64577A7bdb282260e2eA4c8a89C064B/info.json @@ -0,0 +1,17 @@ +{ + "name": "Centaur Token", + "website": "https://cntr.finance", + "description": "The bridge between decentralized and traditional finance.", + "explorer": "https://etherscan.io/token/0x03042482d64577A7bdb282260e2eA4c8a89C064B", + "type": "ERC20", + "symbol": "CNTR", + "decimals": 18, + "status": "active", + "id": "0x03042482d64577A7bdb282260e2eA4c8a89C064B", + "links": [ + { + "name": "whitepaper", + "url": "https://cntr.finance/docs/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03042482d64577A7bdb282260e2eA4c8a89C064B/logo.png b/blockchains/ethereum/assets/0x03042482d64577A7bdb282260e2eA4c8a89C064B/logo.png new file mode 100644 index 00000000..beb096fb Binary files /dev/null and b/blockchains/ethereum/assets/0x03042482d64577A7bdb282260e2eA4c8a89C064B/logo.png differ diff --git a/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/info.json b/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/info.json new file mode 100644 index 00000000..59b510b8 --- /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 00000000..6a1e743f Binary files /dev/null and b/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/logo.png differ diff --git a/blockchains/ethereum/assets/0x030bA81f1c18d280636F32af80b9AAd02Cf0854e/info.json b/blockchains/ethereum/assets/0x030bA81f1c18d280636F32af80b9AAd02Cf0854e/info.json new file mode 100644 index 00000000..941b82b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x030bA81f1c18d280636F32af80b9AAd02Cf0854e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave WETH", + "symbol": "aWETH", + "type": "ERC20", + "decimals": 18, + "description": "Aave WETH is an interest bearing token pegged 1:1 to the underlying WETH deposited in Aave. aWETH accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x030bA81f1c18d280636F32af80b9AAd02Cf0854e", + "status": "active", + "id": "0x030bA81f1c18d280636F32af80b9AAd02Cf0854e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x030bA81f1c18d280636F32af80b9AAd02Cf0854e/logo.png b/blockchains/ethereum/assets/0x030bA81f1c18d280636F32af80b9AAd02Cf0854e/logo.png new file mode 100644 index 00000000..090bf3b5 Binary files /dev/null and b/blockchains/ethereum/assets/0x030bA81f1c18d280636F32af80b9AAd02Cf0854e/logo.png differ diff --git a/blockchains/ethereum/assets/0x030c32c1190CBF077E5eE67ED19572c558e43AE4/info.json b/blockchains/ethereum/assets/0x030c32c1190CBF077E5eE67ED19572c558e43AE4/info.json new file mode 100644 index 00000000..3371e420 --- /dev/null +++ b/blockchains/ethereum/assets/0x030c32c1190CBF077E5eE67ED19572c558e43AE4/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitBonus", + "symbol": "BONUS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x030c32c1190CBF077E5eE67ED19572c558e43AE4", + "status": "abandoned", + "id": "0x030c32c1190CBF077E5eE67ED19572c558e43AE4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x030c32c1190CBF077E5eE67ED19572c558e43AE4/logo.png b/blockchains/ethereum/assets/0x030c32c1190CBF077E5eE67ED19572c558e43AE4/logo.png new file mode 100644 index 00000000..adf84416 Binary files /dev/null and b/blockchains/ethereum/assets/0x030c32c1190CBF077E5eE67ED19572c558e43AE4/logo.png differ diff --git a/blockchains/ethereum/assets/0x031228f403DbFdE1DD47310BDc49Bb788F53Ecd9/info.json b/blockchains/ethereum/assets/0x031228f403DbFdE1DD47310BDc49Bb788F53Ecd9/info.json new file mode 100644 index 00000000..f336ea37 --- /dev/null +++ b/blockchains/ethereum/assets/0x031228f403DbFdE1DD47310BDc49Bb788F53Ecd9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Giving Token", + "symbol": "GIVING", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x031228f403DbFdE1DD47310BDc49Bb788F53Ecd9", + "status": "abandoned", + "id": "0x031228f403DbFdE1DD47310BDc49Bb788F53Ecd9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x031228f403DbFdE1DD47310BDc49Bb788F53Ecd9/logo.png b/blockchains/ethereum/assets/0x031228f403DbFdE1DD47310BDc49Bb788F53Ecd9/logo.png new file mode 100644 index 00000000..70ec26f1 Binary files /dev/null and b/blockchains/ethereum/assets/0x031228f403DbFdE1DD47310BDc49Bb788F53Ecd9/logo.png differ diff --git a/blockchains/ethereum/assets/0x0316EB71485b0Ab14103307bf65a021042c6d380/info.json b/blockchains/ethereum/assets/0x0316EB71485b0Ab14103307bf65a021042c6d380/info.json new file mode 100644 index 00000000..4aac182b --- /dev/null +++ b/blockchains/ethereum/assets/0x0316EB71485b0Ab14103307bf65a021042c6d380/info.json @@ -0,0 +1,11 @@ +{ + "name": "Huobi BTC", + "website": "https://hbtc.finance", + "description": "HBTC is a Bitcoin ERC20 token on Ethereum blockchain launched by Huobi Global, ensuring that users can use HBTC and BTC for 1:1 exchange at Huobi Global at any time.", + "explorer": "https://etherscan.io/token/0x0316EB71485b0Ab14103307bf65a021042c6d380", + "type": "ERC20", + "symbol": "HBTC", + "decimals": 18, + "status": "active", + "id": "0x0316EB71485b0Ab14103307bf65a021042c6d380" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0316EB71485b0Ab14103307bf65a021042c6d380/logo.png b/blockchains/ethereum/assets/0x0316EB71485b0Ab14103307bf65a021042c6d380/logo.png new file mode 100644 index 00000000..10c1ea3c Binary files /dev/null and b/blockchains/ethereum/assets/0x0316EB71485b0Ab14103307bf65a021042c6d380/logo.png differ diff --git a/blockchains/ethereum/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json b/blockchains/ethereum/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json new file mode 100644 index 00000000..528ee38b --- /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 00000000..70683dfd 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 00000000..cc1deea6 --- /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 00000000..36d88f3c 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 new file mode 100644 index 00000000..809968d9 --- /dev/null +++ b/blockchains/ethereum/assets/0x0327112423F3A68efdF1fcF402F6c5CB9f7C33fd/info.json @@ -0,0 +1,17 @@ +{ + "name": "PieDAO BTC++", + "website": "https://piedao.org", + "description": "Diversified Bitcoin exposure on Ethereum", + "explorer": "https://etherscan.io/token/0x0327112423F3A68efdF1fcF402F6c5CB9f7C33fd", + "type": "ERC20", + "symbol": "BTC++", + "decimals": 18, + "status": "active", + "id": "0x0327112423F3A68efdF1fcF402F6c5CB9f7C33fd", + "links": [ + { + "name": "x", + "url": "https://x.com/PieDAO_DeFi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0327112423F3A68efdF1fcF402F6c5CB9f7C33fd/logo.png b/blockchains/ethereum/assets/0x0327112423F3A68efdF1fcF402F6c5CB9f7C33fd/logo.png new file mode 100644 index 00000000..d6578af2 Binary files /dev/null and b/blockchains/ethereum/assets/0x0327112423F3A68efdF1fcF402F6c5CB9f7C33fd/logo.png differ diff --git a/blockchains/ethereum/assets/0x03282f2D7834a97369Cad58f888aDa19EeC46ab6/info.json b/blockchains/ethereum/assets/0x03282f2D7834a97369Cad58f888aDa19EeC46ab6/info.json new file mode 100644 index 00000000..a8fbfc5d --- /dev/null +++ b/blockchains/ethereum/assets/0x03282f2D7834a97369Cad58f888aDa19EeC46ab6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Globex", + "symbol": "GEX", + "type": "ERC20", + "decimals": 8, + "description": "A real-time, and non-custodial exchange built on 0x protocol technology.", + "website": "https://globex.pro", + "explorer": "https://etherscan.io/token/0x03282f2D7834a97369Cad58f888aDa19EeC46ab6", + "status": "active", + "id": "0x03282f2D7834a97369Cad58f888aDa19EeC46ab6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03282f2D7834a97369Cad58f888aDa19EeC46ab6/logo.png b/blockchains/ethereum/assets/0x03282f2D7834a97369Cad58f888aDa19EeC46ab6/logo.png new file mode 100644 index 00000000..9dc77aa3 Binary files /dev/null and b/blockchains/ethereum/assets/0x03282f2D7834a97369Cad58f888aDa19EeC46ab6/logo.png differ diff --git a/blockchains/ethereum/assets/0x032aE2bd448904E0d468167DC25B4C35d3d72a36/info.json b/blockchains/ethereum/assets/0x032aE2bd448904E0d468167DC25B4C35d3d72a36/info.json new file mode 100644 index 00000000..6636ec15 --- /dev/null +++ b/blockchains/ethereum/assets/0x032aE2bd448904E0d468167DC25B4C35d3d72a36/info.json @@ -0,0 +1,11 @@ +{ + "name": "fami.finance", + "symbol": "FAMI", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x032aE2bd448904E0d468167DC25B4C35d3d72a36", + "status": "abandoned", + "id": "0x032aE2bd448904E0d468167DC25B4C35d3d72a36" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x032aE2bd448904E0d468167DC25B4C35d3d72a36/logo.png b/blockchains/ethereum/assets/0x032aE2bd448904E0d468167DC25B4C35d3d72a36/logo.png new file mode 100644 index 00000000..62091c2d Binary files /dev/null and b/blockchains/ethereum/assets/0x032aE2bd448904E0d468167DC25B4C35d3d72a36/logo.png differ diff --git a/blockchains/ethereum/assets/0x032deC3372F25C41EA8054B4987a7c4832CDB338/info.json b/blockchains/ethereum/assets/0x032deC3372F25C41EA8054B4987a7c4832CDB338/info.json new file mode 100644 index 00000000..6b7c05b8 --- /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 00000000..79a10787 Binary files /dev/null and b/blockchains/ethereum/assets/0x032deC3372F25C41EA8054B4987a7c4832CDB338/logo.png differ diff --git a/blockchains/ethereum/assets/0x033030FEeBd93E3178487c35A9c8cA80874353C9/info.json b/blockchains/ethereum/assets/0x033030FEeBd93E3178487c35A9c8cA80874353C9/info.json new file mode 100644 index 00000000..0ac768ac --- /dev/null +++ b/blockchains/ethereum/assets/0x033030FEeBd93E3178487c35A9c8cA80874353C9/info.json @@ -0,0 +1,11 @@ +{ + "name": "BDT Token", + "symbol": "BDT", + "type": "ERC20", + "decimals": 18, + "description": "Bitdepositary, BDT Token presents the first ICO crowdfunding platform to provide secure and light-weight digital wallet to the platform users allowing them to trade cryptocurrencies or exchange for Fiat currencies.", + "website": "https://bitdepositary.io/", + "explorer": "https://etherscan.io/token/0x033030FEeBd93E3178487c35A9c8cA80874353C9", + "status": "active", + "id": "0x033030FEeBd93E3178487c35A9c8cA80874353C9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x033030FEeBd93E3178487c35A9c8cA80874353C9/logo.png b/blockchains/ethereum/assets/0x033030FEeBd93E3178487c35A9c8cA80874353C9/logo.png new file mode 100644 index 00000000..e6d28f9b Binary files /dev/null and b/blockchains/ethereum/assets/0x033030FEeBd93E3178487c35A9c8cA80874353C9/logo.png differ diff --git a/blockchains/ethereum/assets/0x03352D267951E96c6F7235037C5DFD2AB1466232/info.json b/blockchains/ethereum/assets/0x03352D267951E96c6F7235037C5DFD2AB1466232/info.json new file mode 100644 index 00000000..f887dac1 --- /dev/null +++ b/blockchains/ethereum/assets/0x03352D267951E96c6F7235037C5DFD2AB1466232/info.json @@ -0,0 +1,40 @@ +{ + "name": "Stable FOX", + "website": "app.ichi.org", + "description": "oneFOX is an ICHI-created stablecoin for Shapeshift.", + "explorer": "https://etherscan.io/token/0x03352D267951E96c6F7235037C5DFD2AB1466232", + "type": "ERC20", + "symbol": "oneFOX", + "decimals": 18, + "status": "active", + "id": "0x03352D267951E96c6F7235037C5DFD2AB1466232", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm/ichi-oneToken" + }, + { + "name": "x", + "url": "https://x.com/ichifarm" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + }, + { + "name": "discord", + "url": "https://discord.com/invite/DvsYCfK8" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/stable-fox" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03352D267951E96c6F7235037C5DFD2AB1466232/logo.png b/blockchains/ethereum/assets/0x03352D267951E96c6F7235037C5DFD2AB1466232/logo.png new file mode 100644 index 00000000..063474e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x03352D267951E96c6F7235037C5DFD2AB1466232/logo.png differ diff --git a/blockchains/ethereum/assets/0x033e223870f766644f7f7a4B7dc2E91573707d06/info.json b/blockchains/ethereum/assets/0x033e223870f766644f7f7a4B7dc2E91573707d06/info.json new file mode 100644 index 00000000..06b0d769 --- /dev/null +++ b/blockchains/ethereum/assets/0x033e223870f766644f7f7a4B7dc2E91573707d06/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZinFinance", + "website": "https://zin.finance/", + "description": "A DeFi Investment platform which will combine the investment tools of crypto and traditional stocks. Zin will be a 100% deflationary token. Zin tokens will have a burn mechanism.", + "explorer": "https://etherscan.io/token/0x033e223870f766644f7f7a4B7dc2E91573707d06", + "type": "ERC20", + "symbol": "Zin", + "decimals": 18, + "status": "active", + "id": "0x033e223870f766644f7f7a4B7dc2E91573707d06" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x033e223870f766644f7f7a4B7dc2E91573707d06/logo.png b/blockchains/ethereum/assets/0x033e223870f766644f7f7a4B7dc2E91573707d06/logo.png new file mode 100644 index 00000000..89bbd19e Binary files /dev/null and b/blockchains/ethereum/assets/0x033e223870f766644f7f7a4B7dc2E91573707d06/logo.png differ diff --git a/blockchains/ethereum/assets/0x03410a55d072C79C586Ff7B079a4dE0359A45BD5/info.json b/blockchains/ethereum/assets/0x03410a55d072C79C586Ff7B079a4dE0359A45BD5/info.json new file mode 100644 index 00000000..b7a40cd1 --- /dev/null +++ b/blockchains/ethereum/assets/0x03410a55d072C79C586Ff7B079a4dE0359A45BD5/info.json @@ -0,0 +1,11 @@ +{ + "name": "VSmart", + "symbol": "VS", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x03410a55d072C79C586Ff7B079a4dE0359A45BD5", + "status": "abandoned", + "id": "0x03410a55d072C79C586Ff7B079a4dE0359A45BD5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03410a55d072C79C586Ff7B079a4dE0359A45BD5/logo.png b/blockchains/ethereum/assets/0x03410a55d072C79C586Ff7B079a4dE0359A45BD5/logo.png new file mode 100644 index 00000000..80d5187b Binary files /dev/null and b/blockchains/ethereum/assets/0x03410a55d072C79C586Ff7B079a4dE0359A45BD5/logo.png differ diff --git a/blockchains/ethereum/assets/0x034B0dd380b5f6f8123b8d0d0E42329b67772792/info.json b/blockchains/ethereum/assets/0x034B0dd380b5f6f8123b8d0d0E42329b67772792/info.json new file mode 100644 index 00000000..9c85023c --- /dev/null +++ b/blockchains/ethereum/assets/0x034B0dd380b5f6f8123b8d0d0E42329b67772792/info.json @@ -0,0 +1,11 @@ +{ + "name": "ADAB Token", + "symbol": "ADAB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://adabsolutions.com/", + "explorer": "https://etherscan.io/token/0x034B0dd380b5f6f8123b8d0d0E42329b67772792", + "status": "abandoned", + "id": "0x034B0dd380b5f6f8123b8d0d0E42329b67772792" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x034B0dd380b5f6f8123b8d0d0E42329b67772792/logo.png b/blockchains/ethereum/assets/0x034B0dd380b5f6f8123b8d0d0E42329b67772792/logo.png new file mode 100644 index 00000000..f4bb1555 Binary files /dev/null and b/blockchains/ethereum/assets/0x034B0dd380b5f6f8123b8d0d0E42329b67772792/logo.png differ diff --git a/blockchains/ethereum/assets/0x0353837B32AA01d335BeCEdC57A329b8CE0619a7/info.json b/blockchains/ethereum/assets/0x0353837B32AA01d335BeCEdC57A329b8CE0619a7/info.json new file mode 100644 index 00000000..5de234aa --- /dev/null +++ b/blockchains/ethereum/assets/0x0353837B32AA01d335BeCEdC57A329b8CE0619a7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tacoin", + "symbol": "TACO", + "type": "ERC20", + "decimals": 18, + "description": "Decentralizing taco payments worldwide.", + "website": "https://www.tacoinofficial.com/", + "explorer": "https://etherscan.io/token/0x0353837B32AA01d335BeCEdC57A329b8CE0619a7", + "status": "abandoned", + "id": "0x0353837B32AA01d335BeCEdC57A329b8CE0619a7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0353837B32AA01d335BeCEdC57A329b8CE0619a7/logo.png b/blockchains/ethereum/assets/0x0353837B32AA01d335BeCEdC57A329b8CE0619a7/logo.png new file mode 100755 index 00000000..0e2bf089 Binary files /dev/null and b/blockchains/ethereum/assets/0x0353837B32AA01d335BeCEdC57A329b8CE0619a7/logo.png differ diff --git a/blockchains/ethereum/assets/0x035bfe6057E15Ea692c0DfdcaB3BB41a64Dd2aD4/info.json b/blockchains/ethereum/assets/0x035bfe6057E15Ea692c0DfdcaB3BB41a64Dd2aD4/info.json new file mode 100644 index 00000000..5226ef6e --- /dev/null +++ b/blockchains/ethereum/assets/0x035bfe6057E15Ea692c0DfdcaB3BB41a64Dd2aD4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Universal Liquidity Union", + "website": "https://ulu.finance/", + "description": "Universal Liquidity Union (ULU) is the bridge to every coin. ULU aims to combine the best features of Uniswap and Balancer and route everything via the ULU token as medium of liquidity exchange.", + "explorer": "https://etherscan.io/token/0x035bfe6057E15Ea692c0DfdcaB3BB41a64Dd2aD4", + "type": "ERC20", + "symbol": "ULU", + "decimals": 18, + "status": "active", + "id": "0x035bfe6057E15Ea692c0DfdcaB3BB41a64Dd2aD4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x035bfe6057E15Ea692c0DfdcaB3BB41a64Dd2aD4/logo.png b/blockchains/ethereum/assets/0x035bfe6057E15Ea692c0DfdcaB3BB41a64Dd2aD4/logo.png new file mode 100644 index 00000000..85b4ecd2 Binary files /dev/null and b/blockchains/ethereum/assets/0x035bfe6057E15Ea692c0DfdcaB3BB41a64Dd2aD4/logo.png differ diff --git a/blockchains/ethereum/assets/0x036407F23D5E1C1486F7488332CF54bf06E5F09F/info.json b/blockchains/ethereum/assets/0x036407F23D5E1C1486F7488332CF54bf06E5F09F/info.json new file mode 100644 index 00000000..80074d3b --- /dev/null +++ b/blockchains/ethereum/assets/0x036407F23D5E1C1486F7488332CF54bf06E5F09F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alphabit", + "symbol": "ABC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x036407F23D5E1C1486F7488332CF54bf06E5F09F", + "status": "abandoned", + "id": "0x036407F23D5E1C1486F7488332CF54bf06E5F09F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x036407F23D5E1C1486F7488332CF54bf06E5F09F/logo.png b/blockchains/ethereum/assets/0x036407F23D5E1C1486F7488332CF54bf06E5F09F/logo.png new file mode 100644 index 00000000..c5b3b35e Binary files /dev/null and b/blockchains/ethereum/assets/0x036407F23D5E1C1486F7488332CF54bf06E5F09F/logo.png differ diff --git a/blockchains/ethereum/assets/0x036d80F9abe266b7c6EC0A9bD078FAC3A90d4239/info.json b/blockchains/ethereum/assets/0x036d80F9abe266b7c6EC0A9bD078FAC3A90d4239/info.json new file mode 100644 index 00000000..4cada9da --- /dev/null +++ b/blockchains/ethereum/assets/0x036d80F9abe266b7c6EC0A9bD078FAC3A90d4239/info.json @@ -0,0 +1,11 @@ +{ + "name": "Truffle Coin", + "symbol": "TFC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x036d80F9abe266b7c6EC0A9bD078FAC3A90d4239", + "status": "abandoned", + "id": "0x036d80F9abe266b7c6EC0A9bD078FAC3A90d4239" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x036d80F9abe266b7c6EC0A9bD078FAC3A90d4239/logo.png b/blockchains/ethereum/assets/0x036d80F9abe266b7c6EC0A9bD078FAC3A90d4239/logo.png new file mode 100755 index 00000000..9a7682bd Binary files /dev/null and b/blockchains/ethereum/assets/0x036d80F9abe266b7c6EC0A9bD078FAC3A90d4239/logo.png differ diff --git a/blockchains/ethereum/assets/0x0371A82e4A9d0A4312f3ee2Ac9c6958512891372/info.json b/blockchains/ethereum/assets/0x0371A82e4A9d0A4312f3ee2Ac9c6958512891372/info.json new file mode 100644 index 00000000..ef21ca66 --- /dev/null +++ b/blockchains/ethereum/assets/0x0371A82e4A9d0A4312f3ee2Ac9c6958512891372/info.json @@ -0,0 +1,11 @@ +{ + "name": "Student Coin", + "symbol": "STU", + "type": "ERC20", + "decimals": 18, + "description": "BitJob is an ambitious and social project, based on Blockchain technology. Aimed at revolutionizing the way students make a living and gain occupational experience while still studying.", + "website": "https://bitjob.io/", + "explorer": "https://etherscan.io/token/0x0371A82e4A9d0A4312f3ee2Ac9c6958512891372", + "status": "active", + "id": "0x0371A82e4A9d0A4312f3ee2Ac9c6958512891372" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0371A82e4A9d0A4312f3ee2Ac9c6958512891372/logo.png b/blockchains/ethereum/assets/0x0371A82e4A9d0A4312f3ee2Ac9c6958512891372/logo.png new file mode 100644 index 00000000..e3a077a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x0371A82e4A9d0A4312f3ee2Ac9c6958512891372/logo.png differ diff --git a/blockchains/ethereum/assets/0x037A54AaB062628C9Bbae1FDB1583c195585fe41/info.json b/blockchains/ethereum/assets/0x037A54AaB062628C9Bbae1FDB1583c195585fe41/info.json new file mode 100644 index 00000000..672d35c3 --- /dev/null +++ b/blockchains/ethereum/assets/0x037A54AaB062628C9Bbae1FDB1583c195585fe41/info.json @@ -0,0 +1,11 @@ +{ + "name": "LCX", + "symbol": "LCX", + "type": "ERC20", + "decimals": 18, + "description": "LCX.com - Innovating Capital Markets. Solutions for compliant digital assets and security tokens. LCX is a secure and compliant platform for buying, selling, transferring, and storing digital currency.", + "website": "https://www.LCX.com", + "explorer": "https://etherscan.io/token/0x037A54AaB062628C9Bbae1FDB1583c195585fe41", + "status": "active", + "id": "0x037A54AaB062628C9Bbae1FDB1583c195585fe41" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x037A54AaB062628C9Bbae1FDB1583c195585fe41/logo.png b/blockchains/ethereum/assets/0x037A54AaB062628C9Bbae1FDB1583c195585fe41/logo.png new file mode 100644 index 00000000..397c0b01 Binary files /dev/null and b/blockchains/ethereum/assets/0x037A54AaB062628C9Bbae1FDB1583c195585fe41/logo.png differ diff --git a/blockchains/ethereum/assets/0x03806Ce5ef69Bd9780EDFb04c29da1F23Db96294/info.json b/blockchains/ethereum/assets/0x03806Ce5ef69Bd9780EDFb04c29da1F23Db96294/info.json new file mode 100644 index 00000000..24352139 --- /dev/null +++ b/blockchains/ethereum/assets/0x03806Ce5ef69Bd9780EDFb04c29da1F23Db96294/info.json @@ -0,0 +1,11 @@ +{ + "name": "TESLA", + "symbol": "TSL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.energolabs.com/#/", + "explorer": "https://etherscan.io/token/0x03806Ce5ef69Bd9780EDFb04c29da1F23Db96294", + "status": "abandoned", + "id": "0x03806Ce5ef69Bd9780EDFb04c29da1F23Db96294" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03806Ce5ef69Bd9780EDFb04c29da1F23Db96294/logo.png b/blockchains/ethereum/assets/0x03806Ce5ef69Bd9780EDFb04c29da1F23Db96294/logo.png new file mode 100755 index 00000000..bb65675a Binary files /dev/null and b/blockchains/ethereum/assets/0x03806Ce5ef69Bd9780EDFb04c29da1F23Db96294/logo.png differ diff --git a/blockchains/ethereum/assets/0x038e1b56b615fF3dD20e0BD4C7e91c7EE07d3508/info.json b/blockchains/ethereum/assets/0x038e1b56b615fF3dD20e0BD4C7e91c7EE07d3508/info.json new file mode 100644 index 00000000..b5d3faac --- /dev/null +++ b/blockchains/ethereum/assets/0x038e1b56b615fF3dD20e0BD4C7e91c7EE07d3508/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long WBTC-DAI 3x v2", + "symbol": "dLWBTC3x", + "type": "ERC20", + "decimals": 18, + "description": "pTokens, which give exposure to a desired short or leveraged position.", + "website": "https://bzx.network/", + "explorer": "https://etherscan.io/token/0x038e1b56b615fF3dD20e0BD4C7e91c7EE07d3508", + "status": "active", + "id": "0x038e1b56b615fF3dD20e0BD4C7e91c7EE07d3508" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x038e1b56b615fF3dD20e0BD4C7e91c7EE07d3508/logo.png b/blockchains/ethereum/assets/0x038e1b56b615fF3dD20e0BD4C7e91c7EE07d3508/logo.png new file mode 100644 index 00000000..d8d20864 Binary files /dev/null and b/blockchains/ethereum/assets/0x038e1b56b615fF3dD20e0BD4C7e91c7EE07d3508/logo.png differ diff --git a/blockchains/ethereum/assets/0x0391D2021f89DC339F60Fff84546EA23E337750f/info.json b/blockchains/ethereum/assets/0x0391D2021f89DC339F60Fff84546EA23E337750f/info.json new file mode 100644 index 00000000..aeb6b9cc --- /dev/null +++ b/blockchains/ethereum/assets/0x0391D2021f89DC339F60Fff84546EA23E337750f/info.json @@ -0,0 +1,17 @@ +{ + "name": "BarnBridge", + "website": "https://BarnBridge.com", + "description": "Tokenized Risk Protocol", + "explorer": "https://etherscan.io/token/0x0391D2021f89DC339F60Fff84546EA23E337750f", + "type": "ERC20", + "symbol": "BOND", + "decimals": 18, + "status": "active", + "id": "0x0391D2021f89DC339F60Fff84546EA23E337750f", + "links": [ + { + "name": "whitepaper", + "url": "https://github.com/BarnBridge/BarnBridge-Whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0391D2021f89DC339F60Fff84546EA23E337750f/logo.png b/blockchains/ethereum/assets/0x0391D2021f89DC339F60Fff84546EA23E337750f/logo.png new file mode 100644 index 00000000..3df299a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x0391D2021f89DC339F60Fff84546EA23E337750f/logo.png differ diff --git a/blockchains/ethereum/assets/0x0396340f16Bbec973280AB053efc3f208fA37795/info.json b/blockchains/ethereum/assets/0x0396340f16Bbec973280AB053efc3f208fA37795/info.json new file mode 100644 index 00000000..3c0879ed --- /dev/null +++ b/blockchains/ethereum/assets/0x0396340f16Bbec973280AB053efc3f208fA37795/info.json @@ -0,0 +1,11 @@ +{ + "name": "BigONE Token", + "symbol": "BIG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0396340f16Bbec973280AB053efc3f208fA37795", + "status": "abandoned", + "id": "0x0396340f16Bbec973280AB053efc3f208fA37795" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0396340f16Bbec973280AB053efc3f208fA37795/logo.png b/blockchains/ethereum/assets/0x0396340f16Bbec973280AB053efc3f208fA37795/logo.png new file mode 100644 index 00000000..3bdaefb6 Binary files /dev/null and b/blockchains/ethereum/assets/0x0396340f16Bbec973280AB053efc3f208fA37795/logo.png differ diff --git a/blockchains/ethereum/assets/0x039B5649A59967e3e936D7471f9c3700100Ee1ab/info.json b/blockchains/ethereum/assets/0x039B5649A59967e3e936D7471f9c3700100Ee1ab/info.json new file mode 100644 index 00000000..11de86a6 --- /dev/null +++ b/blockchains/ethereum/assets/0x039B5649A59967e3e936D7471f9c3700100Ee1ab/info.json @@ -0,0 +1,11 @@ +{ + "name": "KuCoin Shares", + "website": "https://kucoin.com", + "description": "Kucoin Shares (KCS) is an exchange based token and native currency of the Kucoin crypto exchange.", + "explorer": "https://etherscan.io/token/0x039B5649A59967e3e936D7471f9c3700100Ee1ab", + "type": "ERC20", + "symbol": "KCS", + "decimals": 6, + "status": "abandoned", + "id": "0x039B5649A59967e3e936D7471f9c3700100Ee1ab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x039B5649A59967e3e936D7471f9c3700100Ee1ab/logo.png b/blockchains/ethereum/assets/0x039B5649A59967e3e936D7471f9c3700100Ee1ab/logo.png new file mode 100755 index 00000000..83bd6b82 Binary files /dev/null and b/blockchains/ethereum/assets/0x039B5649A59967e3e936D7471f9c3700100Ee1ab/logo.png differ diff --git a/blockchains/ethereum/assets/0x039F5050dE4908f9b5ddF40A4F3Aa3f329086387/info.json b/blockchains/ethereum/assets/0x039F5050dE4908f9b5ddF40A4F3Aa3f329086387/info.json new file mode 100644 index 00000000..e3d56ee9 --- /dev/null +++ b/blockchains/ethereum/assets/0x039F5050dE4908f9b5ddF40A4F3Aa3f329086387/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethernet Cash", + "symbol": "ENC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ethernet.cash", + "explorer": "https://etherscan.io/token/0x039F5050dE4908f9b5ddF40A4F3Aa3f329086387", + "status": "abandoned", + "id": "0x039F5050dE4908f9b5ddF40A4F3Aa3f329086387" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x039F5050dE4908f9b5ddF40A4F3Aa3f329086387/logo.png b/blockchains/ethereum/assets/0x039F5050dE4908f9b5ddF40A4F3Aa3f329086387/logo.png new file mode 100755 index 00000000..8a1d70ac Binary files /dev/null and b/blockchains/ethereum/assets/0x039F5050dE4908f9b5ddF40A4F3Aa3f329086387/logo.png differ diff --git a/blockchains/ethereum/assets/0x039c642289e45EB7eE1B88123f4fC3aa94D34359/info.json b/blockchains/ethereum/assets/0x039c642289e45EB7eE1B88123f4fC3aa94D34359/info.json new file mode 100644 index 00000000..6c357224 --- /dev/null +++ b/blockchains/ethereum/assets/0x039c642289e45EB7eE1B88123f4fC3aa94D34359/info.json @@ -0,0 +1,11 @@ +{ + "name": "KAMI", + "symbol": "KAMI", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x039c642289e45EB7eE1B88123f4fC3aa94D34359", + "status": "abandoned", + "id": "0x039c642289e45EB7eE1B88123f4fC3aa94D34359" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x039c642289e45EB7eE1B88123f4fC3aa94D34359/logo.png b/blockchains/ethereum/assets/0x039c642289e45EB7eE1B88123f4fC3aa94D34359/logo.png new file mode 100644 index 00000000..3f61ea59 Binary files /dev/null and b/blockchains/ethereum/assets/0x039c642289e45EB7eE1B88123f4fC3aa94D34359/logo.png differ diff --git a/blockchains/ethereum/assets/0x03AA6298F1370642642415EDC0db8b957783e8D6/info.json b/blockchains/ethereum/assets/0x03AA6298F1370642642415EDC0db8b957783e8D6/info.json new file mode 100644 index 00000000..bf244b06 --- /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 00000000..5314738f Binary files /dev/null and b/blockchains/ethereum/assets/0x03AA6298F1370642642415EDC0db8b957783e8D6/logo.png differ diff --git a/blockchains/ethereum/assets/0x03B155AF3F4459193A276395dD76e357BB472DA1/info.json b/blockchains/ethereum/assets/0x03B155AF3F4459193A276395dD76e357BB472DA1/info.json new file mode 100644 index 00000000..f0b7c83b --- /dev/null +++ b/blockchains/ethereum/assets/0x03B155AF3F4459193A276395dD76e357BB472DA1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Swace", + "symbol": "SWACE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x03B155AF3F4459193A276395dD76e357BB472DA1", + "status": "abandoned", + "id": "0x03B155AF3F4459193A276395dD76e357BB472DA1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03B155AF3F4459193A276395dD76e357BB472DA1/logo.png b/blockchains/ethereum/assets/0x03B155AF3F4459193A276395dD76e357BB472DA1/logo.png new file mode 100644 index 00000000..7f8ee904 Binary files /dev/null and b/blockchains/ethereum/assets/0x03B155AF3F4459193A276395dD76e357BB472DA1/logo.png differ diff --git a/blockchains/ethereum/assets/0x03Be5C903c727Ee2C8C4e9bc0AcC860Cca4715e2/info.json b/blockchains/ethereum/assets/0x03Be5C903c727Ee2C8C4e9bc0AcC860Cca4715e2/info.json new file mode 100644 index 00000000..68054299 --- /dev/null +++ b/blockchains/ethereum/assets/0x03Be5C903c727Ee2C8C4e9bc0AcC860Cca4715e2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ternoa", + "type": "ERC20", + "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://etherscan.io/token/0x03Be5C903c727Ee2C8C4e9bc0AcC860Cca4715e2", + "status": "active", + "id": "0x03Be5C903c727Ee2C8C4e9bc0AcC860Cca4715e2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03Be5C903c727Ee2C8C4e9bc0AcC860Cca4715e2/logo.png b/blockchains/ethereum/assets/0x03Be5C903c727Ee2C8C4e9bc0AcC860Cca4715e2/logo.png new file mode 100644 index 00000000..7e3f5401 Binary files /dev/null and b/blockchains/ethereum/assets/0x03Be5C903c727Ee2C8C4e9bc0AcC860Cca4715e2/logo.png differ diff --git a/blockchains/ethereum/assets/0x03C1EC4CA9DBb168E6Db0DeF827c085999CBffaF/info.json b/blockchains/ethereum/assets/0x03C1EC4CA9DBb168E6Db0DeF827c085999CBffaF/info.json new file mode 100644 index 00000000..cdb06ae2 --- /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 00000000..01ae4174 Binary files /dev/null and b/blockchains/ethereum/assets/0x03C1EC4CA9DBb168E6Db0DeF827c085999CBffaF/logo.png differ diff --git a/blockchains/ethereum/assets/0x03C780cD554598592B97b7256dDAad759945b125/info.json b/blockchains/ethereum/assets/0x03C780cD554598592B97b7256dDAad759945b125/info.json new file mode 100644 index 00000000..29f752f7 --- /dev/null +++ b/blockchains/ethereum/assets/0x03C780cD554598592B97b7256dDAad759945b125/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTRN", + "symbol": "BTRN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://biotron.io/", + "explorer": "https://etherscan.io/token/0x03C780cD554598592B97b7256dDAad759945b125", + "status": "abandoned", + "id": "0x03C780cD554598592B97b7256dDAad759945b125" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03C780cD554598592B97b7256dDAad759945b125/logo.png b/blockchains/ethereum/assets/0x03C780cD554598592B97b7256dDAad759945b125/logo.png new file mode 100644 index 00000000..4e148f64 Binary files /dev/null and b/blockchains/ethereum/assets/0x03C780cD554598592B97b7256dDAad759945b125/logo.png differ diff --git a/blockchains/ethereum/assets/0x03ab458634910AaD20eF5f1C8ee96F1D6ac54919/info.json b/blockchains/ethereum/assets/0x03ab458634910AaD20eF5f1C8ee96F1D6ac54919/info.json new file mode 100644 index 00000000..706bddd1 --- /dev/null +++ b/blockchains/ethereum/assets/0x03ab458634910AaD20eF5f1C8ee96F1D6ac54919/info.json @@ -0,0 +1,12 @@ +{ + "name": "Rai Reflex Index", + "website": "https://reflexer.finance", + "description": "RAI is a non pegged, ETH backed stable asset built by Reflexer. It is the first asset of its kind that, instead of being pegged to a specific target such as the USD, it freely floats while it’s being influenced by market forces.", + "explorer": "https://etherscan.io/token/0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", + "research": "https://docs.reflexer.finance/", + "type": "ERC20", + "symbol": "RAI", + "decimals": 18, + "status": "active", + "id": "0x03ab458634910AaD20eF5f1C8ee96F1D6ac54919" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03ab458634910AaD20eF5f1C8ee96F1D6ac54919/logo.png b/blockchains/ethereum/assets/0x03ab458634910AaD20eF5f1C8ee96F1D6ac54919/logo.png new file mode 100644 index 00000000..ea158e23 Binary files /dev/null and b/blockchains/ethereum/assets/0x03ab458634910AaD20eF5f1C8ee96F1D6ac54919/logo.png differ diff --git a/blockchains/ethereum/assets/0x03dDe9e5BB31ee40A471476e2FCcF75C67921062/info.json b/blockchains/ethereum/assets/0x03dDe9e5BB31ee40A471476e2FCcF75C67921062/info.json new file mode 100644 index 00000000..0e2ad05e --- /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 00000000..40eda8f2 Binary files /dev/null and b/blockchains/ethereum/assets/0x03dDe9e5BB31ee40A471476e2FCcF75C67921062/logo.png differ diff --git a/blockchains/ethereum/assets/0x03fB52D4eE633ab0D06C833E32EFdd8D388f3E6a/info.json b/blockchains/ethereum/assets/0x03fB52D4eE633ab0D06C833E32EFdd8D388f3E6a/info.json new file mode 100644 index 00000000..70d6add0 --- /dev/null +++ b/blockchains/ethereum/assets/0x03fB52D4eE633ab0D06C833E32EFdd8D388f3E6a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Black Hole", + "symbol": "HOLE", + "type": "ERC20", + "decimals": 18, + "description": "HOLE is a hyperdeflationary cryptocurrency with massive 20% burn. Join us on the journey to the unknown parts of the universe.", + "website": "https://superblackhole.com/", + "explorer": "https://etherscan.io/token/0x03fB52D4eE633ab0D06C833E32EFdd8D388f3E6a", + "status": "active", + "id": "0x03fB52D4eE633ab0D06C833E32EFdd8D388f3E6a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03fB52D4eE633ab0D06C833E32EFdd8D388f3E6a/logo.png b/blockchains/ethereum/assets/0x03fB52D4eE633ab0D06C833E32EFdd8D388f3E6a/logo.png new file mode 100644 index 00000000..0bb9ba8b Binary files /dev/null and b/blockchains/ethereum/assets/0x03fB52D4eE633ab0D06C833E32EFdd8D388f3E6a/logo.png differ diff --git a/blockchains/ethereum/assets/0x0408D7ed44de8D93A2510CAEF3Db4Ac7a4a1DFEc/info.json b/blockchains/ethereum/assets/0x0408D7ed44de8D93A2510CAEF3Db4Ac7a4a1DFEc/info.json new file mode 100644 index 00000000..92a83e98 --- /dev/null +++ b/blockchains/ethereum/assets/0x0408D7ed44de8D93A2510CAEF3Db4Ac7a4a1DFEc/info.json @@ -0,0 +1,11 @@ +{ + "name": "AIECOLOGY", + "symbol": "AIE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0408D7ed44de8D93A2510CAEF3Db4Ac7a4a1DFEc", + "status": "abandoned", + "id": "0x0408D7ed44de8D93A2510CAEF3Db4Ac7a4a1DFEc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0408D7ed44de8D93A2510CAEF3Db4Ac7a4a1DFEc/logo.png b/blockchains/ethereum/assets/0x0408D7ed44de8D93A2510CAEF3Db4Ac7a4a1DFEc/logo.png new file mode 100644 index 00000000..34f98b8b Binary files /dev/null and b/blockchains/ethereum/assets/0x0408D7ed44de8D93A2510CAEF3Db4Ac7a4a1DFEc/logo.png differ diff --git a/blockchains/ethereum/assets/0x040f685A2ffE3598A5041af33643C5F731507917/info.json b/blockchains/ethereum/assets/0x040f685A2ffE3598A5041af33643C5F731507917/info.json new file mode 100644 index 00000000..916c3b08 --- /dev/null +++ b/blockchains/ethereum/assets/0x040f685A2ffE3598A5041af33643C5F731507917/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lotbo Token", + "symbol": "LOB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x040f685A2ffE3598A5041af33643C5F731507917", + "status": "abandoned", + "id": "0x040f685A2ffE3598A5041af33643C5F731507917" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x040f685A2ffE3598A5041af33643C5F731507917/logo.png b/blockchains/ethereum/assets/0x040f685A2ffE3598A5041af33643C5F731507917/logo.png new file mode 100644 index 00000000..cba79f29 Binary files /dev/null and b/blockchains/ethereum/assets/0x040f685A2ffE3598A5041af33643C5F731507917/logo.png differ diff --git a/blockchains/ethereum/assets/0x04162AEe1c40cF63747E6BC3A7e84ACEC1Ba2A78/info.json b/blockchains/ethereum/assets/0x04162AEe1c40cF63747E6BC3A7e84ACEC1Ba2A78/info.json new file mode 100644 index 00000000..6a7577e0 --- /dev/null +++ b/blockchains/ethereum/assets/0x04162AEe1c40cF63747E6BC3A7e84ACEC1Ba2A78/info.json @@ -0,0 +1,11 @@ +{ + "name": "ApeCash", + "symbol": "APE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x04162AEe1c40cF63747E6BC3A7e84ACEC1Ba2A78", + "status": "abandoned", + "id": "0x04162AEe1c40cF63747E6BC3A7e84ACEC1Ba2A78" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x04162AEe1c40cF63747E6BC3A7e84ACEC1Ba2A78/logo.png b/blockchains/ethereum/assets/0x04162AEe1c40cF63747E6BC3A7e84ACEC1Ba2A78/logo.png new file mode 100755 index 00000000..6755b06b Binary files /dev/null and b/blockchains/ethereum/assets/0x04162AEe1c40cF63747E6BC3A7e84ACEC1Ba2A78/logo.png differ diff --git a/blockchains/ethereum/assets/0x0417912b3a7AF768051765040A55BB0925D4DDcF/info.json b/blockchains/ethereum/assets/0x0417912b3a7AF768051765040A55BB0925D4DDcF/info.json new file mode 100644 index 00000000..f7d7504f --- /dev/null +++ b/blockchains/ethereum/assets/0x0417912b3a7AF768051765040A55BB0925D4DDcF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Liquidity Dividends Protocol", + "symbol": "LID", + "type": "ERC20", + "decimals": 18, + "description": "The Liquidity Dividends Protocol uses new technology that provides solutions for depositing liquidity into Uniswap while also offering a social rewards based staking system.", + "website": "https://www.lid.sh", + "explorer": "https://etherscan.io/token/0x0417912b3a7AF768051765040A55BB0925D4DDcF", + "status": "active", + "id": "0x0417912b3a7AF768051765040A55BB0925D4DDcF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0417912b3a7AF768051765040A55BB0925D4DDcF/logo.png b/blockchains/ethereum/assets/0x0417912b3a7AF768051765040A55BB0925D4DDcF/logo.png new file mode 100644 index 00000000..73abdada Binary files /dev/null and b/blockchains/ethereum/assets/0x0417912b3a7AF768051765040A55BB0925D4DDcF/logo.png differ diff --git a/blockchains/ethereum/assets/0x04203B7668eB832a5CbFE248b57deFEB709E48e3/info.json b/blockchains/ethereum/assets/0x04203B7668eB832a5CbFE248b57deFEB709E48e3/info.json new file mode 100644 index 00000000..49943511 --- /dev/null +++ b/blockchains/ethereum/assets/0x04203B7668eB832a5CbFE248b57deFEB709E48e3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Statera Gold", + "symbol": "STAG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x04203B7668eB832a5CbFE248b57deFEB709E48e3", + "status": "abandoned", + "id": "0x04203B7668eB832a5CbFE248b57deFEB709E48e3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x04203B7668eB832a5CbFE248b57deFEB709E48e3/logo.png b/blockchains/ethereum/assets/0x04203B7668eB832a5CbFE248b57deFEB709E48e3/logo.png new file mode 100644 index 00000000..4a150964 Binary files /dev/null and b/blockchains/ethereum/assets/0x04203B7668eB832a5CbFE248b57deFEB709E48e3/logo.png differ diff --git a/blockchains/ethereum/assets/0x0428488582472A47d7a20be969FDFdfb3BA1f7cB/info.json b/blockchains/ethereum/assets/0x0428488582472A47d7a20be969FDFdfb3BA1f7cB/info.json new file mode 100644 index 00000000..57ecc774 --- /dev/null +++ b/blockchains/ethereum/assets/0x0428488582472A47d7a20be969FDFdfb3BA1f7cB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short ETH-DAI 3x v2", + "symbol": "dsETH3x", + "type": "ERC20", + "decimals": 18, + "description": "pTokens, which give you exposure to a desired short or leveraged position.", + "website": "https://bzx.network/", + "explorer": "https://etherscan.io/token/0x0428488582472A47d7a20be969FDFdfb3BA1f7cB", + "status": "abandoned", + "id": "0x0428488582472A47d7a20be969FDFdfb3BA1f7cB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0428488582472A47d7a20be969FDFdfb3BA1f7cB/logo.png b/blockchains/ethereum/assets/0x0428488582472A47d7a20be969FDFdfb3BA1f7cB/logo.png new file mode 100644 index 00000000..30c7d7f5 Binary files /dev/null and b/blockchains/ethereum/assets/0x0428488582472A47d7a20be969FDFdfb3BA1f7cB/logo.png differ diff --git a/blockchains/ethereum/assets/0x04375cC41Eab0D0Db9460e8a7f8771f15aFA7BD9/info.json b/blockchains/ethereum/assets/0x04375cC41Eab0D0Db9460e8a7f8771f15aFA7BD9/info.json new file mode 100644 index 00000000..0d753516 --- /dev/null +++ b/blockchains/ethereum/assets/0x04375cC41Eab0D0Db9460e8a7f8771f15aFA7BD9/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-24/30M54", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x04375cC41Eab0D0Db9460e8a7f8771f15aFA7BD9", + "status": "abandoned", + "id": "0x04375cC41Eab0D0Db9460e8a7f8771f15aFA7BD9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x04375cC41Eab0D0Db9460e8a7f8771f15aFA7BD9/logo.png b/blockchains/ethereum/assets/0x04375cC41Eab0D0Db9460e8a7f8771f15aFA7BD9/logo.png new file mode 100644 index 00000000..41b56cbc Binary files /dev/null and b/blockchains/ethereum/assets/0x04375cC41Eab0D0Db9460e8a7f8771f15aFA7BD9/logo.png differ diff --git a/blockchains/ethereum/assets/0x04423d360B5F2A65266a150AC109534c47830E66/info.json b/blockchains/ethereum/assets/0x04423d360B5F2A65266a150AC109534c47830E66/info.json new file mode 100644 index 00000000..da816e95 --- /dev/null +++ b/blockchains/ethereum/assets/0x04423d360B5F2A65266a150AC109534c47830E66/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fazhan Chain", + "symbol": "FZC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x04423d360B5F2A65266a150AC109534c47830E66", + "status": "abandoned", + "id": "0x04423d360B5F2A65266a150AC109534c47830E66" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x04423d360B5F2A65266a150AC109534c47830E66/logo.png b/blockchains/ethereum/assets/0x04423d360B5F2A65266a150AC109534c47830E66/logo.png new file mode 100644 index 00000000..783c69d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x04423d360B5F2A65266a150AC109534c47830E66/logo.png differ diff --git a/blockchains/ethereum/assets/0x0442BC99441F55244131CC13A2E717C493DDbF01/info.json b/blockchains/ethereum/assets/0x0442BC99441F55244131CC13A2E717C493DDbF01/info.json new file mode 100644 index 00000000..1c627ef0 --- /dev/null +++ b/blockchains/ethereum/assets/0x0442BC99441F55244131CC13A2E717C493DDbF01/info.json @@ -0,0 +1,11 @@ +{ + "name": "REVI", + "website": "http://revi.network", + "description": "V2.0 of REVO", + "explorer": "https://etherscan.io/token/0x0442BC99441F55244131CC13A2E717C493DDbF01", + "type": "ERC20", + "symbol": "REVI", + "decimals": 18, + "status": "active", + "id": "0x0442BC99441F55244131CC13A2E717C493DDbF01" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0442BC99441F55244131CC13A2E717C493DDbF01/logo.png b/blockchains/ethereum/assets/0x0442BC99441F55244131CC13A2E717C493DDbF01/logo.png new file mode 100644 index 00000000..8fd7ae56 Binary files /dev/null and b/blockchains/ethereum/assets/0x0442BC99441F55244131CC13A2E717C493DDbF01/logo.png differ diff --git a/blockchains/ethereum/assets/0x044727e50ff30DB57fad06Ff4F5846eAb5eA52a2/info.json b/blockchains/ethereum/assets/0x044727e50ff30DB57fad06Ff4F5846eAb5eA52a2/info.json new file mode 100644 index 00000000..8c2197bd --- /dev/null +++ b/blockchains/ethereum/assets/0x044727e50ff30DB57fad06Ff4F5846eAb5eA52a2/info.json @@ -0,0 +1,37 @@ +{ + "name": "Kitty Inu", + "website": "https://kittyinuerc20.io/", + "description": "Inspired by the rise of Shiba Inu and Floki Inu, Kitty Inu is an ERC-20 Cryptocurrency joining the cryptoverse to teach an old doge some new tricks! Kitty’s mission is to build one of the best and biggest crypto communities in the world backed by one of the best teams in Defi. Part Kitty, Part Inu, Kitty Inu will woof and meow its way to the moon.", + "explorer": "https://etherscan.io/token/0x044727e50ff30DB57fad06Ff4F5846eAb5eA52a2", + "type": "ERC20", + "symbol": "KITTY", + "decimals": 9, + "status": "active", + "id": "0x044727e50ff30DB57fad06Ff4F5846eAb5eA52a2", + "links": [ + { + "name": "github", + "url": "https://github.com/KittyInu" + }, + { + "name": "x", + "url": "https://x.com/KittyInuErc20" + }, + { + "name": "telegram", + "url": "https://t.me/KittyInuToken" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kitty-inu/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kitty-inu/" + }, + { + "name": "whitepaper", + "url": "https://kittyinuerc20.io/wp-content/uploads/2021/10/KityInuLitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x044727e50ff30DB57fad06Ff4F5846eAb5eA52a2/logo.png b/blockchains/ethereum/assets/0x044727e50ff30DB57fad06Ff4F5846eAb5eA52a2/logo.png new file mode 100644 index 00000000..247cc598 Binary files /dev/null and b/blockchains/ethereum/assets/0x044727e50ff30DB57fad06Ff4F5846eAb5eA52a2/logo.png differ diff --git a/blockchains/ethereum/assets/0x045Eb7e34e94B28C7A3641BC5e1A1F61f225Af9F/info.json b/blockchains/ethereum/assets/0x045Eb7e34e94B28C7A3641BC5e1A1F61f225Af9F/info.json new file mode 100644 index 00000000..e65d82f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x045Eb7e34e94B28C7A3641BC5e1A1F61f225Af9F/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZPAY", + "symbol": "ZPAE", + "type": "ERC20", + "decimals": 18, + "description": "Building an entire decentralized ecosystem specifically for GCC countries and driving the momentum to establish a censor-ship resistant cryptocurrency across the Gulf. Focusing upon changing the way Emiratis do transactions and manage their wealth.", + "website": "https://www.zelaapay.ae/", + "explorer": "https://etherscan.io/token/0x045Eb7e34e94B28C7A3641BC5e1A1F61f225Af9F", + "status": "active", + "id": "0x045Eb7e34e94B28C7A3641BC5e1A1F61f225Af9F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x045Eb7e34e94B28C7A3641BC5e1A1F61f225Af9F/logo.png b/blockchains/ethereum/assets/0x045Eb7e34e94B28C7A3641BC5e1A1F61f225Af9F/logo.png new file mode 100644 index 00000000..56708523 Binary files /dev/null and b/blockchains/ethereum/assets/0x045Eb7e34e94B28C7A3641BC5e1A1F61f225Af9F/logo.png differ diff --git a/blockchains/ethereum/assets/0x046BAd07658f3B6cAd9A396CFcbC1243AF452ec1/info.json b/blockchains/ethereum/assets/0x046BAd07658f3B6cAd9A396CFcbC1243AF452ec1/info.json new file mode 100644 index 00000000..5684c16d --- /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 00000000..1330e4c2 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 00000000..f009aa81 --- /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 00000000..85082663 Binary files /dev/null and b/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/logo.png differ diff --git a/blockchains/ethereum/assets/0x0488401c3F535193Fa8Df029d9fFe615A06E74E6/info.json b/blockchains/ethereum/assets/0x0488401c3F535193Fa8Df029d9fFe615A06E74E6/info.json new file mode 100644 index 00000000..ca98f0c6 --- /dev/null +++ b/blockchains/ethereum/assets/0x0488401c3F535193Fa8Df029d9fFe615A06E74E6/info.json @@ -0,0 +1,11 @@ +{ + "name": "SparkPoint", + "symbol": "SRK", + "type": "ERC20", + "decimals": 18, + "description": "SparkPoint Ecosystem is a decentralized payment gateway with integrated crypto exchanges, blockchain based e-learning, gaming, and online store.", + "website": "https://www.sparkpoint.io/", + "explorer": "https://etherscan.io/token/0x0488401c3F535193Fa8Df029d9fFe615A06E74E6", + "status": "active", + "id": "0x0488401c3F535193Fa8Df029d9fFe615A06E74E6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0488401c3F535193Fa8Df029d9fFe615A06E74E6/logo.png b/blockchains/ethereum/assets/0x0488401c3F535193Fa8Df029d9fFe615A06E74E6/logo.png new file mode 100644 index 00000000..5eb790c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x0488401c3F535193Fa8Df029d9fFe615A06E74E6/logo.png differ diff --git a/blockchains/ethereum/assets/0x048930eec73c91B44b0844aEACdEBADC2F2b6efb/info.json b/blockchains/ethereum/assets/0x048930eec73c91B44b0844aEACdEBADC2F2b6efb/info.json new file mode 100644 index 00000000..6c7c1810 --- /dev/null +++ b/blockchains/ethereum/assets/0x048930eec73c91B44b0844aEACdEBADC2F2b6efb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave UniDAI", + "website": "https://aave.com", + "description": "Aave UniDAI is an interest bearing token pegged 1:1 to the underlying DAI deposited in the Uniswap Market of Aave Protocol.", + "explorer": "https://etherscan.io/token/0x048930eec73c91B44b0844aEACdEBADC2F2b6efb", + "type": "ERC20", + "symbol": "aUniDAI", + "decimals": 18, + "status": "active", + "id": "0x048930eec73c91B44b0844aEACdEBADC2F2b6efb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x048930eec73c91B44b0844aEACdEBADC2F2b6efb/logo.png b/blockchains/ethereum/assets/0x048930eec73c91B44b0844aEACdEBADC2F2b6efb/logo.png new file mode 100644 index 00000000..3e5fb1d3 Binary files /dev/null and b/blockchains/ethereum/assets/0x048930eec73c91B44b0844aEACdEBADC2F2b6efb/logo.png differ diff --git a/blockchains/ethereum/assets/0x048Fe49BE32adfC9ED68C37D32B5ec9Df17b3603/info.json b/blockchains/ethereum/assets/0x048Fe49BE32adfC9ED68C37D32B5ec9Df17b3603/info.json new file mode 100644 index 00000000..4d32867b --- /dev/null +++ b/blockchains/ethereum/assets/0x048Fe49BE32adfC9ED68C37D32B5ec9Df17b3603/info.json @@ -0,0 +1,11 @@ +{ + "name": "Skrumble Network V2", + "symbol": "SKM", + "type": "ERC20", + "decimals": 18, + "description": "Communication-Centric Blockchain Infrastructure and DeFi Ecosystem", + "website": "https://skrumble.network", + "explorer": "https://etherscan.io/token/0x048Fe49BE32adfC9ED68C37D32B5ec9Df17b3603", + "status": "active", + "id": "0x048Fe49BE32adfC9ED68C37D32B5ec9Df17b3603" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x048Fe49BE32adfC9ED68C37D32B5ec9Df17b3603/logo.png b/blockchains/ethereum/assets/0x048Fe49BE32adfC9ED68C37D32B5ec9Df17b3603/logo.png new file mode 100644 index 00000000..0e0fc307 Binary files /dev/null and b/blockchains/ethereum/assets/0x048Fe49BE32adfC9ED68C37D32B5ec9Df17b3603/logo.png differ diff --git a/blockchains/ethereum/assets/0x049399a6B048D52971F7D122aE21A1532722285F/info.json b/blockchains/ethereum/assets/0x049399a6B048D52971F7D122aE21A1532722285F/info.json new file mode 100644 index 00000000..555cd3a1 --- /dev/null +++ b/blockchains/ethereum/assets/0x049399a6B048D52971F7D122aE21A1532722285F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fire Lotto", + "symbol": "FLOT", + "type": "ERC20", + "decimals": 18, + "description": "Fire Lotto is a modern blockchain lottery as simple and understandable as traditional lotteries are.", + "website": "https://firelotto.io/", + "explorer": "https://etherscan.io/token/0x049399a6B048D52971F7D122aE21A1532722285F", + "status": "active", + "id": "0x049399a6B048D52971F7D122aE21A1532722285F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x049399a6B048D52971F7D122aE21A1532722285F/logo.png b/blockchains/ethereum/assets/0x049399a6B048D52971F7D122aE21A1532722285F/logo.png new file mode 100644 index 00000000..f749c488 Binary files /dev/null and b/blockchains/ethereum/assets/0x049399a6B048D52971F7D122aE21A1532722285F/logo.png differ diff --git a/blockchains/ethereum/assets/0x04A020325024F130988782bd5276e53595e8d16E/info.json b/blockchains/ethereum/assets/0x04A020325024F130988782bd5276e53595e8d16E/info.json new file mode 100644 index 00000000..b54a74ea --- /dev/null +++ b/blockchains/ethereum/assets/0x04A020325024F130988782bd5276e53595e8d16E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Herbalist Token", + "symbol": "HERB", + "type": "ERC20", + "decimals": 8, + "description": "Herbalist Token Project is going to solve expensive rare herbs problem by building a blockchain integrated marketplace that will bring the farmers and the buyers together. In our platform, any farmer is going to be able list their products and find buyers around the globe easily and quickly.", + "website": "http://www.herbalisttoken.com", + "explorer": "https://etherscan.io/token/0x04A020325024F130988782bd5276e53595e8d16E", + "status": "active", + "id": "0x04A020325024F130988782bd5276e53595e8d16E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x04A020325024F130988782bd5276e53595e8d16E/logo.png b/blockchains/ethereum/assets/0x04A020325024F130988782bd5276e53595e8d16E/logo.png new file mode 100644 index 00000000..19d550a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x04A020325024F130988782bd5276e53595e8d16E/logo.png differ diff --git a/blockchains/ethereum/assets/0x04A289fe4cE5fa87a76F58d0214340fb5893A58c/info.json b/blockchains/ethereum/assets/0x04A289fe4cE5fa87a76F58d0214340fb5893A58c/info.json new file mode 100644 index 00000000..4633d28d --- /dev/null +++ b/blockchains/ethereum/assets/0x04A289fe4cE5fa87a76F58d0214340fb5893A58c/info.json @@ -0,0 +1,11 @@ +{ + "name": "RealBlock.io", + "symbol": "REAL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x04A289fe4cE5fa87a76F58d0214340fb5893A58c", + "status": "abandoned", + "id": "0x04A289fe4cE5fa87a76F58d0214340fb5893A58c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x04A289fe4cE5fa87a76F58d0214340fb5893A58c/logo.png b/blockchains/ethereum/assets/0x04A289fe4cE5fa87a76F58d0214340fb5893A58c/logo.png new file mode 100644 index 00000000..be9e1e93 Binary files /dev/null and b/blockchains/ethereum/assets/0x04A289fe4cE5fa87a76F58d0214340fb5893A58c/logo.png differ diff --git a/blockchains/ethereum/assets/0x04B5E13000C6e9A3255Dc057091F3e3Eeee7b0f0/info.json b/blockchains/ethereum/assets/0x04B5E13000C6e9A3255Dc057091F3e3Eeee7b0f0/info.json new file mode 100644 index 00000000..2e4f3237 --- /dev/null +++ b/blockchains/ethereum/assets/0x04B5E13000C6e9A3255Dc057091F3e3Eeee7b0f0/info.json @@ -0,0 +1,17 @@ +{ + "name": "UNIFUND", + "website": "https://unifund.global", + "description": "Managed Trading Funds on Uniswap", + "explorer": "https://etherscan.io/token/0x04B5E13000C6e9A3255Dc057091F3e3Eeee7b0f0", + "type": "ERC20", + "symbol": "iFUND", + "decimals": 18, + "status": "active", + "id": "0x04B5E13000C6e9A3255Dc057091F3e3Eeee7b0f0", + "links": [ + { + "name": "whitepaper", + "url": "https://unifund.global/assets/docs/UnipumpWPv1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x04B5E13000C6e9A3255Dc057091F3e3Eeee7b0f0/logo.png b/blockchains/ethereum/assets/0x04B5E13000C6e9A3255Dc057091F3e3Eeee7b0f0/logo.png new file mode 100644 index 00000000..f6003e34 Binary files /dev/null and b/blockchains/ethereum/assets/0x04B5E13000C6e9A3255Dc057091F3e3Eeee7b0f0/logo.png differ diff --git a/blockchains/ethereum/assets/0x04B99ae45176955165BA8eB655B9028Fc00DFe50/info.json b/blockchains/ethereum/assets/0x04B99ae45176955165BA8eB655B9028Fc00DFe50/info.json new file mode 100644 index 00000000..9f9fb504 --- /dev/null +++ b/blockchains/ethereum/assets/0x04B99ae45176955165BA8eB655B9028Fc00DFe50/info.json @@ -0,0 +1,11 @@ +{ + "name": "SIX", + "symbol": "SIX", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x04B99ae45176955165BA8eB655B9028Fc00DFe50", + "status": "abandoned", + "id": "0x04B99ae45176955165BA8eB655B9028Fc00DFe50" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x04B99ae45176955165BA8eB655B9028Fc00DFe50/logo.png b/blockchains/ethereum/assets/0x04B99ae45176955165BA8eB655B9028Fc00DFe50/logo.png new file mode 100644 index 00000000..db71ecf3 Binary files /dev/null and b/blockchains/ethereum/assets/0x04B99ae45176955165BA8eB655B9028Fc00DFe50/logo.png differ diff --git a/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/info.json b/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/info.json new file mode 100644 index 00000000..3b191889 --- /dev/null +++ b/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/info.json @@ -0,0 +1,52 @@ +{ + "name": "IMPT", + "type": "ERC20", + "symbol": "IMPT", + "decimals": 18, + "website": "https://www.impt.io/", + "description": "IMPT connects users with hundreds of impactful environmental projects around the world with the purpose to reduce carbon emissions and help our planet. IMPT also engages thousands of the largest retail brands that allocate a specific percentage of sale margin for environmental projects. It is accumulated in users’ accounts in the form of IMPT tokens. The users accumulate these tokens till they reach the necessary amount of the carbon credit of their choice. As a result, users can continue with their normal shopping while helping the planet.", + "explorer": "https://etherscan.io/token/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85", + "status": "active", + "id": "0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85", + "links": [ + { + "name": "x", + "url": "https://x.com/IMPT_token" + }, + { + "name": "github", + "url": "https://github.com/anonymous-001-1/IMPT" + }, + { + "name": "discord", + "url": "https://discord.com/invite/pxPSREPKxw" + }, + { + "name": "whitepaper", + "url": "https://impt.io/assets/documents/whitepaper/en.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/IMPTOfficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/IMPTprogram" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/impt/" + }, + { + "name": "facebook", + "url": "https://facebook.com/IMPT-The-Impact-Project-110250768050959" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/impt" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/logo.png b/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/logo.png new file mode 100644 index 00000000..4ed4687e Binary files /dev/null and b/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/logo.png differ diff --git a/blockchains/ethereum/assets/0x04C46E830Bb56ce22735d5d8Fc9CB90309317d0f/info.json b/blockchains/ethereum/assets/0x04C46E830Bb56ce22735d5d8Fc9CB90309317d0f/info.json new file mode 100644 index 00000000..cc5c5dd6 --- /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 00000000..9f304f99 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 00000000..3891798b --- /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 00000000..aaa65a5d Binary files /dev/null and b/blockchains/ethereum/assets/0x04F121600c8C47A754636fc9d75661a9525e05D5/logo.png differ diff --git a/blockchains/ethereum/assets/0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828/info.json b/blockchains/ethereum/assets/0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828/info.json new file mode 100644 index 00000000..ddb98164 --- /dev/null +++ b/blockchains/ethereum/assets/0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828/info.json @@ -0,0 +1,30 @@ +{ + "name": "UMA", + "website": "https://umaproject.org", + "description": "UMA Protocol is a Decentralized Finance (DeFi) Protocol on Ethereum for any two counterparties to create their own financial contracts and synthetic assets.", + "explorer": "https://etherscan.io/token/0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828", + "research": "https://research.binance.com/en/projects/uma", + "type": "ERC20", + "symbol": "UMA", + "decimals": 18, + "status": "active", + "id": "0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828", + "links": [ + { + "name": "github", + "url": "https://github.com/UMAprotocol/protocol" + }, + { + "name": "blog", + "url": "https://medium.com/uma-project" + }, + { + "name": "whitepaper", + "url": "https://github.com/UMAprotocol/whitepaper" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uma/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828/logo.png b/blockchains/ethereum/assets/0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828/logo.png new file mode 100644 index 00000000..5ab2b18c Binary files /dev/null and b/blockchains/ethereum/assets/0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828/logo.png differ diff --git a/blockchains/ethereum/assets/0x04bA6FC674D8B7f00C96d5d0a6872e7eb270Bd7C/info.json b/blockchains/ethereum/assets/0x04bA6FC674D8B7f00C96d5d0a6872e7eb270Bd7C/info.json new file mode 100644 index 00000000..6d6c418f --- /dev/null +++ b/blockchains/ethereum/assets/0x04bA6FC674D8B7f00C96d5d0a6872e7eb270Bd7C/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRO Decentralized Finance", + "website": "https://crocryptocoin.com", + "description": "The most profitable and secure platform to entrust your digital assets. Absolutely safe with multi-layer encrypted protection.", + "explorer": "https://etherscan.io/token/0x04bA6FC674D8B7f00C96d5d0a6872e7eb270Bd7C", + "type": "ERC20", + "symbol": "CRO", + "decimals": 18, + "status": "active", + "id": "0x04bA6FC674D8B7f00C96d5d0a6872e7eb270Bd7C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x04bA6FC674D8B7f00C96d5d0a6872e7eb270Bd7C/logo.png b/blockchains/ethereum/assets/0x04bA6FC674D8B7f00C96d5d0a6872e7eb270Bd7C/logo.png new file mode 100644 index 00000000..f3c46a06 Binary files /dev/null and b/blockchains/ethereum/assets/0x04bA6FC674D8B7f00C96d5d0a6872e7eb270Bd7C/logo.png differ diff --git a/blockchains/ethereum/assets/0x04d94914Cd1D7FF749eFedEe764335777225b962/info.json b/blockchains/ethereum/assets/0x04d94914Cd1D7FF749eFedEe764335777225b962/info.json new file mode 100644 index 00000000..1ed4f6a0 --- /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 00000000..c4ed72cf 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 00000000..e87333db --- /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 00000000..dfef14d0 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 00000000..fedfd41d --- /dev/null +++ b/blockchains/ethereum/assets/0x050362Ab1072Cb2Ce74d74770E22A3203Ad04ee5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Micron Technology (Ondo Tokenized)", + "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 00000000..b3e96e21 Binary files /dev/null and b/blockchains/ethereum/assets/0x050362Ab1072Cb2Ce74d74770E22A3203Ad04ee5/logo.png differ diff --git a/blockchains/ethereum/assets/0x050508637d2878755CB29B2bE4320aC24d5CE4FF/info.json b/blockchains/ethereum/assets/0x050508637d2878755CB29B2bE4320aC24d5CE4FF/info.json new file mode 100644 index 00000000..b600480b --- /dev/null +++ b/blockchains/ethereum/assets/0x050508637d2878755CB29B2bE4320aC24d5CE4FF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Relax Buddy Token", + "symbol": "RBPC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x050508637d2878755CB29B2bE4320aC24d5CE4FF", + "status": "abandoned", + "id": "0x050508637d2878755CB29B2bE4320aC24d5CE4FF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x050508637d2878755CB29B2bE4320aC24d5CE4FF/logo.png b/blockchains/ethereum/assets/0x050508637d2878755CB29B2bE4320aC24d5CE4FF/logo.png new file mode 100644 index 00000000..21fae7fd Binary files /dev/null and b/blockchains/ethereum/assets/0x050508637d2878755CB29B2bE4320aC24d5CE4FF/logo.png differ diff --git a/blockchains/ethereum/assets/0x05079687D35b93538cbd59fe5596380cae9054A9/info.json b/blockchains/ethereum/assets/0x05079687D35b93538cbd59fe5596380cae9054A9/info.json new file mode 100644 index 00000000..97497879 --- /dev/null +++ b/blockchains/ethereum/assets/0x05079687D35b93538cbd59fe5596380cae9054A9/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitSong", + "symbol": "BTSG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x05079687D35b93538cbd59fe5596380cae9054A9", + "status": "abandoned", + "id": "0x05079687D35b93538cbd59fe5596380cae9054A9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05079687D35b93538cbd59fe5596380cae9054A9/logo.png b/blockchains/ethereum/assets/0x05079687D35b93538cbd59fe5596380cae9054A9/logo.png new file mode 100644 index 00000000..2377fe74 Binary files /dev/null and b/blockchains/ethereum/assets/0x05079687D35b93538cbd59fe5596380cae9054A9/logo.png differ diff --git a/blockchains/ethereum/assets/0x0508331c4883Dc6a0Ffc4e0b239A38a68787E21b/info.json b/blockchains/ethereum/assets/0x0508331c4883Dc6a0Ffc4e0b239A38a68787E21b/info.json new file mode 100644 index 00000000..f81ddcee --- /dev/null +++ b/blockchains/ethereum/assets/0x0508331c4883Dc6a0Ffc4e0b239A38a68787E21b/info.json @@ -0,0 +1,11 @@ +{ + "name": "LIQ", + "symbol": "LIQ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0508331c4883Dc6a0Ffc4e0b239A38a68787E21b", + "status": "abandoned", + "id": "0x0508331c4883Dc6a0Ffc4e0b239A38a68787E21b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0508331c4883Dc6a0Ffc4e0b239A38a68787E21b/logo.png b/blockchains/ethereum/assets/0x0508331c4883Dc6a0Ffc4e0b239A38a68787E21b/logo.png new file mode 100644 index 00000000..b2c6bc24 Binary files /dev/null and b/blockchains/ethereum/assets/0x0508331c4883Dc6a0Ffc4e0b239A38a68787E21b/logo.png differ diff --git a/blockchains/ethereum/assets/0x051cF5178f60e9DEf5d5a39b2a988a9f914107cB/info.json b/blockchains/ethereum/assets/0x051cF5178f60e9DEf5d5a39b2a988a9f914107cB/info.json new file mode 100644 index 00000000..f55c62d0 --- /dev/null +++ b/blockchains/ethereum/assets/0x051cF5178f60e9DEf5d5a39b2a988a9f914107cB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Epstein Token", + "website": "https://epsteintoken.com", + "description": "Epstein didn't kill himself...he's hiding on the moon, and we’re going to find him and raise awareness on the way.", + "explorer": "https://etherscan.io/token/0x051cF5178f60e9DEf5d5a39b2a988a9f914107cB", + "type": "ERC20", + "symbol": "EPSTEIN", + "decimals": 18, + "status": "active", + "id": "0x051cF5178f60e9DEf5d5a39b2a988a9f914107cB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x051cF5178f60e9DEf5d5a39b2a988a9f914107cB/logo.png b/blockchains/ethereum/assets/0x051cF5178f60e9DEf5d5a39b2a988a9f914107cB/logo.png new file mode 100644 index 00000000..06190646 Binary files /dev/null and b/blockchains/ethereum/assets/0x051cF5178f60e9DEf5d5a39b2a988a9f914107cB/logo.png differ diff --git a/blockchains/ethereum/assets/0x052FE7E1B9C0eae5a4f55f307C77F31c391803e8/info.json b/blockchains/ethereum/assets/0x052FE7E1B9C0eae5a4f55f307C77F31c391803e8/info.json new file mode 100644 index 00000000..c222a020 --- /dev/null +++ b/blockchains/ethereum/assets/0x052FE7E1B9C0eae5a4f55f307C77F31c391803e8/info.json @@ -0,0 +1,11 @@ +{ + "name": "MOVEX Dollar", + "symbol": "MUSD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x052FE7E1B9C0eae5a4f55f307C77F31c391803e8", + "status": "abandoned", + "id": "0x052FE7E1B9C0eae5a4f55f307C77F31c391803e8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x052FE7E1B9C0eae5a4f55f307C77F31c391803e8/logo.png b/blockchains/ethereum/assets/0x052FE7E1B9C0eae5a4f55f307C77F31c391803e8/logo.png new file mode 100644 index 00000000..5808908a Binary files /dev/null and b/blockchains/ethereum/assets/0x052FE7E1B9C0eae5a4f55f307C77F31c391803e8/logo.png differ diff --git a/blockchains/ethereum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json b/blockchains/ethereum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json new file mode 100644 index 00000000..85becbd8 --- /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 00000000..861002db Binary files /dev/null and b/blockchains/ethereum/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/logo.png differ diff --git a/blockchains/ethereum/assets/0x05462671C05aDc39A6521fA60D5e9443e9E9d2B9/info.json b/blockchains/ethereum/assets/0x05462671C05aDc39A6521fA60D5e9443e9E9d2B9/info.json new file mode 100644 index 00000000..f8675b34 --- /dev/null +++ b/blockchains/ethereum/assets/0x05462671C05aDc39A6521fA60D5e9443e9E9d2B9/info.json @@ -0,0 +1,11 @@ +{ + "name": "USDf", + "website": "https://dollarprotocol.com", + "description": "USDf is a fractionally backed algorithmic stablecoin that is backed by collateral such as USDC and Gaia, the protocol's reserve asset.", + "explorer": "https://etherscan.io/token/0x05462671C05aDc39A6521fA60D5e9443e9E9d2B9", + "type": "ERC20", + "symbol": "USDf", + "decimals": 9, + "status": "active", + "id": "0x05462671C05aDc39A6521fA60D5e9443e9E9d2B9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05462671C05aDc39A6521fA60D5e9443e9E9d2B9/logo.png b/blockchains/ethereum/assets/0x05462671C05aDc39A6521fA60D5e9443e9E9d2B9/logo.png new file mode 100644 index 00000000..2a86d9c7 Binary files /dev/null and b/blockchains/ethereum/assets/0x05462671C05aDc39A6521fA60D5e9443e9E9d2B9/logo.png differ diff --git a/blockchains/ethereum/assets/0x054C64741dBafDC19784505494029823D89c3b13/info.json b/blockchains/ethereum/assets/0x054C64741dBafDC19784505494029823D89c3b13/info.json new file mode 100644 index 00000000..4f5fd0d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x054C64741dBafDC19784505494029823D89c3b13/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETERNAL TOKEN", + "symbol": "XET", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x054C64741dBafDC19784505494029823D89c3b13", + "status": "abandoned", + "id": "0x054C64741dBafDC19784505494029823D89c3b13" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x054C64741dBafDC19784505494029823D89c3b13/logo.png b/blockchains/ethereum/assets/0x054C64741dBafDC19784505494029823D89c3b13/logo.png new file mode 100644 index 00000000..5233e787 Binary files /dev/null and b/blockchains/ethereum/assets/0x054C64741dBafDC19784505494029823D89c3b13/logo.png differ diff --git a/blockchains/ethereum/assets/0x054D64b73d3D8A21Af3D764eFd76bCaA774f3Bb2/info.json b/blockchains/ethereum/assets/0x054D64b73d3D8A21Af3D764eFd76bCaA774f3Bb2/info.json new file mode 100644 index 00000000..26b3d146 --- /dev/null +++ b/blockchains/ethereum/assets/0x054D64b73d3D8A21Af3D764eFd76bCaA774f3Bb2/info.json @@ -0,0 +1,24 @@ +{ + "name": "PPAY", + "website": "https://plasma.finance", + "description": "PPAY: DeFi liquidity aggregator and Plasma.Finance portfolio dashboard.", + "explorer": "https://etherscan.io/token/0x054D64b73d3D8A21Af3D764eFd76bCaA774f3Bb2", + "type": "ERC20", + "symbol": "PPAY", + "decimals": 18, + "status": "active", + "id": "0x054D64b73d3D8A21Af3D764eFd76bCaA774f3Bb2", + "tags": [ + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/plasmadlt/PPAY-Governance" + }, + { + "name": "whitepaper", + "url": "https://docs.plasmapay.com/about/ppay-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x054D64b73d3D8A21Af3D764eFd76bCaA774f3Bb2/logo.png b/blockchains/ethereum/assets/0x054D64b73d3D8A21Af3D764eFd76bCaA774f3Bb2/logo.png new file mode 100644 index 00000000..126aa3ea Binary files /dev/null and b/blockchains/ethereum/assets/0x054D64b73d3D8A21Af3D764eFd76bCaA774f3Bb2/logo.png differ diff --git a/blockchains/ethereum/assets/0x054f76beED60AB6dBEb23502178C52d6C5dEbE40/info.json b/blockchains/ethereum/assets/0x054f76beED60AB6dBEb23502178C52d6C5dEbE40/info.json new file mode 100644 index 00000000..1340cb70 --- /dev/null +++ b/blockchains/ethereum/assets/0x054f76beED60AB6dBEb23502178C52d6C5dEbE40/info.json @@ -0,0 +1,17 @@ +{ + "name": "FIN", + "website": "https://definer.org/", + "description": "Earn interest and access instant loans through DeFiner’s noncustodial platform. Truly peer-to-peer. Secure. No middlemen.", + "explorer": "https://etherscan.io/token/0x054f76beED60AB6dBEb23502178C52d6C5dEbE40", + "type": "ERC20", + "symbol": "FIN", + "decimals": 18, + "status": "active", + "id": "0x054f76beED60AB6dBEb23502178C52d6C5dEbE40", + "links": [ + { + "name": "x", + "url": "https://x.com/DeFinerorg" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x054f76beED60AB6dBEb23502178C52d6C5dEbE40/logo.png b/blockchains/ethereum/assets/0x054f76beED60AB6dBEb23502178C52d6C5dEbE40/logo.png new file mode 100644 index 00000000..fb6c3728 Binary files /dev/null and b/blockchains/ethereum/assets/0x054f76beED60AB6dBEb23502178C52d6C5dEbE40/logo.png differ diff --git a/blockchains/ethereum/assets/0x055A0a8507949Aa3Fc323Ae001bdFcA36AE549cE/info.json b/blockchains/ethereum/assets/0x055A0a8507949Aa3Fc323Ae001bdFcA36AE549cE/info.json new file mode 100644 index 00000000..96eb4c9c --- /dev/null +++ b/blockchains/ethereum/assets/0x055A0a8507949Aa3Fc323Ae001bdFcA36AE549cE/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R862071", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x055A0a8507949Aa3Fc323Ae001bdFcA36AE549cE", + "status": "abandoned", + "id": "0x055A0a8507949Aa3Fc323Ae001bdFcA36AE549cE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x055A0a8507949Aa3Fc323Ae001bdFcA36AE549cE/logo.png b/blockchains/ethereum/assets/0x055A0a8507949Aa3Fc323Ae001bdFcA36AE549cE/logo.png new file mode 100644 index 00000000..845fc586 Binary files /dev/null and b/blockchains/ethereum/assets/0x055A0a8507949Aa3Fc323Ae001bdFcA36AE549cE/logo.png differ diff --git a/blockchains/ethereum/assets/0x0563DCe613D559a47877fFD1593549fb9d3510D6/info.json b/blockchains/ethereum/assets/0x0563DCe613D559a47877fFD1593549fb9d3510D6/info.json new file mode 100644 index 00000000..a65668d3 --- /dev/null +++ b/blockchains/ethereum/assets/0x0563DCe613D559a47877fFD1593549fb9d3510D6/info.json @@ -0,0 +1,11 @@ +{ + "name": "SuperBid", + "type": "ERC20", + "symbol": "SUPERBID", + "decimals": 18, + "website": "https://www.superbid.io", + "description": "SuperBid is an innovative social-auction app that connects influencers with their fans.", + "explorer": "https://etherscan.io/token/0x0563DCe613D559a47877fFD1593549fb9d3510D6", + "status": "active", + "id": "0x0563DCe613D559a47877fFD1593549fb9d3510D6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0563DCe613D559a47877fFD1593549fb9d3510D6/logo.png b/blockchains/ethereum/assets/0x0563DCe613D559a47877fFD1593549fb9d3510D6/logo.png new file mode 100644 index 00000000..373d3bac Binary files /dev/null and b/blockchains/ethereum/assets/0x0563DCe613D559a47877fFD1593549fb9d3510D6/logo.png differ diff --git a/blockchains/ethereum/assets/0x0569ae13ee0039Ac53C8457434288D92804DF820/info.json b/blockchains/ethereum/assets/0x0569ae13ee0039Ac53C8457434288D92804DF820/info.json new file mode 100644 index 00000000..82f25ad5 --- /dev/null +++ b/blockchains/ethereum/assets/0x0569ae13ee0039Ac53C8457434288D92804DF820/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrustEURO", + "symbol": "TEURO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0569ae13ee0039Ac53C8457434288D92804DF820", + "status": "abandoned", + "id": "0x0569ae13ee0039Ac53C8457434288D92804DF820" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0569ae13ee0039Ac53C8457434288D92804DF820/logo.png b/blockchains/ethereum/assets/0x0569ae13ee0039Ac53C8457434288D92804DF820/logo.png new file mode 100644 index 00000000..13ee6be2 Binary files /dev/null and b/blockchains/ethereum/assets/0x0569ae13ee0039Ac53C8457434288D92804DF820/logo.png differ diff --git a/blockchains/ethereum/assets/0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd/info.json b/blockchains/ethereum/assets/0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd/info.json new file mode 100644 index 00000000..e950a8f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd/info.json @@ -0,0 +1,36 @@ +{ + "name": "Gemini dollar", + "symbol": "GUSD", + "type": "ERC20", + "decimals": 2, + "description": "The 1:1 USD-backed stablecoin built by a secure, trusted, and regulated cryptocurrency exchange.", + "website": "https://gemini.com/dollar", + "explorer": "https://etherscan.io/token/0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd", + "status": "active", + "id": "0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/GeminiDotCom" + }, + { + "name": "x", + "url": "https://x.com/GeminiDotCom" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Gemini/" + }, + { + "name": "whitepaper", + "url": "https://gemini.com/dollar/whitepaper" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gemini-dollar/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd/logo.png b/blockchains/ethereum/assets/0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd/logo.png new file mode 100644 index 00000000..ccb71369 Binary files /dev/null and b/blockchains/ethereum/assets/0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd/logo.png differ diff --git a/blockchains/ethereum/assets/0x056dD20b01799E9C1952c7c9a5ff4409a6110085/info.json b/blockchains/ethereum/assets/0x056dD20b01799E9C1952c7c9a5ff4409a6110085/info.json new file mode 100644 index 00000000..f60bcfdc --- /dev/null +++ b/blockchains/ethereum/assets/0x056dD20b01799E9C1952c7c9a5ff4409a6110085/info.json @@ -0,0 +1,11 @@ +{ + "name": "WPPTOKEN", + "symbol": "WPP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://wppenergy.io", + "explorer": "https://etherscan.io/token/0x056dD20b01799E9C1952c7c9a5ff4409a6110085", + "status": "active", + "id": "0x056dD20b01799E9C1952c7c9a5ff4409a6110085" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x056dD20b01799E9C1952c7c9a5ff4409a6110085/logo.png b/blockchains/ethereum/assets/0x056dD20b01799E9C1952c7c9a5ff4409a6110085/logo.png new file mode 100644 index 00000000..8d26597e Binary files /dev/null and b/blockchains/ethereum/assets/0x056dD20b01799E9C1952c7c9a5ff4409a6110085/logo.png differ diff --git a/blockchains/ethereum/assets/0x0573E5acb7D65848564Cd81b69D1046BDf870244/info.json b/blockchains/ethereum/assets/0x0573E5acb7D65848564Cd81b69D1046BDf870244/info.json new file mode 100644 index 00000000..113e9c07 --- /dev/null +++ b/blockchains/ethereum/assets/0x0573E5acb7D65848564Cd81b69D1046BDf870244/info.json @@ -0,0 +1,11 @@ +{ + "name": "CAMS", + "symbol": "CAMS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0573E5acb7D65848564Cd81b69D1046BDf870244", + "status": "abandoned", + "id": "0x0573E5acb7D65848564Cd81b69D1046BDf870244" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0573E5acb7D65848564Cd81b69D1046BDf870244/logo.png b/blockchains/ethereum/assets/0x0573E5acb7D65848564Cd81b69D1046BDf870244/logo.png new file mode 100755 index 00000000..59de6727 Binary files /dev/null and b/blockchains/ethereum/assets/0x0573E5acb7D65848564Cd81b69D1046BDf870244/logo.png differ diff --git a/blockchains/ethereum/assets/0x05860d453C7974CbF46508c06CBA14e211c629Ce/info.json b/blockchains/ethereum/assets/0x05860d453C7974CbF46508c06CBA14e211c629Ce/info.json new file mode 100644 index 00000000..f467aefd --- /dev/null +++ b/blockchains/ethereum/assets/0x05860d453C7974CbF46508c06CBA14e211c629Ce/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eden Coin", + "symbol": "EDN", + "type": "ERC20", + "decimals": 18, + "description": "At EdenChain, we merge multiple IT technologies to provide the best digital asset platform service for leaders of the new digital economy.", + "website": "http://edenchain.io/", + "explorer": "https://etherscan.io/token/0x05860d453C7974CbF46508c06CBA14e211c629Ce", + "status": "active", + "id": "0x05860d453C7974CbF46508c06CBA14e211c629Ce" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05860d453C7974CbF46508c06CBA14e211c629Ce/logo.png b/blockchains/ethereum/assets/0x05860d453C7974CbF46508c06CBA14e211c629Ce/logo.png new file mode 100644 index 00000000..777d4f87 Binary files /dev/null and b/blockchains/ethereum/assets/0x05860d453C7974CbF46508c06CBA14e211c629Ce/logo.png differ diff --git a/blockchains/ethereum/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json b/blockchains/ethereum/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json new file mode 100644 index 00000000..1b713e34 --- /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 00000000..1759e67f Binary files /dev/null and b/blockchains/ethereum/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/logo.png differ diff --git a/blockchains/ethereum/assets/0x058Ef0Ba85E053e55d357C8A95BC6Ea7458Def8a/info.json b/blockchains/ethereum/assets/0x058Ef0Ba85E053e55d357C8A95BC6Ea7458Def8a/info.json new file mode 100644 index 00000000..955ff64c --- /dev/null +++ b/blockchains/ethereum/assets/0x058Ef0Ba85E053e55d357C8A95BC6Ea7458Def8a/info.json @@ -0,0 +1,11 @@ +{ + "name": "TradeKax", + "symbol": "TKX", + "type": "ERC20", + "decimals": 18, + "description": "TradeKax is a platform that encompasses all features of a digital economic system based on cryptocurrency.TheTradeKax platform is made up of core elements, such as a new wallet and a cryptocurrency exchange.", + "website": "https://www.tradekax.com/", + "explorer": "https://etherscan.io/token/0x058Ef0Ba85E053e55d357C8A95BC6Ea7458Def8a", + "status": "active", + "id": "0x058Ef0Ba85E053e55d357C8A95BC6Ea7458Def8a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x058Ef0Ba85E053e55d357C8A95BC6Ea7458Def8a/logo.png b/blockchains/ethereum/assets/0x058Ef0Ba85E053e55d357C8A95BC6Ea7458Def8a/logo.png new file mode 100644 index 00000000..c89019eb Binary files /dev/null and b/blockchains/ethereum/assets/0x058Ef0Ba85E053e55d357C8A95BC6Ea7458Def8a/logo.png differ diff --git a/blockchains/ethereum/assets/0x058ed4EDFD0Ca7147e34a30fa4Dd9907B0c9C4ba/info.json b/blockchains/ethereum/assets/0x058ed4EDFD0Ca7147e34a30fa4Dd9907B0c9C4ba/info.json new file mode 100644 index 00000000..1e021c64 --- /dev/null +++ b/blockchains/ethereum/assets/0x058ed4EDFD0Ca7147e34a30fa4Dd9907B0c9C4ba/info.json @@ -0,0 +1,11 @@ +{ + "name": "VipGo", + "symbol": "VIPG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x058ed4EDFD0Ca7147e34a30fa4Dd9907B0c9C4ba", + "status": "abandoned", + "id": "0x058ed4EDFD0Ca7147e34a30fa4Dd9907B0c9C4ba" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x058ed4EDFD0Ca7147e34a30fa4Dd9907B0c9C4ba/logo.png b/blockchains/ethereum/assets/0x058ed4EDFD0Ca7147e34a30fa4Dd9907B0c9C4ba/logo.png new file mode 100644 index 00000000..e97c3bd1 Binary files /dev/null and b/blockchains/ethereum/assets/0x058ed4EDFD0Ca7147e34a30fa4Dd9907B0c9C4ba/logo.png differ diff --git a/blockchains/ethereum/assets/0x05984006707585F66465e8A6505341f46b64fA7A/info.json b/blockchains/ethereum/assets/0x05984006707585F66465e8A6505341f46b64fA7A/info.json new file mode 100644 index 00000000..cb99436c --- /dev/null +++ b/blockchains/ethereum/assets/0x05984006707585F66465e8A6505341f46b64fA7A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nam Coin", + "symbol": "NAM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x05984006707585F66465e8A6505341f46b64fA7A", + "status": "abandoned", + "id": "0x05984006707585F66465e8A6505341f46b64fA7A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05984006707585F66465e8A6505341f46b64fA7A/logo.png b/blockchains/ethereum/assets/0x05984006707585F66465e8A6505341f46b64fA7A/logo.png new file mode 100644 index 00000000..b8d77984 Binary files /dev/null and b/blockchains/ethereum/assets/0x05984006707585F66465e8A6505341f46b64fA7A/logo.png differ diff --git a/blockchains/ethereum/assets/0x0598C2Fdd3a0564970A86B69C72a6C57077c84bb/info.json b/blockchains/ethereum/assets/0x0598C2Fdd3a0564970A86B69C72a6C57077c84bb/info.json new file mode 100644 index 00000000..c3824831 --- /dev/null +++ b/blockchains/ethereum/assets/0x0598C2Fdd3a0564970A86B69C72a6C57077c84bb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Syariahcoin", + "symbol": "SYCO", + "type": "ERC20", + "decimals": 8, + "description": "Syariahcoin or known as Syco, is the new Cryptocurrency with the best technology of token, it's deployed using the best Coding of Token, Standard ERC20 Ethash system, with a very Safe system Blockchain.", + "website": "https://www.syariahcoin.com/", + "explorer": "https://etherscan.io/token/0x0598C2Fdd3a0564970A86B69C72a6C57077c84bb", + "status": "abandoned", + "id": "0x0598C2Fdd3a0564970A86B69C72a6C57077c84bb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0598C2Fdd3a0564970A86B69C72a6C57077c84bb/logo.png b/blockchains/ethereum/assets/0x0598C2Fdd3a0564970A86B69C72a6C57077c84bb/logo.png new file mode 100644 index 00000000..7ae5b323 Binary files /dev/null and b/blockchains/ethereum/assets/0x0598C2Fdd3a0564970A86B69C72a6C57077c84bb/logo.png differ diff --git a/blockchains/ethereum/assets/0x05B550aA35515F5B55D7e019776B2F8E2f12E33B/info.json b/blockchains/ethereum/assets/0x05B550aA35515F5B55D7e019776B2F8E2f12E33B/info.json new file mode 100644 index 00000000..afb015b2 --- /dev/null +++ b/blockchains/ethereum/assets/0x05B550aA35515F5B55D7e019776B2F8E2f12E33B/info.json @@ -0,0 +1,11 @@ +{ + "name": "SKY SOOM", + "symbol": "SKYS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x05B550aA35515F5B55D7e019776B2F8E2f12E33B", + "status": "abandoned", + "id": "0x05B550aA35515F5B55D7e019776B2F8E2f12E33B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05B550aA35515F5B55D7e019776B2F8E2f12E33B/logo.png b/blockchains/ethereum/assets/0x05B550aA35515F5B55D7e019776B2F8E2f12E33B/logo.png new file mode 100644 index 00000000..51993555 Binary files /dev/null and b/blockchains/ethereum/assets/0x05B550aA35515F5B55D7e019776B2F8E2f12E33B/logo.png differ diff --git a/blockchains/ethereum/assets/0x05BBeD16620B352A7F889E23E3Cf427D1D379FFE/info.json b/blockchains/ethereum/assets/0x05BBeD16620B352A7F889E23E3Cf427D1D379FFE/info.json new file mode 100644 index 00000000..9d23bb83 --- /dev/null +++ b/blockchains/ethereum/assets/0x05BBeD16620B352A7F889E23E3Cf427D1D379FFE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Naira Token", + "symbol": "NGNT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x05BBeD16620B352A7F889E23E3Cf427D1D379FFE", + "status": "abandoned", + "id": "0x05BBeD16620B352A7F889E23E3Cf427D1D379FFE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05BBeD16620B352A7F889E23E3Cf427D1D379FFE/logo.png b/blockchains/ethereum/assets/0x05BBeD16620B352A7F889E23E3Cf427D1D379FFE/logo.png new file mode 100644 index 00000000..b3b8d79c Binary files /dev/null and b/blockchains/ethereum/assets/0x05BBeD16620B352A7F889E23E3Cf427D1D379FFE/logo.png differ diff --git a/blockchains/ethereum/assets/0x05C7065d644096a4E4C3FE24AF86e36dE021074b/info.json b/blockchains/ethereum/assets/0x05C7065d644096a4E4C3FE24AF86e36dE021074b/info.json new file mode 100644 index 00000000..26ba1783 --- /dev/null +++ b/blockchains/ethereum/assets/0x05C7065d644096a4E4C3FE24AF86e36dE021074b/info.json @@ -0,0 +1,11 @@ +{ + "name": "LendConnect Token", + "symbol": "LCT", + "type": "ERC20", + "decimals": 18, + "description": "LendConnect ICO is another leading platform with a unique twist. LendConnect puts all the other lending platforms together in one unique place with one coin called LendConnect (LCT).", + "website": "https://lendconnect.io/", + "explorer": "https://etherscan.io/token/0x05C7065d644096a4E4C3FE24AF86e36dE021074b", + "status": "abandoned", + "id": "0x05C7065d644096a4E4C3FE24AF86e36dE021074b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05C7065d644096a4E4C3FE24AF86e36dE021074b/logo.png b/blockchains/ethereum/assets/0x05C7065d644096a4E4C3FE24AF86e36dE021074b/logo.png new file mode 100644 index 00000000..91ef8621 Binary files /dev/null and b/blockchains/ethereum/assets/0x05C7065d644096a4E4C3FE24AF86e36dE021074b/logo.png differ diff --git a/blockchains/ethereum/assets/0x05CD15f3D1e046160494639222517D910A25Ca34/info.json b/blockchains/ethereum/assets/0x05CD15f3D1e046160494639222517D910A25Ca34/info.json new file mode 100644 index 00000000..09a130cd --- /dev/null +++ b/blockchains/ethereum/assets/0x05CD15f3D1e046160494639222517D910A25Ca34/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 203-CN24", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x05CD15f3D1e046160494639222517D910A25Ca34", + "status": "abandoned", + "id": "0x05CD15f3D1e046160494639222517D910A25Ca34" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05CD15f3D1e046160494639222517D910A25Ca34/logo.png b/blockchains/ethereum/assets/0x05CD15f3D1e046160494639222517D910A25Ca34/logo.png new file mode 100644 index 00000000..8e4541f8 Binary files /dev/null and b/blockchains/ethereum/assets/0x05CD15f3D1e046160494639222517D910A25Ca34/logo.png differ diff --git a/blockchains/ethereum/assets/0x05D27CdD23E22ca63e7f9c7C6D1B79ede9C4fCF5/info.json b/blockchains/ethereum/assets/0x05D27CdD23E22ca63e7f9c7C6D1B79ede9C4fCF5/info.json new file mode 100644 index 00000000..040e4495 --- /dev/null +++ b/blockchains/ethereum/assets/0x05D27CdD23E22ca63e7f9c7C6D1B79ede9C4fCF5/info.json @@ -0,0 +1,29 @@ +{ + "name": "Yearn Finance Passive Income", + "website": "https://yfpi.finance/", + "description": "YEARN FINANCE PASSIVE INCOME (YFPI) is a Governance token. Users who stake YFPI tokens can vote for potential product upgrades, releases, and parameter fixes.", + "explorer": "https://etherscan.io/token/0x05D27CdD23E22ca63e7f9c7C6D1B79ede9C4fCF5", + "type": "ERC20", + "symbol": "YFPI", + "decimals": 18, + "status": "active", + "id": "0x05D27CdD23E22ca63e7f9c7C6D1B79ede9C4fCF5", + "links": [ + { + "name": "github", + "url": "https://github.com/yfpi" + }, + { + "name": "x", + "url": "https://x.com/YFPIncome" + }, + { + "name": "telegram", + "url": "https://t.me/YF_PI" + }, + { + "name": "medium", + "url": "https://medium.com/@yfpincome" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05D27CdD23E22ca63e7f9c7C6D1B79ede9C4fCF5/logo.png b/blockchains/ethereum/assets/0x05D27CdD23E22ca63e7f9c7C6D1B79ede9C4fCF5/logo.png new file mode 100644 index 00000000..5d884d57 Binary files /dev/null and b/blockchains/ethereum/assets/0x05D27CdD23E22ca63e7f9c7C6D1B79ede9C4fCF5/logo.png differ diff --git a/blockchains/ethereum/assets/0x05D3606d5c81EB9b7B18530995eC9B29da05FaBa/info.json b/blockchains/ethereum/assets/0x05D3606d5c81EB9b7B18530995eC9B29da05FaBa/info.json new file mode 100644 index 00000000..b95cad17 --- /dev/null +++ b/blockchains/ethereum/assets/0x05D3606d5c81EB9b7B18530995eC9B29da05FaBa/info.json @@ -0,0 +1,11 @@ +{ + "name": "TomoChain", + "website": "https://tomochain.com", + "description": "TomoChain cross-chain token", + "explorer": "https://etherscan.io/token/0x05D3606d5c81EB9b7B18530995eC9B29da05FaBa", + "type": "ERC20", + "symbol": "TOMOE", + "decimals": 18, + "status": "active", + "id": "0x05D3606d5c81EB9b7B18530995eC9B29da05FaBa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05D3606d5c81EB9b7B18530995eC9B29da05FaBa/logo.png b/blockchains/ethereum/assets/0x05D3606d5c81EB9b7B18530995eC9B29da05FaBa/logo.png new file mode 100644 index 00000000..b0c4587b Binary files /dev/null and b/blockchains/ethereum/assets/0x05D3606d5c81EB9b7B18530995eC9B29da05FaBa/logo.png differ diff --git a/blockchains/ethereum/assets/0x05DAa40dD9E808032d7733d6AA048959dfd486ed/info.json b/blockchains/ethereum/assets/0x05DAa40dD9E808032d7733d6AA048959dfd486ed/info.json new file mode 100644 index 00000000..9492dfa0 --- /dev/null +++ b/blockchains/ethereum/assets/0x05DAa40dD9E808032d7733d6AA048959dfd486ed/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fluent Token", + "symbol": "FLT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x05DAa40dD9E808032d7733d6AA048959dfd486ed", + "status": "abandoned", + "id": "0x05DAa40dD9E808032d7733d6AA048959dfd486ed" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05DAa40dD9E808032d7733d6AA048959dfd486ed/logo.png b/blockchains/ethereum/assets/0x05DAa40dD9E808032d7733d6AA048959dfd486ed/logo.png new file mode 100644 index 00000000..f01d8ce0 Binary files /dev/null and b/blockchains/ethereum/assets/0x05DAa40dD9E808032d7733d6AA048959dfd486ed/logo.png differ diff --git a/blockchains/ethereum/assets/0x05E886072Ec32A5D4273cE451483A7693CB812e4/info.json b/blockchains/ethereum/assets/0x05E886072Ec32A5D4273cE451483A7693CB812e4/info.json new file mode 100644 index 00000000..cc300146 --- /dev/null +++ b/blockchains/ethereum/assets/0x05E886072Ec32A5D4273cE451483A7693CB812e4/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitStone", + "symbol": "BTN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x05E886072Ec32A5D4273cE451483A7693CB812e4", + "status": "abandoned", + "id": "0x05E886072Ec32A5D4273cE451483A7693CB812e4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05E886072Ec32A5D4273cE451483A7693CB812e4/logo.png b/blockchains/ethereum/assets/0x05E886072Ec32A5D4273cE451483A7693CB812e4/logo.png new file mode 100644 index 00000000..c1ab8cb8 Binary files /dev/null and b/blockchains/ethereum/assets/0x05E886072Ec32A5D4273cE451483A7693CB812e4/logo.png differ diff --git a/blockchains/ethereum/assets/0x05Ec93c0365baAeAbF7AefFb0972ea7ECdD39CF1/info.json b/blockchains/ethereum/assets/0x05Ec93c0365baAeAbF7AefFb0972ea7ECdD39CF1/info.json new file mode 100644 index 00000000..93100af1 --- /dev/null +++ b/blockchains/ethereum/assets/0x05Ec93c0365baAeAbF7AefFb0972ea7ECdD39CF1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave BAT", + "symbol": "aBAT", + "type": "ERC20", + "decimals": 18, + "description": "Aave BAT is an interest bearing token pegged 1:1 to the underlying BAT deposited in Aave. aBAT accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x05Ec93c0365baAeAbF7AefFb0972ea7ECdD39CF1", + "status": "active", + "id": "0x05Ec93c0365baAeAbF7AefFb0972ea7ECdD39CF1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05Ec93c0365baAeAbF7AefFb0972ea7ECdD39CF1/logo.png b/blockchains/ethereum/assets/0x05Ec93c0365baAeAbF7AefFb0972ea7ECdD39CF1/logo.png new file mode 100644 index 00000000..5b0c7e23 Binary files /dev/null and b/blockchains/ethereum/assets/0x05Ec93c0365baAeAbF7AefFb0972ea7ECdD39CF1/logo.png differ diff --git a/blockchains/ethereum/assets/0x05Fb86775Fd5c16290f1E838F5caaa7342bD9a63/info.json b/blockchains/ethereum/assets/0x05Fb86775Fd5c16290f1E838F5caaa7342bD9a63/info.json new file mode 100644 index 00000000..d3723ac9 --- /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 00000000..008ae2ac Binary files /dev/null and b/blockchains/ethereum/assets/0x05Fb86775Fd5c16290f1E838F5caaa7342bD9a63/logo.png differ diff --git a/blockchains/ethereum/assets/0x05aAaA829Afa407D83315cDED1d45EB16025910c/info.json b/blockchains/ethereum/assets/0x05aAaA829Afa407D83315cDED1d45EB16025910c/info.json new file mode 100644 index 00000000..46d88465 --- /dev/null +++ b/blockchains/ethereum/assets/0x05aAaA829Afa407D83315cDED1d45EB16025910c/info.json @@ -0,0 +1,11 @@ +{ + "name": "SP8DE Token", + "symbol": "SPX", + "type": "ERC20", + "decimals": 18, + "description": "Sp8de - implemented within a protocol created and maintained by the scientists - pioneers in the realm of blockchain innovation and cryptography development, has its aim to revolutionize the ever-growing gaming industry as we know it today using the Cardano blockchain.", + "website": "https://sp8de.com/", + "explorer": "https://etherscan.io/token/0x05aAaA829Afa407D83315cDED1d45EB16025910c", + "status": "active", + "id": "0x05aAaA829Afa407D83315cDED1d45EB16025910c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05aAaA829Afa407D83315cDED1d45EB16025910c/logo.png b/blockchains/ethereum/assets/0x05aAaA829Afa407D83315cDED1d45EB16025910c/logo.png new file mode 100755 index 00000000..71ba7f8e Binary files /dev/null and b/blockchains/ethereum/assets/0x05aAaA829Afa407D83315cDED1d45EB16025910c/logo.png differ diff --git a/blockchains/ethereum/assets/0x05b8cb3F1f1F46cEAE3187c56AF5B223CF2D831A/info.json b/blockchains/ethereum/assets/0x05b8cb3F1f1F46cEAE3187c56AF5B223CF2D831A/info.json new file mode 100644 index 00000000..f5afbfa5 --- /dev/null +++ b/blockchains/ethereum/assets/0x05b8cb3F1f1F46cEAE3187c56AF5B223CF2D831A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin ATM", + "symbol": "BATM", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x05b8cb3F1f1F46cEAE3187c56AF5B223CF2D831A", + "status": "abandoned", + "id": "0x05b8cb3F1f1F46cEAE3187c56AF5B223CF2D831A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05b8cb3F1f1F46cEAE3187c56AF5B223CF2D831A/logo.png b/blockchains/ethereum/assets/0x05b8cb3F1f1F46cEAE3187c56AF5B223CF2D831A/logo.png new file mode 100644 index 00000000..bd897c34 Binary files /dev/null and b/blockchains/ethereum/assets/0x05b8cb3F1f1F46cEAE3187c56AF5B223CF2D831A/logo.png differ diff --git a/blockchains/ethereum/assets/0x05cA0E11e7C183Dd01131Cd8Bb00c87464B7a285/info.json b/blockchains/ethereum/assets/0x05cA0E11e7C183Dd01131Cd8Bb00c87464B7a285/info.json new file mode 100644 index 00000000..ef131375 --- /dev/null +++ b/blockchains/ethereum/assets/0x05cA0E11e7C183Dd01131Cd8Bb00c87464B7a285/info.json @@ -0,0 +1,11 @@ +{ + "name": "Entercoin", + "symbol": "ENTER", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x05cA0E11e7C183Dd01131Cd8Bb00c87464B7a285", + "status": "abandoned", + "id": "0x05cA0E11e7C183Dd01131Cd8Bb00c87464B7a285" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05cA0E11e7C183Dd01131Cd8Bb00c87464B7a285/logo.png b/blockchains/ethereum/assets/0x05cA0E11e7C183Dd01131Cd8Bb00c87464B7a285/logo.png new file mode 100644 index 00000000..3eb7ce73 Binary files /dev/null and b/blockchains/ethereum/assets/0x05cA0E11e7C183Dd01131Cd8Bb00c87464B7a285/logo.png differ diff --git a/blockchains/ethereum/assets/0x05f226755b11cB3666340551EbBAa615CDFEFdD6/info.json b/blockchains/ethereum/assets/0x05f226755b11cB3666340551EbBAa615CDFEFdD6/info.json new file mode 100644 index 00000000..c93eeacc --- /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 00000000..00724db0 Binary files /dev/null and b/blockchains/ethereum/assets/0x05f226755b11cB3666340551EbBAa615CDFEFdD6/logo.png differ diff --git a/blockchains/ethereum/assets/0x05f4a42e251f2d52b8ed15E9FEdAacFcEF1FAD27/info.json b/blockchains/ethereum/assets/0x05f4a42e251f2d52b8ed15E9FEdAacFcEF1FAD27/info.json new file mode 100644 index 00000000..3f16b3b4 --- /dev/null +++ b/blockchains/ethereum/assets/0x05f4a42e251f2d52b8ed15E9FEdAacFcEF1FAD27/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zilliqa", + "symbol": "ZIL", + "type": "ERC20", + "decimals": 12, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x05f4a42e251f2d52b8ed15E9FEdAacFcEF1FAD27", + "status": "abandoned", + "id": "0x05f4a42e251f2d52b8ed15E9FEdAacFcEF1FAD27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x05f4a42e251f2d52b8ed15E9FEdAacFcEF1FAD27/logo.png b/blockchains/ethereum/assets/0x05f4a42e251f2d52b8ed15E9FEdAacFcEF1FAD27/logo.png new file mode 100644 index 00000000..66e6edaa Binary files /dev/null and b/blockchains/ethereum/assets/0x05f4a42e251f2d52b8ed15E9FEdAacFcEF1FAD27/logo.png differ diff --git a/blockchains/ethereum/assets/0x060505527C83E8BfEb9b4Ff08248B82e688800F1/info.json b/blockchains/ethereum/assets/0x060505527C83E8BfEb9b4Ff08248B82e688800F1/info.json new file mode 100644 index 00000000..70e188a1 --- /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 00000000..40883cd3 Binary files /dev/null and b/blockchains/ethereum/assets/0x060505527C83E8BfEb9b4Ff08248B82e688800F1/logo.png differ diff --git a/blockchains/ethereum/assets/0x060e49653d5693a00f9037e3E66251eAD60b3Ba1/info.json b/blockchains/ethereum/assets/0x060e49653d5693a00f9037e3E66251eAD60b3Ba1/info.json new file mode 100644 index 00000000..e434ee38 --- /dev/null +++ b/blockchains/ethereum/assets/0x060e49653d5693a00f9037e3E66251eAD60b3Ba1/info.json @@ -0,0 +1,11 @@ +{ + "name": "ICONN", + "symbol": "ICONN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x060e49653d5693a00f9037e3E66251eAD60b3Ba1", + "status": "abandoned", + "id": "0x060e49653d5693a00f9037e3E66251eAD60b3Ba1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x060e49653d5693a00f9037e3E66251eAD60b3Ba1/logo.png b/blockchains/ethereum/assets/0x060e49653d5693a00f9037e3E66251eAD60b3Ba1/logo.png new file mode 100644 index 00000000..29f236c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x060e49653d5693a00f9037e3E66251eAD60b3Ba1/logo.png differ diff --git a/blockchains/ethereum/assets/0x06147110022B768BA8F99A8f385df11a151A9cc8/info.json b/blockchains/ethereum/assets/0x06147110022B768BA8F99A8f385df11a151A9cc8/info.json new file mode 100644 index 00000000..9b03a246 --- /dev/null +++ b/blockchains/ethereum/assets/0x06147110022B768BA8F99A8f385df11a151A9cc8/info.json @@ -0,0 +1,11 @@ +{ + "name": "ACE Token", + "symbol": "ACE", + "type": "ERC20", + "decimals": 0, + "description": "TokenStars is the talent management platform (tennis), that connects stars, fans and advertisers.", + "website": "https://tokenstars.com/", + "explorer": "https://etherscan.io/token/0x06147110022B768BA8F99A8f385df11a151A9cc8", + "status": "active", + "id": "0x06147110022B768BA8F99A8f385df11a151A9cc8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x06147110022B768BA8F99A8f385df11a151A9cc8/logo.png b/blockchains/ethereum/assets/0x06147110022B768BA8F99A8f385df11a151A9cc8/logo.png new file mode 100644 index 00000000..6938dc42 Binary files /dev/null and b/blockchains/ethereum/assets/0x06147110022B768BA8F99A8f385df11a151A9cc8/logo.png differ diff --git a/blockchains/ethereum/assets/0x062344Dc7fBE2cB6a14EAf84B613aF64684252bf/info.json b/blockchains/ethereum/assets/0x062344Dc7fBE2cB6a14EAf84B613aF64684252bf/info.json new file mode 100644 index 00000000..c362f92e --- /dev/null +++ b/blockchains/ethereum/assets/0x062344Dc7fBE2cB6a14EAf84B613aF64684252bf/info.json @@ -0,0 +1,11 @@ +{ + "name": "币胜币", + "symbol": "BSB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x062344Dc7fBE2cB6a14EAf84B613aF64684252bf", + "status": "abandoned", + "id": "0x062344Dc7fBE2cB6a14EAf84B613aF64684252bf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x062344Dc7fBE2cB6a14EAf84B613aF64684252bf/logo.png b/blockchains/ethereum/assets/0x062344Dc7fBE2cB6a14EAf84B613aF64684252bf/logo.png new file mode 100644 index 00000000..37b27d30 Binary files /dev/null and b/blockchains/ethereum/assets/0x062344Dc7fBE2cB6a14EAf84B613aF64684252bf/logo.png differ diff --git a/blockchains/ethereum/assets/0x062e3Be6a7C56A395b1881A0cD69A4923Ade4fa2/info.json b/blockchains/ethereum/assets/0x062e3Be6a7C56A395b1881A0cD69A4923Ade4fa2/info.json new file mode 100644 index 00000000..53f21c97 --- /dev/null +++ b/blockchains/ethereum/assets/0x062e3Be6a7C56A395b1881A0cD69A4923Ade4fa2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bowl A Coin", + "symbol": "BAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bowlacoin.com/", + "explorer": "https://etherscan.io/token/0x062e3Be6a7C56A395b1881A0cD69A4923Ade4fa2", + "status": "abandoned", + "id": "0x062e3Be6a7C56A395b1881A0cD69A4923Ade4fa2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x062e3Be6a7C56A395b1881A0cD69A4923Ade4fa2/logo.png b/blockchains/ethereum/assets/0x062e3Be6a7C56A395b1881A0cD69A4923Ade4fa2/logo.png new file mode 100755 index 00000000..1d29b5f4 Binary files /dev/null and b/blockchains/ethereum/assets/0x062e3Be6a7C56A395b1881A0cD69A4923Ade4fa2/logo.png differ diff --git a/blockchains/ethereum/assets/0x062f78C886547F5f6FE337F37232573eC01D5363/info.json b/blockchains/ethereum/assets/0x062f78C886547F5f6FE337F37232573eC01D5363/info.json new file mode 100644 index 00000000..9d290c6b --- /dev/null +++ b/blockchains/ethereum/assets/0x062f78C886547F5f6FE337F37232573eC01D5363/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R818672", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x062f78C886547F5f6FE337F37232573eC01D5363", + "status": "abandoned", + "id": "0x062f78C886547F5f6FE337F37232573eC01D5363" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x062f78C886547F5f6FE337F37232573eC01D5363/logo.png b/blockchains/ethereum/assets/0x062f78C886547F5f6FE337F37232573eC01D5363/logo.png new file mode 100644 index 00000000..6daa7341 Binary files /dev/null and b/blockchains/ethereum/assets/0x062f78C886547F5f6FE337F37232573eC01D5363/logo.png differ diff --git a/blockchains/ethereum/assets/0x06301057D77D54B6e14c7FafFB11Ffc7Cab4eaa7/info.json b/blockchains/ethereum/assets/0x06301057D77D54B6e14c7FafFB11Ffc7Cab4eaa7/info.json new file mode 100644 index 00000000..3afb317d --- /dev/null +++ b/blockchains/ethereum/assets/0x06301057D77D54B6e14c7FafFB11Ffc7Cab4eaa7/info.json @@ -0,0 +1,11 @@ +{ + "name": "DMM: DAI", + "symbol": "mDAI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x06301057D77D54B6e14c7FafFB11Ffc7Cab4eaa7", + "status": "abandoned", + "id": "0x06301057D77D54B6e14c7FafFB11Ffc7Cab4eaa7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x06301057D77D54B6e14c7FafFB11Ffc7Cab4eaa7/logo.png b/blockchains/ethereum/assets/0x06301057D77D54B6e14c7FafFB11Ffc7Cab4eaa7/logo.png new file mode 100644 index 00000000..3f4765c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x06301057D77D54B6e14c7FafFB11Ffc7Cab4eaa7/logo.png differ diff --git a/blockchains/ethereum/assets/0x063b98a414EAA1D4a5D4fC235a22db1427199024/info.json b/blockchains/ethereum/assets/0x063b98a414EAA1D4a5D4fC235a22db1427199024/info.json new file mode 100644 index 00000000..7022c356 --- /dev/null +++ b/blockchains/ethereum/assets/0x063b98a414EAA1D4a5D4fC235a22db1427199024/info.json @@ -0,0 +1,11 @@ +{ + "name": "VOMER", + "symbol": "VMR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x063b98a414EAA1D4a5D4fC235a22db1427199024", + "status": "abandoned", + "id": "0x063b98a414EAA1D4a5D4fC235a22db1427199024" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x063b98a414EAA1D4a5D4fC235a22db1427199024/logo.png b/blockchains/ethereum/assets/0x063b98a414EAA1D4a5D4fC235a22db1427199024/logo.png new file mode 100644 index 00000000..35c867dc Binary files /dev/null and b/blockchains/ethereum/assets/0x063b98a414EAA1D4a5D4fC235a22db1427199024/logo.png differ diff --git a/blockchains/ethereum/assets/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8/info.json b/blockchains/ethereum/assets/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8/info.json new file mode 100644 index 00000000..df35c41f --- /dev/null +++ b/blockchains/ethereum/assets/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8/info.json @@ -0,0 +1,25 @@ +{ + "name": "XEN Crypto", + "symbol": "XEN", + "type": "ERC20", + "decimals": 18, + "description": "XEN aims to become a community-building crypto asset that connects like minded people together and provide the lowest barrier to entry through its unique tokenomics.", + "website": "https://xen.network/", + "explorer": "https://etherscan.io/token/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8", + "status": "active", + "id": "0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8", + "links": [ + { + "name": "x", + "url": "https://x.com/XEN_Crypto" + }, + { + "name": "telegram", + "url": "https://t.me/XENCryptoTalk" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xen-crypto/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8/logo.png b/blockchains/ethereum/assets/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8/logo.png new file mode 100644 index 00000000..78379574 Binary files /dev/null and b/blockchains/ethereum/assets/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8/logo.png differ diff --git a/blockchains/ethereum/assets/0x0649Cef6D11ed6F88535462E147304d3FE5ae14D/info.json b/blockchains/ethereum/assets/0x0649Cef6D11ed6F88535462E147304d3FE5ae14D/info.json new file mode 100644 index 00000000..1bff0b6f --- /dev/null +++ b/blockchains/ethereum/assets/0x0649Cef6D11ed6F88535462E147304d3FE5ae14D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Bitkub Token", + "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 00000000..814e5d37 Binary files /dev/null and b/blockchains/ethereum/assets/0x0649Cef6D11ed6F88535462E147304d3FE5ae14D/logo.png differ diff --git a/blockchains/ethereum/assets/0x064fA27612E080d3460dd1c62cFF88687D56942E/info.json b/blockchains/ethereum/assets/0x064fA27612E080d3460dd1c62cFF88687D56942E/info.json new file mode 100644 index 00000000..0c7e0dfc --- /dev/null +++ b/blockchains/ethereum/assets/0x064fA27612E080d3460dd1c62cFF88687D56942E/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlockAid Backed Token", + "symbol": "BACK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x064fA27612E080d3460dd1c62cFF88687D56942E", + "status": "abandoned", + "id": "0x064fA27612E080d3460dd1c62cFF88687D56942E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x064fA27612E080d3460dd1c62cFF88687D56942E/logo.png b/blockchains/ethereum/assets/0x064fA27612E080d3460dd1c62cFF88687D56942E/logo.png new file mode 100644 index 00000000..a996027e Binary files /dev/null and b/blockchains/ethereum/assets/0x064fA27612E080d3460dd1c62cFF88687D56942E/logo.png differ diff --git a/blockchains/ethereum/assets/0x0655977FEb2f289A4aB78af67BAB0d17aAb84367/info.json b/blockchains/ethereum/assets/0x0655977FEb2f289A4aB78af67BAB0d17aAb84367/info.json new file mode 100644 index 00000000..04778fe7 --- /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 00000000..7b0e566c Binary files /dev/null and b/blockchains/ethereum/assets/0x0655977FEb2f289A4aB78af67BAB0d17aAb84367/logo.png differ diff --git a/blockchains/ethereum/assets/0x066798d9ef0833ccc719076Dab77199eCbd178b0/info.json b/blockchains/ethereum/assets/0x066798d9ef0833ccc719076Dab77199eCbd178b0/info.json new file mode 100644 index 00000000..7c5ff150 --- /dev/null +++ b/blockchains/ethereum/assets/0x066798d9ef0833ccc719076Dab77199eCbd178b0/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAKE", + "website": "https://sakeswap.finance/", + "description": "sakeswap DAO token", + "explorer": "https://etherscan.io/token/0x066798d9ef0833ccc719076Dab77199eCbd178b0", + "type": "ERC20", + "symbol": "SAKE", + "decimals": 18, + "status": "active", + "id": "0x066798d9ef0833ccc719076Dab77199eCbd178b0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x066798d9ef0833ccc719076Dab77199eCbd178b0/logo.png b/blockchains/ethereum/assets/0x066798d9ef0833ccc719076Dab77199eCbd178b0/logo.png new file mode 100644 index 00000000..4e552fdb Binary files /dev/null and b/blockchains/ethereum/assets/0x066798d9ef0833ccc719076Dab77199eCbd178b0/logo.png differ diff --git a/blockchains/ethereum/assets/0x068578338B146D64727428954cc348Cf92d9Ba88/info.json b/blockchains/ethereum/assets/0x068578338B146D64727428954cc348Cf92d9Ba88/info.json new file mode 100644 index 00000000..6885c50b --- /dev/null +++ b/blockchains/ethereum/assets/0x068578338B146D64727428954cc348Cf92d9Ba88/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitcoinETH", + "symbol": "BTCE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x068578338B146D64727428954cc348Cf92d9Ba88", + "status": "abandoned", + "id": "0x068578338B146D64727428954cc348Cf92d9Ba88" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x068578338B146D64727428954cc348Cf92d9Ba88/logo.png b/blockchains/ethereum/assets/0x068578338B146D64727428954cc348Cf92d9Ba88/logo.png new file mode 100644 index 00000000..d5ce9a8d Binary files /dev/null and b/blockchains/ethereum/assets/0x068578338B146D64727428954cc348Cf92d9Ba88/logo.png differ diff --git a/blockchains/ethereum/assets/0x0692481C369E2BDc728A69ae31b848343a4567Be/info.json b/blockchains/ethereum/assets/0x0692481C369E2BDc728A69ae31b848343a4567Be/info.json new file mode 100644 index 00000000..5d19eb26 --- /dev/null +++ b/blockchains/ethereum/assets/0x0692481C369E2BDc728A69ae31b848343a4567Be/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized)", + "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 00000000..8adf5788 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 00000000..635c9dd6 --- /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 00000000..d7c1214c Binary files /dev/null and b/blockchains/ethereum/assets/0x06954faa913fA14c28Eb1b2e459594F22f33f3dE/logo.png differ diff --git a/blockchains/ethereum/assets/0x06A01a4d579479Dd5D884EBf61A31727A3d8D442/info.json b/blockchains/ethereum/assets/0x06A01a4d579479Dd5D884EBf61A31727A3d8D442/info.json new file mode 100644 index 00000000..8cb06086 --- /dev/null +++ b/blockchains/ethereum/assets/0x06A01a4d579479Dd5D884EBf61A31727A3d8D442/info.json @@ -0,0 +1,11 @@ +{ + "name": "SmartKey", + "website": "https://smartkeyplatform.io/", + "description": "Smartkey is a bridge, the lacking puzzle that connects the decentralized finance (DeFI) world with the physical objects world", + "explorer": "https://etherscan.io/token/0x06A01a4d579479Dd5D884EBf61A31727A3d8D442", + "type": "ERC20", + "symbol": "Skey", + "decimals": 8, + "status": "active", + "id": "0x06A01a4d579479Dd5D884EBf61A31727A3d8D442" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x06A01a4d579479Dd5D884EBf61A31727A3d8D442/logo.png b/blockchains/ethereum/assets/0x06A01a4d579479Dd5D884EBf61A31727A3d8D442/logo.png new file mode 100644 index 00000000..b3909eda Binary files /dev/null and b/blockchains/ethereum/assets/0x06A01a4d579479Dd5D884EBf61A31727A3d8D442/logo.png differ diff --git a/blockchains/ethereum/assets/0x06A8F2BCc622ac55d596ea02CE5bb5f318F485e9/info.json b/blockchains/ethereum/assets/0x06A8F2BCc622ac55d596ea02CE5bb5f318F485e9/info.json new file mode 100644 index 00000000..1ad2e224 --- /dev/null +++ b/blockchains/ethereum/assets/0x06A8F2BCc622ac55d596ea02CE5bb5f318F485e9/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoCo Token", + "symbol": "MoCo", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://mocotoken.io", + "explorer": "https://etherscan.io/token/0x06A8F2BCc622ac55d596ea02CE5bb5f318F485e9", + "status": "abandoned", + "id": "0x06A8F2BCc622ac55d596ea02CE5bb5f318F485e9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x06A8F2BCc622ac55d596ea02CE5bb5f318F485e9/logo.png b/blockchains/ethereum/assets/0x06A8F2BCc622ac55d596ea02CE5bb5f318F485e9/logo.png new file mode 100644 index 00000000..c5b33e70 Binary files /dev/null and b/blockchains/ethereum/assets/0x06A8F2BCc622ac55d596ea02CE5bb5f318F485e9/logo.png differ diff --git a/blockchains/ethereum/assets/0x06AF07097C9Eeb7fD685c692751D5C66dB49c215/info.json b/blockchains/ethereum/assets/0x06AF07097C9Eeb7fD685c692751D5C66dB49c215/info.json new file mode 100644 index 00000000..df6c9ab3 --- /dev/null +++ b/blockchains/ethereum/assets/0x06AF07097C9Eeb7fD685c692751D5C66dB49c215/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chai", + "symbol": "CHAI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://chai.money/", + "explorer": "https://etherscan.io/token/0x06AF07097C9Eeb7fD685c692751D5C66dB49c215", + "status": "active", + "id": "0x06AF07097C9Eeb7fD685c692751D5C66dB49c215" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x06AF07097C9Eeb7fD685c692751D5C66dB49c215/logo.png b/blockchains/ethereum/assets/0x06AF07097C9Eeb7fD685c692751D5C66dB49c215/logo.png new file mode 100644 index 00000000..e7df2e76 Binary files /dev/null and b/blockchains/ethereum/assets/0x06AF07097C9Eeb7fD685c692751D5C66dB49c215/logo.png differ diff --git a/blockchains/ethereum/assets/0x06B4d381FFA099E47aFE7dda0a310d582023d063/info.json b/blockchains/ethereum/assets/0x06B4d381FFA099E47aFE7dda0a310d582023d063/info.json new file mode 100644 index 00000000..62a29c95 --- /dev/null +++ b/blockchains/ethereum/assets/0x06B4d381FFA099E47aFE7dda0a310d582023d063/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shine Share Coin", + "symbol": "SSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x06B4d381FFA099E47aFE7dda0a310d582023d063", + "status": "abandoned", + "id": "0x06B4d381FFA099E47aFE7dda0a310d582023d063" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x06B4d381FFA099E47aFE7dda0a310d582023d063/logo.png b/blockchains/ethereum/assets/0x06B4d381FFA099E47aFE7dda0a310d582023d063/logo.png new file mode 100644 index 00000000..43a9986a Binary files /dev/null and b/blockchains/ethereum/assets/0x06B4d381FFA099E47aFE7dda0a310d582023d063/logo.png differ diff --git a/blockchains/ethereum/assets/0x06B964d96f5dCF7Eae9d7C559B09EDCe244d4B8E/info.json b/blockchains/ethereum/assets/0x06B964d96f5dCF7Eae9d7C559B09EDCe244d4B8E/info.json new file mode 100644 index 00000000..f448700f --- /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 00000000..74a0b0cf Binary files /dev/null and b/blockchains/ethereum/assets/0x06B964d96f5dCF7Eae9d7C559B09EDCe244d4B8E/logo.png differ diff --git a/blockchains/ethereum/assets/0x06BEAD2EAD661B51307B646F7419d5284330c135/info.json b/blockchains/ethereum/assets/0x06BEAD2EAD661B51307B646F7419d5284330c135/info.json new file mode 100644 index 00000000..a2ba4ed4 --- /dev/null +++ b/blockchains/ethereum/assets/0x06BEAD2EAD661B51307B646F7419d5284330c135/info.json @@ -0,0 +1,11 @@ +{ + "name": "EliteShipperToken", + "symbol": "ESHIP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x06BEAD2EAD661B51307B646F7419d5284330c135", + "status": "abandoned", + "id": "0x06BEAD2EAD661B51307B646F7419d5284330c135" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x06BEAD2EAD661B51307B646F7419d5284330c135/logo.png b/blockchains/ethereum/assets/0x06BEAD2EAD661B51307B646F7419d5284330c135/logo.png new file mode 100644 index 00000000..1bc9f150 Binary files /dev/null and b/blockchains/ethereum/assets/0x06BEAD2EAD661B51307B646F7419d5284330c135/logo.png differ diff --git a/blockchains/ethereum/assets/0x06EA6a8992c447A618b1b5495AA5C42228C1A5E1/info.json b/blockchains/ethereum/assets/0x06EA6a8992c447A618b1b5495AA5C42228C1A5E1/info.json new file mode 100644 index 00000000..7990fd55 --- /dev/null +++ b/blockchains/ethereum/assets/0x06EA6a8992c447A618b1b5495AA5C42228C1A5E1/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAGA PASSIVE", + "symbol": "SAG", + "type": "ERC20", + "decimals": 18, + "description": "First Blockchain network passive asset management open-source, community-owned, permissionless, and censorship-resistant protocol for connecting effective management and profits to long term holders.", + "website": "https://sagapassive.live/", + "explorer": "https://etherscan.io/token/0x06EA6a8992c447A618b1b5495AA5C42228C1A5E1", + "status": "abandoned", + "id": "0x06EA6a8992c447A618b1b5495AA5C42228C1A5E1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x06EA6a8992c447A618b1b5495AA5C42228C1A5E1/logo.png b/blockchains/ethereum/assets/0x06EA6a8992c447A618b1b5495AA5C42228C1A5E1/logo.png new file mode 100644 index 00000000..16c9eea4 Binary files /dev/null and b/blockchains/ethereum/assets/0x06EA6a8992c447A618b1b5495AA5C42228C1A5E1/logo.png differ diff --git a/blockchains/ethereum/assets/0x06F09B608aD88DFD34dC0cC7506A50E26fc3e37C/info.json b/blockchains/ethereum/assets/0x06F09B608aD88DFD34dC0cC7506A50E26fc3e37C/info.json new file mode 100644 index 00000000..29950832 --- /dev/null +++ b/blockchains/ethereum/assets/0x06F09B608aD88DFD34dC0cC7506A50E26fc3e37C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vigr", + "symbol": "VIGR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x06F09B608aD88DFD34dC0cC7506A50E26fc3e37C", + "status": "abandoned", + "id": "0x06F09B608aD88DFD34dC0cC7506A50E26fc3e37C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x06F09B608aD88DFD34dC0cC7506A50E26fc3e37C/logo.png b/blockchains/ethereum/assets/0x06F09B608aD88DFD34dC0cC7506A50E26fc3e37C/logo.png new file mode 100644 index 00000000..b1a68a46 Binary files /dev/null and b/blockchains/ethereum/assets/0x06F09B608aD88DFD34dC0cC7506A50E26fc3e37C/logo.png differ diff --git a/blockchains/ethereum/assets/0x06e0feB0D74106c7adA8497754074D222Ec6BCDf/info.json b/blockchains/ethereum/assets/0x06e0feB0D74106c7adA8497754074D222Ec6BCDf/info.json new file mode 100644 index 00000000..47a8f95f --- /dev/null +++ b/blockchains/ethereum/assets/0x06e0feB0D74106c7adA8497754074D222Ec6BCDf/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitBall", + "symbol": "BTB", + "type": "ERC20", + "decimals": 18, + "description": "Bitball Ecosystem All in one crypto Solution Peer to Peer digital currencies with Multiple utilities", + "website": "https://www.bitball-btb.com/", + "explorer": "https://etherscan.io/token/0x06e0feB0D74106c7adA8497754074D222Ec6BCDf", + "status": "active", + "id": "0x06e0feB0D74106c7adA8497754074D222Ec6BCDf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x06e0feB0D74106c7adA8497754074D222Ec6BCDf/logo.png b/blockchains/ethereum/assets/0x06e0feB0D74106c7adA8497754074D222Ec6BCDf/logo.png new file mode 100644 index 00000000..9f10fe96 Binary files /dev/null and b/blockchains/ethereum/assets/0x06e0feB0D74106c7adA8497754074D222Ec6BCDf/logo.png differ diff --git a/blockchains/ethereum/assets/0x06f3CDabae564B0546529b4DD8FeF1bcD4235753/info.json b/blockchains/ethereum/assets/0x06f3CDabae564B0546529b4DD8FeF1bcD4235753/info.json new file mode 100644 index 00000000..623b2e6d --- /dev/null +++ b/blockchains/ethereum/assets/0x06f3CDabae564B0546529b4DD8FeF1bcD4235753/info.json @@ -0,0 +1,11 @@ +{ + "name": "TILWIKI - Faces of Art", + "symbol": "TLW", + "type": "ERC20", + "decimals": 8, + "description": "TILWIKI is a global art and antique art blockchain platform that enables users to sell and buy art online including tokenized art through Artsharing (fractional ownership) to remove restrictive barriers preventing investor access.", + "website": "https://tilwiki.com/", + "explorer": "https://etherscan.io/token/0x06f3CDabae564B0546529b4DD8FeF1bcD4235753", + "status": "active", + "id": "0x06f3CDabae564B0546529b4DD8FeF1bcD4235753" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x06f3CDabae564B0546529b4DD8FeF1bcD4235753/logo.png b/blockchains/ethereum/assets/0x06f3CDabae564B0546529b4DD8FeF1bcD4235753/logo.png new file mode 100644 index 00000000..046ed823 Binary files /dev/null and b/blockchains/ethereum/assets/0x06f3CDabae564B0546529b4DD8FeF1bcD4235753/logo.png differ diff --git a/blockchains/ethereum/assets/0x06f65b8CfCb13a9FE37d836fE9708dA38Ecb29B2/info.json b/blockchains/ethereum/assets/0x06f65b8CfCb13a9FE37d836fE9708dA38Ecb29B2/info.json new file mode 100644 index 00000000..f0f3ae1e --- /dev/null +++ b/blockchains/ethereum/assets/0x06f65b8CfCb13a9FE37d836fE9708dA38Ecb29B2/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAINT FAME: Genesis Shirt", + "symbol": "FAME", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.saintfame.com/fame", + "explorer": "https://etherscan.io/token/0x06f65b8CfCb13a9FE37d836fE9708dA38Ecb29B2", + "status": "abandoned", + "id": "0x06f65b8CfCb13a9FE37d836fE9708dA38Ecb29B2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x06f65b8CfCb13a9FE37d836fE9708dA38Ecb29B2/logo.png b/blockchains/ethereum/assets/0x06f65b8CfCb13a9FE37d836fE9708dA38Ecb29B2/logo.png new file mode 100644 index 00000000..733f24ad Binary files /dev/null and b/blockchains/ethereum/assets/0x06f65b8CfCb13a9FE37d836fE9708dA38Ecb29B2/logo.png differ diff --git a/blockchains/ethereum/assets/0x0703Fb3CCF77D117Ecbb19774b5f97c5a4875c9D/info.json b/blockchains/ethereum/assets/0x0703Fb3CCF77D117Ecbb19774b5f97c5a4875c9D/info.json new file mode 100644 index 00000000..64f3f016 --- /dev/null +++ b/blockchains/ethereum/assets/0x0703Fb3CCF77D117Ecbb19774b5f97c5a4875c9D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digital CHF", + "website": "-", + "description": "CHF stablecoin", + "explorer": "https://etherscan.io/token/0x0703Fb3CCF77D117Ecbb19774b5f97c5a4875c9D", + "type": "ERC20", + "symbol": "DCHF", + "decimals": 4, + "status": "abandoned", + "id": "0x0703Fb3CCF77D117Ecbb19774b5f97c5a4875c9D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0703Fb3CCF77D117Ecbb19774b5f97c5a4875c9D/logo.png b/blockchains/ethereum/assets/0x0703Fb3CCF77D117Ecbb19774b5f97c5a4875c9D/logo.png new file mode 100644 index 00000000..9e38ed6d Binary files /dev/null and b/blockchains/ethereum/assets/0x0703Fb3CCF77D117Ecbb19774b5f97c5a4875c9D/logo.png differ diff --git a/blockchains/ethereum/assets/0x0707681F344dEB24184037fC0228856F2137B02E/info.json b/blockchains/ethereum/assets/0x0707681F344dEB24184037fC0228856F2137B02E/info.json new file mode 100644 index 00000000..f301afe2 --- /dev/null +++ b/blockchains/ethereum/assets/0x0707681F344dEB24184037fC0228856F2137B02E/info.json @@ -0,0 +1,11 @@ +{ + "name": "FNKOSToken", + "symbol": "FNKOS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.foglink.io/en/", + "explorer": "https://etherscan.io/token/0x0707681F344dEB24184037fC0228856F2137B02E", + "status": "abandoned", + "id": "0x0707681F344dEB24184037fC0228856F2137B02E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0707681F344dEB24184037fC0228856F2137B02E/logo.png b/blockchains/ethereum/assets/0x0707681F344dEB24184037fC0228856F2137B02E/logo.png new file mode 100644 index 00000000..cc5e4721 Binary files /dev/null and b/blockchains/ethereum/assets/0x0707681F344dEB24184037fC0228856F2137B02E/logo.png differ diff --git a/blockchains/ethereum/assets/0x070D79021dD7e841123cB0CF554993bF683c511D/info.json b/blockchains/ethereum/assets/0x070D79021dD7e841123cB0CF554993bF683c511D/info.json new file mode 100644 index 00000000..33937d0c --- /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 00000000..8adf5788 Binary files /dev/null and b/blockchains/ethereum/assets/0x070D79021dD7e841123cB0CF554993bF683c511D/logo.png differ diff --git a/blockchains/ethereum/assets/0x0714Cfc984b873c9E3E126333DA529095E244e7C/info.json b/blockchains/ethereum/assets/0x0714Cfc984b873c9E3E126333DA529095E244e7C/info.json new file mode 100644 index 00000000..96591faf --- /dev/null +++ b/blockchains/ethereum/assets/0x0714Cfc984b873c9E3E126333DA529095E244e7C/info.json @@ -0,0 +1,11 @@ +{ + "name": "DRONECOIN", + "symbol": "DRN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://dronecoin.xyz/", + "explorer": "https://etherscan.io/token/0x0714Cfc984b873c9E3E126333DA529095E244e7C", + "status": "abandoned", + "id": "0x0714Cfc984b873c9E3E126333DA529095E244e7C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0714Cfc984b873c9E3E126333DA529095E244e7C/logo.png b/blockchains/ethereum/assets/0x0714Cfc984b873c9E3E126333DA529095E244e7C/logo.png new file mode 100755 index 00000000..82b4588f Binary files /dev/null and b/blockchains/ethereum/assets/0x0714Cfc984b873c9E3E126333DA529095E244e7C/logo.png differ diff --git a/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/info.json b/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/info.json new file mode 100644 index 00000000..623a8882 --- /dev/null +++ b/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/info.json @@ -0,0 +1,29 @@ +{ + "name": "Base Protocol", + "website": "https://baseprotocol.org", + "description": "Base Protocol is a token whose price is pegged to the total market cap of all cryptocurrencies at a ratio of 1:1 trillion. BASE acts as a market index, giving holders exposure to the entire crypto industry with one token.", + "explorer": "https://etherscan.io/token/0x07150e919B4De5fD6a63DE1F9384828396f25fDC", + "type": "ERC20", + "symbol": "BASE", + "decimals": 9, + "status": "active", + "id": "0x07150e919B4De5fD6a63DE1F9384828396f25fDC", + "links": [ + { + "name": "x", + "url": "https://x.com/BaseProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/baseprotocol" + }, + { + "name": "discord", + "url": "https://discord.com/invite/JyQ4gmR" + }, + { + "name": "medium", + "url": "https://medium.com/@BaseProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/logo.png b/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/logo.png new file mode 100644 index 00000000..79424f89 Binary files /dev/null and b/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/logo.png differ diff --git a/blockchains/ethereum/assets/0x0729377becBd653b9f14fBF2956cfD317bF2aFDd/info.json b/blockchains/ethereum/assets/0x0729377becBd653b9f14fBF2956cfD317bF2aFDd/info.json new file mode 100644 index 00000000..3702bb76 --- /dev/null +++ b/blockchains/ethereum/assets/0x0729377becBd653b9f14fBF2956cfD317bF2aFDd/info.json @@ -0,0 +1,11 @@ +{ + "name": "LEX Coin", + "symbol": "LEXC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0729377becBd653b9f14fBF2956cfD317bF2aFDd", + "status": "abandoned", + "id": "0x0729377becBd653b9f14fBF2956cfD317bF2aFDd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0729377becBd653b9f14fBF2956cfD317bF2aFDd/logo.png b/blockchains/ethereum/assets/0x0729377becBd653b9f14fBF2956cfD317bF2aFDd/logo.png new file mode 100644 index 00000000..b4334f0c Binary files /dev/null and b/blockchains/ethereum/assets/0x0729377becBd653b9f14fBF2956cfD317bF2aFDd/logo.png differ diff --git a/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/info.json b/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/info.json new file mode 100644 index 00000000..7ac46ec4 --- /dev/null +++ b/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/info.json @@ -0,0 +1,25 @@ +{ + "name": "Humanscape", + "type": "ERC20", + "symbol": "HUM", + "decimals": 18, + "website": "https://humanscape.io/", + "description": "Humanscape aims to cure incurable diseases, by curating personal health data.", + "explorer": "https://etherscan.io/token/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6", + "status": "active", + "id": "0x07327a00ba28D413f745C931bbe6bE053B0AD2a6", + "links": [ + { + "name": "x", + "url": "https://x.com/Humanscape_io" + }, + { + "name": "telegram", + "url": "https://t.me/Humanscape" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/humanscape/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/logo.png b/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/logo.png new file mode 100644 index 00000000..06b27159 Binary files /dev/null and b/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/logo.png differ diff --git a/blockchains/ethereum/assets/0x073E7a0669833d356fa88ca65CC6D454EFaAa3c5/info.json b/blockchains/ethereum/assets/0x073E7a0669833d356fa88ca65CC6D454EFaAa3c5/info.json new file mode 100644 index 00000000..6fa6f7c7 --- /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 00000000..6ce23a13 Binary files /dev/null and b/blockchains/ethereum/assets/0x073E7a0669833d356fa88ca65CC6D454EFaAa3c5/logo.png differ diff --git a/blockchains/ethereum/assets/0x0743392132D1A03a902c477E5A176f256BA3220C/info.json b/blockchains/ethereum/assets/0x0743392132D1A03a902c477E5A176f256BA3220C/info.json new file mode 100644 index 00000000..ea7faaa3 --- /dev/null +++ b/blockchains/ethereum/assets/0x0743392132D1A03a902c477E5A176f256BA3220C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coimatic 3.0", + "symbol": "CTIC3", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0743392132D1A03a902c477E5A176f256BA3220C", + "status": "abandoned", + "id": "0x0743392132D1A03a902c477E5A176f256BA3220C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0743392132D1A03a902c477E5A176f256BA3220C/logo.png b/blockchains/ethereum/assets/0x0743392132D1A03a902c477E5A176f256BA3220C/logo.png new file mode 100644 index 00000000..49ca9223 Binary files /dev/null and b/blockchains/ethereum/assets/0x0743392132D1A03a902c477E5A176f256BA3220C/logo.png differ diff --git a/blockchains/ethereum/assets/0x074f54191abdC71fd4108C51BA3C669CC6c3c245/info.json b/blockchains/ethereum/assets/0x074f54191abdC71fd4108C51BA3C669CC6c3c245/info.json new file mode 100644 index 00000000..b3b9ed7b --- /dev/null +++ b/blockchains/ethereum/assets/0x074f54191abdC71fd4108C51BA3C669CC6c3c245/info.json @@ -0,0 +1,11 @@ +{ + "name": "US Money", + "symbol": "USMO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x074f54191abdC71fd4108C51BA3C669CC6c3c245", + "status": "abandoned", + "id": "0x074f54191abdC71fd4108C51BA3C669CC6c3c245" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x074f54191abdC71fd4108C51BA3C669CC6c3c245/logo.png b/blockchains/ethereum/assets/0x074f54191abdC71fd4108C51BA3C669CC6c3c245/logo.png new file mode 100644 index 00000000..23e4d96f Binary files /dev/null and b/blockchains/ethereum/assets/0x074f54191abdC71fd4108C51BA3C669CC6c3c245/logo.png differ diff --git a/blockchains/ethereum/assets/0x0752163d221d3D5d4B6e98bD616B22bd2b453964/info.json b/blockchains/ethereum/assets/0x0752163d221d3D5d4B6e98bD616B22bd2b453964/info.json new file mode 100644 index 00000000..0dbdf9d3 --- /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 00000000..5001a982 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 00000000..e40133a2 --- /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 00000000..7e850760 Binary files /dev/null and b/blockchains/ethereum/assets/0x075756F3b6381a79633438fAA8964946bf40163d/logo.png differ diff --git a/blockchains/ethereum/assets/0x07597255910a51509CA469568B048F2597E72504/info.json b/blockchains/ethereum/assets/0x07597255910a51509CA469568B048F2597E72504/info.json new file mode 100644 index 00000000..09ced67c --- /dev/null +++ b/blockchains/ethereum/assets/0x07597255910a51509CA469568B048F2597E72504/info.json @@ -0,0 +1,11 @@ +{ + "name": "Uptrennd", + "symbol": "1UP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.uptrennd.com", + "explorer": "https://etherscan.io/token/0x07597255910a51509CA469568B048F2597E72504", + "status": "active", + "id": "0x07597255910a51509CA469568B048F2597E72504" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07597255910a51509CA469568B048F2597E72504/logo.png b/blockchains/ethereum/assets/0x07597255910a51509CA469568B048F2597E72504/logo.png new file mode 100644 index 00000000..502342e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x07597255910a51509CA469568B048F2597E72504/logo.png differ diff --git a/blockchains/ethereum/assets/0x075c60EE2cD308ff47873b38Bd9A0Fa5853382c4/info.json b/blockchains/ethereum/assets/0x075c60EE2cD308ff47873b38Bd9A0Fa5853382c4/info.json new file mode 100644 index 00000000..6aec75b0 --- /dev/null +++ b/blockchains/ethereum/assets/0x075c60EE2cD308ff47873b38Bd9A0Fa5853382c4/info.json @@ -0,0 +1,11 @@ +{ + "name": "DeezNuts", + "symbol": "DEEZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x075c60EE2cD308ff47873b38Bd9A0Fa5853382c4", + "status": "abandoned", + "id": "0x075c60EE2cD308ff47873b38Bd9A0Fa5853382c4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x075c60EE2cD308ff47873b38Bd9A0Fa5853382c4/logo.png b/blockchains/ethereum/assets/0x075c60EE2cD308ff47873b38Bd9A0Fa5853382c4/logo.png new file mode 100755 index 00000000..8d3a6663 Binary files /dev/null and b/blockchains/ethereum/assets/0x075c60EE2cD308ff47873b38Bd9A0Fa5853382c4/logo.png differ diff --git a/blockchains/ethereum/assets/0x0763fdCCF1aE541A5961815C0872A8c5Bc6DE4d7/info.json b/blockchains/ethereum/assets/0x0763fdCCF1aE541A5961815C0872A8c5Bc6DE4d7/info.json new file mode 100644 index 00000000..65b6e253 --- /dev/null +++ b/blockchains/ethereum/assets/0x0763fdCCF1aE541A5961815C0872A8c5Bc6DE4d7/info.json @@ -0,0 +1,29 @@ +{ + "name": "SUKU", + "website": "https://suku.world", + "description": "The link between open finance, traceability, and transparency. The future of supply chains today.", + "explorer": "https://etherscan.io/token/0x0763fdCCF1aE541A5961815C0872A8c5Bc6DE4d7", + "type": "ERC20", + "symbol": "SUKU", + "decimals": 18, + "status": "active", + "id": "0x0763fdCCF1aE541A5961815C0872A8c5Bc6DE4d7", + "links": [ + { + "name": "github", + "url": "https://github.com/SukuLab" + }, + { + "name": "x", + "url": "https://x.com/SUKUecosystem" + }, + { + "name": "telegram", + "url": "https://t.me/SUKUecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/SUKUecosystem" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0763fdCCF1aE541A5961815C0872A8c5Bc6DE4d7/logo.png b/blockchains/ethereum/assets/0x0763fdCCF1aE541A5961815C0872A8c5Bc6DE4d7/logo.png new file mode 100644 index 00000000..9e997c84 Binary files /dev/null and b/blockchains/ethereum/assets/0x0763fdCCF1aE541A5961815C0872A8c5Bc6DE4d7/logo.png differ diff --git a/blockchains/ethereum/assets/0x076641aF1B8f06B7f8C92587156143C109002cbe/info.json b/blockchains/ethereum/assets/0x076641aF1B8f06B7f8C92587156143C109002cbe/info.json new file mode 100644 index 00000000..673f88b2 --- /dev/null +++ b/blockchains/ethereum/assets/0x076641aF1B8f06B7f8C92587156143C109002cbe/info.json @@ -0,0 +1,11 @@ +{ + "name": "SoPay", + "symbol": "SOP", + "type": "ERC20", + "decimals": 18, + "description": "Payment Service Platform on Blockchain;Integration within 6 days for developer to access digital currency;Safe,convenient and efficient, making digital transactions easier", + "website": "https://sopay.org/en", + "explorer": "https://etherscan.io/token/0x076641aF1B8f06B7f8C92587156143C109002cbe", + "status": "active", + "id": "0x076641aF1B8f06B7f8C92587156143C109002cbe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x076641aF1B8f06B7f8C92587156143C109002cbe/logo.png b/blockchains/ethereum/assets/0x076641aF1B8f06B7f8C92587156143C109002cbe/logo.png new file mode 100644 index 00000000..0fa395f6 Binary files /dev/null and b/blockchains/ethereum/assets/0x076641aF1B8f06B7f8C92587156143C109002cbe/logo.png differ diff --git a/blockchains/ethereum/assets/0x0766e79A6fD74469733e8330b3b461C0320fF059/info.json b/blockchains/ethereum/assets/0x0766e79A6fD74469733e8330b3b461C0320fF059/info.json new file mode 100644 index 00000000..5e2a86cd --- /dev/null +++ b/blockchains/ethereum/assets/0x0766e79A6fD74469733e8330b3b461C0320fF059/info.json @@ -0,0 +1,11 @@ +{ + "name": "EXN", + "symbol": "EXN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.exchangen.com/", + "explorer": "https://etherscan.io/token/0x0766e79A6fD74469733e8330b3b461C0320fF059", + "status": "abandoned", + "id": "0x0766e79A6fD74469733e8330b3b461C0320fF059" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0766e79A6fD74469733e8330b3b461C0320fF059/logo.png b/blockchains/ethereum/assets/0x0766e79A6fD74469733e8330b3b461C0320fF059/logo.png new file mode 100644 index 00000000..6bdf2596 Binary files /dev/null and b/blockchains/ethereum/assets/0x0766e79A6fD74469733e8330b3b461C0320fF059/logo.png differ diff --git a/blockchains/ethereum/assets/0x076C97e1c869072eE22f8c91978C99B4bcB02591/info.json b/blockchains/ethereum/assets/0x076C97e1c869072eE22f8c91978C99B4bcB02591/info.json new file mode 100644 index 00000000..797008ae --- /dev/null +++ b/blockchains/ethereum/assets/0x076C97e1c869072eE22f8c91978C99B4bcB02591/info.json @@ -0,0 +1,11 @@ +{ + "name": "CommerceBlock Token", + "symbol": "CBT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.commerceblock.com/", + "explorer": "https://etherscan.io/token/0x076C97e1c869072eE22f8c91978C99B4bcB02591", + "status": "abandoned", + "id": "0x076C97e1c869072eE22f8c91978C99B4bcB02591" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x076C97e1c869072eE22f8c91978C99B4bcB02591/logo.png b/blockchains/ethereum/assets/0x076C97e1c869072eE22f8c91978C99B4bcB02591/logo.png new file mode 100644 index 00000000..c41ba997 Binary files /dev/null and b/blockchains/ethereum/assets/0x076C97e1c869072eE22f8c91978C99B4bcB02591/logo.png differ diff --git a/blockchains/ethereum/assets/0x076a93a40Bf9E0D21d3F75dd1E0584DdbE0f9D1a/info.json b/blockchains/ethereum/assets/0x076a93a40Bf9E0D21d3F75dd1E0584DdbE0f9D1a/info.json new file mode 100644 index 00000000..6aea4302 --- /dev/null +++ b/blockchains/ethereum/assets/0x076a93a40Bf9E0D21d3F75dd1E0584DdbE0f9D1a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Qurito", + "symbol": "QURO", + "type": "ERC20", + "decimals": 18, + "description": "Qurito is a platform for people to discover, gain and share their ideas and knowledge.", + "website": "https://qurito.io/", + "explorer": "https://etherscan.io/token/0x076a93a40Bf9E0D21d3F75dd1E0584DdbE0f9D1a", + "status": "abandoned", + "id": "0x076a93a40Bf9E0D21d3F75dd1E0584DdbE0f9D1a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x076a93a40Bf9E0D21d3F75dd1E0584DdbE0f9D1a/logo.png b/blockchains/ethereum/assets/0x076a93a40Bf9E0D21d3F75dd1E0584DdbE0f9D1a/logo.png new file mode 100644 index 00000000..070a0ee7 Binary files /dev/null and b/blockchains/ethereum/assets/0x076a93a40Bf9E0D21d3F75dd1E0584DdbE0f9D1a/logo.png differ diff --git a/blockchains/ethereum/assets/0x0775C81A273B355e6a5b76e240BF708701F00279/info.json b/blockchains/ethereum/assets/0x0775C81A273B355e6a5b76e240BF708701F00279/info.json new file mode 100644 index 00000000..a2ee1dee --- /dev/null +++ b/blockchains/ethereum/assets/0x0775C81A273B355e6a5b76e240BF708701F00279/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bulleon", + "symbol": "BUL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://bulleon.io/", + "explorer": "https://etherscan.io/token/0x0775C81A273B355e6a5b76e240BF708701F00279", + "status": "abandoned", + "id": "0x0775C81A273B355e6a5b76e240BF708701F00279" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0775C81A273B355e6a5b76e240BF708701F00279/logo.png b/blockchains/ethereum/assets/0x0775C81A273B355e6a5b76e240BF708701F00279/logo.png new file mode 100644 index 00000000..eee2b5b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x0775C81A273B355e6a5b76e240BF708701F00279/logo.png differ diff --git a/blockchains/ethereum/assets/0x0778Cc2E8bBAd3d483E82371606D100cc8604522/info.json b/blockchains/ethereum/assets/0x0778Cc2E8bBAd3d483E82371606D100cc8604522/info.json new file mode 100644 index 00000000..8b77d870 --- /dev/null +++ b/blockchains/ethereum/assets/0x0778Cc2E8bBAd3d483E82371606D100cc8604522/info.json @@ -0,0 +1,11 @@ +{ + "name": "LHCoin", + "symbol": "LHC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://lh-crypto.io/", + "explorer": "https://etherscan.io/token/0x0778Cc2E8bBAd3d483E82371606D100cc8604522", + "status": "abandoned", + "id": "0x0778Cc2E8bBAd3d483E82371606D100cc8604522" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0778Cc2E8bBAd3d483E82371606D100cc8604522/logo.png b/blockchains/ethereum/assets/0x0778Cc2E8bBAd3d483E82371606D100cc8604522/logo.png new file mode 100644 index 00000000..21a07a84 Binary files /dev/null and b/blockchains/ethereum/assets/0x0778Cc2E8bBAd3d483E82371606D100cc8604522/logo.png differ diff --git a/blockchains/ethereum/assets/0x077DC3c0c9543df1cdD78386DF3204E69E0DD274/info.json b/blockchains/ethereum/assets/0x077DC3c0c9543df1cdD78386DF3204E69E0DD274/info.json new file mode 100644 index 00000000..528c3b02 --- /dev/null +++ b/blockchains/ethereum/assets/0x077DC3c0c9543df1cdD78386DF3204E69E0DD274/info.json @@ -0,0 +1,11 @@ +{ + "name": "POWERBANK", + "symbol": "PBK", + "type": "ERC20", + "decimals": 7, + "description": "Introducing PBK for mobile phone industry and Recharge ,Bill payment, Online rewards, cashback offer etc.", + "website": "http://powerbankcoin.com/", + "explorer": "https://etherscan.io/token/0x077DC3c0c9543df1cdD78386DF3204E69E0DD274", + "status": "abandoned", + "id": "0x077DC3c0c9543df1cdD78386DF3204E69E0DD274" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x077DC3c0c9543df1cdD78386DF3204E69E0DD274/logo.png b/blockchains/ethereum/assets/0x077DC3c0c9543df1cdD78386DF3204E69E0DD274/logo.png new file mode 100644 index 00000000..99967061 Binary files /dev/null and b/blockchains/ethereum/assets/0x077DC3c0c9543df1cdD78386DF3204E69E0DD274/logo.png differ diff --git a/blockchains/ethereum/assets/0x0784dBaBb6C6834bdDfb7cFEe116bA049e5DafaB/info.json b/blockchains/ethereum/assets/0x0784dBaBb6C6834bdDfb7cFEe116bA049e5DafaB/info.json new file mode 100644 index 00000000..0926dcba --- /dev/null +++ b/blockchains/ethereum/assets/0x0784dBaBb6C6834bdDfb7cFEe116bA049e5DafaB/info.json @@ -0,0 +1,11 @@ +{ + "name": "IBTC", + "symbol": "IBTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0784dBaBb6C6834bdDfb7cFEe116bA049e5DafaB", + "status": "abandoned", + "id": "0x0784dBaBb6C6834bdDfb7cFEe116bA049e5DafaB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0784dBaBb6C6834bdDfb7cFEe116bA049e5DafaB/logo.png b/blockchains/ethereum/assets/0x0784dBaBb6C6834bdDfb7cFEe116bA049e5DafaB/logo.png new file mode 100644 index 00000000..c2f58d5a Binary files /dev/null and b/blockchains/ethereum/assets/0x0784dBaBb6C6834bdDfb7cFEe116bA049e5DafaB/logo.png differ diff --git a/blockchains/ethereum/assets/0x0794ce7d4459105926Da230F318c1e34BC790517/info.json b/blockchains/ethereum/assets/0x0794ce7d4459105926Da230F318c1e34BC790517/info.json new file mode 100644 index 00000000..0660019f --- /dev/null +++ b/blockchains/ethereum/assets/0x0794ce7d4459105926Da230F318c1e34BC790517/info.json @@ -0,0 +1,11 @@ +{ + "name": "RankingBall Gold", + "symbol": "RBG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0794ce7d4459105926Da230F318c1e34BC790517", + "status": "abandoned", + "id": "0x0794ce7d4459105926Da230F318c1e34BC790517" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0794ce7d4459105926Da230F318c1e34BC790517/logo.png b/blockchains/ethereum/assets/0x0794ce7d4459105926Da230F318c1e34BC790517/logo.png new file mode 100644 index 00000000..01f6c189 Binary files /dev/null and b/blockchains/ethereum/assets/0x0794ce7d4459105926Da230F318c1e34BC790517/logo.png differ diff --git a/blockchains/ethereum/assets/0x07B1F172268e1737C3176b50033dCbD7755284EE/info.json b/blockchains/ethereum/assets/0x07B1F172268e1737C3176b50033dCbD7755284EE/info.json new file mode 100644 index 00000000..d9408bb1 --- /dev/null +++ b/blockchains/ethereum/assets/0x07B1F172268e1737C3176b50033dCbD7755284EE/info.json @@ -0,0 +1,11 @@ +{ + "name": "zRipple", + "symbol": "zXRP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x07B1F172268e1737C3176b50033dCbD7755284EE", + "status": "abandoned", + "id": "0x07B1F172268e1737C3176b50033dCbD7755284EE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07B1F172268e1737C3176b50033dCbD7755284EE/logo.png b/blockchains/ethereum/assets/0x07B1F172268e1737C3176b50033dCbD7755284EE/logo.png new file mode 100644 index 00000000..24186bf9 Binary files /dev/null and b/blockchains/ethereum/assets/0x07B1F172268e1737C3176b50033dCbD7755284EE/logo.png differ diff --git a/blockchains/ethereum/assets/0x07BA7D3bF57ac6FbAA817Ab698C710c8Bf5A6F08/info.json b/blockchains/ethereum/assets/0x07BA7D3bF57ac6FbAA817Ab698C710c8Bf5A6F08/info.json new file mode 100644 index 00000000..ad05bbf2 --- /dev/null +++ b/blockchains/ethereum/assets/0x07BA7D3bF57ac6FbAA817Ab698C710c8Bf5A6F08/info.json @@ -0,0 +1,11 @@ +{ + "name": "SERA Token", + "symbol": "SRA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x07BA7D3bF57ac6FbAA817Ab698C710c8Bf5A6F08", + "status": "abandoned", + "id": "0x07BA7D3bF57ac6FbAA817Ab698C710c8Bf5A6F08" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07BA7D3bF57ac6FbAA817Ab698C710c8Bf5A6F08/logo.png b/blockchains/ethereum/assets/0x07BA7D3bF57ac6FbAA817Ab698C710c8Bf5A6F08/logo.png new file mode 100644 index 00000000..4131c09f Binary files /dev/null and b/blockchains/ethereum/assets/0x07BA7D3bF57ac6FbAA817Ab698C710c8Bf5A6F08/logo.png differ diff --git a/blockchains/ethereum/assets/0x07Cc1d447619B46E198e15F3cB4DF7b47B340230/info.json b/blockchains/ethereum/assets/0x07Cc1d447619B46E198e15F3cB4DF7b47B340230/info.json new file mode 100644 index 00000000..e44bcdfd --- /dev/null +++ b/blockchains/ethereum/assets/0x07Cc1d447619B46E198e15F3cB4DF7b47B340230/info.json @@ -0,0 +1,11 @@ +{ + "name": "NESTFAME", + "symbol": "NSF", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x07Cc1d447619B46E198e15F3cB4DF7b47B340230", + "status": "abandoned", + "id": "0x07Cc1d447619B46E198e15F3cB4DF7b47B340230" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07Cc1d447619B46E198e15F3cB4DF7b47B340230/logo.png b/blockchains/ethereum/assets/0x07Cc1d447619B46E198e15F3cB4DF7b47B340230/logo.png new file mode 100644 index 00000000..2359a95c Binary files /dev/null and b/blockchains/ethereum/assets/0x07Cc1d447619B46E198e15F3cB4DF7b47B340230/logo.png differ diff --git a/blockchains/ethereum/assets/0x07D9e49Ea402194bf48A8276dAfB16E4eD633317/info.json b/blockchains/ethereum/assets/0x07D9e49Ea402194bf48A8276dAfB16E4eD633317/info.json new file mode 100644 index 00000000..f09a3e7f --- /dev/null +++ b/blockchains/ethereum/assets/0x07D9e49Ea402194bf48A8276dAfB16E4eD633317/info.json @@ -0,0 +1,11 @@ +{ + "name": "DALECOIN", + "symbol": "DALC", + "type": "ERC20", + "decimals": 8, + "description": "DaleCoin is an ERC20 token based on the Ethereum blockchain which shall serve as a payment token for goods and services.", + "website": "http://dalecoin.org/", + "explorer": "https://etherscan.io/token/0x07D9e49Ea402194bf48A8276dAfB16E4eD633317", + "status": "active", + "id": "0x07D9e49Ea402194bf48A8276dAfB16E4eD633317" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07D9e49Ea402194bf48A8276dAfB16E4eD633317/logo.png b/blockchains/ethereum/assets/0x07D9e49Ea402194bf48A8276dAfB16E4eD633317/logo.png new file mode 100644 index 00000000..41f82caf Binary files /dev/null and b/blockchains/ethereum/assets/0x07D9e49Ea402194bf48A8276dAfB16E4eD633317/logo.png differ diff --git a/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/info.json b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/info.json new file mode 100644 index 00000000..7d25cd84 --- /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 00000000..87614504 Binary files /dev/null and b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/logo.png differ diff --git a/blockchains/ethereum/assets/0x07a58629AAF3e1A0d07D8f43114B76BD5EEe3B91/info.json b/blockchains/ethereum/assets/0x07a58629AAF3e1A0d07D8f43114B76BD5EEe3B91/info.json new file mode 100644 index 00000000..79fbba53 --- /dev/null +++ b/blockchains/ethereum/assets/0x07a58629AAF3e1A0d07D8f43114B76BD5EEe3B91/info.json @@ -0,0 +1,11 @@ +{ + "name": "Guaranteed Ethurance Token Extra", + "symbol": "GETX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.inschain.io/", + "explorer": "https://etherscan.io/token/0x07a58629AAF3e1A0d07D8f43114B76BD5EEe3B91", + "status": "abandoned", + "id": "0x07a58629AAF3e1A0d07D8f43114B76BD5EEe3B91" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07a58629AAF3e1A0d07D8f43114B76BD5EEe3B91/logo.png b/blockchains/ethereum/assets/0x07a58629AAF3e1A0d07D8f43114B76BD5EEe3B91/logo.png new file mode 100644 index 00000000..083d3806 Binary files /dev/null and b/blockchains/ethereum/assets/0x07a58629AAF3e1A0d07D8f43114B76BD5EEe3B91/logo.png differ diff --git a/blockchains/ethereum/assets/0x07bAd4bCD55F39B96f00ddfFca09201d86BCF3aC/info.json b/blockchains/ethereum/assets/0x07bAd4bCD55F39B96f00ddfFca09201d86BCF3aC/info.json new file mode 100644 index 00000000..1b351b5f --- /dev/null +++ b/blockchains/ethereum/assets/0x07bAd4bCD55F39B96f00ddfFca09201d86BCF3aC/info.json @@ -0,0 +1,11 @@ +{ + "name": "VTIS Token", + "symbol": "VTIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x07bAd4bCD55F39B96f00ddfFca09201d86BCF3aC", + "status": "abandoned", + "id": "0x07bAd4bCD55F39B96f00ddfFca09201d86BCF3aC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07bAd4bCD55F39B96f00ddfFca09201d86BCF3aC/logo.png b/blockchains/ethereum/assets/0x07bAd4bCD55F39B96f00ddfFca09201d86BCF3aC/logo.png new file mode 100644 index 00000000..79291b7b Binary files /dev/null and b/blockchains/ethereum/assets/0x07bAd4bCD55F39B96f00ddfFca09201d86BCF3aC/logo.png differ diff --git a/blockchains/ethereum/assets/0x07bf5F95851Ef2b2996F192569e406A6FeA2a95a/info.json b/blockchains/ethereum/assets/0x07bf5F95851Ef2b2996F192569e406A6FeA2a95a/info.json new file mode 100644 index 00000000..96cb5c11 --- /dev/null +++ b/blockchains/ethereum/assets/0x07bf5F95851Ef2b2996F192569e406A6FeA2a95a/info.json @@ -0,0 +1,11 @@ +{ + "name": "SEALToken", + "symbol": "SEAL", + "type": "ERC20", + "decimals": 18, + "description": "Financial public chain designed specifically for blockchain asset transactions, aims to create a payment layer using blockchain technology and reshape the global financial payment system.", + "website": "https://sealchain.io/", + "explorer": "https://etherscan.io/token/0x07bf5F95851Ef2b2996F192569e406A6FeA2a95a", + "status": "active", + "id": "0x07bf5F95851Ef2b2996F192569e406A6FeA2a95a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07bf5F95851Ef2b2996F192569e406A6FeA2a95a/logo.png b/blockchains/ethereum/assets/0x07bf5F95851Ef2b2996F192569e406A6FeA2a95a/logo.png new file mode 100644 index 00000000..fd5182ce Binary files /dev/null and b/blockchains/ethereum/assets/0x07bf5F95851Ef2b2996F192569e406A6FeA2a95a/logo.png differ diff --git a/blockchains/ethereum/assets/0x07e3c70653548B04f0A75970C1F81B4CBbFB606f/info.json b/blockchains/ethereum/assets/0x07e3c70653548B04f0A75970C1F81B4CBbFB606f/info.json new file mode 100644 index 00000000..69d873a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x07e3c70653548B04f0A75970C1F81B4CBbFB606f/info.json @@ -0,0 +1,12 @@ +{ + "name": "Agrello", + "website": "https://agrello.io", + "description": "Agrello is building a blockchain-based digital ID solution for individuals and businesses.", + "explorer": "https://etherscan.io/token/0x07e3c70653548B04f0A75970C1F81B4CBbFB606f", + "research": "https://research.binance.com/en/projects/agrello", + "type": "ERC20", + "symbol": "DLT", + "decimals": 18, + "status": "active", + "id": "0x07e3c70653548B04f0A75970C1F81B4CBbFB606f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07e3c70653548B04f0A75970C1F81B4CBbFB606f/logo.png b/blockchains/ethereum/assets/0x07e3c70653548B04f0A75970C1F81B4CBbFB606f/logo.png new file mode 100644 index 00000000..bdd77a33 Binary files /dev/null and b/blockchains/ethereum/assets/0x07e3c70653548B04f0A75970C1F81B4CBbFB606f/logo.png differ diff --git a/blockchains/ethereum/assets/0x07e68a24A7D84C9a34a4Bd05eF487cab6da15995/info.json b/blockchains/ethereum/assets/0x07e68a24A7D84C9a34a4Bd05eF487cab6da15995/info.json new file mode 100644 index 00000000..a2d21a09 --- /dev/null +++ b/blockchains/ethereum/assets/0x07e68a24A7D84C9a34a4Bd05eF487cab6da15995/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yizoot Utility Token", + "symbol": "YZU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x07e68a24A7D84C9a34a4Bd05eF487cab6da15995", + "status": "abandoned", + "id": "0x07e68a24A7D84C9a34a4Bd05eF487cab6da15995" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07e68a24A7D84C9a34a4Bd05eF487cab6da15995/logo.png b/blockchains/ethereum/assets/0x07e68a24A7D84C9a34a4Bd05eF487cab6da15995/logo.png new file mode 100644 index 00000000..294bdd75 Binary files /dev/null and b/blockchains/ethereum/assets/0x07e68a24A7D84C9a34a4Bd05eF487cab6da15995/logo.png differ diff --git a/blockchains/ethereum/assets/0x07eF9E82721AC16809D24DAfBE1792Ce01654DB4/info.json b/blockchains/ethereum/assets/0x07eF9E82721AC16809D24DAfBE1792Ce01654DB4/info.json new file mode 100644 index 00000000..274b8409 --- /dev/null +++ b/blockchains/ethereum/assets/0x07eF9E82721AC16809D24DAfBE1792Ce01654DB4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chimpion", + "symbol": "BNANA", + "type": "ERC20", + "decimals": 18, + "description": "Chimpion created the first ever online banking for the crypto community.", + "website": "https://www.chimpion.io", + "explorer": "https://etherscan.io/token/0x07eF9E82721AC16809D24DAfBE1792Ce01654DB4", + "status": "active", + "id": "0x07eF9E82721AC16809D24DAfBE1792Ce01654DB4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07eF9E82721AC16809D24DAfBE1792Ce01654DB4/logo.png b/blockchains/ethereum/assets/0x07eF9E82721AC16809D24DAfBE1792Ce01654DB4/logo.png new file mode 100644 index 00000000..4a85be4b Binary files /dev/null and b/blockchains/ethereum/assets/0x07eF9E82721AC16809D24DAfBE1792Ce01654DB4/logo.png differ diff --git a/blockchains/ethereum/assets/0x07f89875b1F142AbCba60FF1D7FCFb7Fe404d4ed/info.json b/blockchains/ethereum/assets/0x07f89875b1F142AbCba60FF1D7FCFb7Fe404d4ed/info.json new file mode 100644 index 00000000..aaa2406a --- /dev/null +++ b/blockchains/ethereum/assets/0x07f89875b1F142AbCba60FF1D7FCFb7Fe404d4ed/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chinese Yuan Renminbi", + "website": "https://dollarprotocol.com", + "description": "Dollar Protocol is a suite of algorithmic synthetics governed by Share", + "explorer": "https://etherscan.io/token/0x07f89875b1F142AbCba60FF1D7FCFb7Fe404d4ed", + "type": "ERC20", + "symbol": "CNYx", + "decimals": 9, + "status": "active", + "id": "0x07f89875b1F142AbCba60FF1D7FCFb7Fe404d4ed" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07f89875b1F142AbCba60FF1D7FCFb7Fe404d4ed/logo.png b/blockchains/ethereum/assets/0x07f89875b1F142AbCba60FF1D7FCFb7Fe404d4ed/logo.png new file mode 100644 index 00000000..86edfab9 Binary files /dev/null and b/blockchains/ethereum/assets/0x07f89875b1F142AbCba60FF1D7FCFb7Fe404d4ed/logo.png differ diff --git a/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/info.json b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/info.json new file mode 100644 index 00000000..bce2c292 --- /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 00000000..c8e37a57 Binary files /dev/null and b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/logo.png differ diff --git a/blockchains/ethereum/assets/0x08130635368AA28b217a4dfb68E1bF8dC525621C/info.json b/blockchains/ethereum/assets/0x08130635368AA28b217a4dfb68E1bF8dC525621C/info.json new file mode 100644 index 00000000..66684ba8 --- /dev/null +++ b/blockchains/ethereum/assets/0x08130635368AA28b217a4dfb68E1bF8dC525621C/info.json @@ -0,0 +1,11 @@ +{ + "name": "AfroDex", + "symbol": "AfroX", + "type": "ERC20", + "decimals": 4, + "description": "AfroDex Labs is a corporation which serves as a blockchain tech, launchpad, incubator & accelerator focused on developing & deploying free or affordable technologies for easier Ethereum & ERC-20 tokens mass adoption.", + "website": "http://afrodexlabs.com/", + "explorer": "https://etherscan.io/token/0x08130635368AA28b217a4dfb68E1bF8dC525621C", + "status": "active", + "id": "0x08130635368AA28b217a4dfb68E1bF8dC525621C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08130635368AA28b217a4dfb68E1bF8dC525621C/logo.png b/blockchains/ethereum/assets/0x08130635368AA28b217a4dfb68E1bF8dC525621C/logo.png new file mode 100644 index 00000000..ad9b8359 Binary files /dev/null and b/blockchains/ethereum/assets/0x08130635368AA28b217a4dfb68E1bF8dC525621C/logo.png differ diff --git a/blockchains/ethereum/assets/0x081F5489A66D3c75d615040FDdd64d9Ba1E74e76/info.json b/blockchains/ethereum/assets/0x081F5489A66D3c75d615040FDdd64d9Ba1E74e76/info.json new file mode 100644 index 00000000..2d28d98e --- /dev/null +++ b/blockchains/ethereum/assets/0x081F5489A66D3c75d615040FDdd64d9Ba1E74e76/info.json @@ -0,0 +1,11 @@ +{ + "name": "Natretix", + "symbol": "NRX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x081F5489A66D3c75d615040FDdd64d9Ba1E74e76", + "status": "abandoned", + "id": "0x081F5489A66D3c75d615040FDdd64d9Ba1E74e76" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x081F5489A66D3c75d615040FDdd64d9Ba1E74e76/logo.png b/blockchains/ethereum/assets/0x081F5489A66D3c75d615040FDdd64d9Ba1E74e76/logo.png new file mode 100644 index 00000000..ab7ea354 Binary files /dev/null and b/blockchains/ethereum/assets/0x081F5489A66D3c75d615040FDdd64d9Ba1E74e76/logo.png differ diff --git a/blockchains/ethereum/assets/0x081F67aFA0cCF8c7B17540767BBe95DF2bA8D97F/info.json b/blockchains/ethereum/assets/0x081F67aFA0cCF8c7B17540767BBe95DF2bA8D97F/info.json new file mode 100644 index 00000000..12325b30 --- /dev/null +++ b/blockchains/ethereum/assets/0x081F67aFA0cCF8c7B17540767BBe95DF2bA8D97F/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinEx Token", + "symbol": "CET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.coinex.org/", + "explorer": "https://etherscan.io/token/0x081F67aFA0cCF8c7B17540767BBe95DF2bA8D97F", + "status": "abandoned", + "id": "0x081F67aFA0cCF8c7B17540767BBe95DF2bA8D97F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x081F67aFA0cCF8c7B17540767BBe95DF2bA8D97F/logo.png b/blockchains/ethereum/assets/0x081F67aFA0cCF8c7B17540767BBe95DF2bA8D97F/logo.png new file mode 100644 index 00000000..a34ceffd Binary files /dev/null and b/blockchains/ethereum/assets/0x081F67aFA0cCF8c7B17540767BBe95DF2bA8D97F/logo.png differ diff --git a/blockchains/ethereum/assets/0x082E13494f12EBB7206FBf67E22A6E1975A1A669/info.json b/blockchains/ethereum/assets/0x082E13494f12EBB7206FBf67E22A6E1975A1A669/info.json new file mode 100644 index 00000000..d66434b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x082E13494f12EBB7206FBf67E22A6E1975A1A669/info.json @@ -0,0 +1,11 @@ +{ + "name": "ArtisTurba", + "symbol": "ARTIS", + "type": "ERC20", + "decimals": 8, + "description": "Artis Turba is an intuitive cryptocurrency exchange built for individuals, traders and investors. The platform allows its community to buy and sell popular digital currencies with the local South African fiat currency, the South African Rand (ZAR).", + "website": "https://www.artisturba.com/", + "explorer": "https://etherscan.io/token/0x082E13494f12EBB7206FBf67E22A6E1975A1A669", + "status": "active", + "id": "0x082E13494f12EBB7206FBf67E22A6E1975A1A669" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x082E13494f12EBB7206FBf67E22A6E1975A1A669/logo.png b/blockchains/ethereum/assets/0x082E13494f12EBB7206FBf67E22A6E1975A1A669/logo.png new file mode 100644 index 00000000..6649b46d Binary files /dev/null and b/blockchains/ethereum/assets/0x082E13494f12EBB7206FBf67E22A6E1975A1A669/logo.png differ diff --git a/blockchains/ethereum/assets/0x0835ecd15DdF08d4786304d71b4672dC5C40F011/info.json b/blockchains/ethereum/assets/0x0835ecd15DdF08d4786304d71b4672dC5C40F011/info.json new file mode 100644 index 00000000..bcbc2345 --- /dev/null +++ b/blockchains/ethereum/assets/0x0835ecd15DdF08d4786304d71b4672dC5C40F011/info.json @@ -0,0 +1,11 @@ +{ + "name": "PlusCoin", + "symbol": "PLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0835ecd15DdF08d4786304d71b4672dC5C40F011", + "status": "abandoned", + "id": "0x0835ecd15DdF08d4786304d71b4672dC5C40F011" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0835ecd15DdF08d4786304d71b4672dC5C40F011/logo.png b/blockchains/ethereum/assets/0x0835ecd15DdF08d4786304d71b4672dC5C40F011/logo.png new file mode 100644 index 00000000..00b63751 Binary files /dev/null and b/blockchains/ethereum/assets/0x0835ecd15DdF08d4786304d71b4672dC5C40F011/logo.png differ diff --git a/blockchains/ethereum/assets/0x0836e2ed69ab94eD95b08e17165A53E91A378fdF/info.json b/blockchains/ethereum/assets/0x0836e2ed69ab94eD95b08e17165A53E91A378fdF/info.json new file mode 100644 index 00000000..30145584 --- /dev/null +++ b/blockchains/ethereum/assets/0x0836e2ed69ab94eD95b08e17165A53E91A378fdF/info.json @@ -0,0 +1,11 @@ +{ + "name": "SureSAVER PRIZE-LINKED REWARD SAVINGS ACCOUNT TOKEN", + "symbol": "SAVER", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0836e2ed69ab94eD95b08e17165A53E91A378fdF", + "status": "abandoned", + "id": "0x0836e2ed69ab94eD95b08e17165A53E91A378fdF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0836e2ed69ab94eD95b08e17165A53E91A378fdF/logo.png b/blockchains/ethereum/assets/0x0836e2ed69ab94eD95b08e17165A53E91A378fdF/logo.png new file mode 100644 index 00000000..a095c6e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x0836e2ed69ab94eD95b08e17165A53E91A378fdF/logo.png differ diff --git a/blockchains/ethereum/assets/0x08389495D7456E1951ddF7c3a1314A4bfb646d8B/info.json b/blockchains/ethereum/assets/0x08389495D7456E1951ddF7c3a1314A4bfb646d8B/info.json new file mode 100644 index 00000000..8f79e467 --- /dev/null +++ b/blockchains/ethereum/assets/0x08389495D7456E1951ddF7c3a1314A4bfb646d8B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crypterium", + "website": "https://crypterium.com", + "description": "Crypterium is building a mobile app that lets users spend cryptocurrency in everyday life.", + "explorer": "https://etherscan.io/token/0x08389495D7456E1951ddF7c3a1314A4bfb646d8B", + "type": "ERC20", + "symbol": "CRPT", + "decimals": 18, + "status": "active", + "id": "0x08389495D7456E1951ddF7c3a1314A4bfb646d8B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08389495D7456E1951ddF7c3a1314A4bfb646d8B/logo.png b/blockchains/ethereum/assets/0x08389495D7456E1951ddF7c3a1314A4bfb646d8B/logo.png new file mode 100644 index 00000000..712eea96 Binary files /dev/null and b/blockchains/ethereum/assets/0x08389495D7456E1951ddF7c3a1314A4bfb646d8B/logo.png differ diff --git a/blockchains/ethereum/assets/0x08399ab5eBBE96870B289754A7bD21E7EC8c6FCb/info.json b/blockchains/ethereum/assets/0x08399ab5eBBE96870B289754A7bD21E7EC8c6FCb/info.json new file mode 100644 index 00000000..6121929a --- /dev/null +++ b/blockchains/ethereum/assets/0x08399ab5eBBE96870B289754A7bD21E7EC8c6FCb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Becaz", + "symbol": "BCZ", + "type": "ERC20", + "decimals": 18, + "description": "Becaz (BCZ) created to offer easy methods of buying and selling courses on Becaz’s e-learning platform using Ethereum blockchain. Becaz aims to eliminate the middleman between a student and tutor providing tutor with 100% of payment received from a student.", + "website": "https://becaz.org/", + "explorer": "https://etherscan.io/token/0x08399ab5eBBE96870B289754A7bD21E7EC8c6FCb", + "status": "active", + "id": "0x08399ab5eBBE96870B289754A7bD21E7EC8c6FCb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08399ab5eBBE96870B289754A7bD21E7EC8c6FCb/logo.png b/blockchains/ethereum/assets/0x08399ab5eBBE96870B289754A7bD21E7EC8c6FCb/logo.png new file mode 100644 index 00000000..2ae5d9b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x08399ab5eBBE96870B289754A7bD21E7EC8c6FCb/logo.png differ diff --git a/blockchains/ethereum/assets/0x083a060F105A67134CC8eA6e7af85d77561AB8Bb/info.json b/blockchains/ethereum/assets/0x083a060F105A67134CC8eA6e7af85d77561AB8Bb/info.json new file mode 100644 index 00000000..21fbfaf6 --- /dev/null +++ b/blockchains/ethereum/assets/0x083a060F105A67134CC8eA6e7af85d77561AB8Bb/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 021-CN42", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x083a060F105A67134CC8eA6e7af85d77561AB8Bb", + "status": "abandoned", + "id": "0x083a060F105A67134CC8eA6e7af85d77561AB8Bb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x083a060F105A67134CC8eA6e7af85d77561AB8Bb/logo.png b/blockchains/ethereum/assets/0x083a060F105A67134CC8eA6e7af85d77561AB8Bb/logo.png new file mode 100644 index 00000000..bf69f374 Binary files /dev/null and b/blockchains/ethereum/assets/0x083a060F105A67134CC8eA6e7af85d77561AB8Bb/logo.png differ diff --git a/blockchains/ethereum/assets/0x0843971B4ac6e842a518AA184e0271d88B5cB74F/info.json b/blockchains/ethereum/assets/0x0843971B4ac6e842a518AA184e0271d88B5cB74F/info.json new file mode 100644 index 00000000..419a95dc --- /dev/null +++ b/blockchains/ethereum/assets/0x0843971B4ac6e842a518AA184e0271d88B5cB74F/info.json @@ -0,0 +1,11 @@ +{ + "name": "CLASSIE", + "symbol": "XCL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0843971B4ac6e842a518AA184e0271d88B5cB74F", + "status": "abandoned", + "id": "0x0843971B4ac6e842a518AA184e0271d88B5cB74F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0843971B4ac6e842a518AA184e0271d88B5cB74F/logo.png b/blockchains/ethereum/assets/0x0843971B4ac6e842a518AA184e0271d88B5cB74F/logo.png new file mode 100644 index 00000000..1532e70f Binary files /dev/null and b/blockchains/ethereum/assets/0x0843971B4ac6e842a518AA184e0271d88B5cB74F/logo.png differ diff --git a/blockchains/ethereum/assets/0x08711D3B02C8758F2FB3ab4e80228418a7F8e39c/info.json b/blockchains/ethereum/assets/0x08711D3B02C8758F2FB3ab4e80228418a7F8e39c/info.json new file mode 100644 index 00000000..f02ce995 --- /dev/null +++ b/blockchains/ethereum/assets/0x08711D3B02C8758F2FB3ab4e80228418a7F8e39c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Edgeless", + "symbol": "EDG", + "type": "ERC20", + "decimals": 0, + "description": "The Ethereum smart contract-based Casino offers a 0% house edge and solves the casino transparency question.", + "website": "https://edgeless.io/", + "explorer": "https://etherscan.io/token/0x08711D3B02C8758F2FB3ab4e80228418a7F8e39c", + "status": "active", + "id": "0x08711D3B02C8758F2FB3ab4e80228418a7F8e39c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08711D3B02C8758F2FB3ab4e80228418a7F8e39c/logo.png b/blockchains/ethereum/assets/0x08711D3B02C8758F2FB3ab4e80228418a7F8e39c/logo.png new file mode 100644 index 00000000..8a5e3756 Binary files /dev/null and b/blockchains/ethereum/assets/0x08711D3B02C8758F2FB3ab4e80228418a7F8e39c/logo.png differ diff --git a/blockchains/ethereum/assets/0x0886949c1b8C412860c4264Ceb8083d1365e86CF/info.json b/blockchains/ethereum/assets/0x0886949c1b8C412860c4264Ceb8083d1365e86CF/info.json new file mode 100644 index 00000000..2e16e31b --- /dev/null +++ b/blockchains/ethereum/assets/0x0886949c1b8C412860c4264Ceb8083d1365e86CF/info.json @@ -0,0 +1,11 @@ +{ + "name": "EthereumBitcoin", + "symbol": "BTCE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0886949c1b8C412860c4264Ceb8083d1365e86CF", + "status": "abandoned", + "id": "0x0886949c1b8C412860c4264Ceb8083d1365e86CF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0886949c1b8C412860c4264Ceb8083d1365e86CF/logo.png b/blockchains/ethereum/assets/0x0886949c1b8C412860c4264Ceb8083d1365e86CF/logo.png new file mode 100755 index 00000000..486bf8f8 Binary files /dev/null and b/blockchains/ethereum/assets/0x0886949c1b8C412860c4264Ceb8083d1365e86CF/logo.png differ diff --git a/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/info.json b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/info.json new file mode 100644 index 00000000..9e1033a3 --- /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 00000000..190fc89b Binary files /dev/null and b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/logo.png differ diff --git a/blockchains/ethereum/assets/0x089A6D83282Fb8988A656189F1E7A73FA6C1caC2/info.json b/blockchains/ethereum/assets/0x089A6D83282Fb8988A656189F1E7A73FA6C1caC2/info.json new file mode 100644 index 00000000..476939f9 --- /dev/null +++ b/blockchains/ethereum/assets/0x089A6D83282Fb8988A656189F1E7A73FA6C1caC2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Prospectors Gold", + "symbol": "PGL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://prospectors.io/", + "explorer": "https://etherscan.io/token/0x089A6D83282Fb8988A656189F1E7A73FA6C1caC2", + "status": "abandoned", + "id": "0x089A6D83282Fb8988A656189F1E7A73FA6C1caC2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x089A6D83282Fb8988A656189F1E7A73FA6C1caC2/logo.png b/blockchains/ethereum/assets/0x089A6D83282Fb8988A656189F1E7A73FA6C1caC2/logo.png new file mode 100644 index 00000000..513510ec Binary files /dev/null and b/blockchains/ethereum/assets/0x089A6D83282Fb8988A656189F1E7A73FA6C1caC2/logo.png differ diff --git a/blockchains/ethereum/assets/0x089fe6cd08AeFBF647A63d9F44715b254b47a51B/info.json b/blockchains/ethereum/assets/0x089fe6cd08AeFBF647A63d9F44715b254b47a51B/info.json new file mode 100644 index 00000000..4678f792 --- /dev/null +++ b/blockchains/ethereum/assets/0x089fe6cd08AeFBF647A63d9F44715b254b47a51B/info.json @@ -0,0 +1,11 @@ +{ + "name": "uKASH", + "symbol": "UKC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x089fe6cd08AeFBF647A63d9F44715b254b47a51B", + "status": "abandoned", + "id": "0x089fe6cd08AeFBF647A63d9F44715b254b47a51B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x089fe6cd08AeFBF647A63d9F44715b254b47a51B/logo.png b/blockchains/ethereum/assets/0x089fe6cd08AeFBF647A63d9F44715b254b47a51B/logo.png new file mode 100644 index 00000000..450921c6 Binary files /dev/null and b/blockchains/ethereum/assets/0x089fe6cd08AeFBF647A63d9F44715b254b47a51B/logo.png differ diff --git a/blockchains/ethereum/assets/0x08A3C1ae43883579De6184910beC740185414425/info.json b/blockchains/ethereum/assets/0x08A3C1ae43883579De6184910beC740185414425/info.json new file mode 100644 index 00000000..a1545a1e --- /dev/null +++ b/blockchains/ethereum/assets/0x08A3C1ae43883579De6184910beC740185414425/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cabo", + "symbol": "CABO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x08A3C1ae43883579De6184910beC740185414425", + "status": "abandoned", + "id": "0x08A3C1ae43883579De6184910beC740185414425" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08A3C1ae43883579De6184910beC740185414425/logo.png b/blockchains/ethereum/assets/0x08A3C1ae43883579De6184910beC740185414425/logo.png new file mode 100644 index 00000000..53cf62c7 Binary files /dev/null and b/blockchains/ethereum/assets/0x08A3C1ae43883579De6184910beC740185414425/logo.png differ diff --git a/blockchains/ethereum/assets/0x08AD83D779BDf2BBE1ad9cc0f78aa0D24AB97802/info.json b/blockchains/ethereum/assets/0x08AD83D779BDf2BBE1ad9cc0f78aa0D24AB97802/info.json new file mode 100644 index 00000000..3559e1eb --- /dev/null +++ b/blockchains/ethereum/assets/0x08AD83D779BDf2BBE1ad9cc0f78aa0D24AB97802/info.json @@ -0,0 +1,11 @@ +{ + "name": "Robonomics Web Services", + "website": "https://robonomics.network", + "description": "Robonomics parachain lifetime subscription token.", + "explorer": "https://etherscan.io/token/0x08AD83D779BDf2BBE1ad9cc0f78aa0D24AB97802", + "type": "ERC20", + "symbol": "RWS", + "decimals": 18, + "status": "active", + "id": "0x08AD83D779BDf2BBE1ad9cc0f78aa0D24AB97802" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08AD83D779BDf2BBE1ad9cc0f78aa0D24AB97802/logo.png b/blockchains/ethereum/assets/0x08AD83D779BDf2BBE1ad9cc0f78aa0D24AB97802/logo.png new file mode 100644 index 00000000..be30b632 Binary files /dev/null and b/blockchains/ethereum/assets/0x08AD83D779BDf2BBE1ad9cc0f78aa0D24AB97802/logo.png differ diff --git a/blockchains/ethereum/assets/0x08Aa0ed0040736dd28d4c8B16Ab453b368248d19/info.json b/blockchains/ethereum/assets/0x08Aa0ed0040736dd28d4c8B16Ab453b368248d19/info.json new file mode 100644 index 00000000..0015385b --- /dev/null +++ b/blockchains/ethereum/assets/0x08Aa0ed0040736dd28d4c8B16Ab453b368248d19/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptobuyer Token", + "symbol": "XPT", + "type": "ERC20", + "decimals": 18, + "description": "At Cryptobuyer we offer multiple financial services in the same place, with the security, privacy and speed you deserve.", + "website": "https://cryptobuyer.io", + "explorer": "https://etherscan.io/token/0x08Aa0ed0040736dd28d4c8B16Ab453b368248d19", + "status": "active", + "id": "0x08Aa0ed0040736dd28d4c8B16Ab453b368248d19" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08Aa0ed0040736dd28d4c8B16Ab453b368248d19/logo.png b/blockchains/ethereum/assets/0x08Aa0ed0040736dd28d4c8B16Ab453b368248d19/logo.png new file mode 100644 index 00000000..8b5b0dfc Binary files /dev/null and b/blockchains/ethereum/assets/0x08Aa0ed0040736dd28d4c8B16Ab453b368248d19/logo.png differ diff --git a/blockchains/ethereum/assets/0x08B427001Ba2150490fe4d18B76700fe6E38136c/info.json b/blockchains/ethereum/assets/0x08B427001Ba2150490fe4d18B76700fe6E38136c/info.json new file mode 100644 index 00000000..a83b9a0d --- /dev/null +++ b/blockchains/ethereum/assets/0x08B427001Ba2150490fe4d18B76700fe6E38136c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Global Super Game", + "symbol": "GSG", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x08B427001Ba2150490fe4d18B76700fe6E38136c", + "status": "abandoned", + "id": "0x08B427001Ba2150490fe4d18B76700fe6E38136c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08B427001Ba2150490fe4d18B76700fe6E38136c/logo.png b/blockchains/ethereum/assets/0x08B427001Ba2150490fe4d18B76700fe6E38136c/logo.png new file mode 100644 index 00000000..fae158e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x08B427001Ba2150490fe4d18B76700fe6E38136c/logo.png differ diff --git a/blockchains/ethereum/assets/0x08DA80F28b960bdfAB798c172FF20619540b9ce5/info.json b/blockchains/ethereum/assets/0x08DA80F28b960bdfAB798c172FF20619540b9ce5/info.json new file mode 100644 index 00000000..e894aebc --- /dev/null +++ b/blockchains/ethereum/assets/0x08DA80F28b960bdfAB798c172FF20619540b9ce5/info.json @@ -0,0 +1,11 @@ +{ + "name": "OWN", + "symbol": "OWN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x08DA80F28b960bdfAB798c172FF20619540b9ce5", + "status": "abandoned", + "id": "0x08DA80F28b960bdfAB798c172FF20619540b9ce5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08DA80F28b960bdfAB798c172FF20619540b9ce5/logo.png b/blockchains/ethereum/assets/0x08DA80F28b960bdfAB798c172FF20619540b9ce5/logo.png new file mode 100644 index 00000000..5a55cf2b Binary files /dev/null and b/blockchains/ethereum/assets/0x08DA80F28b960bdfAB798c172FF20619540b9ce5/logo.png differ diff --git a/blockchains/ethereum/assets/0x08EA14017E135CAC7FB50a1834401122B9941033/info.json b/blockchains/ethereum/assets/0x08EA14017E135CAC7FB50a1834401122B9941033/info.json new file mode 100644 index 00000000..574d7617 --- /dev/null +++ b/blockchains/ethereum/assets/0x08EA14017E135CAC7FB50a1834401122B9941033/info.json @@ -0,0 +1,11 @@ +{ + "name": "T8T Coin", + "symbol": "T8T", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x08EA14017E135CAC7FB50a1834401122B9941033", + "status": "abandoned", + "id": "0x08EA14017E135CAC7FB50a1834401122B9941033" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08EA14017E135CAC7FB50a1834401122B9941033/logo.png b/blockchains/ethereum/assets/0x08EA14017E135CAC7FB50a1834401122B9941033/logo.png new file mode 100644 index 00000000..49dd8d16 Binary files /dev/null and b/blockchains/ethereum/assets/0x08EA14017E135CAC7FB50a1834401122B9941033/logo.png differ diff --git a/blockchains/ethereum/assets/0x08a2246DCB48DB6a5a9e1F6bC082752FCEDdD106/info.json b/blockchains/ethereum/assets/0x08a2246DCB48DB6a5a9e1F6bC082752FCEDdD106/info.json new file mode 100644 index 00000000..095815e8 --- /dev/null +++ b/blockchains/ethereum/assets/0x08a2246DCB48DB6a5a9e1F6bC082752FCEDdD106/info.json @@ -0,0 +1,11 @@ +{ + "name": "CITY", + "symbol": "CITY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.ocity.io/", + "explorer": "https://etherscan.io/token/0x08a2246DCB48DB6a5a9e1F6bC082752FCEDdD106", + "status": "abandoned", + "id": "0x08a2246DCB48DB6a5a9e1F6bC082752FCEDdD106" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08a2246DCB48DB6a5a9e1F6bC082752FCEDdD106/logo.png b/blockchains/ethereum/assets/0x08a2246DCB48DB6a5a9e1F6bC082752FCEDdD106/logo.png new file mode 100644 index 00000000..67b3f018 Binary files /dev/null and b/blockchains/ethereum/assets/0x08a2246DCB48DB6a5a9e1F6bC082752FCEDdD106/logo.png differ diff --git a/blockchains/ethereum/assets/0x08cE027e68e7F12818C862faB14CFFE5B9C606FE/info.json b/blockchains/ethereum/assets/0x08cE027e68e7F12818C862faB14CFFE5B9C606FE/info.json new file mode 100644 index 00000000..62cc0a99 --- /dev/null +++ b/blockchains/ethereum/assets/0x08cE027e68e7F12818C862faB14CFFE5B9C606FE/info.json @@ -0,0 +1,11 @@ +{ + "name": "WrapORME", + "website": "https://ecocelium.io", + "description": "Wrapped version of Ormeus Coin (ORMEUS)", + "explorer": "https://etherscan.io/token/0x08cE027e68e7F12818C862faB14CFFE5B9C606FE", + "type": "ERC20", + "symbol": "eORME", + "decimals": 8, + "status": "active", + "id": "0x08cE027e68e7F12818C862faB14CFFE5B9C606FE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08cE027e68e7F12818C862faB14CFFE5B9C606FE/logo.png b/blockchains/ethereum/assets/0x08cE027e68e7F12818C862faB14CFFE5B9C606FE/logo.png new file mode 100644 index 00000000..47797ccb Binary files /dev/null and b/blockchains/ethereum/assets/0x08cE027e68e7F12818C862faB14CFFE5B9C606FE/logo.png differ diff --git a/blockchains/ethereum/assets/0x08cEeD1e8Db59acBb687a5752f0a7DB815CFdA5e/info.json b/blockchains/ethereum/assets/0x08cEeD1e8Db59acBb687a5752f0a7DB815CFdA5e/info.json new file mode 100644 index 00000000..464f0a0e --- /dev/null +++ b/blockchains/ethereum/assets/0x08cEeD1e8Db59acBb687a5752f0a7DB815CFdA5e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Electronic Energy Coin", + "symbol": "E2C", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x08cEeD1e8Db59acBb687a5752f0a7DB815CFdA5e", + "status": "abandoned", + "id": "0x08cEeD1e8Db59acBb687a5752f0a7DB815CFdA5e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08cEeD1e8Db59acBb687a5752f0a7DB815CFdA5e/logo.png b/blockchains/ethereum/assets/0x08cEeD1e8Db59acBb687a5752f0a7DB815CFdA5e/logo.png new file mode 100644 index 00000000..b141742d Binary files /dev/null and b/blockchains/ethereum/assets/0x08cEeD1e8Db59acBb687a5752f0a7DB815CFdA5e/logo.png differ diff --git a/blockchains/ethereum/assets/0x08d32b0da63e2C3bcF8019c9c5d849d7a9d791e6/info.json b/blockchains/ethereum/assets/0x08d32b0da63e2C3bcF8019c9c5d849d7a9d791e6/info.json new file mode 100644 index 00000000..4b3aa7e0 --- /dev/null +++ b/blockchains/ethereum/assets/0x08d32b0da63e2C3bcF8019c9c5d849d7a9d791e6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dentacoin", + "website": "http://dentacoin.com", + "description": "Dentacoin is a blockchain solution for the global dental industry.", + "explorer": "https://etherscan.io/token/0x08d32b0da63e2C3bcF8019c9c5d849d7a9d791e6", + "type": "ERC20", + "symbol": "Dentacoin", + "decimals": 0, + "status": "active", + "id": "0x08d32b0da63e2C3bcF8019c9c5d849d7a9d791e6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08d32b0da63e2C3bcF8019c9c5d849d7a9d791e6/logo.png b/blockchains/ethereum/assets/0x08d32b0da63e2C3bcF8019c9c5d849d7a9d791e6/logo.png new file mode 100644 index 00000000..82e66d5a Binary files /dev/null and b/blockchains/ethereum/assets/0x08d32b0da63e2C3bcF8019c9c5d849d7a9d791e6/logo.png differ diff --git a/blockchains/ethereum/assets/0x08d6E6B487f0d402160C8038eC0210FCdE6CA570/info.json b/blockchains/ethereum/assets/0x08d6E6B487f0d402160C8038eC0210FCdE6CA570/info.json new file mode 100644 index 00000000..d0d64589 --- /dev/null +++ b/blockchains/ethereum/assets/0x08d6E6B487f0d402160C8038eC0210FCdE6CA570/info.json @@ -0,0 +1,17 @@ +{ + "name": "Defi Gamble", + "website": "https://defigamble.com", + "description": "The DFG token will be the centerpiece of this new platform. Through behavioural mining, innovative token economy design, and other incentive mechanisms, developers will be given the power to build the best DApps possible, and players will be enabled to become platform stakeholders as the platform continues on its path of providing best decentralized gaming experiences on the blockchain.", + "explorer": "https://etherscan.io/token/0x08d6E6B487f0d402160C8038eC0210FCdE6CA570", + "type": "ERC20", + "symbol": "DFG", + "decimals": 6, + "status": "active", + "id": "0x08d6E6B487f0d402160C8038eC0210FCdE6CA570", + "links": [ + { + "name": "whitepaper", + "url": "https://defigamble.com/file/whitepaper_defigamble.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08d6E6B487f0d402160C8038eC0210FCdE6CA570/logo.png b/blockchains/ethereum/assets/0x08d6E6B487f0d402160C8038eC0210FCdE6CA570/logo.png new file mode 100644 index 00000000..1dae6ac7 Binary files /dev/null and b/blockchains/ethereum/assets/0x08d6E6B487f0d402160C8038eC0210FCdE6CA570/logo.png differ diff --git a/blockchains/ethereum/assets/0x08d967bb0134F2d07f7cfb6E246680c53927DD30/info.json b/blockchains/ethereum/assets/0x08d967bb0134F2d07f7cfb6E246680c53927DD30/info.json new file mode 100644 index 00000000..dc561591 --- /dev/null +++ b/blockchains/ethereum/assets/0x08d967bb0134F2d07f7cfb6E246680c53927DD30/info.json @@ -0,0 +1,11 @@ +{ + "name": "MATH Token", + "symbol": "MATH", + "type": "ERC20", + "decimals": 18, + "description": "65+ Popular public chains supported", + "website": "https://mathwallet.org/", + "explorer": "https://etherscan.io/token/0x08d967bb0134F2d07f7cfb6E246680c53927DD30", + "status": "active", + "id": "0x08d967bb0134F2d07f7cfb6E246680c53927DD30" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08d967bb0134F2d07f7cfb6E246680c53927DD30/logo.png b/blockchains/ethereum/assets/0x08d967bb0134F2d07f7cfb6E246680c53927DD30/logo.png new file mode 100644 index 00000000..9a0131c5 Binary files /dev/null and b/blockchains/ethereum/assets/0x08d967bb0134F2d07f7cfb6E246680c53927DD30/logo.png differ diff --git a/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/info.json b/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/info.json new file mode 100644 index 00000000..e2493149 --- /dev/null +++ b/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/info.json @@ -0,0 +1,32 @@ +{ + "name": "AURIcoin", + "type": "ERC20", + "symbol": "RIC", + "decimals": 8, + "website": "https://auricoin.org/", + "description": "With Auricoin money in the economic field, new and forgotten theories are applied, which academics continue to teach in universities for 80 years, and are present in the study curriculum in economics careers, but which are impossible apply, with these types of currency cones that are used and have been used in world economic history", + "explorer": "https://etherscan.io/token/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789", + "status": "active", + "id": "0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789", + "links": [ + { + "name": "x", + "url": "https://x.com/Auricoin" + }, + { + "name": "whitepaper", + "url": "https://auricoin.org/assets/docs/whitepaper_en.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCFps56ukBTaxLpruJjejQxw" + }, + { + "name": "telegram", + "url": "https://t.me/auricoin" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/logo.png b/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/logo.png new file mode 100644 index 00000000..ec31bbd9 Binary files /dev/null and b/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/logo.png differ diff --git a/blockchains/ethereum/assets/0x08f5a9235B08173b7569F83645d2c7fB55e8cCD8/info.json b/blockchains/ethereum/assets/0x08f5a9235B08173b7569F83645d2c7fB55e8cCD8/info.json new file mode 100644 index 00000000..7b7f1c5c --- /dev/null +++ b/blockchains/ethereum/assets/0x08f5a9235B08173b7569F83645d2c7fB55e8cCD8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tierion", + "website": "https://tierion.com", + "description": "Use the blockchain as a global platform to verify any data, file, or business process. Developer tools & API to anchor data in the blockchain.", + "explorer": "https://etherscan.io/token/0x08f5a9235B08173b7569F83645d2c7fB55e8cCD8", + "type": "ERC20", + "symbol": "TNT", + "decimals": 8, + "status": "active", + "id": "0x08f5a9235B08173b7569F83645d2c7fB55e8cCD8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x08f5a9235B08173b7569F83645d2c7fB55e8cCD8/logo.png b/blockchains/ethereum/assets/0x08f5a9235B08173b7569F83645d2c7fB55e8cCD8/logo.png new file mode 100644 index 00000000..bf796b89 Binary files /dev/null and b/blockchains/ethereum/assets/0x08f5a9235B08173b7569F83645d2c7fB55e8cCD8/logo.png differ diff --git a/blockchains/ethereum/assets/0x090185f2135308BaD17527004364eBcC2D37e5F6/info.json b/blockchains/ethereum/assets/0x090185f2135308BaD17527004364eBcC2D37e5F6/info.json new file mode 100644 index 00000000..a52fb8fb --- /dev/null +++ b/blockchains/ethereum/assets/0x090185f2135308BaD17527004364eBcC2D37e5F6/info.json @@ -0,0 +1,11 @@ +{ + "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://etherscan.io/token/0x090185f2135308BaD17527004364eBcC2D37e5F6", + "type": "ERC20", + "symbol": "SPELL", + "decimals": 18, + "status": "active", + "id": "0x090185f2135308BaD17527004364eBcC2D37e5F6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x090185f2135308BaD17527004364eBcC2D37e5F6/logo.png b/blockchains/ethereum/assets/0x090185f2135308BaD17527004364eBcC2D37e5F6/logo.png new file mode 100644 index 00000000..fc7438b7 Binary files /dev/null and b/blockchains/ethereum/assets/0x090185f2135308BaD17527004364eBcC2D37e5F6/logo.png differ diff --git a/blockchains/ethereum/assets/0x0913dDAE242839f8995c0375493f9a1A3Bddc977/info.json b/blockchains/ethereum/assets/0x0913dDAE242839f8995c0375493f9a1A3Bddc977/info.json new file mode 100644 index 00000000..b7b2f0da --- /dev/null +++ b/blockchains/ethereum/assets/0x0913dDAE242839f8995c0375493f9a1A3Bddc977/info.json @@ -0,0 +1,24 @@ +{ + "name": "Marshall Rogan Inu", + "type": "ERC20", + "symbol": "MRI", + "decimals": 18, + "website": "https://www.marshallinu.com/", + "description": "Marshall Rogan Inu is a meme coin at the intersection of UFC and dog-themed coins. MRI promises to be the first token offering direct sponsorship to UFC fighters in the form of Ether and the native MRI token. Fighters could use the donations to cover their expenses and incentivize the project’s success by engaging in the community.", + "explorer": "https://etherscan.io/token/0x0913dDAE242839f8995c0375493f9a1A3Bddc977", + "status": "active", + "id": "0x0913dDAE242839f8995c0375493f9a1A3Bddc977", + "links": [ + { + "name": "x", + "url": "https://x.com/marshallinu_" + }, + { + "name": "telegram", + "url": "https://t.me/marshallroganinuofficialchat" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0913dDAE242839f8995c0375493f9a1A3Bddc977/logo.png b/blockchains/ethereum/assets/0x0913dDAE242839f8995c0375493f9a1A3Bddc977/logo.png new file mode 100644 index 00000000..d0df0ea0 Binary files /dev/null and b/blockchains/ethereum/assets/0x0913dDAE242839f8995c0375493f9a1A3Bddc977/logo.png differ diff --git a/blockchains/ethereum/assets/0x091B0172f8F13d69fA2B7Cc0DF520bd69CE92f55/info.json b/blockchains/ethereum/assets/0x091B0172f8F13d69fA2B7Cc0DF520bd69CE92f55/info.json new file mode 100644 index 00000000..12483f3b --- /dev/null +++ b/blockchains/ethereum/assets/0x091B0172f8F13d69fA2B7Cc0DF520bd69CE92f55/info.json @@ -0,0 +1,11 @@ +{ + "name": "CentaSaveX", + "symbol": "CSX", + "type": "ERC20", + "decimals": 8, + "description": "CentasaveX aims to guide people in saving cryptocurrency from a little amount to a bigger amount that can be used in the future. CentasaveX is the power of Saving Crypto.", + "website": "https://centasavex.site/", + "explorer": "https://etherscan.io/token/0x091B0172f8F13d69fA2B7Cc0DF520bd69CE92f55", + "status": "abandoned", + "id": "0x091B0172f8F13d69fA2B7Cc0DF520bd69CE92f55" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x091B0172f8F13d69fA2B7Cc0DF520bd69CE92f55/logo.png b/blockchains/ethereum/assets/0x091B0172f8F13d69fA2B7Cc0DF520bd69CE92f55/logo.png new file mode 100644 index 00000000..66e84a20 Binary files /dev/null and b/blockchains/ethereum/assets/0x091B0172f8F13d69fA2B7Cc0DF520bd69CE92f55/logo.png differ diff --git a/blockchains/ethereum/assets/0x091C42574FcBD97a0175E41C7B11396d7023b4D4/info.json b/blockchains/ethereum/assets/0x091C42574FcBD97a0175E41C7B11396d7023b4D4/info.json new file mode 100644 index 00000000..cc6d7efe --- /dev/null +++ b/blockchains/ethereum/assets/0x091C42574FcBD97a0175E41C7B11396d7023b4D4/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLACKCOIN", + "symbol": "BLACK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x091C42574FcBD97a0175E41C7B11396d7023b4D4", + "status": "abandoned", + "id": "0x091C42574FcBD97a0175E41C7B11396d7023b4D4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x091C42574FcBD97a0175E41C7B11396d7023b4D4/logo.png b/blockchains/ethereum/assets/0x091C42574FcBD97a0175E41C7B11396d7023b4D4/logo.png new file mode 100755 index 00000000..6649c2b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x091C42574FcBD97a0175E41C7B11396d7023b4D4/logo.png differ diff --git a/blockchains/ethereum/assets/0x0923067100b2A4839F1803ad73b24097e20109Df/info.json b/blockchains/ethereum/assets/0x0923067100b2A4839F1803ad73b24097e20109Df/info.json new file mode 100644 index 00000000..5cd3cc62 --- /dev/null +++ b/blockchains/ethereum/assets/0x0923067100b2A4839F1803ad73b24097e20109Df/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrayV Block", + "symbol": "TVB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0923067100b2A4839F1803ad73b24097e20109Df", + "status": "abandoned", + "id": "0x0923067100b2A4839F1803ad73b24097e20109Df" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0923067100b2A4839F1803ad73b24097e20109Df/logo.png b/blockchains/ethereum/assets/0x0923067100b2A4839F1803ad73b24097e20109Df/logo.png new file mode 100644 index 00000000..6e8dce9e Binary files /dev/null and b/blockchains/ethereum/assets/0x0923067100b2A4839F1803ad73b24097e20109Df/logo.png differ diff --git a/blockchains/ethereum/assets/0x092428E2Ce418B222d0C5e2F7861bbDFbc2dd5D1/info.json b/blockchains/ethereum/assets/0x092428E2Ce418B222d0C5e2F7861bbDFbc2dd5D1/info.json new file mode 100644 index 00000000..b09a4e76 --- /dev/null +++ b/blockchains/ethereum/assets/0x092428E2Ce418B222d0C5e2F7861bbDFbc2dd5D1/info.json @@ -0,0 +1,11 @@ +{ + "name": "UNOCALL", + "symbol": "CALL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x092428E2Ce418B222d0C5e2F7861bbDFbc2dd5D1", + "status": "abandoned", + "id": "0x092428E2Ce418B222d0C5e2F7861bbDFbc2dd5D1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x092428E2Ce418B222d0C5e2F7861bbDFbc2dd5D1/logo.png b/blockchains/ethereum/assets/0x092428E2Ce418B222d0C5e2F7861bbDFbc2dd5D1/logo.png new file mode 100755 index 00000000..acaa1e2b Binary files /dev/null and b/blockchains/ethereum/assets/0x092428E2Ce418B222d0C5e2F7861bbDFbc2dd5D1/logo.png differ diff --git a/blockchains/ethereum/assets/0x092Cc6dAd6f7828Ea81a78EDd9f83b376BDf888d/info.json b/blockchains/ethereum/assets/0x092Cc6dAd6f7828Ea81a78EDd9f83b376BDf888d/info.json new file mode 100644 index 00000000..5ab2b87b --- /dev/null +++ b/blockchains/ethereum/assets/0x092Cc6dAd6f7828Ea81a78EDd9f83b376BDf888d/info.json @@ -0,0 +1,11 @@ +{ + "name": " AISI GROUP ", + "symbol": "AISI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x092Cc6dAd6f7828Ea81a78EDd9f83b376BDf888d", + "status": "abandoned", + "id": "0x092Cc6dAd6f7828Ea81a78EDd9f83b376BDf888d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x092Cc6dAd6f7828Ea81a78EDd9f83b376BDf888d/logo.png b/blockchains/ethereum/assets/0x092Cc6dAd6f7828Ea81a78EDd9f83b376BDf888d/logo.png new file mode 100644 index 00000000..c854930b Binary files /dev/null and b/blockchains/ethereum/assets/0x092Cc6dAd6f7828Ea81a78EDd9f83b376BDf888d/logo.png differ diff --git a/blockchains/ethereum/assets/0x093e5C256Ff8B32c7F1377f4C20e331674C77F00/info.json b/blockchains/ethereum/assets/0x093e5C256Ff8B32c7F1377f4C20e331674C77F00/info.json new file mode 100644 index 00000000..7d5a3e8f --- /dev/null +++ b/blockchains/ethereum/assets/0x093e5C256Ff8B32c7F1377f4C20e331674C77F00/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dignity", + "symbol": "DIG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://cryptobontix.com/", + "explorer": "https://etherscan.io/token/0x093e5C256Ff8B32c7F1377f4C20e331674C77F00", + "status": "abandoned", + "id": "0x093e5C256Ff8B32c7F1377f4C20e331674C77F00" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x093e5C256Ff8B32c7F1377f4C20e331674C77F00/logo.png b/blockchains/ethereum/assets/0x093e5C256Ff8B32c7F1377f4C20e331674C77F00/logo.png new file mode 100644 index 00000000..648bc142 Binary files /dev/null and b/blockchains/ethereum/assets/0x093e5C256Ff8B32c7F1377f4C20e331674C77F00/logo.png differ diff --git a/blockchains/ethereum/assets/0x0947b0e6D821378805c9598291385CE7c791A6B2/info.json b/blockchains/ethereum/assets/0x0947b0e6D821378805c9598291385CE7c791A6B2/info.json new file mode 100644 index 00000000..b1b1af51 --- /dev/null +++ b/blockchains/ethereum/assets/0x0947b0e6D821378805c9598291385CE7c791A6B2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lendingblock", + "symbol": "LND", + "type": "ERC20", + "decimals": 18, + "description": "Lendingblock is a platform that facilitates peer-to-peer borrowing and lending of cryptocurrencies and digital assets.", + "website": "https://lendingblock.com/", + "explorer": "https://etherscan.io/token/0x0947b0e6D821378805c9598291385CE7c791A6B2", + "status": "active", + "id": "0x0947b0e6D821378805c9598291385CE7c791A6B2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0947b0e6D821378805c9598291385CE7c791A6B2/logo.png b/blockchains/ethereum/assets/0x0947b0e6D821378805c9598291385CE7c791A6B2/logo.png new file mode 100644 index 00000000..757fe5a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x0947b0e6D821378805c9598291385CE7c791A6B2/logo.png differ diff --git a/blockchains/ethereum/assets/0x094c875704c14783049DDF8136E298B3a099c446/info.json b/blockchains/ethereum/assets/0x094c875704c14783049DDF8136E298B3a099c446/info.json new file mode 100644 index 00000000..43689c31 --- /dev/null +++ b/blockchains/ethereum/assets/0x094c875704c14783049DDF8136E298B3a099c446/info.json @@ -0,0 +1,11 @@ +{ + "name": "Promotion Token @ https://kyber.network/swap", + "symbol": "PT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x094c875704c14783049DDF8136E298B3a099c446", + "status": "abandoned", + "id": "0x094c875704c14783049DDF8136E298B3a099c446" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x094c875704c14783049DDF8136E298B3a099c446/logo.png b/blockchains/ethereum/assets/0x094c875704c14783049DDF8136E298B3a099c446/logo.png new file mode 100644 index 00000000..7c669596 Binary files /dev/null and b/blockchains/ethereum/assets/0x094c875704c14783049DDF8136E298B3a099c446/logo.png differ diff --git a/blockchains/ethereum/assets/0x0954906da0Bf32d5479e25f46056d22f08464cab/info.json b/blockchains/ethereum/assets/0x0954906da0Bf32d5479e25f46056d22f08464cab/info.json new file mode 100644 index 00000000..c2ce255b --- /dev/null +++ b/blockchains/ethereum/assets/0x0954906da0Bf32d5479e25f46056d22f08464cab/info.json @@ -0,0 +1,12 @@ +{ + "name": "Index", + "website": "https://indexcoop.com/", + "description": "A token governing the global community creating and maintaining the best crypto index products", + "explorer": "https://etherscan.io/token/0x0954906da0Bf32d5479e25f46056d22f08464cab", + "research": "https://www.indexcoop.com/", + "type": "ERC20", + "symbol": "INDEX", + "decimals": 18, + "status": "active", + "id": "0x0954906da0Bf32d5479e25f46056d22f08464cab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0954906da0Bf32d5479e25f46056d22f08464cab/logo.png b/blockchains/ethereum/assets/0x0954906da0Bf32d5479e25f46056d22f08464cab/logo.png new file mode 100644 index 00000000..0a1e36f0 Binary files /dev/null and b/blockchains/ethereum/assets/0x0954906da0Bf32d5479e25f46056d22f08464cab/logo.png differ diff --git a/blockchains/ethereum/assets/0x09617F6fD6cF8A71278ec86e23bBab29C04353a7/info.json b/blockchains/ethereum/assets/0x09617F6fD6cF8A71278ec86e23bBab29C04353a7/info.json new file mode 100644 index 00000000..49d5e1b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x09617F6fD6cF8A71278ec86e23bBab29C04353a7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unblocked Ledger Token", + "symbol": "ULT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://shardus.com/", + "explorer": "https://etherscan.io/token/0x09617F6fD6cF8A71278ec86e23bBab29C04353a7", + "status": "abandoned", + "id": "0x09617F6fD6cF8A71278ec86e23bBab29C04353a7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x09617F6fD6cF8A71278ec86e23bBab29C04353a7/logo.png b/blockchains/ethereum/assets/0x09617F6fD6cF8A71278ec86e23bBab29C04353a7/logo.png new file mode 100644 index 00000000..a04a7a9e Binary files /dev/null and b/blockchains/ethereum/assets/0x09617F6fD6cF8A71278ec86e23bBab29C04353a7/logo.png differ diff --git a/blockchains/ethereum/assets/0x098d3e95655609A5469DcdFB6EA1335bc609f310/info.json b/blockchains/ethereum/assets/0x098d3e95655609A5469DcdFB6EA1335bc609f310/info.json new file mode 100644 index 00000000..40bd8502 --- /dev/null +++ b/blockchains/ethereum/assets/0x098d3e95655609A5469DcdFB6EA1335bc609f310/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-16/30M46", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x098d3e95655609A5469DcdFB6EA1335bc609f310", + "status": "abandoned", + "id": "0x098d3e95655609A5469DcdFB6EA1335bc609f310" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x098d3e95655609A5469DcdFB6EA1335bc609f310/logo.png b/blockchains/ethereum/assets/0x098d3e95655609A5469DcdFB6EA1335bc609f310/logo.png new file mode 100644 index 00000000..7fb50cbc Binary files /dev/null and b/blockchains/ethereum/assets/0x098d3e95655609A5469DcdFB6EA1335bc609f310/logo.png differ diff --git a/blockchains/ethereum/assets/0x09970aec766b6f3223aCA9111555E99DC50Ff13a/info.json b/blockchains/ethereum/assets/0x09970aec766b6f3223aCA9111555E99DC50Ff13a/info.json new file mode 100644 index 00000000..9157fac2 --- /dev/null +++ b/blockchains/ethereum/assets/0x09970aec766b6f3223aCA9111555E99DC50Ff13a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Levolution.io Token", + "symbol": "LEVL", + "type": "ERC20", + "decimals": 18, + "description": "The Levolution platform aims to help entrepreneurs leverage the value of token offerings, by allowing them to build, develop, market, launch and optimize their project on a single platform.", + "website": "https://ito.levolution.io", + "explorer": "https://etherscan.io/token/0x09970aec766b6f3223aCA9111555E99DC50Ff13a", + "status": "active", + "id": "0x09970aec766b6f3223aCA9111555E99DC50Ff13a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x09970aec766b6f3223aCA9111555E99DC50Ff13a/logo.png b/blockchains/ethereum/assets/0x09970aec766b6f3223aCA9111555E99DC50Ff13a/logo.png new file mode 100644 index 00000000..39bf9bd3 Binary files /dev/null and b/blockchains/ethereum/assets/0x09970aec766b6f3223aCA9111555E99DC50Ff13a/logo.png differ diff --git a/blockchains/ethereum/assets/0x09B0Db1E4E15233D1Eb6995A851780aF36548eB8/info.json b/blockchains/ethereum/assets/0x09B0Db1E4E15233D1Eb6995A851780aF36548eB8/info.json new file mode 100644 index 00000000..6b02fb2f --- /dev/null +++ b/blockchains/ethereum/assets/0x09B0Db1E4E15233D1Eb6995A851780aF36548eB8/info.json @@ -0,0 +1,11 @@ +{ + "name": "EtherDiamond", + "symbol": "ETD", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x09B0Db1E4E15233D1Eb6995A851780aF36548eB8", + "status": "abandoned", + "id": "0x09B0Db1E4E15233D1Eb6995A851780aF36548eB8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x09B0Db1E4E15233D1Eb6995A851780aF36548eB8/logo.png b/blockchains/ethereum/assets/0x09B0Db1E4E15233D1Eb6995A851780aF36548eB8/logo.png new file mode 100644 index 00000000..6827fae8 Binary files /dev/null and b/blockchains/ethereum/assets/0x09B0Db1E4E15233D1Eb6995A851780aF36548eB8/logo.png differ diff --git a/blockchains/ethereum/assets/0x09Ccd2DA5dCDd0510268d4979e792381337138b8/info.json b/blockchains/ethereum/assets/0x09Ccd2DA5dCDd0510268d4979e792381337138b8/info.json new file mode 100644 index 00000000..8bb63c8f --- /dev/null +++ b/blockchains/ethereum/assets/0x09Ccd2DA5dCDd0510268d4979e792381337138b8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bodhi Token", + "symbol": "NBOT", + "type": "ERC20", + "decimals": 18, + "description": "The Bodhi project, decentralized prediction market.", + "website": "https://www.nakachain.org/", + "explorer": "https://etherscan.io/token/0x09Ccd2DA5dCDd0510268d4979e792381337138b8", + "status": "active", + "id": "0x09Ccd2DA5dCDd0510268d4979e792381337138b8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x09Ccd2DA5dCDd0510268d4979e792381337138b8/logo.png b/blockchains/ethereum/assets/0x09Ccd2DA5dCDd0510268d4979e792381337138b8/logo.png new file mode 100644 index 00000000..a7fc36f9 Binary files /dev/null and b/blockchains/ethereum/assets/0x09Ccd2DA5dCDd0510268d4979e792381337138b8/logo.png differ diff --git a/blockchains/ethereum/assets/0x09EC3Fc396a66dA586b5e84e3fB1d6c5ee5F4077/info.json b/blockchains/ethereum/assets/0x09EC3Fc396a66dA586b5e84e3fB1d6c5ee5F4077/info.json new file mode 100644 index 00000000..46efefff --- /dev/null +++ b/blockchains/ethereum/assets/0x09EC3Fc396a66dA586b5e84e3fB1d6c5ee5F4077/info.json @@ -0,0 +1,11 @@ +{ + "name": "VIPNOW-VNP", + "symbol": "VNP", + "type": "ERC20", + "decimals": 1, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x09EC3Fc396a66dA586b5e84e3fB1d6c5ee5F4077", + "status": "abandoned", + "id": "0x09EC3Fc396a66dA586b5e84e3fB1d6c5ee5F4077" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x09EC3Fc396a66dA586b5e84e3fB1d6c5ee5F4077/logo.png b/blockchains/ethereum/assets/0x09EC3Fc396a66dA586b5e84e3fB1d6c5ee5F4077/logo.png new file mode 100644 index 00000000..f3fbbd00 Binary files /dev/null and b/blockchains/ethereum/assets/0x09EC3Fc396a66dA586b5e84e3fB1d6c5ee5F4077/logo.png differ diff --git a/blockchains/ethereum/assets/0x09a3EcAFa817268f77BE1283176B946C4ff2E608/info.json b/blockchains/ethereum/assets/0x09a3EcAFa817268f77BE1283176B946C4ff2E608/info.json new file mode 100644 index 00000000..b104db61 --- /dev/null +++ b/blockchains/ethereum/assets/0x09a3EcAFa817268f77BE1283176B946C4ff2E608/info.json @@ -0,0 +1,32 @@ +{ + "name": "Mirror Protocol", + "website": "https://mirror.finance", + "description": "Goverance token of Mirror Protocol.", + "explorer": "https://etherscan.io/token/0x09a3EcAFa817268f77BE1283176B946C4ff2E608", + "type": "ERC20", + "symbol": "MIR", + "decimals": 18, + "status": "active", + "id": "0x09a3EcAFa817268f77BE1283176B946C4ff2E608", + "tags": [ + "wrapped" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MirrorProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/mirror_protocol" + }, + { + "name": "discord", + "url": "https://discord.com/MirrorProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/@mirror-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x09a3EcAFa817268f77BE1283176B946C4ff2E608/logo.png b/blockchains/ethereum/assets/0x09a3EcAFa817268f77BE1283176B946C4ff2E608/logo.png new file mode 100644 index 00000000..2d99be6a Binary files /dev/null and b/blockchains/ethereum/assets/0x09a3EcAFa817268f77BE1283176B946C4ff2E608/logo.png differ diff --git a/blockchains/ethereum/assets/0x09a8501E22Da800cb7a482fc5E2Bf32c90a55995/info.json b/blockchains/ethereum/assets/0x09a8501E22Da800cb7a482fc5E2Bf32c90a55995/info.json new file mode 100644 index 00000000..36fa526f --- /dev/null +++ b/blockchains/ethereum/assets/0x09a8501E22Da800cb7a482fc5E2Bf32c90a55995/info.json @@ -0,0 +1,11 @@ +{ + "name": "Folexcoin", + "symbol": "FLX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x09a8501E22Da800cb7a482fc5E2Bf32c90a55995", + "status": "abandoned", + "id": "0x09a8501E22Da800cb7a482fc5E2Bf32c90a55995" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x09a8501E22Da800cb7a482fc5E2Bf32c90a55995/logo.png b/blockchains/ethereum/assets/0x09a8501E22Da800cb7a482fc5E2Bf32c90a55995/logo.png new file mode 100644 index 00000000..e2aa8365 Binary files /dev/null and b/blockchains/ethereum/assets/0x09a8501E22Da800cb7a482fc5E2Bf32c90a55995/logo.png differ diff --git a/blockchains/ethereum/assets/0x09a9122e02d7b9871eAA15a0C168DA624132D3EF/info.json b/blockchains/ethereum/assets/0x09a9122e02d7b9871eAA15a0C168DA624132D3EF/info.json new file mode 100644 index 00000000..1a8c1c09 --- /dev/null +++ b/blockchains/ethereum/assets/0x09a9122e02d7b9871eAA15a0C168DA624132D3EF/info.json @@ -0,0 +1,11 @@ +{ + "name": "BUSINESS TICKER COIN", + "symbol": "BSTC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x09a9122e02d7b9871eAA15a0C168DA624132D3EF", + "status": "abandoned", + "id": "0x09a9122e02d7b9871eAA15a0C168DA624132D3EF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x09a9122e02d7b9871eAA15a0C168DA624132D3EF/logo.png b/blockchains/ethereum/assets/0x09a9122e02d7b9871eAA15a0C168DA624132D3EF/logo.png new file mode 100644 index 00000000..79522588 Binary files /dev/null and b/blockchains/ethereum/assets/0x09a9122e02d7b9871eAA15a0C168DA624132D3EF/logo.png differ diff --git a/blockchains/ethereum/assets/0x09aeA324E0f9EEbEd4C593aBe891D98F02a5cBDE/info.json b/blockchains/ethereum/assets/0x09aeA324E0f9EEbEd4C593aBe891D98F02a5cBDE/info.json new file mode 100644 index 00000000..8c474913 --- /dev/null +++ b/blockchains/ethereum/assets/0x09aeA324E0f9EEbEd4C593aBe891D98F02a5cBDE/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 337-CN49", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x09aeA324E0f9EEbEd4C593aBe891D98F02a5cBDE", + "status": "abandoned", + "id": "0x09aeA324E0f9EEbEd4C593aBe891D98F02a5cBDE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x09aeA324E0f9EEbEd4C593aBe891D98F02a5cBDE/logo.png b/blockchains/ethereum/assets/0x09aeA324E0f9EEbEd4C593aBe891D98F02a5cBDE/logo.png new file mode 100644 index 00000000..c893efdf Binary files /dev/null and b/blockchains/ethereum/assets/0x09aeA324E0f9EEbEd4C593aBe891D98F02a5cBDE/logo.png differ diff --git a/blockchains/ethereum/assets/0x09cabEC1eAd1c0Ba254B09efb3EE13841712bE14/info.json b/blockchains/ethereum/assets/0x09cabEC1eAd1c0Ba254B09efb3EE13841712bE14/info.json new file mode 100644 index 00000000..282cc237 --- /dev/null +++ b/blockchains/ethereum/assets/0x09cabEC1eAd1c0Ba254B09efb3EE13841712bE14/info.json @@ -0,0 +1,11 @@ +{ + "name": "Uniswap V1", + "symbol": "UNI-V1", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x09cabEC1eAd1c0Ba254B09efb3EE13841712bE14", + "status": "abandoned", + "id": "0x09cabEC1eAd1c0Ba254B09efb3EE13841712bE14" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x09cabEC1eAd1c0Ba254B09efb3EE13841712bE14/logo.png b/blockchains/ethereum/assets/0x09cabEC1eAd1c0Ba254B09efb3EE13841712bE14/logo.png new file mode 100644 index 00000000..5bf3b623 Binary files /dev/null and b/blockchains/ethereum/assets/0x09cabEC1eAd1c0Ba254B09efb3EE13841712bE14/logo.png differ diff --git a/blockchains/ethereum/assets/0x09e64c2B61a5f1690Ee6fbeD9baf5D6990F8dFd0/info.json b/blockchains/ethereum/assets/0x09e64c2B61a5f1690Ee6fbeD9baf5D6990F8dFd0/info.json new file mode 100644 index 00000000..2bd64a9c --- /dev/null +++ b/blockchains/ethereum/assets/0x09e64c2B61a5f1690Ee6fbeD9baf5D6990F8dFd0/info.json @@ -0,0 +1,18 @@ +{ + "name": "Growth DeFi", + "ticker": "GRO", + "website": "https://growthdefi.com/", + "description": "GROWTH's purpose is creating an ecosystem where both GRO holders and gToken holders can benefit from the positive effects of compounded interest, high liquidity and a share of arbitragers profit without suffering from impermanent loss.", + "explorer": "https://etherscan.io/token/0x09e64c2B61a5f1690Ee6fbeD9baf5D6990F8dFd0", + "type": "ERC20", + "symbol": "GRO", + "decimals": 18, + "status": "active", + "id": "0x09e64c2B61a5f1690Ee6fbeD9baf5D6990F8dFd0", + "links": [ + { + "name": "whitepaper", + "url": "https://growthdefi.com/pdf/GROWTH_DeFi_V1.0.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x09e64c2B61a5f1690Ee6fbeD9baf5D6990F8dFd0/logo.png b/blockchains/ethereum/assets/0x09e64c2B61a5f1690Ee6fbeD9baf5D6990F8dFd0/logo.png new file mode 100644 index 00000000..b2789c13 Binary files /dev/null and b/blockchains/ethereum/assets/0x09e64c2B61a5f1690Ee6fbeD9baf5D6990F8dFd0/logo.png differ diff --git a/blockchains/ethereum/assets/0x09fE5f0236F0Ea5D930197DCE254d77B04128075/info.json b/blockchains/ethereum/assets/0x09fE5f0236F0Ea5D930197DCE254d77B04128075/info.json new file mode 100644 index 00000000..7710fc87 --- /dev/null +++ b/blockchains/ethereum/assets/0x09fE5f0236F0Ea5D930197DCE254d77B04128075/info.json @@ -0,0 +1,14 @@ +{ + "name": "Wrapped CryptoKitties", + "symbol": "WCK", + "type": "ERC20", + "decimals": 18, + "description": "ERC20 tokens, each backed 1:1 by an ERC721 CryptoKitty.", + "website": "https://wrappedkitties.com/", + "explorer": "https://etherscan.io/token/0x09fE5f0236F0Ea5D930197DCE254d77B04128075", + "status": "active", + "id": "0x09fE5f0236F0Ea5D930197DCE254d77B04128075", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x09fE5f0236F0Ea5D930197DCE254d77B04128075/logo.png b/blockchains/ethereum/assets/0x09fE5f0236F0Ea5D930197DCE254d77B04128075/logo.png new file mode 100644 index 00000000..a92e79ff Binary files /dev/null and b/blockchains/ethereum/assets/0x09fE5f0236F0Ea5D930197DCE254d77B04128075/logo.png differ diff --git a/blockchains/ethereum/assets/0x0A07525aa264a3e14CDbDd839B1eDa02A34e2778/info.json b/blockchains/ethereum/assets/0x0A07525aa264a3e14CDbDd839B1eDa02A34e2778/info.json new file mode 100644 index 00000000..0b2899da --- /dev/null +++ b/blockchains/ethereum/assets/0x0A07525aa264a3e14CDbDd839B1eDa02A34e2778/info.json @@ -0,0 +1,11 @@ +{ + "name": "OFW", + "symbol": "OFW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0A07525aa264a3e14CDbDd839B1eDa02A34e2778", + "status": "abandoned", + "id": "0x0A07525aa264a3e14CDbDd839B1eDa02A34e2778" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0A07525aa264a3e14CDbDd839B1eDa02A34e2778/logo.png b/blockchains/ethereum/assets/0x0A07525aa264a3e14CDbDd839B1eDa02A34e2778/logo.png new file mode 100755 index 00000000..b1dd1701 Binary files /dev/null and b/blockchains/ethereum/assets/0x0A07525aa264a3e14CDbDd839B1eDa02A34e2778/logo.png differ diff --git a/blockchains/ethereum/assets/0x0A13c213d5148Ccae7517C5d0eCfBAa18199E739/info.json b/blockchains/ethereum/assets/0x0A13c213d5148Ccae7517C5d0eCfBAa18199E739/info.json new file mode 100644 index 00000000..3fa5c175 --- /dev/null +++ b/blockchains/ethereum/assets/0x0A13c213d5148Ccae7517C5d0eCfBAa18199E739/info.json @@ -0,0 +1,11 @@ +{ + "name": "Global Super Game", + "symbol": "GSG", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0A13c213d5148Ccae7517C5d0eCfBAa18199E739", + "status": "abandoned", + "id": "0x0A13c213d5148Ccae7517C5d0eCfBAa18199E739" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0A13c213d5148Ccae7517C5d0eCfBAa18199E739/logo.png b/blockchains/ethereum/assets/0x0A13c213d5148Ccae7517C5d0eCfBAa18199E739/logo.png new file mode 100644 index 00000000..fae158e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x0A13c213d5148Ccae7517C5d0eCfBAa18199E739/logo.png differ diff --git a/blockchains/ethereum/assets/0x0A3F9678d6b631386c2DD3DE8809b48b0D1BbD56/info.json b/blockchains/ethereum/assets/0x0A3F9678d6b631386c2DD3DE8809b48b0D1BbD56/info.json new file mode 100644 index 00000000..8c34b8db --- /dev/null +++ b/blockchains/ethereum/assets/0x0A3F9678d6b631386c2DD3DE8809b48b0D1BbD56/info.json @@ -0,0 +1,11 @@ +{ + "name": "LIKER", + "symbol": "LK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0A3F9678d6b631386c2DD3DE8809b48b0D1BbD56", + "status": "abandoned", + "id": "0x0A3F9678d6b631386c2DD3DE8809b48b0D1BbD56" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0A3F9678d6b631386c2DD3DE8809b48b0D1BbD56/logo.png b/blockchains/ethereum/assets/0x0A3F9678d6b631386c2DD3DE8809b48b0D1BbD56/logo.png new file mode 100644 index 00000000..a58ced8b Binary files /dev/null and b/blockchains/ethereum/assets/0x0A3F9678d6b631386c2DD3DE8809b48b0D1BbD56/logo.png differ diff --git a/blockchains/ethereum/assets/0x0A4218FAd9113e134190D77Bff8C2F68B93F593b/info.json b/blockchains/ethereum/assets/0x0A4218FAd9113e134190D77Bff8C2F68B93F593b/info.json new file mode 100644 index 00000000..df9d4607 --- /dev/null +++ b/blockchains/ethereum/assets/0x0A4218FAd9113e134190D77Bff8C2F68B93F593b/info.json @@ -0,0 +1,11 @@ +{ + "name": "PVP", + "symbol": "PVP", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0A4218FAd9113e134190D77Bff8C2F68B93F593b", + "status": "abandoned", + "id": "0x0A4218FAd9113e134190D77Bff8C2F68B93F593b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0A4218FAd9113e134190D77Bff8C2F68B93F593b/logo.png b/blockchains/ethereum/assets/0x0A4218FAd9113e134190D77Bff8C2F68B93F593b/logo.png new file mode 100644 index 00000000..3feebad1 Binary files /dev/null and b/blockchains/ethereum/assets/0x0A4218FAd9113e134190D77Bff8C2F68B93F593b/logo.png differ diff --git a/blockchains/ethereum/assets/0x0A638F07ACc6969abF392bB009f216D22aDEa36d/info.json b/blockchains/ethereum/assets/0x0A638F07ACc6969abF392bB009f216D22aDEa36d/info.json new file mode 100644 index 00000000..6cb6cd0d --- /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 00000000..e7d7f22a Binary files /dev/null and b/blockchains/ethereum/assets/0x0A638F07ACc6969abF392bB009f216D22aDEa36d/logo.png differ diff --git a/blockchains/ethereum/assets/0x0A76aad21948eA1ef447D26DEe91a54370E151e0/info.json b/blockchains/ethereum/assets/0x0A76aad21948eA1ef447D26DEe91a54370E151e0/info.json new file mode 100644 index 00000000..7d120b31 --- /dev/null +++ b/blockchains/ethereum/assets/0x0A76aad21948eA1ef447D26DEe91a54370E151e0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Lite", + "symbol": "ELITE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.ethereumlite.org/", + "explorer": "https://etherscan.io/token/0x0A76aad21948eA1ef447D26DEe91a54370E151e0", + "status": "abandoned", + "id": "0x0A76aad21948eA1ef447D26DEe91a54370E151e0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0A76aad21948eA1ef447D26DEe91a54370E151e0/logo.png b/blockchains/ethereum/assets/0x0A76aad21948eA1ef447D26DEe91a54370E151e0/logo.png new file mode 100644 index 00000000..cecfa12e Binary files /dev/null and b/blockchains/ethereum/assets/0x0A76aad21948eA1ef447D26DEe91a54370E151e0/logo.png differ diff --git a/blockchains/ethereum/assets/0x0A8179EE50aF96DAd14ab52Ef80320a5967c93a0/info.json b/blockchains/ethereum/assets/0x0A8179EE50aF96DAd14ab52Ef80320a5967c93a0/info.json new file mode 100644 index 00000000..6a4a2b6b --- /dev/null +++ b/blockchains/ethereum/assets/0x0A8179EE50aF96DAd14ab52Ef80320a5967c93a0/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-9/30M69", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0A8179EE50aF96DAd14ab52Ef80320a5967c93a0", + "status": "abandoned", + "id": "0x0A8179EE50aF96DAd14ab52Ef80320a5967c93a0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0A8179EE50aF96DAd14ab52Ef80320a5967c93a0/logo.png b/blockchains/ethereum/assets/0x0A8179EE50aF96DAd14ab52Ef80320a5967c93a0/logo.png new file mode 100644 index 00000000..7d6da39c Binary files /dev/null and b/blockchains/ethereum/assets/0x0A8179EE50aF96DAd14ab52Ef80320a5967c93a0/logo.png differ diff --git a/blockchains/ethereum/assets/0x0A913beaD80F321E7Ac35285Ee10d9d922659cB7/info.json b/blockchains/ethereum/assets/0x0A913beaD80F321E7Ac35285Ee10d9d922659cB7/info.json new file mode 100644 index 00000000..5e08b65a --- /dev/null +++ b/blockchains/ethereum/assets/0x0A913beaD80F321E7Ac35285Ee10d9d922659cB7/info.json @@ -0,0 +1,11 @@ +{ + "name": "DOS Network Token", + "symbol": "DOS", + "type": "ERC20", + "decimals": 18, + "description": "DOS Network Token (DOS) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://dos.network", + "explorer": "https://etherscan.io/token/0x0A913beaD80F321E7Ac35285Ee10d9d922659cB7", + "status": "active", + "id": "0x0A913beaD80F321E7Ac35285Ee10d9d922659cB7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0A913beaD80F321E7Ac35285Ee10d9d922659cB7/logo.png b/blockchains/ethereum/assets/0x0A913beaD80F321E7Ac35285Ee10d9d922659cB7/logo.png new file mode 100644 index 00000000..82a97b12 Binary files /dev/null and b/blockchains/ethereum/assets/0x0A913beaD80F321E7Ac35285Ee10d9d922659cB7/logo.png differ diff --git a/blockchains/ethereum/assets/0x0A98273B00d699Bfc0bc445EC8CDF17653A98c1C/info.json b/blockchains/ethereum/assets/0x0A98273B00d699Bfc0bc445EC8CDF17653A98c1C/info.json new file mode 100644 index 00000000..cc221735 --- /dev/null +++ b/blockchains/ethereum/assets/0x0A98273B00d699Bfc0bc445EC8CDF17653A98c1C/info.json @@ -0,0 +1,11 @@ +{ + "name": "SLW WIND TOKEN", + "symbol": "SLW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0A98273B00d699Bfc0bc445EC8CDF17653A98c1C", + "status": "abandoned", + "id": "0x0A98273B00d699Bfc0bc445EC8CDF17653A98c1C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0A98273B00d699Bfc0bc445EC8CDF17653A98c1C/logo.png b/blockchains/ethereum/assets/0x0A98273B00d699Bfc0bc445EC8CDF17653A98c1C/logo.png new file mode 100644 index 00000000..673aa439 Binary files /dev/null and b/blockchains/ethereum/assets/0x0A98273B00d699Bfc0bc445EC8CDF17653A98c1C/logo.png differ diff --git a/blockchains/ethereum/assets/0x0ABeFb7611Cb3A01EA3FaD85f33C3C934F8e2cF4/info.json b/blockchains/ethereum/assets/0x0ABeFb7611Cb3A01EA3FaD85f33C3C934F8e2cF4/info.json new file mode 100644 index 00000000..b78342d0 --- /dev/null +++ b/blockchains/ethereum/assets/0x0ABeFb7611Cb3A01EA3FaD85f33C3C934F8e2cF4/info.json @@ -0,0 +1,11 @@ +{ + "name": "FARAD", + "symbol": "FRD", + "type": "ERC20", + "decimals": 18, + "description": "Farad Cryptoken is the first of it's kind among the cryptocurrencies that exist in the market. The main difference of Farad Cryptoken is that, it is backed by real economic activity which is the production of Ultra-capacitors within actual factory settings.", + "website": "https://farad.energy/", + "explorer": "https://etherscan.io/token/0x0ABeFb7611Cb3A01EA3FaD85f33C3C934F8e2cF4", + "status": "active", + "id": "0x0ABeFb7611Cb3A01EA3FaD85f33C3C934F8e2cF4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0ABeFb7611Cb3A01EA3FaD85f33C3C934F8e2cF4/logo.png b/blockchains/ethereum/assets/0x0ABeFb7611Cb3A01EA3FaD85f33C3C934F8e2cF4/logo.png new file mode 100644 index 00000000..cc5ea31a Binary files /dev/null and b/blockchains/ethereum/assets/0x0ABeFb7611Cb3A01EA3FaD85f33C3C934F8e2cF4/logo.png differ diff --git a/blockchains/ethereum/assets/0x0AF44e2784637218dD1D32A322D44e603A8f0c6A/info.json b/blockchains/ethereum/assets/0x0AF44e2784637218dD1D32A322D44e603A8f0c6A/info.json new file mode 100644 index 00000000..80d34726 --- /dev/null +++ b/blockchains/ethereum/assets/0x0AF44e2784637218dD1D32A322D44e603A8f0c6A/info.json @@ -0,0 +1,11 @@ +{ + "name": "MatryxToken", + "symbol": "MTX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://matryx.ai", + "explorer": "https://etherscan.io/token/0x0AF44e2784637218dD1D32A322D44e603A8f0c6A", + "status": "active", + "id": "0x0AF44e2784637218dD1D32A322D44e603A8f0c6A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0AF44e2784637218dD1D32A322D44e603A8f0c6A/logo.png b/blockchains/ethereum/assets/0x0AF44e2784637218dD1D32A322D44e603A8f0c6A/logo.png new file mode 100644 index 00000000..9b89da38 Binary files /dev/null and b/blockchains/ethereum/assets/0x0AF44e2784637218dD1D32A322D44e603A8f0c6A/logo.png differ diff --git a/blockchains/ethereum/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/info.json b/blockchains/ethereum/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/info.json new file mode 100644 index 00000000..adf4c72e --- /dev/null +++ b/blockchains/ethereum/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/info.json @@ -0,0 +1,21 @@ +{ + "name": "BankSocial", + "website": "https://www.banksocial.io", + "description": "BankSocial is your gateway to a full range of banking services using blockchain technology available globally.", + "explorer": "https://etherscan.io/token/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac", + "type": "ERC20", + "symbol": "BSL", + "decimals": 8, + "status": "active", + "id": "0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac", + "links": [ + { + "name": "x", + "url": "https://x.com/banksocialio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/banksocial/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/logo.png b/blockchains/ethereum/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/logo.png new file mode 100644 index 00000000..dacddef5 Binary files /dev/null and b/blockchains/ethereum/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/logo.png differ diff --git a/blockchains/ethereum/assets/0x0AaCfbeC6a24756c20D41914F2caba817C0d8521/info.json b/blockchains/ethereum/assets/0x0AaCfbeC6a24756c20D41914F2caba817C0d8521/info.json new file mode 100644 index 00000000..6b42e8f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x0AaCfbeC6a24756c20D41914F2caba817C0d8521/info.json @@ -0,0 +1,17 @@ +{ + "name": "YAM", + "website": "https://yam.finance/", + "description": "YAM is a decentralized cryptocurrency", + "explorer": "https://etherscan.io/token/0x0AaCfbeC6a24756c20D41914F2caba817C0d8521", + "type": "ERC20", + "symbol": "YAM", + "decimals": 18, + "status": "active", + "id": "0x0AaCfbeC6a24756c20D41914F2caba817C0d8521", + "links": [ + { + "name": "github", + "url": "https://github.com/yam-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0AaCfbeC6a24756c20D41914F2caba817C0d8521/logo.png b/blockchains/ethereum/assets/0x0AaCfbeC6a24756c20D41914F2caba817C0d8521/logo.png new file mode 100644 index 00000000..4074ce47 Binary files /dev/null and b/blockchains/ethereum/assets/0x0AaCfbeC6a24756c20D41914F2caba817C0d8521/logo.png differ diff --git a/blockchains/ethereum/assets/0x0AbdAce70D3790235af448C88547603b945604ea/info.json b/blockchains/ethereum/assets/0x0AbdAce70D3790235af448C88547603b945604ea/info.json new file mode 100644 index 00000000..fbf07b9f --- /dev/null +++ b/blockchains/ethereum/assets/0x0AbdAce70D3790235af448C88547603b945604ea/info.json @@ -0,0 +1,11 @@ +{ + "name": "district0x Network Token", + "symbol": "DNT", + "type": "ERC20", + "decimals": 18, + "description": "Billed as a network of decentralized markets and communities", + "website": "https://district0x.io/", + "explorer": "https://etherscan.io/token/0x0AbdAce70D3790235af448C88547603b945604ea", + "status": "active", + "id": "0x0AbdAce70D3790235af448C88547603b945604ea" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0AbdAce70D3790235af448C88547603b945604ea/logo.png b/blockchains/ethereum/assets/0x0AbdAce70D3790235af448C88547603b945604ea/logo.png new file mode 100755 index 00000000..2460e93c Binary files /dev/null and b/blockchains/ethereum/assets/0x0AbdAce70D3790235af448C88547603b945604ea/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Acb3Ff3963d426dd5F8E6AAD5301C0D1871ee59/info.json b/blockchains/ethereum/assets/0x0Acb3Ff3963d426dd5F8E6AAD5301C0D1871ee59/info.json new file mode 100644 index 00000000..3672cac9 --- /dev/null +++ b/blockchains/ethereum/assets/0x0Acb3Ff3963d426dd5F8E6AAD5301C0D1871ee59/info.json @@ -0,0 +1,11 @@ +{ + "name": "Talent", + "symbol": "TLT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0Acb3Ff3963d426dd5F8E6AAD5301C0D1871ee59", + "status": "abandoned", + "id": "0x0Acb3Ff3963d426dd5F8E6AAD5301C0D1871ee59" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0Acb3Ff3963d426dd5F8E6AAD5301C0D1871ee59/logo.png b/blockchains/ethereum/assets/0x0Acb3Ff3963d426dd5F8E6AAD5301C0D1871ee59/logo.png new file mode 100644 index 00000000..59efa163 Binary files /dev/null and b/blockchains/ethereum/assets/0x0Acb3Ff3963d426dd5F8E6AAD5301C0D1871ee59/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Ae055097C6d159879521C384F1D2123D1f195e6/info.json b/blockchains/ethereum/assets/0x0Ae055097C6d159879521C384F1D2123D1f195e6/info.json new file mode 100644 index 00000000..54f46ecd --- /dev/null +++ b/blockchains/ethereum/assets/0x0Ae055097C6d159879521C384F1D2123D1f195e6/info.json @@ -0,0 +1,11 @@ +{ + "name": "xDai", + "website": "http://xdaichain.com", + "description": "POA Network has launched the first-ever blockchain where the native currency of the chain is USD-stable.", + "explorer": "https://etherscan.io/token/0x0Ae055097C6d159879521C384F1D2123D1f195e6", + "type": "ERC20", + "symbol": "STAKE", + "decimals": 18, + "status": "active", + "id": "0x0Ae055097C6d159879521C384F1D2123D1f195e6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0Ae055097C6d159879521C384F1D2123D1f195e6/logo.png b/blockchains/ethereum/assets/0x0Ae055097C6d159879521C384F1D2123D1f195e6/logo.png new file mode 100644 index 00000000..66a1db57 Binary files /dev/null and b/blockchains/ethereum/assets/0x0Ae055097C6d159879521C384F1D2123D1f195e6/logo.png differ diff --git a/blockchains/ethereum/assets/0x0AeE8703D34DD9aE107386d3eFF22AE75Dd616D1/info.json b/blockchains/ethereum/assets/0x0AeE8703D34DD9aE107386d3eFF22AE75Dd616D1/info.json new file mode 100644 index 00000000..8195d24a --- /dev/null +++ b/blockchains/ethereum/assets/0x0AeE8703D34DD9aE107386d3eFF22AE75Dd616D1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tranche Finance", + "symbol": "SLICE", + "type": "ERC20", + "decimals": 18, + "description": "Tranche is a decentralized protocol for managing risk. The protocol integrates with any interest accrual token, such as Compound's cTokens and AAVE's aTokens, to create two new interest bearing instruments, one with a fixed-rate, Tranche A, and one with a variable rate, Tranche B. The protocol is currently integrated with Compound and charges fees in Dai and ETH. Accrued fees are exchanged for SLICE tokens through UniSwap pools.", + "website": "https://tranche.finance", + "explorer": "https://etherscan.io/token/0x0AeE8703D34DD9aE107386d3eFF22AE75Dd616D1", + "status": "active", + "id": "0x0AeE8703D34DD9aE107386d3eFF22AE75Dd616D1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0AeE8703D34DD9aE107386d3eFF22AE75Dd616D1/logo.png b/blockchains/ethereum/assets/0x0AeE8703D34DD9aE107386d3eFF22AE75Dd616D1/logo.png new file mode 100644 index 00000000..3ec52edb Binary files /dev/null and b/blockchains/ethereum/assets/0x0AeE8703D34DD9aE107386d3eFF22AE75Dd616D1/logo.png differ diff --git a/blockchains/ethereum/assets/0x0AfFa06e7Fbe5bC9a764C979aA66E8256A631f02/info.json b/blockchains/ethereum/assets/0x0AfFa06e7Fbe5bC9a764C979aA66E8256A631f02/info.json new file mode 100644 index 00000000..a9a58f10 --- /dev/null +++ b/blockchains/ethereum/assets/0x0AfFa06e7Fbe5bC9a764C979aA66E8256A631f02/info.json @@ -0,0 +1,11 @@ +{ + "name": "Polybius Token", + "symbol": "PLBT", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://polybius.io/", + "explorer": "https://etherscan.io/token/0x0AfFa06e7Fbe5bC9a764C979aA66E8256A631f02", + "status": "abandoned", + "id": "0x0AfFa06e7Fbe5bC9a764C979aA66E8256A631f02" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0AfFa06e7Fbe5bC9a764C979aA66E8256A631f02/logo.png b/blockchains/ethereum/assets/0x0AfFa06e7Fbe5bC9a764C979aA66E8256A631f02/logo.png new file mode 100644 index 00000000..f960a3f9 Binary files /dev/null and b/blockchains/ethereum/assets/0x0AfFa06e7Fbe5bC9a764C979aA66E8256A631f02/logo.png differ diff --git a/blockchains/ethereum/assets/0x0B0a57287BC86eb066f677825BBa5da69Df446d2/info.json b/blockchains/ethereum/assets/0x0B0a57287BC86eb066f677825BBa5da69Df446d2/info.json new file mode 100644 index 00000000..c463a664 --- /dev/null +++ b/blockchains/ethereum/assets/0x0B0a57287BC86eb066f677825BBa5da69Df446d2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitnetcoin", + "symbol": "BNC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0B0a57287BC86eb066f677825BBa5da69Df446d2", + "status": "abandoned", + "id": "0x0B0a57287BC86eb066f677825BBa5da69Df446d2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0B0a57287BC86eb066f677825BBa5da69Df446d2/logo.png b/blockchains/ethereum/assets/0x0B0a57287BC86eb066f677825BBa5da69Df446d2/logo.png new file mode 100644 index 00000000..c8d2467e Binary files /dev/null and b/blockchains/ethereum/assets/0x0B0a57287BC86eb066f677825BBa5da69Df446d2/logo.png differ diff --git a/blockchains/ethereum/assets/0x0B2623a0e1dE4C3640A25bDE55a138FC40158195/info.json b/blockchains/ethereum/assets/0x0B2623a0e1dE4C3640A25bDE55a138FC40158195/info.json new file mode 100644 index 00000000..e170d800 --- /dev/null +++ b/blockchains/ethereum/assets/0x0B2623a0e1dE4C3640A25bDE55a138FC40158195/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bearhugs", + "symbol": "TREATS", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0B2623a0e1dE4C3640A25bDE55a138FC40158195", + "status": "abandoned", + "id": "0x0B2623a0e1dE4C3640A25bDE55a138FC40158195" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0B2623a0e1dE4C3640A25bDE55a138FC40158195/logo.png b/blockchains/ethereum/assets/0x0B2623a0e1dE4C3640A25bDE55a138FC40158195/logo.png new file mode 100644 index 00000000..2e37fc93 Binary files /dev/null and b/blockchains/ethereum/assets/0x0B2623a0e1dE4C3640A25bDE55a138FC40158195/logo.png differ diff --git a/blockchains/ethereum/assets/0x0B3c1a38DBB699758E4B771B8C349a858dd0f061/info.json b/blockchains/ethereum/assets/0x0B3c1a38DBB699758E4B771B8C349a858dd0f061/info.json new file mode 100644 index 00000000..9f5c98b5 --- /dev/null +++ b/blockchains/ethereum/assets/0x0B3c1a38DBB699758E4B771B8C349a858dd0f061/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gold", + "symbol": "CSC-GO", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0B3c1a38DBB699758E4B771B8C349a858dd0f061", + "status": "abandoned", + "id": "0x0B3c1a38DBB699758E4B771B8C349a858dd0f061" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0B3c1a38DBB699758E4B771B8C349a858dd0f061/logo.png b/blockchains/ethereum/assets/0x0B3c1a38DBB699758E4B771B8C349a858dd0f061/logo.png new file mode 100755 index 00000000..d60349bb Binary files /dev/null and b/blockchains/ethereum/assets/0x0B3c1a38DBB699758E4B771B8C349a858dd0f061/logo.png differ diff --git a/blockchains/ethereum/assets/0x0B498ff89709d3838a063f1dFA463091F9801c2b/info.json b/blockchains/ethereum/assets/0x0B498ff89709d3838a063f1dFA463091F9801c2b/info.json new file mode 100644 index 00000000..7bc2f571 --- /dev/null +++ b/blockchains/ethereum/assets/0x0B498ff89709d3838a063f1dFA463091F9801c2b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin 2x Flexible Leverage Index", + "type": "ERC20", + "symbol": "BTC2x-FLI", + "decimals": 18, + "website": "https://www.indexcoop.com/", + "description": "The Bitcoin 2x Flexible Leverage Index lets you leverage a collateralized debt position in a safe and efficient way, by abstracting its management into a simple index.", + "explorer": "https://etherscan.io/token/0x0b498ff89709d3838a063f1dfa463091f9801c2b", + "status": "active", + "id": "0x0B498ff89709d3838a063f1dFA463091F9801c2b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0B498ff89709d3838a063f1dFA463091F9801c2b/logo.png b/blockchains/ethereum/assets/0x0B498ff89709d3838a063f1dFA463091F9801c2b/logo.png new file mode 100644 index 00000000..fd5a8590 Binary files /dev/null and b/blockchains/ethereum/assets/0x0B498ff89709d3838a063f1dFA463091F9801c2b/logo.png differ diff --git a/blockchains/ethereum/assets/0x0B4BdC478791897274652DC15eF5C135cae61E60/info.json b/blockchains/ethereum/assets/0x0B4BdC478791897274652DC15eF5C135cae61E60/info.json new file mode 100644 index 00000000..9c6bcd12 --- /dev/null +++ b/blockchains/ethereum/assets/0x0B4BdC478791897274652DC15eF5C135cae61E60/info.json @@ -0,0 +1,11 @@ +{ + "name": "DAEX Token", + "symbol": "DAX", + "type": "ERC20", + "decimals": 18, + "description": "DAEX (DAX) is a cryptocurrency and operates on the Ethereum platform", + "website": "https://www.daex.io/", + "explorer": "https://etherscan.io/token/0x0B4BdC478791897274652DC15eF5C135cae61E60", + "status": "active", + "id": "0x0B4BdC478791897274652DC15eF5C135cae61E60" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0B4BdC478791897274652DC15eF5C135cae61E60/logo.png b/blockchains/ethereum/assets/0x0B4BdC478791897274652DC15eF5C135cae61E60/logo.png new file mode 100644 index 00000000..71f475a8 Binary files /dev/null and b/blockchains/ethereum/assets/0x0B4BdC478791897274652DC15eF5C135cae61E60/logo.png differ diff --git a/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json b/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json new file mode 100644 index 00000000..f4d9361d --- /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 00000000..5dd9cbe1 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 00000000..ab1b55e1 --- /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/0x0BE5E8f107279cC2D9c3A537eD4eA669b45E443D/info.json b/blockchains/ethereum/assets/0x0BE5E8f107279cC2D9c3A537eD4eA669b45E443D/info.json new file mode 100644 index 00000000..19330df6 --- /dev/null +++ b/blockchains/ethereum/assets/0x0BE5E8f107279cC2D9c3A537eD4eA669b45E443D/info.json @@ -0,0 +1,11 @@ +{ + "name": "POMDA", + "symbol": "POMDA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://pomda.io/", + "explorer": "https://etherscan.io/token/0x0BE5E8f107279cC2D9c3A537eD4eA669b45E443D", + "status": "abandoned", + "id": "0x0BE5E8f107279cC2D9c3A537eD4eA669b45E443D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0BE5E8f107279cC2D9c3A537eD4eA669b45E443D/logo.png b/blockchains/ethereum/assets/0x0BE5E8f107279cC2D9c3A537eD4eA669b45E443D/logo.png new file mode 100644 index 00000000..8dc77808 Binary files /dev/null and b/blockchains/ethereum/assets/0x0BE5E8f107279cC2D9c3A537eD4eA669b45E443D/logo.png differ diff --git a/blockchains/ethereum/assets/0x0BEf619cF38cF0c22967289b8419720fBd1Db9f7/info.json b/blockchains/ethereum/assets/0x0BEf619cF38cF0c22967289b8419720fBd1Db9f7/info.json new file mode 100644 index 00000000..767fd34b --- /dev/null +++ b/blockchains/ethereum/assets/0x0BEf619cF38cF0c22967289b8419720fBd1Db9f7/info.json @@ -0,0 +1,11 @@ +{ + "name": "AEN.", + "symbol": "AEN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0BEf619cF38cF0c22967289b8419720fBd1Db9f7", + "status": "abandoned", + "id": "0x0BEf619cF38cF0c22967289b8419720fBd1Db9f7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0BEf619cF38cF0c22967289b8419720fBd1Db9f7/logo.png b/blockchains/ethereum/assets/0x0BEf619cF38cF0c22967289b8419720fBd1Db9f7/logo.png new file mode 100644 index 00000000..c2fb931a Binary files /dev/null and b/blockchains/ethereum/assets/0x0BEf619cF38cF0c22967289b8419720fBd1Db9f7/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5/info.json b/blockchains/ethereum/assets/0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5/info.json new file mode 100644 index 00000000..3694a5f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tellor", + "website": "https://tellor.io", + "description": "Tellor (a decentralized oracle) aims to address the Oracle problem on Ethereum.", + "explorer": "https://etherscan.io/token/0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5", + "type": "ERC20", + "symbol": "TRB", + "decimals": 1, + "status": "abandoned", + "id": "0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5/logo.png b/blockchains/ethereum/assets/0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5/logo.png new file mode 100644 index 00000000..ec5a4360 Binary files /dev/null and b/blockchains/ethereum/assets/0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5/logo.png differ diff --git a/blockchains/ethereum/assets/0x0BaDD7aF129EFAc1f7bB7253716A589cc5E6c17c/info.json b/blockchains/ethereum/assets/0x0BaDD7aF129EFAc1f7bB7253716A589cc5E6c17c/info.json new file mode 100644 index 00000000..854cc94b --- /dev/null +++ b/blockchains/ethereum/assets/0x0BaDD7aF129EFAc1f7bB7253716A589cc5E6c17c/info.json @@ -0,0 +1,11 @@ +{ + "name": "e-Money EUR stablecoin", + "website": "https://e-money.com", + "description": "ERC20 version of the e-Money EUR stablecoin", + "explorer": "https://etherscan.io/token/0x0BaDD7aF129EFAc1f7bB7253716A589cc5E6c17c", + "type": "ERC20", + "symbol": "EEUR", + "decimals": 6, + "status": "active", + "id": "0x0BaDD7aF129EFAc1f7bB7253716A589cc5E6c17c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0BaDD7aF129EFAc1f7bB7253716A589cc5E6c17c/logo.png b/blockchains/ethereum/assets/0x0BaDD7aF129EFAc1f7bB7253716A589cc5E6c17c/logo.png new file mode 100644 index 00000000..dc81836d Binary files /dev/null and b/blockchains/ethereum/assets/0x0BaDD7aF129EFAc1f7bB7253716A589cc5E6c17c/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Bb7Db697567178c590eFA64A7DcB2ce6213768C/info.json b/blockchains/ethereum/assets/0x0Bb7Db697567178c590eFA64A7DcB2ce6213768C/info.json new file mode 100644 index 00000000..5bdb38c3 --- /dev/null +++ b/blockchains/ethereum/assets/0x0Bb7Db697567178c590eFA64A7DcB2ce6213768C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Camouflage.eth", + "symbol": "CAMO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://camouflage.eth/", + "explorer": "https://etherscan.io/token/0x0Bb7Db697567178c590eFA64A7DcB2ce6213768C", + "status": "abandoned", + "id": "0x0Bb7Db697567178c590eFA64A7DcB2ce6213768C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0Bb7Db697567178c590eFA64A7DcB2ce6213768C/logo.png b/blockchains/ethereum/assets/0x0Bb7Db697567178c590eFA64A7DcB2ce6213768C/logo.png new file mode 100644 index 00000000..0978a8c5 Binary files /dev/null and b/blockchains/ethereum/assets/0x0Bb7Db697567178c590eFA64A7DcB2ce6213768C/logo.png differ diff --git a/blockchains/ethereum/assets/0x0C04fF41b11065EEd8c9EDA4d461BA6611591395/info.json b/blockchains/ethereum/assets/0x0C04fF41b11065EEd8c9EDA4d461BA6611591395/info.json new file mode 100644 index 00000000..5f60c5cc --- /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 00000000..ba931fb6 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 new file mode 100644 index 00000000..66af1b20 --- /dev/null +++ b/blockchains/ethereum/assets/0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6/info.json @@ -0,0 +1,24 @@ +{ + "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": "abandoned", + "id": "0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6", + "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/0x0C1f3412A44Ff99E40bF14e06e5Ea321aE7B3938/info.json b/blockchains/ethereum/assets/0x0C1f3412A44Ff99E40bF14e06e5Ea321aE7B3938/info.json new file mode 100644 index 00000000..add7ecd3 --- /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 00000000..8232eae7 Binary files /dev/null and b/blockchains/ethereum/assets/0x0C1f3412A44Ff99E40bF14e06e5Ea321aE7B3938/logo.png differ diff --git a/blockchains/ethereum/assets/0x0C29d192Dd5443fb5F00E5fE52f61d793025643b/info.json b/blockchains/ethereum/assets/0x0C29d192Dd5443fb5F00E5fE52f61d793025643b/info.json new file mode 100644 index 00000000..51fcdcb4 --- /dev/null +++ b/blockchains/ethereum/assets/0x0C29d192Dd5443fb5F00E5fE52f61d793025643b/info.json @@ -0,0 +1,11 @@ +{ + "name": "GOPOSH", + "symbol": "POSH", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0C29d192Dd5443fb5F00E5fE52f61d793025643b", + "status": "abandoned", + "id": "0x0C29d192Dd5443fb5F00E5fE52f61d793025643b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C29d192Dd5443fb5F00E5fE52f61d793025643b/logo.png b/blockchains/ethereum/assets/0x0C29d192Dd5443fb5F00E5fE52f61d793025643b/logo.png new file mode 100644 index 00000000..a7a58908 Binary files /dev/null and b/blockchains/ethereum/assets/0x0C29d192Dd5443fb5F00E5fE52f61d793025643b/logo.png differ diff --git a/blockchains/ethereum/assets/0x0C356B7fD36a5357E5A017EF11887ba100C9AB76/info.json b/blockchains/ethereum/assets/0x0C356B7fD36a5357E5A017EF11887ba100C9AB76/info.json new file mode 100644 index 00000000..7d1e011f --- /dev/null +++ b/blockchains/ethereum/assets/0x0C356B7fD36a5357E5A017EF11887ba100C9AB76/info.json @@ -0,0 +1,25 @@ +{ + "name": "Kava.io", + "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 00000000..8fb606a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x0C356B7fD36a5357E5A017EF11887ba100C9AB76/logo.png differ diff --git a/blockchains/ethereum/assets/0x0C37Bcf456bC661C14D596683325623076D7e283/info.json b/blockchains/ethereum/assets/0x0C37Bcf456bC661C14D596683325623076D7e283/info.json new file mode 100644 index 00000000..dc2462c0 --- /dev/null +++ b/blockchains/ethereum/assets/0x0C37Bcf456bC661C14D596683325623076D7e283/info.json @@ -0,0 +1,12 @@ +{ + "name": "Aeron", + "website": "https://aeron.aero", + "description": "Aeron – blockchain solutions for aviation safety.", + "explorer": "https://etherscan.io/token/0x0C37Bcf456bC661C14D596683325623076D7e283", + "research": "https://research.binance.com/en/projects/aeron", + "type": "ERC20", + "symbol": "ARNX", + "decimals": 18, + "status": "active", + "id": "0x0C37Bcf456bC661C14D596683325623076D7e283" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C37Bcf456bC661C14D596683325623076D7e283/logo.png b/blockchains/ethereum/assets/0x0C37Bcf456bC661C14D596683325623076D7e283/logo.png new file mode 100644 index 00000000..b79af15d Binary files /dev/null and b/blockchains/ethereum/assets/0x0C37Bcf456bC661C14D596683325623076D7e283/logo.png differ diff --git a/blockchains/ethereum/assets/0x0C3eF32f802967DB75B9D49fE1e76620151cCB81/info.json b/blockchains/ethereum/assets/0x0C3eF32f802967DB75B9D49fE1e76620151cCB81/info.json new file mode 100644 index 00000000..6bbc515b --- /dev/null +++ b/blockchains/ethereum/assets/0x0C3eF32f802967DB75B9D49fE1e76620151cCB81/info.json @@ -0,0 +1,11 @@ +{ + "name": "Whole Network Node", + "symbol": "NODE", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "https://www.wn.work/", + "explorer": "https://etherscan.io/token/0x0C3eF32f802967DB75B9D49fE1e76620151cCB81", + "status": "abandoned", + "id": "0x0C3eF32f802967DB75B9D49fE1e76620151cCB81" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C3eF32f802967DB75B9D49fE1e76620151cCB81/logo.png b/blockchains/ethereum/assets/0x0C3eF32f802967DB75B9D49fE1e76620151cCB81/logo.png new file mode 100644 index 00000000..5cd481f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x0C3eF32f802967DB75B9D49fE1e76620151cCB81/logo.png differ diff --git a/blockchains/ethereum/assets/0x0C6144c16af288948C8fdB37fD8fEc94bfF3d1d9/info.json b/blockchains/ethereum/assets/0x0C6144c16af288948C8fdB37fD8fEc94bfF3d1d9/info.json new file mode 100644 index 00000000..e4d45452 --- /dev/null +++ b/blockchains/ethereum/assets/0x0C6144c16af288948C8fdB37fD8fEc94bfF3d1d9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neutral", + "symbol": "NUSD", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0C6144c16af288948C8fdB37fD8fEc94bfF3d1d9", + "status": "abandoned", + "id": "0x0C6144c16af288948C8fdB37fD8fEc94bfF3d1d9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C6144c16af288948C8fdB37fD8fEc94bfF3d1d9/logo.png b/blockchains/ethereum/assets/0x0C6144c16af288948C8fdB37fD8fEc94bfF3d1d9/logo.png new file mode 100644 index 00000000..ae94220b Binary files /dev/null and b/blockchains/ethereum/assets/0x0C6144c16af288948C8fdB37fD8fEc94bfF3d1d9/logo.png differ diff --git a/blockchains/ethereum/assets/0x0C658Fa2eAA292E8dcA085Dab0E5CBD2da21C494/info.json b/blockchains/ethereum/assets/0x0C658Fa2eAA292E8dcA085Dab0E5CBD2da21C494/info.json new file mode 100644 index 00000000..756d192b --- /dev/null +++ b/blockchains/ethereum/assets/0x0C658Fa2eAA292E8dcA085Dab0E5CBD2da21C494/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bolenum", + "symbol": "BLN", + "type": "ERC20", + "decimals": 18, + "description": "Bolenum is a cryptocurrency and financial services provider targeting the African continent for a start and then expanding globally.", + "website": "http://bolenum.com/", + "explorer": "https://etherscan.io/token/0x0C658Fa2eAA292E8dcA085Dab0E5CBD2da21C494", + "status": "abandoned", + "id": "0x0C658Fa2eAA292E8dcA085Dab0E5CBD2da21C494" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C658Fa2eAA292E8dcA085Dab0E5CBD2da21C494/logo.png b/blockchains/ethereum/assets/0x0C658Fa2eAA292E8dcA085Dab0E5CBD2da21C494/logo.png new file mode 100644 index 00000000..61c57714 Binary files /dev/null and b/blockchains/ethereum/assets/0x0C658Fa2eAA292E8dcA085Dab0E5CBD2da21C494/logo.png differ diff --git a/blockchains/ethereum/assets/0x0C6E8a8358cBde54F8e4Cd7f07D5ac38aec8C5a4/info.json b/blockchains/ethereum/assets/0x0C6E8a8358cBde54F8e4Cd7f07D5ac38aec8C5a4/info.json new file mode 100644 index 00000000..fde4fbd9 --- /dev/null +++ b/blockchains/ethereum/assets/0x0C6E8a8358cBde54F8e4Cd7f07D5ac38aec8C5a4/info.json @@ -0,0 +1,11 @@ +{ + "name": "PlatonCoin", + "symbol": "PLTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0C6E8a8358cBde54F8e4Cd7f07D5ac38aec8C5a4", + "status": "abandoned", + "id": "0x0C6E8a8358cBde54F8e4Cd7f07D5ac38aec8C5a4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C6E8a8358cBde54F8e4Cd7f07D5ac38aec8C5a4/logo.png b/blockchains/ethereum/assets/0x0C6E8a8358cBde54F8e4Cd7f07D5ac38aec8C5a4/logo.png new file mode 100644 index 00000000..e04bc656 Binary files /dev/null and b/blockchains/ethereum/assets/0x0C6E8a8358cBde54F8e4Cd7f07D5ac38aec8C5a4/logo.png differ diff --git a/blockchains/ethereum/assets/0x0C6f5F7D555E7518f6841a79436BD2b1Eef03381/info.json b/blockchains/ethereum/assets/0x0C6f5F7D555E7518f6841a79436BD2b1Eef03381/info.json new file mode 100644 index 00000000..83cf1a79 --- /dev/null +++ b/blockchains/ethereum/assets/0x0C6f5F7D555E7518f6841a79436BD2b1Eef03381/info.json @@ -0,0 +1,11 @@ +{ + "name": "CocosToken", + "symbol": "COCOS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.cocosbcx.io/en/", + "explorer": "https://etherscan.io/token/0x0C6f5F7D555E7518f6841a79436BD2b1Eef03381", + "status": "abandoned", + "id": "0x0C6f5F7D555E7518f6841a79436BD2b1Eef03381" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C6f5F7D555E7518f6841a79436BD2b1Eef03381/logo.png b/blockchains/ethereum/assets/0x0C6f5F7D555E7518f6841a79436BD2b1Eef03381/logo.png new file mode 100644 index 00000000..3575393d Binary files /dev/null and b/blockchains/ethereum/assets/0x0C6f5F7D555E7518f6841a79436BD2b1Eef03381/logo.png differ diff --git a/blockchains/ethereum/assets/0x0C802aCB21Cb2AadB2EB5E5090868E1361B26B69/info.json b/blockchains/ethereum/assets/0x0C802aCB21Cb2AadB2EB5E5090868E1361B26B69/info.json new file mode 100644 index 00000000..c22a4030 --- /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 00000000..35f0a8ec Binary files /dev/null and b/blockchains/ethereum/assets/0x0C802aCB21Cb2AadB2EB5E5090868E1361B26B69/logo.png differ diff --git a/blockchains/ethereum/assets/0x0C91B015AbA6f7B4738dcD36E7410138b29ADC29/info.json b/blockchains/ethereum/assets/0x0C91B015AbA6f7B4738dcD36E7410138b29ADC29/info.json new file mode 100644 index 00000000..0bf55a33 --- /dev/null +++ b/blockchains/ethereum/assets/0x0C91B015AbA6f7B4738dcD36E7410138b29ADC29/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinOil", + "symbol": "COIL", + "type": "ERC20", + "decimals": 8, + "description": "Token on blockchain for Oil & energy field.", + "website": "https://coinoil.io/", + "explorer": "https://etherscan.io/token/0x0C91B015AbA6f7B4738dcD36E7410138b29ADC29", + "status": "abandoned", + "id": "0x0C91B015AbA6f7B4738dcD36E7410138b29ADC29" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C91B015AbA6f7B4738dcD36E7410138b29ADC29/logo.png b/blockchains/ethereum/assets/0x0C91B015AbA6f7B4738dcD36E7410138b29ADC29/logo.png new file mode 100755 index 00000000..280ebc1f Binary files /dev/null and b/blockchains/ethereum/assets/0x0C91B015AbA6f7B4738dcD36E7410138b29ADC29/logo.png differ diff --git a/blockchains/ethereum/assets/0x0CDE550b066Ff98dA123377eeB0A149607C9ca17/info.json b/blockchains/ethereum/assets/0x0CDE550b066Ff98dA123377eeB0A149607C9ca17/info.json new file mode 100644 index 00000000..a8e92e01 --- /dev/null +++ b/blockchains/ethereum/assets/0x0CDE550b066Ff98dA123377eeB0A149607C9ca17/info.json @@ -0,0 +1,11 @@ +{ + "name": "EUR36", + "website": "https://element36.io", + "description": "Our EUR36 tokens are used to connect banking network with ethereum,to send (and receive) EUR and CHF directly with your Smart Contracts. End-users do not need a wallet, because wire-transfers trigger mint/burn at the moment the transfer happens.", + "explorer": "https://etherscan.io/token/0x0CDE550b066Ff98dA123377eeB0A149607C9ca17", + "type": "ERC20", + "symbol": "EUR36", + "decimals": 18, + "status": "active", + "id": "0x0CDE550b066Ff98dA123377eeB0A149607C9ca17" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0CDE550b066Ff98dA123377eeB0A149607C9ca17/logo.png b/blockchains/ethereum/assets/0x0CDE550b066Ff98dA123377eeB0A149607C9ca17/logo.png new file mode 100644 index 00000000..0d699c5d Binary files /dev/null and b/blockchains/ethereum/assets/0x0CDE550b066Ff98dA123377eeB0A149607C9ca17/logo.png differ diff --git a/blockchains/ethereum/assets/0x0CDF9acd87E940837ff21BB40c9fd55F68bba059/info.json b/blockchains/ethereum/assets/0x0CDF9acd87E940837ff21BB40c9fd55F68bba059/info.json new file mode 100644 index 00000000..9893fe43 --- /dev/null +++ b/blockchains/ethereum/assets/0x0CDF9acd87E940837ff21BB40c9fd55F68bba059/info.json @@ -0,0 +1,11 @@ +{ + "name": "Public Mint", + "website": "https://publicmint.com", + "description": "Public Mint offers a fiat-native blockchain platform open for anyone to build fiat-native applications and accept credit cards, ACH, stablecoins, wire transfers and more.", + "explorer": "https://etherscan.io/token/0x0CDF9acd87E940837ff21BB40c9fd55F68bba059", + "type": "ERC20", + "symbol": "MINT", + "decimals": 18, + "status": "active", + "id": "0x0CDF9acd87E940837ff21BB40c9fd55F68bba059" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0CDF9acd87E940837ff21BB40c9fd55F68bba059/logo.png b/blockchains/ethereum/assets/0x0CDF9acd87E940837ff21BB40c9fd55F68bba059/logo.png new file mode 100644 index 00000000..36664535 Binary files /dev/null and b/blockchains/ethereum/assets/0x0CDF9acd87E940837ff21BB40c9fd55F68bba059/logo.png differ diff --git a/blockchains/ethereum/assets/0x0CbC0B6fE51C19D28EBE36e12dE9307A42A4A387/info.json b/blockchains/ethereum/assets/0x0CbC0B6fE51C19D28EBE36e12dE9307A42A4A387/info.json new file mode 100644 index 00000000..34893d46 --- /dev/null +++ b/blockchains/ethereum/assets/0x0CbC0B6fE51C19D28EBE36e12dE9307A42A4A387/info.json @@ -0,0 +1,11 @@ +{ + "name": "BIG SELF PORTRAIT", + "symbol": "CCT", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0CbC0B6fE51C19D28EBE36e12dE9307A42A4A387", + "status": "abandoned", + "id": "0x0CbC0B6fE51C19D28EBE36e12dE9307A42A4A387" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0CbC0B6fE51C19D28EBE36e12dE9307A42A4A387/logo.png b/blockchains/ethereum/assets/0x0CbC0B6fE51C19D28EBE36e12dE9307A42A4A387/logo.png new file mode 100644 index 00000000..1a789c7f Binary files /dev/null and b/blockchains/ethereum/assets/0x0CbC0B6fE51C19D28EBE36e12dE9307A42A4A387/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Cc9FCCFF81252F4bd8C5c6b359B14ae2Ed851cf/info.json b/blockchains/ethereum/assets/0x0Cc9FCCFF81252F4bd8C5c6b359B14ae2Ed851cf/info.json new file mode 100644 index 00000000..de70ee65 --- /dev/null +++ b/blockchains/ethereum/assets/0x0Cc9FCCFF81252F4bd8C5c6b359B14ae2Ed851cf/info.json @@ -0,0 +1,11 @@ +{ + "name": "InnovativeBioresearchClassic", + "symbol": "INNBCL", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://www.innovativebioresearch.com/", + "explorer": "https://etherscan.io/token/0x0Cc9FCCFF81252F4bd8C5c6b359B14ae2Ed851cf", + "status": "abandoned", + "id": "0x0Cc9FCCFF81252F4bd8C5c6b359B14ae2Ed851cf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0Cc9FCCFF81252F4bd8C5c6b359B14ae2Ed851cf/logo.png b/blockchains/ethereum/assets/0x0Cc9FCCFF81252F4bd8C5c6b359B14ae2Ed851cf/logo.png new file mode 100644 index 00000000..644d4e62 Binary files /dev/null and b/blockchains/ethereum/assets/0x0Cc9FCCFF81252F4bd8C5c6b359B14ae2Ed851cf/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Cf0Ee63788A0849fE5297F3407f701E122cC023/info.json b/blockchains/ethereum/assets/0x0Cf0Ee63788A0849fE5297F3407f701E122cC023/info.json new file mode 100644 index 00000000..9bf5ff61 --- /dev/null +++ b/blockchains/ethereum/assets/0x0Cf0Ee63788A0849fE5297F3407f701E122cC023/info.json @@ -0,0 +1,11 @@ +{ + "name": "Streamr DATAcoin", + "website": "https://streamr.com", + "description": "Streamr provides a complete system to tokenize the value of real-time data to enable a new way for machines and people to trade it on a decentralised P2P network.", + "explorer": "https://etherscan.io/token/0x0Cf0Ee63788A0849fE5297F3407f701E122cC023", + "type": "ERC20", + "symbol": "DATA", + "decimals": 18, + "status": "abandoned", + "id": "0x0Cf0Ee63788A0849fE5297F3407f701E122cC023" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0D1fa4E1E3719945899Ef7b02840627Df46aF44A/info.json b/blockchains/ethereum/assets/0x0D1fa4E1E3719945899Ef7b02840627Df46aF44A/info.json new file mode 100644 index 00000000..29d9b2b0 --- /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 00000000..2b29ada3 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 new file mode 100644 index 00000000..afd02b6f --- /dev/null +++ b/blockchains/ethereum/assets/0x0D24e4A32B174ff6777059D4fD6bF8CFE031014b/info.json @@ -0,0 +1,29 @@ +{ + "name": "BitPhantom Pro", + "website": "https://pro.bitphantom.io", + "description": "Bitphantom Pro is the utility token of Bitphantom Exchange, Token holder enjoy certain benefits for holding.", + "explorer": "https://etherscan.io/token/0x0D24e4A32B174ff6777059D4fD6bF8CFE031014b", + "type": "ERC20", + "symbol": "BTF", + "decimals": 18, + "status": "active", + "id": "0x0D24e4A32B174ff6777059D4fD6bF8CFE031014b", + "links": [ + { + "name": "github", + "url": "https://github.com/bitphantom-ops" + }, + { + "name": "x", + "url": "https://x.com/BitphantomPro" + }, + { + "name": "telegram", + "url": "https://t.me/bitphantompro" + }, + { + "name": "whitepaper", + "url": "https://github.com/bitphantom-ops/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0D24e4A32B174ff6777059D4fD6bF8CFE031014b/logo.png b/blockchains/ethereum/assets/0x0D24e4A32B174ff6777059D4fD6bF8CFE031014b/logo.png new file mode 100644 index 00000000..8dd1d6ad Binary files /dev/null and b/blockchains/ethereum/assets/0x0D24e4A32B174ff6777059D4fD6bF8CFE031014b/logo.png differ diff --git a/blockchains/ethereum/assets/0x0D262e5dC4A06a0F1c90cE79C7a60C09DfC884E4/info.json b/blockchains/ethereum/assets/0x0D262e5dC4A06a0F1c90cE79C7a60C09DfC884E4/info.json new file mode 100644 index 00000000..1ba96dde --- /dev/null +++ b/blockchains/ethereum/assets/0x0D262e5dC4A06a0F1c90cE79C7a60C09DfC884E4/info.json @@ -0,0 +1,11 @@ +{ + "name": "J8T Token", + "symbol": "J8T", + "type": "ERC20", + "decimals": 8, + "description": "JET8 has been transforming peer-to-peer influencer marketing via a tokenised social engagement platform. JET8’s platform, products and services allow brands and agencies to target, publish and track the engagement of peer to peer branded content, via selfies with sponsored frames and stickers that are shared through the JET8 apps to social media platforms such as Tumblr, Facebook and Instagram.", + "website": "https://jet8.io/", + "explorer": "https://etherscan.io/token/0x0D262e5dC4A06a0F1c90cE79C7a60C09DfC884E4", + "status": "active", + "id": "0x0D262e5dC4A06a0F1c90cE79C7a60C09DfC884E4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0D262e5dC4A06a0F1c90cE79C7a60C09DfC884E4/logo.png b/blockchains/ethereum/assets/0x0D262e5dC4A06a0F1c90cE79C7a60C09DfC884E4/logo.png new file mode 100755 index 00000000..a964d901 Binary files /dev/null and b/blockchains/ethereum/assets/0x0D262e5dC4A06a0F1c90cE79C7a60C09DfC884E4/logo.png differ diff --git a/blockchains/ethereum/assets/0x0D2f3987a76995be593D755A0d36d90Ec86a2AE1/info.json b/blockchains/ethereum/assets/0x0D2f3987a76995be593D755A0d36d90Ec86a2AE1/info.json new file mode 100644 index 00000000..a58b7457 --- /dev/null +++ b/blockchains/ethereum/assets/0x0D2f3987a76995be593D755A0d36d90Ec86a2AE1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sock Token", + "symbol": "SOCK", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0D2f3987a76995be593D755A0d36d90Ec86a2AE1", + "status": "abandoned", + "id": "0x0D2f3987a76995be593D755A0d36d90Ec86a2AE1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0D2f3987a76995be593D755A0d36d90Ec86a2AE1/logo.png b/blockchains/ethereum/assets/0x0D2f3987a76995be593D755A0d36d90Ec86a2AE1/logo.png new file mode 100644 index 00000000..b06bd66c Binary files /dev/null and b/blockchains/ethereum/assets/0x0D2f3987a76995be593D755A0d36d90Ec86a2AE1/logo.png differ diff --git a/blockchains/ethereum/assets/0x0D5516103752b3954D95621f470A8261151Da2e4/info.json b/blockchains/ethereum/assets/0x0D5516103752b3954D95621f470A8261151Da2e4/info.json new file mode 100644 index 00000000..4cec1bb1 --- /dev/null +++ b/blockchains/ethereum/assets/0x0D5516103752b3954D95621f470A8261151Da2e4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bloomzed Token", + "symbol": "BZT", + "type": "ERC20", + "decimals": 18, + "description": "Bloomzed is a global financial network that connects people and business.", + "website": "https://bloomzed.io", + "explorer": "https://etherscan.io/token/0x0D5516103752b3954D95621f470A8261151Da2e4", + "status": "active", + "id": "0x0D5516103752b3954D95621f470A8261151Da2e4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0D5516103752b3954D95621f470A8261151Da2e4/logo.png b/blockchains/ethereum/assets/0x0D5516103752b3954D95621f470A8261151Da2e4/logo.png new file mode 100644 index 00000000..b4d09ab9 Binary files /dev/null and b/blockchains/ethereum/assets/0x0D5516103752b3954D95621f470A8261151Da2e4/logo.png differ diff --git a/blockchains/ethereum/assets/0x0D57436F2d39c0664C6f0f2E349229483f87EA38/info.json b/blockchains/ethereum/assets/0x0D57436F2d39c0664C6f0f2E349229483f87EA38/info.json new file mode 100644 index 00000000..8230515a --- /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 00000000..633f21e7 Binary files /dev/null and b/blockchains/ethereum/assets/0x0D57436F2d39c0664C6f0f2E349229483f87EA38/logo.png differ diff --git a/blockchains/ethereum/assets/0x0D6DD9f68d24EC1d5fE2174f3EC8DAB52B52BaF5/info.json b/blockchains/ethereum/assets/0x0D6DD9f68d24EC1d5fE2174f3EC8DAB52B52BaF5/info.json new file mode 100644 index 00000000..f4b62e56 --- /dev/null +++ b/blockchains/ethereum/assets/0x0D6DD9f68d24EC1d5fE2174f3EC8DAB52B52BaF5/info.json @@ -0,0 +1,11 @@ +{ + "name": "KMCC", + "symbol": "KC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0D6DD9f68d24EC1d5fE2174f3EC8DAB52B52BaF5", + "status": "abandoned", + "id": "0x0D6DD9f68d24EC1d5fE2174f3EC8DAB52B52BaF5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0D6DD9f68d24EC1d5fE2174f3EC8DAB52B52BaF5/logo.png b/blockchains/ethereum/assets/0x0D6DD9f68d24EC1d5fE2174f3EC8DAB52B52BaF5/logo.png new file mode 100644 index 00000000..6ac2ae82 Binary files /dev/null and b/blockchains/ethereum/assets/0x0D6DD9f68d24EC1d5fE2174f3EC8DAB52B52BaF5/logo.png differ diff --git a/blockchains/ethereum/assets/0x0D8775F648430679A709E98d2b0Cb6250d2887EF/info.json b/blockchains/ethereum/assets/0x0D8775F648430679A709E98d2b0Cb6250d2887EF/info.json new file mode 100644 index 00000000..6ffe45cd --- /dev/null +++ b/blockchains/ethereum/assets/0x0D8775F648430679A709E98d2b0Cb6250d2887EF/info.json @@ -0,0 +1,33 @@ +{ + "name": "Basic Attention Token", + "website": "https://basicattentiontoken.org", + "description": "Basic Attention Token (BAT) project is an open-source, decentralized ad exchange platform built, on the Ethereum platform.", + "explorer": "https://etherscan.io/token/0x0D8775F648430679A709E98d2b0Cb6250d2887EF", + "research": "https://research.binance.com/en/projects/basic-attention-token", + "type": "ERC20", + "symbol": "BAT", + "decimals": 18, + "status": "active", + "id": "0x0D8775F648430679A709E98d2b0Cb6250d2887EF", + "tags": [ + "defi" + ], + "links": [ + { + "name": "blog", + "url": "https://medium.com/@attentiontoken" + }, + { + "name": "x", + "url": "https://x.com/@attentiontoken" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BATProject/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/basic-attention-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0D8775F648430679A709E98d2b0Cb6250d2887EF/logo.png b/blockchains/ethereum/assets/0x0D8775F648430679A709E98d2b0Cb6250d2887EF/logo.png new file mode 100644 index 00000000..e30c1e59 Binary files /dev/null and b/blockchains/ethereum/assets/0x0D8775F648430679A709E98d2b0Cb6250d2887EF/logo.png differ diff --git a/blockchains/ethereum/assets/0x0D9a10a0466B7E9AD693e24993f5105bfDb240e3/info.json b/blockchains/ethereum/assets/0x0D9a10a0466B7E9AD693e24993f5105bfDb240e3/info.json new file mode 100644 index 00000000..c580a047 --- /dev/null +++ b/blockchains/ethereum/assets/0x0D9a10a0466B7E9AD693e24993f5105bfDb240e3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptoland1", + "symbol": "CR1", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0D9a10a0466B7E9AD693e24993f5105bfDb240e3", + "status": "abandoned", + "id": "0x0D9a10a0466B7E9AD693e24993f5105bfDb240e3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0D9a10a0466B7E9AD693e24993f5105bfDb240e3/logo.png b/blockchains/ethereum/assets/0x0D9a10a0466B7E9AD693e24993f5105bfDb240e3/logo.png new file mode 100644 index 00000000..2fc81f64 Binary files /dev/null and b/blockchains/ethereum/assets/0x0D9a10a0466B7E9AD693e24993f5105bfDb240e3/logo.png differ diff --git a/blockchains/ethereum/assets/0x0DB8D8b76BC361bAcbB72E2C491E06085A97Ab31/info.json b/blockchains/ethereum/assets/0x0DB8D8b76BC361bAcbB72E2C491E06085A97Ab31/info.json new file mode 100644 index 00000000..14a3974c --- /dev/null +++ b/blockchains/ethereum/assets/0x0DB8D8b76BC361bAcbB72E2C491E06085A97Ab31/info.json @@ -0,0 +1,11 @@ +{ + "name": "iQeon", + "symbol": "IQN", + "type": "ERC20", + "decimals": 18, + "description": "IQeon is a European startup company developing the cutting-edge technological products in the sphere of Gaming and Blockchain.", + "website": "https://iqeon.io/", + "explorer": "https://etherscan.io/token/0x0DB8D8b76BC361bAcbB72E2C491E06085A97Ab31", + "status": "active", + "id": "0x0DB8D8b76BC361bAcbB72E2C491E06085A97Ab31" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0DB8D8b76BC361bAcbB72E2C491E06085A97Ab31/logo.png b/blockchains/ethereum/assets/0x0DB8D8b76BC361bAcbB72E2C491E06085A97Ab31/logo.png new file mode 100755 index 00000000..e53b6e5c Binary files /dev/null and b/blockchains/ethereum/assets/0x0DB8D8b76BC361bAcbB72E2C491E06085A97Ab31/logo.png differ diff --git a/blockchains/ethereum/assets/0x0DB953dD0668047601771AD901a2069b70a74e0E/info.json b/blockchains/ethereum/assets/0x0DB953dD0668047601771AD901a2069b70a74e0E/info.json new file mode 100644 index 00000000..60af670c --- /dev/null +++ b/blockchains/ethereum/assets/0x0DB953dD0668047601771AD901a2069b70a74e0E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Atomlogy", + "symbol": "ATG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0DB953dD0668047601771AD901a2069b70a74e0E", + "status": "abandoned", + "id": "0x0DB953dD0668047601771AD901a2069b70a74e0E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0DB953dD0668047601771AD901a2069b70a74e0E/logo.png b/blockchains/ethereum/assets/0x0DB953dD0668047601771AD901a2069b70a74e0E/logo.png new file mode 100644 index 00000000..771c0dac Binary files /dev/null and b/blockchains/ethereum/assets/0x0DB953dD0668047601771AD901a2069b70a74e0E/logo.png differ diff --git a/blockchains/ethereum/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json b/blockchains/ethereum/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json new file mode 100644 index 00000000..759607fd --- /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 00000000..be1b6bf2 Binary files /dev/null and b/blockchains/ethereum/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/logo.png differ diff --git a/blockchains/ethereum/assets/0x0DCe40212E3C689Ad502739e283d9c3Ac79727bC/info.json b/blockchains/ethereum/assets/0x0DCe40212E3C689Ad502739e283d9c3Ac79727bC/info.json new file mode 100644 index 00000000..36a44f4e --- /dev/null +++ b/blockchains/ethereum/assets/0x0DCe40212E3C689Ad502739e283d9c3Ac79727bC/info.json @@ -0,0 +1,11 @@ +{ + "name": "MasterNet", + "symbol": "MAS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0DCe40212E3C689Ad502739e283d9c3Ac79727bC", + "status": "abandoned", + "id": "0x0DCe40212E3C689Ad502739e283d9c3Ac79727bC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0DCe40212E3C689Ad502739e283d9c3Ac79727bC/logo.png b/blockchains/ethereum/assets/0x0DCe40212E3C689Ad502739e283d9c3Ac79727bC/logo.png new file mode 100755 index 00000000..69575bfb Binary files /dev/null and b/blockchains/ethereum/assets/0x0DCe40212E3C689Ad502739e283d9c3Ac79727bC/logo.png differ diff --git a/blockchains/ethereum/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/info.json b/blockchains/ethereum/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/info.json new file mode 100644 index 00000000..02b1675c --- /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 00000000..585e18c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Dd1989e4B0E82f154b729FF47F8c9a4f4b2cC1C/info.json b/blockchains/ethereum/assets/0x0Dd1989e4B0E82f154b729FF47F8c9a4f4b2cC1C/info.json new file mode 100644 index 00000000..04b8c885 --- /dev/null +++ b/blockchains/ethereum/assets/0x0Dd1989e4B0E82f154b729FF47F8c9a4f4b2cC1C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Milf Token", + "symbol": "MILF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://milftoken.net/", + "explorer": "https://etherscan.io/token/0x0Dd1989e4B0E82f154b729FF47F8c9a4f4b2cC1C", + "status": "active", + "id": "0x0Dd1989e4B0E82f154b729FF47F8c9a4f4b2cC1C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0Dd1989e4B0E82f154b729FF47F8c9a4f4b2cC1C/logo.png b/blockchains/ethereum/assets/0x0Dd1989e4B0E82f154b729FF47F8c9a4f4b2cC1C/logo.png new file mode 100644 index 00000000..cb6e635f Binary files /dev/null and b/blockchains/ethereum/assets/0x0Dd1989e4B0E82f154b729FF47F8c9a4f4b2cC1C/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Dd2eE1278342fF207BCcc8e38E7a9cDF0bbe5E1/info.json b/blockchains/ethereum/assets/0x0Dd2eE1278342fF207BCcc8e38E7a9cDF0bbe5E1/info.json new file mode 100644 index 00000000..ef9e5b00 --- /dev/null +++ b/blockchains/ethereum/assets/0x0Dd2eE1278342fF207BCcc8e38E7a9cDF0bbe5E1/info.json @@ -0,0 +1,11 @@ +{ + "name": "ACATENA", + "symbol": "ATA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0Dd2eE1278342fF207BCcc8e38E7a9cDF0bbe5E1", + "status": "abandoned", + "id": "0x0Dd2eE1278342fF207BCcc8e38E7a9cDF0bbe5E1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0Dd2eE1278342fF207BCcc8e38E7a9cDF0bbe5E1/logo.png b/blockchains/ethereum/assets/0x0Dd2eE1278342fF207BCcc8e38E7a9cDF0bbe5E1/logo.png new file mode 100644 index 00000000..2002d4f3 Binary files /dev/null and b/blockchains/ethereum/assets/0x0Dd2eE1278342fF207BCcc8e38E7a9cDF0bbe5E1/logo.png differ diff --git a/blockchains/ethereum/assets/0x0E1fe60bc4aC0e3102343752ae7E49d01d444c0b/info.json b/blockchains/ethereum/assets/0x0E1fe60bc4aC0e3102343752ae7E49d01d444c0b/info.json new file mode 100644 index 00000000..11a72e54 --- /dev/null +++ b/blockchains/ethereum/assets/0x0E1fe60bc4aC0e3102343752ae7E49d01d444c0b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Havens Nook", + "symbol": "HXN", + "type": "ERC20", + "decimals": 18, + "description": "HXN is a Ethereum-based token that introduces a new concept proof of fun (POF). Have fun and your efforts will be rewarded with HXN.", + "website": "https://havensnook.com/", + "explorer": "https://etherscan.io/token/0x0E1fe60bc4aC0e3102343752ae7E49d01d444c0b", + "status": "active", + "id": "0x0E1fe60bc4aC0e3102343752ae7E49d01d444c0b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0E1fe60bc4aC0e3102343752ae7E49d01d444c0b/logo.png b/blockchains/ethereum/assets/0x0E1fe60bc4aC0e3102343752ae7E49d01d444c0b/logo.png new file mode 100644 index 00000000..ac4a02cd Binary files /dev/null and b/blockchains/ethereum/assets/0x0E1fe60bc4aC0e3102343752ae7E49d01d444c0b/logo.png differ diff --git a/blockchains/ethereum/assets/0x0E22734e078d6e399BCeE40a549DB591C4EA46cB/info.json b/blockchains/ethereum/assets/0x0E22734e078d6e399BCeE40a549DB591C4EA46cB/info.json new file mode 100644 index 00000000..d377b608 --- /dev/null +++ b/blockchains/ethereum/assets/0x0E22734e078d6e399BCeE40a549DB591C4EA46cB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Streamity", + "symbol": "STM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.streamity.org", + "explorer": "https://etherscan.io/token/0x0E22734e078d6e399BCeE40a549DB591C4EA46cB", + "status": "abandoned", + "id": "0x0E22734e078d6e399BCeE40a549DB591C4EA46cB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0E22734e078d6e399BCeE40a549DB591C4EA46cB/logo.png b/blockchains/ethereum/assets/0x0E22734e078d6e399BCeE40a549DB591C4EA46cB/logo.png new file mode 100644 index 00000000..c8a76ea6 Binary files /dev/null and b/blockchains/ethereum/assets/0x0E22734e078d6e399BCeE40a549DB591C4EA46cB/logo.png differ diff --git a/blockchains/ethereum/assets/0x0E29e5AbbB5FD88e28b2d355774e73BD47dE3bcd/info.json b/blockchains/ethereum/assets/0x0E29e5AbbB5FD88e28b2d355774e73BD47dE3bcd/info.json new file mode 100644 index 00000000..8c06a119 --- /dev/null +++ b/blockchains/ethereum/assets/0x0E29e5AbbB5FD88e28b2d355774e73BD47dE3bcd/info.json @@ -0,0 +1,14 @@ +{ + "name": "Hakka Finance", + "symbol": "HAKKA", + "type": "ERC20", + "decimals": 18, + "description": "Hakka Decentralized Finance Ecosystem Warped Spacetime with Crypto Native Primitives", + "website": "https://hakka.finance/", + "explorer": "https://etherscan.io/token/0x0E29e5AbbB5FD88e28b2d355774e73BD47dE3bcd", + "status": "active", + "id": "0x0E29e5AbbB5FD88e28b2d355774e73BD47dE3bcd", + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0E29e5AbbB5FD88e28b2d355774e73BD47dE3bcd/logo.png b/blockchains/ethereum/assets/0x0E29e5AbbB5FD88e28b2d355774e73BD47dE3bcd/logo.png new file mode 100644 index 00000000..8fecc956 Binary files /dev/null and b/blockchains/ethereum/assets/0x0E29e5AbbB5FD88e28b2d355774e73BD47dE3bcd/logo.png differ diff --git a/blockchains/ethereum/assets/0x0E5aD274d1FC232555286246be0BAD3AffB2F4Cc/info.json b/blockchains/ethereum/assets/0x0E5aD274d1FC232555286246be0BAD3AffB2F4Cc/info.json new file mode 100644 index 00000000..c930a6ac --- /dev/null +++ b/blockchains/ethereum/assets/0x0E5aD274d1FC232555286246be0BAD3AffB2F4Cc/info.json @@ -0,0 +1,11 @@ +{ + "name": "bomb.finance", + "symbol": "BOMB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0E5aD274d1FC232555286246be0BAD3AffB2F4Cc", + "status": "abandoned", + "id": "0x0E5aD274d1FC232555286246be0BAD3AffB2F4Cc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0E5aD274d1FC232555286246be0BAD3AffB2F4Cc/logo.png b/blockchains/ethereum/assets/0x0E5aD274d1FC232555286246be0BAD3AffB2F4Cc/logo.png new file mode 100644 index 00000000..eacdebe9 Binary files /dev/null and b/blockchains/ethereum/assets/0x0E5aD274d1FC232555286246be0BAD3AffB2F4Cc/logo.png differ diff --git a/blockchains/ethereum/assets/0x0E5d22C0CAbcB15BC75C3F5050ba56dFF2B3Cd6F/info.json b/blockchains/ethereum/assets/0x0E5d22C0CAbcB15BC75C3F5050ba56dFF2B3Cd6F/info.json new file mode 100644 index 00000000..88acd91c --- /dev/null +++ b/blockchains/ethereum/assets/0x0E5d22C0CAbcB15BC75C3F5050ba56dFF2B3Cd6F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Realtrade Coin", + "symbol": "RTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0E5d22C0CAbcB15BC75C3F5050ba56dFF2B3Cd6F", + "status": "abandoned", + "id": "0x0E5d22C0CAbcB15BC75C3F5050ba56dFF2B3Cd6F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0E5d22C0CAbcB15BC75C3F5050ba56dFF2B3Cd6F/logo.png b/blockchains/ethereum/assets/0x0E5d22C0CAbcB15BC75C3F5050ba56dFF2B3Cd6F/logo.png new file mode 100644 index 00000000..c94c3ad0 Binary files /dev/null and b/blockchains/ethereum/assets/0x0E5d22C0CAbcB15BC75C3F5050ba56dFF2B3Cd6F/logo.png differ diff --git a/blockchains/ethereum/assets/0x0E60CE572a5456B6974d5E7507cc07110DD062A4/info.json b/blockchains/ethereum/assets/0x0E60CE572a5456B6974d5E7507cc07110DD062A4/info.json new file mode 100644 index 00000000..16f44998 --- /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 new file mode 100644 index 00000000..12debb7f --- /dev/null +++ b/blockchains/ethereum/assets/0x0E69D0A2bbB30aBcB7e5CfEA0E4FDe19C00A8d47/info.json @@ -0,0 +1,25 @@ +{ + "name": "CarLive Chain", + "website": "https://carlive.io", + "description": "CarLive Chain is a vertical application of blockchain technology in the field of automotive social network.", + "explorer": "https://etherscan.io/token/0x0E69D0A2bbB30aBcB7e5CfEA0E4FDe19C00A8d47", + "type": "ERC20", + "symbol": "IOV", + "decimals": 8, + "status": "active", + "id": "0x0E69D0A2bbB30aBcB7e5CfEA0E4FDe19C00A8d47", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/CarLiveChain/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/carlive-chain/" + }, + { + "name": "x", + "url": "https://x.com/CarliveChain" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0E69D0A2bbB30aBcB7e5CfEA0E4FDe19C00A8d47/logo.png b/blockchains/ethereum/assets/0x0E69D0A2bbB30aBcB7e5CfEA0E4FDe19C00A8d47/logo.png new file mode 100644 index 00000000..fb5f2d05 Binary files /dev/null and b/blockchains/ethereum/assets/0x0E69D0A2bbB30aBcB7e5CfEA0E4FDe19C00A8d47/logo.png differ diff --git a/blockchains/ethereum/assets/0x0E6BB94B7f25B96f13E0baf5bC04b8Ba39b897A8/info.json b/blockchains/ethereum/assets/0x0E6BB94B7f25B96f13E0baf5bC04b8Ba39b897A8/info.json new file mode 100644 index 00000000..1b466685 --- /dev/null +++ b/blockchains/ethereum/assets/0x0E6BB94B7f25B96f13E0baf5bC04b8Ba39b897A8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Top.One Coin", + "symbol": "TOP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0E6BB94B7f25B96f13E0baf5bC04b8Ba39b897A8", + "status": "abandoned", + "id": "0x0E6BB94B7f25B96f13E0baf5bC04b8Ba39b897A8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0E6BB94B7f25B96f13E0baf5bC04b8Ba39b897A8/logo.png b/blockchains/ethereum/assets/0x0E6BB94B7f25B96f13E0baf5bC04b8Ba39b897A8/logo.png new file mode 100644 index 00000000..48f9420e Binary files /dev/null and b/blockchains/ethereum/assets/0x0E6BB94B7f25B96f13E0baf5bC04b8Ba39b897A8/logo.png differ diff --git a/blockchains/ethereum/assets/0x0E7C28fb8ed4F5F63Aabd022DEaeEBA40Ecc335c/info.json b/blockchains/ethereum/assets/0x0E7C28fb8ed4F5F63Aabd022DEaeEBA40Ecc335c/info.json new file mode 100644 index 00000000..8cccf5e7 --- /dev/null +++ b/blockchains/ethereum/assets/0x0E7C28fb8ed4F5F63Aabd022DEaeEBA40Ecc335c/info.json @@ -0,0 +1,11 @@ +{ + "name": "EtherCenter", + "symbol": "EC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0E7C28fb8ed4F5F63Aabd022DEaeEBA40Ecc335c", + "status": "abandoned", + "id": "0x0E7C28fb8ed4F5F63Aabd022DEaeEBA40Ecc335c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0E7C28fb8ed4F5F63Aabd022DEaeEBA40Ecc335c/logo.png b/blockchains/ethereum/assets/0x0E7C28fb8ed4F5F63Aabd022DEaeEBA40Ecc335c/logo.png new file mode 100644 index 00000000..be1b1250 Binary files /dev/null and b/blockchains/ethereum/assets/0x0E7C28fb8ed4F5F63Aabd022DEaeEBA40Ecc335c/logo.png differ diff --git a/blockchains/ethereum/assets/0x0E7f79E89BA8C4a13431129fB2db0d4f444B5B9A/info.json b/blockchains/ethereum/assets/0x0E7f79E89BA8C4a13431129fB2db0d4f444B5B9A/info.json new file mode 100644 index 00000000..d97e7b9b --- /dev/null +++ b/blockchains/ethereum/assets/0x0E7f79E89BA8C4a13431129fB2db0d4f444B5B9A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xank", + "symbol": "XANK", + "type": "ERC20", + "decimals": 16, + "description": "-", + "website": "https://xank.io/", + "explorer": "https://etherscan.io/token/0x0E7f79E89BA8C4a13431129fB2db0d4f444B5B9A", + "status": "abandoned", + "id": "0x0E7f79E89BA8C4a13431129fB2db0d4f444B5B9A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0E7f79E89BA8C4a13431129fB2db0d4f444B5B9A/logo.png b/blockchains/ethereum/assets/0x0E7f79E89BA8C4a13431129fB2db0d4f444B5B9A/logo.png new file mode 100644 index 00000000..64ba48f3 Binary files /dev/null and b/blockchains/ethereum/assets/0x0E7f79E89BA8C4a13431129fB2db0d4f444B5B9A/logo.png differ diff --git a/blockchains/ethereum/assets/0x0E8d6b471e332F140e7d9dbB99E5E3822F728DA6/info.json b/blockchains/ethereum/assets/0x0E8d6b471e332F140e7d9dbB99E5E3822F728DA6/info.json new file mode 100644 index 00000000..262bc0ee --- /dev/null +++ b/blockchains/ethereum/assets/0x0E8d6b471e332F140e7d9dbB99E5E3822F728DA6/info.json @@ -0,0 +1,33 @@ +{ + "name": "Abyss", + "website": "https://abyss.finance/", + "description": "Abyss (ABYSS) is the ERC20 token native to the Abyss.Finance ecosystem. Within the Abyss.Finance Ecosystem, Abyss is currently used in the Gaming platform (theabyss.com), the Non-Fungible Token (NFT) Marketplace, and allows members to earn rewards through Staking and setting up Masternodes.", + "explorer": "https://etherscan.io/token/0x0E8d6b471e332F140e7d9dbB99E5E3822F728DA6", + "type": "ERC20", + "symbol": "ABYSS", + "decimals": 18, + "status": "active", + "id": "0x0E8d6b471e332F140e7d9dbB99E5E3822F728DA6", + "links": [ + { + "name": "github", + "url": "https://github.com/abyssfinance" + }, + { + "name": "x", + "url": "https://x.com/AbyssFinance" + }, + { + "name": "telegram", + "url": "https://t.me/abyssfinance" + }, + { + "name": "facebook", + "url": "https://facebook.com/abyssfinance/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/abyssfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0E8d6b471e332F140e7d9dbB99E5E3822F728DA6/logo.png b/blockchains/ethereum/assets/0x0E8d6b471e332F140e7d9dbB99E5E3822F728DA6/logo.png new file mode 100644 index 00000000..467b38ee Binary files /dev/null and b/blockchains/ethereum/assets/0x0E8d6b471e332F140e7d9dbB99E5E3822F728DA6/logo.png differ diff --git a/blockchains/ethereum/assets/0x0ED8343dfdEE32E38b4c4cE15a3b00A59E90F3dB/info.json b/blockchains/ethereum/assets/0x0ED8343dfdEE32E38b4c4cE15a3b00A59E90F3dB/info.json new file mode 100644 index 00000000..d603a74c --- /dev/null +++ b/blockchains/ethereum/assets/0x0ED8343dfdEE32E38b4c4cE15a3b00A59E90F3dB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Claymore", + "symbol": "CLM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0ED8343dfdEE32E38b4c4cE15a3b00A59E90F3dB", + "status": "abandoned", + "id": "0x0ED8343dfdEE32E38b4c4cE15a3b00A59E90F3dB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0ED8343dfdEE32E38b4c4cE15a3b00A59E90F3dB/logo.png b/blockchains/ethereum/assets/0x0ED8343dfdEE32E38b4c4cE15a3b00A59E90F3dB/logo.png new file mode 100644 index 00000000..53038d5d Binary files /dev/null and b/blockchains/ethereum/assets/0x0ED8343dfdEE32E38b4c4cE15a3b00A59E90F3dB/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Eb152d2bba8aF722D7E296A1F223d819C3bbB1f/info.json b/blockchains/ethereum/assets/0x0Eb152d2bba8aF722D7E296A1F223d819C3bbB1f/info.json new file mode 100644 index 00000000..ca18308d --- /dev/null +++ b/blockchains/ethereum/assets/0x0Eb152d2bba8aF722D7E296A1F223d819C3bbB1f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Carbon Exchange Coin Token", + "symbol": "CEC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.carboncoin.one/", + "explorer": "https://etherscan.io/token/0x0Eb152d2bba8aF722D7E296A1F223d819C3bbB1f", + "status": "spam", + "id": "0x0Eb152d2bba8aF722D7E296A1F223d819C3bbB1f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0Eb152d2bba8aF722D7E296A1F223d819C3bbB1f/logo.png b/blockchains/ethereum/assets/0x0Eb152d2bba8aF722D7E296A1F223d819C3bbB1f/logo.png new file mode 100755 index 00000000..92ea53ac Binary files /dev/null and b/blockchains/ethereum/assets/0x0Eb152d2bba8aF722D7E296A1F223d819C3bbB1f/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Eb3D7c0329e4Cd4e4Cf3457eb9144ebbf9A5518/info.json b/blockchains/ethereum/assets/0x0Eb3D7c0329e4Cd4e4Cf3457eb9144ebbf9A5518/info.json new file mode 100644 index 00000000..4a15c888 --- /dev/null +++ b/blockchains/ethereum/assets/0x0Eb3D7c0329e4Cd4e4Cf3457eb9144ebbf9A5518/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg9500", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0Eb3D7c0329e4Cd4e4Cf3457eb9144ebbf9A5518", + "status": "abandoned", + "id": "0x0Eb3D7c0329e4Cd4e4Cf3457eb9144ebbf9A5518" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0Eb3D7c0329e4Cd4e4Cf3457eb9144ebbf9A5518/logo.png b/blockchains/ethereum/assets/0x0Eb3D7c0329e4Cd4e4Cf3457eb9144ebbf9A5518/logo.png new file mode 100644 index 00000000..8ceeccb4 Binary files /dev/null and b/blockchains/ethereum/assets/0x0Eb3D7c0329e4Cd4e4Cf3457eb9144ebbf9A5518/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Eb6E56aAcae6A21BdE99c826ac798D225488C3D/info.json b/blockchains/ethereum/assets/0x0Eb6E56aAcae6A21BdE99c826ac798D225488C3D/info.json new file mode 100644 index 00000000..6c11429e --- /dev/null +++ b/blockchains/ethereum/assets/0x0Eb6E56aAcae6A21BdE99c826ac798D225488C3D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crypto Revolution", + "symbol": "CRVT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://crypto-revolution.io/", + "explorer": "https://etherscan.io/token/0x0Eb6E56aAcae6A21BdE99c826ac798D225488C3D", + "status": "abandoned", + "id": "0x0Eb6E56aAcae6A21BdE99c826ac798D225488C3D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0Eb6E56aAcae6A21BdE99c826ac798D225488C3D/logo.png b/blockchains/ethereum/assets/0x0Eb6E56aAcae6A21BdE99c826ac798D225488C3D/logo.png new file mode 100644 index 00000000..ea467cb0 Binary files /dev/null and b/blockchains/ethereum/assets/0x0Eb6E56aAcae6A21BdE99c826ac798D225488C3D/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Ebb614204E47c09B6C3FeB9AAeCad8EE060E23E/info.json b/blockchains/ethereum/assets/0x0Ebb614204E47c09B6C3FeB9AAeCad8EE060E23E/info.json new file mode 100644 index 00000000..d2ce1b6b --- /dev/null +++ b/blockchains/ethereum/assets/0x0Ebb614204E47c09B6C3FeB9AAeCad8EE060E23E/info.json @@ -0,0 +1,11 @@ +{ + "name": "CPAY Token", + "symbol": "CPAY", + "type": "ERC20", + "decimals": 0, + "description": "Cryptopay is an online Bitcoin Wallet which offers greater functionality than simpler services for buying and selling bitcoins. You can use this page to learn more about Cryptopay’s features.", + "website": "https://cryptopay.me/", + "explorer": "https://etherscan.io/token/0x0Ebb614204E47c09B6C3FeB9AAeCad8EE060E23E", + "status": "active", + "id": "0x0Ebb614204E47c09B6C3FeB9AAeCad8EE060E23E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0Ebb614204E47c09B6C3FeB9AAeCad8EE060E23E/logo.png b/blockchains/ethereum/assets/0x0Ebb614204E47c09B6C3FeB9AAeCad8EE060E23E/logo.png new file mode 100644 index 00000000..74841393 Binary files /dev/null and b/blockchains/ethereum/assets/0x0Ebb614204E47c09B6C3FeB9AAeCad8EE060E23E/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Ec300614EC04D7C357202A0070a6E957Ff5D319/info.json b/blockchains/ethereum/assets/0x0Ec300614EC04D7C357202A0070a6E957Ff5D319/info.json new file mode 100644 index 00000000..1badc44d --- /dev/null +++ b/blockchains/ethereum/assets/0x0Ec300614EC04D7C357202A0070a6E957Ff5D319/info.json @@ -0,0 +1,11 @@ +{ + "name": "OneDollarCoin", + "symbol": "ODC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0Ec300614EC04D7C357202A0070a6E957Ff5D319", + "status": "abandoned", + "id": "0x0Ec300614EC04D7C357202A0070a6E957Ff5D319" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0Ec300614EC04D7C357202A0070a6E957Ff5D319/logo.png b/blockchains/ethereum/assets/0x0Ec300614EC04D7C357202A0070a6E957Ff5D319/logo.png new file mode 100755 index 00000000..4b45a6c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x0Ec300614EC04D7C357202A0070a6E957Ff5D319/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Ef009AD1899f1f3228073d1Bff8f3Db67d1061a/info.json b/blockchains/ethereum/assets/0x0Ef009AD1899f1f3228073d1Bff8f3Db67d1061a/info.json new file mode 100644 index 00000000..5dfa1ca9 --- /dev/null +++ b/blockchains/ethereum/assets/0x0Ef009AD1899f1f3228073d1Bff8f3Db67d1061a/info.json @@ -0,0 +1,11 @@ +{ + "name": "BiTBrothers", + "symbol": "BTB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0Ef009AD1899f1f3228073d1Bff8f3Db67d1061a", + "status": "abandoned", + "id": "0x0Ef009AD1899f1f3228073d1Bff8f3Db67d1061a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0Ef009AD1899f1f3228073d1Bff8f3Db67d1061a/logo.png b/blockchains/ethereum/assets/0x0Ef009AD1899f1f3228073d1Bff8f3Db67d1061a/logo.png new file mode 100644 index 00000000..0c9be6e7 Binary files /dev/null and b/blockchains/ethereum/assets/0x0Ef009AD1899f1f3228073d1Bff8f3Db67d1061a/logo.png differ diff --git a/blockchains/ethereum/assets/0x0F02e27745e3b6e9e1310d19469e2b5D7B5eC99A/info.json b/blockchains/ethereum/assets/0x0F02e27745e3b6e9e1310d19469e2b5D7B5eC99A/info.json new file mode 100644 index 00000000..fa4307c7 --- /dev/null +++ b/blockchains/ethereum/assets/0x0F02e27745e3b6e9e1310d19469e2b5D7B5eC99A/info.json @@ -0,0 +1,33 @@ +{ + "name": "Peculium", + "website": "http://peculium.io/", + "description": "PECULIUM revolutionises savings management by deploying immutable Smart-Contracts over the Ethereum blockchain. These smart contracts provide a trust-less way of achieving transparent, decentralised, and infallible contractual agreements.", + "explorer": "https://etherscan.io/token/0x0F02e27745e3b6e9e1310d19469e2b5D7B5eC99A", + "type": "ERC20", + "symbol": "PCL", + "decimals": 8, + "status": "active", + "id": "0x0F02e27745e3b6e9e1310d19469e2b5D7B5eC99A", + "links": [ + { + "name": "github", + "url": "https://github.com/Peculium-Dev/peculiumContracts" + }, + { + "name": "x", + "url": "https://x.com/peculium" + }, + { + "name": "facebook", + "url": "https://facebook.com/PeculiumICO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Peculium/" + }, + { + "name": "whitepaper", + "url": "https://peculium.io/white-paper" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0F02e27745e3b6e9e1310d19469e2b5D7B5eC99A/logo.png b/blockchains/ethereum/assets/0x0F02e27745e3b6e9e1310d19469e2b5D7B5eC99A/logo.png new file mode 100644 index 00000000..0a308b5b Binary files /dev/null and b/blockchains/ethereum/assets/0x0F02e27745e3b6e9e1310d19469e2b5D7B5eC99A/logo.png differ diff --git a/blockchains/ethereum/assets/0x0F09c5922a47b0B9100c1D56Ada4BF7a9f3A72d4/info.json b/blockchains/ethereum/assets/0x0F09c5922a47b0B9100c1D56Ada4BF7a9f3A72d4/info.json new file mode 100644 index 00000000..fc31470a --- /dev/null +++ b/blockchains/ethereum/assets/0x0F09c5922a47b0B9100c1D56Ada4BF7a9f3A72d4/info.json @@ -0,0 +1,11 @@ +{ + "name": "UTOPIA", + "symbol": "UTO", + "type": "ERC20", + "decimals": 18, + "description": "Research, Development, Testing, Manufacturing, Production, Marketing, & Distribution of Advanced, One-of-a-kind Technologies to Utopia Citizens.", + "website": "https://selfpreservationtechnology.com/", + "explorer": "https://etherscan.io/token/0x0F09c5922a47b0B9100c1D56Ada4BF7a9f3A72d4", + "status": "active", + "id": "0x0F09c5922a47b0B9100c1D56Ada4BF7a9f3A72d4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0F09c5922a47b0B9100c1D56Ada4BF7a9f3A72d4/logo.png b/blockchains/ethereum/assets/0x0F09c5922a47b0B9100c1D56Ada4BF7a9f3A72d4/logo.png new file mode 100644 index 00000000..a829273f Binary files /dev/null and b/blockchains/ethereum/assets/0x0F09c5922a47b0B9100c1D56Ada4BF7a9f3A72d4/logo.png differ diff --git a/blockchains/ethereum/assets/0x0F237D5eA7876E0e2906034D98FDB20D43666ad4/info.json b/blockchains/ethereum/assets/0x0F237D5eA7876E0e2906034D98FDB20D43666ad4/info.json new file mode 100644 index 00000000..7852d9f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x0F237D5eA7876E0e2906034D98FDB20D43666ad4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Connect coin(XCON)", + "symbol": "XCON", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0F237D5eA7876E0e2906034D98FDB20D43666ad4", + "status": "abandoned", + "id": "0x0F237D5eA7876E0e2906034D98FDB20D43666ad4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0F237D5eA7876E0e2906034D98FDB20D43666ad4/logo.png b/blockchains/ethereum/assets/0x0F237D5eA7876E0e2906034D98FDB20D43666ad4/logo.png new file mode 100644 index 00000000..8fa16d60 Binary files /dev/null and b/blockchains/ethereum/assets/0x0F237D5eA7876E0e2906034D98FDB20D43666ad4/logo.png differ diff --git a/blockchains/ethereum/assets/0x0F391Fdd1956f322a87231f580dF961E7b7FbA8a/info.json b/blockchains/ethereum/assets/0x0F391Fdd1956f322a87231f580dF961E7b7FbA8a/info.json new file mode 100644 index 00000000..04cbdca6 --- /dev/null +++ b/blockchains/ethereum/assets/0x0F391Fdd1956f322a87231f580dF961E7b7FbA8a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aziz", + "symbol": "AZIZ", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0F391Fdd1956f322a87231f580dF961E7b7FbA8a", + "status": "abandoned", + "id": "0x0F391Fdd1956f322a87231f580dF961E7b7FbA8a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0F391Fdd1956f322a87231f580dF961E7b7FbA8a/logo.png b/blockchains/ethereum/assets/0x0F391Fdd1956f322a87231f580dF961E7b7FbA8a/logo.png new file mode 100644 index 00000000..f87ae98c Binary files /dev/null and b/blockchains/ethereum/assets/0x0F391Fdd1956f322a87231f580dF961E7b7FbA8a/logo.png differ diff --git a/blockchains/ethereum/assets/0x0F4CA92660Efad97a9a70CB0fe969c755439772C/info.json b/blockchains/ethereum/assets/0x0F4CA92660Efad97a9a70CB0fe969c755439772C/info.json new file mode 100644 index 00000000..eac4ff7f --- /dev/null +++ b/blockchains/ethereum/assets/0x0F4CA92660Efad97a9a70CB0fe969c755439772C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Leverj", + "symbol": "LEV", + "type": "ERC20", + "decimals": 9, + "description": "A full featured, decentralized futures exchange without compromise.", + "website": "https://www.leverj.io/", + "explorer": "https://etherscan.io/token/0x0F4CA92660Efad97a9a70CB0fe969c755439772C", + "status": "active", + "id": "0x0F4CA92660Efad97a9a70CB0fe969c755439772C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0F4CA92660Efad97a9a70CB0fe969c755439772C/logo.png b/blockchains/ethereum/assets/0x0F4CA92660Efad97a9a70CB0fe969c755439772C/logo.png new file mode 100644 index 00000000..8a2df1e2 Binary files /dev/null and b/blockchains/ethereum/assets/0x0F4CA92660Efad97a9a70CB0fe969c755439772C/logo.png differ diff --git a/blockchains/ethereum/assets/0x0F513fFb4926ff82D7F60A05069047AcA295C413/info.json b/blockchains/ethereum/assets/0x0F513fFb4926ff82D7F60A05069047AcA295C413/info.json new file mode 100644 index 00000000..b8a0bef9 --- /dev/null +++ b/blockchains/ethereum/assets/0x0F513fFb4926ff82D7F60A05069047AcA295C413/info.json @@ -0,0 +1,11 @@ +{ + "name": "CrowdstartCoin", + "symbol": "XSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0F513fFb4926ff82D7F60A05069047AcA295C413", + "status": "abandoned", + "id": "0x0F513fFb4926ff82D7F60A05069047AcA295C413" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0F513fFb4926ff82D7F60A05069047AcA295C413/logo.png b/blockchains/ethereum/assets/0x0F513fFb4926ff82D7F60A05069047AcA295C413/logo.png new file mode 100755 index 00000000..4a8d6906 Binary files /dev/null and b/blockchains/ethereum/assets/0x0F513fFb4926ff82D7F60A05069047AcA295C413/logo.png differ diff --git a/blockchains/ethereum/assets/0x0F5D2fB29fb7d3CFeE444a200298f468908cC942/info.json b/blockchains/ethereum/assets/0x0F5D2fB29fb7d3CFeE444a200298f468908cC942/info.json new file mode 100644 index 00000000..7b00479c --- /dev/null +++ b/blockchains/ethereum/assets/0x0F5D2fB29fb7d3CFeE444a200298f468908cC942/info.json @@ -0,0 +1,45 @@ +{ + "name": "Decentraland", + "website": "https://decentraland.org", + "description": "Decentraland (MANA) defines itself as a virtual reality platform powered by the Ethereum blockchain that allows users to create, experience, and monetize content and applications.", + "explorer": "https://etherscan.io/token/0x0F5D2fB29fb7d3CFeE444a200298f468908cC942", + "type": "ERC20", + "symbol": "MANA", + "decimals": 18, + "status": "active", + "id": "0x0F5D2fB29fb7d3CFeE444a200298f468908cC942", + "tags": [ + "gamefi", + "nft" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/decentraland" + }, + { + "name": "x", + "url": "https://x.com/decentraland" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/decentraland" + }, + { + "name": "blog", + "url": "https://blog.decentraland.org/" + }, + { + "name": "facebook", + "url": "https://facebook.com/decentraland/" + }, + { + "name": "whitepaper", + "url": "https://decentraland.org/whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/decentraland/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0F5D2fB29fb7d3CFeE444a200298f468908cC942/logo.png b/blockchains/ethereum/assets/0x0F5D2fB29fb7d3CFeE444a200298f468908cC942/logo.png new file mode 100644 index 00000000..2e4e2b57 Binary files /dev/null and b/blockchains/ethereum/assets/0x0F5D2fB29fb7d3CFeE444a200298f468908cC942/logo.png differ diff --git a/blockchains/ethereum/assets/0x0F612a09eAd55Bb81b6534e80ed5A21Bf0a27B16/info.json b/blockchains/ethereum/assets/0x0F612a09eAd55Bb81b6534e80ed5A21Bf0a27B16/info.json new file mode 100644 index 00000000..34e46031 --- /dev/null +++ b/blockchains/ethereum/assets/0x0F612a09eAd55Bb81b6534e80ed5A21Bf0a27B16/info.json @@ -0,0 +1,11 @@ +{ + "name": "EUNOMIA", + "symbol": "ENTS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://ent.zone/", + "explorer": "https://etherscan.io/token/0x0F612a09eAd55Bb81b6534e80ed5A21Bf0a27B16", + "status": "abandoned", + "id": "0x0F612a09eAd55Bb81b6534e80ed5A21Bf0a27B16" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0F612a09eAd55Bb81b6534e80ed5A21Bf0a27B16/logo.png b/blockchains/ethereum/assets/0x0F612a09eAd55Bb81b6534e80ed5A21Bf0a27B16/logo.png new file mode 100644 index 00000000..ad9ae4d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x0F612a09eAd55Bb81b6534e80ed5A21Bf0a27B16/logo.png differ diff --git a/blockchains/ethereum/assets/0x0F72714B35a366285Df85886A2eE174601292A17/info.json b/blockchains/ethereum/assets/0x0F72714B35a366285Df85886A2eE174601292A17/info.json new file mode 100644 index 00000000..3987d08c --- /dev/null +++ b/blockchains/ethereum/assets/0x0F72714B35a366285Df85886A2eE174601292A17/info.json @@ -0,0 +1,11 @@ +{ + "name": "1SG", + "symbol": "1SG", + "type": "ERC20", + "decimals": 18, + "description": "1SG seeks to facilitate transactions by pegging one 1SG token to one Singapore dollar. Through a centralized, fully-collateralized legal asset (Singapore Dollar), the token value of 1SG is guaranteed at a 1:1 exchange rate.", + "website": "http://1.sg/", + "explorer": "https://etherscan.io/token/0x0F72714B35a366285Df85886A2eE174601292A17", + "status": "active", + "id": "0x0F72714B35a366285Df85886A2eE174601292A17" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0F72714B35a366285Df85886A2eE174601292A17/logo.png b/blockchains/ethereum/assets/0x0F72714B35a366285Df85886A2eE174601292A17/logo.png new file mode 100755 index 00000000..f266af1a Binary files /dev/null and b/blockchains/ethereum/assets/0x0F72714B35a366285Df85886A2eE174601292A17/logo.png differ diff --git a/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/info.json b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/info.json new file mode 100644 index 00000000..a023ed21 --- /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 00000000..fae0e238 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 00000000..7ce123c7 --- /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 00000000..3cac9a56 Binary files /dev/null and b/blockchains/ethereum/assets/0x0F8887772262c449793890DCD3Bf320308dB423B/logo.png differ diff --git a/blockchains/ethereum/assets/0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38/info.json b/blockchains/ethereum/assets/0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38/info.json new file mode 100644 index 00000000..4d20cacd --- /dev/null +++ b/blockchains/ethereum/assets/0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pundi X", + "website": "https://pundix.com", + "description": "Pundi X (NPXS) aims to make the use of cryptocurrency as a form of payment into a reality for retailers and consumers alike.", + "explorer": "https://etherscan.io/token/0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", + "type": "ERC20", + "symbol": "PUNDIX", + "decimals": 18, + "status": "active", + "id": "0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38/logo.png b/blockchains/ethereum/assets/0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38/logo.png new file mode 100644 index 00000000..fbf12a55 Binary files /dev/null and b/blockchains/ethereum/assets/0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38/logo.png differ diff --git a/blockchains/ethereum/assets/0x0FFF95D5ab18c763c42C209F137C47354af104a8/info.json b/blockchains/ethereum/assets/0x0FFF95D5ab18c763c42C209F137C47354af104a8/info.json new file mode 100644 index 00000000..875cb8ae --- /dev/null +++ b/blockchains/ethereum/assets/0x0FFF95D5ab18c763c42C209F137C47354af104a8/info.json @@ -0,0 +1,11 @@ +{ + "name": "HEX Money", + "symbol": "HXY", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0FFF95D5ab18c763c42C209F137C47354af104a8", + "status": "abandoned", + "id": "0x0FFF95D5ab18c763c42C209F137C47354af104a8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0FFF95D5ab18c763c42C209F137C47354af104a8/logo.png b/blockchains/ethereum/assets/0x0FFF95D5ab18c763c42C209F137C47354af104a8/logo.png new file mode 100644 index 00000000..3ec0fdb9 Binary files /dev/null and b/blockchains/ethereum/assets/0x0FFF95D5ab18c763c42C209F137C47354af104a8/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Fed2aca55338d77438797bDf609252Db92313ea/info.json b/blockchains/ethereum/assets/0x0Fed2aca55338d77438797bDf609252Db92313ea/info.json new file mode 100644 index 00000000..0c0134ec --- /dev/null +++ b/blockchains/ethereum/assets/0x0Fed2aca55338d77438797bDf609252Db92313ea/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bdb", + "symbol": "BDB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0Fed2aca55338d77438797bDf609252Db92313ea", + "status": "abandoned", + "id": "0x0Fed2aca55338d77438797bDf609252Db92313ea" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0Fed2aca55338d77438797bDf609252Db92313ea/logo.png b/blockchains/ethereum/assets/0x0Fed2aca55338d77438797bDf609252Db92313ea/logo.png new file mode 100644 index 00000000..e0cb4a60 Binary files /dev/null and b/blockchains/ethereum/assets/0x0Fed2aca55338d77438797bDf609252Db92313ea/logo.png differ diff --git a/blockchains/ethereum/assets/0x0a00c19246Fc41B2524d56C87EC44Ce8b30Ba0f8/info.json b/blockchains/ethereum/assets/0x0a00c19246Fc41B2524d56C87EC44Ce8b30Ba0f8/info.json new file mode 100644 index 00000000..f12c34fd --- /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 00000000..d28deab3 Binary files /dev/null and b/blockchains/ethereum/assets/0x0a00c19246Fc41B2524d56C87EC44Ce8b30Ba0f8/logo.png differ diff --git a/blockchains/ethereum/assets/0x0a2102d4fEC1BD35423C63a52EB8932377a2c8DB/info.json b/blockchains/ethereum/assets/0x0a2102d4fEC1BD35423C63a52EB8932377a2c8DB/info.json new file mode 100644 index 00000000..8f26fc73 --- /dev/null +++ b/blockchains/ethereum/assets/0x0a2102d4fEC1BD35423C63a52EB8932377a2c8DB/info.json @@ -0,0 +1,11 @@ +{ + "name": "VIGO Network", + "symbol": "VIGO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0a2102d4fEC1BD35423C63a52EB8932377a2c8DB", + "status": "abandoned", + "id": "0x0a2102d4fEC1BD35423C63a52EB8932377a2c8DB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0a2102d4fEC1BD35423C63a52EB8932377a2c8DB/logo.png b/blockchains/ethereum/assets/0x0a2102d4fEC1BD35423C63a52EB8932377a2c8DB/logo.png new file mode 100644 index 00000000..22e9b2d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x0a2102d4fEC1BD35423C63a52EB8932377a2c8DB/logo.png differ diff --git a/blockchains/ethereum/assets/0x0a255F700B16c0acF5673565C757b94fb38B27F2/info.json b/blockchains/ethereum/assets/0x0a255F700B16c0acF5673565C757b94fb38B27F2/info.json new file mode 100644 index 00000000..5a78eabb --- /dev/null +++ b/blockchains/ethereum/assets/0x0a255F700B16c0acF5673565C757b94fb38B27F2/info.json @@ -0,0 +1,11 @@ +{ + "name": "NEOWORLD CASH", + "symbol": "NASH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://neoworld.io/", + "explorer": "https://etherscan.io/token/0x0a255F700B16c0acF5673565C757b94fb38B27F2", + "status": "abandoned", + "id": "0x0a255F700B16c0acF5673565C757b94fb38B27F2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0a255F700B16c0acF5673565C757b94fb38B27F2/logo.png b/blockchains/ethereum/assets/0x0a255F700B16c0acF5673565C757b94fb38B27F2/logo.png new file mode 100644 index 00000000..1ec7758d Binary files /dev/null and b/blockchains/ethereum/assets/0x0a255F700B16c0acF5673565C757b94fb38B27F2/logo.png differ diff --git a/blockchains/ethereum/assets/0x0a2D9370cF74Da3FD3dF5d764e394Ca8205C50B6/info.json b/blockchains/ethereum/assets/0x0a2D9370cF74Da3FD3dF5d764e394Ca8205C50B6/info.json new file mode 100644 index 00000000..571d8b9f --- /dev/null +++ b/blockchains/ethereum/assets/0x0a2D9370cF74Da3FD3dF5d764e394Ca8205C50B6/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAVE ENVIRONMENT TOKEN", + "symbol": "SET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.set4earth.io/", + "explorer": "https://etherscan.io/token/0x0a2D9370cF74Da3FD3dF5d764e394Ca8205C50B6", + "status": "abandoned", + "id": "0x0a2D9370cF74Da3FD3dF5d764e394Ca8205C50B6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0a2D9370cF74Da3FD3dF5d764e394Ca8205C50B6/logo.png b/blockchains/ethereum/assets/0x0a2D9370cF74Da3FD3dF5d764e394Ca8205C50B6/logo.png new file mode 100644 index 00000000..bdfbecff Binary files /dev/null and b/blockchains/ethereum/assets/0x0a2D9370cF74Da3FD3dF5d764e394Ca8205C50B6/logo.png differ diff --git a/blockchains/ethereum/assets/0x0a2eaa1101BFec3844d9F79Dd4E5B2F2D5B1fD4D/info.json b/blockchains/ethereum/assets/0x0a2eaa1101BFec3844d9F79Dd4E5B2F2D5B1fD4D/info.json new file mode 100644 index 00000000..d616058d --- /dev/null +++ b/blockchains/ethereum/assets/0x0a2eaa1101BFec3844d9F79Dd4E5B2F2D5B1fD4D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Charity Token", + "symbol": "CHT", + "type": "ERC20", + "decimals": 4, + "description": "Charity token is created for donation purposes only. Charity token is a simple ERC-20 token designed for contributions to your favorite charities and disaster relief services.", + "website": "https://charitytokenonline.com/", + "explorer": "https://etherscan.io/token/0x0a2eaa1101BFec3844d9F79Dd4E5B2F2D5B1fD4D", + "status": "abandoned", + "id": "0x0a2eaa1101BFec3844d9F79Dd4E5B2F2D5B1fD4D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0a2eaa1101BFec3844d9F79Dd4E5B2F2D5B1fD4D/logo.png b/blockchains/ethereum/assets/0x0a2eaa1101BFec3844d9F79Dd4E5B2F2D5B1fD4D/logo.png new file mode 100755 index 00000000..1ee87b6c Binary files /dev/null and b/blockchains/ethereum/assets/0x0a2eaa1101BFec3844d9F79Dd4E5B2F2D5B1fD4D/logo.png differ diff --git a/blockchains/ethereum/assets/0x0a4b2d4B48a63088e0897a3F147Ba37f81a27722/info.json b/blockchains/ethereum/assets/0x0a4b2d4B48a63088e0897a3F147Ba37f81a27722/info.json new file mode 100644 index 00000000..a742d446 --- /dev/null +++ b/blockchains/ethereum/assets/0x0a4b2d4B48a63088e0897a3F147Ba37f81a27722/info.json @@ -0,0 +1,11 @@ +{ + "name": "CuraDAI", + "symbol": "CURA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://curadai.curadao.io/", + "explorer": "https://etherscan.io/token/0x0a4b2d4B48a63088e0897a3F147Ba37f81a27722", + "status": "abandoned", + "id": "0x0a4b2d4B48a63088e0897a3F147Ba37f81a27722" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0a4b2d4B48a63088e0897a3F147Ba37f81a27722/logo.png b/blockchains/ethereum/assets/0x0a4b2d4B48a63088e0897a3F147Ba37f81a27722/logo.png new file mode 100644 index 00000000..33e534c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x0a4b2d4B48a63088e0897a3F147Ba37f81a27722/logo.png differ diff --git a/blockchains/ethereum/assets/0x0a50C93c762fDD6E56D86215C24AaAD43aB629aa/info.json b/blockchains/ethereum/assets/0x0a50C93c762fDD6E56D86215C24AaAD43aB629aa/info.json new file mode 100644 index 00000000..9a099b1b --- /dev/null +++ b/blockchains/ethereum/assets/0x0a50C93c762fDD6E56D86215C24AaAD43aB629aa/info.json @@ -0,0 +1,11 @@ +{ + "name": "LGO Token", + "website": "https://lgo.group", + "description": "LGO provides a wide range of financial services on digital assets to an international and professional client base.", + "explorer": "https://etherscan.io/token/0x0a50C93c762fDD6E56D86215C24AaAD43aB629aa", + "type": "ERC20", + "symbol": "LGO", + "decimals": 8, + "status": "active", + "id": "0x0a50C93c762fDD6E56D86215C24AaAD43aB629aa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0a50C93c762fDD6E56D86215C24AaAD43aB629aa/logo.png b/blockchains/ethereum/assets/0x0a50C93c762fDD6E56D86215C24AaAD43aB629aa/logo.png new file mode 100755 index 00000000..024a7dce Binary files /dev/null and b/blockchains/ethereum/assets/0x0a50C93c762fDD6E56D86215C24AaAD43aB629aa/logo.png differ diff --git a/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/info.json b/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/info.json new file mode 100644 index 00000000..06651237 --- /dev/null +++ b/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/info.json @@ -0,0 +1,44 @@ +{ + "name": "Zedxion", + "type": "ERC20", + "symbol": "USDZ", + "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.", + "explorer": "https://etherscan.io/token/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8", + "status": "active", + "id": "0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8", + "links": [ + { + "name": "x", + "url": "https://x.com/zedxion" + }, + { + "name": "github", + "url": "https://github.com/zedxioncryptocurrency" + }, + { + "name": "medium", + "url": "https://medium.com/@zedxion_exchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usdz/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zedxion-usdz/" + }, + { + "name": "discord", + "url": "https://discord.com/UDDb7FZF" + }, + { + "name": "whitepaper", + "url": "https://futures.zedxion.io/en_US/cms/WHITE%20PAPER" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/logo.png b/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/logo.png new file mode 100644 index 00000000..b1298b96 Binary files /dev/null and b/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/logo.png differ diff --git a/blockchains/ethereum/assets/0x0a9A9ce600D08BF9b76F49FA4e7b38A67EBEB1E6/info.json b/blockchains/ethereum/assets/0x0a9A9ce600D08BF9b76F49FA4e7b38A67EBEB1E6/info.json new file mode 100644 index 00000000..f00c277e --- /dev/null +++ b/blockchains/ethereum/assets/0x0a9A9ce600D08BF9b76F49FA4e7b38A67EBEB1E6/info.json @@ -0,0 +1,11 @@ +{ + "name": "GROWCHAIN", + "symbol": "GROW", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0a9A9ce600D08BF9b76F49FA4e7b38A67EBEB1E6", + "status": "abandoned", + "id": "0x0a9A9ce600D08BF9b76F49FA4e7b38A67EBEB1E6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0a9A9ce600D08BF9b76F49FA4e7b38A67EBEB1E6/logo.png b/blockchains/ethereum/assets/0x0a9A9ce600D08BF9b76F49FA4e7b38A67EBEB1E6/logo.png new file mode 100755 index 00000000..cbfbcfe2 Binary files /dev/null and b/blockchains/ethereum/assets/0x0a9A9ce600D08BF9b76F49FA4e7b38A67EBEB1E6/logo.png differ diff --git a/blockchains/ethereum/assets/0x0a9d68886a0D7Db83a30ec00d62512483e5Ad437/info.json b/blockchains/ethereum/assets/0x0a9d68886a0D7Db83a30ec00d62512483e5Ad437/info.json new file mode 100644 index 00000000..1922bc1b --- /dev/null +++ b/blockchains/ethereum/assets/0x0a9d68886a0D7Db83a30ec00d62512483e5Ad437/info.json @@ -0,0 +1,11 @@ +{ + "name": "Treecle", + "website": "https://treecle.io/", + "description": "Treecle is a Platform DApp that provides used car sales and various vehicle services using blockchain technology to provide transparent and reliable information.", + "explorer": "https://etherscan.io/token/0x0a9d68886a0D7Db83a30ec00d62512483e5Ad437", + "type": "ERC20", + "symbol": "TRCL", + "decimals": 0, + "status": "active", + "id": "0x0a9d68886a0D7Db83a30ec00d62512483e5Ad437" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0a9d68886a0D7Db83a30ec00d62512483e5Ad437/logo.png b/blockchains/ethereum/assets/0x0a9d68886a0D7Db83a30ec00d62512483e5Ad437/logo.png new file mode 100644 index 00000000..0c6a2f31 Binary files /dev/null and b/blockchains/ethereum/assets/0x0a9d68886a0D7Db83a30ec00d62512483e5Ad437/logo.png differ diff --git a/blockchains/ethereum/assets/0x0aDf59A7e7D21104Fb30A6bc7d283929339365Aa/info.json b/blockchains/ethereum/assets/0x0aDf59A7e7D21104Fb30A6bc7d283929339365Aa/info.json new file mode 100644 index 00000000..f7b23b25 --- /dev/null +++ b/blockchains/ethereum/assets/0x0aDf59A7e7D21104Fb30A6bc7d283929339365Aa/info.json @@ -0,0 +1,11 @@ +{ + "name": "DACMI", + "symbol": "DACMI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0aDf59A7e7D21104Fb30A6bc7d283929339365Aa", + "status": "abandoned", + "id": "0x0aDf59A7e7D21104Fb30A6bc7d283929339365Aa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0aDf59A7e7D21104Fb30A6bc7d283929339365Aa/logo.png b/blockchains/ethereum/assets/0x0aDf59A7e7D21104Fb30A6bc7d283929339365Aa/logo.png new file mode 100644 index 00000000..54445b7f Binary files /dev/null and b/blockchains/ethereum/assets/0x0aDf59A7e7D21104Fb30A6bc7d283929339365Aa/logo.png differ diff --git a/blockchains/ethereum/assets/0x0ab93C6be61A8f30b465B71383207FBDCef1a722/info.json b/blockchains/ethereum/assets/0x0ab93C6be61A8f30b465B71383207FBDCef1a722/info.json new file mode 100644 index 00000000..cde3a81e --- /dev/null +++ b/blockchains/ethereum/assets/0x0ab93C6be61A8f30b465B71383207FBDCef1a722/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nouveau", + "symbol": "SNV", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0ab93C6be61A8f30b465B71383207FBDCef1a722", + "status": "abandoned", + "id": "0x0ab93C6be61A8f30b465B71383207FBDCef1a722" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0ab93C6be61A8f30b465B71383207FBDCef1a722/logo.png b/blockchains/ethereum/assets/0x0ab93C6be61A8f30b465B71383207FBDCef1a722/logo.png new file mode 100644 index 00000000..dfe6fe2e Binary files /dev/null and b/blockchains/ethereum/assets/0x0ab93C6be61A8f30b465B71383207FBDCef1a722/logo.png differ diff --git a/blockchains/ethereum/assets/0x0aeF06DcCCC531e581f0440059E6FfCC206039EE/info.json b/blockchains/ethereum/assets/0x0aeF06DcCCC531e581f0440059E6FfCC206039EE/info.json new file mode 100644 index 00000000..894cc9a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x0aeF06DcCCC531e581f0440059E6FfCC206039EE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Intelligent Trading Technologies", + "symbol": "ITT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://intelligenttrading.org/", + "explorer": "https://etherscan.io/token/0x0aeF06DcCCC531e581f0440059E6FfCC206039EE", + "status": "abandoned", + "id": "0x0aeF06DcCCC531e581f0440059E6FfCC206039EE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0aeF06DcCCC531e581f0440059E6FfCC206039EE/logo.png b/blockchains/ethereum/assets/0x0aeF06DcCCC531e581f0440059E6FfCC206039EE/logo.png new file mode 100755 index 00000000..7b57d616 Binary files /dev/null and b/blockchains/ethereum/assets/0x0aeF06DcCCC531e581f0440059E6FfCC206039EE/logo.png differ diff --git a/blockchains/ethereum/assets/0x0af5ae6b1ADFd5bb2bf498046D8f3A188609064E/info.json b/blockchains/ethereum/assets/0x0af5ae6b1ADFd5bb2bf498046D8f3A188609064E/info.json new file mode 100644 index 00000000..3d46ec65 --- /dev/null +++ b/blockchains/ethereum/assets/0x0af5ae6b1ADFd5bb2bf498046D8f3A188609064E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Milano", + "symbol": "MILANO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0af5ae6b1ADFd5bb2bf498046D8f3A188609064E", + "status": "abandoned", + "id": "0x0af5ae6b1ADFd5bb2bf498046D8f3A188609064E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0af5ae6b1ADFd5bb2bf498046D8f3A188609064E/logo.png b/blockchains/ethereum/assets/0x0af5ae6b1ADFd5bb2bf498046D8f3A188609064E/logo.png new file mode 100644 index 00000000..eed09483 Binary files /dev/null and b/blockchains/ethereum/assets/0x0af5ae6b1ADFd5bb2bf498046D8f3A188609064E/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b08dD9847CB630014A9f91C56e2984D6614EaF1/info.json b/blockchains/ethereum/assets/0x0b08dD9847CB630014A9f91C56e2984D6614EaF1/info.json new file mode 100644 index 00000000..106256a6 --- /dev/null +++ b/blockchains/ethereum/assets/0x0b08dD9847CB630014A9f91C56e2984D6614EaF1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tokenestate Equity", + "symbol": "TEM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0b08dD9847CB630014A9f91C56e2984D6614EaF1", + "status": "abandoned", + "id": "0x0b08dD9847CB630014A9f91C56e2984D6614EaF1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0b08dD9847CB630014A9f91C56e2984D6614EaF1/logo.png b/blockchains/ethereum/assets/0x0b08dD9847CB630014A9f91C56e2984D6614EaF1/logo.png new file mode 100644 index 00000000..639aca43 Binary files /dev/null and b/blockchains/ethereum/assets/0x0b08dD9847CB630014A9f91C56e2984D6614EaF1/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/info.json b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/info.json new file mode 100644 index 00000000..bc01a11d --- /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 00000000..ee3a40be Binary files /dev/null and b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b11D5d078955C6E5913beEaba85660202A4FC55/info.json b/blockchains/ethereum/assets/0x0b11D5d078955C6E5913beEaba85660202A4FC55/info.json new file mode 100644 index 00000000..582a71e7 --- /dev/null +++ b/blockchains/ethereum/assets/0x0b11D5d078955C6E5913beEaba85660202A4FC55/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ortier Capital", + "symbol": "ORTC", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0b11D5d078955C6E5913beEaba85660202A4FC55", + "status": "abandoned", + "id": "0x0b11D5d078955C6E5913beEaba85660202A4FC55" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0b11D5d078955C6E5913beEaba85660202A4FC55/logo.png b/blockchains/ethereum/assets/0x0b11D5d078955C6E5913beEaba85660202A4FC55/logo.png new file mode 100644 index 00000000..ce840bea Binary files /dev/null and b/blockchains/ethereum/assets/0x0b11D5d078955C6E5913beEaba85660202A4FC55/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json b/blockchains/ethereum/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json new file mode 100644 index 00000000..4f61ba75 --- /dev/null +++ b/blockchains/ethereum/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json @@ -0,0 +1,33 @@ +{ + "name": "Impossible Finance IDIA", + "website": "https://invest.impossible.finance/launchpad", + "description": "Impossible Finance is a builder-focused multichain ecosystem featuring decentralized incubator, launchpad, and swap. The IDIA token is the core governance and access token for allocation into our launchpad sales. Users can stake the IDIA token into a variety of sectors and categories to secure allocation into the top project teams launching on Impossible.", + "explorer": "https://etherscan.io/token/0x0b15ddf19d47e6a86a56148fb4afffc6929bcb89", + "type": "ERC20", + "symbol": "IDIA", + "decimals": 18, + "status": "active", + "id": "0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89", + "links": [ + { + "name": "github", + "url": "https://github.com/impossiblefinance" + }, + { + "name": "x", + "url": "https://x.com/impossiblefi" + }, + { + "name": "blog", + "url": "https://medium.com/impossiblefinance" + }, + { + "name": "telegram", + "url": "https://t.me/ImpossibleFinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/impossible-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/logo.png b/blockchains/ethereum/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/logo.png new file mode 100644 index 00000000..472303c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b1724cc9FDA0186911EF6a75949e9c0d3F0f2F3/info.json b/blockchains/ethereum/assets/0x0b1724cc9FDA0186911EF6a75949e9c0d3F0f2F3/info.json new file mode 100644 index 00000000..35174429 --- /dev/null +++ b/blockchains/ethereum/assets/0x0b1724cc9FDA0186911EF6a75949e9c0d3F0f2F3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Etheriya", + "symbol": "RIYA", + "type": "ERC20", + "decimals": 8, + "description": "Etheriya is a Decentralized Blockchain-based macro and micro freelance marketplace where anyone can order or offer services ranging from Blockchain-based, graphic design, programming, consultancy, writing and translation, Video creation, marketing, business, advertising to mention just a few.", + "website": "http://etheriya.com/", + "explorer": "https://etherscan.io/token/0x0b1724cc9FDA0186911EF6a75949e9c0d3F0f2F3", + "status": "abandoned", + "id": "0x0b1724cc9FDA0186911EF6a75949e9c0d3F0f2F3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0b1724cc9FDA0186911EF6a75949e9c0d3F0f2F3/logo.png b/blockchains/ethereum/assets/0x0b1724cc9FDA0186911EF6a75949e9c0d3F0f2F3/logo.png new file mode 100644 index 00000000..2073065e Binary files /dev/null and b/blockchains/ethereum/assets/0x0b1724cc9FDA0186911EF6a75949e9c0d3F0f2F3/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/info.json b/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/info.json new file mode 100644 index 00000000..895540e1 --- /dev/null +++ b/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/info.json @@ -0,0 +1,28 @@ +{ + "name": "API3", + "website": "https://api3.org/", + "description": "API3 aims to build blockchain-native, decentralized APIs with DAO-governance and quantifiable security.", + "explorer": "https://etherscan.io/token/0x0b38210ea11411557c13457D4dA7dC6ea731B88a", + "type": "ERC20", + "symbol": "API3", + "decimals": 18, + "status": "active", + "id": "0x0b38210ea11411557c13457D4dA7dC6ea731B88a", + "links": [ + { + "name": "x", + "url": "https://x.com/API3DAO" + }, + { + "name": "telegram", + "url": "https://t.me/API3DAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/api3/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/logo.png b/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/logo.png new file mode 100644 index 00000000..a8b86a17 Binary files /dev/null and b/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b59fDb1A233A7477ea14061004b9DD776e73CB3/info.json b/blockchains/ethereum/assets/0x0b59fDb1A233A7477ea14061004b9DD776e73CB3/info.json new file mode 100644 index 00000000..147d17b7 --- /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 00000000..a6b39542 Binary files /dev/null and b/blockchains/ethereum/assets/0x0b59fDb1A233A7477ea14061004b9DD776e73CB3/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b6Bc42cb9b89259A3aA986363Fa37a9cbF03b8E/info.json b/blockchains/ethereum/assets/0x0b6Bc42cb9b89259A3aA986363Fa37a9cbF03b8E/info.json new file mode 100644 index 00000000..0e326132 --- /dev/null +++ b/blockchains/ethereum/assets/0x0b6Bc42cb9b89259A3aA986363Fa37a9cbF03b8E/info.json @@ -0,0 +1,11 @@ +{ + "name": "ContractLand Token", + "symbol": "CLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0b6Bc42cb9b89259A3aA986363Fa37a9cbF03b8E", + "status": "abandoned", + "id": "0x0b6Bc42cb9b89259A3aA986363Fa37a9cbF03b8E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0b6Bc42cb9b89259A3aA986363Fa37a9cbF03b8E/logo.png b/blockchains/ethereum/assets/0x0b6Bc42cb9b89259A3aA986363Fa37a9cbF03b8E/logo.png new file mode 100644 index 00000000..fccf17ca Binary files /dev/null and b/blockchains/ethereum/assets/0x0b6Bc42cb9b89259A3aA986363Fa37a9cbF03b8E/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b76544F6C413a555F309Bf76260d1E02377c02A/info.json b/blockchains/ethereum/assets/0x0b76544F6C413a555F309Bf76260d1E02377c02A/info.json new file mode 100644 index 00000000..5fe7e848 --- /dev/null +++ b/blockchains/ethereum/assets/0x0b76544F6C413a555F309Bf76260d1E02377c02A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Internet Node Token", + "symbol": "INT", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0b76544F6C413a555F309Bf76260d1E02377c02A", + "status": "abandoned", + "id": "0x0b76544F6C413a555F309Bf76260d1E02377c02A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0b76544F6C413a555F309Bf76260d1E02377c02A/logo.png b/blockchains/ethereum/assets/0x0b76544F6C413a555F309Bf76260d1E02377c02A/logo.png new file mode 100755 index 00000000..d77adf20 Binary files /dev/null and b/blockchains/ethereum/assets/0x0b76544F6C413a555F309Bf76260d1E02377c02A/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b782fd8fB6CA38e69a049E52f4899A64FF1773E/info.json b/blockchains/ethereum/assets/0x0b782fd8fB6CA38e69a049E52f4899A64FF1773E/info.json new file mode 100644 index 00000000..7f0433ea --- /dev/null +++ b/blockchains/ethereum/assets/0x0b782fd8fB6CA38e69a049E52f4899A64FF1773E/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C559015", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0b782fd8fB6CA38e69a049E52f4899A64FF1773E", + "status": "abandoned", + "id": "0x0b782fd8fB6CA38e69a049E52f4899A64FF1773E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0b782fd8fB6CA38e69a049E52f4899A64FF1773E/logo.png b/blockchains/ethereum/assets/0x0b782fd8fB6CA38e69a049E52f4899A64FF1773E/logo.png new file mode 100644 index 00000000..74800702 Binary files /dev/null and b/blockchains/ethereum/assets/0x0b782fd8fB6CA38e69a049E52f4899A64FF1773E/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b7B59cF63fc99130a77Aa17CF9A4811a90a23a0/info.json b/blockchains/ethereum/assets/0x0b7B59cF63fc99130a77Aa17CF9A4811a90a23a0/info.json new file mode 100644 index 00000000..7d56d52f --- /dev/null +++ b/blockchains/ethereum/assets/0x0b7B59cF63fc99130a77Aa17CF9A4811a90a23a0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Grenade Token", + "symbol": "GREN", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0b7B59cF63fc99130a77Aa17CF9A4811a90a23a0", + "status": "abandoned", + "id": "0x0b7B59cF63fc99130a77Aa17CF9A4811a90a23a0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0b7B59cF63fc99130a77Aa17CF9A4811a90a23a0/logo.png b/blockchains/ethereum/assets/0x0b7B59cF63fc99130a77Aa17CF9A4811a90a23a0/logo.png new file mode 100644 index 00000000..acbd06ed Binary files /dev/null and b/blockchains/ethereum/assets/0x0b7B59cF63fc99130a77Aa17CF9A4811a90a23a0/logo.png differ diff --git a/blockchains/ethereum/assets/0x0bAfb5731805115287e4C25aBdC7f6167Ab1Dbb1/info.json b/blockchains/ethereum/assets/0x0bAfb5731805115287e4C25aBdC7f6167Ab1Dbb1/info.json new file mode 100644 index 00000000..cfb537c9 --- /dev/null +++ b/blockchains/ethereum/assets/0x0bAfb5731805115287e4C25aBdC7f6167Ab1Dbb1/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlockchainOfThings", + "symbol": "BOTS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0bAfb5731805115287e4C25aBdC7f6167Ab1Dbb1", + "status": "abandoned", + "id": "0x0bAfb5731805115287e4C25aBdC7f6167Ab1Dbb1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0bAfb5731805115287e4C25aBdC7f6167Ab1Dbb1/logo.png b/blockchains/ethereum/assets/0x0bAfb5731805115287e4C25aBdC7f6167Ab1Dbb1/logo.png new file mode 100644 index 00000000..47597566 Binary files /dev/null and b/blockchains/ethereum/assets/0x0bAfb5731805115287e4C25aBdC7f6167Ab1Dbb1/logo.png differ diff --git a/blockchains/ethereum/assets/0x0bC48b77df84d4E3d26D9c05442CFcda39BBF457/info.json b/blockchains/ethereum/assets/0x0bC48b77df84d4E3d26D9c05442CFcda39BBF457/info.json new file mode 100644 index 00000000..6191062d --- /dev/null +++ b/blockchains/ethereum/assets/0x0bC48b77df84d4E3d26D9c05442CFcda39BBF457/info.json @@ -0,0 +1,11 @@ +{ + "name": "SperaxToken", + "symbol": "SPA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0bC48b77df84d4E3d26D9c05442CFcda39BBF457", + "status": "abandoned", + "id": "0x0bC48b77df84d4E3d26D9c05442CFcda39BBF457" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0bC48b77df84d4E3d26D9c05442CFcda39BBF457/logo.png b/blockchains/ethereum/assets/0x0bC48b77df84d4E3d26D9c05442CFcda39BBF457/logo.png new file mode 100644 index 00000000..2e3b9a9f Binary files /dev/null and b/blockchains/ethereum/assets/0x0bC48b77df84d4E3d26D9c05442CFcda39BBF457/logo.png differ diff --git a/blockchains/ethereum/assets/0x0bC61DdED5F6710c637cf8288Eb6058766ce1921/info.json b/blockchains/ethereum/assets/0x0bC61DdED5F6710c637cf8288Eb6058766ce1921/info.json new file mode 100644 index 00000000..76db8e74 --- /dev/null +++ b/blockchains/ethereum/assets/0x0bC61DdED5F6710c637cf8288Eb6058766ce1921/info.json @@ -0,0 +1,11 @@ +{ + "name": "CEN", + "symbol": "CEN", + "type": "ERC20", + "decimals": 18, + "description": "Coinsuper Ecosystem Network (CEN) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.coinsuper.com/cen", + "explorer": "https://etherscan.io/token/0x0bC61DdED5F6710c637cf8288Eb6058766ce1921", + "status": "active", + "id": "0x0bC61DdED5F6710c637cf8288Eb6058766ce1921" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0bC61DdED5F6710c637cf8288Eb6058766ce1921/logo.png b/blockchains/ethereum/assets/0x0bC61DdED5F6710c637cf8288Eb6058766ce1921/logo.png new file mode 100644 index 00000000..77292078 Binary files /dev/null and b/blockchains/ethereum/assets/0x0bC61DdED5F6710c637cf8288Eb6058766ce1921/logo.png differ diff --git a/blockchains/ethereum/assets/0x0bCd6FaeF90877ac73bB245dF6CE3C0EC9E95BfE/info.json b/blockchains/ethereum/assets/0x0bCd6FaeF90877ac73bB245dF6CE3C0EC9E95BfE/info.json new file mode 100644 index 00000000..86c56243 --- /dev/null +++ b/blockchains/ethereum/assets/0x0bCd6FaeF90877ac73bB245dF6CE3C0EC9E95BfE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tars Network", + "symbol": "TARS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0bCd6FaeF90877ac73bB245dF6CE3C0EC9E95BfE", + "status": "abandoned", + "id": "0x0bCd6FaeF90877ac73bB245dF6CE3C0EC9E95BfE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0bCd6FaeF90877ac73bB245dF6CE3C0EC9E95BfE/logo.png b/blockchains/ethereum/assets/0x0bCd6FaeF90877ac73bB245dF6CE3C0EC9E95BfE/logo.png new file mode 100644 index 00000000..57d4649b Binary files /dev/null and b/blockchains/ethereum/assets/0x0bCd6FaeF90877ac73bB245dF6CE3C0EC9E95BfE/logo.png differ diff --git a/blockchains/ethereum/assets/0x0bb217E40F8a5Cb79Adf04E1aAb60E5abd0dfC1e/info.json b/blockchains/ethereum/assets/0x0bb217E40F8a5Cb79Adf04E1aAb60E5abd0dfC1e/info.json new file mode 100644 index 00000000..1fe63ac2 --- /dev/null +++ b/blockchains/ethereum/assets/0x0bb217E40F8a5Cb79Adf04E1aAb60E5abd0dfC1e/info.json @@ -0,0 +1,11 @@ +{ + "name": "SwftCoin", + "symbol": "SWFTC", + "type": "ERC20", + "decimals": 8, + "description": "SWFT Blockchain is a cross-chain wallet, exchange, and payments platform powered by Swftcoin (SWFTC) that allows users to swap, trade, pay with and share hundreds of cryptocurrencies. SWFTC provides SWFT Blockchain with the sources of liquidity needed to offer faster cross-chain swaps at the best rates, and with low fees.", + "website": "https://www.swft.pro/", + "explorer": "https://etherscan.io/token/0x0bb217E40F8a5Cb79Adf04E1aAb60E5abd0dfC1e", + "status": "active", + "id": "0x0bb217E40F8a5Cb79Adf04E1aAb60E5abd0dfC1e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0bb217E40F8a5Cb79Adf04E1aAb60E5abd0dfC1e/logo.png b/blockchains/ethereum/assets/0x0bb217E40F8a5Cb79Adf04E1aAb60E5abd0dfC1e/logo.png new file mode 100644 index 00000000..fd033d08 Binary files /dev/null and b/blockchains/ethereum/assets/0x0bb217E40F8a5Cb79Adf04E1aAb60E5abd0dfC1e/logo.png differ diff --git a/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/info.json b/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/info.json new file mode 100644 index 00000000..d29703ca --- /dev/null +++ b/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/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://etherscan.io/token/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e", + "research": "https://research.binance.com/en/projects/yearnfinance", + "type": "ERC20", + "symbol": "YFI", + "decimals": 18, + "status": "active", + "id": "0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e", + "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/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/logo.png b/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/logo.png new file mode 100644 index 00000000..9c225f4b Binary files /dev/null and b/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/logo.png differ diff --git a/blockchains/ethereum/assets/0x0bfDFc31DC0A0992957d94BE07A60C130c6bd4Ec/info.json b/blockchains/ethereum/assets/0x0bfDFc31DC0A0992957d94BE07A60C130c6bd4Ec/info.json new file mode 100644 index 00000000..ef8577bf --- /dev/null +++ b/blockchains/ethereum/assets/0x0bfDFc31DC0A0992957d94BE07A60C130c6bd4Ec/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tyche Share", + "symbol": "TYS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0bfDFc31DC0A0992957d94BE07A60C130c6bd4Ec", + "status": "abandoned", + "id": "0x0bfDFc31DC0A0992957d94BE07A60C130c6bd4Ec" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0bfDFc31DC0A0992957d94BE07A60C130c6bd4Ec/logo.png b/blockchains/ethereum/assets/0x0bfDFc31DC0A0992957d94BE07A60C130c6bd4Ec/logo.png new file mode 100644 index 00000000..619303ea Binary files /dev/null and b/blockchains/ethereum/assets/0x0bfDFc31DC0A0992957d94BE07A60C130c6bd4Ec/logo.png differ diff --git a/blockchains/ethereum/assets/0x0bfa2DfF84fba6d6e4F7193B0C58A740e2f1523A/info.json b/blockchains/ethereum/assets/0x0bfa2DfF84fba6d6e4F7193B0C58A740e2f1523A/info.json new file mode 100644 index 00000000..4586b7e3 --- /dev/null +++ b/blockchains/ethereum/assets/0x0bfa2DfF84fba6d6e4F7193B0C58A740e2f1523A/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "IMO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0bfa2DfF84fba6d6e4F7193B0C58A740e2f1523A", + "status": "abandoned", + "id": "0x0bfa2DfF84fba6d6e4F7193B0C58A740e2f1523A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0bfa2DfF84fba6d6e4F7193B0C58A740e2f1523A/logo.png b/blockchains/ethereum/assets/0x0bfa2DfF84fba6d6e4F7193B0C58A740e2f1523A/logo.png new file mode 100755 index 00000000..e466bef1 Binary files /dev/null and b/blockchains/ethereum/assets/0x0bfa2DfF84fba6d6e4F7193B0C58A740e2f1523A/logo.png differ diff --git a/blockchains/ethereum/assets/0x0c00e65D3dC5d40Ad51FA5E73e3519d0e812bF24/info.json b/blockchains/ethereum/assets/0x0c00e65D3dC5d40Ad51FA5E73e3519d0e812bF24/info.json new file mode 100644 index 00000000..cb7cea7a --- /dev/null +++ b/blockchains/ethereum/assets/0x0c00e65D3dC5d40Ad51FA5E73e3519d0e812bF24/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg21000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0c00e65D3dC5d40Ad51FA5E73e3519d0e812bF24", + "status": "abandoned", + "id": "0x0c00e65D3dC5d40Ad51FA5E73e3519d0e812bF24" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0c00e65D3dC5d40Ad51FA5E73e3519d0e812bF24/logo.png b/blockchains/ethereum/assets/0x0c00e65D3dC5d40Ad51FA5E73e3519d0e812bF24/logo.png new file mode 100644 index 00000000..62c6d27d Binary files /dev/null and b/blockchains/ethereum/assets/0x0c00e65D3dC5d40Ad51FA5E73e3519d0e812bF24/logo.png differ diff --git a/blockchains/ethereum/assets/0x0c07799C548Ba0C54467E30173764d2221b5E1db/info.json b/blockchains/ethereum/assets/0x0c07799C548Ba0C54467E30173764d2221b5E1db/info.json new file mode 100644 index 00000000..d71e0fe3 --- /dev/null +++ b/blockchains/ethereum/assets/0x0c07799C548Ba0C54467E30173764d2221b5E1db/info.json @@ -0,0 +1,11 @@ +{ + "name": "HQT", + "symbol": "HQT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0c07799C548Ba0C54467E30173764d2221b5E1db", + "status": "abandoned", + "id": "0x0c07799C548Ba0C54467E30173764d2221b5E1db" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0c07799C548Ba0C54467E30173764d2221b5E1db/logo.png b/blockchains/ethereum/assets/0x0c07799C548Ba0C54467E30173764d2221b5E1db/logo.png new file mode 100644 index 00000000..6f386f36 Binary files /dev/null and b/blockchains/ethereum/assets/0x0c07799C548Ba0C54467E30173764d2221b5E1db/logo.png differ diff --git a/blockchains/ethereum/assets/0x0c2e3bbc4646c872a3F5A745D2902aFFda82C58a/info.json b/blockchains/ethereum/assets/0x0c2e3bbc4646c872a3F5A745D2902aFFda82C58a/info.json new file mode 100644 index 00000000..b3f901a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x0c2e3bbc4646c872a3F5A745D2902aFFda82C58a/info.json @@ -0,0 +1,11 @@ +{ + "name": "FlashX Coin", + "symbol": "FSXC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0c2e3bbc4646c872a3F5A745D2902aFFda82C58a", + "status": "abandoned", + "id": "0x0c2e3bbc4646c872a3F5A745D2902aFFda82C58a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0c2e3bbc4646c872a3F5A745D2902aFFda82C58a/logo.png b/blockchains/ethereum/assets/0x0c2e3bbc4646c872a3F5A745D2902aFFda82C58a/logo.png new file mode 100644 index 00000000..e1dec32b Binary files /dev/null and b/blockchains/ethereum/assets/0x0c2e3bbc4646c872a3F5A745D2902aFFda82C58a/logo.png differ diff --git a/blockchains/ethereum/assets/0x0c3ae89AF1fd1d855379C99a270De5675d009c4e/info.json b/blockchains/ethereum/assets/0x0c3ae89AF1fd1d855379C99a270De5675d009c4e/info.json new file mode 100644 index 00000000..34dc1da2 --- /dev/null +++ b/blockchains/ethereum/assets/0x0c3ae89AF1fd1d855379C99a270De5675d009c4e/info.json @@ -0,0 +1,11 @@ +{ + "name": "True Coin", + "symbol": "TRC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0c3ae89AF1fd1d855379C99a270De5675d009c4e", + "status": "abandoned", + "id": "0x0c3ae89AF1fd1d855379C99a270De5675d009c4e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0c3ae89AF1fd1d855379C99a270De5675d009c4e/logo.png b/blockchains/ethereum/assets/0x0c3ae89AF1fd1d855379C99a270De5675d009c4e/logo.png new file mode 100644 index 00000000..213e8fdc Binary files /dev/null and b/blockchains/ethereum/assets/0x0c3ae89AF1fd1d855379C99a270De5675d009c4e/logo.png differ diff --git a/blockchains/ethereum/assets/0x0c666485b02F7A87d21AdD7AEb9F5e64975AA490/info.json b/blockchains/ethereum/assets/0x0c666485b02F7A87d21AdD7AEb9F5e64975AA490/info.json new file mode 100644 index 00000000..a4bcc253 --- /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 00000000..3df16e18 Binary files /dev/null and b/blockchains/ethereum/assets/0x0c666485b02F7A87d21AdD7AEb9F5e64975AA490/logo.png differ diff --git a/blockchains/ethereum/assets/0x0c749474ecd356CB399D87Eb60Fd078368D24d4c/info.json b/blockchains/ethereum/assets/0x0c749474ecd356CB399D87Eb60Fd078368D24d4c/info.json new file mode 100644 index 00000000..f7f0783a --- /dev/null +++ b/blockchains/ethereum/assets/0x0c749474ecd356CB399D87Eb60Fd078368D24d4c/info.json @@ -0,0 +1,11 @@ +{ + "name": "SHIBA INU GOLD", + "website": "https://shibgtoken.com", + "description": "SHIBG is Community Project", + "explorer": "https://etherscan.io/token/0x0c749474ecd356CB399D87Eb60Fd078368D24d4c", + "symbol": "SHIBG", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0x0c749474ecd356CB399D87Eb60Fd078368D24d4c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0c749474ecd356CB399D87Eb60Fd078368D24d4c/logo.png b/blockchains/ethereum/assets/0x0c749474ecd356CB399D87Eb60Fd078368D24d4c/logo.png new file mode 100644 index 00000000..d3f2b468 Binary files /dev/null and b/blockchains/ethereum/assets/0x0c749474ecd356CB399D87Eb60Fd078368D24d4c/logo.png differ diff --git a/blockchains/ethereum/assets/0x0c7D5ae016f806603CB1782bEa29AC69471CAb9c/info.json b/blockchains/ethereum/assets/0x0c7D5ae016f806603CB1782bEa29AC69471CAb9c/info.json new file mode 100644 index 00000000..7a0e8d8a --- /dev/null +++ b/blockchains/ethereum/assets/0x0c7D5ae016f806603CB1782bEa29AC69471CAb9c/info.json @@ -0,0 +1,22 @@ +{ + "name": "Bifrost", + "website": "https://thebifrost.io/", + "short_description": "Middleware platform that enables developers to create Decentralized Applications (DApps) on top of multiple protocols", + "description": "Developers can combine the best protocols to develop substantially more scalable and flexible DApps.", + "explorer": "https://etherscan.io/token/0x0c7D5ae016f806603CB1782bEa29AC69471CAb9c", + "type": "ERC20", + "symbol": "BFC", + "decimals": 18, + "status": "active", + "id": "0x0c7D5ae016f806603CB1782bEa29AC69471CAb9c", + "links": [ + { + "name": "github", + "url": "https://github.com/bifrost-platform" + }, + { + "name": "whitepaper", + "url": "https://thebifrost.io/static/Bifrost_WP_Eng.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0c7D5ae016f806603CB1782bEa29AC69471CAb9c/logo.png b/blockchains/ethereum/assets/0x0c7D5ae016f806603CB1782bEa29AC69471CAb9c/logo.png new file mode 100644 index 00000000..30709487 Binary files /dev/null and b/blockchains/ethereum/assets/0x0c7D5ae016f806603CB1782bEa29AC69471CAb9c/logo.png differ diff --git a/blockchains/ethereum/assets/0x0c8276E4FeC072cf7854Be69c70F7773D1610857/info.json b/blockchains/ethereum/assets/0x0c8276E4FeC072cf7854Be69c70F7773D1610857/info.json new file mode 100644 index 00000000..9700e018 --- /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 00000000..763f6c33 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 new file mode 100644 index 00000000..fbe846f7 --- /dev/null +++ b/blockchains/ethereum/assets/0x0c90C57aaf95A3A87eadda6ec3974c99D786511F/info.json @@ -0,0 +1,33 @@ +{ + "name": "HanChain", + "type": "ERC20", + "symbol": "HAN", + "decimals": 18, + "website": "https://paykhan.io/", + "description": "Dual cryptocurrency platform with DeFi structure focusing on real-life use.", + "explorer": "https://etherscan.io/token/0x0c90c57aaf95a3a87eadda6ec3974c99d786511f", + "status": "active", + "id": "0x0c90C57aaf95A3A87eadda6ec3974c99D786511F", + "links": [ + { + "name": "x", + "url": "https://x.com/HanIdentity" + }, + { + "name": "telegram", + "url": "https://t.me/hanchain_official" + }, + { + "name": "github", + "url": "https://github.com/hanchain-paykhan/hanchain/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hanchain/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hanchain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0c90C57aaf95A3A87eadda6ec3974c99D786511F/logo.png b/blockchains/ethereum/assets/0x0c90C57aaf95A3A87eadda6ec3974c99D786511F/logo.png new file mode 100644 index 00000000..49d0f41e Binary files /dev/null and b/blockchains/ethereum/assets/0x0c90C57aaf95A3A87eadda6ec3974c99D786511F/logo.png differ diff --git a/blockchains/ethereum/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json b/blockchains/ethereum/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json new file mode 100644 index 00000000..3ad6a5b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json @@ -0,0 +1,49 @@ +{ + "name": "EverRise", + "type": "ERC20", + "symbol": "RISE (old)", + "decimals": 18, + "website": "https://www.everrise.com/", + "description": "The Original Buyback Token Powering The EverRise Ecosystem. EverRise token (RISE) is a multi-chain collateralized cryptocurrency that protects both the ecosystem and investors with its innovative buyback and staking protocol.", + "explorer": "https://etherscan.io/token/0x0cd022dde27169b20895e0e2b2b8a33b25e63579", + "status": "abandoned", + "id": "0x0cD022ddE27169b20895e0e2B2B8A33B25e63579", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/everrise/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/everrise" + }, + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0cE36d199bd6851788e03392568849394cBdE722/info.json b/blockchains/ethereum/assets/0x0cE36d199bd6851788e03392568849394cBdE722/info.json new file mode 100644 index 00000000..f0632caf --- /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 00000000..e2e36379 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 new file mode 100644 index 00000000..a5dc9ba8 --- /dev/null +++ b/blockchains/ethereum/assets/0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e/info.json @@ -0,0 +1,29 @@ +{ + "name": "PoolTogether", + "website": "https://pooltogether.com", + "description": "PoolTogether is the open source, decentralized primitive for no-loss prize games", + "explorer": "https://etherscan.io/token/0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e", + "type": "ERC20", + "symbol": "POOL", + "decimals": 18, + "status": "active", + "id": "0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e", + "links": [ + { + "name": "x", + "url": "https://x.com/PoolTogether_" + }, + { + "name": "discord", + "url": "https://discord.com/invite/hxPhPDW" + }, + { + "name": "medium", + "url": "https://medium.com/pooltogether" + }, + { + "name": "github", + "url": "https://github.com/pooltogether" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e/logo.png b/blockchains/ethereum/assets/0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e/logo.png new file mode 100644 index 00000000..5eefbcac Binary files /dev/null and b/blockchains/ethereum/assets/0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e/logo.png differ diff --git a/blockchains/ethereum/assets/0x0cF713b11C9b986EC40D65bD4F7fbd50F6ff2d64/info.json b/blockchains/ethereum/assets/0x0cF713b11C9b986EC40D65bD4F7fbd50F6ff2d64/info.json new file mode 100644 index 00000000..32a1f996 --- /dev/null +++ b/blockchains/ethereum/assets/0x0cF713b11C9b986EC40D65bD4F7fbd50F6ff2d64/info.json @@ -0,0 +1,11 @@ +{ + "name": "IST34 Token", + "symbol": "IST34", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0cF713b11C9b986EC40D65bD4F7fbd50F6ff2d64", + "status": "abandoned", + "id": "0x0cF713b11C9b986EC40D65bD4F7fbd50F6ff2d64" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0cF713b11C9b986EC40D65bD4F7fbd50F6ff2d64/logo.png b/blockchains/ethereum/assets/0x0cF713b11C9b986EC40D65bD4F7fbd50F6ff2d64/logo.png new file mode 100755 index 00000000..acdb70f8 Binary files /dev/null and b/blockchains/ethereum/assets/0x0cF713b11C9b986EC40D65bD4F7fbd50F6ff2d64/logo.png differ diff --git a/blockchains/ethereum/assets/0x0cF7356E2d13ae2B57e77286284984A5FC8F88b3/info.json b/blockchains/ethereum/assets/0x0cF7356E2d13ae2B57e77286284984A5FC8F88b3/info.json new file mode 100644 index 00000000..a31bfb8a --- /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 00000000..a44e97e0 Binary files /dev/null and b/blockchains/ethereum/assets/0x0cF7356E2d13ae2B57e77286284984A5FC8F88b3/logo.png differ diff --git a/blockchains/ethereum/assets/0x0cFD0Cc77f3b6Af24Dcf505CF02A6be219457e1c/info.json b/blockchains/ethereum/assets/0x0cFD0Cc77f3b6Af24Dcf505CF02A6be219457e1c/info.json new file mode 100644 index 00000000..287e6b48 --- /dev/null +++ b/blockchains/ethereum/assets/0x0cFD0Cc77f3b6Af24Dcf505CF02A6be219457e1c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Airconnc", + "symbol": "ACNC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0cFD0Cc77f3b6Af24Dcf505CF02A6be219457e1c", + "status": "abandoned", + "id": "0x0cFD0Cc77f3b6Af24Dcf505CF02A6be219457e1c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0cFD0Cc77f3b6Af24Dcf505CF02A6be219457e1c/logo.png b/blockchains/ethereum/assets/0x0cFD0Cc77f3b6Af24Dcf505CF02A6be219457e1c/logo.png new file mode 100644 index 00000000..343b30a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x0cFD0Cc77f3b6Af24Dcf505CF02A6be219457e1c/logo.png differ diff --git a/blockchains/ethereum/assets/0x0ca8E31a9058BD0D3Db73758FF36e74159A542CB/info.json b/blockchains/ethereum/assets/0x0ca8E31a9058BD0D3Db73758FF36e74159A542CB/info.json new file mode 100644 index 00000000..165e134d --- /dev/null +++ b/blockchains/ethereum/assets/0x0ca8E31a9058BD0D3Db73758FF36e74159A542CB/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPIKECORE", + "symbol": "SPK", + "type": "ERC20", + "decimals": 0, + "description": "SPIKE implores certain deflationary burn measures to ensure that the negative trend & negative excessive downtrend volatility in value of cryptocurrencies is curtailed to its minimum.", + "website": "https://spikecore.com/", + "explorer": "https://etherscan.io/token/0x0ca8E31a9058BD0D3Db73758FF36e74159A542CB", + "status": "abandoned", + "id": "0x0ca8E31a9058BD0D3Db73758FF36e74159A542CB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0ca8E31a9058BD0D3Db73758FF36e74159A542CB/logo.png b/blockchains/ethereum/assets/0x0ca8E31a9058BD0D3Db73758FF36e74159A542CB/logo.png new file mode 100644 index 00000000..71606c4d Binary files /dev/null and b/blockchains/ethereum/assets/0x0ca8E31a9058BD0D3Db73758FF36e74159A542CB/logo.png differ diff --git a/blockchains/ethereum/assets/0x0cae9e4d663793c2a2A0b211c1Cf4bBca2B9cAa7/info.json b/blockchains/ethereum/assets/0x0cae9e4d663793c2a2A0b211c1Cf4bBca2B9cAa7/info.json new file mode 100644 index 00000000..75849db4 --- /dev/null +++ b/blockchains/ethereum/assets/0x0cae9e4d663793c2a2A0b211c1Cf4bBca2B9cAa7/info.json @@ -0,0 +1,32 @@ +{ + "name": "mAMZN Token", + "website": "https://mirror.finance", + "description": "Wrapped Mirror AMZN Token.", + "explorer": "https://etherscan.io/token/0x0cae9e4d663793c2a2A0b211c1Cf4bBca2B9cAa7", + "type": "ERC20", + "symbol": "mAMZN", + "decimals": 18, + "status": "active", + "id": "0x0cae9e4d663793c2a2A0b211c1Cf4bBca2B9cAa7", + "tags": [ + "wrapped" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MirrorProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/mirror_protocol" + }, + { + "name": "discord", + "url": "https://discord.com/MirrorProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/@mirror-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0cae9e4d663793c2a2A0b211c1Cf4bBca2B9cAa7/logo.png b/blockchains/ethereum/assets/0x0cae9e4d663793c2a2A0b211c1Cf4bBca2B9cAa7/logo.png new file mode 100644 index 00000000..403099fa Binary files /dev/null and b/blockchains/ethereum/assets/0x0cae9e4d663793c2a2A0b211c1Cf4bBca2B9cAa7/logo.png differ diff --git a/blockchains/ethereum/assets/0x0cbC9b02B8628AE08688b5cC8134dc09e36C443b/info.json b/blockchains/ethereum/assets/0x0cbC9b02B8628AE08688b5cC8134dc09e36C443b/info.json new file mode 100644 index 00000000..285b8dc1 --- /dev/null +++ b/blockchains/ethereum/assets/0x0cbC9b02B8628AE08688b5cC8134dc09e36C443b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tratok", + "symbol": "TRAT", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "http://tratok.com", + "explorer": "https://etherscan.io/token/0x0cbC9b02B8628AE08688b5cC8134dc09e36C443b", + "status": "abandoned", + "id": "0x0cbC9b02B8628AE08688b5cC8134dc09e36C443b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0cbC9b02B8628AE08688b5cC8134dc09e36C443b/logo.png b/blockchains/ethereum/assets/0x0cbC9b02B8628AE08688b5cC8134dc09e36C443b/logo.png new file mode 100644 index 00000000..63a655ed Binary files /dev/null and b/blockchains/ethereum/assets/0x0cbC9b02B8628AE08688b5cC8134dc09e36C443b/logo.png differ diff --git a/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/info.json b/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/info.json new file mode 100644 index 00000000..542f523b --- /dev/null +++ b/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/info.json @@ -0,0 +1,24 @@ +{ + "name": "BEND Token", + "website": "https://www.benddao.xyz/", + "description": "BEND is the governance token of BendDAO which is a peer-to-pool based NFT liquidity protocol.", + "explorer": "https://etherscan.io/token/0x0d02755a5700414B26FF040e1dE35D337DF56218", + "type": "ERC20", + "symbol": "BEND", + "decimals": 18, + "status": "active", + "id": "0x0d02755a5700414B26FF040e1dE35D337DF56218", + "links": [ + { + "name": "x", + "url": "https://x.com/BendDAO" + }, + { + "name": "github", + "url": "https://github.com/BendDAO/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/logo.png b/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/logo.png new file mode 100644 index 00000000..66ba2f0e Binary files /dev/null and b/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/logo.png differ diff --git a/blockchains/ethereum/assets/0x0d16450D347c12C086d6C94c76c5Aaac35eA07E0/info.json b/blockchains/ethereum/assets/0x0d16450D347c12C086d6C94c76c5Aaac35eA07E0/info.json new file mode 100644 index 00000000..ccfd15dc --- /dev/null +++ b/blockchains/ethereum/assets/0x0d16450D347c12C086d6C94c76c5Aaac35eA07E0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gold Storage", + "symbol": "GOLD", + "type": "ERC20", + "decimals": 3, + "description": "GOLD Ethereum-based ERC20 token is a convenient and instant way to store, buy, sell or transfer investment grade gold.", + "website": "https://gold.storage/", + "explorer": "https://etherscan.io/token/0x0d16450D347c12C086d6C94c76c5Aaac35eA07E0", + "status": "active", + "id": "0x0d16450D347c12C086d6C94c76c5Aaac35eA07E0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0d16450D347c12C086d6C94c76c5Aaac35eA07E0/logo.png b/blockchains/ethereum/assets/0x0d16450D347c12C086d6C94c76c5Aaac35eA07E0/logo.png new file mode 100644 index 00000000..892f501a Binary files /dev/null and b/blockchains/ethereum/assets/0x0d16450D347c12C086d6C94c76c5Aaac35eA07E0/logo.png differ diff --git a/blockchains/ethereum/assets/0x0d2BB9D68dD4451A09ec94C05E20Bd395022bd8e/info.json b/blockchains/ethereum/assets/0x0d2BB9D68dD4451A09ec94C05E20Bd395022bd8e/info.json new file mode 100644 index 00000000..586eb542 --- /dev/null +++ b/blockchains/ethereum/assets/0x0d2BB9D68dD4451A09ec94C05E20Bd395022bd8e/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRYPTOBUCKS", + "symbol": "CBUCKS", + "type": "ERC20", + "decimals": 2, + "description": "Cryptobucks enables its users to do peer to peer exchange on all the local currencies and other cryptocurrencies. It empowers peer to peer trading and copy trade.", + "website": "https://www.cryptobuckslimited.com/", + "explorer": "https://etherscan.io/token/0x0d2BB9D68dD4451A09ec94C05E20Bd395022bd8e", + "status": "active", + "id": "0x0d2BB9D68dD4451A09ec94C05E20Bd395022bd8e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0d2BB9D68dD4451A09ec94C05E20Bd395022bd8e/logo.png b/blockchains/ethereum/assets/0x0d2BB9D68dD4451A09ec94C05E20Bd395022bd8e/logo.png new file mode 100644 index 00000000..004365a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x0d2BB9D68dD4451A09ec94C05E20Bd395022bd8e/logo.png differ diff --git a/blockchains/ethereum/assets/0x0d438F3b5175Bebc262bF23753C1E53d03432bDE/info.json b/blockchains/ethereum/assets/0x0d438F3b5175Bebc262bF23753C1E53d03432bDE/info.json new file mode 100644 index 00000000..aa2677f9 --- /dev/null +++ b/blockchains/ethereum/assets/0x0d438F3b5175Bebc262bF23753C1E53d03432bDE/info.json @@ -0,0 +1,15 @@ +{ + "name": "Wrapped NXM", + "website": "https://nexusmutual.io", + "description": "WNXM represents wrapped NXM tokens that are freely transferable and only KYC-ed members of the Nexus Mutual are able to wrap and unwrap NXM.", + "explorer": "https://etherscan.io/token/0x0d438F3b5175Bebc262bF23753C1E53d03432bDE", + "research": "https://research.binance.com/en/projects/wrapped-nxm", + "type": "ERC20", + "symbol": "wNXM", + "decimals": 18, + "status": "active", + "id": "0x0d438F3b5175Bebc262bF23753C1E53d03432bDE", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0d438F3b5175Bebc262bF23753C1E53d03432bDE/logo.png b/blockchains/ethereum/assets/0x0d438F3b5175Bebc262bF23753C1E53d03432bDE/logo.png new file mode 100644 index 00000000..aa3f5d3a Binary files /dev/null and b/blockchains/ethereum/assets/0x0d438F3b5175Bebc262bF23753C1E53d03432bDE/logo.png differ diff --git a/blockchains/ethereum/assets/0x0d4b4DA5fb1a7d55E85f8e22f728701cEB6E44C9/info.json b/blockchains/ethereum/assets/0x0d4b4DA5fb1a7d55E85f8e22f728701cEB6E44C9/info.json new file mode 100644 index 00000000..8338932b --- /dev/null +++ b/blockchains/ethereum/assets/0x0d4b4DA5fb1a7d55E85f8e22f728701cEB6E44C9/info.json @@ -0,0 +1,11 @@ +{ + "name": "DigiMax", + "symbol": "DGMT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://digimaxtoken.io/", + "explorer": "https://etherscan.io/token/0x0d4b4DA5fb1a7d55E85f8e22f728701cEB6E44C9", + "status": "abandoned", + "id": "0x0d4b4DA5fb1a7d55E85f8e22f728701cEB6E44C9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0d4b4DA5fb1a7d55E85f8e22f728701cEB6E44C9/logo.png b/blockchains/ethereum/assets/0x0d4b4DA5fb1a7d55E85f8e22f728701cEB6E44C9/logo.png new file mode 100644 index 00000000..c6be70d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x0d4b4DA5fb1a7d55E85f8e22f728701cEB6E44C9/logo.png differ diff --git a/blockchains/ethereum/assets/0x0d54D4279B9E8c54cD8547c2C75A8Ee81A0BcaE8/info.json b/blockchains/ethereum/assets/0x0d54D4279B9E8c54cD8547c2C75A8Ee81A0BcaE8/info.json new file mode 100644 index 00000000..14a9bb50 --- /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 00000000..315e409e Binary files /dev/null and b/blockchains/ethereum/assets/0x0d54D4279B9E8c54cD8547c2C75A8Ee81A0BcaE8/logo.png differ diff --git a/blockchains/ethereum/assets/0x0d88eD6E74bbFD96B831231638b66C05571e824F/info.json b/blockchains/ethereum/assets/0x0d88eD6E74bbFD96B831231638b66C05571e824F/info.json new file mode 100644 index 00000000..a0d26104 --- /dev/null +++ b/blockchains/ethereum/assets/0x0d88eD6E74bbFD96B831231638b66C05571e824F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Avt", + "symbol": "AVT", + "type": "ERC20", + "decimals": 18, + "description": "Aventus is a layer-2 blockchain protocol that brings scalability, lower costs, and speed to Ethereum transactions.", + "website": "https://aventus.io/", + "explorer": "https://etherscan.io/token/0x0d88eD6E74bbFD96B831231638b66C05571e824F", + "status": "active", + "id": "0x0d88eD6E74bbFD96B831231638b66C05571e824F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0d88eD6E74bbFD96B831231638b66C05571e824F/logo.png b/blockchains/ethereum/assets/0x0d88eD6E74bbFD96B831231638b66C05571e824F/logo.png new file mode 100644 index 00000000..b1d56f7e Binary files /dev/null and b/blockchains/ethereum/assets/0x0d88eD6E74bbFD96B831231638b66C05571e824F/logo.png differ diff --git a/blockchains/ethereum/assets/0x0d9227f9c4ab3972f994FCcC6EeBa3213C0305c4/info.json b/blockchains/ethereum/assets/0x0d9227f9c4ab3972f994FCcC6EeBa3213C0305c4/info.json new file mode 100644 index 00000000..f0c6edf9 --- /dev/null +++ b/blockchains/ethereum/assets/0x0d9227f9c4ab3972f994FCcC6EeBa3213C0305c4/info.json @@ -0,0 +1,17 @@ +{ + "name": "Sergey Save Link", + "website": "https://sergsave.link", + "description": "Utility token to for NFT dApp", + "explorer": "https://etherscan.io/token/0x0d9227f9c4ab3972f994FCcC6EeBa3213C0305c4", + "type": "ERC20", + "symbol": "SSL", + "decimals": 18, + "status": "active", + "id": "0x0d9227f9c4ab3972f994FCcC6EeBa3213C0305c4", + "links": [ + { + "name": "x", + "url": "https://x.com/SergeySavelink" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0d9227f9c4ab3972f994FCcC6EeBa3213C0305c4/logo.png b/blockchains/ethereum/assets/0x0d9227f9c4ab3972f994FCcC6EeBa3213C0305c4/logo.png new file mode 100644 index 00000000..a70601ea Binary files /dev/null and b/blockchains/ethereum/assets/0x0d9227f9c4ab3972f994FCcC6EeBa3213C0305c4/logo.png differ diff --git a/blockchains/ethereum/assets/0x0d9E614937A308438337A2999Acf64Fc86bF098a/info.json b/blockchains/ethereum/assets/0x0d9E614937A308438337A2999Acf64Fc86bF098a/info.json new file mode 100644 index 00000000..17791d09 --- /dev/null +++ b/blockchains/ethereum/assets/0x0d9E614937A308438337A2999Acf64Fc86bF098a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Saturn", + "symbol": "XSAT", + "type": "ERC20", + "decimals": 18, + "description": "Saturn.Black – liquidity provider for crypto markets. Cross-chain Exchange & OTC trading Platform.", + "website": "https://saturn.black/", + "explorer": "https://etherscan.io/token/0x0d9E614937A308438337A2999Acf64Fc86bF098a", + "status": "active", + "id": "0x0d9E614937A308438337A2999Acf64Fc86bF098a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0d9E614937A308438337A2999Acf64Fc86bF098a/logo.png b/blockchains/ethereum/assets/0x0d9E614937A308438337A2999Acf64Fc86bF098a/logo.png new file mode 100644 index 00000000..efa45b22 Binary files /dev/null and b/blockchains/ethereum/assets/0x0d9E614937A308438337A2999Acf64Fc86bF098a/logo.png differ diff --git a/blockchains/ethereum/assets/0x0dAa561DcD6769eb7128e4b99be6FE9C7957EaB1/info.json b/blockchains/ethereum/assets/0x0dAa561DcD6769eb7128e4b99be6FE9C7957EaB1/info.json new file mode 100644 index 00000000..73eba396 --- /dev/null +++ b/blockchains/ethereum/assets/0x0dAa561DcD6769eb7128e4b99be6FE9C7957EaB1/info.json @@ -0,0 +1,11 @@ +{ + "name": "CNC", + "symbol": "CNC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0dAa561DcD6769eb7128e4b99be6FE9C7957EaB1", + "status": "abandoned", + "id": "0x0dAa561DcD6769eb7128e4b99be6FE9C7957EaB1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0dAa561DcD6769eb7128e4b99be6FE9C7957EaB1/logo.png b/blockchains/ethereum/assets/0x0dAa561DcD6769eb7128e4b99be6FE9C7957EaB1/logo.png new file mode 100644 index 00000000..2f625e87 Binary files /dev/null and b/blockchains/ethereum/assets/0x0dAa561DcD6769eb7128e4b99be6FE9C7957EaB1/logo.png differ diff --git a/blockchains/ethereum/assets/0x0dD55D33b46151b9d2427A23eC6A9986FDD74745/info.json b/blockchains/ethereum/assets/0x0dD55D33b46151b9d2427A23eC6A9986FDD74745/info.json new file mode 100644 index 00000000..ecad155a --- /dev/null +++ b/blockchains/ethereum/assets/0x0dD55D33b46151b9d2427A23eC6A9986FDD74745/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long ZRX-DAI 2x v2", + "symbol": "dLZRX2x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0dD55D33b46151b9d2427A23eC6A9986FDD74745", + "status": "abandoned", + "id": "0x0dD55D33b46151b9d2427A23eC6A9986FDD74745" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0dD55D33b46151b9d2427A23eC6A9986FDD74745/logo.png b/blockchains/ethereum/assets/0x0dD55D33b46151b9d2427A23eC6A9986FDD74745/logo.png new file mode 100644 index 00000000..b3c4b38c Binary files /dev/null and b/blockchains/ethereum/assets/0x0dD55D33b46151b9d2427A23eC6A9986FDD74745/logo.png differ diff --git a/blockchains/ethereum/assets/0x0dF721639CA2F7fF0E1F618b918A65FFB199AC4E/info.json b/blockchains/ethereum/assets/0x0dF721639CA2F7fF0E1F618b918A65FFB199AC4E/info.json new file mode 100644 index 00000000..91598583 --- /dev/null +++ b/blockchains/ethereum/assets/0x0dF721639CA2F7fF0E1F618b918A65FFB199AC4E/info.json @@ -0,0 +1,11 @@ +{ + "name": "uDOO", + "symbol": "uDOO", + "type": "ERC20", + "decimals": 18, + "description": "Howdoo is a revolutionary new messaging and social media platform that offers greater choice and control to users.", + "website": "https://howdoo.io/", + "explorer": "https://etherscan.io/token/0x0dF721639CA2F7fF0E1F618b918A65FFB199AC4E", + "status": "abandoned", + "id": "0x0dF721639CA2F7fF0E1F618b918A65FFB199AC4E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0dF721639CA2F7fF0E1F618b918A65FFB199AC4E/logo.png b/blockchains/ethereum/assets/0x0dF721639CA2F7fF0E1F618b918A65FFB199AC4E/logo.png new file mode 100644 index 00000000..3b4a731e Binary files /dev/null and b/blockchains/ethereum/assets/0x0dF721639CA2F7fF0E1F618b918A65FFB199AC4E/logo.png differ diff --git a/blockchains/ethereum/assets/0x0db03B6CDe0B2d427C64a04FeAfd825938368f1F/info.json b/blockchains/ethereum/assets/0x0db03B6CDe0B2d427C64a04FeAfd825938368f1F/info.json new file mode 100644 index 00000000..85eac542 --- /dev/null +++ b/blockchains/ethereum/assets/0x0db03B6CDe0B2d427C64a04FeAfd825938368f1F/info.json @@ -0,0 +1,11 @@ +{ + "name": "PDATA", + "symbol": "PDATA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.opiria.io", + "explorer": "https://etherscan.io/token/0x0db03B6CDe0B2d427C64a04FeAfd825938368f1F", + "status": "abandoned", + "id": "0x0db03B6CDe0B2d427C64a04FeAfd825938368f1F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0db03B6CDe0B2d427C64a04FeAfd825938368f1F/logo.png b/blockchains/ethereum/assets/0x0db03B6CDe0B2d427C64a04FeAfd825938368f1F/logo.png new file mode 100644 index 00000000..45ee75a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x0db03B6CDe0B2d427C64a04FeAfd825938368f1F/logo.png differ diff --git a/blockchains/ethereum/assets/0x0e0989b1f9B8A38983c2BA8053269Ca62Ec9B195/info.json b/blockchains/ethereum/assets/0x0e0989b1f9B8A38983c2BA8053269Ca62Ec9B195/info.json new file mode 100644 index 00000000..198b6f46 --- /dev/null +++ b/blockchains/ethereum/assets/0x0e0989b1f9B8A38983c2BA8053269Ca62Ec9B195/info.json @@ -0,0 +1,11 @@ +{ + "name": "Po.et", + "symbol": "POE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://po.et/", + "explorer": "https://etherscan.io/token/0x0e0989b1f9B8A38983c2BA8053269Ca62Ec9B195", + "status": "active", + "id": "0x0e0989b1f9B8A38983c2BA8053269Ca62Ec9B195" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0e0989b1f9B8A38983c2BA8053269Ca62Ec9B195/logo.png b/blockchains/ethereum/assets/0x0e0989b1f9B8A38983c2BA8053269Ca62Ec9B195/logo.png new file mode 100755 index 00000000..f64517e3 Binary files /dev/null and b/blockchains/ethereum/assets/0x0e0989b1f9B8A38983c2BA8053269Ca62Ec9B195/logo.png differ diff --git a/blockchains/ethereum/assets/0x0e14FF106b70B807d74190Ce2c2D0Bb8c865082d/info.json b/blockchains/ethereum/assets/0x0e14FF106b70B807d74190Ce2c2D0Bb8c865082d/info.json new file mode 100644 index 00000000..d8c7f066 --- /dev/null +++ b/blockchains/ethereum/assets/0x0e14FF106b70B807d74190Ce2c2D0Bb8c865082d/info.json @@ -0,0 +1,11 @@ +{ + "name": "薪抬幣", + "symbol": "STBI", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.stbi-coin.com/", + "explorer": "https://etherscan.io/token/0x0e14FF106b70B807d74190Ce2c2D0Bb8c865082d", + "status": "abandoned", + "id": "0x0e14FF106b70B807d74190Ce2c2D0Bb8c865082d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0e14FF106b70B807d74190Ce2c2D0Bb8c865082d/logo.png b/blockchains/ethereum/assets/0x0e14FF106b70B807d74190Ce2c2D0Bb8c865082d/logo.png new file mode 100644 index 00000000..a8cb0bb7 Binary files /dev/null and b/blockchains/ethereum/assets/0x0e14FF106b70B807d74190Ce2c2D0Bb8c865082d/logo.png differ diff --git a/blockchains/ethereum/assets/0x0e2298E3B3390e3b945a5456fBf59eCc3f55DA16/info.json b/blockchains/ethereum/assets/0x0e2298E3B3390e3b945a5456fBf59eCc3f55DA16/info.json new file mode 100644 index 00000000..cb2e60f3 --- /dev/null +++ b/blockchains/ethereum/assets/0x0e2298E3B3390e3b945a5456fBf59eCc3f55DA16/info.json @@ -0,0 +1,12 @@ +{ + "name": "YAM", + "website": "http://yam.finance", + "description": "YAM is described by the team as 'An Experiment in Fair Farming, Governance, and Elasticity'.", + "explorer": "https://etherscan.io/token/0x0e2298E3B3390e3b945a5456fBf59eCc3f55DA16", + "research": "", + "type": "ERC20", + "symbol": "YAM", + "decimals": 18, + "status": "active", + "id": "0x0e2298E3B3390e3b945a5456fBf59eCc3f55DA16" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0e2298E3B3390e3b945a5456fBf59eCc3f55DA16/logo.png b/blockchains/ethereum/assets/0x0e2298E3B3390e3b945a5456fBf59eCc3f55DA16/logo.png new file mode 100644 index 00000000..684d706f Binary files /dev/null and b/blockchains/ethereum/assets/0x0e2298E3B3390e3b945a5456fBf59eCc3f55DA16/logo.png differ diff --git a/blockchains/ethereum/assets/0x0e397938C1Aa0680954093495B70A9F5e2249aBa/info.json b/blockchains/ethereum/assets/0x0e397938C1Aa0680954093495B70A9F5e2249aBa/info.json new file mode 100644 index 00000000..effa15f1 --- /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 00000000..e14a8610 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 00000000..febdb6ee --- /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 00000000..2b78123f Binary files /dev/null and b/blockchains/ethereum/assets/0x0e3D889D5B857C3e6eb361B9C9aE35bb7DdbD254/logo.png differ diff --git a/blockchains/ethereum/assets/0x0e511Aa1a137AaD267dfe3a6bFCa0b856C1a3682/info.json b/blockchains/ethereum/assets/0x0e511Aa1a137AaD267dfe3a6bFCa0b856C1a3682/info.json new file mode 100644 index 00000000..54b7c7d1 --- /dev/null +++ b/blockchains/ethereum/assets/0x0e511Aa1a137AaD267dfe3a6bFCa0b856C1a3682/info.json @@ -0,0 +1,11 @@ +{ + "name": "Balancer Pool Token", + "symbol": "BPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0e511Aa1a137AaD267dfe3a6bFCa0b856C1a3682", + "status": "abandoned", + "id": "0x0e511Aa1a137AaD267dfe3a6bFCa0b856C1a3682" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0e511Aa1a137AaD267dfe3a6bFCa0b856C1a3682/logo.png b/blockchains/ethereum/assets/0x0e511Aa1a137AaD267dfe3a6bFCa0b856C1a3682/logo.png new file mode 100644 index 00000000..f3d9bf07 Binary files /dev/null and b/blockchains/ethereum/assets/0x0e511Aa1a137AaD267dfe3a6bFCa0b856C1a3682/logo.png differ diff --git a/blockchains/ethereum/assets/0x0e8e874bb30a5F254f5144EaAE4564C7F73fAbeD/info.json b/blockchains/ethereum/assets/0x0e8e874bb30a5F254f5144EaAE4564C7F73fAbeD/info.json new file mode 100644 index 00000000..30b2a99b --- /dev/null +++ b/blockchains/ethereum/assets/0x0e8e874bb30a5F254f5144EaAE4564C7F73fAbeD/info.json @@ -0,0 +1,11 @@ +{ + "name": "onLEXpa", + "symbol": "onLEXpa.com", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0e8e874bb30a5F254f5144EaAE4564C7F73fAbeD", + "status": "abandoned", + "id": "0x0e8e874bb30a5F254f5144EaAE4564C7F73fAbeD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0e8e874bb30a5F254f5144EaAE4564C7F73fAbeD/logo.png b/blockchains/ethereum/assets/0x0e8e874bb30a5F254f5144EaAE4564C7F73fAbeD/logo.png new file mode 100644 index 00000000..8c241d13 Binary files /dev/null and b/blockchains/ethereum/assets/0x0e8e874bb30a5F254f5144EaAE4564C7F73fAbeD/logo.png differ diff --git a/blockchains/ethereum/assets/0x0e9b56D2233ea2b5883861754435f9C51Dbca141/info.json b/blockchains/ethereum/assets/0x0e9b56D2233ea2b5883861754435f9C51Dbca141/info.json new file mode 100644 index 00000000..bfe03b9c --- /dev/null +++ b/blockchains/ethereum/assets/0x0e9b56D2233ea2b5883861754435f9C51Dbca141/info.json @@ -0,0 +1,11 @@ +{ + "name": "rPepe", + "website": "https://rarepepe.net", + "description": "rPepe Token is a deflationary cypto-currency with a 2.5% burn implemented for each transaction.", + "explorer": "https://etherscan.io/token/0x0e9b56D2233ea2b5883861754435f9C51Dbca141", + "type": "ERC20", + "symbol": "rPepe", + "decimals": 18, + "status": "active", + "id": "0x0e9b56D2233ea2b5883861754435f9C51Dbca141" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0e9b56D2233ea2b5883861754435f9C51Dbca141/logo.png b/blockchains/ethereum/assets/0x0e9b56D2233ea2b5883861754435f9C51Dbca141/logo.png new file mode 100644 index 00000000..573f8229 Binary files /dev/null and b/blockchains/ethereum/assets/0x0e9b56D2233ea2b5883861754435f9C51Dbca141/logo.png differ diff --git a/blockchains/ethereum/assets/0x0eB43ce1708f415DfB1734A3F69a89403011A4C1/info.json b/blockchains/ethereum/assets/0x0eB43ce1708f415DfB1734A3F69a89403011A4C1/info.json new file mode 100644 index 00000000..8e6d614e --- /dev/null +++ b/blockchains/ethereum/assets/0x0eB43ce1708f415DfB1734A3F69a89403011A4C1/info.json @@ -0,0 +1,11 @@ +{ + "name": "zBitcoin", + "symbol": "zBTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0eB43ce1708f415DfB1734A3F69a89403011A4C1", + "status": "abandoned", + "id": "0x0eB43ce1708f415DfB1734A3F69a89403011A4C1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0eB43ce1708f415DfB1734A3F69a89403011A4C1/logo.png b/blockchains/ethereum/assets/0x0eB43ce1708f415DfB1734A3F69a89403011A4C1/logo.png new file mode 100644 index 00000000..85d1448d Binary files /dev/null and b/blockchains/ethereum/assets/0x0eB43ce1708f415DfB1734A3F69a89403011A4C1/logo.png differ diff --git a/blockchains/ethereum/assets/0x0eF3b2024ae079e6dBC2b37435cE30d2731F0101/info.json b/blockchains/ethereum/assets/0x0eF3b2024ae079e6dBC2b37435cE30d2731F0101/info.json new file mode 100644 index 00000000..2b0b8e51 --- /dev/null +++ b/blockchains/ethereum/assets/0x0eF3b2024ae079e6dBC2b37435cE30d2731F0101/info.json @@ -0,0 +1,11 @@ +{ + "name": "UNIFI", + "website": "https://UNIFIDEFI.com", + "description": "UNIFI is a Defi coin used to interact in the UNifi decentralized financial eco-sysytem ", + "explorer": "https://etherscan.io/token/0x0eF3b2024ae079e6dBC2b37435cE30d2731F0101", + "type": "ERC20", + "symbol": "UNIFI", + "decimals": 18, + "status": "active", + "id": "0x0eF3b2024ae079e6dBC2b37435cE30d2731F0101" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0eF3b2024ae079e6dBC2b37435cE30d2731F0101/logo.png b/blockchains/ethereum/assets/0x0eF3b2024ae079e6dBC2b37435cE30d2731F0101/logo.png new file mode 100644 index 00000000..d74cde9c Binary files /dev/null and b/blockchains/ethereum/assets/0x0eF3b2024ae079e6dBC2b37435cE30d2731F0101/logo.png differ diff --git a/blockchains/ethereum/assets/0x0ea984e789302B7B612147E4e4144e64f21425Eb/info.json b/blockchains/ethereum/assets/0x0ea984e789302B7B612147E4e4144e64f21425Eb/info.json new file mode 100644 index 00000000..d6a19248 --- /dev/null +++ b/blockchains/ethereum/assets/0x0ea984e789302B7B612147E4e4144e64f21425Eb/info.json @@ -0,0 +1,11 @@ +{ + "name": "WaleTokeN", + "symbol": "WTN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://www.waletoken.com/", + "explorer": "https://etherscan.io/token/0x0ea984e789302B7B612147E4e4144e64f21425Eb", + "status": "abandoned", + "id": "0x0ea984e789302B7B612147E4e4144e64f21425Eb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0ea984e789302B7B612147E4e4144e64f21425Eb/logo.png b/blockchains/ethereum/assets/0x0ea984e789302B7B612147E4e4144e64f21425Eb/logo.png new file mode 100644 index 00000000..9d8edf81 Binary files /dev/null and b/blockchains/ethereum/assets/0x0ea984e789302B7B612147E4e4144e64f21425Eb/logo.png differ diff --git a/blockchains/ethereum/assets/0x0ecF0851b2cb945ddbee413C0E23f0C01cD4df7d/info.json b/blockchains/ethereum/assets/0x0ecF0851b2cb945ddbee413C0E23f0C01cD4df7d/info.json new file mode 100644 index 00000000..4fe69841 --- /dev/null +++ b/blockchains/ethereum/assets/0x0ecF0851b2cb945ddbee413C0E23f0C01cD4df7d/info.json @@ -0,0 +1,11 @@ +{ + "name": "ARTIDToken", + "symbol": "ARTID", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0ecF0851b2cb945ddbee413C0E23f0C01cD4df7d", + "status": "abandoned", + "id": "0x0ecF0851b2cb945ddbee413C0E23f0C01cD4df7d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0ecF0851b2cb945ddbee413C0E23f0C01cD4df7d/logo.png b/blockchains/ethereum/assets/0x0ecF0851b2cb945ddbee413C0E23f0C01cD4df7d/logo.png new file mode 100644 index 00000000..256ab9f2 Binary files /dev/null and b/blockchains/ethereum/assets/0x0ecF0851b2cb945ddbee413C0E23f0C01cD4df7d/logo.png differ diff --git a/blockchains/ethereum/assets/0x0ee11500E7CfE6124e3716cD7755A0F0f2116244/info.json b/blockchains/ethereum/assets/0x0ee11500E7CfE6124e3716cD7755A0F0f2116244/info.json new file mode 100644 index 00000000..5f3098dc --- /dev/null +++ b/blockchains/ethereum/assets/0x0ee11500E7CfE6124e3716cD7755A0F0f2116244/info.json @@ -0,0 +1,11 @@ +{ + "name": "WXCoin", + "symbol": "WXC", + "type": "ERC20", + "decimals": 0, + "description": "WX-Coin is a decentralized cryptocurrency that uses peer-to-peer technology to operate with no central authority or banks; managing transactions and the issuing of WX-Coin is carried out collectively by the network.", + "website": "https://wxcoins.org/", + "explorer": "https://etherscan.io/token/0x0ee11500E7CfE6124e3716cD7755A0F0f2116244", + "status": "abandoned", + "id": "0x0ee11500E7CfE6124e3716cD7755A0F0f2116244" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0ee11500E7CfE6124e3716cD7755A0F0f2116244/logo.png b/blockchains/ethereum/assets/0x0ee11500E7CfE6124e3716cD7755A0F0f2116244/logo.png new file mode 100644 index 00000000..89f436b5 Binary files /dev/null and b/blockchains/ethereum/assets/0x0ee11500E7CfE6124e3716cD7755A0F0f2116244/logo.png differ diff --git a/blockchains/ethereum/assets/0x0f1Ed66c251BcB52ecF7E67ac64Bb72482048aDB/info.json b/blockchains/ethereum/assets/0x0f1Ed66c251BcB52ecF7E67ac64Bb72482048aDB/info.json new file mode 100644 index 00000000..7a22730c --- /dev/null +++ b/blockchains/ethereum/assets/0x0f1Ed66c251BcB52ecF7E67ac64Bb72482048aDB/info.json @@ -0,0 +1,11 @@ +{ + "name": "SEER-ERC20-Token", + "symbol": "SEER", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.seer.best/", + "explorer": "https://etherscan.io/token/0x0f1Ed66c251BcB52ecF7E67ac64Bb72482048aDB", + "status": "abandoned", + "id": "0x0f1Ed66c251BcB52ecF7E67ac64Bb72482048aDB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0f1Ed66c251BcB52ecF7E67ac64Bb72482048aDB/logo.png b/blockchains/ethereum/assets/0x0f1Ed66c251BcB52ecF7E67ac64Bb72482048aDB/logo.png new file mode 100755 index 00000000..214caa09 Binary files /dev/null and b/blockchains/ethereum/assets/0x0f1Ed66c251BcB52ecF7E67ac64Bb72482048aDB/logo.png differ diff --git a/blockchains/ethereum/assets/0x0f2D719407FdBeFF09D87557AbB7232601FD9F29/info.json b/blockchains/ethereum/assets/0x0f2D719407FdBeFF09D87557AbB7232601FD9F29/info.json new file mode 100644 index 00000000..088840c9 --- /dev/null +++ b/blockchains/ethereum/assets/0x0f2D719407FdBeFF09D87557AbB7232601FD9F29/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://etherscan.io/token/0x0f2D719407FdBeFF09D87557AbB7232601FD9F29", + "type": "ERC20", + "symbol": "SYN", + "decimals": 18, + "status": "active", + "id": "0x0f2D719407FdBeFF09D87557AbB7232601FD9F29", + "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/ethereum/assets/0x0f2D719407FdBeFF09D87557AbB7232601FD9F29/logo.png b/blockchains/ethereum/assets/0x0f2D719407FdBeFF09D87557AbB7232601FD9F29/logo.png new file mode 100644 index 00000000..577673c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x0f2D719407FdBeFF09D87557AbB7232601FD9F29/logo.png differ diff --git a/blockchains/ethereum/assets/0x0f51bb10119727a7e5eA3538074fb341F56B09Ad/info.json b/blockchains/ethereum/assets/0x0f51bb10119727a7e5eA3538074fb341F56B09Ad/info.json new file mode 100644 index 00000000..9fa1a869 --- /dev/null +++ b/blockchains/ethereum/assets/0x0f51bb10119727a7e5eA3538074fb341F56B09Ad/info.json @@ -0,0 +1,15 @@ +{ + "name": "DAO Maker", + "symbol": "DAO", + "type": "ERC20", + "decimals": 18, + "description": "DAO Maker creates growth technologies and funding frameworks for startups, while simultaneously reducing risks for investors.", + "website": "https://daomaker.com/", + "explorer": "https://etherscan.io/token/0x0f51bb10119727a7e5eA3538074fb341F56B09Ad", + "status": "active", + "id": "0x0f51bb10119727a7e5eA3538074fb341F56B09Ad", + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0f51bb10119727a7e5eA3538074fb341F56B09Ad/logo.png b/blockchains/ethereum/assets/0x0f51bb10119727a7e5eA3538074fb341F56B09Ad/logo.png new file mode 100644 index 00000000..987d27f6 Binary files /dev/null and b/blockchains/ethereum/assets/0x0f51bb10119727a7e5eA3538074fb341F56B09Ad/logo.png differ diff --git a/blockchains/ethereum/assets/0x0f6B862E05A9B528b0002261f9EB616e6c4452e9/info.json b/blockchains/ethereum/assets/0x0f6B862E05A9B528b0002261f9EB616e6c4452e9/info.json new file mode 100644 index 00000000..299c7f70 --- /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/0x0f71B8De197A1C84d31de0F1fA7926c365F052B3/info.json b/blockchains/ethereum/assets/0x0f71B8De197A1C84d31de0F1fA7926c365F052B3/info.json new file mode 100644 index 00000000..30794cc4 --- /dev/null +++ b/blockchains/ethereum/assets/0x0f71B8De197A1C84d31de0F1fA7926c365F052B3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Arcona Distribution Contract", + "symbol": "ARCONA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.arcona.io/index.html", + "explorer": "https://etherscan.io/token/0x0f71B8De197A1C84d31de0F1fA7926c365F052B3", + "status": "abandoned", + "id": "0x0f71B8De197A1C84d31de0F1fA7926c365F052B3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0f71B8De197A1C84d31de0F1fA7926c365F052B3/logo.png b/blockchains/ethereum/assets/0x0f71B8De197A1C84d31de0F1fA7926c365F052B3/logo.png new file mode 100644 index 00000000..a841b60c Binary files /dev/null and b/blockchains/ethereum/assets/0x0f71B8De197A1C84d31de0F1fA7926c365F052B3/logo.png differ diff --git a/blockchains/ethereum/assets/0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704/info.json b/blockchains/ethereum/assets/0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704/info.json new file mode 100644 index 00000000..e7fd1379 --- /dev/null +++ b/blockchains/ethereum/assets/0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockzero Labs", + "symbol": "XIO", + "type": "ERC20", + "decimals": 18, + "description": "Blockzero Labs - Blockchain development studio.", + "website": "https://blockzerolabs.io", + "explorer": "https://etherscan.io/token/0x0f7f961648ae6db43c75663ac7e5414eb79b5704", + "status": "active", + "id": "0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704/logo.png b/blockchains/ethereum/assets/0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704/logo.png new file mode 100644 index 00000000..0edbeb0f Binary files /dev/null and b/blockchains/ethereum/assets/0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704/logo.png differ diff --git a/blockchains/ethereum/assets/0x0f7d4d41218370ae7C94465F8cA3993eD99F650b/info.json b/blockchains/ethereum/assets/0x0f7d4d41218370ae7C94465F8cA3993eD99F650b/info.json new file mode 100644 index 00000000..572cf36b --- /dev/null +++ b/blockchains/ethereum/assets/0x0f7d4d41218370ae7C94465F8cA3993eD99F650b/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R873540", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0f7d4d41218370ae7C94465F8cA3993eD99F650b", + "status": "abandoned", + "id": "0x0f7d4d41218370ae7C94465F8cA3993eD99F650b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0f7d4d41218370ae7C94465F8cA3993eD99F650b/logo.png b/blockchains/ethereum/assets/0x0f7d4d41218370ae7C94465F8cA3993eD99F650b/logo.png new file mode 100644 index 00000000..40036766 Binary files /dev/null and b/blockchains/ethereum/assets/0x0f7d4d41218370ae7C94465F8cA3993eD99F650b/logo.png differ diff --git a/blockchains/ethereum/assets/0x0f7f6531aF9792c9A42e2BEfCeD5ED81c0D63A23/info.json b/blockchains/ethereum/assets/0x0f7f6531aF9792c9A42e2BEfCeD5ED81c0D63A23/info.json new file mode 100644 index 00000000..203c7572 --- /dev/null +++ b/blockchains/ethereum/assets/0x0f7f6531aF9792c9A42e2BEfCeD5ED81c0D63A23/info.json @@ -0,0 +1,11 @@ +{ + "name": "e-Money SEK stablecoin", + "website": "https://e-money.com", + "description": "ERC20 version of the e-Money SEK stablecoin", + "explorer": "https://etherscan.io/token/0x0f7f6531aF9792c9A42e2BEfCeD5ED81c0D63A23", + "type": "ERC20", + "symbol": "ESEK", + "decimals": 6, + "status": "active", + "id": "0x0f7f6531aF9792c9A42e2BEfCeD5ED81c0D63A23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0f7f6531aF9792c9A42e2BEfCeD5ED81c0D63A23/logo.png b/blockchains/ethereum/assets/0x0f7f6531aF9792c9A42e2BEfCeD5ED81c0D63A23/logo.png new file mode 100644 index 00000000..dc81836d Binary files /dev/null and b/blockchains/ethereum/assets/0x0f7f6531aF9792c9A42e2BEfCeD5ED81c0D63A23/logo.png differ diff --git a/blockchains/ethereum/assets/0x0f801928106c4C4272275e130Be1473dBD8b492c/info.json b/blockchains/ethereum/assets/0x0f801928106c4C4272275e130Be1473dBD8b492c/info.json new file mode 100644 index 00000000..18f376d6 --- /dev/null +++ b/blockchains/ethereum/assets/0x0f801928106c4C4272275e130Be1473dBD8b492c/info.json @@ -0,0 +1,11 @@ +{ + "name": "SURPRISE", + "symbol": "SPS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0f801928106c4C4272275e130Be1473dBD8b492c", + "status": "abandoned", + "id": "0x0f801928106c4C4272275e130Be1473dBD8b492c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0f801928106c4C4272275e130Be1473dBD8b492c/logo.png b/blockchains/ethereum/assets/0x0f801928106c4C4272275e130Be1473dBD8b492c/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x0f801928106c4C4272275e130Be1473dBD8b492c/logo.png differ diff --git a/blockchains/ethereum/assets/0x0f806Fb80E13b911573D4B3b30bB1b3b0253a5Db/info.json b/blockchains/ethereum/assets/0x0f806Fb80E13b911573D4B3b30bB1b3b0253a5Db/info.json new file mode 100644 index 00000000..b41d3d0b --- /dev/null +++ b/blockchains/ethereum/assets/0x0f806Fb80E13b911573D4B3b30bB1b3b0253a5Db/info.json @@ -0,0 +1,11 @@ +{ + "name": "NILOY", + "symbol": "NILOY", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0f806Fb80E13b911573D4B3b30bB1b3b0253a5Db", + "status": "abandoned", + "id": "0x0f806Fb80E13b911573D4B3b30bB1b3b0253a5Db" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0f806Fb80E13b911573D4B3b30bB1b3b0253a5Db/logo.png b/blockchains/ethereum/assets/0x0f806Fb80E13b911573D4B3b30bB1b3b0253a5Db/logo.png new file mode 100644 index 00000000..04bbbe7d Binary files /dev/null and b/blockchains/ethereum/assets/0x0f806Fb80E13b911573D4B3b30bB1b3b0253a5Db/logo.png differ diff --git a/blockchains/ethereum/assets/0x0f8794f66C7170c4f9163a8498371A747114f6C4/info.json b/blockchains/ethereum/assets/0x0f8794f66C7170c4f9163a8498371A747114f6C4/info.json new file mode 100644 index 00000000..c4d14fd3 --- /dev/null +++ b/blockchains/ethereum/assets/0x0f8794f66C7170c4f9163a8498371A747114f6C4/info.json @@ -0,0 +1,17 @@ +{ + "name": "Flama", + "website": "https://flamanet.io/", + "description": "Flama is one of the first deflationary tokens in the market with enhanced futures like staking.", + "explorer": "https://etherscan.io/token/0x0f8794f66C7170c4f9163a8498371A747114f6C4", + "type": "ERC20", + "symbol": "FMA", + "decimals": 18, + "status": "active", + "id": "0x0f8794f66C7170c4f9163a8498371A747114f6C4", + "links": [ + { + "name": "x", + "url": "https://x.com/Flama" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0f8794f66C7170c4f9163a8498371A747114f6C4/logo.png b/blockchains/ethereum/assets/0x0f8794f66C7170c4f9163a8498371A747114f6C4/logo.png new file mode 100644 index 00000000..91dd2ee8 Binary files /dev/null and b/blockchains/ethereum/assets/0x0f8794f66C7170c4f9163a8498371A747114f6C4/logo.png differ diff --git a/blockchains/ethereum/assets/0x0f8c45B896784A1E408526B9300519ef8660209c/info.json b/blockchains/ethereum/assets/0x0f8c45B896784A1E408526B9300519ef8660209c/info.json new file mode 100644 index 00000000..deed9d22 --- /dev/null +++ b/blockchains/ethereum/assets/0x0f8c45B896784A1E408526B9300519ef8660209c/info.json @@ -0,0 +1,11 @@ +{ + "name": "XMAX", + "symbol": "XMX", + "type": "ERC20", + "decimals": 8, + "description": "XMAX Token (XMX) is a cryptocurrency and operates on the Ethereum platform.", + "website": "http://www.xmx.com", + "explorer": "https://etherscan.io/token/0x0f8c45B896784A1E408526B9300519ef8660209c", + "status": "active", + "id": "0x0f8c45B896784A1E408526B9300519ef8660209c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0f8c45B896784A1E408526B9300519ef8660209c/logo.png b/blockchains/ethereum/assets/0x0f8c45B896784A1E408526B9300519ef8660209c/logo.png new file mode 100755 index 00000000..d5aab5a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x0f8c45B896784A1E408526B9300519ef8660209c/logo.png differ diff --git a/blockchains/ethereum/assets/0x0f961c328a96c23216B97b58947c2e8a741DE912/info.json b/blockchains/ethereum/assets/0x0f961c328a96c23216B97b58947c2e8a741DE912/info.json new file mode 100644 index 00000000..6248813f --- /dev/null +++ b/blockchains/ethereum/assets/0x0f961c328a96c23216B97b58947c2e8a741DE912/info.json @@ -0,0 +1,11 @@ +{ + "name": "HOLLA", + "symbol": "HOLLA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0f961c328a96c23216B97b58947c2e8a741DE912", + "status": "abandoned", + "id": "0x0f961c328a96c23216B97b58947c2e8a741DE912" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0f961c328a96c23216B97b58947c2e8a741DE912/logo.png b/blockchains/ethereum/assets/0x0f961c328a96c23216B97b58947c2e8a741DE912/logo.png new file mode 100644 index 00000000..05b23d67 Binary files /dev/null and b/blockchains/ethereum/assets/0x0f961c328a96c23216B97b58947c2e8a741DE912/logo.png differ diff --git a/blockchains/ethereum/assets/0x0fA30FB9E8633A43AeCDcFaBb6c7577437f43958/info.json b/blockchains/ethereum/assets/0x0fA30FB9E8633A43AeCDcFaBb6c7577437f43958/info.json new file mode 100644 index 00000000..057e7361 --- /dev/null +++ b/blockchains/ethereum/assets/0x0fA30FB9E8633A43AeCDcFaBb6c7577437f43958/info.json @@ -0,0 +1,11 @@ +{ + "name": "MUNDO", + "symbol": "MUO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.mundotoke.io/", + "explorer": "https://etherscan.io/token/0x0fA30FB9E8633A43AeCDcFaBb6c7577437f43958", + "status": "abandoned", + "id": "0x0fA30FB9E8633A43AeCDcFaBb6c7577437f43958" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0fA30FB9E8633A43AeCDcFaBb6c7577437f43958/logo.png b/blockchains/ethereum/assets/0x0fA30FB9E8633A43AeCDcFaBb6c7577437f43958/logo.png new file mode 100755 index 00000000..1d01c6c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x0fA30FB9E8633A43AeCDcFaBb6c7577437f43958/logo.png differ diff --git a/blockchains/ethereum/assets/0x0fA74f33f6a579bA420C78f8B1Bc45855f521cA7/info.json b/blockchains/ethereum/assets/0x0fA74f33f6a579bA420C78f8B1Bc45855f521cA7/info.json new file mode 100644 index 00000000..9378b9fe --- /dev/null +++ b/blockchains/ethereum/assets/0x0fA74f33f6a579bA420C78f8B1Bc45855f521cA7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Overdrive", + "symbol": "OVD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0fA74f33f6a579bA420C78f8B1Bc45855f521cA7", + "status": "abandoned", + "id": "0x0fA74f33f6a579bA420C78f8B1Bc45855f521cA7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0fA74f33f6a579bA420C78f8B1Bc45855f521cA7/logo.png b/blockchains/ethereum/assets/0x0fA74f33f6a579bA420C78f8B1Bc45855f521cA7/logo.png new file mode 100644 index 00000000..cafcc0f0 Binary files /dev/null and b/blockchains/ethereum/assets/0x0fA74f33f6a579bA420C78f8B1Bc45855f521cA7/logo.png differ diff --git a/blockchains/ethereum/assets/0x0fF6ffcFDa92c53F615a4A75D982f399C989366b/info.json b/blockchains/ethereum/assets/0x0fF6ffcFDa92c53F615a4A75D982f399C989366b/info.json new file mode 100644 index 00000000..7c92b71f --- /dev/null +++ b/blockchains/ethereum/assets/0x0fF6ffcFDa92c53F615a4A75D982f399C989366b/info.json @@ -0,0 +1,12 @@ +{ + "name": "Unilayer", + "website": "https://unilayer.app", + "description": "A new LAYER of possibilities to trade on Uniswap.", + "explorer": "https://etherscan.io/token/0x0fF6ffcFDa92c53F615a4A75D982f399C989366b", + "data_source": "crowd", + "type": "ERC20", + "symbol": "LAYER", + "decimals": 18, + "status": "active", + "id": "0x0fF6ffcFDa92c53F615a4A75D982f399C989366b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0fF6ffcFDa92c53F615a4A75D982f399C989366b/logo.png b/blockchains/ethereum/assets/0x0fF6ffcFDa92c53F615a4A75D982f399C989366b/logo.png new file mode 100644 index 00000000..d4022d31 Binary files /dev/null and b/blockchains/ethereum/assets/0x0fF6ffcFDa92c53F615a4A75D982f399C989366b/logo.png differ diff --git a/blockchains/ethereum/assets/0x0fdF29094Ff2376A6D04052b04eE7F6a4B8A8ceD/info.json b/blockchains/ethereum/assets/0x0fdF29094Ff2376A6D04052b04eE7F6a4B8A8ceD/info.json new file mode 100644 index 00000000..d9a45a1b --- /dev/null +++ b/blockchains/ethereum/assets/0x0fdF29094Ff2376A6D04052b04eE7F6a4B8A8ceD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Inventive Combine EFOOD", + "symbol": "ICEFD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0fdF29094Ff2376A6D04052b04eE7F6a4B8A8ceD", + "status": "abandoned", + "id": "0x0fdF29094Ff2376A6D04052b04eE7F6a4B8A8ceD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0fdF29094Ff2376A6D04052b04eE7F6a4B8A8ceD/logo.png b/blockchains/ethereum/assets/0x0fdF29094Ff2376A6D04052b04eE7F6a4B8A8ceD/logo.png new file mode 100644 index 00000000..f160a3d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x0fdF29094Ff2376A6D04052b04eE7F6a4B8A8ceD/logo.png differ diff --git a/blockchains/ethereum/assets/0x0ff5A8451A839f5F0BB3562689D9A44089738D11/info.json b/blockchains/ethereum/assets/0x0ff5A8451A839f5F0BB3562689D9A44089738D11/info.json new file mode 100644 index 00000000..61ea90c5 --- /dev/null +++ b/blockchains/ethereum/assets/0x0ff5A8451A839f5F0BB3562689D9A44089738D11/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dopex Rebate Token", + "symbol": "rDPX", + "type": "ERC20", + "decimals": 18, + "description": "rDPX - Dopex Rebate Token - Dopex offers a rebate system for losses incurred for option writers based on exercised options for every epoch. The rebate is paid in the form of rDPX.", + "website": "https://www.dopex.io/", + "explorer": "https://etherscan.io/token/0x0ff5A8451A839f5F0BB3562689D9A44089738D11", + "status": "active", + "id": "0x0ff5A8451A839f5F0BB3562689D9A44089738D11" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0ff5A8451A839f5F0BB3562689D9A44089738D11/logo.png b/blockchains/ethereum/assets/0x0ff5A8451A839f5F0BB3562689D9A44089738D11/logo.png new file mode 100644 index 00000000..753b4c4d Binary files /dev/null and b/blockchains/ethereum/assets/0x0ff5A8451A839f5F0BB3562689D9A44089738D11/logo.png differ diff --git a/blockchains/ethereum/assets/0x0ffF6438a6F75BED346c05743eB299d7EA280020/info.json b/blockchains/ethereum/assets/0x0ffF6438a6F75BED346c05743eB299d7EA280020/info.json new file mode 100644 index 00000000..ddb5e555 --- /dev/null +++ b/blockchains/ethereum/assets/0x0ffF6438a6F75BED346c05743eB299d7EA280020/info.json @@ -0,0 +1,11 @@ +{ + "name": "bomb.finance", + "symbol": "BOMB", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x0ffF6438a6F75BED346c05743eB299d7EA280020", + "status": "abandoned", + "id": "0x0ffF6438a6F75BED346c05743eB299d7EA280020" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0ffF6438a6F75BED346c05743eB299d7EA280020/logo.png b/blockchains/ethereum/assets/0x0ffF6438a6F75BED346c05743eB299d7EA280020/logo.png new file mode 100644 index 00000000..6faff5dc Binary files /dev/null and b/blockchains/ethereum/assets/0x0ffF6438a6F75BED346c05743eB299d7EA280020/logo.png differ diff --git a/blockchains/ethereum/assets/0x10086399DD8c1e3De736724AF52587a2044c9fA2/info.json b/blockchains/ethereum/assets/0x10086399DD8c1e3De736724AF52587a2044c9fA2/info.json new file mode 100644 index 00000000..7e8346e4 --- /dev/null +++ b/blockchains/ethereum/assets/0x10086399DD8c1e3De736724AF52587a2044c9fA2/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Midas Touch Gold", + "symbol": "TMTG", + "type": "ERC20", + "decimals": 18, + "description": "The Midas Touch Gold (TMTG) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://dgex.io", + "explorer": "https://etherscan.io/token/0x10086399DD8c1e3De736724AF52587a2044c9fA2", + "status": "active", + "id": "0x10086399DD8c1e3De736724AF52587a2044c9fA2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x10086399DD8c1e3De736724AF52587a2044c9fA2/logo.png b/blockchains/ethereum/assets/0x10086399DD8c1e3De736724AF52587a2044c9fA2/logo.png new file mode 100644 index 00000000..aed51a90 Binary files /dev/null and b/blockchains/ethereum/assets/0x10086399DD8c1e3De736724AF52587a2044c9fA2/logo.png differ diff --git a/blockchains/ethereum/assets/0x1010603473C78277924A195A22115Ee9daB432a6/info.json b/blockchains/ethereum/assets/0x1010603473C78277924A195A22115Ee9daB432a6/info.json new file mode 100644 index 00000000..0c78ad54 --- /dev/null +++ b/blockchains/ethereum/assets/0x1010603473C78277924A195A22115Ee9daB432a6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nifty", + "symbol": "NIFTY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1010603473C78277924A195A22115Ee9daB432a6", + "status": "abandoned", + "id": "0x1010603473C78277924A195A22115Ee9daB432a6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1010603473C78277924A195A22115Ee9daB432a6/logo.png b/blockchains/ethereum/assets/0x1010603473C78277924A195A22115Ee9daB432a6/logo.png new file mode 100644 index 00000000..ef8acf97 Binary files /dev/null and b/blockchains/ethereum/assets/0x1010603473C78277924A195A22115Ee9daB432a6/logo.png differ diff --git a/blockchains/ethereum/assets/0x1014613E2B3CBc4d575054D4982E580d9b99d7B1/info.json b/blockchains/ethereum/assets/0x1014613E2B3CBc4d575054D4982E580d9b99d7B1/info.json new file mode 100644 index 00000000..1a0bc77c --- /dev/null +++ b/blockchains/ethereum/assets/0x1014613E2B3CBc4d575054D4982E580d9b99d7B1/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitCapitalVendorToken", + "symbol": "BCV", + "type": "ERC20", + "decimals": 8, + "description": "Blockchain digital asset management.", + "website": "https://www.bitcv.com", + "explorer": "https://etherscan.io/token/0x1014613E2B3CBc4d575054D4982E580d9b99d7B1", + "status": "active", + "id": "0x1014613E2B3CBc4d575054D4982E580d9b99d7B1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1014613E2B3CBc4d575054D4982E580d9b99d7B1/logo.png b/blockchains/ethereum/assets/0x1014613E2B3CBc4d575054D4982E580d9b99d7B1/logo.png new file mode 100644 index 00000000..4398c9c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x1014613E2B3CBc4d575054D4982E580d9b99d7B1/logo.png differ diff --git a/blockchains/ethereum/assets/0x101cc05f4A51C0319f570d5E146a8C625198e636/info.json b/blockchains/ethereum/assets/0x101cc05f4A51C0319f570d5E146a8C625198e636/info.json new file mode 100644 index 00000000..bce0b25a --- /dev/null +++ b/blockchains/ethereum/assets/0x101cc05f4A51C0319f570d5E146a8C625198e636/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave TUSD", + "symbol": "aTUSD", + "type": "ERC20", + "decimals": 18, + "description": "Aave TUSD is an interest bearing token pegged 1:1 to the underlying TUSD deposited in Aave. aTUSD accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x101cc05f4A51C0319f570d5E146a8C625198e636", + "status": "active", + "id": "0x101cc05f4A51C0319f570d5E146a8C625198e636" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x101cc05f4A51C0319f570d5E146a8C625198e636/logo.png b/blockchains/ethereum/assets/0x101cc05f4A51C0319f570d5E146a8C625198e636/logo.png new file mode 100644 index 00000000..cf8c44e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x101cc05f4A51C0319f570d5E146a8C625198e636/logo.png differ diff --git a/blockchains/ethereum/assets/0x1029383292b098f2302DD19299b58659FdE14aba/info.json b/blockchains/ethereum/assets/0x1029383292b098f2302DD19299b58659FdE14aba/info.json new file mode 100644 index 00000000..07b404c5 --- /dev/null +++ b/blockchains/ethereum/assets/0x1029383292b098f2302DD19299b58659FdE14aba/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fuse", + "symbol": "Fuse", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1029383292b098f2302DD19299b58659FdE14aba", + "status": "abandoned", + "id": "0x1029383292b098f2302DD19299b58659FdE14aba" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1029383292b098f2302DD19299b58659FdE14aba/logo.png b/blockchains/ethereum/assets/0x1029383292b098f2302DD19299b58659FdE14aba/logo.png new file mode 100644 index 00000000..936d0be1 Binary files /dev/null and b/blockchains/ethereum/assets/0x1029383292b098f2302DD19299b58659FdE14aba/logo.png differ diff --git a/blockchains/ethereum/assets/0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f/info.json b/blockchains/ethereum/assets/0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f/info.json new file mode 100644 index 00000000..9cd501a9 --- /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 00000000..03b07b6d Binary files /dev/null and b/blockchains/ethereum/assets/0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f/logo.png differ diff --git a/blockchains/ethereum/assets/0x103c3A209da59d3E7C4A89307e66521e081CFDF0/info.json b/blockchains/ethereum/assets/0x103c3A209da59d3E7C4A89307e66521e081CFDF0/info.json new file mode 100644 index 00000000..9fbb6b62 --- /dev/null +++ b/blockchains/ethereum/assets/0x103c3A209da59d3E7C4A89307e66521e081CFDF0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Genesis Vision Token", + "symbol": "GVT", + "type": "ERC20", + "decimals": 18, + "description": "Genesis Vision (GVT) is the platform for the private trust management market, built on Blockchain technology and Smart Contracts.", + "website": "https://genesis.vision/", + "explorer": "https://etherscan.io/token/0x103c3A209da59d3E7C4A89307e66521e081CFDF0", + "status": "active", + "id": "0x103c3A209da59d3E7C4A89307e66521e081CFDF0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x103c3A209da59d3E7C4A89307e66521e081CFDF0/logo.png b/blockchains/ethereum/assets/0x103c3A209da59d3E7C4A89307e66521e081CFDF0/logo.png new file mode 100644 index 00000000..f1cddd13 Binary files /dev/null and b/blockchains/ethereum/assets/0x103c3A209da59d3E7C4A89307e66521e081CFDF0/logo.png differ diff --git a/blockchains/ethereum/assets/0x1051a014E4b3F2bD08E5A7e52522f0F71628162B/info.json b/blockchains/ethereum/assets/0x1051a014E4b3F2bD08E5A7e52522f0F71628162B/info.json new file mode 100644 index 00000000..b8fb0cda --- /dev/null +++ b/blockchains/ethereum/assets/0x1051a014E4b3F2bD08E5A7e52522f0F71628162B/info.json @@ -0,0 +1,11 @@ +{ + "name": "GOTOGODS", + "symbol": "OGODS", + "type": "ERC20", + "decimals": 18, + "description": "An innovative platform that allows fans to book live meetings with STARS.", + "website": "https://www.gotogods.io/", + "explorer": "https://etherscan.io/token/0x1051a014E4b3F2bD08E5A7e52522f0F71628162B", + "status": "active", + "id": "0x1051a014E4b3F2bD08E5A7e52522f0F71628162B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1051a014E4b3F2bD08E5A7e52522f0F71628162B/logo.png b/blockchains/ethereum/assets/0x1051a014E4b3F2bD08E5A7e52522f0F71628162B/logo.png new file mode 100644 index 00000000..42387b03 Binary files /dev/null and b/blockchains/ethereum/assets/0x1051a014E4b3F2bD08E5A7e52522f0F71628162B/logo.png differ diff --git a/blockchains/ethereum/assets/0x105F838bC941345F9BbafeF10FDb54B241C20105/info.json b/blockchains/ethereum/assets/0x105F838bC941345F9BbafeF10FDb54B241C20105/info.json new file mode 100644 index 00000000..45dbd6ef --- /dev/null +++ b/blockchains/ethereum/assets/0x105F838bC941345F9BbafeF10FDb54B241C20105/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gothic", + "symbol": "GOTHIC", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x105F838bC941345F9BbafeF10FDb54B241C20105", + "status": "abandoned", + "id": "0x105F838bC941345F9BbafeF10FDb54B241C20105" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x105F838bC941345F9BbafeF10FDb54B241C20105/logo.png b/blockchains/ethereum/assets/0x105F838bC941345F9BbafeF10FDb54B241C20105/logo.png new file mode 100644 index 00000000..ec584756 Binary files /dev/null and b/blockchains/ethereum/assets/0x105F838bC941345F9BbafeF10FDb54B241C20105/logo.png differ diff --git a/blockchains/ethereum/assets/0x106138D8B7F110e52Fe89A9B317ed13d38888Db0/info.json b/blockchains/ethereum/assets/0x106138D8B7F110e52Fe89A9B317ed13d38888Db0/info.json new file mode 100644 index 00000000..1b43bca5 --- /dev/null +++ b/blockchains/ethereum/assets/0x106138D8B7F110e52Fe89A9B317ed13d38888Db0/info.json @@ -0,0 +1,11 @@ +{ + "name": "DiscountCoins", + "symbol": "DISC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x106138D8B7F110e52Fe89A9B317ed13d38888Db0", + "status": "abandoned", + "id": "0x106138D8B7F110e52Fe89A9B317ed13d38888Db0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x106138D8B7F110e52Fe89A9B317ed13d38888Db0/logo.png b/blockchains/ethereum/assets/0x106138D8B7F110e52Fe89A9B317ed13d38888Db0/logo.png new file mode 100755 index 00000000..69347eb7 Binary files /dev/null and b/blockchains/ethereum/assets/0x106138D8B7F110e52Fe89A9B317ed13d38888Db0/logo.png differ diff --git a/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/info.json b/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/info.json new file mode 100644 index 00000000..f4e79022 --- /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 00000000..f3f72e02 Binary files /dev/null and b/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/logo.png differ diff --git a/blockchains/ethereum/assets/0x1063ce524265d5a3A624f4914acd573dD89ce988/info.json b/blockchains/ethereum/assets/0x1063ce524265d5a3A624f4914acd573dD89ce988/info.json new file mode 100644 index 00000000..c6c111e4 --- /dev/null +++ b/blockchains/ethereum/assets/0x1063ce524265d5a3A624f4914acd573dD89ce988/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aigang", + "symbol": "AIX", + "type": "ERC20", + "decimals": 18, + "description": "Aigang is building autonomous insurance network - fully automated insurance for IoT devices and a platform for insurance innovation built around data.", + "website": "https://aigang.network/", + "explorer": "https://etherscan.io/token/0x1063ce524265d5a3A624f4914acd573dD89ce988", + "status": "active", + "id": "0x1063ce524265d5a3A624f4914acd573dD89ce988" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1063ce524265d5a3A624f4914acd573dD89ce988/logo.png b/blockchains/ethereum/assets/0x1063ce524265d5a3A624f4914acd573dD89ce988/logo.png new file mode 100644 index 00000000..a3948ae0 Binary files /dev/null and b/blockchains/ethereum/assets/0x1063ce524265d5a3A624f4914acd573dD89ce988/logo.png differ diff --git a/blockchains/ethereum/assets/0x106552C11272420aAd5d7e94f8AcAb9095A6c952/info.json b/blockchains/ethereum/assets/0x106552C11272420aAd5d7e94f8AcAb9095A6c952/info.json new file mode 100644 index 00000000..5d06b302 --- /dev/null +++ b/blockchains/ethereum/assets/0x106552C11272420aAd5d7e94f8AcAb9095A6c952/info.json @@ -0,0 +1,11 @@ +{ + "name": "Keanu Inu", + "website": "https://keanuinu.finance/", + "description": "The Most Badass Dog in the Inu-verse!", + "explorer": "https://etherscan.io/token/0x106552C11272420aAd5d7e94f8AcAb9095A6c952", + "type": "ERC20", + "symbol": "KEANU", + "decimals": 9, + "status": "active", + "id": "0x106552C11272420aAd5d7e94f8AcAb9095A6c952" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x106552C11272420aAd5d7e94f8AcAb9095A6c952/logo.png b/blockchains/ethereum/assets/0x106552C11272420aAd5d7e94f8AcAb9095A6c952/logo.png new file mode 100644 index 00000000..75cc2805 Binary files /dev/null and b/blockchains/ethereum/assets/0x106552C11272420aAd5d7e94f8AcAb9095A6c952/logo.png differ diff --git a/blockchains/ethereum/assets/0x106Aa49295B525fcf959aA75eC3f7dCbF5352f1C/info.json b/blockchains/ethereum/assets/0x106Aa49295B525fcf959aA75eC3f7dCbF5352f1C/info.json new file mode 100644 index 00000000..3a6d51a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x106Aa49295B525fcf959aA75eC3f7dCbF5352f1C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rock Token", + "symbol": "RKT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x106Aa49295B525fcf959aA75eC3f7dCbF5352f1C", + "status": "abandoned", + "id": "0x106Aa49295B525fcf959aA75eC3f7dCbF5352f1C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x106Aa49295B525fcf959aA75eC3f7dCbF5352f1C/logo.png b/blockchains/ethereum/assets/0x106Aa49295B525fcf959aA75eC3f7dCbF5352f1C/logo.png new file mode 100644 index 00000000..73b7c288 Binary files /dev/null and b/blockchains/ethereum/assets/0x106Aa49295B525fcf959aA75eC3f7dCbF5352f1C/logo.png differ diff --git a/blockchains/ethereum/assets/0x10709ca9ADcaA1728Ad530BE1ED39c0286124883/info.json b/blockchains/ethereum/assets/0x10709ca9ADcaA1728Ad530BE1ED39c0286124883/info.json new file mode 100644 index 00000000..162335ae --- /dev/null +++ b/blockchains/ethereum/assets/0x10709ca9ADcaA1728Ad530BE1ED39c0286124883/info.json @@ -0,0 +1,11 @@ +{ + "name": "Meritum Cash", + "symbol": "MCH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x10709ca9ADcaA1728Ad530BE1ED39c0286124883", + "status": "abandoned", + "id": "0x10709ca9ADcaA1728Ad530BE1ED39c0286124883" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x10709ca9ADcaA1728Ad530BE1ED39c0286124883/logo.png b/blockchains/ethereum/assets/0x10709ca9ADcaA1728Ad530BE1ED39c0286124883/logo.png new file mode 100644 index 00000000..fb989458 Binary files /dev/null and b/blockchains/ethereum/assets/0x10709ca9ADcaA1728Ad530BE1ED39c0286124883/logo.png differ diff --git a/blockchains/ethereum/assets/0x10766A65a17701eb411AedaBfcA1d94e072D44B8/info.json b/blockchains/ethereum/assets/0x10766A65a17701eb411AedaBfcA1d94e072D44B8/info.json new file mode 100644 index 00000000..9b238eb5 --- /dev/null +++ b/blockchains/ethereum/assets/0x10766A65a17701eb411AedaBfcA1d94e072D44B8/info.json @@ -0,0 +1,11 @@ +{ + "name": "WES Token", + "symbol": "WES", + "type": "ERC20", + "decimals": 18, + "description": "WES Token (WES) is an ERC20 token used through the Westrend platform and designed to thrive in an ecosystem of utility and sustainability which will expand its value and development as a utility token in the real estate industry.", + "website": "https://westoken.io/", + "explorer": "https://etherscan.io/token/0x10766A65a17701eb411AedaBfcA1d94e072D44B8", + "status": "active", + "id": "0x10766A65a17701eb411AedaBfcA1d94e072D44B8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x10766A65a17701eb411AedaBfcA1d94e072D44B8/logo.png b/blockchains/ethereum/assets/0x10766A65a17701eb411AedaBfcA1d94e072D44B8/logo.png new file mode 100755 index 00000000..c2838b61 Binary files /dev/null and b/blockchains/ethereum/assets/0x10766A65a17701eb411AedaBfcA1d94e072D44B8/logo.png differ diff --git a/blockchains/ethereum/assets/0x107c4504cd79C5d2696Ea0030a8dD4e92601B82e/info.json b/blockchains/ethereum/assets/0x107c4504cd79C5d2696Ea0030a8dD4e92601B82e/info.json new file mode 100644 index 00000000..3b5d4856 --- /dev/null +++ b/blockchains/ethereum/assets/0x107c4504cd79C5d2696Ea0030a8dD4e92601B82e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bloom Token", + "symbol": "BLT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bloom.co/", + "explorer": "https://etherscan.io/token/0x107c4504cd79C5d2696Ea0030a8dD4e92601B82e", + "status": "abandoned", + "id": "0x107c4504cd79C5d2696Ea0030a8dD4e92601B82e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x107c4504cd79C5d2696Ea0030a8dD4e92601B82e/logo.png b/blockchains/ethereum/assets/0x107c4504cd79C5d2696Ea0030a8dD4e92601B82e/logo.png new file mode 100644 index 00000000..6d89f7e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x107c4504cd79C5d2696Ea0030a8dD4e92601B82e/logo.png differ diff --git a/blockchains/ethereum/assets/0x10833B166D2B923b87cA43C864C15661Be603C7b/info.json b/blockchains/ethereum/assets/0x10833B166D2B923b87cA43C864C15661Be603C7b/info.json new file mode 100644 index 00000000..2dbd6c54 --- /dev/null +++ b/blockchains/ethereum/assets/0x10833B166D2B923b87cA43C864C15661Be603C7b/info.json @@ -0,0 +1,11 @@ +{ + "name": "NASZAM", + "symbol": "NASZAM", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x10833B166D2B923b87cA43C864C15661Be603C7b", + "status": "abandoned", + "id": "0x10833B166D2B923b87cA43C864C15661Be603C7b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x10833B166D2B923b87cA43C864C15661Be603C7b/logo.png b/blockchains/ethereum/assets/0x10833B166D2B923b87cA43C864C15661Be603C7b/logo.png new file mode 100644 index 00000000..8a83b037 Binary files /dev/null and b/blockchains/ethereum/assets/0x10833B166D2B923b87cA43C864C15661Be603C7b/logo.png differ diff --git a/blockchains/ethereum/assets/0x10Bae51262490B4f4AF41e12eD52A0E744c1137A/info.json b/blockchains/ethereum/assets/0x10Bae51262490B4f4AF41e12eD52A0E744c1137A/info.json new file mode 100644 index 00000000..8beab30a --- /dev/null +++ b/blockchains/ethereum/assets/0x10Bae51262490B4f4AF41e12eD52A0E744c1137A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Soft Link", + "symbol": "SLINK", + "type": "ERC20", + "decimals": 9, + "description": "Softlink is a rebasing token that attempts to achieve a non-collaterized price peg to LINK by contracting and expanding supply evenly across all balances.", + "website": "https://slink.finance/", + "explorer": "https://etherscan.io/token/0x10Bae51262490B4f4AF41e12eD52A0E744c1137A", + "status": "active", + "id": "0x10Bae51262490B4f4AF41e12eD52A0E744c1137A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x10Bae51262490B4f4AF41e12eD52A0E744c1137A/logo.png b/blockchains/ethereum/assets/0x10Bae51262490B4f4AF41e12eD52A0E744c1137A/logo.png new file mode 100644 index 00000000..689ba312 Binary files /dev/null and b/blockchains/ethereum/assets/0x10Bae51262490B4f4AF41e12eD52A0E744c1137A/logo.png differ diff --git a/blockchains/ethereum/assets/0x10Be9a8dAe441d276a5027936c3aADEd2d82bC15/info.json b/blockchains/ethereum/assets/0x10Be9a8dAe441d276a5027936c3aADEd2d82bC15/info.json new file mode 100644 index 00000000..56c3b59b --- /dev/null +++ b/blockchains/ethereum/assets/0x10Be9a8dAe441d276a5027936c3aADEd2d82bC15/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniMex Network", + "type": "ERC20", + "symbol": "UMX", + "decimals": 18, + "website": "https://unimex.network", + "description": "UniMex is a Uniswap based borrowing platform which facilitates the margin trading of native Uniswap assets", + "explorer": "https://etherscan.io/token/0x10Be9a8dAe441d276a5027936c3aADEd2d82bC15", + "status": "active", + "id": "0x10Be9a8dAe441d276a5027936c3aADEd2d82bC15" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x10Be9a8dAe441d276a5027936c3aADEd2d82bC15/logo.png b/blockchains/ethereum/assets/0x10Be9a8dAe441d276a5027936c3aADEd2d82bC15/logo.png new file mode 100644 index 00000000..47f877a8 Binary files /dev/null and b/blockchains/ethereum/assets/0x10Be9a8dAe441d276a5027936c3aADEd2d82bC15/logo.png differ diff --git a/blockchains/ethereum/assets/0x10DC623fCb8A3C151875f03D442103cBF6469bE6/info.json b/blockchains/ethereum/assets/0x10DC623fCb8A3C151875f03D442103cBF6469bE6/info.json new file mode 100644 index 00000000..2151b96f --- /dev/null +++ b/blockchains/ethereum/assets/0x10DC623fCb8A3C151875f03D442103cBF6469bE6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digital Block", + "symbol": "DB", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x10DC623fCb8A3C151875f03D442103cBF6469bE6", + "status": "abandoned", + "id": "0x10DC623fCb8A3C151875f03D442103cBF6469bE6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x10DC623fCb8A3C151875f03D442103cBF6469bE6/logo.png b/blockchains/ethereum/assets/0x10DC623fCb8A3C151875f03D442103cBF6469bE6/logo.png new file mode 100644 index 00000000..9634b459 Binary files /dev/null and b/blockchains/ethereum/assets/0x10DC623fCb8A3C151875f03D442103cBF6469bE6/logo.png differ diff --git a/blockchains/ethereum/assets/0x10Ef64cb79Fd4d75d4Aa7e8502d95C42124e434b/info.json b/blockchains/ethereum/assets/0x10Ef64cb79Fd4d75d4Aa7e8502d95C42124e434b/info.json new file mode 100644 index 00000000..1898115d --- /dev/null +++ b/blockchains/ethereum/assets/0x10Ef64cb79Fd4d75d4Aa7e8502d95C42124e434b/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoronaCoin", + "symbol": "NCOV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://icosbook.com/", + "explorer": "https://etherscan.io/token/0x10Ef64cb79Fd4d75d4Aa7e8502d95C42124e434b", + "status": "abandoned", + "id": "0x10Ef64cb79Fd4d75d4Aa7e8502d95C42124e434b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x10Ef64cb79Fd4d75d4Aa7e8502d95C42124e434b/logo.png b/blockchains/ethereum/assets/0x10Ef64cb79Fd4d75d4Aa7e8502d95C42124e434b/logo.png new file mode 100644 index 00000000..fea368ce Binary files /dev/null and b/blockchains/ethereum/assets/0x10Ef64cb79Fd4d75d4Aa7e8502d95C42124e434b/logo.png differ diff --git a/blockchains/ethereum/assets/0x10F135Ce102Eee47DCA8FE8E19Dca6324DFBD684/info.json b/blockchains/ethereum/assets/0x10F135Ce102Eee47DCA8FE8E19Dca6324DFBD684/info.json new file mode 100644 index 00000000..d1f80dda --- /dev/null +++ b/blockchains/ethereum/assets/0x10F135Ce102Eee47DCA8FE8E19Dca6324DFBD684/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinDaily", + "symbol": "CDY", + "type": "ERC20", + "decimals": 8, + "description": "The Blockchain Primary Market Integrated Service Platform.", + "website": "http://www.coindaily.io/", + "explorer": "https://etherscan.io/token/0x10F135Ce102Eee47DCA8FE8E19Dca6324DFBD684", + "status": "abandoned", + "id": "0x10F135Ce102Eee47DCA8FE8E19Dca6324DFBD684" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x10F135Ce102Eee47DCA8FE8E19Dca6324DFBD684/logo.png b/blockchains/ethereum/assets/0x10F135Ce102Eee47DCA8FE8E19Dca6324DFBD684/logo.png new file mode 100644 index 00000000..7175e1c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x10F135Ce102Eee47DCA8FE8E19Dca6324DFBD684/logo.png differ diff --git a/blockchains/ethereum/assets/0x10bA8C420e912bF07BEdaC03Aa6908720db04e0c/info.json b/blockchains/ethereum/assets/0x10bA8C420e912bF07BEdaC03Aa6908720db04e0c/info.json new file mode 100644 index 00000000..d59525a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x10bA8C420e912bF07BEdaC03Aa6908720db04e0c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Raise", + "symbol": "RAISE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://raise.it/", + "explorer": "https://etherscan.io/token/0x10bA8C420e912bF07BEdaC03Aa6908720db04e0c", + "status": "active", + "id": "0x10bA8C420e912bF07BEdaC03Aa6908720db04e0c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x10bA8C420e912bF07BEdaC03Aa6908720db04e0c/logo.png b/blockchains/ethereum/assets/0x10bA8C420e912bF07BEdaC03Aa6908720db04e0c/logo.png new file mode 100644 index 00000000..7981bcb9 Binary files /dev/null and b/blockchains/ethereum/assets/0x10bA8C420e912bF07BEdaC03Aa6908720db04e0c/logo.png differ diff --git a/blockchains/ethereum/assets/0x10c71515602429C19d53011EA7040B87a4894838/info.json b/blockchains/ethereum/assets/0x10c71515602429C19d53011EA7040B87a4894838/info.json new file mode 100644 index 00000000..aae9e3f0 --- /dev/null +++ b/blockchains/ethereum/assets/0x10c71515602429C19d53011EA7040B87a4894838/info.json @@ -0,0 +1,11 @@ +{ + "name": "Diamond Platform Token", + "website": "https://cdiamondcoin.com", + "description": "Diamond Network aims to create a transparent and traceable diamond market.", + "explorer": "https://etherscan.io/token/0x10c71515602429C19d53011EA7040B87a4894838", + "type": "ERC20", + "symbol": "DPT", + "decimals": 18, + "status": "active", + "id": "0x10c71515602429C19d53011EA7040B87a4894838" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x10c71515602429C19d53011EA7040B87a4894838/logo.png b/blockchains/ethereum/assets/0x10c71515602429C19d53011EA7040B87a4894838/logo.png new file mode 100644 index 00000000..73ddfdcb Binary files /dev/null and b/blockchains/ethereum/assets/0x10c71515602429C19d53011EA7040B87a4894838/logo.png differ diff --git a/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/info.json b/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/info.json new file mode 100644 index 00000000..cc52a6fa --- /dev/null +++ b/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/info.json @@ -0,0 +1,48 @@ +{ + "name": "Taiko Token", + "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 00000000..2d0790b8 Binary files /dev/null and b/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/logo.png differ diff --git a/blockchains/ethereum/assets/0x10eC0D497824e342bCB0EDcE00959142aAa766dD/info.json b/blockchains/ethereum/assets/0x10eC0D497824e342bCB0EDcE00959142aAa766dD/info.json new file mode 100644 index 00000000..ae90d21f --- /dev/null +++ b/blockchains/ethereum/assets/0x10eC0D497824e342bCB0EDcE00959142aAa766dD/info.json @@ -0,0 +1,11 @@ +{ + "name": "IdleDAI", + "symbol": "IDLEDAI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x10eC0D497824e342bCB0EDcE00959142aAa766dD", + "status": "abandoned", + "id": "0x10eC0D497824e342bCB0EDcE00959142aAa766dD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x10eC0D497824e342bCB0EDcE00959142aAa766dD/logo.png b/blockchains/ethereum/assets/0x10eC0D497824e342bCB0EDcE00959142aAa766dD/logo.png new file mode 100644 index 00000000..cda127cf Binary files /dev/null and b/blockchains/ethereum/assets/0x10eC0D497824e342bCB0EDcE00959142aAa766dD/logo.png differ diff --git a/blockchains/ethereum/assets/0x11003E410ca3FcD220765B3d2f343433A0b2bffd/info.json b/blockchains/ethereum/assets/0x11003E410ca3FcD220765B3d2f343433A0b2bffd/info.json new file mode 100644 index 00000000..0b9c264f --- /dev/null +++ b/blockchains/ethereum/assets/0x11003E410ca3FcD220765B3d2f343433A0b2bffd/info.json @@ -0,0 +1,29 @@ +{ + "name": "METH", + "website": "https://farmingbad.finance", + "description": "FarmingBad is a yield farming project inspired by DeFi protpocols and drastically improved from a tokenomics point of view. We introduced the new concept of inflation called Berhane Model on our block reward and added a model of buybacks through BTC mining.", + "explorer": "https://etherscan.io/token/0x11003E410ca3FcD220765B3d2f343433A0b2bffd", + "type": "ERC20", + "symbol": "METH", + "decimals": 18, + "status": "active", + "id": "0x11003E410ca3FcD220765B3d2f343433A0b2bffd", + "links": [ + { + "name": "x", + "url": "https://x.com/FarmingBad" + }, + { + "name": "telegram", + "url": "https://t.me/FarmingBad" + }, + { + "name": "discord", + "url": "https://discord.com/invite/KvDDnVN2FP" + }, + { + "name": "medium", + "url": "https://medium.com/@FarmingBad" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x11003E410ca3FcD220765B3d2f343433A0b2bffd/logo.png b/blockchains/ethereum/assets/0x11003E410ca3FcD220765B3d2f343433A0b2bffd/logo.png new file mode 100644 index 00000000..2f1686a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x11003E410ca3FcD220765B3d2f343433A0b2bffd/logo.png differ diff --git a/blockchains/ethereum/assets/0x110CAe53912C2Ed9bF279CD70B3b699e26C79E58/info.json b/blockchains/ethereum/assets/0x110CAe53912C2Ed9bF279CD70B3b699e26C79E58/info.json new file mode 100644 index 00000000..e9b91c3c --- /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 00000000..9346b7f1 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 new file mode 100644 index 00000000..bf88d082 --- /dev/null +++ b/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json @@ -0,0 +1,36 @@ +{ + "name": "1INCH Token", + "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", + "type": "ERC20", + "symbol": "1INCH", + "decimals": 18, + "status": "active", + "id": "0x111111111117dC0aa78b770fA6A738034120C302", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/1inch" + }, + { + "name": "x", + "url": "https://x.com/1inchNetwork" + }, + { + "name": "blog", + "url": "https://blog.1inch.io/" + }, + { + "name": "telegram", + "url": "https://t.me/OneInchNetwork" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/1inch/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/logo.png b/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/logo.png new file mode 100644 index 00000000..fc04d19d Binary files /dev/null and b/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/logo.png differ diff --git a/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/info.json b/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/info.json new file mode 100644 index 00000000..09a0a4b3 --- /dev/null +++ b/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/info.json @@ -0,0 +1,32 @@ +{ + "name": "ICHI", + "website": "app.ichi.org", + "description": "The ICHI token is a token built for governing the ICHI DAO.", + "explorer": "https://etherscan.io/token/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6", + "type": "ERC20", + "symbol": "ICHI", + "decimals": 18, + "status": "active", + "id": "0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm" + }, + { + "name": "x", + "url": "https://x.com/ichifoundation" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/logo.png b/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/logo.png new file mode 100644 index 00000000..14b20b48 Binary files /dev/null and b/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/logo.png differ diff --git a/blockchains/ethereum/assets/0x1121AcC14c63f3C872BFcA497d10926A6098AAc5/info.json b/blockchains/ethereum/assets/0x1121AcC14c63f3C872BFcA497d10926A6098AAc5/info.json new file mode 100644 index 00000000..396fe2b3 --- /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 00000000..78a3096d Binary files /dev/null and b/blockchains/ethereum/assets/0x1121AcC14c63f3C872BFcA497d10926A6098AAc5/logo.png differ diff --git a/blockchains/ethereum/assets/0x1122B6a0E00DCe0563082b6e2953f3A943855c1F/info.json b/blockchains/ethereum/assets/0x1122B6a0E00DCe0563082b6e2953f3A943855c1F/info.json new file mode 100644 index 00000000..d5835443 --- /dev/null +++ b/blockchains/ethereum/assets/0x1122B6a0E00DCe0563082b6e2953f3A943855c1F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Centrality", + "website": "https://centrality.ai", + "description": "Centrality is a Kiwi company formed by like-minded individuals that are interested in cutting edge technology and creating something purposeful.", + "explorer": "https://etherscan.io/token/0x1122B6a0E00DCe0563082b6e2953f3A943855c1F", + "type": "ERC20", + "symbol": "CENNZ", + "decimals": 18, + "status": "active", + "id": "0x1122B6a0E00DCe0563082b6e2953f3A943855c1F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1122B6a0E00DCe0563082b6e2953f3A943855c1F/logo.png b/blockchains/ethereum/assets/0x1122B6a0E00DCe0563082b6e2953f3A943855c1F/logo.png new file mode 100644 index 00000000..d86bf40d Binary files /dev/null and b/blockchains/ethereum/assets/0x1122B6a0E00DCe0563082b6e2953f3A943855c1F/logo.png differ diff --git a/blockchains/ethereum/assets/0x1124d4bfF5466EE2c88473E9A8a1cEa119DD0C62/info.json b/blockchains/ethereum/assets/0x1124d4bfF5466EE2c88473E9A8a1cEa119DD0C62/info.json new file mode 100644 index 00000000..5a104519 --- /dev/null +++ b/blockchains/ethereum/assets/0x1124d4bfF5466EE2c88473E9A8a1cEa119DD0C62/info.json @@ -0,0 +1,11 @@ +{ + "name": "Veritoken Security Token", + "symbol": "VTG", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1124d4bfF5466EE2c88473E9A8a1cEa119DD0C62", + "status": "abandoned", + "id": "0x1124d4bfF5466EE2c88473E9A8a1cEa119DD0C62" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1124d4bfF5466EE2c88473E9A8a1cEa119DD0C62/logo.png b/blockchains/ethereum/assets/0x1124d4bfF5466EE2c88473E9A8a1cEa119DD0C62/logo.png new file mode 100644 index 00000000..52478684 Binary files /dev/null and b/blockchains/ethereum/assets/0x1124d4bfF5466EE2c88473E9A8a1cEa119DD0C62/logo.png differ diff --git a/blockchains/ethereum/assets/0x1140043f02d8EE34b10eae2e32AE921cda1459eE/info.json b/blockchains/ethereum/assets/0x1140043f02d8EE34b10eae2e32AE921cda1459eE/info.json new file mode 100644 index 00000000..36f56d92 --- /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 00000000..88eb0a6c Binary files /dev/null and b/blockchains/ethereum/assets/0x1140043f02d8EE34b10eae2e32AE921cda1459eE/logo.png differ diff --git a/blockchains/ethereum/assets/0x11468D142559f6aB61e69B47F30fa6A36c93eE92/info.json b/blockchains/ethereum/assets/0x11468D142559f6aB61e69B47F30fa6A36c93eE92/info.json new file mode 100644 index 00000000..41d398be --- /dev/null +++ b/blockchains/ethereum/assets/0x11468D142559f6aB61e69B47F30fa6A36c93eE92/info.json @@ -0,0 +1,11 @@ +{ + "name": "CombiCoin", + "symbol": "COMBI", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x11468D142559f6aB61e69B47F30fa6A36c93eE92", + "status": "abandoned", + "id": "0x11468D142559f6aB61e69B47F30fa6A36c93eE92" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x11468D142559f6aB61e69B47F30fa6A36c93eE92/logo.png b/blockchains/ethereum/assets/0x11468D142559f6aB61e69B47F30fa6A36c93eE92/logo.png new file mode 100644 index 00000000..cf9aff50 Binary files /dev/null and b/blockchains/ethereum/assets/0x11468D142559f6aB61e69B47F30fa6A36c93eE92/logo.png differ diff --git a/blockchains/ethereum/assets/0x1149CFC37D81304173CD2b203508AB1F6934b81B/info.json b/blockchains/ethereum/assets/0x1149CFC37D81304173CD2b203508AB1F6934b81B/info.json new file mode 100644 index 00000000..25c7c189 --- /dev/null +++ b/blockchains/ethereum/assets/0x1149CFC37D81304173CD2b203508AB1F6934b81B/info.json @@ -0,0 +1,11 @@ +{ + "name": "ASTOX", + "symbol": "ASTX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1149CFC37D81304173CD2b203508AB1F6934b81B", + "status": "abandoned", + "id": "0x1149CFC37D81304173CD2b203508AB1F6934b81B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1149CFC37D81304173CD2b203508AB1F6934b81B/logo.png b/blockchains/ethereum/assets/0x1149CFC37D81304173CD2b203508AB1F6934b81B/logo.png new file mode 100644 index 00000000..58f9e9e9 Binary files /dev/null and b/blockchains/ethereum/assets/0x1149CFC37D81304173CD2b203508AB1F6934b81B/logo.png differ diff --git a/blockchains/ethereum/assets/0x114f1fC16DB3615dE301B39914625a79b912Ea11/info.json b/blockchains/ethereum/assets/0x114f1fC16DB3615dE301B39914625a79b912Ea11/info.json new file mode 100644 index 00000000..4e8b3337 --- /dev/null +++ b/blockchains/ethereum/assets/0x114f1fC16DB3615dE301B39914625a79b912Ea11/info.json @@ -0,0 +1,11 @@ +{ + "name": "UFOHotelCoin", + "symbol": "UHC", + "type": "ERC20", + "decimals": 4, + "description": "UFO-HOTEL with space-age architecture and running autonomously anywhere in the world. Our smart-contracts provides protection of property rights, transparency of booking rooms, commissions to sellers.", + "website": "https://ufohotel.io/", + "explorer": "https://etherscan.io/token/0x114f1fC16DB3615dE301B39914625a79b912Ea11", + "status": "abandoned", + "id": "0x114f1fC16DB3615dE301B39914625a79b912Ea11" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x114f1fC16DB3615dE301B39914625a79b912Ea11/logo.png b/blockchains/ethereum/assets/0x114f1fC16DB3615dE301B39914625a79b912Ea11/logo.png new file mode 100644 index 00000000..8c27a30b Binary files /dev/null and b/blockchains/ethereum/assets/0x114f1fC16DB3615dE301B39914625a79b912Ea11/logo.png differ diff --git a/blockchains/ethereum/assets/0x1151CB3d861920e07a38e03eEAd12C32178567F6/info.json b/blockchains/ethereum/assets/0x1151CB3d861920e07a38e03eEAd12C32178567F6/info.json new file mode 100644 index 00000000..0ed9873d --- /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 00000000..3d2e4188 Binary files /dev/null and b/blockchains/ethereum/assets/0x1151CB3d861920e07a38e03eEAd12C32178567F6/logo.png differ diff --git a/blockchains/ethereum/assets/0x115eC79F1de567eC68B7AE7eDA501b406626478e/info.json b/blockchains/ethereum/assets/0x115eC79F1de567eC68B7AE7eDA501b406626478e/info.json new file mode 100644 index 00000000..2be7e88e --- /dev/null +++ b/blockchains/ethereum/assets/0x115eC79F1de567eC68B7AE7eDA501b406626478e/info.json @@ -0,0 +1,11 @@ +{ + "name": "CarryToken", + "symbol": "CRE", + "type": "ERC20", + "decimals": 18, + "description": "Carry (CRE) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://carryprotocol.io", + "explorer": "https://etherscan.io/token/0x115eC79F1de567eC68B7AE7eDA501b406626478e", + "status": "active", + "id": "0x115eC79F1de567eC68B7AE7eDA501b406626478e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x115eC79F1de567eC68B7AE7eDA501b406626478e/logo.png b/blockchains/ethereum/assets/0x115eC79F1de567eC68B7AE7eDA501b406626478e/logo.png new file mode 100644 index 00000000..59f8bd01 Binary files /dev/null and b/blockchains/ethereum/assets/0x115eC79F1de567eC68B7AE7eDA501b406626478e/logo.png differ diff --git a/blockchains/ethereum/assets/0x11613b1f840bb5A40F8866d857e24DA126B79D73/info.json b/blockchains/ethereum/assets/0x11613b1f840bb5A40F8866d857e24DA126B79D73/info.json new file mode 100644 index 00000000..5ca465ce --- /dev/null +++ b/blockchains/ethereum/assets/0x11613b1f840bb5A40F8866d857e24DA126B79D73/info.json @@ -0,0 +1,12 @@ +{ + "name": "Cappasity", + "website": "https://cappasity.com", + "description": "Cappasity is an easy, scalable platform for creating, embedding, and analyzing 3D and AR/VR content.", + "explorer": "https://etherscan.io/token/0x11613b1f840bb5A40F8866d857e24DA126B79D73", + "research": "", + "type": "ERC20", + "symbol": "CAPP", + "decimals": 2, + "status": "active", + "id": "0x11613b1f840bb5A40F8866d857e24DA126B79D73" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x11613b1f840bb5A40F8866d857e24DA126B79D73/logo.png b/blockchains/ethereum/assets/0x11613b1f840bb5A40F8866d857e24DA126B79D73/logo.png new file mode 100755 index 00000000..b7d4fc17 Binary files /dev/null and b/blockchains/ethereum/assets/0x11613b1f840bb5A40F8866d857e24DA126B79D73/logo.png differ diff --git a/blockchains/ethereum/assets/0x116a790417c31Ab790436A519D1C1F3353Edd4a2/info.json b/blockchains/ethereum/assets/0x116a790417c31Ab790436A519D1C1F3353Edd4a2/info.json new file mode 100644 index 00000000..2a7a5204 --- /dev/null +++ b/blockchains/ethereum/assets/0x116a790417c31Ab790436A519D1C1F3353Edd4a2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trip", + "symbol": "TRIP", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x116a790417c31Ab790436A519D1C1F3353Edd4a2", + "status": "abandoned", + "id": "0x116a790417c31Ab790436A519D1C1F3353Edd4a2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x116a790417c31Ab790436A519D1C1F3353Edd4a2/logo.png b/blockchains/ethereum/assets/0x116a790417c31Ab790436A519D1C1F3353Edd4a2/logo.png new file mode 100644 index 00000000..e809c20c Binary files /dev/null and b/blockchains/ethereum/assets/0x116a790417c31Ab790436A519D1C1F3353Edd4a2/logo.png differ diff --git a/blockchains/ethereum/assets/0x11799ef12A8b4e79865abb167DF88f14629d1E4f/info.json b/blockchains/ethereum/assets/0x11799ef12A8b4e79865abb167DF88f14629d1E4f/info.json new file mode 100644 index 00000000..79a400a2 --- /dev/null +++ b/blockchains/ethereum/assets/0x11799ef12A8b4e79865abb167DF88f14629d1E4f/info.json @@ -0,0 +1,11 @@ +{ + "name": "BETX Share", + "symbol": "BETX", + "type": "ERC20", + "decimals": 2, + "description": "Blockchain-powered platform and unique investment elements deliver the most engaging, fairest playing and poker platform on the market.", + "website": "https://betxshare.com/", + "explorer": "https://etherscan.io/token/0x11799ef12A8b4e79865abb167DF88f14629d1E4f", + "status": "abandoned", + "id": "0x11799ef12A8b4e79865abb167DF88f14629d1E4f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x11799ef12A8b4e79865abb167DF88f14629d1E4f/logo.png b/blockchains/ethereum/assets/0x11799ef12A8b4e79865abb167DF88f14629d1E4f/logo.png new file mode 100644 index 00000000..7e248976 Binary files /dev/null and b/blockchains/ethereum/assets/0x11799ef12A8b4e79865abb167DF88f14629d1E4f/logo.png differ diff --git a/blockchains/ethereum/assets/0x1183F92A5624D68e85FFB9170F16BF0443B4c242/info.json b/blockchains/ethereum/assets/0x1183F92A5624D68e85FFB9170F16BF0443B4c242/info.json new file mode 100644 index 00000000..d4ff22cc --- /dev/null +++ b/blockchains/ethereum/assets/0x1183F92A5624D68e85FFB9170F16BF0443B4c242/info.json @@ -0,0 +1,11 @@ +{ + "name": "QVT", + "symbol": "QVT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1183F92A5624D68e85FFB9170F16BF0443B4c242", + "status": "abandoned", + "id": "0x1183F92A5624D68e85FFB9170F16BF0443B4c242" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1183F92A5624D68e85FFB9170F16BF0443B4c242/logo.png b/blockchains/ethereum/assets/0x1183F92A5624D68e85FFB9170F16BF0443B4c242/logo.png new file mode 100644 index 00000000..ef2bf4d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x1183F92A5624D68e85FFB9170F16BF0443B4c242/logo.png differ diff --git a/blockchains/ethereum/assets/0x118b552725e1892137740cB4d29390D952709639/info.json b/blockchains/ethereum/assets/0x118b552725e1892137740cB4d29390D952709639/info.json new file mode 100644 index 00000000..32144e8b --- /dev/null +++ b/blockchains/ethereum/assets/0x118b552725e1892137740cB4d29390D952709639/info.json @@ -0,0 +1,32 @@ +{ + "name": "Nyx Token", + "type": "ERC20", + "symbol": "NYXT", + "decimals": 9, + "website": "https://nyxtoken.org", + "description": "Nyx has an 8% tax taken from every purchase and sale, 4% is split to help MS and Veterans through charitble donations.2 is sent back to the holders,1 each is burned and project marketing wallet for future growth.", + "explorer": "https://etherscan.io/token/0x118b552725e1892137740cB4d29390D952709639", + "status": "active", + "id": "0x118b552725e1892137740cB4d29390D952709639", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nyx-token/" + }, + { + "name": "telegram", + "url": "https://t.me/NyxGeneral" + }, + { + "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/0x118b552725e1892137740cB4d29390D952709639/logo.png b/blockchains/ethereum/assets/0x118b552725e1892137740cB4d29390D952709639/logo.png new file mode 100644 index 00000000..88138a61 Binary files /dev/null and b/blockchains/ethereum/assets/0x118b552725e1892137740cB4d29390D952709639/logo.png differ diff --git a/blockchains/ethereum/assets/0x11905B73cc08C6d96A9012b4EdF45b03243503b8/info.json b/blockchains/ethereum/assets/0x11905B73cc08C6d96A9012b4EdF45b03243503b8/info.json new file mode 100644 index 00000000..0d3e3088 --- /dev/null +++ b/blockchains/ethereum/assets/0x11905B73cc08C6d96A9012b4EdF45b03243503b8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planemo Xchange Utility", + "symbol": "PXU", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x11905B73cc08C6d96A9012b4EdF45b03243503b8", + "status": "abandoned", + "id": "0x11905B73cc08C6d96A9012b4EdF45b03243503b8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x11905B73cc08C6d96A9012b4EdF45b03243503b8/logo.png b/blockchains/ethereum/assets/0x11905B73cc08C6d96A9012b4EdF45b03243503b8/logo.png new file mode 100644 index 00000000..a4073a06 Binary files /dev/null and b/blockchains/ethereum/assets/0x11905B73cc08C6d96A9012b4EdF45b03243503b8/logo.png differ diff --git a/blockchains/ethereum/assets/0x11A2Ab94adE17e96197C78f9D5f057332a19a0b9/info.json b/blockchains/ethereum/assets/0x11A2Ab94adE17e96197C78f9D5f057332a19a0b9/info.json new file mode 100644 index 00000000..cd31c5d2 --- /dev/null +++ b/blockchains/ethereum/assets/0x11A2Ab94adE17e96197C78f9D5f057332a19a0b9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Orbicular", + "website": "https://hypeforhotdogs.com/orbicular", + "description": "Orbicular is a cryptocurrency with a supply that cyclically increases and decreases through rebases.", + "explorer": "https://etherscan.io/token/0x11A2Ab94adE17e96197C78f9D5f057332a19a0b9", + "type": "ERC20", + "symbol": "ORBI", + "decimals": 9, + "status": "active", + "id": "0x11A2Ab94adE17e96197C78f9D5f057332a19a0b9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x11A2Ab94adE17e96197C78f9D5f057332a19a0b9/logo.png b/blockchains/ethereum/assets/0x11A2Ab94adE17e96197C78f9D5f057332a19a0b9/logo.png new file mode 100644 index 00000000..f7eac4b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x11A2Ab94adE17e96197C78f9D5f057332a19a0b9/logo.png differ diff --git a/blockchains/ethereum/assets/0x11Bbad1c935b87CB83543B9288d1A2a73A90Bf1C/info.json b/blockchains/ethereum/assets/0x11Bbad1c935b87CB83543B9288d1A2a73A90Bf1C/info.json new file mode 100644 index 00000000..26c913af --- /dev/null +++ b/blockchains/ethereum/assets/0x11Bbad1c935b87CB83543B9288d1A2a73A90Bf1C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hexultra", + "website": "https://hexultra.com", + "description": "Hexultra - the ultimate deflationary token", + "explorer": "https://etherscan.io/token/0x11Bbad1c935b87CB83543B9288d1A2a73A90Bf1C", + "type": "ERC20", + "symbol": "HEXULTRA", + "decimals": 18, + "status": "active", + "id": "0x11Bbad1c935b87CB83543B9288d1A2a73A90Bf1C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x11Bbad1c935b87CB83543B9288d1A2a73A90Bf1C/logo.png b/blockchains/ethereum/assets/0x11Bbad1c935b87CB83543B9288d1A2a73A90Bf1C/logo.png new file mode 100755 index 00000000..08c038e5 Binary files /dev/null and b/blockchains/ethereum/assets/0x11Bbad1c935b87CB83543B9288d1A2a73A90Bf1C/logo.png differ diff --git a/blockchains/ethereum/assets/0x11Ded8aDdDa881F700FBDa2Fe2030656289322a3/info.json b/blockchains/ethereum/assets/0x11Ded8aDdDa881F700FBDa2Fe2030656289322a3/info.json new file mode 100644 index 00000000..bd905952 --- /dev/null +++ b/blockchains/ethereum/assets/0x11Ded8aDdDa881F700FBDa2Fe2030656289322a3/info.json @@ -0,0 +1,11 @@ +{ + "name": "AfterShock", + "symbol": "SHOCK", + "type": "ERC20", + "decimals": 18, + "description": "AfterShock is a deflationary staking token with no technical knowledge needed for staking. Holding coins in an ERC-20 wallet is all that is required to participate in staking.", + "website": "https://aftershock.vip/", + "explorer": "https://etherscan.io/token/0x11Ded8aDdDa881F700FBDa2Fe2030656289322a3", + "status": "abandoned", + "id": "0x11Ded8aDdDa881F700FBDa2Fe2030656289322a3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x11Ded8aDdDa881F700FBDa2Fe2030656289322a3/logo.png b/blockchains/ethereum/assets/0x11Ded8aDdDa881F700FBDa2Fe2030656289322a3/logo.png new file mode 100644 index 00000000..5dfc0a61 Binary files /dev/null and b/blockchains/ethereum/assets/0x11Ded8aDdDa881F700FBDa2Fe2030656289322a3/logo.png differ diff --git a/blockchains/ethereum/assets/0x11E0b97730A67E6dfb8A917Ce9a464Bf6Fb1ABE0/info.json b/blockchains/ethereum/assets/0x11E0b97730A67E6dfb8A917Ce9a464Bf6Fb1ABE0/info.json new file mode 100644 index 00000000..53585663 --- /dev/null +++ b/blockchains/ethereum/assets/0x11E0b97730A67E6dfb8A917Ce9a464Bf6Fb1ABE0/info.json @@ -0,0 +1,11 @@ +{ + "name": "IzerBlack", + "symbol": "IZB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://izerblack.com/", + "explorer": "https://etherscan.io/token/0x11E0b97730A67E6dfb8A917Ce9a464Bf6Fb1ABE0", + "status": "abandoned", + "id": "0x11E0b97730A67E6dfb8A917Ce9a464Bf6Fb1ABE0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x11E0b97730A67E6dfb8A917Ce9a464Bf6Fb1ABE0/logo.png b/blockchains/ethereum/assets/0x11E0b97730A67E6dfb8A917Ce9a464Bf6Fb1ABE0/logo.png new file mode 100644 index 00000000..69b8ae6e Binary files /dev/null and b/blockchains/ethereum/assets/0x11E0b97730A67E6dfb8A917Ce9a464Bf6Fb1ABE0/logo.png differ diff --git a/blockchains/ethereum/assets/0x11baBe4a1Dee350BA5b5aD902F1d2C9822A0a98B/info.json b/blockchains/ethereum/assets/0x11baBe4a1Dee350BA5b5aD902F1d2C9822A0a98B/info.json new file mode 100644 index 00000000..ff1cae95 --- /dev/null +++ b/blockchains/ethereum/assets/0x11baBe4a1Dee350BA5b5aD902F1d2C9822A0a98B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short WBTC-DAI 4x v2", + "symbol": "dsWBTC4x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x11baBe4a1Dee350BA5b5aD902F1d2C9822A0a98B", + "status": "abandoned", + "id": "0x11baBe4a1Dee350BA5b5aD902F1d2C9822A0a98B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x11baBe4a1Dee350BA5b5aD902F1d2C9822A0a98B/logo.png b/blockchains/ethereum/assets/0x11baBe4a1Dee350BA5b5aD902F1d2C9822A0a98B/logo.png new file mode 100644 index 00000000..46891938 Binary files /dev/null and b/blockchains/ethereum/assets/0x11baBe4a1Dee350BA5b5aD902F1d2C9822A0a98B/logo.png differ diff --git a/blockchains/ethereum/assets/0x11dD5dDdD1bd9b2Df6fF908FBcf8Db09CefED29B/info.json b/blockchains/ethereum/assets/0x11dD5dDdD1bd9b2Df6fF908FBcf8Db09CefED29B/info.json new file mode 100644 index 00000000..61e66f52 --- /dev/null +++ b/blockchains/ethereum/assets/0x11dD5dDdD1bd9b2Df6fF908FBcf8Db09CefED29B/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRUSTED PROPERTY PROTOCOL", + "symbol": "TPP", + "type": "ERC20", + "decimals": 12, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x11dD5dDdD1bd9b2Df6fF908FBcf8Db09CefED29B", + "status": "abandoned", + "id": "0x11dD5dDdD1bd9b2Df6fF908FBcf8Db09CefED29B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x11dD5dDdD1bd9b2Df6fF908FBcf8Db09CefED29B/logo.png b/blockchains/ethereum/assets/0x11dD5dDdD1bd9b2Df6fF908FBcf8Db09CefED29B/logo.png new file mode 100644 index 00000000..672c9455 Binary files /dev/null and b/blockchains/ethereum/assets/0x11dD5dDdD1bd9b2Df6fF908FBcf8Db09CefED29B/logo.png differ diff --git a/blockchains/ethereum/assets/0x11eeF04c884E24d9B7B4760e7476D06ddF797f36/info.json b/blockchains/ethereum/assets/0x11eeF04c884E24d9B7B4760e7476D06ddF797f36/info.json new file mode 100644 index 00000000..2714dd54 --- /dev/null +++ b/blockchains/ethereum/assets/0x11eeF04c884E24d9B7B4760e7476D06ddF797f36/info.json @@ -0,0 +1,11 @@ +{ + "name": "MX Token", + "website": "https://mxc.com", + "description": "MX is the native token of the MXC trading platform. MX holders reportedly benefit from asset appreciation, rebates on platform revenue, supervision, and voting.", + "explorer": "https://etherscan.io/token/0x11eeF04c884E24d9B7B4760e7476D06ddF797f36", + "type": "ERC20", + "symbol": "MX", + "decimals": 18, + "status": "active", + "id": "0x11eeF04c884E24d9B7B4760e7476D06ddF797f36" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x11eeF04c884E24d9B7B4760e7476D06ddF797f36/logo.png b/blockchains/ethereum/assets/0x11eeF04c884E24d9B7B4760e7476D06ddF797f36/logo.png new file mode 100644 index 00000000..55e36825 Binary files /dev/null and b/blockchains/ethereum/assets/0x11eeF04c884E24d9B7B4760e7476D06ddF797f36/logo.png differ diff --git a/blockchains/ethereum/assets/0x121D13E8128E622382B881A615b723ACdBc0b67b/info.json b/blockchains/ethereum/assets/0x121D13E8128E622382B881A615b723ACdBc0b67b/info.json new file mode 100644 index 00000000..6f9a00c3 --- /dev/null +++ b/blockchains/ethereum/assets/0x121D13E8128E622382B881A615b723ACdBc0b67b/info.json @@ -0,0 +1,11 @@ +{ + "name": "TeleBet Token", + "symbol": "TLBT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x121D13E8128E622382B881A615b723ACdBc0b67b", + "status": "abandoned", + "id": "0x121D13E8128E622382B881A615b723ACdBc0b67b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x121D13E8128E622382B881A615b723ACdBc0b67b/logo.png b/blockchains/ethereum/assets/0x121D13E8128E622382B881A615b723ACdBc0b67b/logo.png new file mode 100644 index 00000000..99c8fb05 Binary files /dev/null and b/blockchains/ethereum/assets/0x121D13E8128E622382B881A615b723ACdBc0b67b/logo.png differ diff --git a/blockchains/ethereum/assets/0x122940c4C5F9cCFAe7Fa86455a42D3EC140855cE/info.json b/blockchains/ethereum/assets/0x122940c4C5F9cCFAe7Fa86455a42D3EC140855cE/info.json new file mode 100644 index 00000000..bddfc700 --- /dev/null +++ b/blockchains/ethereum/assets/0x122940c4C5F9cCFAe7Fa86455a42D3EC140855cE/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Bitcoin Trust (Ondo Tokenized)", + "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 00000000..d163a75f Binary files /dev/null and b/blockchains/ethereum/assets/0x122940c4C5F9cCFAe7Fa86455a42D3EC140855cE/logo.png differ diff --git a/blockchains/ethereum/assets/0x122A86b5DFF2D085AfB49600b4cd7375D0d94A5f/info.json b/blockchains/ethereum/assets/0x122A86b5DFF2D085AfB49600b4cd7375D0d94A5f/info.json new file mode 100644 index 00000000..a4d1fa2d --- /dev/null +++ b/blockchains/ethereum/assets/0x122A86b5DFF2D085AfB49600b4cd7375D0d94A5f/info.json @@ -0,0 +1,14 @@ +{ + "name": "ITL (Italian Lira)", + "symbol": "ITL", + "type": "ERC20", + "decimals": 8, + "description": "ITL will be used for online and offline purchases, crypto trading and for all future payment transactions.", + "website": "https://www.italianlira.ws/", + "explorer": "https://etherscan.io/token/0x122A86b5DFF2D085AfB49600b4cd7375D0d94A5f", + "status": "active", + "id": "0x122A86b5DFF2D085AfB49600b4cd7375D0d94A5f", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x122A86b5DFF2D085AfB49600b4cd7375D0d94A5f/logo.png b/blockchains/ethereum/assets/0x122A86b5DFF2D085AfB49600b4cd7375D0d94A5f/logo.png new file mode 100644 index 00000000..6e4e49f9 Binary files /dev/null and b/blockchains/ethereum/assets/0x122A86b5DFF2D085AfB49600b4cd7375D0d94A5f/logo.png differ diff --git a/blockchains/ethereum/assets/0x122DDEf02a8Ad8F7a91c2c8090C0cf410E701B22/info.json b/blockchains/ethereum/assets/0x122DDEf02a8Ad8F7a91c2c8090C0cf410E701B22/info.json new file mode 100644 index 00000000..101a0042 --- /dev/null +++ b/blockchains/ethereum/assets/0x122DDEf02a8Ad8F7a91c2c8090C0cf410E701B22/info.json @@ -0,0 +1,11 @@ +{ + "name": "Platinum", + "symbol": "CSC-PL", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x122DDEf02a8Ad8F7a91c2c8090C0cf410E701B22", + "status": "abandoned", + "id": "0x122DDEf02a8Ad8F7a91c2c8090C0cf410E701B22" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x122DDEf02a8Ad8F7a91c2c8090C0cf410E701B22/logo.png b/blockchains/ethereum/assets/0x122DDEf02a8Ad8F7a91c2c8090C0cf410E701B22/logo.png new file mode 100755 index 00000000..3319b371 Binary files /dev/null and b/blockchains/ethereum/assets/0x122DDEf02a8Ad8F7a91c2c8090C0cf410E701B22/logo.png differ diff --git a/blockchains/ethereum/assets/0x1234567461d3f8Db7496581774Bd869C83D51c93/info.json b/blockchains/ethereum/assets/0x1234567461d3f8Db7496581774Bd869C83D51c93/info.json new file mode 100644 index 00000000..b65146c5 --- /dev/null +++ b/blockchains/ethereum/assets/0x1234567461d3f8Db7496581774Bd869C83D51c93/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitClave", + "symbol": "CAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.bitclave.com/", + "explorer": "https://etherscan.io/token/0x1234567461d3f8Db7496581774Bd869C83D51c93", + "status": "abandoned", + "id": "0x1234567461d3f8Db7496581774Bd869C83D51c93" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1234567461d3f8Db7496581774Bd869C83D51c93/logo.png b/blockchains/ethereum/assets/0x1234567461d3f8Db7496581774Bd869C83D51c93/logo.png new file mode 100755 index 00000000..7b0861ff Binary files /dev/null and b/blockchains/ethereum/assets/0x1234567461d3f8Db7496581774Bd869C83D51c93/logo.png differ diff --git a/blockchains/ethereum/assets/0x1237b0d12B15e3c609e37885597bFCad85745cf1/info.json b/blockchains/ethereum/assets/0x1237b0d12B15e3c609e37885597bFCad85745cf1/info.json new file mode 100644 index 00000000..748263db --- /dev/null +++ b/blockchains/ethereum/assets/0x1237b0d12B15e3c609e37885597bFCad85745cf1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Serve", + "symbol": "SERV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1237b0d12B15e3c609e37885597bFCad85745cf1", + "status": "abandoned", + "id": "0x1237b0d12B15e3c609e37885597bFCad85745cf1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1237b0d12B15e3c609e37885597bFCad85745cf1/logo.png b/blockchains/ethereum/assets/0x1237b0d12B15e3c609e37885597bFCad85745cf1/logo.png new file mode 100644 index 00000000..9bd9adb4 Binary files /dev/null and b/blockchains/ethereum/assets/0x1237b0d12B15e3c609e37885597bFCad85745cf1/logo.png differ diff --git a/blockchains/ethereum/assets/0x123F2B75b9a7a9da8dC483976bFd81EfF9f0EA8d/info.json b/blockchains/ethereum/assets/0x123F2B75b9a7a9da8dC483976bFd81EfF9f0EA8d/info.json new file mode 100644 index 00000000..4f901e8c --- /dev/null +++ b/blockchains/ethereum/assets/0x123F2B75b9a7a9da8dC483976bFd81EfF9f0EA8d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long KNC-DAI 2x v2", + "symbol": "dLKNC2x", + "type": "ERC20", + "decimals": 18, + "description": "pTokens are priced relative to the positions they represent. The exchange rate of a pToken initially corresponds one to one thousand (1:1,000) with the loan asset.", + "website": "https://bzx.network/", + "explorer": "https://etherscan.io/token/0x123F2B75b9a7a9da8dC483976bFd81EfF9f0EA8d", + "status": "abandoned", + "id": "0x123F2B75b9a7a9da8dC483976bFd81EfF9f0EA8d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x123F2B75b9a7a9da8dC483976bFd81EfF9f0EA8d/logo.png b/blockchains/ethereum/assets/0x123F2B75b9a7a9da8dC483976bFd81EfF9f0EA8d/logo.png new file mode 100644 index 00000000..8703f28e Binary files /dev/null and b/blockchains/ethereum/assets/0x123F2B75b9a7a9da8dC483976bFd81EfF9f0EA8d/logo.png differ diff --git a/blockchains/ethereum/assets/0x1245ef80F4d9e02ED9425375e8F649B9221b31D8/info.json b/blockchains/ethereum/assets/0x1245ef80F4d9e02ED9425375e8F649B9221b31D8/info.json new file mode 100644 index 00000000..52ecc0ba --- /dev/null +++ b/blockchains/ethereum/assets/0x1245ef80F4d9e02ED9425375e8F649B9221b31D8/info.json @@ -0,0 +1,11 @@ +{ + "name": "ArbitrageCT", + "symbol": "ARCT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://arbitragect.com/en/index.html", + "explorer": "https://etherscan.io/token/0x1245ef80F4d9e02ED9425375e8F649B9221b31D8", + "status": "abandoned", + "id": "0x1245ef80F4d9e02ED9425375e8F649B9221b31D8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1245ef80F4d9e02ED9425375e8F649B9221b31D8/logo.png b/blockchains/ethereum/assets/0x1245ef80F4d9e02ED9425375e8F649B9221b31D8/logo.png new file mode 100644 index 00000000..f7ed30d8 Binary files /dev/null and b/blockchains/ethereum/assets/0x1245ef80F4d9e02ED9425375e8F649B9221b31D8/logo.png differ diff --git a/blockchains/ethereum/assets/0x12480E24eb5bec1a9D4369CaB6a80caD3c0A377A/info.json b/blockchains/ethereum/assets/0x12480E24eb5bec1a9D4369CaB6a80caD3c0A377A/info.json new file mode 100644 index 00000000..274cc31d --- /dev/null +++ b/blockchains/ethereum/assets/0x12480E24eb5bec1a9D4369CaB6a80caD3c0A377A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Substratum", + "symbol": "SUB", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x12480E24eb5bec1a9D4369CaB6a80caD3c0A377A", + "status": "abandoned", + "id": "0x12480E24eb5bec1a9D4369CaB6a80caD3c0A377A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12480E24eb5bec1a9D4369CaB6a80caD3c0A377A/logo.png b/blockchains/ethereum/assets/0x12480E24eb5bec1a9D4369CaB6a80caD3c0A377A/logo.png new file mode 100755 index 00000000..49bc5182 Binary files /dev/null and b/blockchains/ethereum/assets/0x12480E24eb5bec1a9D4369CaB6a80caD3c0A377A/logo.png differ diff --git a/blockchains/ethereum/assets/0x12513335ffD5DAfc2334e98625d27c1CA84bff86/info.json b/blockchains/ethereum/assets/0x12513335ffD5DAfc2334e98625d27c1CA84bff86/info.json new file mode 100644 index 00000000..3a048df0 --- /dev/null +++ b/blockchains/ethereum/assets/0x12513335ffD5DAfc2334e98625d27c1CA84bff86/info.json @@ -0,0 +1,11 @@ +{ + "name": "AME Token", + "symbol": "AME", + "type": "ERC20", + "decimals": 18, + "description": "AMEPAY is a cryptocurrency-based payment alternative that is fast, convenient, and secure. AMEPAY eliminates the complexity, high-costs, and delays that are familiar to the present system and replaces it with a simple, affordable, and quick network.", + "website": "https://amepay.io/", + "explorer": "https://etherscan.io/token/0x12513335ffD5DAfc2334e98625d27c1CA84bff86", + "status": "active", + "id": "0x12513335ffD5DAfc2334e98625d27c1CA84bff86" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12513335ffD5DAfc2334e98625d27c1CA84bff86/logo.png b/blockchains/ethereum/assets/0x12513335ffD5DAfc2334e98625d27c1CA84bff86/logo.png new file mode 100644 index 00000000..49f3c711 Binary files /dev/null and b/blockchains/ethereum/assets/0x12513335ffD5DAfc2334e98625d27c1CA84bff86/logo.png differ diff --git a/blockchains/ethereum/assets/0x1254E59712e6e727dC71E0E3121Ae952b2c4c3b6/info.json b/blockchains/ethereum/assets/0x1254E59712e6e727dC71E0E3121Ae952b2c4c3b6/info.json new file mode 100644 index 00000000..b93fed4a --- /dev/null +++ b/blockchains/ethereum/assets/0x1254E59712e6e727dC71E0E3121Ae952b2c4c3b6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Marginless Token", + "symbol": "MRS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1254E59712e6e727dC71E0E3121Ae952b2c4c3b6", + "status": "abandoned", + "id": "0x1254E59712e6e727dC71E0E3121Ae952b2c4c3b6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1254E59712e6e727dC71E0E3121Ae952b2c4c3b6/logo.png b/blockchains/ethereum/assets/0x1254E59712e6e727dC71E0E3121Ae952b2c4c3b6/logo.png new file mode 100644 index 00000000..b77dcec5 Binary files /dev/null and b/blockchains/ethereum/assets/0x1254E59712e6e727dC71E0E3121Ae952b2c4c3b6/logo.png differ diff --git a/blockchains/ethereum/assets/0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870/info.json b/blockchains/ethereum/assets/0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870/info.json new file mode 100644 index 00000000..7838aa46 --- /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 00000000..219d77c7 Binary files /dev/null and b/blockchains/ethereum/assets/0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870/logo.png differ diff --git a/blockchains/ethereum/assets/0x125F9d5daa039bDB79D36bAff667e9E0bbcEA998/info.json b/blockchains/ethereum/assets/0x125F9d5daa039bDB79D36bAff667e9E0bbcEA998/info.json new file mode 100644 index 00000000..b90ec607 --- /dev/null +++ b/blockchains/ethereum/assets/0x125F9d5daa039bDB79D36bAff667e9E0bbcEA998/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fire Token", + "symbol": "FIRE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://firetoken.co/", + "explorer": "https://etherscan.io/token/0x125F9d5daa039bDB79D36bAff667e9E0bbcEA998", + "status": "abandoned", + "id": "0x125F9d5daa039bDB79D36bAff667e9E0bbcEA998" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x125F9d5daa039bDB79D36bAff667e9E0bbcEA998/logo.png b/blockchains/ethereum/assets/0x125F9d5daa039bDB79D36bAff667e9E0bbcEA998/logo.png new file mode 100644 index 00000000..2136d2e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x125F9d5daa039bDB79D36bAff667e9E0bbcEA998/logo.png differ diff --git a/blockchains/ethereum/assets/0x12683Dc9eEc95a5F742D40206e73319E6b9d8A91/info.json b/blockchains/ethereum/assets/0x12683Dc9eEc95a5F742D40206e73319E6b9d8A91/info.json new file mode 100644 index 00000000..3efe88dd --- /dev/null +++ b/blockchains/ethereum/assets/0x12683Dc9eEc95a5F742D40206e73319E6b9d8A91/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAB Token", + "symbol": "FAB", + "type": "ERC20", + "decimals": 18, + "description": "FABRK is building the missing “People Protocol” of the internet. It’s like HTTP, but for finding people instead of websites. It allows people to own their data, freely exchange value and digital currency, and discover new ways to socialize.", + "website": "https://www.fabrk.io/", + "explorer": "https://etherscan.io/token/0x12683Dc9eEc95a5F742D40206e73319E6b9d8A91", + "status": "active", + "id": "0x12683Dc9eEc95a5F742D40206e73319E6b9d8A91" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12683Dc9eEc95a5F742D40206e73319E6b9d8A91/logo.png b/blockchains/ethereum/assets/0x12683Dc9eEc95a5F742D40206e73319E6b9d8A91/logo.png new file mode 100644 index 00000000..ad2a94ff Binary files /dev/null and b/blockchains/ethereum/assets/0x12683Dc9eEc95a5F742D40206e73319E6b9d8A91/logo.png differ diff --git a/blockchains/ethereum/assets/0x12759512D326303B45f1ceC8F7B6fd96F387778E/info.json b/blockchains/ethereum/assets/0x12759512D326303B45f1ceC8F7B6fd96F387778E/info.json new file mode 100644 index 00000000..8af99590 --- /dev/null +++ b/blockchains/ethereum/assets/0x12759512D326303B45f1ceC8F7B6fd96F387778E/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrakInvest Token", + "symbol": "TRAK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x12759512D326303B45f1ceC8F7B6fd96F387778E", + "status": "abandoned", + "id": "0x12759512D326303B45f1ceC8F7B6fd96F387778E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12759512D326303B45f1ceC8F7B6fd96F387778E/logo.png b/blockchains/ethereum/assets/0x12759512D326303B45f1ceC8F7B6fd96F387778E/logo.png new file mode 100644 index 00000000..c29debb6 Binary files /dev/null and b/blockchains/ethereum/assets/0x12759512D326303B45f1ceC8F7B6fd96F387778E/logo.png differ diff --git a/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/info.json b/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/info.json new file mode 100644 index 00000000..9e69d5de --- /dev/null +++ b/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/info.json @@ -0,0 +1,28 @@ +{ + "name": "Ladz", + "symbol": "LADZ", + "type": "ERC20", + "decimals": 4, + "description": "$LADZ is the social token of the Layer1 channel and network.", + "website": "http://ladz.city/", + "explorer": "https://etherscan.io/token/0x1287c0509df9a475Ef178471aB2132b9dfD312B3", + "status": "active", + "id": "0x1287c0509df9a475Ef178471aB2132b9dfD312B3", + "links": [ + { + "name": "x", + "url": "https://x.com/ladzcity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/aX5bGCBkmR/" + }, + { + "name": "youtube", + "url": "https://youtube.com/LADZCity" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/logo.png b/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/logo.png new file mode 100644 index 00000000..91ac0657 Binary files /dev/null and b/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/logo.png differ diff --git a/blockchains/ethereum/assets/0x128F3e482F5Bd5F08Fe1b216E60EC0A6013deAB9/info.json b/blockchains/ethereum/assets/0x128F3e482F5Bd5F08Fe1b216E60EC0A6013deAB9/info.json new file mode 100644 index 00000000..2ccd503f --- /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 00000000..addc99ce Binary files /dev/null and b/blockchains/ethereum/assets/0x128F3e482F5Bd5F08Fe1b216E60EC0A6013deAB9/logo.png differ diff --git a/blockchains/ethereum/assets/0x128dcA40805845c5257048959F933102256eCa69/info.json b/blockchains/ethereum/assets/0x128dcA40805845c5257048959F933102256eCa69/info.json new file mode 100644 index 00000000..2d6dd59b --- /dev/null +++ b/blockchains/ethereum/assets/0x128dcA40805845c5257048959F933102256eCa69/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aurora Network", + "symbol": "ANK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x128dcA40805845c5257048959F933102256eCa69", + "status": "abandoned", + "id": "0x128dcA40805845c5257048959F933102256eCa69" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x128dcA40805845c5257048959F933102256eCa69/logo.png b/blockchains/ethereum/assets/0x128dcA40805845c5257048959F933102256eCa69/logo.png new file mode 100644 index 00000000..8131b021 Binary files /dev/null and b/blockchains/ethereum/assets/0x128dcA40805845c5257048959F933102256eCa69/logo.png differ diff --git a/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json b/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json new file mode 100644 index 00000000..7177ff96 --- /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 00000000..9939ad9e 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 new file mode 100644 index 00000000..2e14d435 --- /dev/null +++ b/blockchains/ethereum/assets/0x12970E6868f88f6557B76120662c1B3E50A646bf/info.json @@ -0,0 +1,28 @@ +{ + "name": "Milady", + "type": "ERC20", + "symbol": "LADYS", + "decimals": 18, + "website": "https://milady.gg/", + "description": "$LADYS is appropriating the tokenisation model to facilitate the accumulation of meme capital in the era of unstoppable meme coins.", + "explorer": "https://etherscan.io/token/0x12970e6868f88f6557b76120662c1b3e50a646bf", + "status": "active", + "id": "0x12970E6868f88f6557B76120662c1B3E50A646bf", + "links": [ + { + "name": "x", + "url": "https://x.com/miladymemecoin" + }, + { + "name": "telegram", + "url": "https://t.me/miladymemecoinchannel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/milady-meme-coin/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12970E6868f88f6557B76120662c1B3E50A646bf/logo.png b/blockchains/ethereum/assets/0x12970E6868f88f6557B76120662c1B3E50A646bf/logo.png new file mode 100644 index 00000000..aec8f995 Binary files /dev/null and b/blockchains/ethereum/assets/0x12970E6868f88f6557B76120662c1B3E50A646bf/logo.png differ diff --git a/blockchains/ethereum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json b/blockchains/ethereum/assets/0x12992613fDd35aBe95DEc5a4964331b1ee23B50d/info.json new file mode 100644 index 00000000..a814e3b7 --- /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 00000000..1add0de4 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 00000000..fcf654e9 --- /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 00000000..0f1f069e Binary files /dev/null and b/blockchains/ethereum/assets/0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4/logo.png differ diff --git a/blockchains/ethereum/assets/0x129D0b4bfC484C9b58BDaBf3023c7ee9A420de1E/info.json b/blockchains/ethereum/assets/0x129D0b4bfC484C9b58BDaBf3023c7ee9A420de1E/info.json new file mode 100644 index 00000000..251e6436 --- /dev/null +++ b/blockchains/ethereum/assets/0x129D0b4bfC484C9b58BDaBf3023c7ee9A420de1E/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR 700", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x129D0b4bfC484C9b58BDaBf3023c7ee9A420de1E", + "status": "abandoned", + "id": "0x129D0b4bfC484C9b58BDaBf3023c7ee9A420de1E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x129D0b4bfC484C9b58BDaBf3023c7ee9A420de1E/logo.png b/blockchains/ethereum/assets/0x129D0b4bfC484C9b58BDaBf3023c7ee9A420de1E/logo.png new file mode 100644 index 00000000..2d797048 Binary files /dev/null and b/blockchains/ethereum/assets/0x129D0b4bfC484C9b58BDaBf3023c7ee9A420de1E/logo.png differ diff --git a/blockchains/ethereum/assets/0x129c8aC258bf01a43f6511EA7951Ff762B34D345/info.json b/blockchains/ethereum/assets/0x129c8aC258bf01a43f6511EA7951Ff762B34D345/info.json new file mode 100644 index 00000000..771d71e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x129c8aC258bf01a43f6511EA7951Ff762B34D345/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitcoinMoon", + "symbol": "BTCM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x129c8aC258bf01a43f6511EA7951Ff762B34D345", + "status": "abandoned", + "id": "0x129c8aC258bf01a43f6511EA7951Ff762B34D345" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x129c8aC258bf01a43f6511EA7951Ff762B34D345/logo.png b/blockchains/ethereum/assets/0x129c8aC258bf01a43f6511EA7951Ff762B34D345/logo.png new file mode 100644 index 00000000..51cc36d3 Binary files /dev/null and b/blockchains/ethereum/assets/0x129c8aC258bf01a43f6511EA7951Ff762B34D345/logo.png differ diff --git a/blockchains/ethereum/assets/0x12A64aE35CCcBF75c169f0a4BDafEeeFEFa1958c/info.json b/blockchains/ethereum/assets/0x12A64aE35CCcBF75c169f0a4BDafEeeFEFa1958c/info.json new file mode 100644 index 00000000..d52109ca --- /dev/null +++ b/blockchains/ethereum/assets/0x12A64aE35CCcBF75c169f0a4BDafEeeFEFa1958c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planetagro-Exchange", + "symbol": "BANANA", + "type": "ERC20", + "decimals": 18, + "description": "This token is meant to boost and facilitate reliable banana product trade.", + "website": "https://www.planetagro.org/banana-exchange", + "explorer": "https://etherscan.io/token/0x12A64aE35CCcBF75c169f0a4BDafEeeFEFa1958c", + "status": "active", + "id": "0x12A64aE35CCcBF75c169f0a4BDafEeeFEFa1958c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12A64aE35CCcBF75c169f0a4BDafEeeFEFa1958c/logo.png b/blockchains/ethereum/assets/0x12A64aE35CCcBF75c169f0a4BDafEeeFEFa1958c/logo.png new file mode 100644 index 00000000..123c1539 Binary files /dev/null and b/blockchains/ethereum/assets/0x12A64aE35CCcBF75c169f0a4BDafEeeFEFa1958c/logo.png differ diff --git a/blockchains/ethereum/assets/0x12B19D3e2ccc14Da04FAe33e63652ce469b3F2FD/info.json b/blockchains/ethereum/assets/0x12B19D3e2ccc14Da04FAe33e63652ce469b3F2FD/info.json new file mode 100644 index 00000000..d3c0cc70 --- /dev/null +++ b/blockchains/ethereum/assets/0x12B19D3e2ccc14Da04FAe33e63652ce469b3F2FD/info.json @@ -0,0 +1,11 @@ +{ + "name": "GRID", + "website": "https://gridplus.io", + "description": "GRID is a consumer rights utility token that can be redeemed for access to wholesale electricity pricing and additional discounts.", + "explorer": "https://etherscan.io/token/0x12B19D3e2ccc14Da04FAe33e63652ce469b3F2FD", + "type": "ERC20", + "symbol": "GRID", + "decimals": 12, + "status": "active", + "id": "0x12B19D3e2ccc14Da04FAe33e63652ce469b3F2FD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12B19D3e2ccc14Da04FAe33e63652ce469b3F2FD/logo.png b/blockchains/ethereum/assets/0x12B19D3e2ccc14Da04FAe33e63652ce469b3F2FD/logo.png new file mode 100644 index 00000000..c5f5ae3d Binary files /dev/null and b/blockchains/ethereum/assets/0x12B19D3e2ccc14Da04FAe33e63652ce469b3F2FD/logo.png differ diff --git a/blockchains/ethereum/assets/0x12B306fA98F4CbB8d4457FdFf3a0A0a56f07cCdf/info.json b/blockchains/ethereum/assets/0x12B306fA98F4CbB8d4457FdFf3a0A0a56f07cCdf/info.json new file mode 100644 index 00000000..0318db1f --- /dev/null +++ b/blockchains/ethereum/assets/0x12B306fA98F4CbB8d4457FdFf3a0A0a56f07cCdf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Spectre.ai D-Token", + "symbol": "SXDT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.spectre.ai/", + "explorer": "https://etherscan.io/token/0x12B306fA98F4CbB8d4457FdFf3a0A0a56f07cCdf", + "status": "abandoned", + "id": "0x12B306fA98F4CbB8d4457FdFf3a0A0a56f07cCdf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12B306fA98F4CbB8d4457FdFf3a0A0a56f07cCdf/logo.png b/blockchains/ethereum/assets/0x12B306fA98F4CbB8d4457FdFf3a0A0a56f07cCdf/logo.png new file mode 100644 index 00000000..99814fda Binary files /dev/null and b/blockchains/ethereum/assets/0x12B306fA98F4CbB8d4457FdFf3a0A0a56f07cCdf/logo.png differ diff --git a/blockchains/ethereum/assets/0x12Ca46331ab84F341666Add4237327d7077B104a/info.json b/blockchains/ethereum/assets/0x12Ca46331ab84F341666Add4237327d7077B104a/info.json new file mode 100644 index 00000000..719d38cc --- /dev/null +++ b/blockchains/ethereum/assets/0x12Ca46331ab84F341666Add4237327d7077B104a/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 261-CN45", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x12Ca46331ab84F341666Add4237327d7077B104a", + "status": "abandoned", + "id": "0x12Ca46331ab84F341666Add4237327d7077B104a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12Ca46331ab84F341666Add4237327d7077B104a/logo.png b/blockchains/ethereum/assets/0x12Ca46331ab84F341666Add4237327d7077B104a/logo.png new file mode 100644 index 00000000..9a85fee7 Binary files /dev/null and b/blockchains/ethereum/assets/0x12Ca46331ab84F341666Add4237327d7077B104a/logo.png differ diff --git a/blockchains/ethereum/assets/0x12D102F06da35cC0111EB58017fd2Cd28537d0e1/info.json b/blockchains/ethereum/assets/0x12D102F06da35cC0111EB58017fd2Cd28537d0e1/info.json new file mode 100644 index 00000000..f07e700b --- /dev/null +++ b/blockchains/ethereum/assets/0x12D102F06da35cC0111EB58017fd2Cd28537d0e1/info.json @@ -0,0 +1,25 @@ +{ + "name": "Vox Finance", + "website": "https://app.vox.finance/", + "description": "Yield farming token with low supply and 2% burn rate.", + "explorer": "https://etherscan.io/token/0x12D102F06da35cC0111EB58017fd2Cd28537d0e1", + "type": "ERC20", + "symbol": "VOX", + "decimals": 18, + "status": "active", + "id": "0x12D102F06da35cC0111EB58017fd2Cd28537d0e1", + "links": [ + { + "name": "x", + "url": "https://x.com/RealVoxFinance" + }, + { + "name": "telegram", + "url": "https://t.me/VoxFinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/c32KurP" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12D102F06da35cC0111EB58017fd2Cd28537d0e1/logo.png b/blockchains/ethereum/assets/0x12D102F06da35cC0111EB58017fd2Cd28537d0e1/logo.png new file mode 100644 index 00000000..9b0fcb8e Binary files /dev/null and b/blockchains/ethereum/assets/0x12D102F06da35cC0111EB58017fd2Cd28537d0e1/logo.png differ diff --git a/blockchains/ethereum/assets/0x12E616bdD6918593570dC17eb09088036F770180/info.json b/blockchains/ethereum/assets/0x12E616bdD6918593570dC17eb09088036F770180/info.json new file mode 100644 index 00000000..d69202f6 --- /dev/null +++ b/blockchains/ethereum/assets/0x12E616bdD6918593570dC17eb09088036F770180/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R935375", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x12E616bdD6918593570dC17eb09088036F770180", + "status": "abandoned", + "id": "0x12E616bdD6918593570dC17eb09088036F770180" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12E616bdD6918593570dC17eb09088036F770180/logo.png b/blockchains/ethereum/assets/0x12E616bdD6918593570dC17eb09088036F770180/logo.png new file mode 100644 index 00000000..70d72a36 Binary files /dev/null and b/blockchains/ethereum/assets/0x12E616bdD6918593570dC17eb09088036F770180/logo.png differ diff --git a/blockchains/ethereum/assets/0x12Ea7862533964bEb9Cb955EC2F455A1aa0DAA92/info.json b/blockchains/ethereum/assets/0x12Ea7862533964bEb9Cb955EC2F455A1aa0DAA92/info.json new file mode 100644 index 00000000..e17f5784 --- /dev/null +++ b/blockchains/ethereum/assets/0x12Ea7862533964bEb9Cb955EC2F455A1aa0DAA92/info.json @@ -0,0 +1,11 @@ +{ + "name": "DoNever", + "symbol": "DOE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x12Ea7862533964bEb9Cb955EC2F455A1aa0DAA92", + "status": "abandoned", + "id": "0x12Ea7862533964bEb9Cb955EC2F455A1aa0DAA92" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12Ea7862533964bEb9Cb955EC2F455A1aa0DAA92/logo.png b/blockchains/ethereum/assets/0x12Ea7862533964bEb9Cb955EC2F455A1aa0DAA92/logo.png new file mode 100644 index 00000000..b0f422dc Binary files /dev/null and b/blockchains/ethereum/assets/0x12Ea7862533964bEb9Cb955EC2F455A1aa0DAA92/logo.png differ diff --git a/blockchains/ethereum/assets/0x12FEF5e57bF45873Cd9B62E9DBd7BFb99e32D73e/info.json b/blockchains/ethereum/assets/0x12FEF5e57bF45873Cd9B62E9DBd7BFb99e32D73e/info.json new file mode 100644 index 00000000..3fbc062e --- /dev/null +++ b/blockchains/ethereum/assets/0x12FEF5e57bF45873Cd9B62E9DBd7BFb99e32D73e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cofoundit", + "symbol": "CFI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x12FEF5e57bF45873Cd9B62E9DBd7BFb99e32D73e", + "status": "abandoned", + "id": "0x12FEF5e57bF45873Cd9B62E9DBd7BFb99e32D73e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12FEF5e57bF45873Cd9B62E9DBd7BFb99e32D73e/logo.png b/blockchains/ethereum/assets/0x12FEF5e57bF45873Cd9B62E9DBd7BFb99e32D73e/logo.png new file mode 100644 index 00000000..3040d825 Binary files /dev/null and b/blockchains/ethereum/assets/0x12FEF5e57bF45873Cd9B62E9DBd7BFb99e32D73e/logo.png differ diff --git a/blockchains/ethereum/assets/0x12a9D37fb05052A465Fc27792Df1C4033c6433FC/info.json b/blockchains/ethereum/assets/0x12a9D37fb05052A465Fc27792Df1C4033c6433FC/info.json new file mode 100644 index 00000000..06e7c22e --- /dev/null +++ b/blockchains/ethereum/assets/0x12a9D37fb05052A465Fc27792Df1C4033c6433FC/info.json @@ -0,0 +1,11 @@ +{ + "name": "PlayBetCoin", + "symbol": "PBET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x12a9D37fb05052A465Fc27792Df1C4033c6433FC", + "status": "abandoned", + "id": "0x12a9D37fb05052A465Fc27792Df1C4033c6433FC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12a9D37fb05052A465Fc27792Df1C4033c6433FC/logo.png b/blockchains/ethereum/assets/0x12a9D37fb05052A465Fc27792Df1C4033c6433FC/logo.png new file mode 100644 index 00000000..0b574d03 Binary files /dev/null and b/blockchains/ethereum/assets/0x12a9D37fb05052A465Fc27792Df1C4033c6433FC/logo.png differ diff --git a/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/info.json b/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/info.json new file mode 100644 index 00000000..df8ffc26 --- /dev/null +++ b/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/info.json @@ -0,0 +1,40 @@ +{ + "name": "Tamadoge", + "type": "ERC20", + "symbol": "TAMA", + "decimals": 18, + "website": "https://tamadoge.io", + "description": "The Tamadoge Token ($TAMA) is the native token of the tamaverse. You’ll be able to use it to play Tamadoge games, earn rewards and buy special items from the tamadoge pet store.", + "explorer": "https://etherscan.io/token/0x12b6893cE26Ea6341919FE289212ef77e51688c8", + "status": "active", + "id": "0x12b6893cE26Ea6341919FE289212ef77e51688c8", + "links": [ + { + "name": "x", + "url": "https://x.com/Tamadogecoin" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Z2PqFvsXJa" + }, + { + "name": "telegram", + "url": "https://t.me/TamadogeOfficial" + }, + { + "name": "whitepaper", + "url": "https://tamadoge.io/wp-content/uploads/2022/10/Tamadoge-Whitepaper-ENG.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCivYe1JIbVcVq2wXtFYarjA" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tamadoge" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/logo.png b/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/logo.png new file mode 100644 index 00000000..4476222c Binary files /dev/null and b/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/logo.png differ diff --git a/blockchains/ethereum/assets/0x12bAc8c392f5a2Ec82F3C2799289a1A7515d8f02/info.json b/blockchains/ethereum/assets/0x12bAc8c392f5a2Ec82F3C2799289a1A7515d8f02/info.json new file mode 100644 index 00000000..1afa00aa --- /dev/null +++ b/blockchains/ethereum/assets/0x12bAc8c392f5a2Ec82F3C2799289a1A7515d8f02/info.json @@ -0,0 +1,11 @@ +{ + "name": "SMASH", + "symbol": "SMASH", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x12bAc8c392f5a2Ec82F3C2799289a1A7515d8f02", + "status": "abandoned", + "id": "0x12bAc8c392f5a2Ec82F3C2799289a1A7515d8f02" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12bAc8c392f5a2Ec82F3C2799289a1A7515d8f02/logo.png b/blockchains/ethereum/assets/0x12bAc8c392f5a2Ec82F3C2799289a1A7515d8f02/logo.png new file mode 100644 index 00000000..2355bea3 Binary files /dev/null and b/blockchains/ethereum/assets/0x12bAc8c392f5a2Ec82F3C2799289a1A7515d8f02/logo.png differ diff --git a/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/info.json b/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/info.json new file mode 100644 index 00000000..1fa444f3 --- /dev/null +++ b/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/info.json @@ -0,0 +1,34 @@ +{ + "name": "SafePal Token", + "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 00000000..154b3c9c Binary files /dev/null and b/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/logo.png differ diff --git a/blockchains/ethereum/assets/0x12e51E77DAAA58aA0E9247db7510Ea4B46F9bEAd/info.json b/blockchains/ethereum/assets/0x12e51E77DAAA58aA0E9247db7510Ea4B46F9bEAd/info.json new file mode 100644 index 00000000..af05b694 --- /dev/null +++ b/blockchains/ethereum/assets/0x12e51E77DAAA58aA0E9247db7510Ea4B46F9bEAd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave YFI V1", + "symbol": "aYFI V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave YFI V1 is an interest bearing token pegged 1:1 to the underlying YFI deposited in Aave V1. aYFI V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x12e51E77DAAA58aA0E9247db7510Ea4B46F9bEAd", + "status": "active", + "id": "0x12e51E77DAAA58aA0E9247db7510Ea4B46F9bEAd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12e51E77DAAA58aA0E9247db7510Ea4B46F9bEAd/logo.png b/blockchains/ethereum/assets/0x12e51E77DAAA58aA0E9247db7510Ea4B46F9bEAd/logo.png new file mode 100644 index 00000000..766a811b Binary files /dev/null and b/blockchains/ethereum/assets/0x12e51E77DAAA58aA0E9247db7510Ea4B46F9bEAd/logo.png differ diff --git a/blockchains/ethereum/assets/0x12f649A9E821F90BB143089a6e56846945892ffB/info.json b/blockchains/ethereum/assets/0x12f649A9E821F90BB143089a6e56846945892ffB/info.json new file mode 100644 index 00000000..8a245b78 --- /dev/null +++ b/blockchains/ethereum/assets/0x12f649A9E821F90BB143089a6e56846945892ffB/info.json @@ -0,0 +1,11 @@ +{ + "name": "uDOO", + "symbol": "uDOO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.hyprr.com/", + "explorer": "https://etherscan.io/token/0x12f649A9E821F90BB143089a6e56846945892ffB", + "status": "active", + "id": "0x12f649A9E821F90BB143089a6e56846945892ffB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12f649A9E821F90BB143089a6e56846945892ffB/logo.png b/blockchains/ethereum/assets/0x12f649A9E821F90BB143089a6e56846945892ffB/logo.png new file mode 100644 index 00000000..06b8e089 Binary files /dev/null and b/blockchains/ethereum/assets/0x12f649A9E821F90BB143089a6e56846945892ffB/logo.png differ diff --git a/blockchains/ethereum/assets/0x12fCd6463E66974cF7bBC24FFC4d40d6bE458283/info.json b/blockchains/ethereum/assets/0x12fCd6463E66974cF7bBC24FFC4d40d6bE458283/info.json new file mode 100644 index 00000000..c6932590 --- /dev/null +++ b/blockchains/ethereum/assets/0x12fCd6463E66974cF7bBC24FFC4d40d6bE458283/info.json @@ -0,0 +1,21 @@ +{ + "name": "Globitex Token", + "website": "https://globitex.com/", + "description": "GBX Tokens are usableto cover trading and EURO Wallet fee payments on the Globitex platform. The GBX Token offers a minimum 50% discount on the fees.", + "explorer": "https://etherscan.io/token/0x12fCd6463E66974cF7bBC24FFC4d40d6bE458283", + "type": "ERC20", + "symbol": "GBX", + "decimals": 8, + "status": "active", + "id": "0x12fCd6463E66974cF7bBC24FFC4d40d6bE458283", + "links": [ + { + "name": "x", + "url": "https://x.com/globitex_" + }, + { + "name": "telegram", + "url": "https://t.me/globitex_com" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12fCd6463E66974cF7bBC24FFC4d40d6bE458283/logo.png b/blockchains/ethereum/assets/0x12fCd6463E66974cF7bBC24FFC4d40d6bE458283/logo.png new file mode 100644 index 00000000..df494929 Binary files /dev/null and b/blockchains/ethereum/assets/0x12fCd6463E66974cF7bBC24FFC4d40d6bE458283/logo.png differ diff --git a/blockchains/ethereum/assets/0x12fD19DAC0Fab61bEd5e0F09091B470C452D4d61/info.json b/blockchains/ethereum/assets/0x12fD19DAC0Fab61bEd5e0F09091B470C452D4d61/info.json new file mode 100644 index 00000000..5faa149c --- /dev/null +++ b/blockchains/ethereum/assets/0x12fD19DAC0Fab61bEd5e0F09091B470C452D4d61/info.json @@ -0,0 +1,11 @@ +{ + "name": "Echoin", + "symbol": "EC", + "type": "ERC20", + "decimals": 18, + "description": "Echoin is a public-chain ecosystem for the energy economy. It provides the industry with practical blockchain technology solutions and builds an energy ecosystem in which energy companies, DAPP developers, individual energy owners and financial institutions can participate.", + "website": "https://echoin.io/", + "explorer": "https://etherscan.io/token/0x12fD19DAC0Fab61bEd5e0F09091B470C452D4d61", + "status": "active", + "id": "0x12fD19DAC0Fab61bEd5e0F09091B470C452D4d61" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12fD19DAC0Fab61bEd5e0F09091B470C452D4d61/logo.png b/blockchains/ethereum/assets/0x12fD19DAC0Fab61bEd5e0F09091B470C452D4d61/logo.png new file mode 100644 index 00000000..b3631662 Binary files /dev/null and b/blockchains/ethereum/assets/0x12fD19DAC0Fab61bEd5e0F09091B470C452D4d61/logo.png differ diff --git a/blockchains/ethereum/assets/0x13056817f997bC3f15e1BC68207Efe8d2D197308/info.json b/blockchains/ethereum/assets/0x13056817f997bC3f15e1BC68207Efe8d2D197308/info.json new file mode 100644 index 00000000..92ea7aea --- /dev/null +++ b/blockchains/ethereum/assets/0x13056817f997bC3f15e1BC68207Efe8d2D197308/info.json @@ -0,0 +1,11 @@ +{ + "name": "CXKJ", + "symbol": "CXKJ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x13056817f997bC3f15e1BC68207Efe8d2D197308", + "status": "abandoned", + "id": "0x13056817f997bC3f15e1BC68207Efe8d2D197308" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13056817f997bC3f15e1BC68207Efe8d2D197308/logo.png b/blockchains/ethereum/assets/0x13056817f997bC3f15e1BC68207Efe8d2D197308/logo.png new file mode 100644 index 00000000..4d208a66 Binary files /dev/null and b/blockchains/ethereum/assets/0x13056817f997bC3f15e1BC68207Efe8d2D197308/logo.png differ diff --git a/blockchains/ethereum/assets/0x130f0054d43d1f849D09e3947BD33d76706232D6/info.json b/blockchains/ethereum/assets/0x130f0054d43d1f849D09e3947BD33d76706232D6/info.json new file mode 100644 index 00000000..53d38347 --- /dev/null +++ b/blockchains/ethereum/assets/0x130f0054d43d1f849D09e3947BD33d76706232D6/info.json @@ -0,0 +1,11 @@ +{ + "name": "INSTAINBLOCKS", + "symbol": "INST", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x130f0054d43d1f849D09e3947BD33d76706232D6", + "status": "abandoned", + "id": "0x130f0054d43d1f849D09e3947BD33d76706232D6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x130f0054d43d1f849D09e3947BD33d76706232D6/logo.png b/blockchains/ethereum/assets/0x130f0054d43d1f849D09e3947BD33d76706232D6/logo.png new file mode 100644 index 00000000..b533764d Binary files /dev/null and b/blockchains/ethereum/assets/0x130f0054d43d1f849D09e3947BD33d76706232D6/logo.png differ diff --git a/blockchains/ethereum/assets/0x13119E34E140097a507B07a5564bDe1bC375D9e6/info.json b/blockchains/ethereum/assets/0x13119E34E140097a507B07a5564bDe1bC375D9e6/info.json new file mode 100644 index 00000000..69796970 --- /dev/null +++ b/blockchains/ethereum/assets/0x13119E34E140097a507B07a5564bDe1bC375D9e6/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoneyToken", + "symbol": "IMT", + "type": "ERC20", + "decimals": 18, + "description": "The MoneyToken platform allows you to receive liquid funds right now, based on the current value of your cryptocurrency asset holdings.", + "website": "http://moneytoken.eu/", + "explorer": "https://etherscan.io/token/0x13119E34E140097a507B07a5564bDe1bC375D9e6", + "status": "active", + "id": "0x13119E34E140097a507B07a5564bDe1bC375D9e6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13119E34E140097a507B07a5564bDe1bC375D9e6/logo.png b/blockchains/ethereum/assets/0x13119E34E140097a507B07a5564bDe1bC375D9e6/logo.png new file mode 100644 index 00000000..9164a21a Binary files /dev/null and b/blockchains/ethereum/assets/0x13119E34E140097a507B07a5564bDe1bC375D9e6/logo.png differ diff --git a/blockchains/ethereum/assets/0x1320c8c64b9f2eAa851F70702e6C9FC1EE4E8Ce4/info.json b/blockchains/ethereum/assets/0x1320c8c64b9f2eAa851F70702e6C9FC1EE4E8Ce4/info.json new file mode 100644 index 00000000..be8c409c --- /dev/null +++ b/blockchains/ethereum/assets/0x1320c8c64b9f2eAa851F70702e6C9FC1EE4E8Ce4/info.json @@ -0,0 +1,11 @@ +{ + "name": "MegaSerum", + "symbol": "MSRM", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1320c8c64b9f2eAa851F70702e6C9FC1EE4E8Ce4", + "status": "abandoned", + "id": "0x1320c8c64b9f2eAa851F70702e6C9FC1EE4E8Ce4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1320c8c64b9f2eAa851F70702e6C9FC1EE4E8Ce4/logo.png b/blockchains/ethereum/assets/0x1320c8c64b9f2eAa851F70702e6C9FC1EE4E8Ce4/logo.png new file mode 100644 index 00000000..d2a9deed Binary files /dev/null and b/blockchains/ethereum/assets/0x1320c8c64b9f2eAa851F70702e6C9FC1EE4E8Ce4/logo.png differ diff --git a/blockchains/ethereum/assets/0x132b2EDECC3EC84C887fab43B35db7A5F87629D4/info.json b/blockchains/ethereum/assets/0x132b2EDECC3EC84C887fab43B35db7A5F87629D4/info.json new file mode 100644 index 00000000..d3db17d3 --- /dev/null +++ b/blockchains/ethereum/assets/0x132b2EDECC3EC84C887fab43B35db7A5F87629D4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Newowiyah Buffalo, West MD5: 41e091e14237ab6485bffe77429700b3", + "type": "ERC20", + "symbol": "BUFF", + "decimals": 2, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0x132b2edecc3ec84c887fab43b35db7a5f87629d4", + "status": "active", + "id": "0x132b2EDECC3EC84C887fab43B35db7A5F87629D4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x132b2EDECC3EC84C887fab43B35db7A5F87629D4/logo.png b/blockchains/ethereum/assets/0x132b2EDECC3EC84C887fab43B35db7A5F87629D4/logo.png new file mode 100644 index 00000000..aa8b71eb Binary files /dev/null and b/blockchains/ethereum/assets/0x132b2EDECC3EC84C887fab43B35db7A5F87629D4/logo.png differ diff --git a/blockchains/ethereum/assets/0x132e2fDBA9C224D3d62f18aE79e0e8f4E4BE987D/info.json b/blockchains/ethereum/assets/0x132e2fDBA9C224D3d62f18aE79e0e8f4E4BE987D/info.json new file mode 100644 index 00000000..06d7d836 --- /dev/null +++ b/blockchains/ethereum/assets/0x132e2fDBA9C224D3d62f18aE79e0e8f4E4BE987D/info.json @@ -0,0 +1,17 @@ +{ + "name": "DefiFarm", + "website": "https://dff.finance", + "description": "DefiFarm empowers blockchain networks to have state of the art privacy protection over smart contracts, DeFi, transactions, data.", + "explorer": "https://etherscan.io/token/0x132e2fDBA9C224D3d62f18aE79e0e8f4E4BE987D", + "type": "ERC20", + "symbol": "DFF", + "decimals": 8, + "status": "active", + "id": "0x132e2fDBA9C224D3d62f18aE79e0e8f4E4BE987D", + "links": [ + { + "name": "whitepaper", + "url": "https://dff.finance/white-page.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x132e2fDBA9C224D3d62f18aE79e0e8f4E4BE987D/logo.png b/blockchains/ethereum/assets/0x132e2fDBA9C224D3d62f18aE79e0e8f4E4BE987D/logo.png new file mode 100644 index 00000000..a8a89354 Binary files /dev/null and b/blockchains/ethereum/assets/0x132e2fDBA9C224D3d62f18aE79e0e8f4E4BE987D/logo.png differ diff --git a/blockchains/ethereum/assets/0x13339fD07934CD674269726EdF3B5ccEE9DD93de/info.json b/blockchains/ethereum/assets/0x13339fD07934CD674269726EdF3B5ccEE9DD93de/info.json new file mode 100644 index 00000000..d941a34b --- /dev/null +++ b/blockchains/ethereum/assets/0x13339fD07934CD674269726EdF3B5ccEE9DD93de/info.json @@ -0,0 +1,11 @@ +{ + "name": "CurToken", + "symbol": "CUR", + "type": "ERC20", + "decimals": 18, + "description": "Join CurioInvest today and invest in classic cars and limited edition hypercars starting with little. Discover the collections of others and get rewarded for sharing yours. ", + "website": "https://curioinvest.com/", + "explorer": "https://etherscan.io/token/0x13339fD07934CD674269726EdF3B5ccEE9DD93de", + "status": "active", + "id": "0x13339fD07934CD674269726EdF3B5ccEE9DD93de" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13339fD07934CD674269726EdF3B5ccEE9DD93de/logo.png b/blockchains/ethereum/assets/0x13339fD07934CD674269726EdF3B5ccEE9DD93de/logo.png new file mode 100644 index 00000000..e3a4cf1e Binary files /dev/null and b/blockchains/ethereum/assets/0x13339fD07934CD674269726EdF3B5ccEE9DD93de/logo.png differ diff --git a/blockchains/ethereum/assets/0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a/info.json b/blockchains/ethereum/assets/0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a/info.json new file mode 100644 index 00000000..6916af8f --- /dev/null +++ b/blockchains/ethereum/assets/0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a/info.json @@ -0,0 +1,37 @@ +{ + "name": "ARMOR", + "website": "https://armor.fi", + "description": "Armor is a DeFi coverage aggregator to secure and scale adoption.", + "explorer": "https://etherscan.io/token/0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a", + "type": "ERC20", + "symbol": "ARMOR", + "decimals": 18, + "status": "active", + "id": "0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a", + "links": [ + { + "name": "github", + "url": "https://github.com/ArmorFi" + }, + { + "name": "x", + "url": "https://x.com/ArmorFi" + }, + { + "name": "telegram", + "url": "https://t.me/ArmorFi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8HuTB22" + }, + { + "name": "medium", + "url": "https://medium.com/armorfi" + }, + { + "name": "whitepaper", + "url": "https://armorfi.gitbook.io/armor/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a/logo.png b/blockchains/ethereum/assets/0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a/logo.png new file mode 100644 index 00000000..b148ce4c Binary files /dev/null and b/blockchains/ethereum/assets/0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a/logo.png differ diff --git a/blockchains/ethereum/assets/0x1337DEF18C680aF1f9f45cBcab6309562975b1dD/info.json b/blockchains/ethereum/assets/0x1337DEF18C680aF1f9f45cBcab6309562975b1dD/info.json new file mode 100644 index 00000000..8cd5a14e --- /dev/null +++ b/blockchains/ethereum/assets/0x1337DEF18C680aF1f9f45cBcab6309562975b1dD/info.json @@ -0,0 +1,37 @@ +{ + "name": "Armor NXM", + "website": "https://armor.fi", + "description": "arNXM is the yield-bearing token for the arNXM vault.", + "explorer": "https://etherscan.io/token/0x1337DEF18C680aF1f9f45cBcab6309562975b1dD", + "type": "ERC20", + "symbol": "arNXM", + "decimals": 18, + "status": "active", + "id": "0x1337DEF18C680aF1f9f45cBcab6309562975b1dD", + "links": [ + { + "name": "github", + "url": "https://github.com/ArmorFi" + }, + { + "name": "x", + "url": "https://x.com/ArmorFi" + }, + { + "name": "telegram", + "url": "https://t.me/ArmorFi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8HuTB22" + }, + { + "name": "medium", + "url": "https://medium.com/armorfi" + }, + { + "name": "whitepaper", + "url": "https://armorfi.gitbook.io/armor/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1337DEF18C680aF1f9f45cBcab6309562975b1dD/logo.png b/blockchains/ethereum/assets/0x1337DEF18C680aF1f9f45cBcab6309562975b1dD/logo.png new file mode 100644 index 00000000..772d7d2f Binary files /dev/null and b/blockchains/ethereum/assets/0x1337DEF18C680aF1f9f45cBcab6309562975b1dD/logo.png differ diff --git a/blockchains/ethereum/assets/0x133834219045eD0cf692619D63abcd251e6B1ca1/info.json b/blockchains/ethereum/assets/0x133834219045eD0cf692619D63abcd251e6B1ca1/info.json new file mode 100644 index 00000000..1923050d --- /dev/null +++ b/blockchains/ethereum/assets/0x133834219045eD0cf692619D63abcd251e6B1ca1/info.json @@ -0,0 +1,11 @@ +{ + "name": "mosExpensiveToken", + "symbol": "MET", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x133834219045eD0cf692619D63abcd251e6B1ca1", + "status": "abandoned", + "id": "0x133834219045eD0cf692619D63abcd251e6B1ca1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x133834219045eD0cf692619D63abcd251e6B1ca1/logo.png b/blockchains/ethereum/assets/0x133834219045eD0cf692619D63abcd251e6B1ca1/logo.png new file mode 100644 index 00000000..24b86504 Binary files /dev/null and b/blockchains/ethereum/assets/0x133834219045eD0cf692619D63abcd251e6B1ca1/logo.png differ diff --git a/blockchains/ethereum/assets/0x1341A2257fa7b770420Ef70616f888056f90926c/info.json b/blockchains/ethereum/assets/0x1341A2257fa7b770420Ef70616f888056f90926c/info.json new file mode 100644 index 00000000..7ab7cade --- /dev/null +++ b/blockchains/ethereum/assets/0x1341A2257fa7b770420Ef70616f888056f90926c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zoo Token", + "website": "https://zootoken.io", + "description": "ZooToken will be the hub for these Animal Coins key-values.", + "explorer": "https://etherscan.io/token/0x1341A2257fa7b770420Ef70616f888056f90926c", + "type": "ERC20", + "symbol": "ZOOT", + "decimals": 9, + "status": "active", + "id": "0x1341A2257fa7b770420Ef70616f888056f90926c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1341A2257fa7b770420Ef70616f888056f90926c/logo.png b/blockchains/ethereum/assets/0x1341A2257fa7b770420Ef70616f888056f90926c/logo.png new file mode 100644 index 00000000..53fcc704 Binary files /dev/null and b/blockchains/ethereum/assets/0x1341A2257fa7b770420Ef70616f888056f90926c/logo.png differ diff --git a/blockchains/ethereum/assets/0x134A2B5B1A1E3F3c3C7cfed71000035A53d4d127/info.json b/blockchains/ethereum/assets/0x134A2B5B1A1E3F3c3C7cfed71000035A53d4d127/info.json new file mode 100644 index 00000000..0f6bf305 --- /dev/null +++ b/blockchains/ethereum/assets/0x134A2B5B1A1E3F3c3C7cfed71000035A53d4d127/info.json @@ -0,0 +1,11 @@ +{ + "name": "OPC-ERC20-Token", + "symbol": "OPC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x134A2B5B1A1E3F3c3C7cfed71000035A53d4d127", + "status": "abandoned", + "id": "0x134A2B5B1A1E3F3c3C7cfed71000035A53d4d127" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x134A2B5B1A1E3F3c3C7cfed71000035A53d4d127/logo.png b/blockchains/ethereum/assets/0x134A2B5B1A1E3F3c3C7cfed71000035A53d4d127/logo.png new file mode 100644 index 00000000..789b2a0f Binary files /dev/null and b/blockchains/ethereum/assets/0x134A2B5B1A1E3F3c3C7cfed71000035A53d4d127/logo.png differ diff --git a/blockchains/ethereum/assets/0x1350Fbe8Ce27762ec19134bf8FC405a427fe9Bf1/info.json b/blockchains/ethereum/assets/0x1350Fbe8Ce27762ec19134bf8FC405a427fe9Bf1/info.json new file mode 100644 index 00000000..6f7ffbab --- /dev/null +++ b/blockchains/ethereum/assets/0x1350Fbe8Ce27762ec19134bf8FC405a427fe9Bf1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trips", + "symbol": "TRIPS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1350Fbe8Ce27762ec19134bf8FC405a427fe9Bf1", + "status": "abandoned", + "id": "0x1350Fbe8Ce27762ec19134bf8FC405a427fe9Bf1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1350Fbe8Ce27762ec19134bf8FC405a427fe9Bf1/logo.png b/blockchains/ethereum/assets/0x1350Fbe8Ce27762ec19134bf8FC405a427fe9Bf1/logo.png new file mode 100644 index 00000000..b39532d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x1350Fbe8Ce27762ec19134bf8FC405a427fe9Bf1/logo.png differ diff --git a/blockchains/ethereum/assets/0x1351c3431d32dB76543D245672A5BAA8143cF993/info.json b/blockchains/ethereum/assets/0x1351c3431d32dB76543D245672A5BAA8143cF993/info.json new file mode 100644 index 00000000..c88abf90 --- /dev/null +++ b/blockchains/ethereum/assets/0x1351c3431d32dB76543D245672A5BAA8143cF993/info.json @@ -0,0 +1,11 @@ +{ + "name": "LMT COIN", + "symbol": "LMT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1351c3431d32dB76543D245672A5BAA8143cF993", + "status": "abandoned", + "id": "0x1351c3431d32dB76543D245672A5BAA8143cF993" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1351c3431d32dB76543D245672A5BAA8143cF993/logo.png b/blockchains/ethereum/assets/0x1351c3431d32dB76543D245672A5BAA8143cF993/logo.png new file mode 100644 index 00000000..4c27946e Binary files /dev/null and b/blockchains/ethereum/assets/0x1351c3431d32dB76543D245672A5BAA8143cF993/logo.png differ diff --git a/blockchains/ethereum/assets/0x1354c8C1A66C2573Ce9cC3e92e98D17869501A46/info.json b/blockchains/ethereum/assets/0x1354c8C1A66C2573Ce9cC3e92e98D17869501A46/info.json new file mode 100644 index 00000000..c6bad7e9 --- /dev/null +++ b/blockchains/ethereum/assets/0x1354c8C1A66C2573Ce9cC3e92e98D17869501A46/info.json @@ -0,0 +1,11 @@ +{ + "name": "HighBank", + "symbol": "HIGH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1354c8C1A66C2573Ce9cC3e92e98D17869501A46", + "status": "abandoned", + "id": "0x1354c8C1A66C2573Ce9cC3e92e98D17869501A46" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1354c8C1A66C2573Ce9cC3e92e98D17869501A46/logo.png b/blockchains/ethereum/assets/0x1354c8C1A66C2573Ce9cC3e92e98D17869501A46/logo.png new file mode 100644 index 00000000..7486a0a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x1354c8C1A66C2573Ce9cC3e92e98D17869501A46/logo.png differ diff --git a/blockchains/ethereum/assets/0x13657b29a376177718526cC85fc874aF926d6ef6/info.json b/blockchains/ethereum/assets/0x13657b29a376177718526cC85fc874aF926d6ef6/info.json new file mode 100644 index 00000000..2641a12f --- /dev/null +++ b/blockchains/ethereum/assets/0x13657b29a376177718526cC85fc874aF926d6ef6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Radiance Token", + "symbol": "RNR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x13657b29a376177718526cC85fc874aF926d6ef6", + "status": "abandoned", + "id": "0x13657b29a376177718526cC85fc874aF926d6ef6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13657b29a376177718526cC85fc874aF926d6ef6/logo.png b/blockchains/ethereum/assets/0x13657b29a376177718526cC85fc874aF926d6ef6/logo.png new file mode 100644 index 00000000..28777694 Binary files /dev/null and b/blockchains/ethereum/assets/0x13657b29a376177718526cC85fc874aF926d6ef6/logo.png differ diff --git a/blockchains/ethereum/assets/0x1367D4a67C1719B58C7e05dF8768226Fa768279a/info.json b/blockchains/ethereum/assets/0x1367D4a67C1719B58C7e05dF8768226Fa768279a/info.json new file mode 100644 index 00000000..5f1893e5 --- /dev/null +++ b/blockchains/ethereum/assets/0x1367D4a67C1719B58C7e05dF8768226Fa768279a/info.json @@ -0,0 +1,11 @@ +{ + "name": "OOOBTCTOKEN", + "symbol": "OBX", + "type": "ERC20", + "decimals": 18, + "description": "OOOBTC is a gateway and exchange for crypto-currency and crypto-ecosystem.", + "website": "https://www.ooobtc.com/OBX", + "explorer": "https://etherscan.io/token/0x1367D4a67C1719B58C7e05dF8768226Fa768279a", + "status": "active", + "id": "0x1367D4a67C1719B58C7e05dF8768226Fa768279a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1367D4a67C1719B58C7e05dF8768226Fa768279a/logo.png b/blockchains/ethereum/assets/0x1367D4a67C1719B58C7e05dF8768226Fa768279a/logo.png new file mode 100644 index 00000000..c4467dba Binary files /dev/null and b/blockchains/ethereum/assets/0x1367D4a67C1719B58C7e05dF8768226Fa768279a/logo.png differ diff --git a/blockchains/ethereum/assets/0x1368452Bfb5Cd127971C8DE22C58fBE89D35A6BF/info.json b/blockchains/ethereum/assets/0x1368452Bfb5Cd127971C8DE22C58fBE89D35A6BF/info.json new file mode 100644 index 00000000..f2058901 --- /dev/null +++ b/blockchains/ethereum/assets/0x1368452Bfb5Cd127971C8DE22C58fBE89D35A6BF/info.json @@ -0,0 +1,21 @@ +{ + "name": "JNTR/e", + "website": "https://jointer.io/", + "description": "Jointer’s Decentralized Finance (DeFi) Auction", + "explorer": "https://etherscan.io/token/0x1368452Bfb5Cd127971C8DE22C58fBE89D35A6BF", + "type": "ERC20", + "symbol": "JNTR/e", + "decimals": 18, + "status": "active", + "id": "0x1368452Bfb5Cd127971C8DE22C58fBE89D35A6BF", + "links": [ + { + "name": "github", + "url": "https://github.com/jointerinc" + }, + { + "name": "whitepaper", + "url": "https://jointerinc.github.io/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1368452Bfb5Cd127971C8DE22C58fBE89D35A6BF/logo.png b/blockchains/ethereum/assets/0x1368452Bfb5Cd127971C8DE22C58fBE89D35A6BF/logo.png new file mode 100644 index 00000000..ed1d6c83 Binary files /dev/null and b/blockchains/ethereum/assets/0x1368452Bfb5Cd127971C8DE22C58fBE89D35A6BF/logo.png differ diff --git a/blockchains/ethereum/assets/0x1370B716575bD7d5AEe14128e231A779198e5397/info.json b/blockchains/ethereum/assets/0x1370B716575bD7d5AEe14128e231A779198e5397/info.json new file mode 100644 index 00000000..c11b1a3f --- /dev/null +++ b/blockchains/ethereum/assets/0x1370B716575bD7d5AEe14128e231A779198e5397/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long ETH-DAI 3x v2", + "symbol": "dLETH3x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1370B716575bD7d5AEe14128e231A779198e5397", + "status": "abandoned", + "id": "0x1370B716575bD7d5AEe14128e231A779198e5397" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1370B716575bD7d5AEe14128e231A779198e5397/logo.png b/blockchains/ethereum/assets/0x1370B716575bD7d5AEe14128e231A779198e5397/logo.png new file mode 100644 index 00000000..ed6fc5b2 Binary files /dev/null and b/blockchains/ethereum/assets/0x1370B716575bD7d5AEe14128e231A779198e5397/logo.png differ diff --git a/blockchains/ethereum/assets/0x137959e0b3E5c68591abf67983b91b1685266f61/info.json b/blockchains/ethereum/assets/0x137959e0b3E5c68591abf67983b91b1685266f61/info.json new file mode 100644 index 00000000..91dd0474 --- /dev/null +++ b/blockchains/ethereum/assets/0x137959e0b3E5c68591abf67983b91b1685266f61/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-6/30M36", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x137959e0b3E5c68591abf67983b91b1685266f61", + "status": "abandoned", + "id": "0x137959e0b3E5c68591abf67983b91b1685266f61" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x137959e0b3E5c68591abf67983b91b1685266f61/logo.png b/blockchains/ethereum/assets/0x137959e0b3E5c68591abf67983b91b1685266f61/logo.png new file mode 100644 index 00000000..781b08c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x137959e0b3E5c68591abf67983b91b1685266f61/logo.png differ diff --git a/blockchains/ethereum/assets/0x138537DDba70aB69C05497b89Ee2e34F9201DCec/info.json b/blockchains/ethereum/assets/0x138537DDba70aB69C05497b89Ee2e34F9201DCec/info.json new file mode 100644 index 00000000..be378a91 --- /dev/null +++ b/blockchains/ethereum/assets/0x138537DDba70aB69C05497b89Ee2e34F9201DCec/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShahinMedical", + "symbol": "SML", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://shaheenfaucet.xyz/", + "explorer": "https://etherscan.io/token/0x138537DDba70aB69C05497b89Ee2e34F9201DCec", + "status": "abandoned", + "id": "0x138537DDba70aB69C05497b89Ee2e34F9201DCec" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x138537DDba70aB69C05497b89Ee2e34F9201DCec/logo.png b/blockchains/ethereum/assets/0x138537DDba70aB69C05497b89Ee2e34F9201DCec/logo.png new file mode 100644 index 00000000..a1a2fb1a Binary files /dev/null and b/blockchains/ethereum/assets/0x138537DDba70aB69C05497b89Ee2e34F9201DCec/logo.png differ diff --git a/blockchains/ethereum/assets/0x138A8752093F4f9a79AaeDF48d4B9248fab93c9C/info.json b/blockchains/ethereum/assets/0x138A8752093F4f9a79AaeDF48d4B9248fab93c9C/info.json new file mode 100644 index 00000000..8be0c1b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x138A8752093F4f9a79AaeDF48d4B9248fab93c9C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Musiconomi", + "symbol": "MCI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x138A8752093F4f9a79AaeDF48d4B9248fab93c9C", + "status": "abandoned", + "id": "0x138A8752093F4f9a79AaeDF48d4B9248fab93c9C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x138A8752093F4f9a79AaeDF48d4B9248fab93c9C/logo.png b/blockchains/ethereum/assets/0x138A8752093F4f9a79AaeDF48d4B9248fab93c9C/logo.png new file mode 100755 index 00000000..d5ead9b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x138A8752093F4f9a79AaeDF48d4B9248fab93c9C/logo.png differ diff --git a/blockchains/ethereum/assets/0x138fd9A2B4b283676109d5E76cf3b83de7d15F25/info.json b/blockchains/ethereum/assets/0x138fd9A2B4b283676109d5E76cf3b83de7d15F25/info.json new file mode 100644 index 00000000..9ff79e51 --- /dev/null +++ b/blockchains/ethereum/assets/0x138fd9A2B4b283676109d5E76cf3b83de7d15F25/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zero Protocol Token", + "symbol": "ZNT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x138fd9A2B4b283676109d5E76cf3b83de7d15F25", + "status": "abandoned", + "id": "0x138fd9A2B4b283676109d5E76cf3b83de7d15F25" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x138fd9A2B4b283676109d5E76cf3b83de7d15F25/logo.png b/blockchains/ethereum/assets/0x138fd9A2B4b283676109d5E76cf3b83de7d15F25/logo.png new file mode 100644 index 00000000..4114eea0 Binary files /dev/null and b/blockchains/ethereum/assets/0x138fd9A2B4b283676109d5E76cf3b83de7d15F25/logo.png differ diff --git a/blockchains/ethereum/assets/0x139838869D3E1AB94C798917840dA1c079103c84/info.json b/blockchains/ethereum/assets/0x139838869D3E1AB94C798917840dA1c079103c84/info.json new file mode 100644 index 00000000..3a142af3 --- /dev/null +++ b/blockchains/ethereum/assets/0x139838869D3E1AB94C798917840dA1c079103c84/info.json @@ -0,0 +1,11 @@ +{ + "name": "Binantex", + "website": "https://binantex.com", + "description": "Binantex is a USD-pegged stablecoin, that provides its users with regular attestations of escrowed balances, full collateral and legal protection against the misappropriation of the underlying USD.", + "explorer": "https://etherscan.io/token/0x139838869D3E1AB94C798917840dA1c079103c84", + "type": "ERC20", + "symbol": "BNT", + "decimals": 18, + "status": "active", + "id": "0x139838869D3E1AB94C798917840dA1c079103c84" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x139838869D3E1AB94C798917840dA1c079103c84/logo.png b/blockchains/ethereum/assets/0x139838869D3E1AB94C798917840dA1c079103c84/logo.png new file mode 100644 index 00000000..8db794b1 Binary files /dev/null and b/blockchains/ethereum/assets/0x139838869D3E1AB94C798917840dA1c079103c84/logo.png differ diff --git a/blockchains/ethereum/assets/0x139d9397274bb9E2C29A9aa8Aa0b5874d30D62E3/info.json b/blockchains/ethereum/assets/0x139d9397274bb9E2C29A9aa8Aa0b5874d30D62E3/info.json new file mode 100644 index 00000000..c95e323e --- /dev/null +++ b/blockchains/ethereum/assets/0x139d9397274bb9E2C29A9aa8Aa0b5874d30D62E3/info.json @@ -0,0 +1,11 @@ +{ + "name": "BoutsPro", + "symbol": "BOUTS", + "type": "ERC20", + "decimals": 18, + "description": "Professional Karate Sports Organization.", + "website": "https://www.bouts.pro/", + "explorer": "https://etherscan.io/token/0x139d9397274bb9E2C29A9aa8Aa0b5874d30D62E3", + "status": "active", + "id": "0x139d9397274bb9E2C29A9aa8Aa0b5874d30D62E3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x139d9397274bb9E2C29A9aa8Aa0b5874d30D62E3/logo.png b/blockchains/ethereum/assets/0x139d9397274bb9E2C29A9aa8Aa0b5874d30D62E3/logo.png new file mode 100644 index 00000000..f7e9ccf2 Binary files /dev/null and b/blockchains/ethereum/assets/0x139d9397274bb9E2C29A9aa8Aa0b5874d30D62E3/logo.png differ diff --git a/blockchains/ethereum/assets/0x13Ad2D31925490B0E282D51AC1aE744f1da22C77/info.json b/blockchains/ethereum/assets/0x13Ad2D31925490B0E282D51AC1aE744f1da22C77/info.json new file mode 100644 index 00000000..25536a40 --- /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 new file mode 100644 index 00000000..724617ba --- /dev/null +++ b/blockchains/ethereum/assets/0x13B02c8dE71680e71F0820c996E4bE43c2F57d15/info.json @@ -0,0 +1,32 @@ +{ + "name": "mQQQ Token", + "website": "https://mirror.finance", + "description": "Wrapped Mirror QQQ Token.", + "explorer": "https://etherscan.io/token/0x13B02c8dE71680e71F0820c996E4bE43c2F57d15", + "type": "ERC20", + "symbol": "mQQQ", + "decimals": 18, + "status": "active", + "id": "0x13B02c8dE71680e71F0820c996E4bE43c2F57d15", + "tags": [ + "wrapped" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MirrorProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/mirror_protocol" + }, + { + "name": "discord", + "url": "https://discord.com/MirrorProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/@mirror-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13B02c8dE71680e71F0820c996E4bE43c2F57d15/logo.png b/blockchains/ethereum/assets/0x13B02c8dE71680e71F0820c996E4bE43c2F57d15/logo.png new file mode 100644 index 00000000..2265b120 Binary files /dev/null and b/blockchains/ethereum/assets/0x13B02c8dE71680e71F0820c996E4bE43c2F57d15/logo.png differ diff --git a/blockchains/ethereum/assets/0x13C2fab6354d3790D8ece4f0f1a3280b4A25aD96/info.json b/blockchains/ethereum/assets/0x13C2fab6354d3790D8ece4f0f1a3280b4A25aD96/info.json new file mode 100644 index 00000000..60b6129c --- /dev/null +++ b/blockchains/ethereum/assets/0x13C2fab6354d3790D8ece4f0f1a3280b4A25aD96/info.json @@ -0,0 +1,11 @@ +{ + "name": "PHI Token", + "symbol": "PHI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.phitoken.io/", + "explorer": "https://etherscan.io/token/0x13C2fab6354d3790D8ece4f0f1a3280b4A25aD96", + "status": "abandoned", + "id": "0x13C2fab6354d3790D8ece4f0f1a3280b4A25aD96" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13C2fab6354d3790D8ece4f0f1a3280b4A25aD96/logo.png b/blockchains/ethereum/assets/0x13C2fab6354d3790D8ece4f0f1a3280b4A25aD96/logo.png new file mode 100644 index 00000000..a0019f60 Binary files /dev/null and b/blockchains/ethereum/assets/0x13C2fab6354d3790D8ece4f0f1a3280b4A25aD96/logo.png differ diff --git a/blockchains/ethereum/assets/0x13E9EC660d872f55405d70e5C52D872136F0970c/info.json b/blockchains/ethereum/assets/0x13E9EC660d872f55405d70e5C52D872136F0970c/info.json new file mode 100644 index 00000000..a9093670 --- /dev/null +++ b/blockchains/ethereum/assets/0x13E9EC660d872f55405d70e5C52D872136F0970c/info.json @@ -0,0 +1,11 @@ +{ + "name": "TKT", + "symbol": "TKT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.tkt-twinkle.com/", + "explorer": "https://etherscan.io/token/0x13E9EC660d872f55405d70e5C52D872136F0970c", + "status": "abandoned", + "id": "0x13E9EC660d872f55405d70e5C52D872136F0970c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13E9EC660d872f55405d70e5C52D872136F0970c/logo.png b/blockchains/ethereum/assets/0x13E9EC660d872f55405d70e5C52D872136F0970c/logo.png new file mode 100644 index 00000000..0140fee4 Binary files /dev/null and b/blockchains/ethereum/assets/0x13E9EC660d872f55405d70e5C52D872136F0970c/logo.png differ diff --git a/blockchains/ethereum/assets/0x13EA82D5e1A811F55BDA9c86FdD6195A6bD23Aed/info.json b/blockchains/ethereum/assets/0x13EA82D5e1A811F55BDA9c86FdD6195A6bD23Aed/info.json new file mode 100644 index 00000000..d9077518 --- /dev/null +++ b/blockchains/ethereum/assets/0x13EA82D5e1A811F55BDA9c86FdD6195A6bD23Aed/info.json @@ -0,0 +1,11 @@ +{ + "name": "Travelling Free Token", + "symbol": "TFT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://www.tfchain.org/", + "explorer": "https://etherscan.io/token/0x13EA82D5e1A811F55BDA9c86FdD6195A6bD23Aed", + "status": "abandoned", + "id": "0x13EA82D5e1A811F55BDA9c86FdD6195A6bD23Aed" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13EA82D5e1A811F55BDA9c86FdD6195A6bD23Aed/logo.png b/blockchains/ethereum/assets/0x13EA82D5e1A811F55BDA9c86FdD6195A6bD23Aed/logo.png new file mode 100644 index 00000000..b7f609f8 Binary files /dev/null and b/blockchains/ethereum/assets/0x13EA82D5e1A811F55BDA9c86FdD6195A6bD23Aed/logo.png differ diff --git a/blockchains/ethereum/assets/0x13F1b7FDFbE1fc66676D56483e21B1ecb40b58E2/info.json b/blockchains/ethereum/assets/0x13F1b7FDFbE1fc66676D56483e21B1ecb40b58E2/info.json new file mode 100644 index 00000000..90d1b5b0 --- /dev/null +++ b/blockchains/ethereum/assets/0x13F1b7FDFbE1fc66676D56483e21B1ecb40b58E2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Accelerator", + "symbol": "ACC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://accelerator.network/", + "explorer": "https://etherscan.io/token/0x13F1b7FDFbE1fc66676D56483e21B1ecb40b58E2", + "status": "abandoned", + "id": "0x13F1b7FDFbE1fc66676D56483e21B1ecb40b58E2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13F1b7FDFbE1fc66676D56483e21B1ecb40b58E2/logo.png b/blockchains/ethereum/assets/0x13F1b7FDFbE1fc66676D56483e21B1ecb40b58E2/logo.png new file mode 100644 index 00000000..c202ef7f Binary files /dev/null and b/blockchains/ethereum/assets/0x13F1b7FDFbE1fc66676D56483e21B1ecb40b58E2/logo.png differ diff --git a/blockchains/ethereum/assets/0x13bDd7dcc28B585f193241B31995AF22f1b0256E/info.json b/blockchains/ethereum/assets/0x13bDd7dcc28B585f193241B31995AF22f1b0256E/info.json new file mode 100644 index 00000000..bdb2558a --- /dev/null +++ b/blockchains/ethereum/assets/0x13bDd7dcc28B585f193241B31995AF22f1b0256E/info.json @@ -0,0 +1,11 @@ +{ + "name": "GIRLTOKEN", + "symbol": "GIRL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x13bDd7dcc28B585f193241B31995AF22f1b0256E", + "status": "abandoned", + "id": "0x13bDd7dcc28B585f193241B31995AF22f1b0256E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13bDd7dcc28B585f193241B31995AF22f1b0256E/logo.png b/blockchains/ethereum/assets/0x13bDd7dcc28B585f193241B31995AF22f1b0256E/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x13bDd7dcc28B585f193241B31995AF22f1b0256E/logo.png differ diff --git a/blockchains/ethereum/assets/0x13c2B7F851E756415cF7d51d04dcF4F94A5b382E/info.json b/blockchains/ethereum/assets/0x13c2B7F851E756415cF7d51d04dcF4F94A5b382E/info.json new file mode 100644 index 00000000..ac435f3c --- /dev/null +++ b/blockchains/ethereum/assets/0x13c2B7F851E756415cF7d51d04dcF4F94A5b382E/info.json @@ -0,0 +1,11 @@ +{ + "name": "CitexToken", + "symbol": "CTT", + "type": "ERC20", + "decimals": 18, + "description": "POW digital asset trading platform.", + "website": "https://www.citex.io/", + "explorer": "https://etherscan.io/token/0x13c2B7F851E756415cF7d51d04dcF4F94A5b382E", + "status": "active", + "id": "0x13c2B7F851E756415cF7d51d04dcF4F94A5b382E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13c2B7F851E756415cF7d51d04dcF4F94A5b382E/logo.png b/blockchains/ethereum/assets/0x13c2B7F851E756415cF7d51d04dcF4F94A5b382E/logo.png new file mode 100644 index 00000000..d291fdfe Binary files /dev/null and b/blockchains/ethereum/assets/0x13c2B7F851E756415cF7d51d04dcF4F94A5b382E/logo.png differ diff --git a/blockchains/ethereum/assets/0x13d0bf45e5F319Fa0B58900807049f23caE7C40D/info.json b/blockchains/ethereum/assets/0x13d0bf45e5F319Fa0B58900807049f23caE7C40D/info.json new file mode 100644 index 00000000..0bf1ed78 --- /dev/null +++ b/blockchains/ethereum/assets/0x13d0bf45e5F319Fa0B58900807049f23caE7C40D/info.json @@ -0,0 +1,11 @@ +{ + "name": "阅读币", + "symbol": "READ", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x13d0bf45e5F319Fa0B58900807049f23caE7C40D", + "status": "abandoned", + "id": "0x13d0bf45e5F319Fa0B58900807049f23caE7C40D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13d0bf45e5F319Fa0B58900807049f23caE7C40D/logo.png b/blockchains/ethereum/assets/0x13d0bf45e5F319Fa0B58900807049f23caE7C40D/logo.png new file mode 100644 index 00000000..99f749b8 Binary files /dev/null and b/blockchains/ethereum/assets/0x13d0bf45e5F319Fa0B58900807049f23caE7C40D/logo.png differ diff --git a/blockchains/ethereum/assets/0x13d6b121817D78faC403Ebf2C59c0C93583991df/info.json b/blockchains/ethereum/assets/0x13d6b121817D78faC403Ebf2C59c0C93583991df/info.json new file mode 100644 index 00000000..3271043c --- /dev/null +++ b/blockchains/ethereum/assets/0x13d6b121817D78faC403Ebf2C59c0C93583991df/info.json @@ -0,0 +1,11 @@ +{ + "name": "MccCoin", + "symbol": "MCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x13d6b121817D78faC403Ebf2C59c0C93583991df", + "status": "active", + "id": "0x13d6b121817D78faC403Ebf2C59c0C93583991df" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13d6b121817D78faC403Ebf2C59c0C93583991df/logo.png b/blockchains/ethereum/assets/0x13d6b121817D78faC403Ebf2C59c0C93583991df/logo.png new file mode 100644 index 00000000..1bc83301 Binary files /dev/null and b/blockchains/ethereum/assets/0x13d6b121817D78faC403Ebf2C59c0C93583991df/logo.png differ diff --git a/blockchains/ethereum/assets/0x13f11C9905A08ca76e3e853bE63D4f0944326C72/info.json b/blockchains/ethereum/assets/0x13f11C9905A08ca76e3e853bE63D4f0944326C72/info.json new file mode 100644 index 00000000..c030b47d --- /dev/null +++ b/blockchains/ethereum/assets/0x13f11C9905A08ca76e3e853bE63D4f0944326C72/info.json @@ -0,0 +1,11 @@ +{ + "name": "Divi Exchange Token", + "symbol": "DIVX", + "type": "ERC20", + "decimals": 18, + "description": "Divi is a project with the goal of making popular cryptocurrencies easy to use for the public mass. Divi’s Smart Wallet and blockchain make transactions speedier, affordable, easier, safe to use, and less prone to user errors.", + "website": "https://diviproject.org/", + "explorer": "https://etherscan.io/token/0x13f11C9905A08ca76e3e853bE63D4f0944326C72", + "status": "abandoned", + "id": "0x13f11C9905A08ca76e3e853bE63D4f0944326C72" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13f11C9905A08ca76e3e853bE63D4f0944326C72/logo.png b/blockchains/ethereum/assets/0x13f11C9905A08ca76e3e853bE63D4f0944326C72/logo.png new file mode 100644 index 00000000..7475689f Binary files /dev/null and b/blockchains/ethereum/assets/0x13f11C9905A08ca76e3e853bE63D4f0944326C72/logo.png differ diff --git a/blockchains/ethereum/assets/0x13f25cd52b21650caa8225C9942337d914C9B030/info.json b/blockchains/ethereum/assets/0x13f25cd52b21650caa8225C9942337d914C9B030/info.json new file mode 100644 index 00000000..3ce77995 --- /dev/null +++ b/blockchains/ethereum/assets/0x13f25cd52b21650caa8225C9942337d914C9B030/info.json @@ -0,0 +1,11 @@ +{ + "name": "realchain token", + "symbol": "RCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://rcfund.org/en-US", + "explorer": "https://etherscan.io/token/0x13f25cd52b21650caa8225C9942337d914C9B030", + "status": "abandoned", + "id": "0x13f25cd52b21650caa8225C9942337d914C9B030" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x13f25cd52b21650caa8225C9942337d914C9B030/logo.png b/blockchains/ethereum/assets/0x13f25cd52b21650caa8225C9942337d914C9B030/logo.png new file mode 100644 index 00000000..1cc57f52 Binary files /dev/null and b/blockchains/ethereum/assets/0x13f25cd52b21650caa8225C9942337d914C9B030/logo.png differ diff --git a/blockchains/ethereum/assets/0x14094949152EDDBFcd073717200DA82fEd8dC960/info.json b/blockchains/ethereum/assets/0x14094949152EDDBFcd073717200DA82fEd8dC960/info.json new file mode 100644 index 00000000..e31851ac --- /dev/null +++ b/blockchains/ethereum/assets/0x14094949152EDDBFcd073717200DA82fEd8dC960/info.json @@ -0,0 +1,11 @@ +{ + "name": "bZx DAI iToken", + "symbol": "iDAI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bzx.network", + "explorer": "https://etherscan.io/token/0x14094949152EDDBFcd073717200DA82fEd8dC960", + "status": "abandoned", + "id": "0x14094949152EDDBFcd073717200DA82fEd8dC960" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14094949152EDDBFcd073717200DA82fEd8dC960/logo.png b/blockchains/ethereum/assets/0x14094949152EDDBFcd073717200DA82fEd8dC960/logo.png new file mode 100644 index 00000000..709d3e6f Binary files /dev/null and b/blockchains/ethereum/assets/0x14094949152EDDBFcd073717200DA82fEd8dC960/logo.png differ diff --git a/blockchains/ethereum/assets/0x1410434b0346f5bE678d0FB554E5c7ab620f8f4a/info.json b/blockchains/ethereum/assets/0x1410434b0346f5bE678d0FB554E5c7ab620f8f4a/info.json new file mode 100644 index 00000000..e2812e3c --- /dev/null +++ b/blockchains/ethereum/assets/0x1410434b0346f5bE678d0FB554E5c7ab620f8f4a/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitKan", + "website": "http://kan.land", + "description": "The KAN can be used and circulated in various scenarios to serve the community's value incentives and sharing economy, and ultimately construct the K Sites cryptocurrency ecological mechanism.", + "explorer": "https://etherscan.io/token/0x1410434b0346f5bE678d0FB554E5c7ab620f8f4a", + "type": "ERC20", + "symbol": "KAN", + "decimals": 18, + "status": "active", + "id": "0x1410434b0346f5bE678d0FB554E5c7ab620f8f4a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1410434b0346f5bE678d0FB554E5c7ab620f8f4a/logo.png b/blockchains/ethereum/assets/0x1410434b0346f5bE678d0FB554E5c7ab620f8f4a/logo.png new file mode 100644 index 00000000..140255e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x1410434b0346f5bE678d0FB554E5c7ab620f8f4a/logo.png differ diff --git a/blockchains/ethereum/assets/0x141044ccC363d6E8D92dD8983422775913e304eC/info.json b/blockchains/ethereum/assets/0x141044ccC363d6E8D92dD8983422775913e304eC/info.json new file mode 100644 index 00000000..52be9302 --- /dev/null +++ b/blockchains/ethereum/assets/0x141044ccC363d6E8D92dD8983422775913e304eC/info.json @@ -0,0 +1,11 @@ +{ + "name": "MinerOne", + "symbol": "MIO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x141044ccC363d6E8D92dD8983422775913e304eC", + "status": "abandoned", + "id": "0x141044ccC363d6E8D92dD8983422775913e304eC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x141044ccC363d6E8D92dD8983422775913e304eC/logo.png b/blockchains/ethereum/assets/0x141044ccC363d6E8D92dD8983422775913e304eC/logo.png new file mode 100755 index 00000000..60966c65 Binary files /dev/null and b/blockchains/ethereum/assets/0x141044ccC363d6E8D92dD8983422775913e304eC/logo.png differ diff --git a/blockchains/ethereum/assets/0x1410d4eC3D276C0eBbf16ccBE88A4383aE734eD0/info.json b/blockchains/ethereum/assets/0x1410d4eC3D276C0eBbf16ccBE88A4383aE734eD0/info.json new file mode 100644 index 00000000..477d3f42 --- /dev/null +++ b/blockchains/ethereum/assets/0x1410d4eC3D276C0eBbf16ccBE88A4383aE734eD0/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "\"\"", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1410d4eC3D276C0eBbf16ccBE88A4383aE734eD0", + "status": "abandoned", + "id": "0x1410d4eC3D276C0eBbf16ccBE88A4383aE734eD0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1410d4eC3D276C0eBbf16ccBE88A4383aE734eD0/logo.png b/blockchains/ethereum/assets/0x1410d4eC3D276C0eBbf16ccBE88A4383aE734eD0/logo.png new file mode 100644 index 00000000..11f53ba9 Binary files /dev/null and b/blockchains/ethereum/assets/0x1410d4eC3D276C0eBbf16ccBE88A4383aE734eD0/logo.png differ diff --git a/blockchains/ethereum/assets/0x1412f6Aa5ADC77C620715BB2a020AA690B85F68A/info.json b/blockchains/ethereum/assets/0x1412f6Aa5ADC77C620715BB2a020AA690B85F68A/info.json new file mode 100644 index 00000000..8c453325 --- /dev/null +++ b/blockchains/ethereum/assets/0x1412f6Aa5ADC77C620715BB2a020AA690B85F68A/info.json @@ -0,0 +1,11 @@ +{ + "name": "MargiX", + "symbol": "MGX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://margix.org/", + "explorer": "https://etherscan.io/token/0x1412f6Aa5ADC77C620715BB2a020AA690B85F68A", + "status": "abandoned", + "id": "0x1412f6Aa5ADC77C620715BB2a020AA690B85F68A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1412f6Aa5ADC77C620715BB2a020AA690B85F68A/logo.png b/blockchains/ethereum/assets/0x1412f6Aa5ADC77C620715BB2a020AA690B85F68A/logo.png new file mode 100644 index 00000000..38675be3 Binary files /dev/null and b/blockchains/ethereum/assets/0x1412f6Aa5ADC77C620715BB2a020AA690B85F68A/logo.png differ diff --git a/blockchains/ethereum/assets/0x1416946162B1C2c871A73B07E932D2fB6C932069/info.json b/blockchains/ethereum/assets/0x1416946162B1C2c871A73B07E932D2fB6C932069/info.json new file mode 100644 index 00000000..9a1b7dd0 --- /dev/null +++ b/blockchains/ethereum/assets/0x1416946162B1C2c871A73B07E932D2fB6C932069/info.json @@ -0,0 +1,17 @@ +{ + "name": "Energi", + "website": "https://energi.world/", + "description": "Cryptocurrency for World Consciousness.", + "explorer": "https://etherscan.io/token/0x1416946162b1c2c871a73b07e932d2fb6c932069", + "type": "ERC20", + "symbol": "NRGE", + "decimals": 18, + "status": "active", + "id": "0x1416946162B1C2c871A73B07E932D2fB6C932069", + "links": [ + { + "name": "github", + "url": "https://github.com/energicryptocurrency/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1416946162B1C2c871A73B07E932D2fB6C932069/logo.png b/blockchains/ethereum/assets/0x1416946162B1C2c871A73B07E932D2fB6C932069/logo.png new file mode 100644 index 00000000..eefc78ea Binary files /dev/null and b/blockchains/ethereum/assets/0x1416946162B1C2c871A73B07E932D2fB6C932069/logo.png differ diff --git a/blockchains/ethereum/assets/0x141ABB03F001dEDED9A0223d4ff26d929117B72e/info.json b/blockchains/ethereum/assets/0x141ABB03F001dEDED9A0223d4ff26d929117B72e/info.json new file mode 100644 index 00000000..adcf7956 --- /dev/null +++ b/blockchains/ethereum/assets/0x141ABB03F001dEDED9A0223d4ff26d929117B72e/info.json @@ -0,0 +1,11 @@ +{ + "name": "HighVibe Token", + "symbol": "HV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x141ABB03F001dEDED9A0223d4ff26d929117B72e", + "status": "spam", + "id": "0x141ABB03F001dEDED9A0223d4ff26d929117B72e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x141ABB03F001dEDED9A0223d4ff26d929117B72e/logo.png b/blockchains/ethereum/assets/0x141ABB03F001dEDED9A0223d4ff26d929117B72e/logo.png new file mode 100644 index 00000000..e7385b01 Binary files /dev/null and b/blockchains/ethereum/assets/0x141ABB03F001dEDED9A0223d4ff26d929117B72e/logo.png differ diff --git a/blockchains/ethereum/assets/0x142aC3BD1C94898Be6e311b020b547A11dC03990/info.json b/blockchains/ethereum/assets/0x142aC3BD1C94898Be6e311b020b547A11dC03990/info.json new file mode 100644 index 00000000..0ae2be79 --- /dev/null +++ b/blockchains/ethereum/assets/0x142aC3BD1C94898Be6e311b020b547A11dC03990/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lambda Space Token", + "symbol": "LAMBS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x142aC3BD1C94898Be6e311b020b547A11dC03990", + "status": "abandoned", + "id": "0x142aC3BD1C94898Be6e311b020b547A11dC03990" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x142aC3BD1C94898Be6e311b020b547A11dC03990/logo.png b/blockchains/ethereum/assets/0x142aC3BD1C94898Be6e311b020b547A11dC03990/logo.png new file mode 100644 index 00000000..f3077d51 Binary files /dev/null and b/blockchains/ethereum/assets/0x142aC3BD1C94898Be6e311b020b547A11dC03990/logo.png differ diff --git a/blockchains/ethereum/assets/0x14409B0Fc5C7f87b5DAd20754fE22d29A3dE8217/info.json b/blockchains/ethereum/assets/0x14409B0Fc5C7f87b5DAd20754fE22d29A3dE8217/info.json new file mode 100644 index 00000000..17bf90c0 --- /dev/null +++ b/blockchains/ethereum/assets/0x14409B0Fc5C7f87b5DAd20754fE22d29A3dE8217/info.json @@ -0,0 +1,14 @@ +{ + "name": "PYRO Network", + "symbol": "PYRO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://pyro.network/", + "explorer": "https://etherscan.io/token/0x14409B0Fc5C7f87b5DAd20754fE22d29A3dE8217", + "status": "active", + "id": "0x14409B0Fc5C7f87b5DAd20754fE22d29A3dE8217", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14409B0Fc5C7f87b5DAd20754fE22d29A3dE8217/logo.png b/blockchains/ethereum/assets/0x14409B0Fc5C7f87b5DAd20754fE22d29A3dE8217/logo.png new file mode 100644 index 00000000..0b9a2234 Binary files /dev/null and b/blockchains/ethereum/assets/0x14409B0Fc5C7f87b5DAd20754fE22d29A3dE8217/logo.png differ diff --git a/blockchains/ethereum/assets/0x144D65B4c4A57e9a700bD571e7E62982ECdcf887/info.json b/blockchains/ethereum/assets/0x144D65B4c4A57e9a700bD571e7E62982ECdcf887/info.json new file mode 100644 index 00000000..871c68c4 --- /dev/null +++ b/blockchains/ethereum/assets/0x144D65B4c4A57e9a700bD571e7E62982ECdcf887/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-7/30M67", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x144D65B4c4A57e9a700bD571e7E62982ECdcf887", + "status": "abandoned", + "id": "0x144D65B4c4A57e9a700bD571e7E62982ECdcf887" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x144D65B4c4A57e9a700bD571e7E62982ECdcf887/logo.png b/blockchains/ethereum/assets/0x144D65B4c4A57e9a700bD571e7E62982ECdcf887/logo.png new file mode 100644 index 00000000..f1772a50 Binary files /dev/null and b/blockchains/ethereum/assets/0x144D65B4c4A57e9a700bD571e7E62982ECdcf887/logo.png differ diff --git a/blockchains/ethereum/assets/0x1452DbfCff5aa0BA612B74876A025750a51B5b15/info.json b/blockchains/ethereum/assets/0x1452DbfCff5aa0BA612B74876A025750a51B5b15/info.json new file mode 100644 index 00000000..d397f767 --- /dev/null +++ b/blockchains/ethereum/assets/0x1452DbfCff5aa0BA612B74876A025750a51B5b15/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniqCoin", + "symbol": "UNIQ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1452DbfCff5aa0BA612B74876A025750a51B5b15", + "status": "abandoned", + "id": "0x1452DbfCff5aa0BA612B74876A025750a51B5b15" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1452DbfCff5aa0BA612B74876A025750a51B5b15/logo.png b/blockchains/ethereum/assets/0x1452DbfCff5aa0BA612B74876A025750a51B5b15/logo.png new file mode 100755 index 00000000..2750964f Binary files /dev/null and b/blockchains/ethereum/assets/0x1452DbfCff5aa0BA612B74876A025750a51B5b15/logo.png differ diff --git a/blockchains/ethereum/assets/0x1453Dbb8A29551ADe11D89825CA812e05317EAEB/info.json b/blockchains/ethereum/assets/0x1453Dbb8A29551ADe11D89825CA812e05317EAEB/info.json new file mode 100644 index 00000000..a34c1862 --- /dev/null +++ b/blockchains/ethereum/assets/0x1453Dbb8A29551ADe11D89825CA812e05317EAEB/info.json @@ -0,0 +1,11 @@ +{ + "name": "TENDIES Token", + "website": "https://tendies.dev", + "description": "$TEND is the Next Generation Autonomous and Hyper Deflationary Coin", + "explorer": "https://etherscan.io/token/0x1453Dbb8A29551ADe11D89825CA812e05317EAEB", + "type": "ERC20", + "symbol": "TEND", + "decimals": 18, + "status": "active", + "id": "0x1453Dbb8A29551ADe11D89825CA812e05317EAEB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1453Dbb8A29551ADe11D89825CA812e05317EAEB/logo.png b/blockchains/ethereum/assets/0x1453Dbb8A29551ADe11D89825CA812e05317EAEB/logo.png new file mode 100644 index 00000000..be69fa51 Binary files /dev/null and b/blockchains/ethereum/assets/0x1453Dbb8A29551ADe11D89825CA812e05317EAEB/logo.png differ diff --git a/blockchains/ethereum/assets/0x145b4467b2fa0Faf4296F165bca214691a5E08D6/info.json b/blockchains/ethereum/assets/0x145b4467b2fa0Faf4296F165bca214691a5E08D6/info.json new file mode 100644 index 00000000..4bbfe150 --- /dev/null +++ b/blockchains/ethereum/assets/0x145b4467b2fa0Faf4296F165bca214691a5E08D6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Indian Digital Dollar", + "symbol": "IDD", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x145b4467b2fa0Faf4296F165bca214691a5E08D6", + "status": "abandoned", + "id": "0x145b4467b2fa0Faf4296F165bca214691a5E08D6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x145b4467b2fa0Faf4296F165bca214691a5E08D6/logo.png b/blockchains/ethereum/assets/0x145b4467b2fa0Faf4296F165bca214691a5E08D6/logo.png new file mode 100644 index 00000000..72c28b57 Binary files /dev/null and b/blockchains/ethereum/assets/0x145b4467b2fa0Faf4296F165bca214691a5E08D6/logo.png differ diff --git a/blockchains/ethereum/assets/0x1460a58096d80a50a2F1f956DDA497611Fa4f165/info.json b/blockchains/ethereum/assets/0x1460a58096d80a50a2F1f956DDA497611Fa4f165/info.json new file mode 100644 index 00000000..51a34b8b --- /dev/null +++ b/blockchains/ethereum/assets/0x1460a58096d80a50a2F1f956DDA497611Fa4f165/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chainium", + "symbol": "CHX", + "type": "ERC20", + "decimals": 18, + "description": "Own (formerly Chainium) is a security token blockchain project focused on revolutionising equity markets.", + "website": "https://weown.com/", + "explorer": "https://etherscan.io/token/0x1460a58096d80a50a2F1f956DDA497611Fa4f165", + "status": "active", + "id": "0x1460a58096d80a50a2F1f956DDA497611Fa4f165" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1460a58096d80a50a2F1f956DDA497611Fa4f165/logo.png b/blockchains/ethereum/assets/0x1460a58096d80a50a2F1f956DDA497611Fa4f165/logo.png new file mode 100644 index 00000000..070a716a Binary files /dev/null and b/blockchains/ethereum/assets/0x1460a58096d80a50a2F1f956DDA497611Fa4f165/logo.png differ diff --git a/blockchains/ethereum/assets/0x147283B5e9a3e03fBaDa505e015900036Dc25A64/info.json b/blockchains/ethereum/assets/0x147283B5e9a3e03fBaDa505e015900036Dc25A64/info.json new file mode 100644 index 00000000..81f5cde5 --- /dev/null +++ b/blockchains/ethereum/assets/0x147283B5e9a3e03fBaDa505e015900036Dc25A64/info.json @@ -0,0 +1,11 @@ +{ + "name": "WONTON", + "symbol": "WONTON", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x147283B5e9a3e03fBaDa505e015900036Dc25A64", + "status": "abandoned", + "id": "0x147283B5e9a3e03fBaDa505e015900036Dc25A64" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x147283B5e9a3e03fBaDa505e015900036Dc25A64/logo.png b/blockchains/ethereum/assets/0x147283B5e9a3e03fBaDa505e015900036Dc25A64/logo.png new file mode 100644 index 00000000..3faf2d99 Binary files /dev/null and b/blockchains/ethereum/assets/0x147283B5e9a3e03fBaDa505e015900036Dc25A64/logo.png differ diff --git a/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json new file mode 100644 index 00000000..6393e2c0 --- /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 00000000..b26b7b80 Binary files /dev/null and b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png differ diff --git a/blockchains/ethereum/assets/0x147faF8De9d8D8DAAE129B187F0D02D819126750/info.json b/blockchains/ethereum/assets/0x147faF8De9d8D8DAAE129B187F0D02D819126750/info.json new file mode 100644 index 00000000..483009a1 --- /dev/null +++ b/blockchains/ethereum/assets/0x147faF8De9d8D8DAAE129B187F0D02D819126750/info.json @@ -0,0 +1,17 @@ +{ + "name": "GeoDB Coin", + "website": "https://geodb.com", + "description": "The GEO token is the representation of data value itself, in the form of a tradable virtual asset.", + "explorer": "https://etherscan.io/token/0x147faF8De9d8D8DAAE129B187F0D02D819126750", + "type": "ERC20", + "symbol": "GEO", + "decimals": 18, + "status": "active", + "id": "0x147faF8De9d8D8DAAE129B187F0D02D819126750", + "links": [ + { + "name": "whitepaper", + "url": "https://geodb.com/docs/geodb-white-paper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x147faF8De9d8D8DAAE129B187F0D02D819126750/logo.png b/blockchains/ethereum/assets/0x147faF8De9d8D8DAAE129B187F0D02D819126750/logo.png new file mode 100644 index 00000000..f091e529 Binary files /dev/null and b/blockchains/ethereum/assets/0x147faF8De9d8D8DAAE129B187F0D02D819126750/logo.png differ diff --git a/blockchains/ethereum/assets/0x14839bf22810F09fb163AF69BD21Bd5476F445Cd/info.json b/blockchains/ethereum/assets/0x14839bf22810F09fb163AF69BD21Bd5476F445Cd/info.json new file mode 100644 index 00000000..7247ead5 --- /dev/null +++ b/blockchains/ethereum/assets/0x14839bf22810F09fb163AF69BD21Bd5476F445Cd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Confido Token", + "symbol": "CFD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x14839bf22810F09fb163AF69BD21Bd5476F445Cd", + "status": "abandoned", + "id": "0x14839bf22810F09fb163AF69BD21Bd5476F445Cd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14839bf22810F09fb163AF69BD21Bd5476F445Cd/logo.png b/blockchains/ethereum/assets/0x14839bf22810F09fb163AF69BD21Bd5476F445Cd/logo.png new file mode 100644 index 00000000..e12f9a90 Binary files /dev/null and b/blockchains/ethereum/assets/0x14839bf22810F09fb163AF69BD21Bd5476F445Cd/logo.png differ diff --git a/blockchains/ethereum/assets/0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b/info.json b/blockchains/ethereum/assets/0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b/info.json new file mode 100644 index 00000000..089de925 --- /dev/null +++ b/blockchains/ethereum/assets/0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b/info.json @@ -0,0 +1,12 @@ +{ + "name": "DeFi Pulse Index", + "website": "http://tokensets.com/portfolio/dpi", + "description": "A basket created by DeFiPulse of the top DeFi tokens by market cap. The DPI Set is rebalanced monthly to realign to its market cap weighted index.", + "explorer": "https://etherscan.io/token/0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b", + "research": "https://defipulse.com/", + "type": "ERC20", + "symbol": "DPI", + "decimals": 18, + "status": "active", + "id": "0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b/logo.png b/blockchains/ethereum/assets/0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b/logo.png new file mode 100644 index 00000000..80097af6 Binary files /dev/null and b/blockchains/ethereum/assets/0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b/logo.png differ diff --git a/blockchains/ethereum/assets/0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea/info.json b/blockchains/ethereum/assets/0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea/info.json new file mode 100644 index 00000000..683b5de9 --- /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 00000000..e8c022d3 Binary files /dev/null and b/blockchains/ethereum/assets/0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea/logo.png differ diff --git a/blockchains/ethereum/assets/0x14C926F2290044B647e1Bf2072e67B495eff1905/info.json b/blockchains/ethereum/assets/0x14C926F2290044B647e1Bf2072e67B495eff1905/info.json new file mode 100644 index 00000000..d72c3f50 --- /dev/null +++ b/blockchains/ethereum/assets/0x14C926F2290044B647e1Bf2072e67B495eff1905/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bethereum", + "symbol": "BETHER", + "type": "ERC20", + "decimals": 18, + "description": "Bethereum is a decentralised, social-betting platform based on Ethereum technology and Smart Contracts. Bether is the digital ERC-223 token powering the Bethereum solution.", + "website": "https://www.bethereum.com", + "explorer": "https://etherscan.io/token/0x14C926F2290044B647e1Bf2072e67B495eff1905", + "status": "active", + "id": "0x14C926F2290044B647e1Bf2072e67B495eff1905" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14C926F2290044B647e1Bf2072e67B495eff1905/logo.png b/blockchains/ethereum/assets/0x14C926F2290044B647e1Bf2072e67B495eff1905/logo.png new file mode 100644 index 00000000..7f22d89e Binary files /dev/null and b/blockchains/ethereum/assets/0x14C926F2290044B647e1Bf2072e67B495eff1905/logo.png differ diff --git a/blockchains/ethereum/assets/0x14F0a12A43c36C49D4b403dD6e1A9B8222BE456C/info.json b/blockchains/ethereum/assets/0x14F0a12A43c36C49D4b403dD6e1A9B8222BE456C/info.json new file mode 100644 index 00000000..b4d0bae6 --- /dev/null +++ b/blockchains/ethereum/assets/0x14F0a12A43c36C49D4b403dD6e1A9B8222BE456C/info.json @@ -0,0 +1,11 @@ +{ + "name": "VINX Coin", + "website": "https://vinxcoin.com/", + "description": "The world's first utility token for fine wine buying. VXC revolutionizes how you buy wine, both retail and wholesale.", + "explorer": "https://etherscan.io/token/0x14F0a12A43c36C49D4b403dD6e1A9B8222BE456C", + "type": "ERC20", + "symbol": "VXC", + "decimals": 18, + "status": "active", + "id": "0x14F0a12A43c36C49D4b403dD6e1A9B8222BE456C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14F0a12A43c36C49D4b403dD6e1A9B8222BE456C/logo.png b/blockchains/ethereum/assets/0x14F0a12A43c36C49D4b403dD6e1A9B8222BE456C/logo.png new file mode 100644 index 00000000..5ff4af22 Binary files /dev/null and b/blockchains/ethereum/assets/0x14F0a12A43c36C49D4b403dD6e1A9B8222BE456C/logo.png differ diff --git a/blockchains/ethereum/assets/0x14F378683dFd56ACc2af2440F4B026658fdd78D4/info.json b/blockchains/ethereum/assets/0x14F378683dFd56ACc2af2440F4B026658fdd78D4/info.json new file mode 100644 index 00000000..621fde9e --- /dev/null +++ b/blockchains/ethereum/assets/0x14F378683dFd56ACc2af2440F4B026658fdd78D4/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitDrive", + "symbol": "BITD", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x14F378683dFd56ACc2af2440F4B026658fdd78D4", + "status": "abandoned", + "id": "0x14F378683dFd56ACc2af2440F4B026658fdd78D4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14F378683dFd56ACc2af2440F4B026658fdd78D4/logo.png b/blockchains/ethereum/assets/0x14F378683dFd56ACc2af2440F4B026658fdd78D4/logo.png new file mode 100755 index 00000000..4d5693d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x14F378683dFd56ACc2af2440F4B026658fdd78D4/logo.png differ diff --git a/blockchains/ethereum/assets/0x14F37B574242D366558dB61f3335289a5035c506/info.json b/blockchains/ethereum/assets/0x14F37B574242D366558dB61f3335289a5035c506/info.json new file mode 100644 index 00000000..fe43d021 --- /dev/null +++ b/blockchains/ethereum/assets/0x14F37B574242D366558dB61f3335289a5035c506/info.json @@ -0,0 +1,11 @@ +{ + "name": "HackerGold", + "symbol": "HKG", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x14F37B574242D366558dB61f3335289a5035c506", + "status": "abandoned", + "id": "0x14F37B574242D366558dB61f3335289a5035c506" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14F37B574242D366558dB61f3335289a5035c506/logo.png b/blockchains/ethereum/assets/0x14F37B574242D366558dB61f3335289a5035c506/logo.png new file mode 100644 index 00000000..84251e2d Binary files /dev/null and b/blockchains/ethereum/assets/0x14F37B574242D366558dB61f3335289a5035c506/logo.png differ diff --git a/blockchains/ethereum/assets/0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c/info.json b/blockchains/ethereum/assets/0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c/info.json new file mode 100644 index 00000000..dfa52c2f --- /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 00000000..def40b98 Binary files /dev/null and b/blockchains/ethereum/assets/0x14c3abF95Cb9C93a8b82C1CdCB76D72Cb87b2d4c/logo.png differ diff --git a/blockchains/ethereum/assets/0x14dDda446688b73161AA1382F4E4343353aF6FC8/info.json b/blockchains/ethereum/assets/0x14dDda446688b73161AA1382F4E4343353aF6FC8/info.json new file mode 100644 index 00000000..e7ed2fcf --- /dev/null +++ b/blockchains/ethereum/assets/0x14dDda446688b73161AA1382F4E4343353aF6FC8/info.json @@ -0,0 +1,11 @@ +{ + "name": "FXPay", + "symbol": "FXP", + "type": "ERC20", + "decimals": 8, + "description": "FXP is a gateway solution which will unify the Ecosystem and Forex industry based on the blockchain technology.", + "website": "https://fxpay.io/", + "explorer": "https://etherscan.io/token/0x14dDda446688b73161AA1382F4E4343353aF6FC8", + "status": "active", + "id": "0x14dDda446688b73161AA1382F4E4343353aF6FC8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14dDda446688b73161AA1382F4E4343353aF6FC8/logo.png b/blockchains/ethereum/assets/0x14dDda446688b73161AA1382F4E4343353aF6FC8/logo.png new file mode 100755 index 00000000..f59a5c5e Binary files /dev/null and b/blockchains/ethereum/assets/0x14dDda446688b73161AA1382F4E4343353aF6FC8/logo.png differ diff --git a/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/info.json b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/info.json new file mode 100644 index 00000000..a6916560 --- /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 00000000..5005332b 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 00000000..d4449d00 --- /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 00000000..e9f3bc92 Binary files /dev/null and b/blockchains/ethereum/assets/0x15059c599C16Fd8f70B633Ade165502D6402CD49/logo.png differ diff --git a/blockchains/ethereum/assets/0x150b0b96933B75Ce27af8b92441F8fB683bF9739/info.json b/blockchains/ethereum/assets/0x150b0b96933B75Ce27af8b92441F8fB683bF9739/info.json new file mode 100644 index 00000000..08e000f3 --- /dev/null +++ b/blockchains/ethereum/assets/0x150b0b96933B75Ce27af8b92441F8fB683bF9739/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dragonereum Gold", + "symbol": "GOLD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://dragonereum.io/", + "explorer": "https://etherscan.io/token/0x150b0b96933B75Ce27af8b92441F8fB683bF9739", + "status": "abandoned", + "id": "0x150b0b96933B75Ce27af8b92441F8fB683bF9739" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x150b0b96933B75Ce27af8b92441F8fB683bF9739/logo.png b/blockchains/ethereum/assets/0x150b0b96933B75Ce27af8b92441F8fB683bF9739/logo.png new file mode 100644 index 00000000..feb2b8a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x150b0b96933B75Ce27af8b92441F8fB683bF9739/logo.png differ diff --git a/blockchains/ethereum/assets/0x151202C9c18e495656f372281F493EB7698961D5/info.json b/blockchains/ethereum/assets/0x151202C9c18e495656f372281F493EB7698961D5/info.json new file mode 100644 index 00000000..b79f612b --- /dev/null +++ b/blockchains/ethereum/assets/0x151202C9c18e495656f372281F493EB7698961D5/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEBITUM", + "symbol": "DEB", + "type": "ERC20", + "decimals": 18, + "description": "Debitum is a lending ecosystem that connects small businesses, investors and service providers - currently risk assessors", + "website": "https://debitum.network/", + "explorer": "https://etherscan.io/token/0x151202C9c18e495656f372281F493EB7698961D5", + "status": "active", + "id": "0x151202C9c18e495656f372281F493EB7698961D5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x151202C9c18e495656f372281F493EB7698961D5/logo.png b/blockchains/ethereum/assets/0x151202C9c18e495656f372281F493EB7698961D5/logo.png new file mode 100644 index 00000000..b7d744a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x151202C9c18e495656f372281F493EB7698961D5/logo.png differ diff --git a/blockchains/ethereum/assets/0x1519AFf03b3E23722511D2576c769A77Baf09580/info.json b/blockchains/ethereum/assets/0x1519AFf03b3E23722511D2576c769A77Baf09580/info.json new file mode 100644 index 00000000..73c05df9 --- /dev/null +++ b/blockchains/ethereum/assets/0x1519AFf03b3E23722511D2576c769A77Baf09580/info.json @@ -0,0 +1,11 @@ +{ + "name": "B91Token", + "symbol": "B91", + "type": "ERC20", + "decimals": 18, + "description": "The B91 platform aims to create a blockchain ecosystem that integrates digital wealth management application and distribution.", + "website": "http://www.b91.com/", + "explorer": "https://etherscan.io/token/0x1519AFf03b3E23722511D2576c769A77Baf09580", + "status": "active", + "id": "0x1519AFf03b3E23722511D2576c769A77Baf09580" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1519AFf03b3E23722511D2576c769A77Baf09580/logo.png b/blockchains/ethereum/assets/0x1519AFf03b3E23722511D2576c769A77Baf09580/logo.png new file mode 100644 index 00000000..71d346d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x1519AFf03b3E23722511D2576c769A77Baf09580/logo.png differ diff --git a/blockchains/ethereum/assets/0x152649eA73beAb28c5b49B26eb48f7EAD6d4c898/info.json b/blockchains/ethereum/assets/0x152649eA73beAb28c5b49B26eb48f7EAD6d4c898/info.json new file mode 100644 index 00000000..2e38ce2d --- /dev/null +++ b/blockchains/ethereum/assets/0x152649eA73beAb28c5b49B26eb48f7EAD6d4c898/info.json @@ -0,0 +1,25 @@ +{ + "name": "PancakeSwap Token", + "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 00000000..ec09edc2 Binary files /dev/null and b/blockchains/ethereum/assets/0x152649eA73beAb28c5b49B26eb48f7EAD6d4c898/logo.png differ diff --git a/blockchains/ethereum/assets/0x152687Bc4A7FCC89049cF119F9ac3e5aCF2eE7ef/info.json b/blockchains/ethereum/assets/0x152687Bc4A7FCC89049cF119F9ac3e5aCF2eE7ef/info.json new file mode 100644 index 00000000..6b1c17ef --- /dev/null +++ b/blockchains/ethereum/assets/0x152687Bc4A7FCC89049cF119F9ac3e5aCF2eE7ef/info.json @@ -0,0 +1,11 @@ +{ + "name": "DeltaHub Community", + "website": "https://deltahub.capital/", + "description": "First Community Governed Economic Model (C-GEM) for Crypto Community.", + "explorer": "https://etherscan.io/token/0x152687Bc4A7FCC89049cF119F9ac3e5aCF2eE7ef", + "type": "ERC20", + "symbol": "DHC", + "decimals": 18, + "status": "active", + "id": "0x152687Bc4A7FCC89049cF119F9ac3e5aCF2eE7ef" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x152687Bc4A7FCC89049cF119F9ac3e5aCF2eE7ef/logo.png b/blockchains/ethereum/assets/0x152687Bc4A7FCC89049cF119F9ac3e5aCF2eE7ef/logo.png new file mode 100644 index 00000000..e337b0aa Binary files /dev/null and b/blockchains/ethereum/assets/0x152687Bc4A7FCC89049cF119F9ac3e5aCF2eE7ef/logo.png differ diff --git a/blockchains/ethereum/assets/0x1534a5715278163687D4F4d4cF27E345b4de1803/info.json b/blockchains/ethereum/assets/0x1534a5715278163687D4F4d4cF27E345b4de1803/info.json new file mode 100644 index 00000000..59fcac15 --- /dev/null +++ b/blockchains/ethereum/assets/0x1534a5715278163687D4F4d4cF27E345b4de1803/info.json @@ -0,0 +1,11 @@ +{ + "name": "Network Foundation", + "symbol": "NWF", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1534a5715278163687D4F4d4cF27E345b4de1803", + "status": "abandoned", + "id": "0x1534a5715278163687D4F4d4cF27E345b4de1803" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1534a5715278163687D4F4d4cF27E345b4de1803/logo.png b/blockchains/ethereum/assets/0x1534a5715278163687D4F4d4cF27E345b4de1803/logo.png new file mode 100644 index 00000000..597e2cfb Binary files /dev/null and b/blockchains/ethereum/assets/0x1534a5715278163687D4F4d4cF27E345b4de1803/logo.png differ diff --git a/blockchains/ethereum/assets/0x153eD9CC1b792979d2Bde0BBF45CC2A7e436a5F9/info.json b/blockchains/ethereum/assets/0x153eD9CC1b792979d2Bde0BBF45CC2A7e436a5F9/info.json new file mode 100644 index 00000000..1e380f46 --- /dev/null +++ b/blockchains/ethereum/assets/0x153eD9CC1b792979d2Bde0BBF45CC2A7e436a5F9/info.json @@ -0,0 +1,11 @@ +{ + "name": "XOVBank", + "symbol": "XOV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.xov.io/", + "explorer": "https://etherscan.io/token/0x153eD9CC1b792979d2Bde0BBF45CC2A7e436a5F9", + "status": "abandoned", + "id": "0x153eD9CC1b792979d2Bde0BBF45CC2A7e436a5F9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x153eD9CC1b792979d2Bde0BBF45CC2A7e436a5F9/logo.png b/blockchains/ethereum/assets/0x153eD9CC1b792979d2Bde0BBF45CC2A7e436a5F9/logo.png new file mode 100755 index 00000000..aae99771 Binary files /dev/null and b/blockchains/ethereum/assets/0x153eD9CC1b792979d2Bde0BBF45CC2A7e436a5F9/logo.png differ diff --git a/blockchains/ethereum/assets/0x15470A4cCB61704481FA6a2Afd993d585689D226/info.json b/blockchains/ethereum/assets/0x15470A4cCB61704481FA6a2Afd993d585689D226/info.json new file mode 100644 index 00000000..b4751950 --- /dev/null +++ b/blockchains/ethereum/assets/0x15470A4cCB61704481FA6a2Afd993d585689D226/info.json @@ -0,0 +1,11 @@ +{ + "name": "BRI", + "symbol": "BRI", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x15470A4cCB61704481FA6a2Afd993d585689D226", + "status": "active", + "id": "0x15470A4cCB61704481FA6a2Afd993d585689D226" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x15470A4cCB61704481FA6a2Afd993d585689D226/logo.png b/blockchains/ethereum/assets/0x15470A4cCB61704481FA6a2Afd993d585689D226/logo.png new file mode 100644 index 00000000..399b2817 Binary files /dev/null and b/blockchains/ethereum/assets/0x15470A4cCB61704481FA6a2Afd993d585689D226/logo.png differ diff --git a/blockchains/ethereum/assets/0x1563D521ba309e2Ad9f4aFfD6f4dE9759E8d4F21/info.json b/blockchains/ethereum/assets/0x1563D521ba309e2Ad9f4aFfD6f4dE9759E8d4F21/info.json new file mode 100644 index 00000000..ce513672 --- /dev/null +++ b/blockchains/ethereum/assets/0x1563D521ba309e2Ad9f4aFfD6f4dE9759E8d4F21/info.json @@ -0,0 +1,11 @@ +{ + "name": "VisionX", + "symbol": "VNX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1563D521ba309e2Ad9f4aFfD6f4dE9759E8d4F21", + "status": "abandoned", + "id": "0x1563D521ba309e2Ad9f4aFfD6f4dE9759E8d4F21" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1563D521ba309e2Ad9f4aFfD6f4dE9759E8d4F21/logo.png b/blockchains/ethereum/assets/0x1563D521ba309e2Ad9f4aFfD6f4dE9759E8d4F21/logo.png new file mode 100644 index 00000000..6c6206f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x1563D521ba309e2Ad9f4aFfD6f4dE9759E8d4F21/logo.png differ diff --git a/blockchains/ethereum/assets/0x15700B564Ca08D9439C58cA5053166E8317aa138/info.json b/blockchains/ethereum/assets/0x15700B564Ca08D9439C58cA5053166E8317aa138/info.json new file mode 100644 index 00000000..b79dd948 --- /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 00000000..f5beb338 Binary files /dev/null and b/blockchains/ethereum/assets/0x15700B564Ca08D9439C58cA5053166E8317aa138/logo.png differ diff --git a/blockchains/ethereum/assets/0x1571eD0bed4D987fe2b498DdBaE7DFA19519F651/info.json b/blockchains/ethereum/assets/0x1571eD0bed4D987fe2b498DdBaE7DFA19519F651/info.json new file mode 100644 index 00000000..1f3f6a92 --- /dev/null +++ b/blockchains/ethereum/assets/0x1571eD0bed4D987fe2b498DdBaE7DFA19519F651/info.json @@ -0,0 +1,11 @@ +{ + "name": "Harvest Interest Token", + "website": "https://harvest.finance", + "description": "iFARM automatically earns interest as Harvest Finance farms the newest DeFi protocols, optimizing yields using the latest farming techniques.", + "explorer": "https://etherscan.io/token/0x1571eD0bed4D987fe2b498DdBaE7DFA19519F651", + "type": "ERC20", + "symbol": "iFARM", + "decimals": 18, + "status": "active", + "id": "0x1571eD0bed4D987fe2b498DdBaE7DFA19519F651" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1571eD0bed4D987fe2b498DdBaE7DFA19519F651/logo.png b/blockchains/ethereum/assets/0x1571eD0bed4D987fe2b498DdBaE7DFA19519F651/logo.png new file mode 100644 index 00000000..f4f8229e Binary files /dev/null and b/blockchains/ethereum/assets/0x1571eD0bed4D987fe2b498DdBaE7DFA19519F651/logo.png differ diff --git a/blockchains/ethereum/assets/0x157207Df36cF1803399CCA15CAD867fd54514Fde/info.json b/blockchains/ethereum/assets/0x157207Df36cF1803399CCA15CAD867fd54514Fde/info.json new file mode 100644 index 00000000..f2ca59a2 --- /dev/null +++ b/blockchains/ethereum/assets/0x157207Df36cF1803399CCA15CAD867fd54514Fde/info.json @@ -0,0 +1,11 @@ +{ + "name": "Groundcoin", + "symbol": "GC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x157207Df36cF1803399CCA15CAD867fd54514Fde", + "status": "abandoned", + "id": "0x157207Df36cF1803399CCA15CAD867fd54514Fde" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x157207Df36cF1803399CCA15CAD867fd54514Fde/logo.png b/blockchains/ethereum/assets/0x157207Df36cF1803399CCA15CAD867fd54514Fde/logo.png new file mode 100644 index 00000000..28bcebc5 Binary files /dev/null and b/blockchains/ethereum/assets/0x157207Df36cF1803399CCA15CAD867fd54514Fde/logo.png differ diff --git a/blockchains/ethereum/assets/0x157281AcFf48cBFe8d7363e89C8445b98757E212/info.json b/blockchains/ethereum/assets/0x157281AcFf48cBFe8d7363e89C8445b98757E212/info.json new file mode 100644 index 00000000..b7547e59 --- /dev/null +++ b/blockchains/ethereum/assets/0x157281AcFf48cBFe8d7363e89C8445b98757E212/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lega", + "symbol": "LEGA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x157281AcFf48cBFe8d7363e89C8445b98757E212", + "status": "abandoned", + "id": "0x157281AcFf48cBFe8d7363e89C8445b98757E212" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x157281AcFf48cBFe8d7363e89C8445b98757E212/logo.png b/blockchains/ethereum/assets/0x157281AcFf48cBFe8d7363e89C8445b98757E212/logo.png new file mode 100644 index 00000000..29d2f2e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x157281AcFf48cBFe8d7363e89C8445b98757E212/logo.png differ diff --git a/blockchains/ethereum/assets/0x158079Ee67Fce2f58472A96584A73C7Ab9AC95c1/info.json b/blockchains/ethereum/assets/0x158079Ee67Fce2f58472A96584A73C7Ab9AC95c1/info.json new file mode 100644 index 00000000..e76677a6 --- /dev/null +++ b/blockchains/ethereum/assets/0x158079Ee67Fce2f58472A96584A73C7Ab9AC95c1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Compound Augur", + "symbol": "cREP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://compound.finance/", + "explorer": "https://etherscan.io/token/0x158079Ee67Fce2f58472A96584A73C7Ab9AC95c1", + "status": "abandoned", + "id": "0x158079Ee67Fce2f58472A96584A73C7Ab9AC95c1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x158079Ee67Fce2f58472A96584A73C7Ab9AC95c1/logo.png b/blockchains/ethereum/assets/0x158079Ee67Fce2f58472A96584A73C7Ab9AC95c1/logo.png new file mode 100644 index 00000000..c9e29967 Binary files /dev/null and b/blockchains/ethereum/assets/0x158079Ee67Fce2f58472A96584A73C7Ab9AC95c1/logo.png differ diff --git a/blockchains/ethereum/assets/0x15874d65e649880c2614e7a480cb7c9A55787FF6/info.json b/blockchains/ethereum/assets/0x15874d65e649880c2614e7a480cb7c9A55787FF6/info.json new file mode 100644 index 00000000..4d05da3a --- /dev/null +++ b/blockchains/ethereum/assets/0x15874d65e649880c2614e7a480cb7c9A55787FF6/info.json @@ -0,0 +1,11 @@ +{ + "name": "EthereumMax", + "website": "https://www.ethereummax.org/", + "description": "EthereumMax is an ERC-20 growth token built on the Ethereum network, with a vision to bridge the gap between real world communities and the practical benefits of a decentralized cryptotechnical economy", + "explorer": "https://etherscan.io/token/0x15874d65e649880c2614e7a480cb7c9A55787FF6", + "type": "ERC20", + "symbol": "eMax", + "decimals": 18, + "status": "active", + "id": "0x15874d65e649880c2614e7a480cb7c9A55787FF6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x15874d65e649880c2614e7a480cb7c9A55787FF6/logo.png b/blockchains/ethereum/assets/0x15874d65e649880c2614e7a480cb7c9A55787FF6/logo.png new file mode 100644 index 00000000..abdc6c2d Binary files /dev/null and b/blockchains/ethereum/assets/0x15874d65e649880c2614e7a480cb7c9A55787FF6/logo.png differ diff --git a/blockchains/ethereum/assets/0x159A1dFAe19057de57dFfFcbB3DA1aE784678965/info.json b/blockchains/ethereum/assets/0x159A1dFAe19057de57dFfFcbB3DA1aE784678965/info.json new file mode 100644 index 00000000..eebbaf08 --- /dev/null +++ b/blockchains/ethereum/assets/0x159A1dFAe19057de57dFfFcbB3DA1aE784678965/info.json @@ -0,0 +1,11 @@ +{ + "name": "Reflex", + "symbol": "RFX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://reflextoken.com", + "explorer": "https://etherscan.io/token/0x159A1dFAe19057de57dFfFcbB3DA1aE784678965", + "status": "abandoned", + "id": "0x159A1dFAe19057de57dFfFcbB3DA1aE784678965" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x159A1dFAe19057de57dFfFcbB3DA1aE784678965/logo.png b/blockchains/ethereum/assets/0x159A1dFAe19057de57dFfFcbB3DA1aE784678965/logo.png new file mode 100644 index 00000000..4cbe8d6c Binary files /dev/null and b/blockchains/ethereum/assets/0x159A1dFAe19057de57dFfFcbB3DA1aE784678965/logo.png differ diff --git a/blockchains/ethereum/assets/0x159b67BB724307e5d614F9483Da0c9842e74Db88/info.json b/blockchains/ethereum/assets/0x159b67BB724307e5d614F9483Da0c9842e74Db88/info.json new file mode 100644 index 00000000..66a84f5f --- /dev/null +++ b/blockchains/ethereum/assets/0x159b67BB724307e5d614F9483Da0c9842e74Db88/info.json @@ -0,0 +1,11 @@ +{ + "name": "AopxCoin", + "symbol": "Aopx", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x159b67BB724307e5d614F9483Da0c9842e74Db88", + "status": "abandoned", + "id": "0x159b67BB724307e5d614F9483Da0c9842e74Db88" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x159b67BB724307e5d614F9483Da0c9842e74Db88/logo.png b/blockchains/ethereum/assets/0x159b67BB724307e5d614F9483Da0c9842e74Db88/logo.png new file mode 100644 index 00000000..10943737 Binary files /dev/null and b/blockchains/ethereum/assets/0x159b67BB724307e5d614F9483Da0c9842e74Db88/logo.png differ diff --git a/blockchains/ethereum/assets/0x15A664416E42766A6cC0a1221d9C088548a6E731/info.json b/blockchains/ethereum/assets/0x15A664416E42766A6cC0a1221d9C088548a6E731/info.json new file mode 100644 index 00000000..241b4cdb --- /dev/null +++ b/blockchains/ethereum/assets/0x15A664416E42766A6cC0a1221d9C088548a6E731/info.json @@ -0,0 +1,11 @@ +{ + "name": "WEBN", + "symbol": "WEBN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://webinnovationph.com/", + "explorer": "https://etherscan.io/token/0x15A664416E42766A6cC0a1221d9C088548a6E731", + "status": "abandoned", + "id": "0x15A664416E42766A6cC0a1221d9C088548a6E731" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x15A664416E42766A6cC0a1221d9C088548a6E731/logo.png b/blockchains/ethereum/assets/0x15A664416E42766A6cC0a1221d9C088548a6E731/logo.png new file mode 100644 index 00000000..c1d99598 Binary files /dev/null and b/blockchains/ethereum/assets/0x15A664416E42766A6cC0a1221d9C088548a6E731/logo.png differ diff --git a/blockchains/ethereum/assets/0x15B543e986b8c34074DFc9901136d9355a537e7E/info.json b/blockchains/ethereum/assets/0x15B543e986b8c34074DFc9901136d9355a537e7E/info.json new file mode 100644 index 00000000..3807298e --- /dev/null +++ b/blockchains/ethereum/assets/0x15B543e986b8c34074DFc9901136d9355a537e7E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Student Coin", + "website": "https://www.studentcoin.org", + "description": "Student Coin is the first crypto platform that allows users to easily design, create, and manage personal, start-up, NFT, and DeFi tokens.", + "explorer": "https://etherscan.io/token/0x15b543e986b8c34074dfc9901136d9355a537e7e", + "type": "ERC20", + "symbol": "STC", + "decimals": 18, + "status": "active", + "id": "0x15B543e986b8c34074DFc9901136d9355a537e7E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x15B543e986b8c34074DFc9901136d9355a537e7E/logo.png b/blockchains/ethereum/assets/0x15B543e986b8c34074DFc9901136d9355a537e7E/logo.png new file mode 100644 index 00000000..abb9ffe6 Binary files /dev/null and b/blockchains/ethereum/assets/0x15B543e986b8c34074DFc9901136d9355a537e7E/logo.png differ diff --git a/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/info.json b/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/info.json new file mode 100644 index 00000000..b6c50cb9 --- /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 00000000..f262f107 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 new file mode 100644 index 00000000..070bfbfc --- /dev/null +++ b/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/info.json @@ -0,0 +1,37 @@ +{ + "name": "Gala", + "website": "https://gala.games", + "description": "GALA is the utility token powering the Gala Games ecosystem.", + "explorer": "https://etherscan.io/token/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA", + "type": "ERC20", + "symbol": "GALA", + "decimals": 8, + "status": "abandoned", + "id": "0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA", + "tags": [ + "nft", + "gamefi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/GoGalaGames" + }, + { + "name": "telegram", + "url": "https://t.me/GoGalaGames" + }, + { + "name": "discord", + "url": "https://discord.com/GoGalaGames" + }, + { + "name": "facebook", + "url": "https://facebook.com/GoGalaGames" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/GoGalaGames" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/info.json b/blockchains/ethereum/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/info.json new file mode 100644 index 00000000..5678e0b8 --- /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 00000000..78f54c92 Binary files /dev/null and b/blockchains/ethereum/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/logo.png differ diff --git a/blockchains/ethereum/assets/0x15bCDFAd12498DE8a922E62442Ae4CC4bd33bd25/info.json b/blockchains/ethereum/assets/0x15bCDFAd12498DE8a922E62442Ae4CC4bd33bd25/info.json new file mode 100644 index 00000000..f924ca64 --- /dev/null +++ b/blockchains/ethereum/assets/0x15bCDFAd12498DE8a922E62442Ae4CC4bd33bd25/info.json @@ -0,0 +1,11 @@ +{ + "name": "Walletreum Token", + "website": "https://walletreum.com", + "description": "WALT is the utility token of walletreum platform that rewards it's users for using the platform.", + "explorer": "https://etherscan.io/token/0x15bCDFAd12498DE8a922E62442Ae4CC4bd33bd25", + "type": "ERC20", + "symbol": "WALT", + "decimals": 18, + "status": "active", + "id": "0x15bCDFAd12498DE8a922E62442Ae4CC4bd33bd25" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x15bCDFAd12498DE8a922E62442Ae4CC4bd33bd25/logo.png b/blockchains/ethereum/assets/0x15bCDFAd12498DE8a922E62442Ae4CC4bd33bd25/logo.png new file mode 100644 index 00000000..70dab43c Binary files /dev/null and b/blockchains/ethereum/assets/0x15bCDFAd12498DE8a922E62442Ae4CC4bd33bd25/logo.png differ diff --git a/blockchains/ethereum/assets/0x15bdA08c3afbf5955D6e9B235Fd55a1FD0DbC829/info.json b/blockchains/ethereum/assets/0x15bdA08c3afbf5955D6e9B235Fd55a1FD0DbC829/info.json new file mode 100644 index 00000000..465c9554 --- /dev/null +++ b/blockchains/ethereum/assets/0x15bdA08c3afbf5955D6e9B235Fd55a1FD0DbC829/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alpha Coin", + "symbol": "APC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://alpha-coin.io/", + "explorer": "https://etherscan.io/token/0x15bdA08c3afbf5955D6e9B235Fd55a1FD0DbC829", + "status": "abandoned", + "id": "0x15bdA08c3afbf5955D6e9B235Fd55a1FD0DbC829" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x15bdA08c3afbf5955D6e9B235Fd55a1FD0DbC829/logo.png b/blockchains/ethereum/assets/0x15bdA08c3afbf5955D6e9B235Fd55a1FD0DbC829/logo.png new file mode 100644 index 00000000..d0b53f0f Binary files /dev/null and b/blockchains/ethereum/assets/0x15bdA08c3afbf5955D6e9B235Fd55a1FD0DbC829/logo.png differ diff --git a/blockchains/ethereum/assets/0x15ef5b9447710Eab904e63e6233Ff540400d603f/info.json b/blockchains/ethereum/assets/0x15ef5b9447710Eab904e63e6233Ff540400d603f/info.json new file mode 100644 index 00000000..9cde52bb --- /dev/null +++ b/blockchains/ethereum/assets/0x15ef5b9447710Eab904e63e6233Ff540400d603f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin2X", + "symbol": "BTC2X", + "type": "ERC20", + "decimals": 8, + "description": "Bitcoin2x is Faster, safer and cheaper transactions than Bitcoin.", + "website": "http://bitcoin-2x.org/", + "explorer": "https://etherscan.io/token/0x15ef5b9447710Eab904e63e6233Ff540400d603f", + "status": "abandoned", + "id": "0x15ef5b9447710Eab904e63e6233Ff540400d603f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x15ef5b9447710Eab904e63e6233Ff540400d603f/logo.png b/blockchains/ethereum/assets/0x15ef5b9447710Eab904e63e6233Ff540400d603f/logo.png new file mode 100644 index 00000000..e833d5cc Binary files /dev/null and b/blockchains/ethereum/assets/0x15ef5b9447710Eab904e63e6233Ff540400d603f/logo.png differ diff --git a/blockchains/ethereum/assets/0x1600C5502E7e94CaCf73C124331cfa3e20ADd40e/info.json b/blockchains/ethereum/assets/0x1600C5502E7e94CaCf73C124331cfa3e20ADd40e/info.json new file mode 100644 index 00000000..91bb6f51 --- /dev/null +++ b/blockchains/ethereum/assets/0x1600C5502E7e94CaCf73C124331cfa3e20ADd40e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ricoin", + "symbol": "RCO", + "type": "ERC20", + "decimals": 8, + "description": "A moeda do futuro. Venha transformar sua relação com o dinheiro, na maior plataforma de Ricoins do mundo.", + "website": "https://www.ricoin.app", + "explorer": "https://etherscan.io/token/0x1600C5502E7e94CaCf73C124331cfa3e20ADd40e", + "status": "active", + "id": "0x1600C5502E7e94CaCf73C124331cfa3e20ADd40e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1600C5502E7e94CaCf73C124331cfa3e20ADd40e/logo.png b/blockchains/ethereum/assets/0x1600C5502E7e94CaCf73C124331cfa3e20ADd40e/logo.png new file mode 100644 index 00000000..862baf07 Binary files /dev/null and b/blockchains/ethereum/assets/0x1600C5502E7e94CaCf73C124331cfa3e20ADd40e/logo.png differ diff --git a/blockchains/ethereum/assets/0x1602af2C782cC03F9241992E243290Fccf73Bb13/info.json b/blockchains/ethereum/assets/0x1602af2C782cC03F9241992E243290Fccf73Bb13/info.json new file mode 100644 index 00000000..8b852868 --- /dev/null +++ b/blockchains/ethereum/assets/0x1602af2C782cC03F9241992E243290Fccf73Bb13/info.json @@ -0,0 +1,11 @@ +{ + "name": "Qubitica", + "symbol": "QBIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.qubitica.net/", + "explorer": "https://etherscan.io/token/0x1602af2C782cC03F9241992E243290Fccf73Bb13", + "status": "abandoned", + "id": "0x1602af2C782cC03F9241992E243290Fccf73Bb13" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1602af2C782cC03F9241992E243290Fccf73Bb13/logo.png b/blockchains/ethereum/assets/0x1602af2C782cC03F9241992E243290Fccf73Bb13/logo.png new file mode 100644 index 00000000..861b07a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x1602af2C782cC03F9241992E243290Fccf73Bb13/logo.png differ diff --git a/blockchains/ethereum/assets/0x1614F18Fc94f47967A3Fbe5FfcD46d4e7Da3D787/info.json b/blockchains/ethereum/assets/0x1614F18Fc94f47967A3Fbe5FfcD46d4e7Da3D787/info.json new file mode 100644 index 00000000..43c08be6 --- /dev/null +++ b/blockchains/ethereum/assets/0x1614F18Fc94f47967A3Fbe5FfcD46d4e7Da3D787/info.json @@ -0,0 +1,11 @@ +{ + "name": "PAID Network", + "symbol": "PAID", + "type": "ERC20", + "decimals": 18, + "description": "PAID Network is a comprehensive business toolkit for all business transaction needs.", + "website": "https://paidnetwork.com/", + "explorer": "https://etherscan.io/token/0x1614f18fc94f47967a3fbe5ffcd46d4e7da3d787", + "status": "active", + "id": "0x1614F18Fc94f47967A3Fbe5FfcD46d4e7Da3D787" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1614F18Fc94f47967A3Fbe5FfcD46d4e7Da3D787/logo.png b/blockchains/ethereum/assets/0x1614F18Fc94f47967A3Fbe5FfcD46d4e7Da3D787/logo.png new file mode 100644 index 00000000..13ed286b Binary files /dev/null and b/blockchains/ethereum/assets/0x1614F18Fc94f47967A3Fbe5FfcD46d4e7Da3D787/logo.png differ diff --git a/blockchains/ethereum/assets/0x16172F24b626B58eDa8ba0daD551d60821Af6599/info.json b/blockchains/ethereum/assets/0x16172F24b626B58eDa8ba0daD551d60821Af6599/info.json new file mode 100644 index 00000000..83fe5a4b --- /dev/null +++ b/blockchains/ethereum/assets/0x16172F24b626B58eDa8ba0daD551d60821Af6599/info.json @@ -0,0 +1,11 @@ +{ + "name": "iCrowdCoin", + "symbol": "ICC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.icoplatform.io/en/app/", + "explorer": "https://etherscan.io/token/0x16172F24b626B58eDa8ba0daD551d60821Af6599", + "status": "abandoned", + "id": "0x16172F24b626B58eDa8ba0daD551d60821Af6599" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x16172F24b626B58eDa8ba0daD551d60821Af6599/logo.png b/blockchains/ethereum/assets/0x16172F24b626B58eDa8ba0daD551d60821Af6599/logo.png new file mode 100644 index 00000000..0321b584 Binary files /dev/null and b/blockchains/ethereum/assets/0x16172F24b626B58eDa8ba0daD551d60821Af6599/logo.png differ diff --git a/blockchains/ethereum/assets/0x161a5d1fC314727ba7ffD8EF166f32ca30Ff87Df/info.json b/blockchains/ethereum/assets/0x161a5d1fC314727ba7ffD8EF166f32ca30Ff87Df/info.json new file mode 100644 index 00000000..01666686 --- /dev/null +++ b/blockchains/ethereum/assets/0x161a5d1fC314727ba7ffD8EF166f32ca30Ff87Df/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chernobyl", + "symbol": "CHR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x161a5d1fC314727ba7ffD8EF166f32ca30Ff87Df", + "status": "abandoned", + "id": "0x161a5d1fC314727ba7ffD8EF166f32ca30Ff87Df" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x161a5d1fC314727ba7ffD8EF166f32ca30Ff87Df/logo.png b/blockchains/ethereum/assets/0x161a5d1fC314727ba7ffD8EF166f32ca30Ff87Df/logo.png new file mode 100644 index 00000000..ec7014cc Binary files /dev/null and b/blockchains/ethereum/assets/0x161a5d1fC314727ba7ffD8EF166f32ca30Ff87Df/logo.png differ diff --git a/blockchains/ethereum/assets/0x1626e3d05De1428FD209BBfb911d78E0E06a73F2/info.json b/blockchains/ethereum/assets/0x1626e3d05De1428FD209BBfb911d78E0E06a73F2/info.json new file mode 100644 index 00000000..bb34d4bc --- /dev/null +++ b/blockchains/ethereum/assets/0x1626e3d05De1428FD209BBfb911d78E0E06a73F2/info.json @@ -0,0 +1,11 @@ +{ + "name": "NCSVToken", + "symbol": "NCSV", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1626e3d05De1428FD209BBfb911d78E0E06a73F2", + "status": "abandoned", + "id": "0x1626e3d05De1428FD209BBfb911d78E0E06a73F2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1626e3d05De1428FD209BBfb911d78E0E06a73F2/logo.png b/blockchains/ethereum/assets/0x1626e3d05De1428FD209BBfb911d78E0E06a73F2/logo.png new file mode 100644 index 00000000..f10345ea Binary files /dev/null and b/blockchains/ethereum/assets/0x1626e3d05De1428FD209BBfb911d78E0E06a73F2/logo.png differ diff --git a/blockchains/ethereum/assets/0x162b3b37aAB1c09BD852F6227B17d4a5a9F60962/info.json b/blockchains/ethereum/assets/0x162b3b37aAB1c09BD852F6227B17d4a5a9F60962/info.json new file mode 100644 index 00000000..26236589 --- /dev/null +++ b/blockchains/ethereum/assets/0x162b3b37aAB1c09BD852F6227B17d4a5a9F60962/info.json @@ -0,0 +1,11 @@ +{ + "name": "TradePowerDEX", + "website": "https://tradepowerdex.com", + "description": "New Dex with No Boundries. Trading, Liquidity Pools, Leveraging, Lending. Dividend sharing for Token Holders", + "explorer": "https://etherscan.io/token/0x162b3b37aAB1c09BD852F6227B17d4a5a9F60962", + "type": "ERC20", + "symbol": "TPX", + "decimals": 18, + "status": "active", + "id": "0x162b3b37aAB1c09BD852F6227B17d4a5a9F60962" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x162b3b37aAB1c09BD852F6227B17d4a5a9F60962/logo.png b/blockchains/ethereum/assets/0x162b3b37aAB1c09BD852F6227B17d4a5a9F60962/logo.png new file mode 100644 index 00000000..247934a5 Binary files /dev/null and b/blockchains/ethereum/assets/0x162b3b37aAB1c09BD852F6227B17d4a5a9F60962/logo.png differ diff --git a/blockchains/ethereum/assets/0x163c754eF4D9C03Fc7Fa9cf6Dd43bFc760E6Ce89/info.json b/blockchains/ethereum/assets/0x163c754eF4D9C03Fc7Fa9cf6Dd43bFc760E6Ce89/info.json new file mode 100644 index 00000000..02fb6a3b --- /dev/null +++ b/blockchains/ethereum/assets/0x163c754eF4D9C03Fc7Fa9cf6Dd43bFc760E6Ce89/info.json @@ -0,0 +1,17 @@ +{ + "name": "MaggotToken", + "website": "https://rottenswap.org/", + "description": "Earn MaggotTokens by buying and selling RottenTokens. 2.5% of every RottenToken transfer is burned and turned into MaggotTokens.", + "explorer": "https://etherscan.io/token/0x163c754eF4D9C03Fc7Fa9cf6Dd43bFc760E6Ce89", + "type": "ERC20", + "symbol": "MAGGOT", + "decimals": 18, + "status": "active", + "id": "0x163c754eF4D9C03Fc7Fa9cf6Dd43bFc760E6Ce89", + "links": [ + { + "name": "github", + "url": "https://github.com/rottenswap" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x163c754eF4D9C03Fc7Fa9cf6Dd43bFc760E6Ce89/logo.png b/blockchains/ethereum/assets/0x163c754eF4D9C03Fc7Fa9cf6Dd43bFc760E6Ce89/logo.png new file mode 100644 index 00000000..8e249ce8 Binary files /dev/null and b/blockchains/ethereum/assets/0x163c754eF4D9C03Fc7Fa9cf6Dd43bFc760E6Ce89/logo.png differ diff --git a/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/info.json b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/info.json new file mode 100644 index 00000000..3958c670 --- /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 00000000..cb7f6e39 Binary files /dev/null and b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/logo.png differ diff --git a/blockchains/ethereum/assets/0x1641abdd83E25131645b241a7302FD0Ea9903b51/info.json b/blockchains/ethereum/assets/0x1641abdd83E25131645b241a7302FD0Ea9903b51/info.json new file mode 100644 index 00000000..df2937d0 --- /dev/null +++ b/blockchains/ethereum/assets/0x1641abdd83E25131645b241a7302FD0Ea9903b51/info.json @@ -0,0 +1,11 @@ +{ + "name": "Soom Classic Token", + "symbol": "SMC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1641abdd83E25131645b241a7302FD0Ea9903b51", + "status": "abandoned", + "id": "0x1641abdd83E25131645b241a7302FD0Ea9903b51" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1641abdd83E25131645b241a7302FD0Ea9903b51/logo.png b/blockchains/ethereum/assets/0x1641abdd83E25131645b241a7302FD0Ea9903b51/logo.png new file mode 100644 index 00000000..484c80d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x1641abdd83E25131645b241a7302FD0Ea9903b51/logo.png differ diff --git a/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/info.json b/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/info.json new file mode 100644 index 00000000..0501d3ce --- /dev/null +++ b/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/info.json @@ -0,0 +1,52 @@ +{ + "name": "FortKnoxster", + "website": "https://fortknoxster.com", + "description": "FortKnoxster's DieFi solution is an automated crypto testament and inheritance platform. DieFi users' crypto portfolio information and credentials are automatically passed on to the chosen beneficiaries in case of emergency, memory loss, or death.", + "explorer": "https://etherscan.io/token/0x16484d73ac08d2355f466d448d2b79d2039f6ebb", + "type": "ERC20", + "symbol": "FKX", + "decimals": 18, + "status": "active", + "id": "0x16484d73Ac08d2355F466d448D2b79D2039F6EBB", + "links": [ + { + "name": "x", + "url": "https://x.com/FortKnoxster" + }, + { + "name": "telegram", + "url": "https://t.me/FortKnoxster" + }, + { + "name": "facebook", + "url": "https://facebook.com/FortKnoxster" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/FortKnoxster" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/FortKnoxster" + }, + { + "name": "whitepaper", + "url": "https://fortknoxster.com/FortKnoxster_Whitepaper_English.pdf" + }, + { + "name": "github", + "url": "https://github.com/fortknoxster" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fortknoxster" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fortknoxster" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/logo.png b/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/logo.png new file mode 100644 index 00000000..8ccf651f Binary files /dev/null and b/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/logo.png differ diff --git a/blockchains/ethereum/assets/0x164F64eF2A44444743c5472FA68fb3784060D286/info.json b/blockchains/ethereum/assets/0x164F64eF2A44444743c5472FA68fb3784060D286/info.json new file mode 100644 index 00000000..fa5fca80 --- /dev/null +++ b/blockchains/ethereum/assets/0x164F64eF2A44444743c5472FA68fb3784060D286/info.json @@ -0,0 +1,11 @@ +{ + "name": "T8Coin", + "symbol": "T8C", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x164F64eF2A44444743c5472FA68fb3784060D286", + "status": "abandoned", + "id": "0x164F64eF2A44444743c5472FA68fb3784060D286" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x164F64eF2A44444743c5472FA68fb3784060D286/logo.png b/blockchains/ethereum/assets/0x164F64eF2A44444743c5472FA68fb3784060D286/logo.png new file mode 100644 index 00000000..5f5490ef Binary files /dev/null and b/blockchains/ethereum/assets/0x164F64eF2A44444743c5472FA68fb3784060D286/logo.png differ diff --git a/blockchains/ethereum/assets/0x165440036Ce972C5F8EBef667086707e48B2623e/info.json b/blockchains/ethereum/assets/0x165440036Ce972C5F8EBef667086707e48B2623e/info.json new file mode 100644 index 00000000..36600225 --- /dev/null +++ b/blockchains/ethereum/assets/0x165440036Ce972C5F8EBef667086707e48B2623e/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniGraph", + "symbol": "GRAPH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://unigraph.app/", + "explorer": "https://etherscan.io/token/0x165440036Ce972C5F8EBef667086707e48B2623e", + "status": "abandoned", + "id": "0x165440036Ce972C5F8EBef667086707e48B2623e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x165440036Ce972C5F8EBef667086707e48B2623e/logo.png b/blockchains/ethereum/assets/0x165440036Ce972C5F8EBef667086707e48B2623e/logo.png new file mode 100644 index 00000000..151cabcb Binary files /dev/null and b/blockchains/ethereum/assets/0x165440036Ce972C5F8EBef667086707e48B2623e/logo.png differ diff --git a/blockchains/ethereum/assets/0x165Cb5Cd6c56c5f1e224a9a2DA750621929F4419/info.json b/blockchains/ethereum/assets/0x165Cb5Cd6c56c5f1e224a9a2DA750621929F4419/info.json new file mode 100644 index 00000000..67e49787 --- /dev/null +++ b/blockchains/ethereum/assets/0x165Cb5Cd6c56c5f1e224a9a2DA750621929F4419/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mars", + "symbol": "MARS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x165Cb5Cd6c56c5f1e224a9a2DA750621929F4419", + "status": "abandoned", + "id": "0x165Cb5Cd6c56c5f1e224a9a2DA750621929F4419" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x165Cb5Cd6c56c5f1e224a9a2DA750621929F4419/logo.png b/blockchains/ethereum/assets/0x165Cb5Cd6c56c5f1e224a9a2DA750621929F4419/logo.png new file mode 100644 index 00000000..faf98837 Binary files /dev/null and b/blockchains/ethereum/assets/0x165Cb5Cd6c56c5f1e224a9a2DA750621929F4419/logo.png differ diff --git a/blockchains/ethereum/assets/0x1662CFFEFa08b150329E419b2F1a13D010174246/info.json b/blockchains/ethereum/assets/0x1662CFFEFa08b150329E419b2F1a13D010174246/info.json new file mode 100644 index 00000000..23a27d0f --- /dev/null +++ b/blockchains/ethereum/assets/0x1662CFFEFa08b150329E419b2F1a13D010174246/info.json @@ -0,0 +1,11 @@ +{ + "name": "OxProtocol", + "symbol": "OXP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1662CFFEFa08b150329E419b2F1a13D010174246", + "status": "abandoned", + "id": "0x1662CFFEFa08b150329E419b2F1a13D010174246" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1662CFFEFa08b150329E419b2F1a13D010174246/logo.png b/blockchains/ethereum/assets/0x1662CFFEFa08b150329E419b2F1a13D010174246/logo.png new file mode 100644 index 00000000..bc830737 Binary files /dev/null and b/blockchains/ethereum/assets/0x1662CFFEFa08b150329E419b2F1a13D010174246/logo.png differ diff --git a/blockchains/ethereum/assets/0x166F1a7eCAe00bd43876A25B10a63C575e05c0e7/info.json b/blockchains/ethereum/assets/0x166F1a7eCAe00bd43876A25B10a63C575e05c0e7/info.json new file mode 100644 index 00000000..b59038df --- /dev/null +++ b/blockchains/ethereum/assets/0x166F1a7eCAe00bd43876A25B10a63C575e05c0e7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vera", + "symbol": "Vera", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.veraexchange.com/", + "explorer": "https://etherscan.io/token/0x166F1a7eCAe00bd43876A25B10a63C575e05c0e7", + "status": "abandoned", + "id": "0x166F1a7eCAe00bd43876A25B10a63C575e05c0e7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x166F1a7eCAe00bd43876A25B10a63C575e05c0e7/logo.png b/blockchains/ethereum/assets/0x166F1a7eCAe00bd43876A25B10a63C575e05c0e7/logo.png new file mode 100644 index 00000000..2fafc607 Binary files /dev/null and b/blockchains/ethereum/assets/0x166F1a7eCAe00bd43876A25B10a63C575e05c0e7/logo.png differ diff --git a/blockchains/ethereum/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json b/blockchains/ethereum/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json new file mode 100644 index 00000000..53422b05 --- /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 00000000..9051b3f3 Binary files /dev/null and b/blockchains/ethereum/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/logo.png differ diff --git a/blockchains/ethereum/assets/0x1680Fc81D0B0Fd0B1A0ad3BEc3F75040cd7C19BC/info.json b/blockchains/ethereum/assets/0x1680Fc81D0B0Fd0B1A0ad3BEc3F75040cd7C19BC/info.json new file mode 100644 index 00000000..e3613acc --- /dev/null +++ b/blockchains/ethereum/assets/0x1680Fc81D0B0Fd0B1A0ad3BEc3F75040cd7C19BC/info.json @@ -0,0 +1,11 @@ +{ + "name": "SMOOA", + "symbol": "SMO", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1680Fc81D0B0Fd0B1A0ad3BEc3F75040cd7C19BC", + "status": "abandoned", + "id": "0x1680Fc81D0B0Fd0B1A0ad3BEc3F75040cd7C19BC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1680Fc81D0B0Fd0B1A0ad3BEc3F75040cd7C19BC/logo.png b/blockchains/ethereum/assets/0x1680Fc81D0B0Fd0B1A0ad3BEc3F75040cd7C19BC/logo.png new file mode 100755 index 00000000..5aae1dac Binary files /dev/null and b/blockchains/ethereum/assets/0x1680Fc81D0B0Fd0B1A0ad3BEc3F75040cd7C19BC/logo.png differ diff --git a/blockchains/ethereum/assets/0x168296bb09e24A88805CB9c33356536B980D3fC5/info.json b/blockchains/ethereum/assets/0x168296bb09e24A88805CB9c33356536B980D3fC5/info.json new file mode 100644 index 00000000..2a80d207 --- /dev/null +++ b/blockchains/ethereum/assets/0x168296bb09e24A88805CB9c33356536B980D3fC5/info.json @@ -0,0 +1,11 @@ +{ + "name": "RHOC", + "symbol": "RHOC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x168296bb09e24A88805CB9c33356536B980D3fC5", + "status": "abandoned", + "id": "0x168296bb09e24A88805CB9c33356536B980D3fC5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x168296bb09e24A88805CB9c33356536B980D3fC5/logo.png b/blockchains/ethereum/assets/0x168296bb09e24A88805CB9c33356536B980D3fC5/logo.png new file mode 100755 index 00000000..89b92328 Binary files /dev/null and b/blockchains/ethereum/assets/0x168296bb09e24A88805CB9c33356536B980D3fC5/logo.png differ diff --git a/blockchains/ethereum/assets/0x1690c9cDc2Ac4C0cBEc38E9e03774320071550eC/info.json b/blockchains/ethereum/assets/0x1690c9cDc2Ac4C0cBEc38E9e03774320071550eC/info.json new file mode 100644 index 00000000..db11af02 --- /dev/null +++ b/blockchains/ethereum/assets/0x1690c9cDc2Ac4C0cBEc38E9e03774320071550eC/info.json @@ -0,0 +1,11 @@ +{ + "name": "CMC COINS", + "symbol": "CMCC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1690c9cDc2Ac4C0cBEc38E9e03774320071550eC", + "status": "abandoned", + "id": "0x1690c9cDc2Ac4C0cBEc38E9e03774320071550eC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1690c9cDc2Ac4C0cBEc38E9e03774320071550eC/logo.png b/blockchains/ethereum/assets/0x1690c9cDc2Ac4C0cBEc38E9e03774320071550eC/logo.png new file mode 100755 index 00000000..08ad45ef Binary files /dev/null and b/blockchains/ethereum/assets/0x1690c9cDc2Ac4C0cBEc38E9e03774320071550eC/logo.png differ diff --git a/blockchains/ethereum/assets/0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8/info.json b/blockchains/ethereum/assets/0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8/info.json new file mode 100644 index 00000000..5ea740e0 --- /dev/null +++ b/blockchains/ethereum/assets/0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8/info.json @@ -0,0 +1,29 @@ +{ + "name": "KIRA Network", + "symbol": "KEX", + "type": "ERC20", + "decimals": 6, + "description": "KIRA is a Layer 1 network enabling market access to any digital asset in the cryptocurrency ecosystem.", + "website": "https://kira.network", + "explorer": "https://etherscan.io/token/0x16980b3b4a3f9d89e33311b5aa8f80303e5ca4f8", + "status": "active", + "id": "0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8", + "links": [ + { + "name": "source_code", + "url": "https://git.kira.network" + }, + { + "name": "x", + "url": "https://x.com/kira_core" + }, + { + "name": "telegram", + "url": "https://t.me/kirainterex" + }, + { + "name": "blog", + "url": "https://blog.kira.network" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8/logo.png b/blockchains/ethereum/assets/0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8/logo.png new file mode 100644 index 00000000..59935dcf Binary files /dev/null and b/blockchains/ethereum/assets/0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8/logo.png differ diff --git a/blockchains/ethereum/assets/0x16B0E62aC13a2fAeD36D18bce2356d25Ab3CfAD3/info.json b/blockchains/ethereum/assets/0x16B0E62aC13a2fAeD36D18bce2356d25Ab3CfAD3/info.json new file mode 100644 index 00000000..26251fcd --- /dev/null +++ b/blockchains/ethereum/assets/0x16B0E62aC13a2fAeD36D18bce2356d25Ab3CfAD3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Boutique", + "symbol": "BTQ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x16B0E62aC13a2fAeD36D18bce2356d25Ab3CfAD3", + "status": "abandoned", + "id": "0x16B0E62aC13a2fAeD36D18bce2356d25Ab3CfAD3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x16B0E62aC13a2fAeD36D18bce2356d25Ab3CfAD3/logo.png b/blockchains/ethereum/assets/0x16B0E62aC13a2fAeD36D18bce2356d25Ab3CfAD3/logo.png new file mode 100755 index 00000000..cde6ecc3 Binary files /dev/null and b/blockchains/ethereum/assets/0x16B0E62aC13a2fAeD36D18bce2356d25Ab3CfAD3/logo.png differ diff --git a/blockchains/ethereum/assets/0x16B87CA39b3501F3f318F65780a305E20d6fcd52/info.json b/blockchains/ethereum/assets/0x16B87CA39b3501F3f318F65780a305E20d6fcd52/info.json new file mode 100644 index 00000000..bbcf37df --- /dev/null +++ b/blockchains/ethereum/assets/0x16B87CA39b3501F3f318F65780a305E20d6fcd52/info.json @@ -0,0 +1,11 @@ +{ + "name": "LaariCoin", + "symbol": "LAAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x16B87CA39b3501F3f318F65780a305E20d6fcd52", + "status": "abandoned", + "id": "0x16B87CA39b3501F3f318F65780a305E20d6fcd52" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x16B87CA39b3501F3f318F65780a305E20d6fcd52/logo.png b/blockchains/ethereum/assets/0x16B87CA39b3501F3f318F65780a305E20d6fcd52/logo.png new file mode 100644 index 00000000..1c76e9b9 Binary files /dev/null and b/blockchains/ethereum/assets/0x16B87CA39b3501F3f318F65780a305E20d6fcd52/logo.png differ diff --git a/blockchains/ethereum/assets/0x16D790Ad4e33725D44741251f100e635C323bEb9/info.json b/blockchains/ethereum/assets/0x16D790Ad4e33725D44741251f100e635C323bEb9/info.json new file mode 100644 index 00000000..e7fe2fa7 --- /dev/null +++ b/blockchains/ethereum/assets/0x16D790Ad4e33725D44741251f100e635C323bEb9/info.json @@ -0,0 +1,11 @@ +{ + "name": "OwnTheDay.io Days", + "symbol": "DAYS", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x16D790Ad4e33725D44741251f100e635C323bEb9", + "status": "abandoned", + "id": "0x16D790Ad4e33725D44741251f100e635C323bEb9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x16D790Ad4e33725D44741251f100e635C323bEb9/logo.png b/blockchains/ethereum/assets/0x16D790Ad4e33725D44741251f100e635C323bEb9/logo.png new file mode 100644 index 00000000..6236e205 Binary files /dev/null and b/blockchains/ethereum/assets/0x16D790Ad4e33725D44741251f100e635C323bEb9/logo.png differ diff --git a/blockchains/ethereum/assets/0x16EA01aCB4b0Bca2000ee5473348B6937ee6f72F/info.json b/blockchains/ethereum/assets/0x16EA01aCB4b0Bca2000ee5473348B6937ee6f72F/info.json new file mode 100644 index 00000000..46c595fd --- /dev/null +++ b/blockchains/ethereum/assets/0x16EA01aCB4b0Bca2000ee5473348B6937ee6f72F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Enecuum", + "symbol": "ENQ", + "type": "ERC20", + "decimals": 10, + "description": "Blockchain Mobile Network for decentralized application.", + "website": "https://new.enecuum.com/", + "explorer": "https://etherscan.io/token/0x16EA01aCB4b0Bca2000ee5473348B6937ee6f72F", + "status": "active", + "id": "0x16EA01aCB4b0Bca2000ee5473348B6937ee6f72F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x16EA01aCB4b0Bca2000ee5473348B6937ee6f72F/logo.png b/blockchains/ethereum/assets/0x16EA01aCB4b0Bca2000ee5473348B6937ee6f72F/logo.png new file mode 100644 index 00000000..2982dc91 Binary files /dev/null and b/blockchains/ethereum/assets/0x16EA01aCB4b0Bca2000ee5473348B6937ee6f72F/logo.png differ diff --git a/blockchains/ethereum/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/info.json b/blockchains/ethereum/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/info.json new file mode 100644 index 00000000..d37a2487 --- /dev/null +++ b/blockchains/ethereum/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/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://etherscan.io/token/0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4", + "type": "ERC20", + "symbol": "ROUTE", + "decimals": 18, + "status": "active", + "id": "0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4", + "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/ethereum/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/logo.png b/blockchains/ethereum/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/logo.png new file mode 100644 index 00000000..45d5fa65 Binary files /dev/null and b/blockchains/ethereum/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/logo.png differ diff --git a/blockchains/ethereum/assets/0x16Fd77bb3af8A29b295ff50fA6BE88432dE0B35b/info.json b/blockchains/ethereum/assets/0x16Fd77bb3af8A29b295ff50fA6BE88432dE0B35b/info.json new file mode 100644 index 00000000..485d18e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x16Fd77bb3af8A29b295ff50fA6BE88432dE0B35b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Grano Protocol", + "website": "https://granoprotocol.org", + "description": "Grano Protocol is digital money built for everyone as a unique reserve asset.", + "explorer": "https://etherscan.io/token/0x16Fd77bb3af8A29b295ff50fA6BE88432dE0B35b", + "type": "ERC20", + "symbol": "GRANO", + "decimals": 18, + "status": "active", + "id": "0x16Fd77bb3af8A29b295ff50fA6BE88432dE0B35b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x16Fd77bb3af8A29b295ff50fA6BE88432dE0B35b/logo.png b/blockchains/ethereum/assets/0x16Fd77bb3af8A29b295ff50fA6BE88432dE0B35b/logo.png new file mode 100644 index 00000000..979a55a9 Binary files /dev/null and b/blockchains/ethereum/assets/0x16Fd77bb3af8A29b295ff50fA6BE88432dE0B35b/logo.png differ diff --git a/blockchains/ethereum/assets/0x16aB6ED897D04856Ff138122Db4b7767078a20F3/info.json b/blockchains/ethereum/assets/0x16aB6ED897D04856Ff138122Db4b7767078a20F3/info.json new file mode 100644 index 00000000..0abb20fd --- /dev/null +++ b/blockchains/ethereum/assets/0x16aB6ED897D04856Ff138122Db4b7767078a20F3/info.json @@ -0,0 +1,11 @@ +{ + "name": "hexplay", + "symbol": "HXP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x16aB6ED897D04856Ff138122Db4b7767078a20F3", + "status": "abandoned", + "id": "0x16aB6ED897D04856Ff138122Db4b7767078a20F3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x16aB6ED897D04856Ff138122Db4b7767078a20F3/logo.png b/blockchains/ethereum/assets/0x16aB6ED897D04856Ff138122Db4b7767078a20F3/logo.png new file mode 100644 index 00000000..36faf021 Binary files /dev/null and b/blockchains/ethereum/assets/0x16aB6ED897D04856Ff138122Db4b7767078a20F3/logo.png differ diff --git a/blockchains/ethereum/assets/0x16bBaB40F4A614f90Fb8bb6474C5952f48Fd5D34/info.json b/blockchains/ethereum/assets/0x16bBaB40F4A614f90Fb8bb6474C5952f48Fd5D34/info.json new file mode 100644 index 00000000..c5412b1e --- /dev/null +++ b/blockchains/ethereum/assets/0x16bBaB40F4A614f90Fb8bb6474C5952f48Fd5D34/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eternode", + "symbol": "ETE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x16bBaB40F4A614f90Fb8bb6474C5952f48Fd5D34", + "status": "abandoned", + "id": "0x16bBaB40F4A614f90Fb8bb6474C5952f48Fd5D34" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x16bBaB40F4A614f90Fb8bb6474C5952f48Fd5D34/logo.png b/blockchains/ethereum/assets/0x16bBaB40F4A614f90Fb8bb6474C5952f48Fd5D34/logo.png new file mode 100644 index 00000000..e40c7b73 Binary files /dev/null and b/blockchains/ethereum/assets/0x16bBaB40F4A614f90Fb8bb6474C5952f48Fd5D34/logo.png differ diff --git a/blockchains/ethereum/assets/0x16c1E5BAF21b9Fa4BC9f2C374E4dC19fAB5Ac5Dc/info.json b/blockchains/ethereum/assets/0x16c1E5BAF21b9Fa4BC9f2C374E4dC19fAB5Ac5Dc/info.json new file mode 100644 index 00000000..fc83a103 --- /dev/null +++ b/blockchains/ethereum/assets/0x16c1E5BAF21b9Fa4BC9f2C374E4dC19fAB5Ac5Dc/info.json @@ -0,0 +1,11 @@ +{ + "name": "APOT", + "symbol": "APOT", + "type": "ERC20", + "decimals": 18, + "description": "Allbit has embraced APOT's philosophy to enable Allbit users to build collective intelligence and grow the cryptographic market in the right direction, incorporating the APOT Token into Allbit.", + "website": "https://apot.io/", + "explorer": "https://etherscan.io/token/0x16c1E5BAF21b9Fa4BC9f2C374E4dC19fAB5Ac5Dc", + "status": "active", + "id": "0x16c1E5BAF21b9Fa4BC9f2C374E4dC19fAB5Ac5Dc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x16c1E5BAF21b9Fa4BC9f2C374E4dC19fAB5Ac5Dc/logo.png b/blockchains/ethereum/assets/0x16c1E5BAF21b9Fa4BC9f2C374E4dC19fAB5Ac5Dc/logo.png new file mode 100644 index 00000000..cab810bb Binary files /dev/null and b/blockchains/ethereum/assets/0x16c1E5BAF21b9Fa4BC9f2C374E4dC19fAB5Ac5Dc/logo.png differ diff --git a/blockchains/ethereum/assets/0x16dEC18c210Ef7F9AE2C26e1E040bF9fADC9D5DB/info.json b/blockchains/ethereum/assets/0x16dEC18c210Ef7F9AE2C26e1E040bF9fADC9D5DB/info.json new file mode 100644 index 00000000..39983d94 --- /dev/null +++ b/blockchains/ethereum/assets/0x16dEC18c210Ef7F9AE2C26e1E040bF9fADC9D5DB/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 198-CN29", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x16dEC18c210Ef7F9AE2C26e1E040bF9fADC9D5DB", + "status": "abandoned", + "id": "0x16dEC18c210Ef7F9AE2C26e1E040bF9fADC9D5DB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x16dEC18c210Ef7F9AE2C26e1E040bF9fADC9D5DB/logo.png b/blockchains/ethereum/assets/0x16dEC18c210Ef7F9AE2C26e1E040bF9fADC9D5DB/logo.png new file mode 100644 index 00000000..d5c57a5a Binary files /dev/null and b/blockchains/ethereum/assets/0x16dEC18c210Ef7F9AE2C26e1E040bF9fADC9D5DB/logo.png differ diff --git a/blockchains/ethereum/assets/0x16de59092dAE5CcF4A1E6439D611fd0653f0Bd01/info.json b/blockchains/ethereum/assets/0x16de59092dAE5CcF4A1E6439D611fd0653f0Bd01/info.json new file mode 100644 index 00000000..63fcef90 --- /dev/null +++ b/blockchains/ethereum/assets/0x16de59092dAE5CcF4A1E6439D611fd0653f0Bd01/info.json @@ -0,0 +1,11 @@ +{ + "name": "iearn DAI", + "symbol": "yDAI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x16de59092dAE5CcF4A1E6439D611fd0653f0Bd01", + "status": "abandoned", + "id": "0x16de59092dAE5CcF4A1E6439D611fd0653f0Bd01" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x16de59092dAE5CcF4A1E6439D611fd0653f0Bd01/logo.png b/blockchains/ethereum/assets/0x16de59092dAE5CcF4A1E6439D611fd0653f0Bd01/logo.png new file mode 100644 index 00000000..9aa9d5c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x16de59092dAE5CcF4A1E6439D611fd0653f0Bd01/logo.png differ diff --git a/blockchains/ethereum/assets/0x16f812Be7FfF02cAF662B85d5d58a5da6572D4Df/info.json b/blockchains/ethereum/assets/0x16f812Be7FfF02cAF662B85d5d58a5da6572D4Df/info.json new file mode 100644 index 00000000..e9d32c71 --- /dev/null +++ b/blockchains/ethereum/assets/0x16f812Be7FfF02cAF662B85d5d58a5da6572D4Df/info.json @@ -0,0 +1,11 @@ +{ + "name": "United Traders Token", + "symbol": "UTT", + "type": "ERC20", + "decimals": 8, + "description": "United Traders, found online at UnitedTraders.com. offers an investment marketplace, Access to multiple exchanges, and online financial education materials.", + "website": "https://uttoken.io/", + "explorer": "https://etherscan.io/token/0x16f812Be7FfF02cAF662B85d5d58a5da6572D4Df", + "status": "active", + "id": "0x16f812Be7FfF02cAF662B85d5d58a5da6572D4Df" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x16f812Be7FfF02cAF662B85d5d58a5da6572D4Df/logo.png b/blockchains/ethereum/assets/0x16f812Be7FfF02cAF662B85d5d58a5da6572D4Df/logo.png new file mode 100644 index 00000000..1cbc6d82 Binary files /dev/null and b/blockchains/ethereum/assets/0x16f812Be7FfF02cAF662B85d5d58a5da6572D4Df/logo.png differ diff --git a/blockchains/ethereum/assets/0x17052d51E954592C1046320c2371AbaB6C73Ef10/info.json b/blockchains/ethereum/assets/0x17052d51E954592C1046320c2371AbaB6C73Ef10/info.json new file mode 100644 index 00000000..2ae553a2 --- /dev/null +++ b/blockchains/ethereum/assets/0x17052d51E954592C1046320c2371AbaB6C73Ef10/info.json @@ -0,0 +1,11 @@ +{ + "name": "ATHENIAN WARRIOR", + "symbol": "ATH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x17052d51E954592C1046320c2371AbaB6C73Ef10", + "status": "abandoned", + "id": "0x17052d51E954592C1046320c2371AbaB6C73Ef10" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x17052d51E954592C1046320c2371AbaB6C73Ef10/logo.png b/blockchains/ethereum/assets/0x17052d51E954592C1046320c2371AbaB6C73Ef10/logo.png new file mode 100644 index 00000000..c5a66937 Binary files /dev/null and b/blockchains/ethereum/assets/0x17052d51E954592C1046320c2371AbaB6C73Ef10/logo.png differ diff --git a/blockchains/ethereum/assets/0x170b275CEd089FffAEBFe927F445a350ED9160DC/info.json b/blockchains/ethereum/assets/0x170b275CEd089FffAEBFe927F445a350ED9160DC/info.json new file mode 100644 index 00000000..92833e54 --- /dev/null +++ b/blockchains/ethereum/assets/0x170b275CEd089FffAEBFe927F445a350ED9160DC/info.json @@ -0,0 +1,11 @@ +{ + "name": "OwnData", + "symbol": "OWN", + "type": "ERC20", + "decimals": 8, + "description": "Monetize your owndata with Blockchain.", + "website": "https://owndata.network", + "explorer": "https://etherscan.io/token/0x170b275CEd089FffAEBFe927F445a350ED9160DC", + "status": "active", + "id": "0x170b275CEd089FffAEBFe927F445a350ED9160DC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x170b275CEd089FffAEBFe927F445a350ED9160DC/logo.png b/blockchains/ethereum/assets/0x170b275CEd089FffAEBFe927F445a350ED9160DC/logo.png new file mode 100644 index 00000000..e35e73a6 Binary files /dev/null and b/blockchains/ethereum/assets/0x170b275CEd089FffAEBFe927F445a350ED9160DC/logo.png differ diff --git a/blockchains/ethereum/assets/0x1710Ce5A145199Fb7F4C68d16eDF32C95b2850D9/info.json b/blockchains/ethereum/assets/0x1710Ce5A145199Fb7F4C68d16eDF32C95b2850D9/info.json new file mode 100644 index 00000000..cfee7e30 --- /dev/null +++ b/blockchains/ethereum/assets/0x1710Ce5A145199Fb7F4C68d16eDF32C95b2850D9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Down", + "symbol": "DOWN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1710Ce5A145199Fb7F4C68d16eDF32C95b2850D9", + "status": "abandoned", + "id": "0x1710Ce5A145199Fb7F4C68d16eDF32C95b2850D9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1710Ce5A145199Fb7F4C68d16eDF32C95b2850D9/logo.png b/blockchains/ethereum/assets/0x1710Ce5A145199Fb7F4C68d16eDF32C95b2850D9/logo.png new file mode 100644 index 00000000..2850667d Binary files /dev/null and b/blockchains/ethereum/assets/0x1710Ce5A145199Fb7F4C68d16eDF32C95b2850D9/logo.png differ diff --git a/blockchains/ethereum/assets/0x1712Aad2C773ee04bdC9114b32163c058321CD85/info.json b/blockchains/ethereum/assets/0x1712Aad2C773ee04bdC9114b32163c058321CD85/info.json new file mode 100644 index 00000000..b92654b1 --- /dev/null +++ b/blockchains/ethereum/assets/0x1712Aad2C773ee04bdC9114b32163c058321CD85/info.json @@ -0,0 +1,11 @@ +{ + "name": "LimitSwap", + "website": "https://limitswap.com", + "description": "LimitSwap is a Dex trading bot written in Python that allows users to trade using Limit Orders", + "explorer": "https://etherscan.io/token/0x1712Aad2C773ee04bdC9114b32163c058321CD85", + "type": "ERC20", + "symbol": "LIMIT", + "decimals": 18, + "status": "active", + "id": "0x1712Aad2C773ee04bdC9114b32163c058321CD85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1712Aad2C773ee04bdC9114b32163c058321CD85/logo.png b/blockchains/ethereum/assets/0x1712Aad2C773ee04bdC9114b32163c058321CD85/logo.png new file mode 100644 index 00000000..c258da1d Binary files /dev/null and b/blockchains/ethereum/assets/0x1712Aad2C773ee04bdC9114b32163c058321CD85/logo.png differ diff --git a/blockchains/ethereum/assets/0x171664573e3969874DBa31c35082151Ea4f181F3/info.json b/blockchains/ethereum/assets/0x171664573e3969874DBa31c35082151Ea4f181F3/info.json new file mode 100644 index 00000000..376f32dd --- /dev/null +++ b/blockchains/ethereum/assets/0x171664573e3969874DBa31c35082151Ea4f181F3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ciaone Token (Ciao.one)", + "website": "https://ciao.one", + "description": "The Ciaone Token allows you to access to many services and benefits offered by the Ciao.one Association. Earn some CIAO participating and enjoy the freedom to really own your Italian style experiences and adventures.", + "explorer": "https://etherscan.io/token/0x171664573e3969874DBa31c35082151Ea4f181F3", + "type": "ERC20", + "symbol": "CIAO", + "decimals": 18, + "status": "active", + "id": "0x171664573e3969874DBa31c35082151Ea4f181F3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x171664573e3969874DBa31c35082151Ea4f181F3/logo.png b/blockchains/ethereum/assets/0x171664573e3969874DBa31c35082151Ea4f181F3/logo.png new file mode 100644 index 00000000..c9c36de7 Binary files /dev/null and b/blockchains/ethereum/assets/0x171664573e3969874DBa31c35082151Ea4f181F3/logo.png differ diff --git a/blockchains/ethereum/assets/0x171D750d42d661B62C277a6B486ADb82348c3Eca/info.json b/blockchains/ethereum/assets/0x171D750d42d661B62C277a6B486ADb82348c3Eca/info.json new file mode 100644 index 00000000..b905723d --- /dev/null +++ b/blockchains/ethereum/assets/0x171D750d42d661B62C277a6B486ADb82348c3Eca/info.json @@ -0,0 +1,11 @@ +{ + "name": "Omnitude Token", + "symbol": "ECOM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://omnitude.tech", + "explorer": "https://etherscan.io/token/0x171D750d42d661B62C277a6B486ADb82348c3Eca", + "status": "active", + "id": "0x171D750d42d661B62C277a6B486ADb82348c3Eca" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x171D750d42d661B62C277a6B486ADb82348c3Eca/logo.png b/blockchains/ethereum/assets/0x171D750d42d661B62C277a6B486ADb82348c3Eca/logo.png new file mode 100755 index 00000000..44d5392b Binary files /dev/null and b/blockchains/ethereum/assets/0x171D750d42d661B62C277a6B486ADb82348c3Eca/logo.png differ diff --git a/blockchains/ethereum/assets/0x1735Db6AB5BAa19eA55d0AdcEeD7bcDc008B3136/info.json b/blockchains/ethereum/assets/0x1735Db6AB5BAa19eA55d0AdcEeD7bcDc008B3136/info.json new file mode 100644 index 00000000..d90609ff --- /dev/null +++ b/blockchains/ethereum/assets/0x1735Db6AB5BAa19eA55d0AdcEeD7bcDc008B3136/info.json @@ -0,0 +1,11 @@ +{ + "name": "UREEQA", + "type": "ERC20", + "symbol": "URQA", + "decimals": 18, + "website": "https://ureeqa.com", + "description": "URQA is the token of the UREEQA platform.", + "explorer": "https://etherscan.io/token/0x1735Db6AB5BAa19eA55d0AdcEeD7bcDc008B3136", + "status": "active", + "id": "0x1735Db6AB5BAa19eA55d0AdcEeD7bcDc008B3136" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1735Db6AB5BAa19eA55d0AdcEeD7bcDc008B3136/logo.png b/blockchains/ethereum/assets/0x1735Db6AB5BAa19eA55d0AdcEeD7bcDc008B3136/logo.png new file mode 100644 index 00000000..7c551d82 Binary files /dev/null and b/blockchains/ethereum/assets/0x1735Db6AB5BAa19eA55d0AdcEeD7bcDc008B3136/logo.png differ diff --git a/blockchains/ethereum/assets/0x174897edD3ce414084A009d22db31C7b7826400d/info.json b/blockchains/ethereum/assets/0x174897edD3ce414084A009d22db31C7b7826400d/info.json new file mode 100644 index 00000000..dc21b6d3 --- /dev/null +++ b/blockchains/ethereum/assets/0x174897edD3ce414084A009d22db31C7b7826400d/info.json @@ -0,0 +1,11 @@ +{ + "name": "JOON", + "symbol": "JOON", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x174897edD3ce414084A009d22db31C7b7826400d", + "status": "abandoned", + "id": "0x174897edD3ce414084A009d22db31C7b7826400d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x174897edD3ce414084A009d22db31C7b7826400d/logo.png b/blockchains/ethereum/assets/0x174897edD3ce414084A009d22db31C7b7826400d/logo.png new file mode 100644 index 00000000..e9a64e2f Binary files /dev/null and b/blockchains/ethereum/assets/0x174897edD3ce414084A009d22db31C7b7826400d/logo.png differ diff --git a/blockchains/ethereum/assets/0x17491ae8B359E73ca06F0ABb52223daA878140a9/info.json b/blockchains/ethereum/assets/0x17491ae8B359E73ca06F0ABb52223daA878140a9/info.json new file mode 100644 index 00000000..d29fd4a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x17491ae8B359E73ca06F0ABb52223daA878140a9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Charge", + "symbol": "CHARGE", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x17491ae8B359E73ca06F0ABb52223daA878140a9", + "status": "active", + "id": "0x17491ae8B359E73ca06F0ABb52223daA878140a9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x17491ae8B359E73ca06F0ABb52223daA878140a9/logo.png b/blockchains/ethereum/assets/0x17491ae8B359E73ca06F0ABb52223daA878140a9/logo.png new file mode 100644 index 00000000..c07051fc Binary files /dev/null and b/blockchains/ethereum/assets/0x17491ae8B359E73ca06F0ABb52223daA878140a9/logo.png differ diff --git a/blockchains/ethereum/assets/0x174BfA6600Bf90C885c7c01C7031389ed1461Ab9/info.json b/blockchains/ethereum/assets/0x174BfA6600Bf90C885c7c01C7031389ed1461Ab9/info.json new file mode 100644 index 00000000..466d7a99 --- /dev/null +++ b/blockchains/ethereum/assets/0x174BfA6600Bf90C885c7c01C7031389ed1461Ab9/info.json @@ -0,0 +1,11 @@ +{ + "name": "More Gold Coin", + "symbol": "MGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.mgctoken.io/", + "explorer": "https://etherscan.io/token/0x174BfA6600Bf90C885c7c01C7031389ed1461Ab9", + "status": "abandoned", + "id": "0x174BfA6600Bf90C885c7c01C7031389ed1461Ab9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x174BfA6600Bf90C885c7c01C7031389ed1461Ab9/logo.png b/blockchains/ethereum/assets/0x174BfA6600Bf90C885c7c01C7031389ed1461Ab9/logo.png new file mode 100644 index 00000000..f84b0ffd Binary files /dev/null and b/blockchains/ethereum/assets/0x174BfA6600Bf90C885c7c01C7031389ed1461Ab9/logo.png differ diff --git a/blockchains/ethereum/assets/0x174aFE7A032b5A33a3270a9f6C30746E25708532/info.json b/blockchains/ethereum/assets/0x174aFE7A032b5A33a3270a9f6C30746E25708532/info.json new file mode 100644 index 00000000..04032f81 --- /dev/null +++ b/blockchains/ethereum/assets/0x174aFE7A032b5A33a3270a9f6C30746E25708532/info.json @@ -0,0 +1,11 @@ +{ + "name": "Humanscape", + "symbol": "HUM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.humanscape.io/", + "explorer": "https://etherscan.io/token/0x174aFE7A032b5A33a3270a9f6C30746E25708532", + "status": "active", + "id": "0x174aFE7A032b5A33a3270a9f6C30746E25708532" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x174aFE7A032b5A33a3270a9f6C30746E25708532/logo.png b/blockchains/ethereum/assets/0x174aFE7A032b5A33a3270a9f6C30746E25708532/logo.png new file mode 100644 index 00000000..8529a4ed Binary files /dev/null and b/blockchains/ethereum/assets/0x174aFE7A032b5A33a3270a9f6C30746E25708532/logo.png differ diff --git a/blockchains/ethereum/assets/0x17540494Ad5E39AEFD49901774528e9ff17FE40B/info.json b/blockchains/ethereum/assets/0x17540494Ad5E39AEFD49901774528e9ff17FE40B/info.json new file mode 100644 index 00000000..83a54436 --- /dev/null +++ b/blockchains/ethereum/assets/0x17540494Ad5E39AEFD49901774528e9ff17FE40B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Buccaneer", + "symbol": "PRIVATE", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x17540494Ad5E39AEFD49901774528e9ff17FE40B", + "status": "abandoned", + "id": "0x17540494Ad5E39AEFD49901774528e9ff17FE40B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x17540494Ad5E39AEFD49901774528e9ff17FE40B/logo.png b/blockchains/ethereum/assets/0x17540494Ad5E39AEFD49901774528e9ff17FE40B/logo.png new file mode 100644 index 00000000..dd5b2e58 Binary files /dev/null and b/blockchains/ethereum/assets/0x17540494Ad5E39AEFD49901774528e9ff17FE40B/logo.png differ diff --git a/blockchains/ethereum/assets/0x175D9Dfd6850AA96460E29bC0cEad05756965E91/info.json b/blockchains/ethereum/assets/0x175D9Dfd6850AA96460E29bC0cEad05756965E91/info.json new file mode 100644 index 00000000..7d3b0dc9 --- /dev/null +++ b/blockchains/ethereum/assets/0x175D9Dfd6850AA96460E29bC0cEad05756965E91/info.json @@ -0,0 +1,29 @@ +{ + "name": "Starname (WIOV)", + "website": "https://starname.me/", + "description": "ERC20 version of the IOV token", + "explorer": "https://etherscan.io/token/0x175D9Dfd6850AA96460E29bC0cEad05756965E91", + "type": "ERC20", + "symbol": "WIOV", + "decimals": 18, + "status": "active", + "id": "0x175D9Dfd6850AA96460E29bC0cEad05756965E91", + "links": [ + { + "name": "github", + "url": "https://github.com/iov-one" + }, + { + "name": "x", + "url": "https://x.com/starname_me" + }, + { + "name": "telegram", + "url": "https://t.me/internetofvalues" + }, + { + "name": "medium", + "url": "https://medium.com/iov-internet-of-values" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x175D9Dfd6850AA96460E29bC0cEad05756965E91/logo.png b/blockchains/ethereum/assets/0x175D9Dfd6850AA96460E29bC0cEad05756965E91/logo.png new file mode 100644 index 00000000..02f40338 Binary files /dev/null and b/blockchains/ethereum/assets/0x175D9Dfd6850AA96460E29bC0cEad05756965E91/logo.png differ diff --git a/blockchains/ethereum/assets/0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671/info.json b/blockchains/ethereum/assets/0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671/info.json new file mode 100644 index 00000000..e9377696 --- /dev/null +++ b/blockchains/ethereum/assets/0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671/info.json @@ -0,0 +1,15 @@ +{ + "name": "Numeraire", + "website": "https://numer.ai", + "description": "Numeraire: A Cryptographic Token for Coordinating Machine Intelligence and Preventing Overfitting.", + "explorer": "https://etherscan.io/token/0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671", + "research": "https://research.binance.com/en/projects/numeraire", + "type": "ERC20", + "symbol": "NMR", + "decimals": 18, + "status": "active", + "id": "0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671/logo.png b/blockchains/ethereum/assets/0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671/logo.png new file mode 100644 index 00000000..c25145c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671/logo.png differ diff --git a/blockchains/ethereum/assets/0x1778fFfBD431be2AC3D69e64d1d819C786B2BEe0/info.json b/blockchains/ethereum/assets/0x1778fFfBD431be2AC3D69e64d1d819C786B2BEe0/info.json new file mode 100644 index 00000000..e48098f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x1778fFfBD431be2AC3D69e64d1d819C786B2BEe0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Global Crypto Gate", + "symbol": "GCG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1778fFfBD431be2AC3D69e64d1d819C786B2BEe0", + "status": "abandoned", + "id": "0x1778fFfBD431be2AC3D69e64d1d819C786B2BEe0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1778fFfBD431be2AC3D69e64d1d819C786B2BEe0/logo.png b/blockchains/ethereum/assets/0x1778fFfBD431be2AC3D69e64d1d819C786B2BEe0/logo.png new file mode 100644 index 00000000..2ed90352 Binary files /dev/null and b/blockchains/ethereum/assets/0x1778fFfBD431be2AC3D69e64d1d819C786B2BEe0/logo.png differ diff --git a/blockchains/ethereum/assets/0x177A542A9281F545263B1bcFb54a3d549003BF71/info.json b/blockchains/ethereum/assets/0x177A542A9281F545263B1bcFb54a3d549003BF71/info.json new file mode 100644 index 00000000..c2f51bd6 --- /dev/null +++ b/blockchains/ethereum/assets/0x177A542A9281F545263B1bcFb54a3d549003BF71/info.json @@ -0,0 +1,11 @@ +{ + "name": "TASFU COIN", + "symbol": "TSF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x177A542A9281F545263B1bcFb54a3d549003BF71", + "status": "abandoned", + "id": "0x177A542A9281F545263B1bcFb54a3d549003BF71" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x177A542A9281F545263B1bcFb54a3d549003BF71/logo.png b/blockchains/ethereum/assets/0x177A542A9281F545263B1bcFb54a3d549003BF71/logo.png new file mode 100644 index 00000000..9b0714b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x177A542A9281F545263B1bcFb54a3d549003BF71/logo.png differ diff --git a/blockchains/ethereum/assets/0x177d39AC676ED1C67A2b268AD7F1E58826E5B0af/info.json b/blockchains/ethereum/assets/0x177d39AC676ED1C67A2b268AD7F1E58826E5B0af/info.json new file mode 100644 index 00000000..def0ae07 --- /dev/null +++ b/blockchains/ethereum/assets/0x177d39AC676ED1C67A2b268AD7F1E58826E5B0af/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blox", + "symbol": "CDT", + "type": "ERC20", + "decimals": 18, + "description": "Blox is an open-source, fully non-custodial staking platform for Ethereum 2.0. Their goal at Blox is to simplify staking while ensuring Ethereum stays fair and decentralized.", + "website": "http://bloxstaking.com", + "explorer": "https://etherscan.io/token/0x177d39AC676ED1C67A2b268AD7F1E58826E5B0af", + "status": "active", + "id": "0x177d39AC676ED1C67A2b268AD7F1E58826E5B0af" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x177d39AC676ED1C67A2b268AD7F1E58826E5B0af/logo.png b/blockchains/ethereum/assets/0x177d39AC676ED1C67A2b268AD7F1E58826E5B0af/logo.png new file mode 100644 index 00000000..5d1c4006 Binary files /dev/null and b/blockchains/ethereum/assets/0x177d39AC676ED1C67A2b268AD7F1E58826E5B0af/logo.png differ diff --git a/blockchains/ethereum/assets/0x178c820f862B14f316509ec36b13123DA19A6054/info.json b/blockchains/ethereum/assets/0x178c820f862B14f316509ec36b13123DA19A6054/info.json new file mode 100644 index 00000000..325d12ae --- /dev/null +++ b/blockchains/ethereum/assets/0x178c820f862B14f316509ec36b13123DA19A6054/info.json @@ -0,0 +1,11 @@ +{ + "name": "Energy Web Token Bridged", + "symbol": "EWTB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x178c820f862B14f316509ec36b13123DA19A6054", + "status": "abandoned", + "id": "0x178c820f862B14f316509ec36b13123DA19A6054" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x178c820f862B14f316509ec36b13123DA19A6054/logo.png b/blockchains/ethereum/assets/0x178c820f862B14f316509ec36b13123DA19A6054/logo.png new file mode 100644 index 00000000..2db5a158 Binary files /dev/null and b/blockchains/ethereum/assets/0x178c820f862B14f316509ec36b13123DA19A6054/logo.png differ diff --git a/blockchains/ethereum/assets/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/info.json b/blockchains/ethereum/assets/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/info.json new file mode 100644 index 00000000..96c9a1ff --- /dev/null +++ b/blockchains/ethereum/assets/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Polychain Monsters", + "website": "http://polychainmonsters.com/", + "description": "Polychain Monsters are beautifully animated digital collectibles with varying scarcities. Each Polychain Monster is backed by a truly unique NFT and can be unpacked with $PMON tokens.", + "explorer": "https://etherscan.io/token/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2", + "type": "ERC20", + "symbol": "PMON", + "decimals": 18, + "status": "active", + "id": "0x1796ae0b0fa4862485106a0de9b654eFE301D0b2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/logo.png b/blockchains/ethereum/assets/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/logo.png new file mode 100644 index 00000000..7490d96c Binary files /dev/null and b/blockchains/ethereum/assets/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/logo.png differ diff --git a/blockchains/ethereum/assets/0x179E31FB25E433441a2839389A7b8EC9c4654b7B/info.json b/blockchains/ethereum/assets/0x179E31FB25E433441a2839389A7b8EC9c4654b7B/info.json new file mode 100644 index 00000000..fc3a155e --- /dev/null +++ b/blockchains/ethereum/assets/0x179E31FB25E433441a2839389A7b8EC9c4654b7B/info.json @@ -0,0 +1,11 @@ +{ + "name": "SynchroBitcoin", + "symbol": "SNB", + "type": "ERC20", + "decimals": 18, + "description": "Hybrid Digital Assets Trading Platform", + "website": "https://synchrobit.io/", + "explorer": "https://etherscan.io/token/0x179E31FB25E433441a2839389A7b8EC9c4654b7B", + "status": "active", + "id": "0x179E31FB25E433441a2839389A7b8EC9c4654b7B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x179E31FB25E433441a2839389A7b8EC9c4654b7B/logo.png b/blockchains/ethereum/assets/0x179E31FB25E433441a2839389A7b8EC9c4654b7B/logo.png new file mode 100644 index 00000000..d77eeba4 Binary files /dev/null and b/blockchains/ethereum/assets/0x179E31FB25E433441a2839389A7b8EC9c4654b7B/logo.png differ diff --git a/blockchains/ethereum/assets/0x17A8f6EaD7256E6620109bB02CB21A29b6BD7D3E/info.json b/blockchains/ethereum/assets/0x17A8f6EaD7256E6620109bB02CB21A29b6BD7D3E/info.json new file mode 100644 index 00000000..880c9d1e --- /dev/null +++ b/blockchains/ethereum/assets/0x17A8f6EaD7256E6620109bB02CB21A29b6BD7D3E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yuamble", + "symbol": "YMB", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x17A8f6EaD7256E6620109bB02CB21A29b6BD7D3E", + "status": "abandoned", + "id": "0x17A8f6EaD7256E6620109bB02CB21A29b6BD7D3E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x17A8f6EaD7256E6620109bB02CB21A29b6BD7D3E/logo.png b/blockchains/ethereum/assets/0x17A8f6EaD7256E6620109bB02CB21A29b6BD7D3E/logo.png new file mode 100644 index 00000000..4e1cb619 Binary files /dev/null and b/blockchains/ethereum/assets/0x17A8f6EaD7256E6620109bB02CB21A29b6BD7D3E/logo.png differ diff --git a/blockchains/ethereum/assets/0x17Aa18A4B64A55aBEd7FA543F2Ba4E91f2dcE482/info.json b/blockchains/ethereum/assets/0x17Aa18A4B64A55aBEd7FA543F2Ba4E91f2dcE482/info.json new file mode 100644 index 00000000..094ff840 --- /dev/null +++ b/blockchains/ethereum/assets/0x17Aa18A4B64A55aBEd7FA543F2Ba4E91f2dcE482/info.json @@ -0,0 +1,11 @@ +{ + "name": "Insight Chain", + "symbol": "INB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.insightchain.io", + "explorer": "https://etherscan.io/token/0x17Aa18A4B64A55aBEd7FA543F2Ba4E91f2dcE482", + "status": "abandoned", + "id": "0x17Aa18A4B64A55aBEd7FA543F2Ba4E91f2dcE482" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x17Aa18A4B64A55aBEd7FA543F2Ba4E91f2dcE482/logo.png b/blockchains/ethereum/assets/0x17Aa18A4B64A55aBEd7FA543F2Ba4E91f2dcE482/logo.png new file mode 100644 index 00000000..72d6060d Binary files /dev/null and b/blockchains/ethereum/assets/0x17Aa18A4B64A55aBEd7FA543F2Ba4E91f2dcE482/logo.png differ diff --git a/blockchains/ethereum/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json b/blockchains/ethereum/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json new file mode 100644 index 00000000..12461b93 --- /dev/null +++ b/blockchains/ethereum/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json @@ -0,0 +1,11 @@ +{ + "name": "CustomContractNetwork", + "symbol": "CCN", + "type": "ERC20", + "decimals": 18, + "description": "CCN is a company that provides smart contract development and auditing services to blockchain industries and individuals.", + "website": "https://www.customcontract.network/", + "explorer": "https://etherscan.io/token/0x17B26400621695c2D8C2D8869f6259E82D7544c4", + "status": "active", + "id": "0x17B26400621695c2D8C2D8869f6259E82D7544c4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/logo.png b/blockchains/ethereum/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/logo.png new file mode 100644 index 00000000..ed49f781 Binary files /dev/null and b/blockchains/ethereum/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/logo.png differ diff --git a/blockchains/ethereum/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json b/blockchains/ethereum/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json new file mode 100644 index 00000000..8bd61828 --- /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 00000000..8522e440 Binary files /dev/null and b/blockchains/ethereum/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/logo.png differ diff --git a/blockchains/ethereum/assets/0x17E6616c45d267bC20A9892b58A01621c592B72d/info.json b/blockchains/ethereum/assets/0x17E6616c45d267bC20A9892b58A01621c592B72d/info.json new file mode 100644 index 00000000..86745eaf --- /dev/null +++ b/blockchains/ethereum/assets/0x17E6616c45d267bC20A9892b58A01621c592B72d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Message Search", + "symbol": "EMS", + "type": "ERC20", + "decimals": 18, + "description": "Ethereum Message Search Application (EMSA) - a service based on the Ethereum blockchain that allows transmitting any information, from texts and images to encrypted files and HTML pages.", + "website": "https://ethereum.ms/", + "explorer": "https://etherscan.io/token/0x17E6616c45d267bC20A9892b58A01621c592B72d", + "status": "active", + "id": "0x17E6616c45d267bC20A9892b58A01621c592B72d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x17E6616c45d267bC20A9892b58A01621c592B72d/logo.png b/blockchains/ethereum/assets/0x17E6616c45d267bC20A9892b58A01621c592B72d/logo.png new file mode 100644 index 00000000..d0c99a6c Binary files /dev/null and b/blockchains/ethereum/assets/0x17E6616c45d267bC20A9892b58A01621c592B72d/logo.png differ diff --git a/blockchains/ethereum/assets/0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a/info.json b/blockchains/ethereum/assets/0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a/info.json new file mode 100644 index 00000000..9d7afae1 --- /dev/null +++ b/blockchains/ethereum/assets/0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a/info.json @@ -0,0 +1,29 @@ +{ + "name": "Revolution Populi", + "website": "https://revolutionpopuli.com/", + "description": "The Blockchain Database for the Internet.", + "explorer": "https://etherscan.io/token/0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a", + "type": "ERC20", + "symbol": "RVP", + "decimals": 18, + "status": "active", + "id": "0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a", + "links": [ + { + "name": "x", + "url": "https://x.com/Rev_Populi" + }, + { + "name": "telegram", + "url": "https://t.me/revpopofficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/37gBNkJ" + }, + { + "name": "medium", + "url": "https://revolutionpopuli.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a/logo.png b/blockchains/ethereum/assets/0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a/logo.png new file mode 100644 index 00000000..51d115c3 Binary files /dev/null and b/blockchains/ethereum/assets/0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a/logo.png differ diff --git a/blockchains/ethereum/assets/0x17aC188e09A7890a1844E5E65471fE8b0CcFadF3/info.json b/blockchains/ethereum/assets/0x17aC188e09A7890a1844E5E65471fE8b0CcFadF3/info.json new file mode 100644 index 00000000..cfd36730 --- /dev/null +++ b/blockchains/ethereum/assets/0x17aC188e09A7890a1844E5E65471fE8b0CcFadF3/info.json @@ -0,0 +1,12 @@ +{ + "name": "Cryptocurrency Top 10 Tokens Index", + "website": "https://indexed.finance", + "description": "CC10 is a passively managed, capitalization-weighted index that tracks the top 10 tokens by market cap from the Cryptocurrency market sector defined by NDX governance..", + "explorer": "https://etherscan.io/token/0x17ac188e09a7890a1844e5e65471fe8b0ccfadf3", + "research": "https://ndxfi.medium.com/introducing-indexed-finance-ndx-5d91137bde29", + "type": "ERC20", + "symbol": "CC10", + "decimals": 18, + "status": "active", + "id": "0x17aC188e09A7890a1844E5E65471fE8b0CcFadF3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x17aC188e09A7890a1844E5E65471fE8b0CcFadF3/logo.png b/blockchains/ethereum/assets/0x17aC188e09A7890a1844E5E65471fE8b0CcFadF3/logo.png new file mode 100644 index 00000000..440db6e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x17aC188e09A7890a1844E5E65471fE8b0CcFadF3/logo.png differ diff --git a/blockchains/ethereum/assets/0x17cB1b6623CEF547F16E4C125EBEF6Ec240Ec12a/info.json b/blockchains/ethereum/assets/0x17cB1b6623CEF547F16E4C125EBEF6Ec240Ec12a/info.json new file mode 100644 index 00000000..32728950 --- /dev/null +++ b/blockchains/ethereum/assets/0x17cB1b6623CEF547F16E4C125EBEF6Ec240Ec12a/info.json @@ -0,0 +1,36 @@ +{ + "name": "SquidGrow", + "type": "ERC20", + "symbol": "SquidGrow", + "decimals": 19, + "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/0x17cb1b6623cef547f16e4c125ebef6ec240ec12a", + "status": "abandoned", + "id": "0x17cB1b6623CEF547F16E4C125EBEF6Ec240Ec12a", + "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/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/squidgrow" + }, + { + "name": "discord", + "url": "https://discord.com/HgsgryRpwB" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x17d805a3f817e0e4E4d46c59d7c155bD907D8333/info.json b/blockchains/ethereum/assets/0x17d805a3f817e0e4E4d46c59d7c155bD907D8333/info.json new file mode 100644 index 00000000..39859f8a --- /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/0x17e67d1CB4e349B9CA4Bc3e17C7DF2a397A7BB64/info.json b/blockchains/ethereum/assets/0x17e67d1CB4e349B9CA4Bc3e17C7DF2a397A7BB64/info.json new file mode 100644 index 00000000..2455aac7 --- /dev/null +++ b/blockchains/ethereum/assets/0x17e67d1CB4e349B9CA4Bc3e17C7DF2a397A7BB64/info.json @@ -0,0 +1,11 @@ +{ + "name": "Freyr Coin", + "symbol": "FREC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.freyrchain.org/index.html", + "explorer": "https://etherscan.io/token/0x17e67d1CB4e349B9CA4Bc3e17C7DF2a397A7BB64", + "status": "abandoned", + "id": "0x17e67d1CB4e349B9CA4Bc3e17C7DF2a397A7BB64" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x17e67d1CB4e349B9CA4Bc3e17C7DF2a397A7BB64/logo.png b/blockchains/ethereum/assets/0x17e67d1CB4e349B9CA4Bc3e17C7DF2a397A7BB64/logo.png new file mode 100644 index 00000000..5b64a898 Binary files /dev/null and b/blockchains/ethereum/assets/0x17e67d1CB4e349B9CA4Bc3e17C7DF2a397A7BB64/logo.png differ diff --git a/blockchains/ethereum/assets/0x17f8aFB63DfcDcC90ebE6e84F060Cc306A98257D/info.json b/blockchains/ethereum/assets/0x17f8aFB63DfcDcC90ebE6e84F060Cc306A98257D/info.json new file mode 100644 index 00000000..24d2c6b4 --- /dev/null +++ b/blockchains/ethereum/assets/0x17f8aFB63DfcDcC90ebE6e84F060Cc306A98257D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nebula AI Token", + "symbol": "NBAI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.nebula-ai.com/", + "explorer": "https://etherscan.io/token/0x17f8aFB63DfcDcC90ebE6e84F060Cc306A98257D", + "status": "abandoned", + "id": "0x17f8aFB63DfcDcC90ebE6e84F060Cc306A98257D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x17f8aFB63DfcDcC90ebE6e84F060Cc306A98257D/logo.png b/blockchains/ethereum/assets/0x17f8aFB63DfcDcC90ebE6e84F060Cc306A98257D/logo.png new file mode 100644 index 00000000..4f66fc1e Binary files /dev/null and b/blockchains/ethereum/assets/0x17f8aFB63DfcDcC90ebE6e84F060Cc306A98257D/logo.png differ diff --git a/blockchains/ethereum/assets/0x17fD666fa0784885fa1AFEc8AC624d9b7e72B752/info.json b/blockchains/ethereum/assets/0x17fD666fa0784885fa1AFEc8AC624d9b7e72B752/info.json new file mode 100644 index 00000000..85a32e76 --- /dev/null +++ b/blockchains/ethereum/assets/0x17fD666fa0784885fa1AFEc8AC624d9b7e72B752/info.json @@ -0,0 +1,11 @@ +{ + "name": "FLiK", + "symbol": "FLIK", + "type": "ERC20", + "decimals": 14, + "description": "-", + "website": "http://www.theflik.io/", + "explorer": "https://etherscan.io/token/0x17fD666fa0784885fa1AFEc8AC624d9b7e72B752", + "status": "abandoned", + "id": "0x17fD666fa0784885fa1AFEc8AC624d9b7e72B752" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x17fD666fa0784885fa1AFEc8AC624d9b7e72B752/logo.png b/blockchains/ethereum/assets/0x17fD666fa0784885fa1AFEc8AC624d9b7e72B752/logo.png new file mode 100644 index 00000000..4f6578ce Binary files /dev/null and b/blockchains/ethereum/assets/0x17fD666fa0784885fa1AFEc8AC624d9b7e72B752/logo.png differ diff --git a/blockchains/ethereum/assets/0x18084fbA666a33d37592fA2633fD49a74DD93a88/info.json b/blockchains/ethereum/assets/0x18084fbA666a33d37592fA2633fD49a74DD93a88/info.json new file mode 100644 index 00000000..713db95a --- /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 00000000..0d482b6f Binary files /dev/null and b/blockchains/ethereum/assets/0x18084fbA666a33d37592fA2633fD49a74DD93a88/logo.png differ diff --git a/blockchains/ethereum/assets/0x18088625f914468A3Fcc5904cE24920a3ed87C1a/info.json b/blockchains/ethereum/assets/0x18088625f914468A3Fcc5904cE24920a3ed87C1a/info.json new file mode 100644 index 00000000..fcad8aeb --- /dev/null +++ b/blockchains/ethereum/assets/0x18088625f914468A3Fcc5904cE24920a3ed87C1a/info.json @@ -0,0 +1,11 @@ +{ + "name": "GOOREO", + "symbol": "GOOREO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x18088625f914468A3Fcc5904cE24920a3ed87C1a", + "status": "abandoned", + "id": "0x18088625f914468A3Fcc5904cE24920a3ed87C1a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x18088625f914468A3Fcc5904cE24920a3ed87C1a/logo.png b/blockchains/ethereum/assets/0x18088625f914468A3Fcc5904cE24920a3ed87C1a/logo.png new file mode 100644 index 00000000..96c78801 Binary files /dev/null and b/blockchains/ethereum/assets/0x18088625f914468A3Fcc5904cE24920a3ed87C1a/logo.png differ diff --git a/blockchains/ethereum/assets/0x180B07537b3847bC1c159bda493DD4d28A31E46b/info.json b/blockchains/ethereum/assets/0x180B07537b3847bC1c159bda493DD4d28A31E46b/info.json new file mode 100644 index 00000000..f6303008 --- /dev/null +++ b/blockchains/ethereum/assets/0x180B07537b3847bC1c159bda493DD4d28A31E46b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stable USD", + "symbol": "USDEX", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x180B07537b3847bC1c159bda493DD4d28A31E46b", + "status": "abandoned", + "id": "0x180B07537b3847bC1c159bda493DD4d28A31E46b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x180B07537b3847bC1c159bda493DD4d28A31E46b/logo.png b/blockchains/ethereum/assets/0x180B07537b3847bC1c159bda493DD4d28A31E46b/logo.png new file mode 100644 index 00000000..28029d45 Binary files /dev/null and b/blockchains/ethereum/assets/0x180B07537b3847bC1c159bda493DD4d28A31E46b/logo.png differ diff --git a/blockchains/ethereum/assets/0x180e5087935A94Fd5bbAb00fD2249C5bE0473381/info.json b/blockchains/ethereum/assets/0x180e5087935A94Fd5bbAb00fD2249C5bE0473381/info.json new file mode 100644 index 00000000..8dea9015 --- /dev/null +++ b/blockchains/ethereum/assets/0x180e5087935A94Fd5bbAb00fD2249C5bE0473381/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZCashGOLD", + "symbol": "ZCG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x180e5087935A94Fd5bbAb00fD2249C5bE0473381", + "status": "abandoned", + "id": "0x180e5087935A94Fd5bbAb00fD2249C5bE0473381" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x180e5087935A94Fd5bbAb00fD2249C5bE0473381/logo.png b/blockchains/ethereum/assets/0x180e5087935A94Fd5bbAb00fD2249C5bE0473381/logo.png new file mode 100644 index 00000000..529cc838 Binary files /dev/null and b/blockchains/ethereum/assets/0x180e5087935A94Fd5bbAb00fD2249C5bE0473381/logo.png differ diff --git a/blockchains/ethereum/assets/0x1822126fEedb4C7d61EecdBE3682FE61e91383d6/info.json b/blockchains/ethereum/assets/0x1822126fEedb4C7d61EecdBE3682FE61e91383d6/info.json new file mode 100644 index 00000000..be4d35a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x1822126fEedb4C7d61EecdBE3682FE61e91383d6/info.json @@ -0,0 +1,11 @@ +{ + "name": "XtockToken", + "symbol": "XTX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://xtock.io/", + "explorer": "https://etherscan.io/token/0x1822126fEedb4C7d61EecdBE3682FE61e91383d6", + "status": "abandoned", + "id": "0x1822126fEedb4C7d61EecdBE3682FE61e91383d6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1822126fEedb4C7d61EecdBE3682FE61e91383d6/logo.png b/blockchains/ethereum/assets/0x1822126fEedb4C7d61EecdBE3682FE61e91383d6/logo.png new file mode 100644 index 00000000..6a6243ef Binary files /dev/null and b/blockchains/ethereum/assets/0x1822126fEedb4C7d61EecdBE3682FE61e91383d6/logo.png differ diff --git a/blockchains/ethereum/assets/0x1829aA045E21E0D59580024A951DB48096e01782/info.json b/blockchains/ethereum/assets/0x1829aA045E21E0D59580024A951DB48096e01782/info.json new file mode 100644 index 00000000..23fdf578 --- /dev/null +++ b/blockchains/ethereum/assets/0x1829aA045E21E0D59580024A951DB48096e01782/info.json @@ -0,0 +1,11 @@ +{ + "name": "FuzeX Token", + "symbol": "FXT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.fuzex.co/", + "explorer": "https://etherscan.io/token/0x1829aA045E21E0D59580024A951DB48096e01782", + "status": "active", + "id": "0x1829aA045E21E0D59580024A951DB48096e01782" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1829aA045E21E0D59580024A951DB48096e01782/logo.png b/blockchains/ethereum/assets/0x1829aA045E21E0D59580024A951DB48096e01782/logo.png new file mode 100644 index 00000000..85ad6063 Binary files /dev/null and b/blockchains/ethereum/assets/0x1829aA045E21E0D59580024A951DB48096e01782/logo.png differ diff --git a/blockchains/ethereum/assets/0x182A603541a4483c308475147D621bbB4E2587c6/info.json b/blockchains/ethereum/assets/0x182A603541a4483c308475147D621bbB4E2587c6/info.json new file mode 100644 index 00000000..c4861173 --- /dev/null +++ b/blockchains/ethereum/assets/0x182A603541a4483c308475147D621bbB4E2587c6/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZBToken", + "symbol": "ZB", + "type": "ERC20", + "decimals": 18, + "description": "Zerobank is a legal ecosystem utilizing blockchain and smart contract.", + "website": "https://zerobank.cash/", + "explorer": "https://etherscan.io/token/0x182A603541a4483c308475147D621bbB4E2587c6", + "status": "active", + "id": "0x182A603541a4483c308475147D621bbB4E2587c6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x182A603541a4483c308475147D621bbB4E2587c6/logo.png b/blockchains/ethereum/assets/0x182A603541a4483c308475147D621bbB4E2587c6/logo.png new file mode 100644 index 00000000..3bab1db7 Binary files /dev/null and b/blockchains/ethereum/assets/0x182A603541a4483c308475147D621bbB4E2587c6/logo.png differ diff --git a/blockchains/ethereum/assets/0x183069c5EA93136F367ce3c37128429dB8eF1C29/info.json b/blockchains/ethereum/assets/0x183069c5EA93136F367ce3c37128429dB8eF1C29/info.json new file mode 100644 index 00000000..9643f10e --- /dev/null +++ b/blockchains/ethereum/assets/0x183069c5EA93136F367ce3c37128429dB8eF1C29/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRYPTOCOIN", + "symbol": "CTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x183069c5EA93136F367ce3c37128429dB8eF1C29", + "status": "abandoned", + "id": "0x183069c5EA93136F367ce3c37128429dB8eF1C29" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x183069c5EA93136F367ce3c37128429dB8eF1C29/logo.png b/blockchains/ethereum/assets/0x183069c5EA93136F367ce3c37128429dB8eF1C29/logo.png new file mode 100644 index 00000000..8fcb7a84 Binary files /dev/null and b/blockchains/ethereum/assets/0x183069c5EA93136F367ce3c37128429dB8eF1C29/logo.png differ diff --git a/blockchains/ethereum/assets/0x184001D794a8c91dEF72b8A488B67Cc907D4e5be/info.json b/blockchains/ethereum/assets/0x184001D794a8c91dEF72b8A488B67Cc907D4e5be/info.json new file mode 100644 index 00000000..2cb8e263 --- /dev/null +++ b/blockchains/ethereum/assets/0x184001D794a8c91dEF72b8A488B67Cc907D4e5be/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ore", + "symbol": "ORe", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://web.khazon.online", + "explorer": "https://etherscan.io/token/0x184001D794a8c91dEF72b8A488B67Cc907D4e5be", + "status": "abandoned", + "id": "0x184001D794a8c91dEF72b8A488B67Cc907D4e5be" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x184001D794a8c91dEF72b8A488B67Cc907D4e5be/logo.png b/blockchains/ethereum/assets/0x184001D794a8c91dEF72b8A488B67Cc907D4e5be/logo.png new file mode 100644 index 00000000..1f4e6978 Binary files /dev/null and b/blockchains/ethereum/assets/0x184001D794a8c91dEF72b8A488B67Cc907D4e5be/logo.png differ diff --git a/blockchains/ethereum/assets/0x1844b21593262668B7248d0f57a220CaaBA46ab9/info.json b/blockchains/ethereum/assets/0x1844b21593262668B7248d0f57a220CaaBA46ab9/info.json new file mode 100644 index 00000000..ebdda533 --- /dev/null +++ b/blockchains/ethereum/assets/0x1844b21593262668B7248d0f57a220CaaBA46ab9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Oyster Pearl", + "symbol": "PRL", + "type": "ERC20", + "decimals": 18, + "description": "Finance tech and Hazard Games.", + "website": "https://oysterprotocol.com/", + "explorer": "https://etherscan.io/token/0x1844b21593262668B7248d0f57a220CaaBA46ab9", + "status": "active", + "id": "0x1844b21593262668B7248d0f57a220CaaBA46ab9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1844b21593262668B7248d0f57a220CaaBA46ab9/logo.png b/blockchains/ethereum/assets/0x1844b21593262668B7248d0f57a220CaaBA46ab9/logo.png new file mode 100755 index 00000000..5100a528 Binary files /dev/null and b/blockchains/ethereum/assets/0x1844b21593262668B7248d0f57a220CaaBA46ab9/logo.png differ diff --git a/blockchains/ethereum/assets/0x1845461382adc4c677cBa93073f7849a7947b629/info.json b/blockchains/ethereum/assets/0x1845461382adc4c677cBa93073f7849a7947b629/info.json new file mode 100644 index 00000000..c69acc8b --- /dev/null +++ b/blockchains/ethereum/assets/0x1845461382adc4c677cBa93073f7849a7947b629/info.json @@ -0,0 +1,11 @@ +{ + "name": "HANbBEAsset", + "symbol": "HBA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1845461382adc4c677cBa93073f7849a7947b629", + "status": "abandoned", + "id": "0x1845461382adc4c677cBa93073f7849a7947b629" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1845461382adc4c677cBa93073f7849a7947b629/logo.png b/blockchains/ethereum/assets/0x1845461382adc4c677cBa93073f7849a7947b629/logo.png new file mode 100644 index 00000000..f78062bf Binary files /dev/null and b/blockchains/ethereum/assets/0x1845461382adc4c677cBa93073f7849a7947b629/logo.png differ diff --git a/blockchains/ethereum/assets/0x184d559828c51af3291685a4C6cb0e473532E7F3/info.json b/blockchains/ethereum/assets/0x184d559828c51af3291685a4C6cb0e473532E7F3/info.json new file mode 100644 index 00000000..55599c96 --- /dev/null +++ b/blockchains/ethereum/assets/0x184d559828c51af3291685a4C6cb0e473532E7F3/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 266-CN06", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x184d559828c51af3291685a4C6cb0e473532E7F3", + "status": "abandoned", + "id": "0x184d559828c51af3291685a4C6cb0e473532E7F3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x184d559828c51af3291685a4C6cb0e473532E7F3/logo.png b/blockchains/ethereum/assets/0x184d559828c51af3291685a4C6cb0e473532E7F3/logo.png new file mode 100644 index 00000000..d263f113 Binary files /dev/null and b/blockchains/ethereum/assets/0x184d559828c51af3291685a4C6cb0e473532E7F3/logo.png differ diff --git a/blockchains/ethereum/assets/0x185E5FA1B84F94D46ef2A33052aD39bD5f326fd8/info.json b/blockchains/ethereum/assets/0x185E5FA1B84F94D46ef2A33052aD39bD5f326fd8/info.json new file mode 100644 index 00000000..48f3bf3d --- /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 00000000..6cedbcd6 Binary files /dev/null and b/blockchains/ethereum/assets/0x185E5FA1B84F94D46ef2A33052aD39bD5f326fd8/logo.png differ diff --git a/blockchains/ethereum/assets/0x1864cE27E9F7517047933CaAE530674e8C70b8A7/info.json b/blockchains/ethereum/assets/0x1864cE27E9F7517047933CaAE530674e8C70b8A7/info.json new file mode 100644 index 00000000..552f396d --- /dev/null +++ b/blockchains/ethereum/assets/0x1864cE27E9F7517047933CaAE530674e8C70b8A7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pibble Token", + "symbol": "PIB", + "type": "ERC20", + "decimals": 18, + "description": "Pibble is a Blockchain based image Cryptocurrency! It is a monetized Image Ecosystem that brings image creators and consumers together, so as to compensate them for the work they create, use and enjoy.", + "website": "http://pibble.io/", + "explorer": "https://etherscan.io/token/0x1864cE27E9F7517047933CaAE530674e8C70b8A7", + "status": "active", + "id": "0x1864cE27E9F7517047933CaAE530674e8C70b8A7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1864cE27E9F7517047933CaAE530674e8C70b8A7/logo.png b/blockchains/ethereum/assets/0x1864cE27E9F7517047933CaAE530674e8C70b8A7/logo.png new file mode 100644 index 00000000..338d6fa2 Binary files /dev/null and b/blockchains/ethereum/assets/0x1864cE27E9F7517047933CaAE530674e8C70b8A7/logo.png differ diff --git a/blockchains/ethereum/assets/0x186a33d4dBcd700086A26188DcB74E69bE463665/info.json b/blockchains/ethereum/assets/0x186a33d4dBcd700086A26188DcB74E69bE463665/info.json new file mode 100644 index 00000000..c464d02e --- /dev/null +++ b/blockchains/ethereum/assets/0x186a33d4dBcd700086A26188DcB74E69bE463665/info.json @@ -0,0 +1,11 @@ +{ + "name": "7ELEVEN", + "symbol": "7E", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://7elevencoins.com/", + "explorer": "https://etherscan.io/token/0x186a33d4dBcd700086A26188DcB74E69bE463665", + "status": "abandoned", + "id": "0x186a33d4dBcd700086A26188DcB74E69bE463665" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x186a33d4dBcd700086A26188DcB74E69bE463665/logo.png b/blockchains/ethereum/assets/0x186a33d4dBcd700086A26188DcB74E69bE463665/logo.png new file mode 100644 index 00000000..ae8b393f Binary files /dev/null and b/blockchains/ethereum/assets/0x186a33d4dBcd700086A26188DcB74E69bE463665/logo.png differ diff --git a/blockchains/ethereum/assets/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457/info.json b/blockchains/ethereum/assets/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457/info.json new file mode 100644 index 00000000..1e4f3783 --- /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 00000000..709d880c Binary files /dev/null and b/blockchains/ethereum/assets/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457/logo.png differ diff --git a/blockchains/ethereum/assets/0x1876c969027b4A4f95937e93E0Db2Ac2dE152009/info.json b/blockchains/ethereum/assets/0x1876c969027b4A4f95937e93E0Db2Ac2dE152009/info.json new file mode 100644 index 00000000..d228e5c7 --- /dev/null +++ b/blockchains/ethereum/assets/0x1876c969027b4A4f95937e93E0Db2Ac2dE152009/info.json @@ -0,0 +1,11 @@ +{ + "name": "ViralToken", + "symbol": "VTO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1876c969027b4A4f95937e93E0Db2Ac2dE152009", + "status": "abandoned", + "id": "0x1876c969027b4A4f95937e93E0Db2Ac2dE152009" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1876c969027b4A4f95937e93E0Db2Ac2dE152009/logo.png b/blockchains/ethereum/assets/0x1876c969027b4A4f95937e93E0Db2Ac2dE152009/logo.png new file mode 100644 index 00000000..d3e219ba Binary files /dev/null and b/blockchains/ethereum/assets/0x1876c969027b4A4f95937e93E0Db2Ac2dE152009/logo.png differ diff --git a/blockchains/ethereum/assets/0x187D1018E8ef879BE4194d6eD7590987463eAD85/info.json b/blockchains/ethereum/assets/0x187D1018E8ef879BE4194d6eD7590987463eAD85/info.json new file mode 100644 index 00000000..3da8d2ef --- /dev/null +++ b/blockchains/ethereum/assets/0x187D1018E8ef879BE4194d6eD7590987463eAD85/info.json @@ -0,0 +1,11 @@ +{ + "name": "FUZE Token", + "symbol": "FUZE", + "type": "ERC20", + "decimals": 18, + "description": "FUZE Token, a fully community-driven social experiment and the world’s first self-deflationary currency with a supply of 1000 tokens and a 5% burn rate.", + "website": "https://fuzetoken.net", + "explorer": "https://etherscan.io/token/0x187D1018E8ef879BE4194d6eD7590987463eAD85", + "status": "active", + "id": "0x187D1018E8ef879BE4194d6eD7590987463eAD85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x187D1018E8ef879BE4194d6eD7590987463eAD85/logo.png b/blockchains/ethereum/assets/0x187D1018E8ef879BE4194d6eD7590987463eAD85/logo.png new file mode 100644 index 00000000..f923c750 Binary files /dev/null and b/blockchains/ethereum/assets/0x187D1018E8ef879BE4194d6eD7590987463eAD85/logo.png differ diff --git a/blockchains/ethereum/assets/0x187abED6d17529E921aed5Dda458389e3d1c594b/info.json b/blockchains/ethereum/assets/0x187abED6d17529E921aed5Dda458389e3d1c594b/info.json new file mode 100644 index 00000000..9bf8771f --- /dev/null +++ b/blockchains/ethereum/assets/0x187abED6d17529E921aed5Dda458389e3d1c594b/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEXDAQ", + "symbol": "DDQ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x187abED6d17529E921aed5Dda458389e3d1c594b", + "status": "abandoned", + "id": "0x187abED6d17529E921aed5Dda458389e3d1c594b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x187abED6d17529E921aed5Dda458389e3d1c594b/logo.png b/blockchains/ethereum/assets/0x187abED6d17529E921aed5Dda458389e3d1c594b/logo.png new file mode 100644 index 00000000..e125d83d Binary files /dev/null and b/blockchains/ethereum/assets/0x187abED6d17529E921aed5Dda458389e3d1c594b/logo.png differ diff --git a/blockchains/ethereum/assets/0x18A908eD663823C908A900b934D6249d4befbE44/info.json b/blockchains/ethereum/assets/0x18A908eD663823C908A900b934D6249d4befbE44/info.json new file mode 100644 index 00000000..d1a192f0 --- /dev/null +++ b/blockchains/ethereum/assets/0x18A908eD663823C908A900b934D6249d4befbE44/info.json @@ -0,0 +1,11 @@ +{ + "name": "Strike BUSD", + "symbol": "sBUSD", + "type": "ERC20", + "decimals": 18, + "description": "Strike Finance collateral cryptocurrency", + "explorer": "https://etherscan.io/token/0x18A908eD663823C908A900b934D6249d4befbE44", + "status": "active", + "id": "0x18A908eD663823C908A900b934D6249d4befbE44", + "website": "https://strike.org" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x18A908eD663823C908A900b934D6249d4befbE44/logo.png b/blockchains/ethereum/assets/0x18A908eD663823C908A900b934D6249d4befbE44/logo.png new file mode 100644 index 00000000..bafffe38 Binary files /dev/null and b/blockchains/ethereum/assets/0x18A908eD663823C908A900b934D6249d4befbE44/logo.png differ diff --git a/blockchains/ethereum/assets/0x18C525cce3ad9A48D82F91B874754be78E9d0F85/info.json b/blockchains/ethereum/assets/0x18C525cce3ad9A48D82F91B874754be78E9d0F85/info.json new file mode 100644 index 00000000..4b096de4 --- /dev/null +++ b/blockchains/ethereum/assets/0x18C525cce3ad9A48D82F91B874754be78E9d0F85/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bidooh Token", + "symbol": "DOOH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x18C525cce3ad9A48D82F91B874754be78E9d0F85", + "status": "abandoned", + "id": "0x18C525cce3ad9A48D82F91B874754be78E9d0F85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x18C525cce3ad9A48D82F91B874754be78E9d0F85/logo.png b/blockchains/ethereum/assets/0x18C525cce3ad9A48D82F91B874754be78E9d0F85/logo.png new file mode 100644 index 00000000..aef3a585 Binary files /dev/null and b/blockchains/ethereum/assets/0x18C525cce3ad9A48D82F91B874754be78E9d0F85/logo.png differ diff --git a/blockchains/ethereum/assets/0x18Cc17a1EeD37C02A77B0B96b7890C7730E2a2CF/info.json b/blockchains/ethereum/assets/0x18Cc17a1EeD37C02A77B0B96b7890C7730E2a2CF/info.json new file mode 100644 index 00000000..0f8bd960 --- /dev/null +++ b/blockchains/ethereum/assets/0x18Cc17a1EeD37C02A77B0B96b7890C7730E2a2CF/info.json @@ -0,0 +1,11 @@ +{ + "name": "oneLINK", + "website": "https://ichi.org", + "description": "oneLINK is the stablecoin created for the Chainlink community. Backed by both a treasury of LINK and collateral of USDC this ERC20 token can be redeemed for USDC at anytime and also provides a vote for governance of the LINK treasury.", + "explorer": "https://etherscan.io/token/0x18Cc17a1EeD37C02A77B0B96b7890C7730E2a2CF", + "type": "ERC20", + "symbol": "oneLINK", + "decimals": 9, + "status": "active", + "id": "0x18Cc17a1EeD37C02A77B0B96b7890C7730E2a2CF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x18Cc17a1EeD37C02A77B0B96b7890C7730E2a2CF/logo.png b/blockchains/ethereum/assets/0x18Cc17a1EeD37C02A77B0B96b7890C7730E2a2CF/logo.png new file mode 100644 index 00000000..84f8fd29 Binary files /dev/null and b/blockchains/ethereum/assets/0x18Cc17a1EeD37C02A77B0B96b7890C7730E2a2CF/logo.png differ diff --git a/blockchains/ethereum/assets/0x18a4979bbB4c88275d4575d66B9c9CD6BeA0cD5E/info.json b/blockchains/ethereum/assets/0x18a4979bbB4c88275d4575d66B9c9CD6BeA0cD5E/info.json new file mode 100644 index 00000000..936e3808 --- /dev/null +++ b/blockchains/ethereum/assets/0x18a4979bbB4c88275d4575d66B9c9CD6BeA0cD5E/info.json @@ -0,0 +1,17 @@ +{ + "name": "IdexTools", + "website": "https://idextools.com/", + "description": "Everything you always wanted to know, at one click: Make your own strategies, anticipate the market dumps, search for big spreads, follow and copy the biggest gainer wallets and much more...", + "explorer": "https://etherscan.io/token/0x18a4979bbB4c88275d4575d66B9c9CD6BeA0cD5E", + "type": "ERC20", + "symbol": "IDXT", + "decimals": 18, + "status": "active", + "id": "0x18a4979bbB4c88275d4575d66B9c9CD6BeA0cD5E", + "links": [ + { + "name": "x", + "url": "https://x.com/IdexTools" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x18a4979bbB4c88275d4575d66B9c9CD6BeA0cD5E/logo.png b/blockchains/ethereum/assets/0x18a4979bbB4c88275d4575d66B9c9CD6BeA0cD5E/logo.png new file mode 100644 index 00000000..ed5b06e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x18a4979bbB4c88275d4575d66B9c9CD6BeA0cD5E/logo.png differ diff --git a/blockchains/ethereum/assets/0x18aAA7115705e8be94bfFEBDE57Af9BFc265B998/info.json b/blockchains/ethereum/assets/0x18aAA7115705e8be94bfFEBDE57Af9BFc265B998/info.json new file mode 100644 index 00000000..a65c5427 --- /dev/null +++ b/blockchains/ethereum/assets/0x18aAA7115705e8be94bfFEBDE57Af9BFc265B998/info.json @@ -0,0 +1,12 @@ +{ + "name": "Audius", + "website": "https://audius.co", + "description": "Audius is a decentralized music-sharing and streaming protocol that facilitates direct transactions between listeners and creators.", + "explorer": "https://etherscan.io/token/0x18aaa7115705e8be94bffebde57af9bfc265b998", + "research": "https://research.binance.com/en/projects/audius", + "type": "ERC20", + "symbol": "AUDIO", + "decimals": 18, + "status": "active", + "id": "0x18aAA7115705e8be94bfFEBDE57Af9BFc265B998" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x18aAA7115705e8be94bfFEBDE57Af9BFc265B998/logo.png b/blockchains/ethereum/assets/0x18aAA7115705e8be94bfFEBDE57Af9BFc265B998/logo.png new file mode 100644 index 00000000..e0aa1751 Binary files /dev/null and b/blockchains/ethereum/assets/0x18aAA7115705e8be94bfFEBDE57Af9BFc265B998/logo.png differ diff --git a/blockchains/ethereum/assets/0x18d3Adac07900c2507461749BE70543116C73594/info.json b/blockchains/ethereum/assets/0x18d3Adac07900c2507461749BE70543116C73594/info.json new file mode 100644 index 00000000..86a56de6 --- /dev/null +++ b/blockchains/ethereum/assets/0x18d3Adac07900c2507461749BE70543116C73594/info.json @@ -0,0 +1,11 @@ +{ + "name": "Africoyn", + "symbol": "AFR", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x18d3Adac07900c2507461749BE70543116C73594", + "status": "abandoned", + "id": "0x18d3Adac07900c2507461749BE70543116C73594" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x18d3Adac07900c2507461749BE70543116C73594/logo.png b/blockchains/ethereum/assets/0x18d3Adac07900c2507461749BE70543116C73594/logo.png new file mode 100644 index 00000000..8efeb366 Binary files /dev/null and b/blockchains/ethereum/assets/0x18d3Adac07900c2507461749BE70543116C73594/logo.png differ diff --git a/blockchains/ethereum/assets/0x18f5B4908e8861e3114Ba9a0a9a4E84c5F180Cc0/info.json b/blockchains/ethereum/assets/0x18f5B4908e8861e3114Ba9a0a9a4E84c5F180Cc0/info.json new file mode 100644 index 00000000..45d21501 --- /dev/null +++ b/blockchains/ethereum/assets/0x18f5B4908e8861e3114Ba9a0a9a4E84c5F180Cc0/info.json @@ -0,0 +1,11 @@ +{ + "name": "EsportsToken", + "symbol": "EST", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x18f5B4908e8861e3114Ba9a0a9a4E84c5F180Cc0", + "status": "abandoned", + "id": "0x18f5B4908e8861e3114Ba9a0a9a4E84c5F180Cc0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x18f5B4908e8861e3114Ba9a0a9a4E84c5F180Cc0/logo.png b/blockchains/ethereum/assets/0x18f5B4908e8861e3114Ba9a0a9a4E84c5F180Cc0/logo.png new file mode 100644 index 00000000..ed9490a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x18f5B4908e8861e3114Ba9a0a9a4E84c5F180Cc0/logo.png differ diff --git a/blockchains/ethereum/assets/0x190289e0f72DFD611121da7DD9F3e6C92b8F71e4/info.json b/blockchains/ethereum/assets/0x190289e0f72DFD611121da7DD9F3e6C92b8F71e4/info.json new file mode 100644 index 00000000..360d5d09 --- /dev/null +++ b/blockchains/ethereum/assets/0x190289e0f72DFD611121da7DD9F3e6C92b8F71e4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hashtoken", + "symbol": "HHT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x190289e0f72DFD611121da7DD9F3e6C92b8F71e4", + "status": "abandoned", + "id": "0x190289e0f72DFD611121da7DD9F3e6C92b8F71e4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x190289e0f72DFD611121da7DD9F3e6C92b8F71e4/logo.png b/blockchains/ethereum/assets/0x190289e0f72DFD611121da7DD9F3e6C92b8F71e4/logo.png new file mode 100644 index 00000000..761c1a99 Binary files /dev/null and b/blockchains/ethereum/assets/0x190289e0f72DFD611121da7DD9F3e6C92b8F71e4/logo.png differ diff --git a/blockchains/ethereum/assets/0x19060094373C32E7f7d95eb4d1231f0779C91c23/info.json b/blockchains/ethereum/assets/0x19060094373C32E7f7d95eb4d1231f0779C91c23/info.json new file mode 100644 index 00000000..2c530738 --- /dev/null +++ b/blockchains/ethereum/assets/0x19060094373C32E7f7d95eb4d1231f0779C91c23/info.json @@ -0,0 +1,11 @@ +{ + "name": "RelayNode", + "symbol": "RELAY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x19060094373C32E7f7d95eb4d1231f0779C91c23", + "status": "abandoned", + "id": "0x19060094373C32E7f7d95eb4d1231f0779C91c23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19060094373C32E7f7d95eb4d1231f0779C91c23/logo.png b/blockchains/ethereum/assets/0x19060094373C32E7f7d95eb4d1231f0779C91c23/logo.png new file mode 100644 index 00000000..b89e9f09 Binary files /dev/null and b/blockchains/ethereum/assets/0x19060094373C32E7f7d95eb4d1231f0779C91c23/logo.png differ diff --git a/blockchains/ethereum/assets/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb/info.json b/blockchains/ethereum/assets/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb/info.json new file mode 100644 index 00000000..0999a62b --- /dev/null +++ b/blockchains/ethereum/assets/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb/info.json @@ -0,0 +1,61 @@ +{ + "name": "Swarm", + "type": "ERC20", + "symbol": "BZZ", + "decimals": 16, + "website": "https://ethswarm.org", + "description": "Swarm is a decentralised permisionless data storage and distribution technology.", + "explorer": "https://etherscan.io/token/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "status": "active", + "id": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "links": [ + { + "name": "x", + "url": "https://x.com/ethswarm" + }, + { + "name": "github", + "url": "https://github.com/ethersphere" + }, + { + "name": "medium", + "url": "https://medium.com/ethereum-swarm" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ethereum-swarm/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/swarm-bzz/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/GU22h2utj6" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ethswarm/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCu6ywn9MTqdREuE6xuRkskA/videos" + }, + { + "name": "whitepaper", + "url": "https://www.ethswarm.org/swarm-whitepaper.pdf" + }, + { + "name": "docs", + "url": "https://docs.ethswarm.org/docs/" + }, + { + "name": "blog", + "url": "https://blog.ethswarm.org/" + } + ], + "tags": [ + "privacy", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb/logo.png b/blockchains/ethereum/assets/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb/logo.png new file mode 100644 index 00000000..0e44701f Binary files /dev/null and b/blockchains/ethereum/assets/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb/logo.png differ diff --git a/blockchains/ethereum/assets/0x191557728e4d8CAa4Ac94f86af842148c0FA8F7E/info.json b/blockchains/ethereum/assets/0x191557728e4d8CAa4Ac94f86af842148c0FA8F7E/info.json new file mode 100644 index 00000000..774207f6 --- /dev/null +++ b/blockchains/ethereum/assets/0x191557728e4d8CAa4Ac94f86af842148c0FA8F7E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ormeus Ecosystem", + "website": "https://eco-system.io", + "description": "The World’s First Business-Backed Blockchain Smart Economy", + "explorer": "https://etherscan.io/token/0x191557728e4d8CAa4Ac94f86af842148c0FA8F7E", + "type": "ERC20", + "symbol": "ECO", + "decimals": 8, + "status": "active", + "id": "0x191557728e4d8CAa4Ac94f86af842148c0FA8F7E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x191557728e4d8CAa4Ac94f86af842148c0FA8F7E/logo.png b/blockchains/ethereum/assets/0x191557728e4d8CAa4Ac94f86af842148c0FA8F7E/logo.png new file mode 100644 index 00000000..905e7da8 Binary files /dev/null and b/blockchains/ethereum/assets/0x191557728e4d8CAa4Ac94f86af842148c0FA8F7E/logo.png differ diff --git a/blockchains/ethereum/assets/0x1929658f7578AA8F25792BA891654878F2C3AE18/info.json b/blockchains/ethereum/assets/0x1929658f7578AA8F25792BA891654878F2C3AE18/info.json new file mode 100644 index 00000000..494fb1a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x1929658f7578AA8F25792BA891654878F2C3AE18/info.json @@ -0,0 +1,11 @@ +{ + "name": "Billions Icon", + "symbol": "BIN", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1929658f7578AA8F25792BA891654878F2C3AE18", + "status": "abandoned", + "id": "0x1929658f7578AA8F25792BA891654878F2C3AE18" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1929658f7578AA8F25792BA891654878F2C3AE18/logo.png b/blockchains/ethereum/assets/0x1929658f7578AA8F25792BA891654878F2C3AE18/logo.png new file mode 100644 index 00000000..640abe8b Binary files /dev/null and b/blockchains/ethereum/assets/0x1929658f7578AA8F25792BA891654878F2C3AE18/logo.png differ diff --git a/blockchains/ethereum/assets/0x192C8342e994de140Ef9A11FEA76985fc8bF9e5a/info.json b/blockchains/ethereum/assets/0x192C8342e994de140Ef9A11FEA76985fc8bF9e5a/info.json new file mode 100644 index 00000000..28639734 --- /dev/null +++ b/blockchains/ethereum/assets/0x192C8342e994de140Ef9A11FEA76985fc8bF9e5a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Socool", + "symbol": "SCO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x192C8342e994de140Ef9A11FEA76985fc8bF9e5a", + "status": "abandoned", + "id": "0x192C8342e994de140Ef9A11FEA76985fc8bF9e5a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x192C8342e994de140Ef9A11FEA76985fc8bF9e5a/logo.png b/blockchains/ethereum/assets/0x192C8342e994de140Ef9A11FEA76985fc8bF9e5a/logo.png new file mode 100644 index 00000000..29e6246e Binary files /dev/null and b/blockchains/ethereum/assets/0x192C8342e994de140Ef9A11FEA76985fc8bF9e5a/logo.png differ diff --git a/blockchains/ethereum/assets/0x192f3517BBBC6B69090A79D8CD1D32Fd0Dcd67a8/info.json b/blockchains/ethereum/assets/0x192f3517BBBC6B69090A79D8CD1D32Fd0Dcd67a8/info.json new file mode 100644 index 00000000..ee9c5a57 --- /dev/null +++ b/blockchains/ethereum/assets/0x192f3517BBBC6B69090A79D8CD1D32Fd0Dcd67a8/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R885764", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x192f3517BBBC6B69090A79D8CD1D32Fd0Dcd67a8", + "status": "abandoned", + "id": "0x192f3517BBBC6B69090A79D8CD1D32Fd0Dcd67a8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x192f3517BBBC6B69090A79D8CD1D32Fd0Dcd67a8/logo.png b/blockchains/ethereum/assets/0x192f3517BBBC6B69090A79D8CD1D32Fd0Dcd67a8/logo.png new file mode 100644 index 00000000..a8e71824 Binary files /dev/null and b/blockchains/ethereum/assets/0x192f3517BBBC6B69090A79D8CD1D32Fd0Dcd67a8/logo.png differ diff --git a/blockchains/ethereum/assets/0x193408cA0576B73156Ed42A2EA7D6fD3f6507162/info.json b/blockchains/ethereum/assets/0x193408cA0576B73156Ed42A2EA7D6fD3f6507162/info.json new file mode 100644 index 00000000..d661984c --- /dev/null +++ b/blockchains/ethereum/assets/0x193408cA0576B73156Ed42A2EA7D6fD3f6507162/info.json @@ -0,0 +1,11 @@ +{ + "name": "INFINITY ESAHAM", + "symbol": "INFS", + "type": "ERC20", + "decimals": 1, + "description": "-", + "website": "https://e-sahaminfinity.com/", + "explorer": "https://etherscan.io/token/0x193408cA0576B73156Ed42A2EA7D6fD3f6507162", + "status": "active", + "id": "0x193408cA0576B73156Ed42A2EA7D6fD3f6507162" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x193408cA0576B73156Ed42A2EA7D6fD3f6507162/logo.png b/blockchains/ethereum/assets/0x193408cA0576B73156Ed42A2EA7D6fD3f6507162/logo.png new file mode 100644 index 00000000..9fb90d70 Binary files /dev/null and b/blockchains/ethereum/assets/0x193408cA0576B73156Ed42A2EA7D6fD3f6507162/logo.png differ diff --git a/blockchains/ethereum/assets/0x193B8dBc2805B9639d173A22E59A1B33E566668E/info.json b/blockchains/ethereum/assets/0x193B8dBc2805B9639d173A22E59A1B33E566668E/info.json new file mode 100644 index 00000000..02effbda --- /dev/null +++ b/blockchains/ethereum/assets/0x193B8dBc2805B9639d173A22E59A1B33E566668E/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg4500", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x193B8dBc2805B9639d173A22E59A1B33E566668E", + "status": "abandoned", + "id": "0x193B8dBc2805B9639d173A22E59A1B33E566668E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x193B8dBc2805B9639d173A22E59A1B33E566668E/logo.png b/blockchains/ethereum/assets/0x193B8dBc2805B9639d173A22E59A1B33E566668E/logo.png new file mode 100644 index 00000000..d1c7fd1e Binary files /dev/null and b/blockchains/ethereum/assets/0x193B8dBc2805B9639d173A22E59A1B33E566668E/logo.png differ diff --git a/blockchains/ethereum/assets/0x193Fdf644451CC394b28B9Cec2F5D32E2b4dE515/info.json b/blockchains/ethereum/assets/0x193Fdf644451CC394b28B9Cec2F5D32E2b4dE515/info.json new file mode 100644 index 00000000..51f25c27 --- /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 00000000..d83a0ac3 Binary files /dev/null and b/blockchains/ethereum/assets/0x193Fdf644451CC394b28B9Cec2F5D32E2b4dE515/logo.png differ diff --git a/blockchains/ethereum/assets/0x19532D38E1608C22c1510522b1C835284AE04DA5/info.json b/blockchains/ethereum/assets/0x19532D38E1608C22c1510522b1C835284AE04DA5/info.json new file mode 100644 index 00000000..047b0cda --- /dev/null +++ b/blockchains/ethereum/assets/0x19532D38E1608C22c1510522b1C835284AE04DA5/info.json @@ -0,0 +1,11 @@ +{ + "name": "BULL RUN JESUS", + "symbol": "BRJ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x19532D38E1608C22c1510522b1C835284AE04DA5", + "status": "abandoned", + "id": "0x19532D38E1608C22c1510522b1C835284AE04DA5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19532D38E1608C22c1510522b1C835284AE04DA5/logo.png b/blockchains/ethereum/assets/0x19532D38E1608C22c1510522b1C835284AE04DA5/logo.png new file mode 100644 index 00000000..cc0f234d Binary files /dev/null and b/blockchains/ethereum/assets/0x19532D38E1608C22c1510522b1C835284AE04DA5/logo.png differ diff --git a/blockchains/ethereum/assets/0x195F43a522814DB23cb55FA5AC2f92f6C1460d9e/info.json b/blockchains/ethereum/assets/0x195F43a522814DB23cb55FA5AC2f92f6C1460d9e/info.json new file mode 100644 index 00000000..966dc941 --- /dev/null +++ b/blockchains/ethereum/assets/0x195F43a522814DB23cb55FA5AC2f92f6C1460d9e/info.json @@ -0,0 +1,11 @@ +{ + "name": "MTCCOIN", + "symbol": "MTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x195F43a522814DB23cb55FA5AC2f92f6C1460d9e", + "status": "abandoned", + "id": "0x195F43a522814DB23cb55FA5AC2f92f6C1460d9e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x195F43a522814DB23cb55FA5AC2f92f6C1460d9e/logo.png b/blockchains/ethereum/assets/0x195F43a522814DB23cb55FA5AC2f92f6C1460d9e/logo.png new file mode 100644 index 00000000..83f61a6c Binary files /dev/null and b/blockchains/ethereum/assets/0x195F43a522814DB23cb55FA5AC2f92f6C1460d9e/logo.png differ diff --git a/blockchains/ethereum/assets/0x1961B3331969eD52770751fC718ef530838b6dEE/info.json b/blockchains/ethereum/assets/0x1961B3331969eD52770751fC718ef530838b6dEE/info.json new file mode 100644 index 00000000..f9de75fe --- /dev/null +++ b/blockchains/ethereum/assets/0x1961B3331969eD52770751fC718ef530838b6dEE/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitDegree Token", + "symbol": "BDG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.bitdegree.org", + "explorer": "https://etherscan.io/token/0x1961B3331969eD52770751fC718ef530838b6dEE", + "status": "active", + "id": "0x1961B3331969eD52770751fC718ef530838b6dEE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1961B3331969eD52770751fC718ef530838b6dEE/logo.png b/blockchains/ethereum/assets/0x1961B3331969eD52770751fC718ef530838b6dEE/logo.png new file mode 100755 index 00000000..2868f803 Binary files /dev/null and b/blockchains/ethereum/assets/0x1961B3331969eD52770751fC718ef530838b6dEE/logo.png differ diff --git a/blockchains/ethereum/assets/0x1966d718A565566e8E202792658D7b5Ff4ECe469/info.json b/blockchains/ethereum/assets/0x1966d718A565566e8E202792658D7b5Ff4ECe469/info.json new file mode 100644 index 00000000..e50a7ee1 --- /dev/null +++ b/blockchains/ethereum/assets/0x1966d718A565566e8E202792658D7b5Ff4ECe469/info.json @@ -0,0 +1,11 @@ +{ + "name": "nDEX", + "symbol": "NDX", + "type": "ERC20", + "decimals": 18, + "description": "nDEX Network is a next generation decentralized ethereum token exchange. Our primary goal is to provide a clean, fast and secure trading environment with lowest service charge.", + "website": "https://ndexnetwork.com", + "explorer": "https://etherscan.io/token/0x1966d718A565566e8E202792658D7b5Ff4ECe469", + "status": "active", + "id": "0x1966d718A565566e8E202792658D7b5Ff4ECe469" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1966d718A565566e8E202792658D7b5Ff4ECe469/logo.png b/blockchains/ethereum/assets/0x1966d718A565566e8E202792658D7b5Ff4ECe469/logo.png new file mode 100644 index 00000000..fd2ef4f4 Binary files /dev/null and b/blockchains/ethereum/assets/0x1966d718A565566e8E202792658D7b5Ff4ECe469/logo.png differ diff --git a/blockchains/ethereum/assets/0x1969442391737025812C2215E77E676d7fA84847/info.json b/blockchains/ethereum/assets/0x1969442391737025812C2215E77E676d7fA84847/info.json new file mode 100644 index 00000000..f0b7506c --- /dev/null +++ b/blockchains/ethereum/assets/0x1969442391737025812C2215E77E676d7fA84847/info.json @@ -0,0 +1,11 @@ +{ + "name": "Islamic Bank", + "symbol": "ISL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1969442391737025812C2215E77E676d7fA84847", + "status": "abandoned", + "id": "0x1969442391737025812C2215E77E676d7fA84847" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1969442391737025812C2215E77E676d7fA84847/logo.png b/blockchains/ethereum/assets/0x1969442391737025812C2215E77E676d7fA84847/logo.png new file mode 100644 index 00000000..c841bb65 Binary files /dev/null and b/blockchains/ethereum/assets/0x1969442391737025812C2215E77E676d7fA84847/logo.png differ diff --git a/blockchains/ethereum/assets/0x196f4727526eA7FB1e17b2071B3d8eAA38486988/info.json b/blockchains/ethereum/assets/0x196f4727526eA7FB1e17b2071B3d8eAA38486988/info.json new file mode 100644 index 00000000..448ef54b --- /dev/null +++ b/blockchains/ethereum/assets/0x196f4727526eA7FB1e17b2071B3d8eAA38486988/info.json @@ -0,0 +1,15 @@ +{ + "name": "Reserve", + "website": "https://reserve.org", + "description": "The stable cryptocurrency that is economically and legally robust at any scale.", + "explorer": "https://etherscan.io/token/0x196f4727526eA7FB1e17b2071B3d8eAA38486988", + "research": "https://research.binance.com/en/projects/reserve-rights", + "type": "ERC20", + "symbol": "RSV", + "decimals": 18, + "status": "active", + "id": "0x196f4727526eA7FB1e17b2071B3d8eAA38486988", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x196f4727526eA7FB1e17b2071B3d8eAA38486988/logo.png b/blockchains/ethereum/assets/0x196f4727526eA7FB1e17b2071B3d8eAA38486988/logo.png new file mode 100644 index 00000000..f90d3e42 Binary files /dev/null and b/blockchains/ethereum/assets/0x196f4727526eA7FB1e17b2071B3d8eAA38486988/logo.png differ diff --git a/blockchains/ethereum/assets/0x197E6bCa6BC2f488ec760a6Ce46B1399cd2954b0/info.json b/blockchains/ethereum/assets/0x197E6bCa6BC2f488ec760a6Ce46B1399cd2954b0/info.json new file mode 100644 index 00000000..85de8b88 --- /dev/null +++ b/blockchains/ethereum/assets/0x197E6bCa6BC2f488ec760a6Ce46B1399cd2954b0/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitCloud Token", + "symbol": "BPRO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://bitcloud.pro/", + "explorer": "https://etherscan.io/token/0x197E6bCa6BC2f488ec760a6Ce46B1399cd2954b0", + "status": "abandoned", + "id": "0x197E6bCa6BC2f488ec760a6Ce46B1399cd2954b0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x197E6bCa6BC2f488ec760a6Ce46B1399cd2954b0/logo.png b/blockchains/ethereum/assets/0x197E6bCa6BC2f488ec760a6Ce46B1399cd2954b0/logo.png new file mode 100644 index 00000000..9f4fe750 Binary files /dev/null and b/blockchains/ethereum/assets/0x197E6bCa6BC2f488ec760a6Ce46B1399cd2954b0/logo.png differ diff --git a/blockchains/ethereum/assets/0x19810559dF63f19cfE88923313250550eDADB743/info.json b/blockchains/ethereum/assets/0x19810559dF63f19cfE88923313250550eDADB743/info.json new file mode 100644 index 00000000..948be14f --- /dev/null +++ b/blockchains/ethereum/assets/0x19810559dF63f19cfE88923313250550eDADB743/info.json @@ -0,0 +1,17 @@ +{ + "name": "Toast.finance (HOUSE)", + "website": "https://toast.finance/", + "description": "HOUSE is a fixed-supply token in the Toast.finance ecosystem.", + "explorer": "https://etherscan.io/token/0x19810559dF63f19cfE88923313250550eDADB743", + "type": "ERC20", + "symbol": "HOUSE", + "decimals": 0, + "status": "active", + "id": "0x19810559dF63f19cfE88923313250550eDADB743", + "links": [ + { + "name": "github", + "url": "https://github.com/Toast-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19810559dF63f19cfE88923313250550eDADB743/logo.png b/blockchains/ethereum/assets/0x19810559dF63f19cfE88923313250550eDADB743/logo.png new file mode 100644 index 00000000..d18414aa Binary files /dev/null and b/blockchains/ethereum/assets/0x19810559dF63f19cfE88923313250550eDADB743/logo.png differ diff --git a/blockchains/ethereum/assets/0x198482924B5ed2c8dd5a0C824Fcd618c6B49e6e8/info.json b/blockchains/ethereum/assets/0x198482924B5ed2c8dd5a0C824Fcd618c6B49e6e8/info.json new file mode 100644 index 00000000..140b8610 --- /dev/null +++ b/blockchains/ethereum/assets/0x198482924B5ed2c8dd5a0C824Fcd618c6B49e6e8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ultra Rich Group", + "symbol": "RICH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x198482924B5ed2c8dd5a0C824Fcd618c6B49e6e8", + "status": "abandoned", + "id": "0x198482924B5ed2c8dd5a0C824Fcd618c6B49e6e8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x198482924B5ed2c8dd5a0C824Fcd618c6B49e6e8/logo.png b/blockchains/ethereum/assets/0x198482924B5ed2c8dd5a0C824Fcd618c6B49e6e8/logo.png new file mode 100644 index 00000000..7aa3b5be Binary files /dev/null and b/blockchains/ethereum/assets/0x198482924B5ed2c8dd5a0C824Fcd618c6B49e6e8/logo.png differ diff --git a/blockchains/ethereum/assets/0x1985365e9f78359a9B6AD760e32412f4a445E862/info.json b/blockchains/ethereum/assets/0x1985365e9f78359a9B6AD760e32412f4a445E862/info.json new file mode 100644 index 00000000..ea89b59d --- /dev/null +++ b/blockchains/ethereum/assets/0x1985365e9f78359a9B6AD760e32412f4a445E862/info.json @@ -0,0 +1,11 @@ +{ + "name": "Augur", + "website": "http://augur.net", + "description": "Augur (REP) is meant to harness the wisdom of the crowd through prediction markets on a protocol owned and operated by holders of the Ethereum-based Reputation token.", + "explorer": "https://etherscan.io/token/0x1985365e9f78359a9B6AD760e32412f4a445E862", + "type": "ERC20", + "symbol": "REP", + "decimals": 18, + "status": "active", + "id": "0x1985365e9f78359a9B6AD760e32412f4a445E862" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1985365e9f78359a9B6AD760e32412f4a445E862/logo.png b/blockchains/ethereum/assets/0x1985365e9f78359a9B6AD760e32412f4a445E862/logo.png new file mode 100644 index 00000000..58b98adb Binary files /dev/null and b/blockchains/ethereum/assets/0x1985365e9f78359a9B6AD760e32412f4a445E862/logo.png differ diff --git a/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/info.json b/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/info.json new file mode 100644 index 00000000..3047f7b3 --- /dev/null +++ b/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/info.json @@ -0,0 +1,33 @@ +{ + "name": "APENFT", + "symbol": "NFT", + "type": "ERC20", + "decimals": 6, + "description": "APENFT Fund was born with the mission to register worid-class artworks as NFTs on blockchain and aim to be the ARK Funds in the NFT space to buld a bridge between top-notch artists and blockchain, and to support the growth of native crypto NFT artists.", + "website": "https://apenft.io/", + "explorer": "https://etherscan.io/token/0x198d14f2ad9ce69e76ea330b374de4957c3f850a", + "status": "active", + "id": "0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a", + "links": [ + { + "name": "x", + "url": "https://x.com/apenftorg" + }, + { + "name": "telegram", + "url": "https://t.me/apenftEN" + }, + { + "name": "whitepaper", + "url": "https://fundation.apenft.io/book/APENFT%20White%20Paper.pdf" + }, + { + "name": "medium", + "url": "https://apenftorg.medium.com/" + } + ], + "tags": [ + "nft", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/logo.png b/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/logo.png new file mode 100644 index 00000000..4ab1ef9e Binary files /dev/null and b/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/logo.png differ diff --git a/blockchains/ethereum/assets/0x1997830B5beB723f5089bb8fc38766d419a0444d/info.json b/blockchains/ethereum/assets/0x1997830B5beB723f5089bb8fc38766d419a0444d/info.json new file mode 100644 index 00000000..75bbe4f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x1997830B5beB723f5089bb8fc38766d419a0444d/info.json @@ -0,0 +1,11 @@ +{ + "name": "New Guinea Singing Dog Inu", + "website": "https://newinu.org", + "description": "NEWINU - The Dog Singer. NEWINU is a deflationary token that allows for passive income generation for investors", + "explorer": "https://etherscan.io/token/0x1997830b5beb723f5089bb8fc38766d419a0444d", + "type": "ERC20", + "symbol": "NEWINU", + "decimals": 9, + "status": "active", + "id": "0x1997830B5beB723f5089bb8fc38766d419a0444d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1997830B5beB723f5089bb8fc38766d419a0444d/logo.png b/blockchains/ethereum/assets/0x1997830B5beB723f5089bb8fc38766d419a0444d/logo.png new file mode 100644 index 00000000..8b3a29d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x1997830B5beB723f5089bb8fc38766d419a0444d/logo.png differ diff --git a/blockchains/ethereum/assets/0x19A2cF2A1B2f76e52E2b0c572bD80A95B4Fa8643/info.json b/blockchains/ethereum/assets/0x19A2cF2A1B2f76e52E2b0c572bD80A95B4Fa8643/info.json new file mode 100644 index 00000000..cde5e234 --- /dev/null +++ b/blockchains/ethereum/assets/0x19A2cF2A1B2f76e52E2b0c572bD80A95B4Fa8643/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fyooz NFT", + "website": "https://www.fyooz.io/fyznft/", + "description": "FYZNFT is the token that grants access to NFTs directly from the world’s biggest artists and celebrities", + "explorer": "https://etherscan.io/token/0x19A2cF2A1B2f76e52E2b0c572bD80A95B4Fa8643", + "type": "ERC20", + "symbol": "FYZNFT", + "decimals": 18, + "status": "active", + "id": "0x19A2cF2A1B2f76e52E2b0c572bD80A95B4Fa8643" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19A2cF2A1B2f76e52E2b0c572bD80A95B4Fa8643/logo.png b/blockchains/ethereum/assets/0x19A2cF2A1B2f76e52E2b0c572bD80A95B4Fa8643/logo.png new file mode 100644 index 00000000..6cbb8e59 Binary files /dev/null and b/blockchains/ethereum/assets/0x19A2cF2A1B2f76e52E2b0c572bD80A95B4Fa8643/logo.png differ diff --git a/blockchains/ethereum/assets/0x19B58d95929586Ad750893CAad43E77aa6e8Ce9E/info.json b/blockchains/ethereum/assets/0x19B58d95929586Ad750893CAad43E77aa6e8Ce9E/info.json new file mode 100644 index 00000000..86b6edf1 --- /dev/null +++ b/blockchains/ethereum/assets/0x19B58d95929586Ad750893CAad43E77aa6e8Ce9E/info.json @@ -0,0 +1,11 @@ +{ + "name": "CelCoin", + "symbol": "CELC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://celcoin.io", + "explorer": "https://etherscan.io/token/0x19B58d95929586Ad750893CAad43E77aa6e8Ce9E", + "status": "abandoned", + "id": "0x19B58d95929586Ad750893CAad43E77aa6e8Ce9E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19B58d95929586Ad750893CAad43E77aa6e8Ce9E/logo.png b/blockchains/ethereum/assets/0x19B58d95929586Ad750893CAad43E77aa6e8Ce9E/logo.png new file mode 100644 index 00000000..aa86fb6d Binary files /dev/null and b/blockchains/ethereum/assets/0x19B58d95929586Ad750893CAad43E77aa6e8Ce9E/logo.png differ diff --git a/blockchains/ethereum/assets/0x19C9872640eC38c2Cf36C0F04d1365Ef067869B3/info.json b/blockchains/ethereum/assets/0x19C9872640eC38c2Cf36C0F04d1365Ef067869B3/info.json new file mode 100644 index 00000000..a6180623 --- /dev/null +++ b/blockchains/ethereum/assets/0x19C9872640eC38c2Cf36C0F04d1365Ef067869B3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Oath Protocol", + "symbol": "OATH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.oathprotocol.com/", + "explorer": "https://etherscan.io/token/0x19C9872640eC38c2Cf36C0F04d1365Ef067869B3", + "status": "abandoned", + "id": "0x19C9872640eC38c2Cf36C0F04d1365Ef067869B3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19C9872640eC38c2Cf36C0F04d1365Ef067869B3/logo.png b/blockchains/ethereum/assets/0x19C9872640eC38c2Cf36C0F04d1365Ef067869B3/logo.png new file mode 100644 index 00000000..3b90f48e Binary files /dev/null and b/blockchains/ethereum/assets/0x19C9872640eC38c2Cf36C0F04d1365Ef067869B3/logo.png differ diff --git a/blockchains/ethereum/assets/0x19E657fc2eE039da76Aff32bf58C2DdCB9b0f9ba/info.json b/blockchains/ethereum/assets/0x19E657fc2eE039da76Aff32bf58C2DdCB9b0f9ba/info.json new file mode 100644 index 00000000..531e5fde --- /dev/null +++ b/blockchains/ethereum/assets/0x19E657fc2eE039da76Aff32bf58C2DdCB9b0f9ba/info.json @@ -0,0 +1,11 @@ +{ + "name": "FleaChain", + "symbol": "FEC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x19E657fc2eE039da76Aff32bf58C2DdCB9b0f9ba", + "status": "abandoned", + "id": "0x19E657fc2eE039da76Aff32bf58C2DdCB9b0f9ba" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19E657fc2eE039da76Aff32bf58C2DdCB9b0f9ba/logo.png b/blockchains/ethereum/assets/0x19E657fc2eE039da76Aff32bf58C2DdCB9b0f9ba/logo.png new file mode 100644 index 00000000..46255f37 Binary files /dev/null and b/blockchains/ethereum/assets/0x19E657fc2eE039da76Aff32bf58C2DdCB9b0f9ba/logo.png differ diff --git a/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/info.json b/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/info.json new file mode 100644 index 00000000..c6d73ff5 --- /dev/null +++ b/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/info.json @@ -0,0 +1,28 @@ +{ + "name": "Cola Token", + "type": "ERC20", + "symbol": "COLA", + "decimals": 18, + "website": "http://www.colawork.com/", + "description": "Colawork is a workplace benefits provider that rewards employees with cryptocurrency (COLA) for their participation at the digital workplace/collaboration tool.", + "explorer": "https://etherscan.io/token/0x19e98c4921aab7e3f5fd2adca36cfb669c63e926", + "status": "active", + "id": "0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926", + "links": [ + { + "name": "x", + "url": "https://x.com/colawork_COLA" + }, + { + "name": "telegram", + "url": "https://t.me/colawork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/colawork/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/logo.png b/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/logo.png new file mode 100644 index 00000000..4cf9e2dd Binary files /dev/null and b/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/logo.png differ diff --git a/blockchains/ethereum/assets/0x19EdFbe9814AF6eeE88289fdd789BC473e84f8F7/info.json b/blockchains/ethereum/assets/0x19EdFbe9814AF6eeE88289fdd789BC473e84f8F7/info.json new file mode 100644 index 00000000..20c5aba3 --- /dev/null +++ b/blockchains/ethereum/assets/0x19EdFbe9814AF6eeE88289fdd789BC473e84f8F7/info.json @@ -0,0 +1,11 @@ +{ + "name": "MINI ETHEREUM", + "symbol": "METH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://miniethereum.online/", + "explorer": "https://etherscan.io/token/0x19EdFbe9814AF6eeE88289fdd789BC473e84f8F7", + "status": "abandoned", + "id": "0x19EdFbe9814AF6eeE88289fdd789BC473e84f8F7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19EdFbe9814AF6eeE88289fdd789BC473e84f8F7/logo.png b/blockchains/ethereum/assets/0x19EdFbe9814AF6eeE88289fdd789BC473e84f8F7/logo.png new file mode 100644 index 00000000..4d9113d9 Binary files /dev/null and b/blockchains/ethereum/assets/0x19EdFbe9814AF6eeE88289fdd789BC473e84f8F7/logo.png differ diff --git a/blockchains/ethereum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json b/blockchains/ethereum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/info.json new file mode 100644 index 00000000..65e3da23 --- /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 00000000..59de8858 Binary files /dev/null and b/blockchains/ethereum/assets/0x19c41EA77b34BbDEe61c3A87A75D1ABDA2ED0be4/logo.png differ diff --git a/blockchains/ethereum/assets/0x19c5A48eBa1F50d63054144C62Ff11665c91E805/info.json b/blockchains/ethereum/assets/0x19c5A48eBa1F50d63054144C62Ff11665c91E805/info.json new file mode 100644 index 00000000..fa321665 --- /dev/null +++ b/blockchains/ethereum/assets/0x19c5A48eBa1F50d63054144C62Ff11665c91E805/info.json @@ -0,0 +1,11 @@ +{ + "name": "质信链", + "symbol": "ZXL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x19c5A48eBa1F50d63054144C62Ff11665c91E805", + "status": "abandoned", + "id": "0x19c5A48eBa1F50d63054144C62Ff11665c91E805" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19c5A48eBa1F50d63054144C62Ff11665c91E805/logo.png b/blockchains/ethereum/assets/0x19c5A48eBa1F50d63054144C62Ff11665c91E805/logo.png new file mode 100644 index 00000000..ac6b56a7 Binary files /dev/null and b/blockchains/ethereum/assets/0x19c5A48eBa1F50d63054144C62Ff11665c91E805/logo.png differ diff --git a/blockchains/ethereum/assets/0x19cA83a13b4C4BE43FA82c5E415E16f1D86f57F7/info.json b/blockchains/ethereum/assets/0x19cA83a13b4C4BE43FA82c5E415E16f1D86f57F7/info.json new file mode 100644 index 00000000..902f3941 --- /dev/null +++ b/blockchains/ethereum/assets/0x19cA83a13b4C4BE43FA82c5E415E16f1D86f57F7/info.json @@ -0,0 +1,11 @@ +{ + "name": "bitCEO", + "symbol": "bCEO", + "type": "ERC20", + "decimals": 18, + "description": "BitCEO helps CEOs find partners and acquire skills.", + "website": "https://www.bitceo.io/", + "explorer": "https://etherscan.io/token/0x19cA83a13b4C4BE43FA82c5E415E16f1D86f57F7", + "status": "active", + "id": "0x19cA83a13b4C4BE43FA82c5E415E16f1D86f57F7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19cA83a13b4C4BE43FA82c5E415E16f1D86f57F7/logo.png b/blockchains/ethereum/assets/0x19cA83a13b4C4BE43FA82c5E415E16f1D86f57F7/logo.png new file mode 100644 index 00000000..c8c6d539 Binary files /dev/null and b/blockchains/ethereum/assets/0x19cA83a13b4C4BE43FA82c5E415E16f1D86f57F7/logo.png differ diff --git a/blockchains/ethereum/assets/0x19ddC3605052554A1aC2b174aE745c911456841f/info.json b/blockchains/ethereum/assets/0x19ddC3605052554A1aC2b174aE745c911456841f/info.json new file mode 100644 index 00000000..bbde4ed8 --- /dev/null +++ b/blockchains/ethereum/assets/0x19ddC3605052554A1aC2b174aE745c911456841f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Proof of Nature Token", + "symbol": "PoN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://proofofnature.space/", + "explorer": "https://etherscan.io/token/0x19ddC3605052554A1aC2b174aE745c911456841f", + "status": "abandoned", + "id": "0x19ddC3605052554A1aC2b174aE745c911456841f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19ddC3605052554A1aC2b174aE745c911456841f/logo.png b/blockchains/ethereum/assets/0x19ddC3605052554A1aC2b174aE745c911456841f/logo.png new file mode 100644 index 00000000..539b0c49 Binary files /dev/null and b/blockchains/ethereum/assets/0x19ddC3605052554A1aC2b174aE745c911456841f/logo.png differ diff --git a/blockchains/ethereum/assets/0x19ea194d71e2dC4179fF0FdBB5666FcA77C4730E/info.json b/blockchains/ethereum/assets/0x19ea194d71e2dC4179fF0FdBB5666FcA77C4730E/info.json new file mode 100644 index 00000000..311e6592 --- /dev/null +++ b/blockchains/ethereum/assets/0x19ea194d71e2dC4179fF0FdBB5666FcA77C4730E/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R794213", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x19ea194d71e2dC4179fF0FdBB5666FcA77C4730E", + "status": "abandoned", + "id": "0x19ea194d71e2dC4179fF0FdBB5666FcA77C4730E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19ea194d71e2dC4179fF0FdBB5666FcA77C4730E/logo.png b/blockchains/ethereum/assets/0x19ea194d71e2dC4179fF0FdBB5666FcA77C4730E/logo.png new file mode 100644 index 00000000..d6c3155e Binary files /dev/null and b/blockchains/ethereum/assets/0x19ea194d71e2dC4179fF0FdBB5666FcA77C4730E/logo.png differ diff --git a/blockchains/ethereum/assets/0x19ea630bCBc1a511a16e65b6ECd447c92E1C087c/info.json b/blockchains/ethereum/assets/0x19ea630bCBc1a511a16e65b6ECd447c92E1C087c/info.json new file mode 100644 index 00000000..a794579b --- /dev/null +++ b/blockchains/ethereum/assets/0x19ea630bCBc1a511a16e65b6ECd447c92E1C087c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Carats Token", + "symbol": "CARAT", + "type": "ERC20", + "decimals": 18, + "description": "Carats.io is tokenizing the world’s most precious commodity — diamonds. We're building a liquid method to exchange diamonds’ digital value with a real-world usage and exposure to the diamond and jewelry industries.", + "website": "https://carats.io/", + "explorer": "https://etherscan.io/token/0x19ea630bCBc1a511a16e65b6ECd447c92E1C087c", + "status": "active", + "id": "0x19ea630bCBc1a511a16e65b6ECd447c92E1C087c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19ea630bCBc1a511a16e65b6ECd447c92E1C087c/logo.png b/blockchains/ethereum/assets/0x19ea630bCBc1a511a16e65b6ECd447c92E1C087c/logo.png new file mode 100644 index 00000000..d52d71a8 Binary files /dev/null and b/blockchains/ethereum/assets/0x19ea630bCBc1a511a16e65b6ECd447c92E1C087c/logo.png differ diff --git a/blockchains/ethereum/assets/0x19fFfd124CD9089E21026d10dA97f8cD6B442Bff/info.json b/blockchains/ethereum/assets/0x19fFfd124CD9089E21026d10dA97f8cD6B442Bff/info.json new file mode 100644 index 00000000..58460595 --- /dev/null +++ b/blockchains/ethereum/assets/0x19fFfd124CD9089E21026d10dA97f8cD6B442Bff/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zuflo Coin", + "symbol": "ZFL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.zedxe.com/", + "explorer": "https://etherscan.io/token/0x19fFfd124CD9089E21026d10dA97f8cD6B442Bff", + "status": "active", + "id": "0x19fFfd124CD9089E21026d10dA97f8cD6B442Bff" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19fFfd124CD9089E21026d10dA97f8cD6B442Bff/logo.png b/blockchains/ethereum/assets/0x19fFfd124CD9089E21026d10dA97f8cD6B442Bff/logo.png new file mode 100644 index 00000000..cc814d61 Binary files /dev/null and b/blockchains/ethereum/assets/0x19fFfd124CD9089E21026d10dA97f8cD6B442Bff/logo.png differ diff --git a/blockchains/ethereum/assets/0x19fd68eC7AE71562f9288032797ef4401ddEA0a9/info.json b/blockchains/ethereum/assets/0x19fd68eC7AE71562f9288032797ef4401ddEA0a9/info.json new file mode 100644 index 00000000..62ab356b --- /dev/null +++ b/blockchains/ethereum/assets/0x19fd68eC7AE71562f9288032797ef4401ddEA0a9/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - OR793610", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x19fd68eC7AE71562f9288032797ef4401ddEA0a9", + "status": "active", + "id": "0x19fd68eC7AE71562f9288032797ef4401ddEA0a9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x19fd68eC7AE71562f9288032797ef4401ddEA0a9/logo.png b/blockchains/ethereum/assets/0x19fd68eC7AE71562f9288032797ef4401ddEA0a9/logo.png new file mode 100644 index 00000000..ac19cba3 Binary files /dev/null and b/blockchains/ethereum/assets/0x19fd68eC7AE71562f9288032797ef4401ddEA0a9/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A0B3B603F650b2C4f474f0E817091874020Ef38/info.json b/blockchains/ethereum/assets/0x1A0B3B603F650b2C4f474f0E817091874020Ef38/info.json new file mode 100644 index 00000000..fcb3d24e --- /dev/null +++ b/blockchains/ethereum/assets/0x1A0B3B603F650b2C4f474f0E817091874020Ef38/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R802996", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1A0B3B603F650b2C4f474f0E817091874020Ef38", + "status": "abandoned", + "id": "0x1A0B3B603F650b2C4f474f0E817091874020Ef38" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1A0B3B603F650b2C4f474f0E817091874020Ef38/logo.png b/blockchains/ethereum/assets/0x1A0B3B603F650b2C4f474f0E817091874020Ef38/logo.png new file mode 100644 index 00000000..64c2350c Binary files /dev/null and b/blockchains/ethereum/assets/0x1A0B3B603F650b2C4f474f0E817091874020Ef38/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A0B4b959cF9c5853f701ca1484e57CA69ff9515/info.json b/blockchains/ethereum/assets/0x1A0B4b959cF9c5853f701ca1484e57CA69ff9515/info.json new file mode 100644 index 00000000..b7d088aa --- /dev/null +++ b/blockchains/ethereum/assets/0x1A0B4b959cF9c5853f701ca1484e57CA69ff9515/info.json @@ -0,0 +1,11 @@ +{ + "name": "EasyPocket Token", + "website": "https://easypocket.app", + "description": "EasyPocket is the most advanced Ethereum wallet with the built-in mixer.", + "explorer": "https://etherscan.io/token/0x1A0B4b959cF9c5853f701ca1484e57CA69ff9515", + "type": "ERC20", + "symbol": "EASY", + "decimals": 18, + "status": "active", + "id": "0x1A0B4b959cF9c5853f701ca1484e57CA69ff9515" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1A0B4b959cF9c5853f701ca1484e57CA69ff9515/logo.png b/blockchains/ethereum/assets/0x1A0B4b959cF9c5853f701ca1484e57CA69ff9515/logo.png new file mode 100644 index 00000000..53af4c05 Binary files /dev/null and b/blockchains/ethereum/assets/0x1A0B4b959cF9c5853f701ca1484e57CA69ff9515/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A0F2aB46EC630F9FD638029027b552aFA64b94c/info.json b/blockchains/ethereum/assets/0x1A0F2aB46EC630F9FD638029027b552aFA64b94c/info.json new file mode 100644 index 00000000..aa69d953 --- /dev/null +++ b/blockchains/ethereum/assets/0x1A0F2aB46EC630F9FD638029027b552aFA64b94c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aston X", + "symbol": "ATX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.aston.company/", + "explorer": "https://etherscan.io/token/0x1A0F2aB46EC630F9FD638029027b552aFA64b94c", + "status": "abandoned", + "id": "0x1A0F2aB46EC630F9FD638029027b552aFA64b94c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1A0F2aB46EC630F9FD638029027b552aFA64b94c/logo.png b/blockchains/ethereum/assets/0x1A0F2aB46EC630F9FD638029027b552aFA64b94c/logo.png new file mode 100755 index 00000000..3c38caab Binary files /dev/null and b/blockchains/ethereum/assets/0x1A0F2aB46EC630F9FD638029027b552aFA64b94c/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A0c31837EdB132a9312841B9527E6307db13509/info.json b/blockchains/ethereum/assets/0x1A0c31837EdB132a9312841B9527E6307db13509/info.json new file mode 100644 index 00000000..4b26cb73 --- /dev/null +++ b/blockchains/ethereum/assets/0x1A0c31837EdB132a9312841B9527E6307db13509/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hash Power Token", + "symbol": "HPC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1A0c31837EdB132a9312841B9527E6307db13509", + "status": "abandoned", + "id": "0x1A0c31837EdB132a9312841B9527E6307db13509" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1A0c31837EdB132a9312841B9527E6307db13509/logo.png b/blockchains/ethereum/assets/0x1A0c31837EdB132a9312841B9527E6307db13509/logo.png new file mode 100644 index 00000000..ca6f3547 Binary files /dev/null and b/blockchains/ethereum/assets/0x1A0c31837EdB132a9312841B9527E6307db13509/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A14b6dEB14Ff8eA9c101262A200bA1CEE136297/info.json b/blockchains/ethereum/assets/0x1A14b6dEB14Ff8eA9c101262A200bA1CEE136297/info.json new file mode 100644 index 00000000..66b4bc52 --- /dev/null +++ b/blockchains/ethereum/assets/0x1A14b6dEB14Ff8eA9c101262A200bA1CEE136297/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-29/30M29", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1A14b6dEB14Ff8eA9c101262A200bA1CEE136297", + "status": "abandoned", + "id": "0x1A14b6dEB14Ff8eA9c101262A200bA1CEE136297" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1A14b6dEB14Ff8eA9c101262A200bA1CEE136297/logo.png b/blockchains/ethereum/assets/0x1A14b6dEB14Ff8eA9c101262A200bA1CEE136297/logo.png new file mode 100644 index 00000000..43c0f4c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x1A14b6dEB14Ff8eA9c101262A200bA1CEE136297/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A1B161962a7EFE85BE39A24F18AD7d4a504e10C/info.json b/blockchains/ethereum/assets/0x1A1B161962a7EFE85BE39A24F18AD7d4a504e10C/info.json new file mode 100644 index 00000000..76ed25a6 --- /dev/null +++ b/blockchains/ethereum/assets/0x1A1B161962a7EFE85BE39A24F18AD7d4a504e10C/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOYTOKEN", + "symbol": "BOY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1A1B161962a7EFE85BE39A24F18AD7d4a504e10C", + "status": "abandoned", + "id": "0x1A1B161962a7EFE85BE39A24F18AD7d4a504e10C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1A1B161962a7EFE85BE39A24F18AD7d4a504e10C/logo.png b/blockchains/ethereum/assets/0x1A1B161962a7EFE85BE39A24F18AD7d4a504e10C/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x1A1B161962a7EFE85BE39A24F18AD7d4a504e10C/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A3496C18d558bd9C6C8f609E1B129f67AB08163/info.json b/blockchains/ethereum/assets/0x1A3496C18d558bd9C6C8f609E1B129f67AB08163/info.json new file mode 100644 index 00000000..5aaf8c66 --- /dev/null +++ b/blockchains/ethereum/assets/0x1A3496C18d558bd9C6C8f609E1B129f67AB08163/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEAPCOIN", + "symbol": "DEP", + "type": "ERC20", + "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://etherscan.io/token/0x1A3496C18d558bd9C6C8f609E1B129f67AB08163", + "status": "active", + "id": "0x1A3496C18d558bd9C6C8f609E1B129f67AB08163" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1A3496C18d558bd9C6C8f609E1B129f67AB08163/logo.png b/blockchains/ethereum/assets/0x1A3496C18d558bd9C6C8f609E1B129f67AB08163/logo.png new file mode 100644 index 00000000..f630260c Binary files /dev/null and b/blockchains/ethereum/assets/0x1A3496C18d558bd9C6C8f609E1B129f67AB08163/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A4743Cf1af4C289351390A2B3fe7c13D2F7C235/info.json b/blockchains/ethereum/assets/0x1A4743Cf1af4C289351390A2B3fe7c13D2F7C235/info.json new file mode 100644 index 00000000..65402286 --- /dev/null +++ b/blockchains/ethereum/assets/0x1A4743Cf1af4C289351390A2B3fe7c13D2F7C235/info.json @@ -0,0 +1,11 @@ +{ + "name": "CASTWEET", + "symbol": "CTT", + "type": "ERC20", + "decimals": 18, + "description": "Castweet is a live-streaming platform with blockchain incentives that rewards everyone. Both Viewers and Content creators can be rewarded for their participation on the platform.", + "website": "https://www.castweet.com/", + "explorer": "https://etherscan.io/token/0x1A4743Cf1af4C289351390A2B3fe7c13D2F7C235", + "status": "active", + "id": "0x1A4743Cf1af4C289351390A2B3fe7c13D2F7C235" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1A4743Cf1af4C289351390A2B3fe7c13D2F7C235/logo.png b/blockchains/ethereum/assets/0x1A4743Cf1af4C289351390A2B3fe7c13D2F7C235/logo.png new file mode 100644 index 00000000..eaac0416 Binary files /dev/null and b/blockchains/ethereum/assets/0x1A4743Cf1af4C289351390A2B3fe7c13D2F7C235/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A4E76811D9C319A953EADa36f1DeF25156C8D93/info.json b/blockchains/ethereum/assets/0x1A4E76811D9C319A953EADa36f1DeF25156C8D93/info.json new file mode 100644 index 00000000..81781793 --- /dev/null +++ b/blockchains/ethereum/assets/0x1A4E76811D9C319A953EADa36f1DeF25156C8D93/info.json @@ -0,0 +1,11 @@ +{ + "name": "DULA Coin", + "symbol": "DULA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1A4E76811D9C319A953EADa36f1DeF25156C8D93", + "status": "abandoned", + "id": "0x1A4E76811D9C319A953EADa36f1DeF25156C8D93" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1A4E76811D9C319A953EADa36f1DeF25156C8D93/logo.png b/blockchains/ethereum/assets/0x1A4E76811D9C319A953EADa36f1DeF25156C8D93/logo.png new file mode 100644 index 00000000..f7ad55e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x1A4E76811D9C319A953EADa36f1DeF25156C8D93/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/info.json b/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/info.json new file mode 100644 index 00000000..141b2402 --- /dev/null +++ b/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/info.json @@ -0,0 +1,41 @@ +{ + "name": "BitDAO", + "type": "ERC20", + "symbol": "BIT", + "decimals": 18, + "website": "https://www.bitdao.io/", + "description": "BitDAO infuses capital agnostically across industries, chains, and products. Its treasury is supported by contributions from Bybit and the virtuous cycle of value created by its AEs and partner labs. When you hold $BIT, you’re not only getting a stake in the massive growth potential of BitDAO, but the AEs it’s helping accelerate. Your $BIT gives you voting power to help direct how treasury funds are allocated and the terms of the funding.", + "explorer": "https://etherscan.io/token/0x1a4b46696b2bb4794eb3d4c26f1c55f9170fa4c5", + "status": "active", + "id": "0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/bitdao" + }, + { + "name": "x", + "url": "https://x.com/bitdao_official" + }, + { + "name": "telegram", + "url": "https://t.me/bitdao_official" + }, + { + "name": "blog", + "url": "https://medium.com/bitdao" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitdao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bitdao" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/logo.png b/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/logo.png new file mode 100644 index 00000000..22f4feb0 Binary files /dev/null and b/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A5F9352Af8aF974bFC03399e3767DF6370d82e4/info.json b/blockchains/ethereum/assets/0x1A5F9352Af8aF974bFC03399e3767DF6370d82e4/info.json new file mode 100644 index 00000000..4ddf39a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x1A5F9352Af8aF974bFC03399e3767DF6370d82e4/info.json @@ -0,0 +1,11 @@ +{ + "name": "OWL Token", + "symbol": "OWL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://owl.gnosis.io/", + "explorer": "https://etherscan.io/token/0x1A5F9352Af8aF974bFC03399e3767DF6370d82e4", + "status": "abandoned", + "id": "0x1A5F9352Af8aF974bFC03399e3767DF6370d82e4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1A5F9352Af8aF974bFC03399e3767DF6370d82e4/logo.png b/blockchains/ethereum/assets/0x1A5F9352Af8aF974bFC03399e3767DF6370d82e4/logo.png new file mode 100644 index 00000000..4bda839d Binary files /dev/null and b/blockchains/ethereum/assets/0x1A5F9352Af8aF974bFC03399e3767DF6370d82e4/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A66E09F7DccC10eAe46e27cfA6B8d44a50dF1E7/info.json b/blockchains/ethereum/assets/0x1A66E09F7DccC10eAe46e27cfA6B8d44a50dF1E7/info.json new file mode 100644 index 00000000..0f90ab16 --- /dev/null +++ b/blockchains/ethereum/assets/0x1A66E09F7DccC10eAe46e27cfA6B8d44a50dF1E7/info.json @@ -0,0 +1,11 @@ +{ + "name": "PRASM", + "symbol": "PSM", + "type": "ERC20", + "decimals": 18, + "description": "AI-Based Decentralized Bioinformatic Network.", + "website": "http://prasm.io/", + "explorer": "https://etherscan.io/token/0x1A66E09F7DccC10eAe46e27cfA6B8d44a50dF1E7", + "status": "abandoned", + "id": "0x1A66E09F7DccC10eAe46e27cfA6B8d44a50dF1E7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1A66E09F7DccC10eAe46e27cfA6B8d44a50dF1E7/logo.png b/blockchains/ethereum/assets/0x1A66E09F7DccC10eAe46e27cfA6B8d44a50dF1E7/logo.png new file mode 100644 index 00000000..c397b509 Binary files /dev/null and b/blockchains/ethereum/assets/0x1A66E09F7DccC10eAe46e27cfA6B8d44a50dF1E7/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/info.json b/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/info.json new file mode 100644 index 00000000..fc44781f --- /dev/null +++ b/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mememe", + "type": "ERC20", + "symbol": "MEMEME", + "decimals": 18, + "website": "https://mememelabs.me", + "description": "we are a lab that designs and conducts social and entertaining experiments that simulate community experiences like no other. our experiments are designed to be immersive and fun for all who participate.", + "explorer": "https://etherscan.io/token/0x1a963df363d01eebb2816b366d61c917f20e1ebe", + "status": "active", + "id": "0x1A963Df363D01EEBB2816b366d61C917F20e1EbE", + "links": [ + { + "name": "x", + "url": "https://x.com/mememe69696969" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mememe/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/logo.png b/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/logo.png new file mode 100644 index 00000000..6c98eb67 Binary files /dev/null and b/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A9751a87dE19385b5A6097E477e158D2ce420C8/info.json b/blockchains/ethereum/assets/0x1A9751a87dE19385b5A6097E477e158D2ce420C8/info.json new file mode 100644 index 00000000..01743d4a --- /dev/null +++ b/blockchains/ethereum/assets/0x1A9751a87dE19385b5A6097E477e158D2ce420C8/info.json @@ -0,0 +1,11 @@ +{ + "name": "KRISTORIUM", + "symbol": "KRIS", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1A9751a87dE19385b5A6097E477e158D2ce420C8", + "status": "abandoned", + "id": "0x1A9751a87dE19385b5A6097E477e158D2ce420C8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1A9751a87dE19385b5A6097E477e158D2ce420C8/logo.png b/blockchains/ethereum/assets/0x1A9751a87dE19385b5A6097E477e158D2ce420C8/logo.png new file mode 100644 index 00000000..26a23002 Binary files /dev/null and b/blockchains/ethereum/assets/0x1A9751a87dE19385b5A6097E477e158D2ce420C8/logo.png differ diff --git a/blockchains/ethereum/assets/0x1AAC60e9acAfaED0cF84AdD412aB8071ef64196E/info.json b/blockchains/ethereum/assets/0x1AAC60e9acAfaED0cF84AdD412aB8071ef64196E/info.json new file mode 100644 index 00000000..da93b4c8 --- /dev/null +++ b/blockchains/ethereum/assets/0x1AAC60e9acAfaED0cF84AdD412aB8071ef64196E/info.json @@ -0,0 +1,11 @@ +{ + "name": "SphinxToken", + "symbol": "SPX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1AAC60e9acAfaED0cF84AdD412aB8071ef64196E", + "status": "abandoned", + "id": "0x1AAC60e9acAfaED0cF84AdD412aB8071ef64196E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1AAC60e9acAfaED0cF84AdD412aB8071ef64196E/logo.png b/blockchains/ethereum/assets/0x1AAC60e9acAfaED0cF84AdD412aB8071ef64196E/logo.png new file mode 100644 index 00000000..b86108d9 Binary files /dev/null and b/blockchains/ethereum/assets/0x1AAC60e9acAfaED0cF84AdD412aB8071ef64196E/logo.png differ diff --git a/blockchains/ethereum/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json b/blockchains/ethereum/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json new file mode 100644 index 00000000..6e8d0817 --- /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 00000000..1407faec 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 00000000..5804df07 --- /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 00000000..c35598c6 Binary files /dev/null and b/blockchains/ethereum/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/logo.png differ diff --git a/blockchains/ethereum/assets/0x1Af8F3265d8274bDe624edd9eC97F852Fa4A5856/info.json b/blockchains/ethereum/assets/0x1Af8F3265d8274bDe624edd9eC97F852Fa4A5856/info.json new file mode 100644 index 00000000..d45fc2d1 --- /dev/null +++ b/blockchains/ethereum/assets/0x1Af8F3265d8274bDe624edd9eC97F852Fa4A5856/info.json @@ -0,0 +1,11 @@ +{ + "name": "MORE Token", + "symbol": "MORE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1Af8F3265d8274bDe624edd9eC97F852Fa4A5856", + "status": "abandoned", + "id": "0x1Af8F3265d8274bDe624edd9eC97F852Fa4A5856" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1Af8F3265d8274bDe624edd9eC97F852Fa4A5856/logo.png b/blockchains/ethereum/assets/0x1Af8F3265d8274bDe624edd9eC97F852Fa4A5856/logo.png new file mode 100644 index 00000000..f10cb242 Binary files /dev/null and b/blockchains/ethereum/assets/0x1Af8F3265d8274bDe624edd9eC97F852Fa4A5856/logo.png differ diff --git a/blockchains/ethereum/assets/0x1Afe191601c0c7095C995bd6875F94a89FA5d71b/info.json b/blockchains/ethereum/assets/0x1Afe191601c0c7095C995bd6875F94a89FA5d71b/info.json new file mode 100644 index 00000000..b1dc6640 --- /dev/null +++ b/blockchains/ethereum/assets/0x1Afe191601c0c7095C995bd6875F94a89FA5d71b/info.json @@ -0,0 +1,11 @@ +{ + "name": "THANOS", + "symbol": "SNAP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1Afe191601c0c7095C995bd6875F94a89FA5d71b", + "status": "abandoned", + "id": "0x1Afe191601c0c7095C995bd6875F94a89FA5d71b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1Afe191601c0c7095C995bd6875F94a89FA5d71b/logo.png b/blockchains/ethereum/assets/0x1Afe191601c0c7095C995bd6875F94a89FA5d71b/logo.png new file mode 100644 index 00000000..430daf10 Binary files /dev/null and b/blockchains/ethereum/assets/0x1Afe191601c0c7095C995bd6875F94a89FA5d71b/logo.png differ diff --git a/blockchains/ethereum/assets/0x1B073382E63411E3BcfFE90aC1B9A43feFa1Ec6F/info.json b/blockchains/ethereum/assets/0x1B073382E63411E3BcfFE90aC1B9A43feFa1Ec6F/info.json new file mode 100644 index 00000000..3006b5b8 --- /dev/null +++ b/blockchains/ethereum/assets/0x1B073382E63411E3BcfFE90aC1B9A43feFa1Ec6F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitpanda Ecosystem Token", + "symbol": "BEST", + "type": "ERC20", + "decimals": 8, + "description": "BEST offers you a wide range of rewards, perks and benefits, applicable to the whole growing Bitpanda ecosystem.", + "website": "https://www.bitpanda.com/best", + "explorer": "https://etherscan.io/token/0x1B073382E63411E3BcfFE90aC1B9A43feFa1Ec6F", + "status": "active", + "id": "0x1B073382E63411E3BcfFE90aC1B9A43feFa1Ec6F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1B073382E63411E3BcfFE90aC1B9A43feFa1Ec6F/logo.png b/blockchains/ethereum/assets/0x1B073382E63411E3BcfFE90aC1B9A43feFa1Ec6F/logo.png new file mode 100644 index 00000000..ef85a0fa Binary files /dev/null and b/blockchains/ethereum/assets/0x1B073382E63411E3BcfFE90aC1B9A43feFa1Ec6F/logo.png differ diff --git a/blockchains/ethereum/assets/0x1B35806945Ac1F02Fe4fe68EBa0d55b8104aa603/info.json b/blockchains/ethereum/assets/0x1B35806945Ac1F02Fe4fe68EBa0d55b8104aa603/info.json new file mode 100644 index 00000000..6b543335 --- /dev/null +++ b/blockchains/ethereum/assets/0x1B35806945Ac1F02Fe4fe68EBa0d55b8104aa603/info.json @@ -0,0 +1,11 @@ +{ + "name": "Facebucks", + "symbol": "FB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1B35806945Ac1F02Fe4fe68EBa0d55b8104aa603", + "status": "abandoned", + "id": "0x1B35806945Ac1F02Fe4fe68EBa0d55b8104aa603" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1B35806945Ac1F02Fe4fe68EBa0d55b8104aa603/logo.png b/blockchains/ethereum/assets/0x1B35806945Ac1F02Fe4fe68EBa0d55b8104aa603/logo.png new file mode 100644 index 00000000..e4748884 Binary files /dev/null and b/blockchains/ethereum/assets/0x1B35806945Ac1F02Fe4fe68EBa0d55b8104aa603/logo.png differ diff --git a/blockchains/ethereum/assets/0x1B4052d98fb1888C2Bf3B8d3b930e0aFf8A910dF/info.json b/blockchains/ethereum/assets/0x1B4052d98fb1888C2Bf3B8d3b930e0aFf8A910dF/info.json new file mode 100644 index 00000000..5569afe3 --- /dev/null +++ b/blockchains/ethereum/assets/0x1B4052d98fb1888C2Bf3B8d3b930e0aFf8A910dF/info.json @@ -0,0 +1,18 @@ +{ + "name": "Community Token", + "website": "https://communitytoken.io/", + "description": "Community Token (COM) is an ERC-20 token that empowers the crypto community with collective due diligence on emerging investment opportunities.", + "explorer": "https://etherscan.io/token/0x1B4052d98fb1888C2Bf3B8d3b930e0aFf8A910dF", + "research": "https://medium.com/@communitytoken", + "type": "ERC20", + "symbol": "COM", + "decimals": 18, + "status": "active", + "id": "0x1B4052d98fb1888C2Bf3B8d3b930e0aFf8A910dF", + "links": [ + { + "name": "github", + "url": "https://github.com/ComToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1B4052d98fb1888C2Bf3B8d3b930e0aFf8A910dF/logo.png b/blockchains/ethereum/assets/0x1B4052d98fb1888C2Bf3B8d3b930e0aFf8A910dF/logo.png new file mode 100644 index 00000000..92cca4ee Binary files /dev/null and b/blockchains/ethereum/assets/0x1B4052d98fb1888C2Bf3B8d3b930e0aFf8A910dF/logo.png differ diff --git a/blockchains/ethereum/assets/0x1B566E2799ff246A08B66EB0f2915e7F8Cd2Ae8E/info.json b/blockchains/ethereum/assets/0x1B566E2799ff246A08B66EB0f2915e7F8Cd2Ae8E/info.json new file mode 100644 index 00000000..d85a016a --- /dev/null +++ b/blockchains/ethereum/assets/0x1B566E2799ff246A08B66EB0f2915e7F8Cd2Ae8E/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-7/30M7", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1B566E2799ff246A08B66EB0f2915e7F8Cd2Ae8E", + "status": "abandoned", + "id": "0x1B566E2799ff246A08B66EB0f2915e7F8Cd2Ae8E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1B566E2799ff246A08B66EB0f2915e7F8Cd2Ae8E/logo.png b/blockchains/ethereum/assets/0x1B566E2799ff246A08B66EB0f2915e7F8Cd2Ae8E/logo.png new file mode 100644 index 00000000..6c962d2f Binary files /dev/null and b/blockchains/ethereum/assets/0x1B566E2799ff246A08B66EB0f2915e7F8Cd2Ae8E/logo.png differ diff --git a/blockchains/ethereum/assets/0x1B5f21ee98eed48d292e8e2d3Ed82b40a9728A22/info.json b/blockchains/ethereum/assets/0x1B5f21ee98eed48d292e8e2d3Ed82b40a9728A22/info.json new file mode 100644 index 00000000..99aed3a5 --- /dev/null +++ b/blockchains/ethereum/assets/0x1B5f21ee98eed48d292e8e2d3Ed82b40a9728A22/info.json @@ -0,0 +1,11 @@ +{ + "name": "DataBroker DAO Token", + "symbol": "DATA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1B5f21ee98eed48d292e8e2d3Ed82b40a9728A22", + "status": "abandoned", + "id": "0x1B5f21ee98eed48d292e8e2d3Ed82b40a9728A22" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1B5f21ee98eed48d292e8e2d3Ed82b40a9728A22/logo.png b/blockchains/ethereum/assets/0x1B5f21ee98eed48d292e8e2d3Ed82b40a9728A22/logo.png new file mode 100644 index 00000000..55b6527d Binary files /dev/null and b/blockchains/ethereum/assets/0x1B5f21ee98eed48d292e8e2d3Ed82b40a9728A22/logo.png differ diff --git a/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/info.json b/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/info.json new file mode 100644 index 00000000..a4dc2dc6 --- /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 00000000..c43b8397 Binary files /dev/null and b/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/logo.png differ diff --git a/blockchains/ethereum/assets/0x1B80eeeaDcC590f305945BCc258cFa770Bbe1890/info.json b/blockchains/ethereum/assets/0x1B80eeeaDcC590f305945BCc258cFa770Bbe1890/info.json new file mode 100644 index 00000000..a150cf88 --- /dev/null +++ b/blockchains/ethereum/assets/0x1B80eeeaDcC590f305945BCc258cFa770Bbe1890/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITSDAQ TOKEN", + "symbol": "BQQQ", + "type": "ERC20", + "decimals": 18, + "description": "Bitsdaq aims to be the pioneer that’s leading the blockchain industry to the next generation with their well-rounded crypto service platform by combining its unique partnerships and cutting-edge technologies.", + "website": "https://bitsdaq.com", + "explorer": "https://etherscan.io/token/0x1B80eeeaDcC590f305945BCc258cFa770Bbe1890", + "status": "active", + "id": "0x1B80eeeaDcC590f305945BCc258cFa770Bbe1890" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1B80eeeaDcC590f305945BCc258cFa770Bbe1890/logo.png b/blockchains/ethereum/assets/0x1B80eeeaDcC590f305945BCc258cFa770Bbe1890/logo.png new file mode 100644 index 00000000..b718fd4a Binary files /dev/null and b/blockchains/ethereum/assets/0x1B80eeeaDcC590f305945BCc258cFa770Bbe1890/logo.png differ diff --git a/blockchains/ethereum/assets/0x1B8E12F839BD4e73A47adDF76cF7F0097d74c14C/info.json b/blockchains/ethereum/assets/0x1B8E12F839BD4e73A47adDF76cF7F0097d74c14C/info.json new file mode 100644 index 00000000..3961fe8b --- /dev/null +++ b/blockchains/ethereum/assets/0x1B8E12F839BD4e73A47adDF76cF7F0097d74c14C/info.json @@ -0,0 +1,33 @@ +{ + "name": "Value USD", + "website": "https://valuedefi.io/", + "description": "Value DeFi: Bringing True Value to DeFi.", + "explorer": "https://etherscan.io/token/0x1B8E12F839BD4e73A47adDF76cF7F0097d74c14C", + "type": "ERC20", + "symbol": "vUSD", + "decimals": 9, + "status": "active", + "id": "0x1B8E12F839BD4e73A47adDF76cF7F0097d74c14C", + "links": [ + { + "name": "github", + "url": "https://github.com/valuedefi" + }, + { + "name": "x", + "url": "https://x.com/value_defi" + }, + { + "name": "telegram", + "url": "https://t.me/ValueDeFi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Dpvd7tp" + }, + { + "name": "medium", + "url": "https://medium.com/@valuedefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1B8E12F839BD4e73A47adDF76cF7F0097d74c14C/logo.png b/blockchains/ethereum/assets/0x1B8E12F839BD4e73A47adDF76cF7F0097d74c14C/logo.png new file mode 100644 index 00000000..b383e2f4 Binary files /dev/null and b/blockchains/ethereum/assets/0x1B8E12F839BD4e73A47adDF76cF7F0097d74c14C/logo.png differ diff --git a/blockchains/ethereum/assets/0x1B957Dc4aEfeed3b4A2351a6A6d5cbfbbA0CeCFa/info.json b/blockchains/ethereum/assets/0x1B957Dc4aEfeed3b4A2351a6A6d5cbfbbA0CeCFa/info.json new file mode 100644 index 00000000..f2cd623c --- /dev/null +++ b/blockchains/ethereum/assets/0x1B957Dc4aEfeed3b4A2351a6A6d5cbfbbA0CeCFa/info.json @@ -0,0 +1,11 @@ +{ + "name": "HOQU Token", + "symbol": "HQX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.hoqu.io", + "explorer": "https://etherscan.io/token/0x1B957Dc4aEfeed3b4A2351a6A6d5cbfbbA0CeCFa", + "status": "active", + "id": "0x1B957Dc4aEfeed3b4A2351a6A6d5cbfbbA0CeCFa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1B957Dc4aEfeed3b4A2351a6A6d5cbfbbA0CeCFa/logo.png b/blockchains/ethereum/assets/0x1B957Dc4aEfeed3b4A2351a6A6d5cbfbbA0CeCFa/logo.png new file mode 100644 index 00000000..eb5559a6 Binary files /dev/null and b/blockchains/ethereum/assets/0x1B957Dc4aEfeed3b4A2351a6A6d5cbfbbA0CeCFa/logo.png differ diff --git a/blockchains/ethereum/assets/0x1B9743f556D65e757c4c650B4555bAF354cB8bd3/info.json b/blockchains/ethereum/assets/0x1B9743f556D65e757c4c650B4555bAF354cB8bd3/info.json new file mode 100644 index 00000000..e9dc4f7b --- /dev/null +++ b/blockchains/ethereum/assets/0x1B9743f556D65e757c4c650B4555bAF354cB8bd3/info.json @@ -0,0 +1,11 @@ +{ + "name": "EthBits ETBS Token", + "symbol": "ETBS", + "type": "ERC20", + "decimals": 12, + "description": "-", + "website": "https://www.ethbits.com/", + "explorer": "https://etherscan.io/token/0x1B9743f556D65e757c4c650B4555bAF354cB8bd3", + "status": "abandoned", + "id": "0x1B9743f556D65e757c4c650B4555bAF354cB8bd3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1B9743f556D65e757c4c650B4555bAF354cB8bd3/logo.png b/blockchains/ethereum/assets/0x1B9743f556D65e757c4c650B4555bAF354cB8bd3/logo.png new file mode 100644 index 00000000..7500be3e Binary files /dev/null and b/blockchains/ethereum/assets/0x1B9743f556D65e757c4c650B4555bAF354cB8bd3/logo.png differ diff --git a/blockchains/ethereum/assets/0x1B9BAF2A3EdeA91eE431f02d449a1044d5726669/info.json b/blockchains/ethereum/assets/0x1B9BAF2A3EdeA91eE431f02d449a1044d5726669/info.json new file mode 100644 index 00000000..cee2170d --- /dev/null +++ b/blockchains/ethereum/assets/0x1B9BAF2A3EdeA91eE431f02d449a1044d5726669/info.json @@ -0,0 +1,32 @@ +{ + "name": "Clifford Inu", + "type": "ERC20", + "symbol": "CLIFF", + "decimals": 18, + "website": "http://cliffordinu.io", + "description": " $CLIFF is a highly deflationary token on the Ethereum Blockchain that never stops growing through TRUE deflationary techniques, Cliff's long Term vision is to dominate the metaverse ecosystem (Cliffverse).", + "explorer": "https://etherscan.io/token/0x1B9BAF2A3EdeA91eE431f02d449a1044d5726669", + "status": "active", + "id": "0x1B9BAF2A3EdeA91eE431f02d449a1044d5726669", + "links": [ + { + "name": "x", + "url": "https://x.com/clifftoken" + }, + { + "name": "telegram", + "url": "https://t.me/Cliffordinuofficial" + }, + { + "name": "medium", + "url": "https://medium.com/@cliffordinuofficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/cliffordinu_io/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1B9BAF2A3EdeA91eE431f02d449a1044d5726669/logo.png b/blockchains/ethereum/assets/0x1B9BAF2A3EdeA91eE431f02d449a1044d5726669/logo.png new file mode 100644 index 00000000..dd769c0f Binary files /dev/null and b/blockchains/ethereum/assets/0x1B9BAF2A3EdeA91eE431f02d449a1044d5726669/logo.png differ diff --git a/blockchains/ethereum/assets/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb/info.json b/blockchains/ethereum/assets/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb/info.json new file mode 100644 index 00000000..31fa0672 --- /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 00000000..433d659d Binary files /dev/null and b/blockchains/ethereum/assets/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb/logo.png differ diff --git a/blockchains/ethereum/assets/0x1BC7C1dE0AC6eF4fDeC35c053030D90cf54c7e9A/info.json b/blockchains/ethereum/assets/0x1BC7C1dE0AC6eF4fDeC35c053030D90cf54c7e9A/info.json new file mode 100644 index 00000000..cc4b6b46 --- /dev/null +++ b/blockchains/ethereum/assets/0x1BC7C1dE0AC6eF4fDeC35c053030D90cf54c7e9A/info.json @@ -0,0 +1,11 @@ +{ + "name": "YANG", + "symbol": "YNN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://yangglobal.com/", + "explorer": "https://etherscan.io/token/0x1BC7C1dE0AC6eF4fDeC35c053030D90cf54c7e9A", + "status": "abandoned", + "id": "0x1BC7C1dE0AC6eF4fDeC35c053030D90cf54c7e9A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1BC7C1dE0AC6eF4fDeC35c053030D90cf54c7e9A/logo.png b/blockchains/ethereum/assets/0x1BC7C1dE0AC6eF4fDeC35c053030D90cf54c7e9A/logo.png new file mode 100644 index 00000000..9533bdd3 Binary files /dev/null and b/blockchains/ethereum/assets/0x1BC7C1dE0AC6eF4fDeC35c053030D90cf54c7e9A/logo.png differ diff --git a/blockchains/ethereum/assets/0x1BCfD19F541eB62c8CFeBE53fe72bf2aFc35A255/info.json b/blockchains/ethereum/assets/0x1BCfD19F541eB62c8CFeBE53fe72bf2aFc35A255/info.json new file mode 100644 index 00000000..43b5d8fb --- /dev/null +++ b/blockchains/ethereum/assets/0x1BCfD19F541eB62c8CFeBE53fe72bf2aFc35A255/info.json @@ -0,0 +1,11 @@ +{ + "name": "MIKETANGOBRAVO18", + "symbol": "MTB18", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1BCfD19F541eB62c8CFeBE53fe72bf2aFc35A255", + "status": "abandoned", + "id": "0x1BCfD19F541eB62c8CFeBE53fe72bf2aFc35A255" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1BCfD19F541eB62c8CFeBE53fe72bf2aFc35A255/logo.png b/blockchains/ethereum/assets/0x1BCfD19F541eB62c8CFeBE53fe72bf2aFc35A255/logo.png new file mode 100644 index 00000000..26ac2951 Binary files /dev/null and b/blockchains/ethereum/assets/0x1BCfD19F541eB62c8CFeBE53fe72bf2aFc35A255/logo.png differ diff --git a/blockchains/ethereum/assets/0x1BE9F6861D11f2fd363a75225040eDE6374b65bF/info.json b/blockchains/ethereum/assets/0x1BE9F6861D11f2fd363a75225040eDE6374b65bF/info.json new file mode 100644 index 00000000..516280e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x1BE9F6861D11f2fd363a75225040eDE6374b65bF/info.json @@ -0,0 +1,11 @@ +{ + "name": "TokenTrezor.com", + "symbol": "TOTR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1BE9F6861D11f2fd363a75225040eDE6374b65bF", + "status": "abandoned", + "id": "0x1BE9F6861D11f2fd363a75225040eDE6374b65bF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1BE9F6861D11f2fd363a75225040eDE6374b65bF/logo.png b/blockchains/ethereum/assets/0x1BE9F6861D11f2fd363a75225040eDE6374b65bF/logo.png new file mode 100644 index 00000000..da9a3ead Binary files /dev/null and b/blockchains/ethereum/assets/0x1BE9F6861D11f2fd363a75225040eDE6374b65bF/logo.png differ diff --git a/blockchains/ethereum/assets/0x1BED97CBC3c24A4fb5C069C6E311a967386131f7/info.json b/blockchains/ethereum/assets/0x1BED97CBC3c24A4fb5C069C6E311a967386131f7/info.json new file mode 100644 index 00000000..58712d85 --- /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 00000000..1c94a9e2 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 00000000..b4b6f48b --- /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 00000000..cee3db74 Binary files /dev/null and b/blockchains/ethereum/assets/0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed/logo.png differ diff --git a/blockchains/ethereum/assets/0x1BeEF31946fbbb40B877a72E4ae04a8D1A5Cee06/info.json b/blockchains/ethereum/assets/0x1BeEF31946fbbb40B877a72E4ae04a8D1A5Cee06/info.json new file mode 100644 index 00000000..38ab51ae --- /dev/null +++ b/blockchains/ethereum/assets/0x1BeEF31946fbbb40B877a72E4ae04a8D1A5Cee06/info.json @@ -0,0 +1,11 @@ +{ + "name": "Parachute", + "symbol": "PAR", + "type": "ERC20", + "decimals": 18, + "description": "Parachute aims to make it easy for people and businesses to use cryptocurrencies in their daily lives.", + "website": "https://www.parachutetoken.com/", + "explorer": "https://etherscan.io/token/0x1BeEF31946fbbb40B877a72E4ae04a8D1A5Cee06", + "status": "active", + "id": "0x1BeEF31946fbbb40B877a72E4ae04a8D1A5Cee06" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1BeEF31946fbbb40B877a72E4ae04a8D1A5Cee06/logo.png b/blockchains/ethereum/assets/0x1BeEF31946fbbb40B877a72E4ae04a8D1A5Cee06/logo.png new file mode 100755 index 00000000..0cd972a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x1BeEF31946fbbb40B877a72E4ae04a8D1A5Cee06/logo.png differ diff --git a/blockchains/ethereum/assets/0x1Bec42771E74088bA106CF9Dcb864f0fA24A1e57/info.json b/blockchains/ethereum/assets/0x1Bec42771E74088bA106CF9Dcb864f0fA24A1e57/info.json new file mode 100644 index 00000000..2550a803 --- /dev/null +++ b/blockchains/ethereum/assets/0x1Bec42771E74088bA106CF9Dcb864f0fA24A1e57/info.json @@ -0,0 +1,11 @@ +{ + "name": "LHC", + "symbol": "LHC", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1Bec42771E74088bA106CF9Dcb864f0fA24A1e57", + "status": "abandoned", + "id": "0x1Bec42771E74088bA106CF9Dcb864f0fA24A1e57" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1Bec42771E74088bA106CF9Dcb864f0fA24A1e57/logo.png b/blockchains/ethereum/assets/0x1Bec42771E74088bA106CF9Dcb864f0fA24A1e57/logo.png new file mode 100644 index 00000000..811e034d Binary files /dev/null and b/blockchains/ethereum/assets/0x1Bec42771E74088bA106CF9Dcb864f0fA24A1e57/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C09EF4493465569f6d704A5CC4f9864BCD2E56a/info.json b/blockchains/ethereum/assets/0x1C09EF4493465569f6d704A5CC4f9864BCD2E56a/info.json new file mode 100644 index 00000000..dbd51f3a --- /dev/null +++ b/blockchains/ethereum/assets/0x1C09EF4493465569f6d704A5CC4f9864BCD2E56a/info.json @@ -0,0 +1,11 @@ +{ + "name": "ORIGINATE Coin", + "symbol": "ORC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1C09EF4493465569f6d704A5CC4f9864BCD2E56a", + "status": "abandoned", + "id": "0x1C09EF4493465569f6d704A5CC4f9864BCD2E56a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1C09EF4493465569f6d704A5CC4f9864BCD2E56a/logo.png b/blockchains/ethereum/assets/0x1C09EF4493465569f6d704A5CC4f9864BCD2E56a/logo.png new file mode 100644 index 00000000..002de335 Binary files /dev/null and b/blockchains/ethereum/assets/0x1C09EF4493465569f6d704A5CC4f9864BCD2E56a/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C174711f3FD63C4165d6F296b3eB19D17fde94a/info.json b/blockchains/ethereum/assets/0x1C174711f3FD63C4165d6F296b3eB19D17fde94a/info.json new file mode 100644 index 00000000..14541ffc --- /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 00000000..2a02e71a Binary files /dev/null and b/blockchains/ethereum/assets/0x1C174711f3FD63C4165d6F296b3eB19D17fde94a/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C1C14A6B5074905Ce5d367B0A7E098b58EbFD47/info.json b/blockchains/ethereum/assets/0x1C1C14A6B5074905Ce5d367B0A7E098b58EbFD47/info.json new file mode 100644 index 00000000..ef9a23bc --- /dev/null +++ b/blockchains/ethereum/assets/0x1C1C14A6B5074905Ce5d367B0A7E098b58EbFD47/info.json @@ -0,0 +1,11 @@ +{ + "name": "FidexToken", + "symbol": "FEX", + "type": "ERC20", + "decimals": 8, + "description": "FIDEX Decentralized Exchange.", + "website": "https://fidex.market/", + "explorer": "https://etherscan.io/token/0x1C1C14A6B5074905Ce5d367B0A7E098b58EbFD47", + "status": "active", + "id": "0x1C1C14A6B5074905Ce5d367B0A7E098b58EbFD47" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1C1C14A6B5074905Ce5d367B0A7E098b58EbFD47/logo.png b/blockchains/ethereum/assets/0x1C1C14A6B5074905Ce5d367B0A7E098b58EbFD47/logo.png new file mode 100644 index 00000000..e4bf4b8a Binary files /dev/null and b/blockchains/ethereum/assets/0x1C1C14A6B5074905Ce5d367B0A7E098b58EbFD47/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C3BB10dE15C31D5DBE48fbB7B87735d1B7d8c32/info.json b/blockchains/ethereum/assets/0x1C3BB10dE15C31D5DBE48fbB7B87735d1B7d8c32/info.json new file mode 100644 index 00000000..1d93baae --- /dev/null +++ b/blockchains/ethereum/assets/0x1C3BB10dE15C31D5DBE48fbB7B87735d1B7d8c32/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLONDCOIN", + "symbol": "BLO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1C3BB10dE15C31D5DBE48fbB7B87735d1B7d8c32", + "status": "abandoned", + "id": "0x1C3BB10dE15C31D5DBE48fbB7B87735d1B7d8c32" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1C3BB10dE15C31D5DBE48fbB7B87735d1B7d8c32/logo.png b/blockchains/ethereum/assets/0x1C3BB10dE15C31D5DBE48fbB7B87735d1B7d8c32/logo.png new file mode 100755 index 00000000..f996c459 Binary files /dev/null and b/blockchains/ethereum/assets/0x1C3BB10dE15C31D5DBE48fbB7B87735d1B7d8c32/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C5857e110CD8411054660F60B5De6a6958CfAE2/info.json b/blockchains/ethereum/assets/0x1C5857e110CD8411054660F60B5De6a6958CfAE2/info.json new file mode 100644 index 00000000..fc9a0b2a --- /dev/null +++ b/blockchains/ethereum/assets/0x1C5857e110CD8411054660F60B5De6a6958CfAE2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Reserve", + "symbol": "RSV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1C5857e110CD8411054660F60B5De6a6958CfAE2", + "status": "abandoned", + "id": "0x1C5857e110CD8411054660F60B5De6a6958CfAE2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1C5857e110CD8411054660F60B5De6a6958CfAE2/logo.png b/blockchains/ethereum/assets/0x1C5857e110CD8411054660F60B5De6a6958CfAE2/logo.png new file mode 100644 index 00000000..3b2e499e Binary files /dev/null and b/blockchains/ethereum/assets/0x1C5857e110CD8411054660F60B5De6a6958CfAE2/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C5aD87ae000D3680FF500354c5252465910971d/info.json b/blockchains/ethereum/assets/0x1C5aD87ae000D3680FF500354c5252465910971d/info.json new file mode 100644 index 00000000..8e69fd38 --- /dev/null +++ b/blockchains/ethereum/assets/0x1C5aD87ae000D3680FF500354c5252465910971d/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C507261", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1C5aD87ae000D3680FF500354c5252465910971d", + "status": "abandoned", + "id": "0x1C5aD87ae000D3680FF500354c5252465910971d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1C5aD87ae000D3680FF500354c5252465910971d/logo.png b/blockchains/ethereum/assets/0x1C5aD87ae000D3680FF500354c5252465910971d/logo.png new file mode 100644 index 00000000..bdbcac8e Binary files /dev/null and b/blockchains/ethereum/assets/0x1C5aD87ae000D3680FF500354c5252465910971d/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C5b760F133220855340003B43cC9113EC494823/info.json b/blockchains/ethereum/assets/0x1C5b760F133220855340003B43cC9113EC494823/info.json new file mode 100644 index 00000000..d989032c --- /dev/null +++ b/blockchains/ethereum/assets/0x1C5b760F133220855340003B43cC9113EC494823/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cointorox", + "symbol": "OROX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://cointorox.com/", + "explorer": "https://etherscan.io/token/0x1C5b760F133220855340003B43cC9113EC494823", + "status": "abandoned", + "id": "0x1C5b760F133220855340003B43cC9113EC494823" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1C5b760F133220855340003B43cC9113EC494823/logo.png b/blockchains/ethereum/assets/0x1C5b760F133220855340003B43cC9113EC494823/logo.png new file mode 100644 index 00000000..c0dcb6d9 Binary files /dev/null and b/blockchains/ethereum/assets/0x1C5b760F133220855340003B43cC9113EC494823/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C5db575E2Ff833E46a2E9864C22F4B22E0B37C2/info.json b/blockchains/ethereum/assets/0x1C5db575E2Ff833E46a2E9864C22F4B22E0B37C2/info.json new file mode 100644 index 00000000..85df0747 --- /dev/null +++ b/blockchains/ethereum/assets/0x1C5db575E2Ff833E46a2E9864C22F4B22E0B37C2/info.json @@ -0,0 +1,11 @@ +{ + "name": "renZEC", + "symbol": "renZEC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://renproject.io/", + "explorer": "https://etherscan.io/token/0x1C5db575E2Ff833E46a2E9864C22F4B22E0B37C2", + "status": "abandoned", + "id": "0x1C5db575E2Ff833E46a2E9864C22F4B22E0B37C2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1C5db575E2Ff833E46a2E9864C22F4B22E0B37C2/logo.png b/blockchains/ethereum/assets/0x1C5db575E2Ff833E46a2E9864C22F4B22E0B37C2/logo.png new file mode 100644 index 00000000..5bbfb31a Binary files /dev/null and b/blockchains/ethereum/assets/0x1C5db575E2Ff833E46a2E9864C22F4B22E0B37C2/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C62aCa2b7605Db3606eAcdA7Bc67A1857DDb8FF/info.json b/blockchains/ethereum/assets/0x1C62aCa2b7605Db3606eAcdA7Bc67A1857DDb8FF/info.json new file mode 100644 index 00000000..28fb58cb --- /dev/null +++ b/blockchains/ethereum/assets/0x1C62aCa2b7605Db3606eAcdA7Bc67A1857DDb8FF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Soniq Token", + "symbol": "SONIQ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://soniqproject.com/", + "explorer": "https://etherscan.io/token/0x1C62aCa2b7605Db3606eAcdA7Bc67A1857DDb8FF", + "status": "abandoned", + "id": "0x1C62aCa2b7605Db3606eAcdA7Bc67A1857DDb8FF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1C62aCa2b7605Db3606eAcdA7Bc67A1857DDb8FF/logo.png b/blockchains/ethereum/assets/0x1C62aCa2b7605Db3606eAcdA7Bc67A1857DDb8FF/logo.png new file mode 100644 index 00000000..326b4f6b Binary files /dev/null and b/blockchains/ethereum/assets/0x1C62aCa2b7605Db3606eAcdA7Bc67A1857DDb8FF/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C6d1310A0c084021B9b94ab460f9BAD560773a4/info.json b/blockchains/ethereum/assets/0x1C6d1310A0c084021B9b94ab460f9BAD560773a4/info.json new file mode 100644 index 00000000..02e82d93 --- /dev/null +++ b/blockchains/ethereum/assets/0x1C6d1310A0c084021B9b94ab460f9BAD560773a4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Circle.Net", + "symbol": "RING", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1C6d1310A0c084021B9b94ab460f9BAD560773a4", + "status": "abandoned", + "id": "0x1C6d1310A0c084021B9b94ab460f9BAD560773a4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1C6d1310A0c084021B9b94ab460f9BAD560773a4/logo.png b/blockchains/ethereum/assets/0x1C6d1310A0c084021B9b94ab460f9BAD560773a4/logo.png new file mode 100644 index 00000000..77b18cde Binary files /dev/null and b/blockchains/ethereum/assets/0x1C6d1310A0c084021B9b94ab460f9BAD560773a4/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C700F95Df53fc31e83D89AC89e5DD778D4cD310/info.json b/blockchains/ethereum/assets/0x1C700F95Df53fc31e83D89AC89e5DD778D4cD310/info.json new file mode 100644 index 00000000..2dc2d6b0 --- /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 00000000..918d274f Binary files /dev/null and b/blockchains/ethereum/assets/0x1C700F95Df53fc31e83D89AC89e5DD778D4cD310/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F/info.json b/blockchains/ethereum/assets/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F/info.json new file mode 100644 index 00000000..c011dab7 --- /dev/null +++ b/blockchains/ethereum/assets/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Antimatter.Finance Governance Token", + "website": "https://antimatter.finance/", + "description": "AntiMatter is a lightweight on-chain DeFi perpetual derivative protocol based on a polarized token model.", + "explorer": "https://etherscan.io/token/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F", + "type": "ERC20", + "symbol": "MATTER", + "decimals": 18, + "status": "active", + "id": "0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F/logo.png b/blockchains/ethereum/assets/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F/logo.png new file mode 100644 index 00000000..097bda3f Binary files /dev/null and b/blockchains/ethereum/assets/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C95b093d6C236d3EF7c796fE33f9CC6b8606714/info.json b/blockchains/ethereum/assets/0x1C95b093d6C236d3EF7c796fE33f9CC6b8606714/info.json new file mode 100644 index 00000000..0eaae720 --- /dev/null +++ b/blockchains/ethereum/assets/0x1C95b093d6C236d3EF7c796fE33f9CC6b8606714/info.json @@ -0,0 +1,14 @@ +{ + "name": "BOMB", + "symbol": "BOMB", + "type": "ERC20", + "decimals": 0, + "description": "Bomb started as a social experiment and has grown into a community run project fueled by passionate people interested in fighting inflation and breaking the norm on tokenomics.", + "website": "https://www.bombtoken.com", + "explorer": "https://etherscan.io/token/0x1C95b093d6C236d3EF7c796fE33f9CC6b8606714", + "status": "active", + "id": "0x1C95b093d6C236d3EF7c796fE33f9CC6b8606714", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1C95b093d6C236d3EF7c796fE33f9CC6b8606714/logo.png b/blockchains/ethereum/assets/0x1C95b093d6C236d3EF7c796fE33f9CC6b8606714/logo.png new file mode 100644 index 00000000..9090d8ce Binary files /dev/null and b/blockchains/ethereum/assets/0x1C95b093d6C236d3EF7c796fE33f9CC6b8606714/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C9922314ED1415c95b9FD453c3818fd41867d0B/info.json b/blockchains/ethereum/assets/0x1C9922314ED1415c95b9FD453c3818fd41867d0B/info.json new file mode 100644 index 00000000..0b810867 --- /dev/null +++ b/blockchains/ethereum/assets/0x1C9922314ED1415c95b9FD453c3818fd41867d0B/info.json @@ -0,0 +1,32 @@ +{ + "name": "TOWER", + "website": "https://crazydefenseheroes.com/", + "description": "Utility token to the blockchain game of Crazy Kings franchise.", + "explorer": "https://etherscan.io/token/0x1C9922314ED1415c95b9FD453c3818fd41867d0B", + "type": "ERC20", + "symbol": "TOWER", + "decimals": 18, + "status": "active", + "id": "0x1C9922314ED1415c95b9FD453c3818fd41867d0B", + "tags": [ + "governance" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/TowerToken" + }, + { + "name": "discord", + "url": "https://discord.com/invite/crazydefenseheroes" + }, + { + "name": "medium", + "url": "https://medium.com/tower-token" + }, + { + "name": "whitepaper", + "url": "https://lightpaper.crazydefenseheroes.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1C9922314ED1415c95b9FD453c3818fd41867d0B/logo.png b/blockchains/ethereum/assets/0x1C9922314ED1415c95b9FD453c3818fd41867d0B/logo.png new file mode 100644 index 00000000..746ec0b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x1C9922314ED1415c95b9FD453c3818fd41867d0B/logo.png differ diff --git a/blockchains/ethereum/assets/0x1C9e21A437B9e98a6Bb66c0fF862864523513135/info.json b/blockchains/ethereum/assets/0x1C9e21A437B9e98a6Bb66c0fF862864523513135/info.json new file mode 100644 index 00000000..1b978a4c --- /dev/null +++ b/blockchains/ethereum/assets/0x1C9e21A437B9e98a6Bb66c0fF862864523513135/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Big Bang", + "symbol": "BANG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1C9e21A437B9e98a6Bb66c0fF862864523513135", + "status": "abandoned", + "id": "0x1C9e21A437B9e98a6Bb66c0fF862864523513135" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1C9e21A437B9e98a6Bb66c0fF862864523513135/logo.png b/blockchains/ethereum/assets/0x1C9e21A437B9e98a6Bb66c0fF862864523513135/logo.png new file mode 100644 index 00000000..dd6455c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x1C9e21A437B9e98a6Bb66c0fF862864523513135/logo.png differ diff --git a/blockchains/ethereum/assets/0x1CCAA0F2a7210d76E1fDec740d5F323E2E1b1672/info.json b/blockchains/ethereum/assets/0x1CCAA0F2a7210d76E1fDec740d5F323E2E1b1672/info.json new file mode 100644 index 00000000..5f07e947 --- /dev/null +++ b/blockchains/ethereum/assets/0x1CCAA0F2a7210d76E1fDec740d5F323E2E1b1672/info.json @@ -0,0 +1,11 @@ +{ + "name": "Faceter Token", + "symbol": "FACE", + "type": "ERC20", + "decimals": 18, + "description": "Faceter (FACE) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://tokensale.faceter.io/en", + "explorer": "https://etherscan.io/token/0x1CCAA0F2a7210d76E1fDec740d5F323E2E1b1672", + "status": "active", + "id": "0x1CCAA0F2a7210d76E1fDec740d5F323E2E1b1672" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1CCAA0F2a7210d76E1fDec740d5F323E2E1b1672/logo.png b/blockchains/ethereum/assets/0x1CCAA0F2a7210d76E1fDec740d5F323E2E1b1672/logo.png new file mode 100755 index 00000000..46a513a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x1CCAA0F2a7210d76E1fDec740d5F323E2E1b1672/logo.png differ diff --git a/blockchains/ethereum/assets/0x1CDD2EaB61112697626F7b4bB0e23Da4FeBF7B7C/info.json b/blockchains/ethereum/assets/0x1CDD2EaB61112697626F7b4bB0e23Da4FeBF7B7C/info.json new file mode 100644 index 00000000..03f39777 --- /dev/null +++ b/blockchains/ethereum/assets/0x1CDD2EaB61112697626F7b4bB0e23Da4FeBF7B7C/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from Solana)", + "type": "ERC20", + "symbol": "USDTso", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://etherscan.io/token/0x1CDD2EaB61112697626F7b4bB0e23Da4FeBF7B7C", + "status": "active", + "id": "0x1CDD2EaB61112697626F7b4bB0e23Da4FeBF7B7C", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1CDD2EaB61112697626F7b4bB0e23Da4FeBF7B7C/logo.png b/blockchains/ethereum/assets/0x1CDD2EaB61112697626F7b4bB0e23Da4FeBF7B7C/logo.png new file mode 100644 index 00000000..d52df831 Binary files /dev/null and b/blockchains/ethereum/assets/0x1CDD2EaB61112697626F7b4bB0e23Da4FeBF7B7C/logo.png differ diff --git a/blockchains/ethereum/assets/0x1Ca43a170BaD619322e6f54d46b57e504dB663aA/info.json b/blockchains/ethereum/assets/0x1Ca43a170BaD619322e6f54d46b57e504dB663aA/info.json new file mode 100644 index 00000000..11c8739b --- /dev/null +++ b/blockchains/ethereum/assets/0x1Ca43a170BaD619322e6f54d46b57e504dB663aA/info.json @@ -0,0 +1,11 @@ +{ + "name": "ARTWOOK Coin", + "symbol": "AKC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.artwook.com", + "explorer": "https://etherscan.io/token/0x1Ca43a170BaD619322e6f54d46b57e504dB663aA", + "status": "abandoned", + "id": "0x1Ca43a170BaD619322e6f54d46b57e504dB663aA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1Ca43a170BaD619322e6f54d46b57e504dB663aA/logo.png b/blockchains/ethereum/assets/0x1Ca43a170BaD619322e6f54d46b57e504dB663aA/logo.png new file mode 100644 index 00000000..9d89b8f9 Binary files /dev/null and b/blockchains/ethereum/assets/0x1Ca43a170BaD619322e6f54d46b57e504dB663aA/logo.png differ diff --git a/blockchains/ethereum/assets/0x1Cb3209D45B2a60B7fBCA1cCDBF87f674237A4aa/info.json b/blockchains/ethereum/assets/0x1Cb3209D45B2a60B7fBCA1cCDBF87f674237A4aa/info.json new file mode 100644 index 00000000..1cc03411 --- /dev/null +++ b/blockchains/ethereum/assets/0x1Cb3209D45B2a60B7fBCA1cCDBF87f674237A4aa/info.json @@ -0,0 +1,11 @@ +{ + "name": "ThoreCoin", + "symbol": "THR", + "type": "ERC20", + "decimals": 4, + "description": "THR represents a basket of top-traded high-demand coins Simply put, it’s a Basket of Multiple cryptocurrencies in which you can invest by buying tokens.", + "website": "http://www.thorecoin.com/", + "explorer": "https://etherscan.io/token/0x1Cb3209D45B2a60B7fBCA1cCDBF87f674237A4aa", + "status": "active", + "id": "0x1Cb3209D45B2a60B7fBCA1cCDBF87f674237A4aa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1Cb3209D45B2a60B7fBCA1cCDBF87f674237A4aa/logo.png b/blockchains/ethereum/assets/0x1Cb3209D45B2a60B7fBCA1cCDBF87f674237A4aa/logo.png new file mode 100644 index 00000000..bb8917f9 Binary files /dev/null and b/blockchains/ethereum/assets/0x1Cb3209D45B2a60B7fBCA1cCDBF87f674237A4aa/logo.png differ diff --git a/blockchains/ethereum/assets/0x1D0582FA759E4B9BEab4F6F82CC539ac62C49250/info.json b/blockchains/ethereum/assets/0x1D0582FA759E4B9BEab4F6F82CC539ac62C49250/info.json new file mode 100644 index 00000000..6518ca40 --- /dev/null +++ b/blockchains/ethereum/assets/0x1D0582FA759E4B9BEab4F6F82CC539ac62C49250/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoDigit", + "symbol": "GIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.godigit.io/", + "explorer": "https://etherscan.io/token/0x1D0582FA759E4B9BEab4F6F82CC539ac62C49250", + "status": "abandoned", + "id": "0x1D0582FA759E4B9BEab4F6F82CC539ac62C49250" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1D0582FA759E4B9BEab4F6F82CC539ac62C49250/logo.png b/blockchains/ethereum/assets/0x1D0582FA759E4B9BEab4F6F82CC539ac62C49250/logo.png new file mode 100644 index 00000000..df3f6652 Binary files /dev/null and b/blockchains/ethereum/assets/0x1D0582FA759E4B9BEab4F6F82CC539ac62C49250/logo.png differ diff --git a/blockchains/ethereum/assets/0x1D0e53A0e524E3CC92C1f0f33Ae268FfF8D7E7a5/info.json b/blockchains/ethereum/assets/0x1D0e53A0e524E3CC92C1f0f33Ae268FfF8D7E7a5/info.json new file mode 100644 index 00000000..a417808f --- /dev/null +++ b/blockchains/ethereum/assets/0x1D0e53A0e524E3CC92C1f0f33Ae268FfF8D7E7a5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave UniUSDCETH", + "website": "https://aave.com", + "description": "Aave UniUSDCETH is an interest bearing token pegged 1:1 to the underlying USDC and ETH deposited in the Uniswap Market of Aave Protocol.", + "explorer": "https://etherscan.io/token/0x1D0e53A0e524E3CC92C1f0f33Ae268FfF8D7E7a5", + "type": "ERC20", + "symbol": "aUniUSDCETH", + "decimals": 18, + "status": "active", + "id": "0x1D0e53A0e524E3CC92C1f0f33Ae268FfF8D7E7a5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1D0e53A0e524E3CC92C1f0f33Ae268FfF8D7E7a5/logo.png b/blockchains/ethereum/assets/0x1D0e53A0e524E3CC92C1f0f33Ae268FfF8D7E7a5/logo.png new file mode 100644 index 00000000..3aef247b Binary files /dev/null and b/blockchains/ethereum/assets/0x1D0e53A0e524E3CC92C1f0f33Ae268FfF8D7E7a5/logo.png differ diff --git a/blockchains/ethereum/assets/0x1D18604BBF92ba050B99cc6775F70F114F576192/info.json b/blockchains/ethereum/assets/0x1D18604BBF92ba050B99cc6775F70F114F576192/info.json new file mode 100644 index 00000000..da167667 --- /dev/null +++ b/blockchains/ethereum/assets/0x1D18604BBF92ba050B99cc6775F70F114F576192/info.json @@ -0,0 +1,11 @@ +{ + "name": "MinedBlock Utility", + "symbol": "MBTU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1D18604BBF92ba050B99cc6775F70F114F576192", + "status": "abandoned", + "id": "0x1D18604BBF92ba050B99cc6775F70F114F576192" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1D18604BBF92ba050B99cc6775F70F114F576192/logo.png b/blockchains/ethereum/assets/0x1D18604BBF92ba050B99cc6775F70F114F576192/logo.png new file mode 100644 index 00000000..1ccf604b Binary files /dev/null and b/blockchains/ethereum/assets/0x1D18604BBF92ba050B99cc6775F70F114F576192/logo.png differ diff --git a/blockchains/ethereum/assets/0x1D1D4Fb6555db709368465D507Ebf86531f15444/info.json b/blockchains/ethereum/assets/0x1D1D4Fb6555db709368465D507Ebf86531f15444/info.json new file mode 100644 index 00000000..cfc2fae5 --- /dev/null +++ b/blockchains/ethereum/assets/0x1D1D4Fb6555db709368465D507Ebf86531f15444/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Best Token", + "website": "https://thebesttoken.io", + "description": "The Best Token (a decentralized oracle) aims to address the Oracle problem on Ethereum.", + "explorer": "https://etherscan.io/token/0x1D1D4Fb6555db709368465D507Ebf86531f15444", + "type": "ERC20", + "symbol": "TBT", + "decimals": 18, + "status": "active", + "id": "0x1D1D4Fb6555db709368465D507Ebf86531f15444" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1D1D4Fb6555db709368465D507Ebf86531f15444/logo.png b/blockchains/ethereum/assets/0x1D1D4Fb6555db709368465D507Ebf86531f15444/logo.png new file mode 100644 index 00000000..3d368d74 Binary files /dev/null and b/blockchains/ethereum/assets/0x1D1D4Fb6555db709368465D507Ebf86531f15444/logo.png differ diff --git a/blockchains/ethereum/assets/0x1D4105534dA120DA243281cfC3f26Aaf038E2D6f/info.json b/blockchains/ethereum/assets/0x1D4105534dA120DA243281cfC3f26Aaf038E2D6f/info.json new file mode 100644 index 00000000..33986054 --- /dev/null +++ b/blockchains/ethereum/assets/0x1D4105534dA120DA243281cfC3f26Aaf038E2D6f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yooba token", + "symbol": "YOO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1D4105534dA120DA243281cfC3f26Aaf038E2D6f", + "status": "spam", + "id": "0x1D4105534dA120DA243281cfC3f26Aaf038E2D6f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1D4105534dA120DA243281cfC3f26Aaf038E2D6f/logo.png b/blockchains/ethereum/assets/0x1D4105534dA120DA243281cfC3f26Aaf038E2D6f/logo.png new file mode 100644 index 00000000..fa089dcf Binary files /dev/null and b/blockchains/ethereum/assets/0x1D4105534dA120DA243281cfC3f26Aaf038E2D6f/logo.png differ diff --git a/blockchains/ethereum/assets/0x1D41e18e8Ed1EF148547ceaDe01912E638f464B8/info.json b/blockchains/ethereum/assets/0x1D41e18e8Ed1EF148547ceaDe01912E638f464B8/info.json new file mode 100644 index 00000000..770c1b50 --- /dev/null +++ b/blockchains/ethereum/assets/0x1D41e18e8Ed1EF148547ceaDe01912E638f464B8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Casper", + "symbol": "CPR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1D41e18e8Ed1EF148547ceaDe01912E638f464B8", + "status": "abandoned", + "id": "0x1D41e18e8Ed1EF148547ceaDe01912E638f464B8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1D41e18e8Ed1EF148547ceaDe01912E638f464B8/logo.png b/blockchains/ethereum/assets/0x1D41e18e8Ed1EF148547ceaDe01912E638f464B8/logo.png new file mode 100644 index 00000000..09993f4e Binary files /dev/null and b/blockchains/ethereum/assets/0x1D41e18e8Ed1EF148547ceaDe01912E638f464B8/logo.png differ diff --git a/blockchains/ethereum/assets/0x1D4781bd93209dE6a70b6a8a1D96cA93ee8CFdFD/info.json b/blockchains/ethereum/assets/0x1D4781bd93209dE6a70b6a8a1D96cA93ee8CFdFD/info.json new file mode 100644 index 00000000..1c3c2026 --- /dev/null +++ b/blockchains/ethereum/assets/0x1D4781bd93209dE6a70b6a8a1D96cA93ee8CFdFD/info.json @@ -0,0 +1,11 @@ +{ + "name": "iZiFinance Token", + "symbol": "IZT", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1D4781bd93209dE6a70b6a8a1D96cA93ee8CFdFD", + "status": "abandoned", + "id": "0x1D4781bd93209dE6a70b6a8a1D96cA93ee8CFdFD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1D4781bd93209dE6a70b6a8a1D96cA93ee8CFdFD/logo.png b/blockchains/ethereum/assets/0x1D4781bd93209dE6a70b6a8a1D96cA93ee8CFdFD/logo.png new file mode 100644 index 00000000..06949062 Binary files /dev/null and b/blockchains/ethereum/assets/0x1D4781bd93209dE6a70b6a8a1D96cA93ee8CFdFD/logo.png differ diff --git a/blockchains/ethereum/assets/0x1D496da96caf6b518b133736beca85D5C4F9cBc5/info.json b/blockchains/ethereum/assets/0x1D496da96caf6b518b133736beca85D5C4F9cBc5/info.json new file mode 100644 index 00000000..e4817db3 --- /dev/null +++ b/blockchains/ethereum/assets/0x1D496da96caf6b518b133736beca85D5C4F9cBc5/info.json @@ -0,0 +1,11 @@ +{ + "name": "bZx LINK iToken", + "symbol": "iLINK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1D496da96caf6b518b133736beca85D5C4F9cBc5", + "status": "abandoned", + "id": "0x1D496da96caf6b518b133736beca85D5C4F9cBc5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1D496da96caf6b518b133736beca85D5C4F9cBc5/logo.png b/blockchains/ethereum/assets/0x1D496da96caf6b518b133736beca85D5C4F9cBc5/logo.png new file mode 100644 index 00000000..a3d92f65 Binary files /dev/null and b/blockchains/ethereum/assets/0x1D496da96caf6b518b133736beca85D5C4F9cBc5/logo.png differ diff --git a/blockchains/ethereum/assets/0x1D4cCC31dAB6EA20f461d329a0562C1c58412515/info.json b/blockchains/ethereum/assets/0x1D4cCC31dAB6EA20f461d329a0562C1c58412515/info.json new file mode 100644 index 00000000..b53e20d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x1D4cCC31dAB6EA20f461d329a0562C1c58412515/info.json @@ -0,0 +1,11 @@ +{ + "name": "Talao", + "symbol": "TALAO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1D4cCC31dAB6EA20f461d329a0562C1c58412515", + "status": "abandoned", + "id": "0x1D4cCC31dAB6EA20f461d329a0562C1c58412515" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1D4cCC31dAB6EA20f461d329a0562C1c58412515/logo.png b/blockchains/ethereum/assets/0x1D4cCC31dAB6EA20f461d329a0562C1c58412515/logo.png new file mode 100644 index 00000000..76befae5 Binary files /dev/null and b/blockchains/ethereum/assets/0x1D4cCC31dAB6EA20f461d329a0562C1c58412515/logo.png differ diff --git a/blockchains/ethereum/assets/0x1DD67adA5F4e3359F86F3e900242ee527A18042f/info.json b/blockchains/ethereum/assets/0x1DD67adA5F4e3359F86F3e900242ee527A18042f/info.json new file mode 100644 index 00000000..8f4b5791 --- /dev/null +++ b/blockchains/ethereum/assets/0x1DD67adA5F4e3359F86F3e900242ee527A18042f/info.json @@ -0,0 +1,11 @@ +{ + "name": "X-Found World", + "symbol": "XFW", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1DD67adA5F4e3359F86F3e900242ee527A18042f", + "status": "abandoned", + "id": "0x1DD67adA5F4e3359F86F3e900242ee527A18042f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1DD67adA5F4e3359F86F3e900242ee527A18042f/logo.png b/blockchains/ethereum/assets/0x1DD67adA5F4e3359F86F3e900242ee527A18042f/logo.png new file mode 100644 index 00000000..957658b9 Binary files /dev/null and b/blockchains/ethereum/assets/0x1DD67adA5F4e3359F86F3e900242ee527A18042f/logo.png differ diff --git a/blockchains/ethereum/assets/0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0/info.json b/blockchains/ethereum/assets/0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0/info.json new file mode 100644 index 00000000..3952cf5b --- /dev/null +++ b/blockchains/ethereum/assets/0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Equalizer", + "type": "ERC20", + "symbol": "EQZ", + "decimals": 18, + "website": "https://equalizer.finance", + "description": "DeFi Flash Loans Made Easy. The first dedicated platform that equalizes the decentralized markets.", + "explorer": "https://etherscan.io/token/0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0", + "status": "active", + "id": "0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0/logo.png b/blockchains/ethereum/assets/0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0/logo.png new file mode 100644 index 00000000..62f78d38 Binary files /dev/null and b/blockchains/ethereum/assets/0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0/logo.png differ diff --git a/blockchains/ethereum/assets/0x1DaCEfe4F8EEDef2524Fa729f563a86695b8888e/info.json b/blockchains/ethereum/assets/0x1DaCEfe4F8EEDef2524Fa729f563a86695b8888e/info.json new file mode 100644 index 00000000..1fdb63ec --- /dev/null +++ b/blockchains/ethereum/assets/0x1DaCEfe4F8EEDef2524Fa729f563a86695b8888e/info.json @@ -0,0 +1,11 @@ +{ + "name": "CCECOIN", + "symbol": "CCE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1DaCEfe4F8EEDef2524Fa729f563a86695b8888e", + "status": "spam", + "id": "0x1DaCEfe4F8EEDef2524Fa729f563a86695b8888e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1DaCEfe4F8EEDef2524Fa729f563a86695b8888e/logo.png b/blockchains/ethereum/assets/0x1DaCEfe4F8EEDef2524Fa729f563a86695b8888e/logo.png new file mode 100644 index 00000000..a2863cb9 Binary files /dev/null and b/blockchains/ethereum/assets/0x1DaCEfe4F8EEDef2524Fa729f563a86695b8888e/logo.png differ diff --git a/blockchains/ethereum/assets/0x1DcAc83E90775b5f4BC2fFAc5A5749e25acC610D/info.json b/blockchains/ethereum/assets/0x1DcAc83E90775b5f4BC2fFAc5A5749e25acC610D/info.json new file mode 100644 index 00000000..de3d8602 --- /dev/null +++ b/blockchains/ethereum/assets/0x1DcAc83E90775b5f4BC2fFAc5A5749e25acC610D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Reserve", + "symbol": "RSV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1DcAc83E90775b5f4BC2fFAc5A5749e25acC610D", + "status": "abandoned", + "id": "0x1DcAc83E90775b5f4BC2fFAc5A5749e25acC610D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1DcAc83E90775b5f4BC2fFAc5A5749e25acC610D/logo.png b/blockchains/ethereum/assets/0x1DcAc83E90775b5f4BC2fFAc5A5749e25acC610D/logo.png new file mode 100644 index 00000000..22e8b9b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x1DcAc83E90775b5f4BC2fFAc5A5749e25acC610D/logo.png differ diff --git a/blockchains/ethereum/assets/0x1De09690e0d3c75C22cd19aCC1AEBdE46bbC7d25/info.json b/blockchains/ethereum/assets/0x1De09690e0d3c75C22cd19aCC1AEBdE46bbC7d25/info.json new file mode 100644 index 00000000..f839fd09 --- /dev/null +++ b/blockchains/ethereum/assets/0x1De09690e0d3c75C22cd19aCC1AEBdE46bbC7d25/info.json @@ -0,0 +1,11 @@ +{ + "name": "TemboCoin", + "symbol": "TMB", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://tembocoin.io", + "explorer": "https://etherscan.io/token/0x1De09690e0d3c75C22cd19aCC1AEBdE46bbC7d25", + "status": "abandoned", + "id": "0x1De09690e0d3c75C22cd19aCC1AEBdE46bbC7d25" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1De09690e0d3c75C22cd19aCC1AEBdE46bbC7d25/logo.png b/blockchains/ethereum/assets/0x1De09690e0d3c75C22cd19aCC1AEBdE46bbC7d25/logo.png new file mode 100644 index 00000000..858b93c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x1De09690e0d3c75C22cd19aCC1AEBdE46bbC7d25/logo.png differ diff --git a/blockchains/ethereum/assets/0x1E18821E69B9FAA8e6e75DFFe54E7E25754beDa0/info.json b/blockchains/ethereum/assets/0x1E18821E69B9FAA8e6e75DFFe54E7E25754beDa0/info.json new file mode 100644 index 00000000..da5e361e --- /dev/null +++ b/blockchains/ethereum/assets/0x1E18821E69B9FAA8e6e75DFFe54E7E25754beDa0/info.json @@ -0,0 +1,11 @@ +{ + "name": "KIMCHI.finance", + "website": "https://kimchi.finance/", + "description": "KIMCHI is so hot", + "explorer": "https://etherscan.io/token/0x1E18821E69B9FAA8e6e75DFFe54E7E25754beDa0", + "type": "ERC20", + "symbol": "KIMCHI", + "decimals": 18, + "status": "active", + "id": "0x1E18821E69B9FAA8e6e75DFFe54E7E25754beDa0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1E18821E69B9FAA8e6e75DFFe54E7E25754beDa0/logo.png b/blockchains/ethereum/assets/0x1E18821E69B9FAA8e6e75DFFe54E7E25754beDa0/logo.png new file mode 100644 index 00000000..a62ac8c3 Binary files /dev/null and b/blockchains/ethereum/assets/0x1E18821E69B9FAA8e6e75DFFe54E7E25754beDa0/logo.png differ diff --git a/blockchains/ethereum/assets/0x1E26b3D07E57F453caE30F7DDd2f945f5bF3EF33/info.json b/blockchains/ethereum/assets/0x1E26b3D07E57F453caE30F7DDd2f945f5bF3EF33/info.json new file mode 100644 index 00000000..67185a9f --- /dev/null +++ b/blockchains/ethereum/assets/0x1E26b3D07E57F453caE30F7DDd2f945f5bF3EF33/info.json @@ -0,0 +1,11 @@ +{ + "name": "ClearCoin", + "symbol": "XCLR", + "type": "ERC20", + "decimals": 8, + "description": "ClearCoin makes buying and selling of media on the blockchain simple and seamless. Its platform powers a system allowing for complete data transparency everyone can trust.", + "website": "http://clearcoin.co", + "explorer": "https://etherscan.io/token/0x1E26b3D07E57F453caE30F7DDd2f945f5bF3EF33", + "status": "active", + "id": "0x1E26b3D07E57F453caE30F7DDd2f945f5bF3EF33" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1E26b3D07E57F453caE30F7DDd2f945f5bF3EF33/logo.png b/blockchains/ethereum/assets/0x1E26b3D07E57F453caE30F7DDd2f945f5bF3EF33/logo.png new file mode 100644 index 00000000..1dc1ff4f Binary files /dev/null and b/blockchains/ethereum/assets/0x1E26b3D07E57F453caE30F7DDd2f945f5bF3EF33/logo.png differ diff --git a/blockchains/ethereum/assets/0x1E2F15302B90EddE696593607b6bD444B64e8F02/info.json b/blockchains/ethereum/assets/0x1E2F15302B90EddE696593607b6bD444B64e8F02/info.json new file mode 100644 index 00000000..1df724fb --- /dev/null +++ b/blockchains/ethereum/assets/0x1E2F15302B90EddE696593607b6bD444B64e8F02/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shiryo-Inu", + "website": "https://shiryoinu.com", + "description": "Shiryo-Inu is a P2E card game built on the Ethereum network", + "explorer": "https://etherscan.io/token/0x1E2F15302B90EddE696593607b6bD444B64e8F02", + "type": "ERC20", + "symbol": "Shiryo-Inu", + "decimals": 9, + "status": "active", + "id": "0x1E2F15302B90EddE696593607b6bD444B64e8F02", + "links": [ + { + "name": "x", + "url": "https://x.com/ShiryoInu" + }, + { + "name": "telegram", + "url": "https://t.me/shiryoinu" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1E2F15302B90EddE696593607b6bD444B64e8F02/logo.png b/blockchains/ethereum/assets/0x1E2F15302B90EddE696593607b6bD444B64e8F02/logo.png new file mode 100644 index 00000000..0a07d5f8 Binary files /dev/null and b/blockchains/ethereum/assets/0x1E2F15302B90EddE696593607b6bD444B64e8F02/logo.png differ diff --git a/blockchains/ethereum/assets/0x1E32dDef10781e3C6a19883430F0E78A10B21217/info.json b/blockchains/ethereum/assets/0x1E32dDef10781e3C6a19883430F0E78A10B21217/info.json new file mode 100644 index 00000000..f1c0a080 --- /dev/null +++ b/blockchains/ethereum/assets/0x1E32dDef10781e3C6a19883430F0E78A10B21217/info.json @@ -0,0 +1,11 @@ +{ + "name": "Anonymous Organization", + "symbol": "Anon", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1E32dDef10781e3C6a19883430F0E78A10B21217", + "status": "abandoned", + "id": "0x1E32dDef10781e3C6a19883430F0E78A10B21217" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1E32dDef10781e3C6a19883430F0E78A10B21217/logo.png b/blockchains/ethereum/assets/0x1E32dDef10781e3C6a19883430F0E78A10B21217/logo.png new file mode 100644 index 00000000..08d34060 Binary files /dev/null and b/blockchains/ethereum/assets/0x1E32dDef10781e3C6a19883430F0E78A10B21217/logo.png differ diff --git a/blockchains/ethereum/assets/0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9/info.json b/blockchains/ethereum/assets/0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9/info.json new file mode 100644 index 00000000..513007fc --- /dev/null +++ b/blockchains/ethereum/assets/0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9/info.json @@ -0,0 +1,24 @@ +{ + "name": "X2Y2Token", + "symbol": "X2Y2", + "type": "ERC20", + "decimals": 18, + "description": "The decentralized NFT marketplace. By the people, for the people.", + "website": "https://x2y2.io/", + "explorer": "https://etherscan.io/token/0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9", + "status": "active", + "id": "0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9", + "tags": [ + "nft" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/the_x2y2" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/x2y2" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9/logo.png b/blockchains/ethereum/assets/0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9/logo.png new file mode 100644 index 00000000..c97e0267 Binary files /dev/null and b/blockchains/ethereum/assets/0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9/logo.png differ diff --git a/blockchains/ethereum/assets/0x1E9421331F19E6c4Ba79BCE22582e3F34c4CF506/info.json b/blockchains/ethereum/assets/0x1E9421331F19E6c4Ba79BCE22582e3F34c4CF506/info.json new file mode 100644 index 00000000..9c4dcc9d --- /dev/null +++ b/blockchains/ethereum/assets/0x1E9421331F19E6c4Ba79BCE22582e3F34c4CF506/info.json @@ -0,0 +1,11 @@ +{ + "name": "Amazing Unit", + "symbol": "AMU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://amazingunit.net", + "explorer": "https://etherscan.io/token/0x1E9421331F19E6c4Ba79BCE22582e3F34c4CF506", + "status": "abandoned", + "id": "0x1E9421331F19E6c4Ba79BCE22582e3F34c4CF506" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1E9421331F19E6c4Ba79BCE22582e3F34c4CF506/logo.png b/blockchains/ethereum/assets/0x1E9421331F19E6c4Ba79BCE22582e3F34c4CF506/logo.png new file mode 100644 index 00000000..5f775033 Binary files /dev/null and b/blockchains/ethereum/assets/0x1E9421331F19E6c4Ba79BCE22582e3F34c4CF506/logo.png differ diff --git a/blockchains/ethereum/assets/0x1Ec8eaa3f68261e793C48486b12092336A03c479/info.json b/blockchains/ethereum/assets/0x1Ec8eaa3f68261e793C48486b12092336A03c479/info.json new file mode 100644 index 00000000..3094b2d0 --- /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 00000000..b0d1fbb7 Binary files /dev/null and b/blockchains/ethereum/assets/0x1Ec8eaa3f68261e793C48486b12092336A03c479/logo.png differ diff --git a/blockchains/ethereum/assets/0x1Ef57424C7f38628A0e25177Ff61A671FBe4B405/info.json b/blockchains/ethereum/assets/0x1Ef57424C7f38628A0e25177Ff61A671FBe4B405/info.json new file mode 100644 index 00000000..4595d1d7 --- /dev/null +++ b/blockchains/ethereum/assets/0x1Ef57424C7f38628A0e25177Ff61A671FBe4B405/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitWest Token", + "symbol": "BWT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1Ef57424C7f38628A0e25177Ff61A671FBe4B405", + "status": "abandoned", + "id": "0x1Ef57424C7f38628A0e25177Ff61A671FBe4B405" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1Ef57424C7f38628A0e25177Ff61A671FBe4B405/logo.png b/blockchains/ethereum/assets/0x1Ef57424C7f38628A0e25177Ff61A671FBe4B405/logo.png new file mode 100644 index 00000000..f4d5ba46 Binary files /dev/null and b/blockchains/ethereum/assets/0x1Ef57424C7f38628A0e25177Ff61A671FBe4B405/logo.png differ diff --git a/blockchains/ethereum/assets/0x1F10822c753A1F587923d9916E64738Ee7C27419/info.json b/blockchains/ethereum/assets/0x1F10822c753A1F587923d9916E64738Ee7C27419/info.json new file mode 100644 index 00000000..3b48554c --- /dev/null +++ b/blockchains/ethereum/assets/0x1F10822c753A1F587923d9916E64738Ee7C27419/info.json @@ -0,0 +1,11 @@ +{ + "name": "Grapheneum", + "symbol": "GPH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1F10822c753A1F587923d9916E64738Ee7C27419", + "status": "abandoned", + "id": "0x1F10822c753A1F587923d9916E64738Ee7C27419" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1F10822c753A1F587923d9916E64738Ee7C27419/logo.png b/blockchains/ethereum/assets/0x1F10822c753A1F587923d9916E64738Ee7C27419/logo.png new file mode 100644 index 00000000..32a04e9f Binary files /dev/null and b/blockchains/ethereum/assets/0x1F10822c753A1F587923d9916E64738Ee7C27419/logo.png differ diff --git a/blockchains/ethereum/assets/0x1F21d8395655fb262251897df7CB3c9358BEc6a2/info.json b/blockchains/ethereum/assets/0x1F21d8395655fb262251897df7CB3c9358BEc6a2/info.json new file mode 100644 index 00000000..e914855c --- /dev/null +++ b/blockchains/ethereum/assets/0x1F21d8395655fb262251897df7CB3c9358BEc6a2/info.json @@ -0,0 +1,11 @@ +{ + "name": "IRONCOIN", + "symbol": "IRC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://ironcoin.org/", + "explorer": "https://etherscan.io/token/0x1F21d8395655fb262251897df7CB3c9358BEc6a2", + "status": "abandoned", + "id": "0x1F21d8395655fb262251897df7CB3c9358BEc6a2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1F21d8395655fb262251897df7CB3c9358BEc6a2/logo.png b/blockchains/ethereum/assets/0x1F21d8395655fb262251897df7CB3c9358BEc6a2/logo.png new file mode 100755 index 00000000..82c83075 Binary files /dev/null and b/blockchains/ethereum/assets/0x1F21d8395655fb262251897df7CB3c9358BEc6a2/logo.png differ diff --git a/blockchains/ethereum/assets/0x1F35a281036Be57E64e7E7A2A556b4f888A1b829/info.json b/blockchains/ethereum/assets/0x1F35a281036Be57E64e7E7A2A556b4f888A1b829/info.json new file mode 100644 index 00000000..066fb0c8 --- /dev/null +++ b/blockchains/ethereum/assets/0x1F35a281036Be57E64e7E7A2A556b4f888A1b829/info.json @@ -0,0 +1,11 @@ +{ + "name": "Muzika", + "symbol": "MZK", + "type": "ERC20", + "decimals": 18, + "description": "Muzika aims to transform the music world through blockchain, by closing the gap between artists and fans : the true value creators in today's digital music industry.", + "website": "https://www.muzika.network/", + "explorer": "https://etherscan.io/token/0x1F35a281036Be57E64e7E7A2A556b4f888A1b829", + "status": "active", + "id": "0x1F35a281036Be57E64e7E7A2A556b4f888A1b829" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1F35a281036Be57E64e7E7A2A556b4f888A1b829/logo.png b/blockchains/ethereum/assets/0x1F35a281036Be57E64e7E7A2A556b4f888A1b829/logo.png new file mode 100644 index 00000000..76403cd3 Binary files /dev/null and b/blockchains/ethereum/assets/0x1F35a281036Be57E64e7E7A2A556b4f888A1b829/logo.png differ diff --git a/blockchains/ethereum/assets/0x1F3F677Ecc58F6A1F9e2CF410dF4776a8546b5DE/info.json b/blockchains/ethereum/assets/0x1F3F677Ecc58F6A1F9e2CF410dF4776a8546b5DE/info.json new file mode 100644 index 00000000..c4b6035d --- /dev/null +++ b/blockchains/ethereum/assets/0x1F3F677Ecc58F6A1F9e2CF410dF4776a8546b5DE/info.json @@ -0,0 +1,11 @@ +{ + "name": "VNDC", + "symbol": "VNDC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://vndc.io/", + "explorer": "https://etherscan.io/token/0x1F3F677Ecc58F6A1F9e2CF410dF4776a8546b5DE", + "status": "abandoned", + "id": "0x1F3F677Ecc58F6A1F9e2CF410dF4776a8546b5DE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1F3F677Ecc58F6A1F9e2CF410dF4776a8546b5DE/logo.png b/blockchains/ethereum/assets/0x1F3F677Ecc58F6A1F9e2CF410dF4776a8546b5DE/logo.png new file mode 100644 index 00000000..e2f48cb6 Binary files /dev/null and b/blockchains/ethereum/assets/0x1F3F677Ecc58F6A1F9e2CF410dF4776a8546b5DE/logo.png differ diff --git a/blockchains/ethereum/assets/0x1F54638b7737193FFd86c19Ec51907A7c41755D8/info.json b/blockchains/ethereum/assets/0x1F54638b7737193FFd86c19Ec51907A7c41755D8/info.json new file mode 100644 index 00000000..985c6e71 --- /dev/null +++ b/blockchains/ethereum/assets/0x1F54638b7737193FFd86c19Ec51907A7c41755D8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sola Token", + "symbol": "SOL", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1F54638b7737193FFd86c19Ec51907A7c41755D8", + "status": "abandoned", + "id": "0x1F54638b7737193FFd86c19Ec51907A7c41755D8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1F54638b7737193FFd86c19Ec51907A7c41755D8/logo.png b/blockchains/ethereum/assets/0x1F54638b7737193FFd86c19Ec51907A7c41755D8/logo.png new file mode 100644 index 00000000..d678c762 Binary files /dev/null and b/blockchains/ethereum/assets/0x1F54638b7737193FFd86c19Ec51907A7c41755D8/logo.png differ diff --git a/blockchains/ethereum/assets/0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C/info.json b/blockchains/ethereum/assets/0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C/info.json new file mode 100644 index 00000000..9033b05f --- /dev/null +++ b/blockchains/ethereum/assets/0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C/info.json @@ -0,0 +1,45 @@ +{ + "name": "Bancor", + "website": "https://bancor.network", + "description": "Bancor is an on-chain liquidity protocol that enables automated, decentralized exchange on Ethereum and across blockchains.", + "explorer": "https://etherscan.io/token/0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C", + "research": "https://research.binance.com/en/projects/bancor", + "type": "ERC20", + "symbol": "BNT", + "decimals": 18, + "status": "active", + "id": "0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/bancorprotocol" + }, + { + "name": "x", + "url": "https://x.com/bancornetwork" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Bancor/" + }, + { + "name": "blog", + "url": "https://blog.bancor.network/" + }, + { + "name": "telegram", + "url": "https://t.me/bancor" + }, + { + "name": "whitepaper", + "url": "https://storage.googleapis.com/website-bancor/2018/04/01ba8253-bancor_protocol_whitepaper_en.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bancor/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C/logo.png b/blockchains/ethereum/assets/0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C/logo.png new file mode 100644 index 00000000..53b403e7 Binary files /dev/null and b/blockchains/ethereum/assets/0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C/logo.png differ diff --git a/blockchains/ethereum/assets/0x1F5fc5c3c8B0F15c7E21AF623936FF2b210b6415/info.json b/blockchains/ethereum/assets/0x1F5fc5c3c8B0F15c7E21AF623936FF2b210b6415/info.json new file mode 100644 index 00000000..7568c2a4 --- /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 00000000..56d2b7fe Binary files /dev/null and b/blockchains/ethereum/assets/0x1F5fc5c3c8B0F15c7E21AF623936FF2b210b6415/logo.png differ diff --git a/blockchains/ethereum/assets/0x1F6DEADcb526c4710Cf941872b86dcdfBbBD9211/info.json b/blockchains/ethereum/assets/0x1F6DEADcb526c4710Cf941872b86dcdfBbBD9211/info.json new file mode 100644 index 00000000..1e092572 --- /dev/null +++ b/blockchains/ethereum/assets/0x1F6DEADcb526c4710Cf941872b86dcdfBbBD9211/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ruletka", + "symbol": "RTK", + "type": "ERC20", + "decimals": 18, + "description": "Ruletka (RTK) is an incentive-based deflationary game currency. its 1 in 6 chance burn mechanism simulates the Russian Roulette and is used in games by reward-seeking players.", + "website": "https://ruletka.fun", + "explorer": "https://etherscan.io/token/0x1F6DEADcb526c4710Cf941872b86dcdfBbBD9211", + "status": "active", + "id": "0x1F6DEADcb526c4710Cf941872b86dcdfBbBD9211" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1F6DEADcb526c4710Cf941872b86dcdfBbBD9211/logo.png b/blockchains/ethereum/assets/0x1F6DEADcb526c4710Cf941872b86dcdfBbBD9211/logo.png new file mode 100644 index 00000000..b5bbf471 Binary files /dev/null and b/blockchains/ethereum/assets/0x1F6DEADcb526c4710Cf941872b86dcdfBbBD9211/logo.png differ diff --git a/blockchains/ethereum/assets/0x1F70300BCe8c2302780BD0a153ebb75B8CA7efCb/info.json b/blockchains/ethereum/assets/0x1F70300BCe8c2302780BD0a153ebb75B8CA7efCb/info.json new file mode 100644 index 00000000..d46ce61e --- /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 00000000..f12e42dc Binary files /dev/null and b/blockchains/ethereum/assets/0x1F70300BCe8c2302780BD0a153ebb75B8CA7efCb/logo.png differ diff --git a/blockchains/ethereum/assets/0x1F74bD428C931372d50B0776982C458b1b3f2B72/info.json b/blockchains/ethereum/assets/0x1F74bD428C931372d50B0776982C458b1b3f2B72/info.json new file mode 100644 index 00000000..5b47d6b3 --- /dev/null +++ b/blockchains/ethereum/assets/0x1F74bD428C931372d50B0776982C458b1b3f2B72/info.json @@ -0,0 +1,11 @@ +{ + "name": "FGCoin", + "symbol": "FGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1F74bD428C931372d50B0776982C458b1b3f2B72", + "status": "abandoned", + "id": "0x1F74bD428C931372d50B0776982C458b1b3f2B72" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1F74bD428C931372d50B0776982C458b1b3f2B72/logo.png b/blockchains/ethereum/assets/0x1F74bD428C931372d50B0776982C458b1b3f2B72/logo.png new file mode 100644 index 00000000..41a5a847 Binary files /dev/null and b/blockchains/ethereum/assets/0x1F74bD428C931372d50B0776982C458b1b3f2B72/logo.png differ diff --git a/blockchains/ethereum/assets/0x1F8A626883d7724DBd59eF51CBD4BF1Cf2016D13/info.json b/blockchains/ethereum/assets/0x1F8A626883d7724DBd59eF51CBD4BF1Cf2016D13/info.json new file mode 100644 index 00000000..65261a29 --- /dev/null +++ b/blockchains/ethereum/assets/0x1F8A626883d7724DBd59eF51CBD4BF1Cf2016D13/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jigstack", + "symbol": "STAK", + "type": "ERC20", + "decimals": 18, + "description": "STAK is the governance token of Jigstack DAO as well as the main utility asset across it's ecosystem.", + "website": "https://www.jigstack.org/", + "explorer": "https://etherscan.io/token/0x1F8A626883d7724DBd59eF51CBD4BF1Cf2016D13", + "status": "active", + "id": "0x1F8A626883d7724DBd59eF51CBD4BF1Cf2016D13" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1F8A626883d7724DBd59eF51CBD4BF1Cf2016D13/logo.png b/blockchains/ethereum/assets/0x1F8A626883d7724DBd59eF51CBD4BF1Cf2016D13/logo.png new file mode 100644 index 00000000..e1caa785 Binary files /dev/null and b/blockchains/ethereum/assets/0x1F8A626883d7724DBd59eF51CBD4BF1Cf2016D13/logo.png differ diff --git a/blockchains/ethereum/assets/0x1F8f123bf24849443a56eD9fC42b9265b7F3A39a/info.json b/blockchains/ethereum/assets/0x1F8f123bf24849443a56eD9fC42b9265b7F3A39a/info.json new file mode 100644 index 00000000..1e96a23c --- /dev/null +++ b/blockchains/ethereum/assets/0x1F8f123bf24849443a56eD9fC42b9265b7F3A39a/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniTopia", + "symbol": "uTOPIA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://unitopia.network", + "explorer": "https://etherscan.io/token/0x1F8f123bf24849443a56eD9fC42b9265b7F3A39a", + "status": "abandoned", + "id": "0x1F8f123bf24849443a56eD9fC42b9265b7F3A39a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1F8f123bf24849443a56eD9fC42b9265b7F3A39a/logo.png b/blockchains/ethereum/assets/0x1F8f123bf24849443a56eD9fC42b9265b7F3A39a/logo.png new file mode 100644 index 00000000..792b24f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x1F8f123bf24849443a56eD9fC42b9265b7F3A39a/logo.png differ diff --git a/blockchains/ethereum/assets/0x1F9232E7F1318Abf91366e6081d57Fa3C1bcdE88/info.json b/blockchains/ethereum/assets/0x1F9232E7F1318Abf91366e6081d57Fa3C1bcdE88/info.json new file mode 100644 index 00000000..2964dea9 --- /dev/null +++ b/blockchains/ethereum/assets/0x1F9232E7F1318Abf91366e6081d57Fa3C1bcdE88/info.json @@ -0,0 +1,11 @@ +{ + "name": "Energy Source", + "symbol": "LEML", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.zndyl.com/", + "explorer": "https://etherscan.io/token/0x1F9232E7F1318Abf91366e6081d57Fa3C1bcdE88", + "status": "abandoned", + "id": "0x1F9232E7F1318Abf91366e6081d57Fa3C1bcdE88" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1F9232E7F1318Abf91366e6081d57Fa3C1bcdE88/logo.png b/blockchains/ethereum/assets/0x1F9232E7F1318Abf91366e6081d57Fa3C1bcdE88/logo.png new file mode 100755 index 00000000..49e43a00 Binary files /dev/null and b/blockchains/ethereum/assets/0x1F9232E7F1318Abf91366e6081d57Fa3C1bcdE88/logo.png differ diff --git a/blockchains/ethereum/assets/0x1FC82046357f9C684bb1267588036E5d08bA2Cf0/info.json b/blockchains/ethereum/assets/0x1FC82046357f9C684bb1267588036E5d08bA2Cf0/info.json new file mode 100644 index 00000000..23850708 --- /dev/null +++ b/blockchains/ethereum/assets/0x1FC82046357f9C684bb1267588036E5d08bA2Cf0/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEXP", + "symbol": "DEXP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1FC82046357f9C684bb1267588036E5d08bA2Cf0", + "status": "abandoned", + "id": "0x1FC82046357f9C684bb1267588036E5d08bA2Cf0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1FC82046357f9C684bb1267588036E5d08bA2Cf0/logo.png b/blockchains/ethereum/assets/0x1FC82046357f9C684bb1267588036E5d08bA2Cf0/logo.png new file mode 100644 index 00000000..8d3f8f33 Binary files /dev/null and b/blockchains/ethereum/assets/0x1FC82046357f9C684bb1267588036E5d08bA2Cf0/logo.png differ diff --git a/blockchains/ethereum/assets/0x1FCdcE58959f536621d76f5b7FfB955baa5A672F/info.json b/blockchains/ethereum/assets/0x1FCdcE58959f536621d76f5b7FfB955baa5A672F/info.json new file mode 100644 index 00000000..ecb477a4 --- /dev/null +++ b/blockchains/ethereum/assets/0x1FCdcE58959f536621d76f5b7FfB955baa5A672F/info.json @@ -0,0 +1,14 @@ +{ + "name": "FOR", + "website": "https://theforceprotocol.com/", + "description": "The Force Token (FOR) is a utility token, it is the governance token of ForTube system.", + "explorer": "https://etherscan.io/token/0x1FCdcE58959f536621d76f5b7FfB955baa5A672F", + "type": "ERC20", + "symbol": "FOR", + "decimals": 18, + "status": "active", + "id": "0x1FCdcE58959f536621d76f5b7FfB955baa5A672F", + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1FCdcE58959f536621d76f5b7FfB955baa5A672F/logo.png b/blockchains/ethereum/assets/0x1FCdcE58959f536621d76f5b7FfB955baa5A672F/logo.png new file mode 100644 index 00000000..59a94940 Binary files /dev/null and b/blockchains/ethereum/assets/0x1FCdcE58959f536621d76f5b7FfB955baa5A672F/logo.png differ diff --git a/blockchains/ethereum/assets/0x1FE70bE734e473e5721ea57C8B5B01e6Caa52686/info.json b/blockchains/ethereum/assets/0x1FE70bE734e473e5721ea57C8B5B01e6Caa52686/info.json new file mode 100644 index 00000000..0c25d585 --- /dev/null +++ b/blockchains/ethereum/assets/0x1FE70bE734e473e5721ea57C8B5B01e6Caa52686/info.json @@ -0,0 +1,11 @@ +{ + "name": "RNTB Token", + "symbol": "RNTB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bitrent.io", + "explorer": "https://etherscan.io/token/0x1FE70bE734e473e5721ea57C8B5B01e6Caa52686", + "status": "abandoned", + "id": "0x1FE70bE734e473e5721ea57C8B5B01e6Caa52686" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1FE70bE734e473e5721ea57C8B5B01e6Caa52686/logo.png b/blockchains/ethereum/assets/0x1FE70bE734e473e5721ea57C8B5B01e6Caa52686/logo.png new file mode 100755 index 00000000..2c540571 Binary files /dev/null and b/blockchains/ethereum/assets/0x1FE70bE734e473e5721ea57C8B5B01e6Caa52686/logo.png differ diff --git a/blockchains/ethereum/assets/0x1Fc31488f28ac846588FFA201cDe0669168471bD/info.json b/blockchains/ethereum/assets/0x1Fc31488f28ac846588FFA201cDe0669168471bD/info.json new file mode 100644 index 00000000..1a0bdc3c --- /dev/null +++ b/blockchains/ethereum/assets/0x1Fc31488f28ac846588FFA201cDe0669168471bD/info.json @@ -0,0 +1,11 @@ +{ + "name": "UAX", + "website": "https://xreserve.fund", + "description": "UAX is a stablecoin with a 1:1 exchange rate to Ukrainian Hryvnia.", + "explorer": "https://etherscan.io/token/0x1Fc31488f28ac846588FFA201cDe0669168471bD", + "type": "ERC20", + "symbol": "UAX", + "decimals": 2, + "status": "active", + "id": "0x1Fc31488f28ac846588FFA201cDe0669168471bD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1Fc31488f28ac846588FFA201cDe0669168471bD/logo.png b/blockchains/ethereum/assets/0x1Fc31488f28ac846588FFA201cDe0669168471bD/logo.png new file mode 100644 index 00000000..ade8ddcc Binary files /dev/null and b/blockchains/ethereum/assets/0x1Fc31488f28ac846588FFA201cDe0669168471bD/logo.png differ diff --git a/blockchains/ethereum/assets/0x1Fe72034dA777ef22533eaa6Dd7cBE1D80bE50Fa/info.json b/blockchains/ethereum/assets/0x1Fe72034dA777ef22533eaa6Dd7cBE1D80bE50Fa/info.json new file mode 100644 index 00000000..23b0cfa6 --- /dev/null +++ b/blockchains/ethereum/assets/0x1Fe72034dA777ef22533eaa6Dd7cBE1D80bE50Fa/info.json @@ -0,0 +1,11 @@ +{ + "name": "PayAccept", + "symbol": "PAY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.payaccept.net/", + "explorer": "https://etherscan.io/token/0x1Fe72034dA777ef22533eaa6Dd7cBE1D80bE50Fa", + "status": "abandoned", + "id": "0x1Fe72034dA777ef22533eaa6Dd7cBE1D80bE50Fa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1Fe72034dA777ef22533eaa6Dd7cBE1D80bE50Fa/logo.png b/blockchains/ethereum/assets/0x1Fe72034dA777ef22533eaa6Dd7cBE1D80bE50Fa/logo.png new file mode 100644 index 00000000..1bad444c Binary files /dev/null and b/blockchains/ethereum/assets/0x1Fe72034dA777ef22533eaa6Dd7cBE1D80bE50Fa/logo.png differ diff --git a/blockchains/ethereum/assets/0x1a2277C83930b7a64C3e3D5544Eaa8C4f946B1B7/info.json b/blockchains/ethereum/assets/0x1a2277C83930b7a64C3e3D5544Eaa8C4f946B1B7/info.json new file mode 100644 index 00000000..74327501 --- /dev/null +++ b/blockchains/ethereum/assets/0x1a2277C83930b7a64C3e3D5544Eaa8C4f946B1B7/info.json @@ -0,0 +1,11 @@ +{ + "name": "ECHAT TOKEN", + "symbol": "ECHT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://echat.io/", + "explorer": "https://etherscan.io/token/0x1a2277C83930b7a64C3e3D5544Eaa8C4f946B1B7", + "status": "abandoned", + "id": "0x1a2277C83930b7a64C3e3D5544Eaa8C4f946B1B7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1a2277C83930b7a64C3e3D5544Eaa8C4f946B1B7/logo.png b/blockchains/ethereum/assets/0x1a2277C83930b7a64C3e3D5544Eaa8C4f946B1B7/logo.png new file mode 100644 index 00000000..98219708 Binary files /dev/null and b/blockchains/ethereum/assets/0x1a2277C83930b7a64C3e3D5544Eaa8C4f946B1B7/logo.png differ diff --git a/blockchains/ethereum/assets/0x1a2d7C2b22a0b6Ce314dCbC30aC236303303defA/info.json b/blockchains/ethereum/assets/0x1a2d7C2b22a0b6Ce314dCbC30aC236303303defA/info.json new file mode 100644 index 00000000..763843f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x1a2d7C2b22a0b6Ce314dCbC30aC236303303defA/info.json @@ -0,0 +1,11 @@ +{ + "name": "IDRT Wrapper", + "symbol": "IDRTW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1a2d7C2b22a0b6Ce314dCbC30aC236303303defA", + "status": "abandoned", + "id": "0x1a2d7C2b22a0b6Ce314dCbC30aC236303303defA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1a2d7C2b22a0b6Ce314dCbC30aC236303303defA/logo.png b/blockchains/ethereum/assets/0x1a2d7C2b22a0b6Ce314dCbC30aC236303303defA/logo.png new file mode 100644 index 00000000..a588d46b Binary files /dev/null and b/blockchains/ethereum/assets/0x1a2d7C2b22a0b6Ce314dCbC30aC236303303defA/logo.png differ diff --git a/blockchains/ethereum/assets/0x1a6658F40e51b372E593B7d2144c1402d5cf33E8/info.json b/blockchains/ethereum/assets/0x1a6658F40e51b372E593B7d2144c1402d5cf33E8/info.json new file mode 100644 index 00000000..ce2e6a34 --- /dev/null +++ b/blockchains/ethereum/assets/0x1a6658F40e51b372E593B7d2144c1402d5cf33E8/info.json @@ -0,0 +1,11 @@ +{ + "name": "PUBLX", + "symbol": "PUBLX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1a6658F40e51b372E593B7d2144c1402d5cf33E8", + "status": "active", + "id": "0x1a6658F40e51b372E593B7d2144c1402d5cf33E8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1a6658F40e51b372E593B7d2144c1402d5cf33E8/logo.png b/blockchains/ethereum/assets/0x1a6658F40e51b372E593B7d2144c1402d5cf33E8/logo.png new file mode 100644 index 00000000..046b29f2 Binary files /dev/null and b/blockchains/ethereum/assets/0x1a6658F40e51b372E593B7d2144c1402d5cf33E8/logo.png differ diff --git a/blockchains/ethereum/assets/0x1a76bfFD6D1FC1660e1d0E0552Fde51ddbB120CF/info.json b/blockchains/ethereum/assets/0x1a76bfFD6D1FC1660e1d0E0552Fde51ddbB120CF/info.json new file mode 100644 index 00000000..51fbed9d --- /dev/null +++ b/blockchains/ethereum/assets/0x1a76bfFD6D1FC1660e1d0E0552Fde51ddbB120CF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Realio Security Token", + "website": "https://realio.fund", + "description": "RST is a security token to represent ownership of the Realio.fund Ecosystem. Realio is an end-to-end platform for compliant issuance, p2p trading and life-cycle management of digital assets.", + "explorer": "https://etherscan.io/token/0x1a76bffd6d1fc1660e1d0e0552fde51ddbb120cf", + "type": "ERC20", + "symbol": "RST", + "decimals": 18, + "status": "active", + "id": "0x1a76bfFD6D1FC1660e1d0E0552Fde51ddbB120CF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1a76bfFD6D1FC1660e1d0E0552Fde51ddbB120CF/logo.png b/blockchains/ethereum/assets/0x1a76bfFD6D1FC1660e1d0E0552Fde51ddbB120CF/logo.png new file mode 100644 index 00000000..29c8aca5 Binary files /dev/null and b/blockchains/ethereum/assets/0x1a76bfFD6D1FC1660e1d0E0552Fde51ddbB120CF/logo.png differ diff --git a/blockchains/ethereum/assets/0x1a7918b6AFaA8D3321E49FCc64B02FD8be1225fa/info.json b/blockchains/ethereum/assets/0x1a7918b6AFaA8D3321E49FCc64B02FD8be1225fa/info.json new file mode 100644 index 00000000..3158e10c --- /dev/null +++ b/blockchains/ethereum/assets/0x1a7918b6AFaA8D3321E49FCc64B02FD8be1225fa/info.json @@ -0,0 +1,11 @@ +{ + "name": "TokenMarket Ltd. A shares", + "symbol": "TM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1a7918b6AFaA8D3321E49FCc64B02FD8be1225fa", + "status": "abandoned", + "id": "0x1a7918b6AFaA8D3321E49FCc64B02FD8be1225fa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1a7918b6AFaA8D3321E49FCc64B02FD8be1225fa/logo.png b/blockchains/ethereum/assets/0x1a7918b6AFaA8D3321E49FCc64B02FD8be1225fa/logo.png new file mode 100644 index 00000000..ce3ccaf5 Binary files /dev/null and b/blockchains/ethereum/assets/0x1a7918b6AFaA8D3321E49FCc64B02FD8be1225fa/logo.png differ diff --git a/blockchains/ethereum/assets/0x1a7a8BD9106F2B8D977E08582DC7d24c723ab0DB/info.json b/blockchains/ethereum/assets/0x1a7a8BD9106F2B8D977E08582DC7d24c723ab0DB/info.json new file mode 100644 index 00000000..d09e5edc --- /dev/null +++ b/blockchains/ethereum/assets/0x1a7a8BD9106F2B8D977E08582DC7d24c723ab0DB/info.json @@ -0,0 +1,11 @@ +{ + "name": "AppCoins", + "symbol": "APPC", + "type": "ERC20", + "decimals": 18, + "description": "AppCoins is an open and distributed protocol for app stores based on the Ethereum blockchain and smart contracts.", + "website": "https://appcoins.io/", + "explorer": "https://etherscan.io/token/0x1a7a8BD9106F2B8D977E08582DC7d24c723ab0DB", + "status": "active", + "id": "0x1a7a8BD9106F2B8D977E08582DC7d24c723ab0DB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1a7a8BD9106F2B8D977E08582DC7d24c723ab0DB/logo.png b/blockchains/ethereum/assets/0x1a7a8BD9106F2B8D977E08582DC7d24c723ab0DB/logo.png new file mode 100755 index 00000000..5f48e03e Binary files /dev/null and b/blockchains/ethereum/assets/0x1a7a8BD9106F2B8D977E08582DC7d24c723ab0DB/logo.png differ diff --git a/blockchains/ethereum/assets/0x1a7b00404b755FF80126f1D66a90f5aEDdEd25da/info.json b/blockchains/ethereum/assets/0x1a7b00404b755FF80126f1D66a90f5aEDdEd25da/info.json new file mode 100644 index 00000000..a64e2d83 --- /dev/null +++ b/blockchains/ethereum/assets/0x1a7b00404b755FF80126f1D66a90f5aEDdEd25da/info.json @@ -0,0 +1,11 @@ +{ + "name": "MulTra Token", + "symbol": "MTT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1a7b00404b755FF80126f1D66a90f5aEDdEd25da", + "status": "abandoned", + "id": "0x1a7b00404b755FF80126f1D66a90f5aEDdEd25da" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1a7b00404b755FF80126f1D66a90f5aEDdEd25da/logo.png b/blockchains/ethereum/assets/0x1a7b00404b755FF80126f1D66a90f5aEDdEd25da/logo.png new file mode 100644 index 00000000..f6623343 Binary files /dev/null and b/blockchains/ethereum/assets/0x1a7b00404b755FF80126f1D66a90f5aEDdEd25da/logo.png differ diff --git a/blockchains/ethereum/assets/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8/info.json b/blockchains/ethereum/assets/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8/info.json new file mode 100644 index 00000000..b916aad1 --- /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 00000000..b80f4f7f Binary files /dev/null and b/blockchains/ethereum/assets/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8/logo.png differ diff --git a/blockchains/ethereum/assets/0x1a8f615F0dD39B9DE8ad26db89Cfa76F7c9D0274/info.json b/blockchains/ethereum/assets/0x1a8f615F0dD39B9DE8ad26db89Cfa76F7c9D0274/info.json new file mode 100644 index 00000000..a8b9604e --- /dev/null +++ b/blockchains/ethereum/assets/0x1a8f615F0dD39B9DE8ad26db89Cfa76F7c9D0274/info.json @@ -0,0 +1,11 @@ +{ + "name": "UTour", + "symbol": "UTO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1a8f615F0dD39B9DE8ad26db89Cfa76F7c9D0274", + "status": "abandoned", + "id": "0x1a8f615F0dD39B9DE8ad26db89Cfa76F7c9D0274" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1a8f615F0dD39B9DE8ad26db89Cfa76F7c9D0274/logo.png b/blockchains/ethereum/assets/0x1a8f615F0dD39B9DE8ad26db89Cfa76F7c9D0274/logo.png new file mode 100644 index 00000000..2a3518f0 Binary files /dev/null and b/blockchains/ethereum/assets/0x1a8f615F0dD39B9DE8ad26db89Cfa76F7c9D0274/logo.png differ diff --git a/blockchains/ethereum/assets/0x1a9371365C3704b1584B0FC4a7f4Dbb70AB14d2d/info.json b/blockchains/ethereum/assets/0x1a9371365C3704b1584B0FC4a7f4Dbb70AB14d2d/info.json new file mode 100644 index 00000000..06578910 --- /dev/null +++ b/blockchains/ethereum/assets/0x1a9371365C3704b1584B0FC4a7f4Dbb70AB14d2d/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Luxury", + "symbol": "ILUX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1a9371365C3704b1584B0FC4a7f4Dbb70AB14d2d", + "status": "abandoned", + "id": "0x1a9371365C3704b1584B0FC4a7f4Dbb70AB14d2d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1a9371365C3704b1584B0FC4a7f4Dbb70AB14d2d/logo.png b/blockchains/ethereum/assets/0x1a9371365C3704b1584B0FC4a7f4Dbb70AB14d2d/logo.png new file mode 100644 index 00000000..98eac1bb Binary files /dev/null and b/blockchains/ethereum/assets/0x1a9371365C3704b1584B0FC4a7f4Dbb70AB14d2d/logo.png differ diff --git a/blockchains/ethereum/assets/0x1a95B271B0535D15fa49932Daba31BA612b52946/info.json b/blockchains/ethereum/assets/0x1a95B271B0535D15fa49932Daba31BA612b52946/info.json new file mode 100644 index 00000000..bcd4e76c --- /dev/null +++ b/blockchains/ethereum/assets/0x1a95B271B0535D15fa49932Daba31BA612b52946/info.json @@ -0,0 +1,11 @@ +{ + "name": "minereum", + "symbol": "MNE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1a95B271B0535D15fa49932Daba31BA612b52946", + "status": "abandoned", + "id": "0x1a95B271B0535D15fa49932Daba31BA612b52946" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1a95B271B0535D15fa49932Daba31BA612b52946/logo.png b/blockchains/ethereum/assets/0x1a95B271B0535D15fa49932Daba31BA612b52946/logo.png new file mode 100644 index 00000000..5fc16be3 Binary files /dev/null and b/blockchains/ethereum/assets/0x1a95B271B0535D15fa49932Daba31BA612b52946/logo.png differ diff --git a/blockchains/ethereum/assets/0x1a986F1659e11E2AE7CC6543F307bAE5cDe1C761/info.json b/blockchains/ethereum/assets/0x1a986F1659e11E2AE7CC6543F307bAE5cDe1C761/info.json new file mode 100644 index 00000000..96e78c4a --- /dev/null +++ b/blockchains/ethereum/assets/0x1a986F1659e11E2AE7CC6543F307bAE5cDe1C761/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unity Ingot", + "symbol": "UNI", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1a986F1659e11E2AE7CC6543F307bAE5cDe1C761", + "status": "abandoned", + "id": "0x1a986F1659e11E2AE7CC6543F307bAE5cDe1C761" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1a986F1659e11E2AE7CC6543F307bAE5cDe1C761/logo.png b/blockchains/ethereum/assets/0x1a986F1659e11E2AE7CC6543F307bAE5cDe1C761/logo.png new file mode 100644 index 00000000..1f43540c Binary files /dev/null and b/blockchains/ethereum/assets/0x1a986F1659e11E2AE7CC6543F307bAE5cDe1C761/logo.png differ diff --git a/blockchains/ethereum/assets/0x1aABf9B575e4329b8C8F272428AD5E43ab4AeFC8/info.json b/blockchains/ethereum/assets/0x1aABf9B575e4329b8C8F272428AD5E43ab4AeFC8/info.json new file mode 100644 index 00000000..b094a74b --- /dev/null +++ b/blockchains/ethereum/assets/0x1aABf9B575e4329b8C8F272428AD5E43ab4AeFC8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bugg Inu", + "type": "ERC20", + "symbol": "BUGG", + "decimals": 9, + "website": "https://bugg.gg", + "description": "Building Decentralised Finance (DeFi). $BUGG Swap. We Have An Active And Engaged Community Dedicated To The $BUGG Success.", + "explorer": "https://etherscan.io/token/0x1aabf9b575e4329b8c8f272428ad5e43ab4aefc8", + "status": "active", + "id": "0x1aABf9B575e4329b8C8F272428AD5E43ab4AeFC8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1aABf9B575e4329b8C8F272428AD5E43ab4AeFC8/logo.png b/blockchains/ethereum/assets/0x1aABf9B575e4329b8C8F272428AD5E43ab4AeFC8/logo.png new file mode 100644 index 00000000..261a97ce Binary files /dev/null and b/blockchains/ethereum/assets/0x1aABf9B575e4329b8C8F272428AD5E43ab4AeFC8/logo.png differ diff --git a/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/info.json b/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/info.json new file mode 100644 index 00000000..4961daaa --- /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 00000000..f23fbed3 Binary files /dev/null and b/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/logo.png differ diff --git a/blockchains/ethereum/assets/0x1aBdb309aa592f00a101c545168BFDF9a6Ec61CE/info.json b/blockchains/ethereum/assets/0x1aBdb309aa592f00a101c545168BFDF9a6Ec61CE/info.json new file mode 100644 index 00000000..1546e18f --- /dev/null +++ b/blockchains/ethereum/assets/0x1aBdb309aa592f00a101c545168BFDF9a6Ec61CE/info.json @@ -0,0 +1,11 @@ +{ + "name": "BCAChain Initial Token", + "symbol": "BCAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1aBdb309aa592f00a101c545168BFDF9a6Ec61CE", + "status": "abandoned", + "id": "0x1aBdb309aa592f00a101c545168BFDF9a6Ec61CE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1aBdb309aa592f00a101c545168BFDF9a6Ec61CE/logo.png b/blockchains/ethereum/assets/0x1aBdb309aa592f00a101c545168BFDF9a6Ec61CE/logo.png new file mode 100644 index 00000000..60ce2cd5 Binary files /dev/null and b/blockchains/ethereum/assets/0x1aBdb309aa592f00a101c545168BFDF9a6Ec61CE/logo.png differ diff --git a/blockchains/ethereum/assets/0x1aCf991d7cED97b558C7a87F4bd7Afd75E15fCb7/info.json b/blockchains/ethereum/assets/0x1aCf991d7cED97b558C7a87F4bd7Afd75E15fCb7/info.json new file mode 100644 index 00000000..d32b290a --- /dev/null +++ b/blockchains/ethereum/assets/0x1aCf991d7cED97b558C7a87F4bd7Afd75E15fCb7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tixguru Token", + "symbol": "TIX", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1aCf991d7cED97b558C7a87F4bd7Afd75E15fCb7", + "status": "abandoned", + "id": "0x1aCf991d7cED97b558C7a87F4bd7Afd75E15fCb7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1aCf991d7cED97b558C7a87F4bd7Afd75E15fCb7/logo.png b/blockchains/ethereum/assets/0x1aCf991d7cED97b558C7a87F4bd7Afd75E15fCb7/logo.png new file mode 100644 index 00000000..fc2e849a Binary files /dev/null and b/blockchains/ethereum/assets/0x1aCf991d7cED97b558C7a87F4bd7Afd75E15fCb7/logo.png differ diff --git a/blockchains/ethereum/assets/0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF/info.json b/blockchains/ethereum/assets/0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF/info.json new file mode 100644 index 00000000..dfb799eb --- /dev/null +++ b/blockchains/ethereum/assets/0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF/info.json @@ -0,0 +1,32 @@ +{ + "name": "ICHI ALLY", + "website": "app.ichi.org", + "description": "The ALLY token is a token the enables ICHI vesting over a 3 year period.", + "explorer": "https://etherscan.io/token/0x1aa1e61369874bae3444a8ef6528d6b13d6952ef", + "type": "ERC20", + "symbol": "ALLY", + "decimals": 18, + "status": "active", + "id": "0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm" + }, + { + "name": "x", + "url": "https://x.com/ichifoundation" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF/logo.png b/blockchains/ethereum/assets/0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF/logo.png new file mode 100644 index 00000000..55b6e77b Binary files /dev/null and b/blockchains/ethereum/assets/0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF/logo.png differ diff --git a/blockchains/ethereum/assets/0x1aa95F4ca4A9Bc258Ba848db4355aEEA6413e815/info.json b/blockchains/ethereum/assets/0x1aa95F4ca4A9Bc258Ba848db4355aEEA6413e815/info.json new file mode 100644 index 00000000..1f6d735e --- /dev/null +++ b/blockchains/ethereum/assets/0x1aa95F4ca4A9Bc258Ba848db4355aEEA6413e815/info.json @@ -0,0 +1,11 @@ +{ + "name": "Budget", + "symbol": "BUDGET", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1aa95F4ca4A9Bc258Ba848db4355aEEA6413e815", + "status": "abandoned", + "id": "0x1aa95F4ca4A9Bc258Ba848db4355aEEA6413e815" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1aa95F4ca4A9Bc258Ba848db4355aEEA6413e815/logo.png b/blockchains/ethereum/assets/0x1aa95F4ca4A9Bc258Ba848db4355aEEA6413e815/logo.png new file mode 100644 index 00000000..dd61d468 Binary files /dev/null and b/blockchains/ethereum/assets/0x1aa95F4ca4A9Bc258Ba848db4355aEEA6413e815/logo.png differ diff --git a/blockchains/ethereum/assets/0x1aacA4e5bAB141c5b412BeB135C2D6d65f961Be2/info.json b/blockchains/ethereum/assets/0x1aacA4e5bAB141c5b412BeB135C2D6d65f961Be2/info.json new file mode 100644 index 00000000..41c6105a --- /dev/null +++ b/blockchains/ethereum/assets/0x1aacA4e5bAB141c5b412BeB135C2D6d65f961Be2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pet friend", + "symbol": "PETF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1aacA4e5bAB141c5b412BeB135C2D6d65f961Be2", + "status": "abandoned", + "id": "0x1aacA4e5bAB141c5b412BeB135C2D6d65f961Be2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1aacA4e5bAB141c5b412BeB135C2D6d65f961Be2/logo.png b/blockchains/ethereum/assets/0x1aacA4e5bAB141c5b412BeB135C2D6d65f961Be2/logo.png new file mode 100644 index 00000000..cc040e62 Binary files /dev/null and b/blockchains/ethereum/assets/0x1aacA4e5bAB141c5b412BeB135C2D6d65f961Be2/logo.png differ diff --git a/blockchains/ethereum/assets/0x1b22C32cD936cB97C28C5690a0695a82Abf688e6/info.json b/blockchains/ethereum/assets/0x1b22C32cD936cB97C28C5690a0695a82Abf688e6/info.json new file mode 100644 index 00000000..8adc99e5 --- /dev/null +++ b/blockchains/ethereum/assets/0x1b22C32cD936cB97C28C5690a0695a82Abf688e6/info.json @@ -0,0 +1,11 @@ +{ + "name": "MyWish Token", + "symbol": "WISH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://mywish.io/index.html", + "explorer": "https://etherscan.io/token/0x1b22C32cD936cB97C28C5690a0695a82Abf688e6", + "status": "abandoned", + "id": "0x1b22C32cD936cB97C28C5690a0695a82Abf688e6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1b22C32cD936cB97C28C5690a0695a82Abf688e6/logo.png b/blockchains/ethereum/assets/0x1b22C32cD936cB97C28C5690a0695a82Abf688e6/logo.png new file mode 100644 index 00000000..3bd2e571 Binary files /dev/null and b/blockchains/ethereum/assets/0x1b22C32cD936cB97C28C5690a0695a82Abf688e6/logo.png differ diff --git a/blockchains/ethereum/assets/0x1b33bb74de3D15295Fcd8ca3A777951f6A8f8Fac/info.json b/blockchains/ethereum/assets/0x1b33bb74de3D15295Fcd8ca3A777951f6A8f8Fac/info.json new file mode 100644 index 00000000..65aea998 --- /dev/null +++ b/blockchains/ethereum/assets/0x1b33bb74de3D15295Fcd8ca3A777951f6A8f8Fac/info.json @@ -0,0 +1,11 @@ +{ + "name": "WandaBroker", + "symbol": "WBR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1b33bb74de3D15295Fcd8ca3A777951f6A8f8Fac", + "status": "abandoned", + "id": "0x1b33bb74de3D15295Fcd8ca3A777951f6A8f8Fac" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1b33bb74de3D15295Fcd8ca3A777951f6A8f8Fac/logo.png b/blockchains/ethereum/assets/0x1b33bb74de3D15295Fcd8ca3A777951f6A8f8Fac/logo.png new file mode 100644 index 00000000..a7b0ccd2 Binary files /dev/null and b/blockchains/ethereum/assets/0x1b33bb74de3D15295Fcd8ca3A777951f6A8f8Fac/logo.png differ diff --git a/blockchains/ethereum/assets/0x1b40183EFB4Dd766f11bDa7A7c3AD8982e998421/info.json b/blockchains/ethereum/assets/0x1b40183EFB4Dd766f11bDa7A7c3AD8982e998421/info.json new file mode 100644 index 00000000..f3156610 --- /dev/null +++ b/blockchains/ethereum/assets/0x1b40183EFB4Dd766f11bDa7A7c3AD8982e998421/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vesper", + "type": "ERC20", + "symbol": "VSP", + "decimals": 18, + "website": "https://vesper.finance", + "description": "Vesper provides a platform for easy-to-use DeFi products. Vesper's DeFi products deliver ease-of-use in achieving your crypto-finance objectives.", + "explorer": "https://etherscan.io/token/0x1b40183EFB4Dd766f11bDa7A7c3AD8982e998421", + "status": "active", + "id": "0x1b40183EFB4Dd766f11bDa7A7c3AD8982e998421" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1b40183EFB4Dd766f11bDa7A7c3AD8982e998421/logo.png b/blockchains/ethereum/assets/0x1b40183EFB4Dd766f11bDa7A7c3AD8982e998421/logo.png new file mode 100644 index 00000000..e98fc3d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x1b40183EFB4Dd766f11bDa7A7c3AD8982e998421/logo.png differ diff --git a/blockchains/ethereum/assets/0x1b468d5535Ed7C19Ce42f0073db7Fdf441028131/info.json b/blockchains/ethereum/assets/0x1b468d5535Ed7C19Ce42f0073db7Fdf441028131/info.json new file mode 100644 index 00000000..5efcc0e4 --- /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 00000000..ffdd61f2 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 new file mode 100644 index 00000000..97e84b19 --- /dev/null +++ b/blockchains/ethereum/assets/0x1b5036bEc1B82D44d52Fa953A370b3c6Cd9328B5/info.json @@ -0,0 +1,32 @@ +{ + "name": "Elan", + "type": "ERC20", + "symbol": "ELAN", + "decimals": 18, + "website": "https://elanfuture.com/", + "description": "Elan Future is a clean-tech Research & Development company located in Canada, leading the way toward affordable and reliable electricity through decentralized energy systems.", + "explorer": "https://etherscan.io/token/0x1b5036bec1b82d44d52fa953a370b3c6cd9328b5", + "status": "active", + "id": "0x1b5036bEc1B82D44d52Fa953A370b3c6Cd9328B5", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ElanFutureOfficial" + }, + { + "name": "x", + "url": "https://x.com/ElanFuture" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/elan/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elan/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1b5036bEc1B82D44d52Fa953A370b3c6Cd9328B5/logo.png b/blockchains/ethereum/assets/0x1b5036bEc1B82D44d52Fa953A370b3c6Cd9328B5/logo.png new file mode 100644 index 00000000..089e9b94 Binary files /dev/null and b/blockchains/ethereum/assets/0x1b5036bEc1B82D44d52Fa953A370b3c6Cd9328B5/logo.png differ diff --git a/blockchains/ethereum/assets/0x1b6Bb56D2ce2cbafEa9E3054a97d47be0FE8FDeB/info.json b/blockchains/ethereum/assets/0x1b6Bb56D2ce2cbafEa9E3054a97d47be0FE8FDeB/info.json new file mode 100644 index 00000000..1b285dd8 --- /dev/null +++ b/blockchains/ethereum/assets/0x1b6Bb56D2ce2cbafEa9E3054a97d47be0FE8FDeB/info.json @@ -0,0 +1,11 @@ +{ + "name": "EasyTax", + "symbol": "ETX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1b6Bb56D2ce2cbafEa9E3054a97d47be0FE8FDeB", + "status": "abandoned", + "id": "0x1b6Bb56D2ce2cbafEa9E3054a97d47be0FE8FDeB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1b6Bb56D2ce2cbafEa9E3054a97d47be0FE8FDeB/logo.png b/blockchains/ethereum/assets/0x1b6Bb56D2ce2cbafEa9E3054a97d47be0FE8FDeB/logo.png new file mode 100644 index 00000000..e2bc1701 Binary files /dev/null and b/blockchains/ethereum/assets/0x1b6Bb56D2ce2cbafEa9E3054a97d47be0FE8FDeB/logo.png differ diff --git a/blockchains/ethereum/assets/0x1b6C5864375b34aF3Ff5Bd2E5f40Bc425B4a8D79/info.json b/blockchains/ethereum/assets/0x1b6C5864375b34aF3Ff5Bd2E5f40Bc425B4a8D79/info.json new file mode 100644 index 00000000..25a47109 --- /dev/null +++ b/blockchains/ethereum/assets/0x1b6C5864375b34aF3Ff5Bd2E5f40Bc425B4a8D79/info.json @@ -0,0 +1,11 @@ +{ + "name": "TopChainCoin", + "symbol": "TOPC", + "type": "ERC20", + "decimals": 6, + "description": "Topchain is the world’s leading brand in the gaming blockchain, reshaping the game industry structure with decentralized concept to create a global de-centralized gaming ecosystem.", + "website": "http://www.topc.io/", + "explorer": "https://etherscan.io/token/0x1b6C5864375b34aF3Ff5Bd2E5f40Bc425B4a8D79", + "status": "active", + "id": "0x1b6C5864375b34aF3Ff5Bd2E5f40Bc425B4a8D79" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1b6C5864375b34aF3Ff5Bd2E5f40Bc425B4a8D79/logo.png b/blockchains/ethereum/assets/0x1b6C5864375b34aF3Ff5Bd2E5f40Bc425B4a8D79/logo.png new file mode 100644 index 00000000..a2d9c36f Binary files /dev/null and b/blockchains/ethereum/assets/0x1b6C5864375b34aF3Ff5Bd2E5f40Bc425B4a8D79/logo.png differ diff --git a/blockchains/ethereum/assets/0x1b76d0364e803fB94c1d5cA9Faf55f05Ee494731/info.json b/blockchains/ethereum/assets/0x1b76d0364e803fB94c1d5cA9Faf55f05Ee494731/info.json new file mode 100644 index 00000000..3e3f1015 --- /dev/null +++ b/blockchains/ethereum/assets/0x1b76d0364e803fB94c1d5cA9Faf55f05Ee494731/info.json @@ -0,0 +1,11 @@ +{ + "name": "Uniswap Community Network", + "symbol": "UCN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1b76d0364e803fB94c1d5cA9Faf55f05Ee494731", + "status": "abandoned", + "id": "0x1b76d0364e803fB94c1d5cA9Faf55f05Ee494731" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1b76d0364e803fB94c1d5cA9Faf55f05Ee494731/logo.png b/blockchains/ethereum/assets/0x1b76d0364e803fB94c1d5cA9Faf55f05Ee494731/logo.png new file mode 100644 index 00000000..81aad9a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x1b76d0364e803fB94c1d5cA9Faf55f05Ee494731/logo.png differ diff --git a/blockchains/ethereum/assets/0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016/info.json b/blockchains/ethereum/assets/0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016/info.json new file mode 100644 index 00000000..c0b9db8b --- /dev/null +++ b/blockchains/ethereum/assets/0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016/info.json @@ -0,0 +1,11 @@ +{ + "name": "ViteToken", + "symbol": "VITE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016", + "status": "abandoned", + "id": "0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016/logo.png b/blockchains/ethereum/assets/0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016/logo.png new file mode 100644 index 00000000..02a0fa58 Binary files /dev/null and b/blockchains/ethereum/assets/0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016/logo.png differ diff --git a/blockchains/ethereum/assets/0x1b8d3e59b31981385C066eE0916Ec964628ff1f9/info.json b/blockchains/ethereum/assets/0x1b8d3e59b31981385C066eE0916Ec964628ff1f9/info.json new file mode 100644 index 00000000..0c40ff2a --- /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 00000000..a7211c01 Binary files /dev/null and b/blockchains/ethereum/assets/0x1b8d3e59b31981385C066eE0916Ec964628ff1f9/logo.png differ diff --git a/blockchains/ethereum/assets/0x1b980e05943dE3dB3a459C72325338d327B6F5a9/info.json b/blockchains/ethereum/assets/0x1b980e05943dE3dB3a459C72325338d327B6F5a9/info.json new file mode 100644 index 00000000..9e45fee9 --- /dev/null +++ b/blockchains/ethereum/assets/0x1b980e05943dE3dB3a459C72325338d327B6F5a9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitgear", + "symbol": "GEAR", + "type": "ERC20", + "decimals": 18, + "description": "Bitgear aims to create a bridge and aggregate decentralized and centralized exchanges all in one platform.", + "website": "https://bitgear.io", + "explorer": "https://etherscan.io/token/0x1b980e05943dE3dB3a459C72325338d327B6F5a9", + "status": "active", + "id": "0x1b980e05943dE3dB3a459C72325338d327B6F5a9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1b980e05943dE3dB3a459C72325338d327B6F5a9/logo.png b/blockchains/ethereum/assets/0x1b980e05943dE3dB3a459C72325338d327B6F5a9/logo.png new file mode 100644 index 00000000..fde28df9 Binary files /dev/null and b/blockchains/ethereum/assets/0x1b980e05943dE3dB3a459C72325338d327B6F5a9/logo.png differ diff --git a/blockchains/ethereum/assets/0x1bB877351A0c5985a53fB7Ca3C38a2D5871dCC71/info.json b/blockchains/ethereum/assets/0x1bB877351A0c5985a53fB7Ca3C38a2D5871dCC71/info.json new file mode 100644 index 00000000..c1858808 --- /dev/null +++ b/blockchains/ethereum/assets/0x1bB877351A0c5985a53fB7Ca3C38a2D5871dCC71/info.json @@ -0,0 +1,11 @@ +{ + "name": "Apputoken", + "symbol": "APPU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1bB877351A0c5985a53fB7Ca3C38a2D5871dCC71", + "status": "abandoned", + "id": "0x1bB877351A0c5985a53fB7Ca3C38a2D5871dCC71" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1bB877351A0c5985a53fB7Ca3C38a2D5871dCC71/logo.png b/blockchains/ethereum/assets/0x1bB877351A0c5985a53fB7Ca3C38a2D5871dCC71/logo.png new file mode 100644 index 00000000..9fd1d9ec Binary files /dev/null and b/blockchains/ethereum/assets/0x1bB877351A0c5985a53fB7Ca3C38a2D5871dCC71/logo.png differ diff --git a/blockchains/ethereum/assets/0x1bD4E709a076Fb71ea1014293a739f2b19CA565D/info.json b/blockchains/ethereum/assets/0x1bD4E709a076Fb71ea1014293a739f2b19CA565D/info.json new file mode 100644 index 00000000..55fc6267 --- /dev/null +++ b/blockchains/ethereum/assets/0x1bD4E709a076Fb71ea1014293a739f2b19CA565D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Labtorum", + "symbol": "LTR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1bD4E709a076Fb71ea1014293a739f2b19CA565D", + "status": "abandoned", + "id": "0x1bD4E709a076Fb71ea1014293a739f2b19CA565D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1bD4E709a076Fb71ea1014293a739f2b19CA565D/logo.png b/blockchains/ethereum/assets/0x1bD4E709a076Fb71ea1014293a739f2b19CA565D/logo.png new file mode 100755 index 00000000..3b16353f Binary files /dev/null and b/blockchains/ethereum/assets/0x1bD4E709a076Fb71ea1014293a739f2b19CA565D/logo.png differ diff --git a/blockchains/ethereum/assets/0x1bd96b3C300E1E3d0Cf4E5E1C0bb4312a53F8419/info.json b/blockchains/ethereum/assets/0x1bd96b3C300E1E3d0Cf4E5E1C0bb4312a53F8419/info.json new file mode 100644 index 00000000..dddad62b --- /dev/null +++ b/blockchains/ethereum/assets/0x1bd96b3C300E1E3d0Cf4E5E1C0bb4312a53F8419/info.json @@ -0,0 +1,11 @@ +{ + "name": "FHCoin", + "symbol": "FHC", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1bd96b3C300E1E3d0Cf4E5E1C0bb4312a53F8419", + "status": "abandoned", + "id": "0x1bd96b3C300E1E3d0Cf4E5E1C0bb4312a53F8419" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1bd96b3C300E1E3d0Cf4E5E1C0bb4312a53F8419/logo.png b/blockchains/ethereum/assets/0x1bd96b3C300E1E3d0Cf4E5E1C0bb4312a53F8419/logo.png new file mode 100755 index 00000000..a1152c93 Binary files /dev/null and b/blockchains/ethereum/assets/0x1bd96b3C300E1E3d0Cf4E5E1C0bb4312a53F8419/logo.png differ diff --git a/blockchains/ethereum/assets/0x1bdE5c987c98D9E9EcDC62F0421992b1d0fE740E/info.json b/blockchains/ethereum/assets/0x1bdE5c987c98D9E9EcDC62F0421992b1d0fE740E/info.json new file mode 100644 index 00000000..cf0e2b6f --- /dev/null +++ b/blockchains/ethereum/assets/0x1bdE5c987c98D9E9EcDC62F0421992b1d0fE740E/info.json @@ -0,0 +1,11 @@ +{ + "name": "IBNC", + "symbol": "IBNC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1bdE5c987c98D9E9EcDC62F0421992b1d0fE740E", + "status": "abandoned", + "id": "0x1bdE5c987c98D9E9EcDC62F0421992b1d0fE740E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1bdE5c987c98D9E9EcDC62F0421992b1d0fE740E/logo.png b/blockchains/ethereum/assets/0x1bdE5c987c98D9E9EcDC62F0421992b1d0fE740E/logo.png new file mode 100644 index 00000000..cf4ae377 Binary files /dev/null and b/blockchains/ethereum/assets/0x1bdE5c987c98D9E9EcDC62F0421992b1d0fE740E/logo.png differ diff --git a/blockchains/ethereum/assets/0x1bdc9CC1C27E48fF80C9Bb5dE7dB957c12aA09c3/info.json b/blockchains/ethereum/assets/0x1bdc9CC1C27E48fF80C9Bb5dE7dB957c12aA09c3/info.json new file mode 100644 index 00000000..8cfa073d --- /dev/null +++ b/blockchains/ethereum/assets/0x1bdc9CC1C27E48fF80C9Bb5dE7dB957c12aA09c3/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-11/30M11", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1bdc9CC1C27E48fF80C9Bb5dE7dB957c12aA09c3", + "status": "abandoned", + "id": "0x1bdc9CC1C27E48fF80C9Bb5dE7dB957c12aA09c3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1bdc9CC1C27E48fF80C9Bb5dE7dB957c12aA09c3/logo.png b/blockchains/ethereum/assets/0x1bdc9CC1C27E48fF80C9Bb5dE7dB957c12aA09c3/logo.png new file mode 100644 index 00000000..9643657b Binary files /dev/null and b/blockchains/ethereum/assets/0x1bdc9CC1C27E48fF80C9Bb5dE7dB957c12aA09c3/logo.png differ diff --git a/blockchains/ethereum/assets/0x1bdcFe02C54362cE935D13D5314ac76e0Af20AB7/info.json b/blockchains/ethereum/assets/0x1bdcFe02C54362cE935D13D5314ac76e0Af20AB7/info.json new file mode 100644 index 00000000..447d0a0e --- /dev/null +++ b/blockchains/ethereum/assets/0x1bdcFe02C54362cE935D13D5314ac76e0Af20AB7/info.json @@ -0,0 +1,11 @@ +{ + "name": "HELL", + "symbol": "HELL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1bdcFe02C54362cE935D13D5314ac76e0Af20AB7", + "status": "abandoned", + "id": "0x1bdcFe02C54362cE935D13D5314ac76e0Af20AB7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1bdcFe02C54362cE935D13D5314ac76e0Af20AB7/logo.png b/blockchains/ethereum/assets/0x1bdcFe02C54362cE935D13D5314ac76e0Af20AB7/logo.png new file mode 100644 index 00000000..6f60c316 Binary files /dev/null and b/blockchains/ethereum/assets/0x1bdcFe02C54362cE935D13D5314ac76e0Af20AB7/logo.png differ diff --git a/blockchains/ethereum/assets/0x1c0987e79A6328374119Ed34df64881b3A40f5a7/info.json b/blockchains/ethereum/assets/0x1c0987e79A6328374119Ed34df64881b3A40f5a7/info.json new file mode 100644 index 00000000..fbc4a551 --- /dev/null +++ b/blockchains/ethereum/assets/0x1c0987e79A6328374119Ed34df64881b3A40f5a7/info.json @@ -0,0 +1,11 @@ +{ + "name": "UPCHAINS", + "symbol": "UCH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1c0987e79A6328374119Ed34df64881b3A40f5a7", + "status": "abandoned", + "id": "0x1c0987e79A6328374119Ed34df64881b3A40f5a7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1c0987e79A6328374119Ed34df64881b3A40f5a7/logo.png b/blockchains/ethereum/assets/0x1c0987e79A6328374119Ed34df64881b3A40f5a7/logo.png new file mode 100644 index 00000000..3ab622d3 Binary files /dev/null and b/blockchains/ethereum/assets/0x1c0987e79A6328374119Ed34df64881b3A40f5a7/logo.png differ diff --git a/blockchains/ethereum/assets/0x1c3d23828c886e6138B725C4BCE41F90ab19f10E/info.json b/blockchains/ethereum/assets/0x1c3d23828c886e6138B725C4BCE41F90ab19f10E/info.json new file mode 100644 index 00000000..e8d402f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x1c3d23828c886e6138B725C4BCE41F90ab19f10E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short KNC-DAI 2x v2", + "symbol": "dsKNC2x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1c3d23828c886e6138B725C4BCE41F90ab19f10E", + "status": "abandoned", + "id": "0x1c3d23828c886e6138B725C4BCE41F90ab19f10E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1c3d23828c886e6138B725C4BCE41F90ab19f10E/logo.png b/blockchains/ethereum/assets/0x1c3d23828c886e6138B725C4BCE41F90ab19f10E/logo.png new file mode 100644 index 00000000..6a02165a Binary files /dev/null and b/blockchains/ethereum/assets/0x1c3d23828c886e6138B725C4BCE41F90ab19f10E/logo.png differ diff --git a/blockchains/ethereum/assets/0x1c4481750daa5Ff521A2a7490d9981eD46465Dbd/info.json b/blockchains/ethereum/assets/0x1c4481750daa5Ff521A2a7490d9981eD46465Dbd/info.json new file mode 100644 index 00000000..83c7dd05 --- /dev/null +++ b/blockchains/ethereum/assets/0x1c4481750daa5Ff521A2a7490d9981eD46465Dbd/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLOCKMASON CREDIT PROTOCOL TOKEN", + "symbol": "BCPT", + "type": "ERC20", + "decimals": 18, + "description": "Democratizing the creation of credit through permanently recorded debts and obligations.", + "website": "https://blockmason.io/", + "explorer": "https://etherscan.io/token/0x1c4481750daa5Ff521A2a7490d9981eD46465Dbd", + "status": "active", + "id": "0x1c4481750daa5Ff521A2a7490d9981eD46465Dbd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1c4481750daa5Ff521A2a7490d9981eD46465Dbd/logo.png b/blockchains/ethereum/assets/0x1c4481750daa5Ff521A2a7490d9981eD46465Dbd/logo.png new file mode 100644 index 00000000..3019778f Binary files /dev/null and b/blockchains/ethereum/assets/0x1c4481750daa5Ff521A2a7490d9981eD46465Dbd/logo.png differ diff --git a/blockchains/ethereum/assets/0x1c48f86ae57291F7686349F12601910BD8D470bb/info.json b/blockchains/ethereum/assets/0x1c48f86ae57291F7686349F12601910BD8D470bb/info.json new file mode 100644 index 00000000..b05ed3c8 --- /dev/null +++ b/blockchains/ethereum/assets/0x1c48f86ae57291F7686349F12601910BD8D470bb/info.json @@ -0,0 +1,14 @@ +{ + "name": "USDK", + "symbol": "USDK", + "type": "ERC20", + "decimals": 18, + "description": "USDK (USDK) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.oklink.com", + "explorer": "https://etherscan.io/token/0x1c48f86ae57291F7686349F12601910BD8D470bb", + "status": "active", + "id": "0x1c48f86ae57291F7686349F12601910BD8D470bb", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1c48f86ae57291F7686349F12601910BD8D470bb/logo.png b/blockchains/ethereum/assets/0x1c48f86ae57291F7686349F12601910BD8D470bb/logo.png new file mode 100644 index 00000000..3ccbb67a Binary files /dev/null and b/blockchains/ethereum/assets/0x1c48f86ae57291F7686349F12601910BD8D470bb/logo.png differ diff --git a/blockchains/ethereum/assets/0x1c4b7d0e1885bd7667Af3378E0c538F74E712006/info.json b/blockchains/ethereum/assets/0x1c4b7d0e1885bd7667Af3378E0c538F74E712006/info.json new file mode 100644 index 00000000..3daf8d18 --- /dev/null +++ b/blockchains/ethereum/assets/0x1c4b7d0e1885bd7667Af3378E0c538F74E712006/info.json @@ -0,0 +1,11 @@ +{ + "name": "IOGToken", + "symbol": "IOG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.playgroundz.io/", + "explorer": "https://etherscan.io/token/0x1c4b7d0e1885bd7667Af3378E0c538F74E712006", + "status": "active", + "id": "0x1c4b7d0e1885bd7667Af3378E0c538F74E712006" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1c4b7d0e1885bd7667Af3378E0c538F74E712006/logo.png b/blockchains/ethereum/assets/0x1c4b7d0e1885bd7667Af3378E0c538F74E712006/logo.png new file mode 100644 index 00000000..4d8c9629 Binary files /dev/null and b/blockchains/ethereum/assets/0x1c4b7d0e1885bd7667Af3378E0c538F74E712006/logo.png differ diff --git a/blockchains/ethereum/assets/0x1c4f0A8008D888173B45Be40578b47B160434297/info.json b/blockchains/ethereum/assets/0x1c4f0A8008D888173B45Be40578b47B160434297/info.json new file mode 100644 index 00000000..89c398eb --- /dev/null +++ b/blockchains/ethereum/assets/0x1c4f0A8008D888173B45Be40578b47B160434297/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C529992", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1c4f0A8008D888173B45Be40578b47B160434297", + "status": "abandoned", + "id": "0x1c4f0A8008D888173B45Be40578b47B160434297" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1c4f0A8008D888173B45Be40578b47B160434297/logo.png b/blockchains/ethereum/assets/0x1c4f0A8008D888173B45Be40578b47B160434297/logo.png new file mode 100644 index 00000000..e75c7772 Binary files /dev/null and b/blockchains/ethereum/assets/0x1c4f0A8008D888173B45Be40578b47B160434297/logo.png differ diff --git a/blockchains/ethereum/assets/0x1c5FA55eAdE69ae98571059332520F73733C2D82/info.json b/blockchains/ethereum/assets/0x1c5FA55eAdE69ae98571059332520F73733C2D82/info.json new file mode 100644 index 00000000..50aa10d5 --- /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 00000000..5716d513 Binary files /dev/null and b/blockchains/ethereum/assets/0x1c5FA55eAdE69ae98571059332520F73733C2D82/logo.png differ diff --git a/blockchains/ethereum/assets/0x1c6DD53Ccb74234C10410Af31F56082071D1C88b/info.json b/blockchains/ethereum/assets/0x1c6DD53Ccb74234C10410Af31F56082071D1C88b/info.json new file mode 100644 index 00000000..8fb7fc62 --- /dev/null +++ b/blockchains/ethereum/assets/0x1c6DD53Ccb74234C10410Af31F56082071D1C88b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Michal Gee Token", + "symbol": "MGC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1c6DD53Ccb74234C10410Af31F56082071D1C88b", + "status": "abandoned", + "id": "0x1c6DD53Ccb74234C10410Af31F56082071D1C88b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1c6DD53Ccb74234C10410Af31F56082071D1C88b/logo.png b/blockchains/ethereum/assets/0x1c6DD53Ccb74234C10410Af31F56082071D1C88b/logo.png new file mode 100644 index 00000000..773ba5ef Binary files /dev/null and b/blockchains/ethereum/assets/0x1c6DD53Ccb74234C10410Af31F56082071D1C88b/logo.png differ diff --git a/blockchains/ethereum/assets/0x1c74cFF0376FB4031Cd7492cD6dB2D66c3f2c6B9/info.json b/blockchains/ethereum/assets/0x1c74cFF0376FB4031Cd7492cD6dB2D66c3f2c6B9/info.json new file mode 100644 index 00000000..c988bc62 --- /dev/null +++ b/blockchains/ethereum/assets/0x1c74cFF0376FB4031Cd7492cD6dB2D66c3f2c6B9/info.json @@ -0,0 +1,11 @@ +{ + "name": "bZx Protocol Token", + "symbol": "BZRX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1c74cFF0376FB4031Cd7492cD6dB2D66c3f2c6B9", + "status": "abandoned", + "id": "0x1c74cFF0376FB4031Cd7492cD6dB2D66c3f2c6B9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1c74cFF0376FB4031Cd7492cD6dB2D66c3f2c6B9/logo.png b/blockchains/ethereum/assets/0x1c74cFF0376FB4031Cd7492cD6dB2D66c3f2c6B9/logo.png new file mode 100644 index 00000000..f528abd3 Binary files /dev/null and b/blockchains/ethereum/assets/0x1c74cFF0376FB4031Cd7492cD6dB2D66c3f2c6B9/logo.png differ diff --git a/blockchains/ethereum/assets/0x1c79ab32C66aCAa1e9E81952B8AAa581B43e54E7/info.json b/blockchains/ethereum/assets/0x1c79ab32C66aCAa1e9E81952B8AAa581B43e54E7/info.json new file mode 100644 index 00000000..00089a2e --- /dev/null +++ b/blockchains/ethereum/assets/0x1c79ab32C66aCAa1e9E81952B8AAa581B43e54E7/info.json @@ -0,0 +1,11 @@ +{ + "name": "TEAM", + "symbol": "TEAM", + "type": "ERC20", + "decimals": 4, + "description": "TEAM is a utility token for TokenStars - the talent management platform, that connects sports & entertainment stars with fans and advertisers, bringing interaction between them to a new level.", + "website": "https://tokenstars.com", + "explorer": "https://etherscan.io/token/0x1c79ab32C66aCAa1e9E81952B8AAa581B43e54E7", + "status": "active", + "id": "0x1c79ab32C66aCAa1e9E81952B8AAa581B43e54E7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1c79ab32C66aCAa1e9E81952B8AAa581B43e54E7/logo.png b/blockchains/ethereum/assets/0x1c79ab32C66aCAa1e9E81952B8AAa581B43e54E7/logo.png new file mode 100644 index 00000000..1fe7b2e0 Binary files /dev/null and b/blockchains/ethereum/assets/0x1c79ab32C66aCAa1e9E81952B8AAa581B43e54E7/logo.png differ diff --git a/blockchains/ethereum/assets/0x1cB673005fc58447D881486919c14D8e7C741Bb1/info.json b/blockchains/ethereum/assets/0x1cB673005fc58447D881486919c14D8e7C741Bb1/info.json new file mode 100644 index 00000000..058b1874 --- /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 00000000..3537d091 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 new file mode 100644 index 00000000..b3a38cde --- /dev/null +++ b/blockchains/ethereum/assets/0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC/info.json @@ -0,0 +1,29 @@ +{ + "name": "Non-Fungible Yearn", + "website": "https://NFY.Finance", + "description": "Utilizing NFTs in DeFi. Creating a way to tokenize a stake. Stake and lock your LP tokens and receive a NFT that contains the details of the stake. The LP tokens may be locked but the value is not!", + "explorer": "https://etherscan.io/token/0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC", + "type": "ERC20", + "symbol": "NFY", + "decimals": 18, + "status": "active", + "id": "0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC", + "links": [ + { + "name": "github", + "url": "https://github.com/NFYFinance/" + }, + { + "name": "x", + "url": "https://x.com/NFYFinance" + }, + { + "name": "telegram", + "url": "https://t.me/NFYOfficialChat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/wKgUcYr" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC/logo.png b/blockchains/ethereum/assets/0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC/logo.png new file mode 100644 index 00000000..afc7c228 Binary files /dev/null and b/blockchains/ethereum/assets/0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC/logo.png differ diff --git a/blockchains/ethereum/assets/0x1cC9567EA2eB740824a45F8026cCF8e46973234D/info.json b/blockchains/ethereum/assets/0x1cC9567EA2eB740824a45F8026cCF8e46973234D/info.json new file mode 100644 index 00000000..e54fdbcf --- /dev/null +++ b/blockchains/ethereum/assets/0x1cC9567EA2eB740824a45F8026cCF8e46973234D/info.json @@ -0,0 +1,11 @@ +{ + "name": "bZx KNC iToken", + "symbol": "iKNC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1cC9567EA2eB740824a45F8026cCF8e46973234D", + "status": "abandoned", + "id": "0x1cC9567EA2eB740824a45F8026cCF8e46973234D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1cC9567EA2eB740824a45F8026cCF8e46973234D/logo.png b/blockchains/ethereum/assets/0x1cC9567EA2eB740824a45F8026cCF8e46973234D/logo.png new file mode 100644 index 00000000..175d459c Binary files /dev/null and b/blockchains/ethereum/assets/0x1cC9567EA2eB740824a45F8026cCF8e46973234D/logo.png differ diff --git a/blockchains/ethereum/assets/0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44/info.json b/blockchains/ethereum/assets/0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44/info.json new file mode 100644 index 00000000..772c10e4 --- /dev/null +++ b/blockchains/ethereum/assets/0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44/info.json @@ -0,0 +1,12 @@ +{ + "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://etherscan.io/token/0x1ceb5cb57c4d4e2b2433641b95dd330a33185a44", + "research": "https://research.binance.com/en/projects/keep3rv1", + "type": "ERC20", + "symbol": "KP3R", + "decimals": 18, + "status": "active", + "id": "0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44/logo.png b/blockchains/ethereum/assets/0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44/logo.png new file mode 100644 index 00000000..2ee34a04 Binary files /dev/null and b/blockchains/ethereum/assets/0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44/logo.png differ diff --git a/blockchains/ethereum/assets/0x1cF4592ebfFd730c7dc92c1bdFFDfc3B9EfCf29a/info.json b/blockchains/ethereum/assets/0x1cF4592ebfFd730c7dc92c1bdFFDfc3B9EfCf29a/info.json new file mode 100644 index 00000000..edc9f295 --- /dev/null +++ b/blockchains/ethereum/assets/0x1cF4592ebfFd730c7dc92c1bdFFDfc3B9EfCf29a/info.json @@ -0,0 +1,11 @@ +{ + "name": "WAVES", + "website": "https://waves.tech", + "description": "The main token for Waves Protocol.", + "explorer": "https://etherscan.io/token/0x1cf4592ebffd730c7dc92c1bdffdfc3b9efcf29a", + "type": "ERC20", + "symbol": "WAVES", + "decimals": 18, + "status": "active", + "id": "0x1cF4592ebfFd730c7dc92c1bdFFDfc3B9EfCf29a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1cF4592ebfFd730c7dc92c1bdFFDfc3B9EfCf29a/logo.png b/blockchains/ethereum/assets/0x1cF4592ebfFd730c7dc92c1bdFFDfc3B9EfCf29a/logo.png new file mode 100644 index 00000000..0c5bf36e Binary files /dev/null and b/blockchains/ethereum/assets/0x1cF4592ebfFd730c7dc92c1bdFFDfc3B9EfCf29a/logo.png differ diff --git a/blockchains/ethereum/assets/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C/info.json b/blockchains/ethereum/assets/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C/info.json new file mode 100644 index 00000000..742b3cf9 --- /dev/null +++ b/blockchains/ethereum/assets/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C/info.json @@ -0,0 +1,28 @@ +{ + "name": "MongCoin", + "type": "ERC20", + "symbol": "$MONG", + "decimals": 18, + "website": "https://mongmob.xyz/", + "description": "The MongMob was born out of the incoherent ramblings of a US congressman.", + "explorer": "https://etherscan.io/token/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C", + "status": "active", + "id": "0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C", + "links": [ + { + "name": "x", + "url": "https://x.com/mong_coin" + }, + { + "name": "medium", + "url": "https://medium.com/@mongs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mongcoin/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C/logo.png b/blockchains/ethereum/assets/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C/logo.png new file mode 100644 index 00000000..9d52df39 Binary files /dev/null and b/blockchains/ethereum/assets/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C/logo.png differ diff --git a/blockchains/ethereum/assets/0x1d086b868d78040635CB8600bA733f12DB48cB42/info.json b/blockchains/ethereum/assets/0x1d086b868d78040635CB8600bA733f12DB48cB42/info.json new file mode 100644 index 00000000..7f3216bc --- /dev/null +++ b/blockchains/ethereum/assets/0x1d086b868d78040635CB8600bA733f12DB48cB42/info.json @@ -0,0 +1,11 @@ +{ + "name": "XLXPay", + "symbol": "XLX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1d086b868d78040635CB8600bA733f12DB48cB42", + "status": "abandoned", + "id": "0x1d086b868d78040635CB8600bA733f12DB48cB42" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1d086b868d78040635CB8600bA733f12DB48cB42/logo.png b/blockchains/ethereum/assets/0x1d086b868d78040635CB8600bA733f12DB48cB42/logo.png new file mode 100644 index 00000000..17f7aee8 Binary files /dev/null and b/blockchains/ethereum/assets/0x1d086b868d78040635CB8600bA733f12DB48cB42/logo.png differ diff --git a/blockchains/ethereum/assets/0x1d350417d9787E000cc1b95d70E9536DcD91F373/info.json b/blockchains/ethereum/assets/0x1d350417d9787E000cc1b95d70E9536DcD91F373/info.json new file mode 100644 index 00000000..c1a020ec --- /dev/null +++ b/blockchains/ethereum/assets/0x1d350417d9787E000cc1b95d70E9536DcD91F373/info.json @@ -0,0 +1,29 @@ +{ + "name": "mIAU Token", + "website": "https://mirror.finance", + "description": "Wrapped Mirror IAU Token.", + "explorer": "https://etherscan.io/token/0x1d350417d9787E000cc1b95d70E9536DcD91F373", + "type": "ERC20", + "symbol": "mIAU", + "decimals": 18, + "status": "active", + "id": "0x1d350417d9787E000cc1b95d70E9536DcD91F373", + "links": [ + { + "name": "x", + "url": "https://x.com/MirrorProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/mirror_protocol" + }, + { + "name": "discord", + "url": "https://discord.com/MirrorProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/@mirror-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1d350417d9787E000cc1b95d70E9536DcD91F373/logo.png b/blockchains/ethereum/assets/0x1d350417d9787E000cc1b95d70E9536DcD91F373/logo.png new file mode 100644 index 00000000..c1eca30e Binary files /dev/null and b/blockchains/ethereum/assets/0x1d350417d9787E000cc1b95d70E9536DcD91F373/logo.png differ diff --git a/blockchains/ethereum/assets/0x1d37986F252d0e349522EA6C3B98Cb935495E63E/info.json b/blockchains/ethereum/assets/0x1d37986F252d0e349522EA6C3B98Cb935495E63E/info.json new file mode 100644 index 00000000..b53b5b71 --- /dev/null +++ b/blockchains/ethereum/assets/0x1d37986F252d0e349522EA6C3B98Cb935495E63E/info.json @@ -0,0 +1,22 @@ +{ + "name": "ChartEx", + "website": "https://chartex.pro", + "description": "ChartEx is a leading provider of full Candlestick charting for decentralised markets such as Uniswap, the largest DEX running on the Ethereum Network.", + "explorer": "https://etherscan.io/token/0x1d37986F252d0e349522EA6C3B98Cb935495E63E", + "research": "", + "type": "ERC20", + "symbol": "CHART", + "decimals": 18, + "status": "active", + "id": "0x1d37986F252d0e349522EA6C3B98Cb935495E63E", + "links": [ + { + "name": "github", + "url": "https://github.com/chartexpro" + }, + { + "name": "whitepaper", + "url": "https://about.chartex.pro" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1d37986F252d0e349522EA6C3B98Cb935495E63E/logo.png b/blockchains/ethereum/assets/0x1d37986F252d0e349522EA6C3B98Cb935495E63E/logo.png new file mode 100644 index 00000000..162822aa Binary files /dev/null and b/blockchains/ethereum/assets/0x1d37986F252d0e349522EA6C3B98Cb935495E63E/logo.png differ diff --git a/blockchains/ethereum/assets/0x1d3B136dA37689C11919Ec5441BC89AF8E03BDe0/info.json b/blockchains/ethereum/assets/0x1d3B136dA37689C11919Ec5441BC89AF8E03BDe0/info.json new file mode 100644 index 00000000..83d64bd2 --- /dev/null +++ b/blockchains/ethereum/assets/0x1d3B136dA37689C11919Ec5441BC89AF8E03BDe0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bionik Protocol", + "symbol": "BPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1d3B136dA37689C11919Ec5441BC89AF8E03BDe0", + "status": "abandoned", + "id": "0x1d3B136dA37689C11919Ec5441BC89AF8E03BDe0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1d3B136dA37689C11919Ec5441BC89AF8E03BDe0/logo.png b/blockchains/ethereum/assets/0x1d3B136dA37689C11919Ec5441BC89AF8E03BDe0/logo.png new file mode 100644 index 00000000..7526c236 Binary files /dev/null and b/blockchains/ethereum/assets/0x1d3B136dA37689C11919Ec5441BC89AF8E03BDe0/logo.png differ diff --git a/blockchains/ethereum/assets/0x1d462414fe14cf489c7A21CaC78509f4bF8CD7c0/info.json b/blockchains/ethereum/assets/0x1d462414fe14cf489c7A21CaC78509f4bF8CD7c0/info.json new file mode 100644 index 00000000..1ac7660a --- /dev/null +++ b/blockchains/ethereum/assets/0x1d462414fe14cf489c7A21CaC78509f4bF8CD7c0/info.json @@ -0,0 +1,11 @@ +{ + "name": "CanYaCoin", + "symbol": "CAN", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://canya.io/", + "explorer": "https://etherscan.io/token/0x1d462414fe14cf489c7A21CaC78509f4bF8CD7c0", + "status": "abandoned", + "id": "0x1d462414fe14cf489c7A21CaC78509f4bF8CD7c0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1d462414fe14cf489c7A21CaC78509f4bF8CD7c0/logo.png b/blockchains/ethereum/assets/0x1d462414fe14cf489c7A21CaC78509f4bF8CD7c0/logo.png new file mode 100755 index 00000000..57e0c2e5 Binary files /dev/null and b/blockchains/ethereum/assets/0x1d462414fe14cf489c7A21CaC78509f4bF8CD7c0/logo.png differ diff --git a/blockchains/ethereum/assets/0x1d464Ac5e046e5fE280c9588eDF8eB681b07008F/info.json b/blockchains/ethereum/assets/0x1d464Ac5e046e5fE280c9588eDF8eB681b07008F/info.json new file mode 100644 index 00000000..2005eab8 --- /dev/null +++ b/blockchains/ethereum/assets/0x1d464Ac5e046e5fE280c9588eDF8eB681b07008F/info.json @@ -0,0 +1,11 @@ +{ + "name": "GMB", + "symbol": "GMB", + "type": "ERC20", + "decimals": 18, + "description": "GMB is a platform that powers a dual cryptocurrency system, created to facilitate ease of transacting in the real world with a virtually generated money.", + "website": "https://gmbplatform.io/", + "explorer": "https://etherscan.io/token/0x1d464Ac5e046e5fE280c9588eDF8eB681b07008F", + "status": "active", + "id": "0x1d464Ac5e046e5fE280c9588eDF8eB681b07008F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1d464Ac5e046e5fE280c9588eDF8eB681b07008F/logo.png b/blockchains/ethereum/assets/0x1d464Ac5e046e5fE280c9588eDF8eB681b07008F/logo.png new file mode 100644 index 00000000..e0fc4ca8 Binary files /dev/null and b/blockchains/ethereum/assets/0x1d464Ac5e046e5fE280c9588eDF8eB681b07008F/logo.png differ diff --git a/blockchains/ethereum/assets/0x1d70f01D68EdC64110F1Ae46A0C9D18ed4cB644b/info.json b/blockchains/ethereum/assets/0x1d70f01D68EdC64110F1Ae46A0C9D18ed4cB644b/info.json new file mode 100644 index 00000000..268903bd --- /dev/null +++ b/blockchains/ethereum/assets/0x1d70f01D68EdC64110F1Ae46A0C9D18ed4cB644b/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg6000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1d70f01D68EdC64110F1Ae46A0C9D18ed4cB644b", + "status": "abandoned", + "id": "0x1d70f01D68EdC64110F1Ae46A0C9D18ed4cB644b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1d70f01D68EdC64110F1Ae46A0C9D18ed4cB644b/logo.png b/blockchains/ethereum/assets/0x1d70f01D68EdC64110F1Ae46A0C9D18ed4cB644b/logo.png new file mode 100644 index 00000000..9ed35835 Binary files /dev/null and b/blockchains/ethereum/assets/0x1d70f01D68EdC64110F1Ae46A0C9D18ed4cB644b/logo.png differ diff --git a/blockchains/ethereum/assets/0x1d8cA7baf0895Da8afcf153657bE064b5092a274/info.json b/blockchains/ethereum/assets/0x1d8cA7baf0895Da8afcf153657bE064b5092a274/info.json new file mode 100644 index 00000000..b8c3512f --- /dev/null +++ b/blockchains/ethereum/assets/0x1d8cA7baf0895Da8afcf153657bE064b5092a274/info.json @@ -0,0 +1,11 @@ +{ + "name": "EthLyteToken", + "symbol": "EtLyteT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ethlyte.tech", + "explorer": "https://etherscan.io/token/0x1d8cA7baf0895Da8afcf153657bE064b5092a274", + "status": "abandoned", + "id": "0x1d8cA7baf0895Da8afcf153657bE064b5092a274" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1d8cA7baf0895Da8afcf153657bE064b5092a274/logo.png b/blockchains/ethereum/assets/0x1d8cA7baf0895Da8afcf153657bE064b5092a274/logo.png new file mode 100644 index 00000000..fd0394bf Binary files /dev/null and b/blockchains/ethereum/assets/0x1d8cA7baf0895Da8afcf153657bE064b5092a274/logo.png differ diff --git a/blockchains/ethereum/assets/0x1d9a3CeF66B01D44003b9db0e00ec3fd44746988/info.json b/blockchains/ethereum/assets/0x1d9a3CeF66B01D44003b9db0e00ec3fd44746988/info.json new file mode 100644 index 00000000..9e357bb6 --- /dev/null +++ b/blockchains/ethereum/assets/0x1d9a3CeF66B01D44003b9db0e00ec3fd44746988/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETHWSS Coin", + "symbol": "WSS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1d9a3CeF66B01D44003b9db0e00ec3fd44746988", + "status": "abandoned", + "id": "0x1d9a3CeF66B01D44003b9db0e00ec3fd44746988" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1d9a3CeF66B01D44003b9db0e00ec3fd44746988/logo.png b/blockchains/ethereum/assets/0x1d9a3CeF66B01D44003b9db0e00ec3fd44746988/logo.png new file mode 100644 index 00000000..f57af223 Binary files /dev/null and b/blockchains/ethereum/assets/0x1d9a3CeF66B01D44003b9db0e00ec3fd44746988/logo.png differ diff --git a/blockchains/ethereum/assets/0x1dA01e84F3d4e6716F274c987Ae4bEE5DC3C8288/info.json b/blockchains/ethereum/assets/0x1dA01e84F3d4e6716F274c987Ae4bEE5DC3C8288/info.json new file mode 100644 index 00000000..d6f755bb --- /dev/null +++ b/blockchains/ethereum/assets/0x1dA01e84F3d4e6716F274c987Ae4bEE5DC3C8288/info.json @@ -0,0 +1,11 @@ +{ + "name": "DefiBids", + "website": "https://defibids.com", + "description": "DefiBids is a one of a kind decentralized auction site. Defi Bids allows users to bid on packages of existing ERC20 tokens.", + "explorer": "https://etherscan.io/token/0x1dA01e84F3d4e6716F274c987Ae4bEE5DC3C8288", + "type": "ERC20", + "symbol": "BID", + "decimals": 18, + "status": "active", + "id": "0x1dA01e84F3d4e6716F274c987Ae4bEE5DC3C8288" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1dA01e84F3d4e6716F274c987Ae4bEE5DC3C8288/logo.png b/blockchains/ethereum/assets/0x1dA01e84F3d4e6716F274c987Ae4bEE5DC3C8288/logo.png new file mode 100644 index 00000000..6facce6b Binary files /dev/null and b/blockchains/ethereum/assets/0x1dA01e84F3d4e6716F274c987Ae4bEE5DC3C8288/logo.png differ diff --git a/blockchains/ethereum/assets/0x1dA4d9601A5982C1297F3Bb3549292491F12f0D5/info.json b/blockchains/ethereum/assets/0x1dA4d9601A5982C1297F3Bb3549292491F12f0D5/info.json new file mode 100644 index 00000000..e71f14a6 --- /dev/null +++ b/blockchains/ethereum/assets/0x1dA4d9601A5982C1297F3Bb3549292491F12f0D5/info.json @@ -0,0 +1,11 @@ +{ + "name": "ArilCoin", + "symbol": "ARC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1dA4d9601A5982C1297F3Bb3549292491F12f0D5", + "status": "abandoned", + "id": "0x1dA4d9601A5982C1297F3Bb3549292491F12f0D5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1dA4d9601A5982C1297F3Bb3549292491F12f0D5/logo.png b/blockchains/ethereum/assets/0x1dA4d9601A5982C1297F3Bb3549292491F12f0D5/logo.png new file mode 100644 index 00000000..659f1ea3 Binary files /dev/null and b/blockchains/ethereum/assets/0x1dA4d9601A5982C1297F3Bb3549292491F12f0D5/logo.png differ diff --git a/blockchains/ethereum/assets/0x1dABF6Ab0eB8E4208E7E9302CeC7A014068952e4/info.json b/blockchains/ethereum/assets/0x1dABF6Ab0eB8E4208E7E9302CeC7A014068952e4/info.json new file mode 100644 index 00000000..64705696 --- /dev/null +++ b/blockchains/ethereum/assets/0x1dABF6Ab0eB8E4208E7E9302CeC7A014068952e4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Curate", + "symbol": "CURE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1dABF6Ab0eB8E4208E7E9302CeC7A014068952e4", + "status": "abandoned", + "id": "0x1dABF6Ab0eB8E4208E7E9302CeC7A014068952e4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1dABF6Ab0eB8E4208E7E9302CeC7A014068952e4/logo.png b/blockchains/ethereum/assets/0x1dABF6Ab0eB8E4208E7E9302CeC7A014068952e4/logo.png new file mode 100644 index 00000000..dd190012 Binary files /dev/null and b/blockchains/ethereum/assets/0x1dABF6Ab0eB8E4208E7E9302CeC7A014068952e4/logo.png differ diff --git a/blockchains/ethereum/assets/0x1dB38e93424ee1a2E86d060092154DD8C934398D/info.json b/blockchains/ethereum/assets/0x1dB38e93424ee1a2E86d060092154DD8C934398D/info.json new file mode 100644 index 00000000..caee8172 --- /dev/null +++ b/blockchains/ethereum/assets/0x1dB38e93424ee1a2E86d060092154DD8C934398D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dolar Today", + "symbol": "DTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1dB38e93424ee1a2E86d060092154DD8C934398D", + "status": "abandoned", + "id": "0x1dB38e93424ee1a2E86d060092154DD8C934398D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1dB38e93424ee1a2E86d060092154DD8C934398D/logo.png b/blockchains/ethereum/assets/0x1dB38e93424ee1a2E86d060092154DD8C934398D/logo.png new file mode 100644 index 00000000..4b6b540f Binary files /dev/null and b/blockchains/ethereum/assets/0x1dB38e93424ee1a2E86d060092154DD8C934398D/logo.png differ diff --git a/blockchains/ethereum/assets/0x1dD80016e3d4ae146Ee2EBB484e8edD92dacC4ce/info.json b/blockchains/ethereum/assets/0x1dD80016e3d4ae146Ee2EBB484e8edD92dacC4ce/info.json new file mode 100644 index 00000000..abe30dad --- /dev/null +++ b/blockchains/ethereum/assets/0x1dD80016e3d4ae146Ee2EBB484e8edD92dacC4ce/info.json @@ -0,0 +1,17 @@ +{ + "name": "Lead Wallet", + "website": "https://leadwallet.io", + "description": "Lead Wallet is a simple decentralized multi-crypto wallet application that allow users to spend, store, swap, stake and exchange cryptocurrencies.", + "explorer": "https://etherscan.io/token/0x1dD80016e3d4ae146Ee2EBB484e8edD92dacC4ce", + "type": "ERC20", + "symbol": "LEAD", + "decimals": 18, + "status": "active", + "id": "0x1dD80016e3d4ae146Ee2EBB484e8edD92dacC4ce", + "links": [ + { + "name": "github", + "url": "https://github.com/leadwallet" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1dD80016e3d4ae146Ee2EBB484e8edD92dacC4ce/logo.png b/blockchains/ethereum/assets/0x1dD80016e3d4ae146Ee2EBB484e8edD92dacC4ce/logo.png new file mode 100644 index 00000000..ccda2423 Binary files /dev/null and b/blockchains/ethereum/assets/0x1dD80016e3d4ae146Ee2EBB484e8edD92dacC4ce/logo.png differ diff --git a/blockchains/ethereum/assets/0x1dEa979ae76f26071870F824088dA78979eb91C8/info.json b/blockchains/ethereum/assets/0x1dEa979ae76f26071870F824088dA78979eb91C8/info.json new file mode 100644 index 00000000..50319918 --- /dev/null +++ b/blockchains/ethereum/assets/0x1dEa979ae76f26071870F824088dA78979eb91C8/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPINDLE", + "symbol": "SPD", + "type": "ERC20", + "decimals": 18, + "description": "Unique Investment/Asset Management Platform.", + "website": "https://spindle.zone/en/", + "explorer": "https://etherscan.io/token/0x1dEa979ae76f26071870F824088dA78979eb91C8", + "status": "active", + "id": "0x1dEa979ae76f26071870F824088dA78979eb91C8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1dEa979ae76f26071870F824088dA78979eb91C8/logo.png b/blockchains/ethereum/assets/0x1dEa979ae76f26071870F824088dA78979eb91C8/logo.png new file mode 100755 index 00000000..f62809e2 Binary files /dev/null and b/blockchains/ethereum/assets/0x1dEa979ae76f26071870F824088dA78979eb91C8/logo.png differ diff --git a/blockchains/ethereum/assets/0x1dFEc1Cf1336c572c2D2E34fe8F6Aa2F409C8251/info.json b/blockchains/ethereum/assets/0x1dFEc1Cf1336c572c2D2E34fe8F6Aa2F409C8251/info.json new file mode 100644 index 00000000..9fcfb29c --- /dev/null +++ b/blockchains/ethereum/assets/0x1dFEc1Cf1336c572c2D2E34fe8F6Aa2F409C8251/info.json @@ -0,0 +1,11 @@ +{ + "name": "metalblock", + "symbol": "MTBK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://metalblock.io/", + "explorer": "https://etherscan.io/token/0x1dFEc1Cf1336c572c2D2E34fe8F6Aa2F409C8251", + "status": "active", + "id": "0x1dFEc1Cf1336c572c2D2E34fe8F6Aa2F409C8251" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1dFEc1Cf1336c572c2D2E34fe8F6Aa2F409C8251/logo.png b/blockchains/ethereum/assets/0x1dFEc1Cf1336c572c2D2E34fe8F6Aa2F409C8251/logo.png new file mode 100644 index 00000000..b2e483fa Binary files /dev/null and b/blockchains/ethereum/assets/0x1dFEc1Cf1336c572c2D2E34fe8F6Aa2F409C8251/logo.png differ diff --git a/blockchains/ethereum/assets/0x1da015eA4AD2d3e5586E54b9fB0682Ca3CA8A17a/info.json b/blockchains/ethereum/assets/0x1da015eA4AD2d3e5586E54b9fB0682Ca3CA8A17a/info.json new file mode 100644 index 00000000..75f8ccb0 --- /dev/null +++ b/blockchains/ethereum/assets/0x1da015eA4AD2d3e5586E54b9fB0682Ca3CA8A17a/info.json @@ -0,0 +1,11 @@ +{ + "name": "DragonToken", + "symbol": "DT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://dragonex.io/en-us/", + "explorer": "https://etherscan.io/token/0x1da015eA4AD2d3e5586E54b9fB0682Ca3CA8A17a", + "status": "abandoned", + "id": "0x1da015eA4AD2d3e5586E54b9fB0682Ca3CA8A17a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1da015eA4AD2d3e5586E54b9fB0682Ca3CA8A17a/logo.png b/blockchains/ethereum/assets/0x1da015eA4AD2d3e5586E54b9fB0682Ca3CA8A17a/logo.png new file mode 100644 index 00000000..9b7d55ea Binary files /dev/null and b/blockchains/ethereum/assets/0x1da015eA4AD2d3e5586E54b9fB0682Ca3CA8A17a/logo.png differ diff --git a/blockchains/ethereum/assets/0x1da65B1868e2d36d06d7A44DBD2Be98e49E1f7f9/info.json b/blockchains/ethereum/assets/0x1da65B1868e2d36d06d7A44DBD2Be98e49E1f7f9/info.json new file mode 100644 index 00000000..bb689dff --- /dev/null +++ b/blockchains/ethereum/assets/0x1da65B1868e2d36d06d7A44DBD2Be98e49E1f7f9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Testa", + "website": "https://testa.finance/", + "description": "Testa is a community token built for anyone who want to enjoy benefits and perks in the CeFi and DeFi spaces granted by key partners from DAO Consensus network.", + "explorer": "https://etherscan.io/token/0x1da65B1868e2d36d06d7A44DBD2Be98e49E1f7f9", + "type": "ERC20", + "symbol": "TESTA", + "decimals": 18, + "status": "active", + "id": "0x1da65B1868e2d36d06d7A44DBD2Be98e49E1f7f9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1da65B1868e2d36d06d7A44DBD2Be98e49E1f7f9/logo.png b/blockchains/ethereum/assets/0x1da65B1868e2d36d06d7A44DBD2Be98e49E1f7f9/logo.png new file mode 100644 index 00000000..ce80e16b Binary files /dev/null and b/blockchains/ethereum/assets/0x1da65B1868e2d36d06d7A44DBD2Be98e49E1f7f9/logo.png differ diff --git a/blockchains/ethereum/assets/0x1db9Cf016Fe7CE4D9F4bA2d8FD2834E72d43198c/info.json b/blockchains/ethereum/assets/0x1db9Cf016Fe7CE4D9F4bA2d8FD2834E72d43198c/info.json new file mode 100644 index 00000000..6b1b1de9 --- /dev/null +++ b/blockchains/ethereum/assets/0x1db9Cf016Fe7CE4D9F4bA2d8FD2834E72d43198c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Luno COIN", + "symbol": "LUNO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1db9Cf016Fe7CE4D9F4bA2d8FD2834E72d43198c", + "status": "abandoned", + "id": "0x1db9Cf016Fe7CE4D9F4bA2d8FD2834E72d43198c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1db9Cf016Fe7CE4D9F4bA2d8FD2834E72d43198c/logo.png b/blockchains/ethereum/assets/0x1db9Cf016Fe7CE4D9F4bA2d8FD2834E72d43198c/logo.png new file mode 100644 index 00000000..6dfd3421 Binary files /dev/null and b/blockchains/ethereum/assets/0x1db9Cf016Fe7CE4D9F4bA2d8FD2834E72d43198c/logo.png differ diff --git a/blockchains/ethereum/assets/0x1dbED266D20D27d0bd1c4707FC002dEfE7E0267B/info.json b/blockchains/ethereum/assets/0x1dbED266D20D27d0bd1c4707FC002dEfE7E0267B/info.json new file mode 100644 index 00000000..20a08a3e --- /dev/null +++ b/blockchains/ethereum/assets/0x1dbED266D20D27d0bd1c4707FC002dEfE7E0267B/info.json @@ -0,0 +1,11 @@ +{ + "name": "intimate", + "symbol": "ITM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1dbED266D20D27d0bd1c4707FC002dEfE7E0267B", + "status": "abandoned", + "id": "0x1dbED266D20D27d0bd1c4707FC002dEfE7E0267B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1dbED266D20D27d0bd1c4707FC002dEfE7E0267B/logo.png b/blockchains/ethereum/assets/0x1dbED266D20D27d0bd1c4707FC002dEfE7E0267B/logo.png new file mode 100644 index 00000000..03623bf1 Binary files /dev/null and b/blockchains/ethereum/assets/0x1dbED266D20D27d0bd1c4707FC002dEfE7E0267B/logo.png differ diff --git a/blockchains/ethereum/assets/0x1e05F0A0f326bD08Ec816C6A63E88fdC4B519E5D/info.json b/blockchains/ethereum/assets/0x1e05F0A0f326bD08Ec816C6A63E88fdC4B519E5D/info.json new file mode 100644 index 00000000..42dce2a3 --- /dev/null +++ b/blockchains/ethereum/assets/0x1e05F0A0f326bD08Ec816C6A63E88fdC4B519E5D/info.json @@ -0,0 +1,11 @@ +{ + "name": "DollarX", + "symbol": "DOLX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1e05F0A0f326bD08Ec816C6A63E88fdC4B519E5D", + "status": "abandoned", + "id": "0x1e05F0A0f326bD08Ec816C6A63E88fdC4B519E5D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1e05F0A0f326bD08Ec816C6A63E88fdC4B519E5D/logo.png b/blockchains/ethereum/assets/0x1e05F0A0f326bD08Ec816C6A63E88fdC4B519E5D/logo.png new file mode 100644 index 00000000..2f9e53bc Binary files /dev/null and b/blockchains/ethereum/assets/0x1e05F0A0f326bD08Ec816C6A63E88fdC4B519E5D/logo.png differ diff --git a/blockchains/ethereum/assets/0x1e49fF77c355A3e38D6651ce8404AF0E48c5395f/info.json b/blockchains/ethereum/assets/0x1e49fF77c355A3e38D6651ce8404AF0E48c5395f/info.json new file mode 100644 index 00000000..0c5d438e --- /dev/null +++ b/blockchains/ethereum/assets/0x1e49fF77c355A3e38D6651ce8404AF0E48c5395f/info.json @@ -0,0 +1,11 @@ +{ + "name": "ModulTrade Token", + "symbol": "MTRc", + "type": "ERC20", + "decimals": 18, + "description": "A smart-contract open ecosystem providing small businesses access to global trade by using a crypto token for payment or borrowing.", + "website": "https://modultrade.com/", + "explorer": "https://etherscan.io/token/0x1e49fF77c355A3e38D6651ce8404AF0E48c5395f", + "status": "active", + "id": "0x1e49fF77c355A3e38D6651ce8404AF0E48c5395f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1e49fF77c355A3e38D6651ce8404AF0E48c5395f/logo.png b/blockchains/ethereum/assets/0x1e49fF77c355A3e38D6651ce8404AF0E48c5395f/logo.png new file mode 100755 index 00000000..23c14bcf Binary files /dev/null and b/blockchains/ethereum/assets/0x1e49fF77c355A3e38D6651ce8404AF0E48c5395f/logo.png differ diff --git a/blockchains/ethereum/assets/0x1e4e36b3F011d862fd70006804da8fceFe89d3d8/info.json b/blockchains/ethereum/assets/0x1e4e36b3F011d862fd70006804da8fceFe89d3d8/info.json new file mode 100644 index 00000000..e087010f --- /dev/null +++ b/blockchains/ethereum/assets/0x1e4e36b3F011d862fd70006804da8fceFe89d3d8/info.json @@ -0,0 +1,11 @@ +{ + "name": "VenusToken", + "symbol": "VNS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1e4e36b3F011d862fd70006804da8fceFe89d3d8", + "status": "abandoned", + "id": "0x1e4e36b3F011d862fd70006804da8fceFe89d3d8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1e4e36b3F011d862fd70006804da8fceFe89d3d8/logo.png b/blockchains/ethereum/assets/0x1e4e36b3F011d862fd70006804da8fceFe89d3d8/logo.png new file mode 100644 index 00000000..ea061789 Binary files /dev/null and b/blockchains/ethereum/assets/0x1e4e36b3F011d862fd70006804da8fceFe89d3d8/logo.png differ diff --git a/blockchains/ethereum/assets/0x1e66008a24a486456A796E0c771fdc0cDf43cAD9/info.json b/blockchains/ethereum/assets/0x1e66008a24a486456A796E0c771fdc0cDf43cAD9/info.json new file mode 100644 index 00000000..dd2779a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x1e66008a24a486456A796E0c771fdc0cDf43cAD9/info.json @@ -0,0 +1,11 @@ +{ + "name": "STELLAR CLASSIC", + "symbol": "XLMX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://stellar-classics.com/", + "explorer": "https://etherscan.io/token/0x1e66008a24a486456A796E0c771fdc0cDf43cAD9", + "status": "abandoned", + "id": "0x1e66008a24a486456A796E0c771fdc0cDf43cAD9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1e66008a24a486456A796E0c771fdc0cDf43cAD9/logo.png b/blockchains/ethereum/assets/0x1e66008a24a486456A796E0c771fdc0cDf43cAD9/logo.png new file mode 100755 index 00000000..1572ffdf Binary files /dev/null and b/blockchains/ethereum/assets/0x1e66008a24a486456A796E0c771fdc0cDf43cAD9/logo.png differ diff --git a/blockchains/ethereum/assets/0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40/info.json b/blockchains/ethereum/assets/0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40/info.json new file mode 100644 index 00000000..09a11b39 --- /dev/null +++ b/blockchains/ethereum/assets/0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40/info.json @@ -0,0 +1,11 @@ +{ + "name": "BCDN", + "symbol": "BCDN", + "type": "ERC20", + "decimals": 15, + "description": "BLOCKCDN is an intelligent CDN node deployment software based on open source Squid and combined with SDK and P2P technology.", + "website": "http://www.blockcdn.org/", + "explorer": "https://etherscan.io/token/0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40", + "status": "active", + "id": "0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40/logo.png b/blockchains/ethereum/assets/0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40/logo.png new file mode 100755 index 00000000..d61558ed Binary files /dev/null and b/blockchains/ethereum/assets/0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40/logo.png differ diff --git a/blockchains/ethereum/assets/0x1e906717De2E4A4600F13b6909736b0346bDde3E/info.json b/blockchains/ethereum/assets/0x1e906717De2E4A4600F13b6909736b0346bDde3E/info.json new file mode 100644 index 00000000..04d6a9b3 --- /dev/null +++ b/blockchains/ethereum/assets/0x1e906717De2E4A4600F13b6909736b0346bDde3E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pixel", + "symbol": "PIXEL", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1e906717De2E4A4600F13b6909736b0346bDde3E", + "status": "abandoned", + "id": "0x1e906717De2E4A4600F13b6909736b0346bDde3E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1e906717De2E4A4600F13b6909736b0346bDde3E/logo.png b/blockchains/ethereum/assets/0x1e906717De2E4A4600F13b6909736b0346bDde3E/logo.png new file mode 100644 index 00000000..9933849f Binary files /dev/null and b/blockchains/ethereum/assets/0x1e906717De2E4A4600F13b6909736b0346bDde3E/logo.png differ diff --git a/blockchains/ethereum/assets/0x1e92b260FFFF4B4eD45e9b6e5E99e26FFa629A6D/info.json b/blockchains/ethereum/assets/0x1e92b260FFFF4B4eD45e9b6e5E99e26FFa629A6D/info.json new file mode 100644 index 00000000..995409a6 --- /dev/null +++ b/blockchains/ethereum/assets/0x1e92b260FFFF4B4eD45e9b6e5E99e26FFa629A6D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Statiz", + "symbol": "STATIZ", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1e92b260FFFF4B4eD45e9b6e5E99e26FFa629A6D", + "status": "abandoned", + "id": "0x1e92b260FFFF4B4eD45e9b6e5E99e26FFa629A6D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1e92b260FFFF4B4eD45e9b6e5E99e26FFa629A6D/logo.png b/blockchains/ethereum/assets/0x1e92b260FFFF4B4eD45e9b6e5E99e26FFa629A6D/logo.png new file mode 100644 index 00000000..33d90be7 Binary files /dev/null and b/blockchains/ethereum/assets/0x1e92b260FFFF4B4eD45e9b6e5E99e26FFa629A6D/logo.png differ diff --git a/blockchains/ethereum/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json b/blockchains/ethereum/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json new file mode 100644 index 00000000..2b592750 --- /dev/null +++ b/blockchains/ethereum/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json @@ -0,0 +1,36 @@ +{ + "name": "WAGMI Game", + "type": "ERC20", + "symbol": "WAGMI", + "decimals": 18, + "website": "https://www.wagmigame.io", + "description": "WAGMI is the brilliant product of combining a Play-To-Earn game concept with a cultural acronym.", + "explorer": "https://etherscan.io/token/0x1e987DF68CC13d271e621ec82E050A1BbD62c180", + "status": "active", + "id": "0x1e987DF68CC13d271e621ec82E050A1BbD62c180", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WAGMIOfficialGroup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wagmi-game/" + }, + { + "name": "x", + "url": "https://x.com/WagmiGameCo" + }, + { + "name": "facebook", + "url": "https://facebook.com/wagmigame/" + }, + { + "name": "discord", + "url": "https://discord.com/wagmigame" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/logo.png b/blockchains/ethereum/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/logo.png new file mode 100644 index 00000000..2d14be7b Binary files /dev/null and b/blockchains/ethereum/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/logo.png differ diff --git a/blockchains/ethereum/assets/0x1eA1aaA7508cE9bB697478E16BEc57C438EB015c/info.json b/blockchains/ethereum/assets/0x1eA1aaA7508cE9bB697478E16BEc57C438EB015c/info.json new file mode 100644 index 00000000..9ac186c3 --- /dev/null +++ b/blockchains/ethereum/assets/0x1eA1aaA7508cE9bB697478E16BEc57C438EB015c/info.json @@ -0,0 +1,11 @@ +{ + "name": "OverPower Esports", + "symbol": "OPG", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1eA1aaA7508cE9bB697478E16BEc57C438EB015c", + "status": "abandoned", + "id": "0x1eA1aaA7508cE9bB697478E16BEc57C438EB015c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1eA1aaA7508cE9bB697478E16BEc57C438EB015c/logo.png b/blockchains/ethereum/assets/0x1eA1aaA7508cE9bB697478E16BEc57C438EB015c/logo.png new file mode 100644 index 00000000..0720e855 Binary files /dev/null and b/blockchains/ethereum/assets/0x1eA1aaA7508cE9bB697478E16BEc57C438EB015c/logo.png differ diff --git a/blockchains/ethereum/assets/0x1eAe15d9f4FA16f5278D02d2f8bDA8b0dcd31f71/info.json b/blockchains/ethereum/assets/0x1eAe15d9f4FA16f5278D02d2f8bDA8b0dcd31f71/info.json new file mode 100644 index 00000000..e10512d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x1eAe15d9f4FA16f5278D02d2f8bDA8b0dcd31f71/info.json @@ -0,0 +1,11 @@ +{ + "name": "Exceed", + "symbol": "EXC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1eAe15d9f4FA16f5278D02d2f8bDA8b0dcd31f71", + "status": "abandoned", + "id": "0x1eAe15d9f4FA16f5278D02d2f8bDA8b0dcd31f71" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1eAe15d9f4FA16f5278D02d2f8bDA8b0dcd31f71/logo.png b/blockchains/ethereum/assets/0x1eAe15d9f4FA16f5278D02d2f8bDA8b0dcd31f71/logo.png new file mode 100755 index 00000000..7b6ceced Binary files /dev/null and b/blockchains/ethereum/assets/0x1eAe15d9f4FA16f5278D02d2f8bDA8b0dcd31f71/logo.png differ diff --git a/blockchains/ethereum/assets/0x1eCe1739DAE08253aE582C404511B37355B42C84/info.json b/blockchains/ethereum/assets/0x1eCe1739DAE08253aE582C404511B37355B42C84/info.json new file mode 100644 index 00000000..b26cf5a5 --- /dev/null +++ b/blockchains/ethereum/assets/0x1eCe1739DAE08253aE582C404511B37355B42C84/info.json @@ -0,0 +1,11 @@ +{ + "name": "PICA", + "symbol": "PICA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1eCe1739DAE08253aE582C404511B37355B42C84", + "status": "abandoned", + "id": "0x1eCe1739DAE08253aE582C404511B37355B42C84" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1eCe1739DAE08253aE582C404511B37355B42C84/logo.png b/blockchains/ethereum/assets/0x1eCe1739DAE08253aE582C404511B37355B42C84/logo.png new file mode 100644 index 00000000..5eb40eea Binary files /dev/null and b/blockchains/ethereum/assets/0x1eCe1739DAE08253aE582C404511B37355B42C84/logo.png differ diff --git a/blockchains/ethereum/assets/0x1eD5a577c7623B557522eDEe1670846333dE678a/info.json b/blockchains/ethereum/assets/0x1eD5a577c7623B557522eDEe1670846333dE678a/info.json new file mode 100644 index 00000000..d80b1af3 --- /dev/null +++ b/blockchains/ethereum/assets/0x1eD5a577c7623B557522eDEe1670846333dE678a/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-15/30M75", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1eD5a577c7623B557522eDEe1670846333dE678a", + "status": "abandoned", + "id": "0x1eD5a577c7623B557522eDEe1670846333dE678a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1eD5a577c7623B557522eDEe1670846333dE678a/logo.png b/blockchains/ethereum/assets/0x1eD5a577c7623B557522eDEe1670846333dE678a/logo.png new file mode 100644 index 00000000..31213079 Binary files /dev/null and b/blockchains/ethereum/assets/0x1eD5a577c7623B557522eDEe1670846333dE678a/logo.png differ diff --git a/blockchains/ethereum/assets/0x1ed7AE1F0E2Fa4276DD7ddC786334a3dF81D50c0/info.json b/blockchains/ethereum/assets/0x1ed7AE1F0E2Fa4276DD7ddC786334a3dF81D50c0/info.json new file mode 100644 index 00000000..916610bb --- /dev/null +++ b/blockchains/ethereum/assets/0x1ed7AE1F0E2Fa4276DD7ddC786334a3dF81D50c0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Forty Seven Bank Token", + "symbol": "FSBT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.fsbt.tech/", + "explorer": "https://etherscan.io/token/0x1ed7AE1F0E2Fa4276DD7ddC786334a3dF81D50c0", + "status": "abandoned", + "id": "0x1ed7AE1F0E2Fa4276DD7ddC786334a3dF81D50c0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1ed7AE1F0E2Fa4276DD7ddC786334a3dF81D50c0/logo.png b/blockchains/ethereum/assets/0x1ed7AE1F0E2Fa4276DD7ddC786334a3dF81D50c0/logo.png new file mode 100644 index 00000000..1fd262fd Binary files /dev/null and b/blockchains/ethereum/assets/0x1ed7AE1F0E2Fa4276DD7ddC786334a3dF81D50c0/logo.png differ diff --git a/blockchains/ethereum/assets/0x1ee7198783514643Dd6DF4451751E66A7667FE6e/info.json b/blockchains/ethereum/assets/0x1ee7198783514643Dd6DF4451751E66A7667FE6e/info.json new file mode 100644 index 00000000..0ab31fba --- /dev/null +++ b/blockchains/ethereum/assets/0x1ee7198783514643Dd6DF4451751E66A7667FE6e/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R891447", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1ee7198783514643Dd6DF4451751E66A7667FE6e", + "status": "abandoned", + "id": "0x1ee7198783514643Dd6DF4451751E66A7667FE6e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1ee7198783514643Dd6DF4451751E66A7667FE6e/logo.png b/blockchains/ethereum/assets/0x1ee7198783514643Dd6DF4451751E66A7667FE6e/logo.png new file mode 100644 index 00000000..431112c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x1ee7198783514643Dd6DF4451751E66A7667FE6e/logo.png differ diff --git a/blockchains/ethereum/assets/0x1f88B2eF9ea3B29C90F559e645fC8CC2dc6F5b27/info.json b/blockchains/ethereum/assets/0x1f88B2eF9ea3B29C90F559e645fC8CC2dc6F5b27/info.json new file mode 100644 index 00000000..9c940f4a --- /dev/null +++ b/blockchains/ethereum/assets/0x1f88B2eF9ea3B29C90F559e645fC8CC2dc6F5b27/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoMoney", + "symbol": "GOM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1f88B2eF9ea3B29C90F559e645fC8CC2dc6F5b27", + "status": "abandoned", + "id": "0x1f88B2eF9ea3B29C90F559e645fC8CC2dc6F5b27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1f88B2eF9ea3B29C90F559e645fC8CC2dc6F5b27/logo.png b/blockchains/ethereum/assets/0x1f88B2eF9ea3B29C90F559e645fC8CC2dc6F5b27/logo.png new file mode 100644 index 00000000..87e94502 Binary files /dev/null and b/blockchains/ethereum/assets/0x1f88B2eF9ea3B29C90F559e645fC8CC2dc6F5b27/logo.png differ diff --git a/blockchains/ethereum/assets/0x1f8BDaD5f30EfFDf14c8da175349C7207Bb370f8/info.json b/blockchains/ethereum/assets/0x1f8BDaD5f30EfFDf14c8da175349C7207Bb370f8/info.json new file mode 100644 index 00000000..ec4f3f6d --- /dev/null +++ b/blockchains/ethereum/assets/0x1f8BDaD5f30EfFDf14c8da175349C7207Bb370f8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short LINK-DAI 4x v2", + "symbol": "dsLINK4x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1f8BDaD5f30EfFDf14c8da175349C7207Bb370f8", + "status": "abandoned", + "id": "0x1f8BDaD5f30EfFDf14c8da175349C7207Bb370f8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1f8BDaD5f30EfFDf14c8da175349C7207Bb370f8/logo.png b/blockchains/ethereum/assets/0x1f8BDaD5f30EfFDf14c8da175349C7207Bb370f8/logo.png new file mode 100644 index 00000000..3a9b9503 Binary files /dev/null and b/blockchains/ethereum/assets/0x1f8BDaD5f30EfFDf14c8da175349C7207Bb370f8/logo.png differ diff --git a/blockchains/ethereum/assets/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984/info.json b/blockchains/ethereum/assets/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984/info.json new file mode 100644 index 00000000..08ec2dab --- /dev/null +++ b/blockchains/ethereum/assets/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984/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://etherscan.io/token/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", + "research": "https://research.binance.com/en/projects/uniswap", + "type": "ERC20", + "symbol": "UNI", + "decimals": 18, + "status": "active", + "id": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", + "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/ethereum/assets/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984/logo.png b/blockchains/ethereum/assets/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984/logo.png new file mode 100644 index 00000000..893ef55c Binary files /dev/null and b/blockchains/ethereum/assets/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984/logo.png differ diff --git a/blockchains/ethereum/assets/0x1fC52f1ABade452Dd4674477D4711951700b3d27/info.json b/blockchains/ethereum/assets/0x1fC52f1ABade452Dd4674477D4711951700b3d27/info.json new file mode 100644 index 00000000..3b3d27a1 --- /dev/null +++ b/blockchains/ethereum/assets/0x1fC52f1ABade452Dd4674477D4711951700b3d27/info.json @@ -0,0 +1,11 @@ +{ + "name": "NOKU", + "symbol": "Old NOKU", + "type": "ERC20", + "decimals": 18, + "description": "Noku Chain an Ethereum sidechain dedicated to NFT tokens and DeFi", + "website": "https://www.noku.io/", + "explorer": "https://etherscan.io/token/0x1fC52f1ABade452Dd4674477D4711951700b3d27", + "status": "abandoned", + "id": "0x1fC52f1ABade452Dd4674477D4711951700b3d27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1fE2126bC05E4BB0468C4a198e930c889e1054a3/info.json b/blockchains/ethereum/assets/0x1fE2126bC05E4BB0468C4a198e930c889e1054a3/info.json new file mode 100644 index 00000000..246fa872 --- /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 00000000..2ce033b0 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 new file mode 100644 index 00000000..6da8902b --- /dev/null +++ b/blockchains/ethereum/assets/0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43/info.json @@ -0,0 +1,17 @@ +{ + "name": "ChainGuardians Governance Token", + "website": "https://chainguardians.io", + "description": "ChainGuardians Blockchain Video Game Defi Platform.", + "explorer": "https://etherscan.io/token/0x1fe24f25b1cf609b9c4e7e12d802e3640dfa5e43", + "type": "ERC20", + "symbol": "CGG", + "decimals": 18, + "status": "active", + "id": "0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43", + "links": [ + { + "name": "x", + "url": "https://x.com/chainguardians" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43/logo.png b/blockchains/ethereum/assets/0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43/logo.png new file mode 100644 index 00000000..c257c90b Binary files /dev/null and b/blockchains/ethereum/assets/0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43/logo.png differ diff --git a/blockchains/ethereum/assets/0x1fb5a8DCd70bE750a97Eaf8a47bBe74Ab7d3183e/info.json b/blockchains/ethereum/assets/0x1fb5a8DCd70bE750a97Eaf8a47bBe74Ab7d3183e/info.json new file mode 100644 index 00000000..21bab6e9 --- /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 00000000..a680bccc 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 new file mode 100644 index 00000000..f8b3e090 --- /dev/null +++ b/blockchains/ethereum/assets/0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987/info.json @@ -0,0 +1,25 @@ +{ + "name": "ReapChain", + "symbol": "REAP", + "type": "ERC20", + "decimals": 18, + "description": "REAP CHAIN aims to solve Trilemma problem of existing blockchains based on PoDC consensus structure and implements a scalable platform to create a fair and transparent sharing economy ecosystem.", + "website": "https://reapchain.com/", + "explorer": "https://etherscan.io/token/0x1fc5ef0337aea85c5f9198853a6e3a579a7a6987", + "status": "active", + "id": "0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987", + "links": [ + { + "name": "x", + "url": "https://x.com/ReapChain" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/MbaQ7RaZchMzjAam9yMS0Q" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/reapchain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987/logo.png b/blockchains/ethereum/assets/0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987/logo.png new file mode 100644 index 00000000..bcfd8caa Binary files /dev/null and b/blockchains/ethereum/assets/0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987/logo.png differ diff --git a/blockchains/ethereum/assets/0x1fd27F0CfC6f273b87A5E0F6fCf063422E7bCD6a/info.json b/blockchains/ethereum/assets/0x1fd27F0CfC6f273b87A5E0F6fCf063422E7bCD6a/info.json new file mode 100644 index 00000000..636d4886 --- /dev/null +++ b/blockchains/ethereum/assets/0x1fd27F0CfC6f273b87A5E0F6fCf063422E7bCD6a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Agrocoin", + "symbol": "AGRO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bitagro.io/", + "explorer": "https://etherscan.io/token/0x1fd27F0CfC6f273b87A5E0F6fCf063422E7bCD6a", + "status": "abandoned", + "id": "0x1fd27F0CfC6f273b87A5E0F6fCf063422E7bCD6a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1fd27F0CfC6f273b87A5E0F6fCf063422E7bCD6a/logo.png b/blockchains/ethereum/assets/0x1fd27F0CfC6f273b87A5E0F6fCf063422E7bCD6a/logo.png new file mode 100644 index 00000000..0f3d3866 Binary files /dev/null and b/blockchains/ethereum/assets/0x1fd27F0CfC6f273b87A5E0F6fCf063422E7bCD6a/logo.png differ diff --git a/blockchains/ethereum/assets/0x1fddE7525783c36153a8A6b618e2B5210a23Ce37/info.json b/blockchains/ethereum/assets/0x1fddE7525783c36153a8A6b618e2B5210a23Ce37/info.json new file mode 100644 index 00000000..3d25598d --- /dev/null +++ b/blockchains/ethereum/assets/0x1fddE7525783c36153a8A6b618e2B5210a23Ce37/info.json @@ -0,0 +1,11 @@ +{ + "name": "KOKOCoin", + "symbol": "KKC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1fddE7525783c36153a8A6b618e2B5210a23Ce37", + "status": "abandoned", + "id": "0x1fddE7525783c36153a8A6b618e2B5210a23Ce37" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1fddE7525783c36153a8A6b618e2B5210a23Ce37/logo.png b/blockchains/ethereum/assets/0x1fddE7525783c36153a8A6b618e2B5210a23Ce37/logo.png new file mode 100755 index 00000000..fa5e3af7 Binary files /dev/null and b/blockchains/ethereum/assets/0x1fddE7525783c36153a8A6b618e2B5210a23Ce37/logo.png differ diff --git a/blockchains/ethereum/assets/0x1fff4Dd33105054E853955C6d0dBa82859C01Cff/info.json b/blockchains/ethereum/assets/0x1fff4Dd33105054E853955C6d0dBa82859C01Cff/info.json new file mode 100644 index 00000000..ad37e4f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x1fff4Dd33105054E853955C6d0dBa82859C01Cff/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unochain token", + "symbol": "UNOC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x1fff4Dd33105054E853955C6d0dBa82859C01Cff", + "status": "abandoned", + "id": "0x1fff4Dd33105054E853955C6d0dBa82859C01Cff" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1fff4Dd33105054E853955C6d0dBa82859C01Cff/logo.png b/blockchains/ethereum/assets/0x1fff4Dd33105054E853955C6d0dBa82859C01Cff/logo.png new file mode 100644 index 00000000..f3fafd37 Binary files /dev/null and b/blockchains/ethereum/assets/0x1fff4Dd33105054E853955C6d0dBa82859C01Cff/logo.png differ diff --git a/blockchains/ethereum/assets/0x2001f2A0Cf801EcFda622f6C28fb6E10d803D969/info.json b/blockchains/ethereum/assets/0x2001f2A0Cf801EcFda622f6C28fb6E10d803D969/info.json new file mode 100644 index 00000000..7f44915f --- /dev/null +++ b/blockchains/ethereum/assets/0x2001f2A0Cf801EcFda622f6C28fb6E10d803D969/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinLoan", + "website": "https://coinloan.io", + "description": "The CoinLoan Token (CLT) is a part of the CoinLoan crypto lending platform.", + "explorer": "https://etherscan.io/token/0x2001f2A0Cf801EcFda622f6C28fb6E10d803D969", + "type": "ERC20", + "symbol": "CLT", + "decimals": 8, + "status": "active", + "id": "0x2001f2A0Cf801EcFda622f6C28fb6E10d803D969" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2001f2A0Cf801EcFda622f6C28fb6E10d803D969/logo.png b/blockchains/ethereum/assets/0x2001f2A0Cf801EcFda622f6C28fb6E10d803D969/logo.png new file mode 100644 index 00000000..cd74451a Binary files /dev/null and b/blockchains/ethereum/assets/0x2001f2A0Cf801EcFda622f6C28fb6E10d803D969/logo.png differ diff --git a/blockchains/ethereum/assets/0x2008e3057BD734e10AD13c9EAe45Ff132aBc1722/info.json b/blockchains/ethereum/assets/0x2008e3057BD734e10AD13c9EAe45Ff132aBc1722/info.json new file mode 100644 index 00000000..8827f3ee --- /dev/null +++ b/blockchains/ethereum/assets/0x2008e3057BD734e10AD13c9EAe45Ff132aBc1722/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zebi Coin", + "symbol": "ZCO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.zebi.io/", + "explorer": "https://etherscan.io/token/0x2008e3057BD734e10AD13c9EAe45Ff132aBc1722", + "status": "abandoned", + "id": "0x2008e3057BD734e10AD13c9EAe45Ff132aBc1722" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2008e3057BD734e10AD13c9EAe45Ff132aBc1722/logo.png b/blockchains/ethereum/assets/0x2008e3057BD734e10AD13c9EAe45Ff132aBc1722/logo.png new file mode 100644 index 00000000..11a4ceca Binary files /dev/null and b/blockchains/ethereum/assets/0x2008e3057BD734e10AD13c9EAe45Ff132aBc1722/logo.png differ diff --git a/blockchains/ethereum/assets/0x201a59270DD85Da26615A37bba3EED8665153abb/info.json b/blockchains/ethereum/assets/0x201a59270DD85Da26615A37bba3EED8665153abb/info.json new file mode 100644 index 00000000..1958c829 --- /dev/null +++ b/blockchains/ethereum/assets/0x201a59270DD85Da26615A37bba3EED8665153abb/info.json @@ -0,0 +1,11 @@ +{ + "name": "HonestCoin", + "symbol": "USDH", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x201a59270DD85Da26615A37bba3EED8665153abb", + "status": "abandoned", + "id": "0x201a59270DD85Da26615A37bba3EED8665153abb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x201a59270DD85Da26615A37bba3EED8665153abb/logo.png b/blockchains/ethereum/assets/0x201a59270DD85Da26615A37bba3EED8665153abb/logo.png new file mode 100644 index 00000000..786c8aef Binary files /dev/null and b/blockchains/ethereum/assets/0x201a59270DD85Da26615A37bba3EED8665153abb/logo.png differ diff --git a/blockchains/ethereum/assets/0x20224080aD516769723c9a4A18325fC4E8C9Ab5D/info.json b/blockchains/ethereum/assets/0x20224080aD516769723c9a4A18325fC4E8C9Ab5D/info.json new file mode 100644 index 00000000..81700b08 --- /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 00000000..4d148ee9 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 new file mode 100644 index 00000000..e5f50e55 --- /dev/null +++ b/blockchains/ethereum/assets/0x20398aD62bb2D930646d45a6D4292baa0b860C1f/info.json @@ -0,0 +1,17 @@ +{ + "name": "Flashstake", + "type": "ERC20", + "symbol": "FLASH", + "decimals": 18, + "website": "https://flashstake.io", + "description": "FLASH - The time travel of money", + "explorer": "https://etherscan.io/token/0x20398aD62bb2D930646d45a6D4292baa0b860C1f", + "status": "abandoned", + "id": "0x20398aD62bb2D930646d45a6D4292baa0b860C1f", + "links": [ + { + "name": "x", + "url": "https://x.com/Flashstake" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x203Ba630BFC57E3BD9f0DD8EA38B30e972d0E050/info.json b/blockchains/ethereum/assets/0x203Ba630BFC57E3BD9f0DD8EA38B30e972d0E050/info.json new file mode 100644 index 00000000..eb329def --- /dev/null +++ b/blockchains/ethereum/assets/0x203Ba630BFC57E3BD9f0DD8EA38B30e972d0E050/info.json @@ -0,0 +1,11 @@ +{ + "name": "U. S. Dollar Digital Safe", + "symbol": "USDDS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x203Ba630BFC57E3BD9f0DD8EA38B30e972d0E050", + "status": "abandoned", + "id": "0x203Ba630BFC57E3BD9f0DD8EA38B30e972d0E050" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x203Ba630BFC57E3BD9f0DD8EA38B30e972d0E050/logo.png b/blockchains/ethereum/assets/0x203Ba630BFC57E3BD9f0DD8EA38B30e972d0E050/logo.png new file mode 100644 index 00000000..312218f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x203Ba630BFC57E3BD9f0DD8EA38B30e972d0E050/logo.png differ diff --git a/blockchains/ethereum/assets/0x2041cb929669f989447bafCB379ea13B3a4D95Eb/info.json b/blockchains/ethereum/assets/0x2041cb929669f989447bafCB379ea13B3a4D95Eb/info.json new file mode 100644 index 00000000..01874f99 --- /dev/null +++ b/blockchains/ethereum/assets/0x2041cb929669f989447bafCB379ea13B3a4D95Eb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Class", + "symbol": "BCA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2041cb929669f989447bafCB379ea13B3a4D95Eb", + "status": "abandoned", + "id": "0x2041cb929669f989447bafCB379ea13B3a4D95Eb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2041cb929669f989447bafCB379ea13B3a4D95Eb/logo.png b/blockchains/ethereum/assets/0x2041cb929669f989447bafCB379ea13B3a4D95Eb/logo.png new file mode 100644 index 00000000..5412dc84 Binary files /dev/null and b/blockchains/ethereum/assets/0x2041cb929669f989447bafCB379ea13B3a4D95Eb/logo.png differ diff --git a/blockchains/ethereum/assets/0x20649d97b1393105cf92a5083fd2afF7C99eBe56/info.json b/blockchains/ethereum/assets/0x20649d97b1393105cf92a5083fd2afF7C99eBe56/info.json new file mode 100644 index 00000000..cece017e --- /dev/null +++ b/blockchains/ethereum/assets/0x20649d97b1393105cf92a5083fd2afF7C99eBe56/info.json @@ -0,0 +1,11 @@ +{ + "name": "STBTCDaiRebalancingSetToken", + "symbol": "STBTCDai", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.tokensets.com/set/btclovol", + "explorer": "https://etherscan.io/token/0x20649d97b1393105cf92a5083fd2afF7C99eBe56", + "status": "abandoned", + "id": "0x20649d97b1393105cf92a5083fd2afF7C99eBe56" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20649d97b1393105cf92a5083fd2afF7C99eBe56/logo.png b/blockchains/ethereum/assets/0x20649d97b1393105cf92a5083fd2afF7C99eBe56/logo.png new file mode 100644 index 00000000..3359c7aa Binary files /dev/null and b/blockchains/ethereum/assets/0x20649d97b1393105cf92a5083fd2afF7C99eBe56/logo.png differ diff --git a/blockchains/ethereum/assets/0x208b061317885fF0eF278E2fa7CF858549fa7ec0/info.json b/blockchains/ethereum/assets/0x208b061317885fF0eF278E2fa7CF858549fa7ec0/info.json new file mode 100644 index 00000000..c1d2848a --- /dev/null +++ b/blockchains/ethereum/assets/0x208b061317885fF0eF278E2fa7CF858549fa7ec0/info.json @@ -0,0 +1,11 @@ +{ + "name": "ITOChain Coin", + "symbol": "ITOC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x208b061317885fF0eF278E2fa7CF858549fa7ec0", + "status": "abandoned", + "id": "0x208b061317885fF0eF278E2fa7CF858549fa7ec0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x208b061317885fF0eF278E2fa7CF858549fa7ec0/logo.png b/blockchains/ethereum/assets/0x208b061317885fF0eF278E2fa7CF858549fa7ec0/logo.png new file mode 100644 index 00000000..201b1ced Binary files /dev/null and b/blockchains/ethereum/assets/0x208b061317885fF0eF278E2fa7CF858549fa7ec0/logo.png differ diff --git a/blockchains/ethereum/assets/0x208bbb6bCEA22ef2011789331405347394EbAa51/info.json b/blockchains/ethereum/assets/0x208bbb6bCEA22ef2011789331405347394EbAa51/info.json new file mode 100644 index 00000000..0c9b9b25 --- /dev/null +++ b/blockchains/ethereum/assets/0x208bbb6bCEA22ef2011789331405347394EbAa51/info.json @@ -0,0 +1,11 @@ +{ + "name": "AI", + "symbol": "1AI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.1ai.io/", + "explorer": "https://etherscan.io/token/0x208bbb6bCEA22ef2011789331405347394EbAa51", + "status": "abandoned", + "id": "0x208bbb6bCEA22ef2011789331405347394EbAa51" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x208bbb6bCEA22ef2011789331405347394EbAa51/logo.png b/blockchains/ethereum/assets/0x208bbb6bCEA22ef2011789331405347394EbAa51/logo.png new file mode 100644 index 00000000..0ec7b2e9 Binary files /dev/null and b/blockchains/ethereum/assets/0x208bbb6bCEA22ef2011789331405347394EbAa51/logo.png differ diff --git a/blockchains/ethereum/assets/0x20900587e569E3D0B2609BCa6Fb3469765ed0920/info.json b/blockchains/ethereum/assets/0x20900587e569E3D0B2609BCa6Fb3469765ed0920/info.json new file mode 100644 index 00000000..6d155706 --- /dev/null +++ b/blockchains/ethereum/assets/0x20900587e569E3D0B2609BCa6Fb3469765ed0920/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitpoint", + "symbol": "BTP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x20900587e569E3D0B2609BCa6Fb3469765ed0920", + "status": "abandoned", + "id": "0x20900587e569E3D0B2609BCa6Fb3469765ed0920" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20900587e569E3D0B2609BCa6Fb3469765ed0920/logo.png b/blockchains/ethereum/assets/0x20900587e569E3D0B2609BCa6Fb3469765ed0920/logo.png new file mode 100644 index 00000000..e849e324 Binary files /dev/null and b/blockchains/ethereum/assets/0x20900587e569E3D0B2609BCa6Fb3469765ed0920/logo.png differ diff --git a/blockchains/ethereum/assets/0x20945cA1df56D237fD40036d47E866C7DcCD2114/info.json b/blockchains/ethereum/assets/0x20945cA1df56D237fD40036d47E866C7DcCD2114/info.json new file mode 100644 index 00000000..2d65aa40 --- /dev/null +++ b/blockchains/ethereum/assets/0x20945cA1df56D237fD40036d47E866C7DcCD2114/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nsure", + "website": "https://nsure.network", + "description": "Nsure is an open insurance platform for Open Finance. The project borrows the idea of Lloyd’s London, a market place to trade insurance risks, where premiums are determined by a Dynamic Pricing Model. Capital mining will be implemented to secure capital required to back the risks at any point of time. A 3-phase crowd voting mechanism is used to ensure every claim is handled professionally.", + "explorer": "https://etherscan.io/token/0x20945ca1df56d237fd40036d47e866c7dccd2114", + "type": "ERC20", + "symbol": "Nsure", + "decimals": 18, + "status": "active", + "id": "0x20945cA1df56D237fD40036d47E866C7DcCD2114", + "links": [ + { + "name": "github", + "url": "https://github.com/nsure-tech" + }, + { + "name": "x", + "url": "https://x.com/Nsure" + }, + { + "name": "telegram", + "url": "https://t.me/nsurenet" + }, + { + "name": "medium", + "url": "https://medium.com/@nsure_network" + }, + { + "name": "whitepaper", + "url": "https://nsure.network/Nsure_WP_0.7.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20945cA1df56D237fD40036d47E866C7DcCD2114/logo.png b/blockchains/ethereum/assets/0x20945cA1df56D237fD40036d47E866C7DcCD2114/logo.png new file mode 100644 index 00000000..11f432e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x20945cA1df56D237fD40036d47E866C7DcCD2114/logo.png differ diff --git a/blockchains/ethereum/assets/0x2098C776A9F97427AA15C2cf91522aF0c94Fc574/info.json b/blockchains/ethereum/assets/0x2098C776A9F97427AA15C2cf91522aF0c94Fc574/info.json new file mode 100644 index 00000000..066c002a --- /dev/null +++ b/blockchains/ethereum/assets/0x2098C776A9F97427AA15C2cf91522aF0c94Fc574/info.json @@ -0,0 +1,11 @@ +{ + "name": "MineBlock", + "symbol": "MB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2098C776A9F97427AA15C2cf91522aF0c94Fc574", + "status": "abandoned", + "id": "0x2098C776A9F97427AA15C2cf91522aF0c94Fc574" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2098C776A9F97427AA15C2cf91522aF0c94Fc574/logo.png b/blockchains/ethereum/assets/0x2098C776A9F97427AA15C2cf91522aF0c94Fc574/logo.png new file mode 100644 index 00000000..6eb5fb7e Binary files /dev/null and b/blockchains/ethereum/assets/0x2098C776A9F97427AA15C2cf91522aF0c94Fc574/logo.png differ diff --git a/blockchains/ethereum/assets/0x209C1808FeBf6c1aB7C65764bb61AD67d3923fcc/info.json b/blockchains/ethereum/assets/0x209C1808FeBf6c1aB7C65764bb61AD67d3923fcc/info.json new file mode 100644 index 00000000..543e47de --- /dev/null +++ b/blockchains/ethereum/assets/0x209C1808FeBf6c1aB7C65764bb61AD67d3923fcc/info.json @@ -0,0 +1,11 @@ +{ + "name": "APEcoin", + "website": "https://APEcoin.dev", + "description": "APEcoin is a new token that is known as a Meme Coin. APEcoin is meant to be fun and not taken seriously while navigating the possibilities of blockchain technology.", + "explorer": "https://etherscan.io/token/0x209C1808FeBf6c1aB7C65764bb61AD67d3923fcc", + "type": "ERC20", + "symbol": "APE", + "decimals": 18, + "status": "active", + "id": "0x209C1808FeBf6c1aB7C65764bb61AD67d3923fcc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x209C1808FeBf6c1aB7C65764bb61AD67d3923fcc/logo.png b/blockchains/ethereum/assets/0x209C1808FeBf6c1aB7C65764bb61AD67d3923fcc/logo.png new file mode 100644 index 00000000..07503fad Binary files /dev/null and b/blockchains/ethereum/assets/0x209C1808FeBf6c1aB7C65764bb61AD67d3923fcc/logo.png differ diff --git a/blockchains/ethereum/assets/0x20AE0cA9D42e6Ffeb1188F341A7D63450452dEF6/info.json b/blockchains/ethereum/assets/0x20AE0cA9D42e6Ffeb1188F341A7D63450452dEF6/info.json new file mode 100644 index 00000000..6df00ba4 --- /dev/null +++ b/blockchains/ethereum/assets/0x20AE0cA9D42e6Ffeb1188F341A7D63450452dEF6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cipher", + "symbol": "CPR", + "type": "ERC20", + "decimals": 18, + "description": "Cipher (CPR) is A Utility Token For The Crypto Community. The community will get rewards, prizes, offers and promotions in Cipher token by utilizing our mobile and web applications service or program.", + "website": "https://ciphercryptotech.org/", + "explorer": "https://etherscan.io/token/0x20AE0cA9D42e6Ffeb1188F341A7D63450452dEF6", + "status": "active", + "id": "0x20AE0cA9D42e6Ffeb1188F341A7D63450452dEF6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20AE0cA9D42e6Ffeb1188F341A7D63450452dEF6/logo.png b/blockchains/ethereum/assets/0x20AE0cA9D42e6Ffeb1188F341A7D63450452dEF6/logo.png new file mode 100644 index 00000000..10cd751b Binary files /dev/null and b/blockchains/ethereum/assets/0x20AE0cA9D42e6Ffeb1188F341A7D63450452dEF6/logo.png differ diff --git a/blockchains/ethereum/assets/0x20B01f9D524777bb1988c7F3CD42Fe0Ff10D5615/info.json b/blockchains/ethereum/assets/0x20B01f9D524777bb1988c7F3CD42Fe0Ff10D5615/info.json new file mode 100644 index 00000000..626006e6 --- /dev/null +++ b/blockchains/ethereum/assets/0x20B01f9D524777bb1988c7F3CD42Fe0Ff10D5615/info.json @@ -0,0 +1,11 @@ +{ + "name": "Payback", + "symbol": "PYB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x20B01f9D524777bb1988c7F3CD42Fe0Ff10D5615", + "status": "abandoned", + "id": "0x20B01f9D524777bb1988c7F3CD42Fe0Ff10D5615" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20B01f9D524777bb1988c7F3CD42Fe0Ff10D5615/logo.png b/blockchains/ethereum/assets/0x20B01f9D524777bb1988c7F3CD42Fe0Ff10D5615/logo.png new file mode 100644 index 00000000..055bcaff Binary files /dev/null and b/blockchains/ethereum/assets/0x20B01f9D524777bb1988c7F3CD42Fe0Ff10D5615/logo.png differ diff --git a/blockchains/ethereum/assets/0x20B504802dbce474B4Dc59C9474f9270C85b94D8/info.json b/blockchains/ethereum/assets/0x20B504802dbce474B4Dc59C9474f9270C85b94D8/info.json new file mode 100644 index 00000000..a0917a0b --- /dev/null +++ b/blockchains/ethereum/assets/0x20B504802dbce474B4Dc59C9474f9270C85b94D8/info.json @@ -0,0 +1,11 @@ +{ + "name": "DaRiC", + "symbol": "IRC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x20B504802dbce474B4Dc59C9474f9270C85b94D8", + "status": "abandoned", + "id": "0x20B504802dbce474B4Dc59C9474f9270C85b94D8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20B504802dbce474B4Dc59C9474f9270C85b94D8/logo.png b/blockchains/ethereum/assets/0x20B504802dbce474B4Dc59C9474f9270C85b94D8/logo.png new file mode 100644 index 00000000..431c92b9 Binary files /dev/null and b/blockchains/ethereum/assets/0x20B504802dbce474B4Dc59C9474f9270C85b94D8/logo.png differ diff --git a/blockchains/ethereum/assets/0x20BC832ca081b91433ff6c17f85701B6e92486c5/info.json b/blockchains/ethereum/assets/0x20BC832ca081b91433ff6c17f85701B6e92486c5/info.json new file mode 100644 index 00000000..d3dea428 --- /dev/null +++ b/blockchains/ethereum/assets/0x20BC832ca081b91433ff6c17f85701B6e92486c5/info.json @@ -0,0 +1,65 @@ +{ + "name": "StakeWise rETH2", + "type": "ERC20", + "symbol": "rETH2", + "decimals": 18, + "website": "https://stakewise.io", + "description": "rETH2 is a token that represents reward ether in StakeWise.", + "explorer": "https://etherscan.io/token/0x20BC832ca081b91433ff6c17f85701B6e92486c5", + "status": "active", + "id": "0x20BC832ca081b91433ff6c17f85701B6e92486c5", + "links": [ + { + "name": "x", + "url": "https://x.com/stakewise_io" + }, + { + "name": "github", + "url": "https://github.com/stakewise" + }, + { + "name": "telegram", + "url": "https://t.me/stakewise_io" + }, + { + "name": "telegram_news", + "url": "https://t.me/stakewise_io" + }, + { + "name": "blog", + "url": "https://stakewise.medium.com/" + }, + { + "name": "docs", + "url": "https://docs.stakewise.io/" + }, + { + "name": "forum", + "url": "https://forum.stakewise.io/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Zf7tKyXeZ" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/stakewise" + }, + { + "name": "medium", + "url": "https://stakewise.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCQ2cX28XNW-S-66quNYxzRA" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/reth2" + }, + { + "name": "source_code", + "url": "https://github.com/stakewise/contracts/blob/master/contracts/tokens/RewardEthToken.sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20BC832ca081b91433ff6c17f85701B6e92486c5/logo.png b/blockchains/ethereum/assets/0x20BC832ca081b91433ff6c17f85701B6e92486c5/logo.png new file mode 100644 index 00000000..0d52b9b5 Binary files /dev/null and b/blockchains/ethereum/assets/0x20BC832ca081b91433ff6c17f85701B6e92486c5/logo.png differ diff --git a/blockchains/ethereum/assets/0x20Bcae16A8bA95d8E8363E265de4eCFc36eC5cd9/info.json b/blockchains/ethereum/assets/0x20Bcae16A8bA95d8E8363E265de4eCFc36eC5cd9/info.json new file mode 100644 index 00000000..a9aaea4f --- /dev/null +++ b/blockchains/ethereum/assets/0x20Bcae16A8bA95d8E8363E265de4eCFc36eC5cd9/info.json @@ -0,0 +1,11 @@ +{ + "name": "HEY BITCOIN", + "symbol": "HYBN", + "type": "ERC20", + "decimals": 18, + "description": "HYBN is a blockchain wallet made to simplify sending and receiving digital payments with the world.", + "website": "https://www.heybitcoin.io/", + "explorer": "https://etherscan.io/token/0x20Bcae16A8bA95d8E8363E265de4eCFc36eC5cd9", + "status": "active", + "id": "0x20Bcae16A8bA95d8E8363E265de4eCFc36eC5cd9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20Bcae16A8bA95d8E8363E265de4eCFc36eC5cd9/logo.png b/blockchains/ethereum/assets/0x20Bcae16A8bA95d8E8363E265de4eCFc36eC5cd9/logo.png new file mode 100644 index 00000000..556c8e57 Binary files /dev/null and b/blockchains/ethereum/assets/0x20Bcae16A8bA95d8E8363E265de4eCFc36eC5cd9/logo.png differ diff --git a/blockchains/ethereum/assets/0x20C86769247Bd55C8aeE3779403158C609FEa530/info.json b/blockchains/ethereum/assets/0x20C86769247Bd55C8aeE3779403158C609FEa530/info.json new file mode 100644 index 00000000..264bffe4 --- /dev/null +++ b/blockchains/ethereum/assets/0x20C86769247Bd55C8aeE3779403158C609FEa530/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kryptonian", + "symbol": "SPMN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x20C86769247Bd55C8aeE3779403158C609FEa530", + "status": "abandoned", + "id": "0x20C86769247Bd55C8aeE3779403158C609FEa530" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20C86769247Bd55C8aeE3779403158C609FEa530/logo.png b/blockchains/ethereum/assets/0x20C86769247Bd55C8aeE3779403158C609FEa530/logo.png new file mode 100644 index 00000000..1657199d Binary files /dev/null and b/blockchains/ethereum/assets/0x20C86769247Bd55C8aeE3779403158C609FEa530/logo.png differ diff --git a/blockchains/ethereum/assets/0x20D236D3D74B90c00abA0Fe0D7ed7D57E8B769a3/info.json b/blockchains/ethereum/assets/0x20D236D3D74B90c00abA0Fe0D7ed7D57E8B769a3/info.json new file mode 100644 index 00000000..71daeb82 --- /dev/null +++ b/blockchains/ethereum/assets/0x20D236D3D74B90c00abA0Fe0D7ed7D57E8B769a3/info.json @@ -0,0 +1,11 @@ +{ + "name": "U-Shares/Ubets", + "symbol": "USUB", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x20D236D3D74B90c00abA0Fe0D7ed7D57E8B769a3", + "status": "abandoned", + "id": "0x20D236D3D74B90c00abA0Fe0D7ed7D57E8B769a3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20D236D3D74B90c00abA0Fe0D7ed7D57E8B769a3/logo.png b/blockchains/ethereum/assets/0x20D236D3D74B90c00abA0Fe0D7ed7D57E8B769a3/logo.png new file mode 100644 index 00000000..3a712bda Binary files /dev/null and b/blockchains/ethereum/assets/0x20D236D3D74B90c00abA0Fe0D7ed7D57E8B769a3/logo.png differ diff --git a/blockchains/ethereum/assets/0x20E94867794dBA030Ee287F1406E100d03C84Cd3/info.json b/blockchains/ethereum/assets/0x20E94867794dBA030Ee287F1406E100d03C84Cd3/info.json new file mode 100644 index 00000000..b18cc281 --- /dev/null +++ b/blockchains/ethereum/assets/0x20E94867794dBA030Ee287F1406E100d03C84Cd3/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEW", + "symbol": "DEW", + "type": "ERC20", + "decimals": 18, + "description": "DEW is a Decentralized Exchange and also a gateway to the global blockchain securities market, through an almighty account, you can trade Blockchain Assets, Stocks, Futures, Forex, ETF, Bet Contract etc.", + "website": "https://www.dew.one/", + "explorer": "https://etherscan.io/token/0x20E94867794dBA030Ee287F1406E100d03C84Cd3", + "status": "active", + "id": "0x20E94867794dBA030Ee287F1406E100d03C84Cd3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20E94867794dBA030Ee287F1406E100d03C84Cd3/logo.png b/blockchains/ethereum/assets/0x20E94867794dBA030Ee287F1406E100d03C84Cd3/logo.png new file mode 100755 index 00000000..77dba11e Binary files /dev/null and b/blockchains/ethereum/assets/0x20E94867794dBA030Ee287F1406E100d03C84Cd3/logo.png differ diff --git a/blockchains/ethereum/assets/0x20F7A3DdF244dc9299975b4Da1C39F8D5D75f05A/info.json b/blockchains/ethereum/assets/0x20F7A3DdF244dc9299975b4Da1C39F8D5D75f05A/info.json new file mode 100644 index 00000000..f4a2b1f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x20F7A3DdF244dc9299975b4Da1C39F8D5D75f05A/info.json @@ -0,0 +1,22 @@ +{ + "name": "Sapien Token", + "website": "https://sapien.network/", + "description": "Sapien is an Ethereum-based social network that puts Humans First.", + "explorer": "https://etherscan.io/token/0x20f7a3ddf244dc9299975b4da1c39f8d5d75f05a", + "research": "", + "type": "ERC20", + "symbol": "SPN", + "decimals": 6, + "status": "active", + "id": "0x20F7A3DdF244dc9299975b4Da1C39F8D5D75f05A", + "links": [ + { + "name": "github", + "url": "https://github.com/sapiennetwork" + }, + { + "name": "whitepaper", + "url": "https://common.sapien.network/static/pdf/SPNv1_4.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20F7A3DdF244dc9299975b4Da1C39F8D5D75f05A/logo.png b/blockchains/ethereum/assets/0x20F7A3DdF244dc9299975b4Da1C39F8D5D75f05A/logo.png new file mode 100755 index 00000000..73561f9b Binary files /dev/null and b/blockchains/ethereum/assets/0x20F7A3DdF244dc9299975b4Da1C39F8D5D75f05A/logo.png differ diff --git a/blockchains/ethereum/assets/0x20a347B325232bEeeda730369002C2FdaaAe14d7/info.json b/blockchains/ethereum/assets/0x20a347B325232bEeeda730369002C2FdaaAe14d7/info.json new file mode 100644 index 00000000..a81513d4 --- /dev/null +++ b/blockchains/ethereum/assets/0x20a347B325232bEeeda730369002C2FdaaAe14d7/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C550576", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x20a347B325232bEeeda730369002C2FdaaAe14d7", + "status": "spam", + "id": "0x20a347B325232bEeeda730369002C2FdaaAe14d7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20a347B325232bEeeda730369002C2FdaaAe14d7/logo.png b/blockchains/ethereum/assets/0x20a347B325232bEeeda730369002C2FdaaAe14d7/logo.png new file mode 100644 index 00000000..878e717d Binary files /dev/null and b/blockchains/ethereum/assets/0x20a347B325232bEeeda730369002C2FdaaAe14d7/logo.png differ diff --git a/blockchains/ethereum/assets/0x20b1A8a9cA1c7302b7f774266C491C7b11622779/info.json b/blockchains/ethereum/assets/0x20b1A8a9cA1c7302b7f774266C491C7b11622779/info.json new file mode 100644 index 00000000..22663c58 --- /dev/null +++ b/blockchains/ethereum/assets/0x20b1A8a9cA1c7302b7f774266C491C7b11622779/info.json @@ -0,0 +1,11 @@ +{ + "name": "ARCS", + "symbol": "ARX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.arcs-chain.com/", + "explorer": "https://etherscan.io/token/0x20b1A8a9cA1c7302b7f774266C491C7b11622779", + "status": "abandoned", + "id": "0x20b1A8a9cA1c7302b7f774266C491C7b11622779" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20b1A8a9cA1c7302b7f774266C491C7b11622779/logo.png b/blockchains/ethereum/assets/0x20b1A8a9cA1c7302b7f774266C491C7b11622779/logo.png new file mode 100644 index 00000000..fe178e88 Binary files /dev/null and b/blockchains/ethereum/assets/0x20b1A8a9cA1c7302b7f774266C491C7b11622779/logo.png differ diff --git a/blockchains/ethereum/assets/0x20c187414Fa2e2212AAd227223fe323499ed70fF/info.json b/blockchains/ethereum/assets/0x20c187414Fa2e2212AAd227223fe323499ed70fF/info.json new file mode 100644 index 00000000..ff222210 --- /dev/null +++ b/blockchains/ethereum/assets/0x20c187414Fa2e2212AAd227223fe323499ed70fF/info.json @@ -0,0 +1,11 @@ +{ + "name": "MinedBlock Token", + "symbol": "MBTX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x20c187414Fa2e2212AAd227223fe323499ed70fF", + "status": "abandoned", + "id": "0x20c187414Fa2e2212AAd227223fe323499ed70fF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20c187414Fa2e2212AAd227223fe323499ed70fF/logo.png b/blockchains/ethereum/assets/0x20c187414Fa2e2212AAd227223fe323499ed70fF/logo.png new file mode 100644 index 00000000..83c01778 Binary files /dev/null and b/blockchains/ethereum/assets/0x20c187414Fa2e2212AAd227223fe323499ed70fF/logo.png differ diff --git a/blockchains/ethereum/assets/0x20e113E9235dF6A2A9BFc6f244c2ccC380c8f546/info.json b/blockchains/ethereum/assets/0x20e113E9235dF6A2A9BFc6f244c2ccC380c8f546/info.json new file mode 100644 index 00000000..8fe28d9f --- /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 00000000..095286d5 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 00000000..6f64caf9 --- /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/0x20e7125677311Fca903A8897042b9983f22Ea295/logo.png b/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/logo.png new file mode 100644 index 00000000..ddb872c3 Binary files /dev/null and b/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/logo.png differ diff --git a/blockchains/ethereum/assets/0x20eAFeF52733E37a47Fe53915EC29B3b13210D8a/info.json b/blockchains/ethereum/assets/0x20eAFeF52733E37a47Fe53915EC29B3b13210D8a/info.json new file mode 100644 index 00000000..3befae01 --- /dev/null +++ b/blockchains/ethereum/assets/0x20eAFeF52733E37a47Fe53915EC29B3b13210D8a/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R670496", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x20eAFeF52733E37a47Fe53915EC29B3b13210D8a", + "status": "abandoned", + "id": "0x20eAFeF52733E37a47Fe53915EC29B3b13210D8a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x20eAFeF52733E37a47Fe53915EC29B3b13210D8a/logo.png b/blockchains/ethereum/assets/0x20eAFeF52733E37a47Fe53915EC29B3b13210D8a/logo.png new file mode 100644 index 00000000..7961a59c Binary files /dev/null and b/blockchains/ethereum/assets/0x20eAFeF52733E37a47Fe53915EC29B3b13210D8a/logo.png differ diff --git a/blockchains/ethereum/assets/0x211d6373313dAfa21789767E2A255e0C435E7F5d/info.json b/blockchains/ethereum/assets/0x211d6373313dAfa21789767E2A255e0C435E7F5d/info.json new file mode 100644 index 00000000..f7b9cdd7 --- /dev/null +++ b/blockchains/ethereum/assets/0x211d6373313dAfa21789767E2A255e0C435E7F5d/info.json @@ -0,0 +1,11 @@ +{ + "name": "USDI", + "website": "https://otfund.io/", + "description": "USDI payment gateway.", + "explorer": "https://etherscan.io/token/0x211d6373313dAfa21789767E2A255e0C435E7F5d", + "type": "ERC20", + "symbol": "USDI", + "decimals": 6, + "status": "active", + "id": "0x211d6373313dAfa21789767E2A255e0C435E7F5d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x211d6373313dAfa21789767E2A255e0C435E7F5d/logo.png b/blockchains/ethereum/assets/0x211d6373313dAfa21789767E2A255e0C435E7F5d/logo.png new file mode 100644 index 00000000..1e85efdb Binary files /dev/null and b/blockchains/ethereum/assets/0x211d6373313dAfa21789767E2A255e0C435E7F5d/logo.png differ diff --git a/blockchains/ethereum/assets/0x211e9983c8ae05821693AdD1F33570129F0C942D/info.json b/blockchains/ethereum/assets/0x211e9983c8ae05821693AdD1F33570129F0C942D/info.json new file mode 100644 index 00000000..8672f878 --- /dev/null +++ b/blockchains/ethereum/assets/0x211e9983c8ae05821693AdD1F33570129F0C942D/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-10/30M40", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x211e9983c8ae05821693AdD1F33570129F0C942D", + "status": "abandoned", + "id": "0x211e9983c8ae05821693AdD1F33570129F0C942D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x211e9983c8ae05821693AdD1F33570129F0C942D/logo.png b/blockchains/ethereum/assets/0x211e9983c8ae05821693AdD1F33570129F0C942D/logo.png new file mode 100644 index 00000000..8ad6787d Binary files /dev/null and b/blockchains/ethereum/assets/0x211e9983c8ae05821693AdD1F33570129F0C942D/logo.png differ diff --git a/blockchains/ethereum/assets/0x2121a1B68E9C2Cc8fF4Bfd8bCD0F891ece331c51/info.json b/blockchains/ethereum/assets/0x2121a1B68E9C2Cc8fF4Bfd8bCD0F891ece331c51/info.json new file mode 100644 index 00000000..895a5a40 --- /dev/null +++ b/blockchains/ethereum/assets/0x2121a1B68E9C2Cc8fF4Bfd8bCD0F891ece331c51/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tantan Token", + "website": "https://tantantoken.com/en", + "description": "Tantan is all about making honest connections online and in real life.", + "explorer": "https://etherscan.io/token/0x2121a1B68E9C2Cc8fF4Bfd8bCD0F891ece331c51", + "type": "ERC20", + "symbol": "TANTAN", + "decimals": 8, + "status": "active", + "id": "0x2121a1B68E9C2Cc8fF4Bfd8bCD0F891ece331c51" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2121a1B68E9C2Cc8fF4Bfd8bCD0F891ece331c51/logo.png b/blockchains/ethereum/assets/0x2121a1B68E9C2Cc8fF4Bfd8bCD0F891ece331c51/logo.png new file mode 100644 index 00000000..9ee5c271 Binary files /dev/null and b/blockchains/ethereum/assets/0x2121a1B68E9C2Cc8fF4Bfd8bCD0F891ece331c51/logo.png differ diff --git a/blockchains/ethereum/assets/0x2129fF6000b95A973236020BCd2b2006B0D8E019/info.json b/blockchains/ethereum/assets/0x2129fF6000b95A973236020BCd2b2006B0D8E019/info.json new file mode 100644 index 00000000..2f0c1c34 --- /dev/null +++ b/blockchains/ethereum/assets/0x2129fF6000b95A973236020BCd2b2006B0D8E019/info.json @@ -0,0 +1,11 @@ +{ + "name": "MYX Network", + "symbol": "MYX", + "type": "ERC20", + "decimals": 18, + "description": "MYX Network is a DeFi Deflationary and Staking ERC20 token which is the primary digital asset of MYX Protocol which includes a Digital Advertisement Network, Investor DAO and Social Media Network.", + "website": "https://myx.network/", + "explorer": "https://etherscan.io/token/0x2129fF6000b95A973236020BCd2b2006B0D8E019", + "status": "active", + "id": "0x2129fF6000b95A973236020BCd2b2006B0D8E019" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2129fF6000b95A973236020BCd2b2006B0D8E019/logo.png b/blockchains/ethereum/assets/0x2129fF6000b95A973236020BCd2b2006B0D8E019/logo.png new file mode 100644 index 00000000..068e889d Binary files /dev/null and b/blockchains/ethereum/assets/0x2129fF6000b95A973236020BCd2b2006B0D8E019/logo.png differ diff --git a/blockchains/ethereum/assets/0x212ceCEa94cb5250ac85478Ea9d24B31c7F0e9D1/info.json b/blockchains/ethereum/assets/0x212ceCEa94cb5250ac85478Ea9d24B31c7F0e9D1/info.json new file mode 100644 index 00000000..57291149 --- /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/0x2134057C0b461F898D375Cead652Acae62b59541/info.json b/blockchains/ethereum/assets/0x2134057C0b461F898D375Cead652Acae62b59541/info.json new file mode 100644 index 00000000..3b689ae4 --- /dev/null +++ b/blockchains/ethereum/assets/0x2134057C0b461F898D375Cead652Acae62b59541/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoxxxCoin", + "symbol": "CXC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2134057C0b461F898D375Cead652Acae62b59541", + "status": "active", + "id": "0x2134057C0b461F898D375Cead652Acae62b59541" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2134057C0b461F898D375Cead652Acae62b59541/logo.png b/blockchains/ethereum/assets/0x2134057C0b461F898D375Cead652Acae62b59541/logo.png new file mode 100644 index 00000000..456b2386 Binary files /dev/null and b/blockchains/ethereum/assets/0x2134057C0b461F898D375Cead652Acae62b59541/logo.png differ diff --git a/blockchains/ethereum/assets/0x21381e026Ad6d8266244f2A583b35F9E4413FA2a/info.json b/blockchains/ethereum/assets/0x21381e026Ad6d8266244f2A583b35F9E4413FA2a/info.json new file mode 100644 index 00000000..580eec8a --- /dev/null +++ b/blockchains/ethereum/assets/0x21381e026Ad6d8266244f2A583b35F9E4413FA2a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Formation Finance", + "website": "https://formation.fi", + "description": "Formation Fi revolutionizes portfolio construction by introducing risk-adjusted portfolio of decentralized open financial crypto assets in the form of algorithmically rebasing indexes, with a high degree of composability, across the major blockchain networks.", + "explorer": "https://etherscan.io/token/0x21381e026Ad6d8266244f2A583b35F9E4413FA2a", + "type": "ERC20", + "symbol": "FORM", + "decimals": 18, + "status": "active", + "id": "0x21381e026Ad6d8266244f2A583b35F9E4413FA2a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21381e026Ad6d8266244f2A583b35F9E4413FA2a/logo.png b/blockchains/ethereum/assets/0x21381e026Ad6d8266244f2A583b35F9E4413FA2a/logo.png new file mode 100644 index 00000000..334cedd5 Binary files /dev/null and b/blockchains/ethereum/assets/0x21381e026Ad6d8266244f2A583b35F9E4413FA2a/logo.png differ diff --git a/blockchains/ethereum/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json b/blockchains/ethereum/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json new file mode 100644 index 00000000..8d65b45c --- /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 00000000..72cd9e09 Binary files /dev/null and b/blockchains/ethereum/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/logo.png differ diff --git a/blockchains/ethereum/assets/0x2157748D894741359281253188130c2d615FAdC8/info.json b/blockchains/ethereum/assets/0x2157748D894741359281253188130c2d615FAdC8/info.json new file mode 100644 index 00000000..d1475efb --- /dev/null +++ b/blockchains/ethereum/assets/0x2157748D894741359281253188130c2d615FAdC8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Virtual Token", + "symbol": "VITO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2157748D894741359281253188130c2d615FAdC8", + "status": "abandoned", + "id": "0x2157748D894741359281253188130c2d615FAdC8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2157748D894741359281253188130c2d615FAdC8/logo.png b/blockchains/ethereum/assets/0x2157748D894741359281253188130c2d615FAdC8/logo.png new file mode 100644 index 00000000..699a1f80 Binary files /dev/null and b/blockchains/ethereum/assets/0x2157748D894741359281253188130c2d615FAdC8/logo.png differ diff --git a/blockchains/ethereum/assets/0x215dc4394247bE773c741265eD065377F37f8A43/info.json b/blockchains/ethereum/assets/0x215dc4394247bE773c741265eD065377F37f8A43/info.json new file mode 100644 index 00000000..b0d904c9 --- /dev/null +++ b/blockchains/ethereum/assets/0x215dc4394247bE773c741265eD065377F37f8A43/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C512100", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x215dc4394247bE773c741265eD065377F37f8A43", + "status": "abandoned", + "id": "0x215dc4394247bE773c741265eD065377F37f8A43" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x215dc4394247bE773c741265eD065377F37f8A43/logo.png b/blockchains/ethereum/assets/0x215dc4394247bE773c741265eD065377F37f8A43/logo.png new file mode 100644 index 00000000..84c763c5 Binary files /dev/null and b/blockchains/ethereum/assets/0x215dc4394247bE773c741265eD065377F37f8A43/logo.png differ diff --git a/blockchains/ethereum/assets/0x2167D2C82F763257C4F0A3e40d9B494EF93702f1/info.json b/blockchains/ethereum/assets/0x2167D2C82F763257C4F0A3e40d9B494EF93702f1/info.json new file mode 100644 index 00000000..cd00fbb1 --- /dev/null +++ b/blockchains/ethereum/assets/0x2167D2C82F763257C4F0A3e40d9B494EF93702f1/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUnits", + "symbol": "XP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2167D2C82F763257C4F0A3e40d9B494EF93702f1", + "status": "abandoned", + "id": "0x2167D2C82F763257C4F0A3e40d9B494EF93702f1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2167D2C82F763257C4F0A3e40d9B494EF93702f1/logo.png b/blockchains/ethereum/assets/0x2167D2C82F763257C4F0A3e40d9B494EF93702f1/logo.png new file mode 100755 index 00000000..22986695 Binary files /dev/null and b/blockchains/ethereum/assets/0x2167D2C82F763257C4F0A3e40d9B494EF93702f1/logo.png differ diff --git a/blockchains/ethereum/assets/0x2167FB82309CF76513E83B25123f8b0559d6b48f/info.json b/blockchains/ethereum/assets/0x2167FB82309CF76513E83B25123f8b0559d6b48f/info.json new file mode 100644 index 00000000..5297c0b3 --- /dev/null +++ b/blockchains/ethereum/assets/0x2167FB82309CF76513E83B25123f8b0559d6b48f/info.json @@ -0,0 +1,11 @@ +{ + "name": "LION", + "symbol": "LION", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://coinlion.com/", + "explorer": "https://etherscan.io/token/0x2167FB82309CF76513E83B25123f8b0559d6b48f", + "status": "abandoned", + "id": "0x2167FB82309CF76513E83B25123f8b0559d6b48f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2167FB82309CF76513E83B25123f8b0559d6b48f/logo.png b/blockchains/ethereum/assets/0x2167FB82309CF76513E83B25123f8b0559d6b48f/logo.png new file mode 100644 index 00000000..77a5e46a Binary files /dev/null and b/blockchains/ethereum/assets/0x2167FB82309CF76513E83B25123f8b0559d6b48f/logo.png differ diff --git a/blockchains/ethereum/assets/0x21686F8ce003a95c99aCd297E302FAACf742F7d4/info.json b/blockchains/ethereum/assets/0x21686F8ce003a95c99aCd297E302FAACf742F7d4/info.json new file mode 100644 index 00000000..5aee014d --- /dev/null +++ b/blockchains/ethereum/assets/0x21686F8ce003a95c99aCd297E302FAACf742F7d4/info.json @@ -0,0 +1,14 @@ +{ + "name": "Wrapped Conceal", + "symbol": "wCCX", + "type": "ERC20", + "decimals": 6, + "description": "Wrapped Conceal ($wCCX) provides an untraceable gateway to and from the Ethereum ecosystem to $CCX. Wrapped Conceal ($wCCX) represents $CCX on the Ethereum ecosystem.", + "website": "https://conceal.network/", + "explorer": "https://etherscan.io/token/0x21686F8ce003a95c99aCd297E302FAACf742F7d4", + "status": "active", + "id": "0x21686F8ce003a95c99aCd297E302FAACf742F7d4", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21686F8ce003a95c99aCd297E302FAACf742F7d4/logo.png b/blockchains/ethereum/assets/0x21686F8ce003a95c99aCd297E302FAACf742F7d4/logo.png new file mode 100644 index 00000000..b9f69da4 Binary files /dev/null and b/blockchains/ethereum/assets/0x21686F8ce003a95c99aCd297E302FAACf742F7d4/logo.png differ diff --git a/blockchains/ethereum/assets/0x217f96737b39f9b9211767cb6aeF5DbAe2Fe9402/info.json b/blockchains/ethereum/assets/0x217f96737b39f9b9211767cb6aeF5DbAe2Fe9402/info.json new file mode 100644 index 00000000..33ae3ab4 --- /dev/null +++ b/blockchains/ethereum/assets/0x217f96737b39f9b9211767cb6aeF5DbAe2Fe9402/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bazaar Gift Token", + "symbol": "WAY", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x217f96737b39f9b9211767cb6aeF5DbAe2Fe9402", + "status": "abandoned", + "id": "0x217f96737b39f9b9211767cb6aeF5DbAe2Fe9402" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x217f96737b39f9b9211767cb6aeF5DbAe2Fe9402/logo.png b/blockchains/ethereum/assets/0x217f96737b39f9b9211767cb6aeF5DbAe2Fe9402/logo.png new file mode 100644 index 00000000..11d07ad9 Binary files /dev/null and b/blockchains/ethereum/assets/0x217f96737b39f9b9211767cb6aeF5DbAe2Fe9402/logo.png differ diff --git a/blockchains/ethereum/assets/0x21839a7f7e88c19a6089AdBFB3fB52606Ac6f0Dd/info.json b/blockchains/ethereum/assets/0x21839a7f7e88c19a6089AdBFB3fB52606Ac6f0Dd/info.json new file mode 100644 index 00000000..a9b70255 --- /dev/null +++ b/blockchains/ethereum/assets/0x21839a7f7e88c19a6089AdBFB3fB52606Ac6f0Dd/info.json @@ -0,0 +1,11 @@ +{ + "name": "FTO", + "website": "https://f5trader.com", + "description": "Most Trending & Potential Exchange Platform For Trading", + "explorer": "https://etherscan.io/token/0x21839a7f7e88c19a6089AdBFB3fB52606Ac6f0Dd", + "type": "ERC20", + "symbol": "FTO", + "decimals": 18, + "status": "active", + "id": "0x21839a7f7e88c19a6089AdBFB3fB52606Ac6f0Dd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21839a7f7e88c19a6089AdBFB3fB52606Ac6f0Dd/logo.png b/blockchains/ethereum/assets/0x21839a7f7e88c19a6089AdBFB3fB52606Ac6f0Dd/logo.png new file mode 100644 index 00000000..639b9b8e Binary files /dev/null and b/blockchains/ethereum/assets/0x21839a7f7e88c19a6089AdBFB3fB52606Ac6f0Dd/logo.png differ diff --git a/blockchains/ethereum/assets/0x219218f117DC9348b358b8471c55A073E5e0dA0b/info.json b/blockchains/ethereum/assets/0x219218f117DC9348b358b8471c55A073E5e0dA0b/info.json new file mode 100644 index 00000000..4f81c8ef --- /dev/null +++ b/blockchains/ethereum/assets/0x219218f117DC9348b358b8471c55A073E5e0dA0b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gold Reward Token", + "symbol": "GRX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://goldreward.io/", + "explorer": "https://etherscan.io/token/0x219218f117DC9348b358b8471c55A073E5e0dA0b", + "status": "abandoned", + "id": "0x219218f117DC9348b358b8471c55A073E5e0dA0b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x219218f117DC9348b358b8471c55A073E5e0dA0b/logo.png b/blockchains/ethereum/assets/0x219218f117DC9348b358b8471c55A073E5e0dA0b/logo.png new file mode 100644 index 00000000..cfbbd871 Binary files /dev/null and b/blockchains/ethereum/assets/0x219218f117DC9348b358b8471c55A073E5e0dA0b/logo.png differ diff --git a/blockchains/ethereum/assets/0x2193B9F2B5E5051E41C32c71B25587D6A6f045C8/info.json b/blockchains/ethereum/assets/0x2193B9F2B5E5051E41C32c71B25587D6A6f045C8/info.json new file mode 100644 index 00000000..5032a7c6 --- /dev/null +++ b/blockchains/ethereum/assets/0x2193B9F2B5E5051E41C32c71B25587D6A6f045C8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Status Security", + "symbol": "STS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2193B9F2B5E5051E41C32c71B25587D6A6f045C8", + "status": "abandoned", + "id": "0x2193B9F2B5E5051E41C32c71B25587D6A6f045C8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2193B9F2B5E5051E41C32c71B25587D6A6f045C8/logo.png b/blockchains/ethereum/assets/0x2193B9F2B5E5051E41C32c71B25587D6A6f045C8/logo.png new file mode 100644 index 00000000..6bdfe720 Binary files /dev/null and b/blockchains/ethereum/assets/0x2193B9F2B5E5051E41C32c71B25587D6A6f045C8/logo.png differ diff --git a/blockchains/ethereum/assets/0x219803d17f3067eb53d521ba8948d2734f402f7d/info.json b/blockchains/ethereum/assets/0x219803d17f3067eb53d521ba8948d2734f402f7d/info.json new file mode 100644 index 00000000..6dea52d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x219803d17f3067eb53d521ba8948d2734f402f7d/info.json @@ -0,0 +1,11 @@ +{ + "name": "WGM", + "symbol": "WGM", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x219803d17f3067eb53d521ba8948d2734f402f7d", + "status": "abandoned", + "id": "0x219803d17f3067eb53d521ba8948d2734f402f7d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x219803d17f3067eb53d521ba8948d2734f402f7d/logo.png b/blockchains/ethereum/assets/0x219803d17f3067eb53d521ba8948d2734f402f7d/logo.png new file mode 100644 index 00000000..6099545c Binary files /dev/null and b/blockchains/ethereum/assets/0x219803d17f3067eb53d521ba8948d2734f402f7d/logo.png differ diff --git a/blockchains/ethereum/assets/0x219E0B7c4868adD72a913eEF492c228CD1F45cdD/info.json b/blockchains/ethereum/assets/0x219E0B7c4868adD72a913eEF492c228CD1F45cdD/info.json new file mode 100644 index 00000000..ff707258 --- /dev/null +++ b/blockchains/ethereum/assets/0x219E0B7c4868adD72a913eEF492c228CD1F45cdD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Firextoken", + "symbol": "FRXT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x219E0B7c4868adD72a913eEF492c228CD1F45cdD", + "status": "abandoned", + "id": "0x219E0B7c4868adD72a913eEF492c228CD1F45cdD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x219E0B7c4868adD72a913eEF492c228CD1F45cdD/logo.png b/blockchains/ethereum/assets/0x219E0B7c4868adD72a913eEF492c228CD1F45cdD/logo.png new file mode 100644 index 00000000..da63d452 Binary files /dev/null and b/blockchains/ethereum/assets/0x219E0B7c4868adD72a913eEF492c228CD1F45cdD/logo.png differ diff --git a/blockchains/ethereum/assets/0x219a1b27baA08D72fAC836665a3B752F3C9aCBBC/info.json b/blockchains/ethereum/assets/0x219a1b27baA08D72fAC836665a3B752F3C9aCBBC/info.json new file mode 100644 index 00000000..653d5fd2 --- /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 00000000..56172ca7 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 new file mode 100644 index 00000000..5d188a06 --- /dev/null +++ b/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/info.json @@ -0,0 +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.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 new file mode 100644 index 00000000..5bc8414c Binary files /dev/null and b/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/logo.png differ diff --git a/blockchains/ethereum/assets/0x21C0F7B0aB3727EbBdB2FBDc4D039264d0b5B33B/info.json b/blockchains/ethereum/assets/0x21C0F7B0aB3727EbBdB2FBDc4D039264d0b5B33B/info.json new file mode 100644 index 00000000..8f5af013 --- /dev/null +++ b/blockchains/ethereum/assets/0x21C0F7B0aB3727EbBdB2FBDc4D039264d0b5B33B/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-24/30M24", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x21C0F7B0aB3727EbBdB2FBDc4D039264d0b5B33B", + "status": "abandoned", + "id": "0x21C0F7B0aB3727EbBdB2FBDc4D039264d0b5B33B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21C0F7B0aB3727EbBdB2FBDc4D039264d0b5B33B/logo.png b/blockchains/ethereum/assets/0x21C0F7B0aB3727EbBdB2FBDc4D039264d0b5B33B/logo.png new file mode 100644 index 00000000..9ea536cc Binary files /dev/null and b/blockchains/ethereum/assets/0x21C0F7B0aB3727EbBdB2FBDc4D039264d0b5B33B/logo.png differ diff --git a/blockchains/ethereum/assets/0x21C7F008970bFAbcCF9D44Fe7EE7e1f4A5401FEb/info.json b/blockchains/ethereum/assets/0x21C7F008970bFAbcCF9D44Fe7EE7e1f4A5401FEb/info.json new file mode 100644 index 00000000..48f98467 --- /dev/null +++ b/blockchains/ethereum/assets/0x21C7F008970bFAbcCF9D44Fe7EE7e1f4A5401FEb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bobbies", + "symbol": "BOBBS", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x21C7F008970bFAbcCF9D44Fe7EE7e1f4A5401FEb", + "status": "active", + "id": "0x21C7F008970bFAbcCF9D44Fe7EE7e1f4A5401FEb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21C7F008970bFAbcCF9D44Fe7EE7e1f4A5401FEb/logo.png b/blockchains/ethereum/assets/0x21C7F008970bFAbcCF9D44Fe7EE7e1f4A5401FEb/logo.png new file mode 100644 index 00000000..56c83804 Binary files /dev/null and b/blockchains/ethereum/assets/0x21C7F008970bFAbcCF9D44Fe7EE7e1f4A5401FEb/logo.png differ diff --git a/blockchains/ethereum/assets/0x21D281D3B296cFE0Ba581D09d995ae6b23B0CAFb/info.json b/blockchains/ethereum/assets/0x21D281D3B296cFE0Ba581D09d995ae6b23B0CAFb/info.json new file mode 100644 index 00000000..85614773 --- /dev/null +++ b/blockchains/ethereum/assets/0x21D281D3B296cFE0Ba581D09d995ae6b23B0CAFb/info.json @@ -0,0 +1,11 @@ +{ + "name": "COALCOIN", + "symbol": "CIC", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x21D281D3B296cFE0Ba581D09d995ae6b23B0CAFb", + "status": "abandoned", + "id": "0x21D281D3B296cFE0Ba581D09d995ae6b23B0CAFb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21D281D3B296cFE0Ba581D09d995ae6b23B0CAFb/logo.png b/blockchains/ethereum/assets/0x21D281D3B296cFE0Ba581D09d995ae6b23B0CAFb/logo.png new file mode 100755 index 00000000..612c2e56 Binary files /dev/null and b/blockchains/ethereum/assets/0x21D281D3B296cFE0Ba581D09d995ae6b23B0CAFb/logo.png differ diff --git a/blockchains/ethereum/assets/0x21D5A14e625d767Ce6b7A167491C2d18e0785fDa/info.json b/blockchains/ethereum/assets/0x21D5A14e625d767Ce6b7A167491C2d18e0785fDa/info.json new file mode 100644 index 00000000..bae2e54f --- /dev/null +++ b/blockchains/ethereum/assets/0x21D5A14e625d767Ce6b7A167491C2d18e0785fDa/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jinbi Token", + "symbol": "JNB", + "type": "ERC20", + "decimals": 18, + "description": "Jinbi Token merges gold with blockchain technology. A new horizon of wealth and security.", + "website": "https://jinbitoken.io", + "explorer": "https://etherscan.io/token/0x21D5A14e625d767Ce6b7A167491C2d18e0785fDa", + "status": "active", + "id": "0x21D5A14e625d767Ce6b7A167491C2d18e0785fDa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21D5A14e625d767Ce6b7A167491C2d18e0785fDa/logo.png b/blockchains/ethereum/assets/0x21D5A14e625d767Ce6b7A167491C2d18e0785fDa/logo.png new file mode 100644 index 00000000..08a8d8ac Binary files /dev/null and b/blockchains/ethereum/assets/0x21D5A14e625d767Ce6b7A167491C2d18e0785fDa/logo.png differ diff --git a/blockchains/ethereum/assets/0x21E13cB3F3F26f92A62ac7Adab4093e8997D1fb1/info.json b/blockchains/ethereum/assets/0x21E13cB3F3F26f92A62ac7Adab4093e8997D1fb1/info.json new file mode 100644 index 00000000..1203f78c --- /dev/null +++ b/blockchains/ethereum/assets/0x21E13cB3F3F26f92A62ac7Adab4093e8997D1fb1/info.json @@ -0,0 +1,11 @@ +{ + "name": "OIKOS", + "symbol": "OIKOS", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x21E13cB3F3F26f92A62ac7Adab4093e8997D1fb1", + "status": "abandoned", + "id": "0x21E13cB3F3F26f92A62ac7Adab4093e8997D1fb1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21E13cB3F3F26f92A62ac7Adab4093e8997D1fb1/logo.png b/blockchains/ethereum/assets/0x21E13cB3F3F26f92A62ac7Adab4093e8997D1fb1/logo.png new file mode 100644 index 00000000..394cc4c9 Binary files /dev/null and b/blockchains/ethereum/assets/0x21E13cB3F3F26f92A62ac7Adab4093e8997D1fb1/logo.png differ diff --git a/blockchains/ethereum/assets/0x21F3618937f954F8681C93673086d74426f63eb6/info.json b/blockchains/ethereum/assets/0x21F3618937f954F8681C93673086d74426f63eb6/info.json new file mode 100644 index 00000000..d2775c1d --- /dev/null +++ b/blockchains/ethereum/assets/0x21F3618937f954F8681C93673086d74426f63eb6/info.json @@ -0,0 +1,11 @@ +{ + "name": "MageCoin", + "symbol": "MAG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x21F3618937f954F8681C93673086d74426f63eb6", + "status": "active", + "id": "0x21F3618937f954F8681C93673086d74426f63eb6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21F3618937f954F8681C93673086d74426f63eb6/logo.png b/blockchains/ethereum/assets/0x21F3618937f954F8681C93673086d74426f63eb6/logo.png new file mode 100755 index 00000000..b2d12a3f Binary files /dev/null and b/blockchains/ethereum/assets/0x21F3618937f954F8681C93673086d74426f63eb6/logo.png differ diff --git a/blockchains/ethereum/assets/0x21aB6c9fAC80C59D401b37cB43F81ea9DDe7Fe34/info.json b/blockchains/ethereum/assets/0x21aB6c9fAC80C59D401b37cB43F81ea9DDe7Fe34/info.json new file mode 100644 index 00000000..cc51d16d --- /dev/null +++ b/blockchains/ethereum/assets/0x21aB6c9fAC80C59D401b37cB43F81ea9DDe7Fe34/info.json @@ -0,0 +1,11 @@ +{ + "name": "Baer Chain", + "symbol": "BRC", + "type": "ERC20", + "decimals": 8, + "description": "Pioneer of Global Game Public Chain, dedicated to creating a game ecology based on blockchain technology.", + "website": "https://www.baerchain.com/", + "explorer": "https://etherscan.io/token/0x21aB6c9fAC80C59D401b37cB43F81ea9DDe7Fe34", + "status": "active", + "id": "0x21aB6c9fAC80C59D401b37cB43F81ea9DDe7Fe34" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21aB6c9fAC80C59D401b37cB43F81ea9DDe7Fe34/logo.png b/blockchains/ethereum/assets/0x21aB6c9fAC80C59D401b37cB43F81ea9DDe7Fe34/logo.png new file mode 100644 index 00000000..bdf49f08 Binary files /dev/null and b/blockchains/ethereum/assets/0x21aB6c9fAC80C59D401b37cB43F81ea9DDe7Fe34/logo.png differ diff --git a/blockchains/ethereum/assets/0x21bE23f5bF87A749670c088F6DEe26760F1Ab80F/info.json b/blockchains/ethereum/assets/0x21bE23f5bF87A749670c088F6DEe26760F1Ab80F/info.json new file mode 100644 index 00000000..972db2aa --- /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 00000000..857455e7 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 new file mode 100644 index 00000000..3ca6c424 --- /dev/null +++ b/blockchains/ethereum/assets/0x21cA39943E91d704678F5D00b6616650F066fD63/info.json @@ -0,0 +1,32 @@ +{ + "name": "mTSLA Token", + "website": "https://mirror.finance", + "description": "Wrapped Mirror TSLA Token.", + "explorer": "https://etherscan.io/token/0x21cA39943E91d704678F5D00b6616650F066fD63", + "type": "ERC20", + "symbol": "mTSLA", + "decimals": 18, + "status": "active", + "id": "0x21cA39943E91d704678F5D00b6616650F066fD63", + "tags": [ + "wrapped" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MirrorProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/mirror_protocol" + }, + { + "name": "discord", + "url": "https://discord.com/MirrorProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/@mirror-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21cA39943E91d704678F5D00b6616650F066fD63/logo.png b/blockchains/ethereum/assets/0x21cA39943E91d704678F5D00b6616650F066fD63/logo.png new file mode 100644 index 00000000..cec81559 Binary files /dev/null and b/blockchains/ethereum/assets/0x21cA39943E91d704678F5D00b6616650F066fD63/logo.png differ diff --git a/blockchains/ethereum/assets/0x21cD589a989615A9e901328D3c089bbca16d00b2/info.json b/blockchains/ethereum/assets/0x21cD589a989615A9e901328D3c089bbca16d00b2/info.json new file mode 100644 index 00000000..90a94d3f --- /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 00000000..13bcb298 Binary files /dev/null and b/blockchains/ethereum/assets/0x21cD589a989615A9e901328D3c089bbca16d00b2/logo.png differ diff --git a/blockchains/ethereum/assets/0x21d5678A62DFe63a47062469Ebb2fAc2817D8832/info.json b/blockchains/ethereum/assets/0x21d5678A62DFe63a47062469Ebb2fAc2817D8832/info.json new file mode 100644 index 00000000..d583154f --- /dev/null +++ b/blockchains/ethereum/assets/0x21d5678A62DFe63a47062469Ebb2fAc2817D8832/info.json @@ -0,0 +1,11 @@ +{ + "name": "YoloCash", + "symbol": "YLC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.yolocash.co/", + "explorer": "https://etherscan.io/token/0x21d5678A62DFe63a47062469Ebb2fAc2817D8832", + "status": "abandoned", + "id": "0x21d5678A62DFe63a47062469Ebb2fAc2817D8832" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21d5678A62DFe63a47062469Ebb2fAc2817D8832/logo.png b/blockchains/ethereum/assets/0x21d5678A62DFe63a47062469Ebb2fAc2817D8832/logo.png new file mode 100644 index 00000000..a8b7f7e3 Binary files /dev/null and b/blockchains/ethereum/assets/0x21d5678A62DFe63a47062469Ebb2fAc2817D8832/logo.png differ diff --git a/blockchains/ethereum/assets/0x21deafD91116FCe9fE87C8f15Bde03f99a309b72/info.json b/blockchains/ethereum/assets/0x21deafD91116FCe9fE87C8f15Bde03f99a309b72/info.json new file mode 100644 index 00000000..5a0296d6 --- /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 00000000..3ec067f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x21deafD91116FCe9fE87C8f15Bde03f99a309b72/logo.png differ diff --git a/blockchains/ethereum/assets/0x21f0F0fD3141Ee9E11B3d7f13a1028CD515f459c/info.json b/blockchains/ethereum/assets/0x21f0F0fD3141Ee9E11B3d7f13a1028CD515f459c/info.json new file mode 100644 index 00000000..7111b5d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x21f0F0fD3141Ee9E11B3d7f13a1028CD515f459c/info.json @@ -0,0 +1,11 @@ +{ + "name": "MrpToken", + "symbol": "MRP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x21f0F0fD3141Ee9E11B3d7f13a1028CD515f459c", + "status": "abandoned", + "id": "0x21f0F0fD3141Ee9E11B3d7f13a1028CD515f459c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x21f0F0fD3141Ee9E11B3d7f13a1028CD515f459c/logo.png b/blockchains/ethereum/assets/0x21f0F0fD3141Ee9E11B3d7f13a1028CD515f459c/logo.png new file mode 100755 index 00000000..d28d5101 Binary files /dev/null and b/blockchains/ethereum/assets/0x21f0F0fD3141Ee9E11B3d7f13a1028CD515f459c/logo.png differ diff --git a/blockchains/ethereum/assets/0x2215459BBfc4A1041BB8B4E53D8c69d63F3B3224/info.json b/blockchains/ethereum/assets/0x2215459BBfc4A1041BB8B4E53D8c69d63F3B3224/info.json new file mode 100644 index 00000000..c7b90c7a --- /dev/null +++ b/blockchains/ethereum/assets/0x2215459BBfc4A1041BB8B4E53D8c69d63F3B3224/info.json @@ -0,0 +1,11 @@ +{ + "name": "Noble Technologies Token", + "symbol": "NTT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2215459BBfc4A1041BB8B4E53D8c69d63F3B3224", + "status": "abandoned", + "id": "0x2215459BBfc4A1041BB8B4E53D8c69d63F3B3224" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2215459BBfc4A1041BB8B4E53D8c69d63F3B3224/logo.png b/blockchains/ethereum/assets/0x2215459BBfc4A1041BB8B4E53D8c69d63F3B3224/logo.png new file mode 100644 index 00000000..4f25ab5d Binary files /dev/null and b/blockchains/ethereum/assets/0x2215459BBfc4A1041BB8B4E53D8c69d63F3B3224/logo.png differ diff --git a/blockchains/ethereum/assets/0x221657776846890989a759BA2973e427DfF5C9bB/info.json b/blockchains/ethereum/assets/0x221657776846890989a759BA2973e427DfF5C9bB/info.json new file mode 100644 index 00000000..1fc2dc0e --- /dev/null +++ b/blockchains/ethereum/assets/0x221657776846890989a759BA2973e427DfF5C9bB/info.json @@ -0,0 +1,12 @@ +{ + "name": "Reputation", + "website": "http://augur.net", + "description": "Augur (REPv2) is meant to harness the wisdom of the crowd through prediction markets on a protocol owned and operated by holders of the Ethereum-based Reputation token.", + "explorer": "https://etherscan.io/token/0x221657776846890989a759BA2973e427DfF5C9bB", + "research": "https://research.binance.com/en/projects/augur", + "type": "ERC20", + "symbol": "REPv2", + "decimals": 18, + "status": "active", + "id": "0x221657776846890989a759BA2973e427DfF5C9bB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x221657776846890989a759BA2973e427DfF5C9bB/logo.png b/blockchains/ethereum/assets/0x221657776846890989a759BA2973e427DfF5C9bB/logo.png new file mode 100644 index 00000000..2251a4bf Binary files /dev/null and b/blockchains/ethereum/assets/0x221657776846890989a759BA2973e427DfF5C9bB/logo.png differ diff --git a/blockchains/ethereum/assets/0x2216e873ea4282EbEf7A02aC5aeA220bE6391A7C/info.json b/blockchains/ethereum/assets/0x2216e873ea4282EbEf7A02aC5aeA220bE6391A7C/info.json new file mode 100644 index 00000000..2fc8099a --- /dev/null +++ b/blockchains/ethereum/assets/0x2216e873ea4282EbEf7A02aC5aeA220bE6391A7C/info.json @@ -0,0 +1,33 @@ +{ + "name": "smol", + "website": "https://smol.finance", + "description": "beeg tings, smol package", + "explorer": "https://etherscan.io/token/0x2216e873ea4282EbEf7A02aC5aeA220bE6391A7C", + "type": "ERC20", + "symbol": "SMOL", + "decimals": 18, + "status": "active", + "id": "0x2216e873ea4282EbEf7A02aC5aeA220bE6391A7C", + "links": [ + { + "name": "github", + "url": "https://github.com/smolfinance/" + }, + { + "name": "x", + "url": "https://x.com/SmolFinance" + }, + { + "name": "telegram", + "url": "https://t.me/smol_tok" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SmolFinance" + }, + { + "name": "medium", + "url": "https://medium.com/@smolfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2216e873ea4282EbEf7A02aC5aeA220bE6391A7C/logo.png b/blockchains/ethereum/assets/0x2216e873ea4282EbEf7A02aC5aeA220bE6391A7C/logo.png new file mode 100644 index 00000000..08030285 Binary files /dev/null and b/blockchains/ethereum/assets/0x2216e873ea4282EbEf7A02aC5aeA220bE6391A7C/logo.png differ diff --git a/blockchains/ethereum/assets/0x221F7d0F2Fa0bFbd5F8B0d0340425906F2F9968c/info.json b/blockchains/ethereum/assets/0x221F7d0F2Fa0bFbd5F8B0d0340425906F2F9968c/info.json new file mode 100644 index 00000000..03a5479d --- /dev/null +++ b/blockchains/ethereum/assets/0x221F7d0F2Fa0bFbd5F8B0d0340425906F2F9968c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Super Running Coin", + "symbol": "SRC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://superrunningcoin.com/", + "explorer": "https://etherscan.io/token/0x221F7d0F2Fa0bFbd5F8B0d0340425906F2F9968c", + "status": "abandoned", + "id": "0x221F7d0F2Fa0bFbd5F8B0d0340425906F2F9968c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x221F7d0F2Fa0bFbd5F8B0d0340425906F2F9968c/logo.png b/blockchains/ethereum/assets/0x221F7d0F2Fa0bFbd5F8B0d0340425906F2F9968c/logo.png new file mode 100644 index 00000000..24f28ab8 Binary files /dev/null and b/blockchains/ethereum/assets/0x221F7d0F2Fa0bFbd5F8B0d0340425906F2F9968c/logo.png differ diff --git a/blockchains/ethereum/assets/0x22222C03318440305aC3e8a7820563d6A9FD777F/info.json b/blockchains/ethereum/assets/0x22222C03318440305aC3e8a7820563d6A9FD777F/info.json new file mode 100644 index 00000000..92b4500d --- /dev/null +++ b/blockchains/ethereum/assets/0x22222C03318440305aC3e8a7820563d6A9FD777F/info.json @@ -0,0 +1,17 @@ +{ + "name": "Clover", + "website": "https://clv.surge.sh/", + "description": "A crypto community and group unlike any other. Unrivaled in their authenticity and uniqueness, they are certainly not for the easily offended.", + "explorer": "https://etherscan.io/token/0x22222C03318440305aC3e8a7820563d6A9FD777F", + "type": "ERC20", + "symbol": "CLV", + "decimals": 6, + "status": "active", + "id": "0x22222C03318440305aC3e8a7820563d6A9FD777F", + "links": [ + { + "name": "x", + "url": "https://x.com/clvfi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x22222C03318440305aC3e8a7820563d6A9FD777F/logo.png b/blockchains/ethereum/assets/0x22222C03318440305aC3e8a7820563d6A9FD777F/logo.png new file mode 100644 index 00000000..20ab1dc2 Binary files /dev/null and b/blockchains/ethereum/assets/0x22222C03318440305aC3e8a7820563d6A9FD777F/logo.png differ diff --git a/blockchains/ethereum/assets/0x2233799Ee2683d75dfefAcbCd2A26c78D34b470d/info.json b/blockchains/ethereum/assets/0x2233799Ee2683d75dfefAcbCd2A26c78D34b470d/info.json new file mode 100644 index 00000000..48fd0d87 --- /dev/null +++ b/blockchains/ethereum/assets/0x2233799Ee2683d75dfefAcbCd2A26c78D34b470d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Network Token", + "symbol": "NTWK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2233799Ee2683d75dfefAcbCd2A26c78D34b470d", + "status": "abandoned", + "id": "0x2233799Ee2683d75dfefAcbCd2A26c78D34b470d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2233799Ee2683d75dfefAcbCd2A26c78D34b470d/logo.png b/blockchains/ethereum/assets/0x2233799Ee2683d75dfefAcbCd2A26c78D34b470d/logo.png new file mode 100644 index 00000000..b45d4873 Binary files /dev/null and b/blockchains/ethereum/assets/0x2233799Ee2683d75dfefAcbCd2A26c78D34b470d/logo.png differ diff --git a/blockchains/ethereum/assets/0x223B6e268Eea352572c3D081039DAf00c822A4c5/info.json b/blockchains/ethereum/assets/0x223B6e268Eea352572c3D081039DAf00c822A4c5/info.json new file mode 100644 index 00000000..de611796 --- /dev/null +++ b/blockchains/ethereum/assets/0x223B6e268Eea352572c3D081039DAf00c822A4c5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crypto Chain", + "symbol": "CRC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://cryptochaini.co/", + "explorer": "https://etherscan.io/token/0x223B6e268Eea352572c3D081039DAf00c822A4c5", + "status": "abandoned", + "id": "0x223B6e268Eea352572c3D081039DAf00c822A4c5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x223B6e268Eea352572c3D081039DAf00c822A4c5/logo.png b/blockchains/ethereum/assets/0x223B6e268Eea352572c3D081039DAf00c822A4c5/logo.png new file mode 100644 index 00000000..5227fe46 Binary files /dev/null and b/blockchains/ethereum/assets/0x223B6e268Eea352572c3D081039DAf00c822A4c5/logo.png differ diff --git a/blockchains/ethereum/assets/0x224B381CFAe8CCAf2e4d32D827467C2331Ce04bE/info.json b/blockchains/ethereum/assets/0x224B381CFAe8CCAf2e4d32D827467C2331Ce04bE/info.json new file mode 100644 index 00000000..3addf871 --- /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 00000000..acfd22e8 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 new file mode 100644 index 00000000..654a599d --- /dev/null +++ b/blockchains/ethereum/assets/0x224DB5E6180761df4C3d8936585f6b8b83879770/info.json @@ -0,0 +1,33 @@ +{ + "name": "OM Lira", + "website": "https://omlira.com", + "description": "Kullanımı kolay kripto para", + "explorer": "https://etherscan.io/token/0x224db5e6180761df4c3d8936585f6b8b83879770", + "type": "ERC20", + "symbol": "OML", + "decimals": 18, + "status": "active", + "id": "0x224DB5E6180761df4C3d8936585f6b8b83879770", + "links": [ + { + "name": "x", + "url": "https://x.com/om_lira" + }, + { + "name": "discord", + "url": "https://discord.com/invite/MB75Bnc" + }, + { + "name": "facebook", + "url": "https://facebook.com/omlira" + }, + { + "name": "medium", + "url": "https://omlira.medium.com" + }, + { + "name": "whitepaper", + "url": "https://omlira.com/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x224DB5E6180761df4C3d8936585f6b8b83879770/logo.png b/blockchains/ethereum/assets/0x224DB5E6180761df4C3d8936585f6b8b83879770/logo.png new file mode 100644 index 00000000..5754c6df Binary files /dev/null and b/blockchains/ethereum/assets/0x224DB5E6180761df4C3d8936585f6b8b83879770/logo.png differ diff --git a/blockchains/ethereum/assets/0x225927F8fa71d16EE07968B8746364D1d9F839bD/info.json b/blockchains/ethereum/assets/0x225927F8fa71d16EE07968B8746364D1d9F839bD/info.json new file mode 100644 index 00000000..793ac44c --- /dev/null +++ b/blockchains/ethereum/assets/0x225927F8fa71d16EE07968B8746364D1d9F839bD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Fast", + "symbol": "BTCF", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://bitcfast.com/", + "explorer": "https://etherscan.io/token/0x225927F8fa71d16EE07968B8746364D1d9F839bD", + "status": "abandoned", + "id": "0x225927F8fa71d16EE07968B8746364D1d9F839bD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x225927F8fa71d16EE07968B8746364D1d9F839bD/logo.png b/blockchains/ethereum/assets/0x225927F8fa71d16EE07968B8746364D1d9F839bD/logo.png new file mode 100644 index 00000000..2957c7ef Binary files /dev/null and b/blockchains/ethereum/assets/0x225927F8fa71d16EE07968B8746364D1d9F839bD/logo.png differ diff --git a/blockchains/ethereum/assets/0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599/info.json b/blockchains/ethereum/assets/0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599/info.json new file mode 100644 index 00000000..3f95f6dc --- /dev/null +++ b/blockchains/ethereum/assets/0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599/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://etherscan.io/token/0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "type": "ERC20", + "symbol": "WBTC", + "decimals": 8, + "status": "active", + "id": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "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/ethereum/assets/0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599/logo.png b/blockchains/ethereum/assets/0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599/logo.png new file mode 100644 index 00000000..702d64a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599/logo.png differ diff --git a/blockchains/ethereum/assets/0x226F15CDBAa36814ce3cB287563069c32cC1A293/info.json b/blockchains/ethereum/assets/0x226F15CDBAa36814ce3cB287563069c32cC1A293/info.json new file mode 100644 index 00000000..ff05ac84 --- /dev/null +++ b/blockchains/ethereum/assets/0x226F15CDBAa36814ce3cB287563069c32cC1A293/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRYPTOFOREX", + "symbol": "CFX", + "website": "http://cryptoforex.ai/", + "description": "CRYPTOFOREX is a US dollar pegged stablecoin that aims to bring the benefits of cryptocurrency into forex trading.`", + "explorer": "https://etherscan.io/token/0x226F15CDBAa36814ce3cB287563069c32cC1A293", + "type": "ERC20", + "decimals": 2, + "status": "active", + "id": "0x226F15CDBAa36814ce3cB287563069c32cC1A293" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x226F15CDBAa36814ce3cB287563069c32cC1A293/logo.png b/blockchains/ethereum/assets/0x226F15CDBAa36814ce3cB287563069c32cC1A293/logo.png new file mode 100644 index 00000000..a638a720 Binary files /dev/null and b/blockchains/ethereum/assets/0x226F15CDBAa36814ce3cB287563069c32cC1A293/logo.png differ diff --git a/blockchains/ethereum/assets/0x226bb599a12C826476e3A771454697EA52E9E220/info.json b/blockchains/ethereum/assets/0x226bb599a12C826476e3A771454697EA52E9E220/info.json new file mode 100644 index 00000000..d425e792 --- /dev/null +++ b/blockchains/ethereum/assets/0x226bb599a12C826476e3A771454697EA52E9E220/info.json @@ -0,0 +1,11 @@ +{ + "name": "Propy", + "symbol": "PRO", + "type": "ERC20", + "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://etherscan.io/token/0x226bb599a12C826476e3A771454697EA52E9E220", + "status": "active", + "id": "0x226bb599a12C826476e3A771454697EA52E9E220" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x226bb599a12C826476e3A771454697EA52E9E220/logo.png b/blockchains/ethereum/assets/0x226bb599a12C826476e3A771454697EA52E9E220/logo.png new file mode 100644 index 00000000..810410bf Binary files /dev/null and b/blockchains/ethereum/assets/0x226bb599a12C826476e3A771454697EA52E9E220/logo.png differ diff --git a/blockchains/ethereum/assets/0x226f7b842E0F0120b7E194D05432b3fd14773a9D/info.json b/blockchains/ethereum/assets/0x226f7b842E0F0120b7E194D05432b3fd14773a9D/info.json new file mode 100644 index 00000000..8a7c6abe --- /dev/null +++ b/blockchains/ethereum/assets/0x226f7b842E0F0120b7E194D05432b3fd14773a9D/info.json @@ -0,0 +1,11 @@ +{ + "name": "UNION Protocol Governance Token", + "type": "ERC20", + "symbol": "UNN", + "decimals": 18, + "website": "https://www.unn.finance/", + "description": "UNION's cornerstone of full stack protection reduces the risks and costs of DeFi", + "explorer": "https://etherscan.io/token/0x226f7b842E0F0120b7E194D05432b3fd14773a9D", + "status": "active", + "id": "0x226f7b842E0F0120b7E194D05432b3fd14773a9D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x226f7b842E0F0120b7E194D05432b3fd14773a9D/logo.png b/blockchains/ethereum/assets/0x226f7b842E0F0120b7E194D05432b3fd14773a9D/logo.png new file mode 100644 index 00000000..1ccbac4f Binary files /dev/null and b/blockchains/ethereum/assets/0x226f7b842E0F0120b7E194D05432b3fd14773a9D/logo.png differ diff --git a/blockchains/ethereum/assets/0x228ba514309FFDF03A81a205a6D040E429d6E80C/info.json b/blockchains/ethereum/assets/0x228ba514309FFDF03A81a205a6D040E429d6E80C/info.json new file mode 100644 index 00000000..30447aa1 --- /dev/null +++ b/blockchains/ethereum/assets/0x228ba514309FFDF03A81a205a6D040E429d6E80C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Global Social Chain", + "symbol": "GSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.gsc.social", + "explorer": "https://etherscan.io/token/0x228ba514309FFDF03A81a205a6D040E429d6E80C", + "status": "active", + "id": "0x228ba514309FFDF03A81a205a6D040E429d6E80C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x228ba514309FFDF03A81a205a6D040E429d6E80C/logo.png b/blockchains/ethereum/assets/0x228ba514309FFDF03A81a205a6D040E429d6E80C/logo.png new file mode 100755 index 00000000..949be4e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x228ba514309FFDF03A81a205a6D040E429d6E80C/logo.png differ diff --git a/blockchains/ethereum/assets/0x2293E6c1C58D0e6a9f0702ddCA5551Cd2baca969/info.json b/blockchains/ethereum/assets/0x2293E6c1C58D0e6a9f0702ddCA5551Cd2baca969/info.json new file mode 100644 index 00000000..22759b0c --- /dev/null +++ b/blockchains/ethereum/assets/0x2293E6c1C58D0e6a9f0702ddCA5551Cd2baca969/info.json @@ -0,0 +1,11 @@ +{ + "name": "GCB", + "symbol": "GCB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2293E6c1C58D0e6a9f0702ddCA5551Cd2baca969", + "status": "abandoned", + "id": "0x2293E6c1C58D0e6a9f0702ddCA5551Cd2baca969" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2293E6c1C58D0e6a9f0702ddCA5551Cd2baca969/logo.png b/blockchains/ethereum/assets/0x2293E6c1C58D0e6a9f0702ddCA5551Cd2baca969/logo.png new file mode 100755 index 00000000..ba5e8ccd Binary files /dev/null and b/blockchains/ethereum/assets/0x2293E6c1C58D0e6a9f0702ddCA5551Cd2baca969/logo.png differ diff --git a/blockchains/ethereum/assets/0x2297685F1e219597B81E91d4dEd22d5291d9eDDd/info.json b/blockchains/ethereum/assets/0x2297685F1e219597B81E91d4dEd22d5291d9eDDd/info.json new file mode 100644 index 00000000..64d31e49 --- /dev/null +++ b/blockchains/ethereum/assets/0x2297685F1e219597B81E91d4dEd22d5291d9eDDd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Medanio", + "symbol": "MEDA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2297685F1e219597B81E91d4dEd22d5291d9eDDd", + "status": "abandoned", + "id": "0x2297685F1e219597B81E91d4dEd22d5291d9eDDd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2297685F1e219597B81E91d4dEd22d5291d9eDDd/logo.png b/blockchains/ethereum/assets/0x2297685F1e219597B81E91d4dEd22d5291d9eDDd/logo.png new file mode 100644 index 00000000..e6ee63c9 Binary files /dev/null and b/blockchains/ethereum/assets/0x2297685F1e219597B81E91d4dEd22d5291d9eDDd/logo.png differ diff --git a/blockchains/ethereum/assets/0x229B239b7d00AA2A41C8B74B1dB50a821f58D31a/info.json b/blockchains/ethereum/assets/0x229B239b7d00AA2A41C8B74B1dB50a821f58D31a/info.json new file mode 100644 index 00000000..c828362f --- /dev/null +++ b/blockchains/ethereum/assets/0x229B239b7d00AA2A41C8B74B1dB50a821f58D31a/info.json @@ -0,0 +1,11 @@ +{ + "name": "FRUITS", + "symbol": "FRTS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x229B239b7d00AA2A41C8B74B1dB50a821f58D31a", + "status": "abandoned", + "id": "0x229B239b7d00AA2A41C8B74B1dB50a821f58D31a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x229B239b7d00AA2A41C8B74B1dB50a821f58D31a/logo.png b/blockchains/ethereum/assets/0x229B239b7d00AA2A41C8B74B1dB50a821f58D31a/logo.png new file mode 100644 index 00000000..a2b07350 Binary files /dev/null and b/blockchains/ethereum/assets/0x229B239b7d00AA2A41C8B74B1dB50a821f58D31a/logo.png differ diff --git a/blockchains/ethereum/assets/0x22B3FAaa8DF978F6bAFe18aaDe18DC2e3dfA0e0C/info.json b/blockchains/ethereum/assets/0x22B3FAaa8DF978F6bAFe18aaDe18DC2e3dfA0e0C/info.json new file mode 100644 index 00000000..e6c1dbfe --- /dev/null +++ b/blockchains/ethereum/assets/0x22B3FAaa8DF978F6bAFe18aaDe18DC2e3dfA0e0C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bamboo", + "symbol": "BAM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x22B3FAaa8DF978F6bAFe18aaDe18DC2e3dfA0e0C", + "status": "abandoned", + "id": "0x22B3FAaa8DF978F6bAFe18aaDe18DC2e3dfA0e0C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x22B3FAaa8DF978F6bAFe18aaDe18DC2e3dfA0e0C/logo.png b/blockchains/ethereum/assets/0x22B3FAaa8DF978F6bAFe18aaDe18DC2e3dfA0e0C/logo.png new file mode 100644 index 00000000..166c065f Binary files /dev/null and b/blockchains/ethereum/assets/0x22B3FAaa8DF978F6bAFe18aaDe18DC2e3dfA0e0C/logo.png differ diff --git a/blockchains/ethereum/assets/0x22C8ECF727C23422f47093b562EC53c139805301/info.json b/blockchains/ethereum/assets/0x22C8ECF727C23422f47093b562EC53c139805301/info.json new file mode 100644 index 00000000..1d3456b3 --- /dev/null +++ b/blockchains/ethereum/assets/0x22C8ECF727C23422f47093b562EC53c139805301/info.json @@ -0,0 +1,11 @@ +{ + "name": "RealToken 16200 Fullerton Ave Detroit MI", + "symbol": "REALTOKEN-16200-FULLERTON-AVE-DETROIT-MI", + "type": "ERC20", + "decimals": 18, + "description": "16200 Fullerton is a 15-unit apartment building that has undergone comprehensive renovations in 2019, and now is a stabilized, income-producing asset with vetted tenants.", + "website": "https://realt.co/product/16200-fullerton-ave-detroit-mi-48227/", + "explorer": "https://etherscan.io/token/0x22C8ECF727C23422f47093b562EC53c139805301", + "status": "active", + "id": "0x22C8ECF727C23422f47093b562EC53c139805301" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x22C8ECF727C23422f47093b562EC53c139805301/logo.png b/blockchains/ethereum/assets/0x22C8ECF727C23422f47093b562EC53c139805301/logo.png new file mode 100644 index 00000000..4617b23e Binary files /dev/null and b/blockchains/ethereum/assets/0x22C8ECF727C23422f47093b562EC53c139805301/logo.png differ diff --git a/blockchains/ethereum/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json b/blockchains/ethereum/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json new file mode 100644 index 00000000..faaca6db --- /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 00000000..30817f4f Binary files /dev/null and b/blockchains/ethereum/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/logo.png differ diff --git a/blockchains/ethereum/assets/0x22d2B881DB8650234BECc98048987F9F012849d5/info.json b/blockchains/ethereum/assets/0x22d2B881DB8650234BECc98048987F9F012849d5/info.json new file mode 100644 index 00000000..12e477b1 --- /dev/null +++ b/blockchains/ethereum/assets/0x22d2B881DB8650234BECc98048987F9F012849d5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fixie Network", + "symbol": "XFN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x22d2B881DB8650234BECc98048987F9F012849d5", + "status": "abandoned", + "id": "0x22d2B881DB8650234BECc98048987F9F012849d5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x22d2B881DB8650234BECc98048987F9F012849d5/logo.png b/blockchains/ethereum/assets/0x22d2B881DB8650234BECc98048987F9F012849d5/logo.png new file mode 100644 index 00000000..cdda1c03 Binary files /dev/null and b/blockchains/ethereum/assets/0x22d2B881DB8650234BECc98048987F9F012849d5/logo.png differ diff --git a/blockchains/ethereum/assets/0x22dE9912cd3D74953B1cd1F250B825133cC2C1b3/info.json b/blockchains/ethereum/assets/0x22dE9912cd3D74953B1cd1F250B825133cC2C1b3/info.json new file mode 100644 index 00000000..1f2ae69a --- /dev/null +++ b/blockchains/ethereum/assets/0x22dE9912cd3D74953B1cd1F250B825133cC2C1b3/info.json @@ -0,0 +1,11 @@ +{ + "name": "DREP", + "symbol": "DREP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.drep.org", + "explorer": "https://etherscan.io/token/0x22dE9912cd3D74953B1cd1F250B825133cC2C1b3", + "status": "abandoned", + "id": "0x22dE9912cd3D74953B1cd1F250B825133cC2C1b3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x22dE9912cd3D74953B1cd1F250B825133cC2C1b3/logo.png b/blockchains/ethereum/assets/0x22dE9912cd3D74953B1cd1F250B825133cC2C1b3/logo.png new file mode 100644 index 00000000..de8c17de Binary files /dev/null and b/blockchains/ethereum/assets/0x22dE9912cd3D74953B1cd1F250B825133cC2C1b3/logo.png differ diff --git a/blockchains/ethereum/assets/0x22eEab2f980E8ed7824f8EA548C9595564a0F0e4/info.json b/blockchains/ethereum/assets/0x22eEab2f980E8ed7824f8EA548C9595564a0F0e4/info.json new file mode 100644 index 00000000..8a863af7 --- /dev/null +++ b/blockchains/ethereum/assets/0x22eEab2f980E8ed7824f8EA548C9595564a0F0e4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Standard Crypto Fund", + "website": "http://qqqfindex.com", + "description": "The Standard Crypto Fund QQQF is a tokenised exchange-tradable fund (ETF) with DAO implementation.", + "explorer": "https://etherscan.io/token/0x22eEab2f980E8ed7824f8EA548C9595564a0F0e4", + "type": "ERC20", + "symbol": "QQQF", + "decimals": 18, + "status": "active", + "id": "0x22eEab2f980E8ed7824f8EA548C9595564a0F0e4", + "links": [ + { + "name": "github", + "url": "https://github.com/standardcryptofund" + }, + { + "name": "whitepaper", + "url": "https://qqqfindex.com/qqqf_whitepaper_v1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x22eEab2f980E8ed7824f8EA548C9595564a0F0e4/logo.png b/blockchains/ethereum/assets/0x22eEab2f980E8ed7824f8EA548C9595564a0F0e4/logo.png new file mode 100644 index 00000000..9b352207 Binary files /dev/null and b/blockchains/ethereum/assets/0x22eEab2f980E8ed7824f8EA548C9595564a0F0e4/logo.png differ diff --git a/blockchains/ethereum/assets/0x2328B310b24b4b1019F8e8D3cDE5FEEC17FF73e7/info.json b/blockchains/ethereum/assets/0x2328B310b24b4b1019F8e8D3cDE5FEEC17FF73e7/info.json new file mode 100644 index 00000000..ee2fde13 --- /dev/null +++ b/blockchains/ethereum/assets/0x2328B310b24b4b1019F8e8D3cDE5FEEC17FF73e7/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-14/30M14", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2328B310b24b4b1019F8e8D3cDE5FEEC17FF73e7", + "status": "abandoned", + "id": "0x2328B310b24b4b1019F8e8D3cDE5FEEC17FF73e7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2328B310b24b4b1019F8e8D3cDE5FEEC17FF73e7/logo.png b/blockchains/ethereum/assets/0x2328B310b24b4b1019F8e8D3cDE5FEEC17FF73e7/logo.png new file mode 100644 index 00000000..2abe5029 Binary files /dev/null and b/blockchains/ethereum/assets/0x2328B310b24b4b1019F8e8D3cDE5FEEC17FF73e7/logo.png differ diff --git a/blockchains/ethereum/assets/0x23352036E911A22Cfc692B5E2E196692658ADED9/info.json b/blockchains/ethereum/assets/0x23352036E911A22Cfc692B5E2E196692658ADED9/info.json new file mode 100644 index 00000000..be420672 --- /dev/null +++ b/blockchains/ethereum/assets/0x23352036E911A22Cfc692B5E2E196692658ADED9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Friendz Coin", + "symbol": "FDZ", + "type": "ERC20", + "decimals": 18, + "description": "Friendz (FDZ) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://friendz.io", + "explorer": "https://etherscan.io/token/0x23352036E911A22Cfc692B5E2E196692658ADED9", + "status": "active", + "id": "0x23352036E911A22Cfc692B5E2E196692658ADED9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23352036E911A22Cfc692B5E2E196692658ADED9/logo.png b/blockchains/ethereum/assets/0x23352036E911A22Cfc692B5E2E196692658ADED9/logo.png new file mode 100644 index 00000000..d9bf6d68 Binary files /dev/null and b/blockchains/ethereum/assets/0x23352036E911A22Cfc692B5E2E196692658ADED9/logo.png differ diff --git a/blockchains/ethereum/assets/0x2344871f523cBb28A4f60045531184cF1F03Ad24/info.json b/blockchains/ethereum/assets/0x2344871f523cBb28A4f60045531184cF1F03Ad24/info.json new file mode 100644 index 00000000..349abfaa --- /dev/null +++ b/blockchains/ethereum/assets/0x2344871f523cBb28A4f60045531184cF1F03Ad24/info.json @@ -0,0 +1,11 @@ +{ + "name": "RoBET - Truly Decentralized Sportsbetting", + "symbol": "ROBET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.robetcoin.com/", + "explorer": "https://etherscan.io/token/0x2344871f523cBb28A4f60045531184cF1F03Ad24", + "status": "abandoned", + "id": "0x2344871f523cBb28A4f60045531184cF1F03Ad24" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2344871f523cBb28A4f60045531184cF1F03Ad24/logo.png b/blockchains/ethereum/assets/0x2344871f523cBb28A4f60045531184cF1F03Ad24/logo.png new file mode 100644 index 00000000..3ad2087b Binary files /dev/null and b/blockchains/ethereum/assets/0x2344871f523cBb28A4f60045531184cF1F03Ad24/logo.png differ diff --git a/blockchains/ethereum/assets/0x234DB38b60569972499bB3C8569feC4821B7A58D/info.json b/blockchains/ethereum/assets/0x234DB38b60569972499bB3C8569feC4821B7A58D/info.json new file mode 100644 index 00000000..78e92a6f --- /dev/null +++ b/blockchains/ethereum/assets/0x234DB38b60569972499bB3C8569feC4821B7A58D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Easybit", + "symbol": "ESYT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x234DB38b60569972499bB3C8569feC4821B7A58D", + "status": "abandoned", + "id": "0x234DB38b60569972499bB3C8569feC4821B7A58D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x234DB38b60569972499bB3C8569feC4821B7A58D/logo.png b/blockchains/ethereum/assets/0x234DB38b60569972499bB3C8569feC4821B7A58D/logo.png new file mode 100644 index 00000000..9ec5eb05 Binary files /dev/null and b/blockchains/ethereum/assets/0x234DB38b60569972499bB3C8569feC4821B7A58D/logo.png differ diff --git a/blockchains/ethereum/assets/0x23536d03bC1d25e8fCF74DD32b1dEcf9a65408BE/info.json b/blockchains/ethereum/assets/0x23536d03bC1d25e8fCF74DD32b1dEcf9a65408BE/info.json new file mode 100644 index 00000000..081eabd3 --- /dev/null +++ b/blockchains/ethereum/assets/0x23536d03bC1d25e8fCF74DD32b1dEcf9a65408BE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jii coin", + "symbol": "Jii", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x23536d03bC1d25e8fCF74DD32b1dEcf9a65408BE", + "status": "abandoned", + "id": "0x23536d03bC1d25e8fCF74DD32b1dEcf9a65408BE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23536d03bC1d25e8fCF74DD32b1dEcf9a65408BE/logo.png b/blockchains/ethereum/assets/0x23536d03bC1d25e8fCF74DD32b1dEcf9a65408BE/logo.png new file mode 100755 index 00000000..e562e7a7 Binary files /dev/null and b/blockchains/ethereum/assets/0x23536d03bC1d25e8fCF74DD32b1dEcf9a65408BE/logo.png differ diff --git a/blockchains/ethereum/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json b/blockchains/ethereum/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json new file mode 100644 index 00000000..97ecbaba --- /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 00000000..11bbde89 Binary files /dev/null and b/blockchains/ethereum/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/logo.png differ diff --git a/blockchains/ethereum/assets/0x2369686fC9FB6E1fDc46541891568c2f341906eF/info.json b/blockchains/ethereum/assets/0x2369686fC9FB6E1fDc46541891568c2f341906eF/info.json new file mode 100644 index 00000000..cb292ab3 --- /dev/null +++ b/blockchains/ethereum/assets/0x2369686fC9FB6E1fDc46541891568c2f341906eF/info.json @@ -0,0 +1,18 @@ +{ + "name": "Drakoin", + "website": "https://drakoin.drakons.io", + "description": "Drakons.IO is a strategy game and crypto collectibles site powered by blockchain", + "explorer": "https://etherscan.io/token/0x2369686fc9fb6e1fdc46541891568c2f341906ef", + "research": "https://www.drakons.io/faq", + "type": "ERC20", + "symbol": "DRK", + "decimals": 18, + "status": "active", + "id": "0x2369686fC9FB6E1fDc46541891568c2f341906eF", + "links": [ + { + "name": "whitepaper", + "url": "https://drakoin.drakons.io/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2369686fC9FB6E1fDc46541891568c2f341906eF/logo.png b/blockchains/ethereum/assets/0x2369686fC9FB6E1fDc46541891568c2f341906eF/logo.png new file mode 100644 index 00000000..435440e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x2369686fC9FB6E1fDc46541891568c2f341906eF/logo.png differ diff --git a/blockchains/ethereum/assets/0x23696914Ca9737466D8553a2d619948f548Ee424/info.json b/blockchains/ethereum/assets/0x23696914Ca9737466D8553a2d619948f548Ee424/info.json new file mode 100644 index 00000000..ee7d5191 --- /dev/null +++ b/blockchains/ethereum/assets/0x23696914Ca9737466D8553a2d619948f548Ee424/info.json @@ -0,0 +1,11 @@ +{ + "name": "Staked TrueFi", + "website": "https://truefi.io/", + "description": "TrueFi is an on-chain uncollateralized lending protocol. stkTRU represents a users TRU deposited into the protocol's staking contract", + "explorer": "https://etherscan.io/token/0x23696914Ca9737466D8553a2d619948f548Ee424", + "decimals": 8, + "id": "0x23696914Ca9737466D8553a2d619948f548Ee424", + "type": "ERC20", + "symbol": "stkTRU", + "status": "active" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23696914Ca9737466D8553a2d619948f548Ee424/logo.png b/blockchains/ethereum/assets/0x23696914Ca9737466D8553a2d619948f548Ee424/logo.png new file mode 100644 index 00000000..2da7ca3f Binary files /dev/null and b/blockchains/ethereum/assets/0x23696914Ca9737466D8553a2d619948f548Ee424/logo.png differ diff --git a/blockchains/ethereum/assets/0x23700ab342eF9cd9A943DEe2476f8bAe020D7796/info.json b/blockchains/ethereum/assets/0x23700ab342eF9cd9A943DEe2476f8bAe020D7796/info.json new file mode 100644 index 00000000..8efb88b4 --- /dev/null +++ b/blockchains/ethereum/assets/0x23700ab342eF9cd9A943DEe2476f8bAe020D7796/info.json @@ -0,0 +1,11 @@ +{ + "name": "1irstgold", + "symbol": "1STG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x23700ab342eF9cd9A943DEe2476f8bAe020D7796", + "status": "abandoned", + "id": "0x23700ab342eF9cd9A943DEe2476f8bAe020D7796" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23700ab342eF9cd9A943DEe2476f8bAe020D7796/logo.png b/blockchains/ethereum/assets/0x23700ab342eF9cd9A943DEe2476f8bAe020D7796/logo.png new file mode 100644 index 00000000..5ea686cc Binary files /dev/null and b/blockchains/ethereum/assets/0x23700ab342eF9cd9A943DEe2476f8bAe020D7796/logo.png differ diff --git a/blockchains/ethereum/assets/0x237c0e91c28d20254A2F25976b81262E63bB767f/info.json b/blockchains/ethereum/assets/0x237c0e91c28d20254A2F25976b81262E63bB767f/info.json new file mode 100644 index 00000000..26d910f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x237c0e91c28d20254A2F25976b81262E63bB767f/info.json @@ -0,0 +1,11 @@ +{ + "name": "XITO", + "symbol": "USDX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x237c0e91c28d20254A2F25976b81262E63bB767f", + "status": "abandoned", + "id": "0x237c0e91c28d20254A2F25976b81262E63bB767f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x237c0e91c28d20254A2F25976b81262E63bB767f/logo.png b/blockchains/ethereum/assets/0x237c0e91c28d20254A2F25976b81262E63bB767f/logo.png new file mode 100755 index 00000000..60c2674c Binary files /dev/null and b/blockchains/ethereum/assets/0x237c0e91c28d20254A2F25976b81262E63bB767f/logo.png differ diff --git a/blockchains/ethereum/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/info.json b/blockchains/ethereum/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/info.json new file mode 100644 index 00000000..50dd4abb --- /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 00000000..85a92734 Binary files /dev/null and b/blockchains/ethereum/assets/0x2380F2673C640fB67E2d6B55B44C62F0E0e69DA9/logo.png differ diff --git a/blockchains/ethereum/assets/0x23812334fC611d99E2506D1493791Cc87Fa6Eddd/info.json b/blockchains/ethereum/assets/0x23812334fC611d99E2506D1493791Cc87Fa6Eddd/info.json new file mode 100644 index 00000000..d81f0bef --- /dev/null +++ b/blockchains/ethereum/assets/0x23812334fC611d99E2506D1493791Cc87Fa6Eddd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nishka", + "symbol": "NSK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x23812334fC611d99E2506D1493791Cc87Fa6Eddd", + "status": "abandoned", + "id": "0x23812334fC611d99E2506D1493791Cc87Fa6Eddd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23812334fC611d99E2506D1493791Cc87Fa6Eddd/logo.png b/blockchains/ethereum/assets/0x23812334fC611d99E2506D1493791Cc87Fa6Eddd/logo.png new file mode 100755 index 00000000..b78266a3 Binary files /dev/null and b/blockchains/ethereum/assets/0x23812334fC611d99E2506D1493791Cc87Fa6Eddd/logo.png differ diff --git a/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/info.json b/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/info.json new file mode 100644 index 00000000..bc056fd1 --- /dev/null +++ b/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/info.json @@ -0,0 +1,32 @@ +{ + "name": "Geojam", + "type": "ERC20", + "symbol": "JAM", + "decimals": 18, + "website": "https://geojam.com/", + "description": "Geojam combines the technological advancements of decentralized finance with real-world experiences while interweaving the ethos of autonomous cryptocurrency communities and mainstream social networking.", + "explorer": "https://etherscan.io/token/0x23894DC9da6c94ECb439911cAF7d337746575A72", + "status": "active", + "id": "0x23894DC9da6c94ECb439911cAF7d337746575A72", + "links": [ + { + "name": "x", + "url": "https://x.com/geojamofficial" + }, + { + "name": "telegram", + "url": "https://t.me/geojamofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/geojam-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/geojam/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/logo.png b/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/logo.png new file mode 100644 index 00000000..fc63927a Binary files /dev/null and b/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/logo.png differ diff --git a/blockchains/ethereum/assets/0x2396695c0979562F2D4068fe5f6A5AF6c838F15c/info.json b/blockchains/ethereum/assets/0x2396695c0979562F2D4068fe5f6A5AF6c838F15c/info.json new file mode 100644 index 00000000..b57a15f5 --- /dev/null +++ b/blockchains/ethereum/assets/0x2396695c0979562F2D4068fe5f6A5AF6c838F15c/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRADE DINAR", + "symbol": "KWDT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2396695c0979562F2D4068fe5f6A5AF6c838F15c", + "status": "abandoned", + "id": "0x2396695c0979562F2D4068fe5f6A5AF6c838F15c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2396695c0979562F2D4068fe5f6A5AF6c838F15c/logo.png b/blockchains/ethereum/assets/0x2396695c0979562F2D4068fe5f6A5AF6c838F15c/logo.png new file mode 100644 index 00000000..8e1a9da7 Binary files /dev/null and b/blockchains/ethereum/assets/0x2396695c0979562F2D4068fe5f6A5AF6c838F15c/logo.png differ diff --git a/blockchains/ethereum/assets/0x2396FBC0e2E3AE4B7206EbDb5706e2a5920349CB/info.json b/blockchains/ethereum/assets/0x2396FBC0e2E3AE4B7206EbDb5706e2a5920349CB/info.json new file mode 100644 index 00000000..39c35bce --- /dev/null +++ b/blockchains/ethereum/assets/0x2396FBC0e2E3AE4B7206EbDb5706e2a5920349CB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Color Coin", + "symbol": "CLR", + "type": "ERC20", + "decimals": 18, + "description": "Color Platform is devoted to bringing the opportunities of a decentralized platform for daily life.", + "website": "https://color-platform.org/~colors/en/", + "explorer": "https://etherscan.io/token/0x2396FBC0e2E3AE4B7206EbDb5706e2a5920349CB", + "status": "active", + "id": "0x2396FBC0e2E3AE4B7206EbDb5706e2a5920349CB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2396FBC0e2E3AE4B7206EbDb5706e2a5920349CB/logo.png b/blockchains/ethereum/assets/0x2396FBC0e2E3AE4B7206EbDb5706e2a5920349CB/logo.png new file mode 100644 index 00000000..188d1faa Binary files /dev/null and b/blockchains/ethereum/assets/0x2396FBC0e2E3AE4B7206EbDb5706e2a5920349CB/logo.png differ diff --git a/blockchains/ethereum/assets/0x239836e951DD75Fea01beF8ba039119dc8D5352f/info.json b/blockchains/ethereum/assets/0x239836e951DD75Fea01beF8ba039119dc8D5352f/info.json new file mode 100644 index 00000000..b644d1df --- /dev/null +++ b/blockchains/ethereum/assets/0x239836e951DD75Fea01beF8ba039119dc8D5352f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Boostedpro Coin", + "symbol": "BPC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x239836e951DD75Fea01beF8ba039119dc8D5352f", + "status": "abandoned", + "id": "0x239836e951DD75Fea01beF8ba039119dc8D5352f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x239836e951DD75Fea01beF8ba039119dc8D5352f/logo.png b/blockchains/ethereum/assets/0x239836e951DD75Fea01beF8ba039119dc8D5352f/logo.png new file mode 100644 index 00000000..567d183e Binary files /dev/null and b/blockchains/ethereum/assets/0x239836e951DD75Fea01beF8ba039119dc8D5352f/logo.png differ diff --git a/blockchains/ethereum/assets/0x239Dc02A28a0774738463E06245544a72745d5c5/info.json b/blockchains/ethereum/assets/0x239Dc02A28a0774738463E06245544a72745d5c5/info.json new file mode 100644 index 00000000..137e4533 --- /dev/null +++ b/blockchains/ethereum/assets/0x239Dc02A28a0774738463E06245544a72745d5c5/info.json @@ -0,0 +1,14 @@ +{ + "name": "Hanzo Inu", + "type": "ERC20", + "symbol": "HNZO", + "decimals": 9, + "description": "Hanzo Inu ($HNZO) is a peer-to peer cryptocurrency with built-in Automated Rewards Farming (ARF) technology. Just hold $HNZO in your wallet, and earn passive income.", + "website": "https://hanzoinu.finance", + "explorer": "https://etherscan.io/token/0x239dc02a28a0774738463e06245544a72745d5c5", + "status": "active", + "id": "0x239Dc02A28a0774738463E06245544a72745d5c5", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x239Dc02A28a0774738463E06245544a72745d5c5/logo.png b/blockchains/ethereum/assets/0x239Dc02A28a0774738463E06245544a72745d5c5/logo.png new file mode 100644 index 00000000..46e57f55 Binary files /dev/null and b/blockchains/ethereum/assets/0x239Dc02A28a0774738463E06245544a72745d5c5/logo.png differ diff --git a/blockchains/ethereum/assets/0x23B608675a2B2fB1890d3ABBd85c5775c51691d5/info.json b/blockchains/ethereum/assets/0x23B608675a2B2fB1890d3ABBd85c5775c51691d5/info.json new file mode 100644 index 00000000..f9d27e79 --- /dev/null +++ b/blockchains/ethereum/assets/0x23B608675a2B2fB1890d3ABBd85c5775c51691d5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unisocks Edition 0", + "symbol": "SOCKS", + "type": "ERC20", + "decimals": 18, + "description": "Unisocks is an “experimental” non-fungible token (NFT) listed on the Uniswap exchange.", + "website": "https://unisocks.exchange/", + "explorer": "https://etherscan.io/token/0x23B608675a2B2fB1890d3ABBd85c5775c51691d5", + "status": "active", + "id": "0x23B608675a2B2fB1890d3ABBd85c5775c51691d5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23B608675a2B2fB1890d3ABBd85c5775c51691d5/logo.png b/blockchains/ethereum/assets/0x23B608675a2B2fB1890d3ABBd85c5775c51691d5/logo.png new file mode 100755 index 00000000..cb728e8b Binary files /dev/null and b/blockchains/ethereum/assets/0x23B608675a2B2fB1890d3ABBd85c5775c51691d5/logo.png differ diff --git a/blockchains/ethereum/assets/0x23Ccc43365D9dD3882eab88F43d515208f832430/info.json b/blockchains/ethereum/assets/0x23Ccc43365D9dD3882eab88F43d515208f832430/info.json new file mode 100644 index 00000000..eec612e6 --- /dev/null +++ b/blockchains/ethereum/assets/0x23Ccc43365D9dD3882eab88F43d515208f832430/info.json @@ -0,0 +1,11 @@ +{ + "name": "MidasProtocol", + "symbol": "MAS", + "type": "ERC20", + "decimals": 18, + "description": "A smart, secure, user-friendly, multi-coin wallet for all essential crypto needs, from safekeeping, intelligent trading, portfolio management, easy conversion to fiat and spending of cryptocurrencies - MidasProtocol.io", + "website": "https://midasprotocol.io/", + "explorer": "https://etherscan.io/token/0x23Ccc43365D9dD3882eab88F43d515208f832430", + "status": "active", + "id": "0x23Ccc43365D9dD3882eab88F43d515208f832430" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23Ccc43365D9dD3882eab88F43d515208f832430/logo.png b/blockchains/ethereum/assets/0x23Ccc43365D9dD3882eab88F43d515208f832430/logo.png new file mode 100644 index 00000000..d1667df9 Binary files /dev/null and b/blockchains/ethereum/assets/0x23Ccc43365D9dD3882eab88F43d515208f832430/logo.png differ diff --git a/blockchains/ethereum/assets/0x23D80c4EE8Fb55D4183dd9329296E176dC7464e1/info.json b/blockchains/ethereum/assets/0x23D80c4EE8Fb55D4183dd9329296E176dC7464e1/info.json new file mode 100644 index 00000000..78302a7c --- /dev/null +++ b/blockchains/ethereum/assets/0x23D80c4EE8Fb55D4183dd9329296E176dC7464e1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Donut", + "symbol": "DONUT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x23D80c4EE8Fb55D4183dd9329296E176dC7464e1", + "status": "abandoned", + "id": "0x23D80c4EE8Fb55D4183dd9329296E176dC7464e1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23D80c4EE8Fb55D4183dd9329296E176dC7464e1/logo.png b/blockchains/ethereum/assets/0x23D80c4EE8Fb55D4183dd9329296E176dC7464e1/logo.png new file mode 100755 index 00000000..863930e9 Binary files /dev/null and b/blockchains/ethereum/assets/0x23D80c4EE8Fb55D4183dd9329296E176dC7464e1/logo.png differ diff --git a/blockchains/ethereum/assets/0x23E4D69E477295547c89f36ca0df40646e72F998/info.json b/blockchains/ethereum/assets/0x23E4D69E477295547c89f36ca0df40646e72F998/info.json new file mode 100644 index 00000000..339cd7c4 --- /dev/null +++ b/blockchains/ethereum/assets/0x23E4D69E477295547c89f36ca0df40646e72F998/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blend", + "symbol": "BED", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x23E4D69E477295547c89f36ca0df40646e72F998", + "status": "abandoned", + "id": "0x23E4D69E477295547c89f36ca0df40646e72F998" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23E4D69E477295547c89f36ca0df40646e72F998/logo.png b/blockchains/ethereum/assets/0x23E4D69E477295547c89f36ca0df40646e72F998/logo.png new file mode 100644 index 00000000..172e6473 Binary files /dev/null and b/blockchains/ethereum/assets/0x23E4D69E477295547c89f36ca0df40646e72F998/logo.png differ diff --git a/blockchains/ethereum/assets/0x23EaaAD4B368F846C7a62759BAa086478D6EA5F1/info.json b/blockchains/ethereum/assets/0x23EaaAD4B368F846C7a62759BAa086478D6EA5F1/info.json new file mode 100644 index 00000000..f3843c70 --- /dev/null +++ b/blockchains/ethereum/assets/0x23EaaAD4B368F846C7a62759BAa086478D6EA5F1/info.json @@ -0,0 +1,11 @@ +{ + "name": "RESERVE USD", + "symbol": "RZE", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x23EaaAD4B368F846C7a62759BAa086478D6EA5F1", + "status": "abandoned", + "id": "0x23EaaAD4B368F846C7a62759BAa086478D6EA5F1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23EaaAD4B368F846C7a62759BAa086478D6EA5F1/logo.png b/blockchains/ethereum/assets/0x23EaaAD4B368F846C7a62759BAa086478D6EA5F1/logo.png new file mode 100644 index 00000000..556c6d31 Binary files /dev/null and b/blockchains/ethereum/assets/0x23EaaAD4B368F846C7a62759BAa086478D6EA5F1/logo.png differ diff --git a/blockchains/ethereum/assets/0x23aE3C5B39B12f0693e05435EeaA1e51d8c61530/info.json b/blockchains/ethereum/assets/0x23aE3C5B39B12f0693e05435EeaA1e51d8c61530/info.json new file mode 100644 index 00000000..167e5c9e --- /dev/null +++ b/blockchains/ethereum/assets/0x23aE3C5B39B12f0693e05435EeaA1e51d8c61530/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aigang Pre-Launch Token", + "symbol": "APT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x23aE3C5B39B12f0693e05435EeaA1e51d8c61530", + "status": "abandoned", + "id": "0x23aE3C5B39B12f0693e05435EeaA1e51d8c61530" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23aE3C5B39B12f0693e05435EeaA1e51d8c61530/logo.png b/blockchains/ethereum/assets/0x23aE3C5B39B12f0693e05435EeaA1e51d8c61530/logo.png new file mode 100755 index 00000000..4ab1537e Binary files /dev/null and b/blockchains/ethereum/assets/0x23aE3C5B39B12f0693e05435EeaA1e51d8c61530/logo.png differ diff --git a/blockchains/ethereum/assets/0x23aEfF664c1B2bbA98422a0399586e96cc8a1C92/info.json b/blockchains/ethereum/assets/0x23aEfF664c1B2bbA98422a0399586e96cc8a1C92/info.json new file mode 100644 index 00000000..e337b007 --- /dev/null +++ b/blockchains/ethereum/assets/0x23aEfF664c1B2bbA98422a0399586e96cc8a1C92/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fact", + "website": "https://fact.finance", + "description": "Fee Active Collateral Token Is A Decentralized Finance Ecosystem That Allows Users To Borrow FACT Directly From The Liquidity Pool By Paying A One Time Processing Fee To The Pool Participants. This Loan Is Repaid On A Monthly Basis For 6 Months Or Before The 6 Months Ends.", + "explorer": "https://etherscan.io/token/0x23aEfF664c1B2bbA98422a0399586e96cc8a1C92", + "type": "ERC20", + "symbol": "Fact", + "decimals": 18, + "status": "active", + "id": "0x23aEfF664c1B2bbA98422a0399586e96cc8a1C92" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23aEfF664c1B2bbA98422a0399586e96cc8a1C92/logo.png b/blockchains/ethereum/assets/0x23aEfF664c1B2bbA98422a0399586e96cc8a1C92/logo.png new file mode 100644 index 00000000..1376f1fa Binary files /dev/null and b/blockchains/ethereum/assets/0x23aEfF664c1B2bbA98422a0399586e96cc8a1C92/logo.png differ diff --git a/blockchains/ethereum/assets/0x23aaB5E8cDAFCa91849f0c8Fab42500fbdfed9Bd/info.json b/blockchains/ethereum/assets/0x23aaB5E8cDAFCa91849f0c8Fab42500fbdfed9Bd/info.json new file mode 100644 index 00000000..969166f3 --- /dev/null +++ b/blockchains/ethereum/assets/0x23aaB5E8cDAFCa91849f0c8Fab42500fbdfed9Bd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ebank Token", + "symbol": "EBT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x23aaB5E8cDAFCa91849f0c8Fab42500fbdfed9Bd", + "status": "abandoned", + "id": "0x23aaB5E8cDAFCa91849f0c8Fab42500fbdfed9Bd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23aaB5E8cDAFCa91849f0c8Fab42500fbdfed9Bd/logo.png b/blockchains/ethereum/assets/0x23aaB5E8cDAFCa91849f0c8Fab42500fbdfed9Bd/logo.png new file mode 100644 index 00000000..56a8675c Binary files /dev/null and b/blockchains/ethereum/assets/0x23aaB5E8cDAFCa91849f0c8Fab42500fbdfed9Bd/logo.png differ diff --git a/blockchains/ethereum/assets/0x23b75Bc7AaF28e2d6628C3f424B3882F8f072a3c/info.json b/blockchains/ethereum/assets/0x23b75Bc7AaF28e2d6628C3f424B3882F8f072a3c/info.json new file mode 100644 index 00000000..72076185 --- /dev/null +++ b/blockchains/ethereum/assets/0x23b75Bc7AaF28e2d6628C3f424B3882F8f072a3c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vice", + "symbol": "VIT", + "type": "ERC20", + "decimals": 18, + "description": "Adult Entertainment Platform.", + "website": "https://www.visionindustry.com", + "explorer": "https://etherscan.io/token/0x23b75Bc7AaF28e2d6628C3f424B3882F8f072a3c", + "status": "active", + "id": "0x23b75Bc7AaF28e2d6628C3f424B3882F8f072a3c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23b75Bc7AaF28e2d6628C3f424B3882F8f072a3c/logo.png b/blockchains/ethereum/assets/0x23b75Bc7AaF28e2d6628C3f424B3882F8f072a3c/logo.png new file mode 100755 index 00000000..303dab98 Binary files /dev/null and b/blockchains/ethereum/assets/0x23b75Bc7AaF28e2d6628C3f424B3882F8f072a3c/logo.png differ diff --git a/blockchains/ethereum/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json b/blockchains/ethereum/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json new file mode 100644 index 00000000..c91b6148 --- /dev/null +++ b/blockchains/ethereum/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json @@ -0,0 +1,47 @@ +{ + "name": "EverRise NFT Stakes", + "type": "ERC20", + "symbol": "nftRISE", + "decimals": 0, + "website": "https://www.everrise.com/", + "description": "EverRise Staking NFTs are containers of Vote Escrowed (ve)EverRise weighted governance tokens. veRISE generates rewards from the auto-buyback with a market driven yield curve, based on the transaction volume of EverRise trades and veEverRise sales.", + "explorer": "https://etherscan.io/token/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", + "status": "active", + "id": "0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", + "links": [ + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png b/blockchains/ethereum/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png new file mode 100644 index 00000000..4272c382 Binary files /dev/null and b/blockchains/ethereum/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png differ diff --git a/blockchains/ethereum/assets/0x23e392DaF36f2328C068E664a5EB7e5c9369a86D/info.json b/blockchains/ethereum/assets/0x23e392DaF36f2328C068E664a5EB7e5c9369a86D/info.json new file mode 100644 index 00000000..55e734d3 --- /dev/null +++ b/blockchains/ethereum/assets/0x23e392DaF36f2328C068E664a5EB7e5c9369a86D/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-17/30M47", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x23e392DaF36f2328C068E664a5EB7e5c9369a86D", + "status": "abandoned", + "id": "0x23e392DaF36f2328C068E664a5EB7e5c9369a86D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x23e392DaF36f2328C068E664a5EB7e5c9369a86D/logo.png b/blockchains/ethereum/assets/0x23e392DaF36f2328C068E664a5EB7e5c9369a86D/logo.png new file mode 100644 index 00000000..7323eb40 Binary files /dev/null and b/blockchains/ethereum/assets/0x23e392DaF36f2328C068E664a5EB7e5c9369a86D/logo.png differ diff --git a/blockchains/ethereum/assets/0x240166D45b82b7a9715A52E5cF1E3B89DA2079fC/info.json b/blockchains/ethereum/assets/0x240166D45b82b7a9715A52E5cF1E3B89DA2079fC/info.json new file mode 100644 index 00000000..af2e55cd --- /dev/null +++ b/blockchains/ethereum/assets/0x240166D45b82b7a9715A52E5cF1E3B89DA2079fC/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-25/30M25", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x240166D45b82b7a9715A52E5cF1E3B89DA2079fC", + "status": "abandoned", + "id": "0x240166D45b82b7a9715A52E5cF1E3B89DA2079fC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x240166D45b82b7a9715A52E5cF1E3B89DA2079fC/logo.png b/blockchains/ethereum/assets/0x240166D45b82b7a9715A52E5cF1E3B89DA2079fC/logo.png new file mode 100644 index 00000000..a791b005 Binary files /dev/null and b/blockchains/ethereum/assets/0x240166D45b82b7a9715A52E5cF1E3B89DA2079fC/logo.png differ diff --git a/blockchains/ethereum/assets/0x241958c86c7744d15d5f6314BA1Ea4c81DDA2896/info.json b/blockchains/ethereum/assets/0x241958c86c7744d15d5f6314BA1Ea4c81DDA2896/info.json new file mode 100644 index 00000000..ea026fbd --- /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 00000000..72641705 Binary files /dev/null and b/blockchains/ethereum/assets/0x241958c86c7744d15d5f6314BA1Ea4c81DDA2896/logo.png differ diff --git a/blockchains/ethereum/assets/0x241C248B0Db328e25921a91D04F43c985dedbd07/info.json b/blockchains/ethereum/assets/0x241C248B0Db328e25921a91D04F43c985dedbd07/info.json new file mode 100644 index 00000000..d63e42c1 --- /dev/null +++ b/blockchains/ethereum/assets/0x241C248B0Db328e25921a91D04F43c985dedbd07/info.json @@ -0,0 +1,11 @@ +{ + "name": "MXT", + "symbol": "MXT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x241C248B0Db328e25921a91D04F43c985dedbd07", + "status": "abandoned", + "id": "0x241C248B0Db328e25921a91D04F43c985dedbd07" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x241C248B0Db328e25921a91D04F43c985dedbd07/logo.png b/blockchains/ethereum/assets/0x241C248B0Db328e25921a91D04F43c985dedbd07/logo.png new file mode 100644 index 00000000..44f178ec Binary files /dev/null and b/blockchains/ethereum/assets/0x241C248B0Db328e25921a91D04F43c985dedbd07/logo.png differ diff --git a/blockchains/ethereum/assets/0x241bA672574A78a3A604CDd0a94429A73a84a324/info.json b/blockchains/ethereum/assets/0x241bA672574A78a3A604CDd0a94429A73a84a324/info.json new file mode 100644 index 00000000..71eaded7 --- /dev/null +++ b/blockchains/ethereum/assets/0x241bA672574A78a3A604CDd0a94429A73a84a324/info.json @@ -0,0 +1,11 @@ +{ + "name": "4NEW", + "symbol": "KWATT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://4new.io/", + "explorer": "https://etherscan.io/token/0x241bA672574A78a3A604CDd0a94429A73a84a324", + "status": "abandoned", + "id": "0x241bA672574A78a3A604CDd0a94429A73a84a324" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x241bA672574A78a3A604CDd0a94429A73a84a324/logo.png b/blockchains/ethereum/assets/0x241bA672574A78a3A604CDd0a94429A73a84a324/logo.png new file mode 100644 index 00000000..33a59010 Binary files /dev/null and b/blockchains/ethereum/assets/0x241bA672574A78a3A604CDd0a94429A73a84a324/logo.png differ diff --git a/blockchains/ethereum/assets/0x241f5256070F0248386a1Cbe1644561d8479A779/info.json b/blockchains/ethereum/assets/0x241f5256070F0248386a1Cbe1644561d8479A779/info.json new file mode 100644 index 00000000..c527ab06 --- /dev/null +++ b/blockchains/ethereum/assets/0x241f5256070F0248386a1Cbe1644561d8479A779/info.json @@ -0,0 +1,11 @@ +{ + "name": "REAL", + "symbol": "REAL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x241f5256070F0248386a1Cbe1644561d8479A779", + "status": "abandoned", + "id": "0x241f5256070F0248386a1Cbe1644561d8479A779" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x241f5256070F0248386a1Cbe1644561d8479A779/logo.png b/blockchains/ethereum/assets/0x241f5256070F0248386a1Cbe1644561d8479A779/logo.png new file mode 100644 index 00000000..90d21ef0 Binary files /dev/null and b/blockchains/ethereum/assets/0x241f5256070F0248386a1Cbe1644561d8479A779/logo.png differ diff --git a/blockchains/ethereum/assets/0x24203996DCA9131aad08F7be29E227342a0946B9/info.json b/blockchains/ethereum/assets/0x24203996DCA9131aad08F7be29E227342a0946B9/info.json new file mode 100644 index 00000000..54478ec9 --- /dev/null +++ b/blockchains/ethereum/assets/0x24203996DCA9131aad08F7be29E227342a0946B9/info.json @@ -0,0 +1,11 @@ +{ + "name": "VendingChain", + "symbol": "VEND", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x24203996DCA9131aad08F7be29E227342a0946B9", + "status": "abandoned", + "id": "0x24203996DCA9131aad08F7be29E227342a0946B9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24203996DCA9131aad08F7be29E227342a0946B9/logo.png b/blockchains/ethereum/assets/0x24203996DCA9131aad08F7be29E227342a0946B9/logo.png new file mode 100644 index 00000000..3f59df59 Binary files /dev/null and b/blockchains/ethereum/assets/0x24203996DCA9131aad08F7be29E227342a0946B9/logo.png differ diff --git a/blockchains/ethereum/assets/0x24222A2602B1d83483977c1eB2518E15E58EB907/info.json b/blockchains/ethereum/assets/0x24222A2602B1d83483977c1eB2518E15E58EB907/info.json new file mode 100644 index 00000000..19bb1b43 --- /dev/null +++ b/blockchains/ethereum/assets/0x24222A2602B1d83483977c1eB2518E15E58EB907/info.json @@ -0,0 +1,11 @@ +{ + "name": "Detrust Token", + "symbol": "XDT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x24222A2602B1d83483977c1eB2518E15E58EB907", + "status": "abandoned", + "id": "0x24222A2602B1d83483977c1eB2518E15E58EB907" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24222A2602B1d83483977c1eB2518E15E58EB907/logo.png b/blockchains/ethereum/assets/0x24222A2602B1d83483977c1eB2518E15E58EB907/logo.png new file mode 100644 index 00000000..b522294b Binary files /dev/null and b/blockchains/ethereum/assets/0x24222A2602B1d83483977c1eB2518E15E58EB907/logo.png differ diff --git a/blockchains/ethereum/assets/0x24283732C3DF91EE1e4354a3934C14B88B2d9a51/info.json b/blockchains/ethereum/assets/0x24283732C3DF91EE1e4354a3934C14B88B2d9a51/info.json new file mode 100644 index 00000000..80a879de --- /dev/null +++ b/blockchains/ethereum/assets/0x24283732C3DF91EE1e4354a3934C14B88B2d9a51/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ternio", + "symbol": "TERN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x24283732C3DF91EE1e4354a3934C14B88B2d9a51", + "status": "abandoned", + "id": "0x24283732C3DF91EE1e4354a3934C14B88B2d9a51" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24283732C3DF91EE1e4354a3934C14B88B2d9a51/logo.png b/blockchains/ethereum/assets/0x24283732C3DF91EE1e4354a3934C14B88B2d9a51/logo.png new file mode 100644 index 00000000..eb7b179d Binary files /dev/null and b/blockchains/ethereum/assets/0x24283732C3DF91EE1e4354a3934C14B88B2d9a51/logo.png differ diff --git a/blockchains/ethereum/assets/0x243434048cC22eFdDB8AaB75673618CcBD63D155/info.json b/blockchains/ethereum/assets/0x243434048cC22eFdDB8AaB75673618CcBD63D155/info.json new file mode 100644 index 00000000..3cbd5505 --- /dev/null +++ b/blockchains/ethereum/assets/0x243434048cC22eFdDB8AaB75673618CcBD63D155/info.json @@ -0,0 +1,11 @@ +{ + "name": "onlyHundred", + "symbol": "OH", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x243434048cC22eFdDB8AaB75673618CcBD63D155", + "status": "abandoned", + "id": "0x243434048cC22eFdDB8AaB75673618CcBD63D155" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x243434048cC22eFdDB8AaB75673618CcBD63D155/logo.png b/blockchains/ethereum/assets/0x243434048cC22eFdDB8AaB75673618CcBD63D155/logo.png new file mode 100644 index 00000000..2a7f28db Binary files /dev/null and b/blockchains/ethereum/assets/0x243434048cC22eFdDB8AaB75673618CcBD63D155/logo.png differ diff --git a/blockchains/ethereum/assets/0x243c0769Fdef930c8a7558e390F619d4F093E19D/info.json b/blockchains/ethereum/assets/0x243c0769Fdef930c8a7558e390F619d4F093E19D/info.json new file mode 100644 index 00000000..1c7c4845 --- /dev/null +++ b/blockchains/ethereum/assets/0x243c0769Fdef930c8a7558e390F619d4F093E19D/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 307-CN28", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x243c0769Fdef930c8a7558e390F619d4F093E19D", + "status": "abandoned", + "id": "0x243c0769Fdef930c8a7558e390F619d4F093E19D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x243c0769Fdef930c8a7558e390F619d4F093E19D/logo.png b/blockchains/ethereum/assets/0x243c0769Fdef930c8a7558e390F619d4F093E19D/logo.png new file mode 100644 index 00000000..bdaca256 Binary files /dev/null and b/blockchains/ethereum/assets/0x243c0769Fdef930c8a7558e390F619d4F093E19D/logo.png differ diff --git a/blockchains/ethereum/assets/0x243c9be13fAbA09F945ccc565547293337Da0Ad7/info.json b/blockchains/ethereum/assets/0x243c9be13fAbA09F945ccc565547293337Da0Ad7/info.json new file mode 100644 index 00000000..d9c0400f --- /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 00000000..ee9f2059 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 new file mode 100644 index 00000000..f7471cda --- /dev/null +++ b/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/info.json @@ -0,0 +1,36 @@ +{ + "name": "Shina Inu", + "type": "ERC20", + "symbol": "SHI", + "decimals": 18, + "website": "https://shinatoken.com", + "description": "Shina Token is a decentralized meme token on the Ethereum blockchain. Its mission is to give back to the crypto community, give to charity, and win the heart of the greatest token of all time - Shina Inu.", + "explorer": "https://etherscan.io/token/0x243cACb4D5fF6814AD668C3e225246efA886AD5a", + "status": "active", + "id": "0x243cACb4D5fF6814AD668C3e225246efA886AD5a", + "links": [ + { + "name": "x", + "url": "https://x.com/ShinaToken" + }, + { + "name": "telegram", + "url": "https://t.me/shinatokenportal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shina-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shina-inu" + }, + { + "name": "whitepaper", + "url": "https://shinatoken.com/whitepaper/ShinaTokenWhitepaper-v0.6.pdf" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/logo.png b/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/logo.png new file mode 100644 index 00000000..18784a87 Binary files /dev/null and b/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/logo.png differ diff --git a/blockchains/ethereum/assets/0x244EFb92f76a57da49B5F71045dcE3E546E13106/info.json b/blockchains/ethereum/assets/0x244EFb92f76a57da49B5F71045dcE3E546E13106/info.json new file mode 100644 index 00000000..eeb007ca --- /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 00000000..940143ce 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 00000000..13457b3f --- /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 00000000..9a414709 Binary files /dev/null and b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/logo.png differ diff --git a/blockchains/ethereum/assets/0x245392ee7Ce736eC6A0908B67dC5d0a218230005/info.json b/blockchains/ethereum/assets/0x245392ee7Ce736eC6A0908B67dC5d0a218230005/info.json new file mode 100644 index 00000000..f0322bf8 --- /dev/null +++ b/blockchains/ethereum/assets/0x245392ee7Ce736eC6A0908B67dC5d0a218230005/info.json @@ -0,0 +1,11 @@ +{ + "name": "YAPSTONE", + "symbol": "YAP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.yapstone.pro/", + "explorer": "https://etherscan.io/token/0x245392ee7Ce736eC6A0908B67dC5d0a218230005", + "status": "abandoned", + "id": "0x245392ee7Ce736eC6A0908B67dC5d0a218230005" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x245392ee7Ce736eC6A0908B67dC5d0a218230005/logo.png b/blockchains/ethereum/assets/0x245392ee7Ce736eC6A0908B67dC5d0a218230005/logo.png new file mode 100644 index 00000000..ec8e4e46 Binary files /dev/null and b/blockchains/ethereum/assets/0x245392ee7Ce736eC6A0908B67dC5d0a218230005/logo.png differ diff --git a/blockchains/ethereum/assets/0x245663Af5561Dea23775f5feEB8f59500920B857/info.json b/blockchains/ethereum/assets/0x245663Af5561Dea23775f5feEB8f59500920B857/info.json new file mode 100644 index 00000000..3e4126d0 --- /dev/null +++ b/blockchains/ethereum/assets/0x245663Af5561Dea23775f5feEB8f59500920B857/info.json @@ -0,0 +1,11 @@ +{ + "name": "BCShareS", + "symbol": "BCS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x245663Af5561Dea23775f5feEB8f59500920B857", + "status": "abandoned", + "id": "0x245663Af5561Dea23775f5feEB8f59500920B857" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x245663Af5561Dea23775f5feEB8f59500920B857/logo.png b/blockchains/ethereum/assets/0x245663Af5561Dea23775f5feEB8f59500920B857/logo.png new file mode 100644 index 00000000..45491512 Binary files /dev/null and b/blockchains/ethereum/assets/0x245663Af5561Dea23775f5feEB8f59500920B857/logo.png differ diff --git a/blockchains/ethereum/assets/0x245b78F9957F0Dc435D1c093C64D2DEFE78577b2/info.json b/blockchains/ethereum/assets/0x245b78F9957F0Dc435D1c093C64D2DEFE78577b2/info.json new file mode 100644 index 00000000..2334a40d --- /dev/null +++ b/blockchains/ethereum/assets/0x245b78F9957F0Dc435D1c093C64D2DEFE78577b2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Halving Coin", + "symbol": "HALV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://halvingcoin.space/", + "explorer": "https://etherscan.io/token/0x245b78F9957F0Dc435D1c093C64D2DEFE78577b2", + "status": "abandoned", + "id": "0x245b78F9957F0Dc435D1c093C64D2DEFE78577b2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x245b78F9957F0Dc435D1c093C64D2DEFE78577b2/logo.png b/blockchains/ethereum/assets/0x245b78F9957F0Dc435D1c093C64D2DEFE78577b2/logo.png new file mode 100644 index 00000000..1348ac0d Binary files /dev/null and b/blockchains/ethereum/assets/0x245b78F9957F0Dc435D1c093C64D2DEFE78577b2/logo.png differ diff --git a/blockchains/ethereum/assets/0x245ef47D4d0505ECF3Ac463F4d81f41ADE8f1fd1/info.json b/blockchains/ethereum/assets/0x245ef47D4d0505ECF3Ac463F4d81f41ADE8f1fd1/info.json new file mode 100644 index 00000000..61d6211a --- /dev/null +++ b/blockchains/ethereum/assets/0x245ef47D4d0505ECF3Ac463F4d81f41ADE8f1fd1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nuggets", + "symbol": "NUG", + "type": "ERC20", + "decimals": 18, + "description": "Nuggets is a decentralized, self-sovereign ID and payments platform", + "website": "https://nuggets.life/", + "explorer": "https://etherscan.io/token/0x245ef47D4d0505ECF3Ac463F4d81f41ADE8f1fd1", + "status": "active", + "id": "0x245ef47D4d0505ECF3Ac463F4d81f41ADE8f1fd1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x245ef47D4d0505ECF3Ac463F4d81f41ADE8f1fd1/logo.png b/blockchains/ethereum/assets/0x245ef47D4d0505ECF3Ac463F4d81f41ADE8f1fd1/logo.png new file mode 100644 index 00000000..9b89f118 Binary files /dev/null and b/blockchains/ethereum/assets/0x245ef47D4d0505ECF3Ac463F4d81f41ADE8f1fd1/logo.png differ diff --git a/blockchains/ethereum/assets/0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC/info.json b/blockchains/ethereum/assets/0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC/info.json new file mode 100644 index 00000000..a872c0a1 --- /dev/null +++ b/blockchains/ethereum/assets/0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC/info.json @@ -0,0 +1,11 @@ +{ + "name": "qiibeeToken", + "symbol": "QBX", + "type": "ERC20", + "decimals": 18, + "description": "The global standard for loyalty on the blockchain. With qiibee, businesses around the world can run their loyalty programs on the blockchain.", + "website": "https://qiibee.com/", + "explorer": "https://etherscan.io/token/0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC", + "status": "abandoned", + "id": "0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24692791Bc444c5Cd0b81e3CBCaba4b04Acd1F3B/info.json b/blockchains/ethereum/assets/0x24692791Bc444c5Cd0b81e3CBCaba4b04Acd1F3B/info.json new file mode 100644 index 00000000..2c619ee7 --- /dev/null +++ b/blockchains/ethereum/assets/0x24692791Bc444c5Cd0b81e3CBCaba4b04Acd1F3B/info.json @@ -0,0 +1,11 @@ +{ + "name": "UnikoinGold", + "symbol": "UKG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://unikoingold.com/", + "explorer": "https://etherscan.io/token/0x24692791Bc444c5Cd0b81e3CBCaba4b04Acd1F3B", + "status": "abandoned", + "id": "0x24692791Bc444c5Cd0b81e3CBCaba4b04Acd1F3B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24692791Bc444c5Cd0b81e3CBCaba4b04Acd1F3B/logo.png b/blockchains/ethereum/assets/0x24692791Bc444c5Cd0b81e3CBCaba4b04Acd1F3B/logo.png new file mode 100644 index 00000000..be58fd38 Binary files /dev/null and b/blockchains/ethereum/assets/0x24692791Bc444c5Cd0b81e3CBCaba4b04Acd1F3B/logo.png differ diff --git a/blockchains/ethereum/assets/0x24700A297960E8477Ce3CA6C58b70a7Af3410398/info.json b/blockchains/ethereum/assets/0x24700A297960E8477Ce3CA6C58b70a7Af3410398/info.json new file mode 100644 index 00000000..f706ccf6 --- /dev/null +++ b/blockchains/ethereum/assets/0x24700A297960E8477Ce3CA6C58b70a7Af3410398/info.json @@ -0,0 +1,11 @@ +{ + "name": "OasisCity", + "symbol": "OSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.oasiscity.io/en/", + "explorer": "https://etherscan.io/token/0x24700A297960E8477Ce3CA6C58b70a7Af3410398", + "status": "abandoned", + "id": "0x24700A297960E8477Ce3CA6C58b70a7Af3410398" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24700A297960E8477Ce3CA6C58b70a7Af3410398/logo.png b/blockchains/ethereum/assets/0x24700A297960E8477Ce3CA6C58b70a7Af3410398/logo.png new file mode 100644 index 00000000..db5fc783 Binary files /dev/null and b/blockchains/ethereum/assets/0x24700A297960E8477Ce3CA6C58b70a7Af3410398/logo.png differ diff --git a/blockchains/ethereum/assets/0x247551F2EB3362E222c742E9c788B8957D9BC87e/info.json b/blockchains/ethereum/assets/0x247551F2EB3362E222c742E9c788B8957D9BC87e/info.json new file mode 100644 index 00000000..5cc7069a --- /dev/null +++ b/blockchains/ethereum/assets/0x247551F2EB3362E222c742E9c788B8957D9BC87e/info.json @@ -0,0 +1,11 @@ +{ + "name": "GNY", + "symbol": "GNY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.gny.io", + "explorer": "https://etherscan.io/token/0x247551F2EB3362E222c742E9c788B8957D9BC87e", + "status": "abandoned", + "id": "0x247551F2EB3362E222c742E9c788B8957D9BC87e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x247551F2EB3362E222c742E9c788B8957D9BC87e/logo.png b/blockchains/ethereum/assets/0x247551F2EB3362E222c742E9c788B8957D9BC87e/logo.png new file mode 100644 index 00000000..a4fcc664 Binary files /dev/null and b/blockchains/ethereum/assets/0x247551F2EB3362E222c742E9c788B8957D9BC87e/logo.png differ diff --git a/blockchains/ethereum/assets/0x24763fd9A46826f7508d6DA3E76DBd4fb8ddCD0C/info.json b/blockchains/ethereum/assets/0x24763fd9A46826f7508d6DA3E76DBd4fb8ddCD0C/info.json new file mode 100644 index 00000000..5cc9ccb1 --- /dev/null +++ b/blockchains/ethereum/assets/0x24763fd9A46826f7508d6DA3E76DBd4fb8ddCD0C/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRYPTOESTATE", + "symbol": "CRES", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x24763fd9A46826f7508d6DA3E76DBd4fb8ddCD0C", + "status": "abandoned", + "id": "0x24763fd9A46826f7508d6DA3E76DBd4fb8ddCD0C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24763fd9A46826f7508d6DA3E76DBd4fb8ddCD0C/logo.png b/blockchains/ethereum/assets/0x24763fd9A46826f7508d6DA3E76DBd4fb8ddCD0C/logo.png new file mode 100644 index 00000000..7edca595 Binary files /dev/null and b/blockchains/ethereum/assets/0x24763fd9A46826f7508d6DA3E76DBd4fb8ddCD0C/logo.png differ diff --git a/blockchains/ethereum/assets/0x248470C776023Ee14f984a5c694287298893Ca01/info.json b/blockchains/ethereum/assets/0x248470C776023Ee14f984a5c694287298893Ca01/info.json new file mode 100644 index 00000000..b32969f9 --- /dev/null +++ b/blockchains/ethereum/assets/0x248470C776023Ee14f984a5c694287298893Ca01/info.json @@ -0,0 +1,11 @@ +{ + "name": "FSHN", + "symbol": "FSHN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x248470C776023Ee14f984a5c694287298893Ca01", + "status": "abandoned", + "id": "0x248470C776023Ee14f984a5c694287298893Ca01" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x248470C776023Ee14f984a5c694287298893Ca01/logo.png b/blockchains/ethereum/assets/0x248470C776023Ee14f984a5c694287298893Ca01/logo.png new file mode 100755 index 00000000..02575c81 Binary files /dev/null and b/blockchains/ethereum/assets/0x248470C776023Ee14f984a5c694287298893Ca01/logo.png differ diff --git a/blockchains/ethereum/assets/0x248aDE18435f7B5E39d855CC98C42D8f6840a386/info.json b/blockchains/ethereum/assets/0x248aDE18435f7B5E39d855CC98C42D8f6840a386/info.json new file mode 100644 index 00000000..c53b42f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x248aDE18435f7B5E39d855CC98C42D8f6840a386/info.json @@ -0,0 +1,11 @@ +{ + "name": "Orbit", + "symbol": "ORBIT", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "https://orbitcoin.cash/", + "explorer": "https://etherscan.io/token/0x248aDE18435f7B5E39d855CC98C42D8f6840a386", + "status": "abandoned", + "id": "0x248aDE18435f7B5E39d855CC98C42D8f6840a386" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x248aDE18435f7B5E39d855CC98C42D8f6840a386/logo.png b/blockchains/ethereum/assets/0x248aDE18435f7B5E39d855CC98C42D8f6840a386/logo.png new file mode 100644 index 00000000..3dce8627 Binary files /dev/null and b/blockchains/ethereum/assets/0x248aDE18435f7B5E39d855CC98C42D8f6840a386/logo.png differ diff --git a/blockchains/ethereum/assets/0x249cA82617eC3DfB2589c4c17ab7EC9765350a18/info.json b/blockchains/ethereum/assets/0x249cA82617eC3DfB2589c4c17ab7EC9765350a18/info.json new file mode 100644 index 00000000..176f366f --- /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 00000000..4a4bdff5 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 new file mode 100644 index 00000000..e1121293 --- /dev/null +++ b/blockchains/ethereum/assets/0x249e38Ea4102D0cf8264d3701f1a0E39C4f2DC3B/info.json @@ -0,0 +1,29 @@ +{ + "name": "The Truth", + "symbol": "UFO", + "type": "ERC20", + "decimals": 18, + "description": "UFO is an dual purpose token that powers the metaverse and helps govern it.", + "website": "https://www.ufotoken.io/", + "explorer": "https://etherscan.io/token/0x249e38ea4102d0cf8264d3701f1a0e39c4f2dc3b", + "status": "active", + "id": "0x249e38Ea4102D0cf8264d3701f1a0E39C4f2DC3B", + "links": [ + { + "name": "x", + "url": "https://x.com/theufotoken?s=21" + }, + { + "name": "telegram", + "url": "https://t.me/ufotokenofficial" + }, + { + "name": "medium", + "url": "https://medium.com/@UFOtruth" + }, + { + "name": "github", + "url": "https://github.com/UFOTOKENOFFICIAL/supergalactic" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x249e38Ea4102D0cf8264d3701f1a0E39C4f2DC3B/logo.png b/blockchains/ethereum/assets/0x249e38Ea4102D0cf8264d3701f1a0E39C4f2DC3B/logo.png new file mode 100644 index 00000000..0183206f Binary files /dev/null and b/blockchains/ethereum/assets/0x249e38Ea4102D0cf8264d3701f1a0E39C4f2DC3B/logo.png differ diff --git a/blockchains/ethereum/assets/0x24A45d81170005Be4f51c8a294883b394BD83412/info.json b/blockchains/ethereum/assets/0x24A45d81170005Be4f51c8a294883b394BD83412/info.json new file mode 100644 index 00000000..861aec66 --- /dev/null +++ b/blockchains/ethereum/assets/0x24A45d81170005Be4f51c8a294883b394BD83412/info.json @@ -0,0 +1,11 @@ +{ + "name": "FIB", + "symbol": "FIB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x24A45d81170005Be4f51c8a294883b394BD83412", + "status": "abandoned", + "id": "0x24A45d81170005Be4f51c8a294883b394BD83412" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24A45d81170005Be4f51c8a294883b394BD83412/logo.png b/blockchains/ethereum/assets/0x24A45d81170005Be4f51c8a294883b394BD83412/logo.png new file mode 100644 index 00000000..5a09e57f Binary files /dev/null and b/blockchains/ethereum/assets/0x24A45d81170005Be4f51c8a294883b394BD83412/logo.png differ diff --git a/blockchains/ethereum/assets/0x24A6A37576377F63f194Caa5F518a60f45b42921/info.json b/blockchains/ethereum/assets/0x24A6A37576377F63f194Caa5F518a60f45b42921/info.json new file mode 100644 index 00000000..31675aad --- /dev/null +++ b/blockchains/ethereum/assets/0x24A6A37576377F63f194Caa5F518a60f45b42921/info.json @@ -0,0 +1,11 @@ +{ + "name": "Float BANK", + "website": "https://floatprotocol.com/", + "description": "Governance token for Float Protocol.", + "explorer": "https://etherscan.io/token/0x24a6a37576377f63f194caa5f518a60f45b42921", + "type": "ERC20", + "symbol": "BANK", + "decimals": 18, + "status": "active", + "id": "0x24A6A37576377F63f194Caa5F518a60f45b42921" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24A6A37576377F63f194Caa5F518a60f45b42921/logo.png b/blockchains/ethereum/assets/0x24A6A37576377F63f194Caa5F518a60f45b42921/logo.png new file mode 100644 index 00000000..34a386d8 Binary files /dev/null and b/blockchains/ethereum/assets/0x24A6A37576377F63f194Caa5F518a60f45b42921/logo.png differ diff --git a/blockchains/ethereum/assets/0x24A77c1F17C547105E14813e517be06b0040aa76/info.json b/blockchains/ethereum/assets/0x24A77c1F17C547105E14813e517be06b0040aa76/info.json new file mode 100644 index 00000000..7f7f3d08 --- /dev/null +++ b/blockchains/ethereum/assets/0x24A77c1F17C547105E14813e517be06b0040aa76/info.json @@ -0,0 +1,11 @@ +{ + "name": "Live Stars Token", + "symbol": "LIVE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x24A77c1F17C547105E14813e517be06b0040aa76", + "status": "abandoned", + "id": "0x24A77c1F17C547105E14813e517be06b0040aa76" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24A77c1F17C547105E14813e517be06b0040aa76/logo.png b/blockchains/ethereum/assets/0x24A77c1F17C547105E14813e517be06b0040aa76/logo.png new file mode 100755 index 00000000..ba0b1632 Binary files /dev/null and b/blockchains/ethereum/assets/0x24A77c1F17C547105E14813e517be06b0040aa76/logo.png differ diff --git a/blockchains/ethereum/assets/0x24C9586b762bD6005eE89D5cA442761B5a3830Ac/info.json b/blockchains/ethereum/assets/0x24C9586b762bD6005eE89D5cA442761B5a3830Ac/info.json new file mode 100644 index 00000000..2647e611 --- /dev/null +++ b/blockchains/ethereum/assets/0x24C9586b762bD6005eE89D5cA442761B5a3830Ac/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trust Coin", + "symbol": "TRUST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x24C9586b762bD6005eE89D5cA442761B5a3830Ac", + "status": "abandoned", + "id": "0x24C9586b762bD6005eE89D5cA442761B5a3830Ac" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24C9586b762bD6005eE89D5cA442761B5a3830Ac/logo.png b/blockchains/ethereum/assets/0x24C9586b762bD6005eE89D5cA442761B5a3830Ac/logo.png new file mode 100644 index 00000000..8b8837c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x24C9586b762bD6005eE89D5cA442761B5a3830Ac/logo.png differ diff --git a/blockchains/ethereum/assets/0x24D77c210a014b1E123a0878F6C903Df74A2317B/info.json b/blockchains/ethereum/assets/0x24D77c210a014b1E123a0878F6C903Df74A2317B/info.json new file mode 100644 index 00000000..1f930f4a --- /dev/null +++ b/blockchains/ethereum/assets/0x24D77c210a014b1E123a0878F6C903Df74A2317B/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITFXT COIN", + "symbol": "BXT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.bitfxt.com/", + "explorer": "https://etherscan.io/token/0x24D77c210a014b1E123a0878F6C903Df74A2317B", + "status": "abandoned", + "id": "0x24D77c210a014b1E123a0878F6C903Df74A2317B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24D77c210a014b1E123a0878F6C903Df74A2317B/logo.png b/blockchains/ethereum/assets/0x24D77c210a014b1E123a0878F6C903Df74A2317B/logo.png new file mode 100644 index 00000000..2594f514 Binary files /dev/null and b/blockchains/ethereum/assets/0x24D77c210a014b1E123a0878F6C903Df74A2317B/logo.png differ diff --git a/blockchains/ethereum/assets/0x24DCc881E7Dd730546834452F21872D5cb4b5293/info.json b/blockchains/ethereum/assets/0x24DCc881E7Dd730546834452F21872D5cb4b5293/info.json new file mode 100644 index 00000000..022a3e08 --- /dev/null +++ b/blockchains/ethereum/assets/0x24DCc881E7Dd730546834452F21872D5cb4b5293/info.json @@ -0,0 +1,11 @@ +{ + "name": "Scroll", + "symbol": "SCRL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://datatxtoken.com/", + "explorer": "https://etherscan.io/token/0x24DCc881E7Dd730546834452F21872D5cb4b5293", + "status": "abandoned", + "id": "0x24DCc881E7Dd730546834452F21872D5cb4b5293" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24DCc881E7Dd730546834452F21872D5cb4b5293/logo.png b/blockchains/ethereum/assets/0x24DCc881E7Dd730546834452F21872D5cb4b5293/logo.png new file mode 100644 index 00000000..f6d8274b Binary files /dev/null and b/blockchains/ethereum/assets/0x24DCc881E7Dd730546834452F21872D5cb4b5293/logo.png differ diff --git a/blockchains/ethereum/assets/0x24E5Bc45d5b6Cef6F38989AC33dF587a3FC850cf/info.json b/blockchains/ethereum/assets/0x24E5Bc45d5b6Cef6F38989AC33dF587a3FC850cf/info.json new file mode 100644 index 00000000..1e473169 --- /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 00000000..a3964e69 Binary files /dev/null and b/blockchains/ethereum/assets/0x24E5Bc45d5b6Cef6F38989AC33dF587a3FC850cf/logo.png differ diff --git a/blockchains/ethereum/assets/0x24E634089bE96E3754F0DFA628A94ea57089e4bc/info.json b/blockchains/ethereum/assets/0x24E634089bE96E3754F0DFA628A94ea57089e4bc/info.json new file mode 100644 index 00000000..0dbe4e69 --- /dev/null +++ b/blockchains/ethereum/assets/0x24E634089bE96E3754F0DFA628A94ea57089e4bc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Max", + "symbol": "MAX", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x24E634089bE96E3754F0DFA628A94ea57089e4bc", + "status": "abandoned", + "id": "0x24E634089bE96E3754F0DFA628A94ea57089e4bc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24E634089bE96E3754F0DFA628A94ea57089e4bc/logo.png b/blockchains/ethereum/assets/0x24E634089bE96E3754F0DFA628A94ea57089e4bc/logo.png new file mode 100644 index 00000000..fa3ef59e Binary files /dev/null and b/blockchains/ethereum/assets/0x24E634089bE96E3754F0DFA628A94ea57089e4bc/logo.png differ diff --git a/blockchains/ethereum/assets/0x24E89bDf2f65326b94E36978A7EDeAc63623DAFA/info.json b/blockchains/ethereum/assets/0x24E89bDf2f65326b94E36978A7EDeAc63623DAFA/info.json new file mode 100644 index 00000000..c28da55c --- /dev/null +++ b/blockchains/ethereum/assets/0x24E89bDf2f65326b94E36978A7EDeAc63623DAFA/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tiger King", + "type": "ERC20", + "symbol": "TKING", + "decimals": 18, + "website": "https://www.tiger-king.org/", + "description": "Official coin of the Tiger King", + "explorer": "https://etherscan.io/token/0x24e89bdf2f65326b94e36978a7edeac63623dafa", + "status": "active", + "id": "0x24E89bDf2f65326b94E36978A7EDeAc63623DAFA", + "links": [ + { + "name": "x", + "url": "https://x.com/Tiger_King_Coin" + }, + { + "name": "telegram", + "url": "https://t.me/theTigerKingOfficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24E89bDf2f65326b94E36978A7EDeAc63623DAFA/logo.png b/blockchains/ethereum/assets/0x24E89bDf2f65326b94E36978A7EDeAc63623DAFA/logo.png new file mode 100644 index 00000000..90debe97 Binary files /dev/null and b/blockchains/ethereum/assets/0x24E89bDf2f65326b94E36978A7EDeAc63623DAFA/logo.png differ diff --git a/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/info.json b/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/info.json new file mode 100644 index 00000000..3ce47d56 --- /dev/null +++ b/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/info.json @@ -0,0 +1,25 @@ +{ + "name": "dotmoovs", + "website": "https://www.dotmoovs.com/", + "description": "dotmoovs is the first crypto mobile worldwide competitive environment. At dotmoovs you can compete with others around the world!", + "explorer": "https://etherscan.io/token/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7", + "type": "ERC20", + "symbol": "MOOV", + "decimals": 18, + "status": "abandoned", + "id": "0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dotmoovs" + }, + { + "name": "x", + "url": "https://x.com/dotmoovs" + }, + { + "name": "telegram", + "url": "https://t.me/dotmoovs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24EDCa5a57Fc259427574E0c9cfdf630a3136d34/info.json b/blockchains/ethereum/assets/0x24EDCa5a57Fc259427574E0c9cfdf630a3136d34/info.json new file mode 100644 index 00000000..1ee038f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x24EDCa5a57Fc259427574E0c9cfdf630a3136d34/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hada Coin", + "symbol": "HADA", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x24EDCa5a57Fc259427574E0c9cfdf630a3136d34", + "status": "abandoned", + "id": "0x24EDCa5a57Fc259427574E0c9cfdf630a3136d34" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24EDCa5a57Fc259427574E0c9cfdf630a3136d34/logo.png b/blockchains/ethereum/assets/0x24EDCa5a57Fc259427574E0c9cfdf630a3136d34/logo.png new file mode 100644 index 00000000..65d1af29 Binary files /dev/null and b/blockchains/ethereum/assets/0x24EDCa5a57Fc259427574E0c9cfdf630a3136d34/logo.png differ diff --git a/blockchains/ethereum/assets/0x24FB4C36a83cbDbCd670856406f622E09A643d4d/info.json b/blockchains/ethereum/assets/0x24FB4C36a83cbDbCd670856406f622E09A643d4d/info.json new file mode 100644 index 00000000..76bd0906 --- /dev/null +++ b/blockchains/ethereum/assets/0x24FB4C36a83cbDbCd670856406f622E09A643d4d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hinto", + "symbol": "HNT", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "https://hinto.win/", + "explorer": "https://etherscan.io/token/0x24FB4C36a83cbDbCd670856406f622E09A643d4d", + "status": "abandoned", + "id": "0x24FB4C36a83cbDbCd670856406f622E09A643d4d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24FB4C36a83cbDbCd670856406f622E09A643d4d/logo.png b/blockchains/ethereum/assets/0x24FB4C36a83cbDbCd670856406f622E09A643d4d/logo.png new file mode 100644 index 00000000..1d6a0faa Binary files /dev/null and b/blockchains/ethereum/assets/0x24FB4C36a83cbDbCd670856406f622E09A643d4d/logo.png differ diff --git a/blockchains/ethereum/assets/0x24Fd7970D1FFEB683eB8e99262AcE1316f9a8fBA/info.json b/blockchains/ethereum/assets/0x24Fd7970D1FFEB683eB8e99262AcE1316f9a8fBA/info.json new file mode 100644 index 00000000..d19208b8 --- /dev/null +++ b/blockchains/ethereum/assets/0x24Fd7970D1FFEB683eB8e99262AcE1316f9a8fBA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Super Mario Coin", + "symbol": "SMC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x24Fd7970D1FFEB683eB8e99262AcE1316f9a8fBA", + "status": "abandoned", + "id": "0x24Fd7970D1FFEB683eB8e99262AcE1316f9a8fBA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24Fd7970D1FFEB683eB8e99262AcE1316f9a8fBA/logo.png b/blockchains/ethereum/assets/0x24Fd7970D1FFEB683eB8e99262AcE1316f9a8fBA/logo.png new file mode 100644 index 00000000..eab83bf4 Binary files /dev/null and b/blockchains/ethereum/assets/0x24Fd7970D1FFEB683eB8e99262AcE1316f9a8fBA/logo.png differ diff --git a/blockchains/ethereum/assets/0x24aa44493177970541a7B9AeD330dD0eB61a1C80/info.json b/blockchains/ethereum/assets/0x24aa44493177970541a7B9AeD330dD0eB61a1C80/info.json new file mode 100644 index 00000000..787a35eb --- /dev/null +++ b/blockchains/ethereum/assets/0x24aa44493177970541a7B9AeD330dD0eB61a1C80/info.json @@ -0,0 +1,11 @@ +{ + "name": "QR Rial", + "symbol": "QRR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x24aa44493177970541a7B9AeD330dD0eB61a1C80", + "status": "abandoned", + "id": "0x24aa44493177970541a7B9AeD330dD0eB61a1C80" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24aa44493177970541a7B9AeD330dD0eB61a1C80/logo.png b/blockchains/ethereum/assets/0x24aa44493177970541a7B9AeD330dD0eB61a1C80/logo.png new file mode 100755 index 00000000..b83f8552 Binary files /dev/null and b/blockchains/ethereum/assets/0x24aa44493177970541a7B9AeD330dD0eB61a1C80/logo.png differ diff --git a/blockchains/ethereum/assets/0x24b80fBa4B2ECaF0C4Df522354408F0A59A775C8/info.json b/blockchains/ethereum/assets/0x24b80fBa4B2ECaF0C4Df522354408F0A59A775C8/info.json new file mode 100644 index 00000000..2fcd3804 --- /dev/null +++ b/blockchains/ethereum/assets/0x24b80fBa4B2ECaF0C4Df522354408F0A59A775C8/info.json @@ -0,0 +1,11 @@ +{ + "name": "adsbywifi", + "symbol": "WADS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://adsbywifi.com", + "explorer": "https://etherscan.io/token/0x24b80fBa4B2ECaF0C4Df522354408F0A59A775C8", + "status": "abandoned", + "id": "0x24b80fBa4B2ECaF0C4Df522354408F0A59A775C8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24b80fBa4B2ECaF0C4Df522354408F0A59A775C8/logo.png b/blockchains/ethereum/assets/0x24b80fBa4B2ECaF0C4Df522354408F0A59A775C8/logo.png new file mode 100644 index 00000000..46b6b26f Binary files /dev/null and b/blockchains/ethereum/assets/0x24b80fBa4B2ECaF0C4Df522354408F0A59A775C8/logo.png differ diff --git a/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/info.json b/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/info.json new file mode 100644 index 00000000..5539fb9d --- /dev/null +++ b/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/info.json @@ -0,0 +1,40 @@ +{ + "name": "BlueSparrow", + "type": "ERC20", + "symbol": "BLUESPARROW", + "decimals": 9, + "website": "http://bluesparrowtoken.com", + "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": "x", + "url": "https://x.com/BlueSparrowETH" + }, + { + "name": "telegram", + "url": "https://t.me/BlueSparrowOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bluesparrow-token-new/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/bluesparrow" + }, + { + "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 new file mode 100644 index 00000000..fff673b5 Binary files /dev/null and b/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/logo.png differ diff --git a/blockchains/ethereum/assets/0x24dDFf6D8B8a42d835af3b440De91f3386554Aa4/info.json b/blockchains/ethereum/assets/0x24dDFf6D8B8a42d835af3b440De91f3386554Aa4/info.json new file mode 100644 index 00000000..064e5624 --- /dev/null +++ b/blockchains/ethereum/assets/0x24dDFf6D8B8a42d835af3b440De91f3386554Aa4/info.json @@ -0,0 +1,11 @@ +{ + "name": "IUNGO token", + "symbol": "ING", + "type": "ERC20", + "decimals": 18, + "description": "Decentralised global wireless internet provider.", + "website": "https://iungo.network", + "explorer": "https://etherscan.io/token/0x24dDFf6D8B8a42d835af3b440De91f3386554Aa4", + "status": "active", + "id": "0x24dDFf6D8B8a42d835af3b440De91f3386554Aa4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24dDFf6D8B8a42d835af3b440De91f3386554Aa4/logo.png b/blockchains/ethereum/assets/0x24dDFf6D8B8a42d835af3b440De91f3386554Aa4/logo.png new file mode 100644 index 00000000..ae5334d5 Binary files /dev/null and b/blockchains/ethereum/assets/0x24dDFf6D8B8a42d835af3b440De91f3386554Aa4/logo.png differ diff --git a/blockchains/ethereum/assets/0x24eBA89651aa88810924D4669256Bb56832902fe/info.json b/blockchains/ethereum/assets/0x24eBA89651aa88810924D4669256Bb56832902fe/info.json new file mode 100644 index 00000000..113d427f --- /dev/null +++ b/blockchains/ethereum/assets/0x24eBA89651aa88810924D4669256Bb56832902fe/info.json @@ -0,0 +1,11 @@ +{ + "name": "HiveMind", + "symbol": "HIVED", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x24eBA89651aa88810924D4669256Bb56832902fe", + "status": "abandoned", + "id": "0x24eBA89651aa88810924D4669256Bb56832902fe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24eBA89651aa88810924D4669256Bb56832902fe/logo.png b/blockchains/ethereum/assets/0x24eBA89651aa88810924D4669256Bb56832902fe/logo.png new file mode 100644 index 00000000..a60fca09 Binary files /dev/null and b/blockchains/ethereum/assets/0x24eBA89651aa88810924D4669256Bb56832902fe/logo.png differ diff --git a/blockchains/ethereum/assets/0x24eeB54A34D24D4A4baa1B1379928f7978951AcA/info.json b/blockchains/ethereum/assets/0x24eeB54A34D24D4A4baa1B1379928f7978951AcA/info.json new file mode 100644 index 00000000..565b164b --- /dev/null +++ b/blockchains/ethereum/assets/0x24eeB54A34D24D4A4baa1B1379928f7978951AcA/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "\"\"", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x24eeB54A34D24D4A4baa1B1379928f7978951AcA", + "status": "abandoned", + "id": "0x24eeB54A34D24D4A4baa1B1379928f7978951AcA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24eeB54A34D24D4A4baa1B1379928f7978951AcA/logo.png b/blockchains/ethereum/assets/0x24eeB54A34D24D4A4baa1B1379928f7978951AcA/logo.png new file mode 100755 index 00000000..628d0f34 Binary files /dev/null and b/blockchains/ethereum/assets/0x24eeB54A34D24D4A4baa1B1379928f7978951AcA/logo.png differ diff --git a/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/info.json b/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/info.json new file mode 100644 index 00000000..6166f62e --- /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 00000000..29a95e25 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 00000000..f2aa2db9 --- /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 00000000..9b38323e Binary files /dev/null and b/blockchains/ethereum/assets/0x25018520138bbaB60684AD7983D4432E8B8E926B/logo.png differ diff --git a/blockchains/ethereum/assets/0x2516ac5Db37DF788f8f6Ef69EcaA7Cd76652eAe2/info.json b/blockchains/ethereum/assets/0x2516ac5Db37DF788f8f6Ef69EcaA7Cd76652eAe2/info.json new file mode 100644 index 00000000..44dc5f0f --- /dev/null +++ b/blockchains/ethereum/assets/0x2516ac5Db37DF788f8f6Ef69EcaA7Cd76652eAe2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ltconlinemarkets", + "symbol": "LOM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ltconlinemarkets.com/Token/", + "explorer": "https://etherscan.io/token/0x2516ac5Db37DF788f8f6Ef69EcaA7Cd76652eAe2", + "status": "abandoned", + "id": "0x2516ac5Db37DF788f8f6Ef69EcaA7Cd76652eAe2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2516ac5Db37DF788f8f6Ef69EcaA7Cd76652eAe2/logo.png b/blockchains/ethereum/assets/0x2516ac5Db37DF788f8f6Ef69EcaA7Cd76652eAe2/logo.png new file mode 100644 index 00000000..575397fc Binary files /dev/null and b/blockchains/ethereum/assets/0x2516ac5Db37DF788f8f6Ef69EcaA7Cd76652eAe2/logo.png differ diff --git a/blockchains/ethereum/assets/0x251B5C9eFf2d9F04DC525f601E13293bfE40E4f5/info.json b/blockchains/ethereum/assets/0x251B5C9eFf2d9F04DC525f601E13293bfE40E4f5/info.json new file mode 100644 index 00000000..6a032c4c --- /dev/null +++ b/blockchains/ethereum/assets/0x251B5C9eFf2d9F04DC525f601E13293bfE40E4f5/info.json @@ -0,0 +1,17 @@ +{ + "name": "iYearn Finance", + "website": "https://iyearn.finance", + "description": "iYearn Finance is an independent FORK from Yearn Finance technology that is built to be reliable, independent and profitable.", + "explorer": "https://etherscan.io/token/0x251b5c9eff2d9f04dc525f601e13293bfe40e4f5", + "type": "ERC20", + "symbol": "IYFI", + "decimals": 18, + "status": "active", + "id": "0x251B5C9eFf2d9F04DC525f601E13293bfE40E4f5", + "links": [ + { + "name": "source_code", + "url": "https://gitlab.com/iYearnFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x251B5C9eFf2d9F04DC525f601E13293bfE40E4f5/logo.png b/blockchains/ethereum/assets/0x251B5C9eFf2d9F04DC525f601E13293bfE40E4f5/logo.png new file mode 100644 index 00000000..1aff80f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x251B5C9eFf2d9F04DC525f601E13293bfE40E4f5/logo.png differ diff --git a/blockchains/ethereum/assets/0x25200235cA7113C2541E70dE737c41f5e9AcD1F6/info.json b/blockchains/ethereum/assets/0x25200235cA7113C2541E70dE737c41f5e9AcD1F6/info.json new file mode 100644 index 00000000..2ed6b684 --- /dev/null +++ b/blockchains/ethereum/assets/0x25200235cA7113C2541E70dE737c41f5e9AcD1F6/info.json @@ -0,0 +1,11 @@ +{ + "name": "PathHive Network", + "symbol": "PHV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.pathhive.com/", + "explorer": "https://etherscan.io/token/0x25200235cA7113C2541E70dE737c41f5e9AcD1F6", + "status": "abandoned", + "id": "0x25200235cA7113C2541E70dE737c41f5e9AcD1F6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25200235cA7113C2541E70dE737c41f5e9AcD1F6/logo.png b/blockchains/ethereum/assets/0x25200235cA7113C2541E70dE737c41f5e9AcD1F6/logo.png new file mode 100644 index 00000000..f5e2ec90 Binary files /dev/null and b/blockchains/ethereum/assets/0x25200235cA7113C2541E70dE737c41f5e9AcD1F6/logo.png differ diff --git a/blockchains/ethereum/assets/0x252F830448d8890CA06a3FF78823DB8D23587037/info.json b/blockchains/ethereum/assets/0x252F830448d8890CA06a3FF78823DB8D23587037/info.json new file mode 100644 index 00000000..f96111e7 --- /dev/null +++ b/blockchains/ethereum/assets/0x252F830448d8890CA06a3FF78823DB8D23587037/info.json @@ -0,0 +1,11 @@ +{ + "name": "BIGBOMB", + "symbol": "BBOMB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x252F830448d8890CA06a3FF78823DB8D23587037", + "status": "abandoned", + "id": "0x252F830448d8890CA06a3FF78823DB8D23587037" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x252F830448d8890CA06a3FF78823DB8D23587037/logo.png b/blockchains/ethereum/assets/0x252F830448d8890CA06a3FF78823DB8D23587037/logo.png new file mode 100644 index 00000000..e744c6e9 Binary files /dev/null and b/blockchains/ethereum/assets/0x252F830448d8890CA06a3FF78823DB8D23587037/logo.png differ diff --git a/blockchains/ethereum/assets/0x25377ddb16c79C93B0CBf46809C8dE8765f03FCd/info.json b/blockchains/ethereum/assets/0x25377ddb16c79C93B0CBf46809C8dE8765f03FCd/info.json new file mode 100644 index 00000000..c1bd3058 --- /dev/null +++ b/blockchains/ethereum/assets/0x25377ddb16c79C93B0CBf46809C8dE8765f03FCd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Synthetic CBDAO", + "symbol": "SBREE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x25377ddb16c79C93B0CBf46809C8dE8765f03FCd", + "status": "abandoned", + "id": "0x25377ddb16c79C93B0CBf46809C8dE8765f03FCd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25377ddb16c79C93B0CBf46809C8dE8765f03FCd/logo.png b/blockchains/ethereum/assets/0x25377ddb16c79C93B0CBf46809C8dE8765f03FCd/logo.png new file mode 100644 index 00000000..33214b4f Binary files /dev/null and b/blockchains/ethereum/assets/0x25377ddb16c79C93B0CBf46809C8dE8765f03FCd/logo.png differ diff --git a/blockchains/ethereum/assets/0x253C7dd074f4BaCb305387F922225A4f737C08bd/info.json b/blockchains/ethereum/assets/0x253C7dd074f4BaCb305387F922225A4f737C08bd/info.json new file mode 100644 index 00000000..64f4678a --- /dev/null +++ b/blockchains/ethereum/assets/0x253C7dd074f4BaCb305387F922225A4f737C08bd/info.json @@ -0,0 +1,11 @@ +{ + "name": "LookRev", + "symbol": "LOOK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x253C7dd074f4BaCb305387F922225A4f737C08bd", + "status": "abandoned", + "id": "0x253C7dd074f4BaCb305387F922225A4f737C08bd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x253C7dd074f4BaCb305387F922225A4f737C08bd/logo.png b/blockchains/ethereum/assets/0x253C7dd074f4BaCb305387F922225A4f737C08bd/logo.png new file mode 100644 index 00000000..8ac69f83 Binary files /dev/null and b/blockchains/ethereum/assets/0x253C7dd074f4BaCb305387F922225A4f737C08bd/logo.png differ diff --git a/blockchains/ethereum/assets/0x2541A36BE4cD39286ED61a3E6AFC2307602489d6/info.json b/blockchains/ethereum/assets/0x2541A36BE4cD39286ED61a3E6AFC2307602489d6/info.json new file mode 100644 index 00000000..1329d645 --- /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 00000000..23fa6203 Binary files /dev/null and b/blockchains/ethereum/assets/0x2541A36BE4cD39286ED61a3E6AFC2307602489d6/logo.png differ diff --git a/blockchains/ethereum/assets/0x254bCa53A17A1C6E1AdA05C06aff042684E846c2/info.json b/blockchains/ethereum/assets/0x254bCa53A17A1C6E1AdA05C06aff042684E846c2/info.json new file mode 100644 index 00000000..c4c62438 --- /dev/null +++ b/blockchains/ethereum/assets/0x254bCa53A17A1C6E1AdA05C06aff042684E846c2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cygnity", + "symbol": "CGN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x254bCa53A17A1C6E1AdA05C06aff042684E846c2", + "status": "abandoned", + "id": "0x254bCa53A17A1C6E1AdA05C06aff042684E846c2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x254bCa53A17A1C6E1AdA05C06aff042684E846c2/logo.png b/blockchains/ethereum/assets/0x254bCa53A17A1C6E1AdA05C06aff042684E846c2/logo.png new file mode 100644 index 00000000..3221825c Binary files /dev/null and b/blockchains/ethereum/assets/0x254bCa53A17A1C6E1AdA05C06aff042684E846c2/logo.png differ diff --git a/blockchains/ethereum/assets/0x25543DB4Ff6a57affB219ccA074A1e983c024C18/info.json b/blockchains/ethereum/assets/0x25543DB4Ff6a57affB219ccA074A1e983c024C18/info.json new file mode 100644 index 00000000..a16a8758 --- /dev/null +++ b/blockchains/ethereum/assets/0x25543DB4Ff6a57affB219ccA074A1e983c024C18/info.json @@ -0,0 +1,11 @@ +{ + "name": "Earth Power Coin", + "symbol": "EPC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x25543DB4Ff6a57affB219ccA074A1e983c024C18", + "status": "abandoned", + "id": "0x25543DB4Ff6a57affB219ccA074A1e983c024C18" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25543DB4Ff6a57affB219ccA074A1e983c024C18/logo.png b/blockchains/ethereum/assets/0x25543DB4Ff6a57affB219ccA074A1e983c024C18/logo.png new file mode 100644 index 00000000..6f2ff7d8 Binary files /dev/null and b/blockchains/ethereum/assets/0x25543DB4Ff6a57affB219ccA074A1e983c024C18/logo.png differ diff --git a/blockchains/ethereum/assets/0x255Aa6DF07540Cb5d3d297f0D0D4D84cb52bc8e6/info.json b/blockchains/ethereum/assets/0x255Aa6DF07540Cb5d3d297f0D0D4D84cb52bc8e6/info.json new file mode 100644 index 00000000..ec79cd90 --- /dev/null +++ b/blockchains/ethereum/assets/0x255Aa6DF07540Cb5d3d297f0D0D4D84cb52bc8e6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Raiden Token", + "symbol": "RDN", + "type": "ERC20", + "decimals": 18, + "description": "Raiden Network Token (RDN) supports a host of use cases such as micropayments, M2M Markets, API Access, and Decentralized Exchanges.", + "website": "https://raiden.network", + "explorer": "https://etherscan.io/token/0x255Aa6DF07540Cb5d3d297f0D0D4D84cb52bc8e6", + "status": "active", + "id": "0x255Aa6DF07540Cb5d3d297f0D0D4D84cb52bc8e6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x255Aa6DF07540Cb5d3d297f0D0D4D84cb52bc8e6/logo.png b/blockchains/ethereum/assets/0x255Aa6DF07540Cb5d3d297f0D0D4D84cb52bc8e6/logo.png new file mode 100644 index 00000000..fc1533dc Binary files /dev/null and b/blockchains/ethereum/assets/0x255Aa6DF07540Cb5d3d297f0D0D4D84cb52bc8e6/logo.png differ diff --git a/blockchains/ethereum/assets/0x2565ae0385659badCada1031DB704442E1b69982/info.json b/blockchains/ethereum/assets/0x2565ae0385659badCada1031DB704442E1b69982/info.json new file mode 100644 index 00000000..a017b40c --- /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 00000000..a1482bc6 Binary files /dev/null and b/blockchains/ethereum/assets/0x2565ae0385659badCada1031DB704442E1b69982/logo.png differ diff --git a/blockchains/ethereum/assets/0x2567c677473d110D75a8360C35309e63B1d52429/info.json b/blockchains/ethereum/assets/0x2567c677473d110D75a8360C35309e63B1d52429/info.json new file mode 100644 index 00000000..18a13c4f --- /dev/null +++ b/blockchains/ethereum/assets/0x2567c677473d110D75a8360C35309e63B1d52429/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShareX", + "symbol": "SEXC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2567c677473d110D75a8360C35309e63B1d52429", + "status": "abandoned", + "id": "0x2567c677473d110D75a8360C35309e63B1d52429" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2567c677473d110D75a8360C35309e63B1d52429/logo.png b/blockchains/ethereum/assets/0x2567c677473d110D75a8360C35309e63B1d52429/logo.png new file mode 100644 index 00000000..0607b373 Binary files /dev/null and b/blockchains/ethereum/assets/0x2567c677473d110D75a8360C35309e63B1d52429/logo.png differ diff --git a/blockchains/ethereum/assets/0x256845e721C0c46d54E6afBD4FA3B52CB72353EA/info.json b/blockchains/ethereum/assets/0x256845e721C0c46d54E6afBD4FA3B52CB72353EA/info.json new file mode 100644 index 00000000..fca4dea1 --- /dev/null +++ b/blockchains/ethereum/assets/0x256845e721C0c46d54E6afBD4FA3B52CB72353EA/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniDollar", + "symbol": "UNIUSD", + "type": "ERC20", + "decimals": 18, + "description": "UniDollar is the first hybrid Proof of Liquidity and Proof of Stake ERC20 Token.", + "website": "https://unidollar.network", + "explorer": "https://etherscan.io/token/0x256845e721C0c46d54E6afBD4FA3B52CB72353EA", + "status": "active", + "id": "0x256845e721C0c46d54E6afBD4FA3B52CB72353EA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x256845e721C0c46d54E6afBD4FA3B52CB72353EA/logo.png b/blockchains/ethereum/assets/0x256845e721C0c46d54E6afBD4FA3B52CB72353EA/logo.png new file mode 100644 index 00000000..45008114 Binary files /dev/null and b/blockchains/ethereum/assets/0x256845e721C0c46d54E6afBD4FA3B52CB72353EA/logo.png differ diff --git a/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json new file mode 100644 index 00000000..f8a58235 --- /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 00000000..69733250 Binary files /dev/null and b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png differ diff --git a/blockchains/ethereum/assets/0x25859743ED0861665611B81E47682e889b48313B/info.json b/blockchains/ethereum/assets/0x25859743ED0861665611B81E47682e889b48313B/info.json new file mode 100644 index 00000000..264956a4 --- /dev/null +++ b/blockchains/ethereum/assets/0x25859743ED0861665611B81E47682e889b48313B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yumi", + "symbol": "YUMI", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x25859743ED0861665611B81E47682e889b48313B", + "status": "abandoned", + "id": "0x25859743ED0861665611B81E47682e889b48313B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25859743ED0861665611B81E47682e889b48313B/logo.png b/blockchains/ethereum/assets/0x25859743ED0861665611B81E47682e889b48313B/logo.png new file mode 100644 index 00000000..5ac83a57 Binary files /dev/null and b/blockchains/ethereum/assets/0x25859743ED0861665611B81E47682e889b48313B/logo.png differ diff --git a/blockchains/ethereum/assets/0x258B3D55941BC8BCE4a80e7AE7CF685D245A24dc/info.json b/blockchains/ethereum/assets/0x258B3D55941BC8BCE4a80e7AE7CF685D245A24dc/info.json new file mode 100644 index 00000000..0ab444fc --- /dev/null +++ b/blockchains/ethereum/assets/0x258B3D55941BC8BCE4a80e7AE7CF685D245A24dc/info.json @@ -0,0 +1,11 @@ +{ + "name": "RareCandy", + "symbol": "RCDY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x258B3D55941BC8BCE4a80e7AE7CF685D245A24dc", + "status": "abandoned", + "id": "0x258B3D55941BC8BCE4a80e7AE7CF685D245A24dc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x258B3D55941BC8BCE4a80e7AE7CF685D245A24dc/logo.png b/blockchains/ethereum/assets/0x258B3D55941BC8BCE4a80e7AE7CF685D245A24dc/logo.png new file mode 100644 index 00000000..be9f99d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x258B3D55941BC8BCE4a80e7AE7CF685D245A24dc/logo.png differ diff --git a/blockchains/ethereum/assets/0x259059f137CB9B8F60AE27Bd199d97aBb69E539B/info.json b/blockchains/ethereum/assets/0x259059f137CB9B8F60AE27Bd199d97aBb69E539B/info.json new file mode 100644 index 00000000..8c8d3995 --- /dev/null +++ b/blockchains/ethereum/assets/0x259059f137CB9B8F60AE27Bd199d97aBb69E539B/info.json @@ -0,0 +1,11 @@ +{ + "name": "SpectrumNetwork", + "symbol": "SPEC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x259059f137CB9B8F60AE27Bd199d97aBb69E539B", + "status": "abandoned", + "id": "0x259059f137CB9B8F60AE27Bd199d97aBb69E539B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x259059f137CB9B8F60AE27Bd199d97aBb69E539B/logo.png b/blockchains/ethereum/assets/0x259059f137CB9B8F60AE27Bd199d97aBb69E539B/logo.png new file mode 100644 index 00000000..1b8dc03a Binary files /dev/null and b/blockchains/ethereum/assets/0x259059f137CB9B8F60AE27Bd199d97aBb69E539B/logo.png differ diff --git a/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/info.json b/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/info.json new file mode 100644 index 00000000..c7dbe7f4 --- /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 00000000..11296a60 Binary files /dev/null and b/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/logo.png differ diff --git a/blockchains/ethereum/assets/0x25A0f07677eFB5Aa884DC796A1B70B680acb01eD/info.json b/blockchains/ethereum/assets/0x25A0f07677eFB5Aa884DC796A1B70B680acb01eD/info.json new file mode 100644 index 00000000..4431e59a --- /dev/null +++ b/blockchains/ethereum/assets/0x25A0f07677eFB5Aa884DC796A1B70B680acb01eD/info.json @@ -0,0 +1,11 @@ +{ + "name": "LHO", + "symbol": "LHO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x25A0f07677eFB5Aa884DC796A1B70B680acb01eD", + "status": "abandoned", + "id": "0x25A0f07677eFB5Aa884DC796A1B70B680acb01eD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25A0f07677eFB5Aa884DC796A1B70B680acb01eD/logo.png b/blockchains/ethereum/assets/0x25A0f07677eFB5Aa884DC796A1B70B680acb01eD/logo.png new file mode 100644 index 00000000..cdf9da6d Binary files /dev/null and b/blockchains/ethereum/assets/0x25A0f07677eFB5Aa884DC796A1B70B680acb01eD/logo.png differ diff --git a/blockchains/ethereum/assets/0x25B6325f5BB1c1E03cfbC3e53F470E1F1ca022E3/info.json b/blockchains/ethereum/assets/0x25B6325f5BB1c1E03cfbC3e53F470E1F1ca022E3/info.json new file mode 100644 index 00000000..ccc73954 --- /dev/null +++ b/blockchains/ethereum/assets/0x25B6325f5BB1c1E03cfbC3e53F470E1F1ca022E3/info.json @@ -0,0 +1,11 @@ +{ + "name": "LML", + "symbol": "LML", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.gny.io/lisk", + "explorer": "https://etherscan.io/token/0x25B6325f5BB1c1E03cfbC3e53F470E1F1ca022E3", + "status": "active", + "id": "0x25B6325f5BB1c1E03cfbC3e53F470E1F1ca022E3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25B6325f5BB1c1E03cfbC3e53F470E1F1ca022E3/logo.png b/blockchains/ethereum/assets/0x25B6325f5BB1c1E03cfbC3e53F470E1F1ca022E3/logo.png new file mode 100644 index 00000000..7c820240 Binary files /dev/null and b/blockchains/ethereum/assets/0x25B6325f5BB1c1E03cfbC3e53F470E1F1ca022E3/logo.png differ diff --git a/blockchains/ethereum/assets/0x25B63bcA43914b7d7CcD59892b762c06493a04E6/info.json b/blockchains/ethereum/assets/0x25B63bcA43914b7d7CcD59892b762c06493a04E6/info.json new file mode 100644 index 00000000..c48e3b99 --- /dev/null +++ b/blockchains/ethereum/assets/0x25B63bcA43914b7d7CcD59892b762c06493a04E6/info.json @@ -0,0 +1,11 @@ +{ + "name": "ITALIA", + "symbol": "ITALIA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x25B63bcA43914b7d7CcD59892b762c06493a04E6", + "status": "abandoned", + "id": "0x25B63bcA43914b7d7CcD59892b762c06493a04E6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25B63bcA43914b7d7CcD59892b762c06493a04E6/logo.png b/blockchains/ethereum/assets/0x25B63bcA43914b7d7CcD59892b762c06493a04E6/logo.png new file mode 100644 index 00000000..2df815dd Binary files /dev/null and b/blockchains/ethereum/assets/0x25B63bcA43914b7d7CcD59892b762c06493a04E6/logo.png differ diff --git a/blockchains/ethereum/assets/0x25F859518d75B119b0CAa5Da1967F6458C9EeEA1/info.json b/blockchains/ethereum/assets/0x25F859518d75B119b0CAa5Da1967F6458C9EeEA1/info.json new file mode 100644 index 00000000..31650da0 --- /dev/null +++ b/blockchains/ethereum/assets/0x25F859518d75B119b0CAa5Da1967F6458C9EeEA1/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C507200", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x25F859518d75B119b0CAa5Da1967F6458C9EeEA1", + "status": "spam", + "id": "0x25F859518d75B119b0CAa5Da1967F6458C9EeEA1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25F859518d75B119b0CAa5Da1967F6458C9EeEA1/logo.png b/blockchains/ethereum/assets/0x25F859518d75B119b0CAa5Da1967F6458C9EeEA1/logo.png new file mode 100644 index 00000000..c07fef9a Binary files /dev/null and b/blockchains/ethereum/assets/0x25F859518d75B119b0CAa5Da1967F6458C9EeEA1/logo.png differ diff --git a/blockchains/ethereum/assets/0x25a0E66fC288ceDB17934C91D10D647031218d18/info.json b/blockchains/ethereum/assets/0x25a0E66fC288ceDB17934C91D10D647031218d18/info.json new file mode 100644 index 00000000..632234dc --- /dev/null +++ b/blockchains/ethereum/assets/0x25a0E66fC288ceDB17934C91D10D647031218d18/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST 1", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x25a0E66fC288ceDB17934C91D10D647031218d18", + "status": "abandoned", + "id": "0x25a0E66fC288ceDB17934C91D10D647031218d18" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25a0E66fC288ceDB17934C91D10D647031218d18/logo.png b/blockchains/ethereum/assets/0x25a0E66fC288ceDB17934C91D10D647031218d18/logo.png new file mode 100644 index 00000000..2151f221 Binary files /dev/null and b/blockchains/ethereum/assets/0x25a0E66fC288ceDB17934C91D10D647031218d18/logo.png differ diff --git a/blockchains/ethereum/assets/0x25a1DE1C3eE658FE034B8914a1D8d34110423AF8/info.json b/blockchains/ethereum/assets/0x25a1DE1C3eE658FE034B8914a1D8d34110423AF8/info.json new file mode 100644 index 00000000..3a5dcd29 --- /dev/null +++ b/blockchains/ethereum/assets/0x25a1DE1C3eE658FE034B8914a1D8d34110423AF8/info.json @@ -0,0 +1,11 @@ +{ + "name": "CheGuevara", + "symbol": "Che", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x25a1DE1C3eE658FE034B8914a1D8d34110423AF8", + "status": "spam", + "id": "0x25a1DE1C3eE658FE034B8914a1D8d34110423AF8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25a1DE1C3eE658FE034B8914a1D8d34110423AF8/logo.png b/blockchains/ethereum/assets/0x25a1DE1C3eE658FE034B8914a1D8d34110423AF8/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x25a1DE1C3eE658FE034B8914a1D8d34110423AF8/logo.png differ diff --git a/blockchains/ethereum/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/info.json b/blockchains/ethereum/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/info.json new file mode 100644 index 00000000..922c3dd8 --- /dev/null +++ b/blockchains/ethereum/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/info.json @@ -0,0 +1,25 @@ +{ + "name": "AXL INU", + "website": "https://www.axltoken.com/", + "description": "The Ultimate Decentralized Platform", + "explorer": "https://etherscan.io/token/0x25b24b3c47918b7962b3e49c4f468367f73cc0e0", + "type": "ERC20", + "symbol": "AXL", + "decimals": 18, + "status": "active", + "id": "0x25b24B3c47918b7962B3e49C4F468367F73CC0E0", + "links": [ + { + "name": "x", + "url": "https://x.com/Axltoken" + }, + { + "name": "telegram", + "url": "https://t.me/Axltoken" + }, + { + "name": "facebook", + "url": "https://facebook.com/Axltoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/logo.png b/blockchains/ethereum/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/logo.png new file mode 100644 index 00000000..0de4c340 Binary files /dev/null and b/blockchains/ethereum/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/logo.png differ diff --git a/blockchains/ethereum/assets/0x25b553b8b8D88Af11e2f9B2798D944ad24139e09/info.json b/blockchains/ethereum/assets/0x25b553b8b8D88Af11e2f9B2798D944ad24139e09/info.json new file mode 100644 index 00000000..19ece2fc --- /dev/null +++ b/blockchains/ethereum/assets/0x25b553b8b8D88Af11e2f9B2798D944ad24139e09/info.json @@ -0,0 +1,11 @@ +{ + "name": "Computer Graphic", + "symbol": "CG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x25b553b8b8D88Af11e2f9B2798D944ad24139e09", + "status": "abandoned", + "id": "0x25b553b8b8D88Af11e2f9B2798D944ad24139e09" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25b553b8b8D88Af11e2f9B2798D944ad24139e09/logo.png b/blockchains/ethereum/assets/0x25b553b8b8D88Af11e2f9B2798D944ad24139e09/logo.png new file mode 100644 index 00000000..2598a796 Binary files /dev/null and b/blockchains/ethereum/assets/0x25b553b8b8D88Af11e2f9B2798D944ad24139e09/logo.png differ diff --git a/blockchains/ethereum/assets/0x25cef4fB106E76080E88135a0e4059276FA9BE87/info.json b/blockchains/ethereum/assets/0x25cef4fB106E76080E88135a0e4059276FA9BE87/info.json new file mode 100644 index 00000000..3a12623a --- /dev/null +++ b/blockchains/ethereum/assets/0x25cef4fB106E76080E88135a0e4059276FA9BE87/info.json @@ -0,0 +1,11 @@ +{ + "name": "Imperial", + "symbol": "UNITS", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "https://imperialtokens.com/", + "explorer": "https://etherscan.io/token/0x25cef4fB106E76080E88135a0e4059276FA9BE87", + "status": "abandoned", + "id": "0x25cef4fB106E76080E88135a0e4059276FA9BE87" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25cef4fB106E76080E88135a0e4059276FA9BE87/logo.png b/blockchains/ethereum/assets/0x25cef4fB106E76080E88135a0e4059276FA9BE87/logo.png new file mode 100644 index 00000000..9e26dc87 Binary files /dev/null and b/blockchains/ethereum/assets/0x25cef4fB106E76080E88135a0e4059276FA9BE87/logo.png differ diff --git a/blockchains/ethereum/assets/0x25d3f236B2d61656eebdeA86Ac6D42168e340011/info.json b/blockchains/ethereum/assets/0x25d3f236B2d61656eebdeA86Ac6D42168e340011/info.json new file mode 100644 index 00000000..edf70fd6 --- /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 00000000..42dcbb8a Binary files /dev/null and b/blockchains/ethereum/assets/0x25d3f236B2d61656eebdeA86Ac6D42168e340011/logo.png differ diff --git a/blockchains/ethereum/assets/0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa/info.json b/blockchains/ethereum/assets/0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa/info.json new file mode 100644 index 00000000..303af273 --- /dev/null +++ b/blockchains/ethereum/assets/0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bidao", + "symbol": "BID", + "type": "ERC20", + "decimals": 18, + "description": "Bidao® is building a chain agnostic trustless stablecoin and decentralized finance ecosystem. Moreover the Bidao® Token can be staked to earn extra rewards.", + "website": "https://bidaochain.com/", + "explorer": "https://etherscan.io/token/0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa", + "status": "active", + "id": "0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa/logo.png b/blockchains/ethereum/assets/0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa/logo.png new file mode 100644 index 00000000..03fd1ec7 Binary files /dev/null and b/blockchains/ethereum/assets/0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa/logo.png differ diff --git a/blockchains/ethereum/assets/0x25f8087EAD173b73D6e8B84329989A8eEA16CF73/info.json b/blockchains/ethereum/assets/0x25f8087EAD173b73D6e8B84329989A8eEA16CF73/info.json new file mode 100644 index 00000000..12f8cf37 --- /dev/null +++ b/blockchains/ethereum/assets/0x25f8087EAD173b73D6e8B84329989A8eEA16CF73/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://etherscan.io/token/0x25f8087ead173b73d6e8b84329989a8eea16cf73", + "type": "ERC20", + "symbol": "YGG", + "decimals": 18, + "status": "active", + "id": "0x25f8087EAD173b73D6e8B84329989A8eEA16CF73", + "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/ethereum/assets/0x25f8087EAD173b73D6e8B84329989A8eEA16CF73/logo.png b/blockchains/ethereum/assets/0x25f8087EAD173b73D6e8B84329989A8eEA16CF73/logo.png new file mode 100644 index 00000000..0ddcda72 Binary files /dev/null and b/blockchains/ethereum/assets/0x25f8087EAD173b73D6e8B84329989A8eEA16CF73/logo.png differ diff --git a/blockchains/ethereum/assets/0x25fe9c458Eb3f74C2c6B5398cF1aE0d302c84768/info.json b/blockchains/ethereum/assets/0x25fe9c458Eb3f74C2c6B5398cF1aE0d302c84768/info.json new file mode 100644 index 00000000..3e804b3b --- /dev/null +++ b/blockchains/ethereum/assets/0x25fe9c458Eb3f74C2c6B5398cF1aE0d302c84768/info.json @@ -0,0 +1,11 @@ +{ + "name": "CouponOne", + "symbol": "CPU", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x25fe9c458Eb3f74C2c6B5398cF1aE0d302c84768", + "status": "abandoned", + "id": "0x25fe9c458Eb3f74C2c6B5398cF1aE0d302c84768" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x25fe9c458Eb3f74C2c6B5398cF1aE0d302c84768/logo.png b/blockchains/ethereum/assets/0x25fe9c458Eb3f74C2c6B5398cF1aE0d302c84768/logo.png new file mode 100644 index 00000000..a7a119af Binary files /dev/null and b/blockchains/ethereum/assets/0x25fe9c458Eb3f74C2c6B5398cF1aE0d302c84768/logo.png differ diff --git a/blockchains/ethereum/assets/0x2604FA406Be957E542BEb89E6754fCdE6815e83f/info.json b/blockchains/ethereum/assets/0x2604FA406Be957E542BEb89E6754fCdE6815e83f/info.json new file mode 100644 index 00000000..1ebf1719 --- /dev/null +++ b/blockchains/ethereum/assets/0x2604FA406Be957E542BEb89E6754fCdE6815e83f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Playkey Token", + "symbol": "PKT", + "type": "ERC20", + "decimals": 18, + "description": "Playkey - Decentralized Cloud Gaming Platform ", + "website": "https://playkey.io/", + "explorer": "https://etherscan.io/token/0x2604FA406Be957E542BEb89E6754fCdE6815e83f", + "status": "active", + "id": "0x2604FA406Be957E542BEb89E6754fCdE6815e83f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2604FA406Be957E542BEb89E6754fCdE6815e83f/logo.png b/blockchains/ethereum/assets/0x2604FA406Be957E542BEb89E6754fCdE6815e83f/logo.png new file mode 100644 index 00000000..62610c72 Binary files /dev/null and b/blockchains/ethereum/assets/0x2604FA406Be957E542BEb89E6754fCdE6815e83f/logo.png differ diff --git a/blockchains/ethereum/assets/0x261423128D8e5b91FACE3B95Ef561FC206110F96/info.json b/blockchains/ethereum/assets/0x261423128D8e5b91FACE3B95Ef561FC206110F96/info.json new file mode 100644 index 00000000..465ee384 --- /dev/null +++ b/blockchains/ethereum/assets/0x261423128D8e5b91FACE3B95Ef561FC206110F96/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C526651", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x261423128D8e5b91FACE3B95Ef561FC206110F96", + "status": "abandoned", + "id": "0x261423128D8e5b91FACE3B95Ef561FC206110F96" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x261423128D8e5b91FACE3B95Ef561FC206110F96/logo.png b/blockchains/ethereum/assets/0x261423128D8e5b91FACE3B95Ef561FC206110F96/logo.png new file mode 100644 index 00000000..2a066cf0 Binary files /dev/null and b/blockchains/ethereum/assets/0x261423128D8e5b91FACE3B95Ef561FC206110F96/logo.png differ diff --git a/blockchains/ethereum/assets/0x2614E04133209a492Ba276A6C35095Aad11aD06e/info.json b/blockchains/ethereum/assets/0x2614E04133209a492Ba276A6C35095Aad11aD06e/info.json new file mode 100644 index 00000000..b49304ed --- /dev/null +++ b/blockchains/ethereum/assets/0x2614E04133209a492Ba276A6C35095Aad11aD06e/info.json @@ -0,0 +1,11 @@ +{ + "name": "TooCoin", + "symbol": "TOO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2614E04133209a492Ba276A6C35095Aad11aD06e", + "status": "abandoned", + "id": "0x2614E04133209a492Ba276A6C35095Aad11aD06e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2614E04133209a492Ba276A6C35095Aad11aD06e/logo.png b/blockchains/ethereum/assets/0x2614E04133209a492Ba276A6C35095Aad11aD06e/logo.png new file mode 100644 index 00000000..7f41456a Binary files /dev/null and b/blockchains/ethereum/assets/0x2614E04133209a492Ba276A6C35095Aad11aD06e/logo.png differ diff --git a/blockchains/ethereum/assets/0x261638EC8ee8100484130EBD2fEBfDAdC0D8742a/info.json b/blockchains/ethereum/assets/0x261638EC8ee8100484130EBD2fEBfDAdC0D8742a/info.json new file mode 100644 index 00000000..49cf5acb --- /dev/null +++ b/blockchains/ethereum/assets/0x261638EC8ee8100484130EBD2fEBfDAdC0D8742a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Level01 Token", + "symbol": "LVX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://level01.io/", + "explorer": "https://etherscan.io/token/0x261638EC8ee8100484130EBD2fEBfDAdC0D8742a", + "status": "abandoned", + "id": "0x261638EC8ee8100484130EBD2fEBfDAdC0D8742a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x261638EC8ee8100484130EBD2fEBfDAdC0D8742a/logo.png b/blockchains/ethereum/assets/0x261638EC8ee8100484130EBD2fEBfDAdC0D8742a/logo.png new file mode 100644 index 00000000..78e99530 Binary files /dev/null and b/blockchains/ethereum/assets/0x261638EC8ee8100484130EBD2fEBfDAdC0D8742a/logo.png differ diff --git a/blockchains/ethereum/assets/0x261b45D85cCFeAbb11F022eBa346ee8D1cd488c0/info.json b/blockchains/ethereum/assets/0x261b45D85cCFeAbb11F022eBa346ee8D1cd488c0/info.json new file mode 100644 index 00000000..4967b82b --- /dev/null +++ b/blockchains/ethereum/assets/0x261b45D85cCFeAbb11F022eBa346ee8D1cd488c0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Redeemable DAI", + "symbol": "rDAI", + "type": "ERC20", + "decimals": 18, + "description": "Provide programmable interest payments to everyone.", + "website": "https://rdai.money/", + "explorer": "https://etherscan.io/token/0x261b45D85cCFeAbb11F022eBa346ee8D1cd488c0", + "status": "active", + "id": "0x261b45D85cCFeAbb11F022eBa346ee8D1cd488c0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x261b45D85cCFeAbb11F022eBa346ee8D1cd488c0/logo.png b/blockchains/ethereum/assets/0x261b45D85cCFeAbb11F022eBa346ee8D1cd488c0/logo.png new file mode 100644 index 00000000..e3d89234 Binary files /dev/null and b/blockchains/ethereum/assets/0x261b45D85cCFeAbb11F022eBa346ee8D1cd488c0/logo.png differ diff --git a/blockchains/ethereum/assets/0x2630997aAB62fA1030a8b975e1AA2dC573b18a13/info.json b/blockchains/ethereum/assets/0x2630997aAB62fA1030a8b975e1AA2dC573b18a13/info.json new file mode 100644 index 00000000..e192368d --- /dev/null +++ b/blockchains/ethereum/assets/0x2630997aAB62fA1030a8b975e1AA2dC573b18a13/info.json @@ -0,0 +1,11 @@ +{ + "name": "HYPE Token", + "symbol": "HYPE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://hypetoken.io", + "explorer": "https://etherscan.io/token/0x2630997aAB62fA1030a8b975e1AA2dC573b18a13", + "status": "abandoned", + "id": "0x2630997aAB62fA1030a8b975e1AA2dC573b18a13" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2630997aAB62fA1030a8b975e1AA2dC573b18a13/logo.png b/blockchains/ethereum/assets/0x2630997aAB62fA1030a8b975e1AA2dC573b18a13/logo.png new file mode 100644 index 00000000..b5db58fa Binary files /dev/null and b/blockchains/ethereum/assets/0x2630997aAB62fA1030a8b975e1AA2dC573b18a13/logo.png differ diff --git a/blockchains/ethereum/assets/0x263c618480DBe35C300D8d5EcDA19bbB986AcaeD/info.json b/blockchains/ethereum/assets/0x263c618480DBe35C300D8d5EcDA19bbB986AcaeD/info.json new file mode 100644 index 00000000..b8a79d02 --- /dev/null +++ b/blockchains/ethereum/assets/0x263c618480DBe35C300D8d5EcDA19bbB986AcaeD/info.json @@ -0,0 +1,11 @@ +{ + "name": "MOT", + "symbol": "MOT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x263c618480DBe35C300D8d5EcDA19bbB986AcaeD", + "status": "abandoned", + "id": "0x263c618480DBe35C300D8d5EcDA19bbB986AcaeD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x263c618480DBe35C300D8d5EcDA19bbB986AcaeD/logo.png b/blockchains/ethereum/assets/0x263c618480DBe35C300D8d5EcDA19bbB986AcaeD/logo.png new file mode 100755 index 00000000..1b88303b Binary files /dev/null and b/blockchains/ethereum/assets/0x263c618480DBe35C300D8d5EcDA19bbB986AcaeD/logo.png differ diff --git a/blockchains/ethereum/assets/0x263d13Fb9a362065987f2Fb5Df34344a78B463ba/info.json b/blockchains/ethereum/assets/0x263d13Fb9a362065987f2Fb5Df34344a78B463ba/info.json new file mode 100644 index 00000000..42a80274 --- /dev/null +++ b/blockchains/ethereum/assets/0x263d13Fb9a362065987f2Fb5Df34344a78B463ba/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-13/30M43", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x263d13Fb9a362065987f2Fb5Df34344a78B463ba", + "status": "abandoned", + "id": "0x263d13Fb9a362065987f2Fb5Df34344a78B463ba" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x263d13Fb9a362065987f2Fb5Df34344a78B463ba/logo.png b/blockchains/ethereum/assets/0x263d13Fb9a362065987f2Fb5Df34344a78B463ba/logo.png new file mode 100644 index 00000000..c20b7bf0 Binary files /dev/null and b/blockchains/ethereum/assets/0x263d13Fb9a362065987f2Fb5Df34344a78B463ba/logo.png differ diff --git a/blockchains/ethereum/assets/0x264Dc2DedCdcbb897561A57CBa5085CA416fb7b4/info.json b/blockchains/ethereum/assets/0x264Dc2DedCdcbb897561A57CBa5085CA416fb7b4/info.json new file mode 100644 index 00000000..e224e92b --- /dev/null +++ b/blockchains/ethereum/assets/0x264Dc2DedCdcbb897561A57CBa5085CA416fb7b4/info.json @@ -0,0 +1,11 @@ +{ + "name": "QunQunCommunities", + "symbol": "QUN", + "type": "ERC20", + "decimals": 18, + "description": "QunQun (QUN) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://qunqun.io", + "explorer": "https://etherscan.io/token/0x264Dc2DedCdcbb897561A57CBa5085CA416fb7b4", + "status": "active", + "id": "0x264Dc2DedCdcbb897561A57CBa5085CA416fb7b4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x264Dc2DedCdcbb897561A57CBa5085CA416fb7b4/logo.png b/blockchains/ethereum/assets/0x264Dc2DedCdcbb897561A57CBa5085CA416fb7b4/logo.png new file mode 100755 index 00000000..0b48e9ef Binary files /dev/null and b/blockchains/ethereum/assets/0x264Dc2DedCdcbb897561A57CBa5085CA416fb7b4/logo.png differ diff --git a/blockchains/ethereum/assets/0x265Ba42daF2D20F3F358a7361D9f69Cb4E28F0E6/info.json b/blockchains/ethereum/assets/0x265Ba42daF2D20F3F358a7361D9f69Cb4E28F0E6/info.json new file mode 100644 index 00000000..f9cded7b --- /dev/null +++ b/blockchains/ethereum/assets/0x265Ba42daF2D20F3F358a7361D9f69Cb4E28F0E6/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniBombV3", + "symbol": "UBOMB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://unibomb.it/", + "explorer": "https://etherscan.io/token/0x265Ba42daF2D20F3F358a7361D9f69Cb4E28F0E6", + "status": "abandoned", + "id": "0x265Ba42daF2D20F3F358a7361D9f69Cb4E28F0E6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x265Ba42daF2D20F3F358a7361D9f69Cb4E28F0E6/logo.png b/blockchains/ethereum/assets/0x265Ba42daF2D20F3F358a7361D9f69Cb4E28F0E6/logo.png new file mode 100644 index 00000000..4a1f56a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x265Ba42daF2D20F3F358a7361D9f69Cb4E28F0E6/logo.png differ diff --git a/blockchains/ethereum/assets/0x26710D94067B144c2A6970CBBB96a5d08B70aC79/info.json b/blockchains/ethereum/assets/0x26710D94067B144c2A6970CBBB96a5d08B70aC79/info.json new file mode 100644 index 00000000..2ceb359f --- /dev/null +++ b/blockchains/ethereum/assets/0x26710D94067B144c2A6970CBBB96a5d08B70aC79/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hydrolic", + "symbol": "HDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x26710D94067B144c2A6970CBBB96a5d08B70aC79", + "status": "spam", + "id": "0x26710D94067B144c2A6970CBBB96a5d08B70aC79" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26710D94067B144c2A6970CBBB96a5d08B70aC79/logo.png b/blockchains/ethereum/assets/0x26710D94067B144c2A6970CBBB96a5d08B70aC79/logo.png new file mode 100644 index 00000000..de3a665e Binary files /dev/null and b/blockchains/ethereum/assets/0x26710D94067B144c2A6970CBBB96a5d08B70aC79/logo.png differ diff --git a/blockchains/ethereum/assets/0x267Ba09FE3a8a16c7dc8A9B07b5F2C4AC0aDf1c0/info.json b/blockchains/ethereum/assets/0x267Ba09FE3a8a16c7dc8A9B07b5F2C4AC0aDf1c0/info.json new file mode 100644 index 00000000..ca8cf2c1 --- /dev/null +++ b/blockchains/ethereum/assets/0x267Ba09FE3a8a16c7dc8A9B07b5F2C4AC0aDf1c0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bit Energy", + "symbol": "BTE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x267Ba09FE3a8a16c7dc8A9B07b5F2C4AC0aDf1c0", + "status": "abandoned", + "id": "0x267Ba09FE3a8a16c7dc8A9B07b5F2C4AC0aDf1c0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x267Ba09FE3a8a16c7dc8A9B07b5F2C4AC0aDf1c0/logo.png b/blockchains/ethereum/assets/0x267Ba09FE3a8a16c7dc8A9B07b5F2C4AC0aDf1c0/logo.png new file mode 100644 index 00000000..13e65169 Binary files /dev/null and b/blockchains/ethereum/assets/0x267Ba09FE3a8a16c7dc8A9B07b5F2C4AC0aDf1c0/logo.png differ diff --git a/blockchains/ethereum/assets/0x2691b13fca1E02322685b9554B5ae0F5F3f05C55/info.json b/blockchains/ethereum/assets/0x2691b13fca1E02322685b9554B5ae0F5F3f05C55/info.json new file mode 100644 index 00000000..248dfbee --- /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 00000000..3d67badd 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 new file mode 100644 index 00000000..ef2a6afe --- /dev/null +++ b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/info.json @@ -0,0 +1,41 @@ +{ + "name": "BSOV Token", + "symbol": "BSOV", + "type": "ERC20", + "decimals": 8, + "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", + "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 new file mode 100644 index 00000000..525f7eb1 Binary files /dev/null and b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png differ diff --git a/blockchains/ethereum/assets/0x26B3038a7Fc10b36c426846a9086Ef87328dA702/info.json b/blockchains/ethereum/assets/0x26B3038a7Fc10b36c426846a9086Ef87328dA702/info.json new file mode 100644 index 00000000..1ec57a83 --- /dev/null +++ b/blockchains/ethereum/assets/0x26B3038a7Fc10b36c426846a9086Ef87328dA702/info.json @@ -0,0 +1,11 @@ +{ + "name": "YFT", + "website": "https://yft.finance", + "description": "Yield Farming Token (YFT). A most profitable way to farm with next generation yield farming and high yield rewards.", + "explorer": "https://etherscan.io/token/0x26B3038a7Fc10b36c426846a9086Ef87328dA702", + "type": "ERC20", + "symbol": "YFT", + "decimals": 18, + "status": "active", + "id": "0x26B3038a7Fc10b36c426846a9086Ef87328dA702" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26B3038a7Fc10b36c426846a9086Ef87328dA702/logo.png b/blockchains/ethereum/assets/0x26B3038a7Fc10b36c426846a9086Ef87328dA702/logo.png new file mode 100644 index 00000000..17fb443f Binary files /dev/null and b/blockchains/ethereum/assets/0x26B3038a7Fc10b36c426846a9086Ef87328dA702/logo.png differ diff --git a/blockchains/ethereum/assets/0x26B5410f3F4db08c99955f9cd67B40dB8008f425/info.json b/blockchains/ethereum/assets/0x26B5410f3F4db08c99955f9cd67B40dB8008f425/info.json new file mode 100644 index 00000000..8e3b6bba --- /dev/null +++ b/blockchains/ethereum/assets/0x26B5410f3F4db08c99955f9cd67B40dB8008f425/info.json @@ -0,0 +1,11 @@ +{ + "name": "FishOne", + "symbol": "FOT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x26B5410f3F4db08c99955f9cd67B40dB8008f425", + "status": "abandoned", + "id": "0x26B5410f3F4db08c99955f9cd67B40dB8008f425" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26B5410f3F4db08c99955f9cd67B40dB8008f425/logo.png b/blockchains/ethereum/assets/0x26B5410f3F4db08c99955f9cd67B40dB8008f425/logo.png new file mode 100644 index 00000000..6802235a Binary files /dev/null and b/blockchains/ethereum/assets/0x26B5410f3F4db08c99955f9cd67B40dB8008f425/logo.png differ diff --git a/blockchains/ethereum/assets/0x26B80FBfC01b71495f477d5237071242e0d959d7/info.json b/blockchains/ethereum/assets/0x26B80FBfC01b71495f477d5237071242e0d959d7/info.json new file mode 100644 index 00000000..da907c87 --- /dev/null +++ b/blockchains/ethereum/assets/0x26B80FBfC01b71495f477d5237071242e0d959d7/info.json @@ -0,0 +1,14 @@ +{ + "name": "ROSE (Portal)", + "type": "ERC20", + "symbol": "ROSE", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://oasisprotocol.org/", + "explorer": "https://etherscan.io/token/0x26B80FBfC01b71495f477d5237071242e0d959d7", + "status": "active", + "id": "0x26B80FBfC01b71495f477d5237071242e0d959d7", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26B80FBfC01b71495f477d5237071242e0d959d7/logo.png b/blockchains/ethereum/assets/0x26B80FBfC01b71495f477d5237071242e0d959d7/logo.png new file mode 100644 index 00000000..32179bc3 Binary files /dev/null and b/blockchains/ethereum/assets/0x26B80FBfC01b71495f477d5237071242e0d959d7/logo.png differ diff --git a/blockchains/ethereum/assets/0x26C0E6F69B18125F68AC55f439b1E10C2A2e5c03/info.json b/blockchains/ethereum/assets/0x26C0E6F69B18125F68AC55f439b1E10C2A2e5c03/info.json new file mode 100644 index 00000000..9b6182d3 --- /dev/null +++ b/blockchains/ethereum/assets/0x26C0E6F69B18125F68AC55f439b1E10C2A2e5c03/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crowdvilla Point", + "symbol": "CROWD", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x26C0E6F69B18125F68AC55f439b1E10C2A2e5c03", + "status": "abandoned", + "id": "0x26C0E6F69B18125F68AC55f439b1E10C2A2e5c03" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26C0E6F69B18125F68AC55f439b1E10C2A2e5c03/logo.png b/blockchains/ethereum/assets/0x26C0E6F69B18125F68AC55f439b1E10C2A2e5c03/logo.png new file mode 100644 index 00000000..16f679f4 Binary files /dev/null and b/blockchains/ethereum/assets/0x26C0E6F69B18125F68AC55f439b1E10C2A2e5c03/logo.png differ diff --git a/blockchains/ethereum/assets/0x26CB3641aaA43911f1D4cB2ce544eb652AAc7c47/info.json b/blockchains/ethereum/assets/0x26CB3641aaA43911f1D4cB2ce544eb652AAc7c47/info.json new file mode 100644 index 00000000..26a6ae56 --- /dev/null +++ b/blockchains/ethereum/assets/0x26CB3641aaA43911f1D4cB2ce544eb652AAc7c47/info.json @@ -0,0 +1,11 @@ +{ + "name": "CrystalToken", + "symbol": "CYL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.crystaltoken.co", + "explorer": "https://etherscan.io/token/0x26CB3641aaA43911f1D4cB2ce544eb652AAc7c47", + "status": "abandoned", + "id": "0x26CB3641aaA43911f1D4cB2ce544eb652AAc7c47" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26CB3641aaA43911f1D4cB2ce544eb652AAc7c47/logo.png b/blockchains/ethereum/assets/0x26CB3641aaA43911f1D4cB2ce544eb652AAc7c47/logo.png new file mode 100644 index 00000000..d78f6984 Binary files /dev/null and b/blockchains/ethereum/assets/0x26CB3641aaA43911f1D4cB2ce544eb652AAc7c47/logo.png differ diff --git a/blockchains/ethereum/assets/0x26CE25148832C04f3d7F26F32478a9fe55197166/info.json b/blockchains/ethereum/assets/0x26CE25148832C04f3d7F26F32478a9fe55197166/info.json new file mode 100644 index 00000000..a220c497 --- /dev/null +++ b/blockchains/ethereum/assets/0x26CE25148832C04f3d7F26F32478a9fe55197166/info.json @@ -0,0 +1,17 @@ +{ + "name": "DEXTools", + "website": "https://dextools.io/", + "description": "Ultimate Hub and Defi App For Uniswap and DEX trading.", + "explorer": "https://etherscan.io/token/0x26CE25148832C04f3d7F26F32478a9fe55197166", + "type": "ERC20", + "symbol": "DEXT", + "decimals": 18, + "status": "abandoned", + "id": "0x26CE25148832C04f3d7F26F32478a9fe55197166", + "links": [ + { + "name": "x", + "url": "https://x.com/DexToolsapp" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26D5Bd2dfEDa983ECD6c39899e69DAE6431Dffbb/info.json b/blockchains/ethereum/assets/0x26D5Bd2dfEDa983ECD6c39899e69DAE6431Dffbb/info.json new file mode 100644 index 00000000..1de93b23 --- /dev/null +++ b/blockchains/ethereum/assets/0x26D5Bd2dfEDa983ECD6c39899e69DAE6431Dffbb/info.json @@ -0,0 +1,11 @@ +{ + "name": "ERC20", + "symbol": "ERC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x26D5Bd2dfEDa983ECD6c39899e69DAE6431Dffbb", + "status": "abandoned", + "id": "0x26D5Bd2dfEDa983ECD6c39899e69DAE6431Dffbb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26D5Bd2dfEDa983ECD6c39899e69DAE6431Dffbb/logo.png b/blockchains/ethereum/assets/0x26D5Bd2dfEDa983ECD6c39899e69DAE6431Dffbb/logo.png new file mode 100644 index 00000000..3a4157dd Binary files /dev/null and b/blockchains/ethereum/assets/0x26D5Bd2dfEDa983ECD6c39899e69DAE6431Dffbb/logo.png differ diff --git a/blockchains/ethereum/assets/0x26DB5439F651CAF491A87d48799dA81F191bDB6b/info.json b/blockchains/ethereum/assets/0x26DB5439F651CAF491A87d48799dA81F191bDB6b/info.json new file mode 100644 index 00000000..8b500227 --- /dev/null +++ b/blockchains/ethereum/assets/0x26DB5439F651CAF491A87d48799dA81F191bDB6b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Casino Betting Coin", + "symbol": "CBC", + "type": "ERC20", + "decimals": 8, + "description": "Casino Betting Coin is an ERC-20 cryptocurrency designed to supercharge iGaming via the blockchain.", + "website": "https://cbc.network", + "explorer": "https://etherscan.io/token/0x26DB5439F651CAF491A87d48799dA81F191bDB6b", + "status": "active", + "id": "0x26DB5439F651CAF491A87d48799dA81F191bDB6b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26DB5439F651CAF491A87d48799dA81F191bDB6b/logo.png b/blockchains/ethereum/assets/0x26DB5439F651CAF491A87d48799dA81F191bDB6b/logo.png new file mode 100644 index 00000000..fcc18288 Binary files /dev/null and b/blockchains/ethereum/assets/0x26DB5439F651CAF491A87d48799dA81F191bDB6b/logo.png differ diff --git a/blockchains/ethereum/assets/0x26DDF6CabADcBF4F013841BD8d914830BeB0d984/info.json b/blockchains/ethereum/assets/0x26DDF6CabADcBF4F013841BD8d914830BeB0d984/info.json new file mode 100644 index 00000000..cd440576 --- /dev/null +++ b/blockchains/ethereum/assets/0x26DDF6CabADcBF4F013841BD8d914830BeB0d984/info.json @@ -0,0 +1,11 @@ +{ + "name": "KuaiToken", + "symbol": "KT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.kuaitoken.com/", + "explorer": "https://etherscan.io/token/0x26DDF6CabADcBF4F013841BD8d914830BeB0d984", + "status": "active", + "id": "0x26DDF6CabADcBF4F013841BD8d914830BeB0d984" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26DDF6CabADcBF4F013841BD8d914830BeB0d984/logo.png b/blockchains/ethereum/assets/0x26DDF6CabADcBF4F013841BD8d914830BeB0d984/logo.png new file mode 100644 index 00000000..3f5301b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x26DDF6CabADcBF4F013841BD8d914830BeB0d984/logo.png differ diff --git a/blockchains/ethereum/assets/0x26E1f9F817b3b5FC2146c01ae34826593E593962/info.json b/blockchains/ethereum/assets/0x26E1f9F817b3b5FC2146c01ae34826593E593962/info.json new file mode 100644 index 00000000..a77c4b00 --- /dev/null +++ b/blockchains/ethereum/assets/0x26E1f9F817b3b5FC2146c01ae34826593E593962/info.json @@ -0,0 +1,40 @@ +{ + "name": "qiibeeToken", + "symbol": "QBX", + "type": "ERC20", + "decimals": 18, + "description": "The global standard for loyalty on the blockchain. With qiibee, businesses around the world can run their loyalty programs on the blockchain.", + "website": "https://qiibee.com/", + "explorer": "https://etherscan.io/token/0x26e1f9f817b3b5fc2146c01ae34826593e593962", + "status": "active", + "id": "0x26E1f9F817b3b5FC2146c01ae34826593E593962", + "links": [ + { + "name": "whitepaper", + "url": "https://static.qiibee.com/qiibee-White-Paper.pdf" + }, + { + "name": "github", + "url": "https://github.com/qiibee" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qiibee/" + }, + { + "name": "x", + "url": "https://x.com/qiibee" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/qiibee" + }, + { + "name": "facebook", + "url": "https://facebook.com/qiibee" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26E1f9F817b3b5FC2146c01ae34826593E593962/logo.png b/blockchains/ethereum/assets/0x26E1f9F817b3b5FC2146c01ae34826593E593962/logo.png new file mode 100644 index 00000000..cc13c437 Binary files /dev/null and b/blockchains/ethereum/assets/0x26E1f9F817b3b5FC2146c01ae34826593E593962/logo.png differ diff --git a/blockchains/ethereum/assets/0x26E43759551333e57F073bb0772F50329A957b30/info.json b/blockchains/ethereum/assets/0x26E43759551333e57F073bb0772F50329A957b30/info.json new file mode 100644 index 00000000..0408bf63 --- /dev/null +++ b/blockchains/ethereum/assets/0x26E43759551333e57F073bb0772F50329A957b30/info.json @@ -0,0 +1,25 @@ +{ + "name": "DegenVC", + "website": "https://degen.vc/", + "description": "Building a degen community incentivised by DGVC tokens to provide liquidity for Uniswap or other AMM project launches.", + "explorer": "https://etherscan.io/token/0x26E43759551333e57F073bb0772F50329A957b30", + "type": "ERC20", + "symbol": "DGVC", + "decimals": 18, + "status": "active", + "id": "0x26E43759551333e57F073bb0772F50329A957b30", + "links": [ + { + "name": "github", + "url": "https://github.com/degen-vc" + }, + { + "name": "x", + "url": "https://x.com/degen_vc" + }, + { + "name": "whitepaper", + "url": "https://www.degen.vc" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26E43759551333e57F073bb0772F50329A957b30/logo.png b/blockchains/ethereum/assets/0x26E43759551333e57F073bb0772F50329A957b30/logo.png new file mode 100644 index 00000000..c0f7c134 Binary files /dev/null and b/blockchains/ethereum/assets/0x26E43759551333e57F073bb0772F50329A957b30/logo.png differ diff --git a/blockchains/ethereum/assets/0x26E550AC11B26f78A04489d5F20f24E3559f7Dd9/info.json b/blockchains/ethereum/assets/0x26E550AC11B26f78A04489d5F20f24E3559f7Dd9/info.json new file mode 100644 index 00000000..e2c2f53f --- /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 00000000..5897d9b3 Binary files /dev/null and b/blockchains/ethereum/assets/0x26E550AC11B26f78A04489d5F20f24E3559f7Dd9/logo.png differ diff --git a/blockchains/ethereum/assets/0x26E75307Fc0C021472fEb8F727839531F112f317/info.json b/blockchains/ethereum/assets/0x26E75307Fc0C021472fEb8F727839531F112f317/info.json new file mode 100644 index 00000000..82d6532e --- /dev/null +++ b/blockchains/ethereum/assets/0x26E75307Fc0C021472fEb8F727839531F112f317/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crypto20", + "symbol": "C20", + "type": "ERC20", + "decimals": 18, + "description": "Crypto20 is the world's first tokenized crypto index fund.", + "website": "https://invictuscapital.com/en/crypto20", + "explorer": "https://etherscan.io/token/0x26E75307Fc0C021472fEb8F727839531F112f317", + "status": "active", + "id": "0x26E75307Fc0C021472fEb8F727839531F112f317" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26E75307Fc0C021472fEb8F727839531F112f317/logo.png b/blockchains/ethereum/assets/0x26E75307Fc0C021472fEb8F727839531F112f317/logo.png new file mode 100644 index 00000000..1c65b7f1 Binary files /dev/null and b/blockchains/ethereum/assets/0x26E75307Fc0C021472fEb8F727839531F112f317/logo.png differ diff --git a/blockchains/ethereum/assets/0x26a604DFFE3ddaB3BEE816097F81d3C4a2A4CF97/info.json b/blockchains/ethereum/assets/0x26a604DFFE3ddaB3BEE816097F81d3C4a2A4CF97/info.json new file mode 100644 index 00000000..5e26e217 --- /dev/null +++ b/blockchains/ethereum/assets/0x26a604DFFE3ddaB3BEE816097F81d3C4a2A4CF97/info.json @@ -0,0 +1,11 @@ +{ + "name": "CorionX utility token", + "symbol": "CORX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://corion.io", + "explorer": "https://etherscan.io/token/0x26a604DFFE3ddaB3BEE816097F81d3C4a2A4CF97", + "status": "active", + "id": "0x26a604DFFE3ddaB3BEE816097F81d3C4a2A4CF97" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26a604DFFE3ddaB3BEE816097F81d3C4a2A4CF97/logo.png b/blockchains/ethereum/assets/0x26a604DFFE3ddaB3BEE816097F81d3C4a2A4CF97/logo.png new file mode 100644 index 00000000..7cfa0e94 Binary files /dev/null and b/blockchains/ethereum/assets/0x26a604DFFE3ddaB3BEE816097F81d3C4a2A4CF97/logo.png differ diff --git a/blockchains/ethereum/assets/0x26a6F4A6867a71Be998b80eaAbf67ff87D1E59d6/info.json b/blockchains/ethereum/assets/0x26a6F4A6867a71Be998b80eaAbf67ff87D1E59d6/info.json new file mode 100644 index 00000000..1448af6e --- /dev/null +++ b/blockchains/ethereum/assets/0x26a6F4A6867a71Be998b80eaAbf67ff87D1E59d6/info.json @@ -0,0 +1,11 @@ +{ + "name": "CasinoLaCrosse", + "symbol": "SIN", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x26a6F4A6867a71Be998b80eaAbf67ff87D1E59d6", + "status": "abandoned", + "id": "0x26a6F4A6867a71Be998b80eaAbf67ff87D1E59d6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26a6F4A6867a71Be998b80eaAbf67ff87D1E59d6/logo.png b/blockchains/ethereum/assets/0x26a6F4A6867a71Be998b80eaAbf67ff87D1E59d6/logo.png new file mode 100644 index 00000000..189d56da Binary files /dev/null and b/blockchains/ethereum/assets/0x26a6F4A6867a71Be998b80eaAbf67ff87D1E59d6/logo.png differ diff --git a/blockchains/ethereum/assets/0x26a79Bd709A7eF5E5F747B8d8f83326EA044d8cC/info.json b/blockchains/ethereum/assets/0x26a79Bd709A7eF5E5F747B8d8f83326EA044d8cC/info.json new file mode 100644 index 00000000..90b3937d --- /dev/null +++ b/blockchains/ethereum/assets/0x26a79Bd709A7eF5E5F747B8d8f83326EA044d8cC/info.json @@ -0,0 +1,11 @@ +{ + "name": "BankSocial", + "website": "https://www.banksocial.io", + "description": "BankSocial is a first-of-its-kind Decentralized Financed DeFi peer-to-peer lending platform built on Ethereum.", + "explorer": "https://etherscan.io/token/0x26a79Bd709A7eF5E5F747B8d8f83326EA044d8cC", + "type": "ERC20", + "symbol": "BSOCIAL", + "decimals": 8, + "status": "abandoned", + "id": "0x26a79Bd709A7eF5E5F747B8d8f83326EA044d8cC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26b7d545De1c04Af88dD2a5F3f4C8f58108C55A2/info.json b/blockchains/ethereum/assets/0x26b7d545De1c04Af88dD2a5F3f4C8f58108C55A2/info.json new file mode 100644 index 00000000..eb9aadc9 --- /dev/null +++ b/blockchains/ethereum/assets/0x26b7d545De1c04Af88dD2a5F3f4C8f58108C55A2/info.json @@ -0,0 +1,11 @@ +{ + "name": "MunchCoin", + "symbol": "MNCH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x26b7d545De1c04Af88dD2a5F3f4C8f58108C55A2", + "status": "abandoned", + "id": "0x26b7d545De1c04Af88dD2a5F3f4C8f58108C55A2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26b7d545De1c04Af88dD2a5F3f4C8f58108C55A2/logo.png b/blockchains/ethereum/assets/0x26b7d545De1c04Af88dD2a5F3f4C8f58108C55A2/logo.png new file mode 100755 index 00000000..2965bc6d Binary files /dev/null and b/blockchains/ethereum/assets/0x26b7d545De1c04Af88dD2a5F3f4C8f58108C55A2/logo.png differ diff --git a/blockchains/ethereum/assets/0x26c5331a8AAEDe3d3Af276fD61329163a55ECbCa/info.json b/blockchains/ethereum/assets/0x26c5331a8AAEDe3d3Af276fD61329163a55ECbCa/info.json new file mode 100644 index 00000000..1b3c2fcd --- /dev/null +++ b/blockchains/ethereum/assets/0x26c5331a8AAEDe3d3Af276fD61329163a55ECbCa/info.json @@ -0,0 +1,17 @@ +{ + "name": "ABYSS", + "website": "https://theabyss.Fund", + "description": "The Abyss protocol is a governance-controlled burn address (DAE) which mints NFTs from token lockups. Uses the overlaying CHARON DAO, ABY holders are able to influence almost all parts of the protocol, from deciding on fee structures, adding new pools, rebalancing, and even disabling parts of the Abyss ecosystem. The holdings of the Abyss itself, are the only thing beyond the touch of mortals.", + "explorer": "https://etherscan.io/token/0x26c5331a8aaede3d3af276fd61329163a55ecbca", + "type": "ERC20", + "symbol": "ABY*", + "decimals": 18, + "status": "active", + "id": "0x26c5331a8AAEDe3d3Af276fD61329163a55ECbCa", + "links": [ + { + "name": "github", + "url": "https://github.com/m4ssAB/theAbyss" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26c5331a8AAEDe3d3Af276fD61329163a55ECbCa/logo.png b/blockchains/ethereum/assets/0x26c5331a8AAEDe3d3Af276fD61329163a55ECbCa/logo.png new file mode 100644 index 00000000..b90f908d Binary files /dev/null and b/blockchains/ethereum/assets/0x26c5331a8AAEDe3d3Af276fD61329163a55ECbCa/logo.png differ diff --git a/blockchains/ethereum/assets/0x26c8AFBBFE1EBaca03C2bB082E69D0476Bffe099/info.json b/blockchains/ethereum/assets/0x26c8AFBBFE1EBaca03C2bB082E69D0476Bffe099/info.json new file mode 100644 index 00000000..ad51fb45 --- /dev/null +++ b/blockchains/ethereum/assets/0x26c8AFBBFE1EBaca03C2bB082E69D0476Bffe099/info.json @@ -0,0 +1,12 @@ +{ + "name": "Cellframe", + "website": "https://cellframe.net", + "description": "CELL is a token of the Cellframe Network.", + "explorer": "https://etherscan.io/token/0x26c8afbbfe1ebaca03c2bb082e69d0476bffe099", + "research": "https://research.blackdragon.io/portfolio/snapshot/cellframe-cell/", + "type": "ERC20", + "symbol": "CELL", + "decimals": 18, + "status": "active", + "id": "0x26c8AFBBFE1EBaca03C2bB082E69D0476Bffe099" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26c8AFBBFE1EBaca03C2bB082E69D0476Bffe099/logo.png b/blockchains/ethereum/assets/0x26c8AFBBFE1EBaca03C2bB082E69D0476Bffe099/logo.png new file mode 100644 index 00000000..ba193b5c Binary files /dev/null and b/blockchains/ethereum/assets/0x26c8AFBBFE1EBaca03C2bB082E69D0476Bffe099/logo.png differ diff --git a/blockchains/ethereum/assets/0x26d00D339B22Db44A4a057B39513c1e12D140594/info.json b/blockchains/ethereum/assets/0x26d00D339B22Db44A4a057B39513c1e12D140594/info.json new file mode 100644 index 00000000..82e84509 --- /dev/null +++ b/blockchains/ethereum/assets/0x26d00D339B22Db44A4a057B39513c1e12D140594/info.json @@ -0,0 +1,11 @@ +{ + "name": "HCoin Token", + "symbol": "HCT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x26d00D339B22Db44A4a057B39513c1e12D140594", + "status": "abandoned", + "id": "0x26d00D339B22Db44A4a057B39513c1e12D140594" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26d00D339B22Db44A4a057B39513c1e12D140594/logo.png b/blockchains/ethereum/assets/0x26d00D339B22Db44A4a057B39513c1e12D140594/logo.png new file mode 100644 index 00000000..877db0c6 Binary files /dev/null and b/blockchains/ethereum/assets/0x26d00D339B22Db44A4a057B39513c1e12D140594/logo.png differ diff --git a/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/info.json b/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/info.json new file mode 100644 index 00000000..f5b21fa8 --- /dev/null +++ b/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/info.json @@ -0,0 +1,56 @@ +{ + "name": "Ankr Staked MATIC", + "type": "ERC20", + "symbol": "ankrMATIC", + "decimals": 18, + "website": "https://ankr.com", + "description": "ankrMATIC represents your staked MATIC and provides liquidity for your staked position. All staking rewards are built into the token price, and ankrMATIC grows daily in value, but never in number", + "explorer": "https://etherscan.io/token/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C", + "status": "active", + "id": "0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C", + "links": [ + { + "name": "x", + "url": "https://x.com/ankr" + }, + { + "name": "github", + "url": "https://github.com/Ankr-network" + }, + { + "name": "telegram", + "url": "https://t.me/ankrnetwork" + }, + { + "name": "docs", + "url": "https://ankr.com/docs/staking/overview" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Ankrofficial/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@AnkrOfficial" + }, + { + "name": "whitepaper", + "url": "https://ankr.com/ankr-whitepaper-2.0.pdf" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ankr" + }, + { + "name": "medium", + "url": "https://medium.com/ankr-network" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ankr-staked-matic" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/logo.png b/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/logo.png new file mode 100644 index 00000000..22d28ab4 Binary files /dev/null and b/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/logo.png differ diff --git a/blockchains/ethereum/assets/0x26fE5f779AeE2c6E2099610d470679c6bAC0FFfA/info.json b/blockchains/ethereum/assets/0x26fE5f779AeE2c6E2099610d470679c6bAC0FFfA/info.json new file mode 100644 index 00000000..88d3d0cb --- /dev/null +++ b/blockchains/ethereum/assets/0x26fE5f779AeE2c6E2099610d470679c6bAC0FFfA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wurst", + "symbol": "WURST", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x26fE5f779AeE2c6E2099610d470679c6bAC0FFfA", + "status": "abandoned", + "id": "0x26fE5f779AeE2c6E2099610d470679c6bAC0FFfA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26fE5f779AeE2c6E2099610d470679c6bAC0FFfA/logo.png b/blockchains/ethereum/assets/0x26fE5f779AeE2c6E2099610d470679c6bAC0FFfA/logo.png new file mode 100644 index 00000000..5e6ebf9e Binary files /dev/null and b/blockchains/ethereum/assets/0x26fE5f779AeE2c6E2099610d470679c6bAC0FFfA/logo.png differ diff --git a/blockchains/ethereum/assets/0x26fF6D16549A00BA8b36ce3159b5277E6e798d18/info.json b/blockchains/ethereum/assets/0x26fF6D16549A00BA8b36ce3159b5277E6e798d18/info.json new file mode 100644 index 00000000..4bdf5926 --- /dev/null +++ b/blockchains/ethereum/assets/0x26fF6D16549A00BA8b36ce3159b5277E6e798d18/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chihua Token", + "website": "https://www.chihuatoken.com/", + "description": "BUSD is a stablecoin issued by Paxos in partnership with Binance.", + "explorer": "https://etherscan.io/token/0x26fF6D16549A00BA8b36ce3159b5277E6e798d18", + "type": "ERC20", + "symbol": "CHIHUA", + "decimals": 18, + "status": "active", + "id": "0x26fF6D16549A00BA8b36ce3159b5277E6e798d18" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26fF6D16549A00BA8b36ce3159b5277E6e798d18/logo.png b/blockchains/ethereum/assets/0x26fF6D16549A00BA8b36ce3159b5277E6e798d18/logo.png new file mode 100644 index 00000000..eafe2359 Binary files /dev/null and b/blockchains/ethereum/assets/0x26fF6D16549A00BA8b36ce3159b5277E6e798d18/logo.png differ diff --git a/blockchains/ethereum/assets/0x26fb86579e371c7AEdc461b2DdEF0A8628c93d3B/info.json b/blockchains/ethereum/assets/0x26fb86579e371c7AEdc461b2DdEF0A8628c93d3B/info.json new file mode 100644 index 00000000..35ec3a1c --- /dev/null +++ b/blockchains/ethereum/assets/0x26fb86579e371c7AEdc461b2DdEF0A8628c93d3B/info.json @@ -0,0 +1,11 @@ +{ + "name": "BORA", + "symbol": "BORA", + "type": "ERC20", + "decimals": 18, + "description": "BORA describes itself as a decentralized entertainment platform that distributes digital content and provides incentives to participants. The project is a layer-2 platform with an ERC20-based dual token system.", + "website": "https://www.boraecosystem.com/", + "explorer": "https://etherscan.io/token/0x26fb86579e371c7AEdc461b2DdEF0A8628c93d3B", + "status": "active", + "id": "0x26fb86579e371c7AEdc461b2DdEF0A8628c93d3B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x26fb86579e371c7AEdc461b2DdEF0A8628c93d3B/logo.png b/blockchains/ethereum/assets/0x26fb86579e371c7AEdc461b2DdEF0A8628c93d3B/logo.png new file mode 100644 index 00000000..13968990 Binary files /dev/null and b/blockchains/ethereum/assets/0x26fb86579e371c7AEdc461b2DdEF0A8628c93d3B/logo.png differ diff --git a/blockchains/ethereum/assets/0x27054b13b1B798B345b591a4d22e6562d47eA75a/info.json b/blockchains/ethereum/assets/0x27054b13b1B798B345b591a4d22e6562d47eA75a/info.json new file mode 100644 index 00000000..7818adeb --- /dev/null +++ b/blockchains/ethereum/assets/0x27054b13b1B798B345b591a4d22e6562d47eA75a/info.json @@ -0,0 +1,25 @@ +{ + "name": "AirSwap", + "website": "https://www.airswap.io", + "description": "AirSwap powers peer-to-peer trading.", + "explorer": "https://etherscan.io/token/0x27054b13b1B798B345b591a4d22e6562d47eA75a", + "type": "ERC20", + "symbol": "AST", + "decimals": 4, + "status": "active", + "id": "0x27054b13b1B798B345b591a4d22e6562d47eA75a", + "links": [ + { + "name": "x", + "url": "https://x.com/airswap" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ecQbV7H" + }, + { + "name": "github", + "url": "https://github.com/airswap" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27054b13b1B798B345b591a4d22e6562d47eA75a/logo.png b/blockchains/ethereum/assets/0x27054b13b1B798B345b591a4d22e6562d47eA75a/logo.png new file mode 100644 index 00000000..17ed4442 Binary files /dev/null and b/blockchains/ethereum/assets/0x27054b13b1B798B345b591a4d22e6562d47eA75a/logo.png differ diff --git a/blockchains/ethereum/assets/0x27201232579491Ce9b116Ac6F37D354Cc723A2f3/info.json b/blockchains/ethereum/assets/0x27201232579491Ce9b116Ac6F37D354Cc723A2f3/info.json new file mode 100644 index 00000000..d6f0fb23 --- /dev/null +++ b/blockchains/ethereum/assets/0x27201232579491Ce9b116Ac6F37D354Cc723A2f3/info.json @@ -0,0 +1,11 @@ +{ + "name": "MESEFA", + "symbol": "SEFA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://mesefa.com/", + "explorer": "https://etherscan.io/token/0x27201232579491Ce9b116Ac6F37D354Cc723A2f3", + "status": "abandoned", + "id": "0x27201232579491Ce9b116Ac6F37D354Cc723A2f3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27201232579491Ce9b116Ac6F37D354Cc723A2f3/logo.png b/blockchains/ethereum/assets/0x27201232579491Ce9b116Ac6F37D354Cc723A2f3/logo.png new file mode 100644 index 00000000..0043190b Binary files /dev/null and b/blockchains/ethereum/assets/0x27201232579491Ce9b116Ac6F37D354Cc723A2f3/logo.png differ diff --git a/blockchains/ethereum/assets/0x272F97b7a56a387aE942350bBC7Df5700f8a4576/info.json b/blockchains/ethereum/assets/0x272F97b7a56a387aE942350bBC7Df5700f8a4576/info.json new file mode 100644 index 00000000..48468f85 --- /dev/null +++ b/blockchains/ethereum/assets/0x272F97b7a56a387aE942350bBC7Df5700f8a4576/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave BAL", + "symbol": "aBAL", + "type": "ERC20", + "decimals": 18, + "description": "Aave BAL is an interest bearing token pegged 1:1 to the underlying BAL deposited in Aave. aBAL accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x272F97b7a56a387aE942350bBC7Df5700f8a4576", + "status": "active", + "id": "0x272F97b7a56a387aE942350bBC7Df5700f8a4576" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x272F97b7a56a387aE942350bBC7Df5700f8a4576/logo.png b/blockchains/ethereum/assets/0x272F97b7a56a387aE942350bBC7Df5700f8a4576/logo.png new file mode 100644 index 00000000..994a8980 Binary files /dev/null and b/blockchains/ethereum/assets/0x272F97b7a56a387aE942350bBC7Df5700f8a4576/logo.png differ diff --git a/blockchains/ethereum/assets/0x2730d6FdC86C95a74253BefFaA8306B40feDecbb/info.json b/blockchains/ethereum/assets/0x2730d6FdC86C95a74253BefFaA8306B40feDecbb/info.json new file mode 100644 index 00000000..d0cd0a65 --- /dev/null +++ b/blockchains/ethereum/assets/0x2730d6FdC86C95a74253BefFaA8306B40feDecbb/info.json @@ -0,0 +1,11 @@ +{ + "name": "UNICORN", + "symbol": "UNI", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://unicorn.cm/", + "explorer": "https://etherscan.io/token/0x2730d6FdC86C95a74253BefFaA8306B40feDecbb", + "status": "abandoned", + "id": "0x2730d6FdC86C95a74253BefFaA8306B40feDecbb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2730d6FdC86C95a74253BefFaA8306B40feDecbb/logo.png b/blockchains/ethereum/assets/0x2730d6FdC86C95a74253BefFaA8306B40feDecbb/logo.png new file mode 100644 index 00000000..86eb988b Binary files /dev/null and b/blockchains/ethereum/assets/0x2730d6FdC86C95a74253BefFaA8306B40feDecbb/logo.png differ diff --git a/blockchains/ethereum/assets/0x27310BfBE3481a295b8bD9092477C446A56C706c/info.json b/blockchains/ethereum/assets/0x27310BfBE3481a295b8bD9092477C446A56C706c/info.json new file mode 100644 index 00000000..bfd7bd2a --- /dev/null +++ b/blockchains/ethereum/assets/0x27310BfBE3481a295b8bD9092477C446A56C706c/info.json @@ -0,0 +1,11 @@ +{ + "name": "BIXC", + "symbol": "BIXC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x27310BfBE3481a295b8bD9092477C446A56C706c", + "status": "abandoned", + "id": "0x27310BfBE3481a295b8bD9092477C446A56C706c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27310BfBE3481a295b8bD9092477C446A56C706c/logo.png b/blockchains/ethereum/assets/0x27310BfBE3481a295b8bD9092477C446A56C706c/logo.png new file mode 100644 index 00000000..0baad726 Binary files /dev/null and b/blockchains/ethereum/assets/0x27310BfBE3481a295b8bD9092477C446A56C706c/logo.png differ diff --git a/blockchains/ethereum/assets/0x27403b58ac43Be5a9F422962B4CDD5ffbDb60639/info.json b/blockchains/ethereum/assets/0x27403b58ac43Be5a9F422962B4CDD5ffbDb60639/info.json new file mode 100644 index 00000000..b629209d --- /dev/null +++ b/blockchains/ethereum/assets/0x27403b58ac43Be5a9F422962B4CDD5ffbDb60639/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bcnex Token", + "symbol": "BCNX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x27403b58ac43Be5a9F422962B4CDD5ffbDb60639", + "status": "abandoned", + "id": "0x27403b58ac43Be5a9F422962B4CDD5ffbDb60639" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27403b58ac43Be5a9F422962B4CDD5ffbDb60639/logo.png b/blockchains/ethereum/assets/0x27403b58ac43Be5a9F422962B4CDD5ffbDb60639/logo.png new file mode 100644 index 00000000..3ffd7040 Binary files /dev/null and b/blockchains/ethereum/assets/0x27403b58ac43Be5a9F422962B4CDD5ffbDb60639/logo.png differ diff --git a/blockchains/ethereum/assets/0x274c5236276422330060aA95cADEd86dA0a297c2/info.json b/blockchains/ethereum/assets/0x274c5236276422330060aA95cADEd86dA0a297c2/info.json new file mode 100644 index 00000000..f061edbb --- /dev/null +++ b/blockchains/ethereum/assets/0x274c5236276422330060aA95cADEd86dA0a297c2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Folgory Coin", + "symbol": "FLG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x274c5236276422330060aA95cADEd86dA0a297c2", + "status": "abandoned", + "id": "0x274c5236276422330060aA95cADEd86dA0a297c2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x274c5236276422330060aA95cADEd86dA0a297c2/logo.png b/blockchains/ethereum/assets/0x274c5236276422330060aA95cADEd86dA0a297c2/logo.png new file mode 100644 index 00000000..1aacfd7c Binary files /dev/null and b/blockchains/ethereum/assets/0x274c5236276422330060aA95cADEd86dA0a297c2/logo.png differ diff --git a/blockchains/ethereum/assets/0x275b69AA7c8C1d648A0557656bCe1C286e69a29d/info.json b/blockchains/ethereum/assets/0x275b69AA7c8C1d648A0557656bCe1C286e69a29d/info.json new file mode 100644 index 00000000..9135ea44 --- /dev/null +++ b/blockchains/ethereum/assets/0x275b69AA7c8C1d648A0557656bCe1C286e69a29d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Enumivo", + "symbol": "ENU", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://enumivo.org/", + "explorer": "https://etherscan.io/token/0x275b69AA7c8C1d648A0557656bCe1C286e69a29d", + "status": "abandoned", + "id": "0x275b69AA7c8C1d648A0557656bCe1C286e69a29d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x275b69AA7c8C1d648A0557656bCe1C286e69a29d/logo.png b/blockchains/ethereum/assets/0x275b69AA7c8C1d648A0557656bCe1C286e69a29d/logo.png new file mode 100644 index 00000000..b0ce9114 Binary files /dev/null and b/blockchains/ethereum/assets/0x275b69AA7c8C1d648A0557656bCe1C286e69a29d/logo.png differ diff --git a/blockchains/ethereum/assets/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A/info.json b/blockchains/ethereum/assets/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A/info.json new file mode 100644 index 00000000..a6f35092 --- /dev/null +++ b/blockchains/ethereum/assets/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A/info.json @@ -0,0 +1,28 @@ +{ + "name": "Monavale", + "website": "https://www.digitalax.xyz/", + "description": "DIGITALAX is a digital fashion NFT engine built on the Ethereum network. It aims to offer digital fashion NFT house for all gaming, VR and metaverses in the crypto ecosystem.", + "explorer": "https://etherscan.io/token/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A", + "type": "ERC20", + "symbol": "MONA", + "decimals": 18, + "status": "active", + "id": "0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A", + "tags": [ + "nft" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/DIGITALAX_" + }, + { + "name": "telegram", + "url": "https://t.me/digitalaxTG" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/monavale/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A/logo.png b/blockchains/ethereum/assets/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A/logo.png new file mode 100644 index 00000000..7cef12e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A/logo.png differ diff --git a/blockchains/ethereum/assets/0x27702a26126e0B3702af63Ee09aC4d1A084EF628/info.json b/blockchains/ethereum/assets/0x27702a26126e0B3702af63Ee09aC4d1A084EF628/info.json new file mode 100644 index 00000000..c2676916 --- /dev/null +++ b/blockchains/ethereum/assets/0x27702a26126e0B3702af63Ee09aC4d1A084EF628/info.json @@ -0,0 +1,11 @@ +{ + "name": "aleph.im ERC-20 v2", + "website": "https://aleph.im", + "description": "Aleph.im is a cross-blockchain layer-2 networkspecifically focused on decentralized applications and their related infrastructure (storage, computing servers, security).", + "explorer": "https://etherscan.io/token/0x27702a26126e0B3702af63Ee09aC4d1A084EF628", + "type": "ERC20", + "symbol": "ALEPH", + "decimals": 18, + "status": "active", + "id": "0x27702a26126e0B3702af63Ee09aC4d1A084EF628" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27702a26126e0B3702af63Ee09aC4d1A084EF628/logo.png b/blockchains/ethereum/assets/0x27702a26126e0B3702af63Ee09aC4d1A084EF628/logo.png new file mode 100644 index 00000000..d3b78ccd Binary files /dev/null and b/blockchains/ethereum/assets/0x27702a26126e0B3702af63Ee09aC4d1A084EF628/logo.png differ diff --git a/blockchains/ethereum/assets/0x2774B5771F607938D4e9197B3A5CA9f21110CF11/info.json b/blockchains/ethereum/assets/0x2774B5771F607938D4e9197B3A5CA9f21110CF11/info.json new file mode 100644 index 00000000..4de4b515 --- /dev/null +++ b/blockchains/ethereum/assets/0x2774B5771F607938D4e9197B3A5CA9f21110CF11/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nacreous", + "symbol": "NACRE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2774B5771F607938D4e9197B3A5CA9f21110CF11", + "status": "abandoned", + "id": "0x2774B5771F607938D4e9197B3A5CA9f21110CF11" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2774B5771F607938D4e9197B3A5CA9f21110CF11/logo.png b/blockchains/ethereum/assets/0x2774B5771F607938D4e9197B3A5CA9f21110CF11/logo.png new file mode 100755 index 00000000..b9b7b910 Binary files /dev/null and b/blockchains/ethereum/assets/0x2774B5771F607938D4e9197B3A5CA9f21110CF11/logo.png differ diff --git a/blockchains/ethereum/assets/0x2775F2A3C83bee1541D1d1BC308b3BB432B45151/info.json b/blockchains/ethereum/assets/0x2775F2A3C83bee1541D1d1BC308b3BB432B45151/info.json new file mode 100644 index 00000000..4f582e64 --- /dev/null +++ b/blockchains/ethereum/assets/0x2775F2A3C83bee1541D1d1BC308b3BB432B45151/info.json @@ -0,0 +1,11 @@ +{ + "name": "MEMBERSHIP", + "symbol": "PLANETAGRO.ORG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://planetagro.org/", + "explorer": "https://etherscan.io/token/0x2775F2A3C83bee1541D1d1BC308b3BB432B45151", + "status": "abandoned", + "id": "0x2775F2A3C83bee1541D1d1BC308b3BB432B45151" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2775F2A3C83bee1541D1d1BC308b3BB432B45151/logo.png b/blockchains/ethereum/assets/0x2775F2A3C83bee1541D1d1BC308b3BB432B45151/logo.png new file mode 100755 index 00000000..4e77b9cb Binary files /dev/null and b/blockchains/ethereum/assets/0x2775F2A3C83bee1541D1d1BC308b3BB432B45151/logo.png differ diff --git a/blockchains/ethereum/assets/0x2781246fe707bB15CeE3e5ea354e2154a2877B16/info.json b/blockchains/ethereum/assets/0x2781246fe707bB15CeE3e5ea354e2154a2877B16/info.json new file mode 100644 index 00000000..3f0c0ac5 --- /dev/null +++ b/blockchains/ethereum/assets/0x2781246fe707bB15CeE3e5ea354e2154a2877B16/info.json @@ -0,0 +1,11 @@ +{ + "name": "ELYSIA", + "symbol": "EL", + "type": "ERC20", + "decimals": 18, + "description": "Elysia connects real estate buyers and sellers around the world. At Elysia, anyone can buy and sell fractions of real estate properties and receive equal ownership interest. $EL is used for various transactions inside the platform and EL is used to pay fees will be burned on a quarterly basis.", + "website": "https://elysia.kr/", + "explorer": "https://etherscan.io/token/0x2781246fe707bB15CeE3e5ea354e2154a2877B16", + "status": "active", + "id": "0x2781246fe707bB15CeE3e5ea354e2154a2877B16" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2781246fe707bB15CeE3e5ea354e2154a2877B16/logo.png b/blockchains/ethereum/assets/0x2781246fe707bB15CeE3e5ea354e2154a2877B16/logo.png new file mode 100644 index 00000000..36f9e96e Binary files /dev/null and b/blockchains/ethereum/assets/0x2781246fe707bB15CeE3e5ea354e2154a2877B16/logo.png differ diff --git a/blockchains/ethereum/assets/0x27824111DD062Ca9062067B493Fbf512328928BA/info.json b/blockchains/ethereum/assets/0x27824111DD062Ca9062067B493Fbf512328928BA/info.json new file mode 100644 index 00000000..c7ce3695 --- /dev/null +++ b/blockchains/ethereum/assets/0x27824111DD062Ca9062067B493Fbf512328928BA/info.json @@ -0,0 +1,11 @@ +{ + "name": "UNI Token", + "website": "https://unitoken.co", + "description": "UNI Payment System, a globally accepted payment system based exclusively on cryptocurrencies and stablecoins.", + "explorer": "https://etherscan.io/token/0x27824111dd062ca9062067b493fbf512328928ba", + "type": "ERC20", + "symbol": "UXT", + "decimals": 8, + "status": "active", + "id": "0x27824111DD062Ca9062067B493Fbf512328928BA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27824111DD062Ca9062067B493Fbf512328928BA/logo.png b/blockchains/ethereum/assets/0x27824111DD062Ca9062067B493Fbf512328928BA/logo.png new file mode 100644 index 00000000..71ec1ca7 Binary files /dev/null and b/blockchains/ethereum/assets/0x27824111DD062Ca9062067B493Fbf512328928BA/logo.png differ diff --git a/blockchains/ethereum/assets/0x27894f59CbFeEdcCCb9644d91121e4070ffbc9Eb/info.json b/blockchains/ethereum/assets/0x27894f59CbFeEdcCCb9644d91121e4070ffbc9Eb/info.json new file mode 100644 index 00000000..abba343a --- /dev/null +++ b/blockchains/ethereum/assets/0x27894f59CbFeEdcCCb9644d91121e4070ffbc9Eb/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-28/30M28", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x27894f59CbFeEdcCCb9644d91121e4070ffbc9Eb", + "status": "abandoned", + "id": "0x27894f59CbFeEdcCCb9644d91121e4070ffbc9Eb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27894f59CbFeEdcCCb9644d91121e4070ffbc9Eb/logo.png b/blockchains/ethereum/assets/0x27894f59CbFeEdcCCb9644d91121e4070ffbc9Eb/logo.png new file mode 100644 index 00000000..8ea93e78 Binary files /dev/null and b/blockchains/ethereum/assets/0x27894f59CbFeEdcCCb9644d91121e4070ffbc9Eb/logo.png differ diff --git a/blockchains/ethereum/assets/0x278a83B64C3e3E1139f8E8A52D96360cA3c69A3D/info.json b/blockchains/ethereum/assets/0x278a83B64C3e3E1139f8E8A52D96360cA3c69A3D/info.json new file mode 100644 index 00000000..12152e55 --- /dev/null +++ b/blockchains/ethereum/assets/0x278a83B64C3e3E1139f8E8A52D96360cA3c69A3D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nexxo Tokens", + "symbol": "NEXXO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://nexxo.io/", + "explorer": "https://etherscan.io/token/0x278a83B64C3e3E1139f8E8A52D96360cA3c69A3D", + "status": "abandoned", + "id": "0x278a83B64C3e3E1139f8E8A52D96360cA3c69A3D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x278a83B64C3e3E1139f8E8A52D96360cA3c69A3D/logo.png b/blockchains/ethereum/assets/0x278a83B64C3e3E1139f8E8A52D96360cA3c69A3D/logo.png new file mode 100644 index 00000000..601e0221 Binary files /dev/null and b/blockchains/ethereum/assets/0x278a83B64C3e3E1139f8E8A52D96360cA3c69A3D/logo.png differ diff --git a/blockchains/ethereum/assets/0x278aE6f52CE72B0df6CBa451534b87846ACC9D65/info.json b/blockchains/ethereum/assets/0x278aE6f52CE72B0df6CBa451534b87846ACC9D65/info.json new file mode 100644 index 00000000..0b008d6e --- /dev/null +++ b/blockchains/ethereum/assets/0x278aE6f52CE72B0df6CBa451534b87846ACC9D65/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLACKPANTHER", + "symbol": "BPER", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x278aE6f52CE72B0df6CBa451534b87846ACC9D65", + "status": "abandoned", + "id": "0x278aE6f52CE72B0df6CBa451534b87846ACC9D65" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x278aE6f52CE72B0df6CBa451534b87846ACC9D65/logo.png b/blockchains/ethereum/assets/0x278aE6f52CE72B0df6CBa451534b87846ACC9D65/logo.png new file mode 100644 index 00000000..fe501eb5 Binary files /dev/null and b/blockchains/ethereum/assets/0x278aE6f52CE72B0df6CBa451534b87846ACC9D65/logo.png differ diff --git a/blockchains/ethereum/assets/0x279D1aAC77A927d3113184e48269A35903380948/info.json b/blockchains/ethereum/assets/0x279D1aAC77A927d3113184e48269A35903380948/info.json new file mode 100644 index 00000000..41d7d526 --- /dev/null +++ b/blockchains/ethereum/assets/0x279D1aAC77A927d3113184e48269A35903380948/info.json @@ -0,0 +1,11 @@ +{ + "name": "MGH MT E 345-VE06", + "symbol": "MGH", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x279D1aAC77A927d3113184e48269A35903380948", + "status": "abandoned", + "id": "0x279D1aAC77A927d3113184e48269A35903380948" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x279D1aAC77A927d3113184e48269A35903380948/logo.png b/blockchains/ethereum/assets/0x279D1aAC77A927d3113184e48269A35903380948/logo.png new file mode 100644 index 00000000..14f7139b Binary files /dev/null and b/blockchains/ethereum/assets/0x279D1aAC77A927d3113184e48269A35903380948/logo.png differ diff --git a/blockchains/ethereum/assets/0x27B2210D4a3eB7E7BCD600d12A0Fa0eE51065162/info.json b/blockchains/ethereum/assets/0x27B2210D4a3eB7E7BCD600d12A0Fa0eE51065162/info.json new file mode 100644 index 00000000..05676f0b --- /dev/null +++ b/blockchains/ethereum/assets/0x27B2210D4a3eB7E7BCD600d12A0Fa0eE51065162/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-23/30M53", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x27B2210D4a3eB7E7BCD600d12A0Fa0eE51065162", + "status": "abandoned", + "id": "0x27B2210D4a3eB7E7BCD600d12A0Fa0eE51065162" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27B2210D4a3eB7E7BCD600d12A0Fa0eE51065162/logo.png b/blockchains/ethereum/assets/0x27B2210D4a3eB7E7BCD600d12A0Fa0eE51065162/logo.png new file mode 100644 index 00000000..9626bcca Binary files /dev/null and b/blockchains/ethereum/assets/0x27B2210D4a3eB7E7BCD600d12A0Fa0eE51065162/logo.png differ diff --git a/blockchains/ethereum/assets/0x27BC53596Dc0EA71dE3c65C799d8E6c96C1dDA98/info.json b/blockchains/ethereum/assets/0x27BC53596Dc0EA71dE3c65C799d8E6c96C1dDA98/info.json new file mode 100644 index 00000000..bb848ab7 --- /dev/null +++ b/blockchains/ethereum/assets/0x27BC53596Dc0EA71dE3c65C799d8E6c96C1dDA98/info.json @@ -0,0 +1,11 @@ +{ + "name": "YunJiaMi", + "symbol": "YJM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x27BC53596Dc0EA71dE3c65C799d8E6c96C1dDA98", + "status": "spam", + "id": "0x27BC53596Dc0EA71dE3c65C799d8E6c96C1dDA98" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27BC53596Dc0EA71dE3c65C799d8E6c96C1dDA98/logo.png b/blockchains/ethereum/assets/0x27BC53596Dc0EA71dE3c65C799d8E6c96C1dDA98/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x27BC53596Dc0EA71dE3c65C799d8E6c96C1dDA98/logo.png differ diff --git a/blockchains/ethereum/assets/0x27C1573FE604C945dFd0bD237f7456C3B85E230D/info.json b/blockchains/ethereum/assets/0x27C1573FE604C945dFd0bD237f7456C3B85E230D/info.json new file mode 100644 index 00000000..ca6c5065 --- /dev/null +++ b/blockchains/ethereum/assets/0x27C1573FE604C945dFd0bD237f7456C3B85E230D/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg14000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x27C1573FE604C945dFd0bD237f7456C3B85E230D", + "status": "abandoned", + "id": "0x27C1573FE604C945dFd0bD237f7456C3B85E230D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27C1573FE604C945dFd0bD237f7456C3B85E230D/logo.png b/blockchains/ethereum/assets/0x27C1573FE604C945dFd0bD237f7456C3B85E230D/logo.png new file mode 100644 index 00000000..6fcfd6e5 Binary files /dev/null and b/blockchains/ethereum/assets/0x27C1573FE604C945dFd0bD237f7456C3B85E230D/logo.png differ diff --git a/blockchains/ethereum/assets/0x27C70Cd1946795B66be9d954418546998b546634/info.json b/blockchains/ethereum/assets/0x27C70Cd1946795B66be9d954418546998b546634/info.json new file mode 100644 index 00000000..032800dc --- /dev/null +++ b/blockchains/ethereum/assets/0x27C70Cd1946795B66be9d954418546998b546634/info.json @@ -0,0 +1,14 @@ +{ + "name": "DOGE KILLER", + "symbol": "LEASH", + "type": "ERC20", + "decimals": 18, + "website": "https://www.shibatoken.com", + "description": "The second token incentivized on ShibaSwap offers special rewards for those who provide liquidity.", + "explorer": "https://etherscan.io/token/0x27c70cd1946795b66be9d954418546998b546634", + "status": "active", + "id": "0x27C70Cd1946795B66be9d954418546998b546634", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27C70Cd1946795B66be9d954418546998b546634/logo.png b/blockchains/ethereum/assets/0x27C70Cd1946795B66be9d954418546998b546634/logo.png new file mode 100644 index 00000000..cf52a423 Binary files /dev/null and b/blockchains/ethereum/assets/0x27C70Cd1946795B66be9d954418546998b546634/logo.png differ diff --git a/blockchains/ethereum/assets/0x27C743954bCe1Bfaef8bcbD685527531001D88D7/info.json b/blockchains/ethereum/assets/0x27C743954bCe1Bfaef8bcbD685527531001D88D7/info.json new file mode 100644 index 00000000..3fa9b7e1 --- /dev/null +++ b/blockchains/ethereum/assets/0x27C743954bCe1Bfaef8bcbD685527531001D88D7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockium Token", + "symbol": "BOK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x27C743954bCe1Bfaef8bcbD685527531001D88D7", + "status": "abandoned", + "id": "0x27C743954bCe1Bfaef8bcbD685527531001D88D7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27C743954bCe1Bfaef8bcbD685527531001D88D7/logo.png b/blockchains/ethereum/assets/0x27C743954bCe1Bfaef8bcbD685527531001D88D7/logo.png new file mode 100644 index 00000000..a3cd6742 Binary files /dev/null and b/blockchains/ethereum/assets/0x27C743954bCe1Bfaef8bcbD685527531001D88D7/logo.png differ diff --git a/blockchains/ethereum/assets/0x27C891c210aEc85267c2Eb5Fd3aD2E7c5758a1dC/info.json b/blockchains/ethereum/assets/0x27C891c210aEc85267c2Eb5Fd3aD2E7c5758a1dC/info.json new file mode 100644 index 00000000..21f0d888 --- /dev/null +++ b/blockchains/ethereum/assets/0x27C891c210aEc85267c2Eb5Fd3aD2E7c5758a1dC/info.json @@ -0,0 +1,17 @@ +{ + "name": "Terawatt LED Token", + "website": "https://terawattled.com", + "description": "Terawatt is a patent-pending, renewable energy blockchain startup, with a strong focus on monetization and driving global L.E.D. adoption", + "explorer": "https://etherscan.io/token/0x27C891c210aEc85267c2Eb5Fd3aD2E7c5758a1dC", + "type": "ERC20", + "symbol": "LED", + "decimals": 0, + "status": "active", + "id": "0x27C891c210aEc85267c2Eb5Fd3aD2E7c5758a1dC", + "links": [ + { + "name": "x", + "url": "https://x.com/terawatt_led" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27C891c210aEc85267c2Eb5Fd3aD2E7c5758a1dC/logo.png b/blockchains/ethereum/assets/0x27C891c210aEc85267c2Eb5Fd3aD2E7c5758a1dC/logo.png new file mode 100644 index 00000000..d1602ff4 Binary files /dev/null and b/blockchains/ethereum/assets/0x27C891c210aEc85267c2Eb5Fd3aD2E7c5758a1dC/logo.png differ diff --git a/blockchains/ethereum/assets/0x27DC43004F0FE65030be5ef809E843e72035c0F1/info.json b/blockchains/ethereum/assets/0x27DC43004F0FE65030be5ef809E843e72035c0F1/info.json new file mode 100644 index 00000000..4a441b5b --- /dev/null +++ b/blockchains/ethereum/assets/0x27DC43004F0FE65030be5ef809E843e72035c0F1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Quantum Coin", + "symbol": "COIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x27DC43004F0FE65030be5ef809E843e72035c0F1", + "status": "abandoned", + "id": "0x27DC43004F0FE65030be5ef809E843e72035c0F1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27DC43004F0FE65030be5ef809E843e72035c0F1/logo.png b/blockchains/ethereum/assets/0x27DC43004F0FE65030be5ef809E843e72035c0F1/logo.png new file mode 100644 index 00000000..464cab6d Binary files /dev/null and b/blockchains/ethereum/assets/0x27DC43004F0FE65030be5ef809E843e72035c0F1/logo.png differ diff --git a/blockchains/ethereum/assets/0x27Dce1eC4d3f72C3E457Cc50354f1F975dDEf488/info.json b/blockchains/ethereum/assets/0x27Dce1eC4d3f72C3E457Cc50354f1F975dDEf488/info.json new file mode 100644 index 00000000..eb56834b --- /dev/null +++ b/blockchains/ethereum/assets/0x27Dce1eC4d3f72C3E457Cc50354f1F975dDEf488/info.json @@ -0,0 +1,11 @@ +{ + "name": "AirToken", + "symbol": "AIR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x27Dce1eC4d3f72C3E457Cc50354f1F975dDEf488", + "status": "abandoned", + "id": "0x27Dce1eC4d3f72C3E457Cc50354f1F975dDEf488" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27Dce1eC4d3f72C3E457Cc50354f1F975dDEf488/logo.png b/blockchains/ethereum/assets/0x27Dce1eC4d3f72C3E457Cc50354f1F975dDEf488/logo.png new file mode 100755 index 00000000..34580c75 Binary files /dev/null and b/blockchains/ethereum/assets/0x27Dce1eC4d3f72C3E457Cc50354f1F975dDEf488/logo.png differ diff --git a/blockchains/ethereum/assets/0x27aebC51AF422525461b9DdBE74e4A9a5995D015/info.json b/blockchains/ethereum/assets/0x27aebC51AF422525461b9DdBE74e4A9a5995D015/info.json new file mode 100644 index 00000000..1de4d104 --- /dev/null +++ b/blockchains/ethereum/assets/0x27aebC51AF422525461b9DdBE74e4A9a5995D015/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lianqu", + "symbol": "LNQ", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x27aebC51AF422525461b9DdBE74e4A9a5995D015", + "status": "abandoned", + "id": "0x27aebC51AF422525461b9DdBE74e4A9a5995D015" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27aebC51AF422525461b9DdBE74e4A9a5995D015/logo.png b/blockchains/ethereum/assets/0x27aebC51AF422525461b9DdBE74e4A9a5995D015/logo.png new file mode 100755 index 00000000..ef4b1ac4 Binary files /dev/null and b/blockchains/ethereum/assets/0x27aebC51AF422525461b9DdBE74e4A9a5995D015/logo.png differ diff --git a/blockchains/ethereum/assets/0x27f46987917180723E0473755621097F5a41c4A1/info.json b/blockchains/ethereum/assets/0x27f46987917180723E0473755621097F5a41c4A1/info.json new file mode 100644 index 00000000..0ea3e8f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x27f46987917180723E0473755621097F5a41c4A1/info.json @@ -0,0 +1,11 @@ +{ + "name": "EV Dollar", + "symbol": "EUSD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x27f46987917180723E0473755621097F5a41c4A1", + "status": "abandoned", + "id": "0x27f46987917180723E0473755621097F5a41c4A1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27f46987917180723E0473755621097F5a41c4A1/logo.png b/blockchains/ethereum/assets/0x27f46987917180723E0473755621097F5a41c4A1/logo.png new file mode 100644 index 00000000..c2126584 Binary files /dev/null and b/blockchains/ethereum/assets/0x27f46987917180723E0473755621097F5a41c4A1/logo.png differ diff --git a/blockchains/ethereum/assets/0x27f610BF36ecA0939093343ac28b1534a721DBB4/info.json b/blockchains/ethereum/assets/0x27f610BF36ecA0939093343ac28b1534a721DBB4/info.json new file mode 100644 index 00000000..89c4d2a1 --- /dev/null +++ b/blockchains/ethereum/assets/0x27f610BF36ecA0939093343ac28b1534a721DBB4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wand Token", + "symbol": "WAND", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.wandx.co", + "explorer": "https://etherscan.io/token/0x27f610BF36ecA0939093343ac28b1534a721DBB4", + "status": "active", + "id": "0x27f610BF36ecA0939093343ac28b1534a721DBB4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27f610BF36ecA0939093343ac28b1534a721DBB4/logo.png b/blockchains/ethereum/assets/0x27f610BF36ecA0939093343ac28b1534a721DBB4/logo.png new file mode 100644 index 00000000..4ba970ed Binary files /dev/null and b/blockchains/ethereum/assets/0x27f610BF36ecA0939093343ac28b1534a721DBB4/logo.png differ diff --git a/blockchains/ethereum/assets/0x27f706edde3aD952EF647Dd67E24e38CD0803DD6/info.json b/blockchains/ethereum/assets/0x27f706edde3aD952EF647Dd67E24e38CD0803DD6/info.json new file mode 100644 index 00000000..5dde5bbc --- /dev/null +++ b/blockchains/ethereum/assets/0x27f706edde3aD952EF647Dd67E24e38CD0803DD6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Useless Ethereum Token", + "symbol": "UET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://uetoken.com/", + "explorer": "https://etherscan.io/token/0x27f706edde3aD952EF647Dd67E24e38CD0803DD6", + "status": "abandoned", + "id": "0x27f706edde3aD952EF647Dd67E24e38CD0803DD6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27f706edde3aD952EF647Dd67E24e38CD0803DD6/logo.png b/blockchains/ethereum/assets/0x27f706edde3aD952EF647Dd67E24e38CD0803DD6/logo.png new file mode 100644 index 00000000..741f2b76 Binary files /dev/null and b/blockchains/ethereum/assets/0x27f706edde3aD952EF647Dd67E24e38CD0803DD6/logo.png differ diff --git a/blockchains/ethereum/assets/0x27fD686Db10E0aE047fe8FE1DE9830C0e0dC3CFA/info.json b/blockchains/ethereum/assets/0x27fD686Db10E0aE047fe8FE1DE9830C0e0dC3CFA/info.json new file mode 100644 index 00000000..eb811743 --- /dev/null +++ b/blockchains/ethereum/assets/0x27fD686Db10E0aE047fe8FE1DE9830C0e0dC3CFA/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCOTT", + "symbol": "SCOTT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x27fD686Db10E0aE047fe8FE1DE9830C0e0dC3CFA", + "status": "abandoned", + "id": "0x27fD686Db10E0aE047fe8FE1DE9830C0e0dC3CFA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x27fD686Db10E0aE047fe8FE1DE9830C0e0dC3CFA/logo.png b/blockchains/ethereum/assets/0x27fD686Db10E0aE047fe8FE1DE9830C0e0dC3CFA/logo.png new file mode 100644 index 00000000..56b226ea Binary files /dev/null and b/blockchains/ethereum/assets/0x27fD686Db10E0aE047fe8FE1DE9830C0e0dC3CFA/logo.png differ diff --git a/blockchains/ethereum/assets/0x280DAACbD812725BAf46E273B84426B1E10aB410/info.json b/blockchains/ethereum/assets/0x280DAACbD812725BAf46E273B84426B1E10aB410/info.json new file mode 100644 index 00000000..04395837 --- /dev/null +++ b/blockchains/ethereum/assets/0x280DAACbD812725BAf46E273B84426B1E10aB410/info.json @@ -0,0 +1,11 @@ +{ + "name": "CBEX TOKEN", + "symbol": "CBEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.cbex.exchange/", + "explorer": "https://etherscan.io/token/0x280DAACbD812725BAf46E273B84426B1E10aB410", + "status": "abandoned", + "id": "0x280DAACbD812725BAf46E273B84426B1E10aB410" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x280DAACbD812725BAf46E273B84426B1E10aB410/logo.png b/blockchains/ethereum/assets/0x280DAACbD812725BAf46E273B84426B1E10aB410/logo.png new file mode 100644 index 00000000..4ef588af Binary files /dev/null and b/blockchains/ethereum/assets/0x280DAACbD812725BAf46E273B84426B1E10aB410/logo.png differ diff --git a/blockchains/ethereum/assets/0x280f76a218DDC8d56B490B5835e251E55a2e8F8d/info.json b/blockchains/ethereum/assets/0x280f76a218DDC8d56B490B5835e251E55a2e8F8d/info.json new file mode 100644 index 00000000..e1791cc1 --- /dev/null +++ b/blockchains/ethereum/assets/0x280f76a218DDC8d56B490B5835e251E55a2e8F8d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Strike UNI", + "symbol": "sUNI", + "type": "ERC20", + "decimals": 18, + "description": "Strike Finance collateral cryptocurrency", + "explorer": "https://etherscan.io/token/0x280f76a218DDC8d56B490B5835e251E55a2e8F8d", + "status": "active", + "id": "0x280f76a218DDC8d56B490B5835e251E55a2e8F8d", + "website": "https://strike.org" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x280f76a218DDC8d56B490B5835e251E55a2e8F8d/logo.png b/blockchains/ethereum/assets/0x280f76a218DDC8d56B490B5835e251E55a2e8F8d/logo.png new file mode 100644 index 00000000..4bf716d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x280f76a218DDC8d56B490B5835e251E55a2e8F8d/logo.png differ diff --git a/blockchains/ethereum/assets/0x28151F5888833D3d767C4d6945a0Ee50D1B193E3/info.json b/blockchains/ethereum/assets/0x28151F5888833D3d767C4d6945a0Ee50D1B193E3/info.json new file mode 100644 index 00000000..ece9d6ed --- /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 00000000..455582b2 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 00000000..71903d26 --- /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 00000000..eab236a6 Binary files /dev/null and b/blockchains/ethereum/assets/0x2816169A49953C548BfEb3948dCF05c4A0E4657D/logo.png differ diff --git a/blockchains/ethereum/assets/0x2822f6D1B2f41F93f33d937bc7d84A8Dfa4f4C21/info.json b/blockchains/ethereum/assets/0x2822f6D1B2f41F93f33d937bc7d84A8Dfa4f4C21/info.json new file mode 100644 index 00000000..6c1e37e5 --- /dev/null +++ b/blockchains/ethereum/assets/0x2822f6D1B2f41F93f33d937bc7d84A8Dfa4f4C21/info.json @@ -0,0 +1,11 @@ +{ + "name": "QQQ Token", + "symbol": "QQQ", + "type": "ERC20", + "decimals": 18, + "description": "We provide decentralized CDN service, the decentralized version of GCP, AWS Cloud Service.", + "website": "https://poseidon.network/", + "explorer": "https://etherscan.io/token/0x2822f6D1B2f41F93f33d937bc7d84A8Dfa4f4C21", + "status": "active", + "id": "0x2822f6D1B2f41F93f33d937bc7d84A8Dfa4f4C21" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2822f6D1B2f41F93f33d937bc7d84A8Dfa4f4C21/logo.png b/blockchains/ethereum/assets/0x2822f6D1B2f41F93f33d937bc7d84A8Dfa4f4C21/logo.png new file mode 100644 index 00000000..6113a352 Binary files /dev/null and b/blockchains/ethereum/assets/0x2822f6D1B2f41F93f33d937bc7d84A8Dfa4f4C21/logo.png differ diff --git a/blockchains/ethereum/assets/0x283121b94F2Ab0a9a0E0Ef72Cd24fe8E9d3C65f0/info.json b/blockchains/ethereum/assets/0x283121b94F2Ab0a9a0E0Ef72Cd24fe8E9d3C65f0/info.json new file mode 100644 index 00000000..39224892 --- /dev/null +++ b/blockchains/ethereum/assets/0x283121b94F2Ab0a9a0E0Ef72Cd24fe8E9d3C65f0/info.json @@ -0,0 +1,11 @@ +{ + "name": "JusticeCoin", + "symbol": "JUSTICE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x283121b94F2Ab0a9a0E0Ef72Cd24fe8E9d3C65f0", + "status": "abandoned", + "id": "0x283121b94F2Ab0a9a0E0Ef72Cd24fe8E9d3C65f0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x283121b94F2Ab0a9a0E0Ef72Cd24fe8E9d3C65f0/logo.png b/blockchains/ethereum/assets/0x283121b94F2Ab0a9a0E0Ef72Cd24fe8E9d3C65f0/logo.png new file mode 100644 index 00000000..dbaa7351 Binary files /dev/null and b/blockchains/ethereum/assets/0x283121b94F2Ab0a9a0E0Ef72Cd24fe8E9d3C65f0/logo.png differ diff --git a/blockchains/ethereum/assets/0x28317D822b6AC5A9f5B374536Eb157E3f424c8D0/info.json b/blockchains/ethereum/assets/0x28317D822b6AC5A9f5B374536Eb157E3f424c8D0/info.json new file mode 100644 index 00000000..5173a30f --- /dev/null +++ b/blockchains/ethereum/assets/0x28317D822b6AC5A9f5B374536Eb157E3f424c8D0/info.json @@ -0,0 +1,11 @@ +{ + "name": "BILLIONS", + "symbol": "BLT1", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x28317D822b6AC5A9f5B374536Eb157E3f424c8D0", + "status": "abandoned", + "id": "0x28317D822b6AC5A9f5B374536Eb157E3f424c8D0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28317D822b6AC5A9f5B374536Eb157E3f424c8D0/logo.png b/blockchains/ethereum/assets/0x28317D822b6AC5A9f5B374536Eb157E3f424c8D0/logo.png new file mode 100644 index 00000000..017e564e Binary files /dev/null and b/blockchains/ethereum/assets/0x28317D822b6AC5A9f5B374536Eb157E3f424c8D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x2832461dc883D4a376025CF1F4FeAA80DD1C68d8/info.json b/blockchains/ethereum/assets/0x2832461dc883D4a376025CF1F4FeAA80DD1C68d8/info.json new file mode 100644 index 00000000..c53d369f --- /dev/null +++ b/blockchains/ethereum/assets/0x2832461dc883D4a376025CF1F4FeAA80DD1C68d8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digital Rand", + "symbol": "ZAR", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2832461dc883D4a376025CF1F4FeAA80DD1C68d8", + "status": "abandoned", + "id": "0x2832461dc883D4a376025CF1F4FeAA80DD1C68d8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2832461dc883D4a376025CF1F4FeAA80DD1C68d8/logo.png b/blockchains/ethereum/assets/0x2832461dc883D4a376025CF1F4FeAA80DD1C68d8/logo.png new file mode 100644 index 00000000..a701e6d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x2832461dc883D4a376025CF1F4FeAA80DD1C68d8/logo.png differ diff --git a/blockchains/ethereum/assets/0x283669123bd83dA2536bB534e20512101c18E5D8/info.json b/blockchains/ethereum/assets/0x283669123bd83dA2536bB534e20512101c18E5D8/info.json new file mode 100644 index 00000000..0c15d2f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x283669123bd83dA2536bB534e20512101c18E5D8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitpayer Token", + "symbol": "BPT", + "type": "ERC20", + "decimals": 9, + "description": "Bitpayer is a decentralized trading platform that lets you trade Ethereum and Ethereum-based tokens directly with other users. It is the first digital assets decentralised exchange that shares profits with all users.", + "website": "https://bitpayer.io/", + "explorer": "https://etherscan.io/token/0x283669123bd83dA2536bB534e20512101c18E5D8", + "status": "active", + "id": "0x283669123bd83dA2536bB534e20512101c18E5D8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x283669123bd83dA2536bB534e20512101c18E5D8/logo.png b/blockchains/ethereum/assets/0x283669123bd83dA2536bB534e20512101c18E5D8/logo.png new file mode 100644 index 00000000..449b7c65 Binary files /dev/null and b/blockchains/ethereum/assets/0x283669123bd83dA2536bB534e20512101c18E5D8/logo.png differ diff --git a/blockchains/ethereum/assets/0x2838490518933215Eba9F90ecb27A9AbfF94B145/info.json b/blockchains/ethereum/assets/0x2838490518933215Eba9F90ecb27A9AbfF94B145/info.json new file mode 100644 index 00000000..438e3f70 --- /dev/null +++ b/blockchains/ethereum/assets/0x2838490518933215Eba9F90ecb27A9AbfF94B145/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ashurstcoin", + "symbol": "ASH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2838490518933215Eba9F90ecb27A9AbfF94B145", + "status": "abandoned", + "id": "0x2838490518933215Eba9F90ecb27A9AbfF94B145" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2838490518933215Eba9F90ecb27A9AbfF94B145/logo.png b/blockchains/ethereum/assets/0x2838490518933215Eba9F90ecb27A9AbfF94B145/logo.png new file mode 100755 index 00000000..36ed0781 Binary files /dev/null and b/blockchains/ethereum/assets/0x2838490518933215Eba9F90ecb27A9AbfF94B145/logo.png differ diff --git a/blockchains/ethereum/assets/0x284D4657f87B064d8Ce33CdF697f208e839d5BC7/info.json b/blockchains/ethereum/assets/0x284D4657f87B064d8Ce33CdF697f208e839d5BC7/info.json new file mode 100644 index 00000000..ce8eeafe --- /dev/null +++ b/blockchains/ethereum/assets/0x284D4657f87B064d8Ce33CdF697f208e839d5BC7/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg12000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x284D4657f87B064d8Ce33CdF697f208e839d5BC7", + "status": "abandoned", + "id": "0x284D4657f87B064d8Ce33CdF697f208e839d5BC7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x284D4657f87B064d8Ce33CdF697f208e839d5BC7/logo.png b/blockchains/ethereum/assets/0x284D4657f87B064d8Ce33CdF697f208e839d5BC7/logo.png new file mode 100644 index 00000000..95e621cd Binary files /dev/null and b/blockchains/ethereum/assets/0x284D4657f87B064d8Ce33CdF697f208e839d5BC7/logo.png differ diff --git a/blockchains/ethereum/assets/0x285441F9Ada849884b8B63e321E9Fe95b900a81E/info.json b/blockchains/ethereum/assets/0x285441F9Ada849884b8B63e321E9Fe95b900a81E/info.json new file mode 100644 index 00000000..b0e17028 --- /dev/null +++ b/blockchains/ethereum/assets/0x285441F9Ada849884b8B63e321E9Fe95b900a81E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planetagro-Exchange", + "symbol": "TOMATO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x285441F9Ada849884b8B63e321E9Fe95b900a81E", + "status": "abandoned", + "id": "0x285441F9Ada849884b8B63e321E9Fe95b900a81E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x285441F9Ada849884b8B63e321E9Fe95b900a81E/logo.png b/blockchains/ethereum/assets/0x285441F9Ada849884b8B63e321E9Fe95b900a81E/logo.png new file mode 100755 index 00000000..b3eaab16 Binary files /dev/null and b/blockchains/ethereum/assets/0x285441F9Ada849884b8B63e321E9Fe95b900a81E/logo.png differ diff --git a/blockchains/ethereum/assets/0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad/info.json b/blockchains/ethereum/assets/0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad/info.json new file mode 100644 index 00000000..5b768194 --- /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 00000000..c91ace87 Binary files /dev/null and b/blockchains/ethereum/assets/0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad/logo.png differ diff --git a/blockchains/ethereum/assets/0x28577A6d31559bd265Ce3ADB62d0458550F7b8a7/info.json b/blockchains/ethereum/assets/0x28577A6d31559bd265Ce3ADB62d0458550F7b8a7/info.json new file mode 100644 index 00000000..e4be2200 --- /dev/null +++ b/blockchains/ethereum/assets/0x28577A6d31559bd265Ce3ADB62d0458550F7b8a7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crypto Crash Course", + "symbol": "CCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x28577A6d31559bd265Ce3ADB62d0458550F7b8a7", + "status": "abandoned", + "id": "0x28577A6d31559bd265Ce3ADB62d0458550F7b8a7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28577A6d31559bd265Ce3ADB62d0458550F7b8a7/logo.png b/blockchains/ethereum/assets/0x28577A6d31559bd265Ce3ADB62d0458550F7b8a7/logo.png new file mode 100755 index 00000000..1b8d17f2 Binary files /dev/null and b/blockchains/ethereum/assets/0x28577A6d31559bd265Ce3ADB62d0458550F7b8a7/logo.png differ diff --git a/blockchains/ethereum/assets/0x2859021eE7F2Cb10162E67F33Af2D22764B31aFf/info.json b/blockchains/ethereum/assets/0x2859021eE7F2Cb10162E67F33Af2D22764B31aFf/info.json new file mode 100644 index 00000000..65a923f3 --- /dev/null +++ b/blockchains/ethereum/assets/0x2859021eE7F2Cb10162E67F33Af2D22764B31aFf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Silent Notary Token", + "symbol": "SNTR", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://silentnotary.com/", + "explorer": "https://etherscan.io/token/0x2859021eE7F2Cb10162E67F33Af2D22764B31aFf", + "status": "abandoned", + "id": "0x2859021eE7F2Cb10162E67F33Af2D22764B31aFf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2859021eE7F2Cb10162E67F33Af2D22764B31aFf/logo.png b/blockchains/ethereum/assets/0x2859021eE7F2Cb10162E67F33Af2D22764B31aFf/logo.png new file mode 100644 index 00000000..44647a79 Binary files /dev/null and b/blockchains/ethereum/assets/0x2859021eE7F2Cb10162E67F33Af2D22764B31aFf/logo.png differ diff --git a/blockchains/ethereum/assets/0x286708f069225905194673755F12359e6afF6FE1/info.json b/blockchains/ethereum/assets/0x286708f069225905194673755F12359e6afF6FE1/info.json new file mode 100644 index 00000000..784cab7d --- /dev/null +++ b/blockchains/ethereum/assets/0x286708f069225905194673755F12359e6afF6FE1/info.json @@ -0,0 +1,11 @@ +{ + "name": "STACS", + "symbol": "STACS", + "type": "ERC20", + "decimals": 18, + "description": "GATE tokens will have a number of utilities within the GSX Group’s digital securities markets strategy, including but not limited to, on-chain fees, staking, and rewards.", + "website": "https://gatetoken.io/", + "explorer": "https://etherscan.io/token/0x286708f069225905194673755F12359e6afF6FE1", + "status": "active", + "id": "0x286708f069225905194673755F12359e6afF6FE1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x286708f069225905194673755F12359e6afF6FE1/logo.png b/blockchains/ethereum/assets/0x286708f069225905194673755F12359e6afF6FE1/logo.png new file mode 100644 index 00000000..0b77d47b Binary files /dev/null and b/blockchains/ethereum/assets/0x286708f069225905194673755F12359e6afF6FE1/logo.png differ diff --git a/blockchains/ethereum/assets/0x28673D7A6DF30c99B705EDcA0046DE738431edE1/info.json b/blockchains/ethereum/assets/0x28673D7A6DF30c99B705EDcA0046DE738431edE1/info.json new file mode 100644 index 00000000..43bfeff8 --- /dev/null +++ b/blockchains/ethereum/assets/0x28673D7A6DF30c99B705EDcA0046DE738431edE1/info.json @@ -0,0 +1,11 @@ +{ + "name": "VTrust", + "symbol": "VTR", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x28673D7A6DF30c99B705EDcA0046DE738431edE1", + "status": "abandoned", + "id": "0x28673D7A6DF30c99B705EDcA0046DE738431edE1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28673D7A6DF30c99B705EDcA0046DE738431edE1/logo.png b/blockchains/ethereum/assets/0x28673D7A6DF30c99B705EDcA0046DE738431edE1/logo.png new file mode 100644 index 00000000..062f40f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x28673D7A6DF30c99B705EDcA0046DE738431edE1/logo.png differ diff --git a/blockchains/ethereum/assets/0x286BDA1413a2Df81731D4930ce2F862a35A609fE/info.json b/blockchains/ethereum/assets/0x286BDA1413a2Df81731D4930ce2F862a35A609fE/info.json new file mode 100644 index 00000000..c9e08c1e --- /dev/null +++ b/blockchains/ethereum/assets/0x286BDA1413a2Df81731D4930ce2F862a35A609fE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tael", + "symbol": "WaBi", + "type": "ERC20", + "decimals": 18, + "description": "WABI enables fair value transfer between consumers and brands", + "website": "https://wabi.io/", + "explorer": "https://etherscan.io/token/0x286BDA1413a2Df81731D4930ce2F862a35A609fE", + "status": "active", + "id": "0x286BDA1413a2Df81731D4930ce2F862a35A609fE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x286BDA1413a2Df81731D4930ce2F862a35A609fE/logo.png b/blockchains/ethereum/assets/0x286BDA1413a2Df81731D4930ce2F862a35A609fE/logo.png new file mode 100644 index 00000000..5b2a7566 Binary files /dev/null and b/blockchains/ethereum/assets/0x286BDA1413a2Df81731D4930ce2F862a35A609fE/logo.png differ diff --git a/blockchains/ethereum/assets/0x288c8ff967859B119B14768c9da5B5656504E4F3/info.json b/blockchains/ethereum/assets/0x288c8ff967859B119B14768c9da5B5656504E4F3/info.json new file mode 100644 index 00000000..022a3ba6 --- /dev/null +++ b/blockchains/ethereum/assets/0x288c8ff967859B119B14768c9da5B5656504E4F3/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C560242", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x288c8ff967859B119B14768c9da5B5656504E4F3", + "status": "abandoned", + "id": "0x288c8ff967859B119B14768c9da5B5656504E4F3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x288c8ff967859B119B14768c9da5B5656504E4F3/logo.png b/blockchains/ethereum/assets/0x288c8ff967859B119B14768c9da5B5656504E4F3/logo.png new file mode 100644 index 00000000..2e781966 Binary files /dev/null and b/blockchains/ethereum/assets/0x288c8ff967859B119B14768c9da5B5656504E4F3/logo.png differ diff --git a/blockchains/ethereum/assets/0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6/info.json b/blockchains/ethereum/assets/0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6/info.json new file mode 100644 index 00000000..db04c9bd --- /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 00000000..31a2f467 Binary files /dev/null and b/blockchains/ethereum/assets/0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6/logo.png differ diff --git a/blockchains/ethereum/assets/0x28Ed591C567Ab57aC3a885DF7770eBfd82D8Cd3e/info.json b/blockchains/ethereum/assets/0x28Ed591C567Ab57aC3a885DF7770eBfd82D8Cd3e/info.json new file mode 100644 index 00000000..68250686 --- /dev/null +++ b/blockchains/ethereum/assets/0x28Ed591C567Ab57aC3a885DF7770eBfd82D8Cd3e/info.json @@ -0,0 +1,11 @@ +{ + "name": "CFCB", + "symbol": "CFCB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x28Ed591C567Ab57aC3a885DF7770eBfd82D8Cd3e", + "status": "abandoned", + "id": "0x28Ed591C567Ab57aC3a885DF7770eBfd82D8Cd3e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28Ed591C567Ab57aC3a885DF7770eBfd82D8Cd3e/logo.png b/blockchains/ethereum/assets/0x28Ed591C567Ab57aC3a885DF7770eBfd82D8Cd3e/logo.png new file mode 100644 index 00000000..24b04cb3 Binary files /dev/null and b/blockchains/ethereum/assets/0x28Ed591C567Ab57aC3a885DF7770eBfd82D8Cd3e/logo.png differ diff --git a/blockchains/ethereum/assets/0x28FB6531723EE54B1073F7f2beB7f2E3C74503Bc/info.json b/blockchains/ethereum/assets/0x28FB6531723EE54B1073F7f2beB7f2E3C74503Bc/info.json new file mode 100644 index 00000000..211dd9f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x28FB6531723EE54B1073F7f2beB7f2E3C74503Bc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Airline & Life Networking", + "symbol": "ALLN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x28FB6531723EE54B1073F7f2beB7f2E3C74503Bc", + "status": "abandoned", + "id": "0x28FB6531723EE54B1073F7f2beB7f2E3C74503Bc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28FB6531723EE54B1073F7f2beB7f2E3C74503Bc/logo.png b/blockchains/ethereum/assets/0x28FB6531723EE54B1073F7f2beB7f2E3C74503Bc/logo.png new file mode 100644 index 00000000..34482346 Binary files /dev/null and b/blockchains/ethereum/assets/0x28FB6531723EE54B1073F7f2beB7f2E3C74503Bc/logo.png differ diff --git a/blockchains/ethereum/assets/0x28a8aE348bbdc392497F9745832B5E0f0bd664F4/info.json b/blockchains/ethereum/assets/0x28a8aE348bbdc392497F9745832B5E0f0bd664F4/info.json new file mode 100644 index 00000000..2173e4c4 --- /dev/null +++ b/blockchains/ethereum/assets/0x28a8aE348bbdc392497F9745832B5E0f0bd664F4/info.json @@ -0,0 +1,11 @@ +{ + "name": "UBSTR", + "symbol": "UBS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x28a8aE348bbdc392497F9745832B5E0f0bd664F4", + "status": "abandoned", + "id": "0x28a8aE348bbdc392497F9745832B5E0f0bd664F4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28a8aE348bbdc392497F9745832B5E0f0bd664F4/logo.png b/blockchains/ethereum/assets/0x28a8aE348bbdc392497F9745832B5E0f0bd664F4/logo.png new file mode 100644 index 00000000..a96f3291 Binary files /dev/null and b/blockchains/ethereum/assets/0x28a8aE348bbdc392497F9745832B5E0f0bd664F4/logo.png differ diff --git a/blockchains/ethereum/assets/0x28b5E12CcE51f15594B0b91d5b5AdaA70F684a02/info.json b/blockchains/ethereum/assets/0x28b5E12CcE51f15594B0b91d5b5AdaA70F684a02/info.json new file mode 100644 index 00000000..e6daf0dd --- /dev/null +++ b/blockchains/ethereum/assets/0x28b5E12CcE51f15594B0b91d5b5AdaA70F684a02/info.json @@ -0,0 +1,11 @@ +{ + "name": "NapoleonX Token", + "symbol": "NPX", + "type": "ERC20", + "decimals": 2, + "description": "NaPoleonX (NPX) is a cryptocurrency and operates on the Ethereum platform.", + "website": "http://www.napoleonx.ai", + "explorer": "https://etherscan.io/token/0x28b5E12CcE51f15594B0b91d5b5AdaA70F684a02", + "status": "active", + "id": "0x28b5E12CcE51f15594B0b91d5b5AdaA70F684a02" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28b5E12CcE51f15594B0b91d5b5AdaA70F684a02/logo.png b/blockchains/ethereum/assets/0x28b5E12CcE51f15594B0b91d5b5AdaA70F684a02/logo.png new file mode 100644 index 00000000..f8a73eb2 Binary files /dev/null and b/blockchains/ethereum/assets/0x28b5E12CcE51f15594B0b91d5b5AdaA70F684a02/logo.png differ diff --git a/blockchains/ethereum/assets/0x28c8d01FF633eA9Cd8fc6a451D7457889E698de6/info.json b/blockchains/ethereum/assets/0x28c8d01FF633eA9Cd8fc6a451D7457889E698de6/info.json new file mode 100644 index 00000000..9fe370d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x28c8d01FF633eA9Cd8fc6a451D7457889E698de6/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "ETG", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://www.etgproject.org/", + "explorer": "https://etherscan.io/token/0x28c8d01FF633eA9Cd8fc6a451D7457889E698de6", + "status": "active", + "id": "0x28c8d01FF633eA9Cd8fc6a451D7457889E698de6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28c8d01FF633eA9Cd8fc6a451D7457889E698de6/logo.png b/blockchains/ethereum/assets/0x28c8d01FF633eA9Cd8fc6a451D7457889E698de6/logo.png new file mode 100755 index 00000000..4ad99de5 Binary files /dev/null and b/blockchains/ethereum/assets/0x28c8d01FF633eA9Cd8fc6a451D7457889E698de6/logo.png differ diff --git a/blockchains/ethereum/assets/0x28cF843D0DE2e1FB05636e76569d5a50caF3b817/info.json b/blockchains/ethereum/assets/0x28cF843D0DE2e1FB05636e76569d5a50caF3b817/info.json new file mode 100644 index 00000000..619b57a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x28cF843D0DE2e1FB05636e76569d5a50caF3b817/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bostec", + "symbol": "TEC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x28cF843D0DE2e1FB05636e76569d5a50caF3b817", + "status": "abandoned", + "id": "0x28cF843D0DE2e1FB05636e76569d5a50caF3b817" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28cF843D0DE2e1FB05636e76569d5a50caF3b817/logo.png b/blockchains/ethereum/assets/0x28cF843D0DE2e1FB05636e76569d5a50caF3b817/logo.png new file mode 100644 index 00000000..6bd79a72 Binary files /dev/null and b/blockchains/ethereum/assets/0x28cF843D0DE2e1FB05636e76569d5a50caF3b817/logo.png differ diff --git a/blockchains/ethereum/assets/0x28cb7e841ee97947a86B06fA4090C8451f64c0be/info.json b/blockchains/ethereum/assets/0x28cb7e841ee97947a86B06fA4090C8451f64c0be/info.json new file mode 100644 index 00000000..91997123 --- /dev/null +++ b/blockchains/ethereum/assets/0x28cb7e841ee97947a86B06fA4090C8451f64c0be/info.json @@ -0,0 +1,14 @@ +{ + "name": "YFLink", + "symbol": "YFL", + "type": "ERC20", + "decimals": 18, + "description": "YF Link is a community DeFi project built around the decentralized exchange Linkswap as a hub and bridge for community DeFi projects.", + "website": "https://yflink.io", + "explorer": "https://etherscan.io/token/0x28cb7e841ee97947a86B06fA4090C8451f64c0be", + "status": "active", + "id": "0x28cb7e841ee97947a86B06fA4090C8451f64c0be", + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28cb7e841ee97947a86B06fA4090C8451f64c0be/logo.png b/blockchains/ethereum/assets/0x28cb7e841ee97947a86B06fA4090C8451f64c0be/logo.png new file mode 100644 index 00000000..4d911e2a Binary files /dev/null and b/blockchains/ethereum/assets/0x28cb7e841ee97947a86B06fA4090C8451f64c0be/logo.png differ diff --git a/blockchains/ethereum/assets/0x28d7F432d24ba6020d1cbD4f28BEDc5a82F24320/info.json b/blockchains/ethereum/assets/0x28d7F432d24ba6020d1cbD4f28BEDc5a82F24320/info.json new file mode 100644 index 00000000..7c0bc212 --- /dev/null +++ b/blockchains/ethereum/assets/0x28d7F432d24ba6020d1cbD4f28BEDc5a82F24320/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tercet Network", + "symbol": "TCNX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://tercet.network/", + "explorer": "https://etherscan.io/token/0x28d7F432d24ba6020d1cbD4f28BEDc5a82F24320", + "status": "abandoned", + "id": "0x28d7F432d24ba6020d1cbD4f28BEDc5a82F24320" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28d7F432d24ba6020d1cbD4f28BEDc5a82F24320/logo.png b/blockchains/ethereum/assets/0x28d7F432d24ba6020d1cbD4f28BEDc5a82F24320/logo.png new file mode 100644 index 00000000..758649f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x28d7F432d24ba6020d1cbD4f28BEDc5a82F24320/logo.png differ diff --git a/blockchains/ethereum/assets/0x28dee01D53FED0Edf5f6E310BF8Ef9311513Ae40/info.json b/blockchains/ethereum/assets/0x28dee01D53FED0Edf5f6E310BF8Ef9311513Ae40/info.json new file mode 100644 index 00000000..c78a2723 --- /dev/null +++ b/blockchains/ethereum/assets/0x28dee01D53FED0Edf5f6E310BF8Ef9311513Ae40/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlitzPick (XBP)", + "type": "ERC20", + "symbol": "XBP", + "decimals": 18, + "website": "https://www.blitzpick.com", + "description": "Immutable Repositories for Sports Bettors.", + "explorer": "https://etherscan.io/token/0x28dee01D53FED0Edf5f6E310BF8Ef9311513Ae40", + "status": "active", + "id": "0x28dee01D53FED0Edf5f6E310BF8Ef9311513Ae40" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28dee01D53FED0Edf5f6E310BF8Ef9311513Ae40/logo.png b/blockchains/ethereum/assets/0x28dee01D53FED0Edf5f6E310BF8Ef9311513Ae40/logo.png new file mode 100644 index 00000000..ce621202 Binary files /dev/null and b/blockchains/ethereum/assets/0x28dee01D53FED0Edf5f6E310BF8Ef9311513Ae40/logo.png differ diff --git a/blockchains/ethereum/assets/0x28e9C2F30b5e935b2eD38Fe8d796e1B39C4EFc91/info.json b/blockchains/ethereum/assets/0x28e9C2F30b5e935b2eD38Fe8d796e1B39C4EFc91/info.json new file mode 100644 index 00000000..aeb339ef --- /dev/null +++ b/blockchains/ethereum/assets/0x28e9C2F30b5e935b2eD38Fe8d796e1B39C4EFc91/info.json @@ -0,0 +1,11 @@ +{ + "name": "wield.finance", + "symbol": "WFI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x28e9C2F30b5e935b2eD38Fe8d796e1B39C4EFc91", + "status": "abandoned", + "id": "0x28e9C2F30b5e935b2eD38Fe8d796e1B39C4EFc91" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28e9C2F30b5e935b2eD38Fe8d796e1B39C4EFc91/logo.png b/blockchains/ethereum/assets/0x28e9C2F30b5e935b2eD38Fe8d796e1B39C4EFc91/logo.png new file mode 100644 index 00000000..833b8e95 Binary files /dev/null and b/blockchains/ethereum/assets/0x28e9C2F30b5e935b2eD38Fe8d796e1B39C4EFc91/logo.png differ diff --git a/blockchains/ethereum/assets/0x28ea81fac7b1719138cBf61267198155b433E00e/info.json b/blockchains/ethereum/assets/0x28ea81fac7b1719138cBf61267198155b433E00e/info.json new file mode 100644 index 00000000..6de1c47b --- /dev/null +++ b/blockchains/ethereum/assets/0x28ea81fac7b1719138cBf61267198155b433E00e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cashpayz Token", + "symbol": "CPC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x28ea81fac7b1719138cBf61267198155b433E00e", + "status": "abandoned", + "id": "0x28ea81fac7b1719138cBf61267198155b433E00e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28ea81fac7b1719138cBf61267198155b433E00e/logo.png b/blockchains/ethereum/assets/0x28ea81fac7b1719138cBf61267198155b433E00e/logo.png new file mode 100644 index 00000000..c9a7ffaa Binary files /dev/null and b/blockchains/ethereum/assets/0x28ea81fac7b1719138cBf61267198155b433E00e/logo.png differ diff --git a/blockchains/ethereum/assets/0x28ebC92E995Ef0a2C9A069D39F991c55A512e07c/info.json b/blockchains/ethereum/assets/0x28ebC92E995Ef0a2C9A069D39F991c55A512e07c/info.json new file mode 100644 index 00000000..163ccc42 --- /dev/null +++ b/blockchains/ethereum/assets/0x28ebC92E995Ef0a2C9A069D39F991c55A512e07c/info.json @@ -0,0 +1,11 @@ +{ + "name": "ValorDAO", + "symbol": "VLR", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x28ebC92E995Ef0a2C9A069D39F991c55A512e07c", + "status": "abandoned", + "id": "0x28ebC92E995Ef0a2C9A069D39F991c55A512e07c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28ebC92E995Ef0a2C9A069D39F991c55A512e07c/logo.png b/blockchains/ethereum/assets/0x28ebC92E995Ef0a2C9A069D39F991c55A512e07c/logo.png new file mode 100644 index 00000000..c1650cf8 Binary files /dev/null and b/blockchains/ethereum/assets/0x28ebC92E995Ef0a2C9A069D39F991c55A512e07c/logo.png differ diff --git a/blockchains/ethereum/assets/0x28f94409B40213D95c0BD942FA16d6C679475bEc/info.json b/blockchains/ethereum/assets/0x28f94409B40213D95c0BD942FA16d6C679475bEc/info.json new file mode 100644 index 00000000..f06cc37a --- /dev/null +++ b/blockchains/ethereum/assets/0x28f94409B40213D95c0BD942FA16d6C679475bEc/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEKSEN Ecosystem", + "symbol": "DEKSX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x28f94409B40213D95c0BD942FA16d6C679475bEc", + "status": "abandoned", + "id": "0x28f94409B40213D95c0BD942FA16d6C679475bEc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28f94409B40213D95c0BD942FA16d6C679475bEc/logo.png b/blockchains/ethereum/assets/0x28f94409B40213D95c0BD942FA16d6C679475bEc/logo.png new file mode 100644 index 00000000..714921da Binary files /dev/null and b/blockchains/ethereum/assets/0x28f94409B40213D95c0BD942FA16d6C679475bEc/logo.png differ diff --git a/blockchains/ethereum/assets/0x28fB9FCf7cF7a67d05bD19fFBEc17578c0dE63d3/info.json b/blockchains/ethereum/assets/0x28fB9FCf7cF7a67d05bD19fFBEc17578c0dE63d3/info.json new file mode 100644 index 00000000..2b1a21e3 --- /dev/null +++ b/blockchains/ethereum/assets/0x28fB9FCf7cF7a67d05bD19fFBEc17578c0dE63d3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cercle Stock Service", + "symbol": "CSS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x28fB9FCf7cF7a67d05bD19fFBEc17578c0dE63d3", + "status": "abandoned", + "id": "0x28fB9FCf7cF7a67d05bD19fFBEc17578c0dE63d3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28fB9FCf7cF7a67d05bD19fFBEc17578c0dE63d3/logo.png b/blockchains/ethereum/assets/0x28fB9FCf7cF7a67d05bD19fFBEc17578c0dE63d3/logo.png new file mode 100644 index 00000000..5242be8d Binary files /dev/null and b/blockchains/ethereum/assets/0x28fB9FCf7cF7a67d05bD19fFBEc17578c0dE63d3/logo.png differ diff --git a/blockchains/ethereum/assets/0x2910Ad99C6376492c9b1b7A5399516Ff59Bb9d63/info.json b/blockchains/ethereum/assets/0x2910Ad99C6376492c9b1b7A5399516Ff59Bb9d63/info.json new file mode 100644 index 00000000..1136cffa --- /dev/null +++ b/blockchains/ethereum/assets/0x2910Ad99C6376492c9b1b7A5399516Ff59Bb9d63/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R897721", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2910Ad99C6376492c9b1b7A5399516Ff59Bb9d63", + "status": "abandoned", + "id": "0x2910Ad99C6376492c9b1b7A5399516Ff59Bb9d63" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2910Ad99C6376492c9b1b7A5399516Ff59Bb9d63/logo.png b/blockchains/ethereum/assets/0x2910Ad99C6376492c9b1b7A5399516Ff59Bb9d63/logo.png new file mode 100644 index 00000000..c6df0602 Binary files /dev/null and b/blockchains/ethereum/assets/0x2910Ad99C6376492c9b1b7A5399516Ff59Bb9d63/logo.png differ diff --git a/blockchains/ethereum/assets/0x2915ACAa744e36BEfB3c539c3d99A7f82AD8E6c9/info.json b/blockchains/ethereum/assets/0x2915ACAa744e36BEfB3c539c3d99A7f82AD8E6c9/info.json new file mode 100644 index 00000000..dea5a20a --- /dev/null +++ b/blockchains/ethereum/assets/0x2915ACAa744e36BEfB3c539c3d99A7f82AD8E6c9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Greek Drachma", + "symbol": "GRD", + "type": "ERC20", + "decimals": 7, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2915ACAa744e36BEfB3c539c3d99A7f82AD8E6c9", + "status": "abandoned", + "id": "0x2915ACAa744e36BEfB3c539c3d99A7f82AD8E6c9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2915ACAa744e36BEfB3c539c3d99A7f82AD8E6c9/logo.png b/blockchains/ethereum/assets/0x2915ACAa744e36BEfB3c539c3d99A7f82AD8E6c9/logo.png new file mode 100644 index 00000000..4a29d1b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x2915ACAa744e36BEfB3c539c3d99A7f82AD8E6c9/logo.png differ diff --git a/blockchains/ethereum/assets/0x291FA2725d153bcc6C7E1C304bcaD47fdEf1EF84/info.json b/blockchains/ethereum/assets/0x291FA2725d153bcc6C7E1C304bcaD47fdEf1EF84/info.json new file mode 100644 index 00000000..191d5651 --- /dev/null +++ b/blockchains/ethereum/assets/0x291FA2725d153bcc6C7E1C304bcaD47fdEf1EF84/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mega Token", + "symbol": "MX3", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://megamine.co/", + "explorer": "https://etherscan.io/token/0x291FA2725d153bcc6C7E1C304bcaD47fdEf1EF84", + "status": "abandoned", + "id": "0x291FA2725d153bcc6C7E1C304bcaD47fdEf1EF84" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x291FA2725d153bcc6C7E1C304bcaD47fdEf1EF84/logo.png b/blockchains/ethereum/assets/0x291FA2725d153bcc6C7E1C304bcaD47fdEf1EF84/logo.png new file mode 100644 index 00000000..3219f0c3 Binary files /dev/null and b/blockchains/ethereum/assets/0x291FA2725d153bcc6C7E1C304bcaD47fdEf1EF84/logo.png differ diff --git a/blockchains/ethereum/assets/0x29239242A83479a4074Cb1c9e2A3e6705A4A4455/info.json b/blockchains/ethereum/assets/0x29239242A83479a4074Cb1c9e2A3e6705A4A4455/info.json new file mode 100644 index 00000000..6080a661 --- /dev/null +++ b/blockchains/ethereum/assets/0x29239242A83479a4074Cb1c9e2A3e6705A4A4455/info.json @@ -0,0 +1,11 @@ +{ + "name": "TOZEX", + "symbol": "TOZ", + "type": "ERC20", + "decimals": 18, + "description": "Tozex Tokenizaton platform", + "website": "https://tozex.io/", + "explorer": "https://etherscan.io/token/0x29239242A83479a4074Cb1c9e2A3e6705A4A4455", + "status": "active", + "id": "0x29239242A83479a4074Cb1c9e2A3e6705A4A4455" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x29239242A83479a4074Cb1c9e2A3e6705A4A4455/logo.png b/blockchains/ethereum/assets/0x29239242A83479a4074Cb1c9e2A3e6705A4A4455/logo.png new file mode 100644 index 00000000..ab57e6af Binary files /dev/null and b/blockchains/ethereum/assets/0x29239242A83479a4074Cb1c9e2A3e6705A4A4455/logo.png differ diff --git a/blockchains/ethereum/assets/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076/info.json b/blockchains/ethereum/assets/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076/info.json new file mode 100644 index 00000000..1640d1b5 --- /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 00000000..5a195080 Binary files /dev/null and b/blockchains/ethereum/assets/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076/logo.png differ diff --git a/blockchains/ethereum/assets/0x293265AB375f52e0D059d3438a76f49f59E234b8/info.json b/blockchains/ethereum/assets/0x293265AB375f52e0D059d3438a76f49f59E234b8/info.json new file mode 100644 index 00000000..6dcb8d71 --- /dev/null +++ b/blockchains/ethereum/assets/0x293265AB375f52e0D059d3438a76f49f59E234b8/info.json @@ -0,0 +1,11 @@ +{ + "name": "WorldBusinessZimonCoin", + "symbol": "WBZ", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x293265AB375f52e0D059d3438a76f49f59E234b8", + "status": "abandoned", + "id": "0x293265AB375f52e0D059d3438a76f49f59E234b8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x293265AB375f52e0D059d3438a76f49f59E234b8/logo.png b/blockchains/ethereum/assets/0x293265AB375f52e0D059d3438a76f49f59E234b8/logo.png new file mode 100755 index 00000000..1047d52c Binary files /dev/null and b/blockchains/ethereum/assets/0x293265AB375f52e0D059d3438a76f49f59E234b8/logo.png differ diff --git a/blockchains/ethereum/assets/0x2932746414a6766a2b4A472CB3a2624f5667Fd83/info.json b/blockchains/ethereum/assets/0x2932746414a6766a2b4A472CB3a2624f5667Fd83/info.json new file mode 100644 index 00000000..2d66ac08 --- /dev/null +++ b/blockchains/ethereum/assets/0x2932746414a6766a2b4A472CB3a2624f5667Fd83/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitBall Treasure", + "symbol": "BTRS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2932746414a6766a2b4A472CB3a2624f5667Fd83", + "status": "abandoned", + "id": "0x2932746414a6766a2b4A472CB3a2624f5667Fd83" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2932746414a6766a2b4A472CB3a2624f5667Fd83/logo.png b/blockchains/ethereum/assets/0x2932746414a6766a2b4A472CB3a2624f5667Fd83/logo.png new file mode 100644 index 00000000..b7483ca5 Binary files /dev/null and b/blockchains/ethereum/assets/0x2932746414a6766a2b4A472CB3a2624f5667Fd83/logo.png differ diff --git a/blockchains/ethereum/assets/0x293B0Cd0991DB07c8529fEBb01bc7D052315C5Ab/info.json b/blockchains/ethereum/assets/0x293B0Cd0991DB07c8529fEBb01bc7D052315C5Ab/info.json new file mode 100644 index 00000000..cc7f579d --- /dev/null +++ b/blockchains/ethereum/assets/0x293B0Cd0991DB07c8529fEBb01bc7D052315C5Ab/info.json @@ -0,0 +1,11 @@ +{ + "name": "InTime", + "symbol": "ITO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.intimefoundation.org/", + "explorer": "https://etherscan.io/token/0x293B0Cd0991DB07c8529fEBb01bc7D052315C5Ab", + "status": "abandoned", + "id": "0x293B0Cd0991DB07c8529fEBb01bc7D052315C5Ab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x293B0Cd0991DB07c8529fEBb01bc7D052315C5Ab/logo.png b/blockchains/ethereum/assets/0x293B0Cd0991DB07c8529fEBb01bc7D052315C5Ab/logo.png new file mode 100644 index 00000000..ef486647 Binary files /dev/null and b/blockchains/ethereum/assets/0x293B0Cd0991DB07c8529fEBb01bc7D052315C5Ab/logo.png differ diff --git a/blockchains/ethereum/assets/0x2941dEaad71ADb02B944bd38EBce2f1F4C9A62Dc/info.json b/blockchains/ethereum/assets/0x2941dEaad71ADb02B944bd38EBce2f1F4C9A62Dc/info.json new file mode 100644 index 00000000..4170dc73 --- /dev/null +++ b/blockchains/ethereum/assets/0x2941dEaad71ADb02B944bd38EBce2f1F4C9A62Dc/info.json @@ -0,0 +1,11 @@ +{ + "name": "ColoradoCoin", + "symbol": "COLO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2941dEaad71ADb02B944bd38EBce2f1F4C9A62Dc", + "status": "abandoned", + "id": "0x2941dEaad71ADb02B944bd38EBce2f1F4C9A62Dc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2941dEaad71ADb02B944bd38EBce2f1F4C9A62Dc/logo.png b/blockchains/ethereum/assets/0x2941dEaad71ADb02B944bd38EBce2f1F4C9A62Dc/logo.png new file mode 100755 index 00000000..180048ca Binary files /dev/null and b/blockchains/ethereum/assets/0x2941dEaad71ADb02B944bd38EBce2f1F4C9A62Dc/logo.png differ diff --git a/blockchains/ethereum/assets/0x29502fE4d233EF0b45C3647101Fa1252cE0634BD/info.json b/blockchains/ethereum/assets/0x29502fE4d233EF0b45C3647101Fa1252cE0634BD/info.json new file mode 100644 index 00000000..989fd500 --- /dev/null +++ b/blockchains/ethereum/assets/0x29502fE4d233EF0b45C3647101Fa1252cE0634BD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Froge Finance", + "type": "ERC20", + "symbol": "FROGE", + "decimals": 9, + "website": "https://froge.finance", + "description": "FROGE, THE WORLDS FIRST ECO-DEFI", + "explorer": "https://etherscan.io/token/0x29502fE4d233EF0b45C3647101Fa1252cE0634BD", + "status": "active", + "id": "0x29502fE4d233EF0b45C3647101Fa1252cE0634BD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x29502fE4d233EF0b45C3647101Fa1252cE0634BD/logo.png b/blockchains/ethereum/assets/0x29502fE4d233EF0b45C3647101Fa1252cE0634BD/logo.png new file mode 100644 index 00000000..c0697aa3 Binary files /dev/null and b/blockchains/ethereum/assets/0x29502fE4d233EF0b45C3647101Fa1252cE0634BD/logo.png differ diff --git a/blockchains/ethereum/assets/0x29536B7Ca7029b5cDDEB03c0451715615AcA35ba/info.json b/blockchains/ethereum/assets/0x29536B7Ca7029b5cDDEB03c0451715615AcA35ba/info.json new file mode 100644 index 00000000..38a24d62 --- /dev/null +++ b/blockchains/ethereum/assets/0x29536B7Ca7029b5cDDEB03c0451715615AcA35ba/info.json @@ -0,0 +1,11 @@ +{ + "name": "NewOS Token", + "symbol": "NEWOS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://ne.ws/html/", + "explorer": "https://etherscan.io/token/0x29536B7Ca7029b5cDDEB03c0451715615AcA35ba", + "status": "abandoned", + "id": "0x29536B7Ca7029b5cDDEB03c0451715615AcA35ba" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x29536B7Ca7029b5cDDEB03c0451715615AcA35ba/logo.png b/blockchains/ethereum/assets/0x29536B7Ca7029b5cDDEB03c0451715615AcA35ba/logo.png new file mode 100644 index 00000000..658b27fc Binary files /dev/null and b/blockchains/ethereum/assets/0x29536B7Ca7029b5cDDEB03c0451715615AcA35ba/logo.png differ diff --git a/blockchains/ethereum/assets/0x2956356cD2a2bf3202F771F50D3D14A367b48070/info.json b/blockchains/ethereum/assets/0x2956356cD2a2bf3202F771F50D3D14A367b48070/info.json new file mode 100644 index 00000000..1f2842cb --- /dev/null +++ b/blockchains/ethereum/assets/0x2956356cD2a2bf3202F771F50D3D14A367b48070/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ether Token", + "symbol": "WETH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2956356cD2a2bf3202F771F50D3D14A367b48070", + "status": "abandoned", + "id": "0x2956356cD2a2bf3202F771F50D3D14A367b48070" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2956356cD2a2bf3202F771F50D3D14A367b48070/logo.png b/blockchains/ethereum/assets/0x2956356cD2a2bf3202F771F50D3D14A367b48070/logo.png new file mode 100644 index 00000000..74c9aaed Binary files /dev/null and b/blockchains/ethereum/assets/0x2956356cD2a2bf3202F771F50D3D14A367b48070/logo.png differ diff --git a/blockchains/ethereum/assets/0x296b3Fc8e3CC768F834152586e5Ad708BFE8F163/info.json b/blockchains/ethereum/assets/0x296b3Fc8e3CC768F834152586e5Ad708BFE8F163/info.json new file mode 100644 index 00000000..96c5132f --- /dev/null +++ b/blockchains/ethereum/assets/0x296b3Fc8e3CC768F834152586e5Ad708BFE8F163/info.json @@ -0,0 +1,11 @@ +{ + "name": "FirstEnergy Token", + "symbol": "FET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://firstenergytoken.com/", + "explorer": "https://etherscan.io/token/0x296b3Fc8e3CC768F834152586e5Ad708BFE8F163", + "status": "abandoned", + "id": "0x296b3Fc8e3CC768F834152586e5Ad708BFE8F163" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x296b3Fc8e3CC768F834152586e5Ad708BFE8F163/logo.png b/blockchains/ethereum/assets/0x296b3Fc8e3CC768F834152586e5Ad708BFE8F163/logo.png new file mode 100644 index 00000000..9371ddf4 Binary files /dev/null and b/blockchains/ethereum/assets/0x296b3Fc8e3CC768F834152586e5Ad708BFE8F163/logo.png differ diff --git a/blockchains/ethereum/assets/0x297316B8215eEf7773c6Ffac56C9b85cE2213bDc/info.json b/blockchains/ethereum/assets/0x297316B8215eEf7773c6Ffac56C9b85cE2213bDc/info.json new file mode 100644 index 00000000..be192f33 --- /dev/null +++ b/blockchains/ethereum/assets/0x297316B8215eEf7773c6Ffac56C9b85cE2213bDc/info.json @@ -0,0 +1,11 @@ +{ + "name": "StarLight", + "symbol": "SLT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x297316B8215eEf7773c6Ffac56C9b85cE2213bDc", + "status": "abandoned", + "id": "0x297316B8215eEf7773c6Ffac56C9b85cE2213bDc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x297316B8215eEf7773c6Ffac56C9b85cE2213bDc/logo.png b/blockchains/ethereum/assets/0x297316B8215eEf7773c6Ffac56C9b85cE2213bDc/logo.png new file mode 100644 index 00000000..58f736c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x297316B8215eEf7773c6Ffac56C9b85cE2213bDc/logo.png differ diff --git a/blockchains/ethereum/assets/0x2976AC3D0bB67C6307A73Df852C61c14cDDa9863/info.json b/blockchains/ethereum/assets/0x2976AC3D0bB67C6307A73Df852C61c14cDDa9863/info.json new file mode 100644 index 00000000..c05e0f1c --- /dev/null +++ b/blockchains/ethereum/assets/0x2976AC3D0bB67C6307A73Df852C61c14cDDa9863/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Neo", + "symbol": "BTCN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2976AC3D0bB67C6307A73Df852C61c14cDDa9863", + "status": "abandoned", + "id": "0x2976AC3D0bB67C6307A73Df852C61c14cDDa9863" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2976AC3D0bB67C6307A73Df852C61c14cDDa9863/logo.png b/blockchains/ethereum/assets/0x2976AC3D0bB67C6307A73Df852C61c14cDDa9863/logo.png new file mode 100644 index 00000000..958d71be Binary files /dev/null and b/blockchains/ethereum/assets/0x2976AC3D0bB67C6307A73Df852C61c14cDDa9863/logo.png differ diff --git a/blockchains/ethereum/assets/0x2976cfd34E41fA6D5eC96D6C1b738eF0b582098e/info.json b/blockchains/ethereum/assets/0x2976cfd34E41fA6D5eC96D6C1b738eF0b582098e/info.json new file mode 100644 index 00000000..ce1f44ba --- /dev/null +++ b/blockchains/ethereum/assets/0x2976cfd34E41fA6D5eC96D6C1b738eF0b582098e/info.json @@ -0,0 +1,11 @@ +{ + "name": "MythicX", + "symbol": "MTCX2", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2976cfd34E41fA6D5eC96D6C1b738eF0b582098e", + "status": "abandoned", + "id": "0x2976cfd34E41fA6D5eC96D6C1b738eF0b582098e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2976cfd34E41fA6D5eC96D6C1b738eF0b582098e/logo.png b/blockchains/ethereum/assets/0x2976cfd34E41fA6D5eC96D6C1b738eF0b582098e/logo.png new file mode 100644 index 00000000..1fa65c08 Binary files /dev/null and b/blockchains/ethereum/assets/0x2976cfd34E41fA6D5eC96D6C1b738eF0b582098e/logo.png differ diff --git a/blockchains/ethereum/assets/0x297E4e5e59Ad72B1B0A2fd446929e76117be0E0a/info.json b/blockchains/ethereum/assets/0x297E4e5e59Ad72B1B0A2fd446929e76117be0E0a/info.json new file mode 100644 index 00000000..e6b0ac01 --- /dev/null +++ b/blockchains/ethereum/assets/0x297E4e5e59Ad72B1B0A2fd446929e76117be0E0a/info.json @@ -0,0 +1,11 @@ +{ + "name": "ValorToken", + "symbol": "VALOR", + "type": "ERC20", + "decimals": 18, + "description": "SMART VALOR's vision is to build the new financial market infrastructure for on-chain securitization, democratizing access to wealth and making exclusive investments more widely accessible.", + "website": "https://smartvalor.com", + "explorer": "https://etherscan.io/token/0x297E4e5e59Ad72B1B0A2fd446929e76117be0E0a", + "status": "active", + "id": "0x297E4e5e59Ad72B1B0A2fd446929e76117be0E0a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x297E4e5e59Ad72B1B0A2fd446929e76117be0E0a/logo.png b/blockchains/ethereum/assets/0x297E4e5e59Ad72B1B0A2fd446929e76117be0E0a/logo.png new file mode 100644 index 00000000..ce1dd7ce Binary files /dev/null and b/blockchains/ethereum/assets/0x297E4e5e59Ad72B1B0A2fd446929e76117be0E0a/logo.png differ diff --git a/blockchains/ethereum/assets/0x29842bDDbA886Ce9F4834aaF167efee976357bF6/info.json b/blockchains/ethereum/assets/0x29842bDDbA886Ce9F4834aaF167efee976357bF6/info.json new file mode 100644 index 00000000..2d40f3b5 --- /dev/null +++ b/blockchains/ethereum/assets/0x29842bDDbA886Ce9F4834aaF167efee976357bF6/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-3/30M33", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x29842bDDbA886Ce9F4834aaF167efee976357bF6", + "status": "abandoned", + "id": "0x29842bDDbA886Ce9F4834aaF167efee976357bF6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x29842bDDbA886Ce9F4834aaF167efee976357bF6/logo.png b/blockchains/ethereum/assets/0x29842bDDbA886Ce9F4834aaF167efee976357bF6/logo.png new file mode 100644 index 00000000..7c05be54 Binary files /dev/null and b/blockchains/ethereum/assets/0x29842bDDbA886Ce9F4834aaF167efee976357bF6/logo.png differ diff --git a/blockchains/ethereum/assets/0x298d492e8c1d909D3F63Bc4A36C66c64ACB3d695/info.json b/blockchains/ethereum/assets/0x298d492e8c1d909D3F63Bc4A36C66c64ACB3d695/info.json new file mode 100644 index 00000000..44d0896f --- /dev/null +++ b/blockchains/ethereum/assets/0x298d492e8c1d909D3F63Bc4A36C66c64ACB3d695/info.json @@ -0,0 +1,11 @@ +{ + "name": "PolkaBridge", + "symbol": "PBR", + "type": "ERC20", + "decimals": 18, + "description": "A decentralized all-in-one financial application platform. The PolkaBridge ecosystem is expected to include crosschain AMM, Farming, Lending, Fundraising platform (Launchpad), Prediction, NFT, and more. All products will be developed with Polkadot in center.", + "website": "https://polkabridge.org/", + "explorer": "https://etherscan.io/token/0x298d492e8c1d909D3F63Bc4A36C66c64ACB3d695", + "status": "active", + "id": "0x298d492e8c1d909D3F63Bc4A36C66c64ACB3d695" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x298d492e8c1d909D3F63Bc4A36C66c64ACB3d695/logo.png b/blockchains/ethereum/assets/0x298d492e8c1d909D3F63Bc4A36C66c64ACB3d695/logo.png new file mode 100644 index 00000000..dbbf49ef Binary files /dev/null and b/blockchains/ethereum/assets/0x298d492e8c1d909D3F63Bc4A36C66c64ACB3d695/logo.png differ diff --git a/blockchains/ethereum/assets/0x29917c3B1c2B4779a7B61f08d98B3Da0fCf3b6A4/info.json b/blockchains/ethereum/assets/0x29917c3B1c2B4779a7B61f08d98B3Da0fCf3b6A4/info.json new file mode 100644 index 00000000..fa14ffd6 --- /dev/null +++ b/blockchains/ethereum/assets/0x29917c3B1c2B4779a7B61f08d98B3Da0fCf3b6A4/info.json @@ -0,0 +1,21 @@ +{ + "name": "ArgenPeso", + "website": "https://argenpeso.com", + "description": "ArgenPeso is the Argentine digital cryptocurrency that seeks to give a new value to the Argentine peso.", + "explorer": "https://etherscan.io/token/0x29917c3B1c2B4779a7B61f08d98B3Da0fCf3b6A4", + "type": "ERC20", + "symbol": "ARGP", + "decimals": 18, + "status": "active", + "id": "0x29917c3B1c2B4779a7B61f08d98B3Da0fCf3b6A4", + "links": [ + { + "name": "github", + "url": "https://github.com/argenpeso" + }, + { + "name": "whitepaper", + "url": "https://argenpeso.com/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x29917c3B1c2B4779a7B61f08d98B3Da0fCf3b6A4/logo.png b/blockchains/ethereum/assets/0x29917c3B1c2B4779a7B61f08d98B3Da0fCf3b6A4/logo.png new file mode 100644 index 00000000..eef6f6d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x29917c3B1c2B4779a7B61f08d98B3Da0fCf3b6A4/logo.png differ diff --git a/blockchains/ethereum/assets/0x29D75277aC7F0335b2165D0895E8725cbF658d73/info.json b/blockchains/ethereum/assets/0x29D75277aC7F0335b2165D0895E8725cbF658d73/info.json new file mode 100644 index 00000000..774970a9 --- /dev/null +++ b/blockchains/ethereum/assets/0x29D75277aC7F0335b2165D0895E8725cbF658d73/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitDice", + "symbol": "CSNO", + "type": "ERC20", + "decimals": 8, + "description": "Bitdice Casino.", + "website": "https://www.bitdice.me/", + "explorer": "https://etherscan.io/token/0x29D75277aC7F0335b2165D0895E8725cbF658d73", + "status": "active", + "id": "0x29D75277aC7F0335b2165D0895E8725cbF658d73" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x29D75277aC7F0335b2165D0895E8725cbF658d73/logo.png b/blockchains/ethereum/assets/0x29D75277aC7F0335b2165D0895E8725cbF658d73/logo.png new file mode 100644 index 00000000..936abcb0 Binary files /dev/null and b/blockchains/ethereum/assets/0x29D75277aC7F0335b2165D0895E8725cbF658d73/logo.png differ diff --git a/blockchains/ethereum/assets/0x29E95E732e96315B88DF0123058527E4eC0e6E6a/info.json b/blockchains/ethereum/assets/0x29E95E732e96315B88DF0123058527E4eC0e6E6a/info.json new file mode 100644 index 00000000..12a097d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x29E95E732e96315B88DF0123058527E4eC0e6E6a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dain ", + "symbol": "DNC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x29E95E732e96315B88DF0123058527E4eC0e6E6a", + "status": "abandoned", + "id": "0x29E95E732e96315B88DF0123058527E4eC0e6E6a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x29E95E732e96315B88DF0123058527E4eC0e6E6a/logo.png b/blockchains/ethereum/assets/0x29E95E732e96315B88DF0123058527E4eC0e6E6a/logo.png new file mode 100644 index 00000000..c422ff71 Binary files /dev/null and b/blockchains/ethereum/assets/0x29E95E732e96315B88DF0123058527E4eC0e6E6a/logo.png differ diff --git a/blockchains/ethereum/assets/0x29E9fDF5933824ad21Bc6dbb8BF156EFA3735e32/info.json b/blockchains/ethereum/assets/0x29E9fDF5933824ad21Bc6dbb8BF156EFA3735e32/info.json new file mode 100644 index 00000000..9b25f126 --- /dev/null +++ b/blockchains/ethereum/assets/0x29E9fDF5933824ad21Bc6dbb8BF156EFA3735e32/info.json @@ -0,0 +1,37 @@ +{ + "name": "Meter Stable mapped by Meter.io", + "website": "https://meter.io/", + "description": "eMTR is the ERC-20 equivalent of MTR, the low-volatility coin of the Meter network.", + "explorer": "https://etherscan.io/token/0x29E9fDF5933824ad21Bc6dbb8BF156EFA3735e32", + "type": "ERC20", + "symbol": "eMTR", + "decimals": 18, + "status": "abandoned", + "id": "0x29E9fDF5933824ad21Bc6dbb8BF156EFA3735e32", + "links": [ + { + "name": "github", + "url": "https://github.com/meterio" + }, + { + "name": "x", + "url": "https://x.com/Meter_IO" + }, + { + "name": "telegram", + "url": "https://t.me/Meter_IO" + }, + { + "name": "discord", + "url": "https://discord.com/invite/XZgZsCn" + }, + { + "name": "facebook", + "url": "https://facebook.com/MeterFoundation/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Meter_io/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x29F20242051AccDA50D52a7E272A5F23237e4696/info.json b/blockchains/ethereum/assets/0x29F20242051AccDA50D52a7E272A5F23237e4696/info.json new file mode 100644 index 00000000..1a668019 --- /dev/null +++ b/blockchains/ethereum/assets/0x29F20242051AccDA50D52a7E272A5F23237e4696/info.json @@ -0,0 +1,11 @@ +{ + "name": "Identity Hub Token", + "symbol": "IDHUB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.idhub.network/", + "explorer": "https://etherscan.io/token/0x29F20242051AccDA50D52a7E272A5F23237e4696", + "status": "abandoned", + "id": "0x29F20242051AccDA50D52a7E272A5F23237e4696" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x29F20242051AccDA50D52a7E272A5F23237e4696/logo.png b/blockchains/ethereum/assets/0x29F20242051AccDA50D52a7E272A5F23237e4696/logo.png new file mode 100644 index 00000000..f531a082 Binary files /dev/null and b/blockchains/ethereum/assets/0x29F20242051AccDA50D52a7E272A5F23237e4696/logo.png differ diff --git a/blockchains/ethereum/assets/0x29b9D465b1B1c81Fe23De0a3F459BDEe4841562c/info.json b/blockchains/ethereum/assets/0x29b9D465b1B1c81Fe23De0a3F459BDEe4841562c/info.json new file mode 100644 index 00000000..6d24e685 --- /dev/null +++ b/blockchains/ethereum/assets/0x29b9D465b1B1c81Fe23De0a3F459BDEe4841562c/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-8/30M38", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x29b9D465b1B1c81Fe23De0a3F459BDEe4841562c", + "status": "abandoned", + "id": "0x29b9D465b1B1c81Fe23De0a3F459BDEe4841562c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x29b9D465b1B1c81Fe23De0a3F459BDEe4841562c/logo.png b/blockchains/ethereum/assets/0x29b9D465b1B1c81Fe23De0a3F459BDEe4841562c/logo.png new file mode 100644 index 00000000..36adb388 Binary files /dev/null and b/blockchains/ethereum/assets/0x29b9D465b1B1c81Fe23De0a3F459BDEe4841562c/logo.png differ diff --git a/blockchains/ethereum/assets/0x29c59Add453901Cf03D25f3Cf7aF39f52224A19a/info.json b/blockchains/ethereum/assets/0x29c59Add453901Cf03D25f3Cf7aF39f52224A19a/info.json new file mode 100644 index 00000000..2429670a --- /dev/null +++ b/blockchains/ethereum/assets/0x29c59Add453901Cf03D25f3Cf7aF39f52224A19a/info.json @@ -0,0 +1,11 @@ +{ + "name": "DoNever", + "symbol": "DoCoin", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x29c59Add453901Cf03D25f3Cf7aF39f52224A19a", + "status": "abandoned", + "id": "0x29c59Add453901Cf03D25f3Cf7aF39f52224A19a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x29c59Add453901Cf03D25f3Cf7aF39f52224A19a/logo.png b/blockchains/ethereum/assets/0x29c59Add453901Cf03D25f3Cf7aF39f52224A19a/logo.png new file mode 100644 index 00000000..b0f422dc Binary files /dev/null and b/blockchains/ethereum/assets/0x29c59Add453901Cf03D25f3Cf7aF39f52224A19a/logo.png differ diff --git a/blockchains/ethereum/assets/0x29cF2AFCac8648ab3687E579684298650A66742c/info.json b/blockchains/ethereum/assets/0x29cF2AFCac8648ab3687E579684298650A66742c/info.json new file mode 100644 index 00000000..a735204d --- /dev/null +++ b/blockchains/ethereum/assets/0x29cF2AFCac8648ab3687E579684298650A66742c/info.json @@ -0,0 +1,11 @@ +{ + "name": "SEAPonyCoin", + "symbol": "SEA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ico.SEAponyCon.com", + "explorer": "https://etherscan.io/token/0x29cF2AFCac8648ab3687E579684298650A66742c", + "status": "abandoned", + "id": "0x29cF2AFCac8648ab3687E579684298650A66742c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x29cF2AFCac8648ab3687E579684298650A66742c/logo.png b/blockchains/ethereum/assets/0x29cF2AFCac8648ab3687E579684298650A66742c/logo.png new file mode 100755 index 00000000..32f65306 Binary files /dev/null and b/blockchains/ethereum/assets/0x29cF2AFCac8648ab3687E579684298650A66742c/logo.png differ diff --git a/blockchains/ethereum/assets/0x29cac70bB7FF448Db2C91e36f7A303624d7fc43F/info.json b/blockchains/ethereum/assets/0x29cac70bB7FF448Db2C91e36f7A303624d7fc43F/info.json new file mode 100644 index 00000000..c9820ff3 --- /dev/null +++ b/blockchains/ethereum/assets/0x29cac70bB7FF448Db2C91e36f7A303624d7fc43F/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-5/30M65", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x29cac70bB7FF448Db2C91e36f7A303624d7fc43F", + "status": "active", + "id": "0x29cac70bB7FF448Db2C91e36f7A303624d7fc43F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x29cac70bB7FF448Db2C91e36f7A303624d7fc43F/logo.png b/blockchains/ethereum/assets/0x29cac70bB7FF448Db2C91e36f7A303624d7fc43F/logo.png new file mode 100644 index 00000000..5c7ce677 Binary files /dev/null and b/blockchains/ethereum/assets/0x29cac70bB7FF448Db2C91e36f7A303624d7fc43F/logo.png differ diff --git a/blockchains/ethereum/assets/0x29dDc6A48EB611e8586a608e32C072A42614314D/info.json b/blockchains/ethereum/assets/0x29dDc6A48EB611e8586a608e32C072A42614314D/info.json new file mode 100644 index 00000000..57506af6 --- /dev/null +++ b/blockchains/ethereum/assets/0x29dDc6A48EB611e8586a608e32C072A42614314D/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R937191", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x29dDc6A48EB611e8586a608e32C072A42614314D", + "status": "spam", + "id": "0x29dDc6A48EB611e8586a608e32C072A42614314D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x29dDc6A48EB611e8586a608e32C072A42614314D/logo.png b/blockchains/ethereum/assets/0x29dDc6A48EB611e8586a608e32C072A42614314D/logo.png new file mode 100644 index 00000000..79884075 Binary files /dev/null and b/blockchains/ethereum/assets/0x29dDc6A48EB611e8586a608e32C072A42614314D/logo.png differ diff --git a/blockchains/ethereum/assets/0x29fb4CEe43155bAAB885897f0e96B1F0572a1E86/info.json b/blockchains/ethereum/assets/0x29fb4CEe43155bAAB885897f0e96B1F0572a1E86/info.json new file mode 100644 index 00000000..7c71d361 --- /dev/null +++ b/blockchains/ethereum/assets/0x29fb4CEe43155bAAB885897f0e96B1F0572a1E86/info.json @@ -0,0 +1,11 @@ +{ + "name": "FilmBusinessBuster", + "symbol": "FBB", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x29fb4CEe43155bAAB885897f0e96B1F0572a1E86", + "status": "abandoned", + "id": "0x29fb4CEe43155bAAB885897f0e96B1F0572a1E86" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x29fb4CEe43155bAAB885897f0e96B1F0572a1E86/logo.png b/blockchains/ethereum/assets/0x29fb4CEe43155bAAB885897f0e96B1F0572a1E86/logo.png new file mode 100644 index 00000000..f6901ddb Binary files /dev/null and b/blockchains/ethereum/assets/0x29fb4CEe43155bAAB885897f0e96B1F0572a1E86/logo.png differ diff --git a/blockchains/ethereum/assets/0x2A05d22DB079BC40C2f77a1d1fF703a56E631cc1/info.json b/blockchains/ethereum/assets/0x2A05d22DB079BC40C2f77a1d1fF703a56E631cc1/info.json new file mode 100644 index 00000000..8ece1c28 --- /dev/null +++ b/blockchains/ethereum/assets/0x2A05d22DB079BC40C2f77a1d1fF703a56E631cc1/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitAsean", + "symbol": "BAS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.bitasean.org/", + "explorer": "https://etherscan.io/token/0x2A05d22DB079BC40C2f77a1d1fF703a56E631cc1", + "status": "abandoned", + "id": "0x2A05d22DB079BC40C2f77a1d1fF703a56E631cc1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2A05d22DB079BC40C2f77a1d1fF703a56E631cc1/logo.png b/blockchains/ethereum/assets/0x2A05d22DB079BC40C2f77a1d1fF703a56E631cc1/logo.png new file mode 100644 index 00000000..2e62d947 Binary files /dev/null and b/blockchains/ethereum/assets/0x2A05d22DB079BC40C2f77a1d1fF703a56E631cc1/logo.png differ diff --git a/blockchains/ethereum/assets/0x2A22e5cCA00a3D63308fa39f29202eB1b39eEf52/info.json b/blockchains/ethereum/assets/0x2A22e5cCA00a3D63308fa39f29202eB1b39eEf52/info.json new file mode 100644 index 00000000..7416af2d --- /dev/null +++ b/blockchains/ethereum/assets/0x2A22e5cCA00a3D63308fa39f29202eB1b39eEf52/info.json @@ -0,0 +1,11 @@ +{ + "name": "EDU Token", + "symbol": "EDU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2A22e5cCA00a3D63308fa39f29202eB1b39eEf52", + "status": "abandoned", + "id": "0x2A22e5cCA00a3D63308fa39f29202eB1b39eEf52" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2A22e5cCA00a3D63308fa39f29202eB1b39eEf52/logo.png b/blockchains/ethereum/assets/0x2A22e5cCA00a3D63308fa39f29202eB1b39eEf52/logo.png new file mode 100755 index 00000000..67e18b1d Binary files /dev/null and b/blockchains/ethereum/assets/0x2A22e5cCA00a3D63308fa39f29202eB1b39eEf52/logo.png differ diff --git a/blockchains/ethereum/assets/0x2A4F61Ca0e03e260E6BE91692e430293D73998F0/info.json b/blockchains/ethereum/assets/0x2A4F61Ca0e03e260E6BE91692e430293D73998F0/info.json new file mode 100644 index 00000000..d30f82ff --- /dev/null +++ b/blockchains/ethereum/assets/0x2A4F61Ca0e03e260E6BE91692e430293D73998F0/info.json @@ -0,0 +1,11 @@ +{ + "name": "FLUXCOIN-A", + "symbol": "FLXA", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2A4F61Ca0e03e260E6BE91692e430293D73998F0", + "status": "abandoned", + "id": "0x2A4F61Ca0e03e260E6BE91692e430293D73998F0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2A4F61Ca0e03e260E6BE91692e430293D73998F0/logo.png b/blockchains/ethereum/assets/0x2A4F61Ca0e03e260E6BE91692e430293D73998F0/logo.png new file mode 100644 index 00000000..ded3f1d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x2A4F61Ca0e03e260E6BE91692e430293D73998F0/logo.png differ diff --git a/blockchains/ethereum/assets/0x2A5c5212f399aa04a0ce28dBe48C1a17FcA78DF4/info.json b/blockchains/ethereum/assets/0x2A5c5212f399aa04a0ce28dBe48C1a17FcA78DF4/info.json new file mode 100644 index 00000000..5cc84e2f --- /dev/null +++ b/blockchains/ethereum/assets/0x2A5c5212f399aa04a0ce28dBe48C1a17FcA78DF4/info.json @@ -0,0 +1,11 @@ +{ + "name": "XDAC COIN", + "symbol": "XDAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2A5c5212f399aa04a0ce28dBe48C1a17FcA78DF4", + "status": "abandoned", + "id": "0x2A5c5212f399aa04a0ce28dBe48C1a17FcA78DF4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2A5c5212f399aa04a0ce28dBe48C1a17FcA78DF4/logo.png b/blockchains/ethereum/assets/0x2A5c5212f399aa04a0ce28dBe48C1a17FcA78DF4/logo.png new file mode 100755 index 00000000..9ef606f0 Binary files /dev/null and b/blockchains/ethereum/assets/0x2A5c5212f399aa04a0ce28dBe48C1a17FcA78DF4/logo.png differ diff --git a/blockchains/ethereum/assets/0x2A5e6368d6711979B333E2db8707b4C5b1AaF7C2/info.json b/blockchains/ethereum/assets/0x2A5e6368d6711979B333E2db8707b4C5b1AaF7C2/info.json new file mode 100644 index 00000000..01172bc2 --- /dev/null +++ b/blockchains/ethereum/assets/0x2A5e6368d6711979B333E2db8707b4C5b1AaF7C2/info.json @@ -0,0 +1,11 @@ +{ + "name": "AsianCapitalChain", + "symbol": "ACC", + "type": "ERC20", + "decimals": 7, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2A5e6368d6711979B333E2db8707b4C5b1AaF7C2", + "status": "abandoned", + "id": "0x2A5e6368d6711979B333E2db8707b4C5b1AaF7C2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2A5e6368d6711979B333E2db8707b4C5b1AaF7C2/logo.png b/blockchains/ethereum/assets/0x2A5e6368d6711979B333E2db8707b4C5b1AaF7C2/logo.png new file mode 100755 index 00000000..753c59ab Binary files /dev/null and b/blockchains/ethereum/assets/0x2A5e6368d6711979B333E2db8707b4C5b1AaF7C2/logo.png differ diff --git a/blockchains/ethereum/assets/0x2A73CB91ED8983398F83082c093ac306cac209FF/info.json b/blockchains/ethereum/assets/0x2A73CB91ED8983398F83082c093ac306cac209FF/info.json new file mode 100644 index 00000000..677517fb --- /dev/null +++ b/blockchains/ethereum/assets/0x2A73CB91ED8983398F83082c093ac306cac209FF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fanboys Interactive", + "symbol": "FIG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2A73CB91ED8983398F83082c093ac306cac209FF", + "status": "abandoned", + "id": "0x2A73CB91ED8983398F83082c093ac306cac209FF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2A73CB91ED8983398F83082c093ac306cac209FF/logo.png b/blockchains/ethereum/assets/0x2A73CB91ED8983398F83082c093ac306cac209FF/logo.png new file mode 100644 index 00000000..d407add7 Binary files /dev/null and b/blockchains/ethereum/assets/0x2A73CB91ED8983398F83082c093ac306cac209FF/logo.png differ diff --git a/blockchains/ethereum/assets/0x2A79324c19Ef2B89Ea98b23BC669B7E7c9f8A517/info.json b/blockchains/ethereum/assets/0x2A79324c19Ef2B89Ea98b23BC669B7E7c9f8A517/info.json new file mode 100644 index 00000000..9210a291 --- /dev/null +++ b/blockchains/ethereum/assets/0x2A79324c19Ef2B89Ea98b23BC669B7E7c9f8A517/info.json @@ -0,0 +1,25 @@ +{ + "name": "WAXP Token", + "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 00000000..6658bd25 Binary files /dev/null and b/blockchains/ethereum/assets/0x2A79324c19Ef2B89Ea98b23BC669B7E7c9f8A517/logo.png differ diff --git a/blockchains/ethereum/assets/0x2A8e1E676Ec238d8A992307B495b45B3fEAa5e86/info.json b/blockchains/ethereum/assets/0x2A8e1E676Ec238d8A992307B495b45B3fEAa5e86/info.json new file mode 100644 index 00000000..30807194 --- /dev/null +++ b/blockchains/ethereum/assets/0x2A8e1E676Ec238d8A992307B495b45B3fEAa5e86/info.json @@ -0,0 +1,20 @@ +{ + "name": "Origin Dollar (OUSD)", + "website": "https://ousd.com", + "description": "The first stablecoin that earns a yield while it’s still in your wallet", + "explorer": "https://etherscan.io/token/0x2a8e1e676ec238d8a992307b495b45b3feaa5e86", + "type": "ERC20", + "symbol": "OUSD", + "decimals": 18, + "status": "active", + "id": "0x2A8e1E676Ec238d8A992307B495b45B3fEAa5e86", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/originprotocol/origin-dollar" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2A8e1E676Ec238d8A992307B495b45B3fEAa5e86/logo.png b/blockchains/ethereum/assets/0x2A8e1E676Ec238d8A992307B495b45B3fEAa5e86/logo.png new file mode 100644 index 00000000..372f4641 Binary files /dev/null and b/blockchains/ethereum/assets/0x2A8e1E676Ec238d8A992307B495b45B3fEAa5e86/logo.png differ diff --git a/blockchains/ethereum/assets/0x2AA4a3E8bB72BE68a31c9c3C98CA7BeC723C6222/info.json b/blockchains/ethereum/assets/0x2AA4a3E8bB72BE68a31c9c3C98CA7BeC723C6222/info.json new file mode 100644 index 00000000..7047c521 --- /dev/null +++ b/blockchains/ethereum/assets/0x2AA4a3E8bB72BE68a31c9c3C98CA7BeC723C6222/info.json @@ -0,0 +1,11 @@ +{ + "name": "BispexToken", + "symbol": "BPX", + "type": "ERC20", + "decimals": 18, + "description": "Bispex is a prediction market platform that focuses on cryptocurrency price changes. Predict and win cryptocurrency for making accurate forecasts today.", + "website": "https://bispex.com", + "explorer": "https://etherscan.io/token/0x2AA4a3E8bB72BE68a31c9c3C98CA7BeC723C6222", + "status": "active", + "id": "0x2AA4a3E8bB72BE68a31c9c3C98CA7BeC723C6222" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2AA4a3E8bB72BE68a31c9c3C98CA7BeC723C6222/logo.png b/blockchains/ethereum/assets/0x2AA4a3E8bB72BE68a31c9c3C98CA7BeC723C6222/logo.png new file mode 100644 index 00000000..8bfbd435 Binary files /dev/null and b/blockchains/ethereum/assets/0x2AA4a3E8bB72BE68a31c9c3C98CA7BeC723C6222/logo.png differ diff --git a/blockchains/ethereum/assets/0x2ACFf9cc74B104CD8540E9a2F691f22d3BD924d7/info.json b/blockchains/ethereum/assets/0x2ACFf9cc74B104CD8540E9a2F691f22d3BD924d7/info.json new file mode 100644 index 00000000..bb1f57cc --- /dev/null +++ b/blockchains/ethereum/assets/0x2ACFf9cc74B104CD8540E9a2F691f22d3BD924d7/info.json @@ -0,0 +1,11 @@ +{ + "name": "WrapUSDT", + "website": "https://ecocelium.io", + "description": "Wrapped version of Tether (USDT)", + "explorer": "https://etherscan.io/token/0x2ACFf9cc74B104CD8540E9a2F691f22d3BD924d7", + "type": "ERC20", + "symbol": "eUSDT", + "decimals": 6, + "status": "active", + "id": "0x2ACFf9cc74B104CD8540E9a2F691f22d3BD924d7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2ACFf9cc74B104CD8540E9a2F691f22d3BD924d7/logo.png b/blockchains/ethereum/assets/0x2ACFf9cc74B104CD8540E9a2F691f22d3BD924d7/logo.png new file mode 100644 index 00000000..b8581791 Binary files /dev/null and b/blockchains/ethereum/assets/0x2ACFf9cc74B104CD8540E9a2F691f22d3BD924d7/logo.png differ diff --git a/blockchains/ethereum/assets/0x2AEC18c5500f21359CE1BEA5Dc1777344dF4C0Dc/info.json b/blockchains/ethereum/assets/0x2AEC18c5500f21359CE1BEA5Dc1777344dF4C0Dc/info.json new file mode 100644 index 00000000..d8010e22 --- /dev/null +++ b/blockchains/ethereum/assets/0x2AEC18c5500f21359CE1BEA5Dc1777344dF4C0Dc/info.json @@ -0,0 +1,11 @@ +{ + "name": "FarmaTrust Token", + "symbol": "FTT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.farmatrust.com/", + "explorer": "https://etherscan.io/token/0x2AEC18c5500f21359CE1BEA5Dc1777344dF4C0Dc", + "status": "abandoned", + "id": "0x2AEC18c5500f21359CE1BEA5Dc1777344dF4C0Dc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2AEC18c5500f21359CE1BEA5Dc1777344dF4C0Dc/logo.png b/blockchains/ethereum/assets/0x2AEC18c5500f21359CE1BEA5Dc1777344dF4C0Dc/logo.png new file mode 100755 index 00000000..c51fa2d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x2AEC18c5500f21359CE1BEA5Dc1777344dF4C0Dc/logo.png differ diff --git a/blockchains/ethereum/assets/0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3/info.json b/blockchains/ethereum/assets/0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3/info.json new file mode 100644 index 00000000..6db1682f --- /dev/null +++ b/blockchains/ethereum/assets/0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3/info.json @@ -0,0 +1,33 @@ +{ + "name": "UNUS SED LEO", + "website": "https://bitfinex.com", + "description": "LEO Token is a Bitfinex exchange token, which mainly use is for discounts on the exchange.", + "explorer": "https://etherscan.io/token/0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3", + "type": "ERC20", + "symbol": "LEO", + "decimals": 18, + "status": "active", + "id": "0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/bitfinex1" + }, + { + "name": "x", + "url": "https://x.com/bitfinex" + }, + { + "name": "telegram", + "url": "https://t.me/bfxtelegram" + }, + { + "name": "whitepaper", + "url": "https://bitfinex.com/wp-2019-05.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/leo-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3/logo.png b/blockchains/ethereum/assets/0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3/logo.png new file mode 100644 index 00000000..a077a008 Binary files /dev/null and b/blockchains/ethereum/assets/0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Ab4B644F6926797B03DB86F7fd004857A6cDB17/info.json b/blockchains/ethereum/assets/0x2Ab4B644F6926797B03DB86F7fd004857A6cDB17/info.json new file mode 100644 index 00000000..be5dc407 --- /dev/null +++ b/blockchains/ethereum/assets/0x2Ab4B644F6926797B03DB86F7fd004857A6cDB17/info.json @@ -0,0 +1,11 @@ +{ + "name": "0x0000000000000000000000000000000000000000000000000000000000000000", + "symbol": "TDShare", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2Ab4B644F6926797B03DB86F7fd004857A6cDB17", + "status": "abandoned", + "id": "0x2Ab4B644F6926797B03DB86F7fd004857A6cDB17" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Ab4B644F6926797B03DB86F7fd004857A6cDB17/logo.png b/blockchains/ethereum/assets/0x2Ab4B644F6926797B03DB86F7fd004857A6cDB17/logo.png new file mode 100644 index 00000000..921f3b91 Binary files /dev/null and b/blockchains/ethereum/assets/0x2Ab4B644F6926797B03DB86F7fd004857A6cDB17/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Ab6Bb8408ca3199B8Fa6C92d5b455F820Af03c4/info.json b/blockchains/ethereum/assets/0x2Ab6Bb8408ca3199B8Fa6C92d5b455F820Af03c4/info.json new file mode 100644 index 00000000..93962203 --- /dev/null +++ b/blockchains/ethereum/assets/0x2Ab6Bb8408ca3199B8Fa6C92d5b455F820Af03c4/info.json @@ -0,0 +1,21 @@ +{ + "name": "TE-FOOD/TustChain", + "website": "https://te-food.com/", + "description": "TE-FOOD aims to enable customers to improve consumer trust and brand exposure, gain deeper supply chain insight to improve their operational efficiency, comply with export regulations, protect their brands against counterfeiting, and perform quicker product recalls. As an end-to-end solution, TE-FOOD offers many components for the complete supply chain to identify tracked items and batches, capture the data, store it on blockchain, process the data, and present it to the consumers.", + "explorer": "https://etherscan.io/token/0x2ab6bb8408ca3199b8fa6c92d5b455f820af03c4", + "type": "ERC20", + "symbol": "TONE", + "decimals": 18, + "status": "active", + "id": "0x2Ab6Bb8408ca3199B8Fa6C92d5b455F820Af03c4", + "links": [ + { + "name": "x", + "url": "https://x.com/TE_FOOD" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/TE_FOOD" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Ab6Bb8408ca3199B8Fa6C92d5b455F820Af03c4/logo.png b/blockchains/ethereum/assets/0x2Ab6Bb8408ca3199B8Fa6C92d5b455F820Af03c4/logo.png new file mode 100644 index 00000000..f90833b1 Binary files /dev/null and b/blockchains/ethereum/assets/0x2Ab6Bb8408ca3199B8Fa6C92d5b455F820Af03c4/logo.png differ diff --git a/blockchains/ethereum/assets/0x2AcF7dB66B767a431acfDfE9F8834DdF5835c53d/info.json b/blockchains/ethereum/assets/0x2AcF7dB66B767a431acfDfE9F8834DdF5835c53d/info.json new file mode 100644 index 00000000..90d6dfeb --- /dev/null +++ b/blockchains/ethereum/assets/0x2AcF7dB66B767a431acfDfE9F8834DdF5835c53d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Global Coin", + "symbol": "GBC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2AcF7dB66B767a431acfDfE9F8834DdF5835c53d", + "status": "abandoned", + "id": "0x2AcF7dB66B767a431acfDfE9F8834DdF5835c53d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2AcF7dB66B767a431acfDfE9F8834DdF5835c53d/logo.png b/blockchains/ethereum/assets/0x2AcF7dB66B767a431acfDfE9F8834DdF5835c53d/logo.png new file mode 100644 index 00000000..f7615999 Binary files /dev/null and b/blockchains/ethereum/assets/0x2AcF7dB66B767a431acfDfE9F8834DdF5835c53d/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Ad128fBEFF2B781D028148DEc82bBe2498Dc08e/info.json b/blockchains/ethereum/assets/0x2Ad128fBEFF2B781D028148DEc82bBe2498Dc08e/info.json new file mode 100644 index 00000000..ca295cca --- /dev/null +++ b/blockchains/ethereum/assets/0x2Ad128fBEFF2B781D028148DEc82bBe2498Dc08e/info.json @@ -0,0 +1,11 @@ +{ + "name": "LIFE", + "symbol": "LIFE", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2Ad128fBEFF2B781D028148DEc82bBe2498Dc08e", + "status": "abandoned", + "id": "0x2Ad128fBEFF2B781D028148DEc82bBe2498Dc08e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Ad128fBEFF2B781D028148DEc82bBe2498Dc08e/logo.png b/blockchains/ethereum/assets/0x2Ad128fBEFF2B781D028148DEc82bBe2498Dc08e/logo.png new file mode 100644 index 00000000..ba87403d Binary files /dev/null and b/blockchains/ethereum/assets/0x2Ad128fBEFF2B781D028148DEc82bBe2498Dc08e/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Ad180cBAFFbc97237F572148Fc1B283b68D8861/info.json b/blockchains/ethereum/assets/0x2Ad180cBAFFbc97237F572148Fc1B283b68D8861/info.json new file mode 100644 index 00000000..dec7832d --- /dev/null +++ b/blockchains/ethereum/assets/0x2Ad180cBAFFbc97237F572148Fc1B283b68D8861/info.json @@ -0,0 +1,11 @@ +{ + "name": "IZX Token", + "symbol": "IZX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2Ad180cBAFFbc97237F572148Fc1B283b68D8861", + "status": "abandoned", + "id": "0x2Ad180cBAFFbc97237F572148Fc1B283b68D8861" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Ad180cBAFFbc97237F572148Fc1B283b68D8861/logo.png b/blockchains/ethereum/assets/0x2Ad180cBAFFbc97237F572148Fc1B283b68D8861/logo.png new file mode 100644 index 00000000..514d62d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x2Ad180cBAFFbc97237F572148Fc1B283b68D8861/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Ad8529dA0488A7C2a1af1E22d1902F7aD2943eB/info.json b/blockchains/ethereum/assets/0x2Ad8529dA0488A7C2a1af1E22d1902F7aD2943eB/info.json new file mode 100644 index 00000000..5129df5a --- /dev/null +++ b/blockchains/ethereum/assets/0x2Ad8529dA0488A7C2a1af1E22d1902F7aD2943eB/info.json @@ -0,0 +1,11 @@ +{ + "name": "BCAChain Initial Token", + "symbol": "BCAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2Ad8529dA0488A7C2a1af1E22d1902F7aD2943eB", + "status": "abandoned", + "id": "0x2Ad8529dA0488A7C2a1af1E22d1902F7aD2943eB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Ad8529dA0488A7C2a1af1E22d1902F7aD2943eB/logo.png b/blockchains/ethereum/assets/0x2Ad8529dA0488A7C2a1af1E22d1902F7aD2943eB/logo.png new file mode 100644 index 00000000..156cdbb7 Binary files /dev/null and b/blockchains/ethereum/assets/0x2Ad8529dA0488A7C2a1af1E22d1902F7aD2943eB/logo.png differ diff --git a/blockchains/ethereum/assets/0x2B143041a6F8BE9dCC66E9110178a264A223A3bd/info.json b/blockchains/ethereum/assets/0x2B143041a6F8BE9dCC66E9110178a264A223A3bd/info.json new file mode 100644 index 00000000..5db99688 --- /dev/null +++ b/blockchains/ethereum/assets/0x2B143041a6F8BE9dCC66E9110178a264A223A3bd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Synth iBTC", + "symbol": "iBTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2B143041a6F8BE9dCC66E9110178a264A223A3bd", + "status": "abandoned", + "id": "0x2B143041a6F8BE9dCC66E9110178a264A223A3bd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2B143041a6F8BE9dCC66E9110178a264A223A3bd/logo.png b/blockchains/ethereum/assets/0x2B143041a6F8BE9dCC66E9110178a264A223A3bd/logo.png new file mode 100644 index 00000000..1e0536b1 Binary files /dev/null and b/blockchains/ethereum/assets/0x2B143041a6F8BE9dCC66E9110178a264A223A3bd/logo.png differ diff --git a/blockchains/ethereum/assets/0x2B1f91AfbAC59FAfB0E5EAa22e0Ff0539E97EBa8/info.json b/blockchains/ethereum/assets/0x2B1f91AfbAC59FAfB0E5EAa22e0Ff0539E97EBa8/info.json new file mode 100644 index 00000000..0be70d56 --- /dev/null +++ b/blockchains/ethereum/assets/0x2B1f91AfbAC59FAfB0E5EAa22e0Ff0539E97EBa8/info.json @@ -0,0 +1,11 @@ +{ + "name": "SKALE", + "symbol": "SKL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2B1f91AfbAC59FAfB0E5EAa22e0Ff0539E97EBa8", + "status": "abandoned", + "id": "0x2B1f91AfbAC59FAfB0E5EAa22e0Ff0539E97EBa8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2B1f91AfbAC59FAfB0E5EAa22e0Ff0539E97EBa8/logo.png b/blockchains/ethereum/assets/0x2B1f91AfbAC59FAfB0E5EAa22e0Ff0539E97EBa8/logo.png new file mode 100644 index 00000000..a2df8e5d Binary files /dev/null and b/blockchains/ethereum/assets/0x2B1f91AfbAC59FAfB0E5EAa22e0Ff0539E97EBa8/logo.png differ diff --git a/blockchains/ethereum/assets/0x2B275c7AeDF32Bc960a15D1eBa71D8a04A86F029/info.json b/blockchains/ethereum/assets/0x2B275c7AeDF32Bc960a15D1eBa71D8a04A86F029/info.json new file mode 100644 index 00000000..41ccfa64 --- /dev/null +++ b/blockchains/ethereum/assets/0x2B275c7AeDF32Bc960a15D1eBa71D8a04A86F029/info.json @@ -0,0 +1,11 @@ +{ + "name": "FunFive", + "website": "https://fun5exchange.com", + "description": "A NEXT GENERATION CRYPTOCURRENCY EXCHANGE FOR ALL GENERATIONS OF TRADERS", + "explorer": "https://etherscan.io/token/0x2B275c7AeDF32Bc960a15D1eBa71D8a04A86F029", + "type": "ERC20", + "symbol": "FFV", + "decimals": 18, + "status": "active", + "id": "0x2B275c7AeDF32Bc960a15D1eBa71D8a04A86F029" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2B275c7AeDF32Bc960a15D1eBa71D8a04A86F029/logo.png b/blockchains/ethereum/assets/0x2B275c7AeDF32Bc960a15D1eBa71D8a04A86F029/logo.png new file mode 100644 index 00000000..68c30eab Binary files /dev/null and b/blockchains/ethereum/assets/0x2B275c7AeDF32Bc960a15D1eBa71D8a04A86F029/logo.png differ diff --git a/blockchains/ethereum/assets/0x2B4395084E1068877502EAD1Ae004094F5A0B88F/info.json b/blockchains/ethereum/assets/0x2B4395084E1068877502EAD1Ae004094F5A0B88F/info.json new file mode 100644 index 00000000..f0120d69 --- /dev/null +++ b/blockchains/ethereum/assets/0x2B4395084E1068877502EAD1Ae004094F5A0B88F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Peer 2 Peer Global Network", + "symbol": "P2P", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2B4395084E1068877502EAD1Ae004094F5A0B88F", + "status": "abandoned", + "id": "0x2B4395084E1068877502EAD1Ae004094F5A0B88F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2B4395084E1068877502EAD1Ae004094F5A0B88F/logo.png b/blockchains/ethereum/assets/0x2B4395084E1068877502EAD1Ae004094F5A0B88F/logo.png new file mode 100644 index 00000000..b3b0a8ce Binary files /dev/null and b/blockchains/ethereum/assets/0x2B4395084E1068877502EAD1Ae004094F5A0B88F/logo.png differ diff --git a/blockchains/ethereum/assets/0x2B757fa0630a4d1f9B01a3765E8fb00ee80a85DD/info.json b/blockchains/ethereum/assets/0x2B757fa0630a4d1f9B01a3765E8fb00ee80a85DD/info.json new file mode 100644 index 00000000..82851781 --- /dev/null +++ b/blockchains/ethereum/assets/0x2B757fa0630a4d1f9B01a3765E8fb00ee80a85DD/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-30/30M60", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2B757fa0630a4d1f9B01a3765E8fb00ee80a85DD", + "status": "abandoned", + "id": "0x2B757fa0630a4d1f9B01a3765E8fb00ee80a85DD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2B757fa0630a4d1f9B01a3765E8fb00ee80a85DD/logo.png b/blockchains/ethereum/assets/0x2B757fa0630a4d1f9B01a3765E8fb00ee80a85DD/logo.png new file mode 100644 index 00000000..4f4a92b2 Binary files /dev/null and b/blockchains/ethereum/assets/0x2B757fa0630a4d1f9B01a3765E8fb00ee80a85DD/logo.png differ diff --git a/blockchains/ethereum/assets/0x2B7727076B9C9B1834a2f95B81f12EEdD30db9f1/info.json b/blockchains/ethereum/assets/0x2B7727076B9C9B1834a2f95B81f12EEdD30db9f1/info.json new file mode 100644 index 00000000..998a2b87 --- /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 00000000..c890935b Binary files /dev/null and b/blockchains/ethereum/assets/0x2B7727076B9C9B1834a2f95B81f12EEdD30db9f1/logo.png differ diff --git a/blockchains/ethereum/assets/0x2B89bF8ba858cd2FCee1faDa378D5cd6936968Be/info.json b/blockchains/ethereum/assets/0x2B89bF8ba858cd2FCee1faDa378D5cd6936968Be/info.json new file mode 100644 index 00000000..ec75522b --- /dev/null +++ b/blockchains/ethereum/assets/0x2B89bF8ba858cd2FCee1faDa378D5cd6936968Be/info.json @@ -0,0 +1,11 @@ +{ + "name": "WSCRT", + "website": "https://scrt.network", + "description": "Secret is the native coin of the Secret Network, a decentralized network for private / secure computation. WSCRT is the wrapped ERC20 version of SCRT which can be exchanged 1:1 on the Secret Network Bridge.", + "explorer": "https://etherscan.io/token/0x2b89bf8ba858cd2fcee1fada378d5cd6936968be", + "type": "ERC20", + "symbol": "WSCRT", + "decimals": 6, + "status": "active", + "id": "0x2B89bF8ba858cd2FCee1faDa378D5cd6936968Be" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2B89bF8ba858cd2FCee1faDa378D5cd6936968Be/logo.png b/blockchains/ethereum/assets/0x2B89bF8ba858cd2FCee1faDa378D5cd6936968Be/logo.png new file mode 100644 index 00000000..32ab2d8a Binary files /dev/null and b/blockchains/ethereum/assets/0x2B89bF8ba858cd2FCee1faDa378D5cd6936968Be/logo.png differ diff --git a/blockchains/ethereum/assets/0x2BDD6c9bf1bf396a37501AAE53751B9946B503Da/info.json b/blockchains/ethereum/assets/0x2BDD6c9bf1bf396a37501AAE53751B9946B503Da/info.json new file mode 100644 index 00000000..58cc7ff4 --- /dev/null +++ b/blockchains/ethereum/assets/0x2BDD6c9bf1bf396a37501AAE53751B9946B503Da/info.json @@ -0,0 +1,11 @@ +{ + "name": "Korea Medical TBA", + "symbol": "KMTBA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2BDD6c9bf1bf396a37501AAE53751B9946B503Da", + "status": "abandoned", + "id": "0x2BDD6c9bf1bf396a37501AAE53751B9946B503Da" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2BDD6c9bf1bf396a37501AAE53751B9946B503Da/logo.png b/blockchains/ethereum/assets/0x2BDD6c9bf1bf396a37501AAE53751B9946B503Da/logo.png new file mode 100644 index 00000000..d5499302 Binary files /dev/null and b/blockchains/ethereum/assets/0x2BDD6c9bf1bf396a37501AAE53751B9946B503Da/logo.png differ diff --git a/blockchains/ethereum/assets/0x2BEDccb60424F73a60474C4f350c023eD4a31044/info.json b/blockchains/ethereum/assets/0x2BEDccb60424F73a60474C4f350c023eD4a31044/info.json new file mode 100644 index 00000000..e4937f03 --- /dev/null +++ b/blockchains/ethereum/assets/0x2BEDccb60424F73a60474C4f350c023eD4a31044/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R906476", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2BEDccb60424F73a60474C4f350c023eD4a31044", + "status": "abandoned", + "id": "0x2BEDccb60424F73a60474C4f350c023eD4a31044" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2BEDccb60424F73a60474C4f350c023eD4a31044/logo.png b/blockchains/ethereum/assets/0x2BEDccb60424F73a60474C4f350c023eD4a31044/logo.png new file mode 100644 index 00000000..d7504748 Binary files /dev/null and b/blockchains/ethereum/assets/0x2BEDccb60424F73a60474C4f350c023eD4a31044/logo.png differ diff --git a/blockchains/ethereum/assets/0x2BF91c18Cd4AE9C2f2858ef9FE518180F7B5096D/info.json b/blockchains/ethereum/assets/0x2BF91c18Cd4AE9C2f2858ef9FE518180F7B5096D/info.json new file mode 100644 index 00000000..2284c6c9 --- /dev/null +++ b/blockchains/ethereum/assets/0x2BF91c18Cd4AE9C2f2858ef9FE518180F7B5096D/info.json @@ -0,0 +1,11 @@ +{ + "name": "KIWI Token", + "symbol": "KIWI", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2BF91c18Cd4AE9C2f2858ef9FE518180F7B5096D", + "status": "abandoned", + "id": "0x2BF91c18Cd4AE9C2f2858ef9FE518180F7B5096D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2BF91c18Cd4AE9C2f2858ef9FE518180F7B5096D/logo.png b/blockchains/ethereum/assets/0x2BF91c18Cd4AE9C2f2858ef9FE518180F7B5096D/logo.png new file mode 100644 index 00000000..b1286d20 Binary files /dev/null and b/blockchains/ethereum/assets/0x2BF91c18Cd4AE9C2f2858ef9FE518180F7B5096D/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Bc7Ff0C5dA9F1a4A51F96e77C5b0F7165DC06d2/info.json b/blockchains/ethereum/assets/0x2Bc7Ff0C5dA9F1a4A51F96e77C5b0F7165DC06d2/info.json new file mode 100644 index 00000000..2183562b --- /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 00000000..963c3714 Binary files /dev/null and b/blockchains/ethereum/assets/0x2Bc7Ff0C5dA9F1a4A51F96e77C5b0F7165DC06d2/logo.png differ diff --git a/blockchains/ethereum/assets/0x2BdA5B625D3b50848E8563480ed50EC782Dd42EE/info.json b/blockchains/ethereum/assets/0x2BdA5B625D3b50848E8563480ed50EC782Dd42EE/info.json new file mode 100644 index 00000000..159522cc --- /dev/null +++ b/blockchains/ethereum/assets/0x2BdA5B625D3b50848E8563480ed50EC782Dd42EE/info.json @@ -0,0 +1,11 @@ +{ + "name": "BetEncore", + "symbol": "BTEN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2BdA5B625D3b50848E8563480ed50EC782Dd42EE", + "status": "abandoned", + "id": "0x2BdA5B625D3b50848E8563480ed50EC782Dd42EE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2BdA5B625D3b50848E8563480ed50EC782Dd42EE/logo.png b/blockchains/ethereum/assets/0x2BdA5B625D3b50848E8563480ed50EC782Dd42EE/logo.png new file mode 100755 index 00000000..810c8683 Binary files /dev/null and b/blockchains/ethereum/assets/0x2BdA5B625D3b50848E8563480ed50EC782Dd42EE/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C05C327dE82fD198b1338DCBF43Af9dbaf1B24F/info.json b/blockchains/ethereum/assets/0x2C05C327dE82fD198b1338DCBF43Af9dbaf1B24F/info.json new file mode 100644 index 00000000..029dbd6d --- /dev/null +++ b/blockchains/ethereum/assets/0x2C05C327dE82fD198b1338DCBF43Af9dbaf1B24F/info.json @@ -0,0 +1,11 @@ +{ + "name": "CHARScoin", + "symbol": "CHARS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.charsproject.io/", + "explorer": "https://etherscan.io/token/0x2C05C327dE82fD198b1338DCBF43Af9dbaf1B24F", + "status": "abandoned", + "id": "0x2C05C327dE82fD198b1338DCBF43Af9dbaf1B24F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C05C327dE82fD198b1338DCBF43Af9dbaf1B24F/logo.png b/blockchains/ethereum/assets/0x2C05C327dE82fD198b1338DCBF43Af9dbaf1B24F/logo.png new file mode 100644 index 00000000..69bfbb67 Binary files /dev/null and b/blockchains/ethereum/assets/0x2C05C327dE82fD198b1338DCBF43Af9dbaf1B24F/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C2FB98d259fbF119222035AD125F5C4eE0D550F/info.json b/blockchains/ethereum/assets/0x2C2FB98d259fbF119222035AD125F5C4eE0D550F/info.json new file mode 100644 index 00000000..36abe213 --- /dev/null +++ b/blockchains/ethereum/assets/0x2C2FB98d259fbF119222035AD125F5C4eE0D550F/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 216-CN04", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2C2FB98d259fbF119222035AD125F5C4eE0D550F", + "status": "abandoned", + "id": "0x2C2FB98d259fbF119222035AD125F5C4eE0D550F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C2FB98d259fbF119222035AD125F5C4eE0D550F/logo.png b/blockchains/ethereum/assets/0x2C2FB98d259fbF119222035AD125F5C4eE0D550F/logo.png new file mode 100644 index 00000000..80a8607c Binary files /dev/null and b/blockchains/ethereum/assets/0x2C2FB98d259fbF119222035AD125F5C4eE0D550F/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C351B6350975F64e45354c842D9F2F7A2508C1F/info.json b/blockchains/ethereum/assets/0x2C351B6350975F64e45354c842D9F2F7A2508C1F/info.json new file mode 100644 index 00000000..ff48c62d --- /dev/null +++ b/blockchains/ethereum/assets/0x2C351B6350975F64e45354c842D9F2F7A2508C1F/info.json @@ -0,0 +1,11 @@ +{ + "name": "ElectroLite Network", + "symbol": "ETL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2C351B6350975F64e45354c842D9F2F7A2508C1F", + "status": "abandoned", + "id": "0x2C351B6350975F64e45354c842D9F2F7A2508C1F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C351B6350975F64e45354c842D9F2F7A2508C1F/logo.png b/blockchains/ethereum/assets/0x2C351B6350975F64e45354c842D9F2F7A2508C1F/logo.png new file mode 100644 index 00000000..6d7adc4d Binary files /dev/null and b/blockchains/ethereum/assets/0x2C351B6350975F64e45354c842D9F2F7A2508C1F/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C36204a0712A2a50E54A62F7c4F01867e78cB53/info.json b/blockchains/ethereum/assets/0x2C36204a0712A2a50E54A62F7c4F01867e78cB53/info.json new file mode 100644 index 00000000..207d32e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x2C36204a0712A2a50E54A62F7c4F01867e78cB53/info.json @@ -0,0 +1,11 @@ +{ + "name": "Taklimakan", + "symbol": "TAN", + "type": "ERC20", + "decimals": 18, + "description": "Taklimakan Network describes itself as an AI and blockchain-based social network platform for crypto-enthusiasts and ordinary users.", + "website": "https://taklimakan.network", + "explorer": "https://etherscan.io/token/0x2C36204a0712A2a50E54A62F7c4F01867e78cB53", + "status": "active", + "id": "0x2C36204a0712A2a50E54A62F7c4F01867e78cB53" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C36204a0712A2a50E54A62F7c4F01867e78cB53/logo.png b/blockchains/ethereum/assets/0x2C36204a0712A2a50E54A62F7c4F01867e78cB53/logo.png new file mode 100644 index 00000000..320928c5 Binary files /dev/null and b/blockchains/ethereum/assets/0x2C36204a0712A2a50E54A62F7c4F01867e78cB53/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C36316D46a59fad9103DEe17F80aE0671A4FE33/info.json b/blockchains/ethereum/assets/0x2C36316D46a59fad9103DEe17F80aE0671A4FE33/info.json new file mode 100644 index 00000000..99c22b27 --- /dev/null +++ b/blockchains/ethereum/assets/0x2C36316D46a59fad9103DEe17F80aE0671A4FE33/info.json @@ -0,0 +1,11 @@ +{ + "name": "REKT", + "symbol": "REKT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2C36316D46a59fad9103DEe17F80aE0671A4FE33", + "status": "abandoned", + "id": "0x2C36316D46a59fad9103DEe17F80aE0671A4FE33" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C36316D46a59fad9103DEe17F80aE0671A4FE33/logo.png b/blockchains/ethereum/assets/0x2C36316D46a59fad9103DEe17F80aE0671A4FE33/logo.png new file mode 100644 index 00000000..ac164634 Binary files /dev/null and b/blockchains/ethereum/assets/0x2C36316D46a59fad9103DEe17F80aE0671A4FE33/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C4d804E27Da8071e4f54A2323d9c6Fc14d7CC46/info.json b/blockchains/ethereum/assets/0x2C4d804E27Da8071e4f54A2323d9c6Fc14d7CC46/info.json new file mode 100644 index 00000000..a85703df --- /dev/null +++ b/blockchains/ethereum/assets/0x2C4d804E27Da8071e4f54A2323d9c6Fc14d7CC46/info.json @@ -0,0 +1,11 @@ +{ + "name": "NasToken", + "symbol": "NAS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2C4d804E27Da8071e4f54A2323d9c6Fc14d7CC46", + "status": "abandoned", + "id": "0x2C4d804E27Da8071e4f54A2323d9c6Fc14d7CC46" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C4d804E27Da8071e4f54A2323d9c6Fc14d7CC46/logo.png b/blockchains/ethereum/assets/0x2C4d804E27Da8071e4f54A2323d9c6Fc14d7CC46/logo.png new file mode 100644 index 00000000..51fd9d6e Binary files /dev/null and b/blockchains/ethereum/assets/0x2C4d804E27Da8071e4f54A2323d9c6Fc14d7CC46/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C4e8f2D746113d0696cE89B35F0d8bF88E0AEcA/info.json b/blockchains/ethereum/assets/0x2C4e8f2D746113d0696cE89B35F0d8bF88E0AEcA/info.json new file mode 100644 index 00000000..3589d393 --- /dev/null +++ b/blockchains/ethereum/assets/0x2C4e8f2D746113d0696cE89B35F0d8bF88E0AEcA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Simple Token", + "symbol": "ST", + "type": "ERC20", + "decimals": 18, + "description": "OST KIT gives you all the tools you need to run your blockchain-powered economy on open scalable sidechains.", + "website": "https://ost.com/", + "explorer": "https://etherscan.io/token/0x2C4e8f2D746113d0696cE89B35F0d8bF88E0AEcA", + "status": "active", + "id": "0x2C4e8f2D746113d0696cE89B35F0d8bF88E0AEcA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C4e8f2D746113d0696cE89B35F0d8bF88E0AEcA/logo.png b/blockchains/ethereum/assets/0x2C4e8f2D746113d0696cE89B35F0d8bF88E0AEcA/logo.png new file mode 100644 index 00000000..c9fec8d3 Binary files /dev/null and b/blockchains/ethereum/assets/0x2C4e8f2D746113d0696cE89B35F0d8bF88E0AEcA/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C537E5624e4af88A7ae4060C022609376C8D0EB/info.json b/blockchains/ethereum/assets/0x2C537E5624e4af88A7ae4060C022609376C8D0EB/info.json new file mode 100644 index 00000000..226aca3f --- /dev/null +++ b/blockchains/ethereum/assets/0x2C537E5624e4af88A7ae4060C022609376C8D0EB/info.json @@ -0,0 +1,11 @@ +{ + "name": "BiLira", + "symbol": "TRYb", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://www.bilira.co/", + "explorer": "https://etherscan.io/token/0x2C537E5624e4af88A7ae4060C022609376C8D0EB", + "status": "abandoned", + "id": "0x2C537E5624e4af88A7ae4060C022609376C8D0EB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C537E5624e4af88A7ae4060C022609376C8D0EB/logo.png b/blockchains/ethereum/assets/0x2C537E5624e4af88A7ae4060C022609376C8D0EB/logo.png new file mode 100644 index 00000000..c5dbc1f3 Binary files /dev/null and b/blockchains/ethereum/assets/0x2C537E5624e4af88A7ae4060C022609376C8D0EB/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C57A7707A367fB2d65e485E9E6a0aa90B79Afc4/info.json b/blockchains/ethereum/assets/0x2C57A7707A367fB2d65e485E9E6a0aa90B79Afc4/info.json new file mode 100644 index 00000000..4a568b57 --- /dev/null +++ b/blockchains/ethereum/assets/0x2C57A7707A367fB2d65e485E9E6a0aa90B79Afc4/info.json @@ -0,0 +1,11 @@ +{ + "name": "QueenXChain", + "symbol": "QXC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2C57A7707A367fB2d65e485E9E6a0aa90B79Afc4", + "status": "abandoned", + "id": "0x2C57A7707A367fB2d65e485E9E6a0aa90B79Afc4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C57A7707A367fB2d65e485E9E6a0aa90B79Afc4/logo.png b/blockchains/ethereum/assets/0x2C57A7707A367fB2d65e485E9E6a0aa90B79Afc4/logo.png new file mode 100644 index 00000000..595ec036 Binary files /dev/null and b/blockchains/ethereum/assets/0x2C57A7707A367fB2d65e485E9E6a0aa90B79Afc4/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C5dcd12141c56FBEa08e95f54f12c8B22d492Eb/info.json b/blockchains/ethereum/assets/0x2C5dcd12141c56FBEa08e95f54f12c8B22d492Eb/info.json new file mode 100644 index 00000000..e3976efc --- /dev/null +++ b/blockchains/ethereum/assets/0x2C5dcd12141c56FBEa08e95f54f12c8B22d492Eb/info.json @@ -0,0 +1,11 @@ +{ + "name": "USDCoin", + "symbol": "USC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2C5dcd12141c56FBEa08e95f54f12c8B22d492Eb", + "status": "abandoned", + "id": "0x2C5dcd12141c56FBEa08e95f54f12c8B22d492Eb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C5dcd12141c56FBEa08e95f54f12c8B22d492Eb/logo.png b/blockchains/ethereum/assets/0x2C5dcd12141c56FBEa08e95f54f12c8B22d492Eb/logo.png new file mode 100644 index 00000000..388fdd46 Binary files /dev/null and b/blockchains/ethereum/assets/0x2C5dcd12141c56FBEa08e95f54f12c8B22d492Eb/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C61c057c4d599F21D11533D321C1D3e25d16AFC/info.json b/blockchains/ethereum/assets/0x2C61c057c4d599F21D11533D321C1D3e25d16AFC/info.json new file mode 100644 index 00000000..9c6fa8a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x2C61c057c4d599F21D11533D321C1D3e25d16AFC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pixie Token", + "symbol": "PXE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2C61c057c4d599F21D11533D321C1D3e25d16AFC", + "status": "abandoned", + "id": "0x2C61c057c4d599F21D11533D321C1D3e25d16AFC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C61c057c4d599F21D11533D321C1D3e25d16AFC/logo.png b/blockchains/ethereum/assets/0x2C61c057c4d599F21D11533D321C1D3e25d16AFC/logo.png new file mode 100755 index 00000000..08674459 Binary files /dev/null and b/blockchains/ethereum/assets/0x2C61c057c4d599F21D11533D321C1D3e25d16AFC/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C66164F7a8564dCAAadcA8319b9f917ac418E4e/info.json b/blockchains/ethereum/assets/0x2C66164F7a8564dCAAadcA8319b9f917ac418E4e/info.json new file mode 100644 index 00000000..194abd50 --- /dev/null +++ b/blockchains/ethereum/assets/0x2C66164F7a8564dCAAadcA8319b9f917ac418E4e/info.json @@ -0,0 +1,11 @@ +{ + "name": "ATBank", + "website": "https://atbankdigital.com/", + "description": "ATBANK DIGITAL under AT GROUP is the world's first bank to use digital banking service. With the motto: “In just a few minutes, with no need for branches or paperwork”, you absolutely do not need to go to the bank, or use any paper for your banking activities. Just open the ATBANK DIGITAL app and use it to complete transactions in just a few seconds. Anytime... Anywhere...", + "explorer": "https://etherscan.io/token/0x2C66164F7a8564dCAAadcA8319b9f917ac418E4e", + "type": "ERC20", + "symbol": "ATB", + "decimals": 18, + "status": "active", + "id": "0x2C66164F7a8564dCAAadcA8319b9f917ac418E4e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C66164F7a8564dCAAadcA8319b9f917ac418E4e/logo.png b/blockchains/ethereum/assets/0x2C66164F7a8564dCAAadcA8319b9f917ac418E4e/logo.png new file mode 100644 index 00000000..cc72069a Binary files /dev/null and b/blockchains/ethereum/assets/0x2C66164F7a8564dCAAadcA8319b9f917ac418E4e/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C6a9A29a5594456DD99f74ff4689D84c57F204C/info.json b/blockchains/ethereum/assets/0x2C6a9A29a5594456DD99f74ff4689D84c57F204C/info.json new file mode 100644 index 00000000..a9e387c0 --- /dev/null +++ b/blockchains/ethereum/assets/0x2C6a9A29a5594456DD99f74ff4689D84c57F204C/info.json @@ -0,0 +1,11 @@ +{ + "name": "HiWallet Digital Asset", + "symbol": "HiWallet", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2C6a9A29a5594456DD99f74ff4689D84c57F204C", + "status": "abandoned", + "id": "0x2C6a9A29a5594456DD99f74ff4689D84c57F204C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C6a9A29a5594456DD99f74ff4689D84c57F204C/logo.png b/blockchains/ethereum/assets/0x2C6a9A29a5594456DD99f74ff4689D84c57F204C/logo.png new file mode 100755 index 00000000..577e6473 Binary files /dev/null and b/blockchains/ethereum/assets/0x2C6a9A29a5594456DD99f74ff4689D84c57F204C/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C82c73d5B34AA015989462b2948cd616a37641F/info.json b/blockchains/ethereum/assets/0x2C82c73d5B34AA015989462b2948cd616a37641F/info.json new file mode 100644 index 00000000..65ab5a26 --- /dev/null +++ b/blockchains/ethereum/assets/0x2C82c73d5B34AA015989462b2948cd616a37641F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Spectre.ai U-Token", + "symbol": "SXUT", + "type": "ERC20", + "decimals": 18, + "description": "Broker-less financial trading platform.", + "website": "http://www.spectre.ai/", + "explorer": "https://etherscan.io/token/0x2C82c73d5B34AA015989462b2948cd616a37641F", + "status": "active", + "id": "0x2C82c73d5B34AA015989462b2948cd616a37641F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C82c73d5B34AA015989462b2948cd616a37641F/logo.png b/blockchains/ethereum/assets/0x2C82c73d5B34AA015989462b2948cd616a37641F/logo.png new file mode 100644 index 00000000..99814fda Binary files /dev/null and b/blockchains/ethereum/assets/0x2C82c73d5B34AA015989462b2948cd616a37641F/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C9023bBc572ff8dc1228c7858A280046Ea8C9E5/info.json b/blockchains/ethereum/assets/0x2C9023bBc572ff8dc1228c7858A280046Ea8C9E5/info.json new file mode 100644 index 00000000..0df68a64 --- /dev/null +++ b/blockchains/ethereum/assets/0x2C9023bBc572ff8dc1228c7858A280046Ea8C9E5/info.json @@ -0,0 +1,11 @@ +{ + "name": "VideoCoin", + "symbol": "VID", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://videocoin.io/", + "explorer": "https://etherscan.io/token/0x2C9023bBc572ff8dc1228c7858A280046Ea8C9E5", + "status": "abandoned", + "id": "0x2C9023bBc572ff8dc1228c7858A280046Ea8C9E5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C9023bBc572ff8dc1228c7858A280046Ea8C9E5/logo.png b/blockchains/ethereum/assets/0x2C9023bBc572ff8dc1228c7858A280046Ea8C9E5/logo.png new file mode 100644 index 00000000..69a9db55 Binary files /dev/null and b/blockchains/ethereum/assets/0x2C9023bBc572ff8dc1228c7858A280046Ea8C9E5/logo.png differ diff --git a/blockchains/ethereum/assets/0x2C974B2d0BA1716E644c1FC59982a89DDD2fF724/info.json b/blockchains/ethereum/assets/0x2C974B2d0BA1716E644c1FC59982a89DDD2fF724/info.json new file mode 100644 index 00000000..3a84b4c8 --- /dev/null +++ b/blockchains/ethereum/assets/0x2C974B2d0BA1716E644c1FC59982a89DDD2fF724/info.json @@ -0,0 +1,11 @@ +{ + "name": "Viberate", + "symbol": "VIB", + "type": "ERC20", + "decimals": 18, + "description": "Viberate is a crowdsourced live music ecosystem and a blockchain-based marketplace where we're matching musicians with event organizers.", + "website": "https://www.viberate.io/", + "explorer": "https://etherscan.io/token/0x2C974B2d0BA1716E644c1FC59982a89DDD2fF724", + "status": "active", + "id": "0x2C974B2d0BA1716E644c1FC59982a89DDD2fF724" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2C974B2d0BA1716E644c1FC59982a89DDD2fF724/logo.png b/blockchains/ethereum/assets/0x2C974B2d0BA1716E644c1FC59982a89DDD2fF724/logo.png new file mode 100644 index 00000000..118600e2 Binary files /dev/null and b/blockchains/ethereum/assets/0x2C974B2d0BA1716E644c1FC59982a89DDD2fF724/logo.png differ diff --git a/blockchains/ethereum/assets/0x2CA06986040D18D80ACD34D0877E66F8e15f12fc/info.json b/blockchains/ethereum/assets/0x2CA06986040D18D80ACD34D0877E66F8e15f12fc/info.json new file mode 100644 index 00000000..b7dbd9e1 --- /dev/null +++ b/blockchains/ethereum/assets/0x2CA06986040D18D80ACD34D0877E66F8e15f12fc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped TenX Pay Token", + "symbol": "WPAY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2CA06986040D18D80ACD34D0877E66F8e15f12fc", + "status": "abandoned", + "id": "0x2CA06986040D18D80ACD34D0877E66F8e15f12fc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2CA06986040D18D80ACD34D0877E66F8e15f12fc/logo.png b/blockchains/ethereum/assets/0x2CA06986040D18D80ACD34D0877E66F8e15f12fc/logo.png new file mode 100644 index 00000000..21935192 Binary files /dev/null and b/blockchains/ethereum/assets/0x2CA06986040D18D80ACD34D0877E66F8e15f12fc/logo.png differ diff --git a/blockchains/ethereum/assets/0x2CC6Ea7c458c9A58a2d721172939415Eb2488cF6/info.json b/blockchains/ethereum/assets/0x2CC6Ea7c458c9A58a2d721172939415Eb2488cF6/info.json new file mode 100644 index 00000000..79fc799a --- /dev/null +++ b/blockchains/ethereum/assets/0x2CC6Ea7c458c9A58a2d721172939415Eb2488cF6/info.json @@ -0,0 +1,11 @@ +{ + "name": "tbriks", + "symbol": "XTBX", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2CC6Ea7c458c9A58a2d721172939415Eb2488cF6", + "status": "abandoned", + "id": "0x2CC6Ea7c458c9A58a2d721172939415Eb2488cF6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2CC6Ea7c458c9A58a2d721172939415Eb2488cF6/logo.png b/blockchains/ethereum/assets/0x2CC6Ea7c458c9A58a2d721172939415Eb2488cF6/logo.png new file mode 100755 index 00000000..cbde2eff Binary files /dev/null and b/blockchains/ethereum/assets/0x2CC6Ea7c458c9A58a2d721172939415Eb2488cF6/logo.png differ diff --git a/blockchains/ethereum/assets/0x2CEC6e153a9C71BC60f6324c45AC70407957A125/info.json b/blockchains/ethereum/assets/0x2CEC6e153a9C71BC60f6324c45AC70407957A125/info.json new file mode 100644 index 00000000..291c0ddb --- /dev/null +++ b/blockchains/ethereum/assets/0x2CEC6e153a9C71BC60f6324c45AC70407957A125/info.json @@ -0,0 +1,11 @@ +{ + "name": "Model Agency Coin", + "symbol": "MACO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2CEC6e153a9C71BC60f6324c45AC70407957A125", + "status": "abandoned", + "id": "0x2CEC6e153a9C71BC60f6324c45AC70407957A125" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2CEC6e153a9C71BC60f6324c45AC70407957A125/logo.png b/blockchains/ethereum/assets/0x2CEC6e153a9C71BC60f6324c45AC70407957A125/logo.png new file mode 100644 index 00000000..f85ec97b Binary files /dev/null and b/blockchains/ethereum/assets/0x2CEC6e153a9C71BC60f6324c45AC70407957A125/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Cc114bbE7b551d62B15C465c7bdCccd9125b182/info.json b/blockchains/ethereum/assets/0x2Cc114bbE7b551d62B15C465c7bdCccd9125b182/info.json new file mode 100644 index 00000000..cffc6bf0 --- /dev/null +++ b/blockchains/ethereum/assets/0x2Cc114bbE7b551d62B15C465c7bdCccd9125b182/info.json @@ -0,0 +1,11 @@ +{ + "name": "IDOLCOIN", + "symbol": "IDOL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2Cc114bbE7b551d62B15C465c7bdCccd9125b182", + "status": "abandoned", + "id": "0x2Cc114bbE7b551d62B15C465c7bdCccd9125b182" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Cc114bbE7b551d62B15C465c7bdCccd9125b182/logo.png b/blockchains/ethereum/assets/0x2Cc114bbE7b551d62B15C465c7bdCccd9125b182/logo.png new file mode 100644 index 00000000..41778565 Binary files /dev/null and b/blockchains/ethereum/assets/0x2Cc114bbE7b551d62B15C465c7bdCccd9125b182/logo.png differ diff --git a/blockchains/ethereum/assets/0x2D033D4CDaFA1b452362a2514Cb619E2F7B3A869/info.json b/blockchains/ethereum/assets/0x2D033D4CDaFA1b452362a2514Cb619E2F7B3A869/info.json new file mode 100644 index 00000000..cd04f667 --- /dev/null +++ b/blockchains/ethereum/assets/0x2D033D4CDaFA1b452362a2514Cb619E2F7B3A869/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C546832", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2D033D4CDaFA1b452362a2514Cb619E2F7B3A869", + "status": "spam", + "id": "0x2D033D4CDaFA1b452362a2514Cb619E2F7B3A869" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2D033D4CDaFA1b452362a2514Cb619E2F7B3A869/logo.png b/blockchains/ethereum/assets/0x2D033D4CDaFA1b452362a2514Cb619E2F7B3A869/logo.png new file mode 100644 index 00000000..2bc2f7eb Binary files /dev/null and b/blockchains/ethereum/assets/0x2D033D4CDaFA1b452362a2514Cb619E2F7B3A869/logo.png differ diff --git a/blockchains/ethereum/assets/0x2D153f2aDCCbe9364F9e4eD5843308AbD0bF93dA/info.json b/blockchains/ethereum/assets/0x2D153f2aDCCbe9364F9e4eD5843308AbD0bF93dA/info.json new file mode 100644 index 00000000..85675540 --- /dev/null +++ b/blockchains/ethereum/assets/0x2D153f2aDCCbe9364F9e4eD5843308AbD0bF93dA/info.json @@ -0,0 +1,11 @@ +{ + "name": "IdealCoin", + "symbol": "IDEAL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2D153f2aDCCbe9364F9e4eD5843308AbD0bF93dA", + "status": "abandoned", + "id": "0x2D153f2aDCCbe9364F9e4eD5843308AbD0bF93dA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2D153f2aDCCbe9364F9e4eD5843308AbD0bF93dA/logo.png b/blockchains/ethereum/assets/0x2D153f2aDCCbe9364F9e4eD5843308AbD0bF93dA/logo.png new file mode 100644 index 00000000..2b313a89 Binary files /dev/null and b/blockchains/ethereum/assets/0x2D153f2aDCCbe9364F9e4eD5843308AbD0bF93dA/logo.png differ diff --git a/blockchains/ethereum/assets/0x2D1F7226Bd1F780AF6B9A49DCC0aE00E8Df4bDEE/info.json b/blockchains/ethereum/assets/0x2D1F7226Bd1F780AF6B9A49DCC0aE00E8Df4bDEE/info.json new file mode 100644 index 00000000..3da1382f --- /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 00000000..75ae30e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x2D1F7226Bd1F780AF6B9A49DCC0aE00E8Df4bDEE/logo.png differ diff --git a/blockchains/ethereum/assets/0x2D3E7D4870a51b918919E7B851FE19983E4c38d5/info.json b/blockchains/ethereum/assets/0x2D3E7D4870a51b918919E7B851FE19983E4c38d5/info.json new file mode 100644 index 00000000..66431965 --- /dev/null +++ b/blockchains/ethereum/assets/0x2D3E7D4870a51b918919E7B851FE19983E4c38d5/info.json @@ -0,0 +1,11 @@ +{ + "name": "UBCoin", + "symbol": "UBC", + "type": "ERC20", + "decimals": 18, + "description": "The Ubcoin is a crypto-goods p2p exchange where anyone can safely and instantly sell any good’s and become a cryptocurrency holder.", + "website": "https://ubcoin.io/", + "explorer": "https://etherscan.io/token/0x2D3E7D4870a51b918919E7B851FE19983E4c38d5", + "status": "active", + "id": "0x2D3E7D4870a51b918919E7B851FE19983E4c38d5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2D3E7D4870a51b918919E7B851FE19983E4c38d5/logo.png b/blockchains/ethereum/assets/0x2D3E7D4870a51b918919E7B851FE19983E4c38d5/logo.png new file mode 100644 index 00000000..e9729854 Binary files /dev/null and b/blockchains/ethereum/assets/0x2D3E7D4870a51b918919E7B851FE19983E4c38d5/logo.png differ diff --git a/blockchains/ethereum/assets/0x2D476A9126D2D4135fB310aCF029F9aAcD4f85a2/info.json b/blockchains/ethereum/assets/0x2D476A9126D2D4135fB310aCF029F9aAcD4f85a2/info.json new file mode 100644 index 00000000..3e2ae5dc --- /dev/null +++ b/blockchains/ethereum/assets/0x2D476A9126D2D4135fB310aCF029F9aAcD4f85a2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Soft Token", + "symbol": "SFT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2D476A9126D2D4135fB310aCF029F9aAcD4f85a2", + "status": "abandoned", + "id": "0x2D476A9126D2D4135fB310aCF029F9aAcD4f85a2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2D476A9126D2D4135fB310aCF029F9aAcD4f85a2/logo.png b/blockchains/ethereum/assets/0x2D476A9126D2D4135fB310aCF029F9aAcD4f85a2/logo.png new file mode 100644 index 00000000..3ae2df33 Binary files /dev/null and b/blockchains/ethereum/assets/0x2D476A9126D2D4135fB310aCF029F9aAcD4f85a2/logo.png differ diff --git a/blockchains/ethereum/assets/0x2D80f5F5328FdcB6ECeb7Cacf5DD8AEDaEC94e20/info.json b/blockchains/ethereum/assets/0x2D80f5F5328FdcB6ECeb7Cacf5DD8AEDaEC94e20/info.json new file mode 100644 index 00000000..1ec5bfec --- /dev/null +++ b/blockchains/ethereum/assets/0x2D80f5F5328FdcB6ECeb7Cacf5DD8AEDaEC94e20/info.json @@ -0,0 +1,11 @@ +{ + "name": "AGA Token", + "symbol": "AGA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2D80f5F5328FdcB6ECeb7Cacf5DD8AEDaEC94e20", + "status": "abandoned", + "id": "0x2D80f5F5328FdcB6ECeb7Cacf5DD8AEDaEC94e20" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2D80f5F5328FdcB6ECeb7Cacf5DD8AEDaEC94e20/logo.png b/blockchains/ethereum/assets/0x2D80f5F5328FdcB6ECeb7Cacf5DD8AEDaEC94e20/logo.png new file mode 100644 index 00000000..8ef144e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x2D80f5F5328FdcB6ECeb7Cacf5DD8AEDaEC94e20/logo.png differ diff --git a/blockchains/ethereum/assets/0x2D8c4F0a1074F9895581b7aa509Bc361fe01F01b/info.json b/blockchains/ethereum/assets/0x2D8c4F0a1074F9895581b7aa509Bc361fe01F01b/info.json new file mode 100644 index 00000000..3c473424 --- /dev/null +++ b/blockchains/ethereum/assets/0x2D8c4F0a1074F9895581b7aa509Bc361fe01F01b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Breast Cancer Awareness Coin", + "symbol": "BRCA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2D8c4F0a1074F9895581b7aa509Bc361fe01F01b", + "status": "abandoned", + "id": "0x2D8c4F0a1074F9895581b7aa509Bc361fe01F01b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2D8c4F0a1074F9895581b7aa509Bc361fe01F01b/logo.png b/blockchains/ethereum/assets/0x2D8c4F0a1074F9895581b7aa509Bc361fe01F01b/logo.png new file mode 100644 index 00000000..85ed4674 Binary files /dev/null and b/blockchains/ethereum/assets/0x2D8c4F0a1074F9895581b7aa509Bc361fe01F01b/logo.png differ diff --git a/blockchains/ethereum/assets/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e/info.json b/blockchains/ethereum/assets/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e/info.json new file mode 100644 index 00000000..52b6aa1e --- /dev/null +++ b/blockchains/ethereum/assets/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e/info.json @@ -0,0 +1,20 @@ +{ + "name": "Melon", + "symbol": "MELON", + "type": "ERC20", + "decimals": 4, + "description": "This is the token sgt_slaughtermelon uses for bonus NFTs, discord access, hypervibes seeding, and other things yet to be devised. For all things sgt_slaughtermelon related, this is the $MELON for fun!", + "website": "https://sgtslaughtermelon.com/art/", + "explorer": "https://etherscan.io/token/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e", + "status": "active", + "id": "0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e", + "links": [ + { + "name": "x", + "url": "https://x.com/sgt_sl8termelon" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e/logo.png b/blockchains/ethereum/assets/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e/logo.png new file mode 100644 index 00000000..32dc752d Binary files /dev/null and b/blockchains/ethereum/assets/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e/logo.png differ diff --git a/blockchains/ethereum/assets/0x2DBd330bC9B7f3A822a9173aB52172BdDDcAcE2A/info.json b/blockchains/ethereum/assets/0x2DBd330bC9B7f3A822a9173aB52172BdDDcAcE2A/info.json new file mode 100644 index 00000000..6b342a67 --- /dev/null +++ b/blockchains/ethereum/assets/0x2DBd330bC9B7f3A822a9173aB52172BdDDcAcE2A/info.json @@ -0,0 +1,25 @@ +{ + "name": "YFED.FINANCE", + "website": "https://yfed.finance/", + "description": "The Yfed Platform will feature two types of Staking. Regular Staking & Fixed Deposit Staking", + "explorer": "https://etherscan.io/token/0x2DBd330bC9B7f3A822a9173aB52172BdDDcAcE2A", + "type": "ERC20", + "symbol": "YFED", + "decimals": 8, + "status": "active", + "id": "0x2DBd330bC9B7f3A822a9173aB52172BdDDcAcE2A", + "links": [ + { + "name": "github", + "url": "https://github.com/yfedfinance" + }, + { + "name": "x", + "url": "https://x.com/FinanceYfed" + }, + { + "name": "telegram", + "url": "https://t.me/YFEDGROUP" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2DBd330bC9B7f3A822a9173aB52172BdDDcAcE2A/logo.png b/blockchains/ethereum/assets/0x2DBd330bC9B7f3A822a9173aB52172BdDDcAcE2A/logo.png new file mode 100644 index 00000000..a0f01f2f Binary files /dev/null and b/blockchains/ethereum/assets/0x2DBd330bC9B7f3A822a9173aB52172BdDDcAcE2A/logo.png differ diff --git a/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/info.json b/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/info.json new file mode 100644 index 00000000..dfb0b3b9 --- /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 00000000..67e5504e Binary files /dev/null and b/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/logo.png differ diff --git a/blockchains/ethereum/assets/0x2DDA85bDb6e977E2637A09913cbE7419429F7819/info.json b/blockchains/ethereum/assets/0x2DDA85bDb6e977E2637A09913cbE7419429F7819/info.json new file mode 100644 index 00000000..8862bd57 --- /dev/null +++ b/blockchains/ethereum/assets/0x2DDA85bDb6e977E2637A09913cbE7419429F7819/info.json @@ -0,0 +1,11 @@ +{ + "name": "PullRug.Run", + "symbol": "PRR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2DDA85bDb6e977E2637A09913cbE7419429F7819", + "status": "abandoned", + "id": "0x2DDA85bDb6e977E2637A09913cbE7419429F7819" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2DDA85bDb6e977E2637A09913cbE7419429F7819/logo.png b/blockchains/ethereum/assets/0x2DDA85bDb6e977E2637A09913cbE7419429F7819/logo.png new file mode 100644 index 00000000..2fcc0c75 Binary files /dev/null and b/blockchains/ethereum/assets/0x2DDA85bDb6e977E2637A09913cbE7419429F7819/logo.png differ diff --git a/blockchains/ethereum/assets/0x2DE4ef1Eb481cF4a7b8C9f88f6D2E47387cFAf5F/info.json b/blockchains/ethereum/assets/0x2DE4ef1Eb481cF4a7b8C9f88f6D2E47387cFAf5F/info.json new file mode 100644 index 00000000..e50588d4 --- /dev/null +++ b/blockchains/ethereum/assets/0x2DE4ef1Eb481cF4a7b8C9f88f6D2E47387cFAf5F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Black", + "symbol": "BLACK", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2DE4ef1Eb481cF4a7b8C9f88f6D2E47387cFAf5F", + "status": "abandoned", + "id": "0x2DE4ef1Eb481cF4a7b8C9f88f6D2E47387cFAf5F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2DE4ef1Eb481cF4a7b8C9f88f6D2E47387cFAf5F/logo.png b/blockchains/ethereum/assets/0x2DE4ef1Eb481cF4a7b8C9f88f6D2E47387cFAf5F/logo.png new file mode 100644 index 00000000..546fc6cb Binary files /dev/null and b/blockchains/ethereum/assets/0x2DE4ef1Eb481cF4a7b8C9f88f6D2E47387cFAf5F/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Da95f7e0093CE7DC9D9BA5f47b655108754B342/info.json b/blockchains/ethereum/assets/0x2Da95f7e0093CE7DC9D9BA5f47b655108754B342/info.json new file mode 100644 index 00000000..e41bb0d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x2Da95f7e0093CE7DC9D9BA5f47b655108754B342/info.json @@ -0,0 +1,11 @@ +{ + "name": "RIN Token", + "symbol": "RIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2Da95f7e0093CE7DC9D9BA5f47b655108754B342", + "status": "abandoned", + "id": "0x2Da95f7e0093CE7DC9D9BA5f47b655108754B342" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Da95f7e0093CE7DC9D9BA5f47b655108754B342/logo.png b/blockchains/ethereum/assets/0x2Da95f7e0093CE7DC9D9BA5f47b655108754B342/logo.png new file mode 100644 index 00000000..7d175298 Binary files /dev/null and b/blockchains/ethereum/assets/0x2Da95f7e0093CE7DC9D9BA5f47b655108754B342/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Df38cA485D01fC15e4FD85847ed26b7EF871c1c/info.json b/blockchains/ethereum/assets/0x2Df38cA485D01fC15e4FD85847ed26b7EF871c1c/info.json new file mode 100644 index 00000000..0bbd531b --- /dev/null +++ b/blockchains/ethereum/assets/0x2Df38cA485D01fC15e4FD85847ed26b7EF871c1c/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares TIPS Bond ETF (Ondo Tokenized)", + "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 00000000..731ceba6 Binary files /dev/null and b/blockchains/ethereum/assets/0x2Df38cA485D01fC15e4FD85847ed26b7EF871c1c/logo.png differ diff --git a/blockchains/ethereum/assets/0x2E2E0a28f6585e895DD646a363BAE29B77B88a31/info.json b/blockchains/ethereum/assets/0x2E2E0a28f6585e895DD646a363BAE29B77B88a31/info.json new file mode 100644 index 00000000..d2aec546 --- /dev/null +++ b/blockchains/ethereum/assets/0x2E2E0a28f6585e895DD646a363BAE29B77B88a31/info.json @@ -0,0 +1,11 @@ +{ + "name": "Volume Network Token", + "symbol": "VOL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://volumenetwork.io/", + "explorer": "https://etherscan.io/token/0x2E2E0a28f6585e895DD646a363BAE29B77B88a31", + "status": "abandoned", + "id": "0x2E2E0a28f6585e895DD646a363BAE29B77B88a31" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2E2E0a28f6585e895DD646a363BAE29B77B88a31/logo.png b/blockchains/ethereum/assets/0x2E2E0a28f6585e895DD646a363BAE29B77B88a31/logo.png new file mode 100644 index 00000000..58d4fd52 Binary files /dev/null and b/blockchains/ethereum/assets/0x2E2E0a28f6585e895DD646a363BAE29B77B88a31/logo.png differ diff --git a/blockchains/ethereum/assets/0x2E49Da393831df8aB3F3ee16dAe7bCe0e63EA77B/info.json b/blockchains/ethereum/assets/0x2E49Da393831df8aB3F3ee16dAe7bCe0e63EA77B/info.json new file mode 100644 index 00000000..b01de6cf --- /dev/null +++ b/blockchains/ethereum/assets/0x2E49Da393831df8aB3F3ee16dAe7bCe0e63EA77B/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R805716", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2E49Da393831df8aB3F3ee16dAe7bCe0e63EA77B", + "status": "abandoned", + "id": "0x2E49Da393831df8aB3F3ee16dAe7bCe0e63EA77B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2E49Da393831df8aB3F3ee16dAe7bCe0e63EA77B/logo.png b/blockchains/ethereum/assets/0x2E49Da393831df8aB3F3ee16dAe7bCe0e63EA77B/logo.png new file mode 100644 index 00000000..d4169741 Binary files /dev/null and b/blockchains/ethereum/assets/0x2E49Da393831df8aB3F3ee16dAe7bCe0e63EA77B/logo.png differ diff --git a/blockchains/ethereum/assets/0x2E65E12b5f0fD1D58738c6F38dA7D57F5F183d1c/info.json b/blockchains/ethereum/assets/0x2E65E12b5f0fD1D58738c6F38dA7D57F5F183d1c/info.json new file mode 100644 index 00000000..116d479e --- /dev/null +++ b/blockchains/ethereum/assets/0x2E65E12b5f0fD1D58738c6F38dA7D57F5F183d1c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tepleton", + "symbol": "TEP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://www.tepleton.io/", + "explorer": "https://etherscan.io/token/0x2E65E12b5f0fD1D58738c6F38dA7D57F5F183d1c", + "status": "abandoned", + "id": "0x2E65E12b5f0fD1D58738c6F38dA7D57F5F183d1c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2E65E12b5f0fD1D58738c6F38dA7D57F5F183d1c/logo.png b/blockchains/ethereum/assets/0x2E65E12b5f0fD1D58738c6F38dA7D57F5F183d1c/logo.png new file mode 100644 index 00000000..006f9199 Binary files /dev/null and b/blockchains/ethereum/assets/0x2E65E12b5f0fD1D58738c6F38dA7D57F5F183d1c/logo.png differ diff --git a/blockchains/ethereum/assets/0x2E68dfB3f50Ea302c88F8dB74096D57565D9970a/info.json b/blockchains/ethereum/assets/0x2E68dfB3f50Ea302c88F8dB74096D57565D9970a/info.json new file mode 100644 index 00000000..15fbede8 --- /dev/null +++ b/blockchains/ethereum/assets/0x2E68dfB3f50Ea302c88F8dB74096D57565D9970a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Amino Intelligent Network", + "symbol": "AMIO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.amino.world/", + "explorer": "https://etherscan.io/token/0x2E68dfB3f50Ea302c88F8dB74096D57565D9970a", + "status": "abandoned", + "id": "0x2E68dfB3f50Ea302c88F8dB74096D57565D9970a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2E68dfB3f50Ea302c88F8dB74096D57565D9970a/logo.png b/blockchains/ethereum/assets/0x2E68dfB3f50Ea302c88F8dB74096D57565D9970a/logo.png new file mode 100644 index 00000000..ab5fd354 Binary files /dev/null and b/blockchains/ethereum/assets/0x2E68dfB3f50Ea302c88F8dB74096D57565D9970a/logo.png differ diff --git a/blockchains/ethereum/assets/0x2E84df8BA0C87670A7073689aA94e7F1d2d85970/info.json b/blockchains/ethereum/assets/0x2E84df8BA0C87670A7073689aA94e7F1d2d85970/info.json new file mode 100644 index 00000000..2ab150c0 --- /dev/null +++ b/blockchains/ethereum/assets/0x2E84df8BA0C87670A7073689aA94e7F1d2d85970/info.json @@ -0,0 +1,11 @@ +{ + "name": "EXNCE", + "symbol": "XNC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2E84df8BA0C87670A7073689aA94e7F1d2d85970", + "status": "abandoned", + "id": "0x2E84df8BA0C87670A7073689aA94e7F1d2d85970" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2E84df8BA0C87670A7073689aA94e7F1d2d85970/logo.png b/blockchains/ethereum/assets/0x2E84df8BA0C87670A7073689aA94e7F1d2d85970/logo.png new file mode 100644 index 00000000..2cf328dc Binary files /dev/null and b/blockchains/ethereum/assets/0x2E84df8BA0C87670A7073689aA94e7F1d2d85970/logo.png differ diff --git a/blockchains/ethereum/assets/0x2E9036cf5EeC2d39F1E29E13743929c069238a6d/info.json b/blockchains/ethereum/assets/0x2E9036cf5EeC2d39F1E29E13743929c069238a6d/info.json new file mode 100644 index 00000000..fcd141c2 --- /dev/null +++ b/blockchains/ethereum/assets/0x2E9036cf5EeC2d39F1E29E13743929c069238a6d/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR 2000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2E9036cf5EeC2d39F1E29E13743929c069238a6d", + "status": "abandoned", + "id": "0x2E9036cf5EeC2d39F1E29E13743929c069238a6d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2E9036cf5EeC2d39F1E29E13743929c069238a6d/logo.png b/blockchains/ethereum/assets/0x2E9036cf5EeC2d39F1E29E13743929c069238a6d/logo.png new file mode 100644 index 00000000..094e8c7d Binary files /dev/null and b/blockchains/ethereum/assets/0x2E9036cf5EeC2d39F1E29E13743929c069238a6d/logo.png differ diff --git a/blockchains/ethereum/assets/0x2E95Cea14dd384429EB3c4331B776c4CFBB6FCD9/info.json b/blockchains/ethereum/assets/0x2E95Cea14dd384429EB3c4331B776c4CFBB6FCD9/info.json new file mode 100644 index 00000000..6e15963c --- /dev/null +++ b/blockchains/ethereum/assets/0x2E95Cea14dd384429EB3c4331B776c4CFBB6FCD9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Throne", + "type": "ERC20", + "symbol": "THN", + "decimals": 18, + "website": "https://www.thr.one", + "description": "Throne has developed an exciting and disruptive blockchain technology that will transform our relationship to content and empower content creators like never before.", + "explorer": "https://etherscan.io/token/0x2e95cea14dd384429eb3c4331b776c4cfbb6fcd9", + "status": "active", + "id": "0x2E95Cea14dd384429EB3c4331B776c4CFBB6FCD9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2E95Cea14dd384429EB3c4331B776c4CFBB6FCD9/logo.png b/blockchains/ethereum/assets/0x2E95Cea14dd384429EB3c4331B776c4CFBB6FCD9/logo.png new file mode 100644 index 00000000..50caacd4 Binary files /dev/null and b/blockchains/ethereum/assets/0x2E95Cea14dd384429EB3c4331B776c4CFBB6FCD9/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Eb047352BD8F2C6cAded05c0e264BDF770de5d6/info.json b/blockchains/ethereum/assets/0x2Eb047352BD8F2C6cAded05c0e264BDF770de5d6/info.json new file mode 100644 index 00000000..3d4eb9e3 --- /dev/null +++ b/blockchains/ethereum/assets/0x2Eb047352BD8F2C6cAded05c0e264BDF770de5d6/info.json @@ -0,0 +1,11 @@ +{ + "name": "AMAS TOKEN", + "symbol": "AMAS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2Eb047352BD8F2C6cAded05c0e264BDF770de5d6", + "status": "abandoned", + "id": "0x2Eb047352BD8F2C6cAded05c0e264BDF770de5d6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Eb047352BD8F2C6cAded05c0e264BDF770de5d6/logo.png b/blockchains/ethereum/assets/0x2Eb047352BD8F2C6cAded05c0e264BDF770de5d6/logo.png new file mode 100644 index 00000000..5b7af4b7 Binary files /dev/null and b/blockchains/ethereum/assets/0x2Eb047352BD8F2C6cAded05c0e264BDF770de5d6/logo.png differ diff --git a/blockchains/ethereum/assets/0x2EbfCA85B9a34085AF1988e989324E7fdb8A6d19/info.json b/blockchains/ethereum/assets/0x2EbfCA85B9a34085AF1988e989324E7fdb8A6d19/info.json new file mode 100644 index 00000000..bf820d06 --- /dev/null +++ b/blockchains/ethereum/assets/0x2EbfCA85B9a34085AF1988e989324E7fdb8A6d19/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 207-CN03", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2EbfCA85B9a34085AF1988e989324E7fdb8A6d19", + "status": "abandoned", + "id": "0x2EbfCA85B9a34085AF1988e989324E7fdb8A6d19" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2EbfCA85B9a34085AF1988e989324E7fdb8A6d19/logo.png b/blockchains/ethereum/assets/0x2EbfCA85B9a34085AF1988e989324E7fdb8A6d19/logo.png new file mode 100644 index 00000000..4d52bd06 Binary files /dev/null and b/blockchains/ethereum/assets/0x2EbfCA85B9a34085AF1988e989324E7fdb8A6d19/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Ec62769e99b382fC6308e840762a039f6507845/info.json b/blockchains/ethereum/assets/0x2Ec62769e99b382fC6308e840762a039f6507845/info.json new file mode 100644 index 00000000..91e45848 --- /dev/null +++ b/blockchains/ethereum/assets/0x2Ec62769e99b382fC6308e840762a039f6507845/info.json @@ -0,0 +1,11 @@ +{ + "name": "BCTOKEN", + "symbol": "BCTOKEN", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2Ec62769e99b382fC6308e840762a039f6507845", + "status": "abandoned", + "id": "0x2Ec62769e99b382fC6308e840762a039f6507845" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Ec62769e99b382fC6308e840762a039f6507845/logo.png b/blockchains/ethereum/assets/0x2Ec62769e99b382fC6308e840762a039f6507845/logo.png new file mode 100644 index 00000000..aee80ad9 Binary files /dev/null and b/blockchains/ethereum/assets/0x2Ec62769e99b382fC6308e840762a039f6507845/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Ed07A2fCaEDe25871c4814e1361fc20353F40B3/info.json b/blockchains/ethereum/assets/0x2Ed07A2fCaEDe25871c4814e1361fc20353F40B3/info.json new file mode 100644 index 00000000..8f986b42 --- /dev/null +++ b/blockchains/ethereum/assets/0x2Ed07A2fCaEDe25871c4814e1361fc20353F40B3/info.json @@ -0,0 +1,11 @@ +{ + "name": "coinwhitebook", + "symbol": "CWB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2Ed07A2fCaEDe25871c4814e1361fc20353F40B3", + "status": "abandoned", + "id": "0x2Ed07A2fCaEDe25871c4814e1361fc20353F40B3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Ed07A2fCaEDe25871c4814e1361fc20353F40B3/logo.png b/blockchains/ethereum/assets/0x2Ed07A2fCaEDe25871c4814e1361fc20353F40B3/logo.png new file mode 100644 index 00000000..cf22770b Binary files /dev/null and b/blockchains/ethereum/assets/0x2Ed07A2fCaEDe25871c4814e1361fc20353F40B3/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Ef27BF41236bD859a95209e17a43Fbd26851f92/info.json b/blockchains/ethereum/assets/0x2Ef27BF41236bD859a95209e17a43Fbd26851f92/info.json new file mode 100644 index 00000000..322c2ce9 --- /dev/null +++ b/blockchains/ethereum/assets/0x2Ef27BF41236bD859a95209e17a43Fbd26851f92/info.json @@ -0,0 +1,11 @@ +{ + "name": "MORPH", + "symbol": "MORPH", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2Ef27BF41236bD859a95209e17a43Fbd26851f92", + "status": "abandoned", + "id": "0x2Ef27BF41236bD859a95209e17a43Fbd26851f92" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Ef27BF41236bD859a95209e17a43Fbd26851f92/logo.png b/blockchains/ethereum/assets/0x2Ef27BF41236bD859a95209e17a43Fbd26851f92/logo.png new file mode 100755 index 00000000..bbbfb71f Binary files /dev/null and b/blockchains/ethereum/assets/0x2Ef27BF41236bD859a95209e17a43Fbd26851f92/logo.png differ diff --git a/blockchains/ethereum/assets/0x2F109021aFe75B949429fe30523Ee7C0D5B27207/info.json b/blockchains/ethereum/assets/0x2F109021aFe75B949429fe30523Ee7C0D5B27207/info.json new file mode 100644 index 00000000..0a0cf1bc --- /dev/null +++ b/blockchains/ethereum/assets/0x2F109021aFe75B949429fe30523Ee7C0D5B27207/info.json @@ -0,0 +1,11 @@ +{ + "name": "Occam.Fi", + "symbol": "OCC", + "type": "ERC20", + "decimals": 18, + "description": "We are a team of technologists, olympiad winners mathematicians, reputable bankers, and eminent financial economists who came together with the goal of building next-generation DeFi applications on Cardano, that scale to accommodate the next wave of adoption.", + "website": "https://occam.fi", + "explorer": "https://etherscan.io/token/0x2F109021aFe75B949429fe30523Ee7C0D5B27207", + "status": "active", + "id": "0x2F109021aFe75B949429fe30523Ee7C0D5B27207" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2F109021aFe75B949429fe30523Ee7C0D5B27207/logo.png b/blockchains/ethereum/assets/0x2F109021aFe75B949429fe30523Ee7C0D5B27207/logo.png new file mode 100644 index 00000000..0e67477b Binary files /dev/null and b/blockchains/ethereum/assets/0x2F109021aFe75B949429fe30523Ee7C0D5B27207/logo.png differ diff --git a/blockchains/ethereum/assets/0x2F141Ce366a2462f02cEA3D12CF93E4DCa49e4Fd/info.json b/blockchains/ethereum/assets/0x2F141Ce366a2462f02cEA3D12CF93E4DCa49e4Fd/info.json new file mode 100644 index 00000000..654b9dc4 --- /dev/null +++ b/blockchains/ethereum/assets/0x2F141Ce366a2462f02cEA3D12CF93E4DCa49e4Fd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Free Coin", + "symbol": "FREE", + "type": "ERC20", + "decimals": 18, + "description": "Social project to promote cryptocurrency usage and increase global wealth.", + "website": "https://www.FREEcoin.technology", + "explorer": "https://etherscan.io/token/0x2F141Ce366a2462f02cEA3D12CF93E4DCa49e4Fd", + "status": "active", + "id": "0x2F141Ce366a2462f02cEA3D12CF93E4DCa49e4Fd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2F141Ce366a2462f02cEA3D12CF93E4DCa49e4Fd/logo.png b/blockchains/ethereum/assets/0x2F141Ce366a2462f02cEA3D12CF93E4DCa49e4Fd/logo.png new file mode 100644 index 00000000..07f29efe Binary files /dev/null and b/blockchains/ethereum/assets/0x2F141Ce366a2462f02cEA3D12CF93E4DCa49e4Fd/logo.png differ diff --git a/blockchains/ethereum/assets/0x2F2e4b09B99fbf018F600e031aAfD9Da6347Cc75/info.json b/blockchains/ethereum/assets/0x2F2e4b09B99fbf018F600e031aAfD9Da6347Cc75/info.json new file mode 100644 index 00000000..9143cc6d --- /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 00000000..69da34d6 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 00000000..115cc301 --- /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 00000000..c90c1f19 Binary files /dev/null and b/blockchains/ethereum/assets/0x2F42b7d686ca3EffC69778B6ED8493A7787b4d6E/logo.png differ diff --git a/blockchains/ethereum/assets/0x2F6081E3552b1c86cE4479B80062A1ddA8EF23E3/info.json b/blockchains/ethereum/assets/0x2F6081E3552b1c86cE4479B80062A1ddA8EF23E3/info.json new file mode 100644 index 00000000..2f721164 --- /dev/null +++ b/blockchains/ethereum/assets/0x2F6081E3552b1c86cE4479B80062A1ddA8EF23E3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dollars", + "website": "https://dollarprotocol.com", + "description": "Dollar Protocol is a suite of algorithmic synthetics governed by Share", + "explorer": "https://etherscan.io/token/0x2F6081E3552b1c86cE4479B80062A1ddA8EF23E3", + "type": "ERC20", + "symbol": "USDx", + "decimals": 9, + "status": "active", + "id": "0x2F6081E3552b1c86cE4479B80062A1ddA8EF23E3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2F6081E3552b1c86cE4479B80062A1ddA8EF23E3/logo.png b/blockchains/ethereum/assets/0x2F6081E3552b1c86cE4479B80062A1ddA8EF23E3/logo.png new file mode 100644 index 00000000..228498bd Binary files /dev/null and b/blockchains/ethereum/assets/0x2F6081E3552b1c86cE4479B80062A1ddA8EF23E3/logo.png differ diff --git a/blockchains/ethereum/assets/0x2F6f9Ae909c1279f4281D0a7cd6fa146c949fC93/info.json b/blockchains/ethereum/assets/0x2F6f9Ae909c1279f4281D0a7cd6fa146c949fC93/info.json new file mode 100644 index 00000000..4b3de762 --- /dev/null +++ b/blockchains/ethereum/assets/0x2F6f9Ae909c1279f4281D0a7cd6fa146c949fC93/info.json @@ -0,0 +1,11 @@ +{ + "name": "Britency", + "symbol": "BRI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2F6f9Ae909c1279f4281D0a7cd6fa146c949fC93", + "status": "abandoned", + "id": "0x2F6f9Ae909c1279f4281D0a7cd6fa146c949fC93" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2F6f9Ae909c1279f4281D0a7cd6fa146c949fC93/logo.png b/blockchains/ethereum/assets/0x2F6f9Ae909c1279f4281D0a7cd6fa146c949fC93/logo.png new file mode 100644 index 00000000..23f7edb7 Binary files /dev/null and b/blockchains/ethereum/assets/0x2F6f9Ae909c1279f4281D0a7cd6fa146c949fC93/logo.png differ diff --git a/blockchains/ethereum/assets/0x2F78eb502DafaefBCc4bEaaC969ffF2aCf9b39A9/info.json b/blockchains/ethereum/assets/0x2F78eb502DafaefBCc4bEaaC969ffF2aCf9b39A9/info.json new file mode 100644 index 00000000..96672f49 --- /dev/null +++ b/blockchains/ethereum/assets/0x2F78eb502DafaefBCc4bEaaC969ffF2aCf9b39A9/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-3/30M3", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2F78eb502DafaefBCc4bEaaC969ffF2aCf9b39A9", + "status": "abandoned", + "id": "0x2F78eb502DafaefBCc4bEaaC969ffF2aCf9b39A9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2F78eb502DafaefBCc4bEaaC969ffF2aCf9b39A9/logo.png b/blockchains/ethereum/assets/0x2F78eb502DafaefBCc4bEaaC969ffF2aCf9b39A9/logo.png new file mode 100644 index 00000000..468ac1aa Binary files /dev/null and b/blockchains/ethereum/assets/0x2F78eb502DafaefBCc4bEaaC969ffF2aCf9b39A9/logo.png differ diff --git a/blockchains/ethereum/assets/0x2F83750F3F3a2295adE99E897a7FCbc099bd56c2/info.json b/blockchains/ethereum/assets/0x2F83750F3F3a2295adE99E897a7FCbc099bd56c2/info.json new file mode 100644 index 00000000..d295dd2f --- /dev/null +++ b/blockchains/ethereum/assets/0x2F83750F3F3a2295adE99E897a7FCbc099bd56c2/info.json @@ -0,0 +1,11 @@ +{ + "name": "AICT", + "symbol": "AICT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2F83750F3F3a2295adE99E897a7FCbc099bd56c2", + "status": "spam", + "id": "0x2F83750F3F3a2295adE99E897a7FCbc099bd56c2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2F83750F3F3a2295adE99E897a7FCbc099bd56c2/logo.png b/blockchains/ethereum/assets/0x2F83750F3F3a2295adE99E897a7FCbc099bd56c2/logo.png new file mode 100644 index 00000000..b747f15e Binary files /dev/null and b/blockchains/ethereum/assets/0x2F83750F3F3a2295adE99E897a7FCbc099bd56c2/logo.png differ diff --git a/blockchains/ethereum/assets/0x2F8EF85b43Df8Aa5B2096Ef090B00266CE714d72/info.json b/blockchains/ethereum/assets/0x2F8EF85b43Df8Aa5B2096Ef090B00266CE714d72/info.json new file mode 100644 index 00000000..c48ec090 --- /dev/null +++ b/blockchains/ethereum/assets/0x2F8EF85b43Df8Aa5B2096Ef090B00266CE714d72/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-9/30M9", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2F8EF85b43Df8Aa5B2096Ef090B00266CE714d72", + "status": "spam", + "id": "0x2F8EF85b43Df8Aa5B2096Ef090B00266CE714d72" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2F8EF85b43Df8Aa5B2096Ef090B00266CE714d72/logo.png b/blockchains/ethereum/assets/0x2F8EF85b43Df8Aa5B2096Ef090B00266CE714d72/logo.png new file mode 100644 index 00000000..24e92a9c Binary files /dev/null and b/blockchains/ethereum/assets/0x2F8EF85b43Df8Aa5B2096Ef090B00266CE714d72/logo.png differ diff --git a/blockchains/ethereum/assets/0x2F9b6779c37DF5707249eEb3734BbfC94763fBE2/info.json b/blockchains/ethereum/assets/0x2F9b6779c37DF5707249eEb3734BbfC94763fBE2/info.json new file mode 100644 index 00000000..bd389bbd --- /dev/null +++ b/blockchains/ethereum/assets/0x2F9b6779c37DF5707249eEb3734BbfC94763fBE2/info.json @@ -0,0 +1,11 @@ +{ + "name": "CrowdWizToken", + "symbol": "WIZ", + "type": "ERC20", + "decimals": 18, + "description": "Obtain a smooth access to the full consistent chronology of your own votes and activities, as well as the votes and activities of other CrowdWiz-ers.", + "website": "https://crowdwiz.io/", + "explorer": "https://etherscan.io/token/0x2F9b6779c37DF5707249eEb3734BbfC94763fBE2", + "status": "active", + "id": "0x2F9b6779c37DF5707249eEb3734BbfC94763fBE2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2F9b6779c37DF5707249eEb3734BbfC94763fBE2/logo.png b/blockchains/ethereum/assets/0x2F9b6779c37DF5707249eEb3734BbfC94763fBE2/logo.png new file mode 100644 index 00000000..8a5cda31 Binary files /dev/null and b/blockchains/ethereum/assets/0x2F9b6779c37DF5707249eEb3734BbfC94763fBE2/logo.png differ diff --git a/blockchains/ethereum/assets/0x2FA32a39fc1c399E0Cc7B2935868f5165De7cE97/info.json b/blockchains/ethereum/assets/0x2FA32a39fc1c399E0Cc7B2935868f5165De7cE97/info.json new file mode 100644 index 00000000..ee6b36e4 --- /dev/null +++ b/blockchains/ethereum/assets/0x2FA32a39fc1c399E0Cc7B2935868f5165De7cE97/info.json @@ -0,0 +1,11 @@ +{ + "name": "PayFair Token", + "symbol": "PFR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2FA32a39fc1c399E0Cc7B2935868f5165De7cE97", + "status": "abandoned", + "id": "0x2FA32a39fc1c399E0Cc7B2935868f5165De7cE97" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2FA32a39fc1c399E0Cc7B2935868f5165De7cE97/logo.png b/blockchains/ethereum/assets/0x2FA32a39fc1c399E0Cc7B2935868f5165De7cE97/logo.png new file mode 100644 index 00000000..261396ec Binary files /dev/null and b/blockchains/ethereum/assets/0x2FA32a39fc1c399E0Cc7B2935868f5165De7cE97/logo.png differ diff --git a/blockchains/ethereum/assets/0x2FE3e4b2237bAF11ABd6Ca467f312C361Ac1c601/info.json b/blockchains/ethereum/assets/0x2FE3e4b2237bAF11ABd6Ca467f312C361Ac1c601/info.json new file mode 100644 index 00000000..505131f9 --- /dev/null +++ b/blockchains/ethereum/assets/0x2FE3e4b2237bAF11ABd6Ca467f312C361Ac1c601/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tyche Chip", + "symbol": "TCH", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2FE3e4b2237bAF11ABd6Ca467f312C361Ac1c601", + "status": "abandoned", + "id": "0x2FE3e4b2237bAF11ABd6Ca467f312C361Ac1c601" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2FE3e4b2237bAF11ABd6Ca467f312C361Ac1c601/logo.png b/blockchains/ethereum/assets/0x2FE3e4b2237bAF11ABd6Ca467f312C361Ac1c601/logo.png new file mode 100644 index 00000000..db60e41f Binary files /dev/null and b/blockchains/ethereum/assets/0x2FE3e4b2237bAF11ABd6Ca467f312C361Ac1c601/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Fb12bccF6f5Dd338b76Be784A93ade072425690/info.json b/blockchains/ethereum/assets/0x2Fb12bccF6f5Dd338b76Be784A93ade072425690/info.json new file mode 100644 index 00000000..8a04e7eb --- /dev/null +++ b/blockchains/ethereum/assets/0x2Fb12bccF6f5Dd338b76Be784A93ade072425690/info.json @@ -0,0 +1,11 @@ +{ + "name": "BEAT", + "symbol": "BEAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://beat.org/", + "explorer": "https://etherscan.io/token/0x2Fb12bccF6f5Dd338b76Be784A93ade072425690", + "status": "abandoned", + "id": "0x2Fb12bccF6f5Dd338b76Be784A93ade072425690" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Fb12bccF6f5Dd338b76Be784A93ade072425690/logo.png b/blockchains/ethereum/assets/0x2Fb12bccF6f5Dd338b76Be784A93ade072425690/logo.png new file mode 100644 index 00000000..a0214a45 Binary files /dev/null and b/blockchains/ethereum/assets/0x2Fb12bccF6f5Dd338b76Be784A93ade072425690/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Fc246aA66F0da5bB1368F688548ecBBE9bdee5d/info.json b/blockchains/ethereum/assets/0x2Fc246aA66F0da5bB1368F688548ecBBE9bdee5d/info.json new file mode 100644 index 00000000..ca7774d6 --- /dev/null +++ b/blockchains/ethereum/assets/0x2Fc246aA66F0da5bB1368F688548ecBBE9bdee5d/info.json @@ -0,0 +1,11 @@ +{ + "name": "TEMCO", + "symbol": "TEMCO", + "type": "ERC20", + "decimals": 18, + "description": "TEMCO is the world's first Bitcoin Smart Contract (RSK) based supply chain data platform. TEMCO connects isolated supply chain data and offers business and consumer services.", + "website": "https://www.temco.io/", + "explorer": "https://etherscan.io/token/0x2Fc246aA66F0da5bB1368F688548ecBBE9bdee5d", + "status": "active", + "id": "0x2Fc246aA66F0da5bB1368F688548ecBBE9bdee5d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Fc246aA66F0da5bB1368F688548ecBBE9bdee5d/logo.png b/blockchains/ethereum/assets/0x2Fc246aA66F0da5bB1368F688548ecBBE9bdee5d/logo.png new file mode 100644 index 00000000..2f96fe0f Binary files /dev/null and b/blockchains/ethereum/assets/0x2Fc246aA66F0da5bB1368F688548ecBBE9bdee5d/logo.png differ diff --git a/blockchains/ethereum/assets/0x2Feb105FBb4c922597b125C56822B3db7351B55d/info.json b/blockchains/ethereum/assets/0x2Feb105FBb4c922597b125C56822B3db7351B55d/info.json new file mode 100644 index 00000000..8a896315 --- /dev/null +++ b/blockchains/ethereum/assets/0x2Feb105FBb4c922597b125C56822B3db7351B55d/info.json @@ -0,0 +1,11 @@ +{ + "name": "ABSTRACT", + "symbol": "ABST", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2Feb105FBb4c922597b125C56822B3db7351B55d", + "status": "abandoned", + "id": "0x2Feb105FBb4c922597b125C56822B3db7351B55d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2Feb105FBb4c922597b125C56822B3db7351B55d/logo.png b/blockchains/ethereum/assets/0x2Feb105FBb4c922597b125C56822B3db7351B55d/logo.png new file mode 100644 index 00000000..bde466c7 Binary files /dev/null and b/blockchains/ethereum/assets/0x2Feb105FBb4c922597b125C56822B3db7351B55d/logo.png differ diff --git a/blockchains/ethereum/assets/0x2a093BcF0C98Ef744Bb6F69D74f2F85605324290/info.json b/blockchains/ethereum/assets/0x2a093BcF0C98Ef744Bb6F69D74f2F85605324290/info.json new file mode 100644 index 00000000..52211106 --- /dev/null +++ b/blockchains/ethereum/assets/0x2a093BcF0C98Ef744Bb6F69D74f2F85605324290/info.json @@ -0,0 +1,11 @@ +{ + "name": "FoodCoin", + "symbol": "FOOD", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.foodcoin.io/", + "explorer": "https://etherscan.io/token/0x2a093BcF0C98Ef744Bb6F69D74f2F85605324290", + "status": "abandoned", + "id": "0x2a093BcF0C98Ef744Bb6F69D74f2F85605324290" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2a093BcF0C98Ef744Bb6F69D74f2F85605324290/logo.png b/blockchains/ethereum/assets/0x2a093BcF0C98Ef744Bb6F69D74f2F85605324290/logo.png new file mode 100644 index 00000000..e631a9ba Binary files /dev/null and b/blockchains/ethereum/assets/0x2a093BcF0C98Ef744Bb6F69D74f2F85605324290/logo.png differ diff --git a/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/info.json b/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/info.json new file mode 100644 index 00000000..493f32f5 --- /dev/null +++ b/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/info.json @@ -0,0 +1,49 @@ +{ + "name": "Wilder World", + "symbol": "WILD", + "type": "ERC20", + "decimals": 18, + "description": "Wilder World is an immersive 5D metaverse powered entirely by NFTs.", + "website": "https://www.wilderworld.com/", + "explorer": "https://etherscan.io/token/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34", + "id": "0x2a3bFF78B79A009976EeA096a51A948a3dC00e34", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/WilderWorld" + }, + { + "name": "medium", + "url": "https://wilderworld.medium.com/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/wilderworld" + }, + { + "name": "whitepaper", + "url": "https://info.wilderworld.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wilder-world/" + }, + { + "name": "blog", + "url": "https://zine.wilderworld.com/" + }, + { + "name": "docs", + "url": "https://wiki.wilderworld.com/" + }, + { + "name": "telegram", + "url": "https://t.me/wilder_world" + } + ], + "tags": [ + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/logo.png b/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/logo.png new file mode 100644 index 00000000..42c81885 Binary files /dev/null and b/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/logo.png differ diff --git a/blockchains/ethereum/assets/0x2a469A22101f1F672B745D729D13Ab8DBd203C9B/info.json b/blockchains/ethereum/assets/0x2a469A22101f1F672B745D729D13Ab8DBd203C9B/info.json new file mode 100644 index 00000000..6dc99a37 --- /dev/null +++ b/blockchains/ethereum/assets/0x2a469A22101f1F672B745D729D13Ab8DBd203C9B/info.json @@ -0,0 +1,11 @@ +{ + "name": "COINSTO", + "symbol": "CSO", + "type": "ERC20", + "decimals": 8, + "description": "Coinsto is a Cryptocurrency project helping people to learn by others' experiences. Coinsto is focused on giving value to the people by the people, the platform will only act as a slate to help individuals and organizations learn about cryptocurrency", + "website": "https://coinstoplatform.com/", + "explorer": "https://etherscan.io/token/0x2a469A22101f1F672B745D729D13Ab8DBd203C9B", + "status": "active", + "id": "0x2a469A22101f1F672B745D729D13Ab8DBd203C9B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2a469A22101f1F672B745D729D13Ab8DBd203C9B/logo.png b/blockchains/ethereum/assets/0x2a469A22101f1F672B745D729D13Ab8DBd203C9B/logo.png new file mode 100644 index 00000000..24a9481f Binary files /dev/null and b/blockchains/ethereum/assets/0x2a469A22101f1F672B745D729D13Ab8DBd203C9B/logo.png differ diff --git a/blockchains/ethereum/assets/0x2a4b256440fe78CBb6eB95271b6205988aB259ca/info.json b/blockchains/ethereum/assets/0x2a4b256440fe78CBb6eB95271b6205988aB259ca/info.json new file mode 100644 index 00000000..9de88a93 --- /dev/null +++ b/blockchains/ethereum/assets/0x2a4b256440fe78CBb6eB95271b6205988aB259ca/info.json @@ -0,0 +1,11 @@ +{ + "name": "EDU token", + "symbol": "EDU", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2a4b256440fe78CBb6eB95271b6205988aB259ca", + "status": "abandoned", + "id": "0x2a4b256440fe78CBb6eB95271b6205988aB259ca" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2a4b256440fe78CBb6eB95271b6205988aB259ca/logo.png b/blockchains/ethereum/assets/0x2a4b256440fe78CBb6eB95271b6205988aB259ca/logo.png new file mode 100644 index 00000000..bf86cb0c Binary files /dev/null and b/blockchains/ethereum/assets/0x2a4b256440fe78CBb6eB95271b6205988aB259ca/logo.png differ diff --git a/blockchains/ethereum/assets/0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe/info.json b/blockchains/ethereum/assets/0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe/info.json new file mode 100644 index 00000000..bc48a819 --- /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 00000000..8bbed2d7 Binary files /dev/null and b/blockchains/ethereum/assets/0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe/logo.png differ diff --git a/blockchains/ethereum/assets/0x2a7f709eE001069771ceB6D42e85035f7D18E736/info.json b/blockchains/ethereum/assets/0x2a7f709eE001069771ceB6D42e85035f7D18E736/info.json new file mode 100644 index 00000000..437f07b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x2a7f709eE001069771ceB6D42e85035f7D18E736/info.json @@ -0,0 +1,22 @@ +{ + "name": "OWL", + "website": "https://stealthswap.org", + "description": "StealthSwap is a protocol that implements shielded payments on Ethereum.", + "explorer": "https://etherscan.io/token/0x2a7f709eE001069771ceB6D42e85035f7D18E736", + "research": "https://medium.com/stealthswap", + "type": "ERC20", + "symbol": "OWL", + "decimals": 18, + "status": "active", + "id": "0x2a7f709eE001069771ceB6D42e85035f7D18E736", + "links": [ + { + "name": "github", + "url": "https://github.com/stealthswap" + }, + { + "name": "whitepaper", + "url": "https://stealthswap.org/dist/assets/stealthswap-whitepaper-v1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2a7f709eE001069771ceB6D42e85035f7D18E736/logo.png b/blockchains/ethereum/assets/0x2a7f709eE001069771ceB6D42e85035f7D18E736/logo.png new file mode 100644 index 00000000..96b2de79 Binary files /dev/null and b/blockchains/ethereum/assets/0x2a7f709eE001069771ceB6D42e85035f7D18E736/logo.png differ diff --git a/blockchains/ethereum/assets/0x2a8E98e256f32259b5E5Cb55Dd63C8e891950666/info.json b/blockchains/ethereum/assets/0x2a8E98e256f32259b5E5Cb55Dd63C8e891950666/info.json new file mode 100644 index 00000000..d53f8989 --- /dev/null +++ b/blockchains/ethereum/assets/0x2a8E98e256f32259b5E5Cb55Dd63C8e891950666/info.json @@ -0,0 +1,11 @@ +{ + "name": "ParrotCoin", + "symbol": "PTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2a8E98e256f32259b5E5Cb55Dd63C8e891950666", + "status": "abandoned", + "id": "0x2a8E98e256f32259b5E5Cb55Dd63C8e891950666" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2a8E98e256f32259b5E5Cb55Dd63C8e891950666/logo.png b/blockchains/ethereum/assets/0x2a8E98e256f32259b5E5Cb55Dd63C8e891950666/logo.png new file mode 100755 index 00000000..4e31c391 Binary files /dev/null and b/blockchains/ethereum/assets/0x2a8E98e256f32259b5E5Cb55Dd63C8e891950666/logo.png differ diff --git a/blockchains/ethereum/assets/0x2a9D1dfC0174E8dB66F1838bc251aDA66Cd76018/info.json b/blockchains/ethereum/assets/0x2a9D1dfC0174E8dB66F1838bc251aDA66Cd76018/info.json new file mode 100644 index 00000000..495418cf --- /dev/null +++ b/blockchains/ethereum/assets/0x2a9D1dfC0174E8dB66F1838bc251aDA66Cd76018/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tyche Share", + "symbol": "TSH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2a9D1dfC0174E8dB66F1838bc251aDA66Cd76018", + "status": "abandoned", + "id": "0x2a9D1dfC0174E8dB66F1838bc251aDA66Cd76018" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2a9D1dfC0174E8dB66F1838bc251aDA66Cd76018/logo.png b/blockchains/ethereum/assets/0x2a9D1dfC0174E8dB66F1838bc251aDA66Cd76018/logo.png new file mode 100644 index 00000000..f6f8668c Binary files /dev/null and b/blockchains/ethereum/assets/0x2a9D1dfC0174E8dB66F1838bc251aDA66Cd76018/logo.png differ diff --git a/blockchains/ethereum/assets/0x2a9bDCFF37aB68B95A53435ADFd8892e86084F93/info.json b/blockchains/ethereum/assets/0x2a9bDCFF37aB68B95A53435ADFd8892e86084F93/info.json new file mode 100644 index 00000000..2a357ba0 --- /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 00000000..3d493f69 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 00000000..49689693 --- /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 00000000..a3fb80da Binary files /dev/null and b/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/logo.png differ diff --git a/blockchains/ethereum/assets/0x2aE965cd3D2B6D186e87D9586FC3BdBfC667cAcC/info.json b/blockchains/ethereum/assets/0x2aE965cd3D2B6D186e87D9586FC3BdBfC667cAcC/info.json new file mode 100644 index 00000000..33973418 --- /dev/null +++ b/blockchains/ethereum/assets/0x2aE965cd3D2B6D186e87D9586FC3BdBfC667cAcC/info.json @@ -0,0 +1,11 @@ +{ + "name": "GJC", + "symbol": "GJC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2aE965cd3D2B6D186e87D9586FC3BdBfC667cAcC", + "status": "abandoned", + "id": "0x2aE965cd3D2B6D186e87D9586FC3BdBfC667cAcC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2aE965cd3D2B6D186e87D9586FC3BdBfC667cAcC/logo.png b/blockchains/ethereum/assets/0x2aE965cd3D2B6D186e87D9586FC3BdBfC667cAcC/logo.png new file mode 100644 index 00000000..f3ce629e Binary files /dev/null and b/blockchains/ethereum/assets/0x2aE965cd3D2B6D186e87D9586FC3BdBfC667cAcC/logo.png differ diff --git a/blockchains/ethereum/assets/0x2aF1dF3AB0ab157e1E2Ad8F88A7D04fbea0c7dc6/info.json b/blockchains/ethereum/assets/0x2aF1dF3AB0ab157e1E2Ad8F88A7D04fbea0c7dc6/info.json new file mode 100644 index 00000000..ed588dbf --- /dev/null +++ b/blockchains/ethereum/assets/0x2aF1dF3AB0ab157e1E2Ad8F88A7D04fbea0c7dc6/info.json @@ -0,0 +1,33 @@ +{ + "name": "Bankless BED Index", + "symbol": "BED", + "type": "ERC20", + "decimals": 18, + "description": "The Bankless BED Index is an equal weighted index of Bitcoin, Ethereum and DPI.", + "website": "https://www.indexcoop.com/", + "explorer": "https://etherscan.io/token/0x2aF1dF3AB0ab157e1E2Ad8F88A7D04fbea0c7dc6", + "status": "active", + "id": "0x2aF1dF3AB0ab157e1E2Ad8F88A7D04fbea0c7dc6", + "links": [ + { + "name": "blog", + "url": "https://gov.indexcoop.com" + }, + { + "name": "x", + "url": "https://x.com/indexcoop" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defi-pulse-index/p" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/defipulse-index" + }, + { + "name": "discord", + "url": "https://discord.com/invite/RKZ4S3b" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2aF1dF3AB0ab157e1E2Ad8F88A7D04fbea0c7dc6/logo.png b/blockchains/ethereum/assets/0x2aF1dF3AB0ab157e1E2Ad8F88A7D04fbea0c7dc6/logo.png new file mode 100644 index 00000000..120feb7a Binary files /dev/null and b/blockchains/ethereum/assets/0x2aF1dF3AB0ab157e1E2Ad8F88A7D04fbea0c7dc6/logo.png differ diff --git a/blockchains/ethereum/assets/0x2ab05B915C30093679165bcdba9C26D8Cd8BeE99/info.json b/blockchains/ethereum/assets/0x2ab05B915C30093679165bcdba9C26D8Cd8BeE99/info.json new file mode 100644 index 00000000..adc0b65b --- /dev/null +++ b/blockchains/ethereum/assets/0x2ab05B915C30093679165bcdba9C26D8Cd8BeE99/info.json @@ -0,0 +1,11 @@ +{ + "name": "BCHC", + "symbol": "BCHC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.bitcherry.io/", + "explorer": "https://etherscan.io/token/0x2ab05B915C30093679165bcdba9C26D8Cd8BeE99", + "status": "abandoned", + "id": "0x2ab05B915C30093679165bcdba9C26D8Cd8BeE99" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2ab05B915C30093679165bcdba9C26D8Cd8BeE99/logo.png b/blockchains/ethereum/assets/0x2ab05B915C30093679165bcdba9C26D8Cd8BeE99/logo.png new file mode 100755 index 00000000..914e8aaf Binary files /dev/null and b/blockchains/ethereum/assets/0x2ab05B915C30093679165bcdba9C26D8Cd8BeE99/logo.png differ diff --git a/blockchains/ethereum/assets/0x2ac07844fbBA038412c210EFa28dbD764F5deF84/info.json b/blockchains/ethereum/assets/0x2ac07844fbBA038412c210EFa28dbD764F5deF84/info.json new file mode 100644 index 00000000..67e70c7a --- /dev/null +++ b/blockchains/ethereum/assets/0x2ac07844fbBA038412c210EFa28dbD764F5deF84/info.json @@ -0,0 +1,11 @@ +{ + "name": "Smart Pharmaceutical Token", + "symbol": "SMPT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2ac07844fbBA038412c210EFa28dbD764F5deF84", + "status": "abandoned", + "id": "0x2ac07844fbBA038412c210EFa28dbD764F5deF84" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2ac07844fbBA038412c210EFa28dbD764F5deF84/logo.png b/blockchains/ethereum/assets/0x2ac07844fbBA038412c210EFa28dbD764F5deF84/logo.png new file mode 100644 index 00000000..a0537723 Binary files /dev/null and b/blockchains/ethereum/assets/0x2ac07844fbBA038412c210EFa28dbD764F5deF84/logo.png differ diff --git a/blockchains/ethereum/assets/0x2adba23Cf1252dE095aCEd801e758b369EC10426/info.json b/blockchains/ethereum/assets/0x2adba23Cf1252dE095aCEd801e758b369EC10426/info.json new file mode 100644 index 00000000..98c01839 --- /dev/null +++ b/blockchains/ethereum/assets/0x2adba23Cf1252dE095aCEd801e758b369EC10426/info.json @@ -0,0 +1,11 @@ +{ + "name": "UCBI Banking", + "symbol": "UCBI", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2adba23Cf1252dE095aCEd801e758b369EC10426", + "status": "abandoned", + "id": "0x2adba23Cf1252dE095aCEd801e758b369EC10426" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2adba23Cf1252dE095aCEd801e758b369EC10426/logo.png b/blockchains/ethereum/assets/0x2adba23Cf1252dE095aCEd801e758b369EC10426/logo.png new file mode 100644 index 00000000..84fed384 Binary files /dev/null and b/blockchains/ethereum/assets/0x2adba23Cf1252dE095aCEd801e758b369EC10426/logo.png differ diff --git a/blockchains/ethereum/assets/0x2aeAbde1aB736c59E9A19BeD67681869eEF39526/info.json b/blockchains/ethereum/assets/0x2aeAbde1aB736c59E9A19BeD67681869eEF39526/info.json new file mode 100644 index 00000000..889220bf --- /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 00000000..cb6c4903 Binary files /dev/null and b/blockchains/ethereum/assets/0x2aeAbde1aB736c59E9A19BeD67681869eEF39526/logo.png differ diff --git a/blockchains/ethereum/assets/0x2b0979408914a819598da3784b82Ec497673FF75/info.json b/blockchains/ethereum/assets/0x2b0979408914a819598da3784b82Ec497673FF75/info.json new file mode 100644 index 00000000..a3937135 --- /dev/null +++ b/blockchains/ethereum/assets/0x2b0979408914a819598da3784b82Ec497673FF75/info.json @@ -0,0 +1,11 @@ +{ + "name": "CCT 67398/489", + "symbol": "CCT", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2b0979408914a819598da3784b82Ec497673FF75", + "status": "abandoned", + "id": "0x2b0979408914a819598da3784b82Ec497673FF75" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2b0979408914a819598da3784b82Ec497673FF75/logo.png b/blockchains/ethereum/assets/0x2b0979408914a819598da3784b82Ec497673FF75/logo.png new file mode 100644 index 00000000..29e63056 Binary files /dev/null and b/blockchains/ethereum/assets/0x2b0979408914a819598da3784b82Ec497673FF75/logo.png differ diff --git a/blockchains/ethereum/assets/0x2b17b8927A8e9844B6Ca11c5E0E818Bb633C044d/info.json b/blockchains/ethereum/assets/0x2b17b8927A8e9844B6Ca11c5E0E818Bb633C044d/info.json new file mode 100644 index 00000000..8d80f81c --- /dev/null +++ b/blockchains/ethereum/assets/0x2b17b8927A8e9844B6Ca11c5E0E818Bb633C044d/info.json @@ -0,0 +1,11 @@ +{ + "name": "OMNIS-BIT", + "symbol": "OMNIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2b17b8927A8e9844B6Ca11c5E0E818Bb633C044d", + "status": "abandoned", + "id": "0x2b17b8927A8e9844B6Ca11c5E0E818Bb633C044d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2b17b8927A8e9844B6Ca11c5E0E818Bb633C044d/logo.png b/blockchains/ethereum/assets/0x2b17b8927A8e9844B6Ca11c5E0E818Bb633C044d/logo.png new file mode 100644 index 00000000..79da08f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x2b17b8927A8e9844B6Ca11c5E0E818Bb633C044d/logo.png differ diff --git a/blockchains/ethereum/assets/0x2b1EB94d2AeD2dEA74D85A6Bac5f44df03B8DeDB/info.json b/blockchains/ethereum/assets/0x2b1EB94d2AeD2dEA74D85A6Bac5f44df03B8DeDB/info.json new file mode 100644 index 00000000..fb0d82e8 --- /dev/null +++ b/blockchains/ethereum/assets/0x2b1EB94d2AeD2dEA74D85A6Bac5f44df03B8DeDB/info.json @@ -0,0 +1,11 @@ +{ + "name": "BDAO", + "website": "https://bdao.network", + "description": "BDAO Network is a decentralized and autonomous reward platform that runs on the Ethereum blockchain through smart contracts.", + "explorer": "https://etherscan.io/token/0x2b1EB94d2AeD2dEA74D85A6Bac5f44df03B8DeDB", + "type": "ERC20", + "symbol": "BDAO", + "decimals": 18, + "status": "active", + "id": "0x2b1EB94d2AeD2dEA74D85A6Bac5f44df03B8DeDB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2b1EB94d2AeD2dEA74D85A6Bac5f44df03B8DeDB/logo.png b/blockchains/ethereum/assets/0x2b1EB94d2AeD2dEA74D85A6Bac5f44df03B8DeDB/logo.png new file mode 100644 index 00000000..eeeb0d70 Binary files /dev/null and b/blockchains/ethereum/assets/0x2b1EB94d2AeD2dEA74D85A6Bac5f44df03B8DeDB/logo.png differ diff --git a/blockchains/ethereum/assets/0x2b36968BF3c77253266Aa382562Fa3fdD7fa1667/info.json b/blockchains/ethereum/assets/0x2b36968BF3c77253266Aa382562Fa3fdD7fa1667/info.json new file mode 100644 index 00000000..a61278bf --- /dev/null +++ b/blockchains/ethereum/assets/0x2b36968BF3c77253266Aa382562Fa3fdD7fa1667/info.json @@ -0,0 +1,11 @@ +{ + "name": "MedicayunLink", + "symbol": "MCL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2b36968BF3c77253266Aa382562Fa3fdD7fa1667", + "status": "abandoned", + "id": "0x2b36968BF3c77253266Aa382562Fa3fdD7fa1667" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2b36968BF3c77253266Aa382562Fa3fdD7fa1667/logo.png b/blockchains/ethereum/assets/0x2b36968BF3c77253266Aa382562Fa3fdD7fa1667/logo.png new file mode 100644 index 00000000..3067801e Binary files /dev/null and b/blockchains/ethereum/assets/0x2b36968BF3c77253266Aa382562Fa3fdD7fa1667/logo.png differ diff --git a/blockchains/ethereum/assets/0x2b4F00249026D720c45C26de387Ffa0fa7bc7195/info.json b/blockchains/ethereum/assets/0x2b4F00249026D720c45C26de387Ffa0fa7bc7195/info.json new file mode 100644 index 00000000..5f886e62 --- /dev/null +++ b/blockchains/ethereum/assets/0x2b4F00249026D720c45C26de387Ffa0fa7bc7195/info.json @@ -0,0 +1,11 @@ +{ + "name": "GLAD", + "symbol": "GLAD", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2b4F00249026D720c45C26de387Ffa0fa7bc7195", + "status": "abandoned", + "id": "0x2b4F00249026D720c45C26de387Ffa0fa7bc7195" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2b4F00249026D720c45C26de387Ffa0fa7bc7195/logo.png b/blockchains/ethereum/assets/0x2b4F00249026D720c45C26de387Ffa0fa7bc7195/logo.png new file mode 100644 index 00000000..fd0acd59 Binary files /dev/null and b/blockchains/ethereum/assets/0x2b4F00249026D720c45C26de387Ffa0fa7bc7195/logo.png differ diff --git a/blockchains/ethereum/assets/0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39/info.json b/blockchains/ethereum/assets/0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39/info.json new file mode 100644 index 00000000..3356a1c7 --- /dev/null +++ b/blockchains/ethereum/assets/0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39/info.json @@ -0,0 +1,11 @@ +{ + "name": "HEX", + "symbol": "HEX", + "type": "ERC20", + "decimals": 8, + "description": "Launched by Richard Heart and team, HEX is the first certificate of deposit on the blockchain, essentially time deposits that gain interest,", + "website": "https://hex.com", + "explorer": "https://etherscan.io/token/0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39", + "status": "active", + "id": "0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39/logo.png b/blockchains/ethereum/assets/0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39/logo.png new file mode 100644 index 00000000..48008339 Binary files /dev/null and b/blockchains/ethereum/assets/0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39/logo.png differ diff --git a/blockchains/ethereum/assets/0x2b5cA2F9510cf1e3595Ff219f24D75D4244585EA/info.json b/blockchains/ethereum/assets/0x2b5cA2F9510cf1e3595Ff219f24D75D4244585EA/info.json new file mode 100644 index 00000000..5d4d1892 --- /dev/null +++ b/blockchains/ethereum/assets/0x2b5cA2F9510cf1e3595Ff219f24D75D4244585EA/info.json @@ -0,0 +1,11 @@ +{ + "name": "EthereumPay", + "type": "ERC20", + "symbol": "EPAY", + "decimals": 18, + "website": "https://ethereumpay.org", + "description": "An ERC-20 compatible token built on the ERC-1363 Protocol built specifically for payments", + "explorer": "https://etherscan.io/token/0x2b5cA2F9510cf1e3595Ff219f24D75D4244585EA", + "status": "active", + "id": "0x2b5cA2F9510cf1e3595Ff219f24D75D4244585EA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2b5cA2F9510cf1e3595Ff219f24D75D4244585EA/logo.png b/blockchains/ethereum/assets/0x2b5cA2F9510cf1e3595Ff219f24D75D4244585EA/logo.png new file mode 100644 index 00000000..76cda729 Binary files /dev/null and b/blockchains/ethereum/assets/0x2b5cA2F9510cf1e3595Ff219f24D75D4244585EA/logo.png differ diff --git a/blockchains/ethereum/assets/0x2b6fF53Fc2493CcD5202D80a6C439741414C5Ff2/info.json b/blockchains/ethereum/assets/0x2b6fF53Fc2493CcD5202D80a6C439741414C5Ff2/info.json new file mode 100644 index 00000000..60e39133 --- /dev/null +++ b/blockchains/ethereum/assets/0x2b6fF53Fc2493CcD5202D80a6C439741414C5Ff2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tweebaa", + "symbol": "TWEE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://tweebaa.com/", + "explorer": "https://etherscan.io/token/0x2b6fF53Fc2493CcD5202D80a6C439741414C5Ff2", + "status": "abandoned", + "id": "0x2b6fF53Fc2493CcD5202D80a6C439741414C5Ff2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2b6fF53Fc2493CcD5202D80a6C439741414C5Ff2/logo.png b/blockchains/ethereum/assets/0x2b6fF53Fc2493CcD5202D80a6C439741414C5Ff2/logo.png new file mode 100644 index 00000000..a78d8e06 Binary files /dev/null and b/blockchains/ethereum/assets/0x2b6fF53Fc2493CcD5202D80a6C439741414C5Ff2/logo.png differ diff --git a/blockchains/ethereum/assets/0x2b867efD2dE4Ad2B583Ca0CB3dF9C4040Ef4D329/info.json b/blockchains/ethereum/assets/0x2b867efD2dE4Ad2B583Ca0CB3dF9C4040Ef4D329/info.json new file mode 100644 index 00000000..320d6ff0 --- /dev/null +++ b/blockchains/ethereum/assets/0x2b867efD2dE4Ad2B583Ca0CB3dF9C4040Ef4D329/info.json @@ -0,0 +1,25 @@ +{ + "name": "LuckyBlock", + "website": "https://luckyblock.com/", + "description": "A games & competitions platform with play-to-earn rewards using blockchain protocols.", + "explorer": "https://etherscan.io/token/0x2b867efd2de4ad2b583ca0cb3df9c4040ef4d329", + "symbol": "LBlock", + "type": "ERC20", + "decimals": 9, + "status": "active", + "id": "0x2b867efD2dE4Ad2B583Ca0CB3dF9C4040Ef4D329", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lucky-block-v2/" + }, + { + "name": "x", + "url": "https://x.com/luckyblockcoin" + }, + { + "name": "telegram", + "url": "https://t.me/LuckyBlockChainTG" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2b867efD2dE4Ad2B583Ca0CB3dF9C4040Ef4D329/logo.png b/blockchains/ethereum/assets/0x2b867efD2dE4Ad2B583Ca0CB3dF9C4040Ef4D329/logo.png new file mode 100644 index 00000000..8e0a3214 Binary files /dev/null and b/blockchains/ethereum/assets/0x2b867efD2dE4Ad2B583Ca0CB3dF9C4040Ef4D329/logo.png differ diff --git a/blockchains/ethereum/assets/0x2b915b505c017ABb1547aA5Ab355FbE69865cC6D/info.json b/blockchains/ethereum/assets/0x2b915b505c017ABb1547aA5Ab355FbE69865cC6D/info.json new file mode 100644 index 00000000..52bfb95a --- /dev/null +++ b/blockchains/ethereum/assets/0x2b915b505c017ABb1547aA5Ab355FbE69865cC6D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Maps.me", + "type": "ERC20", + "symbol": "MAPS", + "decimals": 6, + "website": "https://maps.me", + "description": "Maps.me 2.0 is the ultimate travel companion and your passport to the new financial system.", + "explorer": "https://etherscan.io/token/0x2b915b505c017abb1547aa5ab355fbe69865cc6d", + "status": "active", + "id": "0x2b915b505c017ABb1547aA5Ab355FbE69865cC6D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2b915b505c017ABb1547aA5Ab355FbE69865cC6D/logo.png b/blockchains/ethereum/assets/0x2b915b505c017ABb1547aA5Ab355FbE69865cC6D/logo.png new file mode 100644 index 00000000..372f8c2d Binary files /dev/null and b/blockchains/ethereum/assets/0x2b915b505c017ABb1547aA5Ab355FbE69865cC6D/logo.png differ diff --git a/blockchains/ethereum/assets/0x2bB84fd8F7eD0FfAe3da36AD60d4D7840bdeEADa/info.json b/blockchains/ethereum/assets/0x2bB84fd8F7eD0FfAe3da36AD60d4D7840bdeEADa/info.json new file mode 100644 index 00000000..f20515c5 --- /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/0x2bBA3CF6DE6058cc1B4457Ce00deb359E2703d7F/info.json b/blockchains/ethereum/assets/0x2bBA3CF6DE6058cc1B4457Ce00deb359E2703d7F/info.json new file mode 100644 index 00000000..6343136d --- /dev/null +++ b/blockchains/ethereum/assets/0x2bBA3CF6DE6058cc1B4457Ce00deb359E2703d7F/info.json @@ -0,0 +1,11 @@ +{ + "name": "HashCoin", + "symbol": "HSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.hashfuture.io/#home", + "explorer": "https://etherscan.io/token/0x2bBA3CF6DE6058cc1B4457Ce00deb359E2703d7F", + "status": "active", + "id": "0x2bBA3CF6DE6058cc1B4457Ce00deb359E2703d7F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2bBA3CF6DE6058cc1B4457Ce00deb359E2703d7F/logo.png b/blockchains/ethereum/assets/0x2bBA3CF6DE6058cc1B4457Ce00deb359E2703d7F/logo.png new file mode 100755 index 00000000..f1e6f814 Binary files /dev/null and b/blockchains/ethereum/assets/0x2bBA3CF6DE6058cc1B4457Ce00deb359E2703d7F/logo.png differ diff --git a/blockchains/ethereum/assets/0x2bDC0D42996017fCe214b21607a515DA41A9E0C5/info.json b/blockchains/ethereum/assets/0x2bDC0D42996017fCe214b21607a515DA41A9E0C5/info.json new file mode 100644 index 00000000..70c529ee --- /dev/null +++ b/blockchains/ethereum/assets/0x2bDC0D42996017fCe214b21607a515DA41A9E0C5/info.json @@ -0,0 +1,11 @@ +{ + "name": "SkinCoin", + "symbol": "SKIN", + "type": "ERC20", + "decimals": 6, + "description": "SkinCoin is a multipurpose cryptocurrency for gaming industry.", + "website": "https://skincoin.org/", + "explorer": "https://etherscan.io/token/0x2bDC0D42996017fCe214b21607a515DA41A9E0C5", + "status": "active", + "id": "0x2bDC0D42996017fCe214b21607a515DA41A9E0C5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2bDC0D42996017fCe214b21607a515DA41A9E0C5/logo.png b/blockchains/ethereum/assets/0x2bDC0D42996017fCe214b21607a515DA41A9E0C5/logo.png new file mode 100644 index 00000000..4e3c7314 Binary files /dev/null and b/blockchains/ethereum/assets/0x2bDC0D42996017fCe214b21607a515DA41A9E0C5/logo.png differ diff --git a/blockchains/ethereum/assets/0x2ba592F78dB6436527729929AAf6c908497cB200/info.json b/blockchains/ethereum/assets/0x2ba592F78dB6436527729929AAf6c908497cB200/info.json new file mode 100644 index 00000000..540a9a74 --- /dev/null +++ b/blockchains/ethereum/assets/0x2ba592F78dB6436527729929AAf6c908497cB200/info.json @@ -0,0 +1,14 @@ +{ + "name": "Cream Finance", + "website": "https://cream.finance", + "description": "Cream - Crypto Rules Everything Around Me", + "explorer": "https://etherscan.io/token/0x2ba592F78dB6436527729929AAf6c908497cB200", + "type": "ERC20", + "symbol": "CREAM", + "decimals": 18, + "status": "active", + "id": "0x2ba592F78dB6436527729929AAf6c908497cB200", + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2ba592F78dB6436527729929AAf6c908497cB200/logo.png b/blockchains/ethereum/assets/0x2ba592F78dB6436527729929AAf6c908497cB200/logo.png new file mode 100644 index 00000000..7925d9c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x2ba592F78dB6436527729929AAf6c908497cB200/logo.png differ diff --git a/blockchains/ethereum/assets/0x2ba6b1E4424e19816382d15937739959F7DA5fD8/info.json b/blockchains/ethereum/assets/0x2ba6b1E4424e19816382d15937739959F7DA5fD8/info.json new file mode 100644 index 00000000..f95ec43b --- /dev/null +++ b/blockchains/ethereum/assets/0x2ba6b1E4424e19816382d15937739959F7DA5fD8/info.json @@ -0,0 +1,11 @@ +{ + "name": "MEX", + "symbol": "MEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://introduce.mex.link/", + "explorer": "https://etherscan.io/token/0x2ba6b1E4424e19816382d15937739959F7DA5fD8", + "status": "abandoned", + "id": "0x2ba6b1E4424e19816382d15937739959F7DA5fD8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2ba6b1E4424e19816382d15937739959F7DA5fD8/logo.png b/blockchains/ethereum/assets/0x2ba6b1E4424e19816382d15937739959F7DA5fD8/logo.png new file mode 100644 index 00000000..358d4dc8 Binary files /dev/null and b/blockchains/ethereum/assets/0x2ba6b1E4424e19816382d15937739959F7DA5fD8/logo.png differ diff --git a/blockchains/ethereum/assets/0x2baac9330Cf9aC479D819195794d79AD0c7616e3/info.json b/blockchains/ethereum/assets/0x2baac9330Cf9aC479D819195794d79AD0c7616e3/info.json new file mode 100644 index 00000000..f2522424 --- /dev/null +++ b/blockchains/ethereum/assets/0x2baac9330Cf9aC479D819195794d79AD0c7616e3/info.json @@ -0,0 +1,11 @@ +{ + "name": "AdBank", + "symbol": "ADB", + "type": "ERC20", + "decimals": 18, + "description": "Built with the transparency of blockchain, advertisers don't waste money on fraudulent traffic and publishers get paid more without costly middlemen.", + "website": "https://adbank.network/", + "explorer": "https://etherscan.io/token/0x2baac9330Cf9aC479D819195794d79AD0c7616e3", + "status": "active", + "id": "0x2baac9330Cf9aC479D819195794d79AD0c7616e3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2baac9330Cf9aC479D819195794d79AD0c7616e3/logo.png b/blockchains/ethereum/assets/0x2baac9330Cf9aC479D819195794d79AD0c7616e3/logo.png new file mode 100644 index 00000000..05c72451 Binary files /dev/null and b/blockchains/ethereum/assets/0x2baac9330Cf9aC479D819195794d79AD0c7616e3/logo.png differ diff --git a/blockchains/ethereum/assets/0x2bc46Eb4ae80ddD9c8A6e064C74327C8244D88e2/info.json b/blockchains/ethereum/assets/0x2bc46Eb4ae80ddD9c8A6e064C74327C8244D88e2/info.json new file mode 100644 index 00000000..e5c09631 --- /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 00000000..f0bc5ee7 Binary files /dev/null and b/blockchains/ethereum/assets/0x2bc46Eb4ae80ddD9c8A6e064C74327C8244D88e2/logo.png differ diff --git a/blockchains/ethereum/assets/0x2bc8B955F6a0Ed5a9D4146DED61aEC0bB74EcF67/info.json b/blockchains/ethereum/assets/0x2bc8B955F6a0Ed5a9D4146DED61aEC0bB74EcF67/info.json new file mode 100644 index 00000000..4aca1aeb --- /dev/null +++ b/blockchains/ethereum/assets/0x2bc8B955F6a0Ed5a9D4146DED61aEC0bB74EcF67/info.json @@ -0,0 +1,11 @@ +{ + "name": "Logistics Coin", + "symbol": "LGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://logistics.us.com", + "explorer": "https://etherscan.io/token/0x2bc8B955F6a0Ed5a9D4146DED61aEC0bB74EcF67", + "status": "abandoned", + "id": "0x2bc8B955F6a0Ed5a9D4146DED61aEC0bB74EcF67" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2bc8B955F6a0Ed5a9D4146DED61aEC0bB74EcF67/logo.png b/blockchains/ethereum/assets/0x2bc8B955F6a0Ed5a9D4146DED61aEC0bB74EcF67/logo.png new file mode 100644 index 00000000..45b46c7a Binary files /dev/null and b/blockchains/ethereum/assets/0x2bc8B955F6a0Ed5a9D4146DED61aEC0bB74EcF67/logo.png differ diff --git a/blockchains/ethereum/assets/0x2bdbF15d055899a767F5459A151bEd15Fb8fD2F6/info.json b/blockchains/ethereum/assets/0x2bdbF15d055899a767F5459A151bEd15Fb8fD2F6/info.json new file mode 100644 index 00000000..016d9dd2 --- /dev/null +++ b/blockchains/ethereum/assets/0x2bdbF15d055899a767F5459A151bEd15Fb8fD2F6/info.json @@ -0,0 +1,11 @@ +{ + "name": "UST", + "symbol": "UST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2bdbF15d055899a767F5459A151bEd15Fb8fD2F6", + "status": "abandoned", + "id": "0x2bdbF15d055899a767F5459A151bEd15Fb8fD2F6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2bdbF15d055899a767F5459A151bEd15Fb8fD2F6/logo.png b/blockchains/ethereum/assets/0x2bdbF15d055899a767F5459A151bEd15Fb8fD2F6/logo.png new file mode 100644 index 00000000..60daa47d Binary files /dev/null and b/blockchains/ethereum/assets/0x2bdbF15d055899a767F5459A151bEd15Fb8fD2F6/logo.png differ diff --git a/blockchains/ethereum/assets/0x2c0459C5f9AA610E7a49AAd0988f6A208b60B555/info.json b/blockchains/ethereum/assets/0x2c0459C5f9AA610E7a49AAd0988f6A208b60B555/info.json new file mode 100644 index 00000000..f5c6e364 --- /dev/null +++ b/blockchains/ethereum/assets/0x2c0459C5f9AA610E7a49AAd0988f6A208b60B555/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 188-CN47", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2c0459C5f9AA610E7a49AAd0988f6A208b60B555", + "status": "abandoned", + "id": "0x2c0459C5f9AA610E7a49AAd0988f6A208b60B555" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2c0459C5f9AA610E7a49AAd0988f6A208b60B555/logo.png b/blockchains/ethereum/assets/0x2c0459C5f9AA610E7a49AAd0988f6A208b60B555/logo.png new file mode 100644 index 00000000..526305a5 Binary files /dev/null and b/blockchains/ethereum/assets/0x2c0459C5f9AA610E7a49AAd0988f6A208b60B555/logo.png differ diff --git a/blockchains/ethereum/assets/0x2c13344Db0D0142789722bc4Dea0CdED7C0ED663/info.json b/blockchains/ethereum/assets/0x2c13344Db0D0142789722bc4Dea0CdED7C0ED663/info.json new file mode 100644 index 00000000..91a3ff77 --- /dev/null +++ b/blockchains/ethereum/assets/0x2c13344Db0D0142789722bc4Dea0CdED7C0ED663/info.json @@ -0,0 +1,11 @@ +{ + "name": "Falcon Goverence Token", + "symbol": "FGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2c13344Db0D0142789722bc4Dea0CdED7C0ED663", + "status": "abandoned", + "id": "0x2c13344Db0D0142789722bc4Dea0CdED7C0ED663" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2c13344Db0D0142789722bc4Dea0CdED7C0ED663/logo.png b/blockchains/ethereum/assets/0x2c13344Db0D0142789722bc4Dea0CdED7C0ED663/logo.png new file mode 100644 index 00000000..bf507bde Binary files /dev/null and b/blockchains/ethereum/assets/0x2c13344Db0D0142789722bc4Dea0CdED7C0ED663/logo.png differ diff --git a/blockchains/ethereum/assets/0x2c2Ad243E228405A0331C946C655b2Ae6c9CF457/info.json b/blockchains/ethereum/assets/0x2c2Ad243E228405A0331C946C655b2Ae6c9CF457/info.json new file mode 100644 index 00000000..64e9c41f --- /dev/null +++ b/blockchains/ethereum/assets/0x2c2Ad243E228405A0331C946C655b2Ae6c9CF457/info.json @@ -0,0 +1,11 @@ +{ + "name": "REVI Gold", + "symbol": "GLD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2c2Ad243E228405A0331C946C655b2Ae6c9CF457", + "status": "active", + "id": "0x2c2Ad243E228405A0331C946C655b2Ae6c9CF457" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2c2Ad243E228405A0331C946C655b2Ae6c9CF457/logo.png b/blockchains/ethereum/assets/0x2c2Ad243E228405A0331C946C655b2Ae6c9CF457/logo.png new file mode 100644 index 00000000..924dba4f Binary files /dev/null and b/blockchains/ethereum/assets/0x2c2Ad243E228405A0331C946C655b2Ae6c9CF457/logo.png differ diff --git a/blockchains/ethereum/assets/0x2c31C747e0D1eb1f662b619461DcED4ce5ca22Ea/info.json b/blockchains/ethereum/assets/0x2c31C747e0D1eb1f662b619461DcED4ce5ca22Ea/info.json new file mode 100644 index 00000000..b72b592f --- /dev/null +++ b/blockchains/ethereum/assets/0x2c31C747e0D1eb1f662b619461DcED4ce5ca22Ea/info.json @@ -0,0 +1,11 @@ +{ + "name": "Five Star Coin Pro", + "symbol": "FSCP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2c31C747e0D1eb1f662b619461DcED4ce5ca22Ea", + "status": "abandoned", + "id": "0x2c31C747e0D1eb1f662b619461DcED4ce5ca22Ea" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2c31C747e0D1eb1f662b619461DcED4ce5ca22Ea/logo.png b/blockchains/ethereum/assets/0x2c31C747e0D1eb1f662b619461DcED4ce5ca22Ea/logo.png new file mode 100644 index 00000000..4a2d6d07 Binary files /dev/null and b/blockchains/ethereum/assets/0x2c31C747e0D1eb1f662b619461DcED4ce5ca22Ea/logo.png differ diff --git a/blockchains/ethereum/assets/0x2c50ba1ED5e4574C1b613b044Bd1876f0B0B87a9/info.json b/blockchains/ethereum/assets/0x2c50ba1ED5e4574C1b613b044Bd1876f0B0B87a9/info.json new file mode 100644 index 00000000..5f7fb901 --- /dev/null +++ b/blockchains/ethereum/assets/0x2c50ba1ED5e4574C1b613b044Bd1876f0B0B87a9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kids Cash", + "symbol": "KASH", + "type": "ERC20", + "decimals": 18, + "description": "Governance by Traders for Traders. By linking game-theory and collective intelligence, we aim to welcome thousands of traders, analysts and thinkers to KASH.", + "website": "https://kash.community", + "explorer": "https://etherscan.io/token/0x2c50ba1ED5e4574C1b613b044Bd1876f0B0B87a9", + "status": "active", + "id": "0x2c50ba1ED5e4574C1b613b044Bd1876f0B0B87a9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2c50ba1ED5e4574C1b613b044Bd1876f0B0B87a9/logo.png b/blockchains/ethereum/assets/0x2c50ba1ED5e4574C1b613b044Bd1876f0B0B87a9/logo.png new file mode 100644 index 00000000..9a443156 Binary files /dev/null and b/blockchains/ethereum/assets/0x2c50ba1ED5e4574C1b613b044Bd1876f0B0B87a9/logo.png differ diff --git a/blockchains/ethereum/assets/0x2c594E1cB006E86C3879b1d8191a8B059AF52bE7/info.json b/blockchains/ethereum/assets/0x2c594E1cB006E86C3879b1d8191a8B059AF52bE7/info.json new file mode 100644 index 00000000..07fe2243 --- /dev/null +++ b/blockchains/ethereum/assets/0x2c594E1cB006E86C3879b1d8191a8B059AF52bE7/info.json @@ -0,0 +1,11 @@ +{ + "name": "ExcaliburCoin", + "symbol": "EXC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2c594E1cB006E86C3879b1d8191a8B059AF52bE7", + "status": "abandoned", + "id": "0x2c594E1cB006E86C3879b1d8191a8B059AF52bE7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2c594E1cB006E86C3879b1d8191a8B059AF52bE7/logo.png b/blockchains/ethereum/assets/0x2c594E1cB006E86C3879b1d8191a8B059AF52bE7/logo.png new file mode 100644 index 00000000..a38d0858 Binary files /dev/null and b/blockchains/ethereum/assets/0x2c594E1cB006E86C3879b1d8191a8B059AF52bE7/logo.png differ diff --git a/blockchains/ethereum/assets/0x2c949199cFF14AEAF1B33D64Db01F48FB57f592f/info.json b/blockchains/ethereum/assets/0x2c949199cFF14AEAF1B33D64Db01F48FB57f592f/info.json new file mode 100644 index 00000000..1f7aa186 --- /dev/null +++ b/blockchains/ethereum/assets/0x2c949199cFF14AEAF1B33D64Db01F48FB57f592f/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinBene Coin", + "symbol": "CONI", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.coinbene.com/#/coni", + "explorer": "https://etherscan.io/token/0x2c949199cFF14AEAF1B33D64Db01F48FB57f592f", + "status": "abandoned", + "id": "0x2c949199cFF14AEAF1B33D64Db01F48FB57f592f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2c949199cFF14AEAF1B33D64Db01F48FB57f592f/logo.png b/blockchains/ethereum/assets/0x2c949199cFF14AEAF1B33D64Db01F48FB57f592f/logo.png new file mode 100755 index 00000000..721861b7 Binary files /dev/null and b/blockchains/ethereum/assets/0x2c949199cFF14AEAF1B33D64Db01F48FB57f592f/logo.png differ diff --git a/blockchains/ethereum/assets/0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160/info.json b/blockchains/ethereum/assets/0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160/info.json new file mode 100644 index 00000000..9f7de6b6 --- /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 00000000..8139b0e9 Binary files /dev/null and b/blockchains/ethereum/assets/0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160/logo.png differ diff --git a/blockchains/ethereum/assets/0x2c9Ff8Cd4266De4ba3a8a8e53391853cDb595c23/info.json b/blockchains/ethereum/assets/0x2c9Ff8Cd4266De4ba3a8a8e53391853cDb595c23/info.json new file mode 100644 index 00000000..719abe08 --- /dev/null +++ b/blockchains/ethereum/assets/0x2c9Ff8Cd4266De4ba3a8a8e53391853cDb595c23/info.json @@ -0,0 +1,11 @@ +{ + "name": "DAC", + "symbol": "DAC", + "type": "ERC20", + "decimals": 18, + "description": "Buy, sell, store, learn, and build your crypto wealth with Dacxi.", + "website": "https://dacxi.com/", + "explorer": "https://etherscan.io/token/0x2c9Ff8Cd4266De4ba3a8a8e53391853cDb595c23", + "status": "abandoned", + "id": "0x2c9Ff8Cd4266De4ba3a8a8e53391853cDb595c23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2c9Ff8Cd4266De4ba3a8a8e53391853cDb595c23/logo.png b/blockchains/ethereum/assets/0x2c9Ff8Cd4266De4ba3a8a8e53391853cDb595c23/logo.png new file mode 100644 index 00000000..c517ac64 Binary files /dev/null and b/blockchains/ethereum/assets/0x2c9Ff8Cd4266De4ba3a8a8e53391853cDb595c23/logo.png differ diff --git a/blockchains/ethereum/assets/0x2cAd4991f62fc6Fcd8EC219f37E7DE52B688B75A/info.json b/blockchains/ethereum/assets/0x2cAd4991f62fc6Fcd8EC219f37E7DE52B688B75A/info.json new file mode 100644 index 00000000..75ecf79f --- /dev/null +++ b/blockchains/ethereum/assets/0x2cAd4991f62fc6Fcd8EC219f37E7DE52B688B75A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Schain Wallet", + "website": "https://schainwallet.com", + "description": "Schain Wallet is mobile defi wallet designed to help people staking and earn profit, storage, transfer coin & token with security and lower fees", + "explorer": "https://etherscan.io/token/0x2cAd4991f62fc6Fcd8EC219f37E7DE52B688B75A", + "type": "ERC20", + "symbol": "SCHA", + "decimals": 0, + "status": "active", + "id": "0x2cAd4991f62fc6Fcd8EC219f37E7DE52B688B75A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2cAd4991f62fc6Fcd8EC219f37E7DE52B688B75A/logo.png b/blockchains/ethereum/assets/0x2cAd4991f62fc6Fcd8EC219f37E7DE52B688B75A/logo.png new file mode 100644 index 00000000..2019d47f Binary files /dev/null and b/blockchains/ethereum/assets/0x2cAd4991f62fc6Fcd8EC219f37E7DE52B688B75A/logo.png differ diff --git a/blockchains/ethereum/assets/0x2cBA12a076BA4d922AcA5A6A814fc08701A2333C/info.json b/blockchains/ethereum/assets/0x2cBA12a076BA4d922AcA5A6A814fc08701A2333C/info.json new file mode 100644 index 00000000..16dcd31c --- /dev/null +++ b/blockchains/ethereum/assets/0x2cBA12a076BA4d922AcA5A6A814fc08701A2333C/info.json @@ -0,0 +1,11 @@ +{ + "name": "FNKOSToken", + "symbol": "FNKOS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2cBA12a076BA4d922AcA5A6A814fc08701A2333C", + "status": "abandoned", + "id": "0x2cBA12a076BA4d922AcA5A6A814fc08701A2333C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2cBA12a076BA4d922AcA5A6A814fc08701A2333C/logo.png b/blockchains/ethereum/assets/0x2cBA12a076BA4d922AcA5A6A814fc08701A2333C/logo.png new file mode 100644 index 00000000..fc05200d Binary files /dev/null and b/blockchains/ethereum/assets/0x2cBA12a076BA4d922AcA5A6A814fc08701A2333C/logo.png differ diff --git a/blockchains/ethereum/assets/0x2cF618c19041D9Db330d8222B860A624021F30fb/info.json b/blockchains/ethereum/assets/0x2cF618c19041D9Db330d8222B860A624021F30fb/info.json new file mode 100644 index 00000000..a54feed8 --- /dev/null +++ b/blockchains/ethereum/assets/0x2cF618c19041D9Db330d8222B860A624021F30fb/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRUISEBIT", + "symbol": "CRBT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2cF618c19041D9Db330d8222B860A624021F30fb", + "status": "abandoned", + "id": "0x2cF618c19041D9Db330d8222B860A624021F30fb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2cF618c19041D9Db330d8222B860A624021F30fb/logo.png b/blockchains/ethereum/assets/0x2cF618c19041D9Db330d8222B860A624021F30fb/logo.png new file mode 100644 index 00000000..b9d69ea2 Binary files /dev/null and b/blockchains/ethereum/assets/0x2cF618c19041D9Db330d8222B860A624021F30fb/logo.png differ diff --git a/blockchains/ethereum/assets/0x2ca12a3F9635fD69C21580def14F25C210cA9612/info.json b/blockchains/ethereum/assets/0x2ca12a3F9635fD69C21580def14F25C210cA9612/info.json new file mode 100644 index 00000000..933bbb72 --- /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 00000000..6e354498 Binary files /dev/null and b/blockchains/ethereum/assets/0x2ca12a3F9635fD69C21580def14F25C210cA9612/logo.png differ diff --git a/blockchains/ethereum/assets/0x2cc851248Dbc30e7fB81199aaac9E219300Fc950/info.json b/blockchains/ethereum/assets/0x2cc851248Dbc30e7fB81199aaac9E219300Fc950/info.json new file mode 100644 index 00000000..94ec6f06 --- /dev/null +++ b/blockchains/ethereum/assets/0x2cc851248Dbc30e7fB81199aaac9E219300Fc950/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mastermind", + "symbol": "MMT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2cc851248Dbc30e7fB81199aaac9E219300Fc950", + "status": "abandoned", + "id": "0x2cc851248Dbc30e7fB81199aaac9E219300Fc950" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2cc851248Dbc30e7fB81199aaac9E219300Fc950/logo.png b/blockchains/ethereum/assets/0x2cc851248Dbc30e7fB81199aaac9E219300Fc950/logo.png new file mode 100755 index 00000000..22383f58 Binary files /dev/null and b/blockchains/ethereum/assets/0x2cc851248Dbc30e7fB81199aaac9E219300Fc950/logo.png differ diff --git a/blockchains/ethereum/assets/0x2ccbFF3A042c68716Ed2a2Cb0c544A9f1d1935E1/info.json b/blockchains/ethereum/assets/0x2ccbFF3A042c68716Ed2a2Cb0c544A9f1d1935E1/info.json new file mode 100644 index 00000000..ab478ea8 --- /dev/null +++ b/blockchains/ethereum/assets/0x2ccbFF3A042c68716Ed2a2Cb0c544A9f1d1935E1/info.json @@ -0,0 +1,11 @@ +{ + "name": "DMarket Token", + "symbol": "DMT", + "type": "ERC20", + "decimals": 8, + "description": "DMarket is a platform that aims to enable the secure buying, selling, and trading of in-game items to help developers attract more players, make more money, and increase the lifetime value of their game.", + "website": "https://dmarket.com", + "explorer": "https://etherscan.io/token/0x2ccbFF3A042c68716Ed2a2Cb0c544A9f1d1935E1", + "status": "active", + "id": "0x2ccbFF3A042c68716Ed2a2Cb0c544A9f1d1935E1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2ccbFF3A042c68716Ed2a2Cb0c544A9f1d1935E1/logo.png b/blockchains/ethereum/assets/0x2ccbFF3A042c68716Ed2a2Cb0c544A9f1d1935E1/logo.png new file mode 100644 index 00000000..f6c03d58 Binary files /dev/null and b/blockchains/ethereum/assets/0x2ccbFF3A042c68716Ed2a2Cb0c544A9f1d1935E1/logo.png differ diff --git a/blockchains/ethereum/assets/0x2cf98D4B9C06487ADBd33D54ee54E16aa8515382/info.json b/blockchains/ethereum/assets/0x2cf98D4B9C06487ADBd33D54ee54E16aa8515382/info.json new file mode 100644 index 00000000..4165671e --- /dev/null +++ b/blockchains/ethereum/assets/0x2cf98D4B9C06487ADBd33D54ee54E16aa8515382/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRS Token", + "symbol": "CRSTK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2cf98D4B9C06487ADBd33D54ee54E16aa8515382", + "status": "abandoned", + "id": "0x2cf98D4B9C06487ADBd33D54ee54E16aa8515382" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2cf98D4B9C06487ADBd33D54ee54E16aa8515382/logo.png b/blockchains/ethereum/assets/0x2cf98D4B9C06487ADBd33D54ee54E16aa8515382/logo.png new file mode 100644 index 00000000..41a5004b Binary files /dev/null and b/blockchains/ethereum/assets/0x2cf98D4B9C06487ADBd33D54ee54E16aa8515382/logo.png differ diff --git a/blockchains/ethereum/assets/0x2d03a587fd6d3726ecD36E2f5286B7fC4297b3A0/info.json b/blockchains/ethereum/assets/0x2d03a587fd6d3726ecD36E2f5286B7fC4297b3A0/info.json new file mode 100644 index 00000000..556a2603 --- /dev/null +++ b/blockchains/ethereum/assets/0x2d03a587fd6d3726ecD36E2f5286B7fC4297b3A0/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C492983", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2d03a587fd6d3726ecD36E2f5286B7fC4297b3A0", + "status": "abandoned", + "id": "0x2d03a587fd6d3726ecD36E2f5286B7fC4297b3A0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2d03a587fd6d3726ecD36E2f5286B7fC4297b3A0/logo.png b/blockchains/ethereum/assets/0x2d03a587fd6d3726ecD36E2f5286B7fC4297b3A0/logo.png new file mode 100644 index 00000000..778caa86 Binary files /dev/null and b/blockchains/ethereum/assets/0x2d03a587fd6d3726ecD36E2f5286B7fC4297b3A0/logo.png differ diff --git a/blockchains/ethereum/assets/0x2d0E95bd4795D7aCe0da3C0Ff7b706a5970eb9D3/info.json b/blockchains/ethereum/assets/0x2d0E95bd4795D7aCe0da3C0Ff7b706a5970eb9D3/info.json new file mode 100644 index 00000000..17bae1e9 --- /dev/null +++ b/blockchains/ethereum/assets/0x2d0E95bd4795D7aCe0da3C0Ff7b706a5970eb9D3/info.json @@ -0,0 +1,11 @@ +{ + "name": "All Sports Coin", + "symbol": "SOC", + "type": "ERC20", + "decimals": 18, + "description": "All Sports (SOC) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.allsportschain.com", + "explorer": "https://etherscan.io/token/0x2d0E95bd4795D7aCe0da3C0Ff7b706a5970eb9D3", + "status": "active", + "id": "0x2d0E95bd4795D7aCe0da3C0Ff7b706a5970eb9D3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2d0E95bd4795D7aCe0da3C0Ff7b706a5970eb9D3/logo.png b/blockchains/ethereum/assets/0x2d0E95bd4795D7aCe0da3C0Ff7b706a5970eb9D3/logo.png new file mode 100644 index 00000000..9dfe3a39 Binary files /dev/null and b/blockchains/ethereum/assets/0x2d0E95bd4795D7aCe0da3C0Ff7b706a5970eb9D3/logo.png differ diff --git a/blockchains/ethereum/assets/0x2d184014b5658C453443AA87c8e9C4D57285620b/info.json b/blockchains/ethereum/assets/0x2d184014b5658C453443AA87c8e9C4D57285620b/info.json new file mode 100644 index 00000000..4eeaa18a --- /dev/null +++ b/blockchains/ethereum/assets/0x2d184014b5658C453443AA87c8e9C4D57285620b/info.json @@ -0,0 +1,11 @@ +{ + "name": "JSE Token", + "symbol": "JSE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://jsecoin.com/", + "explorer": "https://etherscan.io/token/0x2d184014b5658C453443AA87c8e9C4D57285620b", + "status": "abandoned", + "id": "0x2d184014b5658C453443AA87c8e9C4D57285620b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2d184014b5658C453443AA87c8e9C4D57285620b/logo.png b/blockchains/ethereum/assets/0x2d184014b5658C453443AA87c8e9C4D57285620b/logo.png new file mode 100644 index 00000000..09043df0 Binary files /dev/null and b/blockchains/ethereum/assets/0x2d184014b5658C453443AA87c8e9C4D57285620b/logo.png differ diff --git a/blockchains/ethereum/assets/0x2d2621A2A41dd907CFBd01F66c826e2BEE14e198/info.json b/blockchains/ethereum/assets/0x2d2621A2A41dd907CFBd01F66c826e2BEE14e198/info.json new file mode 100644 index 00000000..be8db1e3 --- /dev/null +++ b/blockchains/ethereum/assets/0x2d2621A2A41dd907CFBd01F66c826e2BEE14e198/info.json @@ -0,0 +1,11 @@ +{ + "name": "Joint Alliance Co.", + "symbol": "JAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2d2621A2A41dd907CFBd01F66c826e2BEE14e198", + "status": "abandoned", + "id": "0x2d2621A2A41dd907CFBd01F66c826e2BEE14e198" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2d2621A2A41dd907CFBd01F66c826e2BEE14e198/logo.png b/blockchains/ethereum/assets/0x2d2621A2A41dd907CFBd01F66c826e2BEE14e198/logo.png new file mode 100644 index 00000000..ab92471e Binary files /dev/null and b/blockchains/ethereum/assets/0x2d2621A2A41dd907CFBd01F66c826e2BEE14e198/logo.png differ diff --git a/blockchains/ethereum/assets/0x2d3B86234A16a1D558945c6f9C5eb2443275A4f2/info.json b/blockchains/ethereum/assets/0x2d3B86234A16a1D558945c6f9C5eb2443275A4f2/info.json new file mode 100644 index 00000000..3a056d9f --- /dev/null +++ b/blockchains/ethereum/assets/0x2d3B86234A16a1D558945c6f9C5eb2443275A4f2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ozinex Token", + "symbol": "OZI", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2d3B86234A16a1D558945c6f9C5eb2443275A4f2", + "status": "abandoned", + "id": "0x2d3B86234A16a1D558945c6f9C5eb2443275A4f2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2d3B86234A16a1D558945c6f9C5eb2443275A4f2/logo.png b/blockchains/ethereum/assets/0x2d3B86234A16a1D558945c6f9C5eb2443275A4f2/logo.png new file mode 100755 index 00000000..1e7f616b Binary files /dev/null and b/blockchains/ethereum/assets/0x2d3B86234A16a1D558945c6f9C5eb2443275A4f2/logo.png differ diff --git a/blockchains/ethereum/assets/0x2d71983E810B9e95258966B9c164C4d61a829bA9/info.json b/blockchains/ethereum/assets/0x2d71983E810B9e95258966B9c164C4d61a829bA9/info.json new file mode 100644 index 00000000..5b39d390 --- /dev/null +++ b/blockchains/ethereum/assets/0x2d71983E810B9e95258966B9c164C4d61a829bA9/info.json @@ -0,0 +1,11 @@ +{ + "name": "ICOCalendar.Today", + "symbol": "ICT", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://www.icocalendar.today", + "explorer": "https://etherscan.io/token/0x2d71983E810B9e95258966B9c164C4d61a829bA9", + "status": "abandoned", + "id": "0x2d71983E810B9e95258966B9c164C4d61a829bA9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2d71983E810B9e95258966B9c164C4d61a829bA9/logo.png b/blockchains/ethereum/assets/0x2d71983E810B9e95258966B9c164C4d61a829bA9/logo.png new file mode 100644 index 00000000..84aa4fb0 Binary files /dev/null and b/blockchains/ethereum/assets/0x2d71983E810B9e95258966B9c164C4d61a829bA9/logo.png differ diff --git a/blockchains/ethereum/assets/0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198/info.json b/blockchains/ethereum/assets/0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198/info.json new file mode 100644 index 00000000..28974927 --- /dev/null +++ b/blockchains/ethereum/assets/0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198/info.json @@ -0,0 +1,57 @@ +{ + "name": "Bankless DAO", + "type": "ERC20", + "symbol": "BANK", + "decimals": 18, + "website": "https://bankless.community", + "description": "Bankless DAO is a decentralized community to coordinate and propagate bankless media, culture, and education. Its goal is to drive adoption and awareness of truly bankless money systems like Ethereum, DeFi, and Bitcoin.", + "explorer": "https://etherscan.io/token/0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198", + "status": "active", + "id": "0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198", + "links": [ + { + "name": "x", + "url": "https://x.com/banklessDAO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bankless-dao" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bjPz2w9Zts" + }, + { + "name": "blog", + "url": "https://banklessdao.substack.com/" + }, + { + "name": "medium", + "url": "https://medium.com/bankless-dao" + }, + { + "name": "github", + "url": "https://github.com/BanklessDAO" + }, + { + "name": "telegram", + "url": "https://t.me/BanklessDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bankless-dao/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/bankless/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCAl9Ld79qaZxp9JzEOwd3aA" + }, + { + "name": "facebook", + "url": "https://facebook.com/banklesshq" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198/logo.png b/blockchains/ethereum/assets/0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198/logo.png new file mode 100644 index 00000000..9ff30d44 Binary files /dev/null and b/blockchains/ethereum/assets/0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198/logo.png differ diff --git a/blockchains/ethereum/assets/0x2d9765a94FF22e0CA3AfC3E3F4B116dE2b67582a/info.json b/blockchains/ethereum/assets/0x2d9765a94FF22e0CA3AfC3E3F4B116dE2b67582a/info.json new file mode 100644 index 00000000..d67c5505 --- /dev/null +++ b/blockchains/ethereum/assets/0x2d9765a94FF22e0CA3AfC3E3F4B116dE2b67582a/info.json @@ -0,0 +1,11 @@ +{ + "name": "CGCOINS", + "symbol": "CGC", + "type": "ERC20", + "decimals": 16, + "description": "-", + "website": "https://www.genieico.net/", + "explorer": "https://etherscan.io/token/0x2d9765a94FF22e0CA3AfC3E3F4B116dE2b67582a", + "status": "abandoned", + "id": "0x2d9765a94FF22e0CA3AfC3E3F4B116dE2b67582a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2d9765a94FF22e0CA3AfC3E3F4B116dE2b67582a/logo.png b/blockchains/ethereum/assets/0x2d9765a94FF22e0CA3AfC3E3F4B116dE2b67582a/logo.png new file mode 100755 index 00000000..34fdb984 Binary files /dev/null and b/blockchains/ethereum/assets/0x2d9765a94FF22e0CA3AfC3E3F4B116dE2b67582a/logo.png differ diff --git a/blockchains/ethereum/assets/0x2dA719DB753dFA10a62E140f436E1d67F2ddB0d6/info.json b/blockchains/ethereum/assets/0x2dA719DB753dFA10a62E140f436E1d67F2ddB0d6/info.json new file mode 100644 index 00000000..343aa087 --- /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 00000000..d4f52619 Binary files /dev/null and b/blockchains/ethereum/assets/0x2dA719DB753dFA10a62E140f436E1d67F2ddB0d6/logo.png differ diff --git a/blockchains/ethereum/assets/0x2dAEE1AA61D60A252DC80564499A69802853583A/info.json b/blockchains/ethereum/assets/0x2dAEE1AA61D60A252DC80564499A69802853583A/info.json new file mode 100644 index 00000000..448ecdb4 --- /dev/null +++ b/blockchains/ethereum/assets/0x2dAEE1AA61D60A252DC80564499A69802853583A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Authorship Token", + "symbol": "ATS", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "http://authorship.com/", + "explorer": "https://etherscan.io/token/0x2dAEE1AA61D60A252DC80564499A69802853583A", + "status": "abandoned", + "id": "0x2dAEE1AA61D60A252DC80564499A69802853583A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2dAEE1AA61D60A252DC80564499A69802853583A/logo.png b/blockchains/ethereum/assets/0x2dAEE1AA61D60A252DC80564499A69802853583A/logo.png new file mode 100644 index 00000000..bd54ba1d Binary files /dev/null and b/blockchains/ethereum/assets/0x2dAEE1AA61D60A252DC80564499A69802853583A/logo.png differ diff --git a/blockchains/ethereum/assets/0x2dD57b497c777D9825A5902114BE81dF98eDE958/info.json b/blockchains/ethereum/assets/0x2dD57b497c777D9825A5902114BE81dF98eDE958/info.json new file mode 100644 index 00000000..04b885f4 --- /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 00000000..2ce033b0 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 00000000..d4cb7e44 --- /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 00000000..461b4eb9 Binary files /dev/null and b/blockchains/ethereum/assets/0x2dDc2391CC89E3e716A938F089AE755174cfDf1f/logo.png differ diff --git a/blockchains/ethereum/assets/0x2ddEDB349128B52C9fddaa03A15a00D37137bBc0/info.json b/blockchains/ethereum/assets/0x2ddEDB349128B52C9fddaa03A15a00D37137bBc0/info.json new file mode 100644 index 00000000..0bb2f76f --- /dev/null +++ b/blockchains/ethereum/assets/0x2ddEDB349128B52C9fddaa03A15a00D37137bBc0/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-21/30M81", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2ddEDB349128B52C9fddaa03A15a00D37137bBc0", + "status": "abandoned", + "id": "0x2ddEDB349128B52C9fddaa03A15a00D37137bBc0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2ddEDB349128B52C9fddaa03A15a00D37137bBc0/logo.png b/blockchains/ethereum/assets/0x2ddEDB349128B52C9fddaa03A15a00D37137bBc0/logo.png new file mode 100644 index 00000000..54f59a5c Binary files /dev/null and b/blockchains/ethereum/assets/0x2ddEDB349128B52C9fddaa03A15a00D37137bBc0/logo.png differ diff --git a/blockchains/ethereum/assets/0x2de72aDa48BDF7Bac276256D3F016fE058490C34/info.json b/blockchains/ethereum/assets/0x2de72aDa48BDF7Bac276256D3F016fE058490C34/info.json new file mode 100644 index 00000000..8a2cc1a4 --- /dev/null +++ b/blockchains/ethereum/assets/0x2de72aDa48BDF7Bac276256D3F016fE058490C34/info.json @@ -0,0 +1,11 @@ +{ + "name": "Floki Inu", + "website": "https://theflokiinu.com", + "description": "Floki Inu is a meme token that provides deflationary rewards to holders.", + "explorer": "https://etherscan.io/token/0x2de72aDa48BDF7Bac276256D3F016fE058490C34", + "type": "ERC20", + "symbol": "FLOKI", + "decimals": 9, + "status": "abandoned", + "id": "0x2de72aDa48BDF7Bac276256D3F016fE058490C34" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json b/blockchains/ethereum/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json new file mode 100644 index 00000000..bbc22323 --- /dev/null +++ b/blockchains/ethereum/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json @@ -0,0 +1,44 @@ +{ + "name": "SPACE ID", + "symbol": "ID", + "type": "ERC20", + "decimals": 18, + "description": "SPACE ID is a universal name service network that seamlessly connects people, information, assets, and applications in the digital world. SPACE ID is also the provider of .bnb domain name service.", + "website": "https://space.id/", + "explorer": "https://etherscan.io/token/0x2dfF88A56767223A5529eA5960Da7A3F5f766406", + "id": "0x2dfF88A56767223A5529eA5960Da7A3F5f766406", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SpaceIDProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/spaceid_news" + }, + { + "name": "discord", + "url": "https://discord.com/invite/spaceid" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/space-id/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/space-id/" + }, + { + "name": "docs", + "url": "https://docs.space.id/" + }, + { + "name": "blog", + "url": "https://blog.space.id/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/logo.png b/blockchains/ethereum/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/logo.png new file mode 100644 index 00000000..a6a3c275 Binary files /dev/null and b/blockchains/ethereum/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/logo.png differ diff --git a/blockchains/ethereum/assets/0x2e00CD222Cb42B616D86D037Cc494e8ab7F5c9a3/info.json b/blockchains/ethereum/assets/0x2e00CD222Cb42B616D86D037Cc494e8ab7F5c9a3/info.json new file mode 100644 index 00000000..5c1b74b6 --- /dev/null +++ b/blockchains/ethereum/assets/0x2e00CD222Cb42B616D86D037Cc494e8ab7F5c9a3/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueGoldCoin*", + "symbol": "TGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2e00CD222Cb42B616D86D037Cc494e8ab7F5c9a3", + "status": "abandoned", + "id": "0x2e00CD222Cb42B616D86D037Cc494e8ab7F5c9a3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2e00CD222Cb42B616D86D037Cc494e8ab7F5c9a3/logo.png b/blockchains/ethereum/assets/0x2e00CD222Cb42B616D86D037Cc494e8ab7F5c9a3/logo.png new file mode 100644 index 00000000..5eb97a26 Binary files /dev/null and b/blockchains/ethereum/assets/0x2e00CD222Cb42B616D86D037Cc494e8ab7F5c9a3/logo.png differ diff --git a/blockchains/ethereum/assets/0x2e071D2966Aa7D8dECB1005885bA1977D6038A65/info.json b/blockchains/ethereum/assets/0x2e071D2966Aa7D8dECB1005885bA1977D6038A65/info.json new file mode 100644 index 00000000..e9b71492 --- /dev/null +++ b/blockchains/ethereum/assets/0x2e071D2966Aa7D8dECB1005885bA1977D6038A65/info.json @@ -0,0 +1,11 @@ +{ + "name": "DICE", + "symbol": "ROL", + "type": "ERC20", + "decimals": 16, + "description": "-", + "website": "https://etheroll.com/", + "explorer": "https://etherscan.io/token/0x2e071D2966Aa7D8dECB1005885bA1977D6038A65", + "status": "abandoned", + "id": "0x2e071D2966Aa7D8dECB1005885bA1977D6038A65" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2e071D2966Aa7D8dECB1005885bA1977D6038A65/logo.png b/blockchains/ethereum/assets/0x2e071D2966Aa7D8dECB1005885bA1977D6038A65/logo.png new file mode 100644 index 00000000..419aa362 Binary files /dev/null and b/blockchains/ethereum/assets/0x2e071D2966Aa7D8dECB1005885bA1977D6038A65/logo.png differ diff --git a/blockchains/ethereum/assets/0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14/info.json b/blockchains/ethereum/assets/0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14/info.json new file mode 100644 index 00000000..aeacd9fb --- /dev/null +++ b/blockchains/ethereum/assets/0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14/info.json @@ -0,0 +1,37 @@ +{ + "name": "Mettalex", + "website": "https://mettalex.com/", + "description": "Mettalex is a capital-efficient commodity derivatives DEX featuring unique market pairs, autonomous market making, banded trading, one-sided liquidity provision, and MTLX-based governance.", + "explorer": "https://etherscan.io/token/0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14", + "type": "ERC20", + "symbol": "MTLX", + "decimals": 18, + "status": "active", + "id": "0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14", + "links": [ + { + "name": "github", + "url": "https://github.com/fetchai/mettalex-market-maker" + }, + { + "name": "x", + "url": "https://x.com/Mettalex" + }, + { + "name": "telegram", + "url": "https://t.me/mettalex_official_news" + }, + { + "name": "discord", + "url": "https://discord.com/invite/zvWqGEaykD" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCrEQK_X2Vm1kCtftlRoodXA" + }, + { + "name": "medium", + "url": "https://medium.com/mettalex" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14/logo.png b/blockchains/ethereum/assets/0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14/logo.png new file mode 100644 index 00000000..a1923e0a Binary files /dev/null and b/blockchains/ethereum/assets/0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14/logo.png differ diff --git a/blockchains/ethereum/assets/0x2e2f3246b6c65CCc4239c9Ee556EC143a7E5DE2c/info.json b/blockchains/ethereum/assets/0x2e2f3246b6c65CCc4239c9Ee556EC143a7E5DE2c/info.json new file mode 100644 index 00000000..c8756bea --- /dev/null +++ b/blockchains/ethereum/assets/0x2e2f3246b6c65CCc4239c9Ee556EC143a7E5DE2c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yfi.mobi", + "website": "https://yfi.mobi/", + "description": "YFIM is an independent fork of YFI technology. It is a decentralized mobile application of YFI. The platform aggregates multiple protocols. When users deposit, the platform will automatically allocate user funds to the current agreement with the highest revenue, and give users a name In order to prove the rights and interests of YFIM Token, users can withdraw their original deposited tokens and corresponding income through YFIM Token.", + "explorer": "https://etherscan.io/token/0x2e2f3246b6c65CCc4239c9Ee556EC143a7E5DE2c", + "type": "ERC20", + "symbol": "YFIM", + "decimals": 18, + "status": "active", + "id": "0x2e2f3246b6c65CCc4239c9Ee556EC143a7E5DE2c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2e2f3246b6c65CCc4239c9Ee556EC143a7E5DE2c/logo.png b/blockchains/ethereum/assets/0x2e2f3246b6c65CCc4239c9Ee556EC143a7E5DE2c/logo.png new file mode 100644 index 00000000..00db7417 Binary files /dev/null and b/blockchains/ethereum/assets/0x2e2f3246b6c65CCc4239c9Ee556EC143a7E5DE2c/logo.png differ diff --git a/blockchains/ethereum/assets/0x2e3C062E16c1a3a04Ddc5003c62E294305d83684/info.json b/blockchains/ethereum/assets/0x2e3C062E16c1a3a04Ddc5003c62E294305d83684/info.json new file mode 100644 index 00000000..8661c936 --- /dev/null +++ b/blockchains/ethereum/assets/0x2e3C062E16c1a3a04Ddc5003c62E294305d83684/info.json @@ -0,0 +1,11 @@ +{ + "name": "LITonium", + "symbol": "LIT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "https://thelitcollective.com/", + "explorer": "https://etherscan.io/token/0x2e3C062E16c1a3a04Ddc5003c62E294305d83684", + "status": "abandoned", + "id": "0x2e3C062E16c1a3a04Ddc5003c62E294305d83684" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2e3C062E16c1a3a04Ddc5003c62E294305d83684/logo.png b/blockchains/ethereum/assets/0x2e3C062E16c1a3a04Ddc5003c62E294305d83684/logo.png new file mode 100644 index 00000000..bbce5992 Binary files /dev/null and b/blockchains/ethereum/assets/0x2e3C062E16c1a3a04Ddc5003c62E294305d83684/logo.png differ diff --git a/blockchains/ethereum/assets/0x2e44f3f609ff5aA4819B323FD74690f07C3607c4/info.json b/blockchains/ethereum/assets/0x2e44f3f609ff5aA4819B323FD74690f07C3607c4/info.json new file mode 100644 index 00000000..1baa4739 --- /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 00000000..ced79ebb 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 new file mode 100644 index 00000000..380f6767 --- /dev/null +++ b/blockchains/ethereum/assets/0x2e6539edc3b76f1E21B71d214527FAbA875F70F3/info.json @@ -0,0 +1,29 @@ +{ + "name": "Yearn Finance Dot", + "website": "https://yfdot.finance", + "description": "Yearn Finance Dot platform is powerful enough from a scalability, interoperability, developability and governance perspective to help make the vision of Web3 a reality that aims to get more value for an investment.", + "explorer": "https://etherscan.io/token/0x2e6539edc3b76f1E21B71d214527FAbA875F70F3", + "type": "ERC20", + "symbol": "YFDOT", + "decimals": 18, + "status": "active", + "id": "0x2e6539edc3b76f1E21B71d214527FAbA875F70F3", + "links": [ + { + "name": "github", + "url": "https://github.com/YFDOT" + }, + { + "name": "x", + "url": "https://x.com/Yfdotfinance" + }, + { + "name": "telegram", + "url": "https://t.me/YFDOT_Finance" + }, + { + "name": "medium", + "url": "https://medium.com/@YFdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2e6539edc3b76f1E21B71d214527FAbA875F70F3/logo.png b/blockchains/ethereum/assets/0x2e6539edc3b76f1E21B71d214527FAbA875F70F3/logo.png new file mode 100644 index 00000000..4e983101 Binary files /dev/null and b/blockchains/ethereum/assets/0x2e6539edc3b76f1E21B71d214527FAbA875F70F3/logo.png differ diff --git a/blockchains/ethereum/assets/0x2e85ae1C47602f7927bCabc2Ff99C40aA222aE15/info.json b/blockchains/ethereum/assets/0x2e85ae1C47602f7927bCabc2Ff99C40aA222aE15/info.json new file mode 100644 index 00000000..1820b990 --- /dev/null +++ b/blockchains/ethereum/assets/0x2e85ae1C47602f7927bCabc2Ff99C40aA222aE15/info.json @@ -0,0 +1,48 @@ +{ + "id": "0x2e85ae1C47602f7927bCabc2Ff99C40aA222aE15", + "name": "Katana Inu Token", + "website": "https://katanainu.com", + "description": "Katana Inu is a play2earn metaverse NFT-Game in an interactive openworld - All skins and weapons are NFTs. A project that focuses on driving Gaming & NFT crypto innovation through its innovative game offerings with auto staking in in-game reward method.", + "explorer": "https://etherscan.io/token/0x2e85ae1C47602f7927bCabc2Ff99C40aA222aE15", + "type": "ERC20", + "symbol": "KATA", + "decimals": 18, + "status": "active", + "tags": [ + "gamefi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/katanainu/katacoin-contract" + }, + { + "name": "x", + "url": "https://x.com/katanainu" + }, + { + "name": "telegram_news", + "url": "https://t.me/katanainuannouncement" + }, + { + "name": "telegram", + "url": "https://t.me/katanainu" + }, + { + "name": "medium", + "url": "https://medium.com/@katanainu/katana-inu-a-great-play2earn-battle-royale-pc-game-with-nft-marketplace-on-layer-2-a56f9bbcce79" + }, + { + "name": "whitepaper", + "url": "https://katanainu.com/katanainuwhitepaper.pdf/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/katana-inu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/katana-inu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2e85ae1C47602f7927bCabc2Ff99C40aA222aE15/logo.png b/blockchains/ethereum/assets/0x2e85ae1C47602f7927bCabc2Ff99C40aA222aE15/logo.png new file mode 100644 index 00000000..e6b50bc8 Binary files /dev/null and b/blockchains/ethereum/assets/0x2e85ae1C47602f7927bCabc2Ff99C40aA222aE15/logo.png differ diff --git a/blockchains/ethereum/assets/0x2e91E3e54C5788e9FdD6A181497FDcEa1De1bcc1/info.json b/blockchains/ethereum/assets/0x2e91E3e54C5788e9FdD6A181497FDcEa1De1bcc1/info.json new file mode 100644 index 00000000..b8731053 --- /dev/null +++ b/blockchains/ethereum/assets/0x2e91E3e54C5788e9FdD6A181497FDcEa1De1bcc1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hercules", + "symbol": "HERC", + "type": "ERC20", + "decimals": 18, + "description": "Hercules is a decentralized blockchain protocol platform that enables anyone to operate a fully functioning supply chain.", + "website": "https://herc.one/", + "explorer": "https://etherscan.io/token/0x2e91E3e54C5788e9FdD6A181497FDcEa1De1bcc1", + "status": "active", + "id": "0x2e91E3e54C5788e9FdD6A181497FDcEa1De1bcc1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2e91E3e54C5788e9FdD6A181497FDcEa1De1bcc1/logo.png b/blockchains/ethereum/assets/0x2e91E3e54C5788e9FdD6A181497FDcEa1De1bcc1/logo.png new file mode 100644 index 00000000..7f77ae6b Binary files /dev/null and b/blockchains/ethereum/assets/0x2e91E3e54C5788e9FdD6A181497FDcEa1De1bcc1/logo.png differ diff --git a/blockchains/ethereum/assets/0x2e98A6804E4b6c832ED0ca876a943abD3400b224/info.json b/blockchains/ethereum/assets/0x2e98A6804E4b6c832ED0ca876a943abD3400b224/info.json new file mode 100644 index 00000000..5ad50c5a --- /dev/null +++ b/blockchains/ethereum/assets/0x2e98A6804E4b6c832ED0ca876a943abD3400b224/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bela", + "symbol": "BELA", + "type": "ERC20", + "decimals": 18, + "description": "Bela (BELA) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.livebela.com", + "explorer": "https://etherscan.io/token/0x2e98A6804E4b6c832ED0ca876a943abD3400b224", + "status": "active", + "id": "0x2e98A6804E4b6c832ED0ca876a943abD3400b224" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2e98A6804E4b6c832ED0ca876a943abD3400b224/logo.png b/blockchains/ethereum/assets/0x2e98A6804E4b6c832ED0ca876a943abD3400b224/logo.png new file mode 100755 index 00000000..394d6235 Binary files /dev/null and b/blockchains/ethereum/assets/0x2e98A6804E4b6c832ED0ca876a943abD3400b224/logo.png differ diff --git a/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/info.json b/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/info.json new file mode 100644 index 00000000..b5387670 --- /dev/null +++ b/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tokemak", + "type": "ERC20", + "symbol": "TOKE", + "decimals": 18, + "website": "https://www.tokemak.xyz/", + "description": "TOKE migrated to AUTO: https://blog.auto.finance/post/toke-to-auto-migration-is-now-live", + "explorer": "https://etherscan.io/token/0x2e9d63788249371f1DFC918a52f8d799F4a38C94", + "status": "abandoned", + "id": "0x2e9d63788249371f1DFC918a52f8d799F4a38C94" +} diff --git a/blockchains/ethereum/assets/0x2eC95B8edA549B79a1248335A39d299d00Ed314C/info.json b/blockchains/ethereum/assets/0x2eC95B8edA549B79a1248335A39d299d00Ed314C/info.json new file mode 100644 index 00000000..a2cf81c5 --- /dev/null +++ b/blockchains/ethereum/assets/0x2eC95B8edA549B79a1248335A39d299d00Ed314C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fatcoin", + "symbol": "FAT", + "type": "ERC20", + "decimals": 18, + "description": "Fatcoin (FAT) is an ERC20 token issued by the FatBTC exchange for use within its ecosystem.", + "website": "https://www.fatbtc.com/", + "explorer": "https://etherscan.io/token/0x2eC95B8edA549B79a1248335A39d299d00Ed314C", + "status": "active", + "id": "0x2eC95B8edA549B79a1248335A39d299d00Ed314C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2eC95B8edA549B79a1248335A39d299d00Ed314C/logo.png b/blockchains/ethereum/assets/0x2eC95B8edA549B79a1248335A39d299d00Ed314C/logo.png new file mode 100644 index 00000000..96e1518f Binary files /dev/null and b/blockchains/ethereum/assets/0x2eC95B8edA549B79a1248335A39d299d00Ed314C/logo.png differ diff --git a/blockchains/ethereum/assets/0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5/info.json b/blockchains/ethereum/assets/0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5/info.json new file mode 100644 index 00000000..bfb1b257 --- /dev/null +++ b/blockchains/ethereum/assets/0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5/info.json @@ -0,0 +1,29 @@ +{ + "name": "ZeroSwap", + "website": "https://zeroswap.io/", + "description": "ZeroSwap.io is a Multi-Chain, Zero-fee, On-chain Trading protocol with Liquidity Mining, DeFi Token Offering, and DEX Aggregation. The protocol will reward users every time they make an on-chain trade and provide liquidity to existing DEXes. All transactions would be Gasless with Zero Trade Fee.", + "explorer": "https://etherscan.io/token/0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5", + "type": "ERC20", + "symbol": "ZEE", + "decimals": 18, + "status": "active", + "id": "0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5", + "links": [ + { + "name": "github", + "url": "https://github.com/ZeroswapLabs" + }, + { + "name": "x", + "url": "https://x.com/ZeroSwapLabs" + }, + { + "name": "telegram", + "url": "https://t.me/zeroswap" + }, + { + "name": "medium", + "url": "https://medium.com/zeroswaplabs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5/logo.png b/blockchains/ethereum/assets/0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5/logo.png new file mode 100644 index 00000000..d6c6bf4e Binary files /dev/null and b/blockchains/ethereum/assets/0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5/logo.png differ diff --git a/blockchains/ethereum/assets/0x2eb86e8fC520E0F6Bb5D9Af08F924fe70558Ab89/info.json b/blockchains/ethereum/assets/0x2eb86e8fC520E0F6Bb5D9Af08F924fe70558Ab89/info.json new file mode 100644 index 00000000..7aceb659 --- /dev/null +++ b/blockchains/ethereum/assets/0x2eb86e8fC520E0F6Bb5D9Af08F924fe70558Ab89/info.json @@ -0,0 +1,11 @@ +{ + "name": "Logarithm", + "symbol": "LGR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2eb86e8fC520E0F6Bb5D9Af08F924fe70558Ab89", + "status": "abandoned", + "id": "0x2eb86e8fC520E0F6Bb5D9Af08F924fe70558Ab89" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2eb86e8fC520E0F6Bb5D9Af08F924fe70558Ab89/logo.png b/blockchains/ethereum/assets/0x2eb86e8fC520E0F6Bb5D9Af08F924fe70558Ab89/logo.png new file mode 100644 index 00000000..5e072580 Binary files /dev/null and b/blockchains/ethereum/assets/0x2eb86e8fC520E0F6Bb5D9Af08F924fe70558Ab89/logo.png differ diff --git a/blockchains/ethereum/assets/0x2ecB13A8c458c379c4d9a7259e202De03c8F3D19/info.json b/blockchains/ethereum/assets/0x2ecB13A8c458c379c4d9a7259e202De03c8F3D19/info.json new file mode 100644 index 00000000..f8ee8238 --- /dev/null +++ b/blockchains/ethereum/assets/0x2ecB13A8c458c379c4d9a7259e202De03c8F3D19/info.json @@ -0,0 +1,11 @@ +{ + "name": "Block-Chain.com Token", + "symbol": "BC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://block-chain.com/", + "explorer": "https://etherscan.io/token/0x2ecB13A8c458c379c4d9a7259e202De03c8F3D19", + "status": "abandoned", + "id": "0x2ecB13A8c458c379c4d9a7259e202De03c8F3D19" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2ecB13A8c458c379c4d9a7259e202De03c8F3D19/logo.png b/blockchains/ethereum/assets/0x2ecB13A8c458c379c4d9a7259e202De03c8F3D19/logo.png new file mode 100644 index 00000000..ff7fa571 Binary files /dev/null and b/blockchains/ethereum/assets/0x2ecB13A8c458c379c4d9a7259e202De03c8F3D19/logo.png differ diff --git a/blockchains/ethereum/assets/0x2ef31d97FA8Ab9440d911f38c6D53921C5a64257/info.json b/blockchains/ethereum/assets/0x2ef31d97FA8Ab9440d911f38c6D53921C5a64257/info.json new file mode 100644 index 00000000..b3184a2b --- /dev/null +++ b/blockchains/ethereum/assets/0x2ef31d97FA8Ab9440d911f38c6D53921C5a64257/info.json @@ -0,0 +1,11 @@ +{ + "name": "Noise", + "symbol": "NOISE", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2ef31d97FA8Ab9440d911f38c6D53921C5a64257", + "status": "abandoned", + "id": "0x2ef31d97FA8Ab9440d911f38c6D53921C5a64257" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2ef31d97FA8Ab9440d911f38c6D53921C5a64257/logo.png b/blockchains/ethereum/assets/0x2ef31d97FA8Ab9440d911f38c6D53921C5a64257/logo.png new file mode 100644 index 00000000..c25ec397 Binary files /dev/null and b/blockchains/ethereum/assets/0x2ef31d97FA8Ab9440d911f38c6D53921C5a64257/logo.png differ diff --git a/blockchains/ethereum/assets/0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9/info.json b/blockchains/ethereum/assets/0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9/info.json new file mode 100644 index 00000000..96da0d9a --- /dev/null +++ b/blockchains/ethereum/assets/0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9/info.json @@ -0,0 +1,45 @@ +{ + "name": "Revain", + "symbol": "REV", + "type": "ERC20", + "decimals": 6, + "description": "Revain is a blockchain-based review platform for the crypto community. Revain's ultimate goal is to provide high-quality reviews on all global products and services using emerging technologies like blockchain and AI.", + "website": "https://revain.org/", + "explorer": "https://etherscan.io/token/0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9", + "status": "active", + "id": "0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9", + "links": [ + { + "name": "github", + "url": "https://github.com/Revain" + }, + { + "name": "x", + "url": "https://x.com/Revain_org" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/revain_org/" + }, + { + "name": "blog", + "url": "https://medium.com/revain" + }, + { + "name": "facebook", + "url": "https://facebook.com/revain.org/" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/CzZcC0PCgpJcbBCb3JfNeQ" + }, + { + "name": "whitepaper", + "url": "https://revain.org/pdf/wp/en-wp.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/revain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9/logo.png b/blockchains/ethereum/assets/0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9/logo.png new file mode 100644 index 00000000..adb8cdbe Binary files /dev/null and b/blockchains/ethereum/assets/0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9/logo.png differ diff --git a/blockchains/ethereum/assets/0x2f44A61c7d404CFc8eCb622bBBb130e56Ba786D9/info.json b/blockchains/ethereum/assets/0x2f44A61c7d404CFc8eCb622bBBb130e56Ba786D9/info.json new file mode 100644 index 00000000..cf730bfa --- /dev/null +++ b/blockchains/ethereum/assets/0x2f44A61c7d404CFc8eCb622bBBb130e56Ba786D9/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R728413", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2f44A61c7d404CFc8eCb622bBBb130e56Ba786D9", + "status": "spam", + "id": "0x2f44A61c7d404CFc8eCb622bBBb130e56Ba786D9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2f44A61c7d404CFc8eCb622bBBb130e56Ba786D9/logo.png b/blockchains/ethereum/assets/0x2f44A61c7d404CFc8eCb622bBBb130e56Ba786D9/logo.png new file mode 100644 index 00000000..b1cafe8a Binary files /dev/null and b/blockchains/ethereum/assets/0x2f44A61c7d404CFc8eCb622bBBb130e56Ba786D9/logo.png differ diff --git a/blockchains/ethereum/assets/0x2f4eb47A1b1F4488C71fc10e39a4aa56AF33Dd49/info.json b/blockchains/ethereum/assets/0x2f4eb47A1b1F4488C71fc10e39a4aa56AF33Dd49/info.json new file mode 100644 index 00000000..d0b2e788 --- /dev/null +++ b/blockchains/ethereum/assets/0x2f4eb47A1b1F4488C71fc10e39a4aa56AF33Dd49/info.json @@ -0,0 +1,37 @@ +{ + "name": "UNCL", + "website": "https://unicrypt.network", + "description": "UNCL is the liquidity rewards token of the UniCrypt Farming platform.", + "explorer": "https://etherscan.io/token/0x2f4eb47a1b1f4488c71fc10e39a4aa56af33dd49", + "type": "ERC20", + "symbol": "UNCL", + "decimals": 18, + "status": "active", + "id": "0x2f4eb47A1b1F4488C71fc10e39a4aa56AF33Dd49", + "links": [ + { + "name": "x", + "url": "https://x.com/UNCX_token" + }, + { + "name": "medium", + "url": "https://unicrypt.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/uncx_token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uncl/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uncl" + }, + { + "name": "docs", + "url": "https://docs.unicrypt.network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2f4eb47A1b1F4488C71fc10e39a4aa56AF33Dd49/logo.png b/blockchains/ethereum/assets/0x2f4eb47A1b1F4488C71fc10e39a4aa56AF33Dd49/logo.png new file mode 100644 index 00000000..4fed8801 Binary files /dev/null and b/blockchains/ethereum/assets/0x2f4eb47A1b1F4488C71fc10e39a4aa56AF33Dd49/logo.png differ diff --git a/blockchains/ethereum/assets/0x2f5e2c9002C058c063d21A06B6cabb50950130c8/info.json b/blockchains/ethereum/assets/0x2f5e2c9002C058c063d21A06B6cabb50950130c8/info.json new file mode 100644 index 00000000..48e623dd --- /dev/null +++ b/blockchains/ethereum/assets/0x2f5e2c9002C058c063d21A06B6cabb50950130c8/info.json @@ -0,0 +1,11 @@ +{ + "name": " 3X Short Ethereum Token", + "symbol": "ETHBEAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ftx.com/tokens/ETHBEAR", + "explorer": "https://etherscan.io/token/0x2f5e2c9002C058c063d21A06B6cabb50950130c8", + "status": "abandoned", + "id": "0x2f5e2c9002C058c063d21A06B6cabb50950130c8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2f5e2c9002C058c063d21A06B6cabb50950130c8/logo.png b/blockchains/ethereum/assets/0x2f5e2c9002C058c063d21A06B6cabb50950130c8/logo.png new file mode 100644 index 00000000..4d1fbe0a Binary files /dev/null and b/blockchains/ethereum/assets/0x2f5e2c9002C058c063d21A06B6cabb50950130c8/logo.png differ diff --git a/blockchains/ethereum/assets/0x2f8472dd7ecf7cA760c8f6b45dB20Ca7cf52F8d7/info.json b/blockchains/ethereum/assets/0x2f8472dd7ecf7cA760c8f6b45dB20Ca7cf52F8d7/info.json new file mode 100644 index 00000000..f602ad5b --- /dev/null +++ b/blockchains/ethereum/assets/0x2f8472dd7ecf7cA760c8f6b45dB20Ca7cf52F8d7/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitStation", + "symbol": "BSTN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.bitstation.co/en/", + "explorer": "https://etherscan.io/token/0x2f8472dd7ecf7cA760c8f6b45dB20Ca7cf52F8d7", + "status": "abandoned", + "id": "0x2f8472dd7ecf7cA760c8f6b45dB20Ca7cf52F8d7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2f8472dd7ecf7cA760c8f6b45dB20Ca7cf52F8d7/logo.png b/blockchains/ethereum/assets/0x2f8472dd7ecf7cA760c8f6b45dB20Ca7cf52F8d7/logo.png new file mode 100644 index 00000000..9783b248 Binary files /dev/null and b/blockchains/ethereum/assets/0x2f8472dd7ecf7cA760c8f6b45dB20Ca7cf52F8d7/logo.png differ diff --git a/blockchains/ethereum/assets/0x2f85E502a988AF76f7ee6D83b7db8d6c0A823bf9/info.json b/blockchains/ethereum/assets/0x2f85E502a988AF76f7ee6D83b7db8d6c0A823bf9/info.json new file mode 100644 index 00000000..89f06ebd --- /dev/null +++ b/blockchains/ethereum/assets/0x2f85E502a988AF76f7ee6D83b7db8d6c0A823bf9/info.json @@ -0,0 +1,11 @@ +{ + "name": "LatiumX", + "symbol": "LATX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://latium.org/", + "explorer": "https://etherscan.io/token/0x2f85E502a988AF76f7ee6D83b7db8d6c0A823bf9", + "status": "active", + "id": "0x2f85E502a988AF76f7ee6D83b7db8d6c0A823bf9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2f85E502a988AF76f7ee6D83b7db8d6c0A823bf9/logo.png b/blockchains/ethereum/assets/0x2f85E502a988AF76f7ee6D83b7db8d6c0A823bf9/logo.png new file mode 100644 index 00000000..c8a2a8f4 Binary files /dev/null and b/blockchains/ethereum/assets/0x2f85E502a988AF76f7ee6D83b7db8d6c0A823bf9/logo.png differ diff --git a/blockchains/ethereum/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/info.json b/blockchains/ethereum/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/info.json new file mode 100644 index 00000000..22b780af --- /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 00000000..e555fa9b Binary files /dev/null and b/blockchains/ethereum/assets/0x2f9a35aB5dDFBc49927BFdEab98A86c53DC6E763/logo.png differ diff --git a/blockchains/ethereum/assets/0x2fC9B3Cce679ADa44a6900cC5731F32775D75CAF/info.json b/blockchains/ethereum/assets/0x2fC9B3Cce679ADa44a6900cC5731F32775D75CAF/info.json new file mode 100644 index 00000000..214f8d54 --- /dev/null +++ b/blockchains/ethereum/assets/0x2fC9B3Cce679ADa44a6900cC5731F32775D75CAF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Diamond Chain", + "symbol": "DIC", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2fC9B3Cce679ADa44a6900cC5731F32775D75CAF", + "status": "abandoned", + "id": "0x2fC9B3Cce679ADa44a6900cC5731F32775D75CAF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2fC9B3Cce679ADa44a6900cC5731F32775D75CAF/logo.png b/blockchains/ethereum/assets/0x2fC9B3Cce679ADa44a6900cC5731F32775D75CAF/logo.png new file mode 100644 index 00000000..98b5afb1 Binary files /dev/null and b/blockchains/ethereum/assets/0x2fC9B3Cce679ADa44a6900cC5731F32775D75CAF/logo.png differ diff --git a/blockchains/ethereum/assets/0x2fa423671eab043916eA93B85596438a16302C25/info.json b/blockchains/ethereum/assets/0x2fa423671eab043916eA93B85596438a16302C25/info.json new file mode 100644 index 00000000..15f08ec1 --- /dev/null +++ b/blockchains/ethereum/assets/0x2fa423671eab043916eA93B85596438a16302C25/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-5/30M35", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x2fa423671eab043916eA93B85596438a16302C25", + "status": "abandoned", + "id": "0x2fa423671eab043916eA93B85596438a16302C25" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2fa423671eab043916eA93B85596438a16302C25/logo.png b/blockchains/ethereum/assets/0x2fa423671eab043916eA93B85596438a16302C25/logo.png new file mode 100644 index 00000000..c8741ff2 Binary files /dev/null and b/blockchains/ethereum/assets/0x2fa423671eab043916eA93B85596438a16302C25/logo.png differ diff --git a/blockchains/ethereum/assets/0x2fd61567c29E7ADB4Ca17e60E1f4a3Fcfe68aCb8/info.json b/blockchains/ethereum/assets/0x2fd61567c29E7ADB4Ca17e60E1f4a3Fcfe68aCb8/info.json new file mode 100644 index 00000000..8cb05bc5 --- /dev/null +++ b/blockchains/ethereum/assets/0x2fd61567c29E7ADB4Ca17e60E1f4a3Fcfe68aCb8/info.json @@ -0,0 +1,11 @@ +{ + "name": "SymVerse", + "symbol": "SYM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.symverse.com/", + "explorer": "https://etherscan.io/token/0x2fd61567c29E7ADB4Ca17e60E1f4a3Fcfe68aCb8", + "status": "abandoned", + "id": "0x2fd61567c29E7ADB4Ca17e60E1f4a3Fcfe68aCb8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2fd61567c29E7ADB4Ca17e60E1f4a3Fcfe68aCb8/logo.png b/blockchains/ethereum/assets/0x2fd61567c29E7ADB4Ca17e60E1f4a3Fcfe68aCb8/logo.png new file mode 100644 index 00000000..2f9f24ff Binary files /dev/null and b/blockchains/ethereum/assets/0x2fd61567c29E7ADB4Ca17e60E1f4a3Fcfe68aCb8/logo.png differ diff --git a/blockchains/ethereum/assets/0x2fe39f22EAC6d3c1C86DD9D143640EbB94609FCE/info.json b/blockchains/ethereum/assets/0x2fe39f22EAC6d3c1C86DD9D143640EbB94609FCE/info.json new file mode 100644 index 00000000..8c1b0be7 --- /dev/null +++ b/blockchains/ethereum/assets/0x2fe39f22EAC6d3c1C86DD9D143640EbB94609FCE/info.json @@ -0,0 +1,11 @@ +{ + "name": "JDCOIN", + "symbol": "JDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.jdcoin.us/", + "explorer": "https://etherscan.io/token/0x2fe39f22EAC6d3c1C86DD9D143640EbB94609FCE", + "status": "abandoned", + "id": "0x2fe39f22EAC6d3c1C86DD9D143640EbB94609FCE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2fe39f22EAC6d3c1C86DD9D143640EbB94609FCE/logo.png b/blockchains/ethereum/assets/0x2fe39f22EAC6d3c1C86DD9D143640EbB94609FCE/logo.png new file mode 100644 index 00000000..7aa3e966 Binary files /dev/null and b/blockchains/ethereum/assets/0x2fe39f22EAC6d3c1C86DD9D143640EbB94609FCE/logo.png differ diff --git a/blockchains/ethereum/assets/0x3007dbdf605784a0F5d89C37cB2518ea60faedCf/info.json b/blockchains/ethereum/assets/0x3007dbdf605784a0F5d89C37cB2518ea60faedCf/info.json new file mode 100644 index 00000000..1ce0f8fd --- /dev/null +++ b/blockchains/ethereum/assets/0x3007dbdf605784a0F5d89C37cB2518ea60faedCf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cobalt", + "symbol": "CSC-CO", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3007dbdf605784a0F5d89C37cB2518ea60faedCf", + "status": "abandoned", + "id": "0x3007dbdf605784a0F5d89C37cB2518ea60faedCf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3007dbdf605784a0F5d89C37cB2518ea60faedCf/logo.png b/blockchains/ethereum/assets/0x3007dbdf605784a0F5d89C37cB2518ea60faedCf/logo.png new file mode 100755 index 00000000..9adf7a33 Binary files /dev/null and b/blockchains/ethereum/assets/0x3007dbdf605784a0F5d89C37cB2518ea60faedCf/logo.png differ diff --git a/blockchains/ethereum/assets/0x3010ccb5419F1EF26D40a7cd3F0d707a0fa127Dc/info.json b/blockchains/ethereum/assets/0x3010ccb5419F1EF26D40a7cd3F0d707a0fa127Dc/info.json new file mode 100644 index 00000000..e930f885 --- /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 00000000..e1f2469c Binary files /dev/null and b/blockchains/ethereum/assets/0x3010ccb5419F1EF26D40a7cd3F0d707a0fa127Dc/logo.png differ diff --git a/blockchains/ethereum/assets/0x301714DA1d783D542958C479345F27B75A7eFC9E/info.json b/blockchains/ethereum/assets/0x301714DA1d783D542958C479345F27B75A7eFC9E/info.json new file mode 100644 index 00000000..b5cd50e1 --- /dev/null +++ b/blockchains/ethereum/assets/0x301714DA1d783D542958C479345F27B75A7eFC9E/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZARK COIN", + "symbol": "ZARK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x301714DA1d783D542958C479345F27B75A7eFC9E", + "status": "active", + "id": "0x301714DA1d783D542958C479345F27B75A7eFC9E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x301714DA1d783D542958C479345F27B75A7eFC9E/logo.png b/blockchains/ethereum/assets/0x301714DA1d783D542958C479345F27B75A7eFC9E/logo.png new file mode 100644 index 00000000..6ab7b937 Binary files /dev/null and b/blockchains/ethereum/assets/0x301714DA1d783D542958C479345F27B75A7eFC9E/logo.png differ diff --git a/blockchains/ethereum/assets/0x3017Cb31A678fE1d247f4314Eee8bc1b86b0D4b4/info.json b/blockchains/ethereum/assets/0x3017Cb31A678fE1d247f4314Eee8bc1b86b0D4b4/info.json new file mode 100644 index 00000000..a733b3ed --- /dev/null +++ b/blockchains/ethereum/assets/0x3017Cb31A678fE1d247f4314Eee8bc1b86b0D4b4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shell Matrix", + "website": "https://shell.org/", + "description": "The token issued by the members of the Shell Matrix community.", + "explorer": "https://etherscan.io/token/0x3017Cb31A678fE1d247f4314Eee8bc1b86b0D4b4", + "type": "ERC20", + "symbol": "SHELL", + "decimals": 6, + "status": "active", + "id": "0x3017Cb31A678fE1d247f4314Eee8bc1b86b0D4b4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3017Cb31A678fE1d247f4314Eee8bc1b86b0D4b4/logo.png b/blockchains/ethereum/assets/0x3017Cb31A678fE1d247f4314Eee8bc1b86b0D4b4/logo.png new file mode 100644 index 00000000..1b571eed Binary files /dev/null and b/blockchains/ethereum/assets/0x3017Cb31A678fE1d247f4314Eee8bc1b86b0D4b4/logo.png differ diff --git a/blockchains/ethereum/assets/0x301C755bA0fcA00B1923768Fffb3Df7f4E63aF31/info.json b/blockchains/ethereum/assets/0x301C755bA0fcA00B1923768Fffb3Df7f4E63aF31/info.json new file mode 100644 index 00000000..3cbd5115 --- /dev/null +++ b/blockchains/ethereum/assets/0x301C755bA0fcA00B1923768Fffb3Df7f4E63aF31/info.json @@ -0,0 +1,11 @@ +{ + "name": "Global Digital Content", + "symbol": "GDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://gdctoken.io/", + "explorer": "https://etherscan.io/token/0x301C755bA0fcA00B1923768Fffb3Df7f4E63aF31", + "status": "abandoned", + "id": "0x301C755bA0fcA00B1923768Fffb3Df7f4E63aF31" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x301C755bA0fcA00B1923768Fffb3Df7f4E63aF31/logo.png b/blockchains/ethereum/assets/0x301C755bA0fcA00B1923768Fffb3Df7f4E63aF31/logo.png new file mode 100644 index 00000000..897c6dea Binary files /dev/null and b/blockchains/ethereum/assets/0x301C755bA0fcA00B1923768Fffb3Df7f4E63aF31/logo.png differ diff --git a/blockchains/ethereum/assets/0x301a7F0F98725D3f9cA889E935b579f1D896B322/info.json b/blockchains/ethereum/assets/0x301a7F0F98725D3f9cA889E935b579f1D896B322/info.json new file mode 100644 index 00000000..7ba66058 --- /dev/null +++ b/blockchains/ethereum/assets/0x301a7F0F98725D3f9cA889E935b579f1D896B322/info.json @@ -0,0 +1,11 @@ +{ + "name": "HUMToken", + "symbol": "HUM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x301a7F0F98725D3f9cA889E935b579f1D896B322", + "status": "abandoned", + "id": "0x301a7F0F98725D3f9cA889E935b579f1D896B322" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x301a7F0F98725D3f9cA889E935b579f1D896B322/logo.png b/blockchains/ethereum/assets/0x301a7F0F98725D3f9cA889E935b579f1D896B322/logo.png new file mode 100644 index 00000000..646ef65f Binary files /dev/null and b/blockchains/ethereum/assets/0x301a7F0F98725D3f9cA889E935b579f1D896B322/logo.png differ diff --git a/blockchains/ethereum/assets/0x301fFA01Ee2AA947a49cC787BDDeFD6Ac4C119e1/info.json b/blockchains/ethereum/assets/0x301fFA01Ee2AA947a49cC787BDDeFD6Ac4C119e1/info.json new file mode 100644 index 00000000..d4b336fb --- /dev/null +++ b/blockchains/ethereum/assets/0x301fFA01Ee2AA947a49cC787BDDeFD6Ac4C119e1/info.json @@ -0,0 +1,11 @@ +{ + "name": "TAXICOIN", + "symbol": "TAXC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x301fFA01Ee2AA947a49cC787BDDeFD6Ac4C119e1", + "status": "abandoned", + "id": "0x301fFA01Ee2AA947a49cC787BDDeFD6Ac4C119e1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x301fFA01Ee2AA947a49cC787BDDeFD6Ac4C119e1/logo.png b/blockchains/ethereum/assets/0x301fFA01Ee2AA947a49cC787BDDeFD6Ac4C119e1/logo.png new file mode 100755 index 00000000..bba54509 Binary files /dev/null and b/blockchains/ethereum/assets/0x301fFA01Ee2AA947a49cC787BDDeFD6Ac4C119e1/logo.png differ diff --git a/blockchains/ethereum/assets/0x30323d8c5d4c8aFf1fd1Fd45918C837845431146/info.json b/blockchains/ethereum/assets/0x30323d8c5d4c8aFf1fd1Fd45918C837845431146/info.json new file mode 100644 index 00000000..5dc87868 --- /dev/null +++ b/blockchains/ethereum/assets/0x30323d8c5d4c8aFf1fd1Fd45918C837845431146/info.json @@ -0,0 +1,11 @@ +{ + "name": "Filepays", + "symbol": "FLPY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.filepays.com", + "explorer": "https://etherscan.io/token/0x30323d8c5d4c8aFf1fd1Fd45918C837845431146", + "status": "abandoned", + "id": "0x30323d8c5d4c8aFf1fd1Fd45918C837845431146" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x30323d8c5d4c8aFf1fd1Fd45918C837845431146/logo.png b/blockchains/ethereum/assets/0x30323d8c5d4c8aFf1fd1Fd45918C837845431146/logo.png new file mode 100644 index 00000000..4c189fee Binary files /dev/null and b/blockchains/ethereum/assets/0x30323d8c5d4c8aFf1fd1Fd45918C837845431146/logo.png differ diff --git a/blockchains/ethereum/assets/0x30365Ed4Ca8173013ad948b9842f34ac71d01f7C/info.json b/blockchains/ethereum/assets/0x30365Ed4Ca8173013ad948b9842f34ac71d01f7C/info.json new file mode 100644 index 00000000..70ad4e2c --- /dev/null +++ b/blockchains/ethereum/assets/0x30365Ed4Ca8173013ad948b9842f34ac71d01f7C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dirham", + "website": "https://dirhamcrypto.io/", + "description": "Dirham is a fiat collateralized stablecoin backed by AED. It is the native to Dirham crypto where bonds are introduced to blockchain for the first time ever. Dirham holders may earn up to 4% ineterest every year.", + "explorer": "https://etherscan.io/token/0x30365Ed4Ca8173013ad948b9842f34ac71d01f7C", + "type": "ERC20", + "symbol": "DHS", + "decimals": 18, + "status": "active", + "id": "0x30365Ed4Ca8173013ad948b9842f34ac71d01f7C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x30365Ed4Ca8173013ad948b9842f34ac71d01f7C/logo.png b/blockchains/ethereum/assets/0x30365Ed4Ca8173013ad948b9842f34ac71d01f7C/logo.png new file mode 100644 index 00000000..2772bcd1 Binary files /dev/null and b/blockchains/ethereum/assets/0x30365Ed4Ca8173013ad948b9842f34ac71d01f7C/logo.png differ diff --git a/blockchains/ethereum/assets/0x303D396bB1E2A73b1536665964aa9f5AA0f7f9cA/info.json b/blockchains/ethereum/assets/0x303D396bB1E2A73b1536665964aa9f5AA0f7f9cA/info.json new file mode 100644 index 00000000..64281e51 --- /dev/null +++ b/blockchains/ethereum/assets/0x303D396bB1E2A73b1536665964aa9f5AA0f7f9cA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Numisma Coin", + "symbol": "NUMA", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x303D396bB1E2A73b1536665964aa9f5AA0f7f9cA", + "status": "abandoned", + "id": "0x303D396bB1E2A73b1536665964aa9f5AA0f7f9cA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x303D396bB1E2A73b1536665964aa9f5AA0f7f9cA/logo.png b/blockchains/ethereum/assets/0x303D396bB1E2A73b1536665964aa9f5AA0f7f9cA/logo.png new file mode 100644 index 00000000..5b7ace82 Binary files /dev/null and b/blockchains/ethereum/assets/0x303D396bB1E2A73b1536665964aa9f5AA0f7f9cA/logo.png differ diff --git a/blockchains/ethereum/assets/0x30521e4cCC4d0494d624394fc275EAd318051de8/info.json b/blockchains/ethereum/assets/0x30521e4cCC4d0494d624394fc275EAd318051de8/info.json new file mode 100644 index 00000000..b5120806 --- /dev/null +++ b/blockchains/ethereum/assets/0x30521e4cCC4d0494d624394fc275EAd318051de8/info.json @@ -0,0 +1,11 @@ +{ + "name": "RealDAS", + "symbol": "REALDAS", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x30521e4cCC4d0494d624394fc275EAd318051de8", + "status": "abandoned", + "id": "0x30521e4cCC4d0494d624394fc275EAd318051de8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x30521e4cCC4d0494d624394fc275EAd318051de8/logo.png b/blockchains/ethereum/assets/0x30521e4cCC4d0494d624394fc275EAd318051de8/logo.png new file mode 100644 index 00000000..f0447656 Binary files /dev/null and b/blockchains/ethereum/assets/0x30521e4cCC4d0494d624394fc275EAd318051de8/logo.png differ diff --git a/blockchains/ethereum/assets/0x305dbDD7931fb4833f5Ce48046A586E30ece683F/info.json b/blockchains/ethereum/assets/0x305dbDD7931fb4833f5Ce48046A586E30ece683F/info.json new file mode 100644 index 00000000..681b8c1b --- /dev/null +++ b/blockchains/ethereum/assets/0x305dbDD7931fb4833f5Ce48046A586E30ece683F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Massive WAVs", + "symbol": "MWAVS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x305dbDD7931fb4833f5Ce48046A586E30ece683F", + "status": "abandoned", + "id": "0x305dbDD7931fb4833f5Ce48046A586E30ece683F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x305dbDD7931fb4833f5Ce48046A586E30ece683F/logo.png b/blockchains/ethereum/assets/0x305dbDD7931fb4833f5Ce48046A586E30ece683F/logo.png new file mode 100755 index 00000000..870d9b53 Binary files /dev/null and b/blockchains/ethereum/assets/0x305dbDD7931fb4833f5Ce48046A586E30ece683F/logo.png differ diff --git a/blockchains/ethereum/assets/0x30680AC0a8A993088223925265fD7a76bEb87E7F/info.json b/blockchains/ethereum/assets/0x30680AC0a8A993088223925265fD7a76bEb87E7F/info.json new file mode 100644 index 00000000..c8bce7d2 --- /dev/null +++ b/blockchains/ethereum/assets/0x30680AC0a8A993088223925265fD7a76bEb87E7F/info.json @@ -0,0 +1,28 @@ +{ + "name": "ARAW", + "symbol": "ARAW", + "type": "ERC20", + "decimals": 18, + "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": "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/0x3070F4F173C81a96601338748481C53F43980E62/info.json b/blockchains/ethereum/assets/0x3070F4F173C81a96601338748481C53F43980E62/info.json new file mode 100644 index 00000000..12ab2dc5 --- /dev/null +++ b/blockchains/ethereum/assets/0x3070F4F173C81a96601338748481C53F43980E62/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vnix Network", + "symbol": "VNX", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3070F4F173C81a96601338748481C53F43980E62", + "status": "abandoned", + "id": "0x3070F4F173C81a96601338748481C53F43980E62" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3070F4F173C81a96601338748481C53F43980E62/logo.png b/blockchains/ethereum/assets/0x3070F4F173C81a96601338748481C53F43980E62/logo.png new file mode 100644 index 00000000..55720cc8 Binary files /dev/null and b/blockchains/ethereum/assets/0x3070F4F173C81a96601338748481C53F43980E62/logo.png differ diff --git a/blockchains/ethereum/assets/0x3071a55A0F7916d796B54A2d095Db85Df693d956/info.json b/blockchains/ethereum/assets/0x3071a55A0F7916d796B54A2d095Db85Df693d956/info.json new file mode 100644 index 00000000..9f3f54f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x3071a55A0F7916d796B54A2d095Db85Df693d956/info.json @@ -0,0 +1,11 @@ +{ + "name": "Walleteum", + "symbol": "EUM", + "type": "ERC20", + "decimals": 13, + "description": "-", + "website": "https://walleteum.com/", + "explorer": "https://etherscan.io/token/0x3071a55A0F7916d796B54A2d095Db85Df693d956", + "status": "abandoned", + "id": "0x3071a55A0F7916d796B54A2d095Db85Df693d956" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3071a55A0F7916d796B54A2d095Db85Df693d956/logo.png b/blockchains/ethereum/assets/0x3071a55A0F7916d796B54A2d095Db85Df693d956/logo.png new file mode 100644 index 00000000..25b89d69 Binary files /dev/null and b/blockchains/ethereum/assets/0x3071a55A0F7916d796B54A2d095Db85Df693d956/logo.png differ diff --git a/blockchains/ethereum/assets/0x3073f7aAA4DB83f95e9FFf17424F71D4751a3073/info.json b/blockchains/ethereum/assets/0x3073f7aAA4DB83f95e9FFf17424F71D4751a3073/info.json new file mode 100644 index 00000000..0025a75e --- /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 00000000..92e754af Binary files /dev/null and b/blockchains/ethereum/assets/0x3073f7aAA4DB83f95e9FFf17424F71D4751a3073/logo.png differ diff --git a/blockchains/ethereum/assets/0x3075c320F859C69F1f07fBD620AaAd77766b0386/info.json b/blockchains/ethereum/assets/0x3075c320F859C69F1f07fBD620AaAd77766b0386/info.json new file mode 100644 index 00000000..4840854f --- /dev/null +++ b/blockchains/ethereum/assets/0x3075c320F859C69F1f07fBD620AaAd77766b0386/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cadin", + "symbol": "CDN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3075c320F859C69F1f07fBD620AaAd77766b0386", + "status": "abandoned", + "id": "0x3075c320F859C69F1f07fBD620AaAd77766b0386" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3075c320F859C69F1f07fBD620AaAd77766b0386/logo.png b/blockchains/ethereum/assets/0x3075c320F859C69F1f07fBD620AaAd77766b0386/logo.png new file mode 100644 index 00000000..9bd53d0c Binary files /dev/null and b/blockchains/ethereum/assets/0x3075c320F859C69F1f07fBD620AaAd77766b0386/logo.png differ diff --git a/blockchains/ethereum/assets/0x307d45Afbb7E84F82ef3D251A6bb0F00Edf632E4/info.json b/blockchains/ethereum/assets/0x307d45Afbb7E84F82ef3D251A6bb0F00Edf632E4/info.json new file mode 100644 index 00000000..29ada467 --- /dev/null +++ b/blockchains/ethereum/assets/0x307d45Afbb7E84F82ef3D251A6bb0F00Edf632E4/info.json @@ -0,0 +1,11 @@ +{ + "name": "PLANET", + "symbol": "PLA", + "type": "ERC20", + "decimals": 18, + "description": "PLANET is used as a currency for transactions in the crypto industry. PLANET tokens are used as prize money and participation tickets for e-sports related businesses in Japan.", + "website": "https://planet-world.io", + "explorer": "https://etherscan.io/token/0x307d45Afbb7E84F82ef3D251A6bb0F00Edf632E4", + "status": "active", + "id": "0x307d45Afbb7E84F82ef3D251A6bb0F00Edf632E4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x307d45Afbb7E84F82ef3D251A6bb0F00Edf632E4/logo.png b/blockchains/ethereum/assets/0x307d45Afbb7E84F82ef3D251A6bb0F00Edf632E4/logo.png new file mode 100644 index 00000000..6dc2128f Binary files /dev/null and b/blockchains/ethereum/assets/0x307d45Afbb7E84F82ef3D251A6bb0F00Edf632E4/logo.png differ diff --git a/blockchains/ethereum/assets/0x3080ec2A6960432F179c66D388099A48E82e2047/info.json b/blockchains/ethereum/assets/0x3080ec2A6960432F179c66D388099A48E82e2047/info.json new file mode 100644 index 00000000..636c011e --- /dev/null +++ b/blockchains/ethereum/assets/0x3080ec2A6960432F179c66D388099A48E82e2047/info.json @@ -0,0 +1,21 @@ +{ + "name": "popcorn", + "website": "https://popcorntoken.dev", + "description": "Popcorn (CORN) is an ERC20 token, the new social experiment, fun and meme machine rolled into Ethereum blockchain. It’s the most enjoyable fun you can have with ERC20 while getting some reward.", + "explorer": "https://etherscan.io/token/0x3080ec2A6960432F179c66D388099A48E82e2047", + "type": "ERC20", + "symbol": "CORN", + "decimals": 18, + "status": "active", + "id": "0x3080ec2A6960432F179c66D388099A48E82e2047", + "links": [ + { + "name": "github", + "url": "https://github.com/popcorntoken" + }, + { + "name": "whitepaper", + "url": "https://popcorntoken.dev/Popcorn Whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3080ec2A6960432F179c66D388099A48E82e2047/logo.png b/blockchains/ethereum/assets/0x3080ec2A6960432F179c66D388099A48E82e2047/logo.png new file mode 100644 index 00000000..a7496d67 Binary files /dev/null and b/blockchains/ethereum/assets/0x3080ec2A6960432F179c66D388099A48E82e2047/logo.png differ diff --git a/blockchains/ethereum/assets/0x308E019143B560215775A0c6EFbD2673413D76E6/info.json b/blockchains/ethereum/assets/0x308E019143B560215775A0c6EFbD2673413D76E6/info.json new file mode 100644 index 00000000..48d95af5 --- /dev/null +++ b/blockchains/ethereum/assets/0x308E019143B560215775A0c6EFbD2673413D76E6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Uniswap V2", + "symbol": "UNI-V2", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x308E019143B560215775A0c6EFbD2673413D76E6", + "status": "abandoned", + "id": "0x308E019143B560215775A0c6EFbD2673413D76E6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x308E019143B560215775A0c6EFbD2673413D76E6/logo.png b/blockchains/ethereum/assets/0x308E019143B560215775A0c6EFbD2673413D76E6/logo.png new file mode 100644 index 00000000..05252272 Binary files /dev/null and b/blockchains/ethereum/assets/0x308E019143B560215775A0c6EFbD2673413D76E6/logo.png differ diff --git a/blockchains/ethereum/assets/0x309013d55fB0E8C17363bcC79F25d92f711A5802/info.json b/blockchains/ethereum/assets/0x309013d55fB0E8C17363bcC79F25d92f711A5802/info.json new file mode 100644 index 00000000..bcbbd3cd --- /dev/null +++ b/blockchains/ethereum/assets/0x309013d55fB0E8C17363bcC79F25d92f711A5802/info.json @@ -0,0 +1,11 @@ +{ + "name": "SBTC", + "website": "https://sbtc.fi", + "description": "Unfolding the Power of Soft Bitcoin Economy.", + "explorer": "https://etherscan.io/token/0x309013d55fB0E8C17363bcC79F25d92f711A5802", + "type": "ERC20", + "symbol": "SBTC", + "decimals": 9, + "status": "active", + "id": "0x309013d55fB0E8C17363bcC79F25d92f711A5802" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x309013d55fB0E8C17363bcC79F25d92f711A5802/logo.png b/blockchains/ethereum/assets/0x309013d55fB0E8C17363bcC79F25d92f711A5802/logo.png new file mode 100644 index 00000000..02c2eb57 Binary files /dev/null and b/blockchains/ethereum/assets/0x309013d55fB0E8C17363bcC79F25d92f711A5802/logo.png differ diff --git a/blockchains/ethereum/assets/0x309627af60F0926daa6041B8279484312f2bf060/info.json b/blockchains/ethereum/assets/0x309627af60F0926daa6041B8279484312f2bf060/info.json new file mode 100644 index 00000000..74257358 --- /dev/null +++ b/blockchains/ethereum/assets/0x309627af60F0926daa6041B8279484312f2bf060/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bancor USD Token", + "symbol": "USDB", + "type": "ERC20", + "decimals": 18, + "description": "USDB is a stabletoken backed by BNT (Bancor Network Token), and utilized in relays on the Bancor network.", + "website": "https://usdb.peg.network/", + "explorer": "https://etherscan.io/token/0x309627af60F0926daa6041B8279484312f2bf060", + "status": "active", + "id": "0x309627af60F0926daa6041B8279484312f2bf060" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x309627af60F0926daa6041B8279484312f2bf060/logo.png b/blockchains/ethereum/assets/0x309627af60F0926daa6041B8279484312f2bf060/logo.png new file mode 100644 index 00000000..d42d555d Binary files /dev/null and b/blockchains/ethereum/assets/0x309627af60F0926daa6041B8279484312f2bf060/logo.png differ diff --git a/blockchains/ethereum/assets/0x30A29114490De08612Ce8314AB64C422Ad591F9c/info.json b/blockchains/ethereum/assets/0x30A29114490De08612Ce8314AB64C422Ad591F9c/info.json new file mode 100644 index 00000000..d342e515 --- /dev/null +++ b/blockchains/ethereum/assets/0x30A29114490De08612Ce8314AB64C422Ad591F9c/info.json @@ -0,0 +1,11 @@ +{ + "name": "DN", + "symbol": "DN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x30A29114490De08612Ce8314AB64C422Ad591F9c", + "status": "abandoned", + "id": "0x30A29114490De08612Ce8314AB64C422Ad591F9c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x30A29114490De08612Ce8314AB64C422Ad591F9c/logo.png b/blockchains/ethereum/assets/0x30A29114490De08612Ce8314AB64C422Ad591F9c/logo.png new file mode 100644 index 00000000..358bcde8 Binary files /dev/null and b/blockchains/ethereum/assets/0x30A29114490De08612Ce8314AB64C422Ad591F9c/logo.png differ diff --git a/blockchains/ethereum/assets/0x30D20208d987713f46DFD34EF128Bb16C404D10f/info.json b/blockchains/ethereum/assets/0x30D20208d987713f46DFD34EF128Bb16C404D10f/info.json new file mode 100644 index 00000000..144dc1f1 --- /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 00000000..a28e1b4b Binary files /dev/null and b/blockchains/ethereum/assets/0x30D20208d987713f46DFD34EF128Bb16C404D10f/logo.png differ diff --git a/blockchains/ethereum/assets/0x30D30cCE06227b9bB8E148041F7F9B3bc03e2a13/info.json b/blockchains/ethereum/assets/0x30D30cCE06227b9bB8E148041F7F9B3bc03e2a13/info.json new file mode 100644 index 00000000..bf3f0f37 --- /dev/null +++ b/blockchains/ethereum/assets/0x30D30cCE06227b9bB8E148041F7F9B3bc03e2a13/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trakcoin", + "symbol": "TRKC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x30D30cCE06227b9bB8E148041F7F9B3bc03e2a13", + "status": "abandoned", + "id": "0x30D30cCE06227b9bB8E148041F7F9B3bc03e2a13" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x30D30cCE06227b9bB8E148041F7F9B3bc03e2a13/logo.png b/blockchains/ethereum/assets/0x30D30cCE06227b9bB8E148041F7F9B3bc03e2a13/logo.png new file mode 100644 index 00000000..74ee766e Binary files /dev/null and b/blockchains/ethereum/assets/0x30D30cCE06227b9bB8E148041F7F9B3bc03e2a13/logo.png differ diff --git a/blockchains/ethereum/assets/0x30DfD1E3ba2919D1337512a9f3CF83050fA7B84B/info.json b/blockchains/ethereum/assets/0x30DfD1E3ba2919D1337512a9f3CF83050fA7B84B/info.json new file mode 100644 index 00000000..61d9f8bd --- /dev/null +++ b/blockchains/ethereum/assets/0x30DfD1E3ba2919D1337512a9f3CF83050fA7B84B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unity ETH token", + "symbol": "UXET", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x30DfD1E3ba2919D1337512a9f3CF83050fA7B84B", + "status": "abandoned", + "id": "0x30DfD1E3ba2919D1337512a9f3CF83050fA7B84B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x30DfD1E3ba2919D1337512a9f3CF83050fA7B84B/logo.png b/blockchains/ethereum/assets/0x30DfD1E3ba2919D1337512a9f3CF83050fA7B84B/logo.png new file mode 100644 index 00000000..8d721c2e Binary files /dev/null and b/blockchains/ethereum/assets/0x30DfD1E3ba2919D1337512a9f3CF83050fA7B84B/logo.png differ diff --git a/blockchains/ethereum/assets/0x30E00B4af68acD6B779f9C0Ac82fa07F05bA94d0/info.json b/blockchains/ethereum/assets/0x30E00B4af68acD6B779f9C0Ac82fa07F05bA94d0/info.json new file mode 100644 index 00000000..b9dd4743 --- /dev/null +++ b/blockchains/ethereum/assets/0x30E00B4af68acD6B779f9C0Ac82fa07F05bA94d0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Diamond", + "symbol": "BTCD", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x30E00B4af68acD6B779f9C0Ac82fa07F05bA94d0", + "status": "abandoned", + "id": "0x30E00B4af68acD6B779f9C0Ac82fa07F05bA94d0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x30E00B4af68acD6B779f9C0Ac82fa07F05bA94d0/logo.png b/blockchains/ethereum/assets/0x30E00B4af68acD6B779f9C0Ac82fa07F05bA94d0/logo.png new file mode 100644 index 00000000..e9870018 Binary files /dev/null and b/blockchains/ethereum/assets/0x30E00B4af68acD6B779f9C0Ac82fa07F05bA94d0/logo.png differ diff --git a/blockchains/ethereum/assets/0x30FEF258d2728F9d1eDF038059c725FAf785697E/info.json b/blockchains/ethereum/assets/0x30FEF258d2728F9d1eDF038059c725FAf785697E/info.json new file mode 100644 index 00000000..e70578f7 --- /dev/null +++ b/blockchains/ethereum/assets/0x30FEF258d2728F9d1eDF038059c725FAf785697E/info.json @@ -0,0 +1,11 @@ +{ + "name": "PESOTOKEN", + "symbol": "PESO", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x30FEF258d2728F9d1eDF038059c725FAf785697E", + "status": "abandoned", + "id": "0x30FEF258d2728F9d1eDF038059c725FAf785697E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x30FEF258d2728F9d1eDF038059c725FAf785697E/logo.png b/blockchains/ethereum/assets/0x30FEF258d2728F9d1eDF038059c725FAf785697E/logo.png new file mode 100644 index 00000000..8606a3b9 Binary files /dev/null and b/blockchains/ethereum/assets/0x30FEF258d2728F9d1eDF038059c725FAf785697E/logo.png differ diff --git a/blockchains/ethereum/assets/0x30a3c667aBe896B11514f0F6a3EAd2839e84dc5e/info.json b/blockchains/ethereum/assets/0x30a3c667aBe896B11514f0F6a3EAd2839e84dc5e/info.json new file mode 100644 index 00000000..6fc540e6 --- /dev/null +++ b/blockchains/ethereum/assets/0x30a3c667aBe896B11514f0F6a3EAd2839e84dc5e/info.json @@ -0,0 +1,11 @@ +{ + "name": "GOL", + "symbol": "GOLS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x30a3c667aBe896B11514f0F6a3EAd2839e84dc5e", + "status": "abandoned", + "id": "0x30a3c667aBe896B11514f0F6a3EAd2839e84dc5e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x30a3c667aBe896B11514f0F6a3EAd2839e84dc5e/logo.png b/blockchains/ethereum/assets/0x30a3c667aBe896B11514f0F6a3EAd2839e84dc5e/logo.png new file mode 100644 index 00000000..11752e1a Binary files /dev/null and b/blockchains/ethereum/assets/0x30a3c667aBe896B11514f0F6a3EAd2839e84dc5e/logo.png differ diff --git a/blockchains/ethereum/assets/0x30ceCB5461A449A90081F5a5F55db4e048397BAB/info.json b/blockchains/ethereum/assets/0x30ceCB5461A449A90081F5a5F55db4e048397BAB/info.json new file mode 100644 index 00000000..f47d21b4 --- /dev/null +++ b/blockchains/ethereum/assets/0x30ceCB5461A449A90081F5a5F55db4e048397BAB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tracto", + "symbol": "TRCT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x30ceCB5461A449A90081F5a5F55db4e048397BAB", + "status": "abandoned", + "id": "0x30ceCB5461A449A90081F5a5F55db4e048397BAB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x30ceCB5461A449A90081F5a5F55db4e048397BAB/logo.png b/blockchains/ethereum/assets/0x30ceCB5461A449A90081F5a5F55db4e048397BAB/logo.png new file mode 100644 index 00000000..94924e3c Binary files /dev/null and b/blockchains/ethereum/assets/0x30ceCB5461A449A90081F5a5F55db4e048397BAB/logo.png differ diff --git a/blockchains/ethereum/assets/0x30e8da02f92252E2b9A40AF2973fEa18eCA4df87/info.json b/blockchains/ethereum/assets/0x30e8da02f92252E2b9A40AF2973fEa18eCA4df87/info.json new file mode 100644 index 00000000..2d6f3786 --- /dev/null +++ b/blockchains/ethereum/assets/0x30e8da02f92252E2b9A40AF2973fEa18eCA4df87/info.json @@ -0,0 +1,11 @@ +{ + "name": "FIAT", + "symbol": "FIAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x30e8da02f92252E2b9A40AF2973fEa18eCA4df87", + "status": "abandoned", + "id": "0x30e8da02f92252E2b9A40AF2973fEa18eCA4df87" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x30e8da02f92252E2b9A40AF2973fEa18eCA4df87/logo.png b/blockchains/ethereum/assets/0x30e8da02f92252E2b9A40AF2973fEa18eCA4df87/logo.png new file mode 100644 index 00000000..94202934 Binary files /dev/null and b/blockchains/ethereum/assets/0x30e8da02f92252E2b9A40AF2973fEa18eCA4df87/logo.png differ diff --git a/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/info.json b/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/info.json new file mode 100644 index 00000000..303f00a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/info.json @@ -0,0 +1,25 @@ +{ + "name": "Decentr", + "website": "https://decentr.net", + "description": "Decentr is a publicly accessible, open-source blockchain protocol that targets the consumer crypto loans market, securing user data, and returning data value to the user.", + "explorer": "https://etherscan.io/token/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3", + "type": "ERC20", + "symbol": "DEC", + "decimals": 18, + "status": "active", + "id": "0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3", + "links": [ + { + "name": "x", + "url": "https://x.com/decentr" + }, + { + "name": "telegram", + "url": "https://t.me/DecentrNet" + }, + { + "name": "medium", + "url": "https://medium.com/@DecentrNet" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/logo.png b/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/logo.png new file mode 100644 index 00000000..6b733b41 Binary files /dev/null and b/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/logo.png differ diff --git a/blockchains/ethereum/assets/0x31024A4C3e9aEeb256B825790F5cb7ac645e7cD5/info.json b/blockchains/ethereum/assets/0x31024A4C3e9aEeb256B825790F5cb7ac645e7cD5/info.json new file mode 100644 index 00000000..63462d2d --- /dev/null +++ b/blockchains/ethereum/assets/0x31024A4C3e9aEeb256B825790F5cb7ac645e7cD5/info.json @@ -0,0 +1,11 @@ +{ + "name": "XIOT", + "website": "https://xiotri.io", + "description": "XIOT is the main token of the Xiotri platform, giving fair yields to everyone.", + "explorer": "https://etherscan.io/token/0x31024A4C3e9aEeb256B825790F5cb7ac645e7cD5", + "type": "ERC20", + "symbol": "XIOT", + "decimals": 3, + "status": "active", + "id": "0x31024A4C3e9aEeb256B825790F5cb7ac645e7cD5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x31024A4C3e9aEeb256B825790F5cb7ac645e7cD5/logo.png b/blockchains/ethereum/assets/0x31024A4C3e9aEeb256B825790F5cb7ac645e7cD5/logo.png new file mode 100644 index 00000000..122f3aa8 Binary files /dev/null and b/blockchains/ethereum/assets/0x31024A4C3e9aEeb256B825790F5cb7ac645e7cD5/logo.png differ diff --git a/blockchains/ethereum/assets/0x310828368F4787c09c46E0b8973cA4a79B666b63/info.json b/blockchains/ethereum/assets/0x310828368F4787c09c46E0b8973cA4a79B666b63/info.json new file mode 100644 index 00000000..2c1167fb --- /dev/null +++ b/blockchains/ethereum/assets/0x310828368F4787c09c46E0b8973cA4a79B666b63/info.json @@ -0,0 +1,11 @@ +{ + "name": "LIST (LISC.WORLD)", + "symbol": "LIST v1.3", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x310828368F4787c09c46E0b8973cA4a79B666b63", + "status": "abandoned", + "id": "0x310828368F4787c09c46E0b8973cA4a79B666b63" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x310828368F4787c09c46E0b8973cA4a79B666b63/logo.png b/blockchains/ethereum/assets/0x310828368F4787c09c46E0b8973cA4a79B666b63/logo.png new file mode 100644 index 00000000..c699fd4d Binary files /dev/null and b/blockchains/ethereum/assets/0x310828368F4787c09c46E0b8973cA4a79B666b63/logo.png differ diff --git a/blockchains/ethereum/assets/0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386/info.json b/blockchains/ethereum/assets/0x31094eD0F645Dbd5eFb6acA5B9A05E8EE0EFB386/info.json new file mode 100644 index 00000000..ece9eaa8 --- /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/0x3109Af90eeDBeEbA9Df921a23dc6aC45188b4366/info.json b/blockchains/ethereum/assets/0x3109Af90eeDBeEbA9Df921a23dc6aC45188b4366/info.json new file mode 100644 index 00000000..99b70969 --- /dev/null +++ b/blockchains/ethereum/assets/0x3109Af90eeDBeEbA9Df921a23dc6aC45188b4366/info.json @@ -0,0 +1,11 @@ +{ + "name": "Seed of wisdom", + "symbol": "SOW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3109Af90eeDBeEbA9Df921a23dc6aC45188b4366", + "status": "abandoned", + "id": "0x3109Af90eeDBeEbA9Df921a23dc6aC45188b4366" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3109Af90eeDBeEbA9Df921a23dc6aC45188b4366/logo.png b/blockchains/ethereum/assets/0x3109Af90eeDBeEbA9Df921a23dc6aC45188b4366/logo.png new file mode 100644 index 00000000..546ed3ae Binary files /dev/null and b/blockchains/ethereum/assets/0x3109Af90eeDBeEbA9Df921a23dc6aC45188b4366/logo.png differ diff --git a/blockchains/ethereum/assets/0x310DA5e1E61cD9d6ECed092F085941089267E71E/info.json b/blockchains/ethereum/assets/0x310DA5e1E61cD9d6ECed092F085941089267E71E/info.json new file mode 100644 index 00000000..d2714dc3 --- /dev/null +++ b/blockchains/ethereum/assets/0x310DA5e1E61cD9d6ECed092F085941089267E71E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Money Token", + "symbol": "MNT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://moneytoken.xyz/", + "explorer": "https://etherscan.io/token/0x310DA5e1E61cD9d6ECed092F085941089267E71E", + "status": "abandoned", + "id": "0x310DA5e1E61cD9d6ECed092F085941089267E71E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x310DA5e1E61cD9d6ECed092F085941089267E71E/logo.png b/blockchains/ethereum/assets/0x310DA5e1E61cD9d6ECed092F085941089267E71E/logo.png new file mode 100644 index 00000000..fc975be7 Binary files /dev/null and b/blockchains/ethereum/assets/0x310DA5e1E61cD9d6ECed092F085941089267E71E/logo.png differ diff --git a/blockchains/ethereum/assets/0x310c93dfc1C5E34CDF51678103f63C41762089CD/info.json b/blockchains/ethereum/assets/0x310c93dfc1C5E34CDF51678103f63C41762089CD/info.json new file mode 100644 index 00000000..308be629 --- /dev/null +++ b/blockchains/ethereum/assets/0x310c93dfc1C5E34CDF51678103f63C41762089CD/info.json @@ -0,0 +1,11 @@ +{ + "name": "1irst", + "symbol": "FST", + "type": "ERC20", + "decimals": 6, + "description": "1irstcoin describes itself as 'google for traders', The project claims that its bots are able to execute market orders with high performance and low fees.", + "website": "https://1irstcoin.com", + "explorer": "https://etherscan.io/token/0x310c93dfc1C5E34CDF51678103f63C41762089CD", + "status": "active", + "id": "0x310c93dfc1C5E34CDF51678103f63C41762089CD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x310c93dfc1C5E34CDF51678103f63C41762089CD/logo.png b/blockchains/ethereum/assets/0x310c93dfc1C5E34CDF51678103f63C41762089CD/logo.png new file mode 100644 index 00000000..f8891d57 Binary files /dev/null and b/blockchains/ethereum/assets/0x310c93dfc1C5E34CDF51678103f63C41762089CD/logo.png differ diff --git a/blockchains/ethereum/assets/0x3123Ff80CbdFd35577628A41FF50598ceFc2D236/info.json b/blockchains/ethereum/assets/0x3123Ff80CbdFd35577628A41FF50598ceFc2D236/info.json new file mode 100644 index 00000000..b585f578 --- /dev/null +++ b/blockchains/ethereum/assets/0x3123Ff80CbdFd35577628A41FF50598ceFc2D236/info.json @@ -0,0 +1,11 @@ +{ + "name": "OMNIS-BIT", + "symbol": "OMNIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3123Ff80CbdFd35577628A41FF50598ceFc2D236", + "status": "abandoned", + "id": "0x3123Ff80CbdFd35577628A41FF50598ceFc2D236" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3123Ff80CbdFd35577628A41FF50598ceFc2D236/logo.png b/blockchains/ethereum/assets/0x3123Ff80CbdFd35577628A41FF50598ceFc2D236/logo.png new file mode 100644 index 00000000..82b7d87d Binary files /dev/null and b/blockchains/ethereum/assets/0x3123Ff80CbdFd35577628A41FF50598ceFc2D236/logo.png differ diff --git a/blockchains/ethereum/assets/0x31274db8b609Df99E5988ee527071643b5160Fc3/info.json b/blockchains/ethereum/assets/0x31274db8b609Df99E5988ee527071643b5160Fc3/info.json new file mode 100644 index 00000000..64a8f51a --- /dev/null +++ b/blockchains/ethereum/assets/0x31274db8b609Df99E5988ee527071643b5160Fc3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Business Credit Substitute", + "symbol": "BCS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.bcachain.org/", + "explorer": "https://etherscan.io/token/0x31274db8b609Df99E5988ee527071643b5160Fc3", + "status": "abandoned", + "id": "0x31274db8b609Df99E5988ee527071643b5160Fc3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x31274db8b609Df99E5988ee527071643b5160Fc3/logo.png b/blockchains/ethereum/assets/0x31274db8b609Df99E5988ee527071643b5160Fc3/logo.png new file mode 100644 index 00000000..cd5a40ef Binary files /dev/null and b/blockchains/ethereum/assets/0x31274db8b609Df99E5988ee527071643b5160Fc3/logo.png differ diff --git a/blockchains/ethereum/assets/0x3136eF851592aCf49CA4C825131E364170FA32b3/info.json b/blockchains/ethereum/assets/0x3136eF851592aCf49CA4C825131E364170FA32b3/info.json new file mode 100644 index 00000000..570fde16 --- /dev/null +++ b/blockchains/ethereum/assets/0x3136eF851592aCf49CA4C825131E364170FA32b3/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinFi", + "symbol": "COFI", + "type": "ERC20", + "decimals": 18, + "description": "CoinFi offers crowdsourced and professionally curated research, analysis, trading signals, trading algorithms, and market-moving news to give cryptocurrency traders the real-time market intelligence needed to gain an edge.", + "website": "http://www.coinfi.com/", + "explorer": "https://etherscan.io/token/0x3136eF851592aCf49CA4C825131E364170FA32b3", + "status": "active", + "id": "0x3136eF851592aCf49CA4C825131E364170FA32b3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3136eF851592aCf49CA4C825131E364170FA32b3/logo.png b/blockchains/ethereum/assets/0x3136eF851592aCf49CA4C825131E364170FA32b3/logo.png new file mode 100644 index 00000000..07980228 Binary files /dev/null and b/blockchains/ethereum/assets/0x3136eF851592aCf49CA4C825131E364170FA32b3/logo.png differ diff --git a/blockchains/ethereum/assets/0x31371618e52a1dCD55Caa07f6E81628Bd4371585/info.json b/blockchains/ethereum/assets/0x31371618e52a1dCD55Caa07f6E81628Bd4371585/info.json new file mode 100644 index 00000000..a8a5e8a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x31371618e52a1dCD55Caa07f6E81628Bd4371585/info.json @@ -0,0 +1,11 @@ +{ + "name": "ATBank", + "website": "https://defi.atbankdigital.com", + "description": "ATBANK DIGITAL under AT GROUP is the world's first bank to use digital banking service. With the motto: “In just a few minutes, with no need for branches or paperwork”, you absolutely do not need to go to the bank, or use any paper for your banking activities. Just open the ATBANK DIGITAL app and use it to complete transactions in just a few seconds. Anytime... Anywhere...", + "explorer": "https://etherscan.io/token/0x31371618e52a1dCD55Caa07f6E81628Bd4371585", + "type": "ERC20", + "symbol": "ATB", + "decimals": 18, + "status": "active", + "id": "0x31371618e52a1dCD55Caa07f6E81628Bd4371585" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x31371618e52a1dCD55Caa07f6E81628Bd4371585/logo.png b/blockchains/ethereum/assets/0x31371618e52a1dCD55Caa07f6E81628Bd4371585/logo.png new file mode 100644 index 00000000..93af2fa0 Binary files /dev/null and b/blockchains/ethereum/assets/0x31371618e52a1dCD55Caa07f6E81628Bd4371585/logo.png differ diff --git a/blockchains/ethereum/assets/0x3137619705b5fc22a3048989F983905e456b59Ab/info.json b/blockchains/ethereum/assets/0x3137619705b5fc22a3048989F983905e456b59Ab/info.json new file mode 100644 index 00000000..443065cf --- /dev/null +++ b/blockchains/ethereum/assets/0x3137619705b5fc22a3048989F983905e456b59Ab/info.json @@ -0,0 +1,11 @@ +{ + "name": "Everus", + "symbol": "EVR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://everus.org/", + "explorer": "https://etherscan.io/token/0x3137619705b5fc22a3048989F983905e456b59Ab", + "status": "abandoned", + "id": "0x3137619705b5fc22a3048989F983905e456b59Ab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3137619705b5fc22a3048989F983905e456b59Ab/logo.png b/blockchains/ethereum/assets/0x3137619705b5fc22a3048989F983905e456b59Ab/logo.png new file mode 100644 index 00000000..4e599fb2 Binary files /dev/null and b/blockchains/ethereum/assets/0x3137619705b5fc22a3048989F983905e456b59Ab/logo.png differ diff --git a/blockchains/ethereum/assets/0x31414F9166291FC486965991264Ec00eB1f60603/info.json b/blockchains/ethereum/assets/0x31414F9166291FC486965991264Ec00eB1f60603/info.json new file mode 100644 index 00000000..a3374c27 --- /dev/null +++ b/blockchains/ethereum/assets/0x31414F9166291FC486965991264Ec00eB1f60603/info.json @@ -0,0 +1,11 @@ +{ + "name": "B2B Coin Token", + "symbol": "B2BC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x31414F9166291FC486965991264Ec00eB1f60603", + "status": "abandoned", + "id": "0x31414F9166291FC486965991264Ec00eB1f60603" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x31414F9166291FC486965991264Ec00eB1f60603/logo.png b/blockchains/ethereum/assets/0x31414F9166291FC486965991264Ec00eB1f60603/logo.png new file mode 100644 index 00000000..da4e670a Binary files /dev/null and b/blockchains/ethereum/assets/0x31414F9166291FC486965991264Ec00eB1f60603/logo.png differ diff --git a/blockchains/ethereum/assets/0x31429d1856aD1377A8A0079410B297e1a9e214c2/info.json b/blockchains/ethereum/assets/0x31429d1856aD1377A8A0079410B297e1a9e214c2/info.json new file mode 100644 index 00000000..851daacc --- /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 00000000..b5b2da29 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 00000000..a75ff84b --- /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 00000000..c358f4e9 Binary files /dev/null and b/blockchains/ethereum/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/logo.png differ diff --git a/blockchains/ethereum/assets/0x3154da898943Fc7151bc77F16E43C0C47b5E452d/info.json b/blockchains/ethereum/assets/0x3154da898943Fc7151bc77F16E43C0C47b5E452d/info.json new file mode 100644 index 00000000..5066635c --- /dev/null +++ b/blockchains/ethereum/assets/0x3154da898943Fc7151bc77F16E43C0C47b5E452d/info.json @@ -0,0 +1,11 @@ +{ + "name": "STB Chain", + "symbol": "STB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://soft2b.com/", + "explorer": "https://etherscan.io/token/0x3154da898943Fc7151bc77F16E43C0C47b5E452d", + "status": "spam", + "id": "0x3154da898943Fc7151bc77F16E43C0C47b5E452d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3154da898943Fc7151bc77F16E43C0C47b5E452d/logo.png b/blockchains/ethereum/assets/0x3154da898943Fc7151bc77F16E43C0C47b5E452d/logo.png new file mode 100644 index 00000000..b4978621 Binary files /dev/null and b/blockchains/ethereum/assets/0x3154da898943Fc7151bc77F16E43C0C47b5E452d/logo.png differ diff --git a/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/info.json b/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/info.json new file mode 100644 index 00000000..f3e92c0a --- /dev/null +++ b/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/info.json @@ -0,0 +1,12 @@ +{ + "name": "THORChain ETH.RUNE", + "website": "https://thorchain.org", + "description": "THORChain describes itself as a decentralized liquidity network that allows users to swap assets instantly at manipulation-resistant market prices.", + "explorer": "https://etherscan.io/token/0x3155ba85d5f96b2d030a4966af206230e46849cb", + "research": "https://research.binance.com/en/projects/thorchain", + "type": "ERC20", + "symbol": "RUNE", + "decimals": 18, + "status": "abandoned", + "id": "0x3155BA85D5F96b2d030a4966AF206230e46849cb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/logo.png b/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/logo.png new file mode 100644 index 00000000..85f78ff6 Binary files /dev/null and b/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/logo.png differ diff --git a/blockchains/ethereum/assets/0x3166C570935a7D8554c8f4eA792ff965D2EFe1f2/info.json b/blockchains/ethereum/assets/0x3166C570935a7D8554c8f4eA792ff965D2EFe1f2/info.json new file mode 100644 index 00000000..d16136d3 --- /dev/null +++ b/blockchains/ethereum/assets/0x3166C570935a7D8554c8f4eA792ff965D2EFe1f2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Q DAO Governance token v1.0", + "symbol": "QDAO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://qdefi.io/en", + "explorer": "https://etherscan.io/token/0x3166C570935a7D8554c8f4eA792ff965D2EFe1f2", + "status": "active", + "id": "0x3166C570935a7D8554c8f4eA792ff965D2EFe1f2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3166C570935a7D8554c8f4eA792ff965D2EFe1f2/logo.png b/blockchains/ethereum/assets/0x3166C570935a7D8554c8f4eA792ff965D2EFe1f2/logo.png new file mode 100644 index 00000000..e8030ee9 Binary files /dev/null and b/blockchains/ethereum/assets/0x3166C570935a7D8554c8f4eA792ff965D2EFe1f2/logo.png differ diff --git a/blockchains/ethereum/assets/0x317C54cc1ff18a0E275cDD8B8b75a657aD9063d1/info.json b/blockchains/ethereum/assets/0x317C54cc1ff18a0E275cDD8B8b75a657aD9063d1/info.json new file mode 100644 index 00000000..806f909b --- /dev/null +++ b/blockchains/ethereum/assets/0x317C54cc1ff18a0E275cDD8B8b75a657aD9063d1/info.json @@ -0,0 +1,11 @@ +{ + "name": "aibi token", + "symbol": "IBL", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x317C54cc1ff18a0E275cDD8B8b75a657aD9063d1", + "status": "abandoned", + "id": "0x317C54cc1ff18a0E275cDD8B8b75a657aD9063d1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x317C54cc1ff18a0E275cDD8B8b75a657aD9063d1/logo.png b/blockchains/ethereum/assets/0x317C54cc1ff18a0E275cDD8B8b75a657aD9063d1/logo.png new file mode 100644 index 00000000..27ee312a Binary files /dev/null and b/blockchains/ethereum/assets/0x317C54cc1ff18a0E275cDD8B8b75a657aD9063d1/logo.png differ diff --git a/blockchains/ethereum/assets/0x318Dcb4f07C3e6ccEcc12A252100Fb3Bf76Eeb02/info.json b/blockchains/ethereum/assets/0x318Dcb4f07C3e6ccEcc12A252100Fb3Bf76Eeb02/info.json new file mode 100644 index 00000000..33ace9dd --- /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 00000000..0629c140 Binary files /dev/null and b/blockchains/ethereum/assets/0x318Dcb4f07C3e6ccEcc12A252100Fb3Bf76Eeb02/logo.png differ diff --git a/blockchains/ethereum/assets/0x31910AFF5545784755970aE1fBE7fE65d5F0eEa2/info.json b/blockchains/ethereum/assets/0x31910AFF5545784755970aE1fBE7fE65d5F0eEa2/info.json new file mode 100644 index 00000000..b717ace8 --- /dev/null +++ b/blockchains/ethereum/assets/0x31910AFF5545784755970aE1fBE7fE65d5F0eEa2/info.json @@ -0,0 +1,11 @@ +{ + "name": "CreatorPAL", + "symbol": "CPAL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x31910AFF5545784755970aE1fBE7fE65d5F0eEa2", + "status": "abandoned", + "id": "0x31910AFF5545784755970aE1fBE7fE65d5F0eEa2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x31910AFF5545784755970aE1fBE7fE65d5F0eEa2/logo.png b/blockchains/ethereum/assets/0x31910AFF5545784755970aE1fBE7fE65d5F0eEa2/logo.png new file mode 100644 index 00000000..5087e64a Binary files /dev/null and b/blockchains/ethereum/assets/0x31910AFF5545784755970aE1fBE7fE65d5F0eEa2/logo.png differ diff --git a/blockchains/ethereum/assets/0x319bEb7dD4b5138BD0aBAd687d5Ca577e9f72B13/info.json b/blockchains/ethereum/assets/0x319bEb7dD4b5138BD0aBAd687d5Ca577e9f72B13/info.json new file mode 100644 index 00000000..7ad22479 --- /dev/null +++ b/blockchains/ethereum/assets/0x319bEb7dD4b5138BD0aBAd687d5Ca577e9f72B13/info.json @@ -0,0 +1,11 @@ +{ + "name": "HIPHOP", + "symbol": "HOP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x319bEb7dD4b5138BD0aBAd687d5Ca577e9f72B13", + "status": "abandoned", + "id": "0x319bEb7dD4b5138BD0aBAd687d5Ca577e9f72B13" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x319bEb7dD4b5138BD0aBAd687d5Ca577e9f72B13/logo.png b/blockchains/ethereum/assets/0x319bEb7dD4b5138BD0aBAd687d5Ca577e9f72B13/logo.png new file mode 100755 index 00000000..66ce7d88 Binary files /dev/null and b/blockchains/ethereum/assets/0x319bEb7dD4b5138BD0aBAd687d5Ca577e9f72B13/logo.png differ diff --git a/blockchains/ethereum/assets/0x31A2bcf633d16dEE21e3377C8e62070Ef553b051/info.json b/blockchains/ethereum/assets/0x31A2bcf633d16dEE21e3377C8e62070Ef553b051/info.json new file mode 100644 index 00000000..9ee581ef --- /dev/null +++ b/blockchains/ethereum/assets/0x31A2bcf633d16dEE21e3377C8e62070Ef553b051/info.json @@ -0,0 +1,11 @@ +{ + "name": "MNET Token", + "symbol": "MNET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x31A2bcf633d16dEE21e3377C8e62070Ef553b051", + "status": "abandoned", + "id": "0x31A2bcf633d16dEE21e3377C8e62070Ef553b051" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x31A2bcf633d16dEE21e3377C8e62070Ef553b051/logo.png b/blockchains/ethereum/assets/0x31A2bcf633d16dEE21e3377C8e62070Ef553b051/logo.png new file mode 100644 index 00000000..0a82135f Binary files /dev/null and b/blockchains/ethereum/assets/0x31A2bcf633d16dEE21e3377C8e62070Ef553b051/logo.png differ diff --git a/blockchains/ethereum/assets/0x31B566a89CEF7962aA647ae6766Ea8Fb1DD6cCDb/info.json b/blockchains/ethereum/assets/0x31B566a89CEF7962aA647ae6766Ea8Fb1DD6cCDb/info.json new file mode 100644 index 00000000..f831b9cc --- /dev/null +++ b/blockchains/ethereum/assets/0x31B566a89CEF7962aA647ae6766Ea8Fb1DD6cCDb/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitBancoCoin", + "symbol": "BBC", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x31B566a89CEF7962aA647ae6766Ea8Fb1DD6cCDb", + "status": "abandoned", + "id": "0x31B566a89CEF7962aA647ae6766Ea8Fb1DD6cCDb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x31B566a89CEF7962aA647ae6766Ea8Fb1DD6cCDb/logo.png b/blockchains/ethereum/assets/0x31B566a89CEF7962aA647ae6766Ea8Fb1DD6cCDb/logo.png new file mode 100644 index 00000000..d8ded2d8 Binary files /dev/null and b/blockchains/ethereum/assets/0x31B566a89CEF7962aA647ae6766Ea8Fb1DD6cCDb/logo.png differ diff --git a/blockchains/ethereum/assets/0x31b93656DC5c3e3dec636F586353566eCda658ab/info.json b/blockchains/ethereum/assets/0x31b93656DC5c3e3dec636F586353566eCda658ab/info.json new file mode 100644 index 00000000..8e11dc92 --- /dev/null +++ b/blockchains/ethereum/assets/0x31b93656DC5c3e3dec636F586353566eCda658ab/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R891452", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x31b93656DC5c3e3dec636F586353566eCda658ab", + "status": "spam", + "id": "0x31b93656DC5c3e3dec636F586353566eCda658ab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x31b93656DC5c3e3dec636F586353566eCda658ab/logo.png b/blockchains/ethereum/assets/0x31b93656DC5c3e3dec636F586353566eCda658ab/logo.png new file mode 100644 index 00000000..1a7f1436 Binary files /dev/null and b/blockchains/ethereum/assets/0x31b93656DC5c3e3dec636F586353566eCda658ab/logo.png differ diff --git a/blockchains/ethereum/assets/0x31c63146a635EB7465e5853020b39713AC356991/info.json b/blockchains/ethereum/assets/0x31c63146a635EB7465e5853020b39713AC356991/info.json new file mode 100644 index 00000000..4d845409 --- /dev/null +++ b/blockchains/ethereum/assets/0x31c63146a635EB7465e5853020b39713AC356991/info.json @@ -0,0 +1,29 @@ +{ + "name": "mUSO Token", + "website": "https://mirror.finance", + "description": "Wrapped Mirror USO Token.", + "explorer": "https://etherscan.io/token/0x31c63146a635EB7465e5853020b39713AC356991", + "type": "ERC20", + "symbol": "mUSO", + "decimals": 18, + "status": "active", + "id": "0x31c63146a635EB7465e5853020b39713AC356991", + "links": [ + { + "name": "x", + "url": "https://x.com/MirrorProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/mirror_protocol" + }, + { + "name": "discord", + "url": "https://discord.com/MirrorProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/@mirror-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x31c63146a635EB7465e5853020b39713AC356991/logo.png b/blockchains/ethereum/assets/0x31c63146a635EB7465e5853020b39713AC356991/logo.png new file mode 100644 index 00000000..65dafdaa Binary files /dev/null and b/blockchains/ethereum/assets/0x31c63146a635EB7465e5853020b39713AC356991/logo.png differ diff --git a/blockchains/ethereum/assets/0x31c8EAcBFFdD875c74b94b077895Bd78CF1E64A3/info.json b/blockchains/ethereum/assets/0x31c8EAcBFFdD875c74b94b077895Bd78CF1E64A3/info.json new file mode 100644 index 00000000..ea51a416 --- /dev/null +++ b/blockchains/ethereum/assets/0x31c8EAcBFFdD875c74b94b077895Bd78CF1E64A3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Radicle", + "symbol": "RAD", + "type": "ERC20", + "decimals": 18, + "description": "Radicle Token", + "website": "https://radicle.xyz", + "explorer": "https://etherscan.io/token/0x31c8eacbffdd875c74b94b077895bd78cf1e64a3", + "status": "active", + "id": "0x31c8EAcBFFdD875c74b94b077895Bd78CF1E64A3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x31c8EAcBFFdD875c74b94b077895Bd78CF1E64A3/logo.png b/blockchains/ethereum/assets/0x31c8EAcBFFdD875c74b94b077895Bd78CF1E64A3/logo.png new file mode 100644 index 00000000..4e252119 Binary files /dev/null and b/blockchains/ethereum/assets/0x31c8EAcBFFdD875c74b94b077895Bd78CF1E64A3/logo.png differ diff --git a/blockchains/ethereum/assets/0x31f3D9D1BeCE0c033fF78fA6DA60a6048F3E13c5/info.json b/blockchains/ethereum/assets/0x31f3D9D1BeCE0c033fF78fA6DA60a6048F3E13c5/info.json new file mode 100644 index 00000000..3370e59a --- /dev/null +++ b/blockchains/ethereum/assets/0x31f3D9D1BeCE0c033fF78fA6DA60a6048F3E13c5/info.json @@ -0,0 +1,11 @@ +{ + "name": "EBCoin", + "symbol": "EBC", + "type": "ERC20", + "decimals": 18, + "description": "EBCoin (EBC) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.ebcoin.io/", + "explorer": "https://etherscan.io/token/0x31f3D9D1BeCE0c033fF78fA6DA60a6048F3E13c5", + "status": "active", + "id": "0x31f3D9D1BeCE0c033fF78fA6DA60a6048F3E13c5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x31f3D9D1BeCE0c033fF78fA6DA60a6048F3E13c5/logo.png b/blockchains/ethereum/assets/0x31f3D9D1BeCE0c033fF78fA6DA60a6048F3E13c5/logo.png new file mode 100644 index 00000000..15a6cb39 Binary files /dev/null and b/blockchains/ethereum/assets/0x31f3D9D1BeCE0c033fF78fA6DA60a6048F3E13c5/logo.png differ diff --git a/blockchains/ethereum/assets/0x3204c3630C75753723e2fCb4d161fB0De8ba5523/info.json b/blockchains/ethereum/assets/0x3204c3630C75753723e2fCb4d161fB0De8ba5523/info.json new file mode 100644 index 00000000..bcd31ce8 --- /dev/null +++ b/blockchains/ethereum/assets/0x3204c3630C75753723e2fCb4d161fB0De8ba5523/info.json @@ -0,0 +1,11 @@ +{ + "name": "CREEnergy© Hydrocarbon Credit, UNDRIP. Economic Development, (replace CRS).", + "type": "ERC20", + "symbol": "CREE", + "decimals": 1, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0x3204c3630c75753723e2fcb4d161fb0de8ba5523", + "status": "active", + "id": "0x3204c3630C75753723e2fCb4d161fB0De8ba5523" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3204c3630C75753723e2fCb4d161fB0De8ba5523/logo.png b/blockchains/ethereum/assets/0x3204c3630C75753723e2fCb4d161fB0De8ba5523/logo.png new file mode 100644 index 00000000..aaa6c096 Binary files /dev/null and b/blockchains/ethereum/assets/0x3204c3630C75753723e2fCb4d161fB0De8ba5523/logo.png differ diff --git a/blockchains/ethereum/assets/0x3205Df88cF95B5A702F2b6a1CC10e2075f54387c/info.json b/blockchains/ethereum/assets/0x3205Df88cF95B5A702F2b6a1CC10e2075f54387c/info.json new file mode 100644 index 00000000..3d23c21d --- /dev/null +++ b/blockchains/ethereum/assets/0x3205Df88cF95B5A702F2b6a1CC10e2075f54387c/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOMBX", + "symbol": "XIO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3205Df88cF95B5A702F2b6a1CC10e2075f54387c", + "status": "abandoned", + "id": "0x3205Df88cF95B5A702F2b6a1CC10e2075f54387c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3205Df88cF95B5A702F2b6a1CC10e2075f54387c/logo.png b/blockchains/ethereum/assets/0x3205Df88cF95B5A702F2b6a1CC10e2075f54387c/logo.png new file mode 100644 index 00000000..0130d9df Binary files /dev/null and b/blockchains/ethereum/assets/0x3205Df88cF95B5A702F2b6a1CC10e2075f54387c/logo.png differ diff --git a/blockchains/ethereum/assets/0x320623b8E4fF03373931769A31Fc52A4E78B5d70/info.json b/blockchains/ethereum/assets/0x320623b8E4fF03373931769A31Fc52A4E78B5d70/info.json new file mode 100644 index 00000000..cbc563ae --- /dev/null +++ b/blockchains/ethereum/assets/0x320623b8E4fF03373931769A31Fc52A4E78B5d70/info.json @@ -0,0 +1,36 @@ +{ + "name": "Reserve Rights", + "type": "ERC20", + "symbol": "RSR", + "decimals": 18, + "website": "https://reserve.org", + "description": "The Reserve team's goal is to make the most accessible, economically strongest, and most robust-to-attack currency.", + "explorer": "https://etherscan.io/token/0x320623b8E4fF03373931769A31Fc52A4E78B5d70", + "status": "active", + "id": "0x320623b8E4fF03373931769A31Fc52A4E78B5d70", + "links": [ + { + "name": "x", + "url": "https://x.com/reserveprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/reservecurrency" + }, + { + "name": "github", + "url": "https://github.com/reserve-protocol/rsr-mainnet" + }, + { + "name": "blog", + "url": "https://medium.com/reserve-currency" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/reserve-rights-token/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x320623b8E4fF03373931769A31Fc52A4E78B5d70/logo.png b/blockchains/ethereum/assets/0x320623b8E4fF03373931769A31Fc52A4E78B5d70/logo.png new file mode 100644 index 00000000..99fd39a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x320623b8E4fF03373931769A31Fc52A4E78B5d70/logo.png differ diff --git a/blockchains/ethereum/assets/0x3209f98BeBF0149B769ce26D71F7aEA8E435EfEa/info.json b/blockchains/ethereum/assets/0x3209f98BeBF0149B769ce26D71F7aEA8E435EfEa/info.json new file mode 100644 index 00000000..49c4a350 --- /dev/null +++ b/blockchains/ethereum/assets/0x3209f98BeBF0149B769ce26D71F7aEA8E435EfEa/info.json @@ -0,0 +1,11 @@ +{ + "name": "Traxia Membership Token", + "symbol": "TMT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.traxia.co/", + "explorer": "https://etherscan.io/token/0x3209f98BeBF0149B769ce26D71F7aEA8E435EfEa", + "status": "abandoned", + "id": "0x3209f98BeBF0149B769ce26D71F7aEA8E435EfEa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3209f98BeBF0149B769ce26D71F7aEA8E435EfEa/logo.png b/blockchains/ethereum/assets/0x3209f98BeBF0149B769ce26D71F7aEA8E435EfEa/logo.png new file mode 100755 index 00000000..b7bc87ac Binary files /dev/null and b/blockchains/ethereum/assets/0x3209f98BeBF0149B769ce26D71F7aEA8E435EfEa/logo.png differ diff --git a/blockchains/ethereum/assets/0x3212b29E33587A00FB1C83346f5dBFA69A458923/info.json b/blockchains/ethereum/assets/0x3212b29E33587A00FB1C83346f5dBFA69A458923/info.json new file mode 100644 index 00000000..1597d378 --- /dev/null +++ b/blockchains/ethereum/assets/0x3212b29E33587A00FB1C83346f5dBFA69A458923/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Tokenized Bitcoin", + "symbol": "imBTC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://tokenlon.im/imBTC", + "explorer": "https://etherscan.io/token/0x3212b29E33587A00FB1C83346f5dBFA69A458923", + "status": "abandoned", + "id": "0x3212b29E33587A00FB1C83346f5dBFA69A458923" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3212b29E33587A00FB1C83346f5dBFA69A458923/logo.png b/blockchains/ethereum/assets/0x3212b29E33587A00FB1C83346f5dBFA69A458923/logo.png new file mode 100644 index 00000000..13dde25b Binary files /dev/null and b/blockchains/ethereum/assets/0x3212b29E33587A00FB1C83346f5dBFA69A458923/logo.png differ diff --git a/blockchains/ethereum/assets/0x321C2fE4446C7c963dc41Dd58879AF648838f98D/info.json b/blockchains/ethereum/assets/0x321C2fE4446C7c963dc41Dd58879AF648838f98D/info.json new file mode 100644 index 00000000..92af1c4c --- /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 00000000..5cd9068d Binary files /dev/null and b/blockchains/ethereum/assets/0x321C2fE4446C7c963dc41Dd58879AF648838f98D/logo.png differ diff --git a/blockchains/ethereum/assets/0x322124122DF407b0d0D902cB713B3714FB2e2E1F/info.json b/blockchains/ethereum/assets/0x322124122DF407b0d0D902cB713B3714FB2e2E1F/info.json new file mode 100644 index 00000000..bda9fdc2 --- /dev/null +++ b/blockchains/ethereum/assets/0x322124122DF407b0d0D902cB713B3714FB2e2E1F/info.json @@ -0,0 +1,18 @@ +{ + "name": "Soft Yearn Finance", + "website": "https://syfi.finance/", + "description": "Soft Yearn is a unique cryptocurrency that is soft-pegged to Yearn Finance with adaptive properties taken from Ampleforth.", + "explorer": "https://etherscan.io/token/0x322124122DF407b0d0D902cB713B3714FB2e2E1F", + "research": "", + "type": "ERC20", + "symbol": "SYFI", + "decimals": 9, + "status": "active", + "id": "0x322124122DF407b0d0D902cB713B3714FB2e2E1F", + "links": [ + { + "name": "whitepaper", + "url": "https://pdfhost.io/v/QPYmJTXdC_SOFT_YEARNpdf.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x322124122DF407b0d0D902cB713B3714FB2e2E1F/logo.png b/blockchains/ethereum/assets/0x322124122DF407b0d0D902cB713B3714FB2e2E1F/logo.png new file mode 100644 index 00000000..2a794268 Binary files /dev/null and b/blockchains/ethereum/assets/0x322124122DF407b0d0D902cB713B3714FB2e2E1F/logo.png differ diff --git a/blockchains/ethereum/assets/0x3228f105DaC87e773aFAdBA7639cd1AA43513b61/info.json b/blockchains/ethereum/assets/0x3228f105DaC87e773aFAdBA7639cd1AA43513b61/info.json new file mode 100644 index 00000000..d6e9a9a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x3228f105DaC87e773aFAdBA7639cd1AA43513b61/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg7000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3228f105DaC87e773aFAdBA7639cd1AA43513b61", + "status": "abandoned", + "id": "0x3228f105DaC87e773aFAdBA7639cd1AA43513b61" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3228f105DaC87e773aFAdBA7639cd1AA43513b61/logo.png b/blockchains/ethereum/assets/0x3228f105DaC87e773aFAdBA7639cd1AA43513b61/logo.png new file mode 100644 index 00000000..6b714f0d Binary files /dev/null and b/blockchains/ethereum/assets/0x3228f105DaC87e773aFAdBA7639cd1AA43513b61/logo.png differ diff --git a/blockchains/ethereum/assets/0x322f4f6a48329690957a3BCBd1301516C2B83c1F/info.json b/blockchains/ethereum/assets/0x322f4f6a48329690957a3BCBd1301516C2B83c1F/info.json new file mode 100644 index 00000000..5f710ccb --- /dev/null +++ b/blockchains/ethereum/assets/0x322f4f6a48329690957a3BCBd1301516C2B83c1F/info.json @@ -0,0 +1,11 @@ +{ + "name": "MesChain", + "symbol": "MES", + "type": "ERC20", + "decimals": 8, + "description": "Mesh Chain (MESH) предоставляется компанией Genesis Crypto Technology.", + "website": "https://meschain.io", + "explorer": "https://etherscan.io/token/0x322f4f6a48329690957a3BCBd1301516C2B83c1F", + "status": "active", + "id": "0x322f4f6a48329690957a3BCBd1301516C2B83c1F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x322f4f6a48329690957a3BCBd1301516C2B83c1F/logo.png b/blockchains/ethereum/assets/0x322f4f6a48329690957a3BCBd1301516C2B83c1F/logo.png new file mode 100644 index 00000000..fc6870d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x322f4f6a48329690957a3BCBd1301516C2B83c1F/logo.png differ diff --git a/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/info.json b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/info.json new file mode 100644 index 00000000..5ddbd310 --- /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 00000000..20268b49 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 00000000..5dbe66d1 --- /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 00000000..7651d7bb Binary files /dev/null and b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/logo.png differ diff --git a/blockchains/ethereum/assets/0x324230Bf92C3605C0601764E4e1d8761b76f8907/info.json b/blockchains/ethereum/assets/0x324230Bf92C3605C0601764E4e1d8761b76f8907/info.json new file mode 100644 index 00000000..e5c5ff73 --- /dev/null +++ b/blockchains/ethereum/assets/0x324230Bf92C3605C0601764E4e1d8761b76f8907/info.json @@ -0,0 +1,11 @@ +{ + "name": "OTChain", + "symbol": "OTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x324230Bf92C3605C0601764E4e1d8761b76f8907", + "status": "abandoned", + "id": "0x324230Bf92C3605C0601764E4e1d8761b76f8907" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x324230Bf92C3605C0601764E4e1d8761b76f8907/logo.png b/blockchains/ethereum/assets/0x324230Bf92C3605C0601764E4e1d8761b76f8907/logo.png new file mode 100644 index 00000000..0321d34c Binary files /dev/null and b/blockchains/ethereum/assets/0x324230Bf92C3605C0601764E4e1d8761b76f8907/logo.png differ diff --git a/blockchains/ethereum/assets/0x32462bA310E447eF34FF0D15BCE8613aa8C4A244/info.json b/blockchains/ethereum/assets/0x32462bA310E447eF34FF0D15BCE8613aa8C4A244/info.json new file mode 100644 index 00000000..c5fb8278 --- /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 00000000..dc98715d Binary files /dev/null and b/blockchains/ethereum/assets/0x32462bA310E447eF34FF0D15BCE8613aa8C4A244/logo.png differ diff --git a/blockchains/ethereum/assets/0x327682779bAB2BF4d1337e8974ab9dE8275A7Ca8/info.json b/blockchains/ethereum/assets/0x327682779bAB2BF4d1337e8974ab9dE8275A7Ca8/info.json new file mode 100644 index 00000000..7e9a60d9 --- /dev/null +++ b/blockchains/ethereum/assets/0x327682779bAB2BF4d1337e8974ab9dE8275A7Ca8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockport Token", + "symbol": "BPT", + "type": "ERC20", + "decimals": 18, + "description": "Social crypto exchange based on a hybrid-decentralized architecture.", + "website": "https://getbux.com/bux-crypto", + "explorer": "https://etherscan.io/token/0x327682779bAB2BF4d1337e8974ab9dE8275A7Ca8", + "status": "active", + "id": "0x327682779bAB2BF4d1337e8974ab9dE8275A7Ca8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x327682779bAB2BF4d1337e8974ab9dE8275A7Ca8/logo.png b/blockchains/ethereum/assets/0x327682779bAB2BF4d1337e8974ab9dE8275A7Ca8/logo.png new file mode 100755 index 00000000..5dbdb863 Binary files /dev/null and b/blockchains/ethereum/assets/0x327682779bAB2BF4d1337e8974ab9dE8275A7Ca8/logo.png differ diff --git a/blockchains/ethereum/assets/0x3277dd536471a3cBEB0c9486aCad494C95A31E73/info.json b/blockchains/ethereum/assets/0x3277dd536471a3cBEB0c9486aCad494C95A31E73/info.json new file mode 100644 index 00000000..37ff7bf9 --- /dev/null +++ b/blockchains/ethereum/assets/0x3277dd536471a3cBEB0c9486aCad494C95A31E73/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coinhe Token", + "symbol": "CHT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://token.coinhe.io/", + "explorer": "https://etherscan.io/token/0x3277dd536471a3cBEB0c9486aCad494C95A31E73", + "status": "abandoned", + "id": "0x3277dd536471a3cBEB0c9486aCad494C95A31E73" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3277dd536471a3cBEB0c9486aCad494C95A31E73/logo.png b/blockchains/ethereum/assets/0x3277dd536471a3cBEB0c9486aCad494C95A31E73/logo.png new file mode 100644 index 00000000..699f1430 Binary files /dev/null and b/blockchains/ethereum/assets/0x3277dd536471a3cBEB0c9486aCad494C95A31E73/logo.png differ diff --git a/blockchains/ethereum/assets/0x328C4c80BC7aCa0834Db37e6600A6c49E12Da4DE/info.json b/blockchains/ethereum/assets/0x328C4c80BC7aCa0834Db37e6600A6c49E12Da4DE/info.json new file mode 100644 index 00000000..49e191e3 --- /dev/null +++ b/blockchains/ethereum/assets/0x328C4c80BC7aCa0834Db37e6600A6c49E12Da4DE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave SNX V1", + "symbol": "aSNX V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave SNX V1 is an interest bearing token pegged 1:1 to the underlying SNX deposited in Aave V1. aSNX V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x328C4c80BC7aCa0834Db37e6600A6c49E12Da4DE", + "status": "abandoned", + "id": "0x328C4c80BC7aCa0834Db37e6600A6c49E12Da4DE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x328C4c80BC7aCa0834Db37e6600A6c49E12Da4DE/logo.png b/blockchains/ethereum/assets/0x328C4c80BC7aCa0834Db37e6600A6c49E12Da4DE/logo.png new file mode 100644 index 00000000..229051c7 Binary files /dev/null and b/blockchains/ethereum/assets/0x328C4c80BC7aCa0834Db37e6600A6c49E12Da4DE/logo.png differ diff --git a/blockchains/ethereum/assets/0x328d97FC7d4d0ab304c6f7d636Cc59765197e7cB/info.json b/blockchains/ethereum/assets/0x328d97FC7d4d0ab304c6f7d636Cc59765197e7cB/info.json new file mode 100644 index 00000000..5fc38eab --- /dev/null +++ b/blockchains/ethereum/assets/0x328d97FC7d4d0ab304c6f7d636Cc59765197e7cB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Manufacturing block chain alliance development platform", + "symbol": "MCAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x328d97FC7d4d0ab304c6f7d636Cc59765197e7cB", + "status": "abandoned", + "id": "0x328d97FC7d4d0ab304c6f7d636Cc59765197e7cB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x328d97FC7d4d0ab304c6f7d636Cc59765197e7cB/logo.png b/blockchains/ethereum/assets/0x328d97FC7d4d0ab304c6f7d636Cc59765197e7cB/logo.png new file mode 100644 index 00000000..f85bf89f Binary files /dev/null and b/blockchains/ethereum/assets/0x328d97FC7d4d0ab304c6f7d636Cc59765197e7cB/logo.png differ diff --git a/blockchains/ethereum/assets/0x3293Cc907fdE439B39aEdaF1B982785adaFf186b/info.json b/blockchains/ethereum/assets/0x3293Cc907fdE439B39aEdaF1B982785adaFf186b/info.json new file mode 100644 index 00000000..db73ed11 --- /dev/null +++ b/blockchains/ethereum/assets/0x3293Cc907fdE439B39aEdaF1B982785adaFf186b/info.json @@ -0,0 +1,11 @@ +{ + "name": "TriaToken", + "symbol": "TRIA", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "https://triaconta.com/", + "explorer": "https://etherscan.io/token/0x3293Cc907fdE439B39aEdaF1B982785adaFf186b", + "status": "abandoned", + "id": "0x3293Cc907fdE439B39aEdaF1B982785adaFf186b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3293Cc907fdE439B39aEdaF1B982785adaFf186b/logo.png b/blockchains/ethereum/assets/0x3293Cc907fdE439B39aEdaF1B982785adaFf186b/logo.png new file mode 100644 index 00000000..7da85355 Binary files /dev/null and b/blockchains/ethereum/assets/0x3293Cc907fdE439B39aEdaF1B982785adaFf186b/logo.png differ diff --git a/blockchains/ethereum/assets/0x32A087D5fdF8c84eC32554c56727a7C81124544E/info.json b/blockchains/ethereum/assets/0x32A087D5fdF8c84eC32554c56727a7C81124544E/info.json new file mode 100644 index 00000000..92dfbcc6 --- /dev/null +++ b/blockchains/ethereum/assets/0x32A087D5fdF8c84eC32554c56727a7C81124544E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Movement DAO Token", + "symbol": "MDT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x32A087D5fdF8c84eC32554c56727a7C81124544E", + "status": "abandoned", + "id": "0x32A087D5fdF8c84eC32554c56727a7C81124544E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32A087D5fdF8c84eC32554c56727a7C81124544E/logo.png b/blockchains/ethereum/assets/0x32A087D5fdF8c84eC32554c56727a7C81124544E/logo.png new file mode 100644 index 00000000..19f34dea Binary files /dev/null and b/blockchains/ethereum/assets/0x32A087D5fdF8c84eC32554c56727a7C81124544E/logo.png differ diff --git a/blockchains/ethereum/assets/0x32B053F2CBA79F80ada5078cb6b305da92BDe6e1/info.json b/blockchains/ethereum/assets/0x32B053F2CBA79F80ada5078cb6b305da92BDe6e1/info.json new file mode 100644 index 00000000..79652d82 --- /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 00000000..22919d4d Binary files /dev/null and b/blockchains/ethereum/assets/0x32B053F2CBA79F80ada5078cb6b305da92BDe6e1/logo.png differ diff --git a/blockchains/ethereum/assets/0x32B7A3018E4B832dEa848786348164667EC030f3/info.json b/blockchains/ethereum/assets/0x32B7A3018E4B832dEa848786348164667EC030f3/info.json new file mode 100644 index 00000000..458c1ef0 --- /dev/null +++ b/blockchains/ethereum/assets/0x32B7A3018E4B832dEa848786348164667EC030f3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Molecule", + "symbol": "MOL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x32B7A3018E4B832dEa848786348164667EC030f3", + "status": "abandoned", + "id": "0x32B7A3018E4B832dEa848786348164667EC030f3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32B7A3018E4B832dEa848786348164667EC030f3/logo.png b/blockchains/ethereum/assets/0x32B7A3018E4B832dEa848786348164667EC030f3/logo.png new file mode 100644 index 00000000..5a13f431 Binary files /dev/null and b/blockchains/ethereum/assets/0x32B7A3018E4B832dEa848786348164667EC030f3/logo.png differ diff --git a/blockchains/ethereum/assets/0x32C4ADB9cF57f972bc375129de91C897b4F364F1/info.json b/blockchains/ethereum/assets/0x32C4ADB9cF57f972bc375129de91C897b4F364F1/info.json new file mode 100644 index 00000000..dde7560a --- /dev/null +++ b/blockchains/ethereum/assets/0x32C4ADB9cF57f972bc375129de91C897b4F364F1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Flowchain", + "symbol": "FLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://flowchain.co/", + "explorer": "https://etherscan.io/token/0x32C4ADB9cF57f972bc375129de91C897b4F364F1", + "status": "abandoned", + "id": "0x32C4ADB9cF57f972bc375129de91C897b4F364F1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32C4ADB9cF57f972bc375129de91C897b4F364F1/logo.png b/blockchains/ethereum/assets/0x32C4ADB9cF57f972bc375129de91C897b4F364F1/logo.png new file mode 100644 index 00000000..3902cc58 Binary files /dev/null and b/blockchains/ethereum/assets/0x32C4ADB9cF57f972bc375129de91C897b4F364F1/logo.png differ diff --git a/blockchains/ethereum/assets/0x32F3b8A00B6912D0314be212fe9538B7B9430c12/info.json b/blockchains/ethereum/assets/0x32F3b8A00B6912D0314be212fe9538B7B9430c12/info.json new file mode 100644 index 00000000..74eafece --- /dev/null +++ b/blockchains/ethereum/assets/0x32F3b8A00B6912D0314be212fe9538B7B9430c12/info.json @@ -0,0 +1,11 @@ +{ + "name": "SiriusX", + "symbol": "SRX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x32F3b8A00B6912D0314be212fe9538B7B9430c12", + "status": "abandoned", + "id": "0x32F3b8A00B6912D0314be212fe9538B7B9430c12" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32F3b8A00B6912D0314be212fe9538B7B9430c12/logo.png b/blockchains/ethereum/assets/0x32F3b8A00B6912D0314be212fe9538B7B9430c12/logo.png new file mode 100644 index 00000000..b2a35665 Binary files /dev/null and b/blockchains/ethereum/assets/0x32F3b8A00B6912D0314be212fe9538B7B9430c12/logo.png differ diff --git a/blockchains/ethereum/assets/0x32F3b9B5Bd6C76F41ee3B389573f340468666861/info.json b/blockchains/ethereum/assets/0x32F3b9B5Bd6C76F41ee3B389573f340468666861/info.json new file mode 100644 index 00000000..7ab111bb --- /dev/null +++ b/blockchains/ethereum/assets/0x32F3b9B5Bd6C76F41ee3B389573f340468666861/info.json @@ -0,0 +1,12 @@ +{ + "name": "YFII SILVER", + "website": "https://yfiigold.finance", + "description": "YFII SILVER is the world's first and only YFI pludges elastic token supply defi-protocol.", + "explorer": "https://etherscan.io/token/0x32f3b9b5bd6c76f41ee3b389573f340468666861", + "research": "", + "type": "ERC20", + "symbol": "YFIIS", + "decimals": 18, + "status": "active", + "id": "0x32F3b9B5Bd6C76F41ee3B389573f340468666861" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32F3b9B5Bd6C76F41ee3B389573f340468666861/logo.png b/blockchains/ethereum/assets/0x32F3b9B5Bd6C76F41ee3B389573f340468666861/logo.png new file mode 100644 index 00000000..404a8368 Binary files /dev/null and b/blockchains/ethereum/assets/0x32F3b9B5Bd6C76F41ee3B389573f340468666861/logo.png differ diff --git a/blockchains/ethereum/assets/0x32a7C02e79c4ea1008dD6564b35F131428673c41/info.json b/blockchains/ethereum/assets/0x32a7C02e79c4ea1008dD6564b35F131428673c41/info.json new file mode 100644 index 00000000..b6fea054 --- /dev/null +++ b/blockchains/ethereum/assets/0x32a7C02e79c4ea1008dD6564b35F131428673c41/info.json @@ -0,0 +1,17 @@ +{ + "name": "CRUST", + "website": "https://crust.network", + "description": "CRUST provides a decentralized storage network of Web3 ecosystem. It supports multiple storage layer protocols such as IPFS, and exposes storage interfaces to application layer. Crust's technical stack is also capable of supporting a decentralized computing layer. It is designed to build a decentralized cloud ecosystem that values data privacy and ownership.", + "explorer": "https://etherscan.io/token/0x32a7C02e79c4ea1008dD6564b35F131428673c41", + "type": "ERC20", + "symbol": "CRU", + "decimals": 18, + "status": "active", + "id": "0x32a7C02e79c4ea1008dD6564b35F131428673c41", + "links": [ + { + "name": "github", + "url": "https://github.com/crustio/crust" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32a7C02e79c4ea1008dD6564b35F131428673c41/logo.png b/blockchains/ethereum/assets/0x32a7C02e79c4ea1008dD6564b35F131428673c41/logo.png new file mode 100644 index 00000000..16ff864b Binary files /dev/null and b/blockchains/ethereum/assets/0x32a7C02e79c4ea1008dD6564b35F131428673c41/logo.png differ diff --git a/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/info.json b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/info.json new file mode 100644 index 00000000..9ab14d2e --- /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 00000000..afcd7c79 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 00000000..b72387a0 --- /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 00000000..89ea00eb Binary files /dev/null and b/blockchains/ethereum/assets/0x32bDD8b97868ACf7014cFE6EB49Bf4f2936C8F02/logo.png differ diff --git a/blockchains/ethereum/assets/0x32d33EDCC61b1f89404256894D8d10CC91Dd89a3/info.json b/blockchains/ethereum/assets/0x32d33EDCC61b1f89404256894D8d10CC91Dd89a3/info.json new file mode 100644 index 00000000..0d472e2a --- /dev/null +++ b/blockchains/ethereum/assets/0x32d33EDCC61b1f89404256894D8d10CC91Dd89a3/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR V4/2061", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x32d33EDCC61b1f89404256894D8d10CC91Dd89a3", + "status": "abandoned", + "id": "0x32d33EDCC61b1f89404256894D8d10CC91Dd89a3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32d33EDCC61b1f89404256894D8d10CC91Dd89a3/logo.png b/blockchains/ethereum/assets/0x32d33EDCC61b1f89404256894D8d10CC91Dd89a3/logo.png new file mode 100644 index 00000000..1e7afea0 Binary files /dev/null and b/blockchains/ethereum/assets/0x32d33EDCC61b1f89404256894D8d10CC91Dd89a3/logo.png differ diff --git a/blockchains/ethereum/assets/0x32d74896f05204D1b6Ae7B0a3CEBd7FC0Cd8F9C7/info.json b/blockchains/ethereum/assets/0x32d74896f05204D1b6Ae7B0a3CEBd7FC0Cd8F9C7/info.json new file mode 100644 index 00000000..c800f65b --- /dev/null +++ b/blockchains/ethereum/assets/0x32d74896f05204D1b6Ae7B0a3CEBd7FC0Cd8F9C7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kcash", + "symbol": "KCASH", + "type": "ERC20", + "decimals": 18, + "description": "Kcash (KCASH) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.kcash.com", + "explorer": "https://etherscan.io/token/0x32d74896f05204D1b6Ae7B0a3CEBd7FC0Cd8F9C7", + "status": "active", + "id": "0x32d74896f05204D1b6Ae7B0a3CEBd7FC0Cd8F9C7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32d74896f05204D1b6Ae7B0a3CEBd7FC0Cd8F9C7/logo.png b/blockchains/ethereum/assets/0x32d74896f05204D1b6Ae7B0a3CEBd7FC0Cd8F9C7/logo.png new file mode 100644 index 00000000..ec741f43 Binary files /dev/null and b/blockchains/ethereum/assets/0x32d74896f05204D1b6Ae7B0a3CEBd7FC0Cd8F9C7/logo.png differ diff --git a/blockchains/ethereum/assets/0x32d7c413fD3477E86b8eC6B0BB8F3Ac510eAfaae/info.json b/blockchains/ethereum/assets/0x32d7c413fD3477E86b8eC6B0BB8F3Ac510eAfaae/info.json new file mode 100644 index 00000000..48e2b9c6 --- /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 00000000..bdf4e7cc Binary files /dev/null and b/blockchains/ethereum/assets/0x32d7c413fD3477E86b8eC6B0BB8F3Ac510eAfaae/logo.png differ diff --git a/blockchains/ethereum/assets/0x32fB6403F76f65B929A77eBE941f454ca814f64c/info.json b/blockchains/ethereum/assets/0x32fB6403F76f65B929A77eBE941f454ca814f64c/info.json new file mode 100644 index 00000000..2c6b814c --- /dev/null +++ b/blockchains/ethereum/assets/0x32fB6403F76f65B929A77eBE941f454ca814f64c/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0N304555", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x32fB6403F76f65B929A77eBE941f454ca814f64c", + "status": "abandoned", + "id": "0x32fB6403F76f65B929A77eBE941f454ca814f64c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32fB6403F76f65B929A77eBE941f454ca814f64c/logo.png b/blockchains/ethereum/assets/0x32fB6403F76f65B929A77eBE941f454ca814f64c/logo.png new file mode 100644 index 00000000..a13c047f Binary files /dev/null and b/blockchains/ethereum/assets/0x32fB6403F76f65B929A77eBE941f454ca814f64c/logo.png differ diff --git a/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json b/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json new file mode 100644 index 00000000..045df774 --- /dev/null +++ b/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Akita Inu", + "type": "ERC20", + "symbol": "AKITA", + "decimals": 18, + "website": "https://akita.network", + "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/0x330839EF82D34801bd96e75a4Ee778ac56Fa1ED8/info.json b/blockchains/ethereum/assets/0x330839EF82D34801bd96e75a4Ee778ac56Fa1ED8/info.json new file mode 100644 index 00000000..ee84b912 --- /dev/null +++ b/blockchains/ethereum/assets/0x330839EF82D34801bd96e75a4Ee778ac56Fa1ED8/info.json @@ -0,0 +1,11 @@ +{ + "name": "ICOStart Token", + "symbol": "ICH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x330839EF82D34801bd96e75a4Ee778ac56Fa1ED8", + "status": "abandoned", + "id": "0x330839EF82D34801bd96e75a4Ee778ac56Fa1ED8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x330839EF82D34801bd96e75a4Ee778ac56Fa1ED8/logo.png b/blockchains/ethereum/assets/0x330839EF82D34801bd96e75a4Ee778ac56Fa1ED8/logo.png new file mode 100644 index 00000000..cbe4e610 Binary files /dev/null and b/blockchains/ethereum/assets/0x330839EF82D34801bd96e75a4Ee778ac56Fa1ED8/logo.png differ diff --git a/blockchains/ethereum/assets/0x331fA6C97c64e47475164b9fC8143b533c5eF529/info.json b/blockchains/ethereum/assets/0x331fA6C97c64e47475164b9fC8143b533c5eF529/info.json new file mode 100644 index 00000000..0c41ef41 --- /dev/null +++ b/blockchains/ethereum/assets/0x331fA6C97c64e47475164b9fC8143b533c5eF529/info.json @@ -0,0 +1,11 @@ +{ + "name": "EXMR FDN.", + "symbol": "EXMR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://exmrfoundation.org", + "explorer": "https://etherscan.io/token/0x331fA6C97c64e47475164b9fC8143b533c5eF529", + "status": "abandoned", + "id": "0x331fA6C97c64e47475164b9fC8143b533c5eF529" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x331fA6C97c64e47475164b9fC8143b533c5eF529/logo.png b/blockchains/ethereum/assets/0x331fA6C97c64e47475164b9fC8143b533c5eF529/logo.png new file mode 100644 index 00000000..ed31050f Binary files /dev/null and b/blockchains/ethereum/assets/0x331fA6C97c64e47475164b9fC8143b533c5eF529/logo.png differ diff --git a/blockchains/ethereum/assets/0x33227687626914030c8213E31d021cE9940728Ea/info.json b/blockchains/ethereum/assets/0x33227687626914030c8213E31d021cE9940728Ea/info.json new file mode 100644 index 00000000..a1b3c16e --- /dev/null +++ b/blockchains/ethereum/assets/0x33227687626914030c8213E31d021cE9940728Ea/info.json @@ -0,0 +1,11 @@ +{ + "name": "STARS", + "symbol": "STRS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x33227687626914030c8213E31d021cE9940728Ea", + "status": "abandoned", + "id": "0x33227687626914030c8213E31d021cE9940728Ea" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33227687626914030c8213E31d021cE9940728Ea/logo.png b/blockchains/ethereum/assets/0x33227687626914030c8213E31d021cE9940728Ea/logo.png new file mode 100755 index 00000000..5999b0ea Binary files /dev/null and b/blockchains/ethereum/assets/0x33227687626914030c8213E31d021cE9940728Ea/logo.png differ diff --git a/blockchains/ethereum/assets/0x33333333FEde34409Fb7f67c6585047E1F653333/info.json b/blockchains/ethereum/assets/0x33333333FEde34409Fb7f67c6585047E1F653333/info.json new file mode 100644 index 00000000..772a87c7 --- /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 00000000..1065fb45 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 new file mode 100644 index 00000000..c8f88459 --- /dev/null +++ b/blockchains/ethereum/assets/0x33349B282065b0284d756F0577FB39c158F935e6/info.json @@ -0,0 +1,36 @@ +{ + "name": "Maple Token", + "type": "ERC20", + "symbol": "MPL", + "decimals": 18, + "website": "https://maple.finance/", + "description": "Maple is a DeFi lending protocol for corporate and institutional capital.", + "explorer": "https://etherscan.io/token/0x33349b282065b0284d756f0577fb39c158f935e6", + "status": "active", + "id": "0x33349B282065b0284d756F0577FB39c158F935e6", + "links": [ + { + "name": "x", + "url": "https://x.com/maplefinance" + }, + { + "name": "github", + "url": "https://github.com/maple-labs" + }, + { + "name": "telegram", + "url": "https://t.me/maplefinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maple/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/maple/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33349B282065b0284d756F0577FB39c158F935e6/logo.png b/blockchains/ethereum/assets/0x33349B282065b0284d756F0577FB39c158F935e6/logo.png new file mode 100644 index 00000000..e335b360 Binary files /dev/null and b/blockchains/ethereum/assets/0x33349B282065b0284d756F0577FB39c158F935e6/logo.png differ diff --git a/blockchains/ethereum/assets/0x334425Ef9a828e31fF27e0754A3198eDb714C57B/info.json b/blockchains/ethereum/assets/0x334425Ef9a828e31fF27e0754A3198eDb714C57B/info.json new file mode 100644 index 00000000..82e0018e --- /dev/null +++ b/blockchains/ethereum/assets/0x334425Ef9a828e31fF27e0754A3198eDb714C57B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Genesis", + "symbol": "GEN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.genesis-crypto.com/", + "explorer": "https://etherscan.io/token/0x334425Ef9a828e31fF27e0754A3198eDb714C57B", + "status": "abandoned", + "id": "0x334425Ef9a828e31fF27e0754A3198eDb714C57B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x334425Ef9a828e31fF27e0754A3198eDb714C57B/logo.png b/blockchains/ethereum/assets/0x334425Ef9a828e31fF27e0754A3198eDb714C57B/logo.png new file mode 100644 index 00000000..60093e3d Binary files /dev/null and b/blockchains/ethereum/assets/0x334425Ef9a828e31fF27e0754A3198eDb714C57B/logo.png differ diff --git a/blockchains/ethereum/assets/0x334639A18B5Add14E8D98CB8B05ba0250308cBa4/info.json b/blockchains/ethereum/assets/0x334639A18B5Add14E8D98CB8B05ba0250308cBa4/info.json new file mode 100644 index 00000000..7ea92ec9 --- /dev/null +++ b/blockchains/ethereum/assets/0x334639A18B5Add14E8D98CB8B05ba0250308cBa4/info.json @@ -0,0 +1,11 @@ +{ + "name": "KAV", + "symbol": "KAV", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x334639A18B5Add14E8D98CB8B05ba0250308cBa4", + "status": "abandoned", + "id": "0x334639A18B5Add14E8D98CB8B05ba0250308cBa4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x334639A18B5Add14E8D98CB8B05ba0250308cBa4/logo.png b/blockchains/ethereum/assets/0x334639A18B5Add14E8D98CB8B05ba0250308cBa4/logo.png new file mode 100644 index 00000000..ce45dbba Binary files /dev/null and b/blockchains/ethereum/assets/0x334639A18B5Add14E8D98CB8B05ba0250308cBa4/logo.png differ diff --git a/blockchains/ethereum/assets/0x33483A58079b4225b10e57958Ca28ad7b9CDbAF7/info.json b/blockchains/ethereum/assets/0x33483A58079b4225b10e57958Ca28ad7b9CDbAF7/info.json new file mode 100644 index 00000000..f9064b0e --- /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 00000000..b2bd2c4c 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 00000000..7b2da86c --- /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 00000000..78152f37 Binary files /dev/null and b/blockchains/ethereum/assets/0x334ccd8Df4013bac99Af8C5C61d3605B315302a0/logo.png differ diff --git a/blockchains/ethereum/assets/0x3356a5CD30D9e39e14e19aB548274046b1B89949/info.json b/blockchains/ethereum/assets/0x3356a5CD30D9e39e14e19aB548274046b1B89949/info.json new file mode 100644 index 00000000..3eab31b8 --- /dev/null +++ b/blockchains/ethereum/assets/0x3356a5CD30D9e39e14e19aB548274046b1B89949/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-23/30M23", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3356a5CD30D9e39e14e19aB548274046b1B89949", + "status": "abandoned", + "id": "0x3356a5CD30D9e39e14e19aB548274046b1B89949" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3356a5CD30D9e39e14e19aB548274046b1B89949/logo.png b/blockchains/ethereum/assets/0x3356a5CD30D9e39e14e19aB548274046b1B89949/logo.png new file mode 100644 index 00000000..75cd63c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x3356a5CD30D9e39e14e19aB548274046b1B89949/logo.png differ diff --git a/blockchains/ethereum/assets/0x33589ad907a47313166d34Cb8eE0a2aCC2c00d8E/info.json b/blockchains/ethereum/assets/0x33589ad907a47313166d34Cb8eE0a2aCC2c00d8E/info.json new file mode 100644 index 00000000..a40caeb4 --- /dev/null +++ b/blockchains/ethereum/assets/0x33589ad907a47313166d34Cb8eE0a2aCC2c00d8E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Backero", + "website": "https://backero.org", + "description": "Defi And Banks Merge Together​", + "explorer": "https://etherscan.io/token/0x33589ad907a47313166d34Cb8eE0a2aCC2c00d8E", + "type": "ERC20", + "symbol": "BKO", + "decimals": 18, + "status": "active", + "id": "0x33589ad907a47313166d34Cb8eE0a2aCC2c00d8E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33589ad907a47313166d34Cb8eE0a2aCC2c00d8E/logo.png b/blockchains/ethereum/assets/0x33589ad907a47313166d34Cb8eE0a2aCC2c00d8E/logo.png new file mode 100644 index 00000000..4432d66f Binary files /dev/null and b/blockchains/ethereum/assets/0x33589ad907a47313166d34Cb8eE0a2aCC2c00d8E/logo.png differ diff --git a/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/info.json b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/info.json new file mode 100644 index 00000000..73512b48 --- /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 00000000..a8a73326 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 00000000..d56a3698 --- /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 00000000..f424f8b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x3361A73262199873b74D6835760a59B8817fa592/logo.png differ diff --git a/blockchains/ethereum/assets/0x3363D570f6DF3c74d486BB8785d3EbFB9E2347D3/info.json b/blockchains/ethereum/assets/0x3363D570f6DF3c74d486BB8785d3EbFB9E2347D3/info.json new file mode 100644 index 00000000..9a23034e --- /dev/null +++ b/blockchains/ethereum/assets/0x3363D570f6DF3c74d486BB8785d3EbFB9E2347D3/info.json @@ -0,0 +1,11 @@ +{ + "name": "HedgeTrade", + "symbol": "HEDG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3363D570f6DF3c74d486BB8785d3EbFB9E2347D3", + "status": "abandoned", + "id": "0x3363D570f6DF3c74d486BB8785d3EbFB9E2347D3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3363D570f6DF3c74d486BB8785d3EbFB9E2347D3/logo.png b/blockchains/ethereum/assets/0x3363D570f6DF3c74d486BB8785d3EbFB9E2347D3/logo.png new file mode 100644 index 00000000..bdab92d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x3363D570f6DF3c74d486BB8785d3EbFB9E2347D3/logo.png differ diff --git a/blockchains/ethereum/assets/0x336492A0601CC85e08C14D390BF07d960328aaf4/info.json b/blockchains/ethereum/assets/0x336492A0601CC85e08C14D390BF07d960328aaf4/info.json new file mode 100644 index 00000000..493912c1 --- /dev/null +++ b/blockchains/ethereum/assets/0x336492A0601CC85e08C14D390BF07d960328aaf4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blueshare Token", + "symbol": "BST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x336492A0601CC85e08C14D390BF07d960328aaf4", + "status": "abandoned", + "id": "0x336492A0601CC85e08C14D390BF07d960328aaf4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x336492A0601CC85e08C14D390BF07d960328aaf4/logo.png b/blockchains/ethereum/assets/0x336492A0601CC85e08C14D390BF07d960328aaf4/logo.png new file mode 100644 index 00000000..5d922d60 Binary files /dev/null and b/blockchains/ethereum/assets/0x336492A0601CC85e08C14D390BF07d960328aaf4/logo.png differ diff --git a/blockchains/ethereum/assets/0x336F646F87D9f6bC6Ed42Dd46E8b3fD9DbD15C22/info.json b/blockchains/ethereum/assets/0x336F646F87D9f6bC6Ed42Dd46E8b3fD9DbD15C22/info.json new file mode 100644 index 00000000..9c48d4a9 --- /dev/null +++ b/blockchains/ethereum/assets/0x336F646F87D9f6bC6Ed42Dd46E8b3fD9DbD15C22/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crystal Clear Token", + "symbol": "CCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://crystal-clear.io/", + "explorer": "https://etherscan.io/token/0x336F646F87D9f6bC6Ed42Dd46E8b3fD9DbD15C22", + "status": "abandoned", + "id": "0x336F646F87D9f6bC6Ed42Dd46E8b3fD9DbD15C22" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x336F646F87D9f6bC6Ed42Dd46E8b3fD9DbD15C22/logo.png b/blockchains/ethereum/assets/0x336F646F87D9f6bC6Ed42Dd46E8b3fD9DbD15C22/logo.png new file mode 100644 index 00000000..0d54ece6 Binary files /dev/null and b/blockchains/ethereum/assets/0x336F646F87D9f6bC6Ed42Dd46E8b3fD9DbD15C22/logo.png differ diff --git a/blockchains/ethereum/assets/0x336e43eD5B563f73E989b2748C1d6D65A693149b/info.json b/blockchains/ethereum/assets/0x336e43eD5B563f73E989b2748C1d6D65A693149b/info.json new file mode 100644 index 00000000..88e0857c --- /dev/null +++ b/blockchains/ethereum/assets/0x336e43eD5B563f73E989b2748C1d6D65A693149b/info.json @@ -0,0 +1,11 @@ +{ + "name": "MASSCOIN", + "symbol": "MSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x336e43eD5B563f73E989b2748C1d6D65A693149b", + "status": "abandoned", + "id": "0x336e43eD5B563f73E989b2748C1d6D65A693149b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x336e43eD5B563f73E989b2748C1d6D65A693149b/logo.png b/blockchains/ethereum/assets/0x336e43eD5B563f73E989b2748C1d6D65A693149b/logo.png new file mode 100644 index 00000000..76c4073c Binary files /dev/null and b/blockchains/ethereum/assets/0x336e43eD5B563f73E989b2748C1d6D65A693149b/logo.png differ diff --git a/blockchains/ethereum/assets/0x3373bbF962190B158902A27Fbc2d9277A05b10Ab/info.json b/blockchains/ethereum/assets/0x3373bbF962190B158902A27Fbc2d9277A05b10Ab/info.json new file mode 100644 index 00000000..c12d0844 --- /dev/null +++ b/blockchains/ethereum/assets/0x3373bbF962190B158902A27Fbc2d9277A05b10Ab/info.json @@ -0,0 +1,11 @@ +{ + "name": "EGOLD", + "symbol": "EGD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3373bbF962190B158902A27Fbc2d9277A05b10Ab", + "status": "active", + "id": "0x3373bbF962190B158902A27Fbc2d9277A05b10Ab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3373bbF962190B158902A27Fbc2d9277A05b10Ab/logo.png b/blockchains/ethereum/assets/0x3373bbF962190B158902A27Fbc2d9277A05b10Ab/logo.png new file mode 100644 index 00000000..e3f92d0c Binary files /dev/null and b/blockchains/ethereum/assets/0x3373bbF962190B158902A27Fbc2d9277A05b10Ab/logo.png differ diff --git a/blockchains/ethereum/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json b/blockchains/ethereum/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json new file mode 100644 index 00000000..9536c28c --- /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 00000000..854c9b59 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 new file mode 100644 index 00000000..b03d082f --- /dev/null +++ b/blockchains/ethereum/assets/0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20/info.json @@ -0,0 +1,25 @@ +{ + "name": "Anatha", + "website": "https://anatha.io", + "description": "Reward token for the Anatha ecosystem.", + "explorer": "https://etherscan.io/token/0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20", + "type": "ERC20", + "symbol": "wANATHA", + "decimals": 18, + "status": "active", + "id": "0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20", + "links": [ + { + "name": "github", + "url": "https://github.com/anathatech/" + }, + { + "name": "x", + "url": "https://x.com/Anatha_IO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Anatha" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20/logo.png b/blockchains/ethereum/assets/0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20/logo.png new file mode 100644 index 00000000..a05accb4 Binary files /dev/null and b/blockchains/ethereum/assets/0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20/logo.png differ diff --git a/blockchains/ethereum/assets/0x339ce23a355ed6D513DD3e1462975C4eCD86823a/info.json b/blockchains/ethereum/assets/0x339ce23a355ed6D513DD3e1462975C4eCD86823a/info.json new file mode 100644 index 00000000..272a593f --- /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 00000000..d82ddf5a 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 00000000..eb60364c --- /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 00000000..fe351ef1 Binary files /dev/null and b/blockchains/ethereum/assets/0x33ABE795f9c1b6136608c36dB211bD7590f5FdAE/logo.png differ diff --git a/blockchains/ethereum/assets/0x33B919F54692dDbf702065763EA2b50Ca02e6bfF/info.json b/blockchains/ethereum/assets/0x33B919F54692dDbf702065763EA2b50Ca02e6bfF/info.json new file mode 100644 index 00000000..e6582e08 --- /dev/null +++ b/blockchains/ethereum/assets/0x33B919F54692dDbf702065763EA2b50Ca02e6bfF/info.json @@ -0,0 +1,11 @@ +{ + "name": "MOCROW", + "symbol": "MCW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x33B919F54692dDbf702065763EA2b50Ca02e6bfF", + "status": "abandoned", + "id": "0x33B919F54692dDbf702065763EA2b50Ca02e6bfF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33B919F54692dDbf702065763EA2b50Ca02e6bfF/logo.png b/blockchains/ethereum/assets/0x33B919F54692dDbf702065763EA2b50Ca02e6bfF/logo.png new file mode 100644 index 00000000..d8e198bb Binary files /dev/null and b/blockchains/ethereum/assets/0x33B919F54692dDbf702065763EA2b50Ca02e6bfF/logo.png differ diff --git a/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/info.json b/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/info.json new file mode 100644 index 00000000..dc96fccb --- /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 00000000..21e38dbc Binary files /dev/null and b/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/logo.png differ diff --git a/blockchains/ethereum/assets/0x33C623a2BAAfEb8D15DfaF3cE44095efec83D72C/info.json b/blockchains/ethereum/assets/0x33C623a2BAAfEb8D15DfaF3cE44095efec83D72C/info.json new file mode 100644 index 00000000..100a159c --- /dev/null +++ b/blockchains/ethereum/assets/0x33C623a2BAAfEb8D15DfaF3cE44095efec83D72C/info.json @@ -0,0 +1,11 @@ +{ + "name": "SGPay Token", + "symbol": "SGP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x33C623a2BAAfEb8D15DfaF3cE44095efec83D72C", + "status": "abandoned", + "id": "0x33C623a2BAAfEb8D15DfaF3cE44095efec83D72C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33C623a2BAAfEb8D15DfaF3cE44095efec83D72C/logo.png b/blockchains/ethereum/assets/0x33C623a2BAAfEb8D15DfaF3cE44095efec83D72C/logo.png new file mode 100644 index 00000000..d408c2a7 Binary files /dev/null and b/blockchains/ethereum/assets/0x33C623a2BAAfEb8D15DfaF3cE44095efec83D72C/logo.png differ diff --git a/blockchains/ethereum/assets/0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f/info.json b/blockchains/ethereum/assets/0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f/info.json new file mode 100644 index 00000000..7e3d4232 --- /dev/null +++ b/blockchains/ethereum/assets/0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f/info.json @@ -0,0 +1,25 @@ +{ + "name": "RAMP DEFI", + "website": "https://rampdefi.com/", + "description": "Unlocking Liquid Capital From Staked Assets", + "explorer": "https://etherscan.io/token/0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f", + "type": "ERC20", + "symbol": "RAMP", + "decimals": 18, + "status": "active", + "id": "0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f", + "links": [ + { + "name": "x", + "url": "https://x.com/RampDefi" + }, + { + "name": "telegram", + "url": "https://t.me/rampdefiofficial" + }, + { + "name": "medium", + "url": "https://medium.com/rampdefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f/logo.png b/blockchains/ethereum/assets/0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f/logo.png new file mode 100644 index 00000000..e6d62663 Binary files /dev/null and b/blockchains/ethereum/assets/0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f/logo.png differ diff --git a/blockchains/ethereum/assets/0x33DCd369d697132dE252884336225DE31fB474b2/info.json b/blockchains/ethereum/assets/0x33DCd369d697132dE252884336225DE31fB474b2/info.json new file mode 100644 index 00000000..b4e2c765 --- /dev/null +++ b/blockchains/ethereum/assets/0x33DCd369d697132dE252884336225DE31fB474b2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alice", + "symbol": "ALICE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x33DCd369d697132dE252884336225DE31fB474b2", + "status": "abandoned", + "id": "0x33DCd369d697132dE252884336225DE31fB474b2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33DCd369d697132dE252884336225DE31fB474b2/logo.png b/blockchains/ethereum/assets/0x33DCd369d697132dE252884336225DE31fB474b2/logo.png new file mode 100644 index 00000000..1b40ab84 Binary files /dev/null and b/blockchains/ethereum/assets/0x33DCd369d697132dE252884336225DE31fB474b2/logo.png differ diff --git a/blockchains/ethereum/assets/0x33aC34DA58168De69cE74a66fbaD81a88F974BD5/info.json b/blockchains/ethereum/assets/0x33aC34DA58168De69cE74a66fbaD81a88F974BD5/info.json new file mode 100644 index 00000000..a795b831 --- /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 00000000..ed1647f5 Binary files /dev/null and b/blockchains/ethereum/assets/0x33aC34DA58168De69cE74a66fbaD81a88F974BD5/logo.png differ diff --git a/blockchains/ethereum/assets/0x33aD8CCD192c2B1782b0d3E557e32a54771E16F1/info.json b/blockchains/ethereum/assets/0x33aD8CCD192c2B1782b0d3E557e32a54771E16F1/info.json new file mode 100644 index 00000000..8a4686ac --- /dev/null +++ b/blockchains/ethereum/assets/0x33aD8CCD192c2B1782b0d3E557e32a54771E16F1/info.json @@ -0,0 +1,11 @@ +{ + "name": "SunPower", + "symbol": "SP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x33aD8CCD192c2B1782b0d3E557e32a54771E16F1", + "status": "abandoned", + "id": "0x33aD8CCD192c2B1782b0d3E557e32a54771E16F1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33aD8CCD192c2B1782b0d3E557e32a54771E16F1/logo.png b/blockchains/ethereum/assets/0x33aD8CCD192c2B1782b0d3E557e32a54771E16F1/logo.png new file mode 100644 index 00000000..7ad13cff Binary files /dev/null and b/blockchains/ethereum/assets/0x33aD8CCD192c2B1782b0d3E557e32a54771E16F1/logo.png differ diff --git a/blockchains/ethereum/assets/0x33b282C88dE3E8eD471c24e43f60816dcAbe12f4/info.json b/blockchains/ethereum/assets/0x33b282C88dE3E8eD471c24e43f60816dcAbe12f4/info.json new file mode 100644 index 00000000..e1f6a899 --- /dev/null +++ b/blockchains/ethereum/assets/0x33b282C88dE3E8eD471c24e43f60816dcAbe12f4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hopper Token", + "symbol": "HOPP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x33b282C88dE3E8eD471c24e43f60816dcAbe12f4", + "status": "abandoned", + "id": "0x33b282C88dE3E8eD471c24e43f60816dcAbe12f4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33b282C88dE3E8eD471c24e43f60816dcAbe12f4/logo.png b/blockchains/ethereum/assets/0x33b282C88dE3E8eD471c24e43f60816dcAbe12f4/logo.png new file mode 100644 index 00000000..d2a69a07 Binary files /dev/null and b/blockchains/ethereum/assets/0x33b282C88dE3E8eD471c24e43f60816dcAbe12f4/logo.png differ diff --git a/blockchains/ethereum/assets/0x33bFD20660eeAF952E8D5Bc3236E1918701F17D0/info.json b/blockchains/ethereum/assets/0x33bFD20660eeAF952E8D5Bc3236E1918701F17D0/info.json new file mode 100644 index 00000000..ad829143 --- /dev/null +++ b/blockchains/ethereum/assets/0x33bFD20660eeAF952E8D5Bc3236E1918701F17D0/info.json @@ -0,0 +1,11 @@ +{ + "name": "RCCC Token", + "symbol": "RCCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.rccc.pro/", + "explorer": "https://etherscan.io/token/0x33bFD20660eeAF952E8D5Bc3236E1918701F17D0", + "status": "abandoned", + "id": "0x33bFD20660eeAF952E8D5Bc3236E1918701F17D0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33bFD20660eeAF952E8D5Bc3236E1918701F17D0/logo.png b/blockchains/ethereum/assets/0x33bFD20660eeAF952E8D5Bc3236E1918701F17D0/logo.png new file mode 100755 index 00000000..0bdff29e Binary files /dev/null and b/blockchains/ethereum/assets/0x33bFD20660eeAF952E8D5Bc3236E1918701F17D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x33c23d44679433A88B89ca38D3311A9a3D160699/info.json b/blockchains/ethereum/assets/0x33c23d44679433A88B89ca38D3311A9a3D160699/info.json new file mode 100644 index 00000000..f8591fe9 --- /dev/null +++ b/blockchains/ethereum/assets/0x33c23d44679433A88B89ca38D3311A9a3D160699/info.json @@ -0,0 +1,11 @@ +{ + "name": "RAINBOW", + "website": "https://magicliquidity.com", + "description": "Magical Liquidity Rainbow ! Stake Uniswap v2 LP tokens and earn RAINBOW", + "explorer": "https://etherscan.io/token/0x33c23d44679433A88B89ca38D3311A9a3D160699", + "type": "ERC20", + "symbol": "RAINBOW", + "decimals": 18, + "status": "active", + "id": "0x33c23d44679433A88B89ca38D3311A9a3D160699" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33c23d44679433A88B89ca38D3311A9a3D160699/logo.png b/blockchains/ethereum/assets/0x33c23d44679433A88B89ca38D3311A9a3D160699/logo.png new file mode 100644 index 00000000..a7fd5b82 Binary files /dev/null and b/blockchains/ethereum/assets/0x33c23d44679433A88B89ca38D3311A9a3D160699/logo.png differ diff --git a/blockchains/ethereum/assets/0x33c2DA7Fd5B125E629B3950f3c38d7f721D7B30D/info.json b/blockchains/ethereum/assets/0x33c2DA7Fd5B125E629B3950f3c38d7f721D7B30D/info.json new file mode 100644 index 00000000..43ec0d75 --- /dev/null +++ b/blockchains/ethereum/assets/0x33c2DA7Fd5B125E629B3950f3c38d7f721D7B30D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Seal Finance", + "symbol": "Seal", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x33c2DA7Fd5B125E629B3950f3c38d7f721D7B30D", + "status": "abandoned", + "id": "0x33c2DA7Fd5B125E629B3950f3c38d7f721D7B30D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33c2DA7Fd5B125E629B3950f3c38d7f721D7B30D/logo.png b/blockchains/ethereum/assets/0x33c2DA7Fd5B125E629B3950f3c38d7f721D7B30D/logo.png new file mode 100644 index 00000000..abe5590e Binary files /dev/null and b/blockchains/ethereum/assets/0x33c2DA7Fd5B125E629B3950f3c38d7f721D7B30D/logo.png differ diff --git a/blockchains/ethereum/assets/0x33c52eE4BD563A26071619bC6F70146295FeBE8D/info.json b/blockchains/ethereum/assets/0x33c52eE4BD563A26071619bC6F70146295FeBE8D/info.json new file mode 100644 index 00000000..a800059c --- /dev/null +++ b/blockchains/ethereum/assets/0x33c52eE4BD563A26071619bC6F70146295FeBE8D/info.json @@ -0,0 +1,11 @@ +{ + "name": "VolAir Coin", + "symbol": "VOL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x33c52eE4BD563A26071619bC6F70146295FeBE8D", + "status": "abandoned", + "id": "0x33c52eE4BD563A26071619bC6F70146295FeBE8D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33c52eE4BD563A26071619bC6F70146295FeBE8D/logo.png b/blockchains/ethereum/assets/0x33c52eE4BD563A26071619bC6F70146295FeBE8D/logo.png new file mode 100644 index 00000000..d9d96fa7 Binary files /dev/null and b/blockchains/ethereum/assets/0x33c52eE4BD563A26071619bC6F70146295FeBE8D/logo.png differ diff --git a/blockchains/ethereum/assets/0x33d63Ba1E57E54779F7dDAeaA7109349344cf5F1/info.json b/blockchains/ethereum/assets/0x33d63Ba1E57E54779F7dDAeaA7109349344cf5F1/info.json new file mode 100644 index 00000000..b407a86a --- /dev/null +++ b/blockchains/ethereum/assets/0x33d63Ba1E57E54779F7dDAeaA7109349344cf5F1/info.json @@ -0,0 +1,33 @@ +{ + "name": "Data Economy Index", + "symbol": "DATA", + "type": "ERC20", + "decimals": 18, + "description": "The Data Economy Index is an ecosystem of data-based products and services.", + "website": "https://www.indexcoop.com/data", + "explorer": "https://etherscan.io/token/0x33d63Ba1E57E54779F7dDAeaA7109349344cf5F1", + "status": "active", + "id": "0x33d63Ba1E57E54779F7dDAeaA7109349344cf5F1", + "links": [ + { + "name": "blog", + "url": "https://gov.indexcoop.com" + }, + { + "name": "x", + "url": "https://x.com/indexcoop" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/data-economy-index/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/data-economy-index" + }, + { + "name": "discord", + "url": "https://discord.com/invite/RKZ4S3b" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33d63Ba1E57E54779F7dDAeaA7109349344cf5F1/logo.png b/blockchains/ethereum/assets/0x33d63Ba1E57E54779F7dDAeaA7109349344cf5F1/logo.png new file mode 100644 index 00000000..1f415e48 Binary files /dev/null and b/blockchains/ethereum/assets/0x33d63Ba1E57E54779F7dDAeaA7109349344cf5F1/logo.png differ diff --git a/blockchains/ethereum/assets/0x33d8e28949Eb784556064ED095A18C0E66219860/info.json b/blockchains/ethereum/assets/0x33d8e28949Eb784556064ED095A18C0E66219860/info.json new file mode 100644 index 00000000..0d32fbb6 --- /dev/null +++ b/blockchains/ethereum/assets/0x33d8e28949Eb784556064ED095A18C0E66219860/info.json @@ -0,0 +1,11 @@ +{ + "name": "INNOVA", + "symbol": "INA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x33d8e28949Eb784556064ED095A18C0E66219860", + "status": "abandoned", + "id": "0x33d8e28949Eb784556064ED095A18C0E66219860" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33d8e28949Eb784556064ED095A18C0E66219860/logo.png b/blockchains/ethereum/assets/0x33d8e28949Eb784556064ED095A18C0E66219860/logo.png new file mode 100644 index 00000000..687a1d30 Binary files /dev/null and b/blockchains/ethereum/assets/0x33d8e28949Eb784556064ED095A18C0E66219860/logo.png differ diff --git a/blockchains/ethereum/assets/0x33f90Dee07c6E8B9682dD20F73E6C358B2ED0f03/info.json b/blockchains/ethereum/assets/0x33f90Dee07c6E8B9682dD20F73E6C358B2ED0f03/info.json new file mode 100644 index 00000000..80624763 --- /dev/null +++ b/blockchains/ethereum/assets/0x33f90Dee07c6E8B9682dD20F73E6C358B2ED0f03/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trident Group", + "symbol": "TRDT", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x33f90Dee07c6E8B9682dD20F73E6C358B2ED0f03", + "status": "abandoned", + "id": "0x33f90Dee07c6E8B9682dD20F73E6C358B2ED0f03" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33f90Dee07c6E8B9682dD20F73E6C358B2ED0f03/logo.png b/blockchains/ethereum/assets/0x33f90Dee07c6E8B9682dD20F73E6C358B2ED0f03/logo.png new file mode 100644 index 00000000..a2cf74be Binary files /dev/null and b/blockchains/ethereum/assets/0x33f90Dee07c6E8B9682dD20F73E6C358B2ED0f03/logo.png differ diff --git a/blockchains/ethereum/assets/0x33fEfc811A86474A832d38926428a1DADE431F25/info.json b/blockchains/ethereum/assets/0x33fEfc811A86474A832d38926428a1DADE431F25/info.json new file mode 100644 index 00000000..d691af78 --- /dev/null +++ b/blockchains/ethereum/assets/0x33fEfc811A86474A832d38926428a1DADE431F25/info.json @@ -0,0 +1,11 @@ +{ + "name": "ProNet Coin", + "website": "https://pronetcoin.com/", + "description": "ProNet Coin (PNC) is a project aimed at helping victims of abandoned(scam) ICO projects regain their stolen investments. This is done by swapping the valueless coins left in their wallets into PNC. PNC is available for swap on Pronetcoin.com", + "explorer": "https://etherscan.io/token/0x33fEfc811A86474A832d38926428a1DADE431F25", + "type": "ERC20", + "symbol": "PNC", + "decimals": 8, + "status": "active", + "id": "0x33fEfc811A86474A832d38926428a1DADE431F25" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33fEfc811A86474A832d38926428a1DADE431F25/logo.png b/blockchains/ethereum/assets/0x33fEfc811A86474A832d38926428a1DADE431F25/logo.png new file mode 100644 index 00000000..8bdb6736 Binary files /dev/null and b/blockchains/ethereum/assets/0x33fEfc811A86474A832d38926428a1DADE431F25/logo.png differ diff --git a/blockchains/ethereum/assets/0x340D2bdE5Eb28c1eed91B2f790723E3B160613B7/info.json b/blockchains/ethereum/assets/0x340D2bdE5Eb28c1eed91B2f790723E3B160613B7/info.json new file mode 100644 index 00000000..ca6ce95b --- /dev/null +++ b/blockchains/ethereum/assets/0x340D2bdE5Eb28c1eed91B2f790723E3B160613B7/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLOCKv (VEE)", + "type": "ERC20", + "symbol": "VEE", + "decimals": 18, + "website": "https://blockv.io/", + "description": "BLOCKv provides a platform enabling the creation of Vatoms, a digital asset class (NFT) that bridges the gap between physical & digital worlds, creating new levels of human engagement.", + "explorer": "https://etherscan.io/token/0x340d2bde5eb28c1eed91b2f790723e3b160613b7", + "status": "active", + "id": "0x340D2bdE5Eb28c1eed91B2f790723E3B160613B7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x340D2bdE5Eb28c1eed91B2f790723E3B160613B7/logo.png b/blockchains/ethereum/assets/0x340D2bdE5Eb28c1eed91B2f790723E3B160613B7/logo.png new file mode 100644 index 00000000..fa31569f Binary files /dev/null and b/blockchains/ethereum/assets/0x340D2bdE5Eb28c1eed91B2f790723E3B160613B7/logo.png differ diff --git a/blockchains/ethereum/assets/0x340eF83Ec8560892168D4062720F030460468656/info.json b/blockchains/ethereum/assets/0x340eF83Ec8560892168D4062720F030460468656/info.json new file mode 100644 index 00000000..ddfcadbb --- /dev/null +++ b/blockchains/ethereum/assets/0x340eF83Ec8560892168D4062720F030460468656/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Meta", + "symbol": "ETHM", + "type": "ERC20", + "decimals": 18, + "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/0x340eF83Ec8560892168D4062720F030460468656", + "status": "abandoned", + "id": "0x340eF83Ec8560892168D4062720F030460468656" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3414BEC8aC9b323008b511De2E91d979183B46f5/info.json b/blockchains/ethereum/assets/0x3414BEC8aC9b323008b511De2E91d979183B46f5/info.json new file mode 100644 index 00000000..ceba05b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x3414BEC8aC9b323008b511De2E91d979183B46f5/info.json @@ -0,0 +1,11 @@ +{ + "name": "AfroTeq Coin", + "symbol": "AfT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3414BEC8aC9b323008b511De2E91d979183B46f5", + "status": "abandoned", + "id": "0x3414BEC8aC9b323008b511De2E91d979183B46f5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3414BEC8aC9b323008b511De2E91d979183B46f5/logo.png b/blockchains/ethereum/assets/0x3414BEC8aC9b323008b511De2E91d979183B46f5/logo.png new file mode 100644 index 00000000..fddd3199 Binary files /dev/null and b/blockchains/ethereum/assets/0x3414BEC8aC9b323008b511De2E91d979183B46f5/logo.png differ diff --git a/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/info.json b/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/info.json new file mode 100644 index 00000000..c0b3131d --- /dev/null +++ b/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/info.json @@ -0,0 +1,37 @@ +{ + "name": "Diversified Staked ETH Index", + "website": "https://indexcoop.com/dseth-diversified-staked-eth-index-coop", + "description": "The Diversified Staked Ethereum Index is an index token of the leading Ethereum liquid staking tokens weighted according to their degree of decentralization.", + "explorer": "https://etherscan.io/token/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE", + "symbol": "dsETH", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE", + "links": [ + { + "name": "github", + "url": "https://github.com/IndexCoop" + }, + { + "name": "x", + "url": "https://x.com/indexcoop" + }, + { + "name": "docs", + "url": "https://docs.indexcoop.com/index-coop-community-handbook/products/diversified-staked-eth-index-dseth" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/diversified-staked-eth" + }, + { + "name": "forum", + "url": "https://gov.indexcoop.com/t/iip-171-launch-the-diversified-staked-eth-index-dseth/4389" + } + ], + "tags": [ + "staking", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/logo.png b/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/logo.png new file mode 100644 index 00000000..a033f381 Binary files /dev/null and b/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/logo.png differ diff --git a/blockchains/ethereum/assets/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/info.json b/blockchains/ethereum/assets/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/info.json new file mode 100644 index 00000000..cbc0d6ab --- /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 00000000..1b74f843 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 new file mode 100644 index 00000000..7c92130c --- /dev/null +++ b/blockchains/ethereum/assets/0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0/info.json @@ -0,0 +1,32 @@ +{ + "name": "Frax Share", + "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://etherscan.io/token/0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0", + "type": "ERC20", + "symbol": "FXS", + "decimals": 18, + "status": "active", + "id": "0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0", + "tags": [ + "defi" + ], + "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/ethereum/assets/0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0/logo.png b/blockchains/ethereum/assets/0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0/logo.png new file mode 100644 index 00000000..5072baa5 Binary files /dev/null and b/blockchains/ethereum/assets/0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x34364BEe11607b1963d66BCA665FDE93fCA666a8/info.json b/blockchains/ethereum/assets/0x34364BEe11607b1963d66BCA665FDE93fCA666a8/info.json new file mode 100644 index 00000000..c00a67da --- /dev/null +++ b/blockchains/ethereum/assets/0x34364BEe11607b1963d66BCA665FDE93fCA666a8/info.json @@ -0,0 +1,11 @@ +{ + "name": "YOU COIN", + "website": "http://youchain.cc", + "description": "YOUChain is focused on carrying out large-scale commercial applications through its YPoS consensus mechanism and investment model.", + "explorer": "https://etherscan.io/token/0x34364BEe11607b1963d66BCA665FDE93fCA666a8", + "type": "ERC20", + "symbol": "YOU", + "decimals": 18, + "status": "active", + "id": "0x34364BEe11607b1963d66BCA665FDE93fCA666a8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x34364BEe11607b1963d66BCA665FDE93fCA666a8/logo.png b/blockchains/ethereum/assets/0x34364BEe11607b1963d66BCA665FDE93fCA666a8/logo.png new file mode 100644 index 00000000..253474ec Binary files /dev/null and b/blockchains/ethereum/assets/0x34364BEe11607b1963d66BCA665FDE93fCA666a8/logo.png differ diff --git a/blockchains/ethereum/assets/0x3446E165471dCe3fF477F49a1352F28bBA73F07f/info.json b/blockchains/ethereum/assets/0x3446E165471dCe3fF477F49a1352F28bBA73F07f/info.json new file mode 100644 index 00000000..cebd2227 --- /dev/null +++ b/blockchains/ethereum/assets/0x3446E165471dCe3fF477F49a1352F28bBA73F07f/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R384884", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3446E165471dCe3fF477F49a1352F28bBA73F07f", + "status": "abandoned", + "id": "0x3446E165471dCe3fF477F49a1352F28bBA73F07f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3446E165471dCe3fF477F49a1352F28bBA73F07f/logo.png b/blockchains/ethereum/assets/0x3446E165471dCe3fF477F49a1352F28bBA73F07f/logo.png new file mode 100644 index 00000000..43359984 Binary files /dev/null and b/blockchains/ethereum/assets/0x3446E165471dCe3fF477F49a1352F28bBA73F07f/logo.png differ diff --git a/blockchains/ethereum/assets/0x3449FC1Cd036255BA1EB19d65fF4BA2b8903A69a/info.json b/blockchains/ethereum/assets/0x3449FC1Cd036255BA1EB19d65fF4BA2b8903A69a/info.json new file mode 100644 index 00000000..bd2b180c --- /dev/null +++ b/blockchains/ethereum/assets/0x3449FC1Cd036255BA1EB19d65fF4BA2b8903A69a/info.json @@ -0,0 +1,33 @@ +{ + "name": "Basis Cash", + "website": "https://basis.cash/", + "description": "Basis Cash is an open source, permissionless stablecoin pegged to USD. The protocol is designed to expand and contract supply similarly to the way central banks buy and sell fiscal debt to stabilze purchasing power, without any REBASES or risking colletrals.", + "explorer": "https://etherscan.io/token/0x3449fc1cd036255ba1eb19d65ff4ba2b8903a69a", + "type": "ERC20", + "symbol": "BAC", + "decimals": 18, + "status": "active", + "id": "0x3449FC1Cd036255BA1EB19d65fF4BA2b8903A69a", + "links": [ + { + "name": "github", + "url": "https://github.com/Basis-Cash" + }, + { + "name": "x", + "url": "https://x.com/Basis Cash" + }, + { + "name": "telegram", + "url": "https://t.me/basiscash" + }, + { + "name": "discord", + "url": "https://discord.com/invite/UEZq3HF5Eu" + }, + { + "name": "medium", + "url": "https://medium.com/basis-cash" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3449FC1Cd036255BA1EB19d65fF4BA2b8903A69a/logo.png b/blockchains/ethereum/assets/0x3449FC1Cd036255BA1EB19d65fF4BA2b8903A69a/logo.png new file mode 100644 index 00000000..487fbdc0 Binary files /dev/null and b/blockchains/ethereum/assets/0x3449FC1Cd036255BA1EB19d65fF4BA2b8903A69a/logo.png differ diff --git a/blockchains/ethereum/assets/0x3453769b660b7EE4261AaA043479Aa3CA02243bf/info.json b/blockchains/ethereum/assets/0x3453769b660b7EE4261AaA043479Aa3CA02243bf/info.json new file mode 100644 index 00000000..83d40142 --- /dev/null +++ b/blockchains/ethereum/assets/0x3453769b660b7EE4261AaA043479Aa3CA02243bf/info.json @@ -0,0 +1,11 @@ +{ + "name": "LaserCoin", + "symbol": "LZR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://lasercoin.io", + "explorer": "https://etherscan.io/token/0x3453769b660b7EE4261AaA043479Aa3CA02243bf", + "status": "abandoned", + "id": "0x3453769b660b7EE4261AaA043479Aa3CA02243bf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3453769b660b7EE4261AaA043479Aa3CA02243bf/logo.png b/blockchains/ethereum/assets/0x3453769b660b7EE4261AaA043479Aa3CA02243bf/logo.png new file mode 100644 index 00000000..af1c52c3 Binary files /dev/null and b/blockchains/ethereum/assets/0x3453769b660b7EE4261AaA043479Aa3CA02243bf/logo.png differ diff --git a/blockchains/ethereum/assets/0x34612903Db071e888a4dADcaA416d3EE263a87b9/info.json b/blockchains/ethereum/assets/0x34612903Db071e888a4dADcaA416d3EE263a87b9/info.json new file mode 100644 index 00000000..ad407ab6 --- /dev/null +++ b/blockchains/ethereum/assets/0x34612903Db071e888a4dADcaA416d3EE263a87b9/info.json @@ -0,0 +1,17 @@ +{ + "name": "ETHITEM", + "website": "https://ethitem.com", + "description": "The voting token of the on-chain organization ETHITEM", + "explorer": "https://etherscan.io/token/0x34612903Db071e888a4dADcaA416d3EE263a87b9", + "type": "ERC20", + "symbol": "arte", + "decimals": 18, + "status": "active", + "id": "0x34612903Db071e888a4dADcaA416d3EE263a87b9", + "links": [ + { + "name": "github", + "url": "https://github.com/b-u-i-d-l/ETHITEM" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x34612903Db071e888a4dADcaA416d3EE263a87b9/logo.png b/blockchains/ethereum/assets/0x34612903Db071e888a4dADcaA416d3EE263a87b9/logo.png new file mode 100644 index 00000000..b2a088c3 Binary files /dev/null and b/blockchains/ethereum/assets/0x34612903Db071e888a4dADcaA416d3EE263a87b9/logo.png differ diff --git a/blockchains/ethereum/assets/0x3472A5A71965499acd81997a54BBA8D852C6E53d/info.json b/blockchains/ethereum/assets/0x3472A5A71965499acd81997a54BBA8D852C6E53d/info.json new file mode 100644 index 00000000..37bc6739 --- /dev/null +++ b/blockchains/ethereum/assets/0x3472A5A71965499acd81997a54BBA8D852C6E53d/info.json @@ -0,0 +1,29 @@ +{ + "name": "Badger", + "website": "https://badger.finance/", + "description": "DAO dedicated to building products and infrastructure to bring Bitcoin to DeFi.", + "explorer": "https://etherscan.io/token/0x3472A5A71965499acd81997a54BBA8D852C6E53d", + "type": "ERC20", + "symbol": "BADGER", + "decimals": 18, + "status": "active", + "id": "0x3472A5A71965499acd81997a54BBA8D852C6E53d", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/$BADGER" + }, + { + "name": "discord", + "url": "https://discord.com/invite/xSPFHHS" + }, + { + "name": "medium", + "url": "https://badgerdao.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3472A5A71965499acd81997a54BBA8D852C6E53d/logo.png b/blockchains/ethereum/assets/0x3472A5A71965499acd81997a54BBA8D852C6E53d/logo.png new file mode 100644 index 00000000..fbf9e095 Binary files /dev/null and b/blockchains/ethereum/assets/0x3472A5A71965499acd81997a54BBA8D852C6E53d/logo.png differ diff --git a/blockchains/ethereum/assets/0x347C099f110Ca6761779329D2879957b606b6aCE/info.json b/blockchains/ethereum/assets/0x347C099f110Ca6761779329D2879957b606b6aCE/info.json new file mode 100644 index 00000000..6f4d22bd --- /dev/null +++ b/blockchains/ethereum/assets/0x347C099f110Ca6761779329D2879957b606b6aCE/info.json @@ -0,0 +1,11 @@ +{ + "name": "JOINT", + "symbol": "JOINT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://jointventures.io/", + "explorer": "https://etherscan.io/token/0x347C099f110Ca6761779329D2879957b606b6aCE", + "status": "abandoned", + "id": "0x347C099f110Ca6761779329D2879957b606b6aCE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x347C099f110Ca6761779329D2879957b606b6aCE/logo.png b/blockchains/ethereum/assets/0x347C099f110Ca6761779329D2879957b606b6aCE/logo.png new file mode 100644 index 00000000..0f1efe8b Binary files /dev/null and b/blockchains/ethereum/assets/0x347C099f110Ca6761779329D2879957b606b6aCE/logo.png differ diff --git a/blockchains/ethereum/assets/0x348B7f3106B5Da47405332534d06069fF9CE4d1B/info.json b/blockchains/ethereum/assets/0x348B7f3106B5Da47405332534d06069fF9CE4d1B/info.json new file mode 100644 index 00000000..acd182c0 --- /dev/null +++ b/blockchains/ethereum/assets/0x348B7f3106B5Da47405332534d06069fF9CE4d1B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Elongate Deluxe", + "website": "https://elongd.finance/", + "description": "Elongate Deluxe The passive reward protocol with advanced elongation technology.", + "explorer": "https://etherscan.io/token/0x348B7f3106B5Da47405332534d06069fF9CE4d1B", + "type": "ERC20", + "symbol": "ELONGD", + "decimals": 9, + "status": "active", + "id": "0x348B7f3106B5Da47405332534d06069fF9CE4d1B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x348B7f3106B5Da47405332534d06069fF9CE4d1B/logo.png b/blockchains/ethereum/assets/0x348B7f3106B5Da47405332534d06069fF9CE4d1B/logo.png new file mode 100644 index 00000000..5d41cffd Binary files /dev/null and b/blockchains/ethereum/assets/0x348B7f3106B5Da47405332534d06069fF9CE4d1B/logo.png differ diff --git a/blockchains/ethereum/assets/0x34950Ff2b487d9E5282c5aB342d08A2f712eb79F/info.json b/blockchains/ethereum/assets/0x34950Ff2b487d9E5282c5aB342d08A2f712eb79F/info.json new file mode 100644 index 00000000..81d1997d --- /dev/null +++ b/blockchains/ethereum/assets/0x34950Ff2b487d9E5282c5aB342d08A2f712eb79F/info.json @@ -0,0 +1,21 @@ +{ + "name": "Efforce", + "website": "https://efforce.io/", + "description": "The first blockchain-based energy-saving platform.", + "explorer": "https://etherscan.io/token/0x34950Ff2b487d9E5282c5aB342d08A2f712eb79F", + "type": "ERC20", + "symbol": "WOZX", + "decimals": 18, + "status": "active", + "id": "0x34950Ff2b487d9E5282c5aB342d08A2f712eb79F", + "links": [ + { + "name": "x", + "url": "https://x.com/EfforceOfficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/EFFORCE/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x34950Ff2b487d9E5282c5aB342d08A2f712eb79F/logo.png b/blockchains/ethereum/assets/0x34950Ff2b487d9E5282c5aB342d08A2f712eb79F/logo.png new file mode 100644 index 00000000..93f5da68 Binary files /dev/null and b/blockchains/ethereum/assets/0x34950Ff2b487d9E5282c5aB342d08A2f712eb79F/logo.png differ diff --git a/blockchains/ethereum/assets/0x3496B523e5C00a4b4150D6721320CdDb234c3079/info.json b/blockchains/ethereum/assets/0x3496B523e5C00a4b4150D6721320CdDb234c3079/info.json new file mode 100644 index 00000000..9323c2c4 --- /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 00000000..a85ef028 Binary files /dev/null and b/blockchains/ethereum/assets/0x3496B523e5C00a4b4150D6721320CdDb234c3079/logo.png differ diff --git a/blockchains/ethereum/assets/0x349c9A0AFbe8C8e08a6bD8A2E925f9EC5aE7d2C9/info.json b/blockchains/ethereum/assets/0x349c9A0AFbe8C8e08a6bD8A2E925f9EC5aE7d2C9/info.json new file mode 100644 index 00000000..9401add4 --- /dev/null +++ b/blockchains/ethereum/assets/0x349c9A0AFbe8C8e08a6bD8A2E925f9EC5aE7d2C9/info.json @@ -0,0 +1,11 @@ +{ + "name": "TheFaustFlick", + "symbol": "TFF", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x349c9A0AFbe8C8e08a6bD8A2E925f9EC5aE7d2C9", + "status": "abandoned", + "id": "0x349c9A0AFbe8C8e08a6bD8A2E925f9EC5aE7d2C9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x349c9A0AFbe8C8e08a6bD8A2E925f9EC5aE7d2C9/logo.png b/blockchains/ethereum/assets/0x349c9A0AFbe8C8e08a6bD8A2E925f9EC5aE7d2C9/logo.png new file mode 100755 index 00000000..686df5c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x349c9A0AFbe8C8e08a6bD8A2E925f9EC5aE7d2C9/logo.png differ diff --git a/blockchains/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/info.json b/blockchains/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/info.json new file mode 100644 index 00000000..e6008f35 --- /dev/null +++ b/blockchains/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/info.json @@ -0,0 +1,38 @@ +{ + "name": "SENATE", + "symbol": "SENATE", + "website": "https://sidusheroes.com", + "description": "The financial system of the Sidus Heroes game includes two tokens: the SIDUS token and the SENATE token. The SENATE token is used by the in-game mechanics as a governance coin as well as in-game currency for certain products within the game.", + "explorer": "https://etherscan.io/token/0x34Be5b8C30eE4fDe069DC878989686aBE9884470", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0x34Be5b8C30eE4fDe069DC878989686aBE9884470", + "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/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/logo.png b/blockchains/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/logo.png new file mode 100644 index 00000000..05596aa0 Binary files /dev/null and b/blockchains/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/logo.png differ diff --git a/blockchains/ethereum/assets/0x34D18AAC981D3C93e649814A5ECA79e296411b65/info.json b/blockchains/ethereum/assets/0x34D18AAC981D3C93e649814A5ECA79e296411b65/info.json new file mode 100644 index 00000000..506c0f12 --- /dev/null +++ b/blockchains/ethereum/assets/0x34D18AAC981D3C93e649814A5ECA79e296411b65/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neo Ether", + "symbol": "NEET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x34D18AAC981D3C93e649814A5ECA79e296411b65", + "status": "abandoned", + "id": "0x34D18AAC981D3C93e649814A5ECA79e296411b65" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x34D18AAC981D3C93e649814A5ECA79e296411b65/logo.png b/blockchains/ethereum/assets/0x34D18AAC981D3C93e649814A5ECA79e296411b65/logo.png new file mode 100644 index 00000000..069b3bd0 Binary files /dev/null and b/blockchains/ethereum/assets/0x34D18AAC981D3C93e649814A5ECA79e296411b65/logo.png differ diff --git a/blockchains/ethereum/assets/0x34D6A0F5C2f5D0082141fE73d93B9dd00ca7CE11/info.json b/blockchains/ethereum/assets/0x34D6A0F5C2f5D0082141fE73d93B9dd00ca7CE11/info.json new file mode 100644 index 00000000..7ccf4855 --- /dev/null +++ b/blockchains/ethereum/assets/0x34D6A0F5C2f5D0082141fE73d93B9dd00ca7CE11/info.json @@ -0,0 +1,11 @@ +{ + "name": "GOLDEN TOKEN", + "symbol": "GOLD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://goldentoken.org/", + "explorer": "https://etherscan.io/token/0x34D6A0F5C2f5D0082141fE73d93B9dd00ca7CE11", + "status": "abandoned", + "id": "0x34D6A0F5C2f5D0082141fE73d93B9dd00ca7CE11" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x34D6A0F5C2f5D0082141fE73d93B9dd00ca7CE11/logo.png b/blockchains/ethereum/assets/0x34D6A0F5C2f5D0082141fE73d93B9dd00ca7CE11/logo.png new file mode 100644 index 00000000..41294768 Binary files /dev/null and b/blockchains/ethereum/assets/0x34D6A0F5C2f5D0082141fE73d93B9dd00ca7CE11/logo.png differ diff --git a/blockchains/ethereum/assets/0x34Dd5EDfED51c632d1d4d2502bC901EfB5fdfCD4/info.json b/blockchains/ethereum/assets/0x34Dd5EDfED51c632d1d4d2502bC901EfB5fdfCD4/info.json new file mode 100644 index 00000000..e29f9d0f --- /dev/null +++ b/blockchains/ethereum/assets/0x34Dd5EDfED51c632d1d4d2502bC901EfB5fdfCD4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Juriseum", + "symbol": "JURM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://juriseum.io", + "explorer": "https://etherscan.io/token/0x34Dd5EDfED51c632d1d4d2502bC901EfB5fdfCD4", + "status": "abandoned", + "id": "0x34Dd5EDfED51c632d1d4d2502bC901EfB5fdfCD4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x34Dd5EDfED51c632d1d4d2502bC901EfB5fdfCD4/logo.png b/blockchains/ethereum/assets/0x34Dd5EDfED51c632d1d4d2502bC901EfB5fdfCD4/logo.png new file mode 100644 index 00000000..b7bd487b Binary files /dev/null and b/blockchains/ethereum/assets/0x34Dd5EDfED51c632d1d4d2502bC901EfB5fdfCD4/logo.png differ diff --git a/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/info.json b/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/info.json new file mode 100644 index 00000000..3e174288 --- /dev/null +++ b/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/info.json @@ -0,0 +1,40 @@ +{ + "name": "PulseDogecoin", + "type": "ERC20", + "symbol": "PLSD", + "decimals": 12, + "website": "https://pulsedogecoin.com", + "description": "Meme coins are some of the most widely held cryptocurrencies in the world. PulseDogecoin aims to onboard new users into the PulseChain ecosystem by creating a scarce and strongly held cryptocurrency. Initially, launched on Ethereum PLSD will be copied over to PulseChain at chain launch but will continue thrive on both chains.", + "explorer": "https://etherscan.io/token/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7", + "status": "active", + "id": "0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7", + "links": [ + { + "name": "x", + "url": "https://x.com/PLSDogecoin" + }, + { + "name": "github", + "url": "https://github.com/PulseDogecoin" + }, + { + "name": "telegram", + "url": "https://t.me/PLSDcoin" + }, + { + "name": "whitepaper", + "url": "https://img1.wsimg.com/blobby/go/65de38bc-5845-4557-af8f-e14acf85fbfc/PulseDogecoin%20White%20Paper-PDF.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/pulsedogecoin" + }, + { + "name": "source_code", + "url": "https://github.com/PulseDogecoin/PulseDogecoin-contract/blob/main/Pulsedogecoin.sol" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/logo.png b/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/logo.png new file mode 100644 index 00000000..7b32f2d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/logo.png differ diff --git a/blockchains/ethereum/assets/0x34bfdFF25F0fdA6d3ad0c33F1e06c0D40bD68885/info.json b/blockchains/ethereum/assets/0x34bfdFF25F0fdA6d3ad0c33F1e06c0D40bD68885/info.json new file mode 100644 index 00000000..a36365c7 --- /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 00000000..da6b9392 Binary files /dev/null and b/blockchains/ethereum/assets/0x34bfdFF25F0fdA6d3ad0c33F1e06c0D40bD68885/logo.png differ diff --git a/blockchains/ethereum/assets/0x34f0d846c766874413938994da32360Cf0E4350d/info.json b/blockchains/ethereum/assets/0x34f0d846c766874413938994da32360Cf0E4350d/info.json new file mode 100644 index 00000000..49856693 --- /dev/null +++ b/blockchains/ethereum/assets/0x34f0d846c766874413938994da32360Cf0E4350d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sophon Capital Token", + "symbol": "SAIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.sophoncapital.com/", + "explorer": "https://etherscan.io/token/0x34f0d846c766874413938994da32360Cf0E4350d", + "status": "abandoned", + "id": "0x34f0d846c766874413938994da32360Cf0E4350d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x34f0d846c766874413938994da32360Cf0E4350d/logo.png b/blockchains/ethereum/assets/0x34f0d846c766874413938994da32360Cf0E4350d/logo.png new file mode 100644 index 00000000..ef8d5c02 Binary files /dev/null and b/blockchains/ethereum/assets/0x34f0d846c766874413938994da32360Cf0E4350d/logo.png differ diff --git a/blockchains/ethereum/assets/0x34fcE2C1A2F093F131A9669332C41b49ABE5671F/info.json b/blockchains/ethereum/assets/0x34fcE2C1A2F093F131A9669332C41b49ABE5671F/info.json new file mode 100644 index 00000000..20003dcd --- /dev/null +++ b/blockchains/ethereum/assets/0x34fcE2C1A2F093F131A9669332C41b49ABE5671F/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-26/30M26", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x34fcE2C1A2F093F131A9669332C41b49ABE5671F", + "status": "abandoned", + "id": "0x34fcE2C1A2F093F131A9669332C41b49ABE5671F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x34fcE2C1A2F093F131A9669332C41b49ABE5671F/logo.png b/blockchains/ethereum/assets/0x34fcE2C1A2F093F131A9669332C41b49ABE5671F/logo.png new file mode 100644 index 00000000..8fffa202 Binary files /dev/null and b/blockchains/ethereum/assets/0x34fcE2C1A2F093F131A9669332C41b49ABE5671F/logo.png differ diff --git a/blockchains/ethereum/assets/0x350104dE76bE6be8efE4D1Ff34E231a51BA34973/info.json b/blockchains/ethereum/assets/0x350104dE76bE6be8efE4D1Ff34E231a51BA34973/info.json new file mode 100644 index 00000000..0d2dbd9f --- /dev/null +++ b/blockchains/ethereum/assets/0x350104dE76bE6be8efE4D1Ff34E231a51BA34973/info.json @@ -0,0 +1,11 @@ +{ + "name": "World Bank token", + "symbol": "WBT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "theworldbank.group", + "explorer": "https://etherscan.io/token/0x350104dE76bE6be8efE4D1Ff34E231a51BA34973", + "status": "abandoned", + "id": "0x350104dE76bE6be8efE4D1Ff34E231a51BA34973" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x350104dE76bE6be8efE4D1Ff34E231a51BA34973/logo.png b/blockchains/ethereum/assets/0x350104dE76bE6be8efE4D1Ff34E231a51BA34973/logo.png new file mode 100644 index 00000000..dfbb41f2 Binary files /dev/null and b/blockchains/ethereum/assets/0x350104dE76bE6be8efE4D1Ff34E231a51BA34973/logo.png differ diff --git a/blockchains/ethereum/assets/0x3505F494c3f0fed0B594E01Fa41Dd3967645ca39/info.json b/blockchains/ethereum/assets/0x3505F494c3f0fed0B594E01Fa41Dd3967645ca39/info.json new file mode 100644 index 00000000..d940e300 --- /dev/null +++ b/blockchains/ethereum/assets/0x3505F494c3f0fed0B594E01Fa41Dd3967645ca39/info.json @@ -0,0 +1,11 @@ +{ + "name": "SWARM", + "symbol": "SWM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://swarm.fund", + "explorer": "https://etherscan.io/token/0x3505F494c3f0fed0B594E01Fa41Dd3967645ca39", + "status": "active", + "id": "0x3505F494c3f0fed0B594E01Fa41Dd3967645ca39" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3505F494c3f0fed0B594E01Fa41Dd3967645ca39/logo.png b/blockchains/ethereum/assets/0x3505F494c3f0fed0B594E01Fa41Dd3967645ca39/logo.png new file mode 100644 index 00000000..03e8002a Binary files /dev/null and b/blockchains/ethereum/assets/0x3505F494c3f0fed0B594E01Fa41Dd3967645ca39/logo.png differ diff --git a/blockchains/ethereum/assets/0x3506424F91fD33084466F402d5D97f05F8e3b4AF/info.json b/blockchains/ethereum/assets/0x3506424F91fD33084466F402d5D97f05F8e3b4AF/info.json new file mode 100644 index 00000000..ce34ec00 --- /dev/null +++ b/blockchains/ethereum/assets/0x3506424F91fD33084466F402d5D97f05F8e3b4AF/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://etherscan.io/token/0x3506424F91fD33084466F402d5D97f05F8e3b4AF", + "type": "ERC20", + "symbol": "CHZ", + "decimals": 18, + "status": "active", + "id": "0x3506424F91fD33084466F402d5D97f05F8e3b4AF", + "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/ethereum/assets/0x3506424F91fD33084466F402d5D97f05F8e3b4AF/logo.png b/blockchains/ethereum/assets/0x3506424F91fD33084466F402d5D97f05F8e3b4AF/logo.png new file mode 100644 index 00000000..7db7a458 Binary files /dev/null and b/blockchains/ethereum/assets/0x3506424F91fD33084466F402d5D97f05F8e3b4AF/logo.png differ diff --git a/blockchains/ethereum/assets/0x3514f2C8a12470Ae3410EA51F96f987e9e7018Dd/info.json b/blockchains/ethereum/assets/0x3514f2C8a12470Ae3410EA51F96f987e9e7018Dd/info.json new file mode 100644 index 00000000..b4f4a9ad --- /dev/null +++ b/blockchains/ethereum/assets/0x3514f2C8a12470Ae3410EA51F96f987e9e7018Dd/info.json @@ -0,0 +1,11 @@ +{ + "name": "LYC", + "symbol": "Lycoin", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3514f2C8a12470Ae3410EA51F96f987e9e7018Dd", + "status": "abandoned", + "id": "0x3514f2C8a12470Ae3410EA51F96f987e9e7018Dd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3514f2C8a12470Ae3410EA51F96f987e9e7018Dd/logo.png b/blockchains/ethereum/assets/0x3514f2C8a12470Ae3410EA51F96f987e9e7018Dd/logo.png new file mode 100644 index 00000000..cce4ffec Binary files /dev/null and b/blockchains/ethereum/assets/0x3514f2C8a12470Ae3410EA51F96f987e9e7018Dd/logo.png differ diff --git a/blockchains/ethereum/assets/0x35156b404C3f9bdaf45ab65Ba315419bcDe3775c/info.json b/blockchains/ethereum/assets/0x35156b404C3f9bdaf45ab65Ba315419bcDe3775c/info.json new file mode 100644 index 00000000..fe214660 --- /dev/null +++ b/blockchains/ethereum/assets/0x35156b404C3f9bdaf45ab65Ba315419bcDe3775c/info.json @@ -0,0 +1,47 @@ +{ + "name": "Chihiro Inu", + "type": "ERC20", + "symbol": "CHIRO", + "decimals": 9, + "website": "https://www.chihiro-inu.com", + "description": "CHIRO is Chihiroverse an Integrated Ecosystem of Interactive Gaming.", + "explorer": "https://etherscan.io/token/0x35156b404c3f9bdaf45ab65ba315419bcde3775c", + "status": "active", + "id": "0x35156b404C3f9bdaf45ab65Ba315419bcDe3775c", + "links": [ + { + "name": "x", + "url": "https://x.com/ChihiroInuETH" + }, + { + "name": "discord", + "url": "https://discord.com/invite/CkeppjfPyn" + }, + { + "name": "telegram", + "url": "https://t.me/ChihiroInuETH" + }, + { + "name": "whitepaper", + "url": "https://linktr.ee/chihiroinu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chihiro-inu" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chihiro-inu" + }, + { + "name": "source_code", + "url": "https://etherscan.io/address/0x35156b404c3f9bdaf45ab65ba315419bcde3775c#code" + } + ], + "tags": [ + "gamefi", + "nft", + "deflationary", + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35156b404C3f9bdaf45ab65Ba315419bcDe3775c/logo.png b/blockchains/ethereum/assets/0x35156b404C3f9bdaf45ab65Ba315419bcDe3775c/logo.png new file mode 100644 index 00000000..d6af1930 Binary files /dev/null and b/blockchains/ethereum/assets/0x35156b404C3f9bdaf45ab65Ba315419bcDe3775c/logo.png differ diff --git a/blockchains/ethereum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json b/blockchains/ethereum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json new file mode 100644 index 00000000..87a8b246 --- /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 00000000..4e802b83 Binary files /dev/null and b/blockchains/ethereum/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/logo.png differ diff --git a/blockchains/ethereum/assets/0x35242Ed010d80F39643982d0216D7CA7AD1FA841/info.json b/blockchains/ethereum/assets/0x35242Ed010d80F39643982d0216D7CA7AD1FA841/info.json new file mode 100644 index 00000000..11ec4b0a --- /dev/null +++ b/blockchains/ethereum/assets/0x35242Ed010d80F39643982d0216D7CA7AD1FA841/info.json @@ -0,0 +1,11 @@ +{ + "name": "Slonigiraf Token", + "symbol": "SLON", + "type": "ERC20", + "decimals": 18, + "description": "Exchange skills while learning and teaching.", + "website": "https://www.slonigiraf.org/", + "explorer": "https://etherscan.io/token/0x35242Ed010d80F39643982d0216D7CA7AD1FA841", + "status": "active", + "id": "0x35242Ed010d80F39643982d0216D7CA7AD1FA841" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35242Ed010d80F39643982d0216D7CA7AD1FA841/logo.png b/blockchains/ethereum/assets/0x35242Ed010d80F39643982d0216D7CA7AD1FA841/logo.png new file mode 100644 index 00000000..709eac37 Binary files /dev/null and b/blockchains/ethereum/assets/0x35242Ed010d80F39643982d0216D7CA7AD1FA841/logo.png differ diff --git a/blockchains/ethereum/assets/0x352563e90520F867cC2B7F42DC4B628C37996Eca/info.json b/blockchains/ethereum/assets/0x352563e90520F867cC2B7F42DC4B628C37996Eca/info.json new file mode 100644 index 00000000..69547257 --- /dev/null +++ b/blockchains/ethereum/assets/0x352563e90520F867cC2B7F42DC4B628C37996Eca/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 235-CN46", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x352563e90520F867cC2B7F42DC4B628C37996Eca", + "status": "abandoned", + "id": "0x352563e90520F867cC2B7F42DC4B628C37996Eca" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x352563e90520F867cC2B7F42DC4B628C37996Eca/logo.png b/blockchains/ethereum/assets/0x352563e90520F867cC2B7F42DC4B628C37996Eca/logo.png new file mode 100644 index 00000000..d5d81274 Binary files /dev/null and b/blockchains/ethereum/assets/0x352563e90520F867cC2B7F42DC4B628C37996Eca/logo.png differ diff --git a/blockchains/ethereum/assets/0x352CFed33922fA8D34fcb8eb58525a60cA6821FC/info.json b/blockchains/ethereum/assets/0x352CFed33922fA8D34fcb8eb58525a60cA6821FC/info.json new file mode 100644 index 00000000..d92c6b97 --- /dev/null +++ b/blockchains/ethereum/assets/0x352CFed33922fA8D34fcb8eb58525a60cA6821FC/info.json @@ -0,0 +1,11 @@ +{ + "name": "AUDION GAMING TOKEN", + "symbol": "AGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x352CFed33922fA8D34fcb8eb58525a60cA6821FC", + "status": "abandoned", + "id": "0x352CFed33922fA8D34fcb8eb58525a60cA6821FC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x352CFed33922fA8D34fcb8eb58525a60cA6821FC/logo.png b/blockchains/ethereum/assets/0x352CFed33922fA8D34fcb8eb58525a60cA6821FC/logo.png new file mode 100644 index 00000000..232f701f Binary files /dev/null and b/blockchains/ethereum/assets/0x352CFed33922fA8D34fcb8eb58525a60cA6821FC/logo.png differ diff --git a/blockchains/ethereum/assets/0x35334C8D87A398E376cB98c792513cbd85B27eb2/info.json b/blockchains/ethereum/assets/0x35334C8D87A398E376cB98c792513cbd85B27eb2/info.json new file mode 100644 index 00000000..8d1d4ba6 --- /dev/null +++ b/blockchains/ethereum/assets/0x35334C8D87A398E376cB98c792513cbd85B27eb2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitoken", + "symbol": "BTK", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x35334C8D87A398E376cB98c792513cbd85B27eb2", + "status": "abandoned", + "id": "0x35334C8D87A398E376cB98c792513cbd85B27eb2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35334C8D87A398E376cB98c792513cbd85B27eb2/logo.png b/blockchains/ethereum/assets/0x35334C8D87A398E376cB98c792513cbd85B27eb2/logo.png new file mode 100755 index 00000000..e9a71af5 Binary files /dev/null and b/blockchains/ethereum/assets/0x35334C8D87A398E376cB98c792513cbd85B27eb2/logo.png differ diff --git a/blockchains/ethereum/assets/0x353cAFd02131CA5b69211BBc3899f556BC62B7E3/info.json b/blockchains/ethereum/assets/0x353cAFd02131CA5b69211BBc3899f556BC62B7E3/info.json new file mode 100644 index 00000000..c1e35045 --- /dev/null +++ b/blockchains/ethereum/assets/0x353cAFd02131CA5b69211BBc3899f556BC62B7E3/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitEDU", + "symbol": "BEU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x353cAFd02131CA5b69211BBc3899f556BC62B7E3", + "status": "abandoned", + "id": "0x353cAFd02131CA5b69211BBc3899f556BC62B7E3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x353cAFd02131CA5b69211BBc3899f556BC62B7E3/logo.png b/blockchains/ethereum/assets/0x353cAFd02131CA5b69211BBc3899f556BC62B7E3/logo.png new file mode 100755 index 00000000..affae45a Binary files /dev/null and b/blockchains/ethereum/assets/0x353cAFd02131CA5b69211BBc3899f556BC62B7E3/logo.png differ diff --git a/blockchains/ethereum/assets/0x3543638eD4a9006E4840B105944271Bcea15605D/info.json b/blockchains/ethereum/assets/0x3543638eD4a9006E4840B105944271Bcea15605D/info.json new file mode 100644 index 00000000..baff1af2 --- /dev/null +++ b/blockchains/ethereum/assets/0x3543638eD4a9006E4840B105944271Bcea15605D/info.json @@ -0,0 +1,11 @@ +{ + "name": "UNetworkToken", + "symbol": "UUU", + "type": "ERC20", + "decimals": 18, + "description": "U Network describes itself as a decentralized content asset storage, notarization, distribution, publishing, and valuation network.", + "website": "https://u.network/", + "explorer": "https://etherscan.io/token/0x3543638eD4a9006E4840B105944271Bcea15605D", + "status": "active", + "id": "0x3543638eD4a9006E4840B105944271Bcea15605D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3543638eD4a9006E4840B105944271Bcea15605D/logo.png b/blockchains/ethereum/assets/0x3543638eD4a9006E4840B105944271Bcea15605D/logo.png new file mode 100644 index 00000000..e05200ad Binary files /dev/null and b/blockchains/ethereum/assets/0x3543638eD4a9006E4840B105944271Bcea15605D/logo.png differ diff --git a/blockchains/ethereum/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json b/blockchains/ethereum/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json new file mode 100644 index 00000000..e1ff0ced --- /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 00000000..1b179f11 Binary files /dev/null and b/blockchains/ethereum/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/logo.png differ diff --git a/blockchains/ethereum/assets/0x3559F3724432f0dCA7255E8147bdC9d8B938E848/info.json b/blockchains/ethereum/assets/0x3559F3724432f0dCA7255E8147bdC9d8B938E848/info.json new file mode 100644 index 00000000..3ac45cb6 --- /dev/null +++ b/blockchains/ethereum/assets/0x3559F3724432f0dCA7255E8147bdC9d8B938E848/info.json @@ -0,0 +1,11 @@ +{ + "name": "DTH", + "symbol": "DINESHTECH", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3559F3724432f0dCA7255E8147bdC9d8B938E848", + "status": "abandoned", + "id": "0x3559F3724432f0dCA7255E8147bdC9d8B938E848" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3559F3724432f0dCA7255E8147bdC9d8B938E848/logo.png b/blockchains/ethereum/assets/0x3559F3724432f0dCA7255E8147bdC9d8B938E848/logo.png new file mode 100644 index 00000000..fd7b9846 Binary files /dev/null and b/blockchains/ethereum/assets/0x3559F3724432f0dCA7255E8147bdC9d8B938E848/logo.png differ diff --git a/blockchains/ethereum/assets/0x355C665e101B9DA58704A8fDDb5FeeF210eF20c0/info.json b/blockchains/ethereum/assets/0x355C665e101B9DA58704A8fDDb5FeeF210eF20c0/info.json new file mode 100644 index 00000000..7907adea --- /dev/null +++ b/blockchains/ethereum/assets/0x355C665e101B9DA58704A8fDDb5FeeF210eF20c0/info.json @@ -0,0 +1,11 @@ +{ + "name": "dForce", + "symbol": "GOLDx", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://goldx.dforce.network/", + "explorer": "https://etherscan.io/token/0x355C665e101B9DA58704A8fDDb5FeeF210eF20c0", + "status": "abandoned", + "id": "0x355C665e101B9DA58704A8fDDb5FeeF210eF20c0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x355C665e101B9DA58704A8fDDb5FeeF210eF20c0/logo.png b/blockchains/ethereum/assets/0x355C665e101B9DA58704A8fDDb5FeeF210eF20c0/logo.png new file mode 100644 index 00000000..6137d421 Binary files /dev/null and b/blockchains/ethereum/assets/0x355C665e101B9DA58704A8fDDb5FeeF210eF20c0/logo.png differ diff --git a/blockchains/ethereum/assets/0x355a458d555151D3B27F94227960Ade1504E526a/info.json b/blockchains/ethereum/assets/0x355a458d555151D3B27F94227960Ade1504E526a/info.json new file mode 100644 index 00000000..3b587f9a --- /dev/null +++ b/blockchains/ethereum/assets/0x355a458d555151D3B27F94227960Ade1504E526a/info.json @@ -0,0 +1,11 @@ +{ + "name": "StockChain Coin", + "symbol": "SCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://stockchain.co/", + "explorer": "https://etherscan.io/token/0x355a458d555151D3B27F94227960Ade1504E526a", + "status": "abandoned", + "id": "0x355a458d555151D3B27F94227960Ade1504E526a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x355a458d555151D3B27F94227960Ade1504E526a/logo.png b/blockchains/ethereum/assets/0x355a458d555151D3B27F94227960Ade1504E526a/logo.png new file mode 100644 index 00000000..ba70e74d Binary files /dev/null and b/blockchains/ethereum/assets/0x355a458d555151D3B27F94227960Ade1504E526a/logo.png differ diff --git a/blockchains/ethereum/assets/0x35612a781721944118ef90353554bc6c1cD51e24/info.json b/blockchains/ethereum/assets/0x35612a781721944118ef90353554bc6c1cD51e24/info.json new file mode 100644 index 00000000..a10001f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x35612a781721944118ef90353554bc6c1cD51e24/info.json @@ -0,0 +1,11 @@ +{ + "name": "trip token", + "symbol": "TRIP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x35612a781721944118ef90353554bc6c1cD51e24", + "status": "abandoned", + "id": "0x35612a781721944118ef90353554bc6c1cD51e24" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35612a781721944118ef90353554bc6c1cD51e24/logo.png b/blockchains/ethereum/assets/0x35612a781721944118ef90353554bc6c1cD51e24/logo.png new file mode 100644 index 00000000..8c91c0dc Binary files /dev/null and b/blockchains/ethereum/assets/0x35612a781721944118ef90353554bc6c1cD51e24/logo.png differ diff --git a/blockchains/ethereum/assets/0x3564ad35b9E95340E5Ace2D6251dbfC76098669B/info.json b/blockchains/ethereum/assets/0x3564ad35b9E95340E5Ace2D6251dbfC76098669B/info.json new file mode 100644 index 00000000..7cc65fa4 --- /dev/null +++ b/blockchains/ethereum/assets/0x3564ad35b9E95340E5Ace2D6251dbfC76098669B/info.json @@ -0,0 +1,11 @@ +{ + "name": "DMM: USDC", + "symbol": "mUSDC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3564ad35b9E95340E5Ace2D6251dbfC76098669B", + "status": "abandoned", + "id": "0x3564ad35b9E95340E5Ace2D6251dbfC76098669B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3564ad35b9E95340E5Ace2D6251dbfC76098669B/logo.png b/blockchains/ethereum/assets/0x3564ad35b9E95340E5Ace2D6251dbfC76098669B/logo.png new file mode 100644 index 00000000..b96a47a9 Binary files /dev/null and b/blockchains/ethereum/assets/0x3564ad35b9E95340E5Ace2D6251dbfC76098669B/logo.png differ diff --git a/blockchains/ethereum/assets/0x3565402f2936D3284264F03615D065803330E392/info.json b/blockchains/ethereum/assets/0x3565402f2936D3284264F03615D065803330E392/info.json new file mode 100644 index 00000000..3e1ad9ab --- /dev/null +++ b/blockchains/ethereum/assets/0x3565402f2936D3284264F03615D065803330E392/info.json @@ -0,0 +1,11 @@ +{ + "name": "CandysAirdrop", + "symbol": "CSAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3565402f2936D3284264F03615D065803330E392", + "status": "abandoned", + "id": "0x3565402f2936D3284264F03615D065803330E392" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3565402f2936D3284264F03615D065803330E392/logo.png b/blockchains/ethereum/assets/0x3565402f2936D3284264F03615D065803330E392/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x3565402f2936D3284264F03615D065803330E392/logo.png differ diff --git a/blockchains/ethereum/assets/0x3567aa22cd3ab9aEf23d7e18EE0D7cf16974d7e6/info.json b/blockchains/ethereum/assets/0x3567aa22cd3ab9aEf23d7e18EE0D7cf16974d7e6/info.json new file mode 100644 index 00000000..cef00ec4 --- /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 00000000..24536a4a Binary files /dev/null and b/blockchains/ethereum/assets/0x3567aa22cd3ab9aEf23d7e18EE0D7cf16974d7e6/logo.png differ diff --git a/blockchains/ethereum/assets/0x357aAc74D5Fc24f271E5652Ec6Bdd8AbfE048505/info.json b/blockchains/ethereum/assets/0x357aAc74D5Fc24f271E5652Ec6Bdd8AbfE048505/info.json new file mode 100644 index 00000000..fc8d743f --- /dev/null +++ b/blockchains/ethereum/assets/0x357aAc74D5Fc24f271E5652Ec6Bdd8AbfE048505/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinCircle", + "symbol": "ZIB", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x357aAc74D5Fc24f271E5652Ec6Bdd8AbfE048505", + "status": "abandoned", + "id": "0x357aAc74D5Fc24f271E5652Ec6Bdd8AbfE048505" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x357aAc74D5Fc24f271E5652Ec6Bdd8AbfE048505/logo.png b/blockchains/ethereum/assets/0x357aAc74D5Fc24f271E5652Ec6Bdd8AbfE048505/logo.png new file mode 100644 index 00000000..2b9ab89a Binary files /dev/null and b/blockchains/ethereum/assets/0x357aAc74D5Fc24f271E5652Ec6Bdd8AbfE048505/logo.png differ diff --git a/blockchains/ethereum/assets/0x35840c161E1F677AEfb6cFF534fd8C5C93Af4824/info.json b/blockchains/ethereum/assets/0x35840c161E1F677AEfb6cFF534fd8C5C93Af4824/info.json new file mode 100644 index 00000000..13413f34 --- /dev/null +++ b/blockchains/ethereum/assets/0x35840c161E1F677AEfb6cFF534fd8C5C93Af4824/info.json @@ -0,0 +1,11 @@ +{ + "name": "VESA", + "symbol": "VESA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x35840c161E1F677AEfb6cFF534fd8C5C93Af4824", + "status": "abandoned", + "id": "0x35840c161E1F677AEfb6cFF534fd8C5C93Af4824" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35840c161E1F677AEfb6cFF534fd8C5C93Af4824/logo.png b/blockchains/ethereum/assets/0x35840c161E1F677AEfb6cFF534fd8C5C93Af4824/logo.png new file mode 100644 index 00000000..8677678e Binary files /dev/null and b/blockchains/ethereum/assets/0x35840c161E1F677AEfb6cFF534fd8C5C93Af4824/logo.png differ diff --git a/blockchains/ethereum/assets/0x35872fea6A4843fACBCDbCe99e3B69596A3680b8/info.json b/blockchains/ethereum/assets/0x35872fea6A4843fACBCDbCe99e3B69596A3680b8/info.json new file mode 100644 index 00000000..18ce1f0f --- /dev/null +++ b/blockchains/ethereum/assets/0x35872fea6A4843fACBCDbCe99e3B69596A3680b8/info.json @@ -0,0 +1,11 @@ +{ + "name": "1337", + "symbol": "1337", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x35872fea6A4843fACBCDbCe99e3B69596A3680b8", + "status": "abandoned", + "id": "0x35872fea6A4843fACBCDbCe99e3B69596A3680b8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35872fea6A4843fACBCDbCe99e3B69596A3680b8/logo.png b/blockchains/ethereum/assets/0x35872fea6A4843fACBCDbCe99e3B69596A3680b8/logo.png new file mode 100644 index 00000000..069e36f2 Binary files /dev/null and b/blockchains/ethereum/assets/0x35872fea6A4843fACBCDbCe99e3B69596A3680b8/logo.png differ diff --git a/blockchains/ethereum/assets/0x358AA737e033F34df7c54306960a38d09AaBd523/info.json b/blockchains/ethereum/assets/0x358AA737e033F34df7c54306960a38d09AaBd523/info.json new file mode 100644 index 00000000..b9bc7fe1 --- /dev/null +++ b/blockchains/ethereum/assets/0x358AA737e033F34df7c54306960a38d09AaBd523/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ares Protocol", + "type": "ERC20", + "symbol": "ARES", + "decimals": 18, + "website": "https://www.aresprotocol.io/", + "description": "A chain-verified decentralized cross-chain oracle service protocol to provide secure and reliable data services for the interconnection of the chain and the digital economy.", + "explorer": "https://etherscan.io/token/0x358AA737e033F34df7c54306960a38d09AaBd523", + "status": "active", + "id": "0x358AA737e033F34df7c54306960a38d09AaBd523", + "links": [ + { + "name": "x", + "url": "https://x.com/AresProtocolLab" + }, + { + "name": "telegram", + "url": "https://t.me/aresprotocolLab" + }, + { + "name": "medium", + "url": "https://aresprotocollab.medium.com" + }, + { + "name": "discord", + "url": "https://discord.com/invite/MKE4yX4h" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x358AA737e033F34df7c54306960a38d09AaBd523/logo.png b/blockchains/ethereum/assets/0x358AA737e033F34df7c54306960a38d09AaBd523/logo.png new file mode 100644 index 00000000..ad9c92c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x358AA737e033F34df7c54306960a38d09AaBd523/logo.png differ diff --git a/blockchains/ethereum/assets/0x358B2f19BcBad11e1E076247df5552C2A5f0272C/info.json b/blockchains/ethereum/assets/0x358B2f19BcBad11e1E076247df5552C2A5f0272C/info.json new file mode 100644 index 00000000..ad7787df --- /dev/null +++ b/blockchains/ethereum/assets/0x358B2f19BcBad11e1E076247df5552C2A5f0272C/info.json @@ -0,0 +1,11 @@ +{ + "name": "ELLUI", + "symbol": "ELU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x358B2f19BcBad11e1E076247df5552C2A5f0272C", + "status": "abandoned", + "id": "0x358B2f19BcBad11e1E076247df5552C2A5f0272C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x358B2f19BcBad11e1E076247df5552C2A5f0272C/logo.png b/blockchains/ethereum/assets/0x358B2f19BcBad11e1E076247df5552C2A5f0272C/logo.png new file mode 100644 index 00000000..9a517d86 Binary files /dev/null and b/blockchains/ethereum/assets/0x358B2f19BcBad11e1E076247df5552C2A5f0272C/logo.png differ diff --git a/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/info.json b/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/info.json new file mode 100644 index 00000000..ed44ae1c --- /dev/null +++ b/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/info.json @@ -0,0 +1,37 @@ +{ + "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", + "research": "", + "type": "ERC20", + "symbol": "OM", + "decimals": 18, + "status": "active", + "id": "0x3593D125a4f7849a1B059E64F4517A86Dd60c95d", + "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/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png b/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png new file mode 100644 index 00000000..2c15abc9 Binary files /dev/null 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 00000000..64bcb773 --- /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 00000000..e23c036f Binary files /dev/null and b/blockchains/ethereum/assets/0x3595e426A7808E2482667eE4E453ef280fbB9cF4/logo.png differ diff --git a/blockchains/ethereum/assets/0x3597bfD533a99c9aa083587B074434E61Eb0A258/info.json b/blockchains/ethereum/assets/0x3597bfD533a99c9aa083587B074434E61Eb0A258/info.json new file mode 100644 index 00000000..3dc545a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x3597bfD533a99c9aa083587B074434E61Eb0A258/info.json @@ -0,0 +1,11 @@ +{ + "name": "DENT", + "symbol": "DENT", + "type": "ERC20", + "decimals": 8, + "description": "Creating a world-wide marketplace on Ethereum Blockchain to sell and buy Mobile Data with DENT Tokens.", + "website": "https://www.dentwireless.com", + "explorer": "https://etherscan.io/token/0x3597bfD533a99c9aa083587B074434E61Eb0A258", + "status": "active", + "id": "0x3597bfD533a99c9aa083587B074434E61Eb0A258" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3597bfD533a99c9aa083587B074434E61Eb0A258/logo.png b/blockchains/ethereum/assets/0x3597bfD533a99c9aa083587B074434E61Eb0A258/logo.png new file mode 100644 index 00000000..de176eb5 Binary files /dev/null and b/blockchains/ethereum/assets/0x3597bfD533a99c9aa083587B074434E61Eb0A258/logo.png differ diff --git a/blockchains/ethereum/assets/0x35B420e41e5b8F4BEEbD2666B47B1CB6f508Af3b/info.json b/blockchains/ethereum/assets/0x35B420e41e5b8F4BEEbD2666B47B1CB6f508Af3b/info.json new file mode 100644 index 00000000..6e3e6095 --- /dev/null +++ b/blockchains/ethereum/assets/0x35B420e41e5b8F4BEEbD2666B47B1CB6f508Af3b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zeaci", + "symbol": "Zai", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x35B420e41e5b8F4BEEbD2666B47B1CB6f508Af3b", + "status": "abandoned", + "id": "0x35B420e41e5b8F4BEEbD2666B47B1CB6f508Af3b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35B420e41e5b8F4BEEbD2666B47B1CB6f508Af3b/logo.png b/blockchains/ethereum/assets/0x35B420e41e5b8F4BEEbD2666B47B1CB6f508Af3b/logo.png new file mode 100644 index 00000000..2d1065cf Binary files /dev/null and b/blockchains/ethereum/assets/0x35B420e41e5b8F4BEEbD2666B47B1CB6f508Af3b/logo.png differ diff --git a/blockchains/ethereum/assets/0x35C896b1700E344a81B95b6bC1D4d95b4503699c/info.json b/blockchains/ethereum/assets/0x35C896b1700E344a81B95b6bC1D4d95b4503699c/info.json new file mode 100644 index 00000000..6adab72c --- /dev/null +++ b/blockchains/ethereum/assets/0x35C896b1700E344a81B95b6bC1D4d95b4503699c/info.json @@ -0,0 +1,11 @@ +{ + "name": "PokerSports Token", + "symbol": "XPST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x35C896b1700E344a81B95b6bC1D4d95b4503699c", + "status": "abandoned", + "id": "0x35C896b1700E344a81B95b6bC1D4d95b4503699c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35C896b1700E344a81B95b6bC1D4d95b4503699c/logo.png b/blockchains/ethereum/assets/0x35C896b1700E344a81B95b6bC1D4d95b4503699c/logo.png new file mode 100755 index 00000000..db128eef Binary files /dev/null and b/blockchains/ethereum/assets/0x35C896b1700E344a81B95b6bC1D4d95b4503699c/logo.png differ diff --git a/blockchains/ethereum/assets/0x35F82CAa11C2459E179Bc8102cCE439D77C8Ef25/info.json b/blockchains/ethereum/assets/0x35F82CAa11C2459E179Bc8102cCE439D77C8Ef25/info.json new file mode 100644 index 00000000..233d78fe --- /dev/null +++ b/blockchains/ethereum/assets/0x35F82CAa11C2459E179Bc8102cCE439D77C8Ef25/info.json @@ -0,0 +1,11 @@ +{ + "name": "Friendcoin007", + "symbol": "FC007", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.friend007.com/", + "explorer": "https://etherscan.io/token/0x35F82CAa11C2459E179Bc8102cCE439D77C8Ef25", + "status": "abandoned", + "id": "0x35F82CAa11C2459E179Bc8102cCE439D77C8Ef25" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35F82CAa11C2459E179Bc8102cCE439D77C8Ef25/logo.png b/blockchains/ethereum/assets/0x35F82CAa11C2459E179Bc8102cCE439D77C8Ef25/logo.png new file mode 100644 index 00000000..aab0e10d Binary files /dev/null and b/blockchains/ethereum/assets/0x35F82CAa11C2459E179Bc8102cCE439D77C8Ef25/logo.png differ diff --git a/blockchains/ethereum/assets/0x35a5cB585d51D836922b78A9bb1f5c04635c39b6/info.json b/blockchains/ethereum/assets/0x35a5cB585d51D836922b78A9bb1f5c04635c39b6/info.json new file mode 100644 index 00000000..bcb65198 --- /dev/null +++ b/blockchains/ethereum/assets/0x35a5cB585d51D836922b78A9bb1f5c04635c39b6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decimated Token", + "symbol": "DIO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.decimated.net/", + "explorer": "https://etherscan.io/token/0x35a5cB585d51D836922b78A9bb1f5c04635c39b6", + "status": "abandoned", + "id": "0x35a5cB585d51D836922b78A9bb1f5c04635c39b6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35a5cB585d51D836922b78A9bb1f5c04635c39b6/logo.png b/blockchains/ethereum/assets/0x35a5cB585d51D836922b78A9bb1f5c04635c39b6/logo.png new file mode 100644 index 00000000..2bebf685 Binary files /dev/null and b/blockchains/ethereum/assets/0x35a5cB585d51D836922b78A9bb1f5c04635c39b6/logo.png differ diff --git a/blockchains/ethereum/assets/0x35a69642857083BA2F30bfaB735dacC7F0bac969/info.json b/blockchains/ethereum/assets/0x35a69642857083BA2F30bfaB735dacC7F0bac969/info.json new file mode 100644 index 00000000..ff420cd7 --- /dev/null +++ b/blockchains/ethereum/assets/0x35a69642857083BA2F30bfaB735dacC7F0bac969/info.json @@ -0,0 +1,11 @@ +{ + "name": "BBNToken", + "symbol": "BBN", + "type": "ERC20", + "decimals": 18, + "description": "Banyan Network is a fusion of big data network based on blockchain technology called Data Fusion Value Chain Network (DVN).", + "website": "https://www.banyanbbt.org/", + "explorer": "https://etherscan.io/token/0x35a69642857083BA2F30bfaB735dacC7F0bac969", + "status": "active", + "id": "0x35a69642857083BA2F30bfaB735dacC7F0bac969" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35a69642857083BA2F30bfaB735dacC7F0bac969/logo.png b/blockchains/ethereum/assets/0x35a69642857083BA2F30bfaB735dacC7F0bac969/logo.png new file mode 100644 index 00000000..71ac54a6 Binary files /dev/null and b/blockchains/ethereum/assets/0x35a69642857083BA2F30bfaB735dacC7F0bac969/logo.png differ diff --git a/blockchains/ethereum/assets/0x35b08722AA26bE119c1608029CcbC976ac5C1082/info.json b/blockchains/ethereum/assets/0x35b08722AA26bE119c1608029CcbC976ac5C1082/info.json new file mode 100644 index 00000000..8e3f653f --- /dev/null +++ b/blockchains/ethereum/assets/0x35b08722AA26bE119c1608029CcbC976ac5C1082/info.json @@ -0,0 +1,11 @@ +{ + "name": "EminerToken", + "symbol": "EM", + "type": "ERC20", + "decimals": 8, + "description": "Eminer aims to build a platform that integrates hash rate services, financial services, and information services.", + "website": "https://eminer.pro", + "explorer": "https://etherscan.io/token/0x35b08722AA26bE119c1608029CcbC976ac5C1082", + "status": "active", + "id": "0x35b08722AA26bE119c1608029CcbC976ac5C1082" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35b08722AA26bE119c1608029CcbC976ac5C1082/logo.png b/blockchains/ethereum/assets/0x35b08722AA26bE119c1608029CcbC976ac5C1082/logo.png new file mode 100644 index 00000000..c6327dc1 Binary files /dev/null and b/blockchains/ethereum/assets/0x35b08722AA26bE119c1608029CcbC976ac5C1082/logo.png differ diff --git a/blockchains/ethereum/assets/0x35bD01FC9d6D5D81CA9E055Db88Dc49aa2c699A8/info.json b/blockchains/ethereum/assets/0x35bD01FC9d6D5D81CA9E055Db88Dc49aa2c699A8/info.json new file mode 100644 index 00000000..04630e2e --- /dev/null +++ b/blockchains/ethereum/assets/0x35bD01FC9d6D5D81CA9E055Db88Dc49aa2c699A8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Friends with Benefits", + "website": "https://fwb.help", + "description": "FWB is a Private Discord channel filled with our favorite thinkers, creatives, rebels, and doers.", + "explorer": "https://etherscan.io/token/0x35bd01fc9d6d5d81ca9e055db88dc49aa2c699a8", + "type": "ERC20", + "symbol": "FWB", + "decimals": 18, + "status": "active", + "id": "0x35bD01FC9d6D5D81CA9E055Db88Dc49aa2c699A8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35bD01FC9d6D5D81CA9E055Db88Dc49aa2c699A8/logo.png b/blockchains/ethereum/assets/0x35bD01FC9d6D5D81CA9E055Db88Dc49aa2c699A8/logo.png new file mode 100644 index 00000000..8e7d3209 Binary files /dev/null and b/blockchains/ethereum/assets/0x35bD01FC9d6D5D81CA9E055Db88Dc49aa2c699A8/logo.png differ diff --git a/blockchains/ethereum/assets/0x35dF7c5fB0Df360a6C9d26bC53b97C5f082b6A1C/info.json b/blockchains/ethereum/assets/0x35dF7c5fB0Df360a6C9d26bC53b97C5f082b6A1C/info.json new file mode 100644 index 00000000..47771db3 --- /dev/null +++ b/blockchains/ethereum/assets/0x35dF7c5fB0Df360a6C9d26bC53b97C5f082b6A1C/info.json @@ -0,0 +1,11 @@ +{ + "name": "EcoFi Genesis Token", + "symbol": "EGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x35dF7c5fB0Df360a6C9d26bC53b97C5f082b6A1C", + "status": "abandoned", + "id": "0x35dF7c5fB0Df360a6C9d26bC53b97C5f082b6A1C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35dF7c5fB0Df360a6C9d26bC53b97C5f082b6A1C/logo.png b/blockchains/ethereum/assets/0x35dF7c5fB0Df360a6C9d26bC53b97C5f082b6A1C/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x35dF7c5fB0Df360a6C9d26bC53b97C5f082b6A1C/logo.png differ diff --git a/blockchains/ethereum/assets/0x35e308668391dAaB398FFc0e60D13d65c7793fEd/info.json b/blockchains/ethereum/assets/0x35e308668391dAaB398FFc0e60D13d65c7793fEd/info.json new file mode 100644 index 00000000..39eeddd1 --- /dev/null +++ b/blockchains/ethereum/assets/0x35e308668391dAaB398FFc0e60D13d65c7793fEd/info.json @@ -0,0 +1,11 @@ +{ + "name": "HEALTH CHAIN", + "symbol": "HTHC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x35e308668391dAaB398FFc0e60D13d65c7793fEd", + "status": "abandoned", + "id": "0x35e308668391dAaB398FFc0e60D13d65c7793fEd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35e308668391dAaB398FFc0e60D13d65c7793fEd/logo.png b/blockchains/ethereum/assets/0x35e308668391dAaB398FFc0e60D13d65c7793fEd/logo.png new file mode 100644 index 00000000..41e3260e Binary files /dev/null and b/blockchains/ethereum/assets/0x35e308668391dAaB398FFc0e60D13d65c7793fEd/logo.png differ diff --git a/blockchains/ethereum/assets/0x35f6B052C598d933D69A4EEC4D04c73A191fE6c2/info.json b/blockchains/ethereum/assets/0x35f6B052C598d933D69A4EEC4D04c73A191fE6c2/info.json new file mode 100644 index 00000000..c9d826b1 --- /dev/null +++ b/blockchains/ethereum/assets/0x35f6B052C598d933D69A4EEC4D04c73A191fE6c2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave SNX", + "symbol": "aSNX", + "type": "ERC20", + "decimals": 18, + "description": "Aave SNX is an interest bearing token pegged 1:1 to the underlying SNX deposited in Aave. aSNX accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x35f6B052C598d933D69A4EEC4D04c73A191fE6c2", + "status": "active", + "id": "0x35f6B052C598d933D69A4EEC4D04c73A191fE6c2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35f6B052C598d933D69A4EEC4D04c73A191fE6c2/logo.png b/blockchains/ethereum/assets/0x35f6B052C598d933D69A4EEC4D04c73A191fE6c2/logo.png new file mode 100644 index 00000000..229051c7 Binary files /dev/null and b/blockchains/ethereum/assets/0x35f6B052C598d933D69A4EEC4D04c73A191fE6c2/logo.png differ diff --git a/blockchains/ethereum/assets/0x35fe0fA49a1A18cBe3844E2f9913f2e9e2db6B0b/info.json b/blockchains/ethereum/assets/0x35fe0fA49a1A18cBe3844E2f9913f2e9e2db6B0b/info.json new file mode 100644 index 00000000..b2582696 --- /dev/null +++ b/blockchains/ethereum/assets/0x35fe0fA49a1A18cBe3844E2f9913f2e9e2db6B0b/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoneyTree", + "symbol": "MYT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x35fe0fA49a1A18cBe3844E2f9913f2e9e2db6B0b", + "status": "abandoned", + "id": "0x35fe0fA49a1A18cBe3844E2f9913f2e9e2db6B0b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x35fe0fA49a1A18cBe3844E2f9913f2e9e2db6B0b/logo.png b/blockchains/ethereum/assets/0x35fe0fA49a1A18cBe3844E2f9913f2e9e2db6B0b/logo.png new file mode 100644 index 00000000..f196005f Binary files /dev/null and b/blockchains/ethereum/assets/0x35fe0fA49a1A18cBe3844E2f9913f2e9e2db6B0b/logo.png differ diff --git a/blockchains/ethereum/assets/0x3600F7a4ff5E72eb2E4591F8B0B4311E86168DF2/info.json b/blockchains/ethereum/assets/0x3600F7a4ff5E72eb2E4591F8B0B4311E86168DF2/info.json new file mode 100644 index 00000000..d6ebed89 --- /dev/null +++ b/blockchains/ethereum/assets/0x3600F7a4ff5E72eb2E4591F8B0B4311E86168DF2/info.json @@ -0,0 +1,11 @@ +{ + "name": "RubyCloud", + "symbol": "RCD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3600F7a4ff5E72eb2E4591F8B0B4311E86168DF2", + "status": "abandoned", + "id": "0x3600F7a4ff5E72eb2E4591F8B0B4311E86168DF2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3600F7a4ff5E72eb2E4591F8B0B4311E86168DF2/logo.png b/blockchains/ethereum/assets/0x3600F7a4ff5E72eb2E4591F8B0B4311E86168DF2/logo.png new file mode 100644 index 00000000..c4ba0b29 Binary files /dev/null and b/blockchains/ethereum/assets/0x3600F7a4ff5E72eb2E4591F8B0B4311E86168DF2/logo.png differ diff --git a/blockchains/ethereum/assets/0x3614b88B52a8de9De4473289CdC793C42343907d/info.json b/blockchains/ethereum/assets/0x3614b88B52a8de9De4473289CdC793C42343907d/info.json new file mode 100644 index 00000000..78a171ee --- /dev/null +++ b/blockchains/ethereum/assets/0x3614b88B52a8de9De4473289CdC793C42343907d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dayton Network", + "symbol": "DYN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3614b88B52a8de9De4473289CdC793C42343907d", + "status": "abandoned", + "id": "0x3614b88B52a8de9De4473289CdC793C42343907d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3614b88B52a8de9De4473289CdC793C42343907d/logo.png b/blockchains/ethereum/assets/0x3614b88B52a8de9De4473289CdC793C42343907d/logo.png new file mode 100644 index 00000000..cd9a4597 Binary files /dev/null and b/blockchains/ethereum/assets/0x3614b88B52a8de9De4473289CdC793C42343907d/logo.png differ diff --git a/blockchains/ethereum/assets/0x36151737B45017234E9570Cf9a1cAc97138953C2/info.json b/blockchains/ethereum/assets/0x36151737B45017234E9570Cf9a1cAc97138953C2/info.json new file mode 100644 index 00000000..e457f063 --- /dev/null +++ b/blockchains/ethereum/assets/0x36151737B45017234E9570Cf9a1cAc97138953C2/info.json @@ -0,0 +1,11 @@ +{ + "name": "NOIZ", + "symbol": "NOIZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://noizchain.com/", + "explorer": "https://etherscan.io/token/0x36151737B45017234E9570Cf9a1cAc97138953C2", + "status": "abandoned", + "id": "0x36151737B45017234E9570Cf9a1cAc97138953C2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36151737B45017234E9570Cf9a1cAc97138953C2/logo.png b/blockchains/ethereum/assets/0x36151737B45017234E9570Cf9a1cAc97138953C2/logo.png new file mode 100644 index 00000000..a39c077e Binary files /dev/null and b/blockchains/ethereum/assets/0x36151737B45017234E9570Cf9a1cAc97138953C2/logo.png differ diff --git a/blockchains/ethereum/assets/0x361e8b78699b1c776c2d5B1D65E731D26a9c7F54/info.json b/blockchains/ethereum/assets/0x361e8b78699b1c776c2d5B1D65E731D26a9c7F54/info.json new file mode 100644 index 00000000..0acd7271 --- /dev/null +++ b/blockchains/ethereum/assets/0x361e8b78699b1c776c2d5B1D65E731D26a9c7F54/info.json @@ -0,0 +1,11 @@ +{ + "name": "FOODCOIN", + "symbol": "FOOD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x361e8b78699b1c776c2d5B1D65E731D26a9c7F54", + "status": "abandoned", + "id": "0x361e8b78699b1c776c2d5B1D65E731D26a9c7F54" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x361e8b78699b1c776c2d5B1D65E731D26a9c7F54/logo.png b/blockchains/ethereum/assets/0x361e8b78699b1c776c2d5B1D65E731D26a9c7F54/logo.png new file mode 100644 index 00000000..806ee901 Binary files /dev/null and b/blockchains/ethereum/assets/0x361e8b78699b1c776c2d5B1D65E731D26a9c7F54/logo.png differ diff --git a/blockchains/ethereum/assets/0x362998BCE7BFc45C1b0A2ecC83952e09712AfDDB/info.json b/blockchains/ethereum/assets/0x362998BCE7BFc45C1b0A2ecC83952e09712AfDDB/info.json new file mode 100644 index 00000000..71212296 --- /dev/null +++ b/blockchains/ethereum/assets/0x362998BCE7BFc45C1b0A2ecC83952e09712AfDDB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bruciare", + "symbol": "BCIRE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x362998BCE7BFc45C1b0A2ecC83952e09712AfDDB", + "status": "abandoned", + "id": "0x362998BCE7BFc45C1b0A2ecC83952e09712AfDDB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x362998BCE7BFc45C1b0A2ecC83952e09712AfDDB/logo.png b/blockchains/ethereum/assets/0x362998BCE7BFc45C1b0A2ecC83952e09712AfDDB/logo.png new file mode 100644 index 00000000..a5fb1b10 Binary files /dev/null and b/blockchains/ethereum/assets/0x362998BCE7BFc45C1b0A2ecC83952e09712AfDDB/logo.png differ diff --git a/blockchains/ethereum/assets/0x362C4c557cdCa7109bae9Fce3F99f0Bb6E25B163/info.json b/blockchains/ethereum/assets/0x362C4c557cdCa7109bae9Fce3F99f0Bb6E25B163/info.json new file mode 100644 index 00000000..e1a2ef2d --- /dev/null +++ b/blockchains/ethereum/assets/0x362C4c557cdCa7109bae9Fce3F99f0Bb6E25B163/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-14/30M74", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x362C4c557cdCa7109bae9Fce3F99f0Bb6E25B163", + "status": "abandoned", + "id": "0x362C4c557cdCa7109bae9Fce3F99f0Bb6E25B163" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x362C4c557cdCa7109bae9Fce3F99f0Bb6E25B163/logo.png b/blockchains/ethereum/assets/0x362C4c557cdCa7109bae9Fce3F99f0Bb6E25B163/logo.png new file mode 100644 index 00000000..5905b3b8 Binary files /dev/null and b/blockchains/ethereum/assets/0x362C4c557cdCa7109bae9Fce3F99f0Bb6E25B163/logo.png differ diff --git a/blockchains/ethereum/assets/0x362bc847A3a9637d3af6624EeC853618a43ed7D2/info.json b/blockchains/ethereum/assets/0x362bc847A3a9637d3af6624EeC853618a43ed7D2/info.json new file mode 100644 index 00000000..4d898c6b --- /dev/null +++ b/blockchains/ethereum/assets/0x362bc847A3a9637d3af6624EeC853618a43ed7D2/info.json @@ -0,0 +1,29 @@ +{ + "name": "PARSIQ", + "website": "https://parsiq.net", + "description": "Connect blockchain activity to off-chain apps and devices. Monitor and secure DeFi applications. Build custom event triggers and power real-time automations.", + "explorer": "https://etherscan.io/token/0x362bc847A3a9637d3af6624EeC853618a43ed7D2", + "type": "ERC20", + "symbol": "PRQ", + "decimals": 18, + "status": "active", + "id": "0x362bc847A3a9637d3af6624EeC853618a43ed7D2", + "links": [ + { + "name": "telegram", + "url": "https://t.me/parsiq_group" + }, + { + "name": "x", + "url": "https://x.com/parsiq_net" + }, + { + "name": "facebook", + "url": "https://facebook.com/parsiqnet/" + }, + { + "name": "medium", + "url": "https://medium.com/parsiq" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x362bc847A3a9637d3af6624EeC853618a43ed7D2/logo.png b/blockchains/ethereum/assets/0x362bc847A3a9637d3af6624EeC853618a43ed7D2/logo.png new file mode 100644 index 00000000..6f34eb76 Binary files /dev/null and b/blockchains/ethereum/assets/0x362bc847A3a9637d3af6624EeC853618a43ed7D2/logo.png differ diff --git a/blockchains/ethereum/assets/0x3632DEa96A953C11dac2f00b4A05a32CD1063fAE/info.json b/blockchains/ethereum/assets/0x3632DEa96A953C11dac2f00b4A05a32CD1063fAE/info.json new file mode 100644 index 00000000..f3b7f44c --- /dev/null +++ b/blockchains/ethereum/assets/0x3632DEa96A953C11dac2f00b4A05a32CD1063fAE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Circle Internet Group (Ondo Tokenized)", + "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 00000000..33b0bad3 Binary files /dev/null and b/blockchains/ethereum/assets/0x3632DEa96A953C11dac2f00b4A05a32CD1063fAE/logo.png differ diff --git a/blockchains/ethereum/assets/0x364A7381A5b378CeD7AB33d1CDf6ff1bf162Bfd6/info.json b/blockchains/ethereum/assets/0x364A7381A5b378CeD7AB33d1CDf6ff1bf162Bfd6/info.json new file mode 100644 index 00000000..7de9587f --- /dev/null +++ b/blockchains/ethereum/assets/0x364A7381A5b378CeD7AB33d1CDf6ff1bf162Bfd6/info.json @@ -0,0 +1,11 @@ +{ + "name": "DeFi-X Token", + "website": "https://defix.finance/", + "description": "DeFi-X is a cross-chain compatible synthetic asset issuance and trading protocol designed to build a full-stack, open, decentralized financial ecosystem.", + "explorer": "https://etherscan.io/token/0x364A7381A5b378CeD7AB33d1CDf6ff1bf162Bfd6", + "type": "ERC20", + "symbol": "TGX", + "decimals": 18, + "status": "active", + "id": "0x364A7381A5b378CeD7AB33d1CDf6ff1bf162Bfd6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x364A7381A5b378CeD7AB33d1CDf6ff1bf162Bfd6/logo.png b/blockchains/ethereum/assets/0x364A7381A5b378CeD7AB33d1CDf6ff1bf162Bfd6/logo.png new file mode 100644 index 00000000..1573dace Binary files /dev/null and b/blockchains/ethereum/assets/0x364A7381A5b378CeD7AB33d1CDf6ff1bf162Bfd6/logo.png differ diff --git a/blockchains/ethereum/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json b/blockchains/ethereum/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json new file mode 100644 index 00000000..ed38b755 --- /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 00000000..00db496a Binary files /dev/null and b/blockchains/ethereum/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/logo.png differ diff --git a/blockchains/ethereum/assets/0x3652190842022c188e2ca7962613F7e510DAB2D0/info.json b/blockchains/ethereum/assets/0x3652190842022c188e2ca7962613F7e510DAB2D0/info.json new file mode 100644 index 00000000..dbf0bb06 --- /dev/null +++ b/blockchains/ethereum/assets/0x3652190842022c188e2ca7962613F7e510DAB2D0/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TESTmg24", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3652190842022c188e2ca7962613F7e510DAB2D0", + "status": "abandoned", + "id": "0x3652190842022c188e2ca7962613F7e510DAB2D0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3652190842022c188e2ca7962613F7e510DAB2D0/logo.png b/blockchains/ethereum/assets/0x3652190842022c188e2ca7962613F7e510DAB2D0/logo.png new file mode 100644 index 00000000..bc69e674 Binary files /dev/null and b/blockchains/ethereum/assets/0x3652190842022c188e2ca7962613F7e510DAB2D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x365542DF3c8c9d096C5F0dE24A0d8cf33C19C8fd/info.json b/blockchains/ethereum/assets/0x365542DF3c8c9d096C5F0dE24A0d8cf33C19C8fd/info.json new file mode 100644 index 00000000..353c71dd --- /dev/null +++ b/blockchains/ethereum/assets/0x365542DF3c8c9d096C5F0dE24A0d8cf33C19C8fd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hyper Speed Network", + "symbol": "HSN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.hsn.link/", + "explorer": "https://etherscan.io/token/0x365542DF3c8c9d096C5F0dE24A0d8cf33C19C8fd", + "status": "abandoned", + "id": "0x365542DF3c8c9d096C5F0dE24A0d8cf33C19C8fd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x365542DF3c8c9d096C5F0dE24A0d8cf33C19C8fd/logo.png b/blockchains/ethereum/assets/0x365542DF3c8c9d096C5F0dE24A0d8cf33C19C8fd/logo.png new file mode 100644 index 00000000..0f4ff301 Binary files /dev/null and b/blockchains/ethereum/assets/0x365542DF3c8c9d096C5F0dE24A0d8cf33C19C8fd/logo.png differ diff --git a/blockchains/ethereum/assets/0x3672a1d8A362c9A50DB70df219e05EA3cAB60Df9/info.json b/blockchains/ethereum/assets/0x3672a1d8A362c9A50DB70df219e05EA3cAB60Df9/info.json new file mode 100644 index 00000000..ce6a8d1d --- /dev/null +++ b/blockchains/ethereum/assets/0x3672a1d8A362c9A50DB70df219e05EA3cAB60Df9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planetagro-Exchange", + "symbol": "SUGAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3672a1d8A362c9A50DB70df219e05EA3cAB60Df9", + "status": "abandoned", + "id": "0x3672a1d8A362c9A50DB70df219e05EA3cAB60Df9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3672a1d8A362c9A50DB70df219e05EA3cAB60Df9/logo.png b/blockchains/ethereum/assets/0x3672a1d8A362c9A50DB70df219e05EA3cAB60Df9/logo.png new file mode 100755 index 00000000..4e77b9cb Binary files /dev/null and b/blockchains/ethereum/assets/0x3672a1d8A362c9A50DB70df219e05EA3cAB60Df9/logo.png differ diff --git a/blockchains/ethereum/assets/0x3678d8CC9Eb08875A3720f34c1C8d1e1B31F5A11/info.json b/blockchains/ethereum/assets/0x3678d8CC9Eb08875A3720f34c1C8d1e1B31F5A11/info.json new file mode 100644 index 00000000..0c2414b5 --- /dev/null +++ b/blockchains/ethereum/assets/0x3678d8CC9Eb08875A3720f34c1C8d1e1B31F5A11/info.json @@ -0,0 +1,12 @@ +{ + "name": "Obee Network ERC-20", + "website": "https://obee.top", + "product": "https://www.obee.vip", + "description": "Obee Network is an incentive-based social platform and the Obee Network social platform has a content publishing system,comment forwarding, account system, commodities, account system, news blog, activities, and other modules.", + "explorer": "https://etherscan.io/token/0x3678d8CC9Eb08875A3720f34c1C8d1e1B31F5A11", + "type": "ERC20", + "symbol": "OBEE", + "decimals": 18, + "status": "active", + "id": "0x3678d8CC9Eb08875A3720f34c1C8d1e1B31F5A11" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3678d8CC9Eb08875A3720f34c1C8d1e1B31F5A11/logo.png b/blockchains/ethereum/assets/0x3678d8CC9Eb08875A3720f34c1C8d1e1B31F5A11/logo.png new file mode 100644 index 00000000..fc72f3d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x3678d8CC9Eb08875A3720f34c1C8d1e1B31F5A11/logo.png differ diff --git a/blockchains/ethereum/assets/0x36905Fc93280f52362A1CBAB151F25DC46742Fb5/info.json b/blockchains/ethereum/assets/0x36905Fc93280f52362A1CBAB151F25DC46742Fb5/info.json new file mode 100644 index 00000000..419cf533 --- /dev/null +++ b/blockchains/ethereum/assets/0x36905Fc93280f52362A1CBAB151F25DC46742Fb5/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTOCoin", + "symbol": "BTO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.bottos.org/", + "explorer": "https://etherscan.io/token/0x36905Fc93280f52362A1CBAB151F25DC46742Fb5", + "status": "abandoned", + "id": "0x36905Fc93280f52362A1CBAB151F25DC46742Fb5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36905Fc93280f52362A1CBAB151F25DC46742Fb5/logo.png b/blockchains/ethereum/assets/0x36905Fc93280f52362A1CBAB151F25DC46742Fb5/logo.png new file mode 100755 index 00000000..2b496fc8 Binary files /dev/null and b/blockchains/ethereum/assets/0x36905Fc93280f52362A1CBAB151F25DC46742Fb5/logo.png differ diff --git a/blockchains/ethereum/assets/0x369760eBf89d577a734d927a9599C1921397A152/info.json b/blockchains/ethereum/assets/0x369760eBf89d577a734d927a9599C1921397A152/info.json new file mode 100644 index 00000000..36f726c1 --- /dev/null +++ b/blockchains/ethereum/assets/0x369760eBf89d577a734d927a9599C1921397A152/info.json @@ -0,0 +1,11 @@ +{ + "name": "E-Shipp Block", + "symbol": "ESB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x369760eBf89d577a734d927a9599C1921397A152", + "status": "abandoned", + "id": "0x369760eBf89d577a734d927a9599C1921397A152" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x369760eBf89d577a734d927a9599C1921397A152/logo.png b/blockchains/ethereum/assets/0x369760eBf89d577a734d927a9599C1921397A152/logo.png new file mode 100644 index 00000000..24290503 Binary files /dev/null and b/blockchains/ethereum/assets/0x369760eBf89d577a734d927a9599C1921397A152/logo.png differ diff --git a/blockchains/ethereum/assets/0x369eb6821C94a78428f7c86c768590F53950068f/info.json b/blockchains/ethereum/assets/0x369eb6821C94a78428f7c86c768590F53950068f/info.json new file mode 100644 index 00000000..d98b14fe --- /dev/null +++ b/blockchains/ethereum/assets/0x369eb6821C94a78428f7c86c768590F53950068f/info.json @@ -0,0 +1,11 @@ +{ + "name": "ATFS Token", + "symbol": "ATFS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.atfslab.io", + "explorer": "https://etherscan.io/token/0x369eb6821C94a78428f7c86c768590F53950068f", + "status": "abandoned", + "id": "0x369eb6821C94a78428f7c86c768590F53950068f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x369eb6821C94a78428f7c86c768590F53950068f/logo.png b/blockchains/ethereum/assets/0x369eb6821C94a78428f7c86c768590F53950068f/logo.png new file mode 100755 index 00000000..998ca291 Binary files /dev/null and b/blockchains/ethereum/assets/0x369eb6821C94a78428f7c86c768590F53950068f/logo.png differ diff --git a/blockchains/ethereum/assets/0x36AFf6FE8fFE81844bBa32427F622Af6c47EAB66/info.json b/blockchains/ethereum/assets/0x36AFf6FE8fFE81844bBa32427F622Af6c47EAB66/info.json new file mode 100644 index 00000000..4e674bca --- /dev/null +++ b/blockchains/ethereum/assets/0x36AFf6FE8fFE81844bBa32427F622Af6c47EAB66/info.json @@ -0,0 +1,11 @@ +{ + "name": "GDC", + "symbol": "GDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x36AFf6FE8fFE81844bBa32427F622Af6c47EAB66", + "status": "abandoned", + "id": "0x36AFf6FE8fFE81844bBa32427F622Af6c47EAB66" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36AFf6FE8fFE81844bBa32427F622Af6c47EAB66/logo.png b/blockchains/ethereum/assets/0x36AFf6FE8fFE81844bBa32427F622Af6c47EAB66/logo.png new file mode 100644 index 00000000..f6ac5da8 Binary files /dev/null and b/blockchains/ethereum/assets/0x36AFf6FE8fFE81844bBa32427F622Af6c47EAB66/logo.png differ diff --git a/blockchains/ethereum/assets/0x36B4B58DE030E93775E151a78D796039a11a2548/info.json b/blockchains/ethereum/assets/0x36B4B58DE030E93775E151a78D796039a11a2548/info.json new file mode 100644 index 00000000..cf8aa0b0 --- /dev/null +++ b/blockchains/ethereum/assets/0x36B4B58DE030E93775E151a78D796039a11a2548/info.json @@ -0,0 +1,11 @@ +{ + "name": "vSport Coin", + "symbol": "VSC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://vsport.io/", + "explorer": "https://etherscan.io/token/0x36B4B58DE030E93775E151a78D796039a11a2548", + "status": "abandoned", + "id": "0x36B4B58DE030E93775E151a78D796039a11a2548" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36B4B58DE030E93775E151a78D796039a11a2548/logo.png b/blockchains/ethereum/assets/0x36B4B58DE030E93775E151a78D796039a11a2548/logo.png new file mode 100644 index 00000000..dd2c7758 Binary files /dev/null and b/blockchains/ethereum/assets/0x36B4B58DE030E93775E151a78D796039a11a2548/logo.png differ diff --git a/blockchains/ethereum/assets/0x36BF67C9aA1D67a06BfEC145f08E20112A54c0f7/info.json b/blockchains/ethereum/assets/0x36BF67C9aA1D67a06BfEC145f08E20112A54c0f7/info.json new file mode 100644 index 00000000..c8b08c82 --- /dev/null +++ b/blockchains/ethereum/assets/0x36BF67C9aA1D67a06BfEC145f08E20112A54c0f7/info.json @@ -0,0 +1,11 @@ +{ + "name": "JeyennCoin", + "symbol": "JNN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x36BF67C9aA1D67a06BfEC145f08E20112A54c0f7", + "status": "abandoned", + "id": "0x36BF67C9aA1D67a06BfEC145f08E20112A54c0f7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36BF67C9aA1D67a06BfEC145f08E20112A54c0f7/logo.png b/blockchains/ethereum/assets/0x36BF67C9aA1D67a06BfEC145f08E20112A54c0f7/logo.png new file mode 100644 index 00000000..94600e38 Binary files /dev/null and b/blockchains/ethereum/assets/0x36BF67C9aA1D67a06BfEC145f08E20112A54c0f7/logo.png differ diff --git a/blockchains/ethereum/assets/0x36D10c6800D569bb8C4fE284a05fFE3B752F972c/info.json b/blockchains/ethereum/assets/0x36D10c6800D569bb8C4fE284a05fFE3B752F972c/info.json new file mode 100644 index 00000000..7974439d --- /dev/null +++ b/blockchains/ethereum/assets/0x36D10c6800D569bb8C4fE284a05fFE3B752F972c/info.json @@ -0,0 +1,11 @@ +{ + "name": "We Show Token", + "symbol": "WET", + "type": "ERC20", + "decimals": 18, + "description": "WeShow Token (WET) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.we.show/", + "explorer": "https://etherscan.io/token/0x36D10c6800D569bb8C4fE284a05fFE3B752F972c", + "status": "active", + "id": "0x36D10c6800D569bb8C4fE284a05fFE3B752F972c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36D10c6800D569bb8C4fE284a05fFE3B752F972c/logo.png b/blockchains/ethereum/assets/0x36D10c6800D569bb8C4fE284a05fFE3B752F972c/logo.png new file mode 100644 index 00000000..76faf468 Binary files /dev/null and b/blockchains/ethereum/assets/0x36D10c6800D569bb8C4fE284a05fFE3B752F972c/logo.png differ diff --git a/blockchains/ethereum/assets/0x36D38e232659deA52f5Fdb1A0f90709e6dC6994A/info.json b/blockchains/ethereum/assets/0x36D38e232659deA52f5Fdb1A0f90709e6dC6994A/info.json new file mode 100644 index 00000000..2b65c5d6 --- /dev/null +++ b/blockchains/ethereum/assets/0x36D38e232659deA52f5Fdb1A0f90709e6dC6994A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitbarg", + "symbol": "BARG", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x36D38e232659deA52f5Fdb1A0f90709e6dC6994A", + "status": "abandoned", + "id": "0x36D38e232659deA52f5Fdb1A0f90709e6dC6994A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36D38e232659deA52f5Fdb1A0f90709e6dC6994A/logo.png b/blockchains/ethereum/assets/0x36D38e232659deA52f5Fdb1A0f90709e6dC6994A/logo.png new file mode 100644 index 00000000..e6d7b781 Binary files /dev/null and b/blockchains/ethereum/assets/0x36D38e232659deA52f5Fdb1A0f90709e6dC6994A/logo.png differ diff --git a/blockchains/ethereum/assets/0x36DAECfc172Fd44a165fb93BE5569E72B09CeeA2/info.json b/blockchains/ethereum/assets/0x36DAECfc172Fd44a165fb93BE5569E72B09CeeA2/info.json new file mode 100644 index 00000000..b5222236 --- /dev/null +++ b/blockchains/ethereum/assets/0x36DAECfc172Fd44a165fb93BE5569E72B09CeeA2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Winsshar", + "symbol": "WSR", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x36DAECfc172Fd44a165fb93BE5569E72B09CeeA2", + "status": "abandoned", + "id": "0x36DAECfc172Fd44a165fb93BE5569E72B09CeeA2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36DAECfc172Fd44a165fb93BE5569E72B09CeeA2/logo.png b/blockchains/ethereum/assets/0x36DAECfc172Fd44a165fb93BE5569E72B09CeeA2/logo.png new file mode 100644 index 00000000..04bdf5db Binary files /dev/null and b/blockchains/ethereum/assets/0x36DAECfc172Fd44a165fb93BE5569E72B09CeeA2/logo.png differ diff --git a/blockchains/ethereum/assets/0x36E08E815f26c43dac8957E36C09e664a6B644F9/info.json b/blockchains/ethereum/assets/0x36E08E815f26c43dac8957E36C09e664a6B644F9/info.json new file mode 100644 index 00000000..f04d19d2 --- /dev/null +++ b/blockchains/ethereum/assets/0x36E08E815f26c43dac8957E36C09e664a6B644F9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Prometeo", + "symbol": "PMT", + "type": "ERC20", + "decimals": 11, + "description": "-", + "website": "https://www.prometeocoin.org", + "explorer": "https://etherscan.io/token/0x36E08E815f26c43dac8957E36C09e664a6B644F9", + "status": "abandoned", + "id": "0x36E08E815f26c43dac8957E36C09e664a6B644F9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36E08E815f26c43dac8957E36C09e664a6B644F9/logo.png b/blockchains/ethereum/assets/0x36E08E815f26c43dac8957E36C09e664a6B644F9/logo.png new file mode 100644 index 00000000..eca29192 Binary files /dev/null and b/blockchains/ethereum/assets/0x36E08E815f26c43dac8957E36C09e664a6B644F9/logo.png differ diff --git a/blockchains/ethereum/assets/0x36E3b8d9aAd0e51aC08E56a75A8f6005bF68535B/info.json b/blockchains/ethereum/assets/0x36E3b8d9aAd0e51aC08E56a75A8f6005bF68535B/info.json new file mode 100644 index 00000000..92c3b3ac --- /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 00000000..38f63fa3 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 00000000..4cd29099 --- /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 00000000..11fd7384 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 00000000..4a800d74 --- /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 00000000..8d222c96 Binary files /dev/null and b/blockchains/ethereum/assets/0x36E66fbBce51e4cD5bd3C62B637Eb411b18949D4/logo.png differ diff --git a/blockchains/ethereum/assets/0x36E85A6403ffF21669980b436792129C96e7002e/info.json b/blockchains/ethereum/assets/0x36E85A6403ffF21669980b436792129C96e7002e/info.json new file mode 100644 index 00000000..2c785d20 --- /dev/null +++ b/blockchains/ethereum/assets/0x36E85A6403ffF21669980b436792129C96e7002e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Europay", + "symbol": "EUPAY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x36E85A6403ffF21669980b436792129C96e7002e", + "status": "abandoned", + "id": "0x36E85A6403ffF21669980b436792129C96e7002e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36E85A6403ffF21669980b436792129C96e7002e/logo.png b/blockchains/ethereum/assets/0x36E85A6403ffF21669980b436792129C96e7002e/logo.png new file mode 100644 index 00000000..dde6207a Binary files /dev/null and b/blockchains/ethereum/assets/0x36E85A6403ffF21669980b436792129C96e7002e/logo.png differ diff --git a/blockchains/ethereum/assets/0x36F3FD68E7325a35EB768F1AedaAe9EA0689d723/info.json b/blockchains/ethereum/assets/0x36F3FD68E7325a35EB768F1AedaAe9EA0689d723/info.json new file mode 100644 index 00000000..fffa8f8f --- /dev/null +++ b/blockchains/ethereum/assets/0x36F3FD68E7325a35EB768F1AedaAe9EA0689d723/info.json @@ -0,0 +1,22 @@ +{ + "name": "Empty Set Dollar", + "website": "https://emptyset.finance/", + "description": "Innovative USD Stablecoin", + "explorer": "https://etherscan.io/token/0x36f3fd68e7325a35eb768f1aedaae9ea0689d723", + "research": "https://docs.esd.tools/", + "type": "ERC20", + "symbol": "ESD", + "decimals": 18, + "status": "active", + "id": "0x36F3FD68E7325a35EB768F1AedaAe9EA0689d723", + "links": [ + { + "name": "github", + "url": "https://github.com/emptysetsquad/dollar" + }, + { + "name": "whitepaper", + "url": "https://github.com/emptysetsquad/dollar-docs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36F3FD68E7325a35EB768F1AedaAe9EA0689d723/logo.png b/blockchains/ethereum/assets/0x36F3FD68E7325a35EB768F1AedaAe9EA0689d723/logo.png new file mode 100644 index 00000000..53854a91 Binary files /dev/null and b/blockchains/ethereum/assets/0x36F3FD68E7325a35EB768F1AedaAe9EA0689d723/logo.png differ diff --git a/blockchains/ethereum/assets/0x36a73557f5BDE5195EC39eCA82d28b8A36D21141/info.json b/blockchains/ethereum/assets/0x36a73557f5BDE5195EC39eCA82d28b8A36D21141/info.json new file mode 100644 index 00000000..a1c70c0c --- /dev/null +++ b/blockchains/ethereum/assets/0x36a73557f5BDE5195EC39eCA82d28b8A36D21141/info.json @@ -0,0 +1,11 @@ +{ + "name": "Forex Coin", + "symbol": "FRX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x36a73557f5BDE5195EC39eCA82d28b8A36D21141", + "status": "abandoned", + "id": "0x36a73557f5BDE5195EC39eCA82d28b8A36D21141" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36a73557f5BDE5195EC39eCA82d28b8A36D21141/logo.png b/blockchains/ethereum/assets/0x36a73557f5BDE5195EC39eCA82d28b8A36D21141/logo.png new file mode 100755 index 00000000..abdd7bd4 Binary files /dev/null and b/blockchains/ethereum/assets/0x36a73557f5BDE5195EC39eCA82d28b8A36D21141/logo.png differ diff --git a/blockchains/ethereum/assets/0x36b679bd64Ed73DBfd88909cDCB892cB66Bd4CBb/info.json b/blockchains/ethereum/assets/0x36b679bd64Ed73DBfd88909cDCB892cB66Bd4CBb/info.json new file mode 100644 index 00000000..490cbf56 --- /dev/null +++ b/blockchains/ethereum/assets/0x36b679bd64Ed73DBfd88909cDCB892cB66Bd4CBb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Standard", + "type": "ERC20", + "symbol": "xMARK", + "decimals": 9, + "website": "https://benchmarkprotocol.finance", + "description": "Benchmark Protocol mitigates liquidation events and hedges risk with the MARK token; a supply elastic, stablecoin-alternative. The protocol dynamically adjusts supply based on the CBOE volatility index (VIX) and deviations from 1 Special Drawing Rights (SDR) unit. xMARK represents a share of MARK that is deposited in a token pool affected by rebasements, while xMARK itself is unaffected.", + "explorer": "https://etherscan.io/token/0x36b679bd64Ed73DBfd88909cDCB892cB66Bd4CBb", + "status": "active", + "id": "0x36b679bd64Ed73DBfd88909cDCB892cB66Bd4CBb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36b679bd64Ed73DBfd88909cDCB892cB66Bd4CBb/logo.png b/blockchains/ethereum/assets/0x36b679bd64Ed73DBfd88909cDCB892cB66Bd4CBb/logo.png new file mode 100644 index 00000000..d51f9fa3 Binary files /dev/null and b/blockchains/ethereum/assets/0x36b679bd64Ed73DBfd88909cDCB892cB66Bd4CBb/logo.png differ diff --git a/blockchains/ethereum/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json b/blockchains/ethereum/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json new file mode 100644 index 00000000..aa4e9b53 --- /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 00000000..c3916659 Binary files /dev/null and b/blockchains/ethereum/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/logo.png differ diff --git a/blockchains/ethereum/assets/0x36dCffe069a3F2878Fab2A46D81e83D462d0cBF7/info.json b/blockchains/ethereum/assets/0x36dCffe069a3F2878Fab2A46D81e83D462d0cBF7/info.json new file mode 100644 index 00000000..f1322043 --- /dev/null +++ b/blockchains/ethereum/assets/0x36dCffe069a3F2878Fab2A46D81e83D462d0cBF7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tcbcoin", + "symbol": "TCFX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x36dCffe069a3F2878Fab2A46D81e83D462d0cBF7", + "status": "abandoned", + "id": "0x36dCffe069a3F2878Fab2A46D81e83D462d0cBF7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36dCffe069a3F2878Fab2A46D81e83D462d0cBF7/logo.png b/blockchains/ethereum/assets/0x36dCffe069a3F2878Fab2A46D81e83D462d0cBF7/logo.png new file mode 100644 index 00000000..16ae9cd9 Binary files /dev/null and b/blockchains/ethereum/assets/0x36dCffe069a3F2878Fab2A46D81e83D462d0cBF7/logo.png differ diff --git a/blockchains/ethereum/assets/0x36e4dAA217800d8b2aAC42EE7CC56D4484940c69/info.json b/blockchains/ethereum/assets/0x36e4dAA217800d8b2aAC42EE7CC56D4484940c69/info.json new file mode 100644 index 00000000..7794ddac --- /dev/null +++ b/blockchains/ethereum/assets/0x36e4dAA217800d8b2aAC42EE7CC56D4484940c69/info.json @@ -0,0 +1,11 @@ +{ + "name": "AntariX Token", + "symbol": "ATRX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x36e4dAA217800d8b2aAC42EE7CC56D4484940c69", + "status": "abandoned", + "id": "0x36e4dAA217800d8b2aAC42EE7CC56D4484940c69" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36e4dAA217800d8b2aAC42EE7CC56D4484940c69/logo.png b/blockchains/ethereum/assets/0x36e4dAA217800d8b2aAC42EE7CC56D4484940c69/logo.png new file mode 100644 index 00000000..cb2d213b Binary files /dev/null and b/blockchains/ethereum/assets/0x36e4dAA217800d8b2aAC42EE7CC56D4484940c69/logo.png differ diff --git a/blockchains/ethereum/assets/0x36fF29571Ed2Ff029dF9fA6DA076CA1484CEB9Dc/info.json b/blockchains/ethereum/assets/0x36fF29571Ed2Ff029dF9fA6DA076CA1484CEB9Dc/info.json new file mode 100644 index 00000000..5305d0b3 --- /dev/null +++ b/blockchains/ethereum/assets/0x36fF29571Ed2Ff029dF9fA6DA076CA1484CEB9Dc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vioscoin", + "symbol": "VIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x36fF29571Ed2Ff029dF9fA6DA076CA1484CEB9Dc", + "status": "abandoned", + "id": "0x36fF29571Ed2Ff029dF9fA6DA076CA1484CEB9Dc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x36fF29571Ed2Ff029dF9fA6DA076CA1484CEB9Dc/logo.png b/blockchains/ethereum/assets/0x36fF29571Ed2Ff029dF9fA6DA076CA1484CEB9Dc/logo.png new file mode 100644 index 00000000..fa630b06 Binary files /dev/null and b/blockchains/ethereum/assets/0x36fF29571Ed2Ff029dF9fA6DA076CA1484CEB9Dc/logo.png differ diff --git a/blockchains/ethereum/assets/0x370DaE2AB60ECbc0EE793E837D94ca8040Dd6786/info.json b/blockchains/ethereum/assets/0x370DaE2AB60ECbc0EE793E837D94ca8040Dd6786/info.json new file mode 100644 index 00000000..03f662a9 --- /dev/null +++ b/blockchains/ethereum/assets/0x370DaE2AB60ECbc0EE793E837D94ca8040Dd6786/info.json @@ -0,0 +1,11 @@ +{ + "name": "ness", + "symbol": "NESS", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x370DaE2AB60ECbc0EE793E837D94ca8040Dd6786", + "status": "abandoned", + "id": "0x370DaE2AB60ECbc0EE793E837D94ca8040Dd6786" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x370DaE2AB60ECbc0EE793E837D94ca8040Dd6786/logo.png b/blockchains/ethereum/assets/0x370DaE2AB60ECbc0EE793E837D94ca8040Dd6786/logo.png new file mode 100644 index 00000000..9d24c8eb Binary files /dev/null and b/blockchains/ethereum/assets/0x370DaE2AB60ECbc0EE793E837D94ca8040Dd6786/logo.png differ diff --git a/blockchains/ethereum/assets/0x370d6D0728407e06ccdd1db8150e433f8319D0d9/info.json b/blockchains/ethereum/assets/0x370d6D0728407e06ccdd1db8150e433f8319D0d9/info.json new file mode 100644 index 00000000..f60120b9 --- /dev/null +++ b/blockchains/ethereum/assets/0x370d6D0728407e06ccdd1db8150e433f8319D0d9/info.json @@ -0,0 +1,11 @@ +{ + "name": "LATINOCOIN", + "symbol": "LATINO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x370d6D0728407e06ccdd1db8150e433f8319D0d9", + "status": "abandoned", + "id": "0x370d6D0728407e06ccdd1db8150e433f8319D0d9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x370d6D0728407e06ccdd1db8150e433f8319D0d9/logo.png b/blockchains/ethereum/assets/0x370d6D0728407e06ccdd1db8150e433f8319D0d9/logo.png new file mode 100644 index 00000000..4c958942 Binary files /dev/null and b/blockchains/ethereum/assets/0x370d6D0728407e06ccdd1db8150e433f8319D0d9/logo.png differ diff --git a/blockchains/ethereum/assets/0x37236CD05b34Cc79d3715AF2383E96dd7443dCF1/info.json b/blockchains/ethereum/assets/0x37236CD05b34Cc79d3715AF2383E96dd7443dCF1/info.json new file mode 100644 index 00000000..0ddbfae9 --- /dev/null +++ b/blockchains/ethereum/assets/0x37236CD05b34Cc79d3715AF2383E96dd7443dCF1/info.json @@ -0,0 +1,12 @@ +{ + "name": "Small Love Potion", + "website": "https://axieinfinity.com", + "description": "Small Love Potion (SLP) is an ERC-20 token on the Axie Infinity platform that is used to breed new digital pets (Axies).", + "explorer": "https://etherscan.io/token/0x37236cd05b34cc79d3715af2383e96dd7443dcf1", + "research": "https://research.binance.com/en/projects/small-love-potion", + "type": "ERC20", + "symbol": "SLP", + "decimals": 0, + "status": "abandoned", + "id": "0x37236CD05b34Cc79d3715AF2383E96dd7443dCF1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x37266508Ae0102c2Ea05865C94c6d19a3B0af05a/info.json b/blockchains/ethereum/assets/0x37266508Ae0102c2Ea05865C94c6d19a3B0af05a/info.json new file mode 100644 index 00000000..ba7d1d53 --- /dev/null +++ b/blockchains/ethereum/assets/0x37266508Ae0102c2Ea05865C94c6d19a3B0af05a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Golden Age", + "symbol": "GOLDEN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x37266508Ae0102c2Ea05865C94c6d19a3B0af05a", + "status": "abandoned", + "id": "0x37266508Ae0102c2Ea05865C94c6d19a3B0af05a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x37266508Ae0102c2Ea05865C94c6d19a3B0af05a/logo.png b/blockchains/ethereum/assets/0x37266508Ae0102c2Ea05865C94c6d19a3B0af05a/logo.png new file mode 100644 index 00000000..b13f3dbc Binary files /dev/null and b/blockchains/ethereum/assets/0x37266508Ae0102c2Ea05865C94c6d19a3B0af05a/logo.png differ diff --git a/blockchains/ethereum/assets/0x375A08cE3a460F20BbaFd282Be1E3579a2c31F41/info.json b/blockchains/ethereum/assets/0x375A08cE3a460F20BbaFd282Be1E3579a2c31F41/info.json new file mode 100644 index 00000000..77db811d --- /dev/null +++ b/blockchains/ethereum/assets/0x375A08cE3a460F20BbaFd282Be1E3579a2c31F41/info.json @@ -0,0 +1,11 @@ +{ + "name": "Thaler", + "symbol": "TAL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.thalergroup.com/", + "explorer": "https://etherscan.io/token/0x375A08cE3a460F20BbaFd282Be1E3579a2c31F41", + "status": "abandoned", + "id": "0x375A08cE3a460F20BbaFd282Be1E3579a2c31F41" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x375A08cE3a460F20BbaFd282Be1E3579a2c31F41/logo.png b/blockchains/ethereum/assets/0x375A08cE3a460F20BbaFd282Be1E3579a2c31F41/logo.png new file mode 100644 index 00000000..c4abe337 Binary files /dev/null and b/blockchains/ethereum/assets/0x375A08cE3a460F20BbaFd282Be1E3579a2c31F41/logo.png differ diff --git a/blockchains/ethereum/assets/0x3763Bfe2aDaF90Eef907878a203AF1c2B40Ed2bd/info.json b/blockchains/ethereum/assets/0x3763Bfe2aDaF90Eef907878a203AF1c2B40Ed2bd/info.json new file mode 100644 index 00000000..a31c1921 --- /dev/null +++ b/blockchains/ethereum/assets/0x3763Bfe2aDaF90Eef907878a203AF1c2B40Ed2bd/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-19/30M49", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3763Bfe2aDaF90Eef907878a203AF1c2B40Ed2bd", + "status": "abandoned", + "id": "0x3763Bfe2aDaF90Eef907878a203AF1c2B40Ed2bd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3763Bfe2aDaF90Eef907878a203AF1c2B40Ed2bd/logo.png b/blockchains/ethereum/assets/0x3763Bfe2aDaF90Eef907878a203AF1c2B40Ed2bd/logo.png new file mode 100644 index 00000000..89059d50 Binary files /dev/null and b/blockchains/ethereum/assets/0x3763Bfe2aDaF90Eef907878a203AF1c2B40Ed2bd/logo.png differ diff --git a/blockchains/ethereum/assets/0x376d647978ad72BC3091739834cC9bB882fa8769/info.json b/blockchains/ethereum/assets/0x376d647978ad72BC3091739834cC9bB882fa8769/info.json new file mode 100644 index 00000000..0bb7859d --- /dev/null +++ b/blockchains/ethereum/assets/0x376d647978ad72BC3091739834cC9bB882fa8769/info.json @@ -0,0 +1,11 @@ +{ + "name": "9 Global Digital Coin", + "symbol": "9GDC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x376d647978ad72BC3091739834cC9bB882fa8769", + "status": "abandoned", + "id": "0x376d647978ad72BC3091739834cC9bB882fa8769" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x376d647978ad72BC3091739834cC9bB882fa8769/logo.png b/blockchains/ethereum/assets/0x376d647978ad72BC3091739834cC9bB882fa8769/logo.png new file mode 100644 index 00000000..c690d1c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x376d647978ad72BC3091739834cC9bB882fa8769/logo.png differ diff --git a/blockchains/ethereum/assets/0x37729282bc2e55b68885400697D1d6011dA9924B/info.json b/blockchains/ethereum/assets/0x37729282bc2e55b68885400697D1d6011dA9924B/info.json new file mode 100644 index 00000000..93d0ad4f --- /dev/null +++ b/blockchains/ethereum/assets/0x37729282bc2e55b68885400697D1d6011dA9924B/info.json @@ -0,0 +1,11 @@ +{ + "name": "ALKANA", + "symbol": "ALKA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x37729282bc2e55b68885400697D1d6011dA9924B", + "status": "abandoned", + "id": "0x37729282bc2e55b68885400697D1d6011dA9924B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x37729282bc2e55b68885400697D1d6011dA9924B/logo.png b/blockchains/ethereum/assets/0x37729282bc2e55b68885400697D1d6011dA9924B/logo.png new file mode 100644 index 00000000..17e3ea35 Binary files /dev/null and b/blockchains/ethereum/assets/0x37729282bc2e55b68885400697D1d6011dA9924B/logo.png differ diff --git a/blockchains/ethereum/assets/0x3774E825d567125988Fb293e926064B6FAa71DAB/info.json b/blockchains/ethereum/assets/0x3774E825d567125988Fb293e926064B6FAa71DAB/info.json new file mode 100644 index 00000000..25dcb3e9 --- /dev/null +++ b/blockchains/ethereum/assets/0x3774E825d567125988Fb293e926064B6FAa71DAB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Strike USDC", + "symbol": "sUSDC", + "type": "ERC20", + "decimals": 18, + "description": "Strike Finance collateral cryptocurrency", + "explorer": "https://etherscan.io/token/0x3774E825d567125988Fb293e926064B6FAa71DAB", + "status": "active", + "id": "0x3774E825d567125988Fb293e926064B6FAa71DAB", + "website": "https://strike.org" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3774E825d567125988Fb293e926064B6FAa71DAB/logo.png b/blockchains/ethereum/assets/0x3774E825d567125988Fb293e926064B6FAa71DAB/logo.png new file mode 100644 index 00000000..fca13679 Binary files /dev/null and b/blockchains/ethereum/assets/0x3774E825d567125988Fb293e926064B6FAa71DAB/logo.png differ diff --git a/blockchains/ethereum/assets/0x378903a03FB2C3AC76BB52773e3CE11340377A32/info.json b/blockchains/ethereum/assets/0x378903a03FB2C3AC76BB52773e3CE11340377A32/info.json new file mode 100644 index 00000000..7386610d --- /dev/null +++ b/blockchains/ethereum/assets/0x378903a03FB2C3AC76BB52773e3CE11340377A32/info.json @@ -0,0 +1,11 @@ +{ + "name": "Clipper Coin Capital", + "symbol": "CCCX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x378903a03FB2C3AC76BB52773e3CE11340377A32", + "status": "abandoned", + "id": "0x378903a03FB2C3AC76BB52773e3CE11340377A32" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x378903a03FB2C3AC76BB52773e3CE11340377A32/logo.png b/blockchains/ethereum/assets/0x378903a03FB2C3AC76BB52773e3CE11340377A32/logo.png new file mode 100644 index 00000000..c7adec9d Binary files /dev/null and b/blockchains/ethereum/assets/0x378903a03FB2C3AC76BB52773e3CE11340377A32/logo.png differ diff --git a/blockchains/ethereum/assets/0x37CD675f891180d86391fc419e3E981b34e42280/info.json b/blockchains/ethereum/assets/0x37CD675f891180d86391fc419e3E981b34e42280/info.json new file mode 100644 index 00000000..c979439f --- /dev/null +++ b/blockchains/ethereum/assets/0x37CD675f891180d86391fc419e3E981b34e42280/info.json @@ -0,0 +1,11 @@ +{ + "name": "Extended STO", + "symbol": "ESTO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x37CD675f891180d86391fc419e3E981b34e42280", + "status": "abandoned", + "id": "0x37CD675f891180d86391fc419e3E981b34e42280" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x37CD675f891180d86391fc419e3E981b34e42280/logo.png b/blockchains/ethereum/assets/0x37CD675f891180d86391fc419e3E981b34e42280/logo.png new file mode 100644 index 00000000..0bde45d5 Binary files /dev/null and b/blockchains/ethereum/assets/0x37CD675f891180d86391fc419e3E981b34e42280/logo.png differ diff --git a/blockchains/ethereum/assets/0x37D404A072056EDA0Cd10Cb714D35552329F8500/info.json b/blockchains/ethereum/assets/0x37D404A072056EDA0Cd10Cb714D35552329F8500/info.json new file mode 100644 index 00000000..273d1fa8 --- /dev/null +++ b/blockchains/ethereum/assets/0x37D404A072056EDA0Cd10Cb714D35552329F8500/info.json @@ -0,0 +1,11 @@ +{ + "name": "XRT Token", + "symbol": "XRT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.xrtfoundation.org/", + "explorer": "https://etherscan.io/token/0x37D404A072056EDA0Cd10Cb714D35552329F8500", + "status": "abandoned", + "id": "0x37D404A072056EDA0Cd10Cb714D35552329F8500" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x37D404A072056EDA0Cd10Cb714D35552329F8500/logo.png b/blockchains/ethereum/assets/0x37D404A072056EDA0Cd10Cb714D35552329F8500/logo.png new file mode 100644 index 00000000..816d98c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x37D404A072056EDA0Cd10Cb714D35552329F8500/logo.png differ diff --git a/blockchains/ethereum/assets/0x37D40510a2F5Bc98AA7a0f7BF4b3453Bcfb90Ac1/info.json b/blockchains/ethereum/assets/0x37D40510a2F5Bc98AA7a0f7BF4b3453Bcfb90Ac1/info.json new file mode 100644 index 00000000..816c3664 --- /dev/null +++ b/blockchains/ethereum/assets/0x37D40510a2F5Bc98AA7a0f7BF4b3453Bcfb90Ac1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Beluga Banking Infrastructure Token", + "symbol": "BBI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://belugapay.com/", + "explorer": "https://etherscan.io/token/0x37D40510a2F5Bc98AA7a0f7BF4b3453Bcfb90Ac1", + "status": "abandoned", + "id": "0x37D40510a2F5Bc98AA7a0f7BF4b3453Bcfb90Ac1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x37D40510a2F5Bc98AA7a0f7BF4b3453Bcfb90Ac1/logo.png b/blockchains/ethereum/assets/0x37D40510a2F5Bc98AA7a0f7BF4b3453Bcfb90Ac1/logo.png new file mode 100755 index 00000000..a62fe78f Binary files /dev/null and b/blockchains/ethereum/assets/0x37D40510a2F5Bc98AA7a0f7BF4b3453Bcfb90Ac1/logo.png differ diff --git a/blockchains/ethereum/assets/0x37D6E7F287200C740012747d2A79295cAeD2DB35/info.json b/blockchains/ethereum/assets/0x37D6E7F287200C740012747d2A79295cAeD2DB35/info.json new file mode 100644 index 00000000..74dccd28 --- /dev/null +++ b/blockchains/ethereum/assets/0x37D6E7F287200C740012747d2A79295cAeD2DB35/info.json @@ -0,0 +1,11 @@ +{ + "name": "ALP Coin", + "symbol": "ALP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://btc-alpha.com/en/alp-coin", + "explorer": "https://etherscan.io/token/0x37D6E7F287200C740012747d2A79295cAeD2DB35", + "status": "abandoned", + "id": "0x37D6E7F287200C740012747d2A79295cAeD2DB35" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x37D6E7F287200C740012747d2A79295cAeD2DB35/logo.png b/blockchains/ethereum/assets/0x37D6E7F287200C740012747d2A79295cAeD2DB35/logo.png new file mode 100644 index 00000000..ac0a68a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x37D6E7F287200C740012747d2A79295cAeD2DB35/logo.png differ diff --git a/blockchains/ethereum/assets/0x37E1160184F7dD29f00b78C050Bf13224780b0B0/info.json b/blockchains/ethereum/assets/0x37E1160184F7dD29f00b78C050Bf13224780b0B0/info.json new file mode 100644 index 00000000..8b38d5ec --- /dev/null +++ b/blockchains/ethereum/assets/0x37E1160184F7dD29f00b78C050Bf13224780b0B0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yuan Chain New", + "symbol": "YCC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.yuan.org", + "explorer": "https://etherscan.io/token/0x37E1160184F7dD29f00b78C050Bf13224780b0B0", + "status": "abandoned", + "id": "0x37E1160184F7dD29f00b78C050Bf13224780b0B0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x37E1160184F7dD29f00b78C050Bf13224780b0B0/logo.png b/blockchains/ethereum/assets/0x37E1160184F7dD29f00b78C050Bf13224780b0B0/logo.png new file mode 100644 index 00000000..1f0b168f Binary files /dev/null and b/blockchains/ethereum/assets/0x37E1160184F7dD29f00b78C050Bf13224780b0B0/logo.png differ diff --git a/blockchains/ethereum/assets/0x37E8789bB9996CaC9156cD5F5Fd32599E6b91289/info.json b/blockchains/ethereum/assets/0x37E8789bB9996CaC9156cD5F5Fd32599E6b91289/info.json new file mode 100644 index 00000000..9fe2a750 --- /dev/null +++ b/blockchains/ethereum/assets/0x37E8789bB9996CaC9156cD5F5Fd32599E6b91289/info.json @@ -0,0 +1,11 @@ +{ + "name": "AidCoin", + "symbol": "AID", + "type": "ERC20", + "decimals": 18, + "description": "The AID token will power AIDChain, a platform that provides an ecosystem of services through an easy-to-use interface, connecting the non-profit community while allowing full transparency and traceability of donations.", + "website": "https://www.aidcoin.co/", + "explorer": "https://etherscan.io/token/0x37E8789bB9996CaC9156cD5F5Fd32599E6b91289", + "status": "active", + "id": "0x37E8789bB9996CaC9156cD5F5Fd32599E6b91289" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x37E8789bB9996CaC9156cD5F5Fd32599E6b91289/logo.png b/blockchains/ethereum/assets/0x37E8789bB9996CaC9156cD5F5Fd32599E6b91289/logo.png new file mode 100644 index 00000000..1c7ee3f6 Binary files /dev/null and b/blockchains/ethereum/assets/0x37E8789bB9996CaC9156cD5F5Fd32599E6b91289/logo.png differ diff --git a/blockchains/ethereum/assets/0x37F04d2C3AE075Fad5483bB918491F656B12BDB6/info.json b/blockchains/ethereum/assets/0x37F04d2C3AE075Fad5483bB918491F656B12BDB6/info.json new file mode 100644 index 00000000..cb9297bf --- /dev/null +++ b/blockchains/ethereum/assets/0x37F04d2C3AE075Fad5483bB918491F656B12BDB6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vestchain", + "symbol": "VEST", + "type": "ERC20", + "decimals": 8, + "description": "VestChain (VEST) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://vestchain.io/", + "explorer": "https://etherscan.io/token/0x37F04d2C3AE075Fad5483bB918491F656B12BDB6", + "status": "active", + "id": "0x37F04d2C3AE075Fad5483bB918491F656B12BDB6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x37F04d2C3AE075Fad5483bB918491F656B12BDB6/logo.png b/blockchains/ethereum/assets/0x37F04d2C3AE075Fad5483bB918491F656B12BDB6/logo.png new file mode 100644 index 00000000..83d09e79 Binary files /dev/null and b/blockchains/ethereum/assets/0x37F04d2C3AE075Fad5483bB918491F656B12BDB6/logo.png differ diff --git a/blockchains/ethereum/assets/0x37F74e99794853777a10ea1dc08a64C86958F06a/info.json b/blockchains/ethereum/assets/0x37F74e99794853777a10ea1dc08a64C86958F06a/info.json new file mode 100644 index 00000000..5001304f --- /dev/null +++ b/blockchains/ethereum/assets/0x37F74e99794853777a10ea1dc08a64C86958F06a/info.json @@ -0,0 +1,11 @@ +{ + "name": "D Community", + "symbol": "DILI", + "type": "ERC20", + "decimals": 18, + "description": "D Community describes itself as a blockchain-based youth community, which is upgraded from the ACG brand 'Dilidili'.", + "website": "http://2ds.one/", + "explorer": "https://etherscan.io/token/0x37F74e99794853777a10ea1dc08a64C86958F06a", + "status": "active", + "id": "0x37F74e99794853777a10ea1dc08a64C86958F06a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x37F74e99794853777a10ea1dc08a64C86958F06a/logo.png b/blockchains/ethereum/assets/0x37F74e99794853777a10ea1dc08a64C86958F06a/logo.png new file mode 100644 index 00000000..c33cadab Binary files /dev/null and b/blockchains/ethereum/assets/0x37F74e99794853777a10ea1dc08a64C86958F06a/logo.png differ diff --git a/blockchains/ethereum/assets/0x37fE0f067FA808fFBDd12891C0858532CFE7361d/info.json b/blockchains/ethereum/assets/0x37fE0f067FA808fFBDd12891C0858532CFE7361d/info.json new file mode 100644 index 00000000..5dfe8a33 --- /dev/null +++ b/blockchains/ethereum/assets/0x37fE0f067FA808fFBDd12891C0858532CFE7361d/info.json @@ -0,0 +1,45 @@ +{ + "name": "Civilization", + "website": "https://civfund.com", + "description": "The World's First 100% Decentralized Investment Fund (DIF)", + "explorer": "https://etherscan.io/token/0x37fE0f067FA808fFBDd12891C0858532CFE7361d", + "type": "ERC20", + "symbol": "CIV", + "decimals": 18, + "status": "active", + "id": "0x37fE0f067FA808fFBDd12891C0858532CFE7361d", + "links": [ + { + "name": "github", + "url": "https://github.com/sator-settler/civ-token" + }, + { + "name": "x", + "url": "https://x.com/token_civ" + }, + { + "name": "telegram", + "url": "https://t.me/civsettlers" + }, + { + "name": "medium", + "url": "https://medium.com/@sator-settler" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/civilization/" + }, + { + "name": "facebook", + "url": "https://facebook.com/Civilization-CIV-140053864869064" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/civfund/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/civilization/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x37fE0f067FA808fFBDd12891C0858532CFE7361d/logo.png b/blockchains/ethereum/assets/0x37fE0f067FA808fFBDd12891C0858532CFE7361d/logo.png new file mode 100644 index 00000000..202e9ebf Binary files /dev/null and b/blockchains/ethereum/assets/0x37fE0f067FA808fFBDd12891C0858532CFE7361d/logo.png differ diff --git a/blockchains/ethereum/assets/0x37fc75DB437f47d09b7fa2D19BD2FD2bF41a7A89/info.json b/blockchains/ethereum/assets/0x37fc75DB437f47d09b7fa2D19BD2FD2bF41a7A89/info.json new file mode 100644 index 00000000..7c9ea8b4 --- /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 00000000..1431d887 --- /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 00000000..3c65f718 Binary files /dev/null and b/blockchains/ethereum/assets/0x3807562A482B824C08A564DFefcc471806d3E00a/logo.png differ diff --git a/blockchains/ethereum/assets/0x3810A4Ddf41E586Fa0dbA1463A7951B748cEcFca/info.json b/blockchains/ethereum/assets/0x3810A4Ddf41E586Fa0dbA1463A7951B748cEcFca/info.json new file mode 100644 index 00000000..845e46cb --- /dev/null +++ b/blockchains/ethereum/assets/0x3810A4Ddf41E586Fa0dbA1463A7951B748cEcFca/info.json @@ -0,0 +1,11 @@ +{ + "name": "MPAY", + "symbol": "MPAY", + "type": "ERC20", + "decimals": 18, + "description": "MenaPay aims to replace cash and traditional banking tools used for online and offline transactions in daily life.", + "website": "https://www.menapay.io", + "explorer": "https://etherscan.io/token/0x3810A4Ddf41E586Fa0dbA1463A7951B748cEcFca", + "status": "active", + "id": "0x3810A4Ddf41E586Fa0dbA1463A7951B748cEcFca" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3810A4Ddf41E586Fa0dbA1463A7951B748cEcFca/logo.png b/blockchains/ethereum/assets/0x3810A4Ddf41E586Fa0dbA1463A7951B748cEcFca/logo.png new file mode 100644 index 00000000..725883e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x3810A4Ddf41E586Fa0dbA1463A7951B748cEcFca/logo.png differ diff --git a/blockchains/ethereum/assets/0x3814Ea6889b5ad7dA133F05D7567337286f03f76/info.json b/blockchains/ethereum/assets/0x3814Ea6889b5ad7dA133F05D7567337286f03f76/info.json new file mode 100644 index 00000000..82dd2e33 --- /dev/null +++ b/blockchains/ethereum/assets/0x3814Ea6889b5ad7dA133F05D7567337286f03f76/info.json @@ -0,0 +1,11 @@ +{ + "name": "Novo Real", + "symbol": "NRL", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3814Ea6889b5ad7dA133F05D7567337286f03f76", + "status": "abandoned", + "id": "0x3814Ea6889b5ad7dA133F05D7567337286f03f76" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3814Ea6889b5ad7dA133F05D7567337286f03f76/logo.png b/blockchains/ethereum/assets/0x3814Ea6889b5ad7dA133F05D7567337286f03f76/logo.png new file mode 100644 index 00000000..8c16f6d9 Binary files /dev/null and b/blockchains/ethereum/assets/0x3814Ea6889b5ad7dA133F05D7567337286f03f76/logo.png differ diff --git a/blockchains/ethereum/assets/0x382117315856a533549eA621542Ccce13E54aE82/info.json b/blockchains/ethereum/assets/0x382117315856a533549eA621542Ccce13E54aE82/info.json new file mode 100644 index 00000000..45bbf7de --- /dev/null +++ b/blockchains/ethereum/assets/0x382117315856a533549eA621542Ccce13E54aE82/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitBall", + "symbol": "BTB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x382117315856a533549eA621542Ccce13E54aE82", + "status": "abandoned", + "id": "0x382117315856a533549eA621542Ccce13E54aE82" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x382117315856a533549eA621542Ccce13E54aE82/logo.png b/blockchains/ethereum/assets/0x382117315856a533549eA621542Ccce13E54aE82/logo.png new file mode 100644 index 00000000..b93d4891 Binary files /dev/null and b/blockchains/ethereum/assets/0x382117315856a533549eA621542Ccce13E54aE82/logo.png differ diff --git a/blockchains/ethereum/assets/0x382ea807A61a418479318Efd96F1EFbC5c1F2C21/info.json b/blockchains/ethereum/assets/0x382ea807A61a418479318Efd96F1EFbC5c1F2C21/info.json new file mode 100644 index 00000000..c3166839 --- /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 00000000..633d4986 Binary files /dev/null and b/blockchains/ethereum/assets/0x382ea807A61a418479318Efd96F1EFbC5c1F2C21/logo.png differ diff --git a/blockchains/ethereum/assets/0x382f0160c24f5c515A19f155BAc14d479433A407/info.json b/blockchains/ethereum/assets/0x382f0160c24f5c515A19f155BAc14d479433A407/info.json new file mode 100644 index 00000000..56ecb454 --- /dev/null +++ b/blockchains/ethereum/assets/0x382f0160c24f5c515A19f155BAc14d479433A407/info.json @@ -0,0 +1,14 @@ +{ + "name": "Klee Kai", + "website": "https://klee.finance/", + "description": "KLEE Kai, the last of its kind, the forgotten doge of ETH.", + "explorer": "https://etherscan.io/token/0x382f0160c24f5c515A19f155BAc14d479433A407", + "type": "ERC20", + "symbol": "KLEE", + "decimals": 9, + "status": "abandoned", + "id": "0x382f0160c24f5c515A19f155BAc14d479433A407", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3833ddA0AEB6947b98cE454d89366cBA8Cc55528/info.json b/blockchains/ethereum/assets/0x3833ddA0AEB6947b98cE454d89366cBA8Cc55528/info.json new file mode 100644 index 00000000..4495e84c --- /dev/null +++ b/blockchains/ethereum/assets/0x3833ddA0AEB6947b98cE454d89366cBA8Cc55528/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPHTX", + "symbol": "SPHTX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.sophiatx.com/", + "explorer": "https://etherscan.io/token/0x3833ddA0AEB6947b98cE454d89366cBA8Cc55528", + "status": "abandoned", + "id": "0x3833ddA0AEB6947b98cE454d89366cBA8Cc55528" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3833ddA0AEB6947b98cE454d89366cBA8Cc55528/logo.png b/blockchains/ethereum/assets/0x3833ddA0AEB6947b98cE454d89366cBA8Cc55528/logo.png new file mode 100755 index 00000000..c6c94967 Binary files /dev/null and b/blockchains/ethereum/assets/0x3833ddA0AEB6947b98cE454d89366cBA8Cc55528/logo.png differ diff --git a/blockchains/ethereum/assets/0x383518188C0C6d7730D91b2c03a03C837814a899/info.json b/blockchains/ethereum/assets/0x383518188C0C6d7730D91b2c03a03C837814a899/info.json new file mode 100644 index 00000000..1ae21b99 --- /dev/null +++ b/blockchains/ethereum/assets/0x383518188C0C6d7730D91b2c03a03C837814a899/info.json @@ -0,0 +1,11 @@ +{ + "name": "OlympusDAO", + "symbol": "OHM", + "type": "ERC20", + "decimals": 9, + "description": "Olympus (OHM) aims to become a decentralized reserve currency that is community owned, governed by a DAO, and backed by decentralized assets.", + "website": "https://olympusdao.finance", + "explorer": "https://etherscan.io/token/0x383518188C0C6d7730D91b2c03a03C837814a899", + "status": "active", + "id": "0x383518188C0C6d7730D91b2c03a03C837814a899" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x383518188C0C6d7730D91b2c03a03C837814a899/logo.png b/blockchains/ethereum/assets/0x383518188C0C6d7730D91b2c03a03C837814a899/logo.png new file mode 100644 index 00000000..35a09f0f Binary files /dev/null and b/blockchains/ethereum/assets/0x383518188C0C6d7730D91b2c03a03C837814a899/logo.png differ diff --git a/blockchains/ethereum/assets/0x383891338E0e377b1B995f543758b998eb87D065/info.json b/blockchains/ethereum/assets/0x383891338E0e377b1B995f543758b998eb87D065/info.json new file mode 100644 index 00000000..d3781b0a --- /dev/null +++ b/blockchains/ethereum/assets/0x383891338E0e377b1B995f543758b998eb87D065/info.json @@ -0,0 +1,11 @@ +{ + "name": "GBHub Pro", + "symbol": "GBP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x383891338E0e377b1B995f543758b998eb87D065", + "status": "abandoned", + "id": "0x383891338E0e377b1B995f543758b998eb87D065" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x383891338E0e377b1B995f543758b998eb87D065/logo.png b/blockchains/ethereum/assets/0x383891338E0e377b1B995f543758b998eb87D065/logo.png new file mode 100644 index 00000000..50fc6c87 Binary files /dev/null and b/blockchains/ethereum/assets/0x383891338E0e377b1B995f543758b998eb87D065/logo.png differ diff --git a/blockchains/ethereum/assets/0x3839d8ba312751Aa0248fEd6a8bACB84308E20Ed/info.json b/blockchains/ethereum/assets/0x3839d8ba312751Aa0248fEd6a8bACB84308E20Ed/info.json new file mode 100644 index 00000000..d5c366ce --- /dev/null +++ b/blockchains/ethereum/assets/0x3839d8ba312751Aa0248fEd6a8bACB84308E20Ed/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bezop", + "symbol": "Bez", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bezop.io", + "explorer": "https://etherscan.io/token/0x3839d8ba312751Aa0248fEd6a8bACB84308E20Ed", + "status": "abandoned", + "id": "0x3839d8ba312751Aa0248fEd6a8bACB84308E20Ed" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3839d8ba312751Aa0248fEd6a8bACB84308E20Ed/logo.png b/blockchains/ethereum/assets/0x3839d8ba312751Aa0248fEd6a8bACB84308E20Ed/logo.png new file mode 100644 index 00000000..e28f639d Binary files /dev/null and b/blockchains/ethereum/assets/0x3839d8ba312751Aa0248fEd6a8bACB84308E20Ed/logo.png differ diff --git a/blockchains/ethereum/assets/0x3845badAde8e6dFF049820680d1F14bD3903a5d0/info.json b/blockchains/ethereum/assets/0x3845badAde8e6dFF049820680d1F14bD3903a5d0/info.json new file mode 100644 index 00000000..9ac135b2 --- /dev/null +++ b/blockchains/ethereum/assets/0x3845badAde8e6dFF049820680d1F14bD3903a5d0/info.json @@ -0,0 +1,16 @@ +{ + "name": "The Sandbox", + "website": "https://sandbox.game/en", + "description": "The SAND token is an ERC-20 utility token that is used for value transfers as well as staking and governance.", + "explorer": "https://etherscan.io/token/0x3845badAde8e6dFF049820680d1F14bD3903a5d0", + "research": "https://research.binance.com/en/projects/the-sandbox", + "type": "ERC20", + "symbol": "SAND", + "decimals": 18, + "status": "active", + "id": "0x3845badAde8e6dFF049820680d1F14bD3903a5d0", + "tags": [ + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3845badAde8e6dFF049820680d1F14bD3903a5d0/logo.png b/blockchains/ethereum/assets/0x3845badAde8e6dFF049820680d1F14bD3903a5d0/logo.png new file mode 100644 index 00000000..5b4fa743 Binary files /dev/null and b/blockchains/ethereum/assets/0x3845badAde8e6dFF049820680d1F14bD3903a5d0/logo.png differ diff --git a/blockchains/ethereum/assets/0x384EFd1e8B05c23dC392a40cB4E515E2229a5243/info.json b/blockchains/ethereum/assets/0x384EFd1e8B05c23dC392a40cB4E515E2229a5243/info.json new file mode 100644 index 00000000..7e2e1ab0 --- /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 00000000..632bfc06 Binary files /dev/null and b/blockchains/ethereum/assets/0x384EFd1e8B05c23dC392a40cB4E515E2229a5243/logo.png differ diff --git a/blockchains/ethereum/assets/0x38513Db82BE1FB417Ad21DC8f25BD7e7Eb03b561/info.json b/blockchains/ethereum/assets/0x38513Db82BE1FB417Ad21DC8f25BD7e7Eb03b561/info.json new file mode 100644 index 00000000..abf98cf7 --- /dev/null +++ b/blockchains/ethereum/assets/0x38513Db82BE1FB417Ad21DC8f25BD7e7Eb03b561/info.json @@ -0,0 +1,11 @@ +{ + "name": "Iron", + "symbol": "CSC-IR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x38513Db82BE1FB417Ad21DC8f25BD7e7Eb03b561", + "status": "abandoned", + "id": "0x38513Db82BE1FB417Ad21DC8f25BD7e7Eb03b561" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38513Db82BE1FB417Ad21DC8f25BD7e7Eb03b561/logo.png b/blockchains/ethereum/assets/0x38513Db82BE1FB417Ad21DC8f25BD7e7Eb03b561/logo.png new file mode 100755 index 00000000..ded2309d Binary files /dev/null and b/blockchains/ethereum/assets/0x38513Db82BE1FB417Ad21DC8f25BD7e7Eb03b561/logo.png differ diff --git a/blockchains/ethereum/assets/0x3859385363f7BB4Dfe42811cCF3F294FcD41dd1D/info.json b/blockchains/ethereum/assets/0x3859385363f7BB4Dfe42811cCF3F294FcD41dd1D/info.json new file mode 100644 index 00000000..1a551529 --- /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 00000000..72a81c9f Binary files /dev/null and b/blockchains/ethereum/assets/0x3859385363f7BB4Dfe42811cCF3F294FcD41dd1D/logo.png differ diff --git a/blockchains/ethereum/assets/0x386467F1f3ddbE832448650418311a479EECFC57/info.json b/blockchains/ethereum/assets/0x386467F1f3ddbE832448650418311a479EECFC57/info.json new file mode 100644 index 00000000..f98076b8 --- /dev/null +++ b/blockchains/ethereum/assets/0x386467F1f3ddbE832448650418311a479EECFC57/info.json @@ -0,0 +1,11 @@ +{ + "name": "Embers", + "symbol": "EMB", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x386467F1f3ddbE832448650418311a479EECFC57", + "status": "abandoned", + "id": "0x386467F1f3ddbE832448650418311a479EECFC57" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x386467F1f3ddbE832448650418311a479EECFC57/logo.png b/blockchains/ethereum/assets/0x386467F1f3ddbE832448650418311a479EECFC57/logo.png new file mode 100644 index 00000000..9eeed375 Binary files /dev/null and b/blockchains/ethereum/assets/0x386467F1f3ddbE832448650418311a479EECFC57/logo.png differ diff --git a/blockchains/ethereum/assets/0x386A09ece8a44D2b4befb21Bd1469d0D8F83c00D/info.json b/blockchains/ethereum/assets/0x386A09ece8a44D2b4befb21Bd1469d0D8F83c00D/info.json new file mode 100644 index 00000000..faa69f2b --- /dev/null +++ b/blockchains/ethereum/assets/0x386A09ece8a44D2b4befb21Bd1469d0D8F83c00D/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R738007", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x386A09ece8a44D2b4befb21Bd1469d0D8F83c00D", + "status": "abandoned", + "id": "0x386A09ece8a44D2b4befb21Bd1469d0D8F83c00D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x386A09ece8a44D2b4befb21Bd1469d0D8F83c00D/logo.png b/blockchains/ethereum/assets/0x386A09ece8a44D2b4befb21Bd1469d0D8F83c00D/logo.png new file mode 100644 index 00000000..86c551b8 Binary files /dev/null and b/blockchains/ethereum/assets/0x386A09ece8a44D2b4befb21Bd1469d0D8F83c00D/logo.png differ diff --git a/blockchains/ethereum/assets/0x386cABc0b14A507A4e024DEA15554342865B20DE/info.json b/blockchains/ethereum/assets/0x386cABc0b14A507A4e024DEA15554342865B20DE/info.json new file mode 100644 index 00000000..ee582ad3 --- /dev/null +++ b/blockchains/ethereum/assets/0x386cABc0b14A507A4e024DEA15554342865B20DE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dapp Token", + "symbol": "DAPPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.dapp.com", + "explorer": "https://etherscan.io/token/0x386cABc0b14A507A4e024DEA15554342865B20DE", + "status": "abandoned", + "id": "0x386cABc0b14A507A4e024DEA15554342865B20DE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x386cABc0b14A507A4e024DEA15554342865B20DE/logo.png b/blockchains/ethereum/assets/0x386cABc0b14A507A4e024DEA15554342865B20DE/logo.png new file mode 100644 index 00000000..d65b2d84 Binary files /dev/null and b/blockchains/ethereum/assets/0x386cABc0b14A507A4e024DEA15554342865B20DE/logo.png differ diff --git a/blockchains/ethereum/assets/0x386dd8f88994f848763060672580Ea61676cD601/info.json b/blockchains/ethereum/assets/0x386dd8f88994f848763060672580Ea61676cD601/info.json new file mode 100644 index 00000000..ba9adacb --- /dev/null +++ b/blockchains/ethereum/assets/0x386dd8f88994f848763060672580Ea61676cD601/info.json @@ -0,0 +1,11 @@ +{ + "name": "GroupToken", + "symbol": "Group", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x386dd8f88994f848763060672580Ea61676cD601", + "status": "abandoned", + "id": "0x386dd8f88994f848763060672580Ea61676cD601" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x386dd8f88994f848763060672580Ea61676cD601/logo.png b/blockchains/ethereum/assets/0x386dd8f88994f848763060672580Ea61676cD601/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x386dd8f88994f848763060672580Ea61676cD601/logo.png differ diff --git a/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/info.json b/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/info.json new file mode 100644 index 00000000..37197745 --- /dev/null +++ b/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/info.json @@ -0,0 +1,11 @@ +{ + "name": "Theta Network", + "type": "ERC20", + "symbol": "THETA", + "decimals": 18, + "website": "https://www.thetatoken.org/", + "description": "--", + "explorer": "https://etherscan.io/token/0x3883f5e181fccaf8410fa61e12b59bad963fb645", + "status": "abandoned", + "id": "0x3883f5e181fccaF8410FA61e12b59BAd963fb645" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38894302A6eABea6f2B29B508031d2ed75F0bE22/info.json b/blockchains/ethereum/assets/0x38894302A6eABea6f2B29B508031d2ed75F0bE22/info.json new file mode 100644 index 00000000..a3ddf411 --- /dev/null +++ b/blockchains/ethereum/assets/0x38894302A6eABea6f2B29B508031d2ed75F0bE22/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fearless", + "symbol": "FEAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x38894302A6eABea6f2B29B508031d2ed75F0bE22", + "status": "abandoned", + "id": "0x38894302A6eABea6f2B29B508031d2ed75F0bE22" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38894302A6eABea6f2B29B508031d2ed75F0bE22/logo.png b/blockchains/ethereum/assets/0x38894302A6eABea6f2B29B508031d2ed75F0bE22/logo.png new file mode 100644 index 00000000..3a729ed8 Binary files /dev/null and b/blockchains/ethereum/assets/0x38894302A6eABea6f2B29B508031d2ed75F0bE22/logo.png differ diff --git a/blockchains/ethereum/assets/0x388fbFf7fef6CEe150E4820BBD4e22C377E80201/info.json b/blockchains/ethereum/assets/0x388fbFf7fef6CEe150E4820BBD4e22C377E80201/info.json new file mode 100644 index 00000000..8ab98743 --- /dev/null +++ b/blockchains/ethereum/assets/0x388fbFf7fef6CEe150E4820BBD4e22C377E80201/info.json @@ -0,0 +1,11 @@ +{ + "name": "Techno Defi Solution", + "symbol": "TDS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x388fbFf7fef6CEe150E4820BBD4e22C377E80201", + "status": "abandoned", + "id": "0x388fbFf7fef6CEe150E4820BBD4e22C377E80201" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x388fbFf7fef6CEe150E4820BBD4e22C377E80201/logo.png b/blockchains/ethereum/assets/0x388fbFf7fef6CEe150E4820BBD4e22C377E80201/logo.png new file mode 100644 index 00000000..3369c3c7 Binary files /dev/null and b/blockchains/ethereum/assets/0x388fbFf7fef6CEe150E4820BBD4e22C377E80201/logo.png differ diff --git a/blockchains/ethereum/assets/0x3893b9422Cd5D70a81eDeFfe3d5A1c6A978310BB/info.json b/blockchains/ethereum/assets/0x3893b9422Cd5D70a81eDeFfe3d5A1c6A978310BB/info.json new file mode 100644 index 00000000..5331de45 --- /dev/null +++ b/blockchains/ethereum/assets/0x3893b9422Cd5D70a81eDeFfe3d5A1c6A978310BB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mithril Token", + "symbol": "MITH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://mith.io/", + "explorer": "https://etherscan.io/token/0x3893b9422Cd5D70a81eDeFfe3d5A1c6A978310BB", + "status": "abandoned", + "id": "0x3893b9422Cd5D70a81eDeFfe3d5A1c6A978310BB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3893b9422Cd5D70a81eDeFfe3d5A1c6A978310BB/logo.png b/blockchains/ethereum/assets/0x3893b9422Cd5D70a81eDeFfe3d5A1c6A978310BB/logo.png new file mode 100755 index 00000000..737dae9b Binary files /dev/null and b/blockchains/ethereum/assets/0x3893b9422Cd5D70a81eDeFfe3d5A1c6A978310BB/logo.png differ diff --git a/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/info.json b/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/info.json new file mode 100644 index 00000000..51cc7c17 --- /dev/null +++ b/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/info.json @@ -0,0 +1,36 @@ +{ + "name": "FEG Token", + "type": "ERC20", + "symbol": "FEGeth", + "decimals": 9, + "description": "FEG is a decentralized token that has developed the first fork to combine the powers of Shiba Inu (SHIB) and reflect.finance (RFI) with a super deflationary black hole that hyper-deflates the supply of the FEG governance token.", + "website": "https://fegtoken.com", + "explorer": "https://etherscan.io/token/0x389999216860ab8e0175387a0c90e5c52522c945", + "id": "0x389999216860AB8E0175387A0c90E5c52522C945", + "status": "abandoned", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/fegtoken" + }, + { + "name": "telegram", + "url": "https://t.me/fegchat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/K372n4NkbJ" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/FegToken_Official/" + }, + { + "name": "medium", + "url": "https://fegtoken.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38A0df9a08d18dc06CD91Fc7Ec94a0AcdF28D994/info.json b/blockchains/ethereum/assets/0x38A0df9a08d18dc06CD91Fc7Ec94a0AcdF28D994/info.json new file mode 100644 index 00000000..96d3f29a --- /dev/null +++ b/blockchains/ethereum/assets/0x38A0df9a08d18dc06CD91Fc7Ec94a0AcdF28D994/info.json @@ -0,0 +1,11 @@ +{ + "name": "Huptex", + "symbol": "HTX", + "type": "ERC20", + "decimals": 2, + "description": "HTX describes itself as a side-chain, relay matching node network for asset settlement and trading matching based on Ethereum.", + "website": "https://huptex.io/", + "explorer": "https://etherscan.io/token/0x38A0df9a08d18dc06CD91Fc7Ec94a0AcdF28D994", + "status": "active", + "id": "0x38A0df9a08d18dc06CD91Fc7Ec94a0AcdF28D994" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38A0df9a08d18dc06CD91Fc7Ec94a0AcdF28D994/logo.png b/blockchains/ethereum/assets/0x38A0df9a08d18dc06CD91Fc7Ec94a0AcdF28D994/logo.png new file mode 100644 index 00000000..e92bf820 Binary files /dev/null and b/blockchains/ethereum/assets/0x38A0df9a08d18dc06CD91Fc7Ec94a0AcdF28D994/logo.png differ diff --git a/blockchains/ethereum/assets/0x38A2fDc11f526Ddd5a607C1F251C065f40fBF2f7/info.json b/blockchains/ethereum/assets/0x38A2fDc11f526Ddd5a607C1F251C065f40fBF2f7/info.json new file mode 100644 index 00000000..24c2b406 --- /dev/null +++ b/blockchains/ethereum/assets/0x38A2fDc11f526Ddd5a607C1F251C065f40fBF2f7/info.json @@ -0,0 +1,12 @@ +{ + "name": "PhoenixDAO Token", + "website": "https://phoenixdao.io", + "description": "Digital identity and authentication protocols to power the next generation of DeFi apps.", + "explorer": "https://etherscan.io/token/0x38A2fDc11f526Ddd5a607C1F251C065f40fBF2f7", + "type": "ERC20", + "symbol": "PHNX", + "decimals": 18, + "status": "active", + "id": "0x38A2fDc11f526Ddd5a607C1F251C065f40fBF2f7", + "short_description": "Digital identity and authentication protocols to power the next generation of DeFi apps." +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38A2fDc11f526Ddd5a607C1F251C065f40fBF2f7/logo.png b/blockchains/ethereum/assets/0x38A2fDc11f526Ddd5a607C1F251C065f40fBF2f7/logo.png new file mode 100644 index 00000000..0eb61acc Binary files /dev/null and b/blockchains/ethereum/assets/0x38A2fDc11f526Ddd5a607C1F251C065f40fBF2f7/logo.png differ diff --git a/blockchains/ethereum/assets/0x38B7014ed2a83bc5801232551344Ed928698bd07/info.json b/blockchains/ethereum/assets/0x38B7014ed2a83bc5801232551344Ed928698bd07/info.json new file mode 100644 index 00000000..2dcc831b --- /dev/null +++ b/blockchains/ethereum/assets/0x38B7014ed2a83bc5801232551344Ed928698bd07/info.json @@ -0,0 +1,11 @@ +{ + "name": "Incinerate Token v2", + "symbol": "INC8", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x38B7014ed2a83bc5801232551344Ed928698bd07", + "status": "abandoned", + "id": "0x38B7014ed2a83bc5801232551344Ed928698bd07" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38B7014ed2a83bc5801232551344Ed928698bd07/logo.png b/blockchains/ethereum/assets/0x38B7014ed2a83bc5801232551344Ed928698bd07/logo.png new file mode 100644 index 00000000..1bd3a3eb Binary files /dev/null and b/blockchains/ethereum/assets/0x38B7014ed2a83bc5801232551344Ed928698bd07/logo.png differ diff --git a/blockchains/ethereum/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/info.json b/blockchains/ethereum/assets/0x38BAC69cbBd28156796e4163B2B6dcb81E336565/info.json new file mode 100644 index 00000000..432af3b9 --- /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 00000000..e437be04 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 00000000..2483ec0f --- /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/0x38D389C300357A26Beec198F3893fbA54FDe69C5/info.json b/blockchains/ethereum/assets/0x38D389C300357A26Beec198F3893fbA54FDe69C5/info.json new file mode 100644 index 00000000..eab032d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x38D389C300357A26Beec198F3893fbA54FDe69C5/info.json @@ -0,0 +1,11 @@ +{ + "name": "PayUSD", + "symbol": "PUSD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x38D389C300357A26Beec198F3893fbA54FDe69C5", + "status": "abandoned", + "id": "0x38D389C300357A26Beec198F3893fbA54FDe69C5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38D389C300357A26Beec198F3893fbA54FDe69C5/logo.png b/blockchains/ethereum/assets/0x38D389C300357A26Beec198F3893fbA54FDe69C5/logo.png new file mode 100644 index 00000000..ea23b098 Binary files /dev/null and b/blockchains/ethereum/assets/0x38D389C300357A26Beec198F3893fbA54FDe69C5/logo.png differ diff --git a/blockchains/ethereum/assets/0x38D5e1f36eCa1Dcf9b8B400aD034c9BB875A14Da/info.json b/blockchains/ethereum/assets/0x38D5e1f36eCa1Dcf9b8B400aD034c9BB875A14Da/info.json new file mode 100644 index 00000000..36f4abca --- /dev/null +++ b/blockchains/ethereum/assets/0x38D5e1f36eCa1Dcf9b8B400aD034c9BB875A14Da/info.json @@ -0,0 +1,11 @@ +{ + "name": "FUTURAX", + "symbol": "FXC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x38D5e1f36eCa1Dcf9b8B400aD034c9BB875A14Da", + "status": "abandoned", + "id": "0x38D5e1f36eCa1Dcf9b8B400aD034c9BB875A14Da" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38D5e1f36eCa1Dcf9b8B400aD034c9BB875A14Da/logo.png b/blockchains/ethereum/assets/0x38D5e1f36eCa1Dcf9b8B400aD034c9BB875A14Da/logo.png new file mode 100755 index 00000000..3e8176e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x38D5e1f36eCa1Dcf9b8B400aD034c9BB875A14Da/logo.png differ diff --git a/blockchains/ethereum/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/info.json b/blockchains/ethereum/assets/0x38E0445308E7FcD5230F2DF6b52B36DD4FF313b6/info.json new file mode 100644 index 00000000..7663b753 --- /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 00000000..1407faec 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 00000000..14899462 --- /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 00000000..f76637d7 Binary files /dev/null and b/blockchains/ethereum/assets/0x38E68A37E401F7271568CecaAc63c6B1e19130B4/logo.png differ diff --git a/blockchains/ethereum/assets/0x38EE6cE5b38Dc3AFb8de706FFf527f6fAE4d9eC1/info.json b/blockchains/ethereum/assets/0x38EE6cE5b38Dc3AFb8de706FFf527f6fAE4d9eC1/info.json new file mode 100644 index 00000000..40a2b694 --- /dev/null +++ b/blockchains/ethereum/assets/0x38EE6cE5b38Dc3AFb8de706FFf527f6fAE4d9eC1/info.json @@ -0,0 +1,11 @@ +{ + "name": "DogeFi.finance", + "symbol": "DogeFi", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x38EE6cE5b38Dc3AFb8de706FFf527f6fAE4d9eC1", + "status": "abandoned", + "id": "0x38EE6cE5b38Dc3AFb8de706FFf527f6fAE4d9eC1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38EE6cE5b38Dc3AFb8de706FFf527f6fAE4d9eC1/logo.png b/blockchains/ethereum/assets/0x38EE6cE5b38Dc3AFb8de706FFf527f6fAE4d9eC1/logo.png new file mode 100644 index 00000000..68ddafaa Binary files /dev/null and b/blockchains/ethereum/assets/0x38EE6cE5b38Dc3AFb8de706FFf527f6fAE4d9eC1/logo.png differ diff --git a/blockchains/ethereum/assets/0x38Ef3d08eFc74857CC129E9e6026b0d4DB9AadA9/info.json b/blockchains/ethereum/assets/0x38Ef3d08eFc74857CC129E9e6026b0d4DB9AadA9/info.json new file mode 100644 index 00000000..293a32cd --- /dev/null +++ b/blockchains/ethereum/assets/0x38Ef3d08eFc74857CC129E9e6026b0d4DB9AadA9/info.json @@ -0,0 +1,11 @@ +{ + "name": "ExhibitToken", + "symbol": "EXIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x38Ef3d08eFc74857CC129E9e6026b0d4DB9AadA9", + "status": "abandoned", + "id": "0x38Ef3d08eFc74857CC129E9e6026b0d4DB9AadA9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38Ef3d08eFc74857CC129E9e6026b0d4DB9AadA9/logo.png b/blockchains/ethereum/assets/0x38Ef3d08eFc74857CC129E9e6026b0d4DB9AadA9/logo.png new file mode 100755 index 00000000..f9df61dc Binary files /dev/null and b/blockchains/ethereum/assets/0x38Ef3d08eFc74857CC129E9e6026b0d4DB9AadA9/logo.png differ diff --git a/blockchains/ethereum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/ethereum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 00000000..53a767d9 --- /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 00000000..c34f31c6 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 new file mode 100644 index 00000000..583e158d --- /dev/null +++ b/blockchains/ethereum/assets/0x38c4102D11893351cED7eF187fCF43D33eb1aBE6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shrimp.Finance(SHRIMP)", + "website": "https://shrimp.finance/", + "description": "SHRIMP is an entirely decentralized protocol, similar to YAM but without the shortcomings of YAM. Which practices elastic supply, and fair distribution", + "explorer": "https://etherscan.io/token/0x38c4102D11893351cED7eF187fCF43D33eb1aBE6", + "type": "ERC20", + "symbol": "SHRIMP", + "decimals": 18, + "status": "active", + "id": "0x38c4102D11893351cED7eF187fCF43D33eb1aBE6", + "links": [ + { + "name": "github", + "url": "https://github.com/shrimp-finance/shrimp-protocol" + }, + { + "name": "x", + "url": "https://x.com/FinanceShrimp" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38c4102D11893351cED7eF187fCF43D33eb1aBE6/logo.png b/blockchains/ethereum/assets/0x38c4102D11893351cED7eF187fCF43D33eb1aBE6/logo.png new file mode 100644 index 00000000..5c1c7b5d Binary files /dev/null and b/blockchains/ethereum/assets/0x38c4102D11893351cED7eF187fCF43D33eb1aBE6/logo.png differ diff --git a/blockchains/ethereum/assets/0x38c5499aC70DF829Ba90d05be65F69365CeAeEf8/info.json b/blockchains/ethereum/assets/0x38c5499aC70DF829Ba90d05be65F69365CeAeEf8/info.json new file mode 100644 index 00000000..79b31df9 --- /dev/null +++ b/blockchains/ethereum/assets/0x38c5499aC70DF829Ba90d05be65F69365CeAeEf8/info.json @@ -0,0 +1,11 @@ +{ + "name": "SkyWay Token", + "symbol": "SWT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x38c5499aC70DF829Ba90d05be65F69365CeAeEf8", + "status": "abandoned", + "id": "0x38c5499aC70DF829Ba90d05be65F69365CeAeEf8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38c5499aC70DF829Ba90d05be65F69365CeAeEf8/logo.png b/blockchains/ethereum/assets/0x38c5499aC70DF829Ba90d05be65F69365CeAeEf8/logo.png new file mode 100644 index 00000000..0d14f8b2 Binary files /dev/null and b/blockchains/ethereum/assets/0x38c5499aC70DF829Ba90d05be65F69365CeAeEf8/logo.png differ diff --git a/blockchains/ethereum/assets/0x38c87AA89B2B8cD9B95b736e1Fa7b612EA972169/info.json b/blockchains/ethereum/assets/0x38c87AA89B2B8cD9B95b736e1Fa7b612EA972169/info.json new file mode 100644 index 00000000..0beeeffa --- /dev/null +++ b/blockchains/ethereum/assets/0x38c87AA89B2B8cD9B95b736e1Fa7b612EA972169/info.json @@ -0,0 +1,11 @@ +{ + "name": "AMO Coin", + "symbol": "AMO", + "type": "ERC20", + "decimals": 18, + "description": "AMO Coin (AMO) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://amo.foundation", + "explorer": "https://etherscan.io/token/0x38c87AA89B2B8cD9B95b736e1Fa7b612EA972169", + "status": "active", + "id": "0x38c87AA89B2B8cD9B95b736e1Fa7b612EA972169" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38c87AA89B2B8cD9B95b736e1Fa7b612EA972169/logo.png b/blockchains/ethereum/assets/0x38c87AA89B2B8cD9B95b736e1Fa7b612EA972169/logo.png new file mode 100644 index 00000000..3063c9ab Binary files /dev/null and b/blockchains/ethereum/assets/0x38c87AA89B2B8cD9B95b736e1Fa7b612EA972169/logo.png differ diff --git a/blockchains/ethereum/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json b/blockchains/ethereum/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json new file mode 100644 index 00000000..a783b064 --- /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 00000000..9fa7dad0 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 new file mode 100644 index 00000000..8a5bc0db --- /dev/null +++ b/blockchains/ethereum/assets/0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1/info.json @@ -0,0 +1,33 @@ +{ + "name": "Concentrated Voting Power", + "website": "https://powerpool.finance/", + "description": "PowerPool is a solution for accumulating governance power in Ethereum-based protocols by pooling tokens (COMP, BAL, LEND, YFI, BZRX, AKRO, etc.). The CVP token name refers to Concentrated Voting Power: CVP holders decide how pooled GTs will vote when the vote occurs in their root protocol. Also, CVP holders govern the entire protocol (key ecosystem variables, collateral types, adding new pools).", + "explorer": "https://etherscan.io/token/0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1", + "type": "ERC20", + "symbol": "CVP", + "decimals": 18, + "status": "active", + "id": "0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1", + "links": [ + { + "name": "github", + "url": "https://github.com/powerpool-finance" + }, + { + "name": "x", + "url": "https://x.com/powerpoolcvp" + }, + { + "name": "telegram", + "url": "https://t.me/powerpoolcvp" + }, + { + "name": "discord", + "url": "https://discord.com/invite/hYJXUBQ" + }, + { + "name": "medium", + "url": "https://link.medium.com/bWcPgVnpN8" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1/logo.png b/blockchains/ethereum/assets/0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1/logo.png new file mode 100644 index 00000000..0276f0db Binary files /dev/null and b/blockchains/ethereum/assets/0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1/logo.png differ diff --git a/blockchains/ethereum/assets/0x38eF9841bAA499aEC437f3Efe6aD802699eE03A6/info.json b/blockchains/ethereum/assets/0x38eF9841bAA499aEC437f3Efe6aD802699eE03A6/info.json new file mode 100644 index 00000000..7a0a07e3 --- /dev/null +++ b/blockchains/ethereum/assets/0x38eF9841bAA499aEC437f3Efe6aD802699eE03A6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockchain Coin", + "symbol": "EURD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x38eF9841bAA499aEC437f3Efe6aD802699eE03A6", + "status": "abandoned", + "id": "0x38eF9841bAA499aEC437f3Efe6aD802699eE03A6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38eF9841bAA499aEC437f3Efe6aD802699eE03A6/logo.png b/blockchains/ethereum/assets/0x38eF9841bAA499aEC437f3Efe6aD802699eE03A6/logo.png new file mode 100644 index 00000000..bdfa278f Binary files /dev/null and b/blockchains/ethereum/assets/0x38eF9841bAA499aEC437f3Efe6aD802699eE03A6/logo.png differ diff --git a/blockchains/ethereum/assets/0x39013F961c378f02C2b82A6E1d31E9812786FD9D/info.json b/blockchains/ethereum/assets/0x39013F961c378f02C2b82A6E1d31E9812786FD9D/info.json new file mode 100644 index 00000000..1ad18e3f --- /dev/null +++ b/blockchains/ethereum/assets/0x39013F961c378f02C2b82A6E1d31E9812786FD9D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Speed Mining Service", + "symbol": "SMS", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x39013F961c378f02C2b82A6E1d31E9812786FD9D", + "status": "abandoned", + "id": "0x39013F961c378f02C2b82A6E1d31E9812786FD9D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x39013F961c378f02C2b82A6E1d31E9812786FD9D/logo.png b/blockchains/ethereum/assets/0x39013F961c378f02C2b82A6E1d31E9812786FD9D/logo.png new file mode 100644 index 00000000..2a0efab0 Binary files /dev/null and b/blockchains/ethereum/assets/0x39013F961c378f02C2b82A6E1d31E9812786FD9D/logo.png differ diff --git a/blockchains/ethereum/assets/0x39043aae9c48a628F5184Af7a5bB925137757B15/info.json b/blockchains/ethereum/assets/0x39043aae9c48a628F5184Af7a5bB925137757B15/info.json new file mode 100644 index 00000000..049c242e --- /dev/null +++ b/blockchains/ethereum/assets/0x39043aae9c48a628F5184Af7a5bB925137757B15/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yattaqi Pro", + "symbol": "YATX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x39043aae9c48a628F5184Af7a5bB925137757B15", + "status": "abandoned", + "id": "0x39043aae9c48a628F5184Af7a5bB925137757B15" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x39043aae9c48a628F5184Af7a5bB925137757B15/logo.png b/blockchains/ethereum/assets/0x39043aae9c48a628F5184Af7a5bB925137757B15/logo.png new file mode 100644 index 00000000..38a3335b Binary files /dev/null and b/blockchains/ethereum/assets/0x39043aae9c48a628F5184Af7a5bB925137757B15/logo.png differ diff --git a/blockchains/ethereum/assets/0x3918C42F14F2eB1168365F911f63E540E5A306b5/info.json b/blockchains/ethereum/assets/0x3918C42F14F2eB1168365F911f63E540E5A306b5/info.json new file mode 100644 index 00000000..530a7499 --- /dev/null +++ b/blockchains/ethereum/assets/0x3918C42F14F2eB1168365F911f63E540E5A306b5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neural Protocol", + "symbol": "NRP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.nrp.world", + "explorer": "https://etherscan.io/token/0x3918C42F14F2eB1168365F911f63E540E5A306b5", + "status": "abandoned", + "id": "0x3918C42F14F2eB1168365F911f63E540E5A306b5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3918C42F14F2eB1168365F911f63E540E5A306b5/logo.png b/blockchains/ethereum/assets/0x3918C42F14F2eB1168365F911f63E540E5A306b5/logo.png new file mode 100644 index 00000000..dd9491ef Binary files /dev/null and b/blockchains/ethereum/assets/0x3918C42F14F2eB1168365F911f63E540E5A306b5/logo.png differ diff --git a/blockchains/ethereum/assets/0x391cF4b21F557c935C7f670218Ef42C21bd8d686/info.json b/blockchains/ethereum/assets/0x391cF4b21F557c935C7f670218Ef42C21bd8d686/info.json new file mode 100644 index 00000000..2acb1cb0 --- /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 00000000..54b5a8d7 Binary files /dev/null and b/blockchains/ethereum/assets/0x391cF4b21F557c935C7f670218Ef42C21bd8d686/logo.png differ diff --git a/blockchains/ethereum/assets/0x3930E4dDb4d24ef2F4CB54C1f009a3694b708428/info.json b/blockchains/ethereum/assets/0x3930E4dDb4d24ef2F4CB54C1f009a3694b708428/info.json new file mode 100644 index 00000000..5b06a060 --- /dev/null +++ b/blockchains/ethereum/assets/0x3930E4dDb4d24ef2F4CB54C1f009a3694b708428/info.json @@ -0,0 +1,11 @@ +{ + "name": "GameFanz", + "symbol": "GFN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://gamefanz.io/", + "explorer": "https://etherscan.io/token/0x3930E4dDb4d24ef2F4CB54C1f009a3694b708428", + "status": "abandoned", + "id": "0x3930E4dDb4d24ef2F4CB54C1f009a3694b708428" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3930E4dDb4d24ef2F4CB54C1f009a3694b708428/logo.png b/blockchains/ethereum/assets/0x3930E4dDb4d24ef2F4CB54C1f009a3694b708428/logo.png new file mode 100644 index 00000000..42e42bdb Binary files /dev/null and b/blockchains/ethereum/assets/0x3930E4dDb4d24ef2F4CB54C1f009a3694b708428/logo.png differ diff --git a/blockchains/ethereum/assets/0x3936Ad01cf109a36489d93cabdA11cF062fd3d48/info.json b/blockchains/ethereum/assets/0x3936Ad01cf109a36489d93cabdA11cF062fd3d48/info.json new file mode 100644 index 00000000..679667e8 --- /dev/null +++ b/blockchains/ethereum/assets/0x3936Ad01cf109a36489d93cabdA11cF062fd3d48/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coil", + "website": "https://coilcrypto.com", + "description": "Coil is an elastic supply cryptocurrency designed to adjust itself every 23 hrs to the supply and demand of the market.", + "explorer": "https://etherscan.io/token/0x3936Ad01cf109a36489d93cabdA11cF062fd3d48", + "type": "ERC20", + "symbol": "COIL", + "decimals": 9, + "status": "active", + "id": "0x3936Ad01cf109a36489d93cabdA11cF062fd3d48" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3936Ad01cf109a36489d93cabdA11cF062fd3d48/logo.png b/blockchains/ethereum/assets/0x3936Ad01cf109a36489d93cabdA11cF062fd3d48/logo.png new file mode 100644 index 00000000..305c498e Binary files /dev/null and b/blockchains/ethereum/assets/0x3936Ad01cf109a36489d93cabdA11cF062fd3d48/logo.png differ diff --git a/blockchains/ethereum/assets/0x39391e620a58c56E8Ac20E936B678Bd3D2f2A6fB/info.json b/blockchains/ethereum/assets/0x39391e620a58c56E8Ac20E936B678Bd3D2f2A6fB/info.json new file mode 100644 index 00000000..add83490 --- /dev/null +++ b/blockchains/ethereum/assets/0x39391e620a58c56E8Ac20E936B678Bd3D2f2A6fB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Watt Token", + "symbol": "WAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x39391e620a58c56E8Ac20E936B678Bd3D2f2A6fB", + "status": "abandoned", + "id": "0x39391e620a58c56E8Ac20E936B678Bd3D2f2A6fB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x39391e620a58c56E8Ac20E936B678Bd3D2f2A6fB/logo.png b/blockchains/ethereum/assets/0x39391e620a58c56E8Ac20E936B678Bd3D2f2A6fB/logo.png new file mode 100755 index 00000000..3f2dc227 Binary files /dev/null and b/blockchains/ethereum/assets/0x39391e620a58c56E8Ac20E936B678Bd3D2f2A6fB/logo.png differ diff --git a/blockchains/ethereum/assets/0x393e90c35d9768e831029e90b9A2c436EDdB63BB/info.json b/blockchains/ethereum/assets/0x393e90c35d9768e831029e90b9A2c436EDdB63BB/info.json new file mode 100644 index 00000000..0b931559 --- /dev/null +++ b/blockchains/ethereum/assets/0x393e90c35d9768e831029e90b9A2c436EDdB63BB/info.json @@ -0,0 +1,11 @@ +{ + "name": "IO Coin", + "symbol": "IO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x393e90c35d9768e831029e90b9A2c436EDdB63BB", + "status": "abandoned", + "id": "0x393e90c35d9768e831029e90b9A2c436EDdB63BB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x393e90c35d9768e831029e90b9A2c436EDdB63BB/logo.png b/blockchains/ethereum/assets/0x393e90c35d9768e831029e90b9A2c436EDdB63BB/logo.png new file mode 100644 index 00000000..5a5e1c51 Binary files /dev/null and b/blockchains/ethereum/assets/0x393e90c35d9768e831029e90b9A2c436EDdB63BB/logo.png differ diff --git a/blockchains/ethereum/assets/0x393fAC0773C765c80dc887451377d553C46F83b1/info.json b/blockchains/ethereum/assets/0x393fAC0773C765c80dc887451377d553C46F83b1/info.json new file mode 100644 index 00000000..a60d1066 --- /dev/null +++ b/blockchains/ethereum/assets/0x393fAC0773C765c80dc887451377d553C46F83b1/info.json @@ -0,0 +1,11 @@ +{ + "name": "RAKSUR", + "symbol": "RAS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://raksur.com/", + "explorer": "https://etherscan.io/token/0x393fAC0773C765c80dc887451377d553C46F83b1", + "status": "abandoned", + "id": "0x393fAC0773C765c80dc887451377d553C46F83b1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x393fAC0773C765c80dc887451377d553C46F83b1/logo.png b/blockchains/ethereum/assets/0x393fAC0773C765c80dc887451377d553C46F83b1/logo.png new file mode 100644 index 00000000..7acbf1eb Binary files /dev/null and b/blockchains/ethereum/assets/0x393fAC0773C765c80dc887451377d553C46F83b1/logo.png differ diff --git a/blockchains/ethereum/assets/0x395f7bC771DB53732025547458f96Ee217aF6aD1/info.json b/blockchains/ethereum/assets/0x395f7bC771DB53732025547458f96Ee217aF6aD1/info.json new file mode 100644 index 00000000..7742e37d --- /dev/null +++ b/blockchains/ethereum/assets/0x395f7bC771DB53732025547458f96Ee217aF6aD1/info.json @@ -0,0 +1,11 @@ +{ + "name": "ieo services", + "symbol": "ieos", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ieoservicetoken.com/", + "explorer": "https://etherscan.io/token/0x395f7bC771DB53732025547458f96Ee217aF6aD1", + "status": "abandoned", + "id": "0x395f7bC771DB53732025547458f96Ee217aF6aD1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x395f7bC771DB53732025547458f96Ee217aF6aD1/logo.png b/blockchains/ethereum/assets/0x395f7bC771DB53732025547458f96Ee217aF6aD1/logo.png new file mode 100644 index 00000000..700b78aa Binary files /dev/null and b/blockchains/ethereum/assets/0x395f7bC771DB53732025547458f96Ee217aF6aD1/logo.png differ diff --git a/blockchains/ethereum/assets/0x396eC402B42066864C406d1ac3bc86B575003ed8/info.json b/blockchains/ethereum/assets/0x396eC402B42066864C406d1ac3bc86B575003ed8/info.json new file mode 100644 index 00000000..f452f199 --- /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 00000000..418f5a81 Binary files /dev/null and b/blockchains/ethereum/assets/0x396eC402B42066864C406d1ac3bc86B575003ed8/logo.png differ diff --git a/blockchains/ethereum/assets/0x39795344CBCc76cC3Fb94B9D1b15C23c2070C66D/info.json b/blockchains/ethereum/assets/0x39795344CBCc76cC3Fb94B9D1b15C23c2070C66D/info.json new file mode 100644 index 00000000..88d693f7 --- /dev/null +++ b/blockchains/ethereum/assets/0x39795344CBCc76cC3Fb94B9D1b15C23c2070C66D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Seigniorage Shares", + "website": "https://dollarprotocol.com", + "description": "Seigniorage Share (SHARE) is the speculation and governance token into the Dollar Protocol. Holders get seigniorage paid in Dollar (USD) token pro-rata.", + "explorer": "https://etherscan.io/token/0x39795344CBCc76cC3Fb94B9D1b15C23c2070C66D", + "type": "ERC20", + "symbol": "SHARE", + "decimals": 9, + "status": "active", + "id": "0x39795344CBCc76cC3Fb94B9D1b15C23c2070C66D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x39795344CBCc76cC3Fb94B9D1b15C23c2070C66D/logo.png b/blockchains/ethereum/assets/0x39795344CBCc76cC3Fb94B9D1b15C23c2070C66D/logo.png new file mode 100644 index 00000000..b4ab6892 Binary files /dev/null and b/blockchains/ethereum/assets/0x39795344CBCc76cC3Fb94B9D1b15C23c2070C66D/logo.png differ diff --git a/blockchains/ethereum/assets/0x398f7f759380F3d309B9fC0E6cB3D36E0D67818d/info.json b/blockchains/ethereum/assets/0x398f7f759380F3d309B9fC0E6cB3D36E0D67818d/info.json new file mode 100644 index 00000000..073a6b15 --- /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 00000000..50ef2736 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 00000000..536292bb --- /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 00000000..0a03049a Binary files /dev/null and b/blockchains/ethereum/assets/0x39930751d4569F7DD45d1bA46E82CD3680EC2e0a/logo.png differ diff --git a/blockchains/ethereum/assets/0x39A26fd8f19244377ab6e1C6FcDC5F3e75df4bDa/info.json b/blockchains/ethereum/assets/0x39A26fd8f19244377ab6e1C6FcDC5F3e75df4bDa/info.json new file mode 100644 index 00000000..f63e04da --- /dev/null +++ b/blockchains/ethereum/assets/0x39A26fd8f19244377ab6e1C6FcDC5F3e75df4bDa/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-25/30M55", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x39A26fd8f19244377ab6e1C6FcDC5F3e75df4bDa", + "status": "abandoned", + "id": "0x39A26fd8f19244377ab6e1C6FcDC5F3e75df4bDa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x39A26fd8f19244377ab6e1C6FcDC5F3e75df4bDa/logo.png b/blockchains/ethereum/assets/0x39A26fd8f19244377ab6e1C6FcDC5F3e75df4bDa/logo.png new file mode 100644 index 00000000..bf865928 Binary files /dev/null and b/blockchains/ethereum/assets/0x39A26fd8f19244377ab6e1C6FcDC5F3e75df4bDa/logo.png differ diff --git a/blockchains/ethereum/assets/0x39AA39c021dfbaE8faC545936693aC917d5E7563/info.json b/blockchains/ethereum/assets/0x39AA39c021dfbaE8faC545936693aC917d5E7563/info.json new file mode 100644 index 00000000..1e58c65c --- /dev/null +++ b/blockchains/ethereum/assets/0x39AA39c021dfbaE8faC545936693aC917d5E7563/info.json @@ -0,0 +1,11 @@ +{ + "name": "Compound USD Coin", + "symbol": "cUSDC", + "type": "ERC20", + "decimals": 8, + "description": "Compound is an open-source, autonomous protocol built for developers, to unlock a universe of new financial applications. Interest and borrowing, for the open financial system.", + "website": "https://compound.finance/", + "explorer": "https://etherscan.io/token/0x39AA39c021dfbaE8faC545936693aC917d5E7563", + "status": "active", + "id": "0x39AA39c021dfbaE8faC545936693aC917d5E7563" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x39AA39c021dfbaE8faC545936693aC917d5E7563/logo.png b/blockchains/ethereum/assets/0x39AA39c021dfbaE8faC545936693aC917d5E7563/logo.png new file mode 100644 index 00000000..33824434 Binary files /dev/null and b/blockchains/ethereum/assets/0x39AA39c021dfbaE8faC545936693aC917d5E7563/logo.png differ diff --git a/blockchains/ethereum/assets/0x39AB32006Afe65A0B4D6A9A89877c2c33ad19EB5/info.json b/blockchains/ethereum/assets/0x39AB32006Afe65A0B4D6A9A89877c2c33ad19EB5/info.json new file mode 100644 index 00000000..2ec4d605 --- /dev/null +++ b/blockchains/ethereum/assets/0x39AB32006Afe65A0B4D6A9A89877c2c33ad19EB5/info.json @@ -0,0 +1,11 @@ +{ + "name": "CTether USD", + "symbol": "CUSDT", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x39AB32006Afe65A0B4D6A9A89877c2c33ad19EB5", + "status": "abandoned", + "id": "0x39AB32006Afe65A0B4D6A9A89877c2c33ad19EB5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x39AB32006Afe65A0B4D6A9A89877c2c33ad19EB5/logo.png b/blockchains/ethereum/assets/0x39AB32006Afe65A0B4D6A9A89877c2c33ad19EB5/logo.png new file mode 100644 index 00000000..ce387c07 Binary files /dev/null and b/blockchains/ethereum/assets/0x39AB32006Afe65A0B4D6A9A89877c2c33ad19EB5/logo.png differ diff --git a/blockchains/ethereum/assets/0x39Ad22C916F42aF5f67371d6f2Fb0dab42321a89/info.json b/blockchains/ethereum/assets/0x39Ad22C916F42aF5f67371d6f2Fb0dab42321a89/info.json new file mode 100644 index 00000000..99607e82 --- /dev/null +++ b/blockchains/ethereum/assets/0x39Ad22C916F42aF5f67371d6f2Fb0dab42321a89/info.json @@ -0,0 +1,11 @@ +{ + "name": "Osinachi", + "symbol": "OSINA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x39Ad22C916F42aF5f67371d6f2Fb0dab42321a89", + "status": "abandoned", + "id": "0x39Ad22C916F42aF5f67371d6f2Fb0dab42321a89" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x39Ad22C916F42aF5f67371d6f2Fb0dab42321a89/logo.png b/blockchains/ethereum/assets/0x39Ad22C916F42aF5f67371d6f2Fb0dab42321a89/logo.png new file mode 100644 index 00000000..81fe062a Binary files /dev/null and b/blockchains/ethereum/assets/0x39Ad22C916F42aF5f67371d6f2Fb0dab42321a89/logo.png differ diff --git a/blockchains/ethereum/assets/0x39Bb259F66E1C59d5ABEF88375979b4D20D98022/info.json b/blockchains/ethereum/assets/0x39Bb259F66E1C59d5ABEF88375979b4D20D98022/info.json new file mode 100644 index 00000000..2bc48a47 --- /dev/null +++ b/blockchains/ethereum/assets/0x39Bb259F66E1C59d5ABEF88375979b4D20D98022/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wax Token", + "symbol": "WAX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x39Bb259F66E1C59d5ABEF88375979b4D20D98022", + "status": "abandoned", + "id": "0x39Bb259F66E1C59d5ABEF88375979b4D20D98022" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x39Bb259F66E1C59d5ABEF88375979b4D20D98022/logo.png b/blockchains/ethereum/assets/0x39Bb259F66E1C59d5ABEF88375979b4D20D98022/logo.png new file mode 100644 index 00000000..c62166bd Binary files /dev/null and b/blockchains/ethereum/assets/0x39Bb259F66E1C59d5ABEF88375979b4D20D98022/logo.png differ diff --git a/blockchains/ethereum/assets/0x39C6b3e42d6A679d7D776778Fe880BC9487C2EDA/info.json b/blockchains/ethereum/assets/0x39C6b3e42d6A679d7D776778Fe880BC9487C2EDA/info.json new file mode 100644 index 00000000..922bcb2c --- /dev/null +++ b/blockchains/ethereum/assets/0x39C6b3e42d6A679d7D776778Fe880BC9487C2EDA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave KNC", + "symbol": "aKNC", + "type": "ERC20", + "decimals": 18, + "description": "Aave KNC is an interest bearing token pegged 1:1 to the underlying KNC deposited in Aave. aKNC accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x39C6b3e42d6A679d7D776778Fe880BC9487C2EDA", + "status": "active", + "id": "0x39C6b3e42d6A679d7D776778Fe880BC9487C2EDA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x39C6b3e42d6A679d7D776778Fe880BC9487C2EDA/logo.png b/blockchains/ethereum/assets/0x39C6b3e42d6A679d7D776778Fe880BC9487C2EDA/logo.png new file mode 100644 index 00000000..cc68814a Binary files /dev/null and b/blockchains/ethereum/assets/0x39C6b3e42d6A679d7D776778Fe880BC9487C2EDA/logo.png differ diff --git a/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/info.json b/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/info.json new file mode 100644 index 00000000..ee916f68 --- /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 00000000..b86b0fca Binary files /dev/null and b/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/logo.png differ diff --git a/blockchains/ethereum/assets/0x39eAE99E685906fF1C11A962a743440d0a1A6e09/info.json b/blockchains/ethereum/assets/0x39eAE99E685906fF1C11A962a743440d0a1A6e09/info.json new file mode 100644 index 00000000..2de8a111 --- /dev/null +++ b/blockchains/ethereum/assets/0x39eAE99E685906fF1C11A962a743440d0a1A6e09/info.json @@ -0,0 +1,11 @@ +{ + "name": "Holyheld", + "website": "https://holyheld.com", + "description": "Holyheld, financial service for a digital generation.", + "explorer": "https://etherscan.io/token/0x39eAE99E685906fF1C11A962a743440d0a1A6e09", + "type": "ERC20", + "symbol": "HOLY", + "decimals": 18, + "status": "abandoned", + "id": "0x39eAE99E685906fF1C11A962a743440d0a1A6e09" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x39eAE99E685906fF1C11A962a743440d0a1A6e09/logo.png b/blockchains/ethereum/assets/0x39eAE99E685906fF1C11A962a743440d0a1A6e09/logo.png new file mode 100644 index 00000000..d9098e5c Binary files /dev/null and b/blockchains/ethereum/assets/0x39eAE99E685906fF1C11A962a743440d0a1A6e09/logo.png differ diff --git a/blockchains/ethereum/assets/0x39f4A6659ec9E25386A0DB547Cbec62f62fa6bB5/info.json b/blockchains/ethereum/assets/0x39f4A6659ec9E25386A0DB547Cbec62f62fa6bB5/info.json new file mode 100644 index 00000000..97d67352 --- /dev/null +++ b/blockchains/ethereum/assets/0x39f4A6659ec9E25386A0DB547Cbec62f62fa6bB5/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST 7", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x39f4A6659ec9E25386A0DB547Cbec62f62fa6bB5", + "status": "abandoned", + "id": "0x39f4A6659ec9E25386A0DB547Cbec62f62fa6bB5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x39f4A6659ec9E25386A0DB547Cbec62f62fa6bB5/logo.png b/blockchains/ethereum/assets/0x39f4A6659ec9E25386A0DB547Cbec62f62fa6bB5/logo.png new file mode 100644 index 00000000..b10d03d3 Binary files /dev/null and b/blockchains/ethereum/assets/0x39f4A6659ec9E25386A0DB547Cbec62f62fa6bB5/logo.png differ diff --git a/blockchains/ethereum/assets/0x3A10B7a22AE98E0f53276923F19f99B259F61778/info.json b/blockchains/ethereum/assets/0x3A10B7a22AE98E0f53276923F19f99B259F61778/info.json new file mode 100644 index 00000000..e08d9d41 --- /dev/null +++ b/blockchains/ethereum/assets/0x3A10B7a22AE98E0f53276923F19f99B259F61778/info.json @@ -0,0 +1,11 @@ +{ + "name": "Secrets of Zurich Token", + "symbol": "SOZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3A10B7a22AE98E0f53276923F19f99B259F61778", + "status": "abandoned", + "id": "0x3A10B7a22AE98E0f53276923F19f99B259F61778" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3A10B7a22AE98E0f53276923F19f99B259F61778/logo.png b/blockchains/ethereum/assets/0x3A10B7a22AE98E0f53276923F19f99B259F61778/logo.png new file mode 100644 index 00000000..ebb4f60d Binary files /dev/null and b/blockchains/ethereum/assets/0x3A10B7a22AE98E0f53276923F19f99B259F61778/logo.png differ diff --git a/blockchains/ethereum/assets/0x3A1237D38D0Fb94513f85D61679cAd7F38507242/info.json b/blockchains/ethereum/assets/0x3A1237D38D0Fb94513f85D61679cAd7F38507242/info.json new file mode 100644 index 00000000..73d40c16 --- /dev/null +++ b/blockchains/ethereum/assets/0x3A1237D38D0Fb94513f85D61679cAd7F38507242/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mindexcoin", + "symbol": "MIC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://mindexcoin.com/", + "explorer": "https://etherscan.io/token/0x3A1237D38D0Fb94513f85D61679cAd7F38507242", + "status": "abandoned", + "id": "0x3A1237D38D0Fb94513f85D61679cAd7F38507242" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3A1237D38D0Fb94513f85D61679cAd7F38507242/logo.png b/blockchains/ethereum/assets/0x3A1237D38D0Fb94513f85D61679cAd7F38507242/logo.png new file mode 100644 index 00000000..7bf45358 Binary files /dev/null and b/blockchains/ethereum/assets/0x3A1237D38D0Fb94513f85D61679cAd7F38507242/logo.png differ diff --git a/blockchains/ethereum/assets/0x3A2008B57C9c9361C40c43a60227180909A5B412/info.json b/blockchains/ethereum/assets/0x3A2008B57C9c9361C40c43a60227180909A5B412/info.json new file mode 100644 index 00000000..a1c26332 --- /dev/null +++ b/blockchains/ethereum/assets/0x3A2008B57C9c9361C40c43a60227180909A5B412/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST 6", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3A2008B57C9c9361C40c43a60227180909A5B412", + "status": "abandoned", + "id": "0x3A2008B57C9c9361C40c43a60227180909A5B412" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3A2008B57C9c9361C40c43a60227180909A5B412/logo.png b/blockchains/ethereum/assets/0x3A2008B57C9c9361C40c43a60227180909A5B412/logo.png new file mode 100644 index 00000000..5fe56477 Binary files /dev/null and b/blockchains/ethereum/assets/0x3A2008B57C9c9361C40c43a60227180909A5B412/logo.png differ diff --git a/blockchains/ethereum/assets/0x3A3A1B3A584C7bC41B561d958e092ae291bD7F93/info.json b/blockchains/ethereum/assets/0x3A3A1B3A584C7bC41B561d958e092ae291bD7F93/info.json new file mode 100644 index 00000000..537986f5 --- /dev/null +++ b/blockchains/ethereum/assets/0x3A3A1B3A584C7bC41B561d958e092ae291bD7F93/info.json @@ -0,0 +1,11 @@ +{ + "name": "MYTBX", + "symbol": "MYTBX", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3A3A1B3A584C7bC41B561d958e092ae291bD7F93", + "status": "abandoned", + "id": "0x3A3A1B3A584C7bC41B561d958e092ae291bD7F93" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3A3A1B3A584C7bC41B561d958e092ae291bD7F93/logo.png b/blockchains/ethereum/assets/0x3A3A1B3A584C7bC41B561d958e092ae291bD7F93/logo.png new file mode 100644 index 00000000..6d060f64 Binary files /dev/null and b/blockchains/ethereum/assets/0x3A3A1B3A584C7bC41B561d958e092ae291bD7F93/logo.png differ diff --git a/blockchains/ethereum/assets/0x3A4A0D5b8dfAcd651EE28ed4fFEBf91500345489/info.json b/blockchains/ethereum/assets/0x3A4A0D5b8dfAcd651EE28ed4fFEBf91500345489/info.json new file mode 100644 index 00000000..c02f4c19 --- /dev/null +++ b/blockchains/ethereum/assets/0x3A4A0D5b8dfAcd651EE28ed4fFEBf91500345489/info.json @@ -0,0 +1,29 @@ +{ + "name": "BerryX", + "website": "https://polar-berry.com/", + "description": "A BRX token is created to evaluate the size of the shares, as well as to facilitate the exchange of shares through innovation. The token is used for any transactions made within the cooperative,joining fees, membership and share fees, as well as for remuneration.", + "explorer": "https://etherscan.io/token/0x3A4A0D5b8dfAcd651EE28ed4fFEBf91500345489", + "type": "ERC20", + "symbol": "BRX", + "decimals": 18, + "status": "active", + "id": "0x3A4A0D5b8dfAcd651EE28ed4fFEBf91500345489", + "links": [ + { + "name": "github", + "url": "https://github.com/Filinomus/BerryX" + }, + { + "name": "x", + "url": "https://x.com/Polar berry" + }, + { + "name": "facebook", + "url": "https://facebook.com/polarberrycom" + }, + { + "name": "whitepaper", + "url": "https://polar-berry.com/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3A4A0D5b8dfAcd651EE28ed4fFEBf91500345489/logo.png b/blockchains/ethereum/assets/0x3A4A0D5b8dfAcd651EE28ed4fFEBf91500345489/logo.png new file mode 100644 index 00000000..ef48b520 Binary files /dev/null and b/blockchains/ethereum/assets/0x3A4A0D5b8dfAcd651EE28ed4fFEBf91500345489/logo.png differ diff --git a/blockchains/ethereum/assets/0x3A6CecAE3B2d0fFeFc2704790EdDf76d5A823430/info.json b/blockchains/ethereum/assets/0x3A6CecAE3B2d0fFeFc2704790EdDf76d5A823430/info.json new file mode 100644 index 00000000..0cbfb916 --- /dev/null +++ b/blockchains/ethereum/assets/0x3A6CecAE3B2d0fFeFc2704790EdDf76d5A823430/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C564343", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3A6CecAE3B2d0fFeFc2704790EdDf76d5A823430", + "status": "abandoned", + "id": "0x3A6CecAE3B2d0fFeFc2704790EdDf76d5A823430" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3A6CecAE3B2d0fFeFc2704790EdDf76d5A823430/logo.png b/blockchains/ethereum/assets/0x3A6CecAE3B2d0fFeFc2704790EdDf76d5A823430/logo.png new file mode 100644 index 00000000..c060b5fe Binary files /dev/null and b/blockchains/ethereum/assets/0x3A6CecAE3B2d0fFeFc2704790EdDf76d5A823430/logo.png differ diff --git a/blockchains/ethereum/assets/0x3A75731f9e16244dE01DD431636Db7c07D42A166/info.json b/blockchains/ethereum/assets/0x3A75731f9e16244dE01DD431636Db7c07D42A166/info.json new file mode 100644 index 00000000..d9254c0b --- /dev/null +++ b/blockchains/ethereum/assets/0x3A75731f9e16244dE01DD431636Db7c07D42A166/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bones", + "symbol": "BONES", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3A75731f9e16244dE01DD431636Db7c07D42A166", + "status": "abandoned", + "id": "0x3A75731f9e16244dE01DD431636Db7c07D42A166" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3A75731f9e16244dE01DD431636Db7c07D42A166/logo.png b/blockchains/ethereum/assets/0x3A75731f9e16244dE01DD431636Db7c07D42A166/logo.png new file mode 100644 index 00000000..1bd8c248 Binary files /dev/null and b/blockchains/ethereum/assets/0x3A75731f9e16244dE01DD431636Db7c07D42A166/logo.png differ diff --git a/blockchains/ethereum/assets/0x3A856d4effa670C54585a5D523e96513e148e95d/info.json b/blockchains/ethereum/assets/0x3A856d4effa670C54585a5D523e96513e148e95d/info.json new file mode 100644 index 00000000..7232d5bd --- /dev/null +++ b/blockchains/ethereum/assets/0x3A856d4effa670C54585a5D523e96513e148e95d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trias Token", + "symbol": "TRIAS", + "type": "ERC20", + "decimals": 18, + "description": "TRIAS aims to create a new-generation public chain that will support the execution of general-purpose native-applications on all platforms.", + "website": "https://www.trias.one", + "explorer": "https://etherscan.io/token/0x3A856d4effa670C54585a5D523e96513e148e95d", + "status": "active", + "id": "0x3A856d4effa670C54585a5D523e96513e148e95d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3A856d4effa670C54585a5D523e96513e148e95d/logo.png b/blockchains/ethereum/assets/0x3A856d4effa670C54585a5D523e96513e148e95d/logo.png new file mode 100644 index 00000000..0948f60d Binary files /dev/null and b/blockchains/ethereum/assets/0x3A856d4effa670C54585a5D523e96513e148e95d/logo.png differ diff --git a/blockchains/ethereum/assets/0x3A880652F47bFaa771908C07Dd8673A787dAEd3A/info.json b/blockchains/ethereum/assets/0x3A880652F47bFaa771908C07Dd8673A787dAEd3A/info.json new file mode 100644 index 00000000..851fb145 --- /dev/null +++ b/blockchains/ethereum/assets/0x3A880652F47bFaa771908C07Dd8673A787dAEd3A/info.json @@ -0,0 +1,41 @@ +{ + "name": "DDX", + "website": "https://derivadex.com", + "description": "Discover the future of trading with DerivaDEX, a community-governed derivatives exchange that unites performance and autonomy.", + "explorer": "https://etherscan.io/token/0x3A880652F47bFaa771908C07Dd8673A787dAEd3A", + "type": "ERC20", + "symbol": "DDX", + "decimals": 18, + "status": "active", + "id": "0x3A880652F47bFaa771908C07Dd8673A787dAEd3A", + "links": [ + { + "name": "source_code", + "url": "https://gitlab.com/derivadex" + }, + { + "name": "x", + "url": "https://x.com/DDX_Official" + }, + { + "name": "telegram", + "url": "https://t.me/DerivaDEX" + }, + { + "name": "discord", + "url": "https://discord.com/invite/rSYxQD2j" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCSAEVzSu0AEcJF2e7TMbZJg" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/derivadex/" + }, + { + "name": "medium", + "url": "https://medium.com/derivadex" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3A880652F47bFaa771908C07Dd8673A787dAEd3A/logo.png b/blockchains/ethereum/assets/0x3A880652F47bFaa771908C07Dd8673A787dAEd3A/logo.png new file mode 100644 index 00000000..055f683d Binary files /dev/null and b/blockchains/ethereum/assets/0x3A880652F47bFaa771908C07Dd8673A787dAEd3A/logo.png differ diff --git a/blockchains/ethereum/assets/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87/info.json b/blockchains/ethereum/assets/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87/info.json new file mode 100644 index 00000000..0e46e20b --- /dev/null +++ b/blockchains/ethereum/assets/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87/info.json @@ -0,0 +1,28 @@ +{ + "name": "TitanSwap", + "type": "ERC20", + "symbol": "Titan", + "decimals": 18, + "website": "https://titanswap.org/", + "description": "TITAN is a blockchain based decentralized financial center that provides optimal liquidity solutions for different digital asset category by adaptive bonding curve.", + "explorer": "https://etherscan.io/token/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87", + "status": "active", + "id": "0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87", + "links": [ + { + "name": "x", + "url": "https://x.com/TitanSwaporg" + }, + { + "name": "github", + "url": "https://github.com/titanSwap" + }, + { + "name": "telegram", + "url": "https://t.me/TitanSwap" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87/logo.png b/blockchains/ethereum/assets/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87/logo.png new file mode 100644 index 00000000..835e7b02 Binary files /dev/null and b/blockchains/ethereum/assets/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87/logo.png differ diff --git a/blockchains/ethereum/assets/0x3A92bD396aEf82af98EbC0Aa9030D25a23B11C6b/info.json b/blockchains/ethereum/assets/0x3A92bD396aEf82af98EbC0Aa9030D25a23B11C6b/info.json new file mode 100644 index 00000000..8245140e --- /dev/null +++ b/blockchains/ethereum/assets/0x3A92bD396aEf82af98EbC0Aa9030D25a23B11C6b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tokenbox", + "symbol": "TBX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://tokenbox.io/", + "explorer": "https://etherscan.io/token/0x3A92bD396aEf82af98EbC0Aa9030D25a23B11C6b", + "status": "active", + "id": "0x3A92bD396aEf82af98EbC0Aa9030D25a23B11C6b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3A92bD396aEf82af98EbC0Aa9030D25a23B11C6b/logo.png b/blockchains/ethereum/assets/0x3A92bD396aEf82af98EbC0Aa9030D25a23B11C6b/logo.png new file mode 100644 index 00000000..76dcbf7c Binary files /dev/null and b/blockchains/ethereum/assets/0x3A92bD396aEf82af98EbC0Aa9030D25a23B11C6b/logo.png differ diff --git a/blockchains/ethereum/assets/0x3A94221D98B86e32FB9eddCDC4D86E38e9767373/info.json b/blockchains/ethereum/assets/0x3A94221D98B86e32FB9eddCDC4D86E38e9767373/info.json new file mode 100644 index 00000000..5bb5fbb1 --- /dev/null +++ b/blockchains/ethereum/assets/0x3A94221D98B86e32FB9eddCDC4D86E38e9767373/info.json @@ -0,0 +1,11 @@ +{ + "name": "EarthXland", + "symbol": "EXL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3A94221D98B86e32FB9eddCDC4D86E38e9767373", + "status": "abandoned", + "id": "0x3A94221D98B86e32FB9eddCDC4D86E38e9767373" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3A94221D98B86e32FB9eddCDC4D86E38e9767373/logo.png b/blockchains/ethereum/assets/0x3A94221D98B86e32FB9eddCDC4D86E38e9767373/logo.png new file mode 100644 index 00000000..d487ed3f Binary files /dev/null and b/blockchains/ethereum/assets/0x3A94221D98B86e32FB9eddCDC4D86E38e9767373/logo.png differ diff --git a/blockchains/ethereum/assets/0x3A9FfF453d50D4Ac52A6890647b823379ba36B9E/info.json b/blockchains/ethereum/assets/0x3A9FfF453d50D4Ac52A6890647b823379ba36B9E/info.json new file mode 100644 index 00000000..bde0c46e --- /dev/null +++ b/blockchains/ethereum/assets/0x3A9FfF453d50D4Ac52A6890647b823379ba36B9E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shuffle.Monster V3", + "symbol": "SHUF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://shuffle.monster/", + "explorer": "https://etherscan.io/token/0x3A9FfF453d50D4Ac52A6890647b823379ba36B9E", + "status": "abandoned", + "id": "0x3A9FfF453d50D4Ac52A6890647b823379ba36B9E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3A9FfF453d50D4Ac52A6890647b823379ba36B9E/logo.png b/blockchains/ethereum/assets/0x3A9FfF453d50D4Ac52A6890647b823379ba36B9E/logo.png new file mode 100644 index 00000000..22edb906 Binary files /dev/null and b/blockchains/ethereum/assets/0x3A9FfF453d50D4Ac52A6890647b823379ba36B9E/logo.png differ diff --git a/blockchains/ethereum/assets/0x3ADfc4999F77D04c8341BAC5F3A76f58DfF5B37A/info.json b/blockchains/ethereum/assets/0x3ADfc4999F77D04c8341BAC5F3A76f58DfF5B37A/info.json new file mode 100644 index 00000000..3d2b8c28 --- /dev/null +++ b/blockchains/ethereum/assets/0x3ADfc4999F77D04c8341BAC5F3A76f58DfF5B37A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Privatix", + "symbol": "PRIX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://privatix.io/", + "explorer": "https://etherscan.io/token/0x3ADfc4999F77D04c8341BAC5F3A76f58DfF5B37A", + "status": "abandoned", + "id": "0x3ADfc4999F77D04c8341BAC5F3A76f58DfF5B37A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3ADfc4999F77D04c8341BAC5F3A76f58DfF5B37A/logo.png b/blockchains/ethereum/assets/0x3ADfc4999F77D04c8341BAC5F3A76f58DfF5B37A/logo.png new file mode 100755 index 00000000..81933eac Binary files /dev/null and b/blockchains/ethereum/assets/0x3ADfc4999F77D04c8341BAC5F3A76f58DfF5B37A/logo.png differ diff --git a/blockchains/ethereum/assets/0x3AFA1902b1f8a802aBC18e5aD982D1bCd34AfE22/info.json b/blockchains/ethereum/assets/0x3AFA1902b1f8a802aBC18e5aD982D1bCd34AfE22/info.json new file mode 100644 index 00000000..26cf2b1b --- /dev/null +++ b/blockchains/ethereum/assets/0x3AFA1902b1f8a802aBC18e5aD982D1bCd34AfE22/info.json @@ -0,0 +1,11 @@ +{ + "name": "GrEARN's Token", + "symbol": "GST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.grearn.org/", + "explorer": "https://etherscan.io/token/0x3AFA1902b1f8a802aBC18e5aD982D1bCd34AfE22", + "status": "abandoned", + "id": "0x3AFA1902b1f8a802aBC18e5aD982D1bCd34AfE22" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3AFA1902b1f8a802aBC18e5aD982D1bCd34AfE22/logo.png b/blockchains/ethereum/assets/0x3AFA1902b1f8a802aBC18e5aD982D1bCd34AfE22/logo.png new file mode 100644 index 00000000..845703b8 Binary files /dev/null and b/blockchains/ethereum/assets/0x3AFA1902b1f8a802aBC18e5aD982D1bCd34AfE22/logo.png differ diff --git a/blockchains/ethereum/assets/0x3Ab6Ed69Ef663bd986Ee59205CCaD8A20F98b4c2/info.json b/blockchains/ethereum/assets/0x3Ab6Ed69Ef663bd986Ee59205CCaD8A20F98b4c2/info.json new file mode 100644 index 00000000..40b81281 --- /dev/null +++ b/blockchains/ethereum/assets/0x3Ab6Ed69Ef663bd986Ee59205CCaD8A20F98b4c2/info.json @@ -0,0 +1,11 @@ +{ + "name": "DREP", + "symbol": "DREP", + "type": "ERC20", + "decimals": 18, + "description": "DREP is committed to building connectors and toolboxes based on blockchain technology, and aims to provide solutions that combine ease of use, flexibility, and frictionless integration.", + "website": "https://www.drep.org", + "explorer": "https://etherscan.io/token/0x3Ab6Ed69Ef663bd986Ee59205CCaD8A20F98b4c2", + "status": "active", + "id": "0x3Ab6Ed69Ef663bd986Ee59205CCaD8A20F98b4c2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3Ab6Ed69Ef663bd986Ee59205CCaD8A20F98b4c2/logo.png b/blockchains/ethereum/assets/0x3Ab6Ed69Ef663bd986Ee59205CCaD8A20F98b4c2/logo.png new file mode 100644 index 00000000..de8c17de Binary files /dev/null and b/blockchains/ethereum/assets/0x3Ab6Ed69Ef663bd986Ee59205CCaD8A20F98b4c2/logo.png differ diff --git a/blockchains/ethereum/assets/0x3AeF8e803BD9be47e69b9f36487748d30D940b96/info.json b/blockchains/ethereum/assets/0x3AeF8e803BD9be47e69b9f36487748d30D940b96/info.json new file mode 100644 index 00000000..d62abf8a --- /dev/null +++ b/blockchains/ethereum/assets/0x3AeF8e803BD9be47e69b9f36487748d30D940b96/info.json @@ -0,0 +1,17 @@ +{ + "name": "Vesta", + "website": "https://vtp.network", + "description": "Vesta Is The Next Generation Liquidity Generator.", + "explorer": "https://etherscan.io/token/0x3AeF8e803BD9be47e69b9f36487748d30D940b96", + "type": "ERC20", + "symbol": "vesta", + "decimals": 18, + "status": "active", + "id": "0x3AeF8e803BD9be47e69b9f36487748d30D940b96", + "links": [ + { + "name": "whitepaper", + "url": "https://vtp.network/static/VestaProtocolWhitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3AeF8e803BD9be47e69b9f36487748d30D940b96/logo.png b/blockchains/ethereum/assets/0x3AeF8e803BD9be47e69b9f36487748d30D940b96/logo.png new file mode 100644 index 00000000..0250f985 Binary files /dev/null and b/blockchains/ethereum/assets/0x3AeF8e803BD9be47e69b9f36487748d30D940b96/logo.png differ diff --git a/blockchains/ethereum/assets/0x3B3f859ab4CebB73c3043b99c33719052265E1E7/info.json b/blockchains/ethereum/assets/0x3B3f859ab4CebB73c3043b99c33719052265E1E7/info.json new file mode 100644 index 00000000..8261a5ff --- /dev/null +++ b/blockchains/ethereum/assets/0x3B3f859ab4CebB73c3043b99c33719052265E1E7/info.json @@ -0,0 +1,11 @@ +{ + "name": "khAZon", + "symbol": "KReeD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://web.khazon.online/", + "explorer": "https://etherscan.io/token/0x3B3f859ab4CebB73c3043b99c33719052265E1E7", + "status": "abandoned", + "id": "0x3B3f859ab4CebB73c3043b99c33719052265E1E7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3B3f859ab4CebB73c3043b99c33719052265E1E7/logo.png b/blockchains/ethereum/assets/0x3B3f859ab4CebB73c3043b99c33719052265E1E7/logo.png new file mode 100755 index 00000000..72891f1d Binary files /dev/null and b/blockchains/ethereum/assets/0x3B3f859ab4CebB73c3043b99c33719052265E1E7/logo.png differ diff --git a/blockchains/ethereum/assets/0x3B4B29C4c1872a60D09937686bD2b358Db9Dee8a/info.json b/blockchains/ethereum/assets/0x3B4B29C4c1872a60D09937686bD2b358Db9Dee8a/info.json new file mode 100644 index 00000000..5c10ce6f --- /dev/null +++ b/blockchains/ethereum/assets/0x3B4B29C4c1872a60D09937686bD2b358Db9Dee8a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Teacher Coin", + "symbol": "TCH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3B4B29C4c1872a60D09937686bD2b358Db9Dee8a", + "status": "abandoned", + "id": "0x3B4B29C4c1872a60D09937686bD2b358Db9Dee8a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3B4B29C4c1872a60D09937686bD2b358Db9Dee8a/logo.png b/blockchains/ethereum/assets/0x3B4B29C4c1872a60D09937686bD2b358Db9Dee8a/logo.png new file mode 100644 index 00000000..2d684e03 Binary files /dev/null and b/blockchains/ethereum/assets/0x3B4B29C4c1872a60D09937686bD2b358Db9Dee8a/logo.png differ diff --git a/blockchains/ethereum/assets/0x3B50805453023a91a8bf641e279401a0b23FA6F9/info.json b/blockchains/ethereum/assets/0x3B50805453023a91a8bf641e279401a0b23FA6F9/info.json new file mode 100644 index 00000000..99105d31 --- /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 00000000..ffdd952d 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 00000000..49595379 --- /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 00000000..53ef7ec3 Binary files /dev/null and b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/logo.png differ diff --git a/blockchains/ethereum/assets/0x3B73c1B2ea59835cbfcADade5462b6aB630D9890/info.json b/blockchains/ethereum/assets/0x3B73c1B2ea59835cbfcADade5462b6aB630D9890/info.json new file mode 100644 index 00000000..fb078eed --- /dev/null +++ b/blockchains/ethereum/assets/0x3B73c1B2ea59835cbfcADade5462b6aB630D9890/info.json @@ -0,0 +1,11 @@ +{ + "name": "ChainSwap.com Governance Token", + "website": "https://chainswap.com/", + "description": "ChainSwap is a cross-chain asset bridge & application hub for smart chains.", + "explorer": "https://etherscan.io/token/0x3B73c1B2ea59835cbfcADade5462b6aB630D9890", + "type": "ERC20", + "symbol": "TOKEN", + "decimals": 18, + "status": "active", + "id": "0x3B73c1B2ea59835cbfcADade5462b6aB630D9890" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3B73c1B2ea59835cbfcADade5462b6aB630D9890/logo.png b/blockchains/ethereum/assets/0x3B73c1B2ea59835cbfcADade5462b6aB630D9890/logo.png new file mode 100644 index 00000000..23ef147b Binary files /dev/null and b/blockchains/ethereum/assets/0x3B73c1B2ea59835cbfcADade5462b6aB630D9890/logo.png differ diff --git a/blockchains/ethereum/assets/0x3B78dc5736a49BD297Dd2E4d62daA83D35A22749/info.json b/blockchains/ethereum/assets/0x3B78dc5736a49BD297Dd2E4d62daA83D35A22749/info.json new file mode 100644 index 00000000..72810ac1 --- /dev/null +++ b/blockchains/ethereum/assets/0x3B78dc5736a49BD297Dd2E4d62daA83D35A22749/info.json @@ -0,0 +1,17 @@ +{ + "name": "Finswap", + "website": "https://finswap.app", + "description": "Finswap is a DEX trading and aggregation suite which provides advanced trading features augmented with defi integrations under one roof.", + "explorer": "https://etherscan.io/token/0x3B78dc5736a49BD297Dd2E4d62daA83D35A22749", + "type": "ERC20", + "symbol": "FNSP", + "decimals": 18, + "status": "active", + "id": "0x3B78dc5736a49BD297Dd2E4d62daA83D35A22749", + "links": [ + { + "name": "github", + "url": "https://github.com/finswap-app" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3B78dc5736a49BD297Dd2E4d62daA83D35A22749/logo.png b/blockchains/ethereum/assets/0x3B78dc5736a49BD297Dd2E4d62daA83D35A22749/logo.png new file mode 100644 index 00000000..320397e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x3B78dc5736a49BD297Dd2E4d62daA83D35A22749/logo.png differ diff --git a/blockchains/ethereum/assets/0x3B7f247f21BF3A07088C2D3423F64233d4B069F7/info.json b/blockchains/ethereum/assets/0x3B7f247f21BF3A07088C2D3423F64233d4B069F7/info.json new file mode 100644 index 00000000..03322005 --- /dev/null +++ b/blockchains/ethereum/assets/0x3B7f247f21BF3A07088C2D3423F64233d4B069F7/info.json @@ -0,0 +1,14 @@ +{ + "name": "DYNAMITE", + "symbol": "DYNMT", + "type": "ERC20", + "decimals": 2, + "description": "DYNMT is a community-based experimental project, which was prepared for the purpose of deflation and was produced on the Ethereum network. The DYNAMITE token smart contract is designed to burn 2% per transfer.", + "website": "http://dynamitetoken.io/", + "explorer": "https://etherscan.io/token/0x3B7f247f21BF3A07088C2D3423F64233d4B069F7", + "status": "active", + "id": "0x3B7f247f21BF3A07088C2D3423F64233d4B069F7", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3B7f247f21BF3A07088C2D3423F64233d4B069F7/logo.png b/blockchains/ethereum/assets/0x3B7f247f21BF3A07088C2D3423F64233d4B069F7/logo.png new file mode 100644 index 00000000..a30e3347 Binary files /dev/null and b/blockchains/ethereum/assets/0x3B7f247f21BF3A07088C2D3423F64233d4B069F7/logo.png differ diff --git a/blockchains/ethereum/assets/0x3BB72e05402C45198C0CeB76354205DeAA65542c/info.json b/blockchains/ethereum/assets/0x3BB72e05402C45198C0CeB76354205DeAA65542c/info.json new file mode 100644 index 00000000..12bc2754 --- /dev/null +++ b/blockchains/ethereum/assets/0x3BB72e05402C45198C0CeB76354205DeAA65542c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kyber", + "symbol": "KPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3BB72e05402C45198C0CeB76354205DeAA65542c", + "status": "abandoned", + "id": "0x3BB72e05402C45198C0CeB76354205DeAA65542c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3BB72e05402C45198C0CeB76354205DeAA65542c/logo.png b/blockchains/ethereum/assets/0x3BB72e05402C45198C0CeB76354205DeAA65542c/logo.png new file mode 100755 index 00000000..0fcdda72 Binary files /dev/null and b/blockchains/ethereum/assets/0x3BB72e05402C45198C0CeB76354205DeAA65542c/logo.png differ diff --git a/blockchains/ethereum/assets/0x3BD183046cf51acC807D1f0680029Fa764f17BEE/info.json b/blockchains/ethereum/assets/0x3BD183046cf51acC807D1f0680029Fa764f17BEE/info.json new file mode 100644 index 00000000..6bbd758d --- /dev/null +++ b/blockchains/ethereum/assets/0x3BD183046cf51acC807D1f0680029Fa764f17BEE/info.json @@ -0,0 +1,11 @@ +{ + "name": "ULTRON", + "symbol": "UTRN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3BD183046cf51acC807D1f0680029Fa764f17BEE", + "status": "abandoned", + "id": "0x3BD183046cf51acC807D1f0680029Fa764f17BEE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3BD183046cf51acC807D1f0680029Fa764f17BEE/logo.png b/blockchains/ethereum/assets/0x3BD183046cf51acC807D1f0680029Fa764f17BEE/logo.png new file mode 100644 index 00000000..a09f033d Binary files /dev/null and b/blockchains/ethereum/assets/0x3BD183046cf51acC807D1f0680029Fa764f17BEE/logo.png differ diff --git a/blockchains/ethereum/assets/0x3BD85455aC58cd787E327ED993F8D92225f08F68/info.json b/blockchains/ethereum/assets/0x3BD85455aC58cd787E327ED993F8D92225f08F68/info.json new file mode 100644 index 00000000..480640b4 --- /dev/null +++ b/blockchains/ethereum/assets/0x3BD85455aC58cd787E327ED993F8D92225f08F68/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nickel Token", + "symbol": "NKL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3BD85455aC58cd787E327ED993F8D92225f08F68", + "status": "abandoned", + "id": "0x3BD85455aC58cd787E327ED993F8D92225f08F68" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3BD85455aC58cd787E327ED993F8D92225f08F68/logo.png b/blockchains/ethereum/assets/0x3BD85455aC58cd787E327ED993F8D92225f08F68/logo.png new file mode 100644 index 00000000..b65e49fb Binary files /dev/null and b/blockchains/ethereum/assets/0x3BD85455aC58cd787E327ED993F8D92225f08F68/logo.png differ diff --git a/blockchains/ethereum/assets/0x3BE7bF1A5F23BD8336787D0289B70602f1940875/info.json b/blockchains/ethereum/assets/0x3BE7bF1A5F23BD8336787D0289B70602f1940875/info.json new file mode 100644 index 00000000..a01f6100 --- /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 00000000..a5e32b5a Binary files /dev/null and b/blockchains/ethereum/assets/0x3BE7bF1A5F23BD8336787D0289B70602f1940875/logo.png differ diff --git a/blockchains/ethereum/assets/0x3BeB004537DcDe3DA918C71a1e5065C5B4194910/info.json b/blockchains/ethereum/assets/0x3BeB004537DcDe3DA918C71a1e5065C5B4194910/info.json new file mode 100644 index 00000000..6be17c02 --- /dev/null +++ b/blockchains/ethereum/assets/0x3BeB004537DcDe3DA918C71a1e5065C5B4194910/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R818644", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3BeB004537DcDe3DA918C71a1e5065C5B4194910", + "status": "abandoned", + "id": "0x3BeB004537DcDe3DA918C71a1e5065C5B4194910" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3BeB004537DcDe3DA918C71a1e5065C5B4194910/logo.png b/blockchains/ethereum/assets/0x3BeB004537DcDe3DA918C71a1e5065C5B4194910/logo.png new file mode 100644 index 00000000..d47299cc Binary files /dev/null and b/blockchains/ethereum/assets/0x3BeB004537DcDe3DA918C71a1e5065C5B4194910/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C03b4EC9477809072FF9CC9292C9B25d4A8e6c6/info.json b/blockchains/ethereum/assets/0x3C03b4EC9477809072FF9CC9292C9B25d4A8e6c6/info.json new file mode 100644 index 00000000..48c9d3af --- /dev/null +++ b/blockchains/ethereum/assets/0x3C03b4EC9477809072FF9CC9292C9B25d4A8e6c6/info.json @@ -0,0 +1,21 @@ +{ + "name": "CoverCompared", + "type": "ERC20", + "symbol": "CVR", + "decimals": 18, + "website": "https://covercompared.com/", + "description": "CoverCompared is the First Decentralized aggregator for Traditional and Crypto insurance products.", + "explorer": "https://etherscan.io/token/0x3C03b4EC9477809072FF9CC9292C9B25d4A8e6c6", + "status": "active", + "id": "0x3C03b4EC9477809072FF9CC9292C9B25d4A8e6c6", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polkacover/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/polkacover" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C03b4EC9477809072FF9CC9292C9B25d4A8e6c6/logo.png b/blockchains/ethereum/assets/0x3C03b4EC9477809072FF9CC9292C9B25d4A8e6c6/logo.png new file mode 100644 index 00000000..c2a4d4d3 Binary files /dev/null and b/blockchains/ethereum/assets/0x3C03b4EC9477809072FF9CC9292C9B25d4A8e6c6/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C04FF86492Ce16CcB306AcB9226a1064CaFAd07/info.json b/blockchains/ethereum/assets/0x3C04FF86492Ce16CcB306AcB9226a1064CaFAd07/info.json new file mode 100644 index 00000000..532cde42 --- /dev/null +++ b/blockchains/ethereum/assets/0x3C04FF86492Ce16CcB306AcB9226a1064CaFAd07/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nuclear", + "symbol": "NCA", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3C04FF86492Ce16CcB306AcB9226a1064CaFAd07", + "status": "abandoned", + "id": "0x3C04FF86492Ce16CcB306AcB9226a1064CaFAd07" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C04FF86492Ce16CcB306AcB9226a1064CaFAd07/logo.png b/blockchains/ethereum/assets/0x3C04FF86492Ce16CcB306AcB9226a1064CaFAd07/logo.png new file mode 100644 index 00000000..4f01d56d Binary files /dev/null and b/blockchains/ethereum/assets/0x3C04FF86492Ce16CcB306AcB9226a1064CaFAd07/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C0cAC8290E2a6241814f812259278beA9050838/info.json b/blockchains/ethereum/assets/0x3C0cAC8290E2a6241814f812259278beA9050838/info.json new file mode 100644 index 00000000..bcb778b9 --- /dev/null +++ b/blockchains/ethereum/assets/0x3C0cAC8290E2a6241814f812259278beA9050838/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOSTOKEN", + "symbol": "BOS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3C0cAC8290E2a6241814f812259278beA9050838", + "status": "abandoned", + "id": "0x3C0cAC8290E2a6241814f812259278beA9050838" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C0cAC8290E2a6241814f812259278beA9050838/logo.png b/blockchains/ethereum/assets/0x3C0cAC8290E2a6241814f812259278beA9050838/logo.png new file mode 100755 index 00000000..e7ebd963 Binary files /dev/null and b/blockchains/ethereum/assets/0x3C0cAC8290E2a6241814f812259278beA9050838/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C2A309d9005433c1BC2C92EF1bE06489e5bf258/info.json b/blockchains/ethereum/assets/0x3C2A309d9005433c1BC2C92EF1bE06489e5bf258/info.json new file mode 100644 index 00000000..1dea4d16 --- /dev/null +++ b/blockchains/ethereum/assets/0x3C2A309d9005433c1BC2C92EF1bE06489e5bf258/info.json @@ -0,0 +1,17 @@ +{ + "name": "Wrapped PCI", + "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 00000000..784abffb Binary files /dev/null and b/blockchains/ethereum/assets/0x3C2A309d9005433c1BC2C92EF1bE06489e5bf258/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C2cf21b9d4b543B93A9BcFe637F673d8BD944D8/info.json b/blockchains/ethereum/assets/0x3C2cf21b9d4b543B93A9BcFe637F673d8BD944D8/info.json new file mode 100644 index 00000000..5eb47b43 --- /dev/null +++ b/blockchains/ethereum/assets/0x3C2cf21b9d4b543B93A9BcFe637F673d8BD944D8/info.json @@ -0,0 +1,17 @@ +{ + "name": "Origin D", + "website": "https://dsdaq.com/", + "description": "OD is the Dsdaq ecosystem utility token", + "explorer": "https://etherscan.io/token/0x3C2cf21b9d4b543B93A9BcFe637F673d8BD944D8", + "type": "ERC20", + "symbol": "OD", + "decimals": 18, + "status": "active", + "id": "0x3C2cf21b9d4b543B93A9BcFe637F673d8BD944D8", + "links": [ + { + "name": "whitepaper", + "url": "https://static.dsdaq.com/pdf/Dsdaq-white-paper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C2cf21b9d4b543B93A9BcFe637F673d8BD944D8/logo.png b/blockchains/ethereum/assets/0x3C2cf21b9d4b543B93A9BcFe637F673d8BD944D8/logo.png new file mode 100644 index 00000000..5e0daa0c Binary files /dev/null and b/blockchains/ethereum/assets/0x3C2cf21b9d4b543B93A9BcFe637F673d8BD944D8/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C35132D0b129F068Fdfa65b2c4D265Fa5d8CEa6/info.json b/blockchains/ethereum/assets/0x3C35132D0b129F068Fdfa65b2c4D265Fa5d8CEa6/info.json new file mode 100644 index 00000000..e60dbd8e --- /dev/null +++ b/blockchains/ethereum/assets/0x3C35132D0b129F068Fdfa65b2c4D265Fa5d8CEa6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jonathan Joseph", + "symbol": "JJJ", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3C35132D0b129F068Fdfa65b2c4D265Fa5d8CEa6", + "status": "abandoned", + "id": "0x3C35132D0b129F068Fdfa65b2c4D265Fa5d8CEa6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C35132D0b129F068Fdfa65b2c4D265Fa5d8CEa6/logo.png b/blockchains/ethereum/assets/0x3C35132D0b129F068Fdfa65b2c4D265Fa5d8CEa6/logo.png new file mode 100644 index 00000000..eaf8abbf Binary files /dev/null and b/blockchains/ethereum/assets/0x3C35132D0b129F068Fdfa65b2c4D265Fa5d8CEa6/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C3f450Aa47C87c822D3E305b066e713dF04C1B3/info.json b/blockchains/ethereum/assets/0x3C3f450Aa47C87c822D3E305b066e713dF04C1B3/info.json new file mode 100644 index 00000000..56fda4e6 --- /dev/null +++ b/blockchains/ethereum/assets/0x3C3f450Aa47C87c822D3E305b066e713dF04C1B3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Canote Platform", + "symbol": "CPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3C3f450Aa47C87c822D3E305b066e713dF04C1B3", + "status": "abandoned", + "id": "0x3C3f450Aa47C87c822D3E305b066e713dF04C1B3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C3f450Aa47C87c822D3E305b066e713dF04C1B3/logo.png b/blockchains/ethereum/assets/0x3C3f450Aa47C87c822D3E305b066e713dF04C1B3/logo.png new file mode 100644 index 00000000..2ad70082 Binary files /dev/null and b/blockchains/ethereum/assets/0x3C3f450Aa47C87c822D3E305b066e713dF04C1B3/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C45B24359fB0E107a4eAA56Bd0F2cE66C99A0E5/info.json b/blockchains/ethereum/assets/0x3C45B24359fB0E107a4eAA56Bd0F2cE66C99A0E5/info.json new file mode 100644 index 00000000..141ebf4a --- /dev/null +++ b/blockchains/ethereum/assets/0x3C45B24359fB0E107a4eAA56Bd0F2cE66C99A0E5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Apple Network", + "symbol": "ANK", + "type": "ERC20", + "decimals": 18, + "description": "Apple Network is an investment / asset management platform where central authority is removed and more people can enjoy the investment or manage their assets equally.", + "website": "http://applenetwork.io/", + "explorer": "https://etherscan.io/token/0x3C45B24359fB0E107a4eAA56Bd0F2cE66C99A0E5", + "status": "active", + "id": "0x3C45B24359fB0E107a4eAA56Bd0F2cE66C99A0E5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C45B24359fB0E107a4eAA56Bd0F2cE66C99A0E5/logo.png b/blockchains/ethereum/assets/0x3C45B24359fB0E107a4eAA56Bd0F2cE66C99A0E5/logo.png new file mode 100644 index 00000000..9d4cab0b Binary files /dev/null and b/blockchains/ethereum/assets/0x3C45B24359fB0E107a4eAA56Bd0F2cE66C99A0E5/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d/info.json b/blockchains/ethereum/assets/0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d/info.json new file mode 100644 index 00000000..523b5f58 --- /dev/null +++ b/blockchains/ethereum/assets/0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d/info.json @@ -0,0 +1,37 @@ +{ + "name": "Voyager Token", + "symbol": "VGX", + "type": "ERC20", + "decimals": 8, + "description": "The Voyager Token (VGX) rewards users within the Voyager crypto broker ecosystem.", + "website": "https://www.investvoyager.com", + "explorer": "https://etherscan.io/token/0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d", + "status": "active", + "id": "0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d", + "links": [ + { + "name": "blog", + "url": "https://investvoyager.com/blog/" + }, + { + "name": "x", + "url": "https://x.com/investvoyager" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Invest_Voyager/" + }, + { + "name": "telegram", + "url": "https://t.me/investvoyager" + }, + { + "name": "whitepaper", + "url": "https://investvoyager.com/VoyagerToken/White_Paper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ethos/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d/logo.png b/blockchains/ethereum/assets/0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d/logo.png new file mode 100644 index 00000000..44342690 Binary files /dev/null and b/blockchains/ethereum/assets/0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C55b99c58a1Dc7001Dd96B902212d11c8eC7e15/info.json b/blockchains/ethereum/assets/0x3C55b99c58a1Dc7001Dd96B902212d11c8eC7e15/info.json new file mode 100644 index 00000000..f4867b0b --- /dev/null +++ b/blockchains/ethereum/assets/0x3C55b99c58a1Dc7001Dd96B902212d11c8eC7e15/info.json @@ -0,0 +1,11 @@ +{ + "name": "JS Token", + "symbol": "JST", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3C55b99c58a1Dc7001Dd96B902212d11c8eC7e15", + "status": "abandoned", + "id": "0x3C55b99c58a1Dc7001Dd96B902212d11c8eC7e15" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C55b99c58a1Dc7001Dd96B902212d11c8eC7e15/logo.png b/blockchains/ethereum/assets/0x3C55b99c58a1Dc7001Dd96B902212d11c8eC7e15/logo.png new file mode 100644 index 00000000..ebf7972b Binary files /dev/null and b/blockchains/ethereum/assets/0x3C55b99c58a1Dc7001Dd96B902212d11c8eC7e15/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C5Bf1a0f133083A220E02720d54E6F90Ad0858B/info.json b/blockchains/ethereum/assets/0x3C5Bf1a0f133083A220E02720d54E6F90Ad0858B/info.json new file mode 100644 index 00000000..b1b4565a --- /dev/null +++ b/blockchains/ethereum/assets/0x3C5Bf1a0f133083A220E02720d54E6F90Ad0858B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Old Fishman Token", + "symbol": "OFC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3C5Bf1a0f133083A220E02720d54E6F90Ad0858B", + "status": "abandoned", + "id": "0x3C5Bf1a0f133083A220E02720d54E6F90Ad0858B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C5Bf1a0f133083A220E02720d54E6F90Ad0858B/logo.png b/blockchains/ethereum/assets/0x3C5Bf1a0f133083A220E02720d54E6F90Ad0858B/logo.png new file mode 100644 index 00000000..486750e3 Binary files /dev/null and b/blockchains/ethereum/assets/0x3C5Bf1a0f133083A220E02720d54E6F90Ad0858B/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C6A7aB47B5F058Be0e7C7fE1A4b7925B8aCA40e/info.json b/blockchains/ethereum/assets/0x3C6A7aB47B5F058Be0e7C7fE1A4b7925B8aCA40e/info.json new file mode 100644 index 00000000..fbffa93f --- /dev/null +++ b/blockchains/ethereum/assets/0x3C6A7aB47B5F058Be0e7C7fE1A4b7925B8aCA40e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cajutel", + "symbol": "CAJ", + "type": "ERC20", + "decimals": 18, + "description": "Solar powered high speed internet for West Africa.", + "website": "https://cajutel.io/", + "explorer": "https://etherscan.io/token/0x3C6A7aB47B5F058Be0e7C7fE1A4b7925B8aCA40e", + "status": "active", + "id": "0x3C6A7aB47B5F058Be0e7C7fE1A4b7925B8aCA40e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C6A7aB47B5F058Be0e7C7fE1A4b7925B8aCA40e/logo.png b/blockchains/ethereum/assets/0x3C6A7aB47B5F058Be0e7C7fE1A4b7925B8aCA40e/logo.png new file mode 100644 index 00000000..1e6821dc Binary files /dev/null and b/blockchains/ethereum/assets/0x3C6A7aB47B5F058Be0e7C7fE1A4b7925B8aCA40e/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C6ff50c9Ec362efa359317009428d52115fe643/info.json b/blockchains/ethereum/assets/0x3C6ff50c9Ec362efa359317009428d52115fe643/info.json new file mode 100644 index 00000000..2ad533c0 --- /dev/null +++ b/blockchains/ethereum/assets/0x3C6ff50c9Ec362efa359317009428d52115fe643/info.json @@ -0,0 +1,11 @@ +{ + "name": "PeerEx Network", + "symbol": "PERX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://peerex.network/", + "explorer": "https://etherscan.io/token/0x3C6ff50c9Ec362efa359317009428d52115fe643", + "status": "abandoned", + "id": "0x3C6ff50c9Ec362efa359317009428d52115fe643" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C6ff50c9Ec362efa359317009428d52115fe643/logo.png b/blockchains/ethereum/assets/0x3C6ff50c9Ec362efa359317009428d52115fe643/logo.png new file mode 100644 index 00000000..9bdfbf95 Binary files /dev/null and b/blockchains/ethereum/assets/0x3C6ff50c9Ec362efa359317009428d52115fe643/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C70eDE2C45bF9F4Df18d8938D4f76d71c3E707d/info.json b/blockchains/ethereum/assets/0x3C70eDE2C45bF9F4Df18d8938D4f76d71c3E707d/info.json new file mode 100644 index 00000000..bcd09562 --- /dev/null +++ b/blockchains/ethereum/assets/0x3C70eDE2C45bF9F4Df18d8938D4f76d71c3E707d/info.json @@ -0,0 +1,11 @@ +{ + "name": "BASE", + "symbol": "D-BASE TOKEN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3C70eDE2C45bF9F4Df18d8938D4f76d71c3E707d", + "status": "abandoned", + "id": "0x3C70eDE2C45bF9F4Df18d8938D4f76d71c3E707d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C70eDE2C45bF9F4Df18d8938D4f76d71c3E707d/logo.png b/blockchains/ethereum/assets/0x3C70eDE2C45bF9F4Df18d8938D4f76d71c3E707d/logo.png new file mode 100644 index 00000000..be785586 Binary files /dev/null and b/blockchains/ethereum/assets/0x3C70eDE2C45bF9F4Df18d8938D4f76d71c3E707d/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C7b464376DB7C9927930cf50EEfDEA2EFF3A66A/info.json b/blockchains/ethereum/assets/0x3C7b464376DB7C9927930cf50EEfDEA2EFF3A66A/info.json new file mode 100644 index 00000000..c1f8e112 --- /dev/null +++ b/blockchains/ethereum/assets/0x3C7b464376DB7C9927930cf50EEfDEA2EFF3A66A/info.json @@ -0,0 +1,11 @@ +{ + "name": "USDA", + "symbol": "USDA", + "type": "ERC20", + "decimals": 8, + "description": "USDA is a traditional economic and encrypted currency exchange platform based on Block Chain Technology 3.0 issued by APDB for the natural economic regions of Asia-Pacific and its surrounding regions.", + "website": "https://usda.cc/en", + "explorer": "https://etherscan.io/token/0x3C7b464376DB7C9927930cf50EEfDEA2EFF3A66A", + "status": "active", + "id": "0x3C7b464376DB7C9927930cf50EEfDEA2EFF3A66A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C7b464376DB7C9927930cf50EEfDEA2EFF3A66A/logo.png b/blockchains/ethereum/assets/0x3C7b464376DB7C9927930cf50EEfDEA2EFF3A66A/logo.png new file mode 100644 index 00000000..fd0cd21d Binary files /dev/null and b/blockchains/ethereum/assets/0x3C7b464376DB7C9927930cf50EEfDEA2EFF3A66A/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C8F860423405A700f9F20e94c742eC38FD17735/info.json b/blockchains/ethereum/assets/0x3C8F860423405A700f9F20e94c742eC38FD17735/info.json new file mode 100644 index 00000000..25c88b20 --- /dev/null +++ b/blockchains/ethereum/assets/0x3C8F860423405A700f9F20e94c742eC38FD17735/info.json @@ -0,0 +1,11 @@ +{ + "name": "Oats", + "symbol": "OATS", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3C8F860423405A700f9F20e94c742eC38FD17735", + "status": "abandoned", + "id": "0x3C8F860423405A700f9F20e94c742eC38FD17735" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C8F860423405A700f9F20e94c742eC38FD17735/logo.png b/blockchains/ethereum/assets/0x3C8F860423405A700f9F20e94c742eC38FD17735/logo.png new file mode 100644 index 00000000..98a599da Binary files /dev/null and b/blockchains/ethereum/assets/0x3C8F860423405A700f9F20e94c742eC38FD17735/logo.png differ diff --git a/blockchains/ethereum/assets/0x3C9Ca73d5309d38c6F2C21b78b9aE1f4b2441188/info.json b/blockchains/ethereum/assets/0x3C9Ca73d5309d38c6F2C21b78b9aE1f4b2441188/info.json new file mode 100644 index 00000000..f74eca32 --- /dev/null +++ b/blockchains/ethereum/assets/0x3C9Ca73d5309d38c6F2C21b78b9aE1f4b2441188/info.json @@ -0,0 +1,11 @@ +{ + "name": "RADAR", + "symbol": "RDR", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3C9Ca73d5309d38c6F2C21b78b9aE1f4b2441188", + "status": "abandoned", + "id": "0x3C9Ca73d5309d38c6F2C21b78b9aE1f4b2441188" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3C9Ca73d5309d38c6F2C21b78b9aE1f4b2441188/logo.png b/blockchains/ethereum/assets/0x3C9Ca73d5309d38c6F2C21b78b9aE1f4b2441188/logo.png new file mode 100644 index 00000000..d2900e8d Binary files /dev/null and b/blockchains/ethereum/assets/0x3C9Ca73d5309d38c6F2C21b78b9aE1f4b2441188/logo.png differ diff --git a/blockchains/ethereum/assets/0x3CD7047117dbfD0DCB470514172aCe9f394c31e8/info.json b/blockchains/ethereum/assets/0x3CD7047117dbfD0DCB470514172aCe9f394c31e8/info.json new file mode 100644 index 00000000..8155a259 --- /dev/null +++ b/blockchains/ethereum/assets/0x3CD7047117dbfD0DCB470514172aCe9f394c31e8/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEX Token", + "symbol": "DEXT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3CD7047117dbfD0DCB470514172aCe9f394c31e8", + "status": "abandoned", + "id": "0x3CD7047117dbfD0DCB470514172aCe9f394c31e8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3CD7047117dbfD0DCB470514172aCe9f394c31e8/logo.png b/blockchains/ethereum/assets/0x3CD7047117dbfD0DCB470514172aCe9f394c31e8/logo.png new file mode 100755 index 00000000..a0b10246 Binary files /dev/null and b/blockchains/ethereum/assets/0x3CD7047117dbfD0DCB470514172aCe9f394c31e8/logo.png differ diff --git a/blockchains/ethereum/assets/0x3CF82d81C9b71B112C8DD0C05fa05CdCDEe90189/info.json b/blockchains/ethereum/assets/0x3CF82d81C9b71B112C8DD0C05fa05CdCDEe90189/info.json new file mode 100644 index 00000000..c4b6322e --- /dev/null +++ b/blockchains/ethereum/assets/0x3CF82d81C9b71B112C8DD0C05fa05CdCDEe90189/info.json @@ -0,0 +1,11 @@ +{ + "name": "C19", + "website": "https://c19godie.network/", + "description": "Coronavirus disease (COVID-19) is an infectious disease caused by a newly discovered coronavirus.", + "explorer": "https://etherscan.io/token/0x3CF82d81C9b71B112C8DD0C05fa05CdCDEe90189", + "type": "ERC20", + "symbol": "C19", + "decimals": 0, + "status": "active", + "id": "0x3CF82d81C9b71B112C8DD0C05fa05CdCDEe90189" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3CF82d81C9b71B112C8DD0C05fa05CdCDEe90189/logo.png b/blockchains/ethereum/assets/0x3CF82d81C9b71B112C8DD0C05fa05CdCDEe90189/logo.png new file mode 100644 index 00000000..c332179b Binary files /dev/null and b/blockchains/ethereum/assets/0x3CF82d81C9b71B112C8DD0C05fa05CdCDEe90189/logo.png differ diff --git a/blockchains/ethereum/assets/0x3Cafdbfe682aec17d5acE2f97A2f3ab3dCf6a4A9/info.json b/blockchains/ethereum/assets/0x3Cafdbfe682aec17d5acE2f97A2f3ab3dCf6a4A9/info.json new file mode 100644 index 00000000..43ebfd0f --- /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 00000000..229a2857 Binary files /dev/null and b/blockchains/ethereum/assets/0x3Cafdbfe682aec17d5acE2f97A2f3ab3dCf6a4A9/logo.png differ diff --git a/blockchains/ethereum/assets/0x3D03Ff35F9CE83DD260C3fD928aD212e3D7f3E9b/info.json b/blockchains/ethereum/assets/0x3D03Ff35F9CE83DD260C3fD928aD212e3D7f3E9b/info.json new file mode 100644 index 00000000..222af7ce --- /dev/null +++ b/blockchains/ethereum/assets/0x3D03Ff35F9CE83DD260C3fD928aD212e3D7f3E9b/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R910505", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3D03Ff35F9CE83DD260C3fD928aD212e3D7f3E9b", + "status": "spam", + "id": "0x3D03Ff35F9CE83DD260C3fD928aD212e3D7f3E9b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3D03Ff35F9CE83DD260C3fD928aD212e3D7f3E9b/logo.png b/blockchains/ethereum/assets/0x3D03Ff35F9CE83DD260C3fD928aD212e3D7f3E9b/logo.png new file mode 100644 index 00000000..91371a9c Binary files /dev/null and b/blockchains/ethereum/assets/0x3D03Ff35F9CE83DD260C3fD928aD212e3D7f3E9b/logo.png differ diff --git a/blockchains/ethereum/assets/0x3D07c3161F355Cb9E5B524beF8d113c96e0263AB/info.json b/blockchains/ethereum/assets/0x3D07c3161F355Cb9E5B524beF8d113c96e0263AB/info.json new file mode 100644 index 00000000..245571bc --- /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 00000000..b783120d 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 new file mode 100644 index 00000000..70b5c7fe --- /dev/null +++ b/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/info.json @@ -0,0 +1,32 @@ +{ + "name": "ANIVERSE", + "type": "ERC20", + "symbol": "ANV", + "decimals": 18, + "website": "https://aniverse.io/", + "description": "ANIVERSE project is an 'Online Theme Park' platform that combines actual businesses based on animation IP with blockchain technology. ANIVERSE allows anyone to access animation IP sources through our platform to create and sell IP products, contents.", + "explorer": "https://etherscan.io/token/0x3D382228C54736d831FAC2748F4734D9177c7332", + "status": "active", + "id": "0x3D382228C54736d831FAC2748F4734D9177c7332", + "links": [ + { + "name": "x", + "url": "https://x.com/ANIVERSE17" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/AAAAAFe2QpUJl8SOEb7pww" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aniverse/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aniverse/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/logo.png b/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/logo.png new file mode 100644 index 00000000..c62d4dcc Binary files /dev/null and b/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/logo.png differ diff --git a/blockchains/ethereum/assets/0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30/info.json b/blockchains/ethereum/assets/0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30/info.json new file mode 100644 index 00000000..6d7a4de8 --- /dev/null +++ b/blockchains/ethereum/assets/0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vidya", + "website": "https://team3d.io", + "description": "Vidya is a DeFi gaming token for multiplayer games, cross-game inventories and experimental financial models on the blockchain.", + "explorer": "https://etherscan.io/token/0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30", + "type": "ERC20", + "symbol": "VIDYA", + "decimals": 18, + "status": "active", + "id": "0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30/logo.png b/blockchains/ethereum/assets/0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30/logo.png new file mode 100644 index 00000000..c2d79d3b Binary files /dev/null and b/blockchains/ethereum/assets/0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30/logo.png differ diff --git a/blockchains/ethereum/assets/0x3D41Ca3b76FEAABB9CEf094B1c6E24c89D66E0f3/info.json b/blockchains/ethereum/assets/0x3D41Ca3b76FEAABB9CEf094B1c6E24c89D66E0f3/info.json new file mode 100644 index 00000000..aa04b95a --- /dev/null +++ b/blockchains/ethereum/assets/0x3D41Ca3b76FEAABB9CEf094B1c6E24c89D66E0f3/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R891441", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3D41Ca3b76FEAABB9CEf094B1c6E24c89D66E0f3", + "status": "abandoned", + "id": "0x3D41Ca3b76FEAABB9CEf094B1c6E24c89D66E0f3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3D41Ca3b76FEAABB9CEf094B1c6E24c89D66E0f3/logo.png b/blockchains/ethereum/assets/0x3D41Ca3b76FEAABB9CEf094B1c6E24c89D66E0f3/logo.png new file mode 100644 index 00000000..ebe26b3f Binary files /dev/null and b/blockchains/ethereum/assets/0x3D41Ca3b76FEAABB9CEf094B1c6E24c89D66E0f3/logo.png differ diff --git a/blockchains/ethereum/assets/0x3D46454212c61ECb7b31248047Fa033120B88668/info.json b/blockchains/ethereum/assets/0x3D46454212c61ECb7b31248047Fa033120B88668/info.json new file mode 100644 index 00000000..a28e0816 --- /dev/null +++ b/blockchains/ethereum/assets/0x3D46454212c61ECb7b31248047Fa033120B88668/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Movement", + "symbol": "MVT", + "type": "ERC20", + "decimals": 18, + "description": "Decentralized organization for borderless collaboration. Headquartered in the Decentraland VR world.", + "website": "https://movementdao.io/", + "explorer": "https://etherscan.io/token/0x3D46454212c61ECb7b31248047Fa033120B88668", + "status": "active", + "id": "0x3D46454212c61ECb7b31248047Fa033120B88668" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3D46454212c61ECb7b31248047Fa033120B88668/logo.png b/blockchains/ethereum/assets/0x3D46454212c61ECb7b31248047Fa033120B88668/logo.png new file mode 100644 index 00000000..61073d4a Binary files /dev/null and b/blockchains/ethereum/assets/0x3D46454212c61ECb7b31248047Fa033120B88668/logo.png differ diff --git a/blockchains/ethereum/assets/0x3D58F7b1B6F0262031C319265bD57E4752e3fA1E/info.json b/blockchains/ethereum/assets/0x3D58F7b1B6F0262031C319265bD57E4752e3fA1E/info.json new file mode 100644 index 00000000..078ee403 --- /dev/null +++ b/blockchains/ethereum/assets/0x3D58F7b1B6F0262031C319265bD57E4752e3fA1E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Circolo Arduino Token", + "symbol": "ARDU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3D58F7b1B6F0262031C319265bD57E4752e3fA1E", + "status": "abandoned", + "id": "0x3D58F7b1B6F0262031C319265bD57E4752e3fA1E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3D58F7b1B6F0262031C319265bD57E4752e3fA1E/logo.png b/blockchains/ethereum/assets/0x3D58F7b1B6F0262031C319265bD57E4752e3fA1E/logo.png new file mode 100644 index 00000000..8ee36d3f Binary files /dev/null and b/blockchains/ethereum/assets/0x3D58F7b1B6F0262031C319265bD57E4752e3fA1E/logo.png differ diff --git a/blockchains/ethereum/assets/0x3D658390460295FB963f54dC0899cfb1c30776Df/info.json b/blockchains/ethereum/assets/0x3D658390460295FB963f54dC0899cfb1c30776Df/info.json new file mode 100644 index 00000000..9b6675cb --- /dev/null +++ b/blockchains/ethereum/assets/0x3D658390460295FB963f54dC0899cfb1c30776Df/info.json @@ -0,0 +1,11 @@ +{ + "name": "CircuitsOfValue", + "symbol": "Coval", + "type": "ERC20", + "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://etherscan.io/token/0x3D658390460295FB963f54dC0899cfb1c30776Df", + "status": "active", + "id": "0x3D658390460295FB963f54dC0899cfb1c30776Df" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3D658390460295FB963f54dC0899cfb1c30776Df/logo.png b/blockchains/ethereum/assets/0x3D658390460295FB963f54dC0899cfb1c30776Df/logo.png new file mode 100644 index 00000000..fa6dfaec Binary files /dev/null and b/blockchains/ethereum/assets/0x3D658390460295FB963f54dC0899cfb1c30776Df/logo.png differ diff --git a/blockchains/ethereum/assets/0x3D7975EcCFc61a2102b08925CbBa0a4D4dBB6555/info.json b/blockchains/ethereum/assets/0x3D7975EcCFc61a2102b08925CbBa0a4D4dBB6555/info.json new file mode 100644 index 00000000..420c0fab --- /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/0x3D7975EcCFc61a2102b08925CbBa0a4D4dBB6555/logo.png b/blockchains/ethereum/assets/0x3D7975EcCFc61a2102b08925CbBa0a4D4dBB6555/logo.png new file mode 100644 index 00000000..b17bf63f Binary files /dev/null and b/blockchains/ethereum/assets/0x3D7975EcCFc61a2102b08925CbBa0a4D4dBB6555/logo.png differ diff --git a/blockchains/ethereum/assets/0x3DB6Ba6ab6F95efed1a6E794caD492fAAabF294D/info.json b/blockchains/ethereum/assets/0x3DB6Ba6ab6F95efed1a6E794caD492fAAabF294D/info.json new file mode 100644 index 00000000..863313fe --- /dev/null +++ b/blockchains/ethereum/assets/0x3DB6Ba6ab6F95efed1a6E794caD492fAAabF294D/info.json @@ -0,0 +1,11 @@ +{ + "name": "LTO Network", + "symbol": "LTO", + "type": "ERC20", + "decimals": 8, + "description": "Old ERC20 Smart Contract for LTO Network, please swap to v2. LTO Network is a layer-1 platform for decentralized identities, verifiable credentials and decentralized workflow applications, while maintaining data privacy and GDPR compliance.", + "website": "https://www.ltonetwork.com/", + "explorer": "https://etherscan.io/token/0x3DB6Ba6ab6F95efed1a6E794caD492fAAabF294D", + "status": "abandoned", + "id": "0x3DB6Ba6ab6F95efed1a6E794caD492fAAabF294D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3DB6Ba6ab6F95efed1a6E794caD492fAAabF294D/logo.png b/blockchains/ethereum/assets/0x3DB6Ba6ab6F95efed1a6E794caD492fAAabF294D/logo.png new file mode 100644 index 00000000..0e771790 Binary files /dev/null and b/blockchains/ethereum/assets/0x3DB6Ba6ab6F95efed1a6E794caD492fAAabF294D/logo.png differ diff --git a/blockchains/ethereum/assets/0x3DB99ab08006aeFcC9600972eCA8C202396B4300/info.json b/blockchains/ethereum/assets/0x3DB99ab08006aeFcC9600972eCA8C202396B4300/info.json new file mode 100644 index 00000000..9a7822df --- /dev/null +++ b/blockchains/ethereum/assets/0x3DB99ab08006aeFcC9600972eCA8C202396B4300/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vinci", + "symbol": "VINCI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://vinci.id/", + "explorer": "https://etherscan.io/token/0x3DB99ab08006aeFcC9600972eCA8C202396B4300", + "status": "abandoned", + "id": "0x3DB99ab08006aeFcC9600972eCA8C202396B4300" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3DB99ab08006aeFcC9600972eCA8C202396B4300/logo.png b/blockchains/ethereum/assets/0x3DB99ab08006aeFcC9600972eCA8C202396B4300/logo.png new file mode 100644 index 00000000..787cecdb Binary files /dev/null and b/blockchains/ethereum/assets/0x3DB99ab08006aeFcC9600972eCA8C202396B4300/logo.png differ diff --git a/blockchains/ethereum/assets/0x3Da327288Da2fd44Ca855748432D78226537dEF5/info.json b/blockchains/ethereum/assets/0x3Da327288Da2fd44Ca855748432D78226537dEF5/info.json new file mode 100644 index 00000000..1d421bd3 --- /dev/null +++ b/blockchains/ethereum/assets/0x3Da327288Da2fd44Ca855748432D78226537dEF5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cashlink", + "symbol": "CLT", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3Da327288Da2fd44Ca855748432D78226537dEF5", + "status": "abandoned", + "id": "0x3Da327288Da2fd44Ca855748432D78226537dEF5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3Da327288Da2fd44Ca855748432D78226537dEF5/logo.png b/blockchains/ethereum/assets/0x3Da327288Da2fd44Ca855748432D78226537dEF5/logo.png new file mode 100644 index 00000000..f1719d25 Binary files /dev/null and b/blockchains/ethereum/assets/0x3Da327288Da2fd44Ca855748432D78226537dEF5/logo.png differ diff --git a/blockchains/ethereum/assets/0x3Da932456D082CBa208FEB0B096d49b202Bf89c8/info.json b/blockchains/ethereum/assets/0x3Da932456D082CBa208FEB0B096d49b202Bf89c8/info.json new file mode 100644 index 00000000..447b08d9 --- /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 00000000..0949f848 Binary files /dev/null and b/blockchains/ethereum/assets/0x3Da932456D082CBa208FEB0B096d49b202Bf89c8/logo.png differ diff --git a/blockchains/ethereum/assets/0x3Dd957216C182675F630ee2eE957a5c735472FD1/info.json b/blockchains/ethereum/assets/0x3Dd957216C182675F630ee2eE957a5c735472FD1/info.json new file mode 100644 index 00000000..4e8487de --- /dev/null +++ b/blockchains/ethereum/assets/0x3Dd957216C182675F630ee2eE957a5c735472FD1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planetagro-Exchange", + "symbol": "LEMON", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3Dd957216C182675F630ee2eE957a5c735472FD1", + "status": "abandoned", + "id": "0x3Dd957216C182675F630ee2eE957a5c735472FD1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3Dd957216C182675F630ee2eE957a5c735472FD1/logo.png b/blockchains/ethereum/assets/0x3Dd957216C182675F630ee2eE957a5c735472FD1/logo.png new file mode 100644 index 00000000..99fe1f0c Binary files /dev/null and b/blockchains/ethereum/assets/0x3Dd957216C182675F630ee2eE957a5c735472FD1/logo.png differ diff --git a/blockchains/ethereum/assets/0x3E083D08aDa591fe5356c52fBb89FE725fd9D670/info.json b/blockchains/ethereum/assets/0x3E083D08aDa591fe5356c52fBb89FE725fd9D670/info.json new file mode 100644 index 00000000..4aef8605 --- /dev/null +++ b/blockchains/ethereum/assets/0x3E083D08aDa591fe5356c52fBb89FE725fd9D670/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoTrust Token", + "symbol": "CTE", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3E083D08aDa591fe5356c52fBb89FE725fd9D670", + "status": "abandoned", + "id": "0x3E083D08aDa591fe5356c52fBb89FE725fd9D670" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3E083D08aDa591fe5356c52fBb89FE725fd9D670/logo.png b/blockchains/ethereum/assets/0x3E083D08aDa591fe5356c52fBb89FE725fd9D670/logo.png new file mode 100644 index 00000000..276b571b Binary files /dev/null and b/blockchains/ethereum/assets/0x3E083D08aDa591fe5356c52fBb89FE725fd9D670/logo.png differ diff --git a/blockchains/ethereum/assets/0x3E1d5A855aD9D948373aE68e4fe1f094612b1322/info.json b/blockchains/ethereum/assets/0x3E1d5A855aD9D948373aE68e4fe1f094612b1322/info.json new file mode 100644 index 00000000..6c669de4 --- /dev/null +++ b/blockchains/ethereum/assets/0x3E1d5A855aD9D948373aE68e4fe1f094612b1322/info.json @@ -0,0 +1,11 @@ +{ + "name": "HyperQuant Token", + "symbol": "HQT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://hyperquant.net/en", + "explorer": "https://etherscan.io/token/0x3E1d5A855aD9D948373aE68e4fe1f094612b1322", + "status": "abandoned", + "id": "0x3E1d5A855aD9D948373aE68e4fe1f094612b1322" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3E1d5A855aD9D948373aE68e4fe1f094612b1322/logo.png b/blockchains/ethereum/assets/0x3E1d5A855aD9D948373aE68e4fe1f094612b1322/logo.png new file mode 100644 index 00000000..34665d82 Binary files /dev/null and b/blockchains/ethereum/assets/0x3E1d5A855aD9D948373aE68e4fe1f094612b1322/logo.png differ diff --git a/blockchains/ethereum/assets/0x3E2E36a24CFCdCEa167789181f29109F9cF2D000/info.json b/blockchains/ethereum/assets/0x3E2E36a24CFCdCEa167789181f29109F9cF2D000/info.json new file mode 100644 index 00000000..8703cca4 --- /dev/null +++ b/blockchains/ethereum/assets/0x3E2E36a24CFCdCEa167789181f29109F9cF2D000/info.json @@ -0,0 +1,11 @@ +{ + "name": "AMRITA", + "symbol": "AMRITA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3E2E36a24CFCdCEa167789181f29109F9cF2D000", + "status": "abandoned", + "id": "0x3E2E36a24CFCdCEa167789181f29109F9cF2D000" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3E2E36a24CFCdCEa167789181f29109F9cF2D000/logo.png b/blockchains/ethereum/assets/0x3E2E36a24CFCdCEa167789181f29109F9cF2D000/logo.png new file mode 100644 index 00000000..e40dbd70 Binary files /dev/null and b/blockchains/ethereum/assets/0x3E2E36a24CFCdCEa167789181f29109F9cF2D000/logo.png differ diff --git a/blockchains/ethereum/assets/0x3E3dc42535c242844d8bff33f270A540140e4a0d/info.json b/blockchains/ethereum/assets/0x3E3dc42535c242844d8bff33f270A540140e4a0d/info.json new file mode 100644 index 00000000..519f2bc2 --- /dev/null +++ b/blockchains/ethereum/assets/0x3E3dc42535c242844d8bff33f270A540140e4a0d/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTC-E", + "symbol": "BTC-E", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3E3dc42535c242844d8bff33f270A540140e4a0d", + "status": "abandoned", + "id": "0x3E3dc42535c242844d8bff33f270A540140e4a0d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3E3dc42535c242844d8bff33f270A540140e4a0d/logo.png b/blockchains/ethereum/assets/0x3E3dc42535c242844d8bff33f270A540140e4a0d/logo.png new file mode 100644 index 00000000..b67d8ad0 Binary files /dev/null and b/blockchains/ethereum/assets/0x3E3dc42535c242844d8bff33f270A540140e4a0d/logo.png differ diff --git a/blockchains/ethereum/assets/0x3E5A19c91266aD8cE2477B91585d1856B84062dF/info.json b/blockchains/ethereum/assets/0x3E5A19c91266aD8cE2477B91585d1856B84062dF/info.json new file mode 100644 index 00000000..2118e1ab --- /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 00000000..236cc31f 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 new file mode 100644 index 00000000..2f641b17 --- /dev/null +++ b/blockchains/ethereum/assets/0x3E9BC21C9b189C09dF3eF1B824798658d5011937/info.json @@ -0,0 +1,36 @@ +{ + "name": "LINA", + "website": "https://linear.finance/", + "description": "Linear Finance is a cross-chain compatible, decentralized delta-one asset protocol to cost-effectively and instantly create, manage, and trade synthetic assets with unlimited liquidity", + "explorer": "https://etherscan.io/token/0x3E9BC21C9b189C09dF3eF1B824798658d5011937", + "type": "ERC20", + "symbol": "LINA", + "decimals": 18, + "status": "active", + "id": "0x3E9BC21C9b189C09dF3eF1B824798658d5011937", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/Linear-finance/linear" + }, + { + "name": "x", + "url": "https://x.com/LinearFinance" + }, + { + "name": "telegram", + "url": "https://t.me/linearfinanceofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linear/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/linear-bsc/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3E9BC21C9b189C09dF3eF1B824798658d5011937/logo.png b/blockchains/ethereum/assets/0x3E9BC21C9b189C09dF3eF1B824798658d5011937/logo.png new file mode 100644 index 00000000..c08b923c Binary files /dev/null and b/blockchains/ethereum/assets/0x3E9BC21C9b189C09dF3eF1B824798658d5011937/logo.png differ diff --git a/blockchains/ethereum/assets/0x3EB064766109D150e4362222df80638BcE00e037/info.json b/blockchains/ethereum/assets/0x3EB064766109D150e4362222df80638BcE00e037/info.json new file mode 100644 index 00000000..d507483a --- /dev/null +++ b/blockchains/ethereum/assets/0x3EB064766109D150e4362222df80638BcE00e037/info.json @@ -0,0 +1,11 @@ +{ + "name": "Synth sEUR", + "symbol": "sEUR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3EB064766109D150e4362222df80638BcE00e037", + "status": "abandoned", + "id": "0x3EB064766109D150e4362222df80638BcE00e037" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3EB064766109D150e4362222df80638BcE00e037/logo.png b/blockchains/ethereum/assets/0x3EB064766109D150e4362222df80638BcE00e037/logo.png new file mode 100644 index 00000000..73cc1c5a Binary files /dev/null and b/blockchains/ethereum/assets/0x3EB064766109D150e4362222df80638BcE00e037/logo.png differ diff --git a/blockchains/ethereum/assets/0x3EB55D5B22Ee0f9B03D59B4994C5AE7fe811bE92/info.json b/blockchains/ethereum/assets/0x3EB55D5B22Ee0f9B03D59B4994C5AE7fe811bE92/info.json new file mode 100644 index 00000000..ef086e93 --- /dev/null +++ b/blockchains/ethereum/assets/0x3EB55D5B22Ee0f9B03D59B4994C5AE7fe811bE92/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tratin", + "symbol": "TRAT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://tratin.io/", + "explorer": "https://etherscan.io/token/0x3EB55D5B22Ee0f9B03D59B4994C5AE7fe811bE92", + "status": "abandoned", + "id": "0x3EB55D5B22Ee0f9B03D59B4994C5AE7fe811bE92" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3EB55D5B22Ee0f9B03D59B4994C5AE7fe811bE92/logo.png b/blockchains/ethereum/assets/0x3EB55D5B22Ee0f9B03D59B4994C5AE7fe811bE92/logo.png new file mode 100644 index 00000000..8b690faa Binary files /dev/null and b/blockchains/ethereum/assets/0x3EB55D5B22Ee0f9B03D59B4994C5AE7fe811bE92/logo.png differ diff --git a/blockchains/ethereum/assets/0x3EDD235C3E840C1F29286B2e39370a255C7B6fdb/info.json b/blockchains/ethereum/assets/0x3EDD235C3E840C1F29286B2e39370a255C7B6fdb/info.json new file mode 100644 index 00000000..67a93f7e --- /dev/null +++ b/blockchains/ethereum/assets/0x3EDD235C3E840C1F29286B2e39370a255C7B6fdb/info.json @@ -0,0 +1,11 @@ +{ + "name": "CMB Token", + "symbol": "CMBT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3EDD235C3E840C1F29286B2e39370a255C7B6fdb", + "status": "abandoned", + "id": "0x3EDD235C3E840C1F29286B2e39370a255C7B6fdb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3EDD235C3E840C1F29286B2e39370a255C7B6fdb/logo.png b/blockchains/ethereum/assets/0x3EDD235C3E840C1F29286B2e39370a255C7B6fdb/logo.png new file mode 100755 index 00000000..edb41050 Binary files /dev/null and b/blockchains/ethereum/assets/0x3EDD235C3E840C1F29286B2e39370a255C7B6fdb/logo.png differ diff --git a/blockchains/ethereum/assets/0x3EFe61891886ea50C2dE51b934Ef5501FCaD6203/info.json b/blockchains/ethereum/assets/0x3EFe61891886ea50C2dE51b934Ef5501FCaD6203/info.json new file mode 100644 index 00000000..bef4205e --- /dev/null +++ b/blockchains/ethereum/assets/0x3EFe61891886ea50C2dE51b934Ef5501FCaD6203/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 214-CN34", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3EFe61891886ea50C2dE51b934Ef5501FCaD6203", + "status": "abandoned", + "id": "0x3EFe61891886ea50C2dE51b934Ef5501FCaD6203" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3EFe61891886ea50C2dE51b934Ef5501FCaD6203/logo.png b/blockchains/ethereum/assets/0x3EFe61891886ea50C2dE51b934Ef5501FCaD6203/logo.png new file mode 100644 index 00000000..30eaa493 Binary files /dev/null and b/blockchains/ethereum/assets/0x3EFe61891886ea50C2dE51b934Ef5501FCaD6203/logo.png differ diff --git a/blockchains/ethereum/assets/0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c/info.json b/blockchains/ethereum/assets/0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c/info.json new file mode 100644 index 00000000..565dd1d1 --- /dev/null +++ b/blockchains/ethereum/assets/0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c/info.json @@ -0,0 +1,12 @@ +{ + "name": "Rocket Bunny", + "website": "https://rocketbunny.io/", + "description": "Rocket Bunny combines the most sought after tokenomics across DeFi: automatic liquidity adds, compounding yield, deflationary supply, liquidity rewards, and price shock protection.", + "explorer": "https://etherscan.io/token/0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c", + "research": "https://rocketbunny.medium.com/welcome-to-rocket-bunny-f21b79f2715f", + "type": "ERC20", + "symbol": "BUNNY", + "decimals": 9, + "status": "active", + "id": "0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c/logo.png b/blockchains/ethereum/assets/0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c/logo.png new file mode 100644 index 00000000..99afe2a5 Binary files /dev/null and b/blockchains/ethereum/assets/0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c/logo.png differ diff --git a/blockchains/ethereum/assets/0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811/info.json b/blockchains/ethereum/assets/0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811/info.json new file mode 100644 index 00000000..af8fd064 --- /dev/null +++ b/blockchains/ethereum/assets/0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave USDT", + "symbol": "aUSDT", + "type": "ERC20", + "decimals": 6, + "description": "Aave USDT is an interest bearing token pegged 1:1 to the underlying USDT deposited in Aave. aUSDT accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811", + "status": "active", + "id": "0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811/logo.png b/blockchains/ethereum/assets/0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811/logo.png new file mode 100644 index 00000000..0a295f6e Binary files /dev/null and b/blockchains/ethereum/assets/0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811/logo.png differ diff --git a/blockchains/ethereum/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json b/blockchains/ethereum/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json new file mode 100644 index 00000000..42365365 --- /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 00000000..80b9ebb6 Binary files /dev/null and b/blockchains/ethereum/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/logo.png differ diff --git a/blockchains/ethereum/assets/0x3EfE03C53f94B65099dFF79b7Ca5Abf37a0B028c/info.json b/blockchains/ethereum/assets/0x3EfE03C53f94B65099dFF79b7Ca5Abf37a0B028c/info.json new file mode 100644 index 00000000..cb0273bf --- /dev/null +++ b/blockchains/ethereum/assets/0x3EfE03C53f94B65099dFF79b7Ca5Abf37a0B028c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Finance", + "symbol": "FI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3EfE03C53f94B65099dFF79b7Ca5Abf37a0B028c", + "status": "abandoned", + "id": "0x3EfE03C53f94B65099dFF79b7Ca5Abf37a0B028c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3EfE03C53f94B65099dFF79b7Ca5Abf37a0B028c/logo.png b/blockchains/ethereum/assets/0x3EfE03C53f94B65099dFF79b7Ca5Abf37a0B028c/logo.png new file mode 100644 index 00000000..e6636132 Binary files /dev/null and b/blockchains/ethereum/assets/0x3EfE03C53f94B65099dFF79b7Ca5Abf37a0B028c/logo.png differ diff --git a/blockchains/ethereum/assets/0x3F013B600D31557f551131614f439e0c292dFd90/info.json b/blockchains/ethereum/assets/0x3F013B600D31557f551131614f439e0c292dFd90/info.json new file mode 100644 index 00000000..5cd6254a --- /dev/null +++ b/blockchains/ethereum/assets/0x3F013B600D31557f551131614f439e0c292dFd90/info.json @@ -0,0 +1,11 @@ +{ + "name": "Market Coin", + "symbol": "MC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3F013B600D31557f551131614f439e0c292dFd90", + "status": "abandoned", + "id": "0x3F013B600D31557f551131614f439e0c292dFd90" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3F013B600D31557f551131614f439e0c292dFd90/logo.png b/blockchains/ethereum/assets/0x3F013B600D31557f551131614f439e0c292dFd90/logo.png new file mode 100644 index 00000000..67150046 Binary files /dev/null and b/blockchains/ethereum/assets/0x3F013B600D31557f551131614f439e0c292dFd90/logo.png differ diff --git a/blockchains/ethereum/assets/0x3F09400313e83d53366147e3ea0e4e2279D80850/info.json b/blockchains/ethereum/assets/0x3F09400313e83d53366147e3ea0e4e2279D80850/info.json new file mode 100644 index 00000000..3591f5f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x3F09400313e83d53366147e3ea0e4e2279D80850/info.json @@ -0,0 +1,25 @@ +{ + "name": "Kush.Finance", + "website": "https://kush.finance/", + "description": "Kush Finance is a Decentralized Finance (DeFi) governance token abbreviated as kSeed(kush.SEED) that allow its holders stake their kSEED to attain Kush finances secondary token known as kKUSH(kush.KUSH).", + "explorer": "https://etherscan.io/token/0x3F09400313e83d53366147e3ea0e4e2279D80850", + "type": "ERC20", + "symbol": "kSEED", + "decimals": 18, + "status": "active", + "id": "0x3F09400313e83d53366147e3ea0e4e2279D80850", + "links": [ + { + "name": "github", + "url": "https://github.com/KushFinance/" + }, + { + "name": "x", + "url": "https://x.com/KushFinance" + }, + { + "name": "telegram", + "url": "https://t.me/kushfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3F09400313e83d53366147e3ea0e4e2279D80850/logo.png b/blockchains/ethereum/assets/0x3F09400313e83d53366147e3ea0e4e2279D80850/logo.png new file mode 100644 index 00000000..6d537f2f Binary files /dev/null and b/blockchains/ethereum/assets/0x3F09400313e83d53366147e3ea0e4e2279D80850/logo.png differ diff --git a/blockchains/ethereum/assets/0x3F17Dd476faF0a4855572F0B6ed5115D9bBA22AD/info.json b/blockchains/ethereum/assets/0x3F17Dd476faF0a4855572F0B6ed5115D9bBA22AD/info.json new file mode 100644 index 00000000..1dbf0776 --- /dev/null +++ b/blockchains/ethereum/assets/0x3F17Dd476faF0a4855572F0B6ed5115D9bBA22AD/info.json @@ -0,0 +1,11 @@ +{ + "name": "WIBSON", + "symbol": "WIB", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3F17Dd476faF0a4855572F0B6ed5115D9bBA22AD", + "status": "abandoned", + "id": "0x3F17Dd476faF0a4855572F0B6ed5115D9bBA22AD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3F17Dd476faF0a4855572F0B6ed5115D9bBA22AD/logo.png b/blockchains/ethereum/assets/0x3F17Dd476faF0a4855572F0B6ed5115D9bBA22AD/logo.png new file mode 100644 index 00000000..7674909e Binary files /dev/null and b/blockchains/ethereum/assets/0x3F17Dd476faF0a4855572F0B6ed5115D9bBA22AD/logo.png differ diff --git a/blockchains/ethereum/assets/0x3F382DbD960E3a9bbCeaE22651E88158d2791550/info.json b/blockchains/ethereum/assets/0x3F382DbD960E3a9bbCeaE22651E88158d2791550/info.json new file mode 100644 index 00000000..c896d983 --- /dev/null +++ b/blockchains/ethereum/assets/0x3F382DbD960E3a9bbCeaE22651E88158d2791550/info.json @@ -0,0 +1,33 @@ +{ + "name": "Aavegotchi", + "website": "https://www.aavegotchi.com/", + "description": "Aavegotchis are crypto-collectibles living on the Ethereum blockchain, backed by the ERC721 standard used in popular blockchain games. $GHST is the official utility token of the Aavegotchi ecosystem and can be used to purchase portals, wearables, and consumables.", + "explorer": "https://etherscan.io/token/0x3F382DbD960E3a9bbCeaE22651E88158d2791550", + "type": "ERC20", + "symbol": "GHST", + "decimals": 18, + "status": "active", + "id": "0x3F382DbD960E3a9bbCeaE22651E88158d2791550", + "links": [ + { + "name": "github", + "url": "https://github.com/aavegotchi" + }, + { + "name": "x", + "url": "https://x.com/aavegotchi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aavegotchi/" + }, + { + "name": "medium", + "url": "https://aavegotchi.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aavegotchi-ghst-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3F382DbD960E3a9bbCeaE22651E88158d2791550/logo.png b/blockchains/ethereum/assets/0x3F382DbD960E3a9bbCeaE22651E88158d2791550/logo.png new file mode 100644 index 00000000..8619ffeb Binary files /dev/null and b/blockchains/ethereum/assets/0x3F382DbD960E3a9bbCeaE22651E88158d2791550/logo.png differ diff --git a/blockchains/ethereum/assets/0x3F3B3B269d9f7088B022290906acff8710914be1/info.json b/blockchains/ethereum/assets/0x3F3B3B269d9f7088B022290906acff8710914be1/info.json new file mode 100644 index 00000000..4cf94aa3 --- /dev/null +++ b/blockchains/ethereum/assets/0x3F3B3B269d9f7088B022290906acff8710914be1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Strike LINK", + "symbol": "sLINK", + "type": "ERC20", + "decimals": 18, + "description": "Strike Finance collateral cryptocurrency", + "explorer": "https://etherscan.io/token/0x3F3B3B269d9f7088B022290906acff8710914be1", + "status": "active", + "id": "0x3F3B3B269d9f7088B022290906acff8710914be1", + "website": "https://strike.org" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3F3B3B269d9f7088B022290906acff8710914be1/logo.png b/blockchains/ethereum/assets/0x3F3B3B269d9f7088B022290906acff8710914be1/logo.png new file mode 100644 index 00000000..b5744deb Binary files /dev/null and b/blockchains/ethereum/assets/0x3F3B3B269d9f7088B022290906acff8710914be1/logo.png differ diff --git a/blockchains/ethereum/assets/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7/info.json b/blockchains/ethereum/assets/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7/info.json new file mode 100644 index 00000000..cbe1f5b2 --- /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 00000000..1e727e0d Binary files /dev/null and b/blockchains/ethereum/assets/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7/logo.png differ diff --git a/blockchains/ethereum/assets/0x3F6f014849DEDB569628e3E1745120f308bb7699/info.json b/blockchains/ethereum/assets/0x3F6f014849DEDB569628e3E1745120f308bb7699/info.json new file mode 100644 index 00000000..de500bc3 --- /dev/null +++ b/blockchains/ethereum/assets/0x3F6f014849DEDB569628e3E1745120f308bb7699/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planetagro-Exchange", + "symbol": "AVOCADO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3F6f014849DEDB569628e3E1745120f308bb7699", + "status": "abandoned", + "id": "0x3F6f014849DEDB569628e3E1745120f308bb7699" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3F6f014849DEDB569628e3E1745120f308bb7699/logo.png b/blockchains/ethereum/assets/0x3F6f014849DEDB569628e3E1745120f308bb7699/logo.png new file mode 100755 index 00000000..b3eaab16 Binary files /dev/null and b/blockchains/ethereum/assets/0x3F6f014849DEDB569628e3E1745120f308bb7699/logo.png differ diff --git a/blockchains/ethereum/assets/0x3F7Aff0EF20AA2E646290DfA4E67611B2220C597/info.json b/blockchains/ethereum/assets/0x3F7Aff0EF20AA2E646290DfA4E67611B2220C597/info.json new file mode 100644 index 00000000..be41c0c6 --- /dev/null +++ b/blockchains/ethereum/assets/0x3F7Aff0EF20AA2E646290DfA4E67611B2220C597/info.json @@ -0,0 +1,24 @@ +{ + "name": "Volt Inu", + "website": "https://voltinu.in/", + "description": "Volt Inu ($VOLT) is a highly deflationary token that keeps growing through the use of true deflationary techniques and additional revenue generation.", + "explorer": "https://etherscan.io/token/0x3F7Aff0EF20AA2E646290DfA4E67611B2220C597", + "type": "ERC20", + "symbol": "VOLT", + "decimals": 9, + "status": "active", + "id": "0x3F7Aff0EF20AA2E646290DfA4E67611B2220C597", + "links": [ + { + "name": "x", + "url": "https://x.com/VoltInuOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/VoltInuOfficial" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3F7Aff0EF20AA2E646290DfA4E67611B2220C597/logo.png b/blockchains/ethereum/assets/0x3F7Aff0EF20AA2E646290DfA4E67611B2220C597/logo.png new file mode 100644 index 00000000..e5711038 Binary files /dev/null and b/blockchains/ethereum/assets/0x3F7Aff0EF20AA2E646290DfA4E67611B2220C597/logo.png differ diff --git a/blockchains/ethereum/assets/0x3F8828955db539DDD78ECC2A0cecD77d3Eb8B033/info.json b/blockchains/ethereum/assets/0x3F8828955db539DDD78ECC2A0cecD77d3Eb8B033/info.json new file mode 100644 index 00000000..e01b59ae --- /dev/null +++ b/blockchains/ethereum/assets/0x3F8828955db539DDD78ECC2A0cecD77d3Eb8B033/info.json @@ -0,0 +1,11 @@ +{ + "name": "AmethystCoin", + "symbol": "AMSC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3F8828955db539DDD78ECC2A0cecD77d3Eb8B033", + "status": "abandoned", + "id": "0x3F8828955db539DDD78ECC2A0cecD77d3Eb8B033" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3F8828955db539DDD78ECC2A0cecD77d3Eb8B033/logo.png b/blockchains/ethereum/assets/0x3F8828955db539DDD78ECC2A0cecD77d3Eb8B033/logo.png new file mode 100644 index 00000000..b5581825 Binary files /dev/null and b/blockchains/ethereum/assets/0x3F8828955db539DDD78ECC2A0cecD77d3Eb8B033/logo.png differ diff --git a/blockchains/ethereum/assets/0x3F8A2f7bcD70e7F7Bdd3FbB079c11d073588DEA2/info.json b/blockchains/ethereum/assets/0x3F8A2f7bcD70e7F7Bdd3FbB079c11d073588DEA2/info.json new file mode 100644 index 00000000..4b555331 --- /dev/null +++ b/blockchains/ethereum/assets/0x3F8A2f7bcD70e7F7Bdd3FbB079c11d073588DEA2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fireball", + "symbol": "FIRE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://fireball.network/", + "explorer": "https://etherscan.io/token/0x3F8A2f7bcD70e7F7Bdd3FbB079c11d073588DEA2", + "status": "abandoned", + "id": "0x3F8A2f7bcD70e7F7Bdd3FbB079c11d073588DEA2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3F8A2f7bcD70e7F7Bdd3FbB079c11d073588DEA2/logo.png b/blockchains/ethereum/assets/0x3F8A2f7bcD70e7F7Bdd3FbB079c11d073588DEA2/logo.png new file mode 100644 index 00000000..aee8e1ae Binary files /dev/null and b/blockchains/ethereum/assets/0x3F8A2f7bcD70e7F7Bdd3FbB079c11d073588DEA2/logo.png differ diff --git a/blockchains/ethereum/assets/0x3FA729B4548beCBAd4EaB6EF18413470e6D5324C/info.json b/blockchains/ethereum/assets/0x3FA729B4548beCBAd4EaB6EF18413470e6D5324C/info.json new file mode 100644 index 00000000..1349e680 --- /dev/null +++ b/blockchains/ethereum/assets/0x3FA729B4548beCBAd4EaB6EF18413470e6D5324C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mover", + "website": "https://viamover.com", + "description": "Mover -- financial service for a digital generation.", + "explorer": "https://etherscan.io/token/0x3FA729B4548beCBAd4EaB6EF18413470e6D5324C", + "type": "ERC20", + "symbol": "MOVE", + "decimals": 18, + "status": "active", + "id": "0x3FA729B4548beCBAd4EaB6EF18413470e6D5324C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3FA729B4548beCBAd4EaB6EF18413470e6D5324C/logo.png b/blockchains/ethereum/assets/0x3FA729B4548beCBAd4EaB6EF18413470e6D5324C/logo.png new file mode 100644 index 00000000..05fbb6cd Binary files /dev/null and b/blockchains/ethereum/assets/0x3FA729B4548beCBAd4EaB6EF18413470e6D5324C/logo.png differ diff --git a/blockchains/ethereum/assets/0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC/info.json b/blockchains/ethereum/assets/0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC/info.json new file mode 100644 index 00000000..83443c49 --- /dev/null +++ b/blockchains/ethereum/assets/0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC/info.json @@ -0,0 +1,48 @@ +{ + "name": "Castello Coin (CAST)", + "type": "ERC20", + "symbol": "CAST", + "decimals": 8, + "website": "https://castellocoin.com", + "description": "The Coin with his Brand Ambassador Castello Cube acts as a bridge between the traditional financial world of finance, the world of traditional forms of investment, traditional art and the new world, the world of cryptocurrencies and the digital age.", + "explorer": "https://etherscan.io/token/0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC", + "status": "active", + "id": "0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC", + "links": [ + { + "name": "x", + "url": "https://x.com/castellocoin" + }, + { + "name": "github", + "url": "https://github.com/castellocoin" + }, + { + "name": "telegram", + "url": "https://t.me/castellochat" + }, + { + "name": "telegram_news", + "url": "https://t.me/castellocoin" + }, + { + "name": "whitepaper", + "url": "https://docsend.com/view/s4sunjsscva8ajxt" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCeMyihvG3w2Y77n7xSkCTBA" + }, + { + "name": "source_code", + "url": "https://etherscan.io/address/0x3fab0bbaa03bceaf7c49e2b12877db0142be65fc#code" + }, + { + "name": "facebook", + "url": "https://facebook.com/Castello-Coin-102333735548185" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC/logo.png b/blockchains/ethereum/assets/0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC/logo.png new file mode 100644 index 00000000..c83c1789 Binary files /dev/null and b/blockchains/ethereum/assets/0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC/logo.png differ diff --git a/blockchains/ethereum/assets/0x3FD8f39A962eFDA04956981C31AB89FAB5FB8bC8/info.json b/blockchains/ethereum/assets/0x3FD8f39A962eFDA04956981C31AB89FAB5FB8bC8/info.json new file mode 100644 index 00000000..8aa07757 --- /dev/null +++ b/blockchains/ethereum/assets/0x3FD8f39A962eFDA04956981C31AB89FAB5FB8bC8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rotharium", + "symbol": "RTH", + "type": "ERC20", + "decimals": 18, + "description": "Rotharium Platform will connect Blockchain with stadard database solutions (Cloud and On-Premise) with B2C Apps.", + "website": "https://www.rotharium.io", + "explorer": "https://etherscan.io/token/0x3FD8f39A962eFDA04956981C31AB89FAB5FB8bC8", + "status": "active", + "id": "0x3FD8f39A962eFDA04956981C31AB89FAB5FB8bC8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3FD8f39A962eFDA04956981C31AB89FAB5FB8bC8/logo.png b/blockchains/ethereum/assets/0x3FD8f39A962eFDA04956981C31AB89FAB5FB8bC8/logo.png new file mode 100644 index 00000000..3086d122 Binary files /dev/null and b/blockchains/ethereum/assets/0x3FD8f39A962eFDA04956981C31AB89FAB5FB8bC8/logo.png differ diff --git a/blockchains/ethereum/assets/0x3FEEcA6f6d6C498cD72FA1c83fDF6fCcECabbDCF/info.json b/blockchains/ethereum/assets/0x3FEEcA6f6d6C498cD72FA1c83fDF6fCcECabbDCF/info.json new file mode 100644 index 00000000..1518c996 --- /dev/null +++ b/blockchains/ethereum/assets/0x3FEEcA6f6d6C498cD72FA1c83fDF6fCcECabbDCF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Famecoin", + "symbol": "FMCO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3FEEcA6f6d6C498cD72FA1c83fDF6fCcECabbDCF", + "status": "abandoned", + "id": "0x3FEEcA6f6d6C498cD72FA1c83fDF6fCcECabbDCF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3FEEcA6f6d6C498cD72FA1c83fDF6fCcECabbDCF/logo.png b/blockchains/ethereum/assets/0x3FEEcA6f6d6C498cD72FA1c83fDF6fCcECabbDCF/logo.png new file mode 100644 index 00000000..f13b0fbe Binary files /dev/null and b/blockchains/ethereum/assets/0x3FEEcA6f6d6C498cD72FA1c83fDF6fCcECabbDCF/logo.png differ diff --git a/blockchains/ethereum/assets/0x3FFcFF428ED65968032112F137724C1002F76632/info.json b/blockchains/ethereum/assets/0x3FFcFF428ED65968032112F137724C1002F76632/info.json new file mode 100644 index 00000000..a669e1b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x3FFcFF428ED65968032112F137724C1002F76632/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C581300", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3FFcFF428ED65968032112F137724C1002F76632", + "status": "abandoned", + "id": "0x3FFcFF428ED65968032112F137724C1002F76632" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3FFcFF428ED65968032112F137724C1002F76632/logo.png b/blockchains/ethereum/assets/0x3FFcFF428ED65968032112F137724C1002F76632/logo.png new file mode 100644 index 00000000..8b61356d Binary files /dev/null and b/blockchains/ethereum/assets/0x3FFcFF428ED65968032112F137724C1002F76632/logo.png differ diff --git a/blockchains/ethereum/assets/0x3Fb1926a7d1cC68d4166d99c3483465885074F2F/info.json b/blockchains/ethereum/assets/0x3Fb1926a7d1cC68d4166d99c3483465885074F2F/info.json new file mode 100644 index 00000000..5cd7a879 --- /dev/null +++ b/blockchains/ethereum/assets/0x3Fb1926a7d1cC68d4166d99c3483465885074F2F/info.json @@ -0,0 +1,11 @@ +{ + "name": "ACT", + "symbol": "ACT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3Fb1926a7d1cC68d4166d99c3483465885074F2F", + "status": "abandoned", + "id": "0x3Fb1926a7d1cC68d4166d99c3483465885074F2F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3Fb1926a7d1cC68d4166d99c3483465885074F2F/logo.png b/blockchains/ethereum/assets/0x3Fb1926a7d1cC68d4166d99c3483465885074F2F/logo.png new file mode 100755 index 00000000..06d4f3fa Binary files /dev/null and b/blockchains/ethereum/assets/0x3Fb1926a7d1cC68d4166d99c3483465885074F2F/logo.png differ diff --git a/blockchains/ethereum/assets/0x3Fe1c06061F3EA23f4Aa771Ed33Cf878486CF214/info.json b/blockchains/ethereum/assets/0x3Fe1c06061F3EA23f4Aa771Ed33Cf878486CF214/info.json new file mode 100644 index 00000000..01b998f7 --- /dev/null +++ b/blockchains/ethereum/assets/0x3Fe1c06061F3EA23f4Aa771Ed33Cf878486CF214/info.json @@ -0,0 +1,11 @@ +{ + "name": "VAYLA DEX", + "symbol": "VDEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3Fe1c06061F3EA23f4Aa771Ed33Cf878486CF214", + "status": "abandoned", + "id": "0x3Fe1c06061F3EA23f4Aa771Ed33Cf878486CF214" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3Fe1c06061F3EA23f4Aa771Ed33Cf878486CF214/logo.png b/blockchains/ethereum/assets/0x3Fe1c06061F3EA23f4Aa771Ed33Cf878486CF214/logo.png new file mode 100644 index 00000000..a638945a Binary files /dev/null and b/blockchains/ethereum/assets/0x3Fe1c06061F3EA23f4Aa771Ed33Cf878486CF214/logo.png differ diff --git a/blockchains/ethereum/assets/0x3a07572568f1B0B07Aa1A31d01377AA433FE4658/info.json b/blockchains/ethereum/assets/0x3a07572568f1B0B07Aa1A31d01377AA433FE4658/info.json new file mode 100644 index 00000000..783a0612 --- /dev/null +++ b/blockchains/ethereum/assets/0x3a07572568f1B0B07Aa1A31d01377AA433FE4658/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neon Finance", + "symbol": "NFC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3a07572568f1B0B07Aa1A31d01377AA433FE4658", + "status": "abandoned", + "id": "0x3a07572568f1B0B07Aa1A31d01377AA433FE4658" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3a07572568f1B0B07Aa1A31d01377AA433FE4658/logo.png b/blockchains/ethereum/assets/0x3a07572568f1B0B07Aa1A31d01377AA433FE4658/logo.png new file mode 100644 index 00000000..4070706a Binary files /dev/null and b/blockchains/ethereum/assets/0x3a07572568f1B0B07Aa1A31d01377AA433FE4658/logo.png differ diff --git a/blockchains/ethereum/assets/0x3a112D5BD99D4E9906a6aaf86dcb1891434C5cA4/info.json b/blockchains/ethereum/assets/0x3a112D5BD99D4E9906a6aaf86dcb1891434C5cA4/info.json new file mode 100644 index 00000000..ac3a45dc --- /dev/null +++ b/blockchains/ethereum/assets/0x3a112D5BD99D4E9906a6aaf86dcb1891434C5cA4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mavro Token", + "symbol": "MVR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3a112D5BD99D4E9906a6aaf86dcb1891434C5cA4", + "status": "abandoned", + "id": "0x3a112D5BD99D4E9906a6aaf86dcb1891434C5cA4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3a112D5BD99D4E9906a6aaf86dcb1891434C5cA4/logo.png b/blockchains/ethereum/assets/0x3a112D5BD99D4E9906a6aaf86dcb1891434C5cA4/logo.png new file mode 100755 index 00000000..3d73045e Binary files /dev/null and b/blockchains/ethereum/assets/0x3a112D5BD99D4E9906a6aaf86dcb1891434C5cA4/logo.png differ diff --git a/blockchains/ethereum/assets/0x3a1311B8C404629E38f61D566cefEFed083B9670/info.json b/blockchains/ethereum/assets/0x3a1311B8C404629E38f61D566cefEFed083B9670/info.json new file mode 100644 index 00000000..e7bb55c5 --- /dev/null +++ b/blockchains/ethereum/assets/0x3a1311B8C404629E38f61D566cefEFed083B9670/info.json @@ -0,0 +1,21 @@ +{ + "name": "Piccolo Inu", + "type": "ERC20", + "symbol": "PINU", + "decimals": 9, + "website": "https://www.piccoloinu.com", + "description": "PINU is a custom and unique NFT Marketplace DAPP, which will allow users to mint, sell, buy and trade their NFT's. In addition to the gaming platform, where they will be able to trade / play with their cards, they'll be able to show them to other users.", + "explorer": "https://etherscan.io/token/0x3a1311B8C404629E38f61D566cefEFed083B9670", + "status": "active", + "id": "0x3a1311B8C404629E38f61D566cefEFed083B9670", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/piccolo-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/piccolo-inu" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3a1311B8C404629E38f61D566cefEFed083B9670/logo.png b/blockchains/ethereum/assets/0x3a1311B8C404629E38f61D566cefEFed083B9670/logo.png new file mode 100644 index 00000000..55ad88b3 Binary files /dev/null and b/blockchains/ethereum/assets/0x3a1311B8C404629E38f61D566cefEFed083B9670/logo.png differ diff --git a/blockchains/ethereum/assets/0x3a1343a3Ca3c32a69b79AE82e8a9a71c1293C566/info.json b/blockchains/ethereum/assets/0x3a1343a3Ca3c32a69b79AE82e8a9a71c1293C566/info.json new file mode 100644 index 00000000..f4a69f9b --- /dev/null +++ b/blockchains/ethereum/assets/0x3a1343a3Ca3c32a69b79AE82e8a9a71c1293C566/info.json @@ -0,0 +1,11 @@ +{ + "name": "Onyx S&P 500", + "symbol": "OSPV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3a1343a3Ca3c32a69b79AE82e8a9a71c1293C566", + "status": "abandoned", + "id": "0x3a1343a3Ca3c32a69b79AE82e8a9a71c1293C566" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3a1343a3Ca3c32a69b79AE82e8a9a71c1293C566/logo.png b/blockchains/ethereum/assets/0x3a1343a3Ca3c32a69b79AE82e8a9a71c1293C566/logo.png new file mode 100644 index 00000000..8bd2d981 Binary files /dev/null and b/blockchains/ethereum/assets/0x3a1343a3Ca3c32a69b79AE82e8a9a71c1293C566/logo.png differ diff --git a/blockchains/ethereum/assets/0x3a16aF9Ef328D087cc781053A2a2a27549aE6768/info.json b/blockchains/ethereum/assets/0x3a16aF9Ef328D087cc781053A2a2a27549aE6768/info.json new file mode 100644 index 00000000..654f47b4 --- /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 00000000..d2742f94 Binary files /dev/null and b/blockchains/ethereum/assets/0x3a16aF9Ef328D087cc781053A2a2a27549aE6768/logo.png differ diff --git a/blockchains/ethereum/assets/0x3a1Bda28AdB5B0a812a7CF10A1950c920F79BcD3/info.json b/blockchains/ethereum/assets/0x3a1Bda28AdB5B0a812a7CF10A1950c920F79BcD3/info.json new file mode 100644 index 00000000..ef563924 --- /dev/null +++ b/blockchains/ethereum/assets/0x3a1Bda28AdB5B0a812a7CF10A1950c920F79BcD3/info.json @@ -0,0 +1,11 @@ +{ + "name": "FLIP Token", + "symbol": "FLP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://fliptoken.gameflip.com/", + "explorer": "https://etherscan.io/token/0x3a1Bda28AdB5B0a812a7CF10A1950c920F79BcD3", + "status": "active", + "id": "0x3a1Bda28AdB5B0a812a7CF10A1950c920F79BcD3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3a1Bda28AdB5B0a812a7CF10A1950c920F79BcD3/logo.png b/blockchains/ethereum/assets/0x3a1Bda28AdB5B0a812a7CF10A1950c920F79BcD3/logo.png new file mode 100644 index 00000000..b9f99f6c Binary files /dev/null and b/blockchains/ethereum/assets/0x3a1Bda28AdB5B0a812a7CF10A1950c920F79BcD3/logo.png differ diff --git a/blockchains/ethereum/assets/0x3a26746Ddb79B1B8e4450e3F4FFE3285A307387E/info.json b/blockchains/ethereum/assets/0x3a26746Ddb79B1B8e4450e3F4FFE3285A307387E/info.json new file mode 100644 index 00000000..d8fe4c37 --- /dev/null +++ b/blockchains/ethereum/assets/0x3a26746Ddb79B1B8e4450e3F4FFE3285A307387E/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETHERBTC", + "symbol": "ETHB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3a26746Ddb79B1B8e4450e3F4FFE3285A307387E", + "status": "abandoned", + "id": "0x3a26746Ddb79B1B8e4450e3F4FFE3285A307387E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3a26746Ddb79B1B8e4450e3F4FFE3285A307387E/logo.png b/blockchains/ethereum/assets/0x3a26746Ddb79B1B8e4450e3F4FFE3285A307387E/logo.png new file mode 100755 index 00000000..0d11c6e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x3a26746Ddb79B1B8e4450e3F4FFE3285A307387E/logo.png differ diff --git a/blockchains/ethereum/assets/0x3a2732Aa4A876f2dadeE90E15467d2e5ecd18160/info.json b/blockchains/ethereum/assets/0x3a2732Aa4A876f2dadeE90E15467d2e5ecd18160/info.json new file mode 100644 index 00000000..98c689aa --- /dev/null +++ b/blockchains/ethereum/assets/0x3a2732Aa4A876f2dadeE90E15467d2e5ecd18160/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "NTV-d", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3a2732Aa4A876f2dadeE90E15467d2e5ecd18160", + "status": "abandoned", + "id": "0x3a2732Aa4A876f2dadeE90E15467d2e5ecd18160" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3a2732Aa4A876f2dadeE90E15467d2e5ecd18160/logo.png b/blockchains/ethereum/assets/0x3a2732Aa4A876f2dadeE90E15467d2e5ecd18160/logo.png new file mode 100644 index 00000000..1ab178af Binary files /dev/null and b/blockchains/ethereum/assets/0x3a2732Aa4A876f2dadeE90E15467d2e5ecd18160/logo.png differ diff --git a/blockchains/ethereum/assets/0x3a2b1B35Ef3C8C1aF0138a25057cd2E69Ae7bF3b/info.json b/blockchains/ethereum/assets/0x3a2b1B35Ef3C8C1aF0138a25057cd2E69Ae7bF3b/info.json new file mode 100644 index 00000000..88736148 --- /dev/null +++ b/blockchains/ethereum/assets/0x3a2b1B35Ef3C8C1aF0138a25057cd2E69Ae7bF3b/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 270-CN51", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3a2b1B35Ef3C8C1aF0138a25057cd2E69Ae7bF3b", + "status": "abandoned", + "id": "0x3a2b1B35Ef3C8C1aF0138a25057cd2E69Ae7bF3b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3a2b1B35Ef3C8C1aF0138a25057cd2E69Ae7bF3b/logo.png b/blockchains/ethereum/assets/0x3a2b1B35Ef3C8C1aF0138a25057cd2E69Ae7bF3b/logo.png new file mode 100644 index 00000000..e20cd752 Binary files /dev/null and b/blockchains/ethereum/assets/0x3a2b1B35Ef3C8C1aF0138a25057cd2E69Ae7bF3b/logo.png differ diff --git a/blockchains/ethereum/assets/0x3a3A65aAb0dd2A17E3F1947bA16138cd37d08c04/info.json b/blockchains/ethereum/assets/0x3a3A65aAb0dd2A17E3F1947bA16138cd37d08c04/info.json new file mode 100644 index 00000000..516020ea --- /dev/null +++ b/blockchains/ethereum/assets/0x3a3A65aAb0dd2A17E3F1947bA16138cd37d08c04/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave ETH V1", + "website": "https://aave.com", + "description": "Aave ETH V1 is an interest bearing token pegged 1:1 to the underlying ETH deposited in Aave V1. aETH V1 accrue interest in real time in your wallet.", + "explorer": "https://etherscan.io/token/0x3a3A65aAb0dd2A17E3F1947bA16138cd37d08c04", + "type": "ERC20", + "symbol": "aETH V1", + "decimals": 18, + "status": "active", + "id": "0x3a3A65aAb0dd2A17E3F1947bA16138cd37d08c04" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3a3A65aAb0dd2A17E3F1947bA16138cd37d08c04/logo.png b/blockchains/ethereum/assets/0x3a3A65aAb0dd2A17E3F1947bA16138cd37d08c04/logo.png new file mode 100644 index 00000000..81e599bc Binary files /dev/null and b/blockchains/ethereum/assets/0x3a3A65aAb0dd2A17E3F1947bA16138cd37d08c04/logo.png differ diff --git a/blockchains/ethereum/assets/0x3a4282b8fFBae5De5AB6E29bAd3d08d83902Ebd2/info.json b/blockchains/ethereum/assets/0x3a4282b8fFBae5De5AB6E29bAd3d08d83902Ebd2/info.json new file mode 100644 index 00000000..f5eb2612 --- /dev/null +++ b/blockchains/ethereum/assets/0x3a4282b8fFBae5De5AB6E29bAd3d08d83902Ebd2/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPONT", + "symbol": "SPONT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3a4282b8fFBae5De5AB6E29bAd3d08d83902Ebd2", + "status": "abandoned", + "id": "0x3a4282b8fFBae5De5AB6E29bAd3d08d83902Ebd2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3a4282b8fFBae5De5AB6E29bAd3d08d83902Ebd2/logo.png b/blockchains/ethereum/assets/0x3a4282b8fFBae5De5AB6E29bAd3d08d83902Ebd2/logo.png new file mode 100644 index 00000000..9f78d9e9 Binary files /dev/null and b/blockchains/ethereum/assets/0x3a4282b8fFBae5De5AB6E29bAd3d08d83902Ebd2/logo.png differ diff --git a/blockchains/ethereum/assets/0x3a783e99E5a5618B8149e3380d14328139D97e31/info.json b/blockchains/ethereum/assets/0x3a783e99E5a5618B8149e3380d14328139D97e31/info.json new file mode 100644 index 00000000..f1b090ad --- /dev/null +++ b/blockchains/ethereum/assets/0x3a783e99E5a5618B8149e3380d14328139D97e31/info.json @@ -0,0 +1,11 @@ +{ + "name": "Curriculum Vitae", + "symbol": "CVH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3a783e99E5a5618B8149e3380d14328139D97e31", + "status": "abandoned", + "id": "0x3a783e99E5a5618B8149e3380d14328139D97e31" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3a783e99E5a5618B8149e3380d14328139D97e31/logo.png b/blockchains/ethereum/assets/0x3a783e99E5a5618B8149e3380d14328139D97e31/logo.png new file mode 100644 index 00000000..6a91c428 Binary files /dev/null and b/blockchains/ethereum/assets/0x3a783e99E5a5618B8149e3380d14328139D97e31/logo.png differ diff --git a/blockchains/ethereum/assets/0x3a86512ccA257c4DD8A68646C7c01df084E0f87d/info.json b/blockchains/ethereum/assets/0x3a86512ccA257c4DD8A68646C7c01df084E0f87d/info.json new file mode 100644 index 00000000..a755984a --- /dev/null +++ b/blockchains/ethereum/assets/0x3a86512ccA257c4DD8A68646C7c01df084E0f87d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Git", + "symbol": "Git", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3a86512ccA257c4DD8A68646C7c01df084E0f87d", + "status": "abandoned", + "id": "0x3a86512ccA257c4DD8A68646C7c01df084E0f87d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3a86512ccA257c4DD8A68646C7c01df084E0f87d/logo.png b/blockchains/ethereum/assets/0x3a86512ccA257c4DD8A68646C7c01df084E0f87d/logo.png new file mode 100644 index 00000000..e8a289d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x3a86512ccA257c4DD8A68646C7c01df084E0f87d/logo.png differ diff --git a/blockchains/ethereum/assets/0x3aCA71C508e06Dc6B2758DaB6eb20f7654572fb7/info.json b/blockchains/ethereum/assets/0x3aCA71C508e06Dc6B2758DaB6eb20f7654572fb7/info.json new file mode 100644 index 00000000..98e42d1c --- /dev/null +++ b/blockchains/ethereum/assets/0x3aCA71C508e06Dc6B2758DaB6eb20f7654572fb7/info.json @@ -0,0 +1,11 @@ +{ + "name": "DREP", + "symbol": "DREP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3aCA71C508e06Dc6B2758DaB6eb20f7654572fb7", + "status": "abandoned", + "id": "0x3aCA71C508e06Dc6B2758DaB6eb20f7654572fb7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3aCA71C508e06Dc6B2758DaB6eb20f7654572fb7/logo.png b/blockchains/ethereum/assets/0x3aCA71C508e06Dc6B2758DaB6eb20f7654572fb7/logo.png new file mode 100644 index 00000000..39b51c59 Binary files /dev/null and b/blockchains/ethereum/assets/0x3aCA71C508e06Dc6B2758DaB6eb20f7654572fb7/logo.png differ diff --git a/blockchains/ethereum/assets/0x3aFe47A46289B8eE2597ef8d8Ce7BEbF0f64172E/info.json b/blockchains/ethereum/assets/0x3aFe47A46289B8eE2597ef8d8Ce7BEbF0f64172E/info.json new file mode 100644 index 00000000..ab8be56d --- /dev/null +++ b/blockchains/ethereum/assets/0x3aFe47A46289B8eE2597ef8d8Ce7BEbF0f64172E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Swachhcoin", + "symbol": "SCX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3aFe47A46289B8eE2597ef8d8Ce7BEbF0f64172E", + "status": "abandoned", + "id": "0x3aFe47A46289B8eE2597ef8d8Ce7BEbF0f64172E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3aFe47A46289B8eE2597ef8d8Ce7BEbF0f64172E/logo.png b/blockchains/ethereum/assets/0x3aFe47A46289B8eE2597ef8d8Ce7BEbF0f64172E/logo.png new file mode 100755 index 00000000..9231377f Binary files /dev/null and b/blockchains/ethereum/assets/0x3aFe47A46289B8eE2597ef8d8Ce7BEbF0f64172E/logo.png differ diff --git a/blockchains/ethereum/assets/0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe/info.json b/blockchains/ethereum/assets/0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe/info.json new file mode 100644 index 00000000..26f471bd --- /dev/null +++ b/blockchains/ethereum/assets/0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe/info.json @@ -0,0 +1,11 @@ +{ + "name": "DSLA", + "symbol": "DSLA", + "type": "ERC20", + "decimals": 18, + "description": "DSLA Protocol's flagship use case is to offset the financial losses of Proof-of-Stake delegators.", + "website": "https://dsla.network", + "explorer": "https://etherscan.io/token/0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe", + "status": "active", + "id": "0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe/logo.png b/blockchains/ethereum/assets/0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe/logo.png new file mode 100644 index 00000000..512e9c4f Binary files /dev/null and b/blockchains/ethereum/assets/0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe/logo.png differ diff --git a/blockchains/ethereum/assets/0x3abdfF32F76b42E7635bdb7e425f0231A5F3aB17/info.json b/blockchains/ethereum/assets/0x3abdfF32F76b42E7635bdb7e425f0231A5F3aB17/info.json new file mode 100644 index 00000000..b8cb654c --- /dev/null +++ b/blockchains/ethereum/assets/0x3abdfF32F76b42E7635bdb7e425f0231A5F3aB17/info.json @@ -0,0 +1,11 @@ +{ + "name": "ConnectJob", + "symbol": "CJT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.connectjob.io/", + "explorer": "https://etherscan.io/token/0x3abdfF32F76b42E7635bdb7e425f0231A5F3aB17", + "status": "abandoned", + "id": "0x3abdfF32F76b42E7635bdb7e425f0231A5F3aB17" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3abdfF32F76b42E7635bdb7e425f0231A5F3aB17/logo.png b/blockchains/ethereum/assets/0x3abdfF32F76b42E7635bdb7e425f0231A5F3aB17/logo.png new file mode 100755 index 00000000..632e5bce Binary files /dev/null and b/blockchains/ethereum/assets/0x3abdfF32F76b42E7635bdb7e425f0231A5F3aB17/logo.png differ diff --git a/blockchains/ethereum/assets/0x3ac2AB91dDF57e2385089202Ca221C360CED0062/info.json b/blockchains/ethereum/assets/0x3ac2AB91dDF57e2385089202Ca221C360CED0062/info.json new file mode 100644 index 00000000..50a1770c --- /dev/null +++ b/blockchains/ethereum/assets/0x3ac2AB91dDF57e2385089202Ca221C360CED0062/info.json @@ -0,0 +1,11 @@ +{ + "name": "SwapShip RTC", + "website": "https://swapship.finance", + "description": "Rewards token received for staking liquidity within the SwapShip protocol. Read This Contract (RTC).", + "explorer": "https://etherscan.io/token/0x3ac2AB91dDF57e2385089202Ca221C360CED0062", + "type": "ERC20", + "symbol": "SWSH", + "decimals": 18, + "status": "active", + "id": "0x3ac2AB91dDF57e2385089202Ca221C360CED0062" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3ac2AB91dDF57e2385089202Ca221C360CED0062/logo.png b/blockchains/ethereum/assets/0x3ac2AB91dDF57e2385089202Ca221C360CED0062/logo.png new file mode 100755 index 00000000..667e76c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x3ac2AB91dDF57e2385089202Ca221C360CED0062/logo.png differ diff --git a/blockchains/ethereum/assets/0x3aebb174Ee393916715bd7999261c3eD32f22d82/info.json b/blockchains/ethereum/assets/0x3aebb174Ee393916715bd7999261c3eD32f22d82/info.json new file mode 100644 index 00000000..ff670bf5 --- /dev/null +++ b/blockchains/ethereum/assets/0x3aebb174Ee393916715bd7999261c3eD32f22d82/info.json @@ -0,0 +1,11 @@ +{ + "name": "WorldGamingTech", + "symbol": "WGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3aebb174Ee393916715bd7999261c3eD32f22d82", + "status": "abandoned", + "id": "0x3aebb174Ee393916715bd7999261c3eD32f22d82" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3aebb174Ee393916715bd7999261c3eD32f22d82/logo.png b/blockchains/ethereum/assets/0x3aebb174Ee393916715bd7999261c3eD32f22d82/logo.png new file mode 100644 index 00000000..8bff53b1 Binary files /dev/null and b/blockchains/ethereum/assets/0x3aebb174Ee393916715bd7999261c3eD32f22d82/logo.png differ diff --git a/blockchains/ethereum/assets/0x3afe25a2739B5C2E08CFec439F9621D91Ff7FBFb/info.json b/blockchains/ethereum/assets/0x3afe25a2739B5C2E08CFec439F9621D91Ff7FBFb/info.json new file mode 100644 index 00000000..f77b27ae --- /dev/null +++ b/blockchains/ethereum/assets/0x3afe25a2739B5C2E08CFec439F9621D91Ff7FBFb/info.json @@ -0,0 +1,11 @@ +{ + "name": "BULVRD", + "symbol": "BLVD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3afe25a2739B5C2E08CFec439F9621D91Ff7FBFb", + "status": "abandoned", + "id": "0x3afe25a2739B5C2E08CFec439F9621D91Ff7FBFb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3afe25a2739B5C2E08CFec439F9621D91Ff7FBFb/logo.png b/blockchains/ethereum/assets/0x3afe25a2739B5C2E08CFec439F9621D91Ff7FBFb/logo.png new file mode 100644 index 00000000..bf0bc8c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x3afe25a2739B5C2E08CFec439F9621D91Ff7FBFb/logo.png differ diff --git a/blockchains/ethereum/assets/0x3b16fB80Ab6Ac8562203F3913f58ee0c4DFc08B8/info.json b/blockchains/ethereum/assets/0x3b16fB80Ab6Ac8562203F3913f58ee0c4DFc08B8/info.json new file mode 100644 index 00000000..ae026249 --- /dev/null +++ b/blockchains/ethereum/assets/0x3b16fB80Ab6Ac8562203F3913f58ee0c4DFc08B8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Advertising Token", + "symbol": "AVT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "https://www.theadvertisingtoken.com/", + "explorer": "https://etherscan.io/token/0x3b16fB80Ab6Ac8562203F3913f58ee0c4DFc08B8", + "status": "abandoned", + "id": "0x3b16fB80Ab6Ac8562203F3913f58ee0c4DFc08B8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3b16fB80Ab6Ac8562203F3913f58ee0c4DFc08B8/logo.png b/blockchains/ethereum/assets/0x3b16fB80Ab6Ac8562203F3913f58ee0c4DFc08B8/logo.png new file mode 100644 index 00000000..28787961 Binary files /dev/null and b/blockchains/ethereum/assets/0x3b16fB80Ab6Ac8562203F3913f58ee0c4DFc08B8/logo.png differ diff --git a/blockchains/ethereum/assets/0x3b2f94C251c2CCcB7ad16a68F040A220CC2bDD72/info.json b/blockchains/ethereum/assets/0x3b2f94C251c2CCcB7ad16a68F040A220CC2bDD72/info.json new file mode 100644 index 00000000..efaa6eb0 --- /dev/null +++ b/blockchains/ethereum/assets/0x3b2f94C251c2CCcB7ad16a68F040A220CC2bDD72/info.json @@ -0,0 +1,11 @@ +{ + "name": "ALUCHAIN", + "symbol": "ALU", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3b2f94C251c2CCcB7ad16a68F040A220CC2bDD72", + "status": "abandoned", + "id": "0x3b2f94C251c2CCcB7ad16a68F040A220CC2bDD72" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3b2f94C251c2CCcB7ad16a68F040A220CC2bDD72/logo.png b/blockchains/ethereum/assets/0x3b2f94C251c2CCcB7ad16a68F040A220CC2bDD72/logo.png new file mode 100755 index 00000000..de1f4a2e Binary files /dev/null and b/blockchains/ethereum/assets/0x3b2f94C251c2CCcB7ad16a68F040A220CC2bDD72/logo.png differ diff --git a/blockchains/ethereum/assets/0x3b484b82567a09e2588A13D54D032153f0c0aEe0/info.json b/blockchains/ethereum/assets/0x3b484b82567a09e2588A13D54D032153f0c0aEe0/info.json new file mode 100644 index 00000000..3bceeffc --- /dev/null +++ b/blockchains/ethereum/assets/0x3b484b82567a09e2588A13D54D032153f0c0aEe0/info.json @@ -0,0 +1,28 @@ +{ + "name": "OpenDAO", + "type": "ERC20", + "symbol": "SOS", + "decimals": 18, + "website": "https://www.theopendao.com/", + "description": "$SOS is grateful to all NFT creators, collectors and markets for nurturing the entire NFT ecosystem.", + "explorer": "https://etherscan.io/token/0x3b484b82567a09e2588A13D54D032153f0c0aEe0", + "status": "active", + "id": "0x3b484b82567a09e2588A13D54D032153f0c0aEe0", + "tags": [ + "nft" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/The_OpenDAO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/opendao/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/zzzKhejARz" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3b484b82567a09e2588A13D54D032153f0c0aEe0/logo.png b/blockchains/ethereum/assets/0x3b484b82567a09e2588A13D54D032153f0c0aEe0/logo.png new file mode 100644 index 00000000..5e93db85 Binary files /dev/null and b/blockchains/ethereum/assets/0x3b484b82567a09e2588A13D54D032153f0c0aEe0/logo.png differ diff --git a/blockchains/ethereum/assets/0x3b4cAAAF6F3ce5Bee2871C89987cbd825Ac30822/info.json b/blockchains/ethereum/assets/0x3b4cAAAF6F3ce5Bee2871C89987cbd825Ac30822/info.json new file mode 100644 index 00000000..5fe98108 --- /dev/null +++ b/blockchains/ethereum/assets/0x3b4cAAAF6F3ce5Bee2871C89987cbd825Ac30822/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ofin Token", + "website": "https://ofin.io", + "description": "Ofin is non-custodial investment protocol that enables novices to invest directly into the funds managed by seasoned crypto traders", + "explorer": "https://etherscan.io/token/0x3b4cAAAF6F3ce5Bee2871C89987cbd825Ac30822", + "type": "ERC20", + "symbol": "ON", + "decimals": 18, + "status": "active", + "id": "0x3b4cAAAF6F3ce5Bee2871C89987cbd825Ac30822", + "links": [ + { + "name": "github", + "url": "https://github.com/Ofinio/Ofin.io" + }, + { + "name": "x", + "url": "https://x.com/OfinProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/ofin_io" + }, + { + "name": "medium", + "url": "https://medium.com/@ofin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3b4cAAAF6F3ce5Bee2871C89987cbd825Ac30822/logo.png b/blockchains/ethereum/assets/0x3b4cAAAF6F3ce5Bee2871C89987cbd825Ac30822/logo.png new file mode 100755 index 00000000..940c078a Binary files /dev/null and b/blockchains/ethereum/assets/0x3b4cAAAF6F3ce5Bee2871C89987cbd825Ac30822/logo.png differ diff --git a/blockchains/ethereum/assets/0x3b4f7CB9e60362A49dD04EB0091A374d340E3EfD/info.json b/blockchains/ethereum/assets/0x3b4f7CB9e60362A49dD04EB0091A374d340E3EfD/info.json new file mode 100644 index 00000000..ad4be4c5 --- /dev/null +++ b/blockchains/ethereum/assets/0x3b4f7CB9e60362A49dD04EB0091A374d340E3EfD/info.json @@ -0,0 +1,29 @@ +{ + "name": "ITAM", + "website": "https://itam.network", + "description": "ITAM operates a platform (NFT.Farm) that values digital assets and freely trades such assets using ITAM NFT. ITAM NFT is a Middleware technology for cultural and artistic creations such as paintings, comics, fashion, and games.", + "explorer": "https://etherscan.io/token/0x3b4f7CB9e60362A49dD04EB0091A374d340E3EfD", + "type": "ERC20", + "symbol": "ITAM", + "decimals": 18, + "status": "active", + "id": "0x3b4f7CB9e60362A49dD04EB0091A374d340E3EfD", + "links": [ + { + "name": "x", + "url": "https://x.com/itamgames" + }, + { + "name": "medium", + "url": "https://medium.com/itam" + }, + { + "name": "telegram", + "url": "https://t.me/itam_en" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCgM_ijLKjeibbQATtX46ZTw" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3b4f7CB9e60362A49dD04EB0091A374d340E3EfD/logo.png b/blockchains/ethereum/assets/0x3b4f7CB9e60362A49dD04EB0091A374d340E3EfD/logo.png new file mode 100644 index 00000000..7cc26756 Binary files /dev/null and b/blockchains/ethereum/assets/0x3b4f7CB9e60362A49dD04EB0091A374d340E3EfD/logo.png differ diff --git a/blockchains/ethereum/assets/0x3b544e6fcf6C8dCE9D8B45A4FdF21C9B02f9fDa9/info.json b/blockchains/ethereum/assets/0x3b544e6fcf6C8dCE9D8B45A4FdF21C9B02f9fDa9/info.json new file mode 100644 index 00000000..02c68f50 --- /dev/null +++ b/blockchains/ethereum/assets/0x3b544e6fcf6C8dCE9D8B45A4FdF21C9B02f9fDa9/info.json @@ -0,0 +1,33 @@ +{ + "name": "Giftedhands", + "website": "https://www.giftedhands.io", + "description": "Giftedhands aims to offer solutions to constant issues in payment to freelancer developers in terms of speeding up the payment process.", + "explorer": "https://etherscan.io/token/0x3b544e6fcf6C8dCE9D8B45A4FdF21C9B02f9fDa9", + "type": "ERC20", + "symbol": "GHD", + "decimals": 18, + "status": "active", + "id": "0x3b544e6fcf6C8dCE9D8B45A4FdF21C9B02f9fDa9", + "links": [ + { + "name": "x", + "url": "https://x.com/giftedhandsGHD" + }, + { + "name": "telegram", + "url": "https://t.me/GiftedHandsTokenChannel" + }, + { + "name": "youtube", + "url": "https://youtube.com/watch?v=lu9I7rN2Mus" + }, + { + "name": "facebook", + "url": "https://facebook.com/Gitedhands-Token-100871005019968/" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1Z7gUARX-h5xiF7Y5xFRQCiGf0yZQ7QP_/view" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3b544e6fcf6C8dCE9D8B45A4FdF21C9B02f9fDa9/logo.png b/blockchains/ethereum/assets/0x3b544e6fcf6C8dCE9D8B45A4FdF21C9B02f9fDa9/logo.png new file mode 100644 index 00000000..3b1b9e4d Binary files /dev/null and b/blockchains/ethereum/assets/0x3b544e6fcf6C8dCE9D8B45A4FdF21C9B02f9fDa9/logo.png differ diff --git a/blockchains/ethereum/assets/0x3b62F3820e0B035cc4aD602dECe6d796BC325325/info.json b/blockchains/ethereum/assets/0x3b62F3820e0B035cc4aD602dECe6d796BC325325/info.json new file mode 100644 index 00000000..4ce8cc2c --- /dev/null +++ b/blockchains/ethereum/assets/0x3b62F3820e0B035cc4aD602dECe6d796BC325325/info.json @@ -0,0 +1,33 @@ +{ + "name": "DEUS", + "website": "https://deus.finance/", + "description": "DEUS finance the next generation asset tokenization transpose any verifiable digital or non-digital asset securely onto the blockchain.", + "explorer": "https://etherscan.io/token/0x3b62F3820e0B035cc4aD602dECe6d796BC325325", + "type": "ERC20", + "symbol": "DEUS", + "decimals": 18, + "status": "abandoned", + "id": "0x3b62F3820e0B035cc4aD602dECe6d796BC325325", + "links": [ + { + "name": "github", + "url": "https://github.com/deusfinance" + }, + { + "name": "x", + "url": "https://x.com/DeusDao" + }, + { + "name": "telegram", + "url": "https://t.me/deusfinance" + }, + { + "name": "medium", + "url": "https://medium.com/@deusfinance" + }, + { + "name": "whitepaper", + "url": "https://deus.finance/litepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3b7120a39547AB5a3B8DD3890F468C7E6027C656/info.json b/blockchains/ethereum/assets/0x3b7120a39547AB5a3B8DD3890F468C7E6027C656/info.json new file mode 100644 index 00000000..08a6a8d1 --- /dev/null +++ b/blockchains/ethereum/assets/0x3b7120a39547AB5a3B8DD3890F468C7E6027C656/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C574371", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3b7120a39547AB5a3B8DD3890F468C7E6027C656", + "status": "abandoned", + "id": "0x3b7120a39547AB5a3B8DD3890F468C7E6027C656" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3b7120a39547AB5a3B8DD3890F468C7E6027C656/logo.png b/blockchains/ethereum/assets/0x3b7120a39547AB5a3B8DD3890F468C7E6027C656/logo.png new file mode 100644 index 00000000..9930e189 Binary files /dev/null and b/blockchains/ethereum/assets/0x3b7120a39547AB5a3B8DD3890F468C7E6027C656/logo.png differ diff --git a/blockchains/ethereum/assets/0x3b8D5FaCFf748c4525cDC1796990C8170A6206F1/info.json b/blockchains/ethereum/assets/0x3b8D5FaCFf748c4525cDC1796990C8170A6206F1/info.json new file mode 100644 index 00000000..8f7a5766 --- /dev/null +++ b/blockchains/ethereum/assets/0x3b8D5FaCFf748c4525cDC1796990C8170A6206F1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Atunala Token", + "symbol": "ATNL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3b8D5FaCFf748c4525cDC1796990C8170A6206F1", + "status": "abandoned", + "id": "0x3b8D5FaCFf748c4525cDC1796990C8170A6206F1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3b8D5FaCFf748c4525cDC1796990C8170A6206F1/logo.png b/blockchains/ethereum/assets/0x3b8D5FaCFf748c4525cDC1796990C8170A6206F1/logo.png new file mode 100644 index 00000000..cab56faf Binary files /dev/null and b/blockchains/ethereum/assets/0x3b8D5FaCFf748c4525cDC1796990C8170A6206F1/logo.png differ diff --git a/blockchains/ethereum/assets/0x3b991130eaE3CcA364406D718DA22FA1C3E7C256/info.json b/blockchains/ethereum/assets/0x3b991130eaE3CcA364406D718DA22FA1C3E7C256/info.json new file mode 100644 index 00000000..2a964b93 --- /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 00000000..4f7573f3 Binary files /dev/null and b/blockchains/ethereum/assets/0x3b991130eaE3CcA364406D718DA22FA1C3E7C256/logo.png differ diff --git a/blockchains/ethereum/assets/0x3b9afC0Ad5F9ba8dD2ac061C11D392B2430aAe7f/info.json b/blockchains/ethereum/assets/0x3b9afC0Ad5F9ba8dD2ac061C11D392B2430aAe7f/info.json new file mode 100644 index 00000000..70610739 --- /dev/null +++ b/blockchains/ethereum/assets/0x3b9afC0Ad5F9ba8dD2ac061C11D392B2430aAe7f/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R910507", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3b9afC0Ad5F9ba8dD2ac061C11D392B2430aAe7f", + "status": "abandoned", + "id": "0x3b9afC0Ad5F9ba8dD2ac061C11D392B2430aAe7f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3b9afC0Ad5F9ba8dD2ac061C11D392B2430aAe7f/logo.png b/blockchains/ethereum/assets/0x3b9afC0Ad5F9ba8dD2ac061C11D392B2430aAe7f/logo.png new file mode 100644 index 00000000..2563df09 Binary files /dev/null and b/blockchains/ethereum/assets/0x3b9afC0Ad5F9ba8dD2ac061C11D392B2430aAe7f/logo.png differ diff --git a/blockchains/ethereum/assets/0x3b9e094D56103611f0ACEfDAb43182347BA60dF4/info.json b/blockchains/ethereum/assets/0x3b9e094D56103611f0ACEfDAb43182347BA60dF4/info.json new file mode 100644 index 00000000..efe93c4d --- /dev/null +++ b/blockchains/ethereum/assets/0x3b9e094D56103611f0ACEfDAb43182347BA60dF4/info.json @@ -0,0 +1,11 @@ +{ + "name": "PANTHEON X", + "website": "https://pantheonx.io", + "description": "No.1 Trading Strategy Marketplace", + "explorer": "https://etherscan.io/token/0x3b9e094D56103611f0ACEfDAb43182347BA60dF4", + "type": "ERC20", + "symbol": "XPN", + "decimals": 18, + "status": "active", + "id": "0x3b9e094D56103611f0ACEfDAb43182347BA60dF4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3b9e094D56103611f0ACEfDAb43182347BA60dF4/logo.png b/blockchains/ethereum/assets/0x3b9e094D56103611f0ACEfDAb43182347BA60dF4/logo.png new file mode 100644 index 00000000..a4f4803f Binary files /dev/null and b/blockchains/ethereum/assets/0x3b9e094D56103611f0ACEfDAb43182347BA60dF4/logo.png differ diff --git a/blockchains/ethereum/assets/0x3bF5f07786b2f52BAcC8BC0fbC5D31deee667F67/info.json b/blockchains/ethereum/assets/0x3bF5f07786b2f52BAcC8BC0fbC5D31deee667F67/info.json new file mode 100644 index 00000000..c5ff31b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x3bF5f07786b2f52BAcC8BC0fbC5D31deee667F67/info.json @@ -0,0 +1,11 @@ +{ + "name": "ChainKEY", + "symbol": "CKEY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3bF5f07786b2f52BAcC8BC0fbC5D31deee667F67", + "status": "abandoned", + "id": "0x3bF5f07786b2f52BAcC8BC0fbC5D31deee667F67" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3bF5f07786b2f52BAcC8BC0fbC5D31deee667F67/logo.png b/blockchains/ethereum/assets/0x3bF5f07786b2f52BAcC8BC0fbC5D31deee667F67/logo.png new file mode 100644 index 00000000..329e98e7 Binary files /dev/null and b/blockchains/ethereum/assets/0x3bF5f07786b2f52BAcC8BC0fbC5D31deee667F67/logo.png differ diff --git a/blockchains/ethereum/assets/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F/info.json b/blockchains/ethereum/assets/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F/info.json new file mode 100644 index 00000000..4fda4900 --- /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 00000000..e8d41c63 Binary files /dev/null and b/blockchains/ethereum/assets/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F/logo.png differ diff --git a/blockchains/ethereum/assets/0x3be6e7bF2cD8E1a0A95597E72ca6D3709bBeFF76/info.json b/blockchains/ethereum/assets/0x3be6e7bF2cD8E1a0A95597E72ca6D3709bBeFF76/info.json new file mode 100644 index 00000000..0bde8e57 --- /dev/null +++ b/blockchains/ethereum/assets/0x3be6e7bF2cD8E1a0A95597E72ca6D3709bBeFF76/info.json @@ -0,0 +1,11 @@ +{ + "name": "DMTC Token", + "symbol": "DMTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://dmtc.io/", + "explorer": "https://etherscan.io/token/0x3be6e7bF2cD8E1a0A95597E72ca6D3709bBeFF76", + "status": "abandoned", + "id": "0x3be6e7bF2cD8E1a0A95597E72ca6D3709bBeFF76" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3be6e7bF2cD8E1a0A95597E72ca6D3709bBeFF76/logo.png b/blockchains/ethereum/assets/0x3be6e7bF2cD8E1a0A95597E72ca6D3709bBeFF76/logo.png new file mode 100644 index 00000000..78527790 Binary files /dev/null and b/blockchains/ethereum/assets/0x3be6e7bF2cD8E1a0A95597E72ca6D3709bBeFF76/logo.png differ diff --git a/blockchains/ethereum/assets/0x3bf13d76a5d625Fc85486F73328926a64F226acC/info.json b/blockchains/ethereum/assets/0x3bf13d76a5d625Fc85486F73328926a64F226acC/info.json new file mode 100644 index 00000000..5c5885b8 --- /dev/null +++ b/blockchains/ethereum/assets/0x3bf13d76a5d625Fc85486F73328926a64F226acC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short LINK-DAI v2", + "symbol": "dsLINK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3bf13d76a5d625Fc85486F73328926a64F226acC", + "status": "abandoned", + "id": "0x3bf13d76a5d625Fc85486F73328926a64F226acC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3bf13d76a5d625Fc85486F73328926a64F226acC/logo.png b/blockchains/ethereum/assets/0x3bf13d76a5d625Fc85486F73328926a64F226acC/logo.png new file mode 100644 index 00000000..eb809210 Binary files /dev/null and b/blockchains/ethereum/assets/0x3bf13d76a5d625Fc85486F73328926a64F226acC/logo.png differ diff --git a/blockchains/ethereum/assets/0x3c0C090679BaF2DCAFf6858417d117030E2aE952/info.json b/blockchains/ethereum/assets/0x3c0C090679BaF2DCAFf6858417d117030E2aE952/info.json new file mode 100644 index 00000000..3242c24f --- /dev/null +++ b/blockchains/ethereum/assets/0x3c0C090679BaF2DCAFf6858417d117030E2aE952/info.json @@ -0,0 +1,11 @@ +{ + "name": "Qurix", + "symbol": "QRX", + "type": "ERC20", + "decimals": 1, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3c0C090679BaF2DCAFf6858417d117030E2aE952", + "status": "abandoned", + "id": "0x3c0C090679BaF2DCAFf6858417d117030E2aE952" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3c0C090679BaF2DCAFf6858417d117030E2aE952/logo.png b/blockchains/ethereum/assets/0x3c0C090679BaF2DCAFf6858417d117030E2aE952/logo.png new file mode 100644 index 00000000..9f0aa7d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x3c0C090679BaF2DCAFf6858417d117030E2aE952/logo.png differ diff --git a/blockchains/ethereum/assets/0x3c20d67b6B1aE0985F913aBb7397babc2fBb1A1F/info.json b/blockchains/ethereum/assets/0x3c20d67b6B1aE0985F913aBb7397babc2fBb1A1F/info.json new file mode 100644 index 00000000..b82c0006 --- /dev/null +++ b/blockchains/ethereum/assets/0x3c20d67b6B1aE0985F913aBb7397babc2fBb1A1F/info.json @@ -0,0 +1,11 @@ +{ + "name": "ICEDIUM", + "symbol": "ICD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3c20d67b6B1aE0985F913aBb7397babc2fBb1A1F", + "status": "abandoned", + "id": "0x3c20d67b6B1aE0985F913aBb7397babc2fBb1A1F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3c20d67b6B1aE0985F913aBb7397babc2fBb1A1F/logo.png b/blockchains/ethereum/assets/0x3c20d67b6B1aE0985F913aBb7397babc2fBb1A1F/logo.png new file mode 100755 index 00000000..014c31e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x3c20d67b6B1aE0985F913aBb7397babc2fBb1A1F/logo.png differ diff --git a/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/info.json b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/info.json new file mode 100644 index 00000000..8132ca0f --- /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 00000000..d9721da4 Binary files /dev/null and b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/logo.png differ diff --git a/blockchains/ethereum/assets/0x3c4030839708a20fd2fb379cf11810dde4888d93/info.json b/blockchains/ethereum/assets/0x3c4030839708a20fd2fb379cf11810dde4888d93/info.json new file mode 100644 index 00000000..266f55f6 --- /dev/null +++ b/blockchains/ethereum/assets/0x3c4030839708a20fd2fb379cf11810dde4888d93/info.json @@ -0,0 +1,11 @@ +{ + "name": "IMSWallet", + "symbol": "IMS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://imswallet.co/", + "explorer": "https://etherscan.io/token/0x3c4030839708a20fd2fb379cf11810dde4888d93", + "status": "abandoned", + "id": "0x3c4030839708a20fd2fb379cf11810dde4888d93" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3c4030839708a20fd2fb379cf11810dde4888d93/logo.png b/blockchains/ethereum/assets/0x3c4030839708a20fd2fb379cf11810dde4888d93/logo.png new file mode 100644 index 00000000..4b7535ab Binary files /dev/null and b/blockchains/ethereum/assets/0x3c4030839708a20fd2fb379cf11810dde4888d93/logo.png differ diff --git a/blockchains/ethereum/assets/0x3c4A48BeA9335f368e8f386bD1E49Eb85521f01B/info.json b/blockchains/ethereum/assets/0x3c4A48BeA9335f368e8f386bD1E49Eb85521f01B/info.json new file mode 100644 index 00000000..8f486b01 --- /dev/null +++ b/blockchains/ethereum/assets/0x3c4A48BeA9335f368e8f386bD1E49Eb85521f01B/info.json @@ -0,0 +1,11 @@ +{ + "name": "MindCaptial", + "symbol": "MCP", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3c4A48BeA9335f368e8f386bD1E49Eb85521f01B", + "status": "abandoned", + "id": "0x3c4A48BeA9335f368e8f386bD1E49Eb85521f01B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3c4A48BeA9335f368e8f386bD1E49Eb85521f01B/logo.png b/blockchains/ethereum/assets/0x3c4A48BeA9335f368e8f386bD1E49Eb85521f01B/logo.png new file mode 100644 index 00000000..1faee005 Binary files /dev/null and b/blockchains/ethereum/assets/0x3c4A48BeA9335f368e8f386bD1E49Eb85521f01B/logo.png differ diff --git a/blockchains/ethereum/assets/0x3c4a3ffd813a107febd57B2f01BC344264D90FdE/info.json b/blockchains/ethereum/assets/0x3c4a3ffd813a107febd57B2f01BC344264D90FdE/info.json new file mode 100644 index 00000000..703e35ac --- /dev/null +++ b/blockchains/ethereum/assets/0x3c4a3ffd813a107febd57B2f01BC344264D90FdE/info.json @@ -0,0 +1,11 @@ +{ + "name": "EnergiToken", + "symbol": "ETK", + "type": "ERC20", + "decimals": 2, + "description": "EnergiToken rewards energy saving behaviour. Our blockchain solution will create a platform to reward energy efficient behaviour through EnergiToken.", + "website": "https://energitoken.com/", + "explorer": "https://etherscan.io/token/0x3c4a3ffd813a107febd57B2f01BC344264D90FdE", + "status": "active", + "id": "0x3c4a3ffd813a107febd57B2f01BC344264D90FdE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3c4a3ffd813a107febd57B2f01BC344264D90FdE/logo.png b/blockchains/ethereum/assets/0x3c4a3ffd813a107febd57B2f01BC344264D90FdE/logo.png new file mode 100755 index 00000000..8e572f9c Binary files /dev/null and b/blockchains/ethereum/assets/0x3c4a3ffd813a107febd57B2f01BC344264D90FdE/logo.png differ diff --git a/blockchains/ethereum/assets/0x3c4bEa627039F0B7e7d21E34bB9C9FE962977518/info.json b/blockchains/ethereum/assets/0x3c4bEa627039F0B7e7d21E34bB9C9FE962977518/info.json new file mode 100644 index 00000000..ea4c305c --- /dev/null +++ b/blockchains/ethereum/assets/0x3c4bEa627039F0B7e7d21E34bB9C9FE962977518/info.json @@ -0,0 +1,11 @@ +{ + "name": "UCOT", + "symbol": "UCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.ucot.world", + "explorer": "https://etherscan.io/token/0x3c4bEa627039F0B7e7d21E34bB9C9FE962977518", + "status": "abandoned", + "id": "0x3c4bEa627039F0B7e7d21E34bB9C9FE962977518" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3c4bEa627039F0B7e7d21E34bB9C9FE962977518/logo.png b/blockchains/ethereum/assets/0x3c4bEa627039F0B7e7d21E34bB9C9FE962977518/logo.png new file mode 100644 index 00000000..1834b609 Binary files /dev/null and b/blockchains/ethereum/assets/0x3c4bEa627039F0B7e7d21E34bB9C9FE962977518/logo.png differ diff --git a/blockchains/ethereum/assets/0x3c6Da7763cAA0e4b684BbC733f04a8EC08Af3762/info.json b/blockchains/ethereum/assets/0x3c6Da7763cAA0e4b684BbC733f04a8EC08Af3762/info.json new file mode 100644 index 00000000..39a31a2d --- /dev/null +++ b/blockchains/ethereum/assets/0x3c6Da7763cAA0e4b684BbC733f04a8EC08Af3762/info.json @@ -0,0 +1,11 @@ +{ + "name": "MODEL-X-coin", + "symbol": "MODX", + "type": "ERC20", + "decimals": 8, + "description": "MODEL-X-coin (MODX) is a cryptocurrency and operates on the Ethereum platform. ", + "website": "https://model-x.net/", + "explorer": "https://etherscan.io/token/0x3c6Da7763cAA0e4b684BbC733f04a8EC08Af3762", + "status": "active", + "id": "0x3c6Da7763cAA0e4b684BbC733f04a8EC08Af3762" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3c6Da7763cAA0e4b684BbC733f04a8EC08Af3762/logo.png b/blockchains/ethereum/assets/0x3c6Da7763cAA0e4b684BbC733f04a8EC08Af3762/logo.png new file mode 100644 index 00000000..ced7b064 Binary files /dev/null and b/blockchains/ethereum/assets/0x3c6Da7763cAA0e4b684BbC733f04a8EC08Af3762/logo.png differ diff --git a/blockchains/ethereum/assets/0x3c75226555FC496168d48B88DF83B95F16771F37/info.json b/blockchains/ethereum/assets/0x3c75226555FC496168d48B88DF83B95F16771F37/info.json new file mode 100644 index 00000000..b51a6841 --- /dev/null +++ b/blockchains/ethereum/assets/0x3c75226555FC496168d48B88DF83B95F16771F37/info.json @@ -0,0 +1,11 @@ +{ + "name": "Droplex Token", + "symbol": "DROP", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3c75226555FC496168d48B88DF83B95F16771F37", + "status": "abandoned", + "id": "0x3c75226555FC496168d48B88DF83B95F16771F37" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3c75226555FC496168d48B88DF83B95F16771F37/logo.png b/blockchains/ethereum/assets/0x3c75226555FC496168d48B88DF83B95F16771F37/logo.png new file mode 100755 index 00000000..3cbd2aa2 Binary files /dev/null and b/blockchains/ethereum/assets/0x3c75226555FC496168d48B88DF83B95F16771F37/logo.png differ diff --git a/blockchains/ethereum/assets/0x3c961A0a2eC87247897A07e66d9d9967a317aBde/info.json b/blockchains/ethereum/assets/0x3c961A0a2eC87247897A07e66d9d9967a317aBde/info.json new file mode 100644 index 00000000..3398de5a --- /dev/null +++ b/blockchains/ethereum/assets/0x3c961A0a2eC87247897A07e66d9d9967a317aBde/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short KNC-DAI 3x v2", + "symbol": "dsKNC3x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3c961A0a2eC87247897A07e66d9d9967a317aBde", + "status": "abandoned", + "id": "0x3c961A0a2eC87247897A07e66d9d9967a317aBde" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3c961A0a2eC87247897A07e66d9d9967a317aBde/logo.png b/blockchains/ethereum/assets/0x3c961A0a2eC87247897A07e66d9d9967a317aBde/logo.png new file mode 100644 index 00000000..76938878 Binary files /dev/null and b/blockchains/ethereum/assets/0x3c961A0a2eC87247897A07e66d9d9967a317aBde/logo.png differ diff --git a/blockchains/ethereum/assets/0x3c9d6c1C73b31c837832c72E04D3152f051fc1A9/info.json b/blockchains/ethereum/assets/0x3c9d6c1C73b31c837832c72E04D3152f051fc1A9/info.json new file mode 100644 index 00000000..87d2acdd --- /dev/null +++ b/blockchains/ethereum/assets/0x3c9d6c1C73b31c837832c72E04D3152f051fc1A9/info.json @@ -0,0 +1,11 @@ +{ + "name": "BoringDAO", + "website": "https://www.boringdao.com/", + "description": "BoringDAO is a decentralized asset bridge that uses tunnel mechanism to move tokens cross different chains.", + "explorer": "https://etherscan.io/token/0x3c9d6c1C73b31c837832c72E04D3152f051fc1A9", + "type": "ERC20", + "symbol": "BOR", + "decimals": 18, + "id": "0x3c9d6c1C73b31c837832c72E04D3152f051fc1A9", + "status": "active" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3c9d6c1C73b31c837832c72E04D3152f051fc1A9/logo.png b/blockchains/ethereum/assets/0x3c9d6c1C73b31c837832c72E04D3152f051fc1A9/logo.png new file mode 100644 index 00000000..fda5e058 Binary files /dev/null and b/blockchains/ethereum/assets/0x3c9d6c1C73b31c837832c72E04D3152f051fc1A9/logo.png differ diff --git a/blockchains/ethereum/assets/0x3cC5EB07E0e1227613F1DF58f38b549823d11cB9/info.json b/blockchains/ethereum/assets/0x3cC5EB07E0e1227613F1DF58f38b549823d11cB9/info.json new file mode 100644 index 00000000..1df00084 --- /dev/null +++ b/blockchains/ethereum/assets/0x3cC5EB07E0e1227613F1DF58f38b549823d11cB9/info.json @@ -0,0 +1,11 @@ +{ + "name": "EthereumeRush", + "symbol": "EER", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://erush.org/", + "explorer": "https://etherscan.io/token/0x3cC5EB07E0e1227613F1DF58f38b549823d11cB9", + "status": "abandoned", + "id": "0x3cC5EB07E0e1227613F1DF58f38b549823d11cB9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3cC5EB07E0e1227613F1DF58f38b549823d11cB9/logo.png b/blockchains/ethereum/assets/0x3cC5EB07E0e1227613F1DF58f38b549823d11cB9/logo.png new file mode 100644 index 00000000..db3eac9a Binary files /dev/null and b/blockchains/ethereum/assets/0x3cC5EB07E0e1227613F1DF58f38b549823d11cB9/logo.png differ diff --git a/blockchains/ethereum/assets/0x3cE219D498D807317F840f4CB0f03FA27dd65046/info.json b/blockchains/ethereum/assets/0x3cE219D498D807317F840f4CB0f03FA27dd65046/info.json new file mode 100644 index 00000000..7b5196c3 --- /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 00000000..7ae0be2e Binary files /dev/null and b/blockchains/ethereum/assets/0x3cE219D498D807317F840f4CB0f03FA27dd65046/logo.png differ diff --git a/blockchains/ethereum/assets/0x3d02381563B5a37930b4CFF1A369e2d29F19EFBf/info.json b/blockchains/ethereum/assets/0x3d02381563B5a37930b4CFF1A369e2d29F19EFBf/info.json new file mode 100644 index 00000000..133474f1 --- /dev/null +++ b/blockchains/ethereum/assets/0x3d02381563B5a37930b4CFF1A369e2d29F19EFBf/info.json @@ -0,0 +1,11 @@ +{ + "name": "SHRINK", + "symbol": "SHRINK", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3d02381563B5a37930b4CFF1A369e2d29F19EFBf", + "status": "abandoned", + "id": "0x3d02381563B5a37930b4CFF1A369e2d29F19EFBf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3d02381563B5a37930b4CFF1A369e2d29F19EFBf/logo.png b/blockchains/ethereum/assets/0x3d02381563B5a37930b4CFF1A369e2d29F19EFBf/logo.png new file mode 100644 index 00000000..e456faf8 Binary files /dev/null and b/blockchains/ethereum/assets/0x3d02381563B5a37930b4CFF1A369e2d29F19EFBf/logo.png differ diff --git a/blockchains/ethereum/assets/0x3d03c451476E451FAD42Bd4b9462f3EeCa822986/info.json b/blockchains/ethereum/assets/0x3d03c451476E451FAD42Bd4b9462f3EeCa822986/info.json new file mode 100644 index 00000000..59924b31 --- /dev/null +++ b/blockchains/ethereum/assets/0x3d03c451476E451FAD42Bd4b9462f3EeCa822986/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-2/30M32", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3d03c451476E451FAD42Bd4b9462f3EeCa822986", + "status": "abandoned", + "id": "0x3d03c451476E451FAD42Bd4b9462f3EeCa822986" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3d03c451476E451FAD42Bd4b9462f3EeCa822986/logo.png b/blockchains/ethereum/assets/0x3d03c451476E451FAD42Bd4b9462f3EeCa822986/logo.png new file mode 100644 index 00000000..742c8924 Binary files /dev/null and b/blockchains/ethereum/assets/0x3d03c451476E451FAD42Bd4b9462f3EeCa822986/logo.png differ diff --git a/blockchains/ethereum/assets/0x3d166dd13dFdca66879bdd45dc224D07C8855CdB/info.json b/blockchains/ethereum/assets/0x3d166dd13dFdca66879bdd45dc224D07C8855CdB/info.json new file mode 100644 index 00000000..28202aa5 --- /dev/null +++ b/blockchains/ethereum/assets/0x3d166dd13dFdca66879bdd45dc224D07C8855CdB/info.json @@ -0,0 +1,11 @@ +{ + "name": "CreaEther", + "symbol": "CETH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3d166dd13dFdca66879bdd45dc224D07C8855CdB", + "status": "abandoned", + "id": "0x3d166dd13dFdca66879bdd45dc224D07C8855CdB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3d166dd13dFdca66879bdd45dc224D07C8855CdB/logo.png b/blockchains/ethereum/assets/0x3d166dd13dFdca66879bdd45dc224D07C8855CdB/logo.png new file mode 100644 index 00000000..117473da Binary files /dev/null and b/blockchains/ethereum/assets/0x3d166dd13dFdca66879bdd45dc224D07C8855CdB/logo.png differ diff --git a/blockchains/ethereum/assets/0x3d1BA9be9f66B8ee101911bC36D3fB562eaC2244/info.json b/blockchains/ethereum/assets/0x3d1BA9be9f66B8ee101911bC36D3fB562eaC2244/info.json new file mode 100644 index 00000000..e631f072 --- /dev/null +++ b/blockchains/ethereum/assets/0x3d1BA9be9f66B8ee101911bC36D3fB562eaC2244/info.json @@ -0,0 +1,11 @@ +{ + "name": "RvT", + "symbol": "RVT", + "type": "ERC20", + "decimals": 18, + "description": "The Decentralized & Mobile Cyber Security Token.", + "website": "https://rivetz.com/", + "explorer": "https://etherscan.io/token/0x3d1BA9be9f66B8ee101911bC36D3fB562eaC2244", + "status": "active", + "id": "0x3d1BA9be9f66B8ee101911bC36D3fB562eaC2244" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3d1BA9be9f66B8ee101911bC36D3fB562eaC2244/logo.png b/blockchains/ethereum/assets/0x3d1BA9be9f66B8ee101911bC36D3fB562eaC2244/logo.png new file mode 100644 index 00000000..e26052a7 Binary files /dev/null and b/blockchains/ethereum/assets/0x3d1BA9be9f66B8ee101911bC36D3fB562eaC2244/logo.png differ diff --git a/blockchains/ethereum/assets/0x3d1cF8692A6f2Fc9048A9cc1A06aBF77F3465f0a/info.json b/blockchains/ethereum/assets/0x3d1cF8692A6f2Fc9048A9cc1A06aBF77F3465f0a/info.json new file mode 100644 index 00000000..551f7466 --- /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 00000000..418ef4de Binary files /dev/null and b/blockchains/ethereum/assets/0x3d1cF8692A6f2Fc9048A9cc1A06aBF77F3465f0a/logo.png differ diff --git a/blockchains/ethereum/assets/0x3d438870DBeBCdD03C85Cf5beBA9ac562d7D6721/info.json b/blockchains/ethereum/assets/0x3d438870DBeBCdD03C85Cf5beBA9ac562d7D6721/info.json new file mode 100644 index 00000000..0d5611bb --- /dev/null +++ b/blockchains/ethereum/assets/0x3d438870DBeBCdD03C85Cf5beBA9ac562d7D6721/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tps Network", + "symbol": "TPS7", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3d438870DBeBCdD03C85Cf5beBA9ac562d7D6721", + "status": "abandoned", + "id": "0x3d438870DBeBCdD03C85Cf5beBA9ac562d7D6721" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3d438870DBeBCdD03C85Cf5beBA9ac562d7D6721/logo.png b/blockchains/ethereum/assets/0x3d438870DBeBCdD03C85Cf5beBA9ac562d7D6721/logo.png new file mode 100644 index 00000000..504549c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x3d438870DBeBCdD03C85Cf5beBA9ac562d7D6721/logo.png differ diff --git a/blockchains/ethereum/assets/0x3e370A6c8255b065bD42bc0AC9255b269CFcC172/info.json b/blockchains/ethereum/assets/0x3e370A6c8255b065bD42bc0AC9255b269CFcC172/info.json new file mode 100644 index 00000000..293fd123 --- /dev/null +++ b/blockchains/ethereum/assets/0x3e370A6c8255b065bD42bc0AC9255b269CFcC172/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unipot", + "symbol": "UNI", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3e370A6c8255b065bD42bc0AC9255b269CFcC172", + "status": "abandoned", + "id": "0x3e370A6c8255b065bD42bc0AC9255b269CFcC172" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3e370A6c8255b065bD42bc0AC9255b269CFcC172/logo.png b/blockchains/ethereum/assets/0x3e370A6c8255b065bD42bc0AC9255b269CFcC172/logo.png new file mode 100644 index 00000000..a4681251 Binary files /dev/null and b/blockchains/ethereum/assets/0x3e370A6c8255b065bD42bc0AC9255b269CFcC172/logo.png differ diff --git a/blockchains/ethereum/assets/0x3e3CdA3218212503883C79F6D2FeEF29E6Bbb87d/info.json b/blockchains/ethereum/assets/0x3e3CdA3218212503883C79F6D2FeEF29E6Bbb87d/info.json new file mode 100644 index 00000000..264652b8 --- /dev/null +++ b/blockchains/ethereum/assets/0x3e3CdA3218212503883C79F6D2FeEF29E6Bbb87d/info.json @@ -0,0 +1,21 @@ +{ + "name": "GoldenPyrex", + "website": "https://gpyx.money", + "description": "GPYX is the native token of gpyx.money DeFi platform.", + "explorer": "https://etherscan.io/token/0x3e3CdA3218212503883C79F6D2FeEF29E6Bbb87d", + "type": "ERC20", + "symbol": "GPYX", + "decimals": 18, + "status": "active", + "id": "0x3e3CdA3218212503883C79F6D2FeEF29E6Bbb87d", + "links": [ + { + "name": "github", + "url": "https://github.com/gpyxmoney" + }, + { + "name": "whitepaper", + "url": "https://gpyx.money/gpyxlitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3e3CdA3218212503883C79F6D2FeEF29E6Bbb87d/logo.png b/blockchains/ethereum/assets/0x3e3CdA3218212503883C79F6D2FeEF29E6Bbb87d/logo.png new file mode 100644 index 00000000..000caa69 Binary files /dev/null and b/blockchains/ethereum/assets/0x3e3CdA3218212503883C79F6D2FeEF29E6Bbb87d/logo.png differ diff --git a/blockchains/ethereum/assets/0x3e408d26C784cE8C015F78f2982E5950c5DD0125/info.json b/blockchains/ethereum/assets/0x3e408d26C784cE8C015F78f2982E5950c5DD0125/info.json new file mode 100644 index 00000000..e9101a8b --- /dev/null +++ b/blockchains/ethereum/assets/0x3e408d26C784cE8C015F78f2982E5950c5DD0125/info.json @@ -0,0 +1,11 @@ +{ + "name": "FlingoCash", + "symbol": "FLNGO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3e408d26C784cE8C015F78f2982E5950c5DD0125", + "status": "abandoned", + "id": "0x3e408d26C784cE8C015F78f2982E5950c5DD0125" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3e408d26C784cE8C015F78f2982E5950c5DD0125/logo.png b/blockchains/ethereum/assets/0x3e408d26C784cE8C015F78f2982E5950c5DD0125/logo.png new file mode 100755 index 00000000..8bd1ec9f Binary files /dev/null and b/blockchains/ethereum/assets/0x3e408d26C784cE8C015F78f2982E5950c5DD0125/logo.png differ diff --git a/blockchains/ethereum/assets/0x3e51f4bd9F99122944c48E856F0C3aD6fEF33f6b/info.json b/blockchains/ethereum/assets/0x3e51f4bd9F99122944c48E856F0C3aD6fEF33f6b/info.json new file mode 100644 index 00000000..9b1de08e --- /dev/null +++ b/blockchains/ethereum/assets/0x3e51f4bd9F99122944c48E856F0C3aD6fEF33f6b/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 137-CN35", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3e51f4bd9F99122944c48E856F0C3aD6fEF33f6b", + "status": "abandoned", + "id": "0x3e51f4bd9F99122944c48E856F0C3aD6fEF33f6b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3e51f4bd9F99122944c48E856F0C3aD6fEF33f6b/logo.png b/blockchains/ethereum/assets/0x3e51f4bd9F99122944c48E856F0C3aD6fEF33f6b/logo.png new file mode 100644 index 00000000..4ba0c61f Binary files /dev/null and b/blockchains/ethereum/assets/0x3e51f4bd9F99122944c48E856F0C3aD6fEF33f6b/logo.png differ diff --git a/blockchains/ethereum/assets/0x3e65E1eeFdE5Ea7ccfC9a9a1634AbE90f32262f8/info.json b/blockchains/ethereum/assets/0x3e65E1eeFdE5Ea7ccfC9a9a1634AbE90f32262f8/info.json new file mode 100644 index 00000000..d7b9b095 --- /dev/null +++ b/blockchains/ethereum/assets/0x3e65E1eeFdE5Ea7ccfC9a9a1634AbE90f32262f8/info.json @@ -0,0 +1,11 @@ +{ + "name": "BaaSid", + "symbol": "BAAS", + "type": "ERC20", + "decimals": 18, + "description": "BaaSid (BAAS) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.baasid.com/#token", + "explorer": "https://etherscan.io/token/0x3e65E1eeFdE5Ea7ccfC9a9a1634AbE90f32262f8", + "status": "active", + "id": "0x3e65E1eeFdE5Ea7ccfC9a9a1634AbE90f32262f8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3e65E1eeFdE5Ea7ccfC9a9a1634AbE90f32262f8/logo.png b/blockchains/ethereum/assets/0x3e65E1eeFdE5Ea7ccfC9a9a1634AbE90f32262f8/logo.png new file mode 100644 index 00000000..0a7cb1f0 Binary files /dev/null and b/blockchains/ethereum/assets/0x3e65E1eeFdE5Ea7ccfC9a9a1634AbE90f32262f8/logo.png differ diff --git a/blockchains/ethereum/assets/0x3e85B55ff8BfC4EBFD0244Fe5b8eEc13655e9580/info.json b/blockchains/ethereum/assets/0x3e85B55ff8BfC4EBFD0244Fe5b8eEc13655e9580/info.json new file mode 100644 index 00000000..62b24ff5 --- /dev/null +++ b/blockchains/ethereum/assets/0x3e85B55ff8BfC4EBFD0244Fe5b8eEc13655e9580/info.json @@ -0,0 +1,11 @@ +{ + "name": "BEDCOIN", + "symbol": "BEDCOIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3e85B55ff8BfC4EBFD0244Fe5b8eEc13655e9580", + "status": "abandoned", + "id": "0x3e85B55ff8BfC4EBFD0244Fe5b8eEc13655e9580" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3e85B55ff8BfC4EBFD0244Fe5b8eEc13655e9580/logo.png b/blockchains/ethereum/assets/0x3e85B55ff8BfC4EBFD0244Fe5b8eEc13655e9580/logo.png new file mode 100644 index 00000000..69b39af2 Binary files /dev/null and b/blockchains/ethereum/assets/0x3e85B55ff8BfC4EBFD0244Fe5b8eEc13655e9580/logo.png differ diff --git a/blockchains/ethereum/assets/0x3e8b1a3A33BBe00825d6A5E4FA4295Fc70dcaA98/info.json b/blockchains/ethereum/assets/0x3e8b1a3A33BBe00825d6A5E4FA4295Fc70dcaA98/info.json new file mode 100644 index 00000000..b7486584 --- /dev/null +++ b/blockchains/ethereum/assets/0x3e8b1a3A33BBe00825d6A5E4FA4295Fc70dcaA98/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dignity", + "symbol": "DIG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3e8b1a3A33BBe00825d6A5E4FA4295Fc70dcaA98", + "status": "abandoned", + "id": "0x3e8b1a3A33BBe00825d6A5E4FA4295Fc70dcaA98" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3e8b1a3A33BBe00825d6A5E4FA4295Fc70dcaA98/logo.png b/blockchains/ethereum/assets/0x3e8b1a3A33BBe00825d6A5E4FA4295Fc70dcaA98/logo.png new file mode 100755 index 00000000..ca0b294c Binary files /dev/null and b/blockchains/ethereum/assets/0x3e8b1a3A33BBe00825d6A5E4FA4295Fc70dcaA98/logo.png differ diff --git a/blockchains/ethereum/assets/0x3ecB040c48e8ba51ec03ed750bBD22D6653C3846/info.json b/blockchains/ethereum/assets/0x3ecB040c48e8ba51ec03ed750bBD22D6653C3846/info.json new file mode 100644 index 00000000..a1930a0a --- /dev/null +++ b/blockchains/ethereum/assets/0x3ecB040c48e8ba51ec03ed750bBD22D6653C3846/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R887047", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3ecB040c48e8ba51ec03ed750bBD22D6653C3846", + "status": "abandoned", + "id": "0x3ecB040c48e8ba51ec03ed750bBD22D6653C3846" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3ecB040c48e8ba51ec03ed750bBD22D6653C3846/logo.png b/blockchains/ethereum/assets/0x3ecB040c48e8ba51ec03ed750bBD22D6653C3846/logo.png new file mode 100644 index 00000000..9dfb3157 Binary files /dev/null and b/blockchains/ethereum/assets/0x3ecB040c48e8ba51ec03ed750bBD22D6653C3846/logo.png differ diff --git a/blockchains/ethereum/assets/0x3ee3c43cd9Ba0AbC4EF763b9070b5D29f5AE1E15/info.json b/blockchains/ethereum/assets/0x3ee3c43cd9Ba0AbC4EF763b9070b5D29f5AE1E15/info.json new file mode 100644 index 00000000..aafdf384 --- /dev/null +++ b/blockchains/ethereum/assets/0x3ee3c43cd9Ba0AbC4EF763b9070b5D29f5AE1E15/info.json @@ -0,0 +1,11 @@ +{ + "name": "TradeMyCoin", + "symbol": "TRADEMY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3ee3c43cd9Ba0AbC4EF763b9070b5D29f5AE1E15", + "status": "abandoned", + "id": "0x3ee3c43cd9Ba0AbC4EF763b9070b5D29f5AE1E15" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3ee3c43cd9Ba0AbC4EF763b9070b5D29f5AE1E15/logo.png b/blockchains/ethereum/assets/0x3ee3c43cd9Ba0AbC4EF763b9070b5D29f5AE1E15/logo.png new file mode 100755 index 00000000..4a00bc55 Binary files /dev/null and b/blockchains/ethereum/assets/0x3ee3c43cd9Ba0AbC4EF763b9070b5D29f5AE1E15/logo.png differ diff --git a/blockchains/ethereum/assets/0x3f5DF2F90DF67E10974fBcB1729c00D3f87c0EB4/info.json b/blockchains/ethereum/assets/0x3f5DF2F90DF67E10974fBcB1729c00D3f87c0EB4/info.json new file mode 100644 index 00000000..de39af07 --- /dev/null +++ b/blockchains/ethereum/assets/0x3f5DF2F90DF67E10974fBcB1729c00D3f87c0EB4/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShinCoin", + "type": "ERC20", + "symbol": "SCOIN", + "decimals": 6, + "website": "https://www.shincoin.io", + "description": "The next-gen luxury asset staking", + "explorer": "https://etherscan.io/token/0x3f5df2f90df67e10974fbcb1729c00d3f87c0eb4", + "status": "active", + "id": "0x3f5DF2F90DF67E10974fBcB1729c00D3f87c0EB4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3f5DF2F90DF67E10974fBcB1729c00D3f87c0EB4/logo.png b/blockchains/ethereum/assets/0x3f5DF2F90DF67E10974fBcB1729c00D3f87c0EB4/logo.png new file mode 100644 index 00000000..46f8f69a Binary files /dev/null and b/blockchains/ethereum/assets/0x3f5DF2F90DF67E10974fBcB1729c00D3f87c0EB4/logo.png differ diff --git a/blockchains/ethereum/assets/0x3f7D27c41fdCD1Afc660F64290d314e08ea576Ea/info.json b/blockchains/ethereum/assets/0x3f7D27c41fdCD1Afc660F64290d314e08ea576Ea/info.json new file mode 100644 index 00000000..1a2a77db --- /dev/null +++ b/blockchains/ethereum/assets/0x3f7D27c41fdCD1Afc660F64290d314e08ea576Ea/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pomp", + "website": "https://pomp.finance", + "description": "Pomp - collaborative hedge fund", + "explorer": "https://etherscan.io/token/0x3f7D27c41fdCD1Afc660F64290d314e08ea576Ea", + "type": "ERC20", + "symbol": "POMP", + "decimals": 18, + "status": "active", + "id": "0x3f7D27c41fdCD1Afc660F64290d314e08ea576Ea" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3f7D27c41fdCD1Afc660F64290d314e08ea576Ea/logo.png b/blockchains/ethereum/assets/0x3f7D27c41fdCD1Afc660F64290d314e08ea576Ea/logo.png new file mode 100644 index 00000000..fa1645c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x3f7D27c41fdCD1Afc660F64290d314e08ea576Ea/logo.png differ diff --git a/blockchains/ethereum/assets/0x3fE2eF1DFb1595195768627d16751D552586dce8/info.json b/blockchains/ethereum/assets/0x3fE2eF1DFb1595195768627d16751D552586dce8/info.json new file mode 100644 index 00000000..32d36583 --- /dev/null +++ b/blockchains/ethereum/assets/0x3fE2eF1DFb1595195768627d16751D552586dce8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Opta Token", + "symbol": "OPA", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3fE2eF1DFb1595195768627d16751D552586dce8", + "status": "abandoned", + "id": "0x3fE2eF1DFb1595195768627d16751D552586dce8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3fE2eF1DFb1595195768627d16751D552586dce8/logo.png b/blockchains/ethereum/assets/0x3fE2eF1DFb1595195768627d16751D552586dce8/logo.png new file mode 100644 index 00000000..85d8b9e2 Binary files /dev/null and b/blockchains/ethereum/assets/0x3fE2eF1DFb1595195768627d16751D552586dce8/logo.png differ diff --git a/blockchains/ethereum/assets/0x3fF9CeBbeAA7Bcc48a952a011A02a22a1FDd1C62/info.json b/blockchains/ethereum/assets/0x3fF9CeBbeAA7Bcc48a952a011A02a22a1FDd1C62/info.json new file mode 100644 index 00000000..3f894954 --- /dev/null +++ b/blockchains/ethereum/assets/0x3fF9CeBbeAA7Bcc48a952a011A02a22a1FDd1C62/info.json @@ -0,0 +1,11 @@ +{ + "name": "ORDER", + "symbol": "OR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3fF9CeBbeAA7Bcc48a952a011A02a22a1FDd1C62", + "status": "abandoned", + "id": "0x3fF9CeBbeAA7Bcc48a952a011A02a22a1FDd1C62" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3fF9CeBbeAA7Bcc48a952a011A02a22a1FDd1C62/logo.png b/blockchains/ethereum/assets/0x3fF9CeBbeAA7Bcc48a952a011A02a22a1FDd1C62/logo.png new file mode 100644 index 00000000..7054d2e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x3fF9CeBbeAA7Bcc48a952a011A02a22a1FDd1C62/logo.png differ diff --git a/blockchains/ethereum/assets/0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790/info.json b/blockchains/ethereum/assets/0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790/info.json new file mode 100644 index 00000000..692bc489 --- /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 00000000..5dcfe796 Binary files /dev/null and b/blockchains/ethereum/assets/0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790/logo.png differ diff --git a/blockchains/ethereum/assets/0x3fc507101C2CF3C2E7153b7bd6F27Ad2200E1721/info.json b/blockchains/ethereum/assets/0x3fc507101C2CF3C2E7153b7bd6F27Ad2200E1721/info.json new file mode 100644 index 00000000..1296f23e --- /dev/null +++ b/blockchains/ethereum/assets/0x3fc507101C2CF3C2E7153b7bd6F27Ad2200E1721/info.json @@ -0,0 +1,11 @@ +{ + "name": "Untitled", + "symbol": "VOID", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x3fc507101C2CF3C2E7153b7bd6F27Ad2200E1721", + "status": "abandoned", + "id": "0x3fc507101C2CF3C2E7153b7bd6F27Ad2200E1721" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3fc507101C2CF3C2E7153b7bd6F27Ad2200E1721/logo.png b/blockchains/ethereum/assets/0x3fc507101C2CF3C2E7153b7bd6F27Ad2200E1721/logo.png new file mode 100644 index 00000000..dd6fe162 Binary files /dev/null and b/blockchains/ethereum/assets/0x3fc507101C2CF3C2E7153b7bd6F27Ad2200E1721/logo.png differ diff --git a/blockchains/ethereum/assets/0x400323C9a1A9AA08680B22140838121d38416B99/info.json b/blockchains/ethereum/assets/0x400323C9a1A9AA08680B22140838121d38416B99/info.json new file mode 100644 index 00000000..cffc2119 --- /dev/null +++ b/blockchains/ethereum/assets/0x400323C9a1A9AA08680B22140838121d38416B99/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sava Coin", + "symbol": "SCA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x400323C9a1A9AA08680B22140838121d38416B99", + "status": "abandoned", + "id": "0x400323C9a1A9AA08680B22140838121d38416B99" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x400323C9a1A9AA08680B22140838121d38416B99/logo.png b/blockchains/ethereum/assets/0x400323C9a1A9AA08680B22140838121d38416B99/logo.png new file mode 100644 index 00000000..d9599606 Binary files /dev/null and b/blockchains/ethereum/assets/0x400323C9a1A9AA08680B22140838121d38416B99/logo.png differ diff --git a/blockchains/ethereum/assets/0x40395044Ac3c0C57051906dA938B54BD6557F212/info.json b/blockchains/ethereum/assets/0x40395044Ac3c0C57051906dA938B54BD6557F212/info.json new file mode 100644 index 00000000..5a566a25 --- /dev/null +++ b/blockchains/ethereum/assets/0x40395044Ac3c0C57051906dA938B54BD6557F212/info.json @@ -0,0 +1,11 @@ +{ + "name": "MobileGo Token", + "symbol": "MGO", + "type": "ERC20", + "decimals": 8, + "description": "MobileGo (MGO), a cryptocurrency that offers in-game rewards. Its ultimate goal is to 'make games available to everyone", + "website": "https://mobilego.io/", + "explorer": "https://etherscan.io/token/0x40395044Ac3c0C57051906dA938B54BD6557F212", + "status": "active", + "id": "0x40395044Ac3c0C57051906dA938B54BD6557F212" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x40395044Ac3c0C57051906dA938B54BD6557F212/logo.png b/blockchains/ethereum/assets/0x40395044Ac3c0C57051906dA938B54BD6557F212/logo.png new file mode 100644 index 00000000..d26e2afc Binary files /dev/null and b/blockchains/ethereum/assets/0x40395044Ac3c0C57051906dA938B54BD6557F212/logo.png differ diff --git a/blockchains/ethereum/assets/0x403fc67bC995aee4DaE6F5461788c94C977282b5/info.json b/blockchains/ethereum/assets/0x403fc67bC995aee4DaE6F5461788c94C977282b5/info.json new file mode 100644 index 00000000..9c9c6c71 --- /dev/null +++ b/blockchains/ethereum/assets/0x403fc67bC995aee4DaE6F5461788c94C977282b5/info.json @@ -0,0 +1,11 @@ +{ + "name": "POP Missions B", + "symbol": "POPB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x403fc67bC995aee4DaE6F5461788c94C977282b5", + "status": "abandoned", + "id": "0x403fc67bC995aee4DaE6F5461788c94C977282b5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x403fc67bC995aee4DaE6F5461788c94C977282b5/logo.png b/blockchains/ethereum/assets/0x403fc67bC995aee4DaE6F5461788c94C977282b5/logo.png new file mode 100644 index 00000000..ba317e63 Binary files /dev/null and b/blockchains/ethereum/assets/0x403fc67bC995aee4DaE6F5461788c94C977282b5/logo.png differ diff --git a/blockchains/ethereum/assets/0x40428FDD5588197C15DD00B22fe9b9A48afeEb23/info.json b/blockchains/ethereum/assets/0x40428FDD5588197C15DD00B22fe9b9A48afeEb23/info.json new file mode 100644 index 00000000..24f27e37 --- /dev/null +++ b/blockchains/ethereum/assets/0x40428FDD5588197C15DD00B22fe9b9A48afeEb23/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cotrace", + "website": "https://cotrace.org", + "description": "Cotrace is COVID contact tracing, decentralized", + "explorer": "https://etherscan.io/token/0x40428FDD5588197C15DD00B22fe9b9A48afeEb23", + "type": "ERC20", + "symbol": "COTR", + "decimals": 18, + "status": "active", + "id": "0x40428FDD5588197C15DD00B22fe9b9A48afeEb23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x40428FDD5588197C15DD00B22fe9b9A48afeEb23/logo.png b/blockchains/ethereum/assets/0x40428FDD5588197C15DD00B22fe9b9A48afeEb23/logo.png new file mode 100644 index 00000000..12b0a0dd Binary files /dev/null and b/blockchains/ethereum/assets/0x40428FDD5588197C15DD00B22fe9b9A48afeEb23/logo.png differ diff --git a/blockchains/ethereum/assets/0x4049B0A25d780898648e8b175D7c104EA8959210/info.json b/blockchains/ethereum/assets/0x4049B0A25d780898648e8b175D7c104EA8959210/info.json new file mode 100644 index 00000000..abb4fa8c --- /dev/null +++ b/blockchains/ethereum/assets/0x4049B0A25d780898648e8b175D7c104EA8959210/info.json @@ -0,0 +1,11 @@ +{ + "name": "Basic Token", + "symbol": "BAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4049B0A25d780898648e8b175D7c104EA8959210", + "status": "abandoned", + "id": "0x4049B0A25d780898648e8b175D7c104EA8959210" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4049B0A25d780898648e8b175D7c104EA8959210/logo.png b/blockchains/ethereum/assets/0x4049B0A25d780898648e8b175D7c104EA8959210/logo.png new file mode 100644 index 00000000..9dcf642c Binary files /dev/null and b/blockchains/ethereum/assets/0x4049B0A25d780898648e8b175D7c104EA8959210/logo.png differ diff --git a/blockchains/ethereum/assets/0x4050103D244e3E320250f559f7F0484E5193bf76/info.json b/blockchains/ethereum/assets/0x4050103D244e3E320250f559f7F0484E5193bf76/info.json new file mode 100644 index 00000000..22949462 --- /dev/null +++ b/blockchains/ethereum/assets/0x4050103D244e3E320250f559f7F0484E5193bf76/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITSIFU COIN", + "symbol": "BSF", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4050103D244e3E320250f559f7F0484E5193bf76", + "status": "abandoned", + "id": "0x4050103D244e3E320250f559f7F0484E5193bf76" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4050103D244e3E320250f559f7F0484E5193bf76/logo.png b/blockchains/ethereum/assets/0x4050103D244e3E320250f559f7F0484E5193bf76/logo.png new file mode 100755 index 00000000..cf4e2a88 Binary files /dev/null and b/blockchains/ethereum/assets/0x4050103D244e3E320250f559f7F0484E5193bf76/logo.png differ diff --git a/blockchains/ethereum/assets/0x405F242c397C428d5ecd2454Db7233Dd745Bf8F9/info.json b/blockchains/ethereum/assets/0x405F242c397C428d5ecd2454Db7233Dd745Bf8F9/info.json new file mode 100644 index 00000000..f3d319b0 --- /dev/null +++ b/blockchains/ethereum/assets/0x405F242c397C428d5ecd2454Db7233Dd745Bf8F9/info.json @@ -0,0 +1,11 @@ +{ + "name": "ICO Review", + "symbol": "ICRT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x405F242c397C428d5ecd2454Db7233Dd745Bf8F9", + "status": "abandoned", + "id": "0x405F242c397C428d5ecd2454Db7233Dd745Bf8F9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x405F242c397C428d5ecd2454Db7233Dd745Bf8F9/logo.png b/blockchains/ethereum/assets/0x405F242c397C428d5ecd2454Db7233Dd745Bf8F9/logo.png new file mode 100644 index 00000000..e2912cad Binary files /dev/null and b/blockchains/ethereum/assets/0x405F242c397C428d5ecd2454Db7233Dd745Bf8F9/logo.png differ diff --git a/blockchains/ethereum/assets/0x406ab55C0bAB2D4a3361f87F251211c3090d80Bc/info.json b/blockchains/ethereum/assets/0x406ab55C0bAB2D4a3361f87F251211c3090d80Bc/info.json new file mode 100644 index 00000000..2678c38b --- /dev/null +++ b/blockchains/ethereum/assets/0x406ab55C0bAB2D4a3361f87F251211c3090d80Bc/info.json @@ -0,0 +1,11 @@ +{ + "name": "EasyCoinDigitalFreedom", + "symbol": "ECDF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.easycoindf.com/", + "explorer": "https://etherscan.io/token/0x406ab55C0bAB2D4a3361f87F251211c3090d80Bc", + "status": "abandoned", + "id": "0x406ab55C0bAB2D4a3361f87F251211c3090d80Bc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x406ab55C0bAB2D4a3361f87F251211c3090d80Bc/logo.png b/blockchains/ethereum/assets/0x406ab55C0bAB2D4a3361f87F251211c3090d80Bc/logo.png new file mode 100644 index 00000000..6e3fca69 Binary files /dev/null and b/blockchains/ethereum/assets/0x406ab55C0bAB2D4a3361f87F251211c3090d80Bc/logo.png differ diff --git a/blockchains/ethereum/assets/0x407b419144822E236D960e87E3c58C64fEB715B8/info.json b/blockchains/ethereum/assets/0x407b419144822E236D960e87E3c58C64fEB715B8/info.json new file mode 100644 index 00000000..6ea26a65 --- /dev/null +++ b/blockchains/ethereum/assets/0x407b419144822E236D960e87E3c58C64fEB715B8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Platin Token", + "symbol": "PTNX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x407b419144822E236D960e87E3c58C64fEB715B8", + "status": "abandoned", + "id": "0x407b419144822E236D960e87E3c58C64fEB715B8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x407b419144822E236D960e87E3c58C64fEB715B8/logo.png b/blockchains/ethereum/assets/0x407b419144822E236D960e87E3c58C64fEB715B8/logo.png new file mode 100644 index 00000000..bcd7eb1a Binary files /dev/null and b/blockchains/ethereum/assets/0x407b419144822E236D960e87E3c58C64fEB715B8/logo.png differ diff --git a/blockchains/ethereum/assets/0x4086692D53262b2Be0b13909D804F0491FF6Ec3e/info.json b/blockchains/ethereum/assets/0x4086692D53262b2Be0b13909D804F0491FF6Ec3e/info.json new file mode 100644 index 00000000..b5e46c02 --- /dev/null +++ b/blockchains/ethereum/assets/0x4086692D53262b2Be0b13909D804F0491FF6Ec3e/info.json @@ -0,0 +1,11 @@ +{ + "name": "YFKA", + "website": "https://burnthestate.com/", + "description": "Yield Farming Known as Ash", + "explorer": "https://etherscan.io/token/0x4086692D53262b2Be0b13909D804F0491FF6Ec3e", + "type": "ERC20", + "symbol": "YFKA", + "decimals": 18, + "status": "active", + "id": "0x4086692D53262b2Be0b13909D804F0491FF6Ec3e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4086692D53262b2Be0b13909D804F0491FF6Ec3e/logo.png b/blockchains/ethereum/assets/0x4086692D53262b2Be0b13909D804F0491FF6Ec3e/logo.png new file mode 100644 index 00000000..49fe99a8 Binary files /dev/null and b/blockchains/ethereum/assets/0x4086692D53262b2Be0b13909D804F0491FF6Ec3e/logo.png differ diff --git a/blockchains/ethereum/assets/0x40880F4AdA231774dA97fe719A0c45992376BB98/info.json b/blockchains/ethereum/assets/0x40880F4AdA231774dA97fe719A0c45992376BB98/info.json new file mode 100644 index 00000000..5cd838ce --- /dev/null +++ b/blockchains/ethereum/assets/0x40880F4AdA231774dA97fe719A0c45992376BB98/info.json @@ -0,0 +1,11 @@ +{ + "name": "Allurum", + "symbol": "CSC-AL", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x40880F4AdA231774dA97fe719A0c45992376BB98", + "status": "abandoned", + "id": "0x40880F4AdA231774dA97fe719A0c45992376BB98" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x40880F4AdA231774dA97fe719A0c45992376BB98/logo.png b/blockchains/ethereum/assets/0x40880F4AdA231774dA97fe719A0c45992376BB98/logo.png new file mode 100755 index 00000000..ebc9348e Binary files /dev/null and b/blockchains/ethereum/assets/0x40880F4AdA231774dA97fe719A0c45992376BB98/logo.png differ diff --git a/blockchains/ethereum/assets/0x408e41876cCCDC0F92210600ef50372656052a38/info.json b/blockchains/ethereum/assets/0x408e41876cCCDC0F92210600ef50372656052a38/info.json new file mode 100644 index 00000000..01212dc8 --- /dev/null +++ b/blockchains/ethereum/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://etherscan.io/token/0x408e41876cCCDC0F92210600ef50372656052a38", + "type": "ERC20", + "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/ethereum/assets/0x408e41876cCCDC0F92210600ef50372656052a38/logo.png b/blockchains/ethereum/assets/0x408e41876cCCDC0F92210600ef50372656052a38/logo.png new file mode 100644 index 00000000..8a5543ce Binary files /dev/null and b/blockchains/ethereum/assets/0x408e41876cCCDC0F92210600ef50372656052a38/logo.png differ diff --git a/blockchains/ethereum/assets/0x4092678e4E78230F46A1534C0fbc8fA39780892B/info.json b/blockchains/ethereum/assets/0x4092678e4E78230F46A1534C0fbc8fA39780892B/info.json new file mode 100644 index 00000000..e762c923 --- /dev/null +++ b/blockchains/ethereum/assets/0x4092678e4E78230F46A1534C0fbc8fA39780892B/info.json @@ -0,0 +1,11 @@ +{ + "name": "OCoin", + "symbol": "OCN", + "type": "ERC20", + "decimals": 18, + "description": "Odyssey (OCN) is a cryptocurrency and operates on the Ethereum platform.", + "website": "http://www.ocnex.net", + "explorer": "https://etherscan.io/token/0x4092678e4E78230F46A1534C0fbc8fA39780892B", + "status": "active", + "id": "0x4092678e4E78230F46A1534C0fbc8fA39780892B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4092678e4E78230F46A1534C0fbc8fA39780892B/logo.png b/blockchains/ethereum/assets/0x4092678e4E78230F46A1534C0fbc8fA39780892B/logo.png new file mode 100644 index 00000000..b4a20c7f Binary files /dev/null and b/blockchains/ethereum/assets/0x4092678e4E78230F46A1534C0fbc8fA39780892B/logo.png differ diff --git a/blockchains/ethereum/assets/0x409291B89bF887C927bBc2682ee81489170083Ef/info.json b/blockchains/ethereum/assets/0x409291B89bF887C927bBc2682ee81489170083Ef/info.json new file mode 100644 index 00000000..cbcdd2bb --- /dev/null +++ b/blockchains/ethereum/assets/0x409291B89bF887C927bBc2682ee81489170083Ef/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C483458", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x409291B89bF887C927bBc2682ee81489170083Ef", + "status": "abandoned", + "id": "0x409291B89bF887C927bBc2682ee81489170083Ef" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x409291B89bF887C927bBc2682ee81489170083Ef/logo.png b/blockchains/ethereum/assets/0x409291B89bF887C927bBc2682ee81489170083Ef/logo.png new file mode 100644 index 00000000..e7f2ae62 Binary files /dev/null and b/blockchains/ethereum/assets/0x409291B89bF887C927bBc2682ee81489170083Ef/logo.png differ diff --git a/blockchains/ethereum/assets/0x4097C2d9BD5eECCBA7E35E0887469fa5C8B366De/info.json b/blockchains/ethereum/assets/0x4097C2d9BD5eECCBA7E35E0887469fa5C8B366De/info.json new file mode 100644 index 00000000..350e494f --- /dev/null +++ b/blockchains/ethereum/assets/0x4097C2d9BD5eECCBA7E35E0887469fa5C8B366De/info.json @@ -0,0 +1,11 @@ +{ + "name": "Guide Coin", + "symbol": "GDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4097C2d9BD5eECCBA7E35E0887469fa5C8B366De", + "status": "abandoned", + "id": "0x4097C2d9BD5eECCBA7E35E0887469fa5C8B366De" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4097C2d9BD5eECCBA7E35E0887469fa5C8B366De/logo.png b/blockchains/ethereum/assets/0x4097C2d9BD5eECCBA7E35E0887469fa5C8B366De/logo.png new file mode 100644 index 00000000..836aa8bc Binary files /dev/null and b/blockchains/ethereum/assets/0x4097C2d9BD5eECCBA7E35E0887469fa5C8B366De/logo.png differ diff --git a/blockchains/ethereum/assets/0x40AdFc7c23c22Cc06f94F199a4750D7196F46fbe/info.json b/blockchains/ethereum/assets/0x40AdFc7c23c22Cc06f94F199a4750D7196F46fbe/info.json new file mode 100644 index 00000000..1958a4f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x40AdFc7c23c22Cc06f94F199a4750D7196F46fbe/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coinchase Token", + "symbol": "CCH", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x40AdFc7c23c22Cc06f94F199a4750D7196F46fbe", + "status": "abandoned", + "id": "0x40AdFc7c23c22Cc06f94F199a4750D7196F46fbe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x40AdFc7c23c22Cc06f94F199a4750D7196F46fbe/logo.png b/blockchains/ethereum/assets/0x40AdFc7c23c22Cc06f94F199a4750D7196F46fbe/logo.png new file mode 100644 index 00000000..048f462f Binary files /dev/null and b/blockchains/ethereum/assets/0x40AdFc7c23c22Cc06f94F199a4750D7196F46fbe/logo.png differ diff --git a/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/info.json b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/info.json new file mode 100644 index 00000000..11696f78 --- /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 00000000..ff0877b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/logo.png differ diff --git a/blockchains/ethereum/assets/0x40DA2788FB49ebd0a6DcE38c83BAF71BC1ED2699/info.json b/blockchains/ethereum/assets/0x40DA2788FB49ebd0a6DcE38c83BAF71BC1ED2699/info.json new file mode 100644 index 00000000..38ce1c7f --- /dev/null +++ b/blockchains/ethereum/assets/0x40DA2788FB49ebd0a6DcE38c83BAF71BC1ED2699/info.json @@ -0,0 +1,11 @@ +{ + "name": "GeekChain Token", + "symbol": "GEEK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x40DA2788FB49ebd0a6DcE38c83BAF71BC1ED2699", + "status": "abandoned", + "id": "0x40DA2788FB49ebd0a6DcE38c83BAF71BC1ED2699" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x40DA2788FB49ebd0a6DcE38c83BAF71BC1ED2699/logo.png b/blockchains/ethereum/assets/0x40DA2788FB49ebd0a6DcE38c83BAF71BC1ED2699/logo.png new file mode 100644 index 00000000..3d628c72 Binary files /dev/null and b/blockchains/ethereum/assets/0x40DA2788FB49ebd0a6DcE38c83BAF71BC1ED2699/logo.png differ diff --git a/blockchains/ethereum/assets/0x40E6131E32E7A86E072d80D12ecb94d7e3d09fa1/info.json b/blockchains/ethereum/assets/0x40E6131E32E7A86E072d80D12ecb94d7e3d09fa1/info.json new file mode 100644 index 00000000..88a4adcf --- /dev/null +++ b/blockchains/ethereum/assets/0x40E6131E32E7A86E072d80D12ecb94d7e3d09fa1/info.json @@ -0,0 +1,11 @@ +{ + "name": "AITBot Token ", + "symbol": "AITBOT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x40E6131E32E7A86E072d80D12ecb94d7e3d09fa1", + "status": "abandoned", + "id": "0x40E6131E32E7A86E072d80D12ecb94d7e3d09fa1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x40E6131E32E7A86E072d80D12ecb94d7e3d09fa1/logo.png b/blockchains/ethereum/assets/0x40E6131E32E7A86E072d80D12ecb94d7e3d09fa1/logo.png new file mode 100644 index 00000000..b43c4a55 Binary files /dev/null and b/blockchains/ethereum/assets/0x40E6131E32E7A86E072d80D12ecb94d7e3d09fa1/logo.png differ diff --git a/blockchains/ethereum/assets/0x40FD72257597aA14C7231A7B1aaa29Fce868F677/info.json b/blockchains/ethereum/assets/0x40FD72257597aA14C7231A7B1aaa29Fce868F677/info.json new file mode 100644 index 00000000..ebb00343 --- /dev/null +++ b/blockchains/ethereum/assets/0x40FD72257597aA14C7231A7B1aaa29Fce868F677/info.json @@ -0,0 +1,25 @@ +{ + "name": "SORA", + "website": "https://sora.org", + "description": "Sora is a decentralized autonomous economic system, where users vote on how to mint new units of the XOR token through a democratic referendum process. The goal is to create a decentralized, yet rational world economic system.", + "explorer": "https://etherscan.io/token/0x40FD72257597aA14C7231A7B1aaa29Fce868F677", + "type": "ERC20", + "symbol": "XOR", + "decimals": 18, + "status": "active", + "id": "0x40FD72257597aA14C7231A7B1aaa29Fce868F677", + "links": [ + { + "name": "x", + "url": "https://x.com/Sora" + }, + { + "name": "telegram", + "url": "https://t.me/sora_xor" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SORA" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x40FD72257597aA14C7231A7B1aaa29Fce868F677/logo.png b/blockchains/ethereum/assets/0x40FD72257597aA14C7231A7B1aaa29Fce868F677/logo.png new file mode 100644 index 00000000..74c4cf01 Binary files /dev/null and b/blockchains/ethereum/assets/0x40FD72257597aA14C7231A7B1aaa29Fce868F677/logo.png differ diff --git a/blockchains/ethereum/assets/0x40aEea2e6c280E41cb88eC05673ba6C027C9c30c/info.json b/blockchains/ethereum/assets/0x40aEea2e6c280E41cb88eC05673ba6C027C9c30c/info.json new file mode 100644 index 00000000..411302d4 --- /dev/null +++ b/blockchains/ethereum/assets/0x40aEea2e6c280E41cb88eC05673ba6C027C9c30c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xhuman", + "symbol": "XHUMAN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x40aEea2e6c280E41cb88eC05673ba6C027C9c30c", + "status": "abandoned", + "id": "0x40aEea2e6c280E41cb88eC05673ba6C027C9c30c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x40aEea2e6c280E41cb88eC05673ba6C027C9c30c/logo.png b/blockchains/ethereum/assets/0x40aEea2e6c280E41cb88eC05673ba6C027C9c30c/logo.png new file mode 100644 index 00000000..cabd05c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x40aEea2e6c280E41cb88eC05673ba6C027C9c30c/logo.png differ diff --git a/blockchains/ethereum/assets/0x40c6f861A08F97dfBC3C0931485bFf4921975a56/info.json b/blockchains/ethereum/assets/0x40c6f861A08F97dfBC3C0931485bFf4921975a56/info.json new file mode 100644 index 00000000..87e2a97c --- /dev/null +++ b/blockchains/ethereum/assets/0x40c6f861A08F97dfBC3C0931485bFf4921975a56/info.json @@ -0,0 +1,11 @@ +{ + "name": "HGH Token", + "symbol": "HGH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://myhghproducts.com/hgh-token/", + "explorer": "https://etherscan.io/token/0x40c6f861A08F97dfBC3C0931485bFf4921975a56", + "status": "abandoned", + "id": "0x40c6f861A08F97dfBC3C0931485bFf4921975a56" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x40c6f861A08F97dfBC3C0931485bFf4921975a56/logo.png b/blockchains/ethereum/assets/0x40c6f861A08F97dfBC3C0931485bFf4921975a56/logo.png new file mode 100644 index 00000000..580ed23a Binary files /dev/null and b/blockchains/ethereum/assets/0x40c6f861A08F97dfBC3C0931485bFf4921975a56/logo.png differ diff --git a/blockchains/ethereum/assets/0x40d52577830E01aAEfa80659aA90ee8B34685F4e/info.json b/blockchains/ethereum/assets/0x40d52577830E01aAEfa80659aA90ee8B34685F4e/info.json new file mode 100644 index 00000000..d4c0ff4d --- /dev/null +++ b/blockchains/ethereum/assets/0x40d52577830E01aAEfa80659aA90ee8B34685F4e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bilaxy Token", + "symbol": "BIA", + "type": "ERC20", + "decimals": 18, + "description": "Blockchain asset exchange, providing real time and safe trading.", + "website": "https://bilaxy.com", + "explorer": "https://etherscan.io/token/0x40d52577830E01aAEfa80659aA90ee8B34685F4e", + "status": "active", + "id": "0x40d52577830E01aAEfa80659aA90ee8B34685F4e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x40d52577830E01aAEfa80659aA90ee8B34685F4e/logo.png b/blockchains/ethereum/assets/0x40d52577830E01aAEfa80659aA90ee8B34685F4e/logo.png new file mode 100644 index 00000000..771c1478 Binary files /dev/null and b/blockchains/ethereum/assets/0x40d52577830E01aAEfa80659aA90ee8B34685F4e/logo.png differ diff --git a/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/info.json b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/info.json new file mode 100644 index 00000000..439ca0a7 --- /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 00000000..fedfcf6c 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 00000000..32d95655 --- /dev/null +++ b/blockchains/ethereum/assets/0x4111b60bc87F2Bd1e81E783E271D7F0ec6EE088B/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI EAFE ETF (Ondo Tokenized)", + "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 00000000..8adf5788 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 00000000..1b41dfb1 --- /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 00000000..e0fb5c3e Binary files /dev/null and b/blockchains/ethereum/assets/0x4116f14b6d462B32a1C10F98049E4B1765e34FA9/logo.png differ diff --git a/blockchains/ethereum/assets/0x4119876899a9B7D92ECF9DFB9479962499DD5B48/info.json b/blockchains/ethereum/assets/0x4119876899a9B7D92ECF9DFB9479962499DD5B48/info.json new file mode 100644 index 00000000..5db3dcb5 --- /dev/null +++ b/blockchains/ethereum/assets/0x4119876899a9B7D92ECF9DFB9479962499DD5B48/info.json @@ -0,0 +1,11 @@ +{ + "name": "ROAKRAK", + "symbol": "ROK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4119876899a9B7D92ECF9DFB9479962499DD5B48", + "status": "abandoned", + "id": "0x4119876899a9B7D92ECF9DFB9479962499DD5B48" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4119876899a9B7D92ECF9DFB9479962499DD5B48/logo.png b/blockchains/ethereum/assets/0x4119876899a9B7D92ECF9DFB9479962499DD5B48/logo.png new file mode 100644 index 00000000..6a969435 Binary files /dev/null and b/blockchains/ethereum/assets/0x4119876899a9B7D92ECF9DFB9479962499DD5B48/logo.png differ diff --git a/blockchains/ethereum/assets/0x411A81C8Cd604941be13dBBD33B54e6f25d84683/info.json b/blockchains/ethereum/assets/0x411A81C8Cd604941be13dBBD33B54e6f25d84683/info.json new file mode 100644 index 00000000..97c8082e --- /dev/null +++ b/blockchains/ethereum/assets/0x411A81C8Cd604941be13dBBD33B54e6f25d84683/info.json @@ -0,0 +1,11 @@ +{ + "name": "Letsfair", + "symbol": "LTF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x411A81C8Cd604941be13dBBD33B54e6f25d84683", + "status": "abandoned", + "id": "0x411A81C8Cd604941be13dBBD33B54e6f25d84683" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x411A81C8Cd604941be13dBBD33B54e6f25d84683/logo.png b/blockchains/ethereum/assets/0x411A81C8Cd604941be13dBBD33B54e6f25d84683/logo.png new file mode 100644 index 00000000..7ae5daa9 Binary files /dev/null and b/blockchains/ethereum/assets/0x411A81C8Cd604941be13dBBD33B54e6f25d84683/logo.png differ diff --git a/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/info.json b/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/info.json new file mode 100644 index 00000000..7061366c --- /dev/null +++ b/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/info.json @@ -0,0 +1,56 @@ +{ + "name": "Open Custody Protocol", + "type": "ERC20", + "symbol": "OPEN", + "decimals": 8, + "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": "x", + "url": "https://x.com/opencustody" + }, + { + "name": "telegram", + "url": "https://t.me/OpenCustody" + }, + { + "name": "telegram_news", + "url": "https://t.me/OpenCustody_News" + }, + { + "name": "whitepaper", + "url": "https://docs.opencustody.org/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCyMjpYXfzkam99yuPDiaqmQ" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/qredo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qredo/" + }, + { + "name": "blog", + "url": "https://opencustody.org/blog" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bgVPvf6" + }, + { + "name": "docs", + "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 new file mode 100644 index 00000000..40886038 Binary files /dev/null and b/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/logo.png differ diff --git a/blockchains/ethereum/assets/0x4129D3b7a6A2c5C997774077aC02bDafd1AF1d6a/info.json b/blockchains/ethereum/assets/0x4129D3b7a6A2c5C997774077aC02bDafd1AF1d6a/info.json new file mode 100644 index 00000000..f13dcb4b --- /dev/null +++ b/blockchains/ethereum/assets/0x4129D3b7a6A2c5C997774077aC02bDafd1AF1d6a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ladder Network", + "symbol": "LAD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://laddernetwork.io/", + "explorer": "https://etherscan.io/token/0x4129D3b7a6A2c5C997774077aC02bDafd1AF1d6a", + "status": "abandoned", + "id": "0x4129D3b7a6A2c5C997774077aC02bDafd1AF1d6a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4129D3b7a6A2c5C997774077aC02bDafd1AF1d6a/logo.png b/blockchains/ethereum/assets/0x4129D3b7a6A2c5C997774077aC02bDafd1AF1d6a/logo.png new file mode 100644 index 00000000..44889a91 Binary files /dev/null and b/blockchains/ethereum/assets/0x4129D3b7a6A2c5C997774077aC02bDafd1AF1d6a/logo.png differ diff --git a/blockchains/ethereum/assets/0x4136dD480327e24E0908D829e03B08559e7D9B8D/info.json b/blockchains/ethereum/assets/0x4136dD480327e24E0908D829e03B08559e7D9B8D/info.json new file mode 100644 index 00000000..03e205bb --- /dev/null +++ b/blockchains/ethereum/assets/0x4136dD480327e24E0908D829e03B08559e7D9B8D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pirate Token", + "symbol": "PRTKN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4136dD480327e24E0908D829e03B08559e7D9B8D", + "status": "abandoned", + "id": "0x4136dD480327e24E0908D829e03B08559e7D9B8D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4136dD480327e24E0908D829e03B08559e7D9B8D/logo.png b/blockchains/ethereum/assets/0x4136dD480327e24E0908D829e03B08559e7D9B8D/logo.png new file mode 100644 index 00000000..f8821e56 Binary files /dev/null and b/blockchains/ethereum/assets/0x4136dD480327e24E0908D829e03B08559e7D9B8D/logo.png differ diff --git a/blockchains/ethereum/assets/0x41385664aAd657990000004D3906d1572A6bb4c6/info.json b/blockchains/ethereum/assets/0x41385664aAd657990000004D3906d1572A6bb4c6/info.json new file mode 100644 index 00000000..fe203d7c --- /dev/null +++ b/blockchains/ethereum/assets/0x41385664aAd657990000004D3906d1572A6bb4c6/info.json @@ -0,0 +1,11 @@ +{ + "name": "AmigoCoin", + "symbol": "AMGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x41385664aAd657990000004D3906d1572A6bb4c6", + "status": "abandoned", + "id": "0x41385664aAd657990000004D3906d1572A6bb4c6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41385664aAd657990000004D3906d1572A6bb4c6/logo.png b/blockchains/ethereum/assets/0x41385664aAd657990000004D3906d1572A6bb4c6/logo.png new file mode 100755 index 00000000..67974896 Binary files /dev/null and b/blockchains/ethereum/assets/0x41385664aAd657990000004D3906d1572A6bb4c6/logo.png differ diff --git a/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/info.json b/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/info.json new file mode 100644 index 00000000..847d4041 --- /dev/null +++ b/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/info.json @@ -0,0 +1,28 @@ +{ + "name": "Forta", + "website": "https://forta.org/", + "description": "Forta is a real-time detection network for security & operational monitoring of blockchain activity. As a decentralized monitoring network, Forta detects threats and anomalies on Defi, NFT, governance, bridges and other Web3 systems in real-time.", + "explorer": "https://etherscan.io/token/0x41545f8b9472d758bb669ed8eaeeecd7a9c4ec29", + "type": "ERC20", + "symbol": "FORT", + "decimals": 18, + "status": "active", + "id": "0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/FortaNetwork" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/forta/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/forta/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/logo.png b/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/logo.png new file mode 100644 index 00000000..cbd3a548 Binary files /dev/null and b/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/logo.png differ diff --git a/blockchains/ethereum/assets/0x4156D3342D5c385a87D264F90653733592000581/info.json b/blockchains/ethereum/assets/0x4156D3342D5c385a87D264F90653733592000581/info.json new file mode 100644 index 00000000..90136129 --- /dev/null +++ b/blockchains/ethereum/assets/0x4156D3342D5c385a87D264F90653733592000581/info.json @@ -0,0 +1,11 @@ +{ + "name": "Salt", + "symbol": "SALT", + "type": "ERC20", + "decimals": 8, + "description": "The SALT platform is meant to facilitate getting a loan, where the company holds your cryptocoins as collateral while you don't pay back the loan.", + "website": "https://www.saltlending.com/", + "explorer": "https://etherscan.io/token/0x4156D3342D5c385a87D264F90653733592000581", + "status": "active", + "id": "0x4156D3342D5c385a87D264F90653733592000581" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4156D3342D5c385a87D264F90653733592000581/logo.png b/blockchains/ethereum/assets/0x4156D3342D5c385a87D264F90653733592000581/logo.png new file mode 100644 index 00000000..6f946313 Binary files /dev/null and b/blockchains/ethereum/assets/0x4156D3342D5c385a87D264F90653733592000581/logo.png differ diff --git a/blockchains/ethereum/assets/0x415A9560aCA7ae3022e3c4E7bf1414125a1463EF/info.json b/blockchains/ethereum/assets/0x415A9560aCA7ae3022e3c4E7bf1414125a1463EF/info.json new file mode 100644 index 00000000..b047e4a3 --- /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 00000000..3e234733 --- /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 00000000..037c1f4f Binary files /dev/null and b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/logo.png differ diff --git a/blockchains/ethereum/assets/0x4161725D019690a3E0de50f6bE67b07a86A9fAe1/info.json b/blockchains/ethereum/assets/0x4161725D019690a3E0de50f6bE67b07a86A9fAe1/info.json new file mode 100644 index 00000000..b4415ecd --- /dev/null +++ b/blockchains/ethereum/assets/0x4161725D019690a3E0de50f6bE67b07a86A9fAe1/info.json @@ -0,0 +1,11 @@ +{ + "name": "TokenPocket Token", + "symbol": "TPT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4161725D019690a3E0de50f6bE67b07a86A9fAe1", + "status": "abandoned", + "id": "0x4161725D019690a3E0de50f6bE67b07a86A9fAe1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4161725D019690a3E0de50f6bE67b07a86A9fAe1/logo.png b/blockchains/ethereum/assets/0x4161725D019690a3E0de50f6bE67b07a86A9fAe1/logo.png new file mode 100644 index 00000000..c26be447 Binary files /dev/null and b/blockchains/ethereum/assets/0x4161725D019690a3E0de50f6bE67b07a86A9fAe1/logo.png differ diff --git a/blockchains/ethereum/assets/0x4162178B78D6985480A308B2190EE5517460406D/info.json b/blockchains/ethereum/assets/0x4162178B78D6985480A308B2190EE5517460406D/info.json new file mode 100644 index 00000000..8bb03334 --- /dev/null +++ b/blockchains/ethereum/assets/0x4162178B78D6985480A308B2190EE5517460406D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Colu Local Network", + "symbol": "CLN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4162178B78D6985480A308B2190EE5517460406D", + "status": "abandoned", + "id": "0x4162178B78D6985480A308B2190EE5517460406D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4162178B78D6985480A308B2190EE5517460406D/logo.png b/blockchains/ethereum/assets/0x4162178B78D6985480A308B2190EE5517460406D/logo.png new file mode 100644 index 00000000..ee294bab Binary files /dev/null and b/blockchains/ethereum/assets/0x4162178B78D6985480A308B2190EE5517460406D/logo.png differ diff --git a/blockchains/ethereum/assets/0x4164e5b047842Ad7dFf18fc6A6e63a1e40610f46/info.json b/blockchains/ethereum/assets/0x4164e5b047842Ad7dFf18fc6A6e63a1e40610f46/info.json new file mode 100644 index 00000000..e1b50407 --- /dev/null +++ b/blockchains/ethereum/assets/0x4164e5b047842Ad7dFf18fc6A6e63a1e40610f46/info.json @@ -0,0 +1,11 @@ +{ + "name": "Strike STRK", + "symbol": "sSTRK", + "type": "ERC20", + "decimals": 18, + "description": "Strike Finance collateral cryptocurrency", + "explorer": "https://etherscan.io/token/0x4164e5b047842Ad7dFf18fc6A6e63a1e40610f46", + "status": "active", + "id": "0x4164e5b047842Ad7dFf18fc6A6e63a1e40610f46", + "website": "https://strike.org" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4164e5b047842Ad7dFf18fc6A6e63a1e40610f46/logo.png b/blockchains/ethereum/assets/0x4164e5b047842Ad7dFf18fc6A6e63a1e40610f46/logo.png new file mode 100644 index 00000000..14caa4ad Binary files /dev/null and b/blockchains/ethereum/assets/0x4164e5b047842Ad7dFf18fc6A6e63a1e40610f46/logo.png differ diff --git a/blockchains/ethereum/assets/0x41765F0FCddC276309195166C7A62AE522FA09ef/info.json b/blockchains/ethereum/assets/0x41765F0FCddC276309195166C7A62AE522FA09ef/info.json new file mode 100644 index 00000000..aba8a3e3 --- /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 00000000..85286052 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 new file mode 100644 index 00000000..ed69b0ce --- /dev/null +++ b/blockchains/ethereum/assets/0x4185cf99745B2a20727B37EE798193DD4a56cDfa/info.json @@ -0,0 +1,33 @@ +{ + "name": "wCOINBASE-IOU", + "type": "ERC20", + "symbol": "wCOINBASE-IOU", + "decimals": 18, + "website": "https://deus.finance/", + "description": "DEUS GOES COINBASE. From our next system update, you will be able to buy Coinbase Futures on DEUS Swap!", + "explorer": "https://etherscan.io/token/0x4185cf99745B2a20727B37EE798193DD4a56cDfa", + "status": "active", + "id": "0x4185cf99745B2a20727B37EE798193DD4a56cDfa", + "links": [ + { + "name": "github", + "url": "https://github.com/deusfinance" + }, + { + "name": "x", + "url": "https://x.com/DeusDao" + }, + { + "name": "telegram", + "url": "https://t.me/deusfinance" + }, + { + "name": "medium", + "url": "https://medium.com/@deusfinance" + }, + { + "name": "whitepaper", + "url": "https://lafayettetabor.medium.com/deus-goes-coinbase-1d69f51e1b55" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4185cf99745B2a20727B37EE798193DD4a56cDfa/logo.png b/blockchains/ethereum/assets/0x4185cf99745B2a20727B37EE798193DD4a56cDfa/logo.png new file mode 100644 index 00000000..95eff5cc Binary files /dev/null and b/blockchains/ethereum/assets/0x4185cf99745B2a20727B37EE798193DD4a56cDfa/logo.png differ diff --git a/blockchains/ethereum/assets/0x41875C2332B0877cDFAA699B641402b7D4642c32/info.json b/blockchains/ethereum/assets/0x41875C2332B0877cDFAA699B641402b7D4642c32/info.json new file mode 100644 index 00000000..6807de4f --- /dev/null +++ b/blockchains/ethereum/assets/0x41875C2332B0877cDFAA699B641402b7D4642c32/info.json @@ -0,0 +1,11 @@ +{ + "name": "FUTURAX", + "symbol": "FTXT", + "type": "ERC20", + "decimals": 8, + "description": "FUTURAX is project of cryptocurrencies exchanger platform, we foucused to build modern Crypto Market with many feature and benefit to Trader.", + "website": "https://www.futurax.global/", + "explorer": "https://etherscan.io/token/0x41875C2332B0877cDFAA699B641402b7D4642c32", + "status": "active", + "id": "0x41875C2332B0877cDFAA699B641402b7D4642c32" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41875C2332B0877cDFAA699B641402b7D4642c32/logo.png b/blockchains/ethereum/assets/0x41875C2332B0877cDFAA699B641402b7D4642c32/logo.png new file mode 100644 index 00000000..d24e40a6 Binary files /dev/null and b/blockchains/ethereum/assets/0x41875C2332B0877cDFAA699B641402b7D4642c32/logo.png differ diff --git a/blockchains/ethereum/assets/0x418D75f65a02b3D53B2418FB8E1fe493759c7605/info.json b/blockchains/ethereum/assets/0x418D75f65a02b3D53B2418FB8E1fe493759c7605/info.json new file mode 100644 index 00000000..c4742284 --- /dev/null +++ b/blockchains/ethereum/assets/0x418D75f65a02b3D53B2418FB8E1fe493759c7605/info.json @@ -0,0 +1,14 @@ +{ + "name": "Binance Coin (Portal)", + "type": "ERC20", + "symbol": "BNB", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.binance.com/", + "explorer": "https://etherscan.io/token/0x418D75f65a02b3D53B2418FB8E1fe493759c7605", + "status": "active", + "id": "0x418D75f65a02b3D53B2418FB8E1fe493759c7605", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x418D75f65a02b3D53B2418FB8E1fe493759c7605/logo.png b/blockchains/ethereum/assets/0x418D75f65a02b3D53B2418FB8E1fe493759c7605/logo.png new file mode 100644 index 00000000..24a702d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x418D75f65a02b3D53B2418FB8E1fe493759c7605/logo.png differ diff --git a/blockchains/ethereum/assets/0x4199bF8b1bA4c825E1d6d206A78fa71daEB2B0d7/info.json b/blockchains/ethereum/assets/0x4199bF8b1bA4c825E1d6d206A78fa71daEB2B0d7/info.json new file mode 100644 index 00000000..34492ea9 --- /dev/null +++ b/blockchains/ethereum/assets/0x4199bF8b1bA4c825E1d6d206A78fa71daEB2B0d7/info.json @@ -0,0 +1,11 @@ +{ + "name": "YOEXS COM", + "symbol": "YOE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4199bF8b1bA4c825E1d6d206A78fa71daEB2B0d7", + "status": "abandoned", + "id": "0x4199bF8b1bA4c825E1d6d206A78fa71daEB2B0d7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4199bF8b1bA4c825E1d6d206A78fa71daEB2B0d7/logo.png b/blockchains/ethereum/assets/0x4199bF8b1bA4c825E1d6d206A78fa71daEB2B0d7/logo.png new file mode 100644 index 00000000..8368f2fe Binary files /dev/null and b/blockchains/ethereum/assets/0x4199bF8b1bA4c825E1d6d206A78fa71daEB2B0d7/logo.png differ diff --git a/blockchains/ethereum/assets/0x419B8ED155180A8c9C64145e76DaD49c0A4Efb97/info.json b/blockchains/ethereum/assets/0x419B8ED155180A8c9C64145e76DaD49c0A4Efb97/info.json new file mode 100644 index 00000000..80c02908 --- /dev/null +++ b/blockchains/ethereum/assets/0x419B8ED155180A8c9C64145e76DaD49c0A4Efb97/info.json @@ -0,0 +1,11 @@ +{ + "name": "AltEstate token", + "symbol": "\"\"", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://alt.estate", + "explorer": "https://etherscan.io/token/0x419B8ED155180A8c9C64145e76DaD49c0A4Efb97", + "status": "active", + "id": "0x419B8ED155180A8c9C64145e76DaD49c0A4Efb97" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x419B8ED155180A8c9C64145e76DaD49c0A4Efb97/logo.png b/blockchains/ethereum/assets/0x419B8ED155180A8c9C64145e76DaD49c0A4Efb97/logo.png new file mode 100644 index 00000000..8d8ae084 Binary files /dev/null and b/blockchains/ethereum/assets/0x419B8ED155180A8c9C64145e76DaD49c0A4Efb97/logo.png differ diff --git a/blockchains/ethereum/assets/0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b/info.json b/blockchains/ethereum/assets/0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b/info.json new file mode 100644 index 00000000..c7f8ae64 --- /dev/null +++ b/blockchains/ethereum/assets/0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b/info.json @@ -0,0 +1,11 @@ +{ + "name": "FunFair", + "website": "https://funfair.io", + "description": "Envisioning the decentralization of the concept behind casinos, FunFair harnesses peer-to-peer technology in combination with cryptography.", + "explorer": "https://etherscan.io/token/0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b", + "type": "ERC20", + "symbol": "FUN", + "decimals": 8, + "status": "active", + "id": "0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b/logo.png b/blockchains/ethereum/assets/0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b/logo.png new file mode 100755 index 00000000..cda2128d Binary files /dev/null and b/blockchains/ethereum/assets/0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b/logo.png differ diff --git a/blockchains/ethereum/assets/0x419c4dB4B9e25d6Db2AD9691ccb832C8D9fDA05E/info.json b/blockchains/ethereum/assets/0x419c4dB4B9e25d6Db2AD9691ccb832C8D9fDA05E/info.json new file mode 100644 index 00000000..feac8c87 --- /dev/null +++ b/blockchains/ethereum/assets/0x419c4dB4B9e25d6Db2AD9691ccb832C8D9fDA05E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dragon", + "symbol": "DRGN", + "type": "ERC20", + "decimals": 18, + "description": "Dragonchain is a hybrid blockchain platform, where sensitive business logic and smart contract functionality is held by the owner. Its cryptocurrency is denoted by the symbol DGRN.", + "website": "https://dragonchain.com/", + "explorer": "https://etherscan.io/token/0x419c4dB4B9e25d6Db2AD9691ccb832C8D9fDA05E", + "status": "active", + "id": "0x419c4dB4B9e25d6Db2AD9691ccb832C8D9fDA05E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x419c4dB4B9e25d6Db2AD9691ccb832C8D9fDA05E/logo.png b/blockchains/ethereum/assets/0x419c4dB4B9e25d6Db2AD9691ccb832C8D9fDA05E/logo.png new file mode 100755 index 00000000..cf0c2e7b Binary files /dev/null and b/blockchains/ethereum/assets/0x419c4dB4B9e25d6Db2AD9691ccb832C8D9fDA05E/logo.png differ diff --git a/blockchains/ethereum/assets/0x41A3Dba3D677E573636BA691a70ff2D606c29666/info.json b/blockchains/ethereum/assets/0x41A3Dba3D677E573636BA691a70ff2D606c29666/info.json new file mode 100644 index 00000000..69387022 --- /dev/null +++ b/blockchains/ethereum/assets/0x41A3Dba3D677E573636BA691a70ff2D606c29666/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoBlank", + "website": "https://www.goblank.io", + "description": "Blank is the most private, non-custodial Ethereum browser wallet.", + "explorer": "https://etherscan.io/token/0x41a3dba3d677e573636ba691a70ff2d606c29666", + "type": "ERC20", + "symbol": "BLANK", + "decimals": 18, + "status": "active", + "id": "0x41A3Dba3D677E573636BA691a70ff2D606c29666" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41A3Dba3D677E573636BA691a70ff2D606c29666/logo.png b/blockchains/ethereum/assets/0x41A3Dba3D677E573636BA691a70ff2D606c29666/logo.png new file mode 100644 index 00000000..7f98f2ed Binary files /dev/null and b/blockchains/ethereum/assets/0x41A3Dba3D677E573636BA691a70ff2D606c29666/logo.png differ diff --git a/blockchains/ethereum/assets/0x41AB1b6fcbB2fA9DCEd81aCbdeC13Ea6315F2Bf2/info.json b/blockchains/ethereum/assets/0x41AB1b6fcbB2fA9DCEd81aCbdeC13Ea6315F2Bf2/info.json new file mode 100644 index 00000000..6ee6fff8 --- /dev/null +++ b/blockchains/ethereum/assets/0x41AB1b6fcbB2fA9DCEd81aCbdeC13Ea6315F2Bf2/info.json @@ -0,0 +1,11 @@ +{ + "name": "XinFin XDCE", + "symbol": "XDCE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://xinfin.io", + "explorer": "https://etherscan.io/token/0x41AB1b6fcbB2fA9DCEd81aCbdeC13Ea6315F2Bf2", + "status": "abandoned", + "id": "0x41AB1b6fcbB2fA9DCEd81aCbdeC13Ea6315F2Bf2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41AB1b6fcbB2fA9DCEd81aCbdeC13Ea6315F2Bf2/logo.png b/blockchains/ethereum/assets/0x41AB1b6fcbB2fA9DCEd81aCbdeC13Ea6315F2Bf2/logo.png new file mode 100644 index 00000000..a2cf0644 Binary files /dev/null and b/blockchains/ethereum/assets/0x41AB1b6fcbB2fA9DCEd81aCbdeC13Ea6315F2Bf2/logo.png differ diff --git a/blockchains/ethereum/assets/0x41Ab75435668919Bb507F871dd01E9762C2D173a/info.json b/blockchains/ethereum/assets/0x41Ab75435668919Bb507F871dd01E9762C2D173a/info.json new file mode 100644 index 00000000..23899865 --- /dev/null +++ b/blockchains/ethereum/assets/0x41Ab75435668919Bb507F871dd01E9762C2D173a/info.json @@ -0,0 +1,11 @@ +{ + "name": "XChain Token", + "symbol": "NXCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.nxct.io/", + "explorer": "https://etherscan.io/token/0x41Ab75435668919Bb507F871dd01E9762C2D173a", + "status": "abandoned", + "id": "0x41Ab75435668919Bb507F871dd01E9762C2D173a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41Ab75435668919Bb507F871dd01E9762C2D173a/logo.png b/blockchains/ethereum/assets/0x41Ab75435668919Bb507F871dd01E9762C2D173a/logo.png new file mode 100644 index 00000000..49ac6957 Binary files /dev/null and b/blockchains/ethereum/assets/0x41Ab75435668919Bb507F871dd01E9762C2D173a/logo.png differ diff --git a/blockchains/ethereum/assets/0x41BbEDd7286dAab5910a1f15d12CBda839852BD7/info.json b/blockchains/ethereum/assets/0x41BbEDd7286dAab5910a1f15d12CBda839852BD7/info.json new file mode 100644 index 00000000..dc0133a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x41BbEDd7286dAab5910a1f15d12CBda839852BD7/info.json @@ -0,0 +1,32 @@ +{ + "name": "mMSFT Token", + "website": "https://mirror.finance", + "description": "Wrapped Mirror MSFT Token.", + "explorer": "https://etherscan.io/token/0x41BbEDd7286dAab5910a1f15d12CBda839852BD7", + "type": "ERC20", + "symbol": "mMSFT", + "decimals": 18, + "status": "active", + "id": "0x41BbEDd7286dAab5910a1f15d12CBda839852BD7", + "tags": [ + "wrapped" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MirrorProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/mirror_protocol" + }, + { + "name": "discord", + "url": "https://discord.com/MirrorProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/@mirror-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41BbEDd7286dAab5910a1f15d12CBda839852BD7/logo.png b/blockchains/ethereum/assets/0x41BbEDd7286dAab5910a1f15d12CBda839852BD7/logo.png new file mode 100644 index 00000000..d64e63aa Binary files /dev/null and b/blockchains/ethereum/assets/0x41BbEDd7286dAab5910a1f15d12CBda839852BD7/logo.png differ diff --git a/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json new file mode 100644 index 00000000..dbfa1641 --- /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 00000000..6876a666 Binary files /dev/null and b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png differ diff --git a/blockchains/ethereum/assets/0x41a25A522cD89372895c126FcA4733B998f4ADE5/info.json b/blockchains/ethereum/assets/0x41a25A522cD89372895c126FcA4733B998f4ADE5/info.json new file mode 100644 index 00000000..38d03e67 --- /dev/null +++ b/blockchains/ethereum/assets/0x41a25A522cD89372895c126FcA4733B998f4ADE5/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg9000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x41a25A522cD89372895c126FcA4733B998f4ADE5", + "status": "abandoned", + "id": "0x41a25A522cD89372895c126FcA4733B998f4ADE5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41a25A522cD89372895c126FcA4733B998f4ADE5/logo.png b/blockchains/ethereum/assets/0x41a25A522cD89372895c126FcA4733B998f4ADE5/logo.png new file mode 100644 index 00000000..38656127 Binary files /dev/null and b/blockchains/ethereum/assets/0x41a25A522cD89372895c126FcA4733B998f4ADE5/logo.png differ diff --git a/blockchains/ethereum/assets/0x41ad4093349C8A60DE591A3C37dcd184558EaAe3/info.json b/blockchains/ethereum/assets/0x41ad4093349C8A60DE591A3C37dcd184558EaAe3/info.json new file mode 100644 index 00000000..9c832e22 --- /dev/null +++ b/blockchains/ethereum/assets/0x41ad4093349C8A60DE591A3C37dcd184558EaAe3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin&Company Network", + "symbol": "BITN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.bitcoincompany.it/", + "explorer": "https://etherscan.io/token/0x41ad4093349C8A60DE591A3C37dcd184558EaAe3", + "status": "abandoned", + "id": "0x41ad4093349C8A60DE591A3C37dcd184558EaAe3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41ad4093349C8A60DE591A3C37dcd184558EaAe3/logo.png b/blockchains/ethereum/assets/0x41ad4093349C8A60DE591A3C37dcd184558EaAe3/logo.png new file mode 100644 index 00000000..8dcab50d Binary files /dev/null and b/blockchains/ethereum/assets/0x41ad4093349C8A60DE591A3C37dcd184558EaAe3/logo.png differ diff --git a/blockchains/ethereum/assets/0x41c0d6a6e1B7932Db04aDC900BEd73b4ce59F231/info.json b/blockchains/ethereum/assets/0x41c0d6a6e1B7932Db04aDC900BEd73b4ce59F231/info.json new file mode 100644 index 00000000..0723ed77 --- /dev/null +++ b/blockchains/ethereum/assets/0x41c0d6a6e1B7932Db04aDC900BEd73b4ce59F231/info.json @@ -0,0 +1,11 @@ +{ + "name": "Keepis", + "symbol": "KEPIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x41c0d6a6e1B7932Db04aDC900BEd73b4ce59F231", + "status": "abandoned", + "id": "0x41c0d6a6e1B7932Db04aDC900BEd73b4ce59F231" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41c0d6a6e1B7932Db04aDC900BEd73b4ce59F231/logo.png b/blockchains/ethereum/assets/0x41c0d6a6e1B7932Db04aDC900BEd73b4ce59F231/logo.png new file mode 100644 index 00000000..b4643b66 Binary files /dev/null and b/blockchains/ethereum/assets/0x41c0d6a6e1B7932Db04aDC900BEd73b4ce59F231/logo.png differ diff --git a/blockchains/ethereum/assets/0x41c63BF8Fe81709aa6C4795EaB85E41fD067BF26/info.json b/blockchains/ethereum/assets/0x41c63BF8Fe81709aa6C4795EaB85E41fD067BF26/info.json new file mode 100644 index 00000000..9145f721 --- /dev/null +++ b/blockchains/ethereum/assets/0x41c63BF8Fe81709aa6C4795EaB85E41fD067BF26/info.json @@ -0,0 +1,11 @@ +{ + "name": "PGcoin", + "symbol": "PGC", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x41c63BF8Fe81709aa6C4795EaB85E41fD067BF26", + "status": "abandoned", + "id": "0x41c63BF8Fe81709aa6C4795EaB85E41fD067BF26" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41c63BF8Fe81709aa6C4795EaB85E41fD067BF26/logo.png b/blockchains/ethereum/assets/0x41c63BF8Fe81709aa6C4795EaB85E41fD067BF26/logo.png new file mode 100644 index 00000000..2dcd3466 Binary files /dev/null and b/blockchains/ethereum/assets/0x41c63BF8Fe81709aa6C4795EaB85E41fD067BF26/logo.png differ diff --git a/blockchains/ethereum/assets/0x41dBECc1cdC5517C6f76f6a6E836aDbEe2754DE3/info.json b/blockchains/ethereum/assets/0x41dBECc1cdC5517C6f76f6a6E836aDbEe2754DE3/info.json new file mode 100644 index 00000000..53d3a41f --- /dev/null +++ b/blockchains/ethereum/assets/0x41dBECc1cdC5517C6f76f6a6E836aDbEe2754DE3/info.json @@ -0,0 +1,11 @@ +{ + "name": "MedToken", + "symbol": "MTN", + "type": "ERC20", + "decimals": 18, + "description": "Medicalchain uses blockchain technology to securely manage health records for a collaborative, smart approach to healthcare.", + "website": "https://medicalchain.com/en/", + "explorer": "https://etherscan.io/token/0x41dBECc1cdC5517C6f76f6a6E836aDbEe2754DE3", + "status": "active", + "id": "0x41dBECc1cdC5517C6f76f6a6E836aDbEe2754DE3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41dBECc1cdC5517C6f76f6a6E836aDbEe2754DE3/logo.png b/blockchains/ethereum/assets/0x41dBECc1cdC5517C6f76f6a6E836aDbEe2754DE3/logo.png new file mode 100755 index 00000000..f5a4695c Binary files /dev/null and b/blockchains/ethereum/assets/0x41dBECc1cdC5517C6f76f6a6E836aDbEe2754DE3/logo.png differ diff --git a/blockchains/ethereum/assets/0x41e5560054824eA6B0732E656E3Ad64E20e94E45/info.json b/blockchains/ethereum/assets/0x41e5560054824eA6B0732E656E3Ad64E20e94E45/info.json new file mode 100644 index 00000000..baeb0e67 --- /dev/null +++ b/blockchains/ethereum/assets/0x41e5560054824eA6B0732E656E3Ad64E20e94E45/info.json @@ -0,0 +1,11 @@ +{ + "name": "Civic", + "website": "https://civic.com", + "description": "Civic is an identity management service that allows one to protect and authorize the use of their identity in real-time.", + "explorer": "https://etherscan.io/token/0x41e5560054824eA6B0732E656E3Ad64E20e94E45", + "type": "ERC20", + "symbol": "CVC", + "decimals": 8, + "status": "active", + "id": "0x41e5560054824eA6B0732E656E3Ad64E20e94E45" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41e5560054824eA6B0732E656E3Ad64E20e94E45/logo.png b/blockchains/ethereum/assets/0x41e5560054824eA6B0732E656E3Ad64E20e94E45/logo.png new file mode 100644 index 00000000..d15edd13 Binary files /dev/null and b/blockchains/ethereum/assets/0x41e5560054824eA6B0732E656E3Ad64E20e94E45/logo.png differ diff --git a/blockchains/ethereum/assets/0x41e7f88F5a4580bf62b10BaC098F45979e3C86E0/info.json b/blockchains/ethereum/assets/0x41e7f88F5a4580bf62b10BaC098F45979e3C86E0/info.json new file mode 100644 index 00000000..03a34b38 --- /dev/null +++ b/blockchains/ethereum/assets/0x41e7f88F5a4580bf62b10BaC098F45979e3C86E0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Whim", + "symbol": "EWC", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x41e7f88F5a4580bf62b10BaC098F45979e3C86E0", + "status": "abandoned", + "id": "0x41e7f88F5a4580bf62b10BaC098F45979e3C86E0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41e7f88F5a4580bf62b10BaC098F45979e3C86E0/logo.png b/blockchains/ethereum/assets/0x41e7f88F5a4580bf62b10BaC098F45979e3C86E0/logo.png new file mode 100755 index 00000000..0abea5a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x41e7f88F5a4580bf62b10BaC098F45979e3C86E0/logo.png differ diff --git a/blockchains/ethereum/assets/0x41f723448433367BE140D528D35EFECd3e023DB6/info.json b/blockchains/ethereum/assets/0x41f723448433367BE140D528D35EFECd3e023DB6/info.json new file mode 100644 index 00000000..47f8f5e8 --- /dev/null +++ b/blockchains/ethereum/assets/0x41f723448433367BE140D528D35EFECd3e023DB6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Farm Partner", + "symbol": "FARM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x41f723448433367BE140D528D35EFECd3e023DB6", + "status": "abandoned", + "id": "0x41f723448433367BE140D528D35EFECd3e023DB6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41f723448433367BE140D528D35EFECd3e023DB6/logo.png b/blockchains/ethereum/assets/0x41f723448433367BE140D528D35EFECd3e023DB6/logo.png new file mode 100644 index 00000000..4cfcad13 Binary files /dev/null and b/blockchains/ethereum/assets/0x41f723448433367BE140D528D35EFECd3e023DB6/logo.png differ diff --git a/blockchains/ethereum/assets/0x41f7B8b9b897276b7AAE926a9016935280b44E97/info.json b/blockchains/ethereum/assets/0x41f7B8b9b897276b7AAE926a9016935280b44E97/info.json new file mode 100644 index 00000000..eb31ca8b --- /dev/null +++ b/blockchains/ethereum/assets/0x41f7B8b9b897276b7AAE926a9016935280b44E97/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Solana)", + "type": "ERC20", + "symbol": "USDCso", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://etherscan.io/token/0x41f7B8b9b897276b7AAE926a9016935280b44E97", + "status": "active", + "id": "0x41f7B8b9b897276b7AAE926a9016935280b44E97", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41f7B8b9b897276b7AAE926a9016935280b44E97/logo.png b/blockchains/ethereum/assets/0x41f7B8b9b897276b7AAE926a9016935280b44E97/logo.png new file mode 100644 index 00000000..c9ca8307 Binary files /dev/null and b/blockchains/ethereum/assets/0x41f7B8b9b897276b7AAE926a9016935280b44E97/logo.png differ diff --git a/blockchains/ethereum/assets/0x420167D87d35c3A249b32Ef6225872fBD9aB85D2/info.json b/blockchains/ethereum/assets/0x420167D87d35c3A249b32Ef6225872fBD9aB85D2/info.json new file mode 100644 index 00000000..09245d37 --- /dev/null +++ b/blockchains/ethereum/assets/0x420167D87d35c3A249b32Ef6225872fBD9aB85D2/info.json @@ -0,0 +1,11 @@ +{ + "name": "MESG", + "symbol": "MESG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x420167D87d35c3A249b32Ef6225872fBD9aB85D2", + "status": "abandoned", + "id": "0x420167D87d35c3A249b32Ef6225872fBD9aB85D2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x420167D87d35c3A249b32Ef6225872fBD9aB85D2/logo.png b/blockchains/ethereum/assets/0x420167D87d35c3A249b32Ef6225872fBD9aB85D2/logo.png new file mode 100644 index 00000000..0abceaf8 Binary files /dev/null and b/blockchains/ethereum/assets/0x420167D87d35c3A249b32Ef6225872fBD9aB85D2/logo.png differ diff --git a/blockchains/ethereum/assets/0x420412E765BFa6d85aaaC94b4f7b708C89be2e2B/info.json b/blockchains/ethereum/assets/0x420412E765BFa6d85aaaC94b4f7b708C89be2e2B/info.json new file mode 100644 index 00000000..1b59e671 --- /dev/null +++ b/blockchains/ethereum/assets/0x420412E765BFa6d85aaaC94b4f7b708C89be2e2B/info.json @@ -0,0 +1,11 @@ +{ + "name": "BRZ", + "symbol": "BRZ", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://www.brztoken.io/", + "explorer": "https://etherscan.io/token/0x420412E765BFa6d85aaaC94b4f7b708C89be2e2B", + "status": "abandoned", + "id": "0x420412E765BFa6d85aaaC94b4f7b708C89be2e2B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x420412E765BFa6d85aaaC94b4f7b708C89be2e2B/logo.png b/blockchains/ethereum/assets/0x420412E765BFa6d85aaaC94b4f7b708C89be2e2B/logo.png new file mode 100644 index 00000000..e616f93c Binary files /dev/null and b/blockchains/ethereum/assets/0x420412E765BFa6d85aaaC94b4f7b708C89be2e2B/logo.png differ diff --git a/blockchains/ethereum/assets/0x4212FEa9FEc90236eCc51E41e2096B16CEB84555/info.json b/blockchains/ethereum/assets/0x4212FEa9FEc90236eCc51E41e2096B16CEB84555/info.json new file mode 100644 index 00000000..1456102c --- /dev/null +++ b/blockchains/ethereum/assets/0x4212FEa9FEc90236eCc51E41e2096B16CEB84555/info.json @@ -0,0 +1,11 @@ +{ + "name": "Six Domain Asset", + "symbol": "SDA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4212FEa9FEc90236eCc51E41e2096B16CEB84555", + "status": "abandoned", + "id": "0x4212FEa9FEc90236eCc51E41e2096B16CEB84555" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4212FEa9FEc90236eCc51E41e2096B16CEB84555/logo.png b/blockchains/ethereum/assets/0x4212FEa9FEc90236eCc51E41e2096B16CEB84555/logo.png new file mode 100644 index 00000000..44b8a34f Binary files /dev/null and b/blockchains/ethereum/assets/0x4212FEa9FEc90236eCc51E41e2096B16CEB84555/logo.png differ diff --git a/blockchains/ethereum/assets/0x421b05cf5ce28Cb7347E73e2278E84472F0E4a88/info.json b/blockchains/ethereum/assets/0x421b05cf5ce28Cb7347E73e2278E84472F0E4a88/info.json new file mode 100644 index 00000000..92b9c85d --- /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 00000000..e77d28aa Binary files /dev/null and b/blockchains/ethereum/assets/0x421b05cf5ce28Cb7347E73e2278E84472F0E4a88/logo.png differ diff --git a/blockchains/ethereum/assets/0x422866a8F0b032c5cf1DfBDEf31A20F4509562b0/info.json b/blockchains/ethereum/assets/0x422866a8F0b032c5cf1DfBDEf31A20F4509562b0/info.json new file mode 100644 index 00000000..c34a6fe2 --- /dev/null +++ b/blockchains/ethereum/assets/0x422866a8F0b032c5cf1DfBDEf31A20F4509562b0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Adshares Token", + "symbol": "ADST", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://adshares.net/", + "explorer": "https://etherscan.io/token/0x422866a8F0b032c5cf1DfBDEf31A20F4509562b0", + "status": "abandoned", + "id": "0x422866a8F0b032c5cf1DfBDEf31A20F4509562b0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x422866a8F0b032c5cf1DfBDEf31A20F4509562b0/logo.png b/blockchains/ethereum/assets/0x422866a8F0b032c5cf1DfBDEf31A20F4509562b0/logo.png new file mode 100644 index 00000000..21a56fcf Binary files /dev/null and b/blockchains/ethereum/assets/0x422866a8F0b032c5cf1DfBDEf31A20F4509562b0/logo.png differ diff --git a/blockchains/ethereum/assets/0x4234f63B1D202F6c016Ca3b6a0d41d7d85f17716/info.json b/blockchains/ethereum/assets/0x4234f63B1D202F6c016Ca3b6a0d41d7d85f17716/info.json new file mode 100644 index 00000000..343b45de --- /dev/null +++ b/blockchains/ethereum/assets/0x4234f63B1D202F6c016Ca3b6a0d41d7d85f17716/info.json @@ -0,0 +1,11 @@ +{ + "name": "QNTU Token", + "symbol": "QNTU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.quanta.im/", + "explorer": "https://etherscan.io/token/0x4234f63B1D202F6c016Ca3b6a0d41d7d85f17716", + "status": "abandoned", + "id": "0x4234f63B1D202F6c016Ca3b6a0d41d7d85f17716" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4234f63B1D202F6c016Ca3b6a0d41d7d85f17716/logo.png b/blockchains/ethereum/assets/0x4234f63B1D202F6c016Ca3b6a0d41d7d85f17716/logo.png new file mode 100644 index 00000000..a6033ef1 Binary files /dev/null and b/blockchains/ethereum/assets/0x4234f63B1D202F6c016Ca3b6a0d41d7d85f17716/logo.png differ diff --git a/blockchains/ethereum/assets/0x4238098E9372E7b5DE2d6aF2F2Ed9EE34e183edE/info.json b/blockchains/ethereum/assets/0x4238098E9372E7b5DE2d6aF2F2Ed9EE34e183edE/info.json new file mode 100644 index 00000000..fdfdf6fa --- /dev/null +++ b/blockchains/ethereum/assets/0x4238098E9372E7b5DE2d6aF2F2Ed9EE34e183edE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Carlos", + "symbol": "CARLOS", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4238098E9372E7b5DE2d6aF2F2Ed9EE34e183edE", + "status": "abandoned", + "id": "0x4238098E9372E7b5DE2d6aF2F2Ed9EE34e183edE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4238098E9372E7b5DE2d6aF2F2Ed9EE34e183edE/logo.png b/blockchains/ethereum/assets/0x4238098E9372E7b5DE2d6aF2F2Ed9EE34e183edE/logo.png new file mode 100644 index 00000000..719a6ea4 Binary files /dev/null and b/blockchains/ethereum/assets/0x4238098E9372E7b5DE2d6aF2F2Ed9EE34e183edE/logo.png differ diff --git a/blockchains/ethereum/assets/0x42382F39e7C9F1ADD5fa5f0c6e24aa62f50be3b3/info.json b/blockchains/ethereum/assets/0x42382F39e7C9F1ADD5fa5f0c6e24aa62f50be3b3/info.json new file mode 100644 index 00000000..93e8a645 --- /dev/null +++ b/blockchains/ethereum/assets/0x42382F39e7C9F1ADD5fa5f0c6e24aa62f50be3b3/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZOM", + "symbol": "ZOM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.yazom.com/", + "explorer": "https://etherscan.io/token/0x42382F39e7C9F1ADD5fa5f0c6e24aa62f50be3b3", + "status": "abandoned", + "id": "0x42382F39e7C9F1ADD5fa5f0c6e24aa62f50be3b3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x42382F39e7C9F1ADD5fa5f0c6e24aa62f50be3b3/logo.png b/blockchains/ethereum/assets/0x42382F39e7C9F1ADD5fa5f0c6e24aa62f50be3b3/logo.png new file mode 100644 index 00000000..cda3e855 Binary files /dev/null and b/blockchains/ethereum/assets/0x42382F39e7C9F1ADD5fa5f0c6e24aa62f50be3b3/logo.png differ diff --git a/blockchains/ethereum/assets/0x4238C2E2E9e387B6Feb23acbb81B3B6dEa648B8d/info.json b/blockchains/ethereum/assets/0x4238C2E2E9e387B6Feb23acbb81B3B6dEa648B8d/info.json new file mode 100644 index 00000000..310ec073 --- /dev/null +++ b/blockchains/ethereum/assets/0x4238C2E2E9e387B6Feb23acbb81B3B6dEa648B8d/info.json @@ -0,0 +1,11 @@ +{ + "name": "XuanCoin", + "symbol": "XNC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4238C2E2E9e387B6Feb23acbb81B3B6dEa648B8d", + "status": "abandoned", + "id": "0x4238C2E2E9e387B6Feb23acbb81B3B6dEa648B8d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4238C2E2E9e387B6Feb23acbb81B3B6dEa648B8d/logo.png b/blockchains/ethereum/assets/0x4238C2E2E9e387B6Feb23acbb81B3B6dEa648B8d/logo.png new file mode 100644 index 00000000..3b634404 Binary files /dev/null and b/blockchains/ethereum/assets/0x4238C2E2E9e387B6Feb23acbb81B3B6dEa648B8d/logo.png differ diff --git a/blockchains/ethereum/assets/0x423A63dfE8d82CD9C6568C92210AA537d8Ef6885/info.json b/blockchains/ethereum/assets/0x423A63dfE8d82CD9C6568C92210AA537d8Ef6885/info.json new file mode 100644 index 00000000..7369cf51 --- /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 00000000..8bd6718f 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 00000000..e90c8dcd --- /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 00000000..1153d70d Binary files /dev/null and b/blockchains/ethereum/assets/0x423D42E505e64F99b6E277eb7ED324CC5606F139/logo.png differ diff --git a/blockchains/ethereum/assets/0x423D8321be3DD7EbFF5B6c7da2EF6614B8547acf/info.json b/blockchains/ethereum/assets/0x423D8321be3DD7EbFF5B6c7da2EF6614B8547acf/info.json new file mode 100644 index 00000000..11e68ab0 --- /dev/null +++ b/blockchains/ethereum/assets/0x423D8321be3DD7EbFF5B6c7da2EF6614B8547acf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fundament RE 1", + "symbol": "FUND", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x423D8321be3DD7EbFF5B6c7da2EF6614B8547acf", + "status": "abandoned", + "id": "0x423D8321be3DD7EbFF5B6c7da2EF6614B8547acf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x423D8321be3DD7EbFF5B6c7da2EF6614B8547acf/logo.png b/blockchains/ethereum/assets/0x423D8321be3DD7EbFF5B6c7da2EF6614B8547acf/logo.png new file mode 100644 index 00000000..a62ae130 Binary files /dev/null and b/blockchains/ethereum/assets/0x423D8321be3DD7EbFF5B6c7da2EF6614B8547acf/logo.png differ diff --git a/blockchains/ethereum/assets/0x423FfB66AECC906361d79F87d85dB310897bDB6D/info.json b/blockchains/ethereum/assets/0x423FfB66AECC906361d79F87d85dB310897bDB6D/info.json new file mode 100644 index 00000000..9ae3bd86 --- /dev/null +++ b/blockchains/ethereum/assets/0x423FfB66AECC906361d79F87d85dB310897bDB6D/info.json @@ -0,0 +1,11 @@ +{ + "name": "First Internet Football Association", + "symbol": "FIFA", + "type": "ERC20", + "decimals": 18, + "description": "The ISIKC blockchain-based loyalty platform is reportedly built by a team that understands technology and the construction materials market.", + "website": "https://www.isikc.io", + "explorer": "https://etherscan.io/token/0x423FfB66AECC906361d79F87d85dB310897bDB6D", + "status": "active", + "id": "0x423FfB66AECC906361d79F87d85dB310897bDB6D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x423FfB66AECC906361d79F87d85dB310897bDB6D/logo.png b/blockchains/ethereum/assets/0x423FfB66AECC906361d79F87d85dB310897bDB6D/logo.png new file mode 100644 index 00000000..0bf165ff Binary files /dev/null and b/blockchains/ethereum/assets/0x423FfB66AECC906361d79F87d85dB310897bDB6D/logo.png differ diff --git a/blockchains/ethereum/assets/0x423b5F62b328D0D6D44870F4Eee316befA0b2dF5/info.json b/blockchains/ethereum/assets/0x423b5F62b328D0D6D44870F4Eee316befA0b2dF5/info.json new file mode 100644 index 00000000..046b5684 --- /dev/null +++ b/blockchains/ethereum/assets/0x423b5F62b328D0D6D44870F4Eee316befA0b2dF5/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoToken", + "symbol": "GOT", + "type": "ERC20", + "decimals": 18, + "description": "GoNetwork (GOT) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://gonetwork.co/", + "explorer": "https://etherscan.io/token/0x423b5F62b328D0D6D44870F4Eee316befA0b2dF5", + "status": "active", + "id": "0x423b5F62b328D0D6D44870F4Eee316befA0b2dF5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x423b5F62b328D0D6D44870F4Eee316befA0b2dF5/logo.png b/blockchains/ethereum/assets/0x423b5F62b328D0D6D44870F4Eee316befA0b2dF5/logo.png new file mode 100644 index 00000000..80b8e836 Binary files /dev/null and b/blockchains/ethereum/assets/0x423b5F62b328D0D6D44870F4Eee316befA0b2dF5/logo.png differ diff --git a/blockchains/ethereum/assets/0x423e4322CDDa29156b49a17dfbd2aCC4b280600D/info.json b/blockchains/ethereum/assets/0x423e4322CDDa29156b49a17dfbd2aCC4b280600D/info.json new file mode 100644 index 00000000..03dff738 --- /dev/null +++ b/blockchains/ethereum/assets/0x423e4322CDDa29156b49a17dfbd2aCC4b280600D/info.json @@ -0,0 +1,11 @@ +{ + "name": "CAR SHARING", + "symbol": "CAR", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x423e4322CDDa29156b49a17dfbd2aCC4b280600D", + "status": "abandoned", + "id": "0x423e4322CDDa29156b49a17dfbd2aCC4b280600D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x423e4322CDDa29156b49a17dfbd2aCC4b280600D/logo.png b/blockchains/ethereum/assets/0x423e4322CDDa29156b49a17dfbd2aCC4b280600D/logo.png new file mode 100644 index 00000000..bab60884 Binary files /dev/null and b/blockchains/ethereum/assets/0x423e4322CDDa29156b49a17dfbd2aCC4b280600D/logo.png differ diff --git a/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json b/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json new file mode 100644 index 00000000..3481b68b --- /dev/null +++ b/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/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://etherscan.io/token/0x42476F744292107e34519F9c357927074Ea3F75D", + "type": "ERC20", + "symbol": "LOOM", + "decimals": 18, + "status": "active", + "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/0x42476F744292107e34519F9c357927074Ea3F75D/logo.png b/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/logo.png new file mode 100644 index 00000000..6363f415 Binary files /dev/null and b/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/logo.png differ diff --git a/blockchains/ethereum/assets/0x42566cFEFC853c232117EbA4413e45782a72715d/info.json b/blockchains/ethereum/assets/0x42566cFEFC853c232117EbA4413e45782a72715d/info.json new file mode 100644 index 00000000..a7fcb792 --- /dev/null +++ b/blockchains/ethereum/assets/0x42566cFEFC853c232117EbA4413e45782a72715d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Krios Token", + "symbol": "KRI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x42566cFEFC853c232117EbA4413e45782a72715d", + "status": "active", + "id": "0x42566cFEFC853c232117EbA4413e45782a72715d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x42566cFEFC853c232117EbA4413e45782a72715d/logo.png b/blockchains/ethereum/assets/0x42566cFEFC853c232117EbA4413e45782a72715d/logo.png new file mode 100644 index 00000000..73815966 Binary files /dev/null and b/blockchains/ethereum/assets/0x42566cFEFC853c232117EbA4413e45782a72715d/logo.png differ diff --git a/blockchains/ethereum/assets/0x4257D36dF231DC71F7B7a6E1bE3Ef9C99B9181fD/info.json b/blockchains/ethereum/assets/0x4257D36dF231DC71F7B7a6E1bE3Ef9C99B9181fD/info.json new file mode 100644 index 00000000..966c3f7e --- /dev/null +++ b/blockchains/ethereum/assets/0x4257D36dF231DC71F7B7a6E1bE3Ef9C99B9181fD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Super Star Token", + "symbol": "SST", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4257D36dF231DC71F7B7a6E1bE3Ef9C99B9181fD", + "status": "abandoned", + "id": "0x4257D36dF231DC71F7B7a6E1bE3Ef9C99B9181fD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4257D36dF231DC71F7B7a6E1bE3Ef9C99B9181fD/logo.png b/blockchains/ethereum/assets/0x4257D36dF231DC71F7B7a6E1bE3Ef9C99B9181fD/logo.png new file mode 100755 index 00000000..90fec5cf Binary files /dev/null and b/blockchains/ethereum/assets/0x4257D36dF231DC71F7B7a6E1bE3Ef9C99B9181fD/logo.png differ diff --git a/blockchains/ethereum/assets/0x4263A2f0456305d7d10F8a4555f8c3B593b3b895/info.json b/blockchains/ethereum/assets/0x4263A2f0456305d7d10F8a4555f8c3B593b3b895/info.json new file mode 100644 index 00000000..3a9f353d --- /dev/null +++ b/blockchains/ethereum/assets/0x4263A2f0456305d7d10F8a4555f8c3B593b3b895/info.json @@ -0,0 +1,11 @@ +{ + "name": "Quantum Proof (3FA)", + "website": "https://3fa.app/", + "description": "3FA utilizes a hybrid pin-code generating algorithm when computer and human logics are intertwined together in such a way that the resulting verification password is mathematically impossible to decrypt.", + "explorer": "https://etherscan.io/token/0x4263A2f0456305d7d10F8a4555f8c3B593b3b895", + "type": "ERC20", + "symbol": "3FA", + "decimals": 4, + "status": "active", + "id": "0x4263A2f0456305d7d10F8a4555f8c3B593b3b895" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4263A2f0456305d7d10F8a4555f8c3B593b3b895/logo.png b/blockchains/ethereum/assets/0x4263A2f0456305d7d10F8a4555f8c3B593b3b895/logo.png new file mode 100644 index 00000000..6f1b4fc6 Binary files /dev/null and b/blockchains/ethereum/assets/0x4263A2f0456305d7d10F8a4555f8c3B593b3b895/logo.png differ diff --git a/blockchains/ethereum/assets/0x426CA1eA2406c07d75Db9585F22781c096e3d0E0/info.json b/blockchains/ethereum/assets/0x426CA1eA2406c07d75Db9585F22781c096e3d0E0/info.json new file mode 100644 index 00000000..f1edfff0 --- /dev/null +++ b/blockchains/ethereum/assets/0x426CA1eA2406c07d75Db9585F22781c096e3d0E0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Minereum", + "website": "https://minereum.com/", + "description": "Minereum Official", + "explorer": "https://etherscan.io/token/0x426CA1eA2406c07d75Db9585F22781c096e3d0E0", + "type": "ERC20", + "symbol": "MNE", + "decimals": 8, + "status": "active", + "id": "0x426CA1eA2406c07d75Db9585F22781c096e3d0E0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x426CA1eA2406c07d75Db9585F22781c096e3d0E0/logo.png b/blockchains/ethereum/assets/0x426CA1eA2406c07d75Db9585F22781c096e3d0E0/logo.png new file mode 100644 index 00000000..e67899df Binary files /dev/null and b/blockchains/ethereum/assets/0x426CA1eA2406c07d75Db9585F22781c096e3d0E0/logo.png differ diff --git a/blockchains/ethereum/assets/0x426FC8BE95573230f6e6bc4af91873F0c67b21b4/info.json b/blockchains/ethereum/assets/0x426FC8BE95573230f6e6bc4af91873F0c67b21b4/info.json new file mode 100644 index 00000000..533a6a5a --- /dev/null +++ b/blockchains/ethereum/assets/0x426FC8BE95573230f6e6bc4af91873F0c67b21b4/info.json @@ -0,0 +1,17 @@ +{ + "name": "BlackPearl Token", + "website": "https://blackpearlchain.io/", + "description": "BlackPearl Token ", + "explorer": "https://etherscan.io/token/0x426FC8BE95573230f6e6bc4af91873F0c67b21b4", + "type": "ERC20", + "symbol": "BPLC", + "decimals": 18, + "status": "active", + "id": "0x426FC8BE95573230f6e6bc4af91873F0c67b21b4", + "links": [ + { + "name": "whitepaper", + "url": "https://blackpearlchain.io/wp-content/uploads/2020/03/blackpearl5_Issuer_version_1_0_1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x426FC8BE95573230f6e6bc4af91873F0c67b21b4/logo.png b/blockchains/ethereum/assets/0x426FC8BE95573230f6e6bc4af91873F0c67b21b4/logo.png new file mode 100644 index 00000000..629daf71 Binary files /dev/null and b/blockchains/ethereum/assets/0x426FC8BE95573230f6e6bc4af91873F0c67b21b4/logo.png differ diff --git a/blockchains/ethereum/assets/0x426a688eE72811773eB64F5717A32981B56F10c1/info.json b/blockchains/ethereum/assets/0x426a688eE72811773eB64F5717A32981B56F10c1/info.json new file mode 100644 index 00000000..4f073b0f --- /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 00000000..4fcaf446 Binary files /dev/null and b/blockchains/ethereum/assets/0x426a688eE72811773eB64F5717A32981B56F10c1/logo.png differ diff --git a/blockchains/ethereum/assets/0x4270bb238f6DD8B1c3ca01f96CA65b2647c06D3C/info.json b/blockchains/ethereum/assets/0x4270bb238f6DD8B1c3ca01f96CA65b2647c06D3C/info.json new file mode 100644 index 00000000..6dcddd53 --- /dev/null +++ b/blockchains/ethereum/assets/0x4270bb238f6DD8B1c3ca01f96CA65b2647c06D3C/info.json @@ -0,0 +1,11 @@ +{ + "name": "FOTA", + "symbol": "FOTA", + "type": "ERC20", + "decimals": 18, + "description": "FORTUNA is a global OTC derivatives market disciplined by algorithms while supporting transparent, real time, and full dose trading data supervision.", + "website": "https://www.fota.top/", + "explorer": "https://etherscan.io/token/0x4270bb238f6DD8B1c3ca01f96CA65b2647c06D3C", + "status": "active", + "id": "0x4270bb238f6DD8B1c3ca01f96CA65b2647c06D3C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4270bb238f6DD8B1c3ca01f96CA65b2647c06D3C/logo.png b/blockchains/ethereum/assets/0x4270bb238f6DD8B1c3ca01f96CA65b2647c06D3C/logo.png new file mode 100644 index 00000000..f6c9b970 Binary files /dev/null and b/blockchains/ethereum/assets/0x4270bb238f6DD8B1c3ca01f96CA65b2647c06D3C/logo.png differ diff --git a/blockchains/ethereum/assets/0x42726d074BBa68Ccc15200442B72Afa2D495A783/info.json b/blockchains/ethereum/assets/0x42726d074BBa68Ccc15200442B72Afa2D495A783/info.json new file mode 100644 index 00000000..15a22355 --- /dev/null +++ b/blockchains/ethereum/assets/0x42726d074BBa68Ccc15200442B72Afa2D495A783/info.json @@ -0,0 +1,11 @@ +{ + "name": "Isik Coin", + "symbol": "ISIKC", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://www.isikc.io/", + "explorer": "https://etherscan.io/token/0x42726d074BBa68Ccc15200442B72Afa2D495A783", + "status": "active", + "id": "0x42726d074BBa68Ccc15200442B72Afa2D495A783" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x42726d074BBa68Ccc15200442B72Afa2D495A783/logo.png b/blockchains/ethereum/assets/0x42726d074BBa68Ccc15200442B72Afa2D495A783/logo.png new file mode 100644 index 00000000..a02a05e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x42726d074BBa68Ccc15200442B72Afa2D495A783/logo.png differ diff --git a/blockchains/ethereum/assets/0x4273073F1f1BFd2aA35e00369050BeBa3f83C4ca/info.json b/blockchains/ethereum/assets/0x4273073F1f1BFd2aA35e00369050BeBa3f83C4ca/info.json new file mode 100644 index 00000000..2223a054 --- /dev/null +++ b/blockchains/ethereum/assets/0x4273073F1f1BFd2aA35e00369050BeBa3f83C4ca/info.json @@ -0,0 +1,11 @@ +{ + "name": "EnterCoin", + "symbol": "ENTRC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4273073F1f1BFd2aA35e00369050BeBa3f83C4ca", + "status": "abandoned", + "id": "0x4273073F1f1BFd2aA35e00369050BeBa3f83C4ca" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4273073F1f1BFd2aA35e00369050BeBa3f83C4ca/logo.png b/blockchains/ethereum/assets/0x4273073F1f1BFd2aA35e00369050BeBa3f83C4ca/logo.png new file mode 100644 index 00000000..84788b86 Binary files /dev/null and b/blockchains/ethereum/assets/0x4273073F1f1BFd2aA35e00369050BeBa3f83C4ca/logo.png differ diff --git a/blockchains/ethereum/assets/0x4277DF6De4Cb2e25a2080DCf64aE533c9Aca8196/info.json b/blockchains/ethereum/assets/0x4277DF6De4Cb2e25a2080DCf64aE533c9Aca8196/info.json new file mode 100644 index 00000000..f097ec30 --- /dev/null +++ b/blockchains/ethereum/assets/0x4277DF6De4Cb2e25a2080DCf64aE533c9Aca8196/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoArtCoin", + "symbol": "CRAC", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4277DF6De4Cb2e25a2080DCf64aE533c9Aca8196", + "status": "abandoned", + "id": "0x4277DF6De4Cb2e25a2080DCf64aE533c9Aca8196" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4277DF6De4Cb2e25a2080DCf64aE533c9Aca8196/logo.png b/blockchains/ethereum/assets/0x4277DF6De4Cb2e25a2080DCf64aE533c9Aca8196/logo.png new file mode 100644 index 00000000..f5a06e7b Binary files /dev/null and b/blockchains/ethereum/assets/0x4277DF6De4Cb2e25a2080DCf64aE533c9Aca8196/logo.png differ diff --git a/blockchains/ethereum/assets/0x428548d53E889d7A0D51F4142BA53463808c1BE6/info.json b/blockchains/ethereum/assets/0x428548d53E889d7A0D51F4142BA53463808c1BE6/info.json new file mode 100644 index 00000000..06508d78 --- /dev/null +++ b/blockchains/ethereum/assets/0x428548d53E889d7A0D51F4142BA53463808c1BE6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Energy27", + "symbol": "TWS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x428548d53E889d7A0D51F4142BA53463808c1BE6", + "status": "abandoned", + "id": "0x428548d53E889d7A0D51F4142BA53463808c1BE6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x428548d53E889d7A0D51F4142BA53463808c1BE6/logo.png b/blockchains/ethereum/assets/0x428548d53E889d7A0D51F4142BA53463808c1BE6/logo.png new file mode 100644 index 00000000..ad6e3b34 Binary files /dev/null and b/blockchains/ethereum/assets/0x428548d53E889d7A0D51F4142BA53463808c1BE6/logo.png differ diff --git a/blockchains/ethereum/assets/0x4289c043A12392F1027307fB58272D8EBd853912/info.json b/blockchains/ethereum/assets/0x4289c043A12392F1027307fB58272D8EBd853912/info.json new file mode 100644 index 00000000..81ad9ad9 --- /dev/null +++ b/blockchains/ethereum/assets/0x4289c043A12392F1027307fB58272D8EBd853912/info.json @@ -0,0 +1,11 @@ +{ + "name": "AiLink Token", + "symbol": "ALI", + "type": "ERC20", + "decimals": 18, + "description": "AiLink Token (ALI) is a cryptocurrency and operates on the Ethereum platform.", + "website": "http://ailink.in/pc.html", + "explorer": "https://etherscan.io/token/0x4289c043A12392F1027307fB58272D8EBd853912", + "status": "active", + "id": "0x4289c043A12392F1027307fB58272D8EBd853912" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4289c043A12392F1027307fB58272D8EBd853912/logo.png b/blockchains/ethereum/assets/0x4289c043A12392F1027307fB58272D8EBd853912/logo.png new file mode 100644 index 00000000..d60df6e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x4289c043A12392F1027307fB58272D8EBd853912/logo.png differ diff --git a/blockchains/ethereum/assets/0x4290563C2D7c255B5EEC87f2D3bD10389f991d68/info.json b/blockchains/ethereum/assets/0x4290563C2D7c255B5EEC87f2D3bD10389f991d68/info.json new file mode 100644 index 00000000..8f5e402d --- /dev/null +++ b/blockchains/ethereum/assets/0x4290563C2D7c255B5EEC87f2D3bD10389f991d68/info.json @@ -0,0 +1,11 @@ +{ + "name": "UnlimitedIP Token", + "symbol": "UIP", + "type": "ERC20", + "decimals": 18, + "description": "UIP (short for UnlimitedIP ) is a recreational copyright intelligent trading platform created by Link Entertainments Technology based on EOS.", + "website": "http://www.unlimitedip.io/", + "explorer": "https://etherscan.io/token/0x4290563C2D7c255B5EEC87f2D3bD10389f991d68", + "status": "active", + "id": "0x4290563C2D7c255B5EEC87f2D3bD10389f991d68" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4290563C2D7c255B5EEC87f2D3bD10389f991d68/logo.png b/blockchains/ethereum/assets/0x4290563C2D7c255B5EEC87f2D3bD10389f991d68/logo.png new file mode 100644 index 00000000..26010a9c Binary files /dev/null and b/blockchains/ethereum/assets/0x4290563C2D7c255B5EEC87f2D3bD10389f991d68/logo.png differ diff --git a/blockchains/ethereum/assets/0x4297394c20800E8a38A619A243E9BbE7681Ff24E/info.json b/blockchains/ethereum/assets/0x4297394c20800E8a38A619A243E9BbE7681Ff24E/info.json new file mode 100644 index 00000000..2e1554d2 --- /dev/null +++ b/blockchains/ethereum/assets/0x4297394c20800E8a38A619A243E9BbE7681Ff24E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hot Cross Token", + "website": "https://hotcross.com/", + "description": "Hot Cross is an extensive multi-chain and cross-chain tool suite that enables blockchain teams and their communities to thrive. We are a cohort of builders who aggressively seek out opportunities to meet the demands of the now for both B2B and B2C.", + "explorer": "https://etherscan.io/token/0x4297394c20800e8a38a619a243e9bbe7681ff24e", + "type": "ERC20", + "symbol": "HOTCROSS", + "decimals": 18, + "status": "active", + "id": "0x4297394c20800E8a38A619A243E9BbE7681Ff24E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4297394c20800E8a38A619A243E9BbE7681Ff24E/logo.png b/blockchains/ethereum/assets/0x4297394c20800E8a38A619A243E9BbE7681Ff24E/logo.png new file mode 100644 index 00000000..6c7d127a Binary files /dev/null and b/blockchains/ethereum/assets/0x4297394c20800E8a38A619A243E9BbE7681Ff24E/logo.png differ diff --git a/blockchains/ethereum/assets/0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5/info.json b/blockchains/ethereum/assets/0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5/info.json new file mode 100644 index 00000000..28a54b23 --- /dev/null +++ b/blockchains/ethereum/assets/0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pickle Finance", + "website": "https://pickle.finance/", + "description": "An experiment in bringing stablecoins closer to their pegs using farming incentives, jars, and governance", + "explorer": "https://etherscan.io/token/0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5", + "type": "ERC20", + "symbol": "PICKLE", + "decimals": 18, + "status": "active", + "id": "0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5", + "links": [ + { + "name": "github", + "url": "https://github.com/pickle-finance/contracts" + }, + { + "name": "whitepaper", + "url": "https://pickle.finance/pickle-pico-paper-en.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5/logo.png b/blockchains/ethereum/assets/0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5/logo.png new file mode 100644 index 00000000..12c8a4c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5/logo.png differ diff --git a/blockchains/ethereum/assets/0x429Ac77F069BFF489e2d78F9479e1E933305c528/info.json b/blockchains/ethereum/assets/0x429Ac77F069BFF489e2d78F9479e1E933305c528/info.json new file mode 100644 index 00000000..95429bb9 --- /dev/null +++ b/blockchains/ethereum/assets/0x429Ac77F069BFF489e2d78F9479e1E933305c528/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rizubot", + "symbol": "RZB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://rizubot.com", + "explorer": "https://etherscan.io/token/0x429Ac77F069BFF489e2d78F9479e1E933305c528", + "status": "abandoned", + "id": "0x429Ac77F069BFF489e2d78F9479e1E933305c528" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x429Ac77F069BFF489e2d78F9479e1E933305c528/logo.png b/blockchains/ethereum/assets/0x429Ac77F069BFF489e2d78F9479e1E933305c528/logo.png new file mode 100644 index 00000000..44b9fcf1 Binary files /dev/null and b/blockchains/ethereum/assets/0x429Ac77F069BFF489e2d78F9479e1E933305c528/logo.png differ diff --git a/blockchains/ethereum/assets/0x429Aed474de19a028DF775f94F6632DBf49752bA/info.json b/blockchains/ethereum/assets/0x429Aed474de19a028DF775f94F6632DBf49752bA/info.json new file mode 100644 index 00000000..6440d518 --- /dev/null +++ b/blockchains/ethereum/assets/0x429Aed474de19a028DF775f94F6632DBf49752bA/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R812163", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x429Aed474de19a028DF775f94F6632DBf49752bA", + "status": "abandoned", + "id": "0x429Aed474de19a028DF775f94F6632DBf49752bA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x429Aed474de19a028DF775f94F6632DBf49752bA/logo.png b/blockchains/ethereum/assets/0x429Aed474de19a028DF775f94F6632DBf49752bA/logo.png new file mode 100644 index 00000000..35e63899 Binary files /dev/null and b/blockchains/ethereum/assets/0x429Aed474de19a028DF775f94F6632DBf49752bA/logo.png differ diff --git a/blockchains/ethereum/assets/0x429D83Bb0DCB8cdd5311e34680ADC8B12070a07f/info.json b/blockchains/ethereum/assets/0x429D83Bb0DCB8cdd5311e34680ADC8B12070a07f/info.json new file mode 100644 index 00000000..521db1af --- /dev/null +++ b/blockchains/ethereum/assets/0x429D83Bb0DCB8cdd5311e34680ADC8B12070a07f/info.json @@ -0,0 +1,11 @@ +{ + "name": "PlatonCoin", + "symbol": "PLTC", + "type": "ERC20", + "decimals": 18, + "description": "Platon Finance is a blockchain digital ecosystem that represents a bridge for all the people and business owners so everybody could learn, understand, use and benefit from blockchain, a revolution of technology.", + "website": "https://platonfinance.com", + "explorer": "https://etherscan.io/token/0x429D83Bb0DCB8cdd5311e34680ADC8B12070a07f", + "status": "active", + "id": "0x429D83Bb0DCB8cdd5311e34680ADC8B12070a07f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x429D83Bb0DCB8cdd5311e34680ADC8B12070a07f/logo.png b/blockchains/ethereum/assets/0x429D83Bb0DCB8cdd5311e34680ADC8B12070a07f/logo.png new file mode 100644 index 00000000..02b296a5 Binary files /dev/null and b/blockchains/ethereum/assets/0x429D83Bb0DCB8cdd5311e34680ADC8B12070a07f/logo.png differ diff --git a/blockchains/ethereum/assets/0x429F0d8233e517f9acf6F0C8293BF35804063a83/info.json b/blockchains/ethereum/assets/0x429F0d8233e517f9acf6F0C8293BF35804063a83/info.json new file mode 100644 index 00000000..3439e70c --- /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 00000000..8c8e59bd Binary files /dev/null and b/blockchains/ethereum/assets/0x429F0d8233e517f9acf6F0C8293BF35804063a83/logo.png differ diff --git a/blockchains/ethereum/assets/0x42BEdD647E387daBeC65A7dc3A3bAbCc68BB664d/info.json b/blockchains/ethereum/assets/0x42BEdD647E387daBeC65A7dc3A3bAbCc68BB664d/info.json new file mode 100644 index 00000000..dca877ef --- /dev/null +++ b/blockchains/ethereum/assets/0x42BEdD647E387daBeC65A7dc3A3bAbCc68BB664d/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLOCKMASON LINK TOKEN", + "symbol": "BLINK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://blockmason.link/", + "explorer": "https://etherscan.io/token/0x42BEdD647E387daBeC65A7dc3A3bAbCc68BB664d", + "status": "abandoned", + "id": "0x42BEdD647E387daBeC65A7dc3A3bAbCc68BB664d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x42BEdD647E387daBeC65A7dc3A3bAbCc68BB664d/logo.png b/blockchains/ethereum/assets/0x42BEdD647E387daBeC65A7dc3A3bAbCc68BB664d/logo.png new file mode 100644 index 00000000..b7e8ed7f Binary files /dev/null and b/blockchains/ethereum/assets/0x42BEdD647E387daBeC65A7dc3A3bAbCc68BB664d/logo.png differ diff --git a/blockchains/ethereum/assets/0x42Baf1f659D765C65ADE5BB7E08eb2C680360d9d/info.json b/blockchains/ethereum/assets/0x42Baf1f659D765C65ADE5BB7E08eb2C680360d9d/info.json new file mode 100644 index 00000000..ed327fb1 --- /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 00000000..66f09f85 Binary files /dev/null and b/blockchains/ethereum/assets/0x42Baf1f659D765C65ADE5BB7E08eb2C680360d9d/logo.png differ diff --git a/blockchains/ethereum/assets/0x42CB4AB485Fc91cdf6D07e224e5b55E44f0378a7/info.json b/blockchains/ethereum/assets/0x42CB4AB485Fc91cdf6D07e224e5b55E44f0378a7/info.json new file mode 100644 index 00000000..e3763196 --- /dev/null +++ b/blockchains/ethereum/assets/0x42CB4AB485Fc91cdf6D07e224e5b55E44f0378a7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xiaodao", + "symbol": "XDAO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x42CB4AB485Fc91cdf6D07e224e5b55E44f0378a7", + "status": "abandoned", + "id": "0x42CB4AB485Fc91cdf6D07e224e5b55E44f0378a7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x42CB4AB485Fc91cdf6D07e224e5b55E44f0378a7/logo.png b/blockchains/ethereum/assets/0x42CB4AB485Fc91cdf6D07e224e5b55E44f0378a7/logo.png new file mode 100644 index 00000000..70261077 Binary files /dev/null and b/blockchains/ethereum/assets/0x42CB4AB485Fc91cdf6D07e224e5b55E44f0378a7/logo.png differ diff --git a/blockchains/ethereum/assets/0x42E9d6798bB9edE0aeedaACb6E07756266DaD67d/info.json b/blockchains/ethereum/assets/0x42E9d6798bB9edE0aeedaACb6E07756266DaD67d/info.json new file mode 100644 index 00000000..1602bde0 --- /dev/null +++ b/blockchains/ethereum/assets/0x42E9d6798bB9edE0aeedaACb6E07756266DaD67d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fair Science Token", + "symbol": "SFA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x42E9d6798bB9edE0aeedaACb6E07756266DaD67d", + "status": "abandoned", + "id": "0x42E9d6798bB9edE0aeedaACb6E07756266DaD67d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x42E9d6798bB9edE0aeedaACb6E07756266DaD67d/logo.png b/blockchains/ethereum/assets/0x42E9d6798bB9edE0aeedaACb6E07756266DaD67d/logo.png new file mode 100644 index 00000000..7793cd0e Binary files /dev/null and b/blockchains/ethereum/assets/0x42E9d6798bB9edE0aeedaACb6E07756266DaD67d/logo.png differ diff --git a/blockchains/ethereum/assets/0x42a75636e6F73e48e74A085f3efD81068586f74C/info.json b/blockchains/ethereum/assets/0x42a75636e6F73e48e74A085f3efD81068586f74C/info.json new file mode 100644 index 00000000..79a09015 --- /dev/null +++ b/blockchains/ethereum/assets/0x42a75636e6F73e48e74A085f3efD81068586f74C/info.json @@ -0,0 +1,11 @@ +{ + "name": "FUNY - TOKEN", + "symbol": "FUN", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x42a75636e6F73e48e74A085f3efD81068586f74C", + "status": "abandoned", + "id": "0x42a75636e6F73e48e74A085f3efD81068586f74C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x42a75636e6F73e48e74A085f3efD81068586f74C/logo.png b/blockchains/ethereum/assets/0x42a75636e6F73e48e74A085f3efD81068586f74C/logo.png new file mode 100644 index 00000000..d3b261d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x42a75636e6F73e48e74A085f3efD81068586f74C/logo.png differ diff --git a/blockchains/ethereum/assets/0x42b05A12783a659EB53a7d90b2C70929AF96Ad71/info.json b/blockchains/ethereum/assets/0x42b05A12783a659EB53a7d90b2C70929AF96Ad71/info.json new file mode 100644 index 00000000..104a7ddf --- /dev/null +++ b/blockchains/ethereum/assets/0x42b05A12783a659EB53a7d90b2C70929AF96Ad71/info.json @@ -0,0 +1,11 @@ +{ + "name": "Deluxo", + "symbol": "DLUX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x42b05A12783a659EB53a7d90b2C70929AF96Ad71", + "status": "abandoned", + "id": "0x42b05A12783a659EB53a7d90b2C70929AF96Ad71" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x42b05A12783a659EB53a7d90b2C70929AF96Ad71/logo.png b/blockchains/ethereum/assets/0x42b05A12783a659EB53a7d90b2C70929AF96Ad71/logo.png new file mode 100644 index 00000000..43f82d43 Binary files /dev/null and b/blockchains/ethereum/assets/0x42b05A12783a659EB53a7d90b2C70929AF96Ad71/logo.png differ diff --git a/blockchains/ethereum/assets/0x42d6622deCe394b54999Fbd73D108123806f6a18/info.json b/blockchains/ethereum/assets/0x42d6622deCe394b54999Fbd73D108123806f6a18/info.json new file mode 100644 index 00000000..9b18dc93 --- /dev/null +++ b/blockchains/ethereum/assets/0x42d6622deCe394b54999Fbd73D108123806f6a18/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPANK", + "symbol": "SPANK", + "type": "ERC20", + "decimals": 18, + "description": "A cryptoeconomic powered adult entertainment ecosystem built on the Ethereum network.", + "website": "https://spankchain.com/", + "explorer": "https://etherscan.io/token/0x42d6622deCe394b54999Fbd73D108123806f6a18", + "status": "active", + "id": "0x42d6622deCe394b54999Fbd73D108123806f6a18" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x42d6622deCe394b54999Fbd73D108123806f6a18/logo.png b/blockchains/ethereum/assets/0x42d6622deCe394b54999Fbd73D108123806f6a18/logo.png new file mode 100755 index 00000000..aadd7ff0 Binary files /dev/null and b/blockchains/ethereum/assets/0x42d6622deCe394b54999Fbd73D108123806f6a18/logo.png differ diff --git a/blockchains/ethereum/assets/0x42d6E274B8631e5289a8F853E8d1A7bAEff3C8d1/info.json b/blockchains/ethereum/assets/0x42d6E274B8631e5289a8F853E8d1A7bAEff3C8d1/info.json new file mode 100644 index 00000000..23fa32c6 --- /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 00000000..136dac3e Binary files /dev/null and b/blockchains/ethereum/assets/0x42d6E274B8631e5289a8F853E8d1A7bAEff3C8d1/logo.png differ diff --git a/blockchains/ethereum/assets/0x4302583AD774F404aa55CeC5729FcABe2855EFFd/info.json b/blockchains/ethereum/assets/0x4302583AD774F404aa55CeC5729FcABe2855EFFd/info.json new file mode 100644 index 00000000..6c9c854b --- /dev/null +++ b/blockchains/ethereum/assets/0x4302583AD774F404aa55CeC5729FcABe2855EFFd/info.json @@ -0,0 +1,11 @@ +{ + "name": "NairaCoin", + "symbol": "NGNC", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4302583AD774F404aa55CeC5729FcABe2855EFFd", + "status": "abandoned", + "id": "0x4302583AD774F404aa55CeC5729FcABe2855EFFd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4302583AD774F404aa55CeC5729FcABe2855EFFd/logo.png b/blockchains/ethereum/assets/0x4302583AD774F404aa55CeC5729FcABe2855EFFd/logo.png new file mode 100644 index 00000000..c8606390 Binary files /dev/null and b/blockchains/ethereum/assets/0x4302583AD774F404aa55CeC5729FcABe2855EFFd/logo.png differ diff --git a/blockchains/ethereum/assets/0x43044f861ec040DB59A7e324c40507adDb673142/info.json b/blockchains/ethereum/assets/0x43044f861ec040DB59A7e324c40507adDb673142/info.json new file mode 100644 index 00000000..48d06aaa --- /dev/null +++ b/blockchains/ethereum/assets/0x43044f861ec040DB59A7e324c40507adDb673142/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cap", + "website": "https://cap.finance", + "description": "Cap is a protocol to trade the markets with stablecoins.", + "explorer": "https://etherscan.io/token/0x43044f861ec040DB59A7e324c40507adDb673142", + "type": "ERC20", + "symbol": "CAP", + "decimals": 18, + "status": "active", + "id": "0x43044f861ec040DB59A7e324c40507adDb673142" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x43044f861ec040DB59A7e324c40507adDb673142/logo.png b/blockchains/ethereum/assets/0x43044f861ec040DB59A7e324c40507adDb673142/logo.png new file mode 100644 index 00000000..26de27b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x43044f861ec040DB59A7e324c40507adDb673142/logo.png differ diff --git a/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json b/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json new file mode 100644 index 00000000..ea60429d --- /dev/null +++ b/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json @@ -0,0 +1,28 @@ +{ + "name": "PYR Token", + "symbol": "PYR", + "type": "ERC20", + "decimals": 18, + "description": "Vulcan Forged is an established non-fungible token (NFT) game studio, marketplace, and dApp incubator with 10+ games, a 20000+ community, and top 5 NFT marketplace volume.", + "website": "https://vulcanforged.com/", + "explorer": "https://etherscan.io/token/0x430ef9263e76dae63c84292c3409d61c598e9682", + "status": "active", + "id": "0x430EF9263E76DAE63c84292C3409D61c598E9682", + "links": [ + { + "name": "x", + "url": "https://x.com/VulcanForged" + }, + { + "name": "telegram", + "url": "https://t.me/VeriArti" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vulcan-forged-pyr/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/logo.png b/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/logo.png new file mode 100644 index 00000000..d61a97f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/logo.png differ diff --git a/blockchains/ethereum/assets/0x430bd07726423A54f6d82Ab0F578CE62A3b8054D/info.json b/blockchains/ethereum/assets/0x430bd07726423A54f6d82Ab0F578CE62A3b8054D/info.json new file mode 100644 index 00000000..f01dbde1 --- /dev/null +++ b/blockchains/ethereum/assets/0x430bd07726423A54f6d82Ab0F578CE62A3b8054D/info.json @@ -0,0 +1,11 @@ +{ + "name": "UOSToken", + "symbol": "UOS", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://uos.network/", + "explorer": "https://etherscan.io/token/0x430bd07726423A54f6d82Ab0F578CE62A3b8054D", + "status": "abandoned", + "id": "0x430bd07726423A54f6d82Ab0F578CE62A3b8054D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x430bd07726423A54f6d82Ab0F578CE62A3b8054D/logo.png b/blockchains/ethereum/assets/0x430bd07726423A54f6d82Ab0F578CE62A3b8054D/logo.png new file mode 100644 index 00000000..35896818 Binary files /dev/null and b/blockchains/ethereum/assets/0x430bd07726423A54f6d82Ab0F578CE62A3b8054D/logo.png differ diff --git a/blockchains/ethereum/assets/0x4317Ea4820F8D9ea6A103553A89Cb261B6Ea7F2a/info.json b/blockchains/ethereum/assets/0x4317Ea4820F8D9ea6A103553A89Cb261B6Ea7F2a/info.json new file mode 100644 index 00000000..e2cffd00 --- /dev/null +++ b/blockchains/ethereum/assets/0x4317Ea4820F8D9ea6A103553A89Cb261B6Ea7F2a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alxocity", + "symbol": "ALXO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4317Ea4820F8D9ea6A103553A89Cb261B6Ea7F2a", + "status": "abandoned", + "id": "0x4317Ea4820F8D9ea6A103553A89Cb261B6Ea7F2a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4317Ea4820F8D9ea6A103553A89Cb261B6Ea7F2a/logo.png b/blockchains/ethereum/assets/0x4317Ea4820F8D9ea6A103553A89Cb261B6Ea7F2a/logo.png new file mode 100644 index 00000000..9bfcf15f Binary files /dev/null and b/blockchains/ethereum/assets/0x4317Ea4820F8D9ea6A103553A89Cb261B6Ea7F2a/logo.png differ diff --git a/blockchains/ethereum/assets/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/info.json b/blockchains/ethereum/assets/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/info.json new file mode 100644 index 00000000..739b4cd8 --- /dev/null +++ b/blockchains/ethereum/assets/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/info.json @@ -0,0 +1,37 @@ +{ + "name": "dForce", + "symbol": "DF", + "type": "ERC20", + "decimals": 18, + "description": " dForce Lending is a decentralized lending protocol.", + "website": "https://dforce.network", + "explorer": "https://etherscan.io/token/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0", + "status": "active", + "id": "0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0", + "links": [ + { + "name": "github", + "url": "https://github.com/dforce-network" + }, + { + "name": "x", + "url": "https://x.com/dForcenet" + }, + { + "name": "medium", + "url": "https://medium.com/dforcenet" + }, + { + "name": "telegram", + "url": "https://t.me/dforcenet" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dforce/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dforce-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/logo.png b/blockchains/ethereum/assets/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/logo.png new file mode 100644 index 00000000..a60839cc Binary files /dev/null and b/blockchains/ethereum/assets/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/logo.png differ diff --git a/blockchains/ethereum/assets/0x432555E5c898F83fC5F00dF631BD9c2801FeA289/info.json b/blockchains/ethereum/assets/0x432555E5c898F83fC5F00dF631BD9c2801FeA289/info.json new file mode 100644 index 00000000..1de93288 --- /dev/null +++ b/blockchains/ethereum/assets/0x432555E5c898F83fC5F00dF631BD9c2801FeA289/info.json @@ -0,0 +1,11 @@ +{ + "name": "HubrisOne", + "symbol": "HBRS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x432555E5c898F83fC5F00dF631BD9c2801FeA289", + "status": "abandoned", + "id": "0x432555E5c898F83fC5F00dF631BD9c2801FeA289" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x432555E5c898F83fC5F00dF631BD9c2801FeA289/logo.png b/blockchains/ethereum/assets/0x432555E5c898F83fC5F00dF631BD9c2801FeA289/logo.png new file mode 100644 index 00000000..df9d97f9 Binary files /dev/null and b/blockchains/ethereum/assets/0x432555E5c898F83fC5F00dF631BD9c2801FeA289/logo.png differ diff --git a/blockchains/ethereum/assets/0x43257DDCf6f22987062a7Dbe032Ffa67E4e0bB3a/info.json b/blockchains/ethereum/assets/0x43257DDCf6f22987062a7Dbe032Ffa67E4e0bB3a/info.json new file mode 100644 index 00000000..13a0c2e6 --- /dev/null +++ b/blockchains/ethereum/assets/0x43257DDCf6f22987062a7Dbe032Ffa67E4e0bB3a/info.json @@ -0,0 +1,11 @@ +{ + "name": "HBTT", + "website": "https://hbttplus.space/", + "description": "HBTT Payment System", + "explorer": "https://etherscan.io/token/0x43257DDCf6f22987062a7Dbe032Ffa67E4e0bB3a", + "type": "ERC20", + "symbol": "HBTT", + "decimals": 4, + "status": "active", + "id": "0x43257DDCf6f22987062a7Dbe032Ffa67E4e0bB3a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x43257DDCf6f22987062a7Dbe032Ffa67E4e0bB3a/logo.png b/blockchains/ethereum/assets/0x43257DDCf6f22987062a7Dbe032Ffa67E4e0bB3a/logo.png new file mode 100644 index 00000000..c55cc032 Binary files /dev/null and b/blockchains/ethereum/assets/0x43257DDCf6f22987062a7Dbe032Ffa67E4e0bB3a/logo.png differ diff --git a/blockchains/ethereum/assets/0x4355fC160f74328f9b383dF2EC589bB3dFd82Ba0/info.json b/blockchains/ethereum/assets/0x4355fC160f74328f9b383dF2EC589bB3dFd82Ba0/info.json new file mode 100644 index 00000000..c9029114 --- /dev/null +++ b/blockchains/ethereum/assets/0x4355fC160f74328f9b383dF2EC589bB3dFd82Ba0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Opus Token", + "symbol": "OPT", + "type": "ERC20", + "decimals": 18, + "description": "OPUS let’s musicians keep close to 100% of their profits for themselves, a truly revolutionary move in the music industry.", + "website": "http://opus-foundation.org/", + "explorer": "https://etherscan.io/token/0x4355fC160f74328f9b383dF2EC589bB3dFd82Ba0", + "status": "active", + "id": "0x4355fC160f74328f9b383dF2EC589bB3dFd82Ba0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4355fC160f74328f9b383dF2EC589bB3dFd82Ba0/logo.png b/blockchains/ethereum/assets/0x4355fC160f74328f9b383dF2EC589bB3dFd82Ba0/logo.png new file mode 100755 index 00000000..a0aa70da Binary files /dev/null and b/blockchains/ethereum/assets/0x4355fC160f74328f9b383dF2EC589bB3dFd82Ba0/logo.png differ diff --git a/blockchains/ethereum/assets/0x43567eb78638A55bbE51E9f9FB5B2D7AD1F125aa/info.json b/blockchains/ethereum/assets/0x43567eb78638A55bbE51E9f9FB5B2D7AD1F125aa/info.json new file mode 100644 index 00000000..5c7271a9 --- /dev/null +++ b/blockchains/ethereum/assets/0x43567eb78638A55bbE51E9f9FB5B2D7AD1F125aa/info.json @@ -0,0 +1,11 @@ +{ + "name": "HAC Token", + "symbol": "HAC", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://hackspace.capital/", + "explorer": "https://etherscan.io/token/0x43567eb78638A55bbE51E9f9FB5B2D7AD1F125aa", + "status": "abandoned", + "id": "0x43567eb78638A55bbE51E9f9FB5B2D7AD1F125aa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x43567eb78638A55bbE51E9f9FB5B2D7AD1F125aa/logo.png b/blockchains/ethereum/assets/0x43567eb78638A55bbE51E9f9FB5B2D7AD1F125aa/logo.png new file mode 100644 index 00000000..0ae1f62a Binary files /dev/null and b/blockchains/ethereum/assets/0x43567eb78638A55bbE51E9f9FB5B2D7AD1F125aa/logo.png differ diff --git a/blockchains/ethereum/assets/0x435d4183ae0Aeb1bABC31bd25A815d6244fC3562/info.json b/blockchains/ethereum/assets/0x435d4183ae0Aeb1bABC31bd25A815d6244fC3562/info.json new file mode 100644 index 00000000..3786ecf2 --- /dev/null +++ b/blockchains/ethereum/assets/0x435d4183ae0Aeb1bABC31bd25A815d6244fC3562/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rich Human Crypto", + "symbol": "RHC", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x435d4183ae0Aeb1bABC31bd25A815d6244fC3562", + "status": "abandoned", + "id": "0x435d4183ae0Aeb1bABC31bd25A815d6244fC3562" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x435d4183ae0Aeb1bABC31bd25A815d6244fC3562/logo.png b/blockchains/ethereum/assets/0x435d4183ae0Aeb1bABC31bd25A815d6244fC3562/logo.png new file mode 100644 index 00000000..215c20c9 Binary files /dev/null and b/blockchains/ethereum/assets/0x435d4183ae0Aeb1bABC31bd25A815d6244fC3562/logo.png differ diff --git a/blockchains/ethereum/assets/0x43688910273f199B8AE2cA018c13918fb3D37B58/info.json b/blockchains/ethereum/assets/0x43688910273f199B8AE2cA018c13918fb3D37B58/info.json new file mode 100644 index 00000000..938085e0 --- /dev/null +++ b/blockchains/ethereum/assets/0x43688910273f199B8AE2cA018c13918fb3D37B58/info.json @@ -0,0 +1,11 @@ +{ + "name": "RealToken 5942 Audubon Road Detroit MI", + "symbol": "REALTOKEN-5942-AUDUBON-RD-DETROIT-MI", + "type": "ERC20", + "decimals": 18, + "description": "Token for classic 1930s home in the Morningside neighborhood of Detroit is the epitome of a promising single-family property investment.", + "website": "https://realt.co/product/5942-audubon-rd-detroit-mi-48224/", + "explorer": "https://etherscan.io/token/0x43688910273f199B8AE2cA018c13918fb3D37B58", + "status": "active", + "id": "0x43688910273f199B8AE2cA018c13918fb3D37B58" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x43688910273f199B8AE2cA018c13918fb3D37B58/logo.png b/blockchains/ethereum/assets/0x43688910273f199B8AE2cA018c13918fb3D37B58/logo.png new file mode 100644 index 00000000..4617b23e Binary files /dev/null and b/blockchains/ethereum/assets/0x43688910273f199B8AE2cA018c13918fb3D37B58/logo.png differ diff --git a/blockchains/ethereum/assets/0x436F0F3a982074c4a05084485D421466a994FE53/info.json b/blockchains/ethereum/assets/0x436F0F3a982074c4a05084485D421466a994FE53/info.json new file mode 100644 index 00000000..7c9d906f --- /dev/null +++ b/blockchains/ethereum/assets/0x436F0F3a982074c4a05084485D421466a994FE53/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rate3", + "symbol": "RTE", + "type": "ERC20", + "decimals": 18, + "description": "Creating a Connected Tokenized World Rate3 bridges enterprises to the blockchain through cross-chain asset tokenization and identity management.", + "website": "https://www.rate3.network", + "explorer": "https://etherscan.io/token/0x436F0F3a982074c4a05084485D421466a994FE53", + "status": "active", + "id": "0x436F0F3a982074c4a05084485D421466a994FE53" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x436F0F3a982074c4a05084485D421466a994FE53/logo.png b/blockchains/ethereum/assets/0x436F0F3a982074c4a05084485D421466a994FE53/logo.png new file mode 100755 index 00000000..cfe7375f Binary files /dev/null and b/blockchains/ethereum/assets/0x436F0F3a982074c4a05084485D421466a994FE53/logo.png differ diff --git a/blockchains/ethereum/assets/0x4375E7aD8A01B8eC3Ed041399f62D9Cd120e0063/info.json b/blockchains/ethereum/assets/0x4375E7aD8A01B8eC3Ed041399f62D9Cd120e0063/info.json new file mode 100644 index 00000000..a3b25da9 --- /dev/null +++ b/blockchains/ethereum/assets/0x4375E7aD8A01B8eC3Ed041399f62D9Cd120e0063/info.json @@ -0,0 +1,11 @@ +{ + "name": "BZ", + "symbol": "BZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.bitz.top/", + "explorer": "https://etherscan.io/token/0x4375E7aD8A01B8eC3Ed041399f62D9Cd120e0063", + "status": "abandoned", + "id": "0x4375E7aD8A01B8eC3Ed041399f62D9Cd120e0063" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4375E7aD8A01B8eC3Ed041399f62D9Cd120e0063/logo.png b/blockchains/ethereum/assets/0x4375E7aD8A01B8eC3Ed041399f62D9Cd120e0063/logo.png new file mode 100755 index 00000000..ae6666e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x4375E7aD8A01B8eC3Ed041399f62D9Cd120e0063/logo.png differ diff --git a/blockchains/ethereum/assets/0x437C7136d9629f6c14d87e6EB67D963b9878B136/info.json b/blockchains/ethereum/assets/0x437C7136d9629f6c14d87e6EB67D963b9878B136/info.json new file mode 100644 index 00000000..13ef7806 --- /dev/null +++ b/blockchains/ethereum/assets/0x437C7136d9629f6c14d87e6EB67D963b9878B136/info.json @@ -0,0 +1,11 @@ +{ + "name": "SMARTCOIN", + "symbol": "STC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x437C7136d9629f6c14d87e6EB67D963b9878B136", + "status": "abandoned", + "id": "0x437C7136d9629f6c14d87e6EB67D963b9878B136" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x437C7136d9629f6c14d87e6EB67D963b9878B136/logo.png b/blockchains/ethereum/assets/0x437C7136d9629f6c14d87e6EB67D963b9878B136/logo.png new file mode 100644 index 00000000..582f7409 Binary files /dev/null and b/blockchains/ethereum/assets/0x437C7136d9629f6c14d87e6EB67D963b9878B136/logo.png differ diff --git a/blockchains/ethereum/assets/0x4385328cc4D643Ca98DfEA734360C0F596C83449/info.json b/blockchains/ethereum/assets/0x4385328cc4D643Ca98DfEA734360C0F596C83449/info.json new file mode 100644 index 00000000..5f8cdf52 --- /dev/null +++ b/blockchains/ethereum/assets/0x4385328cc4D643Ca98DfEA734360C0F596C83449/info.json @@ -0,0 +1,25 @@ +{ + "name": "tomi", + "type": "ERC20", + "symbol": "TOMI", + "decimals": 18, + "website": "https://tomi.com/", + "description": "Alternative internet controlled by the community and privacy infrastructure.", + "explorer": "https://etherscan.io/token/0x4385328cc4d643ca98dfea734360c0f596c83449", + "status": "active", + "id": "0x4385328cc4D643Ca98DfEA734360C0F596C83449", + "links": [ + { + "name": "x", + "url": "https://x.com/tomipioneers" + }, + { + "name": "telegram", + "url": "https://t.me/tomipioneers" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tominet/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4385328cc4D643Ca98DfEA734360C0F596C83449/logo.png b/blockchains/ethereum/assets/0x4385328cc4D643Ca98DfEA734360C0F596C83449/logo.png new file mode 100644 index 00000000..313ab3ad Binary files /dev/null and b/blockchains/ethereum/assets/0x4385328cc4D643Ca98DfEA734360C0F596C83449/logo.png differ diff --git a/blockchains/ethereum/assets/0x439B5ECBB7DF6167695e236650313CA58Eb2F8f9/info.json b/blockchains/ethereum/assets/0x439B5ECBB7DF6167695e236650313CA58Eb2F8f9/info.json new file mode 100644 index 00000000..3b1e32a4 --- /dev/null +++ b/blockchains/ethereum/assets/0x439B5ECBB7DF6167695e236650313CA58Eb2F8f9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sanook Token", + "symbol": "SNK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x439B5ECBB7DF6167695e236650313CA58Eb2F8f9", + "status": "abandoned", + "id": "0x439B5ECBB7DF6167695e236650313CA58Eb2F8f9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x439B5ECBB7DF6167695e236650313CA58Eb2F8f9/logo.png b/blockchains/ethereum/assets/0x439B5ECBB7DF6167695e236650313CA58Eb2F8f9/logo.png new file mode 100644 index 00000000..6ab386fe Binary files /dev/null and b/blockchains/ethereum/assets/0x439B5ECBB7DF6167695e236650313CA58Eb2F8f9/logo.png differ diff --git a/blockchains/ethereum/assets/0x439ad7Ac2b7D92a24C25537CF1AA243f365D0CB0/info.json b/blockchains/ethereum/assets/0x439ad7Ac2b7D92a24C25537CF1AA243f365D0CB0/info.json new file mode 100644 index 00000000..95beac3f --- /dev/null +++ b/blockchains/ethereum/assets/0x439ad7Ac2b7D92a24C25537CF1AA243f365D0CB0/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITLoTo", + "symbol": "BTT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x439ad7Ac2b7D92a24C25537CF1AA243f365D0CB0", + "status": "abandoned", + "id": "0x439ad7Ac2b7D92a24C25537CF1AA243f365D0CB0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x439ad7Ac2b7D92a24C25537CF1AA243f365D0CB0/logo.png b/blockchains/ethereum/assets/0x439ad7Ac2b7D92a24C25537CF1AA243f365D0CB0/logo.png new file mode 100644 index 00000000..8f710cdc Binary files /dev/null and b/blockchains/ethereum/assets/0x439ad7Ac2b7D92a24C25537CF1AA243f365D0CB0/logo.png differ diff --git a/blockchains/ethereum/assets/0x439d6bf9506fb86e4Ba620Be4971B04525DA57c5/info.json b/blockchains/ethereum/assets/0x439d6bf9506fb86e4Ba620Be4971B04525DA57c5/info.json new file mode 100644 index 00000000..7dab9c2d --- /dev/null +++ b/blockchains/ethereum/assets/0x439d6bf9506fb86e4Ba620Be4971B04525DA57c5/info.json @@ -0,0 +1,11 @@ +{ + "name": "SINGAPORE ENJOY FOUNDATION PTE.LTD ", + "symbol": "ENJOY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x439d6bf9506fb86e4Ba620Be4971B04525DA57c5", + "status": "abandoned", + "id": "0x439d6bf9506fb86e4Ba620Be4971B04525DA57c5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x439d6bf9506fb86e4Ba620Be4971B04525DA57c5/logo.png b/blockchains/ethereum/assets/0x439d6bf9506fb86e4Ba620Be4971B04525DA57c5/logo.png new file mode 100644 index 00000000..6bc3c2dd Binary files /dev/null and b/blockchains/ethereum/assets/0x439d6bf9506fb86e4Ba620Be4971B04525DA57c5/logo.png differ diff --git a/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/info.json b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/info.json new file mode 100644 index 00000000..58c3143b --- /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 00000000..337b7485 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 new file mode 100644 index 00000000..27132e4b --- /dev/null +++ b/blockchains/ethereum/assets/0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd/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://etherscan.io/token/0x43dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd", + "type": "ERC20", + "symbol": "DODO", + "decimals": 18, + "status": "active", + "id": "0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd", + "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/ethereum/assets/0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd/logo.png b/blockchains/ethereum/assets/0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd/logo.png new file mode 100644 index 00000000..3e5c7496 Binary files /dev/null and b/blockchains/ethereum/assets/0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd/logo.png differ diff --git a/blockchains/ethereum/assets/0x43E248b058438F05e78CEb66aFC1555a97CB280F/info.json b/blockchains/ethereum/assets/0x43E248b058438F05e78CEb66aFC1555a97CB280F/info.json new file mode 100644 index 00000000..e8157ad1 --- /dev/null +++ b/blockchains/ethereum/assets/0x43E248b058438F05e78CEb66aFC1555a97CB280F/info.json @@ -0,0 +1,11 @@ +{ + "name": "ThrillerX", + "symbol": "TLX", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x43E248b058438F05e78CEb66aFC1555a97CB280F", + "status": "abandoned", + "id": "0x43E248b058438F05e78CEb66aFC1555a97CB280F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x43E248b058438F05e78CEb66aFC1555a97CB280F/logo.png b/blockchains/ethereum/assets/0x43E248b058438F05e78CEb66aFC1555a97CB280F/logo.png new file mode 100644 index 00000000..603b46f0 Binary files /dev/null and b/blockchains/ethereum/assets/0x43E248b058438F05e78CEb66aFC1555a97CB280F/logo.png differ diff --git a/blockchains/ethereum/assets/0x43E5F59247b235449E16eC84c46BA43991Ef6093/info.json b/blockchains/ethereum/assets/0x43E5F59247b235449E16eC84c46BA43991Ef6093/info.json new file mode 100644 index 00000000..ce8202b4 --- /dev/null +++ b/blockchains/ethereum/assets/0x43E5F59247b235449E16eC84c46BA43991Ef6093/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coin Bank Int", + "symbol": "CBI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x43E5F59247b235449E16eC84c46BA43991Ef6093", + "status": "abandoned", + "id": "0x43E5F59247b235449E16eC84c46BA43991Ef6093" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x43E5F59247b235449E16eC84c46BA43991Ef6093/logo.png b/blockchains/ethereum/assets/0x43E5F59247b235449E16eC84c46BA43991Ef6093/logo.png new file mode 100644 index 00000000..17f48274 Binary files /dev/null and b/blockchains/ethereum/assets/0x43E5F59247b235449E16eC84c46BA43991Ef6093/logo.png differ diff --git a/blockchains/ethereum/assets/0x43c1c012aA89C60019b4E941cCaC98f22D2f3C01/info.json b/blockchains/ethereum/assets/0x43c1c012aA89C60019b4E941cCaC98f22D2f3C01/info.json new file mode 100644 index 00000000..57701e57 --- /dev/null +++ b/blockchains/ethereum/assets/0x43c1c012aA89C60019b4E941cCaC98f22D2f3C01/info.json @@ -0,0 +1,11 @@ +{ + "name": "CTB", + "symbol": "CTB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x43c1c012aA89C60019b4E941cCaC98f22D2f3C01", + "status": "abandoned", + "id": "0x43c1c012aA89C60019b4E941cCaC98f22D2f3C01" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x43c1c012aA89C60019b4E941cCaC98f22D2f3C01/logo.png b/blockchains/ethereum/assets/0x43c1c012aA89C60019b4E941cCaC98f22D2f3C01/logo.png new file mode 100644 index 00000000..2121f769 Binary files /dev/null and b/blockchains/ethereum/assets/0x43c1c012aA89C60019b4E941cCaC98f22D2f3C01/logo.png differ diff --git a/blockchains/ethereum/assets/0x43eE79e379e7b78D871100ed696e803E7893b644/info.json b/blockchains/ethereum/assets/0x43eE79e379e7b78D871100ed696e803E7893b644/info.json new file mode 100644 index 00000000..68fac0cc --- /dev/null +++ b/blockchains/ethereum/assets/0x43eE79e379e7b78D871100ed696e803E7893b644/info.json @@ -0,0 +1,11 @@ +{ + "name": "UG Token", + "symbol": "UGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x43eE79e379e7b78D871100ed696e803E7893b644", + "status": "abandoned", + "id": "0x43eE79e379e7b78D871100ed696e803E7893b644" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x43eE79e379e7b78D871100ed696e803E7893b644/logo.png b/blockchains/ethereum/assets/0x43eE79e379e7b78D871100ed696e803E7893b644/logo.png new file mode 100644 index 00000000..bb861ec2 Binary files /dev/null and b/blockchains/ethereum/assets/0x43eE79e379e7b78D871100ed696e803E7893b644/logo.png differ diff --git a/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/info.json b/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/info.json new file mode 100644 index 00000000..ae2fa19c --- /dev/null +++ b/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/info.json @@ -0,0 +1,32 @@ +{ + "name": "Floki Inu", + "website": "https://theflokiinu.com", + "description": "Floki Inu is a meme token that provides deflationary rewards to holders.", + "explorer": "https://etherscan.io/token/0x43f11c02439e2736800433b4594994Bd43Cd066D", + "type": "ERC20", + "symbol": "FLOKI", + "decimals": 9, + "status": "abandoned", + "id": "0x43f11c02439e2736800433b4594994Bd43Cd066D", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/FlokiInuToken" + }, + { + "name": "x", + "url": "https://x.com/RealFlokiInu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/floki-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/floki-inu" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4403d1fd75cb4e4bb723223397dA1e4fC8C92ebe/info.json b/blockchains/ethereum/assets/0x4403d1fd75cb4e4bb723223397dA1e4fC8C92ebe/info.json new file mode 100644 index 00000000..fc3d2eed --- /dev/null +++ b/blockchains/ethereum/assets/0x4403d1fd75cb4e4bb723223397dA1e4fC8C92ebe/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C581294", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4403d1fd75cb4e4bb723223397dA1e4fC8C92ebe", + "status": "abandoned", + "id": "0x4403d1fd75cb4e4bb723223397dA1e4fC8C92ebe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4403d1fd75cb4e4bb723223397dA1e4fC8C92ebe/logo.png b/blockchains/ethereum/assets/0x4403d1fd75cb4e4bb723223397dA1e4fC8C92ebe/logo.png new file mode 100644 index 00000000..607a5f2d Binary files /dev/null and b/blockchains/ethereum/assets/0x4403d1fd75cb4e4bb723223397dA1e4fC8C92ebe/logo.png differ diff --git a/blockchains/ethereum/assets/0x44086035439E676c02D411880FcCb9837CE37c57/info.json b/blockchains/ethereum/assets/0x44086035439E676c02D411880FcCb9837CE37c57/info.json new file mode 100644 index 00000000..e30243a5 --- /dev/null +++ b/blockchains/ethereum/assets/0x44086035439E676c02D411880FcCb9837CE37c57/info.json @@ -0,0 +1,21 @@ +{ + "name": "unified Stable Dollar", + "website": "https://unifihub.com", + "description": "uSD is a stablecoin based on Uniswap Liquidity Pools Minted by the magic rainbow of Uniswap stablecoin pools, and backed by the power of the Unicorn, uSD is the most secure and resilient stablecoin on Ethereum - ever. The only way it could be destabilized is if the entire stablecoin industry crashed.", + "explorer": "https://etherscan.io/token/0x44086035439E676c02D411880FcCb9837CE37c57", + "type": "ERC20", + "symbol": "uSD", + "decimals": 18, + "status": "active", + "id": "0x44086035439E676c02D411880FcCb9837CE37c57", + "links": [ + { + "name": "github", + "url": "https://github.com/b-u-i-d-l/unifi/tree/master/contracts/stableCoin" + }, + { + "name": "whitepaper", + "url": "https://github.com/b-u-i-d-l/unifi/blob/master/README.md" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44086035439E676c02D411880FcCb9837CE37c57/logo.png b/blockchains/ethereum/assets/0x44086035439E676c02D411880FcCb9837CE37c57/logo.png new file mode 100644 index 00000000..2063833f Binary files /dev/null and b/blockchains/ethereum/assets/0x44086035439E676c02D411880FcCb9837CE37c57/logo.png differ diff --git a/blockchains/ethereum/assets/0x44108f0223A3C3028F5Fe7AEC7f9bb2E66beF82F/info.json b/blockchains/ethereum/assets/0x44108f0223A3C3028F5Fe7AEC7f9bb2E66beF82F/info.json new file mode 100644 index 00000000..5211b80d --- /dev/null +++ b/blockchains/ethereum/assets/0x44108f0223A3C3028F5Fe7AEC7f9bb2E66beF82F/info.json @@ -0,0 +1,25 @@ +{ + "name": "Across Protocol Token", + "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 00000000..e13598d9 Binary files /dev/null and b/blockchains/ethereum/assets/0x44108f0223A3C3028F5Fe7AEC7f9bb2E66beF82F/logo.png differ diff --git a/blockchains/ethereum/assets/0x44197A4c44D6A059297cAf6be4F7e172BD56Caaf/info.json b/blockchains/ethereum/assets/0x44197A4c44D6A059297cAf6be4F7e172BD56Caaf/info.json new file mode 100644 index 00000000..dac58d45 --- /dev/null +++ b/blockchains/ethereum/assets/0x44197A4c44D6A059297cAf6be4F7e172BD56Caaf/info.json @@ -0,0 +1,11 @@ +{ + "name": "ELTCOIN", + "symbol": "ELTCOIN", + "type": "ERC20", + "decimals": 8, + "description": "A community-driven currency that powers an open-sourced library of cool dapps built on Ethereum.", + "website": "https://www.eltcoin.tech/", + "explorer": "https://etherscan.io/token/0x44197A4c44D6A059297cAf6be4F7e172BD56Caaf", + "status": "active", + "id": "0x44197A4c44D6A059297cAf6be4F7e172BD56Caaf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44197A4c44D6A059297cAf6be4F7e172BD56Caaf/logo.png b/blockchains/ethereum/assets/0x44197A4c44D6A059297cAf6be4F7e172BD56Caaf/logo.png new file mode 100644 index 00000000..f65771c7 Binary files /dev/null and b/blockchains/ethereum/assets/0x44197A4c44D6A059297cAf6be4F7e172BD56Caaf/logo.png differ diff --git a/blockchains/ethereum/assets/0x441d91F7AAEe51C7AE8cAB84333D6383A8a8C175/info.json b/blockchains/ethereum/assets/0x441d91F7AAEe51C7AE8cAB84333D6383A8a8C175/info.json new file mode 100644 index 00000000..228f6fff --- /dev/null +++ b/blockchains/ethereum/assets/0x441d91F7AAEe51C7AE8cAB84333D6383A8a8C175/info.json @@ -0,0 +1,11 @@ +{ + "name": "Speculative Resistance RTC", + "website": "https://veravoss.github.io/rtc/#spectre", + "description": "Deflationary token with decreasing supply and a fair launch. Read This Contract (RTC).", + "explorer": "https://etherscan.io/token/0x441d91F7AAEe51C7AE8cAB84333D6383A8a8C175", + "type": "ERC20", + "symbol": "SPECTRE", + "decimals": 18, + "status": "active", + "id": "0x441d91F7AAEe51C7AE8cAB84333D6383A8a8C175" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x441d91F7AAEe51C7AE8cAB84333D6383A8a8C175/logo.png b/blockchains/ethereum/assets/0x441d91F7AAEe51C7AE8cAB84333D6383A8a8C175/logo.png new file mode 100755 index 00000000..5dd13a1b Binary files /dev/null and b/blockchains/ethereum/assets/0x441d91F7AAEe51C7AE8cAB84333D6383A8a8C175/logo.png differ diff --git a/blockchains/ethereum/assets/0x441e2C4EB49c00f835b9d2dE1Aa59F27b69F949f/info.json b/blockchains/ethereum/assets/0x441e2C4EB49c00f835b9d2dE1Aa59F27b69F949f/info.json new file mode 100644 index 00000000..8cfc8ff9 --- /dev/null +++ b/blockchains/ethereum/assets/0x441e2C4EB49c00f835b9d2dE1Aa59F27b69F949f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bytecoin Black", + "symbol": "BCB", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x441e2C4EB49c00f835b9d2dE1Aa59F27b69F949f", + "status": "abandoned", + "id": "0x441e2C4EB49c00f835b9d2dE1Aa59F27b69F949f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x441e2C4EB49c00f835b9d2dE1Aa59F27b69F949f/logo.png b/blockchains/ethereum/assets/0x441e2C4EB49c00f835b9d2dE1Aa59F27b69F949f/logo.png new file mode 100644 index 00000000..2e05b58b Binary files /dev/null and b/blockchains/ethereum/assets/0x441e2C4EB49c00f835b9d2dE1Aa59F27b69F949f/logo.png differ diff --git a/blockchains/ethereum/assets/0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0/info.json b/blockchains/ethereum/assets/0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0/info.json new file mode 100644 index 00000000..952273c2 --- /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/0x442d985EFeBC633b8Bfd14fF99E860A5609a6484/info.json b/blockchains/ethereum/assets/0x442d985EFeBC633b8Bfd14fF99E860A5609a6484/info.json new file mode 100644 index 00000000..71ab1974 --- /dev/null +++ b/blockchains/ethereum/assets/0x442d985EFeBC633b8Bfd14fF99E860A5609a6484/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethavo", + "symbol": "EVO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x442d985EFeBC633b8Bfd14fF99E860A5609a6484", + "status": "abandoned", + "id": "0x442d985EFeBC633b8Bfd14fF99E860A5609a6484" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x442d985EFeBC633b8Bfd14fF99E860A5609a6484/logo.png b/blockchains/ethereum/assets/0x442d985EFeBC633b8Bfd14fF99E860A5609a6484/logo.png new file mode 100644 index 00000000..8b8be7dc Binary files /dev/null and b/blockchains/ethereum/assets/0x442d985EFeBC633b8Bfd14fF99E860A5609a6484/logo.png differ diff --git a/blockchains/ethereum/assets/0x443459D45c30A03f90037d011CbE22e2183d3b12/info.json b/blockchains/ethereum/assets/0x443459D45c30A03f90037d011CbE22e2183d3b12/info.json new file mode 100644 index 00000000..99052518 --- /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 00000000..e22dc166 Binary files /dev/null and b/blockchains/ethereum/assets/0x443459D45c30A03f90037d011CbE22e2183d3b12/logo.png differ diff --git a/blockchains/ethereum/assets/0x443dC1c35cf812156C840Fe90639836C8a7371b0/info.json b/blockchains/ethereum/assets/0x443dC1c35cf812156C840Fe90639836C8a7371b0/info.json new file mode 100644 index 00000000..f71d6862 --- /dev/null +++ b/blockchains/ethereum/assets/0x443dC1c35cf812156C840Fe90639836C8a7371b0/info.json @@ -0,0 +1,11 @@ +{ + "name": "THANKS", + "symbol": "THANKS", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x443dC1c35cf812156C840Fe90639836C8a7371b0", + "status": "active", + "id": "0x443dC1c35cf812156C840Fe90639836C8a7371b0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x443dC1c35cf812156C840Fe90639836C8a7371b0/logo.png b/blockchains/ethereum/assets/0x443dC1c35cf812156C840Fe90639836C8a7371b0/logo.png new file mode 100644 index 00000000..cb3bd42b Binary files /dev/null and b/blockchains/ethereum/assets/0x443dC1c35cf812156C840Fe90639836C8a7371b0/logo.png differ diff --git a/blockchains/ethereum/assets/0x4442556a08a841227bEf04C67A7Ba7acf01b6Fc8/info.json b/blockchains/ethereum/assets/0x4442556a08a841227bEf04C67A7Ba7acf01b6Fc8/info.json new file mode 100644 index 00000000..26ecf41e --- /dev/null +++ b/blockchains/ethereum/assets/0x4442556a08a841227bEf04C67A7Ba7acf01b6Fc8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Monarch Token", + "symbol": "MT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://monarchwallet.com/", + "explorer": "https://etherscan.io/token/0x4442556a08a841227bEf04C67A7Ba7acf01b6Fc8", + "status": "abandoned", + "id": "0x4442556a08a841227bEf04C67A7Ba7acf01b6Fc8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4442556a08a841227bEf04C67A7Ba7acf01b6Fc8/logo.png b/blockchains/ethereum/assets/0x4442556a08a841227bEf04C67A7Ba7acf01b6Fc8/logo.png new file mode 100644 index 00000000..acd4f0d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x4442556a08a841227bEf04C67A7Ba7acf01b6Fc8/logo.png differ diff --git a/blockchains/ethereum/assets/0x44449Fa4d607F807d1eD4a69ad942971728391C8/info.json b/blockchains/ethereum/assets/0x44449Fa4d607F807d1eD4a69ad942971728391C8/info.json new file mode 100644 index 00000000..e0f26e48 --- /dev/null +++ b/blockchains/ethereum/assets/0x44449Fa4d607F807d1eD4a69ad942971728391C8/info.json @@ -0,0 +1,11 @@ +{ + "name": "XMED Chain Token", + "symbol": "XMCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x44449Fa4d607F807d1eD4a69ad942971728391C8", + "status": "abandoned", + "id": "0x44449Fa4d607F807d1eD4a69ad942971728391C8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44449Fa4d607F807d1eD4a69ad942971728391C8/logo.png b/blockchains/ethereum/assets/0x44449Fa4d607F807d1eD4a69ad942971728391C8/logo.png new file mode 100755 index 00000000..3ec77359 Binary files /dev/null and b/blockchains/ethereum/assets/0x44449Fa4d607F807d1eD4a69ad942971728391C8/logo.png differ diff --git a/blockchains/ethereum/assets/0x444997b7e7fC830E20089afea3078cd518fCF2A2/info.json b/blockchains/ethereum/assets/0x444997b7e7fC830E20089afea3078cd518fCF2A2/info.json new file mode 100644 index 00000000..61925cb5 --- /dev/null +++ b/blockchains/ethereum/assets/0x444997b7e7fC830E20089afea3078cd518fCF2A2/info.json @@ -0,0 +1,11 @@ +{ + "name": "EWO Token", + "symbol": "EWO", + "type": "ERC20", + "decimals": 18, + "description": "EWO lets you earn from properties you don’t own while helping people you don’t know. Real estate-based interest accounts for crypto that pays weekly.", + "website": "https://www.ewoplace.com/", + "explorer": "https://etherscan.io/token/0x444997b7e7fC830E20089afea3078cd518fCF2A2", + "status": "active", + "id": "0x444997b7e7fC830E20089afea3078cd518fCF2A2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x444997b7e7fC830E20089afea3078cd518fCF2A2/logo.png b/blockchains/ethereum/assets/0x444997b7e7fC830E20089afea3078cd518fCF2A2/logo.png new file mode 100755 index 00000000..ab5cc7da Binary files /dev/null and b/blockchains/ethereum/assets/0x444997b7e7fC830E20089afea3078cd518fCF2A2/logo.png differ diff --git a/blockchains/ethereum/assets/0x44618dE3Bf9b6DCBc3750eE058980cB614813d08/info.json b/blockchains/ethereum/assets/0x44618dE3Bf9b6DCBc3750eE058980cB614813d08/info.json new file mode 100644 index 00000000..62aae9e5 --- /dev/null +++ b/blockchains/ethereum/assets/0x44618dE3Bf9b6DCBc3750eE058980cB614813d08/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crypto VENO", + "symbol": "VENO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x44618dE3Bf9b6DCBc3750eE058980cB614813d08", + "status": "abandoned", + "id": "0x44618dE3Bf9b6DCBc3750eE058980cB614813d08" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44618dE3Bf9b6DCBc3750eE058980cB614813d08/logo.png b/blockchains/ethereum/assets/0x44618dE3Bf9b6DCBc3750eE058980cB614813d08/logo.png new file mode 100755 index 00000000..e8a41f55 Binary files /dev/null and b/blockchains/ethereum/assets/0x44618dE3Bf9b6DCBc3750eE058980cB614813d08/logo.png differ diff --git a/blockchains/ethereum/assets/0x446C9033E7516D820cc9a2ce2d0B7328b579406F/info.json b/blockchains/ethereum/assets/0x446C9033E7516D820cc9a2ce2d0B7328b579406F/info.json new file mode 100644 index 00000000..d2fda24d --- /dev/null +++ b/blockchains/ethereum/assets/0x446C9033E7516D820cc9a2ce2d0B7328b579406F/info.json @@ -0,0 +1,11 @@ +{ + "name": "SOLVE", + "website": "https://solve.care", + "description": "Solve.Care is a healthcare IT company that builds blockchain platforms which the team believes may improve the way healthcare is delivered and managed.", + "explorer": "https://etherscan.io/token/0x446C9033E7516D820cc9a2ce2d0B7328b579406F", + "type": "ERC20", + "symbol": "SOLVE", + "decimals": 8, + "status": "active", + "id": "0x446C9033E7516D820cc9a2ce2d0B7328b579406F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x446C9033E7516D820cc9a2ce2d0B7328b579406F/logo.png b/blockchains/ethereum/assets/0x446C9033E7516D820cc9a2ce2d0B7328b579406F/logo.png new file mode 100644 index 00000000..28866fb6 Binary files /dev/null and b/blockchains/ethereum/assets/0x446C9033E7516D820cc9a2ce2d0B7328b579406F/logo.png differ diff --git a/blockchains/ethereum/assets/0x44709a920fCcF795fbC57BAA433cc3dd53C44DbE/info.json b/blockchains/ethereum/assets/0x44709a920fCcF795fbC57BAA433cc3dd53C44DbE/info.json new file mode 100644 index 00000000..cf46ebbe --- /dev/null +++ b/blockchains/ethereum/assets/0x44709a920fCcF795fbC57BAA433cc3dd53C44DbE/info.json @@ -0,0 +1,33 @@ +{ + "name": "DappRadar", + "website": "https://dappradar.com/", + "description": "DappRadar aims to be one of the leading global NFT & DeFi DAPP store.", + "explorer": "https://etherscan.io/token/0x44709a920fccf795fbc57baa433cc3dd53c44dbe", + "symbol": "RADAR", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0x44709a920fCcF795fbC57BAA433cc3dd53C44DbE", + "tags": [ + "nft", + "defi" + ], + "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" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44709a920fCcF795fbC57BAA433cc3dd53C44DbE/logo.png b/blockchains/ethereum/assets/0x44709a920fCcF795fbC57BAA433cc3dd53C44DbE/logo.png new file mode 100644 index 00000000..d054ff56 Binary files /dev/null and b/blockchains/ethereum/assets/0x44709a920fCcF795fbC57BAA433cc3dd53C44DbE/logo.png differ diff --git a/blockchains/ethereum/assets/0x4470BB87d77b963A013DB939BE332f927f2b992e/info.json b/blockchains/ethereum/assets/0x4470BB87d77b963A013DB939BE332f927f2b992e/info.json new file mode 100644 index 00000000..2983f658 --- /dev/null +++ b/blockchains/ethereum/assets/0x4470BB87d77b963A013DB939BE332f927f2b992e/info.json @@ -0,0 +1,11 @@ +{ + "name": "AdEx", + "symbol": "ADX", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4470BB87d77b963A013DB939BE332f927f2b992e", + "status": "abandoned", + "id": "0x4470BB87d77b963A013DB939BE332f927f2b992e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4470BB87d77b963A013DB939BE332f927f2b992e/logo.png b/blockchains/ethereum/assets/0x4470BB87d77b963A013DB939BE332f927f2b992e/logo.png new file mode 100644 index 00000000..c219b24e Binary files /dev/null and b/blockchains/ethereum/assets/0x4470BB87d77b963A013DB939BE332f927f2b992e/logo.png differ diff --git a/blockchains/ethereum/assets/0x4488eD050cd13CcFe0B0fCf3d168216830142775/info.json b/blockchains/ethereum/assets/0x4488eD050cd13CcFe0B0fCf3d168216830142775/info.json new file mode 100644 index 00000000..8b91de01 --- /dev/null +++ b/blockchains/ethereum/assets/0x4488eD050cd13CcFe0B0fCf3d168216830142775/info.json @@ -0,0 +1,11 @@ +{ + "name": "Netkiller eBook Reader Coin", + "symbol": "NBRC", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4488eD050cd13CcFe0B0fCf3d168216830142775", + "status": "abandoned", + "id": "0x4488eD050cd13CcFe0B0fCf3d168216830142775" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4488eD050cd13CcFe0B0fCf3d168216830142775/logo.png b/blockchains/ethereum/assets/0x4488eD050cd13CcFe0B0fCf3d168216830142775/logo.png new file mode 100644 index 00000000..e496bec4 Binary files /dev/null and b/blockchains/ethereum/assets/0x4488eD050cd13CcFe0B0fCf3d168216830142775/logo.png differ diff --git a/blockchains/ethereum/assets/0x448a47359833b26e5AA988dDB7A72099F6242170/info.json b/blockchains/ethereum/assets/0x448a47359833b26e5AA988dDB7A72099F6242170/info.json new file mode 100644 index 00000000..b3cf335f --- /dev/null +++ b/blockchains/ethereum/assets/0x448a47359833b26e5AA988dDB7A72099F6242170/info.json @@ -0,0 +1,11 @@ +{ + "name": "Real Estate Investment Token", + "symbol": "RIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://uberstate.me/", + "explorer": "https://etherscan.io/token/0x448a47359833b26e5AA988dDB7A72099F6242170", + "status": "abandoned", + "id": "0x448a47359833b26e5AA988dDB7A72099F6242170" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x448a47359833b26e5AA988dDB7A72099F6242170/logo.png b/blockchains/ethereum/assets/0x448a47359833b26e5AA988dDB7A72099F6242170/logo.png new file mode 100644 index 00000000..2ab8bd87 Binary files /dev/null and b/blockchains/ethereum/assets/0x448a47359833b26e5AA988dDB7A72099F6242170/logo.png differ diff --git a/blockchains/ethereum/assets/0x4493730b053D19e774bdfebaDB70823Ec4C59eD5/info.json b/blockchains/ethereum/assets/0x4493730b053D19e774bdfebaDB70823Ec4C59eD5/info.json new file mode 100644 index 00000000..f9036303 --- /dev/null +++ b/blockchains/ethereum/assets/0x4493730b053D19e774bdfebaDB70823Ec4C59eD5/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-1/30M1", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4493730b053D19e774bdfebaDB70823Ec4C59eD5", + "status": "abandoned", + "id": "0x4493730b053D19e774bdfebaDB70823Ec4C59eD5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4493730b053D19e774bdfebaDB70823Ec4C59eD5/logo.png b/blockchains/ethereum/assets/0x4493730b053D19e774bdfebaDB70823Ec4C59eD5/logo.png new file mode 100644 index 00000000..ccfb3f65 Binary files /dev/null and b/blockchains/ethereum/assets/0x4493730b053D19e774bdfebaDB70823Ec4C59eD5/logo.png differ diff --git a/blockchains/ethereum/assets/0x449574C69f3A658794829eD81639A7A9ECe041E1/info.json b/blockchains/ethereum/assets/0x449574C69f3A658794829eD81639A7A9ECe041E1/info.json new file mode 100644 index 00000000..100fd56d --- /dev/null +++ b/blockchains/ethereum/assets/0x449574C69f3A658794829eD81639A7A9ECe041E1/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "NEOG", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x449574C69f3A658794829eD81639A7A9ECe041E1", + "status": "abandoned", + "id": "0x449574C69f3A658794829eD81639A7A9ECe041E1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x449574C69f3A658794829eD81639A7A9ECe041E1/logo.png b/blockchains/ethereum/assets/0x449574C69f3A658794829eD81639A7A9ECe041E1/logo.png new file mode 100644 index 00000000..f30a7693 Binary files /dev/null and b/blockchains/ethereum/assets/0x449574C69f3A658794829eD81639A7A9ECe041E1/logo.png differ diff --git a/blockchains/ethereum/assets/0x44971ABF0251958492FeE97dA3e5C5adA88B9185/info.json b/blockchains/ethereum/assets/0x44971ABF0251958492FeE97dA3e5C5adA88B9185/info.json new file mode 100644 index 00000000..712ff3b9 --- /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 00000000..eb57364a Binary files /dev/null and b/blockchains/ethereum/assets/0x44971ABF0251958492FeE97dA3e5C5adA88B9185/logo.png differ diff --git a/blockchains/ethereum/assets/0x449C164df2D0b9D6a15B48D8b93059e28872fC74/info.json b/blockchains/ethereum/assets/0x449C164df2D0b9D6a15B48D8b93059e28872fC74/info.json new file mode 100644 index 00000000..71f973e5 --- /dev/null +++ b/blockchains/ethereum/assets/0x449C164df2D0b9D6a15B48D8b93059e28872fC74/info.json @@ -0,0 +1,11 @@ +{ + "name": "XBTC", + "symbol": "XBTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x449C164df2D0b9D6a15B48D8b93059e28872fC74", + "status": "abandoned", + "id": "0x449C164df2D0b9D6a15B48D8b93059e28872fC74" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x449C164df2D0b9D6a15B48D8b93059e28872fC74/logo.png b/blockchains/ethereum/assets/0x449C164df2D0b9D6a15B48D8b93059e28872fC74/logo.png new file mode 100644 index 00000000..0b42f643 Binary files /dev/null and b/blockchains/ethereum/assets/0x449C164df2D0b9D6a15B48D8b93059e28872fC74/logo.png differ diff --git a/blockchains/ethereum/assets/0x449b25b8DB95Ca26aD7B7ec896145A2b900aFe0b/info.json b/blockchains/ethereum/assets/0x449b25b8DB95Ca26aD7B7ec896145A2b900aFe0b/info.json new file mode 100644 index 00000000..4202952f --- /dev/null +++ b/blockchains/ethereum/assets/0x449b25b8DB95Ca26aD7B7ec896145A2b900aFe0b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sarun Token", + "symbol": "SRT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x449b25b8DB95Ca26aD7B7ec896145A2b900aFe0b", + "status": "abandoned", + "id": "0x449b25b8DB95Ca26aD7B7ec896145A2b900aFe0b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x449b25b8DB95Ca26aD7B7ec896145A2b900aFe0b/logo.png b/blockchains/ethereum/assets/0x449b25b8DB95Ca26aD7B7ec896145A2b900aFe0b/logo.png new file mode 100644 index 00000000..5c5f343d Binary files /dev/null and b/blockchains/ethereum/assets/0x449b25b8DB95Ca26aD7B7ec896145A2b900aFe0b/logo.png differ diff --git a/blockchains/ethereum/assets/0x449c640B6C7fce4f8aD2e3Dcd900D13be40174Af/info.json b/blockchains/ethereum/assets/0x449c640B6C7fce4f8aD2e3Dcd900D13be40174Af/info.json new file mode 100644 index 00000000..595f1fda --- /dev/null +++ b/blockchains/ethereum/assets/0x449c640B6C7fce4f8aD2e3Dcd900D13be40174Af/info.json @@ -0,0 +1,11 @@ +{ + "name": "IGICOIN", + "symbol": "IGI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x449c640B6C7fce4f8aD2e3Dcd900D13be40174Af", + "status": "abandoned", + "id": "0x449c640B6C7fce4f8aD2e3Dcd900D13be40174Af" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x449c640B6C7fce4f8aD2e3Dcd900D13be40174Af/logo.png b/blockchains/ethereum/assets/0x449c640B6C7fce4f8aD2e3Dcd900D13be40174Af/logo.png new file mode 100644 index 00000000..bc30a4f5 Binary files /dev/null and b/blockchains/ethereum/assets/0x449c640B6C7fce4f8aD2e3Dcd900D13be40174Af/logo.png differ diff --git a/blockchains/ethereum/assets/0x44A67C8570a61A28bAfd0035042f2F0A73a64428/info.json b/blockchains/ethereum/assets/0x44A67C8570a61A28bAfd0035042f2F0A73a64428/info.json new file mode 100644 index 00000000..7154c238 --- /dev/null +++ b/blockchains/ethereum/assets/0x44A67C8570a61A28bAfd0035042f2F0A73a64428/info.json @@ -0,0 +1,11 @@ +{ + "name": "GermanCoin", + "symbol": "GCX", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://germancoin.info/", + "explorer": "https://etherscan.io/token/0x44A67C8570a61A28bAfd0035042f2F0A73a64428", + "status": "abandoned", + "id": "0x44A67C8570a61A28bAfd0035042f2F0A73a64428" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44A67C8570a61A28bAfd0035042f2F0A73a64428/logo.png b/blockchains/ethereum/assets/0x44A67C8570a61A28bAfd0035042f2F0A73a64428/logo.png new file mode 100644 index 00000000..616088d8 Binary files /dev/null and b/blockchains/ethereum/assets/0x44A67C8570a61A28bAfd0035042f2F0A73a64428/logo.png differ diff --git a/blockchains/ethereum/assets/0x44B7e4fDD6A36D9c6574808c6B31ae50db9dF12d/info.json b/blockchains/ethereum/assets/0x44B7e4fDD6A36D9c6574808c6B31ae50db9dF12d/info.json new file mode 100644 index 00000000..f6413397 --- /dev/null +++ b/blockchains/ethereum/assets/0x44B7e4fDD6A36D9c6574808c6B31ae50db9dF12d/info.json @@ -0,0 +1,11 @@ +{ + "name": "CPH MQA", + "symbol": "CMQA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x44B7e4fDD6A36D9c6574808c6B31ae50db9dF12d", + "status": "abandoned", + "id": "0x44B7e4fDD6A36D9c6574808c6B31ae50db9dF12d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44B7e4fDD6A36D9c6574808c6B31ae50db9dF12d/logo.png b/blockchains/ethereum/assets/0x44B7e4fDD6A36D9c6574808c6B31ae50db9dF12d/logo.png new file mode 100644 index 00000000..3d99c58f Binary files /dev/null and b/blockchains/ethereum/assets/0x44B7e4fDD6A36D9c6574808c6B31ae50db9dF12d/logo.png differ diff --git a/blockchains/ethereum/assets/0x44DB405765397DEad3B71fdB943572D18Bdb16fD/info.json b/blockchains/ethereum/assets/0x44DB405765397DEad3B71fdB943572D18Bdb16fD/info.json new file mode 100644 index 00000000..1c70412a --- /dev/null +++ b/blockchains/ethereum/assets/0x44DB405765397DEad3B71fdB943572D18Bdb16fD/info.json @@ -0,0 +1,11 @@ +{ + "name": "ga-me.io token", + "symbol": "GAMT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x44DB405765397DEad3B71fdB943572D18Bdb16fD", + "status": "abandoned", + "id": "0x44DB405765397DEad3B71fdB943572D18Bdb16fD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44DB405765397DEad3B71fdB943572D18Bdb16fD/logo.png b/blockchains/ethereum/assets/0x44DB405765397DEad3B71fdB943572D18Bdb16fD/logo.png new file mode 100644 index 00000000..5e780db6 Binary files /dev/null and b/blockchains/ethereum/assets/0x44DB405765397DEad3B71fdB943572D18Bdb16fD/logo.png differ diff --git a/blockchains/ethereum/assets/0x44E2ca91ceA1147f1B503e669f06CD11FB0C5490/info.json b/blockchains/ethereum/assets/0x44E2ca91ceA1147f1B503e669f06CD11FB0C5490/info.json new file mode 100644 index 00000000..35cdf35a --- /dev/null +++ b/blockchains/ethereum/assets/0x44E2ca91ceA1147f1B503e669f06CD11FB0C5490/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinMetro Token", + "symbol": "XCM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://coinmetro.com/", + "explorer": "https://etherscan.io/token/0x44E2ca91ceA1147f1B503e669f06CD11FB0C5490", + "status": "abandoned", + "id": "0x44E2ca91ceA1147f1B503e669f06CD11FB0C5490" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44E2ca91ceA1147f1B503e669f06CD11FB0C5490/logo.png b/blockchains/ethereum/assets/0x44E2ca91ceA1147f1B503e669f06CD11FB0C5490/logo.png new file mode 100644 index 00000000..74b0cb16 Binary files /dev/null and b/blockchains/ethereum/assets/0x44E2ca91ceA1147f1B503e669f06CD11FB0C5490/logo.png differ diff --git a/blockchains/ethereum/assets/0x44F588aEeB8C44471439D1270B3603c66a9262F1/info.json b/blockchains/ethereum/assets/0x44F588aEeB8C44471439D1270B3603c66a9262F1/info.json new file mode 100644 index 00000000..3b9b645c --- /dev/null +++ b/blockchains/ethereum/assets/0x44F588aEeB8C44471439D1270B3603c66a9262F1/info.json @@ -0,0 +1,11 @@ +{ + "name": "SnipCoin", + "symbol": "SNIP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x44F588aEeB8C44471439D1270B3603c66a9262F1", + "status": "abandoned", + "id": "0x44F588aEeB8C44471439D1270B3603c66a9262F1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44F588aEeB8C44471439D1270B3603c66a9262F1/logo.png b/blockchains/ethereum/assets/0x44F588aEeB8C44471439D1270B3603c66a9262F1/logo.png new file mode 100644 index 00000000..c55e3918 Binary files /dev/null and b/blockchains/ethereum/assets/0x44F588aEeB8C44471439D1270B3603c66a9262F1/logo.png differ diff --git a/blockchains/ethereum/assets/0x44a45B55B9D7d88de65428248e79dAd74B6E7F28/info.json b/blockchains/ethereum/assets/0x44a45B55B9D7d88de65428248e79dAd74B6E7F28/info.json new file mode 100644 index 00000000..60c16191 --- /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/0x44a718aC1bbfF570B8A0D9A25A0BA8f317e049b7/info.json b/blockchains/ethereum/assets/0x44a718aC1bbfF570B8A0D9A25A0BA8f317e049b7/info.json new file mode 100644 index 00000000..00822e7d --- /dev/null +++ b/blockchains/ethereum/assets/0x44a718aC1bbfF570B8A0D9A25A0BA8f317e049b7/info.json @@ -0,0 +1,11 @@ +{ + "name": "NuChainLink Token", + "symbol": "NuLINK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x44a718aC1bbfF570B8A0D9A25A0BA8f317e049b7", + "status": "abandoned", + "id": "0x44a718aC1bbfF570B8A0D9A25A0BA8f317e049b7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44a718aC1bbfF570B8A0D9A25A0BA8f317e049b7/logo.png b/blockchains/ethereum/assets/0x44a718aC1bbfF570B8A0D9A25A0BA8f317e049b7/logo.png new file mode 100644 index 00000000..6cbd10ae Binary files /dev/null and b/blockchains/ethereum/assets/0x44a718aC1bbfF570B8A0D9A25A0BA8f317e049b7/logo.png differ diff --git a/blockchains/ethereum/assets/0x44b6e3e85561ce054aB13Affa0773358D795D36D/info.json b/blockchains/ethereum/assets/0x44b6e3e85561ce054aB13Affa0773358D795D36D/info.json new file mode 100644 index 00000000..7a58cdcc --- /dev/null +++ b/blockchains/ethereum/assets/0x44b6e3e85561ce054aB13Affa0773358D795D36D/info.json @@ -0,0 +1,11 @@ +{ + "name": "ethArt", + "symbol": "ARTE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x44b6e3e85561ce054aB13Affa0773358D795D36D", + "status": "abandoned", + "id": "0x44b6e3e85561ce054aB13Affa0773358D795D36D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44b6e3e85561ce054aB13Affa0773358D795D36D/logo.png b/blockchains/ethereum/assets/0x44b6e3e85561ce054aB13Affa0773358D795D36D/logo.png new file mode 100644 index 00000000..1f75a44e Binary files /dev/null and b/blockchains/ethereum/assets/0x44b6e3e85561ce054aB13Affa0773358D795D36D/logo.png differ diff --git a/blockchains/ethereum/assets/0x44bf22949F9cc84b61B9328a9d885d1b5C806b41/info.json b/blockchains/ethereum/assets/0x44bf22949F9cc84b61B9328a9d885d1b5C806b41/info.json new file mode 100644 index 00000000..a8de537a --- /dev/null +++ b/blockchains/ethereum/assets/0x44bf22949F9cc84b61B9328a9d885d1b5C806b41/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mozo Token", + "symbol": "MOZO", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x44bf22949F9cc84b61B9328a9d885d1b5C806b41", + "status": "abandoned", + "id": "0x44bf22949F9cc84b61B9328a9d885d1b5C806b41" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44bf22949F9cc84b61B9328a9d885d1b5C806b41/logo.png b/blockchains/ethereum/assets/0x44bf22949F9cc84b61B9328a9d885d1b5C806b41/logo.png new file mode 100644 index 00000000..7c6449b1 Binary files /dev/null and b/blockchains/ethereum/assets/0x44bf22949F9cc84b61B9328a9d885d1b5C806b41/logo.png differ diff --git a/blockchains/ethereum/assets/0x44d269b126443007C2241E034416100fB7fDe3cB/info.json b/blockchains/ethereum/assets/0x44d269b126443007C2241E034416100fB7fDe3cB/info.json new file mode 100644 index 00000000..1ea5b6d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x44d269b126443007C2241E034416100fB7fDe3cB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ind3X Exchange Token", + "symbol": "Ind3X", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x44d269b126443007C2241E034416100fB7fDe3cB", + "status": "abandoned", + "id": "0x44d269b126443007C2241E034416100fB7fDe3cB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44d269b126443007C2241E034416100fB7fDe3cB/logo.png b/blockchains/ethereum/assets/0x44d269b126443007C2241E034416100fB7fDe3cB/logo.png new file mode 100644 index 00000000..9f0ce23a Binary files /dev/null and b/blockchains/ethereum/assets/0x44d269b126443007C2241E034416100fB7fDe3cB/logo.png differ diff --git a/blockchains/ethereum/assets/0x44e89d34601b8D0155e16634d2553EF7F54DBab2/info.json b/blockchains/ethereum/assets/0x44e89d34601b8D0155e16634d2553EF7F54DBab2/info.json new file mode 100644 index 00000000..5d433103 --- /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 00000000..dd1a5ed2 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 00000000..bfd8a65f --- /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 00000000..87328b25 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 00000000..b98b329f --- /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 00000000..69737a2c 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 new file mode 100644 index 00000000..9c4868a1 --- /dev/null +++ b/blockchains/ethereum/assets/0x45080a6531d671DDFf20DB42f93792a489685e32/info.json @@ -0,0 +1,53 @@ +{ + "name": "finance.vote", + "type": "ERC20", + "symbol": "FVT", + "decimals": 18, + "website": "https://finance.vote", + "description": "FVT is a utility token that powers the finance.vote dApp Suite.", + "explorer": "https://etherscan.io/token/0x45080a6531d671ddff20db42f93792a489685e32", + "status": "active", + "id": "0x45080a6531d671DDFf20DB42f93792a489685e32", + "links": [ + { + "name": "x", + "url": "https://x.com/financedotvote" + }, + { + "name": "telegram", + "url": "https://t.me/financevote" + }, + { + "name": "docs", + "url": "https://financevote.readthedocs.io/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/QJ9cCQ7Cwy" + }, + { + "name": "whitepaper", + "url": "https://f646e629-e6ab-436e-b4b5-ad62237799a8.filesusr.com/ugd/2f63aa_acbd8518e6cb4b20ae956ef661f85335.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/finance-vote/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/finance-vote" + }, + { + "name": "source_code", + "url": "https://gitlab.com/finance.vote" + }, + { + "name": "blog", + "url": "https://financedotvote.medium.com/" + }, + { + "name": "medium", + "url": "https://financedotvote.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x45080a6531d671DDFf20DB42f93792a489685e32/logo.png b/blockchains/ethereum/assets/0x45080a6531d671DDFf20DB42f93792a489685e32/logo.png new file mode 100644 index 00000000..67c0113e Binary files /dev/null and b/blockchains/ethereum/assets/0x45080a6531d671DDFf20DB42f93792a489685e32/logo.png differ diff --git a/blockchains/ethereum/assets/0x4508FF4d0532D24051d3378680c37d63fFEC82EF/info.json b/blockchains/ethereum/assets/0x4508FF4d0532D24051d3378680c37d63fFEC82EF/info.json new file mode 100644 index 00000000..8c3815c3 --- /dev/null +++ b/blockchains/ethereum/assets/0x4508FF4d0532D24051d3378680c37d63fFEC82EF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Thorium", + "symbol": "TORI", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4508FF4d0532D24051d3378680c37d63fFEC82EF", + "status": "abandoned", + "id": "0x4508FF4d0532D24051d3378680c37d63fFEC82EF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4508FF4d0532D24051d3378680c37d63fFEC82EF/logo.png b/blockchains/ethereum/assets/0x4508FF4d0532D24051d3378680c37d63fFEC82EF/logo.png new file mode 100644 index 00000000..78910235 Binary files /dev/null and b/blockchains/ethereum/assets/0x4508FF4d0532D24051d3378680c37d63fFEC82EF/logo.png differ diff --git a/blockchains/ethereum/assets/0x450bbc727100D806797CD617c88d1319563F8416/info.json b/blockchains/ethereum/assets/0x450bbc727100D806797CD617c88d1319563F8416/info.json new file mode 100644 index 00000000..f8378c9b --- /dev/null +++ b/blockchains/ethereum/assets/0x450bbc727100D806797CD617c88d1319563F8416/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dochain", + "symbol": "DOC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x450bbc727100D806797CD617c88d1319563F8416", + "status": "abandoned", + "id": "0x450bbc727100D806797CD617c88d1319563F8416" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x450bbc727100D806797CD617c88d1319563F8416/logo.png b/blockchains/ethereum/assets/0x450bbc727100D806797CD617c88d1319563F8416/logo.png new file mode 100644 index 00000000..f79d1ebc Binary files /dev/null and b/blockchains/ethereum/assets/0x450bbc727100D806797CD617c88d1319563F8416/logo.png differ diff --git a/blockchains/ethereum/assets/0x45245bc59219eeaAF6cD3f382e078A461FF9De7B/info.json b/blockchains/ethereum/assets/0x45245bc59219eeaAF6cD3f382e078A461FF9De7B/info.json new file mode 100644 index 00000000..3f290878 --- /dev/null +++ b/blockchains/ethereum/assets/0x45245bc59219eeaAF6cD3f382e078A461FF9De7B/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"\"BANKEX\"\" project utility token\"", + "symbol": "BKX", + "type": "ERC20", + "decimals": 18, + "description": "The BANKEX Proof-of-Asset (PoA) Protocol is a new standard used to create smart assets and smart contracts for decentralized capital markets.", + "website": "https://bankex.com/en/", + "explorer": "https://etherscan.io/token/0x45245bc59219eeaAF6cD3f382e078A461FF9De7B", + "status": "active", + "id": "0x45245bc59219eeaAF6cD3f382e078A461FF9De7B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x45245bc59219eeaAF6cD3f382e078A461FF9De7B/logo.png b/blockchains/ethereum/assets/0x45245bc59219eeaAF6cD3f382e078A461FF9De7B/logo.png new file mode 100644 index 00000000..ba6299c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x45245bc59219eeaAF6cD3f382e078A461FF9De7B/logo.png differ diff --git a/blockchains/ethereum/assets/0x452502602022fa1f1753019053FCf841e770efaE/info.json b/blockchains/ethereum/assets/0x452502602022fa1f1753019053FCf841e770efaE/info.json new file mode 100644 index 00000000..579d3a12 --- /dev/null +++ b/blockchains/ethereum/assets/0x452502602022fa1f1753019053FCf841e770efaE/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-18/30M48", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x452502602022fa1f1753019053FCf841e770efaE", + "status": "abandoned", + "id": "0x452502602022fa1f1753019053FCf841e770efaE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x452502602022fa1f1753019053FCf841e770efaE/logo.png b/blockchains/ethereum/assets/0x452502602022fa1f1753019053FCf841e770efaE/logo.png new file mode 100644 index 00000000..7cba9178 Binary files /dev/null and b/blockchains/ethereum/assets/0x452502602022fa1f1753019053FCf841e770efaE/logo.png differ diff --git a/blockchains/ethereum/assets/0x4527a3B4A8A150403090a99b87efFC96F2195047/info.json b/blockchains/ethereum/assets/0x4527a3B4A8A150403090a99b87efFC96F2195047/info.json new file mode 100644 index 00000000..a6ff5087 --- /dev/null +++ b/blockchains/ethereum/assets/0x4527a3B4A8A150403090a99b87efFC96F2195047/info.json @@ -0,0 +1,11 @@ +{ + "name": "P2P Solutions Foundation", + "symbol": "P2PS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.p2psf.org/", + "explorer": "https://etherscan.io/token/0x4527a3B4A8A150403090a99b87efFC96F2195047", + "status": "abandoned", + "id": "0x4527a3B4A8A150403090a99b87efFC96F2195047" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4527a3B4A8A150403090a99b87efFC96F2195047/logo.png b/blockchains/ethereum/assets/0x4527a3B4A8A150403090a99b87efFC96F2195047/logo.png new file mode 100755 index 00000000..45cca6fd Binary files /dev/null and b/blockchains/ethereum/assets/0x4527a3B4A8A150403090a99b87efFC96F2195047/logo.png differ diff --git a/blockchains/ethereum/assets/0x452f6DE535f613B92443F5446AE4e7C1c4Ad01f2/info.json b/blockchains/ethereum/assets/0x452f6DE535f613B92443F5446AE4e7C1c4Ad01f2/info.json new file mode 100644 index 00000000..b35d7361 --- /dev/null +++ b/blockchains/ethereum/assets/0x452f6DE535f613B92443F5446AE4e7C1c4Ad01f2/info.json @@ -0,0 +1,11 @@ +{ + "name": "UsPay", + "symbol": "USPAY", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "https://uspay.cash/", + "explorer": "https://etherscan.io/token/0x452f6DE535f613B92443F5446AE4e7C1c4Ad01f2", + "status": "abandoned", + "id": "0x452f6DE535f613B92443F5446AE4e7C1c4Ad01f2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x452f6DE535f613B92443F5446AE4e7C1c4Ad01f2/logo.png b/blockchains/ethereum/assets/0x452f6DE535f613B92443F5446AE4e7C1c4Ad01f2/logo.png new file mode 100644 index 00000000..53473e1a Binary files /dev/null and b/blockchains/ethereum/assets/0x452f6DE535f613B92443F5446AE4e7C1c4Ad01f2/logo.png differ diff --git a/blockchains/ethereum/assets/0x4549c04465e1a89c16D5037c962077857e3923C4/info.json b/blockchains/ethereum/assets/0x4549c04465e1a89c16D5037c962077857e3923C4/info.json new file mode 100644 index 00000000..7afb4fa7 --- /dev/null +++ b/blockchains/ethereum/assets/0x4549c04465e1a89c16D5037c962077857e3923C4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Evangel", + "symbol": "EVA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4549c04465e1a89c16D5037c962077857e3923C4", + "status": "abandoned", + "id": "0x4549c04465e1a89c16D5037c962077857e3923C4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4549c04465e1a89c16D5037c962077857e3923C4/logo.png b/blockchains/ethereum/assets/0x4549c04465e1a89c16D5037c962077857e3923C4/logo.png new file mode 100644 index 00000000..6d6b707b Binary files /dev/null and b/blockchains/ethereum/assets/0x4549c04465e1a89c16D5037c962077857e3923C4/logo.png differ diff --git a/blockchains/ethereum/assets/0x454B9f249bC1492eE995793Bbc3e57b830F1A5e9/info.json b/blockchains/ethereum/assets/0x454B9f249bC1492eE995793Bbc3e57b830F1A5e9/info.json new file mode 100644 index 00000000..fc24220b --- /dev/null +++ b/blockchains/ethereum/assets/0x454B9f249bC1492eE995793Bbc3e57b830F1A5e9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alphacon Token", + "symbol": "ALP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x454B9f249bC1492eE995793Bbc3e57b830F1A5e9", + "status": "abandoned", + "id": "0x454B9f249bC1492eE995793Bbc3e57b830F1A5e9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x454B9f249bC1492eE995793Bbc3e57b830F1A5e9/logo.png b/blockchains/ethereum/assets/0x454B9f249bC1492eE995793Bbc3e57b830F1A5e9/logo.png new file mode 100644 index 00000000..5b871b00 Binary files /dev/null and b/blockchains/ethereum/assets/0x454B9f249bC1492eE995793Bbc3e57b830F1A5e9/logo.png differ diff --git a/blockchains/ethereum/assets/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6/info.json b/blockchains/ethereum/assets/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6/info.json new file mode 100644 index 00000000..f70d66f3 --- /dev/null +++ b/blockchains/ethereum/assets/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6/info.json @@ -0,0 +1,25 @@ +{ + "name": "Polygon Ecosystem Token", + "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 00000000..fbd01afc 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 new file mode 100644 index 00000000..bf2d7331 --- /dev/null +++ b/blockchains/ethereum/assets/0x456125Cd98107ae0480Ba566f1b716D48Ba31453/info.json @@ -0,0 +1,37 @@ +{ + "name": "Ultimate Champions Token", + "type": "ERC20", + "symbol": "CHAMP", + "decimals": 18, + "website": "https://token.ultimate-champions.com/", + "description": "Ultimate Champions is a free to play and play to earn fantasy sports game.", + "explorer": "https://etherscan.io/token/0x456125Cd98107ae0480Ba566f1b716D48Ba31453", + "status": "active", + "id": "0x456125Cd98107ae0480Ba566f1b716D48Ba31453", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ultimate-champions/" + }, + { + "name": "x", + "url": "https://x.com/UltiChamps" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.ultimate-champions.com/" + }, + { + "name": "medium", + "url": "https://ultimatechampions.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/ultimatechampions" + } + ], + "tags": [ + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x456125Cd98107ae0480Ba566f1b716D48Ba31453/logo.png b/blockchains/ethereum/assets/0x456125Cd98107ae0480Ba566f1b716D48Ba31453/logo.png new file mode 100644 index 00000000..a16cde4b Binary files /dev/null and b/blockchains/ethereum/assets/0x456125Cd98107ae0480Ba566f1b716D48Ba31453/logo.png differ diff --git a/blockchains/ethereum/assets/0x4568De775a2D2B872b05549153b14016561fa087/info.json b/blockchains/ethereum/assets/0x4568De775a2D2B872b05549153b14016561fa087/info.json new file mode 100644 index 00000000..c7e377a4 --- /dev/null +++ b/blockchains/ethereum/assets/0x4568De775a2D2B872b05549153b14016561fa087/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-26/30M86", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4568De775a2D2B872b05549153b14016561fa087", + "status": "abandoned", + "id": "0x4568De775a2D2B872b05549153b14016561fa087" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4568De775a2D2B872b05549153b14016561fa087/logo.png b/blockchains/ethereum/assets/0x4568De775a2D2B872b05549153b14016561fa087/logo.png new file mode 100644 index 00000000..29eedddd Binary files /dev/null and b/blockchains/ethereum/assets/0x4568De775a2D2B872b05549153b14016561fa087/logo.png differ diff --git a/blockchains/ethereum/assets/0x456AE45c0CE901E2e7c99c0718031cEc0A7A59Ff/info.json b/blockchains/ethereum/assets/0x456AE45c0CE901E2e7c99c0718031cEc0A7A59Ff/info.json new file mode 100644 index 00000000..a27210ae --- /dev/null +++ b/blockchains/ethereum/assets/0x456AE45c0CE901E2e7c99c0718031cEc0A7A59Ff/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vision Network", + "symbol": "VSN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.vision-network.io/", + "explorer": "https://etherscan.io/token/0x456AE45c0CE901E2e7c99c0718031cEc0A7A59Ff", + "status": "abandoned", + "id": "0x456AE45c0CE901E2e7c99c0718031cEc0A7A59Ff" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x456AE45c0CE901E2e7c99c0718031cEc0A7A59Ff/logo.png b/blockchains/ethereum/assets/0x456AE45c0CE901E2e7c99c0718031cEc0A7A59Ff/logo.png new file mode 100644 index 00000000..f6f43d78 Binary files /dev/null and b/blockchains/ethereum/assets/0x456AE45c0CE901E2e7c99c0718031cEc0A7A59Ff/logo.png differ diff --git a/blockchains/ethereum/assets/0x456D8f0D25A4e787eE60c401F8B963a465148f70/info.json b/blockchains/ethereum/assets/0x456D8f0D25A4e787eE60c401F8B963a465148f70/info.json new file mode 100644 index 00000000..f01640ac --- /dev/null +++ b/blockchains/ethereum/assets/0x456D8f0D25A4e787eE60c401F8B963a465148f70/info.json @@ -0,0 +1,14 @@ +{ + "name": "Cavapoo", + "website": "https://www.cava.finance/", + "description": "Fair launched on June 1 2021, Cavapoo ($CAVA) is the new dog in town bridging the crypto space with real-world events. $CAVA is fully decentralized and is on a mission to bring awareness to actively promoting and encouraging the funding of charities and acknowledging what’s currently happening in the world.", + "explorer": "https://etherscan.io/token/0x456D8f0D25A4e787eE60c401F8B963a465148f70", + "symbol": "CAVA", + "type": "ERC20", + "decimals": 9, + "status": "active", + "id": "0x456D8f0D25A4e787eE60c401F8B963a465148f70", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x456D8f0D25A4e787eE60c401F8B963a465148f70/logo.png b/blockchains/ethereum/assets/0x456D8f0D25A4e787eE60c401F8B963a465148f70/logo.png new file mode 100644 index 00000000..57d9440e Binary files /dev/null and b/blockchains/ethereum/assets/0x456D8f0D25A4e787eE60c401F8B963a465148f70/logo.png differ diff --git a/blockchains/ethereum/assets/0x4571f3a386d1bd18E25d70d117e7067FA0Bd9D08/info.json b/blockchains/ethereum/assets/0x4571f3a386d1bd18E25d70d117e7067FA0Bd9D08/info.json new file mode 100644 index 00000000..420319d0 --- /dev/null +++ b/blockchains/ethereum/assets/0x4571f3a386d1bd18E25d70d117e7067FA0Bd9D08/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEXTERG", + "symbol": "DXG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4571f3a386d1bd18E25d70d117e7067FA0Bd9D08", + "status": "abandoned", + "id": "0x4571f3a386d1bd18E25d70d117e7067FA0Bd9D08" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4571f3a386d1bd18E25d70d117e7067FA0Bd9D08/logo.png b/blockchains/ethereum/assets/0x4571f3a386d1bd18E25d70d117e7067FA0Bd9D08/logo.png new file mode 100755 index 00000000..b3ac1697 Binary files /dev/null and b/blockchains/ethereum/assets/0x4571f3a386d1bd18E25d70d117e7067FA0Bd9D08/logo.png differ diff --git a/blockchains/ethereum/assets/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb/info.json b/blockchains/ethereum/assets/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb/info.json new file mode 100644 index 00000000..8f888449 --- /dev/null +++ b/blockchains/ethereum/assets/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb/info.json @@ -0,0 +1,12 @@ +{ + "name": "Orchid", + "website": "https://orchid.com", + "description": "Orchid (OXT) is the native token of Orchid, a cryptocurrency-powered virtual private network (VPN).", + "explorer": "https://etherscan.io/token/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb", + "research": "https://research.binance.com/en/projects/orchid", + "type": "ERC20", + "symbol": "OXT", + "decimals": 18, + "status": "active", + "id": "0x4575f41308EC1483f3d399aa9a2826d74Da13Deb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb/logo.png b/blockchains/ethereum/assets/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb/logo.png new file mode 100644 index 00000000..e832c819 Binary files /dev/null and b/blockchains/ethereum/assets/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb/logo.png differ diff --git a/blockchains/ethereum/assets/0x45804880De22913dAFE09f4980848ECE6EcbAf78/info.json b/blockchains/ethereum/assets/0x45804880De22913dAFE09f4980848ECE6EcbAf78/info.json new file mode 100644 index 00000000..1a8b22b8 --- /dev/null +++ b/blockchains/ethereum/assets/0x45804880De22913dAFE09f4980848ECE6EcbAf78/info.json @@ -0,0 +1,12 @@ +{ + "name": "PAX Gold", + "website": "https://paxos.com/paxgold", + "description": "PAX Gold (PAXG) is a digital asset where one token is backed by one fine troy ounce (t oz) of a 400 oz London Good Delivery gold bar, stored in Brink’s gold vaults.", + "explorer": "https://etherscan.io/token/0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "research": "https://research.binance.com/en/projects/pax-gold", + "type": "ERC20", + "symbol": "PAXG", + "decimals": 18, + "status": "active", + "id": "0x45804880De22913dAFE09f4980848ECE6EcbAf78" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x45804880De22913dAFE09f4980848ECE6EcbAf78/logo.png b/blockchains/ethereum/assets/0x45804880De22913dAFE09f4980848ECE6EcbAf78/logo.png new file mode 100644 index 00000000..7177a7a7 Binary files /dev/null and b/blockchains/ethereum/assets/0x45804880De22913dAFE09f4980848ECE6EcbAf78/logo.png differ diff --git a/blockchains/ethereum/assets/0x459086F2376525BdCebA5bDDA135e4E9d3FeF5bf/info.json b/blockchains/ethereum/assets/0x459086F2376525BdCebA5bDDA135e4E9d3FeF5bf/info.json new file mode 100644 index 00000000..51c12a74 --- /dev/null +++ b/blockchains/ethereum/assets/0x459086F2376525BdCebA5bDDA135e4E9d3FeF5bf/info.json @@ -0,0 +1,11 @@ +{ + "name": "renBCH", + "symbol": "renBCH", + "type": "ERC20", + "decimals": 8, + "description": "renBCH is a one-for-one representation of BCH on Ethereum via RenVM.", + "website": "https://renproject.io/", + "explorer": "https://etherscan.io/token/0x459086F2376525BdCebA5bDDA135e4E9d3FeF5bf", + "status": "active", + "id": "0x459086F2376525BdCebA5bDDA135e4E9d3FeF5bf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x459086F2376525BdCebA5bDDA135e4E9d3FeF5bf/logo.png b/blockchains/ethereum/assets/0x459086F2376525BdCebA5bDDA135e4E9d3FeF5bf/logo.png new file mode 100644 index 00000000..1365daaa Binary files /dev/null and b/blockchains/ethereum/assets/0x459086F2376525BdCebA5bDDA135e4E9d3FeF5bf/logo.png differ diff --git a/blockchains/ethereum/assets/0x4599836c212CD988EAccc54C820Ee9261cdaAC71/info.json b/blockchains/ethereum/assets/0x4599836c212CD988EAccc54C820Ee9261cdaAC71/info.json new file mode 100644 index 00000000..7ee632d1 --- /dev/null +++ b/blockchains/ethereum/assets/0x4599836c212CD988EAccc54C820Ee9261cdaAC71/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptid", + "symbol": "CID", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://crypt-id.com", + "explorer": "https://etherscan.io/token/0x4599836c212CD988EAccc54C820Ee9261cdaAC71", + "status": "abandoned", + "id": "0x4599836c212CD988EAccc54C820Ee9261cdaAC71" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4599836c212CD988EAccc54C820Ee9261cdaAC71/logo.png b/blockchains/ethereum/assets/0x4599836c212CD988EAccc54C820Ee9261cdaAC71/logo.png new file mode 100644 index 00000000..1fc8db60 Binary files /dev/null and b/blockchains/ethereum/assets/0x4599836c212CD988EAccc54C820Ee9261cdaAC71/logo.png differ diff --git a/blockchains/ethereum/assets/0x45Af324F53a8D7DA1752DAd74ADc1748126D7978/info.json b/blockchains/ethereum/assets/0x45Af324F53a8D7DA1752DAd74ADc1748126D7978/info.json new file mode 100644 index 00000000..e20c6cc2 --- /dev/null +++ b/blockchains/ethereum/assets/0x45Af324F53a8D7DA1752DAd74ADc1748126D7978/info.json @@ -0,0 +1,11 @@ +{ + "name": "MyTV Token", + "symbol": "MYTV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://mytvchain.io/", + "explorer": "https://etherscan.io/token/0x45Af324F53a8D7DA1752DAd74ADc1748126D7978", + "status": "abandoned", + "id": "0x45Af324F53a8D7DA1752DAd74ADc1748126D7978" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x45Af324F53a8D7DA1752DAd74ADc1748126D7978/logo.png b/blockchains/ethereum/assets/0x45Af324F53a8D7DA1752DAd74ADc1748126D7978/logo.png new file mode 100644 index 00000000..acd1ac35 Binary files /dev/null and b/blockchains/ethereum/assets/0x45Af324F53a8D7DA1752DAd74ADc1748126D7978/logo.png differ diff --git a/blockchains/ethereum/assets/0x45C912Df1Ebf29BF208af374Bb9C51DeBf679939/info.json b/blockchains/ethereum/assets/0x45C912Df1Ebf29BF208af374Bb9C51DeBf679939/info.json new file mode 100644 index 00000000..8eb23a7f --- /dev/null +++ b/blockchains/ethereum/assets/0x45C912Df1Ebf29BF208af374Bb9C51DeBf679939/info.json @@ -0,0 +1,11 @@ +{ + "name": "Miss Wang", + "symbol": "ETW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x45C912Df1Ebf29BF208af374Bb9C51DeBf679939", + "status": "abandoned", + "id": "0x45C912Df1Ebf29BF208af374Bb9C51DeBf679939" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x45C912Df1Ebf29BF208af374Bb9C51DeBf679939/logo.png b/blockchains/ethereum/assets/0x45C912Df1Ebf29BF208af374Bb9C51DeBf679939/logo.png new file mode 100644 index 00000000..b259a926 Binary files /dev/null and b/blockchains/ethereum/assets/0x45C912Df1Ebf29BF208af374Bb9C51DeBf679939/logo.png differ diff --git a/blockchains/ethereum/assets/0x45D180d2f5825Bf6D2DcF383AF83b5D217C96924/info.json b/blockchains/ethereum/assets/0x45D180d2f5825Bf6D2DcF383AF83b5D217C96924/info.json new file mode 100644 index 00000000..e9a10cb8 --- /dev/null +++ b/blockchains/ethereum/assets/0x45D180d2f5825Bf6D2DcF383AF83b5D217C96924/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEST", + "symbol": "FST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x45D180d2f5825Bf6D2DcF383AF83b5D217C96924", + "status": "abandoned", + "id": "0x45D180d2f5825Bf6D2DcF383AF83b5D217C96924" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x45D180d2f5825Bf6D2DcF383AF83b5D217C96924/logo.png b/blockchains/ethereum/assets/0x45D180d2f5825Bf6D2DcF383AF83b5D217C96924/logo.png new file mode 100755 index 00000000..11e3fbe2 Binary files /dev/null and b/blockchains/ethereum/assets/0x45D180d2f5825Bf6D2DcF383AF83b5D217C96924/logo.png differ diff --git a/blockchains/ethereum/assets/0x45D66D8c36d7c9d431ADE018a96DF809118f0EEd/info.json b/blockchains/ethereum/assets/0x45D66D8c36d7c9d431ADE018a96DF809118f0EEd/info.json new file mode 100644 index 00000000..257003cd --- /dev/null +++ b/blockchains/ethereum/assets/0x45D66D8c36d7c9d431ADE018a96DF809118f0EEd/info.json @@ -0,0 +1,11 @@ +{ + "name": "DACSC", + "symbol": "DACSC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x45D66D8c36d7c9d431ADE018a96DF809118f0EEd", + "status": "abandoned", + "id": "0x45D66D8c36d7c9d431ADE018a96DF809118f0EEd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x45D66D8c36d7c9d431ADE018a96DF809118f0EEd/logo.png b/blockchains/ethereum/assets/0x45D66D8c36d7c9d431ADE018a96DF809118f0EEd/logo.png new file mode 100755 index 00000000..b73a4721 Binary files /dev/null and b/blockchains/ethereum/assets/0x45D66D8c36d7c9d431ADE018a96DF809118f0EEd/logo.png differ diff --git a/blockchains/ethereum/assets/0x45F2aB0ca2116b2e1a70BF5e13293947b25d0272/info.json b/blockchains/ethereum/assets/0x45F2aB0ca2116b2e1a70BF5e13293947b25d0272/info.json new file mode 100644 index 00000000..69d864ef --- /dev/null +++ b/blockchains/ethereum/assets/0x45F2aB0ca2116b2e1a70BF5e13293947b25d0272/info.json @@ -0,0 +1,11 @@ +{ + "name": "GLOBAL RESERVE SYSTEM", + "symbol": "GLOB", + "type": "ERC20", + "decimals": 18, + "description": "GLOB aims to solve the problems of the modern economy using the decentralized emission and distribution algorithm, Proof of Transaction.", + "website": "https://globreserve.github.io/", + "explorer": "https://etherscan.io/token/0x45F2aB0ca2116b2e1a70BF5e13293947b25d0272", + "status": "active", + "id": "0x45F2aB0ca2116b2e1a70BF5e13293947b25d0272" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x45F2aB0ca2116b2e1a70BF5e13293947b25d0272/logo.png b/blockchains/ethereum/assets/0x45F2aB0ca2116b2e1a70BF5e13293947b25d0272/logo.png new file mode 100644 index 00000000..ac14ba3f Binary files /dev/null and b/blockchains/ethereum/assets/0x45F2aB0ca2116b2e1a70BF5e13293947b25d0272/logo.png differ diff --git a/blockchains/ethereum/assets/0x45bD9a077C8857dbbf72063692Cc58600199DEdB/info.json b/blockchains/ethereum/assets/0x45bD9a077C8857dbbf72063692Cc58600199DEdB/info.json new file mode 100644 index 00000000..379983df --- /dev/null +++ b/blockchains/ethereum/assets/0x45bD9a077C8857dbbf72063692Cc58600199DEdB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Favin Token", + "symbol": "FAVE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x45bD9a077C8857dbbf72063692Cc58600199DEdB", + "status": "abandoned", + "id": "0x45bD9a077C8857dbbf72063692Cc58600199DEdB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x45bD9a077C8857dbbf72063692Cc58600199DEdB/logo.png b/blockchains/ethereum/assets/0x45bD9a077C8857dbbf72063692Cc58600199DEdB/logo.png new file mode 100644 index 00000000..11245742 Binary files /dev/null and b/blockchains/ethereum/assets/0x45bD9a077C8857dbbf72063692Cc58600199DEdB/logo.png differ diff --git a/blockchains/ethereum/assets/0x45cC3676b2EC557E36ee160D100aA47e4D189637/info.json b/blockchains/ethereum/assets/0x45cC3676b2EC557E36ee160D100aA47e4D189637/info.json new file mode 100644 index 00000000..c6879144 --- /dev/null +++ b/blockchains/ethereum/assets/0x45cC3676b2EC557E36ee160D100aA47e4D189637/info.json @@ -0,0 +1,11 @@ +{ + "name": "NOVA", + "symbol": "NOVA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x45cC3676b2EC557E36ee160D100aA47e4D189637", + "status": "abandoned", + "id": "0x45cC3676b2EC557E36ee160D100aA47e4D189637" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x45cC3676b2EC557E36ee160D100aA47e4D189637/logo.png b/blockchains/ethereum/assets/0x45cC3676b2EC557E36ee160D100aA47e4D189637/logo.png new file mode 100644 index 00000000..e2ba82f0 Binary files /dev/null and b/blockchains/ethereum/assets/0x45cC3676b2EC557E36ee160D100aA47e4D189637/logo.png differ diff --git a/blockchains/ethereum/assets/0x45e42D659D9f9466cD5DF622506033145a9b89Bc/info.json b/blockchains/ethereum/assets/0x45e42D659D9f9466cD5DF622506033145a9b89Bc/info.json new file mode 100644 index 00000000..9aee186e --- /dev/null +++ b/blockchains/ethereum/assets/0x45e42D659D9f9466cD5DF622506033145a9b89Bc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nexium", + "symbol": "NxC", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x45e42D659D9f9466cD5DF622506033145a9b89Bc", + "status": "abandoned", + "id": "0x45e42D659D9f9466cD5DF622506033145a9b89Bc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x45e42D659D9f9466cD5DF622506033145a9b89Bc/logo.png b/blockchains/ethereum/assets/0x45e42D659D9f9466cD5DF622506033145a9b89Bc/logo.png new file mode 100755 index 00000000..2e761588 Binary files /dev/null and b/blockchains/ethereum/assets/0x45e42D659D9f9466cD5DF622506033145a9b89Bc/logo.png differ diff --git a/blockchains/ethereum/assets/0x45f24BaEef268BB6d63AEe5129015d69702BCDfa/info.json b/blockchains/ethereum/assets/0x45f24BaEef268BB6d63AEe5129015d69702BCDfa/info.json new file mode 100644 index 00000000..72b391e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x45f24BaEef268BB6d63AEe5129015d69702BCDfa/info.json @@ -0,0 +1,33 @@ +{ + "name": "YFValue", + "website": "https://valuedefi.io/", + "description": "Value DeFi: Bringing True Value to DeFi.", + "explorer": "https://etherscan.io/token/0x45f24BaEef268BB6d63AEe5129015d69702BCDfa", + "type": "ERC20", + "symbol": "YFV", + "decimals": 18, + "status": "active", + "id": "0x45f24BaEef268BB6d63AEe5129015d69702BCDfa", + "links": [ + { + "name": "github", + "url": "https://github.com/valuedefi" + }, + { + "name": "x", + "url": "https://x.com/value_defi" + }, + { + "name": "telegram", + "url": "https://t.me/ValueDeFi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Dpvd7tp" + }, + { + "name": "medium", + "url": "https://medium.com/@valuedefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x45f24BaEef268BB6d63AEe5129015d69702BCDfa/logo.png b/blockchains/ethereum/assets/0x45f24BaEef268BB6d63AEe5129015d69702BCDfa/logo.png new file mode 100644 index 00000000..26df7205 Binary files /dev/null and b/blockchains/ethereum/assets/0x45f24BaEef268BB6d63AEe5129015d69702BCDfa/logo.png differ diff --git a/blockchains/ethereum/assets/0x4604b0b581269843ac7a6b70A5FC019E7762e511/info.json b/blockchains/ethereum/assets/0x4604b0b581269843ac7a6b70A5FC019E7762e511/info.json new file mode 100644 index 00000000..8764891a --- /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 00000000..02eec79b Binary files /dev/null and b/blockchains/ethereum/assets/0x4604b0b581269843ac7a6b70A5FC019E7762e511/logo.png differ diff --git a/blockchains/ethereum/assets/0x461733c17b0755CA5649B6DB08B3E213FCf22546/info.json b/blockchains/ethereum/assets/0x461733c17b0755CA5649B6DB08B3E213FCf22546/info.json new file mode 100644 index 00000000..ff5ef2a1 --- /dev/null +++ b/blockchains/ethereum/assets/0x461733c17b0755CA5649B6DB08B3E213FCf22546/info.json @@ -0,0 +1,11 @@ +{ + "name": "ATN", + "symbol": "ATN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://atn.io", + "explorer": "https://etherscan.io/token/0x461733c17b0755CA5649B6DB08B3E213FCf22546", + "status": "active", + "id": "0x461733c17b0755CA5649B6DB08B3E213FCf22546" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x461733c17b0755CA5649B6DB08B3E213FCf22546/logo.png b/blockchains/ethereum/assets/0x461733c17b0755CA5649B6DB08B3E213FCf22546/logo.png new file mode 100644 index 00000000..f0946556 Binary files /dev/null and b/blockchains/ethereum/assets/0x461733c17b0755CA5649B6DB08B3E213FCf22546/logo.png differ diff --git a/blockchains/ethereum/assets/0x4618519de4C304F3444ffa7f812dddC2971cc688/info.json b/blockchains/ethereum/assets/0x4618519de4C304F3444ffa7f812dddC2971cc688/info.json new file mode 100644 index 00000000..7dd910db --- /dev/null +++ b/blockchains/ethereum/assets/0x4618519de4C304F3444ffa7f812dddC2971cc688/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kind Ads Token", + "symbol": "KIND", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://kindads.io/", + "explorer": "https://etherscan.io/token/0x4618519de4C304F3444ffa7f812dddC2971cc688", + "status": "abandoned", + "id": "0x4618519de4C304F3444ffa7f812dddC2971cc688" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4618519de4C304F3444ffa7f812dddC2971cc688/logo.png b/blockchains/ethereum/assets/0x4618519de4C304F3444ffa7f812dddC2971cc688/logo.png new file mode 100644 index 00000000..0fe25246 Binary files /dev/null and b/blockchains/ethereum/assets/0x4618519de4C304F3444ffa7f812dddC2971cc688/logo.png differ diff --git a/blockchains/ethereum/assets/0x4619DF2Ca5795834eDdA178610b6aDB46ACF47A9/info.json b/blockchains/ethereum/assets/0x4619DF2Ca5795834eDdA178610b6aDB46ACF47A9/info.json new file mode 100644 index 00000000..3b3ad28c --- /dev/null +++ b/blockchains/ethereum/assets/0x4619DF2Ca5795834eDdA178610b6aDB46ACF47A9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sword Coin", + "symbol": "SWDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4619DF2Ca5795834eDdA178610b6aDB46ACF47A9", + "status": "abandoned", + "id": "0x4619DF2Ca5795834eDdA178610b6aDB46ACF47A9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4619DF2Ca5795834eDdA178610b6aDB46ACF47A9/logo.png b/blockchains/ethereum/assets/0x4619DF2Ca5795834eDdA178610b6aDB46ACF47A9/logo.png new file mode 100755 index 00000000..238e8eb5 Binary files /dev/null and b/blockchains/ethereum/assets/0x4619DF2Ca5795834eDdA178610b6aDB46ACF47A9/logo.png differ diff --git a/blockchains/ethereum/assets/0x462C642C9eC337425d91096e61fF655eF8B4172a/info.json b/blockchains/ethereum/assets/0x462C642C9eC337425d91096e61fF655eF8B4172a/info.json new file mode 100644 index 00000000..2a12dc07 --- /dev/null +++ b/blockchains/ethereum/assets/0x462C642C9eC337425d91096e61fF655eF8B4172a/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-11/30M71", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x462C642C9eC337425d91096e61fF655eF8B4172a", + "status": "abandoned", + "id": "0x462C642C9eC337425d91096e61fF655eF8B4172a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x462C642C9eC337425d91096e61fF655eF8B4172a/logo.png b/blockchains/ethereum/assets/0x462C642C9eC337425d91096e61fF655eF8B4172a/logo.png new file mode 100644 index 00000000..f94640d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x462C642C9eC337425d91096e61fF655eF8B4172a/logo.png differ diff --git a/blockchains/ethereum/assets/0x462f85B7c8e1fd9f0D348DAdBc3b907124ce6c6A/info.json b/blockchains/ethereum/assets/0x462f85B7c8e1fd9f0D348DAdBc3b907124ce6c6A/info.json new file mode 100644 index 00000000..73776915 --- /dev/null +++ b/blockchains/ethereum/assets/0x462f85B7c8e1fd9f0D348DAdBc3b907124ce6c6A/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C560232", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x462f85B7c8e1fd9f0D348DAdBc3b907124ce6c6A", + "status": "abandoned", + "id": "0x462f85B7c8e1fd9f0D348DAdBc3b907124ce6c6A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x462f85B7c8e1fd9f0D348DAdBc3b907124ce6c6A/logo.png b/blockchains/ethereum/assets/0x462f85B7c8e1fd9f0D348DAdBc3b907124ce6c6A/logo.png new file mode 100644 index 00000000..4df452bb Binary files /dev/null and b/blockchains/ethereum/assets/0x462f85B7c8e1fd9f0D348DAdBc3b907124ce6c6A/logo.png differ diff --git a/blockchains/ethereum/assets/0x4639cd8cd52EC1CF2E496a606ce28D8AfB1C792F/info.json b/blockchains/ethereum/assets/0x4639cd8cd52EC1CF2E496a606ce28D8AfB1C792F/info.json new file mode 100644 index 00000000..ebb9cd7e --- /dev/null +++ b/blockchains/ethereum/assets/0x4639cd8cd52EC1CF2E496a606ce28D8AfB1C792F/info.json @@ -0,0 +1,21 @@ +{ + "name": "CBDAO", + "website": "https://coinbreeder.com", + "description": "CBDAO serves as a sandbox to research and proof test various decentralized consensus protocols on DAOs.", + "explorer": "https://etherscan.io/token/0x4639cd8cd52EC1CF2E496a606ce28D8AfB1C792F", + "type": "ERC20", + "symbol": "BREE", + "decimals": 18, + "status": "active", + "id": "0x4639cd8cd52EC1CF2E496a606ce28D8AfB1C792F", + "links": [ + { + "name": "github", + "url": "https://github.com/coinbreeder/coinbreederDAO/" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1wdVdS1QMcmDLL2IwaXD4p3TD__YeVY7b/view" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4639cd8cd52EC1CF2E496a606ce28D8AfB1C792F/logo.png b/blockchains/ethereum/assets/0x4639cd8cd52EC1CF2E496a606ce28D8AfB1C792F/logo.png new file mode 100644 index 00000000..b6099208 Binary files /dev/null and b/blockchains/ethereum/assets/0x4639cd8cd52EC1CF2E496a606ce28D8AfB1C792F/logo.png differ diff --git a/blockchains/ethereum/assets/0x46492473755e8dF960F8034877F61732D718CE96/info.json b/blockchains/ethereum/assets/0x46492473755e8dF960F8034877F61732D718CE96/info.json new file mode 100644 index 00000000..80440a6b --- /dev/null +++ b/blockchains/ethereum/assets/0x46492473755e8dF960F8034877F61732D718CE96/info.json @@ -0,0 +1,11 @@ +{ + "name": "StarCredits", + "symbol": "STRC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x46492473755e8dF960F8034877F61732D718CE96", + "status": "abandoned", + "id": "0x46492473755e8dF960F8034877F61732D718CE96" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x46492473755e8dF960F8034877F61732D718CE96/logo.png b/blockchains/ethereum/assets/0x46492473755e8dF960F8034877F61732D718CE96/logo.png new file mode 100644 index 00000000..8bd4d270 Binary files /dev/null and b/blockchains/ethereum/assets/0x46492473755e8dF960F8034877F61732D718CE96/logo.png differ diff --git a/blockchains/ethereum/assets/0x464BADdcE9BD32581a7d59D9Bb8350c7C7764668/info.json b/blockchains/ethereum/assets/0x464BADdcE9BD32581a7d59D9Bb8350c7C7764668/info.json new file mode 100644 index 00000000..b346c08a --- /dev/null +++ b/blockchains/ethereum/assets/0x464BADdcE9BD32581a7d59D9Bb8350c7C7764668/info.json @@ -0,0 +1,11 @@ +{ + "name": "Viuly Token", + "symbol": "VIU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x464BADdcE9BD32581a7d59D9Bb8350c7C7764668", + "status": "abandoned", + "id": "0x464BADdcE9BD32581a7d59D9Bb8350c7C7764668" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x464BADdcE9BD32581a7d59D9Bb8350c7C7764668/logo.png b/blockchains/ethereum/assets/0x464BADdcE9BD32581a7d59D9Bb8350c7C7764668/logo.png new file mode 100644 index 00000000..6525d0b7 Binary files /dev/null and b/blockchains/ethereum/assets/0x464BADdcE9BD32581a7d59D9Bb8350c7C7764668/logo.png differ diff --git a/blockchains/ethereum/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/info.json b/blockchains/ethereum/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/info.json new file mode 100644 index 00000000..02b709e8 --- /dev/null +++ b/blockchains/ethereum/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/info.json @@ -0,0 +1,25 @@ +{ + "name": "REALM Token", + "website": "https://realm.art", + "description": "REALM is the native token of the Realm metaverse.", + "explorer": "https://etherscan.io/token/0x464fdb8affc9bac185a7393fd4298137866dcfb8", + "type": "ERC20", + "symbol": "REALM", + "decimals": 18, + "status": "active", + "id": "0x464FdB8AFFC9bac185A7393fd4298137866DCFB8", + "links": [ + { + "name": "x", + "url": "https://x.com/Enter_Realm" + }, + { + "name": "telegram", + "url": "https://t.me/Enter_Realm" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/realm" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/logo.png b/blockchains/ethereum/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/logo.png new file mode 100644 index 00000000..17d83d4b Binary files /dev/null and b/blockchains/ethereum/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/logo.png differ diff --git a/blockchains/ethereum/assets/0x464eBE77c293E473B48cFe96dDCf88fcF7bFDAC0/info.json b/blockchains/ethereum/assets/0x464eBE77c293E473B48cFe96dDCf88fcF7bFDAC0/info.json new file mode 100644 index 00000000..1806c50a --- /dev/null +++ b/blockchains/ethereum/assets/0x464eBE77c293E473B48cFe96dDCf88fcF7bFDAC0/info.json @@ -0,0 +1,37 @@ +{ + "name": "Kryll.io Token", + "symbol": "KRL", + "type": "ERC20", + "decimals": 18, + "description": "Kryll integrates with the main exchanges, allowing you to centralize your portfolio and trade more easily! New exchanges are added regularly", + "website": "https://kryll.io/", + "explorer": "https://etherscan.io/token/0x464eBE77c293E473B48cFe96dDCf88fcF7bFDAC0", + "status": "active", + "id": "0x464eBE77c293E473B48cFe96dDCf88fcF7bFDAC0", + "links": [ + { + "name": "github", + "url": "https://github.com/Cryptense/" + }, + { + "name": "x", + "url": "https://x.com/kryll_io" + }, + { + "name": "telegram", + "url": "https://t.me/kryll_io" + }, + { + "name": "facebook", + "url": "https://facebook.com/kryll.io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kryll/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kryll/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x464eBE77c293E473B48cFe96dDCf88fcF7bFDAC0/logo.png b/blockchains/ethereum/assets/0x464eBE77c293E473B48cFe96dDCf88fcF7bFDAC0/logo.png new file mode 100644 index 00000000..5669dc3f Binary files /dev/null and b/blockchains/ethereum/assets/0x464eBE77c293E473B48cFe96dDCf88fcF7bFDAC0/logo.png differ diff --git a/blockchains/ethereum/assets/0x46576e20EC5F25586A6Fa2E0d6B6058354B72E72/info.json b/blockchains/ethereum/assets/0x46576e20EC5F25586A6Fa2E0d6B6058354B72E72/info.json new file mode 100644 index 00000000..7fa5cf79 --- /dev/null +++ b/blockchains/ethereum/assets/0x46576e20EC5F25586A6Fa2E0d6B6058354B72E72/info.json @@ -0,0 +1,25 @@ +{ + "name": "Cryptomind", + "website": "https://cryptomindex.com", + "description": "The main token of Cryptomindex exchange", + "explorer": "https://etherscan.io/token/0x46576e20EC5F25586A6Fa2E0d6B6058354B72E72", + "type": "ERC20", + "symbol": "CR", + "decimals": 8, + "status": "active", + "id": "0x46576e20EC5F25586A6Fa2E0d6B6058354B72E72", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/cryptomindex" + }, + { + "name": "x", + "url": "https://x.com/cryptomindex1" + }, + { + "name": "telegram", + "url": "https://t.me/cryptomindex" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x46576e20EC5F25586A6Fa2E0d6B6058354B72E72/logo.png b/blockchains/ethereum/assets/0x46576e20EC5F25586A6Fa2E0d6B6058354B72E72/logo.png new file mode 100644 index 00000000..5194383b Binary files /dev/null and b/blockchains/ethereum/assets/0x46576e20EC5F25586A6Fa2E0d6B6058354B72E72/logo.png differ diff --git a/blockchains/ethereum/assets/0x466912bAA9430a4a460b141ee8C580D817441449/info.json b/blockchains/ethereum/assets/0x466912bAA9430a4a460b141ee8C580D817441449/info.json new file mode 100644 index 00000000..3e6053e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x466912bAA9430a4a460b141ee8C580D817441449/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ocbtoken - Blockmax", + "symbol": "OCB", + "type": "ERC20", + "decimals": 18, + "description": "Blockmax (OCB) claims to be a Startup project with the goal of retail payment mobilizing capital and developing services in the Crypto field and payment in life.", + "website": "https://blockmax.io/", + "explorer": "https://etherscan.io/token/0x466912bAA9430a4a460b141ee8C580D817441449", + "status": "active", + "id": "0x466912bAA9430a4a460b141ee8C580D817441449" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x466912bAA9430a4a460b141ee8C580D817441449/logo.png b/blockchains/ethereum/assets/0x466912bAA9430a4a460b141ee8C580D817441449/logo.png new file mode 100644 index 00000000..a3254021 Binary files /dev/null and b/blockchains/ethereum/assets/0x466912bAA9430a4a460b141ee8C580D817441449/logo.png differ diff --git a/blockchains/ethereum/assets/0x4672bAD527107471cB5067a887f4656D585a8A31/info.json b/blockchains/ethereum/assets/0x4672bAD527107471cB5067a887f4656D585a8A31/info.json new file mode 100644 index 00000000..846840e4 --- /dev/null +++ b/blockchains/ethereum/assets/0x4672bAD527107471cB5067a887f4656D585a8A31/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dropil", + "symbol": "DROP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://dropil.com/", + "explorer": "https://etherscan.io/token/0x4672bAD527107471cB5067a887f4656D585a8A31", + "status": "abandoned", + "id": "0x4672bAD527107471cB5067a887f4656D585a8A31" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4672bAD527107471cB5067a887f4656D585a8A31/logo.png b/blockchains/ethereum/assets/0x4672bAD527107471cB5067a887f4656D585a8A31/logo.png new file mode 100644 index 00000000..d4ceea77 Binary files /dev/null and b/blockchains/ethereum/assets/0x4672bAD527107471cB5067a887f4656D585a8A31/logo.png differ diff --git a/blockchains/ethereum/assets/0x4674672BcDdDA2ea5300F5207E1158185c944bc0/info.json b/blockchains/ethereum/assets/0x4674672BcDdDA2ea5300F5207E1158185c944bc0/info.json new file mode 100644 index 00000000..cf5b3887 --- /dev/null +++ b/blockchains/ethereum/assets/0x4674672BcDdDA2ea5300F5207E1158185c944bc0/info.json @@ -0,0 +1,32 @@ +{ + "name": "Gem Exchange and Trading", + "website": "https://www.gxtglobal.com/en/index.html", + "description": "GXT, the pioneer of NFT and Diamond Distribution evolves with no limit.", + "explorer": "https://etherscan.io/token/0x4674672BcDdDA2ea5300F5207E1158185c944bc0", + "type": "ERC20", + "symbol": "GXT", + "decimals": 18, + "status": "active", + "id": "0x4674672BcDdDA2ea5300F5207E1158185c944bc0", + "links": [ + { + "name": "github", + "url": "https://github.com/gxtmg/gxt_erc20" + }, + { + "name": "x", + "url": "https://x.com/GXT25075644" + }, + { + "name": "telegram", + "url": "https://t.me/gxtglobal_official" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gem-exchange-and-trading" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4674672BcDdDA2ea5300F5207E1158185c944bc0/logo.png b/blockchains/ethereum/assets/0x4674672BcDdDA2ea5300F5207E1158185c944bc0/logo.png new file mode 100644 index 00000000..f4ce4d24 Binary files /dev/null and b/blockchains/ethereum/assets/0x4674672BcDdDA2ea5300F5207E1158185c944bc0/logo.png differ diff --git a/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json b/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json new file mode 100644 index 00000000..c6a35c99 --- /dev/null +++ b/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json @@ -0,0 +1,68 @@ +{ + "name": "Axelar", + "type": "ERC20", + "symbol": "AXL", + "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://etherscan.io/token/0x467719aD09025FcC6cF6F8311755809d45a5E5f3", + "status": "active", + "id": "0x467719aD09025FcC6cF6F8311755809d45a5E5f3", + "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" + }, + { + "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/axelar/" + }, + { + "name": "blog", + "url": "https://axelar.network/blog" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Axelarcore" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/logo.png b/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/logo.png new file mode 100644 index 00000000..6c156aba Binary files /dev/null and b/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/logo.png differ diff --git a/blockchains/ethereum/assets/0x467Bccd9d29f223BcE8043b84E8C8B282827790F/info.json b/blockchains/ethereum/assets/0x467Bccd9d29f223BcE8043b84E8C8B282827790F/info.json new file mode 100644 index 00000000..60470552 --- /dev/null +++ b/blockchains/ethereum/assets/0x467Bccd9d29f223BcE8043b84E8C8B282827790F/info.json @@ -0,0 +1,41 @@ +{ + "name": "Telcoin", + "symbol": "TEL", + "type": "ERC20", + "decimals": 2, + "description": "Telcoin (TEL) is an Ethereum-based decentralized crypto established.", + "website": "http://www.telco.in", + "explorer": "https://etherscan.io/token/0x467Bccd9d29f223BcE8043b84E8C8B282827790F", + "status": "active", + "id": "0x467Bccd9d29f223BcE8043b84E8C8B282827790F", + "links": [ + { + "name": "github", + "url": "https://github.com/telcoin" + }, + { + "name": "x", + "url": "https://x.com/telcoin_team" + }, + { + "name": "blog", + "url": "https://medium.com/@telcoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/telcoin/" + }, + { + "name": "telegram", + "url": "https://t.me/telcoincommunity" + }, + { + "name": "whitepaper", + "url": "https://telco.in/docs/whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/telcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x467Bccd9d29f223BcE8043b84E8C8B282827790F/logo.png b/blockchains/ethereum/assets/0x467Bccd9d29f223BcE8043b84E8C8B282827790F/logo.png new file mode 100644 index 00000000..f090cd21 Binary files /dev/null and b/blockchains/ethereum/assets/0x467Bccd9d29f223BcE8043b84E8C8B282827790F/logo.png differ diff --git a/blockchains/ethereum/assets/0x4689a4e169eB39cC9078C0940e21ff1Aa8A39B9C/info.json b/blockchains/ethereum/assets/0x4689a4e169eB39cC9078C0940e21ff1Aa8A39B9C/info.json new file mode 100644 index 00000000..58d5677c --- /dev/null +++ b/blockchains/ethereum/assets/0x4689a4e169eB39cC9078C0940e21ff1Aa8A39B9C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Proton Token", + "symbol": "PTT", + "type": "ERC20", + "decimals": 18, + "description": "Proton is a public chain that is dedicated to data fusion and collaboration.", + "website": "https://www.proton.global/", + "explorer": "https://etherscan.io/token/0x4689a4e169eB39cC9078C0940e21ff1Aa8A39B9C", + "status": "active", + "id": "0x4689a4e169eB39cC9078C0940e21ff1Aa8A39B9C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4689a4e169eB39cC9078C0940e21ff1Aa8A39B9C/logo.png b/blockchains/ethereum/assets/0x4689a4e169eB39cC9078C0940e21ff1Aa8A39B9C/logo.png new file mode 100755 index 00000000..e8981e90 Binary files /dev/null and b/blockchains/ethereum/assets/0x4689a4e169eB39cC9078C0940e21ff1Aa8A39B9C/logo.png differ diff --git a/blockchains/ethereum/assets/0x468ab3b1f63A1C14b361bC367c3cC92277588Da1/info.json b/blockchains/ethereum/assets/0x468ab3b1f63A1C14b361bC367c3cC92277588Da1/info.json new file mode 100644 index 00000000..2589257b --- /dev/null +++ b/blockchains/ethereum/assets/0x468ab3b1f63A1C14b361bC367c3cC92277588Da1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Yeld Finance", + "website": "https://yeld.finance", + "description": "Yeld is the next generation in DeFi yield farming products.", + "explorer": "https://etherscan.io/token/0x468ab3b1f63A1C14b361bC367c3cC92277588Da1", + "type": "ERC20", + "symbol": "YELD", + "decimals": 18, + "status": "active", + "id": "0x468ab3b1f63A1C14b361bC367c3cC92277588Da1", + "links": [ + { + "name": "github", + "url": "https://github.com/merlox/yeld-website" + }, + { + "name": "whitepaper", + "url": "https://yeld.finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x468ab3b1f63A1C14b361bC367c3cC92277588Da1/logo.png b/blockchains/ethereum/assets/0x468ab3b1f63A1C14b361bC367c3cC92277588Da1/logo.png new file mode 100644 index 00000000..33a60731 Binary files /dev/null and b/blockchains/ethereum/assets/0x468ab3b1f63A1C14b361bC367c3cC92277588Da1/logo.png differ diff --git a/blockchains/ethereum/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/info.json b/blockchains/ethereum/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/info.json new file mode 100644 index 00000000..88b0c41d --- /dev/null +++ b/blockchains/ethereum/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/info.json @@ -0,0 +1,33 @@ +{ + "name": "WOO Network", + "type": "ERC20", + "symbol": "WOO", + "decimals": 18, + "website": "https://woo.network", + "description": "Wootrade is a layer one trading infrastructure complete with deep liquidity, frontend trading GUI, and the ability to integrate into any exchange, trading desk, wallet, dApp, or other trading-related platform.", + "explorer": "https://etherscan.io/token/0x4691937a7508860f876c9c0a2a617e7d9e945d4b", + "status": "active", + "id": "0x4691937a7508860F876c9c0a2a617E7d9E945D4B", + "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/ethereum/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/logo.png b/blockchains/ethereum/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/logo.png new file mode 100644 index 00000000..6a4f498c Binary files /dev/null and b/blockchains/ethereum/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/logo.png differ diff --git a/blockchains/ethereum/assets/0x469861BDfd02E7ebCE7CdEb281e8EEC53069cf5f/info.json b/blockchains/ethereum/assets/0x469861BDfd02E7ebCE7CdEb281e8EEC53069cf5f/info.json new file mode 100644 index 00000000..9d80babd --- /dev/null +++ b/blockchains/ethereum/assets/0x469861BDfd02E7ebCE7CdEb281e8EEC53069cf5f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Flame Token", + "symbol": "XFL", + "type": "ERC20", + "decimals": 18, + "description": "Flame Token is the native currency of Sharesome, the first social discovery network for adult content creators and brands.", + "website": "https://flametoken.io", + "explorer": "https://etherscan.io/token/0x469861BDfd02E7ebCE7CdEb281e8EEC53069cf5f", + "status": "active", + "id": "0x469861BDfd02E7ebCE7CdEb281e8EEC53069cf5f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x469861BDfd02E7ebCE7CdEb281e8EEC53069cf5f/logo.png b/blockchains/ethereum/assets/0x469861BDfd02E7ebCE7CdEb281e8EEC53069cf5f/logo.png new file mode 100644 index 00000000..bc725a58 Binary files /dev/null and b/blockchains/ethereum/assets/0x469861BDfd02E7ebCE7CdEb281e8EEC53069cf5f/logo.png differ diff --git a/blockchains/ethereum/assets/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59/info.json b/blockchains/ethereum/assets/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59/info.json new file mode 100644 index 00000000..f0b5df72 --- /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 00000000..0a6dc86b Binary files /dev/null and b/blockchains/ethereum/assets/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59/logo.png differ diff --git a/blockchains/ethereum/assets/0x469eDA64aEd3A3Ad6f868c44564291aA415cB1d9/info.json b/blockchains/ethereum/assets/0x469eDA64aEd3A3Ad6f868c44564291aA415cB1d9/info.json new file mode 100644 index 00000000..97f96feb --- /dev/null +++ b/blockchains/ethereum/assets/0x469eDA64aEd3A3Ad6f868c44564291aA415cB1d9/info.json @@ -0,0 +1,11 @@ +{ + "name": "FLUX", + "symbol": "FLUX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://damcrypto.com", + "explorer": "https://etherscan.io/token/0x469eDA64aEd3A3Ad6f868c44564291aA415cB1d9", + "status": "active", + "id": "0x469eDA64aEd3A3Ad6f868c44564291aA415cB1d9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x469eDA64aEd3A3Ad6f868c44564291aA415cB1d9/logo.png b/blockchains/ethereum/assets/0x469eDA64aEd3A3Ad6f868c44564291aA415cB1d9/logo.png new file mode 100644 index 00000000..2a713c83 Binary files /dev/null and b/blockchains/ethereum/assets/0x469eDA64aEd3A3Ad6f868c44564291aA415cB1d9/logo.png differ diff --git a/blockchains/ethereum/assets/0x46BADA28009B340D2faE1FDbab2fDf6039e00d60/info.json b/blockchains/ethereum/assets/0x46BADA28009B340D2faE1FDbab2fDf6039e00d60/info.json new file mode 100644 index 00000000..b04a2d9a --- /dev/null +++ b/blockchains/ethereum/assets/0x46BADA28009B340D2faE1FDbab2fDf6039e00d60/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tyche Share", + "symbol": "TSH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x46BADA28009B340D2faE1FDbab2fDf6039e00d60", + "status": "abandoned", + "id": "0x46BADA28009B340D2faE1FDbab2fDf6039e00d60" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x46BADA28009B340D2faE1FDbab2fDf6039e00d60/logo.png b/blockchains/ethereum/assets/0x46BADA28009B340D2faE1FDbab2fDf6039e00d60/logo.png new file mode 100644 index 00000000..f6f8668c Binary files /dev/null and b/blockchains/ethereum/assets/0x46BADA28009B340D2faE1FDbab2fDf6039e00d60/logo.png differ diff --git a/blockchains/ethereum/assets/0x46BB4576993f50302Bb0d5F7440aEffBABFDBB78/info.json b/blockchains/ethereum/assets/0x46BB4576993f50302Bb0d5F7440aEffBABFDBB78/info.json new file mode 100644 index 00000000..8e118690 --- /dev/null +++ b/blockchains/ethereum/assets/0x46BB4576993f50302Bb0d5F7440aEffBABFDBB78/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short ETH-DAI 4x v2", + "symbol": "dsETH4x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x46BB4576993f50302Bb0d5F7440aEffBABFDBB78", + "status": "abandoned", + "id": "0x46BB4576993f50302Bb0d5F7440aEffBABFDBB78" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x46BB4576993f50302Bb0d5F7440aEffBABFDBB78/logo.png b/blockchains/ethereum/assets/0x46BB4576993f50302Bb0d5F7440aEffBABFDBB78/logo.png new file mode 100644 index 00000000..2978ea32 Binary files /dev/null and b/blockchains/ethereum/assets/0x46BB4576993f50302Bb0d5F7440aEffBABFDBB78/logo.png differ diff --git a/blockchains/ethereum/assets/0x46C440EA7C7d06559d46640112FC78F7Ab5a0262/info.json b/blockchains/ethereum/assets/0x46C440EA7C7d06559d46640112FC78F7Ab5a0262/info.json new file mode 100644 index 00000000..26dae637 --- /dev/null +++ b/blockchains/ethereum/assets/0x46C440EA7C7d06559d46640112FC78F7Ab5a0262/info.json @@ -0,0 +1,11 @@ +{ + "name": "EURO", + "symbol": "EURO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x46C440EA7C7d06559d46640112FC78F7Ab5a0262", + "status": "abandoned", + "id": "0x46C440EA7C7d06559d46640112FC78F7Ab5a0262" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x46C440EA7C7d06559d46640112FC78F7Ab5a0262/logo.png b/blockchains/ethereum/assets/0x46C440EA7C7d06559d46640112FC78F7Ab5a0262/logo.png new file mode 100644 index 00000000..13486a94 Binary files /dev/null and b/blockchains/ethereum/assets/0x46C440EA7C7d06559d46640112FC78F7Ab5a0262/logo.png differ diff --git a/blockchains/ethereum/assets/0x46D886887B6908183032c75dee1b731B26D653c6/info.json b/blockchains/ethereum/assets/0x46D886887B6908183032c75dee1b731B26D653c6/info.json new file mode 100644 index 00000000..6cab2d62 --- /dev/null +++ b/blockchains/ethereum/assets/0x46D886887B6908183032c75dee1b731B26D653c6/info.json @@ -0,0 +1,21 @@ +{ + "name": "GreenCoin", + "website": "https://greenflows.com/", + "description": "GreenCoin is a decentralized web3 protocol that combines sustainable health data with blockchain technology.", + "explorer": "https://etherscan.io/token/0x46d886887b6908183032c75dee1b731b26d653c6", + "type": "ERC20", + "symbol": "GRC", + "decimals": 18, + "status": "active", + "id": "0x46D886887B6908183032c75dee1b731B26D653c6", + "links": [ + { + "name": "whitepaper", + "url": "https://greenflows.gitbook.io/litepaper/" + }, + { + "name": "x", + "url": "https://x.com/greenflowstech" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x46D886887B6908183032c75dee1b731B26D653c6/logo.png b/blockchains/ethereum/assets/0x46D886887B6908183032c75dee1b731B26D653c6/logo.png new file mode 100644 index 00000000..0fd5737e Binary files /dev/null and b/blockchains/ethereum/assets/0x46D886887B6908183032c75dee1b731B26D653c6/logo.png differ diff --git a/blockchains/ethereum/assets/0x46DF69F7Ceb367dA359fCd02f5b2665133877ef6/info.json b/blockchains/ethereum/assets/0x46DF69F7Ceb367dA359fCd02f5b2665133877ef6/info.json new file mode 100644 index 00000000..e86fe51a --- /dev/null +++ b/blockchains/ethereum/assets/0x46DF69F7Ceb367dA359fCd02f5b2665133877ef6/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 059-CN40", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x46DF69F7Ceb367dA359fCd02f5b2665133877ef6", + "status": "abandoned", + "id": "0x46DF69F7Ceb367dA359fCd02f5b2665133877ef6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x46DF69F7Ceb367dA359fCd02f5b2665133877ef6/logo.png b/blockchains/ethereum/assets/0x46DF69F7Ceb367dA359fCd02f5b2665133877ef6/logo.png new file mode 100644 index 00000000..47066ec4 Binary files /dev/null and b/blockchains/ethereum/assets/0x46DF69F7Ceb367dA359fCd02f5b2665133877ef6/logo.png differ diff --git a/blockchains/ethereum/assets/0x46ae264Bf6d9Dc6Dd84c31064551f961c67a755c/info.json b/blockchains/ethereum/assets/0x46ae264Bf6d9Dc6Dd84c31064551f961c67a755c/info.json new file mode 100644 index 00000000..38d25ba1 --- /dev/null +++ b/blockchains/ethereum/assets/0x46ae264Bf6d9Dc6Dd84c31064551f961c67a755c/info.json @@ -0,0 +1,11 @@ +{ + "name": "HOT", + "symbol": "HTX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x46ae264Bf6d9Dc6Dd84c31064551f961c67a755c", + "status": "abandoned", + "id": "0x46ae264Bf6d9Dc6Dd84c31064551f961c67a755c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x46ae264Bf6d9Dc6Dd84c31064551f961c67a755c/logo.png b/blockchains/ethereum/assets/0x46ae264Bf6d9Dc6Dd84c31064551f961c67a755c/logo.png new file mode 100644 index 00000000..8bb9bbb7 Binary files /dev/null and b/blockchains/ethereum/assets/0x46ae264Bf6d9Dc6Dd84c31064551f961c67a755c/logo.png differ diff --git a/blockchains/ethereum/assets/0x46b9Ad944d1059450Da1163511069C718F699D31/info.json b/blockchains/ethereum/assets/0x46b9Ad944d1059450Da1163511069C718F699D31/info.json new file mode 100644 index 00000000..4196ed4d --- /dev/null +++ b/blockchains/ethereum/assets/0x46b9Ad944d1059450Da1163511069C718F699D31/info.json @@ -0,0 +1,11 @@ +{ + "name": "CREDITS", + "symbol": "CS", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://credits.com", + "explorer": "https://etherscan.io/token/0x46b9Ad944d1059450Da1163511069C718F699D31", + "status": "abandoned", + "id": "0x46b9Ad944d1059450Da1163511069C718F699D31" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x46b9Ad944d1059450Da1163511069C718F699D31/logo.png b/blockchains/ethereum/assets/0x46b9Ad944d1059450Da1163511069C718F699D31/logo.png new file mode 100644 index 00000000..2ce1f6c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x46b9Ad944d1059450Da1163511069C718F699D31/logo.png differ diff --git a/blockchains/ethereum/assets/0x46c0A02A877C1412CB32B57028B2F771c0364a7E/info.json b/blockchains/ethereum/assets/0x46c0A02A877C1412CB32B57028B2F771c0364a7E/info.json new file mode 100644 index 00000000..3bbe95a8 --- /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 00000000..4d148ee9 Binary files /dev/null and b/blockchains/ethereum/assets/0x46c0A02A877C1412CB32B57028B2F771c0364a7E/logo.png differ diff --git a/blockchains/ethereum/assets/0x46cc7EC70746F4cbd56CE5FA9Bb7d648398EaA5C/info.json b/blockchains/ethereum/assets/0x46cc7EC70746F4cbd56CE5FA9Bb7d648398EaA5C/info.json new file mode 100644 index 00000000..b046c974 --- /dev/null +++ b/blockchains/ethereum/assets/0x46cc7EC70746F4cbd56CE5FA9Bb7d648398EaA5C/info.json @@ -0,0 +1,11 @@ +{ + "name": "REAL-T", + "symbol": "REALT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x46cc7EC70746F4cbd56CE5FA9Bb7d648398EaA5C", + "status": "abandoned", + "id": "0x46cc7EC70746F4cbd56CE5FA9Bb7d648398EaA5C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x46cc7EC70746F4cbd56CE5FA9Bb7d648398EaA5C/logo.png b/blockchains/ethereum/assets/0x46cc7EC70746F4cbd56CE5FA9Bb7d648398EaA5C/logo.png new file mode 100644 index 00000000..8ec12a06 Binary files /dev/null and b/blockchains/ethereum/assets/0x46cc7EC70746F4cbd56CE5FA9Bb7d648398EaA5C/logo.png differ diff --git a/blockchains/ethereum/assets/0x46ecB2C725a811f54ee94b16E0eBB70740B5556D/info.json b/blockchains/ethereum/assets/0x46ecB2C725a811f54ee94b16E0eBB70740B5556D/info.json new file mode 100644 index 00000000..ad600092 --- /dev/null +++ b/blockchains/ethereum/assets/0x46ecB2C725a811f54ee94b16E0eBB70740B5556D/info.json @@ -0,0 +1,11 @@ +{ + "name": "YasudaCrypto Economy", + "symbol": "YSDEC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x46ecB2C725a811f54ee94b16E0eBB70740B5556D", + "status": "abandoned", + "id": "0x46ecB2C725a811f54ee94b16E0eBB70740B5556D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x46ecB2C725a811f54ee94b16E0eBB70740B5556D/logo.png b/blockchains/ethereum/assets/0x46ecB2C725a811f54ee94b16E0eBB70740B5556D/logo.png new file mode 100644 index 00000000..9df4fe3a Binary files /dev/null and b/blockchains/ethereum/assets/0x46ecB2C725a811f54ee94b16E0eBB70740B5556D/logo.png differ diff --git a/blockchains/ethereum/assets/0x46ffe978F4cf28E7135804FF244B6CDc8Dc51377/info.json b/blockchains/ethereum/assets/0x46ffe978F4cf28E7135804FF244B6CDc8Dc51377/info.json new file mode 100644 index 00000000..a15c3e56 --- /dev/null +++ b/blockchains/ethereum/assets/0x46ffe978F4cf28E7135804FF244B6CDc8Dc51377/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRYPTONUTZ", + "symbol": "NUTZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x46ffe978F4cf28E7135804FF244B6CDc8Dc51377", + "status": "abandoned", + "id": "0x46ffe978F4cf28E7135804FF244B6CDc8Dc51377" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x46ffe978F4cf28E7135804FF244B6CDc8Dc51377/logo.png b/blockchains/ethereum/assets/0x46ffe978F4cf28E7135804FF244B6CDc8Dc51377/logo.png new file mode 100755 index 00000000..e1910ad1 Binary files /dev/null and b/blockchains/ethereum/assets/0x46ffe978F4cf28E7135804FF244B6CDc8Dc51377/logo.png differ diff --git a/blockchains/ethereum/assets/0x47000A7B27a75D44FfaDfe9D0B97fA04D569B323/info.json b/blockchains/ethereum/assets/0x47000A7B27a75D44FfaDfe9D0B97fA04D569B323/info.json new file mode 100644 index 00000000..abffd6ce --- /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 00000000..1f940b8e 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 new file mode 100644 index 00000000..c5de9505 --- /dev/null +++ b/blockchains/ethereum/assets/0x47110d43175f7f2C2425E7d15792acC5817EB44f/info.json @@ -0,0 +1,25 @@ +{ + "name": "Bankless DeFi Innovation Index", + "symbol": "GMI", + "type": "ERC20", + "decimals": 18, + "description": "The Bankless DeFi Innovation Index is a simple composite index which will be built on Set Protocol. The index screens for promising early stage DeFi projects which are not yet considered blue chip. GMI attempts to produce an optimal weighting via the use of a combination of square-root market cap, relative secondary market liquidity, and relative token dilution/emission scoring.", + "website": "https://indexcoop.com/", + "research": "https://banklesshq.com/", + "explorer": "https://etherscan.io/token/0x47110d43175f7f2C2425E7d15792acC5817EB44f", + "status": "active", + "id": "0x47110d43175f7f2C2425E7d15792acC5817EB44f", + "tags": [ + "defi" + ], + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/indexcoop" + }, + { + "name": "x", + "url": "https://x.com/indexcoop" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47110d43175f7f2C2425E7d15792acC5817EB44f/logo.png b/blockchains/ethereum/assets/0x47110d43175f7f2C2425E7d15792acC5817EB44f/logo.png new file mode 100644 index 00000000..a71f48ae Binary files /dev/null and b/blockchains/ethereum/assets/0x47110d43175f7f2C2425E7d15792acC5817EB44f/logo.png differ diff --git a/blockchains/ethereum/assets/0x471dAEE6E481b2ab7d2f2f64B8F9B083daAe29da/info.json b/blockchains/ethereum/assets/0x471dAEE6E481b2ab7d2f2f64B8F9B083daAe29da/info.json new file mode 100644 index 00000000..967c9931 --- /dev/null +++ b/blockchains/ethereum/assets/0x471dAEE6E481b2ab7d2f2f64B8F9B083daAe29da/info.json @@ -0,0 +1,11 @@ +{ + "name": "LORDLESS HOPS", + "symbol": "HOPS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://lordless.io/", + "explorer": "https://etherscan.io/token/0x471dAEE6E481b2ab7d2f2f64B8F9B083daAe29da", + "status": "abandoned", + "id": "0x471dAEE6E481b2ab7d2f2f64B8F9B083daAe29da" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x471dAEE6E481b2ab7d2f2f64B8F9B083daAe29da/logo.png b/blockchains/ethereum/assets/0x471dAEE6E481b2ab7d2f2f64B8F9B083daAe29da/logo.png new file mode 100644 index 00000000..bf110cfa Binary files /dev/null and b/blockchains/ethereum/assets/0x471dAEE6E481b2ab7d2f2f64B8F9B083daAe29da/logo.png differ diff --git a/blockchains/ethereum/assets/0x47269FE8C07b3b7240c857F7560a4c5E12C1F01b/info.json b/blockchains/ethereum/assets/0x47269FE8C07b3b7240c857F7560a4c5E12C1F01b/info.json new file mode 100644 index 00000000..5a6ffdc5 --- /dev/null +++ b/blockchains/ethereum/assets/0x47269FE8C07b3b7240c857F7560a4c5E12C1F01b/info.json @@ -0,0 +1,11 @@ +{ + "name": "V-PALADINI TEST 2", + "symbol": "V", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x47269FE8C07b3b7240c857F7560a4c5E12C1F01b", + "status": "abandoned", + "id": "0x47269FE8C07b3b7240c857F7560a4c5E12C1F01b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47269FE8C07b3b7240c857F7560a4c5E12C1F01b/logo.png b/blockchains/ethereum/assets/0x47269FE8C07b3b7240c857F7560a4c5E12C1F01b/logo.png new file mode 100644 index 00000000..878f5009 Binary files /dev/null and b/blockchains/ethereum/assets/0x47269FE8C07b3b7240c857F7560a4c5E12C1F01b/logo.png differ diff --git a/blockchains/ethereum/assets/0x472d7f65E0C3b2C1f10bcc922ffac18A57E77d74/info.json b/blockchains/ethereum/assets/0x472d7f65E0C3b2C1f10bcc922ffac18A57E77d74/info.json new file mode 100644 index 00000000..e56ce618 --- /dev/null +++ b/blockchains/ethereum/assets/0x472d7f65E0C3b2C1f10bcc922ffac18A57E77d74/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alternate SX", + "symbol": "ASXIH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x472d7f65E0C3b2C1f10bcc922ffac18A57E77d74", + "status": "abandoned", + "id": "0x472d7f65E0C3b2C1f10bcc922ffac18A57E77d74" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x472d7f65E0C3b2C1f10bcc922ffac18A57E77d74/logo.png b/blockchains/ethereum/assets/0x472d7f65E0C3b2C1f10bcc922ffac18A57E77d74/logo.png new file mode 100644 index 00000000..71e385c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x472d7f65E0C3b2C1f10bcc922ffac18A57E77d74/logo.png differ diff --git a/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/info.json b/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/info.json new file mode 100644 index 00000000..7d8f0a7b --- /dev/null +++ b/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/info.json @@ -0,0 +1,25 @@ +{ + "name": "The 4th Pillar Token", + "symbol": "FOUR", + "type": "ERC20", + "decimals": 18, + "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": "x", + "url": "https://x.com/4pfour" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-4th-pillar" + } + ], + "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 new file mode 100644 index 00000000..b0d3e287 Binary files /dev/null and b/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x4738a58f7473054d166D569274Cf6E023034eC19/info.json b/blockchains/ethereum/assets/0x4738a58f7473054d166D569274Cf6E023034eC19/info.json new file mode 100644 index 00000000..fa191334 --- /dev/null +++ b/blockchains/ethereum/assets/0x4738a58f7473054d166D569274Cf6E023034eC19/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockchain Help Coin", + "symbol": "BCHP", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4738a58f7473054d166D569274Cf6E023034eC19", + "status": "abandoned", + "id": "0x4738a58f7473054d166D569274Cf6E023034eC19" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4738a58f7473054d166D569274Cf6E023034eC19/logo.png b/blockchains/ethereum/assets/0x4738a58f7473054d166D569274Cf6E023034eC19/logo.png new file mode 100644 index 00000000..1eef1906 Binary files /dev/null and b/blockchains/ethereum/assets/0x4738a58f7473054d166D569274Cf6E023034eC19/logo.png differ diff --git a/blockchains/ethereum/assets/0x474021845C4643113458ea4414bdb7fB74A01A77/info.json b/blockchains/ethereum/assets/0x474021845C4643113458ea4414bdb7fB74A01A77/info.json new file mode 100644 index 00000000..08183f0c --- /dev/null +++ b/blockchains/ethereum/assets/0x474021845C4643113458ea4414bdb7fB74A01A77/info.json @@ -0,0 +1,11 @@ +{ + "name": "UnoRe", + "type": "ERC20", + "symbol": "UNO", + "decimals": 18, + "website": "http://www.unore.io", + "description": "UnoRe will be the world’s first decentralized reinsurance platform powered by Polkadot, allowing the community to invest and trade in ‘risk’ and receive sizable returns on their investments in one of the safest asset classes in the world.", + "explorer": "https://etherscan.io/token/0x474021845c4643113458ea4414bdb7fb74a01a77", + "status": "active", + "id": "0x474021845C4643113458ea4414bdb7fB74A01A77" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x474021845C4643113458ea4414bdb7fB74A01A77/logo.png b/blockchains/ethereum/assets/0x474021845C4643113458ea4414bdb7fB74A01A77/logo.png new file mode 100644 index 00000000..30ccb3e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x474021845C4643113458ea4414bdb7fB74A01A77/logo.png differ diff --git a/blockchains/ethereum/assets/0x4740735AA98Dc8aa232BD049f8F0210458E7fCa3/info.json b/blockchains/ethereum/assets/0x4740735AA98Dc8aa232BD049f8F0210458E7fCa3/info.json new file mode 100644 index 00000000..d6c8a691 --- /dev/null +++ b/blockchains/ethereum/assets/0x4740735AA98Dc8aa232BD049f8F0210458E7fCa3/info.json @@ -0,0 +1,53 @@ +{ + "name": "Ridotto Token", + "symbol": "RDT", + "type": "ERC20", + "decimals": 18, + "description": "RDT is the native token for the Ridotto cross-chain gambling & lottery protocol.", + "website": "https://ridotto.io", + "explorer": "https://etherscan.io/token/0x4740735AA98Dc8aa232BD049f8F0210458E7fCa3", + "status": "active", + "id": "0x4740735AA98Dc8aa232BD049f8F0210458E7fCa3", + "links": [ + { + "name": "x", + "url": "https://x.com/ridotto_io" + }, + { + "name": "github", + "url": "https://github.com/ridotto-io" + }, + { + "name": "telegram", + "url": "https://t.me/ridotto_community" + }, + { + "name": "telegram_news", + "url": "https://t.me/ridotto_io" + }, + { + "name": "discord", + "url": "https://discord.com/invite/qAXNArk2KU" + }, + { + "name": "medium", + "url": "https://ridotto-io.medium.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ridotto_io" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCxumaSF7pnu29f5kU4FAJbw" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ridotto/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ridotto" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4740735AA98Dc8aa232BD049f8F0210458E7fCa3/logo.png b/blockchains/ethereum/assets/0x4740735AA98Dc8aa232BD049f8F0210458E7fCa3/logo.png new file mode 100644 index 00000000..77a0d0ea Binary files /dev/null and b/blockchains/ethereum/assets/0x4740735AA98Dc8aa232BD049f8F0210458E7fCa3/logo.png differ diff --git a/blockchains/ethereum/assets/0x47632dA9227E322EDa59F9e7691eAcC6430Ac87C/info.json b/blockchains/ethereum/assets/0x47632dA9227E322EDa59F9e7691eAcC6430Ac87C/info.json new file mode 100644 index 00000000..dbca5b9a --- /dev/null +++ b/blockchains/ethereum/assets/0x47632dA9227E322EDa59F9e7691eAcC6430Ac87C/info.json @@ -0,0 +1,11 @@ +{ + "name": "YFIBusiness.Finance (YFIB)", + "website": "https://yfibusiness.finance", + "description": "A DeFi powerhouse at the center of the hottest trend in the crypto industry.", + "explorer": "https://etherscan.io/token/0x47632dA9227E322EDa59F9e7691eAcC6430Ac87C", + "type": "ERC20", + "symbol": "YFIB", + "decimals": 18, + "status": "active", + "id": "0x47632dA9227E322EDa59F9e7691eAcC6430Ac87C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47632dA9227E322EDa59F9e7691eAcC6430Ac87C/logo.png b/blockchains/ethereum/assets/0x47632dA9227E322EDa59F9e7691eAcC6430Ac87C/logo.png new file mode 100644 index 00000000..4c691739 Binary files /dev/null and b/blockchains/ethereum/assets/0x47632dA9227E322EDa59F9e7691eAcC6430Ac87C/logo.png differ diff --git a/blockchains/ethereum/assets/0x476c5E26a75bd202a9683ffD34359C0CC15be0fF/info.json b/blockchains/ethereum/assets/0x476c5E26a75bd202a9683ffD34359C0CC15be0fF/info.json new file mode 100644 index 00000000..2f37a184 --- /dev/null +++ b/blockchains/ethereum/assets/0x476c5E26a75bd202a9683ffD34359C0CC15be0fF/info.json @@ -0,0 +1,15 @@ +{ + "name": "Serum", + "website": "https://projectserum.com", + "description": "Project Serum describes itself as a functional decentralized exchange with trustless cross-chain trading, at the speed and price that customers want.", + "explorer": "https://etherscan.io/token/0x476c5E26a75bd202a9683ffD34359C0CC15be0fF", + "research": "https://research.binance.com/en/projects/serum", + "type": "ERC20", + "symbol": "SRM", + "decimals": 6, + "status": "active", + "id": "0x476c5E26a75bd202a9683ffD34359C0CC15be0fF", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x476c5E26a75bd202a9683ffD34359C0CC15be0fF/logo.png b/blockchains/ethereum/assets/0x476c5E26a75bd202a9683ffD34359C0CC15be0fF/logo.png new file mode 100644 index 00000000..4aed91f9 Binary files /dev/null and b/blockchains/ethereum/assets/0x476c5E26a75bd202a9683ffD34359C0CC15be0fF/logo.png differ diff --git a/blockchains/ethereum/assets/0x47740A5ac376f6e95464A1FAfFB0D980944Cf4Bf/info.json b/blockchains/ethereum/assets/0x47740A5ac376f6e95464A1FAfFB0D980944Cf4Bf/info.json new file mode 100644 index 00000000..6323ec6c --- /dev/null +++ b/blockchains/ethereum/assets/0x47740A5ac376f6e95464A1FAfFB0D980944Cf4Bf/info.json @@ -0,0 +1,11 @@ +{ + "name": "RotasDoGarimpo", + "symbol": "RDG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x47740A5ac376f6e95464A1FAfFB0D980944Cf4Bf", + "status": "abandoned", + "id": "0x47740A5ac376f6e95464A1FAfFB0D980944Cf4Bf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47740A5ac376f6e95464A1FAfFB0D980944Cf4Bf/logo.png b/blockchains/ethereum/assets/0x47740A5ac376f6e95464A1FAfFB0D980944Cf4Bf/logo.png new file mode 100755 index 00000000..69c53039 Binary files /dev/null and b/blockchains/ethereum/assets/0x47740A5ac376f6e95464A1FAfFB0D980944Cf4Bf/logo.png differ diff --git a/blockchains/ethereum/assets/0x477a3d269266994F15E9C43A8D9C0561C4928088/info.json b/blockchains/ethereum/assets/0x477a3d269266994F15E9C43A8D9C0561C4928088/info.json new file mode 100644 index 00000000..b5184982 --- /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 00000000..28836bd0 Binary files /dev/null and b/blockchains/ethereum/assets/0x477a3d269266994F15E9C43A8D9C0561C4928088/logo.png differ diff --git a/blockchains/ethereum/assets/0x4790f605CBDBa5fCe4F209868B5A05B3bFf7272c/info.json b/blockchains/ethereum/assets/0x4790f605CBDBa5fCe4F209868B5A05B3bFf7272c/info.json new file mode 100644 index 00000000..af64dc19 --- /dev/null +++ b/blockchains/ethereum/assets/0x4790f605CBDBa5fCe4F209868B5A05B3bFf7272c/info.json @@ -0,0 +1,11 @@ +{ + "name": "HUB", + "website": "https://swaphub.finance/", + "description": "SwapHub aims to build a new DeFi ecosystem. The first stage is to support users to stake LP. Then we will extend the functions.", + "explorer": "https://etherscan.io/token/0x4790f605cbdba5fce4f209868b5a05b3bff7272c", + "type": "ERC20", + "symbol": "HUB", + "decimals": 18, + "status": "active", + "id": "0x4790f605CBDBa5fCe4F209868B5A05B3bFf7272c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4790f605CBDBa5fCe4F209868B5A05B3bFf7272c/logo.png b/blockchains/ethereum/assets/0x4790f605CBDBa5fCe4F209868B5A05B3bFf7272c/logo.png new file mode 100644 index 00000000..afa37cac Binary files /dev/null and b/blockchains/ethereum/assets/0x4790f605CBDBa5fCe4F209868B5A05B3bFf7272c/logo.png differ diff --git a/blockchains/ethereum/assets/0x479a315BdafDa5e7e66C7AeEF228477A0535A2Ef/info.json b/blockchains/ethereum/assets/0x479a315BdafDa5e7e66C7AeEF228477A0535A2Ef/info.json new file mode 100644 index 00000000..a096fadf --- /dev/null +++ b/blockchains/ethereum/assets/0x479a315BdafDa5e7e66C7AeEF228477A0535A2Ef/info.json @@ -0,0 +1,11 @@ +{ + "name": "BFFI OPTIONS", + "symbol": "BFFI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x479a315BdafDa5e7e66C7AeEF228477A0535A2Ef", + "status": "abandoned", + "id": "0x479a315BdafDa5e7e66C7AeEF228477A0535A2Ef" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x479a315BdafDa5e7e66C7AeEF228477A0535A2Ef/logo.png b/blockchains/ethereum/assets/0x479a315BdafDa5e7e66C7AeEF228477A0535A2Ef/logo.png new file mode 100644 index 00000000..f15902dd Binary files /dev/null and b/blockchains/ethereum/assets/0x479a315BdafDa5e7e66C7AeEF228477A0535A2Ef/logo.png differ diff --git a/blockchains/ethereum/assets/0x47DA5456bC2e1ce391b645Ce80F2E97192e4976a/info.json b/blockchains/ethereum/assets/0x47DA5456bC2e1ce391b645Ce80F2E97192e4976a/info.json new file mode 100644 index 00000000..dbef3527 --- /dev/null +++ b/blockchains/ethereum/assets/0x47DA5456bC2e1ce391b645Ce80F2E97192e4976a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pl^g Token", + "website": "https://plugdefi.io/", + "description": "PL^Gnet is a Multi Chain Synthetic Assets Network. PL^Gnet enables asset custodians to leverage any asset from any network in its synthetic form in DeFi.", + "explorer": "https://etherscan.io/token/0x47da5456bc2e1ce391b645ce80f2e97192e4976a", + "type": "ERC20", + "symbol": "PLUG", + "decimals": 18, + "status": "active", + "id": "0x47DA5456bC2e1ce391b645Ce80F2E97192e4976a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47DA5456bC2e1ce391b645Ce80F2E97192e4976a/logo.png b/blockchains/ethereum/assets/0x47DA5456bC2e1ce391b645Ce80F2E97192e4976a/logo.png new file mode 100644 index 00000000..30ab72d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x47DA5456bC2e1ce391b645Ce80F2E97192e4976a/logo.png differ diff --git a/blockchains/ethereum/assets/0x47Ec6AF8E27C98e41d1Df7fb8219408541463022/info.json b/blockchains/ethereum/assets/0x47Ec6AF8E27C98e41d1Df7fb8219408541463022/info.json new file mode 100644 index 00000000..b0489150 --- /dev/null +++ b/blockchains/ethereum/assets/0x47Ec6AF8E27C98e41d1Df7fb8219408541463022/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eurasia Food coin", + "symbol": "EFOOD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x47Ec6AF8E27C98e41d1Df7fb8219408541463022", + "status": "abandoned", + "id": "0x47Ec6AF8E27C98e41d1Df7fb8219408541463022" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47Ec6AF8E27C98e41d1Df7fb8219408541463022/logo.png b/blockchains/ethereum/assets/0x47Ec6AF8E27C98e41d1Df7fb8219408541463022/logo.png new file mode 100644 index 00000000..b02cf134 Binary files /dev/null and b/blockchains/ethereum/assets/0x47Ec6AF8E27C98e41d1Df7fb8219408541463022/logo.png differ diff --git a/blockchains/ethereum/assets/0x47F32f9eBFc49a1434eB6190d5D8a80A2Dc36af5/info.json b/blockchains/ethereum/assets/0x47F32f9eBFc49a1434eB6190d5D8a80A2Dc36af5/info.json new file mode 100644 index 00000000..5c85b16c --- /dev/null +++ b/blockchains/ethereum/assets/0x47F32f9eBFc49a1434eB6190d5D8a80A2Dc36af5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Happy Park Chip", + "symbol": "HPC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x47F32f9eBFc49a1434eB6190d5D8a80A2Dc36af5", + "status": "abandoned", + "id": "0x47F32f9eBFc49a1434eB6190d5D8a80A2Dc36af5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47F32f9eBFc49a1434eB6190d5D8a80A2Dc36af5/logo.png b/blockchains/ethereum/assets/0x47F32f9eBFc49a1434eB6190d5D8a80A2Dc36af5/logo.png new file mode 100755 index 00000000..341f7763 Binary files /dev/null and b/blockchains/ethereum/assets/0x47F32f9eBFc49a1434eB6190d5D8a80A2Dc36af5/logo.png differ diff --git a/blockchains/ethereum/assets/0x47aF9FD69AdC231E674140c81811a640dD92dC51/info.json b/blockchains/ethereum/assets/0x47aF9FD69AdC231E674140c81811a640dD92dC51/info.json new file mode 100644 index 00000000..0ab4ab74 --- /dev/null +++ b/blockchains/ethereum/assets/0x47aF9FD69AdC231E674140c81811a640dD92dC51/info.json @@ -0,0 +1,11 @@ +{ + "name": "MobaCoin", + "symbol": "MBC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x47aF9FD69AdC231E674140c81811a640dD92dC51", + "status": "abandoned", + "id": "0x47aF9FD69AdC231E674140c81811a640dD92dC51" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47aF9FD69AdC231E674140c81811a640dD92dC51/logo.png b/blockchains/ethereum/assets/0x47aF9FD69AdC231E674140c81811a640dD92dC51/logo.png new file mode 100644 index 00000000..aa902df9 Binary files /dev/null and b/blockchains/ethereum/assets/0x47aF9FD69AdC231E674140c81811a640dD92dC51/logo.png differ diff --git a/blockchains/ethereum/assets/0x47b28F365Bf4CB38DB4B6356864BDE7bc4B35129/info.json b/blockchains/ethereum/assets/0x47b28F365Bf4CB38DB4B6356864BDE7bc4B35129/info.json new file mode 100644 index 00000000..08bf48ba --- /dev/null +++ b/blockchains/ethereum/assets/0x47b28F365Bf4CB38DB4B6356864BDE7bc4B35129/info.json @@ -0,0 +1,11 @@ +{ + "name": "FNB Token", + "symbol": "FNB", + "type": "ERC20", + "decimals": 18, + "description": "FNB provides a new system that connects franchise HQs, franchise affiliates, and customers together through AR advertisement platform, franchise token, and blockchain.", + "website": "https://fnbprotocol.io", + "explorer": "https://etherscan.io/token/0x47b28F365Bf4CB38DB4B6356864BDE7bc4B35129", + "status": "active", + "id": "0x47b28F365Bf4CB38DB4B6356864BDE7bc4B35129" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47b28F365Bf4CB38DB4B6356864BDE7bc4B35129/logo.png b/blockchains/ethereum/assets/0x47b28F365Bf4CB38DB4B6356864BDE7bc4B35129/logo.png new file mode 100644 index 00000000..48ebd198 Binary files /dev/null and b/blockchains/ethereum/assets/0x47b28F365Bf4CB38DB4B6356864BDE7bc4B35129/logo.png differ diff --git a/blockchains/ethereum/assets/0x47bc01597798DCD7506DCCA36ac4302fc93a8cFb/info.json b/blockchains/ethereum/assets/0x47bc01597798DCD7506DCCA36ac4302fc93a8cFb/info.json new file mode 100644 index 00000000..1d34c5dd --- /dev/null +++ b/blockchains/ethereum/assets/0x47bc01597798DCD7506DCCA36ac4302fc93a8cFb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crowd Machine Compute Token", + "symbol": "CMCT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://crowdmachine.com", + "explorer": "https://etherscan.io/token/0x47bc01597798DCD7506DCCA36ac4302fc93a8cFb", + "status": "abandoned", + "id": "0x47bc01597798DCD7506DCCA36ac4302fc93a8cFb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47bc01597798DCD7506DCCA36ac4302fc93a8cFb/logo.png b/blockchains/ethereum/assets/0x47bc01597798DCD7506DCCA36ac4302fc93a8cFb/logo.png new file mode 100755 index 00000000..5caa93f4 Binary files /dev/null and b/blockchains/ethereum/assets/0x47bc01597798DCD7506DCCA36ac4302fc93a8cFb/logo.png differ diff --git a/blockchains/ethereum/assets/0x47caf41a8C51d882E13b26E5E539b2737f227d9e/info.json b/blockchains/ethereum/assets/0x47caf41a8C51d882E13b26E5E539b2737f227d9e/info.json new file mode 100644 index 00000000..be459e06 --- /dev/null +++ b/blockchains/ethereum/assets/0x47caf41a8C51d882E13b26E5E539b2737f227d9e/info.json @@ -0,0 +1,11 @@ +{ + "name": "RXCOIN", + "symbol": "RXCN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x47caf41a8C51d882E13b26E5E539b2737f227d9e", + "status": "abandoned", + "id": "0x47caf41a8C51d882E13b26E5E539b2737f227d9e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47caf41a8C51d882E13b26E5E539b2737f227d9e/logo.png b/blockchains/ethereum/assets/0x47caf41a8C51d882E13b26E5E539b2737f227d9e/logo.png new file mode 100755 index 00000000..7b488c76 Binary files /dev/null and b/blockchains/ethereum/assets/0x47caf41a8C51d882E13b26E5E539b2737f227d9e/logo.png differ diff --git a/blockchains/ethereum/assets/0x47d1a59cBDd19AEE060C859C0009277E245328ae/info.json b/blockchains/ethereum/assets/0x47d1a59cBDd19AEE060C859C0009277E245328ae/info.json new file mode 100644 index 00000000..f2ebd61c --- /dev/null +++ b/blockchains/ethereum/assets/0x47d1a59cBDd19AEE060C859C0009277E245328ae/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sonder", + "symbol": "SNR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x47d1a59cBDd19AEE060C859C0009277E245328ae", + "status": "abandoned", + "id": "0x47d1a59cBDd19AEE060C859C0009277E245328ae" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47d1a59cBDd19AEE060C859C0009277E245328ae/logo.png b/blockchains/ethereum/assets/0x47d1a59cBDd19AEE060C859C0009277E245328ae/logo.png new file mode 100644 index 00000000..7efda024 Binary files /dev/null and b/blockchains/ethereum/assets/0x47d1a59cBDd19AEE060C859C0009277E245328ae/logo.png differ diff --git a/blockchains/ethereum/assets/0x47dD62D4D075DeAd71d0e00299fc56a2d747beBb/info.json b/blockchains/ethereum/assets/0x47dD62D4D075DeAd71d0e00299fc56a2d747beBb/info.json new file mode 100644 index 00000000..4637cd92 --- /dev/null +++ b/blockchains/ethereum/assets/0x47dD62D4D075DeAd71d0e00299fc56a2d747beBb/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQUAL", + "symbol": "EQL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x47dD62D4D075DeAd71d0e00299fc56a2d747beBb", + "status": "abandoned", + "id": "0x47dD62D4D075DeAd71d0e00299fc56a2d747beBb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47dD62D4D075DeAd71d0e00299fc56a2d747beBb/logo.png b/blockchains/ethereum/assets/0x47dD62D4D075DeAd71d0e00299fc56a2d747beBb/logo.png new file mode 100644 index 00000000..10134b20 Binary files /dev/null and b/blockchains/ethereum/assets/0x47dD62D4D075DeAd71d0e00299fc56a2d747beBb/logo.png differ diff --git a/blockchains/ethereum/assets/0x47da42696A866CDC61A4C809A515500a242909C1/info.json b/blockchains/ethereum/assets/0x47da42696A866CDC61A4C809A515500a242909C1/info.json new file mode 100644 index 00000000..a7bccd13 --- /dev/null +++ b/blockchains/ethereum/assets/0x47da42696A866CDC61A4C809A515500a242909C1/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitRewards Token", + "symbol": "BIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bitrewards.network/", + "explorer": "https://etherscan.io/token/0x47da42696A866CDC61A4C809A515500a242909C1", + "status": "abandoned", + "id": "0x47da42696A866CDC61A4C809A515500a242909C1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47da42696A866CDC61A4C809A515500a242909C1/logo.png b/blockchains/ethereum/assets/0x47da42696A866CDC61A4C809A515500a242909C1/logo.png new file mode 100755 index 00000000..ab683832 Binary files /dev/null and b/blockchains/ethereum/assets/0x47da42696A866CDC61A4C809A515500a242909C1/logo.png differ diff --git a/blockchains/ethereum/assets/0x47e67BA66b0699500f18A53F94E2b9dB3D47437e/info.json b/blockchains/ethereum/assets/0x47e67BA66b0699500f18A53F94E2b9dB3D47437e/info.json new file mode 100644 index 00000000..94896431 --- /dev/null +++ b/blockchains/ethereum/assets/0x47e67BA66b0699500f18A53F94E2b9dB3D47437e/info.json @@ -0,0 +1,11 @@ +{ + "name": "PlayGame", + "symbol": "PXG", + "type": "ERC20", + "decimals": 18, + "description": "Powering real economy in the gaming world. Purchase virtual items and pool prize competition with cryptocurrencies.", + "website": "https://its.playgame.com/", + "explorer": "https://etherscan.io/token/0x47e67BA66b0699500f18A53F94E2b9dB3D47437e", + "status": "active", + "id": "0x47e67BA66b0699500f18A53F94E2b9dB3D47437e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x47e67BA66b0699500f18A53F94E2b9dB3D47437e/logo.png b/blockchains/ethereum/assets/0x47e67BA66b0699500f18A53F94E2b9dB3D47437e/logo.png new file mode 100644 index 00000000..914c68c7 Binary files /dev/null and b/blockchains/ethereum/assets/0x47e67BA66b0699500f18A53F94E2b9dB3D47437e/logo.png differ diff --git a/blockchains/ethereum/assets/0x48094EBE2266CB1CBE5D3ec81933784E2E9561d8/info.json b/blockchains/ethereum/assets/0x48094EBE2266CB1CBE5D3ec81933784E2E9561d8/info.json new file mode 100644 index 00000000..00120037 --- /dev/null +++ b/blockchains/ethereum/assets/0x48094EBE2266CB1CBE5D3ec81933784E2E9561d8/info.json @@ -0,0 +1,11 @@ +{ + "name": "GOL", + "symbol": "GOL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x48094EBE2266CB1CBE5D3ec81933784E2E9561d8", + "status": "abandoned", + "id": "0x48094EBE2266CB1CBE5D3ec81933784E2E9561d8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x48094EBE2266CB1CBE5D3ec81933784E2E9561d8/logo.png b/blockchains/ethereum/assets/0x48094EBE2266CB1CBE5D3ec81933784E2E9561d8/logo.png new file mode 100644 index 00000000..e8f57e6f Binary files /dev/null and b/blockchains/ethereum/assets/0x48094EBE2266CB1CBE5D3ec81933784E2E9561d8/logo.png differ diff --git a/blockchains/ethereum/assets/0x4824A7b64E3966B0133f4f4FFB1b9D6bEb75FFF7/info.json b/blockchains/ethereum/assets/0x4824A7b64E3966B0133f4f4FFB1b9D6bEb75FFF7/info.json new file mode 100644 index 00000000..14289361 --- /dev/null +++ b/blockchains/ethereum/assets/0x4824A7b64E3966B0133f4f4FFB1b9D6bEb75FFF7/info.json @@ -0,0 +1,12 @@ +{ + "name": "TokenClub", + "website": "http://www.tokenclub.com", + "description": "TokenClub provides investors with one-stop services, and aims at building an autonomous, trusting, and efficient investor community.", + "explorer": "https://etherscan.io/token/0x4824A7b64E3966B0133f4f4FFB1b9D6bEb75FFF7", + "research": "https://research.binance.com/en/projects/tokenclub", + "type": "ERC20", + "symbol": "TCT", + "decimals": 18, + "status": "active", + "id": "0x4824A7b64E3966B0133f4f4FFB1b9D6bEb75FFF7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4824A7b64E3966B0133f4f4FFB1b9D6bEb75FFF7/logo.png b/blockchains/ethereum/assets/0x4824A7b64E3966B0133f4f4FFB1b9D6bEb75FFF7/logo.png new file mode 100644 index 00000000..45407627 Binary files /dev/null and b/blockchains/ethereum/assets/0x4824A7b64E3966B0133f4f4FFB1b9D6bEb75FFF7/logo.png differ diff --git a/blockchains/ethereum/assets/0x4826B0316f31bEe41CfFA4a4277d2B62557f915C/info.json b/blockchains/ethereum/assets/0x4826B0316f31bEe41CfFA4a4277d2B62557f915C/info.json new file mode 100644 index 00000000..d99f5756 --- /dev/null +++ b/blockchains/ethereum/assets/0x4826B0316f31bEe41CfFA4a4277d2B62557f915C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Magnergy", + "symbol": "MGX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4826B0316f31bEe41CfFA4a4277d2B62557f915C", + "status": "abandoned", + "id": "0x4826B0316f31bEe41CfFA4a4277d2B62557f915C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4826B0316f31bEe41CfFA4a4277d2B62557f915C/logo.png b/blockchains/ethereum/assets/0x4826B0316f31bEe41CfFA4a4277d2B62557f915C/logo.png new file mode 100644 index 00000000..00babb79 Binary files /dev/null and b/blockchains/ethereum/assets/0x4826B0316f31bEe41CfFA4a4277d2B62557f915C/logo.png differ diff --git a/blockchains/ethereum/assets/0x48294aef8d2C9c109196aB3067C0B72e9b0F79cE/info.json b/blockchains/ethereum/assets/0x48294aef8d2C9c109196aB3067C0B72e9b0F79cE/info.json new file mode 100644 index 00000000..fc960341 --- /dev/null +++ b/blockchains/ethereum/assets/0x48294aef8d2C9c109196aB3067C0B72e9b0F79cE/info.json @@ -0,0 +1,11 @@ +{ + "name": "BEE TOKEN", + "symbol": "BEE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x48294aef8d2C9c109196aB3067C0B72e9b0F79cE", + "status": "abandoned", + "id": "0x48294aef8d2C9c109196aB3067C0B72e9b0F79cE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x48294aef8d2C9c109196aB3067C0B72e9b0F79cE/logo.png b/blockchains/ethereum/assets/0x48294aef8d2C9c109196aB3067C0B72e9b0F79cE/logo.png new file mode 100644 index 00000000..b78b561e Binary files /dev/null and b/blockchains/ethereum/assets/0x48294aef8d2C9c109196aB3067C0B72e9b0F79cE/logo.png differ diff --git a/blockchains/ethereum/assets/0x482f63DD7d64C601e6319D4A66Ee49496D3bD377/info.json b/blockchains/ethereum/assets/0x482f63DD7d64C601e6319D4A66Ee49496D3bD377/info.json new file mode 100644 index 00000000..864acfb0 --- /dev/null +++ b/blockchains/ethereum/assets/0x482f63DD7d64C601e6319D4A66Ee49496D3bD377/info.json @@ -0,0 +1,11 @@ +{ + "name": "Techshare Token (TCL)", + "symbol": "TCL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x482f63DD7d64C601e6319D4A66Ee49496D3bD377", + "status": "abandoned", + "id": "0x482f63DD7d64C601e6319D4A66Ee49496D3bD377" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x482f63DD7d64C601e6319D4A66Ee49496D3bD377/logo.png b/blockchains/ethereum/assets/0x482f63DD7d64C601e6319D4A66Ee49496D3bD377/logo.png new file mode 100644 index 00000000..76955845 Binary files /dev/null and b/blockchains/ethereum/assets/0x482f63DD7d64C601e6319D4A66Ee49496D3bD377/logo.png differ diff --git a/blockchains/ethereum/assets/0x485d17A6f1B8780392d53D64751824253011A260/info.json b/blockchains/ethereum/assets/0x485d17A6f1B8780392d53D64751824253011A260/info.json new file mode 100644 index 00000000..2f702b1f --- /dev/null +++ b/blockchains/ethereum/assets/0x485d17A6f1B8780392d53D64751824253011A260/info.json @@ -0,0 +1,11 @@ +{ + "name": "ChronoTech TIME", + "website": "https://chrono.tech", + "description": "TIME is an utility and governance token of ChronoTech ecosystem", + "explorer": "https://etherscan.io/token/0x485d17A6f1B8780392d53D64751824253011A260", + "type": "ERC20", + "symbol": "TIME", + "decimals": 8, + "status": "active", + "id": "0x485d17A6f1B8780392d53D64751824253011A260" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x485d17A6f1B8780392d53D64751824253011A260/logo.png b/blockchains/ethereum/assets/0x485d17A6f1B8780392d53D64751824253011A260/logo.png new file mode 100644 index 00000000..472ebeda Binary files /dev/null and b/blockchains/ethereum/assets/0x485d17A6f1B8780392d53D64751824253011A260/logo.png differ diff --git a/blockchains/ethereum/assets/0x48783486ddD7fa85ECa6B0C4AE8920Bc25DfbcD7/info.json b/blockchains/ethereum/assets/0x48783486ddD7fa85ECa6B0C4AE8920Bc25DfbcD7/info.json new file mode 100644 index 00000000..71aa9766 --- /dev/null +++ b/blockchains/ethereum/assets/0x48783486ddD7fa85ECa6B0C4AE8920Bc25DfbcD7/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoMoney2", + "website": "https://animalgo.io/", + "description": "GOM2 restructures the DeFi narrative to reward token holders. In addition, GOM2 tokens can be used to swap with other ERC-20 tokens.", + "explorer": "https://etherscan.io/token/0x48783486ddD7fa85ECa6B0C4AE8920Bc25DfbcD7", + "type": "ERC20", + "symbol": "GOM2", + "decimals": 0, + "status": "active", + "id": "0x48783486ddD7fa85ECa6B0C4AE8920Bc25DfbcD7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x48783486ddD7fa85ECa6B0C4AE8920Bc25DfbcD7/logo.png b/blockchains/ethereum/assets/0x48783486ddD7fa85ECa6B0C4AE8920Bc25DfbcD7/logo.png new file mode 100644 index 00000000..3cf9a0c3 Binary files /dev/null and b/blockchains/ethereum/assets/0x48783486ddD7fa85ECa6B0C4AE8920Bc25DfbcD7/logo.png differ diff --git a/blockchains/ethereum/assets/0x487d62468282Bd04ddf976631C23128A425555EE/info.json b/blockchains/ethereum/assets/0x487d62468282Bd04ddf976631C23128A425555EE/info.json new file mode 100644 index 00000000..29cf359f --- /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 00000000..e340152c Binary files /dev/null and b/blockchains/ethereum/assets/0x487d62468282Bd04ddf976631C23128A425555EE/logo.png differ diff --git a/blockchains/ethereum/assets/0x48BD67ad140C9d10F94099C1ceF7Ab17D90aC335/info.json b/blockchains/ethereum/assets/0x48BD67ad140C9d10F94099C1ceF7Ab17D90aC335/info.json new file mode 100644 index 00000000..04a09a48 --- /dev/null +++ b/blockchains/ethereum/assets/0x48BD67ad140C9d10F94099C1ceF7Ab17D90aC335/info.json @@ -0,0 +1,11 @@ +{ + "name": "Leber Network", + "symbol": "LBN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x48BD67ad140C9d10F94099C1ceF7Ab17D90aC335", + "status": "abandoned", + "id": "0x48BD67ad140C9d10F94099C1ceF7Ab17D90aC335" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x48BD67ad140C9d10F94099C1ceF7Ab17D90aC335/logo.png b/blockchains/ethereum/assets/0x48BD67ad140C9d10F94099C1ceF7Ab17D90aC335/logo.png new file mode 100644 index 00000000..80904a05 Binary files /dev/null and b/blockchains/ethereum/assets/0x48BD67ad140C9d10F94099C1ceF7Ab17D90aC335/logo.png differ diff --git a/blockchains/ethereum/assets/0x48C1B2f3eFA85fbafb2ab951bF4Ba860a08cdBB7/info.json b/blockchains/ethereum/assets/0x48C1B2f3eFA85fbafb2ab951bF4Ba860a08cdBB7/info.json new file mode 100644 index 00000000..6f50b30b --- /dev/null +++ b/blockchains/ethereum/assets/0x48C1B2f3eFA85fbafb2ab951bF4Ba860a08cdBB7/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShowHand", + "symbol": "HAND", + "type": "ERC20", + "decimals": 0, + "description": "ShowHand is an advanced blockchain platform created to bring a fast, secure and trustless structure for the global gaming ecosystem. Our goal is to make gaming more inclusive, fair and decentralized.", + "website": "https://www.showhand.io/", + "explorer": "https://etherscan.io/token/0x48C1B2f3eFA85fbafb2ab951bF4Ba860a08cdBB7", + "status": "active", + "id": "0x48C1B2f3eFA85fbafb2ab951bF4Ba860a08cdBB7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x48C1B2f3eFA85fbafb2ab951bF4Ba860a08cdBB7/logo.png b/blockchains/ethereum/assets/0x48C1B2f3eFA85fbafb2ab951bF4Ba860a08cdBB7/logo.png new file mode 100644 index 00000000..951b4d17 Binary files /dev/null and b/blockchains/ethereum/assets/0x48C1B2f3eFA85fbafb2ab951bF4Ba860a08cdBB7/logo.png differ diff --git a/blockchains/ethereum/assets/0x48C276e8d03813224bb1e55F953adB6d02FD3E02/info.json b/blockchains/ethereum/assets/0x48C276e8d03813224bb1e55F953adB6d02FD3E02/info.json new file mode 100644 index 00000000..9c2404e7 --- /dev/null +++ b/blockchains/ethereum/assets/0x48C276e8d03813224bb1e55F953adB6d02FD3E02/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kuma Inu Token", + "website": "https://kumatoken.com", + "description": "Decentralized Meme Tokens that grew into a vibrant ecosystem.", + "explorer": "https://etherscan.io/token/0x48c276e8d03813224bb1e55f953adb6d02fd3e02", + "type": "ERC20", + "symbol": "KUMA", + "decimals": 18, + "status": "active", + "id": "0x48C276e8d03813224bb1e55F953adB6d02FD3E02" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x48C276e8d03813224bb1e55F953adB6d02FD3E02/logo.png b/blockchains/ethereum/assets/0x48C276e8d03813224bb1e55F953adB6d02FD3E02/logo.png new file mode 100644 index 00000000..277a8ec6 Binary files /dev/null and b/blockchains/ethereum/assets/0x48C276e8d03813224bb1e55F953adB6d02FD3E02/logo.png differ diff --git a/blockchains/ethereum/assets/0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2/info.json b/blockchains/ethereum/assets/0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2/info.json new file mode 100644 index 00000000..8d4bc471 --- /dev/null +++ b/blockchains/ethereum/assets/0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2/info.json @@ -0,0 +1,69 @@ +{ + "name": "StakeWise SWISE", + "type": "ERC20", + "symbol": "SWISE", + "decimals": 18, + "website": "https://stakewise.io", + "description": "SWISE is the StakeWise governance token.", + "explorer": "https://etherscan.io/token/0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2", + "status": "active", + "id": "0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2", + "links": [ + { + "name": "x", + "url": "https://x.com/stakewise_io" + }, + { + "name": "github", + "url": "https://github.com/stakewise" + }, + { + "name": "telegram", + "url": "https://t.me/stakewise_io" + }, + { + "name": "telegram_news", + "url": "https://t.me/stakewise_io" + }, + { + "name": "blog", + "url": "https://stakewise.medium.com/" + }, + { + "name": "docs", + "url": "https://docs.stakewise.io/" + }, + { + "name": "forum", + "url": "https://forum.stakewise.io/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Zf7tKyXeZ" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/stakewise" + }, + { + "name": "medium", + "url": "https://stakewise.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCQ2cX28XNW-S-66quNYxzRA" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/stakewise" + }, + { + "name": "source_code", + "url": "https://github.com/stakewise/contracts/blob/master/contracts/tokens/StakeWiseToken.sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stakewise/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2/logo.png b/blockchains/ethereum/assets/0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2/logo.png new file mode 100644 index 00000000..57352c59 Binary files /dev/null and b/blockchains/ethereum/assets/0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2/logo.png differ diff --git a/blockchains/ethereum/assets/0x48C589F9734289d8862a245Cf9884631a315696f/info.json b/blockchains/ethereum/assets/0x48C589F9734289d8862a245Cf9884631a315696f/info.json new file mode 100644 index 00000000..0fbb2b7e --- /dev/null +++ b/blockchains/ethereum/assets/0x48C589F9734289d8862a245Cf9884631a315696f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coin Of King", + "symbol": "COK", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x48C589F9734289d8862a245Cf9884631a315696f", + "status": "abandoned", + "id": "0x48C589F9734289d8862a245Cf9884631a315696f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x48C589F9734289d8862a245Cf9884631a315696f/logo.png b/blockchains/ethereum/assets/0x48C589F9734289d8862a245Cf9884631a315696f/logo.png new file mode 100644 index 00000000..9b145341 Binary files /dev/null and b/blockchains/ethereum/assets/0x48C589F9734289d8862a245Cf9884631a315696f/logo.png differ diff --git a/blockchains/ethereum/assets/0x48DF4E0296f908CEAb0428A5182D19B31fC037d6/info.json b/blockchains/ethereum/assets/0x48DF4E0296f908CEAb0428A5182D19B31fC037d6/info.json new file mode 100644 index 00000000..002771b8 --- /dev/null +++ b/blockchains/ethereum/assets/0x48DF4E0296f908CEAb0428A5182D19B31fC037d6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fitrova", + "symbol": "FRV", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://fitrova.com", + "explorer": "https://etherscan.io/token/0x48DF4E0296f908CEAb0428A5182D19B31fC037d6", + "status": "abandoned", + "id": "0x48DF4E0296f908CEAb0428A5182D19B31fC037d6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x48DF4E0296f908CEAb0428A5182D19B31fC037d6/logo.png b/blockchains/ethereum/assets/0x48DF4E0296f908CEAb0428A5182D19B31fC037d6/logo.png new file mode 100755 index 00000000..2a36f087 Binary files /dev/null and b/blockchains/ethereum/assets/0x48DF4E0296f908CEAb0428A5182D19B31fC037d6/logo.png differ diff --git a/blockchains/ethereum/assets/0x48FF53777F747cFB694101222a944dE070c15D36/info.json b/blockchains/ethereum/assets/0x48FF53777F747cFB694101222a944dE070c15D36/info.json new file mode 100644 index 00000000..3c413018 --- /dev/null +++ b/blockchains/ethereum/assets/0x48FF53777F747cFB694101222a944dE070c15D36/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ether Kingdoms Token", + "symbol": "IMP", + "type": "ERC20", + "decimals": 7, + "description": "Ether Kingdoms is a new crypto-game with its own ERC20 token, IMP. Key features: up to 365% annual POS reward, ERC-721 items, no ICO, fair airdrop distribution only.", + "website": "https://imps.me/", + "explorer": "https://etherscan.io/token/0x48FF53777F747cFB694101222a944dE070c15D36", + "status": "active", + "id": "0x48FF53777F747cFB694101222a944dE070c15D36" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x48FF53777F747cFB694101222a944dE070c15D36/logo.png b/blockchains/ethereum/assets/0x48FF53777F747cFB694101222a944dE070c15D36/logo.png new file mode 100644 index 00000000..ad358cd0 Binary files /dev/null and b/blockchains/ethereum/assets/0x48FF53777F747cFB694101222a944dE070c15D36/logo.png differ diff --git a/blockchains/ethereum/assets/0x48b64C2fA052bD4d0b985f2C48D6918c2c01bDEa/info.json b/blockchains/ethereum/assets/0x48b64C2fA052bD4d0b985f2C48D6918c2c01bDEa/info.json new file mode 100644 index 00000000..d41a07e4 --- /dev/null +++ b/blockchains/ethereum/assets/0x48b64C2fA052bD4d0b985f2C48D6918c2c01bDEa/info.json @@ -0,0 +1,11 @@ +{ + "name": "365 Stream Token", + "symbol": "365", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x48b64C2fA052bD4d0b985f2C48D6918c2c01bDEa", + "status": "abandoned", + "id": "0x48b64C2fA052bD4d0b985f2C48D6918c2c01bDEa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x48b64C2fA052bD4d0b985f2C48D6918c2c01bDEa/logo.png b/blockchains/ethereum/assets/0x48b64C2fA052bD4d0b985f2C48D6918c2c01bDEa/logo.png new file mode 100644 index 00000000..cb506c87 Binary files /dev/null and b/blockchains/ethereum/assets/0x48b64C2fA052bD4d0b985f2C48D6918c2c01bDEa/logo.png differ diff --git a/blockchains/ethereum/assets/0x48c80F1f4D53D5951e5D5438B54Cba84f29F32a5/info.json b/blockchains/ethereum/assets/0x48c80F1f4D53D5951e5D5438B54Cba84f29F32a5/info.json new file mode 100644 index 00000000..4dfce326 --- /dev/null +++ b/blockchains/ethereum/assets/0x48c80F1f4D53D5951e5D5438B54Cba84f29F32a5/info.json @@ -0,0 +1,11 @@ +{ + "name": "0x52657075746174696f6e00000000000000000000000000000000000000000000", + "symbol": "REP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x48c80F1f4D53D5951e5D5438B54Cba84f29F32a5", + "status": "active", + "id": "0x48c80F1f4D53D5951e5D5438B54Cba84f29F32a5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x48c80F1f4D53D5951e5D5438B54Cba84f29F32a5/logo.png b/blockchains/ethereum/assets/0x48c80F1f4D53D5951e5D5438B54Cba84f29F32a5/logo.png new file mode 100644 index 00000000..f843bb1b Binary files /dev/null and b/blockchains/ethereum/assets/0x48c80F1f4D53D5951e5D5438B54Cba84f29F32a5/logo.png differ diff --git a/blockchains/ethereum/assets/0x48f07301E9E29c3C38a80ae8d9ae771F224f1054/info.json b/blockchains/ethereum/assets/0x48f07301E9E29c3C38a80ae8d9ae771F224f1054/info.json new file mode 100644 index 00000000..54ddf13f --- /dev/null +++ b/blockchains/ethereum/assets/0x48f07301E9E29c3C38a80ae8d9ae771F224f1054/info.json @@ -0,0 +1,11 @@ +{ + "name": "South African Tether", + "symbol": "XZAR", + "type": "ERC20", + "decimals": 18, + "description": "xZAR is a South African stablecoin pegged 1 to 1 with the South African Rand (ZAR).", + "website": "http://www.xzar.co.za/", + "explorer": "https://etherscan.io/token/0x48f07301E9E29c3C38a80ae8d9ae771F224f1054", + "status": "active", + "id": "0x48f07301E9E29c3C38a80ae8d9ae771F224f1054" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x48f07301E9E29c3C38a80ae8d9ae771F224f1054/logo.png b/blockchains/ethereum/assets/0x48f07301E9E29c3C38a80ae8d9ae771F224f1054/logo.png new file mode 100644 index 00000000..df8d068f Binary files /dev/null and b/blockchains/ethereum/assets/0x48f07301E9E29c3C38a80ae8d9ae771F224f1054/logo.png differ diff --git a/blockchains/ethereum/assets/0x48f775EFBE4F5EcE6e0DF2f7b5932dF56823B990/info.json b/blockchains/ethereum/assets/0x48f775EFBE4F5EcE6e0DF2f7b5932dF56823B990/info.json new file mode 100644 index 00000000..3f90c6ed --- /dev/null +++ b/blockchains/ethereum/assets/0x48f775EFBE4F5EcE6e0DF2f7b5932dF56823B990/info.json @@ -0,0 +1,11 @@ +{ + "name": "R token", + "symbol": "R", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x48f775EFBE4F5EcE6e0DF2f7b5932dF56823B990", + "status": "abandoned", + "id": "0x48f775EFBE4F5EcE6e0DF2f7b5932dF56823B990" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x48f775EFBE4F5EcE6e0DF2f7b5932dF56823B990/logo.png b/blockchains/ethereum/assets/0x48f775EFBE4F5EcE6e0DF2f7b5932dF56823B990/logo.png new file mode 100755 index 00000000..646e8cbc Binary files /dev/null and b/blockchains/ethereum/assets/0x48f775EFBE4F5EcE6e0DF2f7b5932dF56823B990/logo.png differ diff --git a/blockchains/ethereum/assets/0x490DBf7884B8e13c2161448b83Dd2d8909dB48eD/info.json b/blockchains/ethereum/assets/0x490DBf7884B8e13c2161448b83Dd2d8909dB48eD/info.json new file mode 100644 index 00000000..1fc4461d --- /dev/null +++ b/blockchains/ethereum/assets/0x490DBf7884B8e13c2161448b83Dd2d8909dB48eD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Curate", + "symbol": "CUR8", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x490DBf7884B8e13c2161448b83Dd2d8909dB48eD", + "status": "abandoned", + "id": "0x490DBf7884B8e13c2161448b83Dd2d8909dB48eD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x490DBf7884B8e13c2161448b83Dd2d8909dB48eD/logo.png b/blockchains/ethereum/assets/0x490DBf7884B8e13c2161448b83Dd2d8909dB48eD/logo.png new file mode 100644 index 00000000..346768cd Binary files /dev/null and b/blockchains/ethereum/assets/0x490DBf7884B8e13c2161448b83Dd2d8909dB48eD/logo.png differ diff --git a/blockchains/ethereum/assets/0x490c95bE16384E1f28B9e864e98fFEcFCBfF386d/info.json b/blockchains/ethereum/assets/0x490c95bE16384E1f28B9e864e98fFEcFCBfF386d/info.json new file mode 100644 index 00000000..e5561bb2 --- /dev/null +++ b/blockchains/ethereum/assets/0x490c95bE16384E1f28B9e864e98fFEcFCBfF386d/info.json @@ -0,0 +1,11 @@ +{ + "name": "REPME", + "symbol": "RPM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x490c95bE16384E1f28B9e864e98fFEcFCBfF386d", + "status": "abandoned", + "id": "0x490c95bE16384E1f28B9e864e98fFEcFCBfF386d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x490c95bE16384E1f28B9e864e98fFEcFCBfF386d/logo.png b/blockchains/ethereum/assets/0x490c95bE16384E1f28B9e864e98fFEcFCBfF386d/logo.png new file mode 100644 index 00000000..ccd905e9 Binary files /dev/null and b/blockchains/ethereum/assets/0x490c95bE16384E1f28B9e864e98fFEcFCBfF386d/logo.png differ diff --git a/blockchains/ethereum/assets/0x491604c0FDF08347Dd1fa4Ee062a822A5DD06B5D/info.json b/blockchains/ethereum/assets/0x491604c0FDF08347Dd1fa4Ee062a822A5DD06B5D/info.json new file mode 100644 index 00000000..0bc0dfc0 --- /dev/null +++ b/blockchains/ethereum/assets/0x491604c0FDF08347Dd1fa4Ee062a822A5DD06B5D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cartesi Token", + "symbol": "CTSI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://cartesi.io", + "explorer": "https://etherscan.io/token/0x491604c0FDF08347Dd1fa4Ee062a822A5DD06B5D", + "status": "active", + "id": "0x491604c0FDF08347Dd1fa4Ee062a822A5DD06B5D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x491604c0FDF08347Dd1fa4Ee062a822A5DD06B5D/logo.png b/blockchains/ethereum/assets/0x491604c0FDF08347Dd1fa4Ee062a822A5DD06B5D/logo.png new file mode 100644 index 00000000..fa15566d Binary files /dev/null and b/blockchains/ethereum/assets/0x491604c0FDF08347Dd1fa4Ee062a822A5DD06B5D/logo.png differ diff --git a/blockchains/ethereum/assets/0x491614641F2e9456AB8d4B41a83534B71C4c4f85/info.json b/blockchains/ethereum/assets/0x491614641F2e9456AB8d4B41a83534B71C4c4f85/info.json new file mode 100644 index 00000000..926e994d --- /dev/null +++ b/blockchains/ethereum/assets/0x491614641F2e9456AB8d4B41a83534B71C4c4f85/info.json @@ -0,0 +1,11 @@ +{ + "name": "AVC", + "symbol": "AVC", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x491614641F2e9456AB8d4B41a83534B71C4c4f85", + "status": "abandoned", + "id": "0x491614641F2e9456AB8d4B41a83534B71C4c4f85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x491614641F2e9456AB8d4B41a83534B71C4c4f85/logo.png b/blockchains/ethereum/assets/0x491614641F2e9456AB8d4B41a83534B71C4c4f85/logo.png new file mode 100644 index 00000000..105e19e9 Binary files /dev/null and b/blockchains/ethereum/assets/0x491614641F2e9456AB8d4B41a83534B71C4c4f85/logo.png differ diff --git a/blockchains/ethereum/assets/0x49184E6dAe8C8ecD89d8Bdc1B950c597b8167c90/info.json b/blockchains/ethereum/assets/0x49184E6dAe8C8ecD89d8Bdc1B950c597b8167c90/info.json new file mode 100644 index 00000000..bab2c441 --- /dev/null +++ b/blockchains/ethereum/assets/0x49184E6dAe8C8ecD89d8Bdc1B950c597b8167c90/info.json @@ -0,0 +1,11 @@ +{ + "name": "LIBERTAS", + "symbol": "LIBERTAS", + "type": "ERC20", + "decimals": 2, + "description": "Libertas is a decentralized audio and podcast streaming service built on the Ethereum Blockchain.", + "website": "https://libertas.network", + "explorer": "https://etherscan.io/token/0x49184E6dAe8C8ecD89d8Bdc1B950c597b8167c90", + "status": "active", + "id": "0x49184E6dAe8C8ecD89d8Bdc1B950c597b8167c90" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49184E6dAe8C8ecD89d8Bdc1B950c597b8167c90/logo.png b/blockchains/ethereum/assets/0x49184E6dAe8C8ecD89d8Bdc1B950c597b8167c90/logo.png new file mode 100644 index 00000000..404d38f3 Binary files /dev/null and b/blockchains/ethereum/assets/0x49184E6dAe8C8ecD89d8Bdc1B950c597b8167c90/logo.png differ diff --git a/blockchains/ethereum/assets/0x491C9A23DB85623EEd455a8EfDd6AbA9b911C5dF/info.json b/blockchains/ethereum/assets/0x491C9A23DB85623EEd455a8EfDd6AbA9b911C5dF/info.json new file mode 100644 index 00000000..de4d901f --- /dev/null +++ b/blockchains/ethereum/assets/0x491C9A23DB85623EEd455a8EfDd6AbA9b911C5dF/info.json @@ -0,0 +1,11 @@ +{ + "name": "HeroNodeToken", + "symbol": "HER", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://heronode.io", + "explorer": "https://etherscan.io/token/0x491C9A23DB85623EEd455a8EfDd6AbA9b911C5dF", + "status": "abandoned", + "id": "0x491C9A23DB85623EEd455a8EfDd6AbA9b911C5dF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x491C9A23DB85623EEd455a8EfDd6AbA9b911C5dF/logo.png b/blockchains/ethereum/assets/0x491C9A23DB85623EEd455a8EfDd6AbA9b911C5dF/logo.png new file mode 100644 index 00000000..1f4ae4a6 Binary files /dev/null and b/blockchains/ethereum/assets/0x491C9A23DB85623EEd455a8EfDd6AbA9b911C5dF/logo.png differ diff --git a/blockchains/ethereum/assets/0x491E136FF7FF03E6aB097E54734697Bb5802FC1C/info.json b/blockchains/ethereum/assets/0x491E136FF7FF03E6aB097E54734697Bb5802FC1C/info.json new file mode 100644 index 00000000..8876582a --- /dev/null +++ b/blockchains/ethereum/assets/0x491E136FF7FF03E6aB097E54734697Bb5802FC1C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kattana", + "symbol": "KTN", + "type": "ERC20", + "decimals": 18, + "description": "Trade crypto on DEXs and CEXs with a full suite of trading tools previously only available in CeFi", + "website": "https://kattana.io", + "explorer": "https://etherscan.io/token/0x491E136FF7FF03E6aB097E54734697Bb5802FC1C", + "status": "active", + "id": "0x491E136FF7FF03E6aB097E54734697Bb5802FC1C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x491E136FF7FF03E6aB097E54734697Bb5802FC1C/logo.png b/blockchains/ethereum/assets/0x491E136FF7FF03E6aB097E54734697Bb5802FC1C/logo.png new file mode 100644 index 00000000..99e6fff7 Binary files /dev/null and b/blockchains/ethereum/assets/0x491E136FF7FF03E6aB097E54734697Bb5802FC1C/logo.png differ diff --git a/blockchains/ethereum/assets/0x49225b3FE63Da25Abd057F8cf0d0dA11217580f2/info.json b/blockchains/ethereum/assets/0x49225b3FE63Da25Abd057F8cf0d0dA11217580f2/info.json new file mode 100644 index 00000000..ae4fc473 --- /dev/null +++ b/blockchains/ethereum/assets/0x49225b3FE63Da25Abd057F8cf0d0dA11217580f2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Respect Music", + "symbol": "RSPM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x49225b3FE63Da25Abd057F8cf0d0dA11217580f2", + "status": "abandoned", + "id": "0x49225b3FE63Da25Abd057F8cf0d0dA11217580f2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49225b3FE63Da25Abd057F8cf0d0dA11217580f2/logo.png b/blockchains/ethereum/assets/0x49225b3FE63Da25Abd057F8cf0d0dA11217580f2/logo.png new file mode 100644 index 00000000..ff01639d Binary files /dev/null and b/blockchains/ethereum/assets/0x49225b3FE63Da25Abd057F8cf0d0dA11217580f2/logo.png differ diff --git a/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/info.json b/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/info.json new file mode 100644 index 00000000..37828e16 --- /dev/null +++ b/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gold Tether", + "type": "ERC20", + "symbol": "XAUt", + "decimals": 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": "abandoned", + "id": "0x4922a015c4407F87432B179bb209e125432E4a2A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x493C57C4763932315A328269E1ADaD09653B9081/info.json b/blockchains/ethereum/assets/0x493C57C4763932315A328269E1ADaD09653B9081/info.json new file mode 100644 index 00000000..4f5a9342 --- /dev/null +++ b/blockchains/ethereum/assets/0x493C57C4763932315A328269E1ADaD09653B9081/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum DAI iToken", + "symbol": "iDAI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x493C57C4763932315A328269E1ADaD09653B9081", + "status": "active", + "id": "0x493C57C4763932315A328269E1ADaD09653B9081" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x493C57C4763932315A328269E1ADaD09653B9081/logo.png b/blockchains/ethereum/assets/0x493C57C4763932315A328269E1ADaD09653B9081/logo.png new file mode 100644 index 00000000..e8e38ea2 Binary files /dev/null and b/blockchains/ethereum/assets/0x493C57C4763932315A328269E1ADaD09653B9081/logo.png differ diff --git a/blockchains/ethereum/assets/0x493Fc2760375a1d7bCcd50e82A6733883f63D167/info.json b/blockchains/ethereum/assets/0x493Fc2760375a1d7bCcd50e82A6733883f63D167/info.json new file mode 100644 index 00000000..e3c461f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x493Fc2760375a1d7bCcd50e82A6733883f63D167/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-19/30M19", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x493Fc2760375a1d7bCcd50e82A6733883f63D167", + "status": "abandoned", + "id": "0x493Fc2760375a1d7bCcd50e82A6733883f63D167" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x493Fc2760375a1d7bCcd50e82A6733883f63D167/logo.png b/blockchains/ethereum/assets/0x493Fc2760375a1d7bCcd50e82A6733883f63D167/logo.png new file mode 100644 index 00000000..18c3c865 Binary files /dev/null and b/blockchains/ethereum/assets/0x493Fc2760375a1d7bCcd50e82A6733883f63D167/logo.png differ diff --git a/blockchains/ethereum/assets/0x493c8d6a973246a7B26Aa8Ef4b1494867A825DE5/info.json b/blockchains/ethereum/assets/0x493c8d6a973246a7B26Aa8Ef4b1494867A825DE5/info.json new file mode 100644 index 00000000..a5fdc616 --- /dev/null +++ b/blockchains/ethereum/assets/0x493c8d6a973246a7B26Aa8Ef4b1494867A825DE5/info.json @@ -0,0 +1,11 @@ +{ + "name": "NuLink", + "symbol": "NLINK", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "https://nulink.org/", + "explorer": "https://etherscan.io/token/0x493c8d6a973246a7B26Aa8Ef4b1494867A825DE5", + "status": "abandoned", + "id": "0x493c8d6a973246a7B26Aa8Ef4b1494867A825DE5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x493c8d6a973246a7B26Aa8Ef4b1494867A825DE5/logo.png b/blockchains/ethereum/assets/0x493c8d6a973246a7B26Aa8Ef4b1494867A825DE5/logo.png new file mode 100644 index 00000000..8d27d8e0 Binary files /dev/null and b/blockchains/ethereum/assets/0x493c8d6a973246a7B26Aa8Ef4b1494867A825DE5/logo.png differ diff --git a/blockchains/ethereum/assets/0x4943D17D370174D93b104E583F489175C22AD1b6/info.json b/blockchains/ethereum/assets/0x4943D17D370174D93b104E583F489175C22AD1b6/info.json new file mode 100644 index 00000000..cef8b9a4 --- /dev/null +++ b/blockchains/ethereum/assets/0x4943D17D370174D93b104E583F489175C22AD1b6/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TESTmg21", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4943D17D370174D93b104E583F489175C22AD1b6", + "status": "abandoned", + "id": "0x4943D17D370174D93b104E583F489175C22AD1b6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4943D17D370174D93b104E583F489175C22AD1b6/logo.png b/blockchains/ethereum/assets/0x4943D17D370174D93b104E583F489175C22AD1b6/logo.png new file mode 100644 index 00000000..1dcd3591 Binary files /dev/null and b/blockchains/ethereum/assets/0x4943D17D370174D93b104E583F489175C22AD1b6/logo.png differ diff --git a/blockchains/ethereum/assets/0x4946583c5b86E01cCD30c71a05617D06E3E73060/info.json b/blockchains/ethereum/assets/0x4946583c5b86E01cCD30c71a05617D06E3E73060/info.json new file mode 100644 index 00000000..9d662cc5 --- /dev/null +++ b/blockchains/ethereum/assets/0x4946583c5b86E01cCD30c71a05617D06E3E73060/info.json @@ -0,0 +1,11 @@ +{ + "name": "Foresting Token", + "symbol": "PTON", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://foresting.io", + "explorer": "https://etherscan.io/token/0x4946583c5b86E01cCD30c71a05617D06E3E73060", + "status": "abandoned", + "id": "0x4946583c5b86E01cCD30c71a05617D06E3E73060" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4946583c5b86E01cCD30c71a05617D06E3E73060/logo.png b/blockchains/ethereum/assets/0x4946583c5b86E01cCD30c71a05617D06E3E73060/logo.png new file mode 100644 index 00000000..2a0e1681 Binary files /dev/null and b/blockchains/ethereum/assets/0x4946583c5b86E01cCD30c71a05617D06E3E73060/logo.png differ diff --git a/blockchains/ethereum/assets/0x4946Fcea7C692606e8908002e55A582af44AC121/info.json b/blockchains/ethereum/assets/0x4946Fcea7C692606e8908002e55A582af44AC121/info.json new file mode 100644 index 00000000..4b5445ba --- /dev/null +++ b/blockchains/ethereum/assets/0x4946Fcea7C692606e8908002e55A582af44AC121/info.json @@ -0,0 +1,11 @@ +{ + "name": "FOAM Token", + "symbol": "FOAM", + "type": "ERC20", + "decimals": 18, + "description": "The FOAM Proof of Location protocol is a permissionless and autonomous network of radio beacons that can offer secure location services independent of external centralized sources such as GPS.", + "website": "https://www.foam.space/", + "explorer": "https://etherscan.io/token/0x4946Fcea7C692606e8908002e55A582af44AC121", + "status": "active", + "id": "0x4946Fcea7C692606e8908002e55A582af44AC121" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4946Fcea7C692606e8908002e55A582af44AC121/logo.png b/blockchains/ethereum/assets/0x4946Fcea7C692606e8908002e55A582af44AC121/logo.png new file mode 100644 index 00000000..55a5d82f Binary files /dev/null and b/blockchains/ethereum/assets/0x4946Fcea7C692606e8908002e55A582af44AC121/logo.png differ diff --git a/blockchains/ethereum/assets/0x4952E95522e7Cc4D55d1D6650a52CcCd78Ef9C44/info.json b/blockchains/ethereum/assets/0x4952E95522e7Cc4D55d1D6650a52CcCd78Ef9C44/info.json new file mode 100644 index 00000000..e20f6315 --- /dev/null +++ b/blockchains/ethereum/assets/0x4952E95522e7Cc4D55d1D6650a52CcCd78Ef9C44/info.json @@ -0,0 +1,11 @@ +{ + "name": "BinGo", + "symbol": "GOO", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4952E95522e7Cc4D55d1D6650a52CcCd78Ef9C44", + "status": "abandoned", + "id": "0x4952E95522e7Cc4D55d1D6650a52CcCd78Ef9C44" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4952E95522e7Cc4D55d1D6650a52CcCd78Ef9C44/logo.png b/blockchains/ethereum/assets/0x4952E95522e7Cc4D55d1D6650a52CcCd78Ef9C44/logo.png new file mode 100644 index 00000000..d0ba0ac8 Binary files /dev/null and b/blockchains/ethereum/assets/0x4952E95522e7Cc4D55d1D6650a52CcCd78Ef9C44/logo.png differ diff --git a/blockchains/ethereum/assets/0x49530777a1Da9Ea16Fd8cbCb1AC47e6Bf9CE09e4/info.json b/blockchains/ethereum/assets/0x49530777a1Da9Ea16Fd8cbCb1AC47e6Bf9CE09e4/info.json new file mode 100644 index 00000000..8c9bc59e --- /dev/null +++ b/blockchains/ethereum/assets/0x49530777a1Da9Ea16Fd8cbCb1AC47e6Bf9CE09e4/info.json @@ -0,0 +1,11 @@ +{ + "name": "AtjehCoin", + "symbol": "ACEH", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x49530777a1Da9Ea16Fd8cbCb1AC47e6Bf9CE09e4", + "status": "abandoned", + "id": "0x49530777a1Da9Ea16Fd8cbCb1AC47e6Bf9CE09e4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49530777a1Da9Ea16Fd8cbCb1AC47e6Bf9CE09e4/logo.png b/blockchains/ethereum/assets/0x49530777a1Da9Ea16Fd8cbCb1AC47e6Bf9CE09e4/logo.png new file mode 100644 index 00000000..2151f6ac Binary files /dev/null and b/blockchains/ethereum/assets/0x49530777a1Da9Ea16Fd8cbCb1AC47e6Bf9CE09e4/logo.png differ diff --git a/blockchains/ethereum/assets/0x4954Db6391F4feB5468b6B943D4935353596aEC9/info.json b/blockchains/ethereum/assets/0x4954Db6391F4feB5468b6B943D4935353596aEC9/info.json new file mode 100644 index 00000000..46fc8cc3 --- /dev/null +++ b/blockchains/ethereum/assets/0x4954Db6391F4feB5468b6B943D4935353596aEC9/info.json @@ -0,0 +1,11 @@ +{ + "name": "USDQ Stablecoin by Q DAO v1.0", + "symbol": "USDQ", + "type": "ERC20", + "decimals": 18, + "description": "USDQ is a decentralized stable coin, which is backed by bitcoin and pegged to the dollar, so 1 USDQ = $1 USD.", + "website": "https://usdq.platinum.fund/", + "explorer": "https://etherscan.io/token/0x4954Db6391F4feB5468b6B943D4935353596aEC9", + "status": "active", + "id": "0x4954Db6391F4feB5468b6B943D4935353596aEC9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4954Db6391F4feB5468b6B943D4935353596aEC9/logo.png b/blockchains/ethereum/assets/0x4954Db6391F4feB5468b6B943D4935353596aEC9/logo.png new file mode 100644 index 00000000..47a14144 Binary files /dev/null and b/blockchains/ethereum/assets/0x4954Db6391F4feB5468b6B943D4935353596aEC9/logo.png differ diff --git a/blockchains/ethereum/assets/0x4956b52aE2fF65D74CA2d61207523288e4528f96/info.json b/blockchains/ethereum/assets/0x4956b52aE2fF65D74CA2d61207523288e4528f96/info.json new file mode 100644 index 00000000..90e26b87 --- /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 00000000..23e76856 Binary files /dev/null and b/blockchains/ethereum/assets/0x4956b52aE2fF65D74CA2d61207523288e4528f96/logo.png differ diff --git a/blockchains/ethereum/assets/0x49589163f5C6bBDC65d459fD8FEC1371BAE4215a/info.json b/blockchains/ethereum/assets/0x49589163f5C6bBDC65d459fD8FEC1371BAE4215a/info.json new file mode 100644 index 00000000..6c41aed1 --- /dev/null +++ b/blockchains/ethereum/assets/0x49589163f5C6bBDC65d459fD8FEC1371BAE4215a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Navate AI", + "symbol": "NAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x49589163f5C6bBDC65d459fD8FEC1371BAE4215a", + "status": "abandoned", + "id": "0x49589163f5C6bBDC65d459fD8FEC1371BAE4215a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49589163f5C6bBDC65d459fD8FEC1371BAE4215a/logo.png b/blockchains/ethereum/assets/0x49589163f5C6bBDC65d459fD8FEC1371BAE4215a/logo.png new file mode 100644 index 00000000..fe08dae3 Binary files /dev/null and b/blockchains/ethereum/assets/0x49589163f5C6bBDC65d459fD8FEC1371BAE4215a/logo.png differ diff --git a/blockchains/ethereum/assets/0x49614661737EfBFC6a102efaeefDc8E197f7CC0e/info.json b/blockchains/ethereum/assets/0x49614661737EfBFC6a102efaeefDc8E197f7CC0e/info.json new file mode 100644 index 00000000..26dd6731 --- /dev/null +++ b/blockchains/ethereum/assets/0x49614661737EfBFC6a102efaeefDc8E197f7CC0e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Escroco Emerald", + "symbol": "ESCE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://escroco.net/", + "explorer": "https://etherscan.io/token/0x49614661737EfBFC6a102efaeefDc8E197f7CC0e", + "status": "active", + "id": "0x49614661737EfBFC6a102efaeefDc8E197f7CC0e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49614661737EfBFC6a102efaeefDc8E197f7CC0e/logo.png b/blockchains/ethereum/assets/0x49614661737EfBFC6a102efaeefDc8E197f7CC0e/logo.png new file mode 100644 index 00000000..8a38fed0 Binary files /dev/null and b/blockchains/ethereum/assets/0x49614661737EfBFC6a102efaeefDc8E197f7CC0e/logo.png differ diff --git a/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json new file mode 100644 index 00000000..1534b3fd --- /dev/null +++ b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json @@ -0,0 +1,32 @@ +{ + "name": "DinoLFG (DINO)", + "type": "ERC20", + "symbol": "DINO", + "decimals": 18, + "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": "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 diff --git a/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png new file mode 100644 index 00000000..db3c7b86 Binary files /dev/null and b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png differ diff --git a/blockchains/ethereum/assets/0x497bAEF294c11a5f0f5Bea3f2AdB3073DB448B56/info.json b/blockchains/ethereum/assets/0x497bAEF294c11a5f0f5Bea3f2AdB3073DB448B56/info.json new file mode 100644 index 00000000..401c8f49 --- /dev/null +++ b/blockchains/ethereum/assets/0x497bAEF294c11a5f0f5Bea3f2AdB3073DB448B56/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEX", + "symbol": "DEX", + "type": "ERC20", + "decimals": 18, + "description": "DEX is issued by CoinBit's Mining Exchange.", + "website": "https://www.coinbit.co.kr/", + "explorer": "https://etherscan.io/token/0x497bAEF294c11a5f0f5Bea3f2AdB3073DB448B56", + "status": "active", + "id": "0x497bAEF294c11a5f0f5Bea3f2AdB3073DB448B56" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x497bAEF294c11a5f0f5Bea3f2AdB3073DB448B56/logo.png b/blockchains/ethereum/assets/0x497bAEF294c11a5f0f5Bea3f2AdB3073DB448B56/logo.png new file mode 100644 index 00000000..c4641d7f Binary files /dev/null and b/blockchains/ethereum/assets/0x497bAEF294c11a5f0f5Bea3f2AdB3073DB448B56/logo.png differ diff --git a/blockchains/ethereum/assets/0x4983F767b1Bc44328E434729dDabea0a064cA1aC/info.json b/blockchains/ethereum/assets/0x4983F767b1Bc44328E434729dDabea0a064cA1aC/info.json new file mode 100644 index 00000000..4574bba0 --- /dev/null +++ b/blockchains/ethereum/assets/0x4983F767b1Bc44328E434729dDabea0a064cA1aC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Constant", + "symbol": "CONST", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4983F767b1Bc44328E434729dDabea0a064cA1aC", + "status": "abandoned", + "id": "0x4983F767b1Bc44328E434729dDabea0a064cA1aC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4983F767b1Bc44328E434729dDabea0a064cA1aC/logo.png b/blockchains/ethereum/assets/0x4983F767b1Bc44328E434729dDabea0a064cA1aC/logo.png new file mode 100644 index 00000000..17cd78c3 Binary files /dev/null and b/blockchains/ethereum/assets/0x4983F767b1Bc44328E434729dDabea0a064cA1aC/logo.png differ diff --git a/blockchains/ethereum/assets/0x4991f29802D9cD309D574A2179EEfB0306aaCDE8/info.json b/blockchains/ethereum/assets/0x4991f29802D9cD309D574A2179EEfB0306aaCDE8/info.json new file mode 100644 index 00000000..ea80709c --- /dev/null +++ b/blockchains/ethereum/assets/0x4991f29802D9cD309D574A2179EEfB0306aaCDE8/info.json @@ -0,0 +1,11 @@ +{ + "name": "AFM 2018", + "symbol": "AFM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4991f29802D9cD309D574A2179EEfB0306aaCDE8", + "status": "abandoned", + "id": "0x4991f29802D9cD309D574A2179EEfB0306aaCDE8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4991f29802D9cD309D574A2179EEfB0306aaCDE8/logo.png b/blockchains/ethereum/assets/0x4991f29802D9cD309D574A2179EEfB0306aaCDE8/logo.png new file mode 100644 index 00000000..08bb29c3 Binary files /dev/null and b/blockchains/ethereum/assets/0x4991f29802D9cD309D574A2179EEfB0306aaCDE8/logo.png differ diff --git a/blockchains/ethereum/assets/0x4993CB95c7443bdC06155c5f5688Be9D8f6999a5/info.json b/blockchains/ethereum/assets/0x4993CB95c7443bdC06155c5f5688Be9D8f6999a5/info.json new file mode 100644 index 00000000..70d3c425 --- /dev/null +++ b/blockchains/ethereum/assets/0x4993CB95c7443bdC06155c5f5688Be9D8f6999a5/info.json @@ -0,0 +1,11 @@ +{ + "name": "ROUND", + "symbol": "ROUND", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4993CB95c7443bdC06155c5f5688Be9D8f6999a5", + "status": "abandoned", + "id": "0x4993CB95c7443bdC06155c5f5688Be9D8f6999a5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4993CB95c7443bdC06155c5f5688Be9D8f6999a5/logo.png b/blockchains/ethereum/assets/0x4993CB95c7443bdC06155c5f5688Be9D8f6999a5/logo.png new file mode 100644 index 00000000..3d00df30 Binary files /dev/null and b/blockchains/ethereum/assets/0x4993CB95c7443bdC06155c5f5688Be9D8f6999a5/logo.png differ diff --git a/blockchains/ethereum/assets/0x49965D438d2a5D35DFfbc1FdAbA0c6Bd12749f08/info.json b/blockchains/ethereum/assets/0x49965D438d2a5D35DFfbc1FdAbA0c6Bd12749f08/info.json new file mode 100644 index 00000000..62f7929b --- /dev/null +++ b/blockchains/ethereum/assets/0x49965D438d2a5D35DFfbc1FdAbA0c6Bd12749f08/info.json @@ -0,0 +1,11 @@ +{ + "name": "MAYCOIN", + "symbol": "MAYCOIN", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x49965D438d2a5D35DFfbc1FdAbA0c6Bd12749f08", + "status": "abandoned", + "id": "0x49965D438d2a5D35DFfbc1FdAbA0c6Bd12749f08" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49965D438d2a5D35DFfbc1FdAbA0c6Bd12749f08/logo.png b/blockchains/ethereum/assets/0x49965D438d2a5D35DFfbc1FdAbA0c6Bd12749f08/logo.png new file mode 100644 index 00000000..e868787c Binary files /dev/null and b/blockchains/ethereum/assets/0x49965D438d2a5D35DFfbc1FdAbA0c6Bd12749f08/logo.png differ diff --git a/blockchains/ethereum/assets/0x499A6B77bc25C26bCf8265E2102B1B3dd1617024/info.json b/blockchains/ethereum/assets/0x499A6B77bc25C26bCf8265E2102B1B3dd1617024/info.json new file mode 100644 index 00000000..e554bf42 --- /dev/null +++ b/blockchains/ethereum/assets/0x499A6B77bc25C26bCf8265E2102B1B3dd1617024/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitether", + "symbol": "BTR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x499A6B77bc25C26bCf8265E2102B1B3dd1617024", + "status": "active", + "id": "0x499A6B77bc25C26bCf8265E2102B1B3dd1617024" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x499A6B77bc25C26bCf8265E2102B1B3dd1617024/logo.png b/blockchains/ethereum/assets/0x499A6B77bc25C26bCf8265E2102B1B3dd1617024/logo.png new file mode 100755 index 00000000..25f9479a Binary files /dev/null and b/blockchains/ethereum/assets/0x499A6B77bc25C26bCf8265E2102B1B3dd1617024/logo.png differ diff --git a/blockchains/ethereum/assets/0x499eA5278E7e221C3E427c08E6085674bF002bf4/info.json b/blockchains/ethereum/assets/0x499eA5278E7e221C3E427c08E6085674bF002bf4/info.json new file mode 100644 index 00000000..711a3a43 --- /dev/null +++ b/blockchains/ethereum/assets/0x499eA5278E7e221C3E427c08E6085674bF002bf4/info.json @@ -0,0 +1,11 @@ +{ + "name": "DCTR", + "symbol": "DCTR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x499eA5278E7e221C3E427c08E6085674bF002bf4", + "status": "abandoned", + "id": "0x499eA5278E7e221C3E427c08E6085674bF002bf4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x499eA5278E7e221C3E427c08E6085674bF002bf4/logo.png b/blockchains/ethereum/assets/0x499eA5278E7e221C3E427c08E6085674bF002bf4/logo.png new file mode 100644 index 00000000..2088eff5 Binary files /dev/null and b/blockchains/ethereum/assets/0x499eA5278E7e221C3E427c08E6085674bF002bf4/logo.png differ diff --git a/blockchains/ethereum/assets/0x49A1CBb5d28cdedD55B7daa627F658fbd8CF1d23/info.json b/blockchains/ethereum/assets/0x49A1CBb5d28cdedD55B7daa627F658fbd8CF1d23/info.json new file mode 100644 index 00000000..2f248dae --- /dev/null +++ b/blockchains/ethereum/assets/0x49A1CBb5d28cdedD55B7daa627F658fbd8CF1d23/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETERBASE", + "symbol": "XBASE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x49A1CBb5d28cdedD55B7daa627F658fbd8CF1d23", + "status": "abandoned", + "id": "0x49A1CBb5d28cdedD55B7daa627F658fbd8CF1d23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49A1CBb5d28cdedD55B7daa627F658fbd8CF1d23/logo.png b/blockchains/ethereum/assets/0x49A1CBb5d28cdedD55B7daa627F658fbd8CF1d23/logo.png new file mode 100644 index 00000000..24d60d79 Binary files /dev/null and b/blockchains/ethereum/assets/0x49A1CBb5d28cdedD55B7daa627F658fbd8CF1d23/logo.png differ diff --git a/blockchains/ethereum/assets/0x49A2e9Be4e06C7106c5708bFCABB9322d0ba33db/info.json b/blockchains/ethereum/assets/0x49A2e9Be4e06C7106c5708bFCABB9322d0ba33db/info.json new file mode 100644 index 00000000..f91010d7 --- /dev/null +++ b/blockchains/ethereum/assets/0x49A2e9Be4e06C7106c5708bFCABB9322d0ba33db/info.json @@ -0,0 +1,11 @@ +{ + "name": "MAKCOIN", + "symbol": "MAK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://makcoinnetwork.com/", + "explorer": "https://etherscan.io/token/0x49A2e9Be4e06C7106c5708bFCABB9322d0ba33db", + "status": "abandoned", + "id": "0x49A2e9Be4e06C7106c5708bFCABB9322d0ba33db" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49A2e9Be4e06C7106c5708bFCABB9322d0ba33db/logo.png b/blockchains/ethereum/assets/0x49A2e9Be4e06C7106c5708bFCABB9322d0ba33db/logo.png new file mode 100644 index 00000000..a642ff8a Binary files /dev/null and b/blockchains/ethereum/assets/0x49A2e9Be4e06C7106c5708bFCABB9322d0ba33db/logo.png differ diff --git a/blockchains/ethereum/assets/0x49AeC0752E68D0282Db544C677f6BA407BA17ED7/info.json b/blockchains/ethereum/assets/0x49AeC0752E68D0282Db544C677f6BA407BA17ED7/info.json new file mode 100644 index 00000000..26d0158e --- /dev/null +++ b/blockchains/ethereum/assets/0x49AeC0752E68D0282Db544C677f6BA407BA17ED7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Billionaire Token", + "symbol": "XBL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://billionairetoken.com/", + "explorer": "https://etherscan.io/token/0x49AeC0752E68D0282Db544C677f6BA407BA17ED7", + "status": "abandoned", + "id": "0x49AeC0752E68D0282Db544C677f6BA407BA17ED7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49AeC0752E68D0282Db544C677f6BA407BA17ED7/logo.png b/blockchains/ethereum/assets/0x49AeC0752E68D0282Db544C677f6BA407BA17ED7/logo.png new file mode 100644 index 00000000..ec6c7139 Binary files /dev/null and b/blockchains/ethereum/assets/0x49AeC0752E68D0282Db544C677f6BA407BA17ED7/logo.png differ diff --git a/blockchains/ethereum/assets/0x49B7af9C98A793AA44aB4937B92C72c3a96c3478/info.json b/blockchains/ethereum/assets/0x49B7af9C98A793AA44aB4937B92C72c3a96c3478/info.json new file mode 100644 index 00000000..329b8f54 --- /dev/null +++ b/blockchains/ethereum/assets/0x49B7af9C98A793AA44aB4937B92C72c3a96c3478/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R891469", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x49B7af9C98A793AA44aB4937B92C72c3a96c3478", + "status": "spam", + "id": "0x49B7af9C98A793AA44aB4937B92C72c3a96c3478" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49B7af9C98A793AA44aB4937B92C72c3a96c3478/logo.png b/blockchains/ethereum/assets/0x49B7af9C98A793AA44aB4937B92C72c3a96c3478/logo.png new file mode 100644 index 00000000..834873b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x49B7af9C98A793AA44aB4937B92C72c3a96c3478/logo.png differ diff --git a/blockchains/ethereum/assets/0x49C67AE22c334D0123dD6DBDc44F5302e130a88b/info.json b/blockchains/ethereum/assets/0x49C67AE22c334D0123dD6DBDc44F5302e130a88b/info.json new file mode 100644 index 00000000..26c812aa --- /dev/null +++ b/blockchains/ethereum/assets/0x49C67AE22c334D0123dD6DBDc44F5302e130a88b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lupecoin", + "symbol": "LUPX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x49C67AE22c334D0123dD6DBDc44F5302e130a88b", + "status": "abandoned", + "id": "0x49C67AE22c334D0123dD6DBDc44F5302e130a88b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49C67AE22c334D0123dD6DBDc44F5302e130a88b/logo.png b/blockchains/ethereum/assets/0x49C67AE22c334D0123dD6DBDc44F5302e130a88b/logo.png new file mode 100755 index 00000000..1e9544b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x49C67AE22c334D0123dD6DBDc44F5302e130a88b/logo.png differ diff --git a/blockchains/ethereum/assets/0x49D09cDa1Deb8a1680F1270C5ed15218fc4B18f0/info.json b/blockchains/ethereum/assets/0x49D09cDa1Deb8a1680F1270C5ed15218fc4B18f0/info.json new file mode 100644 index 00000000..2889d223 --- /dev/null +++ b/blockchains/ethereum/assets/0x49D09cDa1Deb8a1680F1270C5ed15218fc4B18f0/info.json @@ -0,0 +1,11 @@ +{ + "name": "OVCODE", + "symbol": "OVC", + "type": "ERC20", + "decimals": 18, + "description": "OVCODE is an award winning verification engine. OVCODE is a patented technology that verifies authenticity, reliability, and integrity of data using Blockchain technology.", + "website": "https://ovcode.com/", + "explorer": "https://etherscan.io/token/0x49D09cDa1Deb8a1680F1270C5ed15218fc4B18f0", + "status": "active", + "id": "0x49D09cDa1Deb8a1680F1270C5ed15218fc4B18f0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49D09cDa1Deb8a1680F1270C5ed15218fc4B18f0/logo.png b/blockchains/ethereum/assets/0x49D09cDa1Deb8a1680F1270C5ed15218fc4B18f0/logo.png new file mode 100644 index 00000000..4e93c6c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x49D09cDa1Deb8a1680F1270C5ed15218fc4B18f0/logo.png differ diff --git a/blockchains/ethereum/assets/0x49E34308DFF5F78Ee0CC4eE1d08Cb5EaB17E829E/info.json b/blockchains/ethereum/assets/0x49E34308DFF5F78Ee0CC4eE1d08Cb5EaB17E829E/info.json new file mode 100644 index 00000000..99d0e196 --- /dev/null +++ b/blockchains/ethereum/assets/0x49E34308DFF5F78Ee0CC4eE1d08Cb5EaB17E829E/info.json @@ -0,0 +1,11 @@ +{ + "name": "SmogToken", + "symbol": "SGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x49E34308DFF5F78Ee0CC4eE1d08Cb5EaB17E829E", + "status": "abandoned", + "id": "0x49E34308DFF5F78Ee0CC4eE1d08Cb5EaB17E829E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49E34308DFF5F78Ee0CC4eE1d08Cb5EaB17E829E/logo.png b/blockchains/ethereum/assets/0x49E34308DFF5F78Ee0CC4eE1d08Cb5EaB17E829E/logo.png new file mode 100755 index 00000000..1c751141 Binary files /dev/null and b/blockchains/ethereum/assets/0x49E34308DFF5F78Ee0CC4eE1d08Cb5EaB17E829E/logo.png differ diff --git a/blockchains/ethereum/assets/0x49E833337ECe7aFE375e44F4E3e8481029218E5c/info.json b/blockchains/ethereum/assets/0x49E833337ECe7aFE375e44F4E3e8481029218E5c/info.json new file mode 100644 index 00000000..e9248f72 --- /dev/null +++ b/blockchains/ethereum/assets/0x49E833337ECe7aFE375e44F4E3e8481029218E5c/info.json @@ -0,0 +1,33 @@ +{ + "name": "Value Liquidity", + "website": "https://valuedefi.io/", + "description": "Value DeFi: Bringing True Value to DeFi.", + "explorer": "https://etherscan.io/token/0x49E833337ECe7aFE375e44F4E3e8481029218E5c", + "type": "ERC20", + "symbol": "VALUE", + "decimals": 18, + "status": "active", + "id": "0x49E833337ECe7aFE375e44F4E3e8481029218E5c", + "links": [ + { + "name": "github", + "url": "https://github.com/valuedefi" + }, + { + "name": "x", + "url": "https://x.com/value_defi" + }, + { + "name": "telegram", + "url": "https://t.me/ValueDeFi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Dpvd7tp" + }, + { + "name": "medium", + "url": "https://medium.com/@valuedefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49E833337ECe7aFE375e44F4E3e8481029218E5c/logo.png b/blockchains/ethereum/assets/0x49E833337ECe7aFE375e44F4E3e8481029218E5c/logo.png new file mode 100644 index 00000000..8264f1f4 Binary files /dev/null and b/blockchains/ethereum/assets/0x49E833337ECe7aFE375e44F4E3e8481029218E5c/logo.png differ diff --git a/blockchains/ethereum/assets/0x49a6123356b998EF9478C495E3D162A2F4eC4363/info.json b/blockchains/ethereum/assets/0x49a6123356b998EF9478C495E3D162A2F4eC4363/info.json new file mode 100644 index 00000000..db3af78a --- /dev/null +++ b/blockchains/ethereum/assets/0x49a6123356b998EF9478C495E3D162A2F4eC4363/info.json @@ -0,0 +1,11 @@ +{ + "name": "HOLDPLATFORM", + "symbol": "HOLD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x49a6123356b998EF9478C495E3D162A2F4eC4363", + "status": "abandoned", + "id": "0x49a6123356b998EF9478C495E3D162A2F4eC4363" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49a6123356b998EF9478C495E3D162A2F4eC4363/logo.png b/blockchains/ethereum/assets/0x49a6123356b998EF9478C495E3D162A2F4eC4363/logo.png new file mode 100644 index 00000000..cd22c320 Binary files /dev/null and b/blockchains/ethereum/assets/0x49a6123356b998EF9478C495E3D162A2F4eC4363/logo.png differ diff --git a/blockchains/ethereum/assets/0x49b127Bc33ce7E1586EC28CEC6a65b112596C822/info.json b/blockchains/ethereum/assets/0x49b127Bc33ce7E1586EC28CEC6a65b112596C822/info.json new file mode 100644 index 00000000..d7a640aa --- /dev/null +++ b/blockchains/ethereum/assets/0x49b127Bc33ce7E1586EC28CEC6a65b112596C822/info.json @@ -0,0 +1,11 @@ +{ + "name": "ALX", + "symbol": "ALX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://alax.io/", + "explorer": "https://etherscan.io/token/0x49b127Bc33ce7E1586EC28CEC6a65b112596C822", + "status": "abandoned", + "id": "0x49b127Bc33ce7E1586EC28CEC6a65b112596C822" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49b127Bc33ce7E1586EC28CEC6a65b112596C822/logo.png b/blockchains/ethereum/assets/0x49b127Bc33ce7E1586EC28CEC6a65b112596C822/logo.png new file mode 100755 index 00000000..19ebd41f Binary files /dev/null and b/blockchains/ethereum/assets/0x49b127Bc33ce7E1586EC28CEC6a65b112596C822/logo.png differ diff --git a/blockchains/ethereum/assets/0x49bD2DA75b1F7AF1E4dFd6b1125FEcDe59dBec58/info.json b/blockchains/ethereum/assets/0x49bD2DA75b1F7AF1E4dFd6b1125FEcDe59dBec58/info.json new file mode 100644 index 00000000..3983c0fe --- /dev/null +++ b/blockchains/ethereum/assets/0x49bD2DA75b1F7AF1E4dFd6b1125FEcDe59dBec58/info.json @@ -0,0 +1,11 @@ +{ + "name": "Linkey Token", + "symbol": "LKY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x49bD2DA75b1F7AF1E4dFd6b1125FEcDe59dBec58", + "status": "abandoned", + "id": "0x49bD2DA75b1F7AF1E4dFd6b1125FEcDe59dBec58" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49bD2DA75b1F7AF1E4dFd6b1125FEcDe59dBec58/logo.png b/blockchains/ethereum/assets/0x49bD2DA75b1F7AF1E4dFd6b1125FEcDe59dBec58/logo.png new file mode 100644 index 00000000..a41b80ce Binary files /dev/null and b/blockchains/ethereum/assets/0x49bD2DA75b1F7AF1E4dFd6b1125FEcDe59dBec58/logo.png differ diff --git a/blockchains/ethereum/assets/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca/info.json b/blockchains/ethereum/assets/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca/info.json new file mode 100644 index 00000000..0ac6df63 --- /dev/null +++ b/blockchains/ethereum/assets/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca/info.json @@ -0,0 +1,32 @@ +{ + "name": "Ukan", + "type": "ERC20", + "symbol": "UKAN", + "decimals": 18, + "website": "https://ukan.io", + "description": "UKAN token is the first of its kind token, driven by the community that empowers a nation during an immense humanitarian crisis. Nicknamed the SAVIOR, because we utilize blockchain technology for the better good, and bring a transparent project to the world that will help bootstrap the economy of Ukraine during and especially in the aftermath of the war.", + "explorer": "https://etherscan.io/token/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca", + "status": "active", + "id": "0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca", + "links": [ + { + "name": "x", + "url": "https://x.com/Ukantoken" + }, + { + "name": "github", + "url": "https://github.com/Ukangit" + }, + { + "name": "telegram", + "url": "https://t.me/Ukantoken" + }, + { + "name": "medium", + "url": "https://medium.com/@Ukantoken" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca/logo.png b/blockchains/ethereum/assets/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca/logo.png new file mode 100644 index 00000000..b34eda09 Binary files /dev/null and b/blockchains/ethereum/assets/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca/logo.png differ diff --git a/blockchains/ethereum/assets/0x49d4C3629f93f49ba934dEBF28605D26CAaF3aCc/info.json b/blockchains/ethereum/assets/0x49d4C3629f93f49ba934dEBF28605D26CAaF3aCc/info.json new file mode 100644 index 00000000..3f301023 --- /dev/null +++ b/blockchains/ethereum/assets/0x49d4C3629f93f49ba934dEBF28605D26CAaF3aCc/info.json @@ -0,0 +1,11 @@ +{ + "name": "WineChain", + "symbol": "WID", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x49d4C3629f93f49ba934dEBF28605D26CAaF3aCc", + "status": "abandoned", + "id": "0x49d4C3629f93f49ba934dEBF28605D26CAaF3aCc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49d4C3629f93f49ba934dEBF28605D26CAaF3aCc/logo.png b/blockchains/ethereum/assets/0x49d4C3629f93f49ba934dEBF28605D26CAaF3aCc/logo.png new file mode 100644 index 00000000..c47ad53b Binary files /dev/null and b/blockchains/ethereum/assets/0x49d4C3629f93f49ba934dEBF28605D26CAaF3aCc/logo.png differ diff --git a/blockchains/ethereum/assets/0x49d716DFe60b37379010A75329ae09428f17118d/info.json b/blockchains/ethereum/assets/0x49d716DFe60b37379010A75329ae09428f17118d/info.json new file mode 100644 index 00000000..52fd1340 --- /dev/null +++ b/blockchains/ethereum/assets/0x49d716DFe60b37379010A75329ae09428f17118d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pool Dai", + "symbol": "plDai", + "type": "ERC20", + "decimals": 18, + "description": "PoolTogether is a no-loss, audited savings game powered by blockchain technology.", + "website": "https://www.pooltogether.com/", + "explorer": "https://etherscan.io/token/0x49d716DFe60b37379010A75329ae09428f17118d", + "status": "active", + "id": "0x49d716DFe60b37379010A75329ae09428f17118d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49d716DFe60b37379010A75329ae09428f17118d/logo.png b/blockchains/ethereum/assets/0x49d716DFe60b37379010A75329ae09428f17118d/logo.png new file mode 100644 index 00000000..25c9f1e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x49d716DFe60b37379010A75329ae09428f17118d/logo.png differ diff --git a/blockchains/ethereum/assets/0x49f112c234969F2b13724b8Ad81C182aCF3B8410/info.json b/blockchains/ethereum/assets/0x49f112c234969F2b13724b8Ad81C182aCF3B8410/info.json new file mode 100644 index 00000000..93cb8352 --- /dev/null +++ b/blockchains/ethereum/assets/0x49f112c234969F2b13724b8Ad81C182aCF3B8410/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R935153", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x49f112c234969F2b13724b8Ad81C182aCF3B8410", + "status": "spam", + "id": "0x49f112c234969F2b13724b8Ad81C182aCF3B8410" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49f112c234969F2b13724b8Ad81C182aCF3B8410/logo.png b/blockchains/ethereum/assets/0x49f112c234969F2b13724b8Ad81C182aCF3B8410/logo.png new file mode 100644 index 00000000..e213a7c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x49f112c234969F2b13724b8Ad81C182aCF3B8410/logo.png differ diff --git a/blockchains/ethereum/assets/0x49f4592E641820e928F9919Ef4aBd92a719B4b49/info.json b/blockchains/ethereum/assets/0x49f4592E641820e928F9919Ef4aBd92a719B4b49/info.json new file mode 100644 index 00000000..3736aeb6 --- /dev/null +++ b/blockchains/ethereum/assets/0x49f4592E641820e928F9919Ef4aBd92a719B4b49/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum sUSD iToken", + "symbol": "iSUSD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x49f4592E641820e928F9919Ef4aBd92a719B4b49", + "status": "abandoned", + "id": "0x49f4592E641820e928F9919Ef4aBd92a719B4b49" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49f4592E641820e928F9919Ef4aBd92a719B4b49/logo.png b/blockchains/ethereum/assets/0x49f4592E641820e928F9919Ef4aBd92a719B4b49/logo.png new file mode 100644 index 00000000..664c90b7 Binary files /dev/null and b/blockchains/ethereum/assets/0x49f4592E641820e928F9919Ef4aBd92a719B4b49/logo.png differ diff --git a/blockchains/ethereum/assets/0x49f941FA7f5731fe302068d79c8604C24C5E7196/info.json b/blockchains/ethereum/assets/0x49f941FA7f5731fe302068d79c8604C24C5E7196/info.json new file mode 100644 index 00000000..4ca43174 --- /dev/null +++ b/blockchains/ethereum/assets/0x49f941FA7f5731fe302068d79c8604C24C5E7196/info.json @@ -0,0 +1,11 @@ +{ + "name": "BRR", + "website": "https://brr.finance/", + "description": "ha ha money printer go brr", + "explorer": "https://etherscan.io/token/0x49f941FA7f5731fe302068d79c8604C24C5E7196", + "type": "ERC20", + "symbol": "BRR", + "decimals": 18, + "status": "active", + "id": "0x49f941FA7f5731fe302068d79c8604C24C5E7196" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49f941FA7f5731fe302068d79c8604C24C5E7196/logo.png b/blockchains/ethereum/assets/0x49f941FA7f5731fe302068d79c8604C24C5E7196/logo.png new file mode 100644 index 00000000..cb3c4d7e Binary files /dev/null and b/blockchains/ethereum/assets/0x49f941FA7f5731fe302068d79c8604C24C5E7196/logo.png differ diff --git a/blockchains/ethereum/assets/0x49fa378b4550758731A0A4638330b2e59cE37fA6/info.json b/blockchains/ethereum/assets/0x49fa378b4550758731A0A4638330b2e59cE37fA6/info.json new file mode 100644 index 00000000..8560dd38 --- /dev/null +++ b/blockchains/ethereum/assets/0x49fa378b4550758731A0A4638330b2e59cE37fA6/info.json @@ -0,0 +1,11 @@ +{ + "name": "DANI", + "symbol": "DANI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x49fa378b4550758731A0A4638330b2e59cE37fA6", + "status": "abandoned", + "id": "0x49fa378b4550758731A0A4638330b2e59cE37fA6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49fa378b4550758731A0A4638330b2e59cE37fA6/logo.png b/blockchains/ethereum/assets/0x49fa378b4550758731A0A4638330b2e59cE37fA6/logo.png new file mode 100755 index 00000000..4138a142 Binary files /dev/null and b/blockchains/ethereum/assets/0x49fa378b4550758731A0A4638330b2e59cE37fA6/logo.png differ diff --git a/blockchains/ethereum/assets/0x49fb8ad7578148E17c3eF0C344CE23A66ed372C4/info.json b/blockchains/ethereum/assets/0x49fb8ad7578148E17c3eF0C344CE23A66ed372C4/info.json new file mode 100644 index 00000000..df30551c --- /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 00000000..6badbcd4 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 00000000..6950e820 --- /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 00000000..bd8eea56 Binary files /dev/null and b/blockchains/ethereum/assets/0x4A029F7bCf33AcB03547D8fA7be840347973e24e/logo.png differ diff --git a/blockchains/ethereum/assets/0x4A0eEdF6e95581CdA46A767E612e83731C0cD418/info.json b/blockchains/ethereum/assets/0x4A0eEdF6e95581CdA46A767E612e83731C0cD418/info.json new file mode 100644 index 00000000..b1be20cb --- /dev/null +++ b/blockchains/ethereum/assets/0x4A0eEdF6e95581CdA46A767E612e83731C0cD418/info.json @@ -0,0 +1,11 @@ +{ + "name": "WINSSHI", + "symbol": "WNS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://winsshi.com/", + "explorer": "https://etherscan.io/token/0x4A0eEdF6e95581CdA46A767E612e83731C0cD418", + "status": "abandoned", + "id": "0x4A0eEdF6e95581CdA46A767E612e83731C0cD418" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4A0eEdF6e95581CdA46A767E612e83731C0cD418/logo.png b/blockchains/ethereum/assets/0x4A0eEdF6e95581CdA46A767E612e83731C0cD418/logo.png new file mode 100644 index 00000000..c856125a Binary files /dev/null and b/blockchains/ethereum/assets/0x4A0eEdF6e95581CdA46A767E612e83731C0cD418/logo.png differ diff --git a/blockchains/ethereum/assets/0x4A16BAf414b8e637Ed12019faD5Dd705735DB2e0/info.json b/blockchains/ethereum/assets/0x4A16BAf414b8e637Ed12019faD5Dd705735DB2e0/info.json new file mode 100644 index 00000000..49fdb54b --- /dev/null +++ b/blockchains/ethereum/assets/0x4A16BAf414b8e637Ed12019faD5Dd705735DB2e0/info.json @@ -0,0 +1,11 @@ +{ + "name": "QCAD", + "symbol": "QCAD", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4A16BAf414b8e637Ed12019faD5Dd705735DB2e0", + "status": "abandoned", + "id": "0x4A16BAf414b8e637Ed12019faD5Dd705735DB2e0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4A16BAf414b8e637Ed12019faD5Dd705735DB2e0/logo.png b/blockchains/ethereum/assets/0x4A16BAf414b8e637Ed12019faD5Dd705735DB2e0/logo.png new file mode 100644 index 00000000..2a836311 Binary files /dev/null and b/blockchains/ethereum/assets/0x4A16BAf414b8e637Ed12019faD5Dd705735DB2e0/logo.png differ diff --git a/blockchains/ethereum/assets/0x4A1eDf138398b89E819a5F252830ac8cc3E53378/info.json b/blockchains/ethereum/assets/0x4A1eDf138398b89E819a5F252830ac8cc3E53378/info.json new file mode 100644 index 00000000..aae89256 --- /dev/null +++ b/blockchains/ethereum/assets/0x4A1eDf138398b89E819a5F252830ac8cc3E53378/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 000-CN16", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4A1eDf138398b89E819a5F252830ac8cc3E53378", + "status": "abandoned", + "id": "0x4A1eDf138398b89E819a5F252830ac8cc3E53378" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4A1eDf138398b89E819a5F252830ac8cc3E53378/logo.png b/blockchains/ethereum/assets/0x4A1eDf138398b89E819a5F252830ac8cc3E53378/logo.png new file mode 100644 index 00000000..dec2dc1f Binary files /dev/null and b/blockchains/ethereum/assets/0x4A1eDf138398b89E819a5F252830ac8cc3E53378/logo.png differ diff --git a/blockchains/ethereum/assets/0x4A37A91eec4C97F9090CE66d21D3B3Aadf1aE5aD/info.json b/blockchains/ethereum/assets/0x4A37A91eec4C97F9090CE66d21D3B3Aadf1aE5aD/info.json new file mode 100644 index 00000000..f16db1f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x4A37A91eec4C97F9090CE66d21D3B3Aadf1aE5aD/info.json @@ -0,0 +1,11 @@ +{ + "name": "LiquorChain Token", + "symbol": "LCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4A37A91eec4C97F9090CE66d21D3B3Aadf1aE5aD", + "status": "abandoned", + "id": "0x4A37A91eec4C97F9090CE66d21D3B3Aadf1aE5aD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4A37A91eec4C97F9090CE66d21D3B3Aadf1aE5aD/logo.png b/blockchains/ethereum/assets/0x4A37A91eec4C97F9090CE66d21D3B3Aadf1aE5aD/logo.png new file mode 100755 index 00000000..6951f8e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x4A37A91eec4C97F9090CE66d21D3B3Aadf1aE5aD/logo.png differ diff --git a/blockchains/ethereum/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json b/blockchains/ethereum/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json new file mode 100644 index 00000000..1f8951de --- /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 00000000..05861150 Binary files /dev/null and b/blockchains/ethereum/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/logo.png differ diff --git a/blockchains/ethereum/assets/0x4A42d2c580f83dcE404aCad18dab26Db11a1750E/info.json b/blockchains/ethereum/assets/0x4A42d2c580f83dcE404aCad18dab26Db11a1750E/info.json new file mode 100644 index 00000000..4441883b --- /dev/null +++ b/blockchains/ethereum/assets/0x4A42d2c580f83dcE404aCad18dab26Db11a1750E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Relex", + "symbol": "RLX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://relex.io/", + "explorer": "https://etherscan.io/token/0x4A42d2c580f83dcE404aCad18dab26Db11a1750E", + "status": "abandoned", + "id": "0x4A42d2c580f83dcE404aCad18dab26Db11a1750E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4A42d2c580f83dcE404aCad18dab26Db11a1750E/logo.png b/blockchains/ethereum/assets/0x4A42d2c580f83dcE404aCad18dab26Db11a1750E/logo.png new file mode 100644 index 00000000..e5a2164b Binary files /dev/null and b/blockchains/ethereum/assets/0x4A42d2c580f83dcE404aCad18dab26Db11a1750E/logo.png differ diff --git a/blockchains/ethereum/assets/0x4A644354aA3fe89D2a88cEd00D773E6E34c75EAA/info.json b/blockchains/ethereum/assets/0x4A644354aA3fe89D2a88cEd00D773E6E34c75EAA/info.json new file mode 100644 index 00000000..c4427787 --- /dev/null +++ b/blockchains/ethereum/assets/0x4A644354aA3fe89D2a88cEd00D773E6E34c75EAA/info.json @@ -0,0 +1,11 @@ +{ + "name": "FrasierCoin", + "symbol": "FRC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4A644354aA3fe89D2a88cEd00D773E6E34c75EAA", + "status": "abandoned", + "id": "0x4A644354aA3fe89D2a88cEd00D773E6E34c75EAA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4A644354aA3fe89D2a88cEd00D773E6E34c75EAA/logo.png b/blockchains/ethereum/assets/0x4A644354aA3fe89D2a88cEd00D773E6E34c75EAA/logo.png new file mode 100644 index 00000000..8b58277f Binary files /dev/null and b/blockchains/ethereum/assets/0x4A644354aA3fe89D2a88cEd00D773E6E34c75EAA/logo.png differ diff --git a/blockchains/ethereum/assets/0x4A64515E5E1d1073e83f30cB97BEd20400b66E10/info.json b/blockchains/ethereum/assets/0x4A64515E5E1d1073e83f30cB97BEd20400b66E10/info.json new file mode 100644 index 00000000..6da782e6 --- /dev/null +++ b/blockchains/ethereum/assets/0x4A64515E5E1d1073e83f30cB97BEd20400b66E10/info.json @@ -0,0 +1,11 @@ +{ + "name": "WZEC", + "website": "https://www.wrapped.com", + "description": "Wrapped ZEC is a 1:1 equivalent of Zcash on the Ethereum network", + "explorer": "https://etherscan.io/token/0x4A64515E5E1d1073e83f30cB97BEd20400b66E10", + "type": "ERC20", + "symbol": "WZEC", + "decimals": 18, + "status": "active", + "id": "0x4A64515E5E1d1073e83f30cB97BEd20400b66E10" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4A64515E5E1d1073e83f30cB97BEd20400b66E10/logo.png b/blockchains/ethereum/assets/0x4A64515E5E1d1073e83f30cB97BEd20400b66E10/logo.png new file mode 100644 index 00000000..79573b70 Binary files /dev/null and b/blockchains/ethereum/assets/0x4A64515E5E1d1073e83f30cB97BEd20400b66E10/logo.png differ diff --git a/blockchains/ethereum/assets/0x4A73ce2A1d78DeE1000e87f7218791253aa66B1c/info.json b/blockchains/ethereum/assets/0x4A73ce2A1d78DeE1000e87f7218791253aa66B1c/info.json new file mode 100644 index 00000000..8b5c7cb5 --- /dev/null +++ b/blockchains/ethereum/assets/0x4A73ce2A1d78DeE1000e87f7218791253aa66B1c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jerusalem Chain", + "symbol": "JERU", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4A73ce2A1d78DeE1000e87f7218791253aa66B1c", + "status": "abandoned", + "id": "0x4A73ce2A1d78DeE1000e87f7218791253aa66B1c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4A73ce2A1d78DeE1000e87f7218791253aa66B1c/logo.png b/blockchains/ethereum/assets/0x4A73ce2A1d78DeE1000e87f7218791253aa66B1c/logo.png new file mode 100755 index 00000000..01933e08 Binary files /dev/null and b/blockchains/ethereum/assets/0x4A73ce2A1d78DeE1000e87f7218791253aa66B1c/logo.png differ diff --git a/blockchains/ethereum/assets/0x4A8F44BE523580a11cdB20e2C7C470Adf44Ec9BB/info.json b/blockchains/ethereum/assets/0x4A8F44BE523580a11cdB20e2C7C470Adf44Ec9BB/info.json new file mode 100644 index 00000000..412a3d8a --- /dev/null +++ b/blockchains/ethereum/assets/0x4A8F44BE523580a11cdB20e2C7C470Adf44Ec9BB/info.json @@ -0,0 +1,11 @@ +{ + "name": "MinerCoin", + "symbol": "BTMC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4A8F44BE523580a11cdB20e2C7C470Adf44Ec9BB", + "status": "abandoned", + "id": "0x4A8F44BE523580a11cdB20e2C7C470Adf44Ec9BB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4A8F44BE523580a11cdB20e2C7C470Adf44Ec9BB/logo.png b/blockchains/ethereum/assets/0x4A8F44BE523580a11cdB20e2C7C470Adf44Ec9BB/logo.png new file mode 100644 index 00000000..702c7862 Binary files /dev/null and b/blockchains/ethereum/assets/0x4A8F44BE523580a11cdB20e2C7C470Adf44Ec9BB/logo.png differ diff --git a/blockchains/ethereum/assets/0x4A9d79Bb075b90e4cC63e2a471aED0cDcF944524/info.json b/blockchains/ethereum/assets/0x4A9d79Bb075b90e4cC63e2a471aED0cDcF944524/info.json new file mode 100644 index 00000000..ad6c64e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x4A9d79Bb075b90e4cC63e2a471aED0cDcF944524/info.json @@ -0,0 +1,11 @@ +{ + "name": "OppCoin", + "symbol": "OPPC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4A9d79Bb075b90e4cC63e2a471aED0cDcF944524", + "status": "abandoned", + "id": "0x4A9d79Bb075b90e4cC63e2a471aED0cDcF944524" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4A9d79Bb075b90e4cC63e2a471aED0cDcF944524/logo.png b/blockchains/ethereum/assets/0x4A9d79Bb075b90e4cC63e2a471aED0cDcF944524/logo.png new file mode 100644 index 00000000..1e4ac2dd Binary files /dev/null and b/blockchains/ethereum/assets/0x4A9d79Bb075b90e4cC63e2a471aED0cDcF944524/logo.png differ diff --git a/blockchains/ethereum/assets/0x4AC00f287f36A6Aad655281fE1cA6798C9cb727b/info.json b/blockchains/ethereum/assets/0x4AC00f287f36A6Aad655281fE1cA6798C9cb727b/info.json new file mode 100644 index 00000000..1b07eb89 --- /dev/null +++ b/blockchains/ethereum/assets/0x4AC00f287f36A6Aad655281fE1cA6798C9cb727b/info.json @@ -0,0 +1,11 @@ +{ + "name": "GazeCoin Metaverse Token", + "symbol": "GZE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.gazecoin.io/", + "explorer": "https://etherscan.io/token/0x4AC00f287f36A6Aad655281fE1cA6798C9cb727b", + "status": "abandoned", + "id": "0x4AC00f287f36A6Aad655281fE1cA6798C9cb727b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4AC00f287f36A6Aad655281fE1cA6798C9cb727b/logo.png b/blockchains/ethereum/assets/0x4AC00f287f36A6Aad655281fE1cA6798C9cb727b/logo.png new file mode 100644 index 00000000..7a5654c5 Binary files /dev/null and b/blockchains/ethereum/assets/0x4AC00f287f36A6Aad655281fE1cA6798C9cb727b/logo.png differ diff --git a/blockchains/ethereum/assets/0x4AD2118Da8a65eaa81402A3d583FEF6eE76BDf3F/info.json b/blockchains/ethereum/assets/0x4AD2118Da8a65eaa81402A3d583FEF6eE76BDf3F/info.json new file mode 100644 index 00000000..92abd52a --- /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 00000000..25f5f953 Binary files /dev/null and b/blockchains/ethereum/assets/0x4AD2118Da8a65eaa81402A3d583FEF6eE76BDf3F/logo.png differ diff --git a/blockchains/ethereum/assets/0x4AFAdB32b8fdB334cF9f20AFb476A06c1F5b111A/info.json b/blockchains/ethereum/assets/0x4AFAdB32b8fdB334cF9f20AFb476A06c1F5b111A/info.json new file mode 100644 index 00000000..73992f4d --- /dev/null +++ b/blockchains/ethereum/assets/0x4AFAdB32b8fdB334cF9f20AFb476A06c1F5b111A/info.json @@ -0,0 +1,11 @@ +{ + "name": "TLS Token", + "symbol": "TLS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://tlsgroup.io/", + "explorer": "https://etherscan.io/token/0x4AFAdB32b8fdB334cF9f20AFb476A06c1F5b111A", + "status": "abandoned", + "id": "0x4AFAdB32b8fdB334cF9f20AFb476A06c1F5b111A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4AFAdB32b8fdB334cF9f20AFb476A06c1F5b111A/logo.png b/blockchains/ethereum/assets/0x4AFAdB32b8fdB334cF9f20AFb476A06c1F5b111A/logo.png new file mode 100644 index 00000000..fd77c867 Binary files /dev/null and b/blockchains/ethereum/assets/0x4AFAdB32b8fdB334cF9f20AFb476A06c1F5b111A/logo.png differ diff --git a/blockchains/ethereum/assets/0x4AaC461C86aBfA71e9d00d9a2cde8d74E4E1aeEa/info.json b/blockchains/ethereum/assets/0x4AaC461C86aBfA71e9d00d9a2cde8d74E4E1aeEa/info.json new file mode 100644 index 00000000..00c4bffc --- /dev/null +++ b/blockchains/ethereum/assets/0x4AaC461C86aBfA71e9d00d9a2cde8d74E4E1aeEa/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZINC", + "symbol": "ZINC", + "type": "ERC20", + "decimals": 18, + "description": "Zinc simplifies, accelerates and reduces the cost of the hiring journey for workers and recruiters within the technology sector.", + "website": "https://zinc.work/", + "explorer": "https://etherscan.io/token/0x4AaC461C86aBfA71e9d00d9a2cde8d74E4E1aeEa", + "status": "active", + "id": "0x4AaC461C86aBfA71e9d00d9a2cde8d74E4E1aeEa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4AaC461C86aBfA71e9d00d9a2cde8d74E4E1aeEa/logo.png b/blockchains/ethereum/assets/0x4AaC461C86aBfA71e9d00d9a2cde8d74E4E1aeEa/logo.png new file mode 100644 index 00000000..3aebd254 Binary files /dev/null and b/blockchains/ethereum/assets/0x4AaC461C86aBfA71e9d00d9a2cde8d74E4E1aeEa/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Ad32852B54cD0671023bb4692245F122E7CB30D/info.json b/blockchains/ethereum/assets/0x4Ad32852B54cD0671023bb4692245F122E7CB30D/info.json new file mode 100644 index 00000000..cbad8048 --- /dev/null +++ b/blockchains/ethereum/assets/0x4Ad32852B54cD0671023bb4692245F122E7CB30D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Co2 Hero", + "symbol": "CO2H", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4Ad32852B54cD0671023bb4692245F122E7CB30D", + "status": "abandoned", + "id": "0x4Ad32852B54cD0671023bb4692245F122E7CB30D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4Ad32852B54cD0671023bb4692245F122E7CB30D/logo.png b/blockchains/ethereum/assets/0x4Ad32852B54cD0671023bb4692245F122E7CB30D/logo.png new file mode 100644 index 00000000..aeca3aee Binary files /dev/null and b/blockchains/ethereum/assets/0x4Ad32852B54cD0671023bb4692245F122E7CB30D/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Ae20b59138431597C09A4531CD3d3156940d596/info.json b/blockchains/ethereum/assets/0x4Ae20b59138431597C09A4531CD3d3156940d596/info.json new file mode 100644 index 00000000..0ee762ff --- /dev/null +++ b/blockchains/ethereum/assets/0x4Ae20b59138431597C09A4531CD3d3156940d596/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gatt", + "symbol": "GATT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4Ae20b59138431597C09A4531CD3d3156940d596", + "status": "abandoned", + "id": "0x4Ae20b59138431597C09A4531CD3d3156940d596" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4Ae20b59138431597C09A4531CD3d3156940d596/logo.png b/blockchains/ethereum/assets/0x4Ae20b59138431597C09A4531CD3d3156940d596/logo.png new file mode 100644 index 00000000..b9dd7a68 Binary files /dev/null and b/blockchains/ethereum/assets/0x4Ae20b59138431597C09A4531CD3d3156940d596/logo.png differ diff --git a/blockchains/ethereum/assets/0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8/info.json b/blockchains/ethereum/assets/0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8/info.json new file mode 100644 index 00000000..268b4ca0 --- /dev/null +++ b/blockchains/ethereum/assets/0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8/info.json @@ -0,0 +1,29 @@ +{ + "name": "Jupiter", + "website": "https://jup.io", + "description": "Using Jupiter, we strive to make this technology accessible by everyone and that is why we created Gravity, a versatile framework that interfaces with our blockchain, Jupiter.", + "explorer": "https://etherscan.io/token/0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8", + "type": "ERC20", + "symbol": "JUP", + "decimals": 18, + "status": "active", + "id": "0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8", + "links": [ + { + "name": "x", + "url": "https://x.com/jup_project" + }, + { + "name": "blog", + "url": "https://blog.jup.io" + }, + { + "name": "facebook", + "url": "https://facebook.com/JupiterProj" + }, + { + "name": "telegram", + "url": "https://t.me/jupiterproject" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8/logo.png b/blockchains/ethereum/assets/0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8/logo.png new file mode 100644 index 00000000..a5813639 Binary files /dev/null and b/blockchains/ethereum/assets/0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8/logo.png differ diff --git a/blockchains/ethereum/assets/0x4B2C54b80B77580dc02A0f6734d3BAD733F50900/info.json b/blockchains/ethereum/assets/0x4B2C54b80B77580dc02A0f6734d3BAD733F50900/info.json new file mode 100644 index 00000000..abaf68af --- /dev/null +++ b/blockchains/ethereum/assets/0x4B2C54b80B77580dc02A0f6734d3BAD733F50900/info.json @@ -0,0 +1,28 @@ +{ + "name": "Kiba Inu", + "type": "ERC20", + "symbol": "KIBA", + "decimals": 9, + "website": "https://kibainu.space", + "description": "Kiba Inu restores integrity to meme coins by building a safe Dex and Launchpad. Kiba Swap includes a dex and launchpad that includes features enabling investors to know which projects are safe and which they may want to avoid. We are on our way to becoming the leader of all meme coins and expanding into a multifaceted crypto project. ", + "explorer": "https://etherscan.io/token/0x4B2C54b80B77580dc02A0f6734d3BAD733F50900", + "status": "abandoned", + "id": "0x4B2C54b80B77580dc02A0f6734d3BAD733F50900", + "links": [ + { + "name": "x", + "url": "https://x.com/kibainukiba" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kiba-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/kiba-inu/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4B32CA05509ca4ffDBb7D2D82B27bc48Ecde62F2/info.json b/blockchains/ethereum/assets/0x4B32CA05509ca4ffDBb7D2D82B27bc48Ecde62F2/info.json new file mode 100644 index 00000000..461f8436 --- /dev/null +++ b/blockchains/ethereum/assets/0x4B32CA05509ca4ffDBb7D2D82B27bc48Ecde62F2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lunch Money", + "symbol": "LMY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4B32CA05509ca4ffDBb7D2D82B27bc48Ecde62F2", + "status": "abandoned", + "id": "0x4B32CA05509ca4ffDBb7D2D82B27bc48Ecde62F2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4B32CA05509ca4ffDBb7D2D82B27bc48Ecde62F2/logo.png b/blockchains/ethereum/assets/0x4B32CA05509ca4ffDBb7D2D82B27bc48Ecde62F2/logo.png new file mode 100755 index 00000000..58ce30f2 Binary files /dev/null and b/blockchains/ethereum/assets/0x4B32CA05509ca4ffDBb7D2D82B27bc48Ecde62F2/logo.png differ diff --git a/blockchains/ethereum/assets/0x4B3a0c6d668B43F3f07904E124328659b90Bb4Ca/info.json b/blockchains/ethereum/assets/0x4B3a0c6d668B43F3f07904E124328659b90Bb4Ca/info.json new file mode 100644 index 00000000..410baa51 --- /dev/null +++ b/blockchains/ethereum/assets/0x4B3a0c6d668B43F3f07904E124328659b90Bb4Ca/info.json @@ -0,0 +1,21 @@ +{ + "name": "AceD", + "website": "https://acedcoin.com", + "description": "AceD’s mission is to provide online world class entertainment options while providing a secure and private platform. We aim to integrate cryptocurrency into practical decentralised blockchain applications that are fun, entertaining and competitive while protecting your privacy.", + "explorer": "https://etherscan.io/token/0x4B3a0c6d668B43F3f07904E124328659b90Bb4Ca", + "type": "ERC20", + "symbol": "AceD", + "decimals": 18, + "status": "active", + "id": "0x4B3a0c6d668B43F3f07904E124328659b90Bb4Ca", + "links": [ + { + "name": "x", + "url": "https://x.com/AceDcoin" + }, + { + "name": "discord", + "url": "https://discord.com/invite/VExsPg6" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4B3a0c6d668B43F3f07904E124328659b90Bb4Ca/logo.png b/blockchains/ethereum/assets/0x4B3a0c6d668B43F3f07904E124328659b90Bb4Ca/logo.png new file mode 100644 index 00000000..8d1094ba Binary files /dev/null and b/blockchains/ethereum/assets/0x4B3a0c6d668B43F3f07904E124328659b90Bb4Ca/logo.png differ diff --git a/blockchains/ethereum/assets/0x4B4701f3f827E1331fb22FF8e2BEaC24b17Eb055/info.json b/blockchains/ethereum/assets/0x4B4701f3f827E1331fb22FF8e2BEaC24b17Eb055/info.json new file mode 100644 index 00000000..d11d870a --- /dev/null +++ b/blockchains/ethereum/assets/0x4B4701f3f827E1331fb22FF8e2BEaC24b17Eb055/info.json @@ -0,0 +1,11 @@ +{ + "name": "DISTX", + "website": "https://distx.io", + "description": "DISTX is an automated private sale platform, allowing token creators and token users to come together in a safe, decentralized and automated sale.", + "explorer": "https://etherscan.io/token/0x4B4701f3f827E1331fb22FF8e2BEaC24b17Eb055", + "type": "ERC20", + "symbol": "DISTX", + "decimals": 18, + "status": "active", + "id": "0x4B4701f3f827E1331fb22FF8e2BEaC24b17Eb055" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4B4701f3f827E1331fb22FF8e2BEaC24b17Eb055/logo.png b/blockchains/ethereum/assets/0x4B4701f3f827E1331fb22FF8e2BEaC24b17Eb055/logo.png new file mode 100644 index 00000000..c5f7afea Binary files /dev/null and b/blockchains/ethereum/assets/0x4B4701f3f827E1331fb22FF8e2BEaC24b17Eb055/logo.png differ diff --git a/blockchains/ethereum/assets/0x4B4b1d389d4f4E082B30F75c6319c0CE5ACBd619/info.json b/blockchains/ethereum/assets/0x4B4b1d389d4f4E082B30F75c6319c0CE5ACBd619/info.json new file mode 100644 index 00000000..1e05a4b0 --- /dev/null +++ b/blockchains/ethereum/assets/0x4B4b1d389d4f4E082B30F75c6319c0CE5ACBd619/info.json @@ -0,0 +1,11 @@ +{ + "name": "Heart Number", + "website": "https://heartnumber.com/", + "description": "AI Auto Trading Application", + "explorer": "https://etherscan.io/token/0x4B4b1d389d4f4E082B30F75c6319c0CE5ACBd619", + "type": "ERC20", + "symbol": "HTN", + "decimals": 18, + "status": "active", + "id": "0x4B4b1d389d4f4E082B30F75c6319c0CE5ACBd619" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4B4b1d389d4f4E082B30F75c6319c0CE5ACBd619/logo.png b/blockchains/ethereum/assets/0x4B4b1d389d4f4E082B30F75c6319c0CE5ACBd619/logo.png new file mode 100644 index 00000000..9dd4e783 Binary files /dev/null and b/blockchains/ethereum/assets/0x4B4b1d389d4f4E082B30F75c6319c0CE5ACBd619/logo.png differ diff --git a/blockchains/ethereum/assets/0x4B742b5bdb1D252907AE7F399a891d4a178DBC24/info.json b/blockchains/ethereum/assets/0x4B742b5bdb1D252907AE7F399a891d4a178DBC24/info.json new file mode 100644 index 00000000..dded47c4 --- /dev/null +++ b/blockchains/ethereum/assets/0x4B742b5bdb1D252907AE7F399a891d4a178DBC24/info.json @@ -0,0 +1,11 @@ +{ + "name": "B One Payment", + "symbol": "B1P", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.bonepayment.com", + "explorer": "https://etherscan.io/token/0x4B742b5bdb1D252907AE7F399a891d4a178DBC24", + "status": "abandoned", + "id": "0x4B742b5bdb1D252907AE7F399a891d4a178DBC24" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4B742b5bdb1D252907AE7F399a891d4a178DBC24/logo.png b/blockchains/ethereum/assets/0x4B742b5bdb1D252907AE7F399a891d4a178DBC24/logo.png new file mode 100644 index 00000000..d44d8dac Binary files /dev/null and b/blockchains/ethereum/assets/0x4B742b5bdb1D252907AE7F399a891d4a178DBC24/logo.png differ diff --git a/blockchains/ethereum/assets/0x4B9E5fe882b2fbB3E098c9A25a8Ce66135Ed2be4/info.json b/blockchains/ethereum/assets/0x4B9E5fe882b2fbB3E098c9A25a8Ce66135Ed2be4/info.json new file mode 100644 index 00000000..d6f7d061 --- /dev/null +++ b/blockchains/ethereum/assets/0x4B9E5fe882b2fbB3E098c9A25a8Ce66135Ed2be4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gaia", + "website": "https://dollarprotocol.com", + "description": "Gaia is the algorithmic reserve asset in Dollar Protocol's f-series", + "explorer": "https://etherscan.io/token/0x4B9E5fe882b2fbB3E098c9A25a8Ce66135Ed2be4", + "type": "ERC20", + "symbol": "Gaia", + "decimals": 9, + "status": "active", + "id": "0x4B9E5fe882b2fbB3E098c9A25a8Ce66135Ed2be4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4B9E5fe882b2fbB3E098c9A25a8Ce66135Ed2be4/logo.png b/blockchains/ethereum/assets/0x4B9E5fe882b2fbB3E098c9A25a8Ce66135Ed2be4/logo.png new file mode 100644 index 00000000..35f54da0 Binary files /dev/null and b/blockchains/ethereum/assets/0x4B9E5fe882b2fbB3E098c9A25a8Ce66135Ed2be4/logo.png differ diff --git a/blockchains/ethereum/assets/0x4BBbC57aF270138Ef2FF2C50DbfAD684e9E0e604/info.json b/blockchains/ethereum/assets/0x4BBbC57aF270138Ef2FF2C50DbfAD684e9E0e604/info.json new file mode 100644 index 00000000..da80f3ad --- /dev/null +++ b/blockchains/ethereum/assets/0x4BBbC57aF270138Ef2FF2C50DbfAD684e9E0e604/info.json @@ -0,0 +1,11 @@ +{ + "name": "WABnetwork", + "symbol": "WAB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4BBbC57aF270138Ef2FF2C50DbfAD684e9E0e604", + "status": "abandoned", + "id": "0x4BBbC57aF270138Ef2FF2C50DbfAD684e9E0e604" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4BBbC57aF270138Ef2FF2C50DbfAD684e9E0e604/logo.png b/blockchains/ethereum/assets/0x4BBbC57aF270138Ef2FF2C50DbfAD684e9E0e604/logo.png new file mode 100644 index 00000000..5feda8c9 Binary files /dev/null and b/blockchains/ethereum/assets/0x4BBbC57aF270138Ef2FF2C50DbfAD684e9E0e604/logo.png differ diff --git a/blockchains/ethereum/assets/0x4BDeebbF6aEa92a12Dc040eC1C9EC5A7F0f81237/info.json b/blockchains/ethereum/assets/0x4BDeebbF6aEa92a12Dc040eC1C9EC5A7F0f81237/info.json new file mode 100644 index 00000000..4a54acad --- /dev/null +++ b/blockchains/ethereum/assets/0x4BDeebbF6aEa92a12Dc040eC1C9EC5A7F0f81237/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-17/30M77", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4BDeebbF6aEa92a12Dc040eC1C9EC5A7F0f81237", + "status": "abandoned", + "id": "0x4BDeebbF6aEa92a12Dc040eC1C9EC5A7F0f81237" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4BDeebbF6aEa92a12Dc040eC1C9EC5A7F0f81237/logo.png b/blockchains/ethereum/assets/0x4BDeebbF6aEa92a12Dc040eC1C9EC5A7F0f81237/logo.png new file mode 100644 index 00000000..50d799b5 Binary files /dev/null and b/blockchains/ethereum/assets/0x4BDeebbF6aEa92a12Dc040eC1C9EC5A7F0f81237/logo.png differ diff --git a/blockchains/ethereum/assets/0x4BF93B7F68612Cc9ADef21dEA08ef74DCF0B6a6a/info.json b/blockchains/ethereum/assets/0x4BF93B7F68612Cc9ADef21dEA08ef74DCF0B6a6a/info.json new file mode 100644 index 00000000..df4af87b --- /dev/null +++ b/blockchains/ethereum/assets/0x4BF93B7F68612Cc9ADef21dEA08ef74DCF0B6a6a/info.json @@ -0,0 +1,11 @@ +{ + "name": "DVINCI", + "symbol": "DVINCI", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4BF93B7F68612Cc9ADef21dEA08ef74DCF0B6a6a", + "status": "abandoned", + "id": "0x4BF93B7F68612Cc9ADef21dEA08ef74DCF0B6a6a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4BF93B7F68612Cc9ADef21dEA08ef74DCF0B6a6a/logo.png b/blockchains/ethereum/assets/0x4BF93B7F68612Cc9ADef21dEA08ef74DCF0B6a6a/logo.png new file mode 100644 index 00000000..5eec793b Binary files /dev/null and b/blockchains/ethereum/assets/0x4BF93B7F68612Cc9ADef21dEA08ef74DCF0B6a6a/logo.png differ diff --git a/blockchains/ethereum/assets/0x4BFFC9B4d4DcF730820a2EdCAD48Ff5D7E0Ae807/info.json b/blockchains/ethereum/assets/0x4BFFC9B4d4DcF730820a2EdCAD48Ff5D7E0Ae807/info.json new file mode 100644 index 00000000..5189172c --- /dev/null +++ b/blockchains/ethereum/assets/0x4BFFC9B4d4DcF730820a2EdCAD48Ff5D7E0Ae807/info.json @@ -0,0 +1,11 @@ +{ + "name": "Influence Chain Token", + "symbol": "INC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4BFFC9B4d4DcF730820a2EdCAD48Ff5D7E0Ae807", + "status": "abandoned", + "id": "0x4BFFC9B4d4DcF730820a2EdCAD48Ff5D7E0Ae807" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4BFFC9B4d4DcF730820a2EdCAD48Ff5D7E0Ae807/logo.png b/blockchains/ethereum/assets/0x4BFFC9B4d4DcF730820a2EdCAD48Ff5D7E0Ae807/logo.png new file mode 100755 index 00000000..25fbc828 Binary files /dev/null and b/blockchains/ethereum/assets/0x4BFFC9B4d4DcF730820a2EdCAD48Ff5D7E0Ae807/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B/info.json b/blockchains/ethereum/assets/0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B/info.json new file mode 100644 index 00000000..634b6b9f --- /dev/null +++ b/blockchains/ethereum/assets/0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B/info.json @@ -0,0 +1,25 @@ +{ + "name": "Cybercoin", + "website": "https://cybercoin.site", + "description": "The next-generation blockchain platform for large-scale stacking value. Cybercoin is a platform solution for true digital value storage - Blockchain for everyone - Digital security and boundless possibilities.", + "explorer": "https://etherscan.io/token/0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B", + "type": "ERC20", + "symbol": "CBR", + "decimals": 18, + "status": "active", + "id": "0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B", + "links": [ + { + "name": "x", + "url": "https://x.com/Cybercoin" + }, + { + "name": "discord", + "url": "https://discord.com/invite/H4sy68N" + }, + { + "name": "whitepaper", + "url": "https://www.cybercoin.site/Cybercoin.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B/logo.png b/blockchains/ethereum/assets/0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B/logo.png new file mode 100644 index 00000000..eaee8b6e Binary files /dev/null and b/blockchains/ethereum/assets/0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Ba6dDd7b89ed838FEd25d208D4f644106E34279/info.json b/blockchains/ethereum/assets/0x4Ba6dDd7b89ed838FEd25d208D4f644106E34279/info.json new file mode 100644 index 00000000..39aa804e --- /dev/null +++ b/blockchains/ethereum/assets/0x4Ba6dDd7b89ed838FEd25d208D4f644106E34279/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vether", + "symbol": "VETH", + "type": "ERC20", + "decimals": 18, + "description": "Vether is designed to be a store-of-value with properties of strict scarcity, unforgeable costliness and a fixed emission schedule.", + "website": "https://vetherasset.org/", + "explorer": "https://etherscan.io/token/0x4Ba6dDd7b89ed838FEd25d208D4f644106E34279", + "status": "active", + "id": "0x4Ba6dDd7b89ed838FEd25d208D4f644106E34279" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4Ba6dDd7b89ed838FEd25d208D4f644106E34279/logo.png b/blockchains/ethereum/assets/0x4Ba6dDd7b89ed838FEd25d208D4f644106E34279/logo.png new file mode 100644 index 00000000..baa17fdc Binary files /dev/null and b/blockchains/ethereum/assets/0x4Ba6dDd7b89ed838FEd25d208D4f644106E34279/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Bebdd7312e81b184274d75e4c37a6D4A4d23163/info.json b/blockchains/ethereum/assets/0x4Bebdd7312e81b184274d75e4c37a6D4A4d23163/info.json new file mode 100644 index 00000000..ab92f454 --- /dev/null +++ b/blockchains/ethereum/assets/0x4Bebdd7312e81b184274d75e4c37a6D4A4d23163/info.json @@ -0,0 +1,11 @@ +{ + "name": "ALLBESTICO.com", + "symbol": "ALLBI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4Bebdd7312e81b184274d75e4c37a6D4A4d23163", + "status": "abandoned", + "id": "0x4Bebdd7312e81b184274d75e4c37a6D4A4d23163" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4Bebdd7312e81b184274d75e4c37a6D4A4d23163/logo.png b/blockchains/ethereum/assets/0x4Bebdd7312e81b184274d75e4c37a6D4A4d23163/logo.png new file mode 100644 index 00000000..0e1177be Binary files /dev/null and b/blockchains/ethereum/assets/0x4Bebdd7312e81b184274d75e4c37a6D4A4d23163/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C0fBE1BB46612915E7967d2C3213cd4d87257AD/info.json b/blockchains/ethereum/assets/0x4C0fBE1BB46612915E7967d2C3213cd4d87257AD/info.json new file mode 100644 index 00000000..ea391db8 --- /dev/null +++ b/blockchains/ethereum/assets/0x4C0fBE1BB46612915E7967d2C3213cd4d87257AD/info.json @@ -0,0 +1,11 @@ +{ + "name": "APIS", + "symbol": "APIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://apisplatform.io/", + "explorer": "https://etherscan.io/token/0x4C0fBE1BB46612915E7967d2C3213cd4d87257AD", + "status": "abandoned", + "id": "0x4C0fBE1BB46612915E7967d2C3213cd4d87257AD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4C0fBE1BB46612915E7967d2C3213cd4d87257AD/logo.png b/blockchains/ethereum/assets/0x4C0fBE1BB46612915E7967d2C3213cd4d87257AD/logo.png new file mode 100644 index 00000000..39e485f8 Binary files /dev/null and b/blockchains/ethereum/assets/0x4C0fBE1BB46612915E7967d2C3213cd4d87257AD/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C14C5863d45aBAA275548DAFf56070043b52D85/info.json b/blockchains/ethereum/assets/0x4C14C5863d45aBAA275548DAFf56070043b52D85/info.json new file mode 100644 index 00000000..bcda567a --- /dev/null +++ b/blockchains/ethereum/assets/0x4C14C5863d45aBAA275548DAFf56070043b52D85/info.json @@ -0,0 +1,11 @@ +{ + "name": "AshPay", + "symbol": "APY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4C14C5863d45aBAA275548DAFf56070043b52D85", + "status": "abandoned", + "id": "0x4C14C5863d45aBAA275548DAFf56070043b52D85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4C14C5863d45aBAA275548DAFf56070043b52D85/logo.png b/blockchains/ethereum/assets/0x4C14C5863d45aBAA275548DAFf56070043b52D85/logo.png new file mode 100644 index 00000000..ef04456f Binary files /dev/null and b/blockchains/ethereum/assets/0x4C14C5863d45aBAA275548DAFf56070043b52D85/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C1746A800D224393fE2470C70A35717eD4eA5F1/info.json b/blockchains/ethereum/assets/0x4C1746A800D224393fE2470C70A35717eD4eA5F1/info.json new file mode 100644 index 00000000..3b7dedb7 --- /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 00000000..731d8dde Binary files /dev/null and b/blockchains/ethereum/assets/0x4C1746A800D224393fE2470C70A35717eD4eA5F1/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C19596f5aAfF459fA38B0f7eD92F11AE6543784/info.json b/blockchains/ethereum/assets/0x4C19596f5aAfF459fA38B0f7eD92F11AE6543784/info.json new file mode 100644 index 00000000..e004ee61 --- /dev/null +++ b/blockchains/ethereum/assets/0x4C19596f5aAfF459fA38B0f7eD92F11AE6543784/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueFi", + "website": "https://truefi.io/", + "description": "TrueFi is an on-chain uncollateralized lending protocol", + "explorer": "https://etherscan.io/token/0x4c19596f5aaff459fa38b0f7ed92f11ae6543784", + "type": "ERC20", + "symbol": "TRU", + "decimals": 8, + "status": "active", + "id": "0x4C19596f5aAfF459fA38B0f7eD92F11AE6543784" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4C19596f5aAfF459fA38B0f7eD92F11AE6543784/logo.png b/blockchains/ethereum/assets/0x4C19596f5aAfF459fA38B0f7eD92F11AE6543784/logo.png new file mode 100644 index 00000000..df89af3c Binary files /dev/null and b/blockchains/ethereum/assets/0x4C19596f5aAfF459fA38B0f7eD92F11AE6543784/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C29d75cc423E8Adaa3839892feb66977e295829/info.json b/blockchains/ethereum/assets/0x4C29d75cc423E8Adaa3839892feb66977e295829/info.json new file mode 100644 index 00000000..6a227a7a --- /dev/null +++ b/blockchains/ethereum/assets/0x4C29d75cc423E8Adaa3839892feb66977e295829/info.json @@ -0,0 +1,11 @@ +{ + "name": "POOH", + "symbol": "POOH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4C29d75cc423E8Adaa3839892feb66977e295829", + "status": "abandoned", + "id": "0x4C29d75cc423E8Adaa3839892feb66977e295829" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4C29d75cc423E8Adaa3839892feb66977e295829/logo.png b/blockchains/ethereum/assets/0x4C29d75cc423E8Adaa3839892feb66977e295829/logo.png new file mode 100644 index 00000000..98052380 Binary files /dev/null and b/blockchains/ethereum/assets/0x4C29d75cc423E8Adaa3839892feb66977e295829/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/info.json b/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/info.json new file mode 100644 index 00000000..e22af3f5 --- /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 00000000..e84ba5bf Binary files /dev/null and b/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C596Bd86789D5347319E15Aedaf740b3D34aB91/info.json b/blockchains/ethereum/assets/0x4C596Bd86789D5347319E15Aedaf740b3D34aB91/info.json new file mode 100644 index 00000000..29e283eb --- /dev/null +++ b/blockchains/ethereum/assets/0x4C596Bd86789D5347319E15Aedaf740b3D34aB91/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-29/30M59", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4C596Bd86789D5347319E15Aedaf740b3D34aB91", + "status": "abandoned", + "id": "0x4C596Bd86789D5347319E15Aedaf740b3D34aB91" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4C596Bd86789D5347319E15Aedaf740b3D34aB91/logo.png b/blockchains/ethereum/assets/0x4C596Bd86789D5347319E15Aedaf740b3D34aB91/logo.png new file mode 100644 index 00000000..4551492e Binary files /dev/null and b/blockchains/ethereum/assets/0x4C596Bd86789D5347319E15Aedaf740b3D34aB91/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C6584dDCdFaB7110c7b1bE47749Bde8edc9c0c9/info.json b/blockchains/ethereum/assets/0x4C6584dDCdFaB7110c7b1bE47749Bde8edc9c0c9/info.json new file mode 100644 index 00000000..6f0be143 --- /dev/null +++ b/blockchains/ethereum/assets/0x4C6584dDCdFaB7110c7b1bE47749Bde8edc9c0c9/info.json @@ -0,0 +1,11 @@ +{ + "name": "INFINITY Token", + "symbol": "INF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://infinityz.8b.io/", + "explorer": "https://etherscan.io/token/0x4C6584dDCdFaB7110c7b1bE47749Bde8edc9c0c9", + "status": "abandoned", + "id": "0x4C6584dDCdFaB7110c7b1bE47749Bde8edc9c0c9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4C6584dDCdFaB7110c7b1bE47749Bde8edc9c0c9/logo.png b/blockchains/ethereum/assets/0x4C6584dDCdFaB7110c7b1bE47749Bde8edc9c0c9/logo.png new file mode 100644 index 00000000..096ec28a Binary files /dev/null and b/blockchains/ethereum/assets/0x4C6584dDCdFaB7110c7b1bE47749Bde8edc9c0c9/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C6eC08CF3fc987c6C4BEB03184D335A2dFc4042/info.json b/blockchains/ethereum/assets/0x4C6eC08CF3fc987c6C4BEB03184D335A2dFc4042/info.json new file mode 100644 index 00000000..a1987d03 --- /dev/null +++ b/blockchains/ethereum/assets/0x4C6eC08CF3fc987c6C4BEB03184D335A2dFc4042/info.json @@ -0,0 +1,11 @@ +{ + "name": "Paint", + "website": "https://murall.art", + "description": "MurAll is a 2048x1024px digital mural that anyone can draw on without restriction. MurAll requires PAINT - a fixed supply token synonymous with real-life paint, which is burned in the painting transaction. Painting on MurAll also mints a MURALL NFT of the artwork for the artist to keep.", + "explorer": "https://etherscan.io/token/0x4c6ec08cf3fc987c6c4beb03184d335a2dfc4042", + "type": "ERC20", + "symbol": "PAINT", + "decimals": 18, + "status": "active", + "id": "0x4C6eC08CF3fc987c6C4BEB03184D335A2dFc4042" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4C6eC08CF3fc987c6C4BEB03184D335A2dFc4042/logo.png b/blockchains/ethereum/assets/0x4C6eC08CF3fc987c6C4BEB03184D335A2dFc4042/logo.png new file mode 100644 index 00000000..63d7b9f4 Binary files /dev/null and b/blockchains/ethereum/assets/0x4C6eC08CF3fc987c6C4BEB03184D335A2dFc4042/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C7065Bca76FE44AFb0D16C2441B1e6E163354E2/info.json b/blockchains/ethereum/assets/0x4C7065Bca76FE44AFb0D16C2441B1e6E163354E2/info.json new file mode 100644 index 00000000..fd382f4b --- /dev/null +++ b/blockchains/ethereum/assets/0x4C7065Bca76FE44AFb0D16C2441B1e6E163354E2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Helysia", + "website": "https://helysia.hammamalandalus.com", + "description": "The Helysia token represents the value of a community seeking the inner balance through experiences in harmony with nature", + "explorer": "https://etherscan.io/token/0x4C7065Bca76FE44AFb0D16C2441B1e6E163354E2", + "type": "ERC20", + "symbol": "3LY", + "decimals": 18, + "status": "active", + "id": "0x4C7065Bca76FE44AFb0D16C2441B1e6E163354E2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4C7065Bca76FE44AFb0D16C2441B1e6E163354E2/logo.png b/blockchains/ethereum/assets/0x4C7065Bca76FE44AFb0D16C2441B1e6E163354E2/logo.png new file mode 100644 index 00000000..cf932b09 Binary files /dev/null and b/blockchains/ethereum/assets/0x4C7065Bca76FE44AFb0D16C2441B1e6E163354E2/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C791117248aBfE101b604F5269FFD9bE794467D/info.json b/blockchains/ethereum/assets/0x4C791117248aBfE101b604F5269FFD9bE794467D/info.json new file mode 100644 index 00000000..c6fa1a09 --- /dev/null +++ b/blockchains/ethereum/assets/0x4C791117248aBfE101b604F5269FFD9bE794467D/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R801895", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4C791117248aBfE101b604F5269FFD9bE794467D", + "status": "active", + "id": "0x4C791117248aBfE101b604F5269FFD9bE794467D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4C791117248aBfE101b604F5269FFD9bE794467D/logo.png b/blockchains/ethereum/assets/0x4C791117248aBfE101b604F5269FFD9bE794467D/logo.png new file mode 100644 index 00000000..de61637e Binary files /dev/null and b/blockchains/ethereum/assets/0x4C791117248aBfE101b604F5269FFD9bE794467D/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C7Bc4D7c5e2eD2F14f8722b7Ded6c615d578C1e/info.json b/blockchains/ethereum/assets/0x4C7Bc4D7c5e2eD2F14f8722b7Ded6c615d578C1e/info.json new file mode 100644 index 00000000..0ed3bcce --- /dev/null +++ b/blockchains/ethereum/assets/0x4C7Bc4D7c5e2eD2F14f8722b7Ded6c615d578C1e/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZeroChain Network", + "symbol": "ZCHAIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4C7Bc4D7c5e2eD2F14f8722b7Ded6c615d578C1e", + "status": "abandoned", + "id": "0x4C7Bc4D7c5e2eD2F14f8722b7Ded6c615d578C1e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4C7Bc4D7c5e2eD2F14f8722b7Ded6c615d578C1e/logo.png b/blockchains/ethereum/assets/0x4C7Bc4D7c5e2eD2F14f8722b7Ded6c615d578C1e/logo.png new file mode 100644 index 00000000..eaf700da Binary files /dev/null and b/blockchains/ethereum/assets/0x4C7Bc4D7c5e2eD2F14f8722b7Ded6c615d578C1e/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C82c8cD9a218612DCe60b156B73A36705645e3b/info.json b/blockchains/ethereum/assets/0x4C82c8cD9a218612DCe60b156B73A36705645e3b/info.json new file mode 100644 index 00000000..dc99c8b6 --- /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 00000000..af75d5c9 Binary files /dev/null and b/blockchains/ethereum/assets/0x4C82c8cD9a218612DCe60b156B73A36705645e3b/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C9d5672Ae33522240532206Ab45508116daF263/info.json b/blockchains/ethereum/assets/0x4C9d5672Ae33522240532206Ab45508116daF263/info.json new file mode 100644 index 00000000..ab9e160a --- /dev/null +++ b/blockchains/ethereum/assets/0x4C9d5672Ae33522240532206Ab45508116daF263/info.json @@ -0,0 +1,11 @@ +{ + "name": "VGAMES", + "symbol": "VGS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4C9d5672Ae33522240532206Ab45508116daF263", + "status": "spam", + "id": "0x4C9d5672Ae33522240532206Ab45508116daF263" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4C9d5672Ae33522240532206Ab45508116daF263/logo.png b/blockchains/ethereum/assets/0x4C9d5672Ae33522240532206Ab45508116daF263/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x4C9d5672Ae33522240532206Ab45508116daF263/logo.png differ diff --git a/blockchains/ethereum/assets/0x4CAc2515716Ab2531402cA8F992e235189F29C5a/info.json b/blockchains/ethereum/assets/0x4CAc2515716Ab2531402cA8F992e235189F29C5a/info.json new file mode 100644 index 00000000..dafd6aa1 --- /dev/null +++ b/blockchains/ethereum/assets/0x4CAc2515716Ab2531402cA8F992e235189F29C5a/info.json @@ -0,0 +1,11 @@ +{ + "name": "WINSTEX", + "website": "https://winstex.com", + "description": "A seamlessly integrated cryptocurrency exchange that meets your specific trading and investing needs.", + "explorer": "https://etherscan.io/token/0x4CAc2515716Ab2531402cA8F992e235189F29C5a", + "type": "ERC20", + "symbol": "WIN", + "decimals": 18, + "status": "active", + "id": "0x4CAc2515716Ab2531402cA8F992e235189F29C5a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4CAc2515716Ab2531402cA8F992e235189F29C5a/logo.png b/blockchains/ethereum/assets/0x4CAc2515716Ab2531402cA8F992e235189F29C5a/logo.png new file mode 100644 index 00000000..2f6bdfe0 Binary files /dev/null and b/blockchains/ethereum/assets/0x4CAc2515716Ab2531402cA8F992e235189F29C5a/logo.png differ diff --git a/blockchains/ethereum/assets/0x4CB10F4df4BF4F64D4797d00D468181EF731Be9A/info.json b/blockchains/ethereum/assets/0x4CB10F4df4BF4F64D4797d00D468181EF731Be9A/info.json new file mode 100644 index 00000000..6ffbb46a --- /dev/null +++ b/blockchains/ethereum/assets/0x4CB10F4df4BF4F64D4797d00D468181EF731Be9A/info.json @@ -0,0 +1,11 @@ +{ + "name": "DimensionToken", + "symbol": "EON", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://dimensionchain.io/", + "explorer": "https://etherscan.io/token/0x4CB10F4df4BF4F64D4797d00D468181EF731Be9A", + "status": "abandoned", + "id": "0x4CB10F4df4BF4F64D4797d00D468181EF731Be9A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4CB10F4df4BF4F64D4797d00D468181EF731Be9A/logo.png b/blockchains/ethereum/assets/0x4CB10F4df4BF4F64D4797d00D468181EF731Be9A/logo.png new file mode 100644 index 00000000..8ceaec11 Binary files /dev/null and b/blockchains/ethereum/assets/0x4CB10F4df4BF4F64D4797d00D468181EF731Be9A/logo.png differ diff --git a/blockchains/ethereum/assets/0x4CC19356f2D37338b9802aa8E8fc58B0373296E7/info.json b/blockchains/ethereum/assets/0x4CC19356f2D37338b9802aa8E8fc58B0373296E7/info.json new file mode 100644 index 00000000..a2f02d0d --- /dev/null +++ b/blockchains/ethereum/assets/0x4CC19356f2D37338b9802aa8E8fc58B0373296E7/info.json @@ -0,0 +1,12 @@ +{ + "name": "KEY", + "website": "https://selfkey.org", + "description": "SelfKey is a self-sovereign identity platform, built on the Ethereum blockchain, which aims to enable individuals and companies to have full ownership of their digital identity.", + "explorer": "https://etherscan.io/token/0x4cc19356f2d37338b9802aa8e8fc58b0373296e7", + "research": "https://research.binance.com/en/projects/selfkey", + "type": "ERC20", + "symbol": "KEY", + "decimals": 18, + "status": "active", + "id": "0x4CC19356f2D37338b9802aa8E8fc58B0373296E7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4CC19356f2D37338b9802aa8E8fc58B0373296E7/logo.png b/blockchains/ethereum/assets/0x4CC19356f2D37338b9802aa8E8fc58B0373296E7/logo.png new file mode 100644 index 00000000..1ceccc46 Binary files /dev/null and b/blockchains/ethereum/assets/0x4CC19356f2D37338b9802aa8E8fc58B0373296E7/logo.png differ diff --git a/blockchains/ethereum/assets/0x4CDb966EA4A045d329D75C580E43Cf18e1C346CE/info.json b/blockchains/ethereum/assets/0x4CDb966EA4A045d329D75C580E43Cf18e1C346CE/info.json new file mode 100644 index 00000000..36a16f38 --- /dev/null +++ b/blockchains/ethereum/assets/0x4CDb966EA4A045d329D75C580E43Cf18e1C346CE/info.json @@ -0,0 +1,11 @@ +{ + "name": "RLW WIND TOKEN", + "symbol": "RLW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4CDb966EA4A045d329D75C580E43Cf18e1C346CE", + "status": "abandoned", + "id": "0x4CDb966EA4A045d329D75C580E43Cf18e1C346CE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4CDb966EA4A045d329D75C580E43Cf18e1C346CE/logo.png b/blockchains/ethereum/assets/0x4CDb966EA4A045d329D75C580E43Cf18e1C346CE/logo.png new file mode 100644 index 00000000..5583d3b2 Binary files /dev/null and b/blockchains/ethereum/assets/0x4CDb966EA4A045d329D75C580E43Cf18e1C346CE/logo.png differ diff --git a/blockchains/ethereum/assets/0x4CEdA7906a5Ed2179785Cd3A40A69ee8bc99C466/info.json b/blockchains/ethereum/assets/0x4CEdA7906a5Ed2179785Cd3A40A69ee8bc99C466/info.json new file mode 100644 index 00000000..4c532cbe --- /dev/null +++ b/blockchains/ethereum/assets/0x4CEdA7906a5Ed2179785Cd3A40A69ee8bc99C466/info.json @@ -0,0 +1,11 @@ +{ + "name": "AION", + "type": "ERC20", + "symbol": "AION", + "decimals": 8, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0x4ceda7906a5ed2179785cd3a40a69ee8bc99c466", + "status": "active", + "id": "0x4CEdA7906a5Ed2179785Cd3A40A69ee8bc99C466" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4CEdA7906a5Ed2179785Cd3A40A69ee8bc99C466/logo.png b/blockchains/ethereum/assets/0x4CEdA7906a5Ed2179785Cd3A40A69ee8bc99C466/logo.png new file mode 100755 index 00000000..0c4b94ed Binary files /dev/null and b/blockchains/ethereum/assets/0x4CEdA7906a5Ed2179785Cd3A40A69ee8bc99C466/logo.png differ diff --git a/blockchains/ethereum/assets/0x4CF488387F035FF08c371515562CBa712f9015d4/info.json b/blockchains/ethereum/assets/0x4CF488387F035FF08c371515562CBa712f9015d4/info.json new file mode 100644 index 00000000..a337103b --- /dev/null +++ b/blockchains/ethereum/assets/0x4CF488387F035FF08c371515562CBa712f9015d4/info.json @@ -0,0 +1,11 @@ +{ + "name": "WePower Token", + "symbol": "WPR", + "type": "ERC20", + "decimals": 18, + "description": "WePower is a blockchain-based green energy trading platform that connects energy buyers (households and investors) directly with the green energy producers.", + "website": "http://wepower.network", + "explorer": "https://etherscan.io/token/0x4CF488387F035FF08c371515562CBa712f9015d4", + "status": "active", + "id": "0x4CF488387F035FF08c371515562CBa712f9015d4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4CF488387F035FF08c371515562CBa712f9015d4/logo.png b/blockchains/ethereum/assets/0x4CF488387F035FF08c371515562CBa712f9015d4/logo.png new file mode 100644 index 00000000..d658174f Binary files /dev/null and b/blockchains/ethereum/assets/0x4CF488387F035FF08c371515562CBa712f9015d4/logo.png differ diff --git a/blockchains/ethereum/assets/0x4CcC3759eB48fAF1c6cfadaD2619E7038db6b212/info.json b/blockchains/ethereum/assets/0x4CcC3759eB48fAF1c6cfadaD2619E7038db6b212/info.json new file mode 100644 index 00000000..87130ee8 --- /dev/null +++ b/blockchains/ethereum/assets/0x4CcC3759eB48fAF1c6cfadaD2619E7038db6b212/info.json @@ -0,0 +1,11 @@ +{ + "name": "SuperEdge", + "symbol": "ECT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://superedge.info/", + "explorer": "https://etherscan.io/token/0x4CcC3759eB48fAF1c6cfadaD2619E7038db6b212", + "status": "abandoned", + "id": "0x4CcC3759eB48fAF1c6cfadaD2619E7038db6b212" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4CcC3759eB48fAF1c6cfadaD2619E7038db6b212/logo.png b/blockchains/ethereum/assets/0x4CcC3759eB48fAF1c6cfadaD2619E7038db6b212/logo.png new file mode 100644 index 00000000..be3d0614 Binary files /dev/null and b/blockchains/ethereum/assets/0x4CcC3759eB48fAF1c6cfadaD2619E7038db6b212/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Cd988AfBad37289BAAf53C13e98E2BD46aAEa8c/info.json b/blockchains/ethereum/assets/0x4Cd988AfBad37289BAAf53C13e98E2BD46aAEa8c/info.json new file mode 100644 index 00000000..6210a4cc --- /dev/null +++ b/blockchains/ethereum/assets/0x4Cd988AfBad37289BAAf53C13e98E2BD46aAEa8c/info.json @@ -0,0 +1,11 @@ +{ + "name": "0x4b45590000000000000000000000000000000000000000000000000000000000", + "symbol": "KEY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://keygroup.me/", + "explorer": "https://etherscan.io/token/0x4Cd988AfBad37289BAAf53C13e98E2BD46aAEa8c", + "status": "abandoned", + "id": "0x4Cd988AfBad37289BAAf53C13e98E2BD46aAEa8c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4Cd988AfBad37289BAAf53C13e98E2BD46aAEa8c/logo.png b/blockchains/ethereum/assets/0x4Cd988AfBad37289BAAf53C13e98E2BD46aAEa8c/logo.png new file mode 100644 index 00000000..4bf2f004 Binary files /dev/null and b/blockchains/ethereum/assets/0x4Cd988AfBad37289BAAf53C13e98E2BD46aAEa8c/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/info.json b/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/info.json new file mode 100644 index 00000000..ac8462a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/info.json @@ -0,0 +1,40 @@ +{ + "name": "Mysterium", + "type": "ERC20", + "symbol": "MYST", + "decimals": 18, + "website": "https://mysterium.network/", + "description": "MYST is the utility token at the heart of Mysterium Network. MYST is used for frictionless P2P micropayments within the network. If you’re using the VPN, you can pay with MYST token. If you’re a node (provider of the VPN service) you receive MYST. Mysterium has designed its own unique micropayments infrastructure, the Hermes protocol, to facilitate these fast, anonymous, and censorship-resistant transactions.", + "explorer": "https://etherscan.io/token/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361", + "status": "active", + "id": "0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361", + "links": [ + { + "name": "x", + "url": "https://x.com/MysteriumNet" + }, + { + "name": "telegram", + "url": "https://t.me/Mysterium_Network" + }, + { + "name": "discord", + "url": "https://discord.com/invite/n3vtSwc" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MysteriumNetwork/" + }, + { + "name": "medium", + "url": "https://medium.com/mysterium-network" + }, + { + "name": "github", + "url": "https://github.com/MysteriumNetwork" + } + ], + "tags": [ + "privacy" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/logo.png b/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/logo.png new file mode 100644 index 00000000..ad16c843 Binary files /dev/null and b/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/logo.png differ diff --git a/blockchains/ethereum/assets/0x4D0425e47Ee2D16b94c036715dfcb52a0cebC4Dc/info.json b/blockchains/ethereum/assets/0x4D0425e47Ee2D16b94c036715dfcb52a0cebC4Dc/info.json new file mode 100644 index 00000000..9402a796 --- /dev/null +++ b/blockchains/ethereum/assets/0x4D0425e47Ee2D16b94c036715dfcb52a0cebC4Dc/info.json @@ -0,0 +1,11 @@ +{ + "name": "TAGZ5", + "symbol": "TAGZ5", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4D0425e47Ee2D16b94c036715dfcb52a0cebC4Dc", + "status": "abandoned", + "id": "0x4D0425e47Ee2D16b94c036715dfcb52a0cebC4Dc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4D0425e47Ee2D16b94c036715dfcb52a0cebC4Dc/logo.png b/blockchains/ethereum/assets/0x4D0425e47Ee2D16b94c036715dfcb52a0cebC4Dc/logo.png new file mode 100644 index 00000000..a3d0fd7a Binary files /dev/null and b/blockchains/ethereum/assets/0x4D0425e47Ee2D16b94c036715dfcb52a0cebC4Dc/logo.png differ diff --git a/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/info.json b/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/info.json new file mode 100644 index 00000000..08f16eed --- /dev/null +++ b/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/info.json @@ -0,0 +1,21 @@ +{ + "name": "ATOS", + "website": "https://atoshi.org/", + "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", + "decimals": 18, + "status": "active", + "id": "0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18", + "links": [ + { + "name": "x", + "url": "https://x.com/x" + }, + { + "name": "facebook", + "url": "https://facebook.com/atoshifoundation/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/logo.png b/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/logo.png new file mode 100644 index 00000000..b7f02b4b Binary files /dev/null and b/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/logo.png differ diff --git a/blockchains/ethereum/assets/0x4D09C5e758CA68bE27240f29fb681E5a5341Ca98/info.json b/blockchains/ethereum/assets/0x4D09C5e758CA68bE27240f29fb681E5a5341Ca98/info.json new file mode 100644 index 00000000..3996f455 --- /dev/null +++ b/blockchains/ethereum/assets/0x4D09C5e758CA68bE27240f29fb681E5a5341Ca98/info.json @@ -0,0 +1,11 @@ +{ + "name": "HOTchain", + "symbol": "HOTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.hotchain.vip/", + "explorer": "https://etherscan.io/token/0x4D09C5e758CA68bE27240f29fb681E5a5341Ca98", + "status": "abandoned", + "id": "0x4D09C5e758CA68bE27240f29fb681E5a5341Ca98" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4D09C5e758CA68bE27240f29fb681E5a5341Ca98/logo.png b/blockchains/ethereum/assets/0x4D09C5e758CA68bE27240f29fb681E5a5341Ca98/logo.png new file mode 100644 index 00000000..e602569b Binary files /dev/null and b/blockchains/ethereum/assets/0x4D09C5e758CA68bE27240f29fb681E5a5341Ca98/logo.png differ diff --git a/blockchains/ethereum/assets/0x4D13d624a87baa278733c068A174412AfA9ca6C8/info.json b/blockchains/ethereum/assets/0x4D13d624a87baa278733c068A174412AfA9ca6C8/info.json new file mode 100644 index 00000000..c30973f5 --- /dev/null +++ b/blockchains/ethereum/assets/0x4D13d624a87baa278733c068A174412AfA9ca6C8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eterbase Coin", + "symbol": "XBASE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.eterbase.com/", + "explorer": "https://etherscan.io/token/0x4D13d624a87baa278733c068A174412AfA9ca6C8", + "status": "abandoned", + "id": "0x4D13d624a87baa278733c068A174412AfA9ca6C8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4D13d624a87baa278733c068A174412AfA9ca6C8/logo.png b/blockchains/ethereum/assets/0x4D13d624a87baa278733c068A174412AfA9ca6C8/logo.png new file mode 100644 index 00000000..24d60d79 Binary files /dev/null and b/blockchains/ethereum/assets/0x4D13d624a87baa278733c068A174412AfA9ca6C8/logo.png differ diff --git a/blockchains/ethereum/assets/0x4D21aFfD27183B07335935F81A5C26b6A5A15355/info.json b/blockchains/ethereum/assets/0x4D21aFfD27183B07335935F81A5C26b6A5A15355/info.json new file mode 100644 index 00000000..c43c9ecc --- /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 00000000..fd6e35f6 Binary files /dev/null and b/blockchains/ethereum/assets/0x4D21aFfD27183B07335935F81A5C26b6A5A15355/logo.png differ diff --git a/blockchains/ethereum/assets/0x4D2eE5DAe46C86DA2FF521F7657dad98834f97b8/info.json b/blockchains/ethereum/assets/0x4D2eE5DAe46C86DA2FF521F7657dad98834f97b8/info.json new file mode 100644 index 00000000..cc2444ab --- /dev/null +++ b/blockchains/ethereum/assets/0x4D2eE5DAe46C86DA2FF521F7657dad98834f97b8/info.json @@ -0,0 +1,22 @@ +{ + "name": "Pepemon Pepeballs", + "website": "https://pepemon.world", + "description": "Pepemon PPBLZ is the origin token in the Pepemon economy. It's used to farm PPDEX.", + "explorer": "https://etherscan.io/token/0x4d2ee5dae46c86da2ff521f7657dad98834f97b8", + "research": "https://pepemonfinance.medium.com/gotta-farm-%C3%A9m-all-6a08fef5865", + "type": "ERC20", + "symbol": "PPBLZ", + "decimals": 18, + "status": "active", + "id": "0x4D2eE5DAe46C86DA2FF521F7657dad98834f97b8", + "links": [ + { + "name": "github", + "url": "https://github.com/pepem00n" + }, + { + "name": "whitepaper", + "url": "https://pepemonfinance.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4D2eE5DAe46C86DA2FF521F7657dad98834f97b8/logo.png b/blockchains/ethereum/assets/0x4D2eE5DAe46C86DA2FF521F7657dad98834f97b8/logo.png new file mode 100644 index 00000000..02609a49 Binary files /dev/null and b/blockchains/ethereum/assets/0x4D2eE5DAe46C86DA2FF521F7657dad98834f97b8/logo.png differ diff --git a/blockchains/ethereum/assets/0x4D6b9f281AF31916a0f16D1cEA2ec7384851EAAb/info.json b/blockchains/ethereum/assets/0x4D6b9f281AF31916a0f16D1cEA2ec7384851EAAb/info.json new file mode 100644 index 00000000..5286e1a4 --- /dev/null +++ b/blockchains/ethereum/assets/0x4D6b9f281AF31916a0f16D1cEA2ec7384851EAAb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neuromorphic", + "symbol": "NMP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://neuromorphic.io", + "explorer": "https://etherscan.io/token/0x4D6b9f281AF31916a0f16D1cEA2ec7384851EAAb", + "status": "abandoned", + "id": "0x4D6b9f281AF31916a0f16D1cEA2ec7384851EAAb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4D6b9f281AF31916a0f16D1cEA2ec7384851EAAb/logo.png b/blockchains/ethereum/assets/0x4D6b9f281AF31916a0f16D1cEA2ec7384851EAAb/logo.png new file mode 100644 index 00000000..3f95f56a Binary files /dev/null and b/blockchains/ethereum/assets/0x4D6b9f281AF31916a0f16D1cEA2ec7384851EAAb/logo.png differ diff --git a/blockchains/ethereum/assets/0x4D807509aECe24C0fa5A102b6a3B059Ec6E14392/info.json b/blockchains/ethereum/assets/0x4D807509aECe24C0fa5A102b6a3B059Ec6E14392/info.json new file mode 100644 index 00000000..1ec3d674 --- /dev/null +++ b/blockchains/ethereum/assets/0x4D807509aECe24C0fa5A102b6a3B059Ec6E14392/info.json @@ -0,0 +1,11 @@ +{ + "name": "Menlo One", + "symbol": "ONE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://menlo.one", + "explorer": "https://etherscan.io/token/0x4D807509aECe24C0fa5A102b6a3B059Ec6E14392", + "status": "abandoned", + "id": "0x4D807509aECe24C0fa5A102b6a3B059Ec6E14392" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4D807509aECe24C0fa5A102b6a3B059Ec6E14392/logo.png b/blockchains/ethereum/assets/0x4D807509aECe24C0fa5A102b6a3B059Ec6E14392/logo.png new file mode 100644 index 00000000..45e74e27 Binary files /dev/null and b/blockchains/ethereum/assets/0x4D807509aECe24C0fa5A102b6a3B059Ec6E14392/logo.png differ diff --git a/blockchains/ethereum/assets/0x4D8bfe7EA0f46486Fd40FC4df60CF39f7568BEE8/info.json b/blockchains/ethereum/assets/0x4D8bfe7EA0f46486Fd40FC4df60CF39f7568BEE8/info.json new file mode 100644 index 00000000..74067312 --- /dev/null +++ b/blockchains/ethereum/assets/0x4D8bfe7EA0f46486Fd40FC4df60CF39f7568BEE8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Incodium", + "symbol": "INCO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4D8bfe7EA0f46486Fd40FC4df60CF39f7568BEE8", + "status": "abandoned", + "id": "0x4D8bfe7EA0f46486Fd40FC4df60CF39f7568BEE8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4D8bfe7EA0f46486Fd40FC4df60CF39f7568BEE8/logo.png b/blockchains/ethereum/assets/0x4D8bfe7EA0f46486Fd40FC4df60CF39f7568BEE8/logo.png new file mode 100644 index 00000000..5da8f34c Binary files /dev/null and b/blockchains/ethereum/assets/0x4D8bfe7EA0f46486Fd40FC4df60CF39f7568BEE8/logo.png differ diff --git a/blockchains/ethereum/assets/0x4D8fc1453a0F359e99c9675954e656D80d996FbF/info.json b/blockchains/ethereum/assets/0x4D8fc1453a0F359e99c9675954e656D80d996FbF/info.json new file mode 100644 index 00000000..55990fc5 --- /dev/null +++ b/blockchains/ethereum/assets/0x4D8fc1453a0F359e99c9675954e656D80d996FbF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bee Token", + "symbol": "BEE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4D8fc1453a0F359e99c9675954e656D80d996FbF", + "status": "abandoned", + "id": "0x4D8fc1453a0F359e99c9675954e656D80d996FbF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4D8fc1453a0F359e99c9675954e656D80d996FbF/logo.png b/blockchains/ethereum/assets/0x4D8fc1453a0F359e99c9675954e656D80d996FbF/logo.png new file mode 100644 index 00000000..40f29563 Binary files /dev/null and b/blockchains/ethereum/assets/0x4D8fc1453a0F359e99c9675954e656D80d996FbF/logo.png differ diff --git a/blockchains/ethereum/assets/0x4D953cf077c0C95Ba090226E59A18FcF97db44EC/info.json b/blockchains/ethereum/assets/0x4D953cf077c0C95Ba090226E59A18FcF97db44EC/info.json new file mode 100755 index 00000000..c792abee --- /dev/null +++ b/blockchains/ethereum/assets/0x4D953cf077c0C95Ba090226E59A18FcF97db44EC/info.json @@ -0,0 +1,11 @@ +{ + "name": "MINI", + "website": "https://miniswap.org", + "description": "MiniSwap enable to have a connected network of DeFi ecosystems. MiniSwap provides a decentralised platform for exercising financial products.", + "explorer": "https://etherscan.io/token/0x4D953cf077c0C95Ba090226E59A18FcF97db44EC", + "type": "ERC20", + "symbol": "MINI", + "decimals": 18, + "status": "active", + "id": "0x4D953cf077c0C95Ba090226E59A18FcF97db44EC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4D953cf077c0C95Ba090226E59A18FcF97db44EC/logo.png b/blockchains/ethereum/assets/0x4D953cf077c0C95Ba090226E59A18FcF97db44EC/logo.png new file mode 100644 index 00000000..ac2a4a7b Binary files /dev/null and b/blockchains/ethereum/assets/0x4D953cf077c0C95Ba090226E59A18FcF97db44EC/logo.png differ diff --git a/blockchains/ethereum/assets/0x4D9e23a3842fE7Eb7682B9725cF6c507C424A41B/info.json b/blockchains/ethereum/assets/0x4D9e23a3842fE7Eb7682B9725cF6c507C424A41B/info.json new file mode 100644 index 00000000..b5579e6f --- /dev/null +++ b/blockchains/ethereum/assets/0x4D9e23a3842fE7Eb7682B9725cF6c507C424A41B/info.json @@ -0,0 +1,11 @@ +{ + "name": "CarBlock.io", + "symbol": "CAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4D9e23a3842fE7Eb7682B9725cF6c507C424A41B", + "status": "abandoned", + "id": "0x4D9e23a3842fE7Eb7682B9725cF6c507C424A41B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4D9e23a3842fE7Eb7682B9725cF6c507C424A41B/logo.png b/blockchains/ethereum/assets/0x4D9e23a3842fE7Eb7682B9725cF6c507C424A41B/logo.png new file mode 100644 index 00000000..5acc92df Binary files /dev/null and b/blockchains/ethereum/assets/0x4D9e23a3842fE7Eb7682B9725cF6c507C424A41B/logo.png differ diff --git a/blockchains/ethereum/assets/0x4DA9b813057D04BAef4e5800E36083717b4a0341/info.json b/blockchains/ethereum/assets/0x4DA9b813057D04BAef4e5800E36083717b4a0341/info.json new file mode 100644 index 00000000..d3f6729b --- /dev/null +++ b/blockchains/ethereum/assets/0x4DA9b813057D04BAef4e5800E36083717b4a0341/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave TUSD V1", + "symbol": "aTUSD V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave TUSD V1 is an interest bearing token pegged 1:1 to the underlying TUSD deposited in Aave V1. aTUSD V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x4DA9b813057D04BAef4e5800E36083717b4a0341", + "status": "abandoned", + "id": "0x4DA9b813057D04BAef4e5800E36083717b4a0341" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4DA9b813057D04BAef4e5800E36083717b4a0341/logo.png b/blockchains/ethereum/assets/0x4DA9b813057D04BAef4e5800E36083717b4a0341/logo.png new file mode 100644 index 00000000..807cacca Binary files /dev/null and b/blockchains/ethereum/assets/0x4DA9b813057D04BAef4e5800E36083717b4a0341/logo.png differ diff --git a/blockchains/ethereum/assets/0x4DAa7Fb607E9aBBB16B168741262aEa23980899e/info.json b/blockchains/ethereum/assets/0x4DAa7Fb607E9aBBB16B168741262aEa23980899e/info.json new file mode 100644 index 00000000..0aba0449 --- /dev/null +++ b/blockchains/ethereum/assets/0x4DAa7Fb607E9aBBB16B168741262aEa23980899e/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg5500", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4DAa7Fb607E9aBBB16B168741262aEa23980899e", + "status": "abandoned", + "id": "0x4DAa7Fb607E9aBBB16B168741262aEa23980899e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4DAa7Fb607E9aBBB16B168741262aEa23980899e/logo.png b/blockchains/ethereum/assets/0x4DAa7Fb607E9aBBB16B168741262aEa23980899e/logo.png new file mode 100644 index 00000000..3844aa3b Binary files /dev/null and b/blockchains/ethereum/assets/0x4DAa7Fb607E9aBBB16B168741262aEa23980899e/logo.png differ diff --git a/blockchains/ethereum/assets/0x4DBE83285fc959011f65Dc613AeEA638F18D3B92/info.json b/blockchains/ethereum/assets/0x4DBE83285fc959011f65Dc613AeEA638F18D3B92/info.json new file mode 100644 index 00000000..32d183ed --- /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 00000000..a995169b 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 00000000..a68951f3 --- /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 00000000..a1311b72 Binary files /dev/null and b/blockchains/ethereum/assets/0x4DC26fC5854e7648a064a4ABD590bBE71724C277/logo.png differ diff --git a/blockchains/ethereum/assets/0x4DC3643DbC642b72C158E7F3d2ff232df61cb6CE/info.json b/blockchains/ethereum/assets/0x4DC3643DbC642b72C158E7F3d2ff232df61cb6CE/info.json new file mode 100644 index 00000000..ca729270 --- /dev/null +++ b/blockchains/ethereum/assets/0x4DC3643DbC642b72C158E7F3d2ff232df61cb6CE/info.json @@ -0,0 +1,12 @@ +{ + "name": "Ambrosus", + "website": "http://ambrosus.com", + "description": "The Ambrosus network is a blockchain-based ecosystem for supply chains, ensuring the origin, quality, compliance, and proper handling of items tracked by the network.", + "explorer": "https://etherscan.io/token/0x4DC3643DbC642b72C158E7F3d2ff232df61cb6CE", + "research": "https://research.binance.com/en/projects/ambrosus", + "type": "ERC20", + "symbol": "AMB", + "decimals": 18, + "status": "active", + "id": "0x4DC3643DbC642b72C158E7F3d2ff232df61cb6CE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4DC3643DbC642b72C158E7F3d2ff232df61cb6CE/logo.png b/blockchains/ethereum/assets/0x4DC3643DbC642b72C158E7F3d2ff232df61cb6CE/logo.png new file mode 100755 index 00000000..08cb4274 Binary files /dev/null and b/blockchains/ethereum/assets/0x4DC3643DbC642b72C158E7F3d2ff232df61cb6CE/logo.png differ diff --git a/blockchains/ethereum/assets/0x4DF47B4969B2911C966506E3592c41389493953b/info.json b/blockchains/ethereum/assets/0x4DF47B4969B2911C966506E3592c41389493953b/info.json new file mode 100644 index 00000000..e144f620 --- /dev/null +++ b/blockchains/ethereum/assets/0x4DF47B4969B2911C966506E3592c41389493953b/info.json @@ -0,0 +1,11 @@ +{ + "name": "FundRequest", + "symbol": "FND", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://fundrequest.io/", + "explorer": "https://etherscan.io/token/0x4DF47B4969B2911C966506E3592c41389493953b", + "status": "abandoned", + "id": "0x4DF47B4969B2911C966506E3592c41389493953b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4DF47B4969B2911C966506E3592c41389493953b/logo.png b/blockchains/ethereum/assets/0x4DF47B4969B2911C966506E3592c41389493953b/logo.png new file mode 100644 index 00000000..997596bc Binary files /dev/null and b/blockchains/ethereum/assets/0x4DF47B4969B2911C966506E3592c41389493953b/logo.png differ diff --git a/blockchains/ethereum/assets/0x4DF812F6064def1e5e029f1ca858777CC98D2D81/info.json b/blockchains/ethereum/assets/0x4DF812F6064def1e5e029f1ca858777CC98D2D81/info.json new file mode 100644 index 00000000..7eace598 --- /dev/null +++ b/blockchains/ethereum/assets/0x4DF812F6064def1e5e029f1ca858777CC98D2D81/info.json @@ -0,0 +1,14 @@ +{ + "name": "Xaurum", + "symbol": "XAUR", + "type": "ERC20", + "decimals": 8, + "description": "Xaurum is unit of value on the golden blockchain, it represents an increasing amount of gold and can be exchanged for it by melting.", + "website": "http://www.xaurum.org/", + "explorer": "https://etherscan.io/token/0x4DF812F6064def1e5e029f1ca858777CC98D2D81", + "status": "active", + "id": "0x4DF812F6064def1e5e029f1ca858777CC98D2D81", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4DF812F6064def1e5e029f1ca858777CC98D2D81/logo.png b/blockchains/ethereum/assets/0x4DF812F6064def1e5e029f1ca858777CC98D2D81/logo.png new file mode 100755 index 00000000..94657939 Binary files /dev/null and b/blockchains/ethereum/assets/0x4DF812F6064def1e5e029f1ca858777CC98D2D81/logo.png differ diff --git a/blockchains/ethereum/assets/0x4DbB31B7e25baD52e297F697688D013090b63EFd/info.json b/blockchains/ethereum/assets/0x4DbB31B7e25baD52e297F697688D013090b63EFd/info.json new file mode 100644 index 00000000..e3773a34 --- /dev/null +++ b/blockchains/ethereum/assets/0x4DbB31B7e25baD52e297F697688D013090b63EFd/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg20000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4DbB31B7e25baD52e297F697688D013090b63EFd", + "status": "abandoned", + "id": "0x4DbB31B7e25baD52e297F697688D013090b63EFd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4DbB31B7e25baD52e297F697688D013090b63EFd/logo.png b/blockchains/ethereum/assets/0x4DbB31B7e25baD52e297F697688D013090b63EFd/logo.png new file mode 100644 index 00000000..89af9f0b Binary files /dev/null and b/blockchains/ethereum/assets/0x4DbB31B7e25baD52e297F697688D013090b63EFd/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Dd672e77c795844fe3A464eF8eF0FAAe617C8fB/info.json b/blockchains/ethereum/assets/0x4Dd672e77c795844fe3A464eF8eF0FAAe617C8fB/info.json new file mode 100644 index 00000000..a0b9c9c6 --- /dev/null +++ b/blockchains/ethereum/assets/0x4Dd672e77c795844fe3A464eF8eF0FAAe617C8fB/info.json @@ -0,0 +1,11 @@ +{ + "name": "CONUN", + "symbol": "CON", + "type": "ERC20", + "decimals": 18, + "description": "A service platform that enables high-performance computing resources to be handled by sharing idle resources between participants' personal computers and smartphones. ", + "website": "https://conun.io/", + "explorer": "https://etherscan.io/token/0x4Dd672e77c795844fe3A464eF8eF0FAAe617C8fB", + "status": "active", + "id": "0x4Dd672e77c795844fe3A464eF8eF0FAAe617C8fB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4Dd672e77c795844fe3A464eF8eF0FAAe617C8fB/logo.png b/blockchains/ethereum/assets/0x4Dd672e77c795844fe3A464eF8eF0FAAe617C8fB/logo.png new file mode 100644 index 00000000..09e4f080 Binary files /dev/null and b/blockchains/ethereum/assets/0x4Dd672e77c795844fe3A464eF8eF0FAAe617C8fB/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5/info.json b/blockchains/ethereum/assets/0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5/info.json new file mode 100644 index 00000000..ae186c0f --- /dev/null +++ b/blockchains/ethereum/assets/0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Compound Ether", + "symbol": "cETH", + "type": "ERC20", + "decimals": 8, + "description": "Compound is an algorithmic, autonomous interest rate protocol built for developers, to unlock a universe of open financial applications.", + "website": "https://compound.finance/", + "explorer": "https://etherscan.io/token/0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5", + "status": "active", + "id": "0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5/logo.png b/blockchains/ethereum/assets/0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5/logo.png new file mode 100644 index 00000000..d3e1c077 Binary files /dev/null and b/blockchains/ethereum/assets/0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5/logo.png differ diff --git a/blockchains/ethereum/assets/0x4DfB6AA71ffC76130A2d68B1844A1f12f75b8766/info.json b/blockchains/ethereum/assets/0x4DfB6AA71ffC76130A2d68B1844A1f12f75b8766/info.json new file mode 100644 index 00000000..f5125ed6 --- /dev/null +++ b/blockchains/ethereum/assets/0x4DfB6AA71ffC76130A2d68B1844A1f12f75b8766/info.json @@ -0,0 +1,11 @@ +{ + "name": "Geissbühler Weber & Partner Token", + "symbol": "GWPT", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4DfB6AA71ffC76130A2d68B1844A1f12f75b8766", + "status": "abandoned", + "id": "0x4DfB6AA71ffC76130A2d68B1844A1f12f75b8766" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4DfB6AA71ffC76130A2d68B1844A1f12f75b8766/logo.png b/blockchains/ethereum/assets/0x4DfB6AA71ffC76130A2d68B1844A1f12f75b8766/logo.png new file mode 100644 index 00000000..b6c66e68 Binary files /dev/null and b/blockchains/ethereum/assets/0x4DfB6AA71ffC76130A2d68B1844A1f12f75b8766/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Dfd148B532e934a2a26eA65689cf6268753e130/info.json b/blockchains/ethereum/assets/0x4Dfd148B532e934a2a26eA65689cf6268753e130/info.json new file mode 100644 index 00000000..4d958022 --- /dev/null +++ b/blockchains/ethereum/assets/0x4Dfd148B532e934a2a26eA65689cf6268753e130/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "MDT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4Dfd148B532e934a2a26eA65689cf6268753e130", + "status": "abandoned", + "id": "0x4Dfd148B532e934a2a26eA65689cf6268753e130" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4Dfd148B532e934a2a26eA65689cf6268753e130/logo.png b/blockchains/ethereum/assets/0x4Dfd148B532e934a2a26eA65689cf6268753e130/logo.png new file mode 100644 index 00000000..8c5d0034 Binary files /dev/null and b/blockchains/ethereum/assets/0x4Dfd148B532e934a2a26eA65689cf6268753e130/logo.png differ diff --git a/blockchains/ethereum/assets/0x4E0603e2A27A30480E5e3a4Fe548e29EF12F64bE/info.json b/blockchains/ethereum/assets/0x4E0603e2A27A30480E5e3a4Fe548e29EF12F64bE/info.json new file mode 100644 index 00000000..5d744fd6 --- /dev/null +++ b/blockchains/ethereum/assets/0x4E0603e2A27A30480E5e3a4Fe548e29EF12F64bE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Credo Token", + "symbol": "CREDO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bitbounce.com/credo", + "explorer": "https://etherscan.io/token/0x4E0603e2A27A30480E5e3a4Fe548e29EF12F64bE", + "status": "abandoned", + "id": "0x4E0603e2A27A30480E5e3a4Fe548e29EF12F64bE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4E0603e2A27A30480E5e3a4Fe548e29EF12F64bE/logo.png b/blockchains/ethereum/assets/0x4E0603e2A27A30480E5e3a4Fe548e29EF12F64bE/logo.png new file mode 100644 index 00000000..7c9faefd Binary files /dev/null and b/blockchains/ethereum/assets/0x4E0603e2A27A30480E5e3a4Fe548e29EF12F64bE/logo.png differ diff --git a/blockchains/ethereum/assets/0x4E0fCa55a6C3A94720ded91153A27F60E26B9AA8/info.json b/blockchains/ethereum/assets/0x4E0fCa55a6C3A94720ded91153A27F60E26B9AA8/info.json new file mode 100644 index 00000000..c3e62d88 --- /dev/null +++ b/blockchains/ethereum/assets/0x4E0fCa55a6C3A94720ded91153A27F60E26B9AA8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Boost", + "website": "https://boostco.in/", + "description": "Boost is a platform consisting of the latest DeFi tools designed by some of the top developers in the world and fueled by Boost Coin, the native cryptocurrency of the Boost ecosystem.", + "explorer": "https://etherscan.io/token/0x4e0fca55a6c3a94720ded91153a27f60e26b9aa8", + "type": "ERC20", + "symbol": "BOOST", + "decimals": 18, + "status": "active", + "id": "0x4E0fCa55a6C3A94720ded91153A27F60E26B9AA8", + "links": [ + { + "name": "whitepaper", + "url": "https://boostco.in/wp-content/uploads/2021/10/BoostWhitePaper.pdf" + }, + { + "name": "x", + "url": "https://x.com/TheBoostCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4E0fCa55a6C3A94720ded91153A27F60E26B9AA8/logo.png b/blockchains/ethereum/assets/0x4E0fCa55a6C3A94720ded91153A27F60E26B9AA8/logo.png new file mode 100644 index 00000000..3e4b9a73 Binary files /dev/null and b/blockchains/ethereum/assets/0x4E0fCa55a6C3A94720ded91153A27F60E26B9AA8/logo.png differ diff --git a/blockchains/ethereum/assets/0x4E12EB8e506Ccd1427F6b8F7faa3e88fB698EB28/info.json b/blockchains/ethereum/assets/0x4E12EB8e506Ccd1427F6b8F7faa3e88fB698EB28/info.json new file mode 100644 index 00000000..8f2b294b --- /dev/null +++ b/blockchains/ethereum/assets/0x4E12EB8e506Ccd1427F6b8F7faa3e88fB698EB28/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jack Token", + "symbol": "JACK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://jackr.io/", + "explorer": "https://etherscan.io/token/0x4E12EB8e506Ccd1427F6b8F7faa3e88fB698EB28", + "status": "abandoned", + "id": "0x4E12EB8e506Ccd1427F6b8F7faa3e88fB698EB28" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4E12EB8e506Ccd1427F6b8F7faa3e88fB698EB28/logo.png b/blockchains/ethereum/assets/0x4E12EB8e506Ccd1427F6b8F7faa3e88fB698EB28/logo.png new file mode 100644 index 00000000..883a8ac9 Binary files /dev/null and b/blockchains/ethereum/assets/0x4E12EB8e506Ccd1427F6b8F7faa3e88fB698EB28/logo.png differ diff --git a/blockchains/ethereum/assets/0x4E12bf83FEf8b31Bb21C8D5BE809Db31D42e456D/info.json b/blockchains/ethereum/assets/0x4E12bf83FEf8b31Bb21C8D5BE809Db31D42e456D/info.json new file mode 100644 index 00000000..747587cc --- /dev/null +++ b/blockchains/ethereum/assets/0x4E12bf83FEf8b31Bb21C8D5BE809Db31D42e456D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Inferno", + "symbol": "BLAZE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4E12bf83FEf8b31Bb21C8D5BE809Db31D42e456D", + "status": "abandoned", + "id": "0x4E12bf83FEf8b31Bb21C8D5BE809Db31D42e456D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4E12bf83FEf8b31Bb21C8D5BE809Db31D42e456D/logo.png b/blockchains/ethereum/assets/0x4E12bf83FEf8b31Bb21C8D5BE809Db31D42e456D/logo.png new file mode 100644 index 00000000..dac1de12 Binary files /dev/null and b/blockchains/ethereum/assets/0x4E12bf83FEf8b31Bb21C8D5BE809Db31D42e456D/logo.png differ diff --git a/blockchains/ethereum/assets/0x4E15361FD6b4BB609Fa63C81A2be19d873717870/info.json b/blockchains/ethereum/assets/0x4E15361FD6b4BB609Fa63C81A2be19d873717870/info.json new file mode 100644 index 00000000..e65d1976 --- /dev/null +++ b/blockchains/ethereum/assets/0x4E15361FD6b4BB609Fa63C81A2be19d873717870/info.json @@ -0,0 +1,32 @@ +{ + "name": "Fantom Token", + "symbol": "FTM", + "type": "ERC20", + "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://etherscan.io/token/0x4E15361FD6b4BB609Fa63C81A2be19d873717870", + "status": "active", + "id": "0x4E15361FD6b4BB609Fa63C81A2be19d873717870", + "tags": [ + "defi" + ], + "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/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4E15361FD6b4BB609Fa63C81A2be19d873717870/logo.png b/blockchains/ethereum/assets/0x4E15361FD6b4BB609Fa63C81A2be19d873717870/logo.png new file mode 100644 index 00000000..4c55ec1d Binary files /dev/null and b/blockchains/ethereum/assets/0x4E15361FD6b4BB609Fa63C81A2be19d873717870/logo.png differ diff --git a/blockchains/ethereum/assets/0x4E2224Bae4036f85FBC2293E05cBC66D3ac23f1c/info.json b/blockchains/ethereum/assets/0x4E2224Bae4036f85FBC2293E05cBC66D3ac23f1c/info.json new file mode 100644 index 00000000..7abf7fdf --- /dev/null +++ b/blockchains/ethereum/assets/0x4E2224Bae4036f85FBC2293E05cBC66D3ac23f1c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Flingo", + "symbol": "FLNGO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4E2224Bae4036f85FBC2293E05cBC66D3ac23f1c", + "status": "abandoned", + "id": "0x4E2224Bae4036f85FBC2293E05cBC66D3ac23f1c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4E2224Bae4036f85FBC2293E05cBC66D3ac23f1c/logo.png b/blockchains/ethereum/assets/0x4E2224Bae4036f85FBC2293E05cBC66D3ac23f1c/logo.png new file mode 100755 index 00000000..c43c7b05 Binary files /dev/null and b/blockchains/ethereum/assets/0x4E2224Bae4036f85FBC2293E05cBC66D3ac23f1c/logo.png differ diff --git a/blockchains/ethereum/assets/0x4E3Bddd468AbfC6C88bc25dAA5d894380CEd5bc8/info.json b/blockchains/ethereum/assets/0x4E3Bddd468AbfC6C88bc25dAA5d894380CEd5bc8/info.json new file mode 100644 index 00000000..374bdf91 --- /dev/null +++ b/blockchains/ethereum/assets/0x4E3Bddd468AbfC6C88bc25dAA5d894380CEd5bc8/info.json @@ -0,0 +1,11 @@ +{ + "name": "New Energy", + "symbol": "NSS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.nsscoin.net/", + "explorer": "https://etherscan.io/token/0x4E3Bddd468AbfC6C88bc25dAA5d894380CEd5bc8", + "status": "abandoned", + "id": "0x4E3Bddd468AbfC6C88bc25dAA5d894380CEd5bc8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4E3Bddd468AbfC6C88bc25dAA5d894380CEd5bc8/logo.png b/blockchains/ethereum/assets/0x4E3Bddd468AbfC6C88bc25dAA5d894380CEd5bc8/logo.png new file mode 100644 index 00000000..00e48fde Binary files /dev/null and b/blockchains/ethereum/assets/0x4E3Bddd468AbfC6C88bc25dAA5d894380CEd5bc8/logo.png differ diff --git a/blockchains/ethereum/assets/0x4E4F2cf7C828E277b9a997261165fA7074ec66bF/info.json b/blockchains/ethereum/assets/0x4E4F2cf7C828E277b9a997261165fA7074ec66bF/info.json new file mode 100644 index 00000000..f6c80d86 --- /dev/null +++ b/blockchains/ethereum/assets/0x4E4F2cf7C828E277b9a997261165fA7074ec66bF/info.json @@ -0,0 +1,11 @@ +{ + "name": "educca", + "symbol": "EDUC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4E4F2cf7C828E277b9a997261165fA7074ec66bF", + "status": "abandoned", + "id": "0x4E4F2cf7C828E277b9a997261165fA7074ec66bF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4E4F2cf7C828E277b9a997261165fA7074ec66bF/logo.png b/blockchains/ethereum/assets/0x4E4F2cf7C828E277b9a997261165fA7074ec66bF/logo.png new file mode 100644 index 00000000..249baae3 Binary files /dev/null and b/blockchains/ethereum/assets/0x4E4F2cf7C828E277b9a997261165fA7074ec66bF/logo.png differ diff --git a/blockchains/ethereum/assets/0x4E594479Fa417a1e9C5790a413575802D393010F/info.json b/blockchains/ethereum/assets/0x4E594479Fa417a1e9C5790a413575802D393010F/info.json new file mode 100644 index 00000000..d5cfdc70 --- /dev/null +++ b/blockchains/ethereum/assets/0x4E594479Fa417a1e9C5790a413575802D393010F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ferret Coin", + "symbol": "FER", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4E594479Fa417a1e9C5790a413575802D393010F", + "status": "abandoned", + "id": "0x4E594479Fa417a1e9C5790a413575802D393010F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4E594479Fa417a1e9C5790a413575802D393010F/logo.png b/blockchains/ethereum/assets/0x4E594479Fa417a1e9C5790a413575802D393010F/logo.png new file mode 100644 index 00000000..6111d330 Binary files /dev/null and b/blockchains/ethereum/assets/0x4E594479Fa417a1e9C5790a413575802D393010F/logo.png differ diff --git a/blockchains/ethereum/assets/0x4E6b679780e0Ffa47D7e05A1a21B5e0A7834039e/info.json b/blockchains/ethereum/assets/0x4E6b679780e0Ffa47D7e05A1a21B5e0A7834039e/info.json new file mode 100644 index 00000000..7c56b999 --- /dev/null +++ b/blockchains/ethereum/assets/0x4E6b679780e0Ffa47D7e05A1a21B5e0A7834039e/info.json @@ -0,0 +1,11 @@ +{ + "name": "ReeRoy", + "symbol": "ROY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4E6b679780e0Ffa47D7e05A1a21B5e0A7834039e", + "status": "abandoned", + "id": "0x4E6b679780e0Ffa47D7e05A1a21B5e0A7834039e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4E6b679780e0Ffa47D7e05A1a21B5e0A7834039e/logo.png b/blockchains/ethereum/assets/0x4E6b679780e0Ffa47D7e05A1a21B5e0A7834039e/logo.png new file mode 100644 index 00000000..86f554e2 Binary files /dev/null and b/blockchains/ethereum/assets/0x4E6b679780e0Ffa47D7e05A1a21B5e0A7834039e/logo.png differ diff --git a/blockchains/ethereum/assets/0x4E6c39b0ebf11eB720b77Ac18Dc30476aedaAe6A/info.json b/blockchains/ethereum/assets/0x4E6c39b0ebf11eB720b77Ac18Dc30476aedaAe6A/info.json new file mode 100644 index 00000000..30d1080a --- /dev/null +++ b/blockchains/ethereum/assets/0x4E6c39b0ebf11eB720b77Ac18Dc30476aedaAe6A/info.json @@ -0,0 +1,11 @@ +{ + "name": "CGS Token", + "symbol": "CGS", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4E6c39b0ebf11eB720b77Ac18Dc30476aedaAe6A", + "status": "abandoned", + "id": "0x4E6c39b0ebf11eB720b77Ac18Dc30476aedaAe6A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4E6c39b0ebf11eB720b77Ac18Dc30476aedaAe6A/logo.png b/blockchains/ethereum/assets/0x4E6c39b0ebf11eB720b77Ac18Dc30476aedaAe6A/logo.png new file mode 100644 index 00000000..f041fc6d Binary files /dev/null and b/blockchains/ethereum/assets/0x4E6c39b0ebf11eB720b77Ac18Dc30476aedaAe6A/logo.png differ diff --git a/blockchains/ethereum/assets/0x4E9623B7e5b6438542458f5EE828d65c24d3AF8c/info.json b/blockchains/ethereum/assets/0x4E9623B7e5b6438542458f5EE828d65c24d3AF8c/info.json new file mode 100644 index 00000000..b4b74f85 --- /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 00000000..2c30c779 Binary files /dev/null and b/blockchains/ethereum/assets/0x4E9623B7e5b6438542458f5EE828d65c24d3AF8c/logo.png differ diff --git a/blockchains/ethereum/assets/0x4E9A46EA6A22f3894aBEE2302Ad42fd3b69E21E2/info.json b/blockchains/ethereum/assets/0x4E9A46EA6A22f3894aBEE2302Ad42fd3b69E21E2/info.json new file mode 100644 index 00000000..9973c6a6 --- /dev/null +++ b/blockchains/ethereum/assets/0x4E9A46EA6A22f3894aBEE2302Ad42fd3b69E21E2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Binance Smart Chain Girl", + "type": "ERC20", + "symbol": "BSCGIRL", + "decimals": 8, + "website": "https://bscgirl.site/", + "description": "This token is It is a token that cross-chains BEP20 BSC GIRL of the following URL to ERC20 token. https://bscscan.com/token/0x5c6fb802f173dba15e2caada433032b1368af59f", + "explorer": "https://etherscan.io/token/0x4e9a46ea6a22f3894abee2302ad42fd3b69e21e2", + "status": "active", + "id": "0x4E9A46EA6A22f3894aBEE2302Ad42fd3b69E21E2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4E9A46EA6A22f3894aBEE2302Ad42fd3b69E21E2/logo.png b/blockchains/ethereum/assets/0x4E9A46EA6A22f3894aBEE2302Ad42fd3b69E21E2/logo.png new file mode 100644 index 00000000..5cb001b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x4E9A46EA6A22f3894aBEE2302Ad42fd3b69E21E2/logo.png differ diff --git a/blockchains/ethereum/assets/0x4EB81375d34F493a7879c041BA86098f2AfD4139/info.json b/blockchains/ethereum/assets/0x4EB81375d34F493a7879c041BA86098f2AfD4139/info.json new file mode 100644 index 00000000..84a31595 --- /dev/null +++ b/blockchains/ethereum/assets/0x4EB81375d34F493a7879c041BA86098f2AfD4139/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Note", + "symbol": "ENOTE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4EB81375d34F493a7879c041BA86098f2AfD4139", + "status": "abandoned", + "id": "0x4EB81375d34F493a7879c041BA86098f2AfD4139" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4EB81375d34F493a7879c041BA86098f2AfD4139/logo.png b/blockchains/ethereum/assets/0x4EB81375d34F493a7879c041BA86098f2AfD4139/logo.png new file mode 100644 index 00000000..f45623d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x4EB81375d34F493a7879c041BA86098f2AfD4139/logo.png differ diff --git a/blockchains/ethereum/assets/0x4EBCfA98b60fD25937DAFF54eccE4f6Fa6C1E638/info.json b/blockchains/ethereum/assets/0x4EBCfA98b60fD25937DAFF54eccE4f6Fa6C1E638/info.json new file mode 100644 index 00000000..bd53ba92 --- /dev/null +++ b/blockchains/ethereum/assets/0x4EBCfA98b60fD25937DAFF54eccE4f6Fa6C1E638/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Staking", + "symbol": "ESTA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4EBCfA98b60fD25937DAFF54eccE4f6Fa6C1E638", + "status": "abandoned", + "id": "0x4EBCfA98b60fD25937DAFF54eccE4f6Fa6C1E638" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4EBCfA98b60fD25937DAFF54eccE4f6Fa6C1E638/logo.png b/blockchains/ethereum/assets/0x4EBCfA98b60fD25937DAFF54eccE4f6Fa6C1E638/logo.png new file mode 100644 index 00000000..b54bf877 Binary files /dev/null and b/blockchains/ethereum/assets/0x4EBCfA98b60fD25937DAFF54eccE4f6Fa6C1E638/logo.png differ diff --git a/blockchains/ethereum/assets/0x4EC1b60B96193a64AcAe44778e51f7BfF2007831/info.json b/blockchains/ethereum/assets/0x4EC1b60B96193a64AcAe44778e51f7BfF2007831/info.json new file mode 100644 index 00000000..fd630b30 --- /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 00000000..48f2fdeb 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 00000000..8fdd19b7 --- /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 00000000..feccb8f8 Binary files /dev/null and b/blockchains/ethereum/assets/0x4EFD92F372898B57F292De69fCe377dd7D912bDd/logo.png differ diff --git a/blockchains/ethereum/assets/0x4EcDB6385f3Db3847F9C4A9bf3F9917bb27A5452/info.json b/blockchains/ethereum/assets/0x4EcDB6385f3Db3847F9C4A9bf3F9917bb27A5452/info.json new file mode 100644 index 00000000..3a51d180 --- /dev/null +++ b/blockchains/ethereum/assets/0x4EcDB6385f3Db3847F9C4A9bf3F9917bb27A5452/info.json @@ -0,0 +1,11 @@ +{ + "name": "EKT", + "symbol": "EKT", + "type": "ERC20", + "decimals": 8, + "description": "EKT is an online education community that creating a model that equitably rewards both the content providers, referrals and the end consumer. It will serve to increase transparency, trust and collaboration.", + "website": "http://ekt8.io/", + "explorer": "https://etherscan.io/token/0x4EcDB6385f3Db3847F9C4A9bf3F9917bb27A5452", + "status": "active", + "id": "0x4EcDB6385f3Db3847F9C4A9bf3F9917bb27A5452" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4EcDB6385f3Db3847F9C4A9bf3F9917bb27A5452/logo.png b/blockchains/ethereum/assets/0x4EcDB6385f3Db3847F9C4A9bf3F9917bb27A5452/logo.png new file mode 100644 index 00000000..fce1dabe Binary files /dev/null and b/blockchains/ethereum/assets/0x4EcDB6385f3Db3847F9C4A9bf3F9917bb27A5452/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Eeea7B48b9C3ac8F70a9c932A8B1E8a5CB624c7/info.json b/blockchains/ethereum/assets/0x4Eeea7B48b9C3ac8F70a9c932A8B1E8a5CB624c7/info.json new file mode 100644 index 00000000..811aac1c --- /dev/null +++ b/blockchains/ethereum/assets/0x4Eeea7B48b9C3ac8F70a9c932A8B1E8a5CB624c7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Membrana", + "symbol": "MBN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://mbn.global", + "explorer": "https://etherscan.io/token/0x4Eeea7B48b9C3ac8F70a9c932A8B1E8a5CB624c7", + "status": "active", + "id": "0x4Eeea7B48b9C3ac8F70a9c932A8B1E8a5CB624c7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4Eeea7B48b9C3ac8F70a9c932A8B1E8a5CB624c7/logo.png b/blockchains/ethereum/assets/0x4Eeea7B48b9C3ac8F70a9c932A8B1E8a5CB624c7/logo.png new file mode 100644 index 00000000..9716da3d Binary files /dev/null and b/blockchains/ethereum/assets/0x4Eeea7B48b9C3ac8F70a9c932A8B1E8a5CB624c7/logo.png differ diff --git a/blockchains/ethereum/assets/0x4F22310C27eF39FEAA4A756027896DC382F0b5E2/info.json b/blockchains/ethereum/assets/0x4F22310C27eF39FEAA4A756027896DC382F0b5E2/info.json new file mode 100644 index 00000000..d008ee41 --- /dev/null +++ b/blockchains/ethereum/assets/0x4F22310C27eF39FEAA4A756027896DC382F0b5E2/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPIN Protocol", + "symbol": "SPIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.spinprotocol.io/", + "explorer": "https://etherscan.io/token/0x4F22310C27eF39FEAA4A756027896DC382F0b5E2", + "status": "abandoned", + "id": "0x4F22310C27eF39FEAA4A756027896DC382F0b5E2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4F22310C27eF39FEAA4A756027896DC382F0b5E2/logo.png b/blockchains/ethereum/assets/0x4F22310C27eF39FEAA4A756027896DC382F0b5E2/logo.png new file mode 100644 index 00000000..7a5747e5 Binary files /dev/null and b/blockchains/ethereum/assets/0x4F22310C27eF39FEAA4A756027896DC382F0b5E2/logo.png differ diff --git a/blockchains/ethereum/assets/0x4F34adfff48CEB4Af2f3b2253CdFdcC99c9053F4/info.json b/blockchains/ethereum/assets/0x4F34adfff48CEB4Af2f3b2253CdFdcC99c9053F4/info.json new file mode 100644 index 00000000..600f783a --- /dev/null +++ b/blockchains/ethereum/assets/0x4F34adfff48CEB4Af2f3b2253CdFdcC99c9053F4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Global Funeral Care SaleToken", + "symbol": "GFCS", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4F34adfff48CEB4Af2f3b2253CdFdcC99c9053F4", + "status": "abandoned", + "id": "0x4F34adfff48CEB4Af2f3b2253CdFdcC99c9053F4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4F34adfff48CEB4Af2f3b2253CdFdcC99c9053F4/logo.png b/blockchains/ethereum/assets/0x4F34adfff48CEB4Af2f3b2253CdFdcC99c9053F4/logo.png new file mode 100755 index 00000000..aa4d21cf Binary files /dev/null and b/blockchains/ethereum/assets/0x4F34adfff48CEB4Af2f3b2253CdFdcC99c9053F4/logo.png differ diff --git a/blockchains/ethereum/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json b/blockchains/ethereum/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json new file mode 100644 index 00000000..2d59e813 --- /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 00000000..bb0e7293 Binary files /dev/null and b/blockchains/ethereum/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/logo.png differ diff --git a/blockchains/ethereum/assets/0x4F38f4229924bfa28D58eeda496Cc85e8016bCCC/info.json b/blockchains/ethereum/assets/0x4F38f4229924bfa28D58eeda496Cc85e8016bCCC/info.json new file mode 100644 index 00000000..b5d23e88 --- /dev/null +++ b/blockchains/ethereum/assets/0x4F38f4229924bfa28D58eeda496Cc85e8016bCCC/info.json @@ -0,0 +1,11 @@ +{ + "name": "CehhCoin", + "symbol": "CEHH", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4F38f4229924bfa28D58eeda496Cc85e8016bCCC", + "status": "abandoned", + "id": "0x4F38f4229924bfa28D58eeda496Cc85e8016bCCC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4F38f4229924bfa28D58eeda496Cc85e8016bCCC/logo.png b/blockchains/ethereum/assets/0x4F38f4229924bfa28D58eeda496Cc85e8016bCCC/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x4F38f4229924bfa28D58eeda496Cc85e8016bCCC/logo.png differ diff --git a/blockchains/ethereum/assets/0x4F3B49aC895a29c0908c57538932967Cdc8e3c80/info.json b/blockchains/ethereum/assets/0x4F3B49aC895a29c0908c57538932967Cdc8e3c80/info.json new file mode 100644 index 00000000..2a5a0eb7 --- /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 00000000..f043e9e3 Binary files /dev/null and b/blockchains/ethereum/assets/0x4F3B49aC895a29c0908c57538932967Cdc8e3c80/logo.png differ diff --git a/blockchains/ethereum/assets/0x4F7c5BD3F7D62a9C984e265D73A86F5515F3e92B/info.json b/blockchains/ethereum/assets/0x4F7c5BD3F7D62a9C984e265D73A86F5515F3e92B/info.json new file mode 100644 index 00000000..0870d321 --- /dev/null +++ b/blockchains/ethereum/assets/0x4F7c5BD3F7D62a9C984e265D73A86F5515F3e92B/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Burn Token", + "symbol": "BURN", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4F7c5BD3F7D62a9C984e265D73A86F5515F3e92B", + "status": "abandoned", + "id": "0x4F7c5BD3F7D62a9C984e265D73A86F5515F3e92B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4F7c5BD3F7D62a9C984e265D73A86F5515F3e92B/logo.png b/blockchains/ethereum/assets/0x4F7c5BD3F7D62a9C984e265D73A86F5515F3e92B/logo.png new file mode 100644 index 00000000..547c66f9 Binary files /dev/null and b/blockchains/ethereum/assets/0x4F7c5BD3F7D62a9C984e265D73A86F5515F3e92B/logo.png differ diff --git a/blockchains/ethereum/assets/0x4F9254C83EB525f9FCf346490bbb3ed28a81C667/info.json b/blockchains/ethereum/assets/0x4F9254C83EB525f9FCf346490bbb3ed28a81C667/info.json new file mode 100644 index 00000000..e502248a --- /dev/null +++ b/blockchains/ethereum/assets/0x4F9254C83EB525f9FCf346490bbb3ed28a81C667/info.json @@ -0,0 +1,11 @@ +{ + "name": "CelerToken", + "symbol": "CELR", + "type": "ERC20", + "decimals": 18, + "description": "Celer Network describes itself as 'a layer-2 scaling platform to build fast, easy-to-use, low-cost and secure blockchain applications at internet scale through off-chain scaling techniques and incentive-aligned cryptoeconomics'.", + "website": "https://www.celer.network/#", + "explorer": "https://etherscan.io/token/0x4F9254C83EB525f9FCf346490bbb3ed28a81C667", + "status": "active", + "id": "0x4F9254C83EB525f9FCf346490bbb3ed28a81C667" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4F9254C83EB525f9FCf346490bbb3ed28a81C667/logo.png b/blockchains/ethereum/assets/0x4F9254C83EB525f9FCf346490bbb3ed28a81C667/logo.png new file mode 100644 index 00000000..b3dc0601 Binary files /dev/null and b/blockchains/ethereum/assets/0x4F9254C83EB525f9FCf346490bbb3ed28a81C667/logo.png differ diff --git a/blockchains/ethereum/assets/0x4FA2141eD83Fc7eE82d9c49A14aEAf1f1509Feb1/info.json b/blockchains/ethereum/assets/0x4FA2141eD83Fc7eE82d9c49A14aEAf1f1509Feb1/info.json new file mode 100644 index 00000000..ee18b7bd --- /dev/null +++ b/blockchains/ethereum/assets/0x4FA2141eD83Fc7eE82d9c49A14aEAf1f1509Feb1/info.json @@ -0,0 +1,11 @@ +{ + "name": "All Beauty Community Token", + "symbol": "ABCT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4FA2141eD83Fc7eE82d9c49A14aEAf1f1509Feb1", + "status": "abandoned", + "id": "0x4FA2141eD83Fc7eE82d9c49A14aEAf1f1509Feb1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4FA2141eD83Fc7eE82d9c49A14aEAf1f1509Feb1/logo.png b/blockchains/ethereum/assets/0x4FA2141eD83Fc7eE82d9c49A14aEAf1f1509Feb1/logo.png new file mode 100644 index 00000000..4b4c8fb3 Binary files /dev/null and b/blockchains/ethereum/assets/0x4FA2141eD83Fc7eE82d9c49A14aEAf1f1509Feb1/logo.png differ diff --git a/blockchains/ethereum/assets/0x4FB7d00f57A143B80b7FcedaEf8985Dc6EBB6798/info.json b/blockchains/ethereum/assets/0x4FB7d00f57A143B80b7FcedaEf8985Dc6EBB6798/info.json new file mode 100644 index 00000000..9ebb5600 --- /dev/null +++ b/blockchains/ethereum/assets/0x4FB7d00f57A143B80b7FcedaEf8985Dc6EBB6798/info.json @@ -0,0 +1,11 @@ +{ + "name": "TianHone Coin", + "symbol": "THC", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4FB7d00f57A143B80b7FcedaEf8985Dc6EBB6798", + "status": "abandoned", + "id": "0x4FB7d00f57A143B80b7FcedaEf8985Dc6EBB6798" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4FB7d00f57A143B80b7FcedaEf8985Dc6EBB6798/logo.png b/blockchains/ethereum/assets/0x4FB7d00f57A143B80b7FcedaEf8985Dc6EBB6798/logo.png new file mode 100644 index 00000000..99503ff8 Binary files /dev/null and b/blockchains/ethereum/assets/0x4FB7d00f57A143B80b7FcedaEf8985Dc6EBB6798/logo.png differ diff --git a/blockchains/ethereum/assets/0x4FBb0B4cD8f960aC3428194F1c94c805D5b35836/info.json b/blockchains/ethereum/assets/0x4FBb0B4cD8f960aC3428194F1c94c805D5b35836/info.json new file mode 100644 index 00000000..00470a95 --- /dev/null +++ b/blockchains/ethereum/assets/0x4FBb0B4cD8f960aC3428194F1c94c805D5b35836/info.json @@ -0,0 +1,11 @@ +{ + "name": "BigBang Game Coin Token", + "symbol": "BBGC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.bbgc.games", + "explorer": "https://etherscan.io/token/0x4FBb0B4cD8f960aC3428194F1c94c805D5b35836", + "status": "abandoned", + "id": "0x4FBb0B4cD8f960aC3428194F1c94c805D5b35836" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4FBb0B4cD8f960aC3428194F1c94c805D5b35836/logo.png b/blockchains/ethereum/assets/0x4FBb0B4cD8f960aC3428194F1c94c805D5b35836/logo.png new file mode 100755 index 00000000..3121613f Binary files /dev/null and b/blockchains/ethereum/assets/0x4FBb0B4cD8f960aC3428194F1c94c805D5b35836/logo.png differ diff --git a/blockchains/ethereum/assets/0x4FE2b959E0a093c58067E00c62add84820f7dc43/info.json b/blockchains/ethereum/assets/0x4FE2b959E0a093c58067E00c62add84820f7dc43/info.json new file mode 100644 index 00000000..f81a4cb0 --- /dev/null +++ b/blockchains/ethereum/assets/0x4FE2b959E0a093c58067E00c62add84820f7dc43/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mutual Uniting System", + "symbol": "MUS", + "type": "ERC20", + "decimals": 15, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4FE2b959E0a093c58067E00c62add84820f7dc43", + "status": "abandoned", + "id": "0x4FE2b959E0a093c58067E00c62add84820f7dc43" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4FE2b959E0a093c58067E00c62add84820f7dc43/logo.png b/blockchains/ethereum/assets/0x4FE2b959E0a093c58067E00c62add84820f7dc43/logo.png new file mode 100755 index 00000000..96436f18 Binary files /dev/null and b/blockchains/ethereum/assets/0x4FE2b959E0a093c58067E00c62add84820f7dc43/logo.png differ diff --git a/blockchains/ethereum/assets/0x4FE5851C9af07df9e5AD8217aFAE1ea72737Ebda/info.json b/blockchains/ethereum/assets/0x4FE5851C9af07df9e5AD8217aFAE1ea72737Ebda/info.json new file mode 100644 index 00000000..05a491b5 --- /dev/null +++ b/blockchains/ethereum/assets/0x4FE5851C9af07df9e5AD8217aFAE1ea72737Ebda/info.json @@ -0,0 +1,18 @@ +{ + "name": "OpenPredict", + "website": "https://openpredict.io/", + "description": "OpenPredict is the first DeFi protocol to turn live predictions into liquid assets.", + "explorer": "https://etherscan.io/token/0x4FE5851C9af07df9e5AD8217aFAE1ea72737Ebda", + "research": "https://daomaker.com/sho/openpredict", + "type": "ERC20", + "symbol": "OPT", + "decimals": 18, + "status": "active", + "id": "0x4FE5851C9af07df9e5AD8217aFAE1ea72737Ebda", + "links": [ + { + "name": "whitepaper", + "url": "https://openpredict.io/litepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4FE5851C9af07df9e5AD8217aFAE1ea72737Ebda/logo.png b/blockchains/ethereum/assets/0x4FE5851C9af07df9e5AD8217aFAE1ea72737Ebda/logo.png new file mode 100644 index 00000000..59a5c1b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x4FE5851C9af07df9e5AD8217aFAE1ea72737Ebda/logo.png differ diff --git a/blockchains/ethereum/assets/0x4FE9f52Ec23f6805F2Fd0332a34Da4F1c135b024/info.json b/blockchains/ethereum/assets/0x4FE9f52Ec23f6805F2Fd0332a34Da4F1c135b024/info.json new file mode 100644 index 00000000..789da3ce --- /dev/null +++ b/blockchains/ethereum/assets/0x4FE9f52Ec23f6805F2Fd0332a34Da4F1c135b024/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cai Token", + "symbol": "CAI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4FE9f52Ec23f6805F2Fd0332a34Da4F1c135b024", + "status": "abandoned", + "id": "0x4FE9f52Ec23f6805F2Fd0332a34Da4F1c135b024" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4FE9f52Ec23f6805F2Fd0332a34Da4F1c135b024/logo.png b/blockchains/ethereum/assets/0x4FE9f52Ec23f6805F2Fd0332a34Da4F1c135b024/logo.png new file mode 100644 index 00000000..4eef76fb Binary files /dev/null and b/blockchains/ethereum/assets/0x4FE9f52Ec23f6805F2Fd0332a34Da4F1c135b024/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Fabb145d64652a948d72533023f6E7A623C7C53/info.json b/blockchains/ethereum/assets/0x4Fabb145d64652a948d72533023f6E7A623C7C53/info.json new file mode 100644 index 00000000..8ef2031c --- /dev/null +++ b/blockchains/ethereum/assets/0x4Fabb145d64652a948d72533023f6E7A623C7C53/info.json @@ -0,0 +1,15 @@ +{ + "name": "Binance USD", + "website": "https://paxos.com/busd/", + "description": "BUSD is a stablecoin issued by Paxos in partnership with Binance.", + "explorer": "https://etherscan.io/token/0x4Fabb145d64652a948d72533023f6E7A623C7C53", + "research": "https://research.binance.com/en/projects/binance-usd", + "type": "ERC20", + "symbol": "BUSD", + "decimals": 18, + "status": "active", + "id": "0x4Fabb145d64652a948d72533023f6E7A623C7C53", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4Fabb145d64652a948d72533023f6E7A623C7C53/logo.png b/blockchains/ethereum/assets/0x4Fabb145d64652a948d72533023f6E7A623C7C53/logo.png new file mode 100644 index 00000000..76d02e37 Binary files /dev/null and b/blockchains/ethereum/assets/0x4Fabb145d64652a948d72533023f6E7A623C7C53/logo.png differ diff --git a/blockchains/ethereum/assets/0x4FbB350052Bca5417566f188eB2EBCE5b19BC964/info.json b/blockchains/ethereum/assets/0x4FbB350052Bca5417566f188eB2EBCE5b19BC964/info.json new file mode 100644 index 00000000..67dd739c --- /dev/null +++ b/blockchains/ethereum/assets/0x4FbB350052Bca5417566f188eB2EBCE5b19BC964/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rigo Token", + "symbol": "GRG", + "type": "ERC20", + "decimals": 18, + "description": "RigoBlock exists to reinvent the asset management industry, making it possible for anyone, anywhere, to set up and manage decentralized token pools which combine the powers of transparency, control, flexibility and governance.", + "website": "https://rigoblock.com", + "explorer": "https://etherscan.io/token/0x4FbB350052Bca5417566f188eB2EBCE5b19BC964", + "status": "active", + "id": "0x4FbB350052Bca5417566f188eB2EBCE5b19BC964" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4FbB350052Bca5417566f188eB2EBCE5b19BC964/logo.png b/blockchains/ethereum/assets/0x4FbB350052Bca5417566f188eB2EBCE5b19BC964/logo.png new file mode 100644 index 00000000..d5111719 Binary files /dev/null and b/blockchains/ethereum/assets/0x4FbB350052Bca5417566f188eB2EBCE5b19BC964/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Fe1b5fF3F640dA6eF23c4AA9be7d952E46f5C5b/info.json b/blockchains/ethereum/assets/0x4Fe1b5fF3F640dA6eF23c4AA9be7d952E46f5C5b/info.json new file mode 100644 index 00000000..40095820 --- /dev/null +++ b/blockchains/ethereum/assets/0x4Fe1b5fF3F640dA6eF23c4AA9be7d952E46f5C5b/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlockHipo", + "symbol": "HIPO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4Fe1b5fF3F640dA6eF23c4AA9be7d952E46f5C5b", + "status": "abandoned", + "id": "0x4Fe1b5fF3F640dA6eF23c4AA9be7d952E46f5C5b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4Fe1b5fF3F640dA6eF23c4AA9be7d952E46f5C5b/logo.png b/blockchains/ethereum/assets/0x4Fe1b5fF3F640dA6eF23c4AA9be7d952E46f5C5b/logo.png new file mode 100644 index 00000000..95958fb3 Binary files /dev/null and b/blockchains/ethereum/assets/0x4Fe1b5fF3F640dA6eF23c4AA9be7d952E46f5C5b/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Fe327c5a809fA721D47b80C5038A0b393E61305/info.json b/blockchains/ethereum/assets/0x4Fe327c5a809fA721D47b80C5038A0b393E61305/info.json new file mode 100644 index 00000000..6b3c5e63 --- /dev/null +++ b/blockchains/ethereum/assets/0x4Fe327c5a809fA721D47b80C5038A0b393E61305/info.json @@ -0,0 +1,11 @@ +{ + "name": "IOTW", + "symbol": "IOTW", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4Fe327c5a809fA721D47b80C5038A0b393E61305", + "status": "abandoned", + "id": "0x4Fe327c5a809fA721D47b80C5038A0b393E61305" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4Fe327c5a809fA721D47b80C5038A0b393E61305/logo.png b/blockchains/ethereum/assets/0x4Fe327c5a809fA721D47b80C5038A0b393E61305/logo.png new file mode 100644 index 00000000..3072cf4d Binary files /dev/null and b/blockchains/ethereum/assets/0x4Fe327c5a809fA721D47b80C5038A0b393E61305/logo.png differ diff --git a/blockchains/ethereum/assets/0x4a1DB1005CBC5684AA51E7A4EeE06db0298E70f6/info.json b/blockchains/ethereum/assets/0x4a1DB1005CBC5684AA51E7A4EeE06db0298E70f6/info.json new file mode 100644 index 00000000..603c947f --- /dev/null +++ b/blockchains/ethereum/assets/0x4a1DB1005CBC5684AA51E7A4EeE06db0298E70f6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short LINK-DAI 3x v2", + "symbol": "dsLINK3x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4a1DB1005CBC5684AA51E7A4EeE06db0298E70f6", + "status": "abandoned", + "id": "0x4a1DB1005CBC5684AA51E7A4EeE06db0298E70f6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4a1DB1005CBC5684AA51E7A4EeE06db0298E70f6/logo.png b/blockchains/ethereum/assets/0x4a1DB1005CBC5684AA51E7A4EeE06db0298E70f6/logo.png new file mode 100644 index 00000000..525be5b2 Binary files /dev/null and b/blockchains/ethereum/assets/0x4a1DB1005CBC5684AA51E7A4EeE06db0298E70f6/logo.png differ diff --git a/blockchains/ethereum/assets/0x4a220E6096B25EADb88358cb44068A3248254675/info.json b/blockchains/ethereum/assets/0x4a220E6096B25EADb88358cb44068A3248254675/info.json new file mode 100644 index 00000000..2e236199 --- /dev/null +++ b/blockchains/ethereum/assets/0x4a220E6096B25EADb88358cb44068A3248254675/info.json @@ -0,0 +1,45 @@ +{ + "name": "Quant", + "website": "https://quant.network", + "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.", + "explorer": "https://etherscan.io/token/0x4a220E6096B25EADb88358cb44068A3248254675", + "type": "ERC20", + "symbol": "QNT", + "decimals": 18, + "status": "active", + "id": "0x4a220E6096B25EADb88358cb44068A3248254675", + "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/ethereum/assets/0x4a220E6096B25EADb88358cb44068A3248254675/logo.png b/blockchains/ethereum/assets/0x4a220E6096B25EADb88358cb44068A3248254675/logo.png new file mode 100644 index 00000000..36e2a63d Binary files /dev/null and b/blockchains/ethereum/assets/0x4a220E6096B25EADb88358cb44068A3248254675/logo.png differ diff --git a/blockchains/ethereum/assets/0x4a48A334906f1A323628EE3EEc33E8Cce7bd2cFc/info.json b/blockchains/ethereum/assets/0x4a48A334906f1A323628EE3EEc33E8Cce7bd2cFc/info.json new file mode 100644 index 00000000..792ac892 --- /dev/null +++ b/blockchains/ethereum/assets/0x4a48A334906f1A323628EE3EEc33E8Cce7bd2cFc/info.json @@ -0,0 +1,11 @@ +{ + "name": "MularPay", + "symbol": "MP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4a48A334906f1A323628EE3EEc33E8Cce7bd2cFc", + "status": "abandoned", + "id": "0x4a48A334906f1A323628EE3EEc33E8Cce7bd2cFc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4a48A334906f1A323628EE3EEc33E8Cce7bd2cFc/logo.png b/blockchains/ethereum/assets/0x4a48A334906f1A323628EE3EEc33E8Cce7bd2cFc/logo.png new file mode 100644 index 00000000..63cec297 Binary files /dev/null and b/blockchains/ethereum/assets/0x4a48A334906f1A323628EE3EEc33E8Cce7bd2cFc/logo.png differ diff --git a/blockchains/ethereum/assets/0x4a527d8fc13C5203AB24BA0944F4Cb14658D1Db6/info.json b/blockchains/ethereum/assets/0x4a527d8fc13C5203AB24BA0944F4Cb14658D1Db6/info.json new file mode 100644 index 00000000..034ea208 --- /dev/null +++ b/blockchains/ethereum/assets/0x4a527d8fc13C5203AB24BA0944F4Cb14658D1Db6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Morpheus Infrastructure Token", + "symbol": "MITx", + "type": "ERC20", + "decimals": 18, + "description": "We empower you to develop, deploy, and integrate applications on blockchain technology to solve real-life problems.", + "website": "https://morpheuslabs.io/", + "explorer": "https://etherscan.io/token/0x4a527d8fc13C5203AB24BA0944F4Cb14658D1Db6", + "status": "active", + "id": "0x4a527d8fc13C5203AB24BA0944F4Cb14658D1Db6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4a527d8fc13C5203AB24BA0944F4Cb14658D1Db6/logo.png b/blockchains/ethereum/assets/0x4a527d8fc13C5203AB24BA0944F4Cb14658D1Db6/logo.png new file mode 100644 index 00000000..7c1afc65 Binary files /dev/null and b/blockchains/ethereum/assets/0x4a527d8fc13C5203AB24BA0944F4Cb14658D1Db6/logo.png differ diff --git a/blockchains/ethereum/assets/0x4a536c1cE7ad7F6e8D2E59135E17AEF5eF4dD4E6/info.json b/blockchains/ethereum/assets/0x4a536c1cE7ad7F6e8D2E59135E17AEF5eF4dD4E6/info.json new file mode 100644 index 00000000..0b47b2f6 --- /dev/null +++ b/blockchains/ethereum/assets/0x4a536c1cE7ad7F6e8D2E59135E17AEF5eF4dD4E6/info.json @@ -0,0 +1,11 @@ +{ + "name": "GECoin", + "symbol": "GEC", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4a536c1cE7ad7F6e8D2E59135E17AEF5eF4dD4E6", + "status": "abandoned", + "id": "0x4a536c1cE7ad7F6e8D2E59135E17AEF5eF4dD4E6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4a536c1cE7ad7F6e8D2E59135E17AEF5eF4dD4E6/logo.png b/blockchains/ethereum/assets/0x4a536c1cE7ad7F6e8D2E59135E17AEF5eF4dD4E6/logo.png new file mode 100644 index 00000000..bb92a0ad Binary files /dev/null and b/blockchains/ethereum/assets/0x4a536c1cE7ad7F6e8D2E59135E17AEF5eF4dD4E6/logo.png differ diff --git a/blockchains/ethereum/assets/0x4a57E687b9126435a9B19E4A802113e266AdeBde/info.json b/blockchains/ethereum/assets/0x4a57E687b9126435a9B19E4A802113e266AdeBde/info.json new file mode 100644 index 00000000..ebc9ff9c --- /dev/null +++ b/blockchains/ethereum/assets/0x4a57E687b9126435a9B19E4A802113e266AdeBde/info.json @@ -0,0 +1,11 @@ +{ + "name": "Flexacoin", + "symbol": "FXC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://flexacoin.org", + "explorer": "https://etherscan.io/token/0x4a57E687b9126435a9B19E4A802113e266AdeBde", + "status": "abandoned", + "id": "0x4a57E687b9126435a9B19E4A802113e266AdeBde" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4a57E687b9126435a9B19E4A802113e266AdeBde/logo.png b/blockchains/ethereum/assets/0x4a57E687b9126435a9B19E4A802113e266AdeBde/logo.png new file mode 100644 index 00000000..e81ff306 Binary files /dev/null and b/blockchains/ethereum/assets/0x4a57E687b9126435a9B19E4A802113e266AdeBde/logo.png differ diff --git a/blockchains/ethereum/assets/0x4a6058666cf1057eaC3CD3A5a614620547559fc9/info.json b/blockchains/ethereum/assets/0x4a6058666cf1057eaC3CD3A5a614620547559fc9/info.json new file mode 100644 index 00000000..7828476f --- /dev/null +++ b/blockchains/ethereum/assets/0x4a6058666cf1057eaC3CD3A5a614620547559fc9/info.json @@ -0,0 +1,11 @@ +{ + "name": "BrickblockToken", + "symbol": "BBK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://brickblock.io/", + "explorer": "https://etherscan.io/token/0x4a6058666cf1057eaC3CD3A5a614620547559fc9", + "status": "abandoned", + "id": "0x4a6058666cf1057eaC3CD3A5a614620547559fc9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4a6058666cf1057eaC3CD3A5a614620547559fc9/logo.png b/blockchains/ethereum/assets/0x4a6058666cf1057eaC3CD3A5a614620547559fc9/logo.png new file mode 100644 index 00000000..34d81736 Binary files /dev/null and b/blockchains/ethereum/assets/0x4a6058666cf1057eaC3CD3A5a614620547559fc9/logo.png differ diff --git a/blockchains/ethereum/assets/0x4a615bB7166210CCe20E6642a6f8Fb5d4D044496/info.json b/blockchains/ethereum/assets/0x4a615bB7166210CCe20E6642a6f8Fb5d4D044496/info.json new file mode 100644 index 00000000..1f2cad21 --- /dev/null +++ b/blockchains/ethereum/assets/0x4a615bB7166210CCe20E6642a6f8Fb5d4D044496/info.json @@ -0,0 +1,49 @@ +{ + "name": "NAOS Finance", + "website": "https://naos.finance/", + "description": "A DeFi lending protocol allowing lenders and SME borrowers to facilitate permissionless and borderless loaning/borrowing transactions", + "explorer": "https://etherscan.io/token/0x4a615bB7166210CCe20E6642a6f8Fb5d4D044496", + "type": "ERC20", + "symbol": "NAOS", + "decimals": 18, + "status": "active", + "id": "0x4a615bB7166210CCe20E6642a6f8Fb5d4D044496", + "links": [ + { + "name": "x", + "url": "https://x.com/naos_finance" + }, + { + "name": "github", + "url": "https://github.com/NAOS-Finance" + }, + { + "name": "telegram", + "url": "https://t.me/naos_finance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/rRaPwCVTaA" + }, + { + "name": "medium", + "url": "https://medium.com/naos-finance" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCPu4TKw6uQaKFuXAUtzdtMg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/naos-finance/" + }, + { + "name": "docs", + "url": "https://naosfinance.gitbook.io/naos-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/naos-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4a615bB7166210CCe20E6642a6f8Fb5d4D044496/logo.png b/blockchains/ethereum/assets/0x4a615bB7166210CCe20E6642a6f8Fb5d4D044496/logo.png new file mode 100644 index 00000000..1a5ed5ba Binary files /dev/null and b/blockchains/ethereum/assets/0x4a615bB7166210CCe20E6642a6f8Fb5d4D044496/logo.png differ diff --git a/blockchains/ethereum/assets/0x4a621d9f1b19296d1C0f87637b3A8D4978e9bf82/info.json b/blockchains/ethereum/assets/0x4a621d9f1b19296d1C0f87637b3A8D4978e9bf82/info.json new file mode 100644 index 00000000..1fd018a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x4a621d9f1b19296d1C0f87637b3A8D4978e9bf82/info.json @@ -0,0 +1,29 @@ +{ + "name": "CyberFM Radio", + "website": "https://cyber-fm.com", + "description": "Utility token to reward Radio listeners and is 1 of 2 in the DLPRO Dual Token Economy.", + "explorer": "https://etherscan.io/token/0x4a621d9f1b19296d1C0f87637b3A8D4978e9bf82", + "type": "ERC20", + "symbol": "CYFM", + "decimals": 18, + "status": "active", + "id": "0x4a621d9f1b19296d1C0f87637b3A8D4978e9bf82", + "links": [ + { + "name": "github", + "url": "https://github.com/CyberFM/" + }, + { + "name": "x", + "url": "https://x.com/CyberFM" + }, + { + "name": "telegram", + "url": "https://t.me/mftudotnet" + }, + { + "name": "facebook", + "url": "https://facebook.com/cyberfm" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4a621d9f1b19296d1C0f87637b3A8D4978e9bf82/logo.png b/blockchains/ethereum/assets/0x4a621d9f1b19296d1C0f87637b3A8D4978e9bf82/logo.png new file mode 100644 index 00000000..680f5c60 Binary files /dev/null and b/blockchains/ethereum/assets/0x4a621d9f1b19296d1C0f87637b3A8D4978e9bf82/logo.png differ diff --git a/blockchains/ethereum/assets/0x4a6AB9792e9f046C3AB22D8602450DE5186Be9A7/info.json b/blockchains/ethereum/assets/0x4a6AB9792e9f046C3AB22D8602450DE5186Be9A7/info.json new file mode 100644 index 00000000..b6352aac --- /dev/null +++ b/blockchains/ethereum/assets/0x4a6AB9792e9f046C3AB22D8602450DE5186Be9A7/info.json @@ -0,0 +1,11 @@ +{ + "name": "POLVEN", + "website": "https://polka.ventures/", + "description": "TPolka Ventures is a decentralized alternative investment fund that invests in DeFi, crypto, and blockchain projects that create value and solve issues. They provide seed and early-stage funding.", + "explorer": "https://etherscan.io/token/0x4a6ab9792e9f046c3ab22d8602450de5186be9a7", + "type": "ERC20", + "symbol": "POLVEN", + "decimals": 18, + "status": "active", + "id": "0x4a6AB9792e9f046C3AB22D8602450DE5186Be9A7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4a6AB9792e9f046C3AB22D8602450DE5186Be9A7/logo.png b/blockchains/ethereum/assets/0x4a6AB9792e9f046C3AB22D8602450DE5186Be9A7/logo.png new file mode 100644 index 00000000..2f49672e Binary files /dev/null and b/blockchains/ethereum/assets/0x4a6AB9792e9f046C3AB22D8602450DE5186Be9A7/logo.png differ diff --git a/blockchains/ethereum/assets/0x4a74Df6113E3d38d8e184273341Cb6BBb6885152/info.json b/blockchains/ethereum/assets/0x4a74Df6113E3d38d8e184273341Cb6BBb6885152/info.json new file mode 100644 index 00000000..06da9007 --- /dev/null +++ b/blockchains/ethereum/assets/0x4a74Df6113E3d38d8e184273341Cb6BBb6885152/info.json @@ -0,0 +1,11 @@ +{ + "name": "Leisure Resorts Coin", + "symbol": "LRC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4a74Df6113E3d38d8e184273341Cb6BBb6885152", + "status": "abandoned", + "id": "0x4a74Df6113E3d38d8e184273341Cb6BBb6885152" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4a74Df6113E3d38d8e184273341Cb6BBb6885152/logo.png b/blockchains/ethereum/assets/0x4a74Df6113E3d38d8e184273341Cb6BBb6885152/logo.png new file mode 100644 index 00000000..6809f7c7 Binary files /dev/null and b/blockchains/ethereum/assets/0x4a74Df6113E3d38d8e184273341Cb6BBb6885152/logo.png differ diff --git a/blockchains/ethereum/assets/0x4a9275953DBAd3fb7122240E2F666cfe22818805/info.json b/blockchains/ethereum/assets/0x4a9275953DBAd3fb7122240E2F666cfe22818805/info.json new file mode 100644 index 00000000..ccae16ff --- /dev/null +++ b/blockchains/ethereum/assets/0x4a9275953DBAd3fb7122240E2F666cfe22818805/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C559018", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4a9275953DBAd3fb7122240E2F666cfe22818805", + "status": "spam", + "id": "0x4a9275953DBAd3fb7122240E2F666cfe22818805" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4a9275953DBAd3fb7122240E2F666cfe22818805/logo.png b/blockchains/ethereum/assets/0x4a9275953DBAd3fb7122240E2F666cfe22818805/logo.png new file mode 100644 index 00000000..a9fe71d3 Binary files /dev/null and b/blockchains/ethereum/assets/0x4a9275953DBAd3fb7122240E2F666cfe22818805/logo.png differ diff --git a/blockchains/ethereum/assets/0x4aB524Df43beC3Cb130024C5196DB0915c61F40c/info.json b/blockchains/ethereum/assets/0x4aB524Df43beC3Cb130024C5196DB0915c61F40c/info.json new file mode 100644 index 00000000..8e5d8a5e --- /dev/null +++ b/blockchains/ethereum/assets/0x4aB524Df43beC3Cb130024C5196DB0915c61F40c/info.json @@ -0,0 +1,11 @@ +{ + "name": "POP Missions M", + "symbol": "POPM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4aB524Df43beC3Cb130024C5196DB0915c61F40c", + "status": "abandoned", + "id": "0x4aB524Df43beC3Cb130024C5196DB0915c61F40c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4aB524Df43beC3Cb130024C5196DB0915c61F40c/logo.png b/blockchains/ethereum/assets/0x4aB524Df43beC3Cb130024C5196DB0915c61F40c/logo.png new file mode 100644 index 00000000..5b88bc97 Binary files /dev/null and b/blockchains/ethereum/assets/0x4aB524Df43beC3Cb130024C5196DB0915c61F40c/logo.png differ diff --git a/blockchains/ethereum/assets/0x4aF328C52921706dCB739F25786210499169AFe6/info.json b/blockchains/ethereum/assets/0x4aF328C52921706dCB739F25786210499169AFe6/info.json new file mode 100644 index 00000000..cde7157c --- /dev/null +++ b/blockchains/ethereum/assets/0x4aF328C52921706dCB739F25786210499169AFe6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sakura Bloom", + "symbol": "SKB", + "type": "ERC20", + "decimals": 8, + "description": "This is a cryptocurrency given to customers over Internet SNS sites and event attendees in the real world as a present. SKB is a token used for various services, including Bitcoin exchange, direct cash exchange, making purchases, etc.", + "website": "https://www.skb-coin.jp/en/", + "explorer": "https://etherscan.io/token/0x4aF328C52921706dCB739F25786210499169AFe6", + "status": "active", + "id": "0x4aF328C52921706dCB739F25786210499169AFe6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4aF328C52921706dCB739F25786210499169AFe6/logo.png b/blockchains/ethereum/assets/0x4aF328C52921706dCB739F25786210499169AFe6/logo.png new file mode 100755 index 00000000..381446d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x4aF328C52921706dCB739F25786210499169AFe6/logo.png differ diff --git a/blockchains/ethereum/assets/0x4ac6fba17a3961A792E63b5E2d4983C66b79d2Da/info.json b/blockchains/ethereum/assets/0x4ac6fba17a3961A792E63b5E2d4983C66b79d2Da/info.json new file mode 100644 index 00000000..021df824 --- /dev/null +++ b/blockchains/ethereum/assets/0x4ac6fba17a3961A792E63b5E2d4983C66b79d2Da/info.json @@ -0,0 +1,11 @@ +{ + "name": "NewEra Token", + "symbol": "NET", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4ac6fba17a3961A792E63b5E2d4983C66b79d2Da", + "status": "abandoned", + "id": "0x4ac6fba17a3961A792E63b5E2d4983C66b79d2Da" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4ac6fba17a3961A792E63b5E2d4983C66b79d2Da/logo.png b/blockchains/ethereum/assets/0x4ac6fba17a3961A792E63b5E2d4983C66b79d2Da/logo.png new file mode 100755 index 00000000..76aa5785 Binary files /dev/null and b/blockchains/ethereum/assets/0x4ac6fba17a3961A792E63b5E2d4983C66b79d2Da/logo.png differ diff --git a/blockchains/ethereum/assets/0x4acF024919217c33E2FF5A24AD780b1709eB3361/info.json b/blockchains/ethereum/assets/0x4acF024919217c33E2FF5A24AD780b1709eB3361/info.json new file mode 100644 index 00000000..2ec994b3 --- /dev/null +++ b/blockchains/ethereum/assets/0x4acF024919217c33E2FF5A24AD780b1709eB3361/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zemp", + "symbol": "ZEMP", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4acF024919217c33E2FF5A24AD780b1709eB3361", + "status": "abandoned", + "id": "0x4acF024919217c33E2FF5A24AD780b1709eB3361" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4acF024919217c33E2FF5A24AD780b1709eB3361/logo.png b/blockchains/ethereum/assets/0x4acF024919217c33E2FF5A24AD780b1709eB3361/logo.png new file mode 100644 index 00000000..86f7867b Binary files /dev/null and b/blockchains/ethereum/assets/0x4acF024919217c33E2FF5A24AD780b1709eB3361/logo.png differ diff --git a/blockchains/ethereum/assets/0x4ae63e92ddA9072Fc47bfffD623737Fc736533F9/info.json b/blockchains/ethereum/assets/0x4ae63e92ddA9072Fc47bfffD623737Fc736533F9/info.json new file mode 100644 index 00000000..7e097760 --- /dev/null +++ b/blockchains/ethereum/assets/0x4ae63e92ddA9072Fc47bfffD623737Fc736533F9/info.json @@ -0,0 +1,21 @@ +{ + "name": "CentFi Bank Token", + "website": "https://centfi.co", + "description": "A Dececentralized Smart Contract that focuses the power of Savings. Dividend earnings for every Savings and stakes.", + "explorer": "https://etherscan.io/token/0x4ae63e92ddA9072Fc47bfffD623737Fc736533F9", + "type": "ERC20", + "symbol": "CFIX", + "decimals": 8, + "status": "active", + "id": "0x4ae63e92ddA9072Fc47bfffD623737Fc736533F9", + "links": [ + { + "name": "github", + "url": "https://github.com/centfibank" + }, + { + "name": "whitepaper", + "url": "https://gofile.io/d/j0TTOA" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4ae63e92ddA9072Fc47bfffD623737Fc736533F9/logo.png b/blockchains/ethereum/assets/0x4ae63e92ddA9072Fc47bfffD623737Fc736533F9/logo.png new file mode 100644 index 00000000..addd3b46 Binary files /dev/null and b/blockchains/ethereum/assets/0x4ae63e92ddA9072Fc47bfffD623737Fc736533F9/logo.png differ diff --git a/blockchains/ethereum/assets/0x4b0516FED07e12a6a76a8cBf6b9A0ecdC808206e/info.json b/blockchains/ethereum/assets/0x4b0516FED07e12a6a76a8cBf6b9A0ecdC808206e/info.json new file mode 100644 index 00000000..8594197d --- /dev/null +++ b/blockchains/ethereum/assets/0x4b0516FED07e12a6a76a8cBf6b9A0ecdC808206e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Madaza Option", + "symbol": " MADAZA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4b0516FED07e12a6a76a8cBf6b9A0ecdC808206e", + "status": "abandoned", + "id": "0x4b0516FED07e12a6a76a8cBf6b9A0ecdC808206e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4b0516FED07e12a6a76a8cBf6b9A0ecdC808206e/logo.png b/blockchains/ethereum/assets/0x4b0516FED07e12a6a76a8cBf6b9A0ecdC808206e/logo.png new file mode 100644 index 00000000..730dc9b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x4b0516FED07e12a6a76a8cBf6b9A0ecdC808206e/logo.png differ diff --git a/blockchains/ethereum/assets/0x4b317864a05c91225ab8f401EC7be0AeB87e9c12/info.json b/blockchains/ethereum/assets/0x4b317864a05c91225ab8f401EC7be0AeB87e9c12/info.json new file mode 100644 index 00000000..9a7325ed --- /dev/null +++ b/blockchains/ethereum/assets/0x4b317864a05c91225ab8f401EC7be0AeB87e9c12/info.json @@ -0,0 +1,11 @@ +{ + "name": "BingoCoin", + "symbol": "BOC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4b317864a05c91225ab8f401EC7be0AeB87e9c12", + "status": "abandoned", + "id": "0x4b317864a05c91225ab8f401EC7be0AeB87e9c12" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4b317864a05c91225ab8f401EC7be0AeB87e9c12/logo.png b/blockchains/ethereum/assets/0x4b317864a05c91225ab8f401EC7be0AeB87e9c12/logo.png new file mode 100644 index 00000000..4b16a0b5 Binary files /dev/null and b/blockchains/ethereum/assets/0x4b317864a05c91225ab8f401EC7be0AeB87e9c12/logo.png differ diff --git a/blockchains/ethereum/assets/0x4b35e0AB998Ebe8414871c13cf778F9D0Bbdf609/info.json b/blockchains/ethereum/assets/0x4b35e0AB998Ebe8414871c13cf778F9D0Bbdf609/info.json new file mode 100644 index 00000000..1f4eb8c6 --- /dev/null +++ b/blockchains/ethereum/assets/0x4b35e0AB998Ebe8414871c13cf778F9D0Bbdf609/info.json @@ -0,0 +1,11 @@ +{ + "name": "SWAP", + "symbol": "SWP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4b35e0AB998Ebe8414871c13cf778F9D0Bbdf609", + "status": "abandoned", + "id": "0x4b35e0AB998Ebe8414871c13cf778F9D0Bbdf609" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4b35e0AB998Ebe8414871c13cf778F9D0Bbdf609/logo.png b/blockchains/ethereum/assets/0x4b35e0AB998Ebe8414871c13cf778F9D0Bbdf609/logo.png new file mode 100644 index 00000000..15c811d5 Binary files /dev/null and b/blockchains/ethereum/assets/0x4b35e0AB998Ebe8414871c13cf778F9D0Bbdf609/logo.png differ diff --git a/blockchains/ethereum/assets/0x4b46636aFCb2BC4DD20C3D0424c4E1e6D296Fabe/info.json b/blockchains/ethereum/assets/0x4b46636aFCb2BC4DD20C3D0424c4E1e6D296Fabe/info.json new file mode 100644 index 00000000..ef4ba635 --- /dev/null +++ b/blockchains/ethereum/assets/0x4b46636aFCb2BC4DD20C3D0424c4E1e6D296Fabe/info.json @@ -0,0 +1,11 @@ +{ + "name": "ExtraCurio", + "symbol": "CURIO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4b46636aFCb2BC4DD20C3D0424c4E1e6D296Fabe", + "status": "spam", + "id": "0x4b46636aFCb2BC4DD20C3D0424c4E1e6D296Fabe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4b46636aFCb2BC4DD20C3D0424c4E1e6D296Fabe/logo.png b/blockchains/ethereum/assets/0x4b46636aFCb2BC4DD20C3D0424c4E1e6D296Fabe/logo.png new file mode 100644 index 00000000..e97b316b Binary files /dev/null and b/blockchains/ethereum/assets/0x4b46636aFCb2BC4DD20C3D0424c4E1e6D296Fabe/logo.png differ diff --git a/blockchains/ethereum/assets/0x4b520c812E8430659FC9f12f6d0c39026C83588D/info.json b/blockchains/ethereum/assets/0x4b520c812E8430659FC9f12f6d0c39026C83588D/info.json new file mode 100644 index 00000000..63e788ca --- /dev/null +++ b/blockchains/ethereum/assets/0x4b520c812E8430659FC9f12f6d0c39026C83588D/info.json @@ -0,0 +1,32 @@ +{ + "name": "Decentral Games", + "website": "https://decentral.games", + "description": "Decentral Games is a metaverse-native gaming DAO building play-to-earn poker. DG Hodlers vote on treasury management, economic policy, and development to grow and strengthen the Decentral Games ecosystem.", + "explorer": "https://etherscan.io/token/0x4b520c812e8430659fc9f12f6d0c39026c83588d", + "type": "ERC20", + "symbol": "DG", + "decimals": 18, + "status": "active", + "id": "0x4b520c812E8430659FC9f12f6d0c39026C83588D", + "tags": [ + "gamefi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/decentralgames" + }, + { + "name": "github", + "url": "https://github.com/decentralgames" + }, + { + "name": "telegram", + "url": "https://t.me/decentralgames" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/decentral-games-new/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4b520c812E8430659FC9f12f6d0c39026C83588D/logo.png b/blockchains/ethereum/assets/0x4b520c812E8430659FC9f12f6d0c39026C83588D/logo.png new file mode 100644 index 00000000..b1c58d2c Binary files /dev/null and b/blockchains/ethereum/assets/0x4b520c812E8430659FC9f12f6d0c39026C83588D/logo.png differ diff --git a/blockchains/ethereum/assets/0x4b5889a61bACf0EC18472EA4861c2bf0Ae61e2E1/info.json b/blockchains/ethereum/assets/0x4b5889a61bACf0EC18472EA4861c2bf0Ae61e2E1/info.json new file mode 100644 index 00000000..7748f1f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x4b5889a61bACf0EC18472EA4861c2bf0Ae61e2E1/info.json @@ -0,0 +1,11 @@ +{ + "name": "United States of America", + "symbol": "USA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4b5889a61bACf0EC18472EA4861c2bf0Ae61e2E1", + "status": "abandoned", + "id": "0x4b5889a61bACf0EC18472EA4861c2bf0Ae61e2E1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4b5889a61bACf0EC18472EA4861c2bf0Ae61e2E1/logo.png b/blockchains/ethereum/assets/0x4b5889a61bACf0EC18472EA4861c2bf0Ae61e2E1/logo.png new file mode 100644 index 00000000..5622f7e0 Binary files /dev/null and b/blockchains/ethereum/assets/0x4b5889a61bACf0EC18472EA4861c2bf0Ae61e2E1/logo.png differ diff --git a/blockchains/ethereum/assets/0x4b7265D153886a7Dc717e815862AcDE6FF7B5bc8/info.json b/blockchains/ethereum/assets/0x4b7265D153886a7Dc717e815862AcDE6FF7B5bc8/info.json new file mode 100644 index 00000000..14dc8d80 --- /dev/null +++ b/blockchains/ethereum/assets/0x4b7265D153886a7Dc717e815862AcDE6FF7B5bc8/info.json @@ -0,0 +1,11 @@ +{ + "name": "DENCHCOIN", + "symbol": "DENCH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://dench.io/", + "explorer": "https://etherscan.io/token/0x4b7265D153886a7Dc717e815862AcDE6FF7B5bc8", + "status": "abandoned", + "id": "0x4b7265D153886a7Dc717e815862AcDE6FF7B5bc8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4b7265D153886a7Dc717e815862AcDE6FF7B5bc8/logo.png b/blockchains/ethereum/assets/0x4b7265D153886a7Dc717e815862AcDE6FF7B5bc8/logo.png new file mode 100644 index 00000000..854cbf06 Binary files /dev/null and b/blockchains/ethereum/assets/0x4b7265D153886a7Dc717e815862AcDE6FF7B5bc8/logo.png differ diff --git a/blockchains/ethereum/assets/0x4b7DfAe2567181E54776337C840e142ACb42AA1F/info.json b/blockchains/ethereum/assets/0x4b7DfAe2567181E54776337C840e142ACb42AA1F/info.json new file mode 100644 index 00000000..2d2bfd4e --- /dev/null +++ b/blockchains/ethereum/assets/0x4b7DfAe2567181E54776337C840e142ACb42AA1F/info.json @@ -0,0 +1,11 @@ +{ + "name": "GOD KIMCHI", + "website": "https://kimchi.finance/", + "description": "yield farming token with a halving function", + "explorer": "https://etherscan.io/token/0x4b7DfAe2567181E54776337C840e142ACb42AA1F", + "type": "ERC20", + "symbol": "gKIMCHI", + "decimals": 18, + "status": "active", + "id": "0x4b7DfAe2567181E54776337C840e142ACb42AA1F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4b7DfAe2567181E54776337C840e142ACb42AA1F/logo.png b/blockchains/ethereum/assets/0x4b7DfAe2567181E54776337C840e142ACb42AA1F/logo.png new file mode 100644 index 00000000..d7f98219 Binary files /dev/null and b/blockchains/ethereum/assets/0x4b7DfAe2567181E54776337C840e142ACb42AA1F/logo.png differ diff --git a/blockchains/ethereum/assets/0x4b7aD3a56810032782Afce12d7d27122bDb96efF/info.json b/blockchains/ethereum/assets/0x4b7aD3a56810032782Afce12d7d27122bDb96efF/info.json new file mode 100644 index 00000000..bd40f48b --- /dev/null +++ b/blockchains/ethereum/assets/0x4b7aD3a56810032782Afce12d7d27122bDb96efF/info.json @@ -0,0 +1,19 @@ +{ + "name": "Sparkle Loyalty", + "website": "https://sparkleloyalty.io/", + "description": "Sparkle is a time-based rewards system designed to allow equal participation amongst all users within Sparkle's ecosystem.", + "coinmarketcap": "https://coinmarketcap.com/currencies/sparkle-loyalty/", + "coingecko": "https://www.coingecko.com/en/coins/sparkle", + "explorer": "https://etherscan.io/token/0x4b7aD3a56810032782Afce12d7d27122bDb96efF", + "type": "ERC20", + "symbol": "SPRKL", + "decimals": 8, + "status": "active", + "id": "0x4b7aD3a56810032782Afce12d7d27122bDb96efF", + "links": [ + { + "name": "github", + "url": "https://github.com/Sparkleloyalty" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4b7aD3a56810032782Afce12d7d27122bDb96efF/logo.png b/blockchains/ethereum/assets/0x4b7aD3a56810032782Afce12d7d27122bDb96efF/logo.png new file mode 100644 index 00000000..a839cc44 Binary files /dev/null and b/blockchains/ethereum/assets/0x4b7aD3a56810032782Afce12d7d27122bDb96efF/logo.png differ diff --git a/blockchains/ethereum/assets/0x4b94c8567763654101F690Cf4d54957206383b75/info.json b/blockchains/ethereum/assets/0x4b94c8567763654101F690Cf4d54957206383b75/info.json new file mode 100644 index 00000000..efd1e625 --- /dev/null +++ b/blockchains/ethereum/assets/0x4b94c8567763654101F690Cf4d54957206383b75/info.json @@ -0,0 +1,11 @@ +{ + "name": "NEOWORLD CASH", + "symbol": "NASH", + "type": "ERC20", + "decimals": 18, + "description": "NeoWorld is a multiplayer sandbox game running on the blockchain and a 3D virtual world created by users all over the globe.", + "website": "https://neoworld.io/", + "explorer": "https://etherscan.io/token/0x4b94c8567763654101F690Cf4d54957206383b75", + "status": "active", + "id": "0x4b94c8567763654101F690Cf4d54957206383b75" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4b94c8567763654101F690Cf4d54957206383b75/logo.png b/blockchains/ethereum/assets/0x4b94c8567763654101F690Cf4d54957206383b75/logo.png new file mode 100644 index 00000000..ccca5dd4 Binary files /dev/null and b/blockchains/ethereum/assets/0x4b94c8567763654101F690Cf4d54957206383b75/logo.png differ diff --git a/blockchains/ethereum/assets/0x4bB98D82fD0058E1cE97B71Dc5c54b6d98c8C531/info.json b/blockchains/ethereum/assets/0x4bB98D82fD0058E1cE97B71Dc5c54b6d98c8C531/info.json new file mode 100644 index 00000000..722f920a --- /dev/null +++ b/blockchains/ethereum/assets/0x4bB98D82fD0058E1cE97B71Dc5c54b6d98c8C531/info.json @@ -0,0 +1,11 @@ +{ + "name": "XENIACOIN", + "symbol": "XEN", + "type": "ERC20", + "decimals": 13, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4bB98D82fD0058E1cE97B71Dc5c54b6d98c8C531", + "status": "abandoned", + "id": "0x4bB98D82fD0058E1cE97B71Dc5c54b6d98c8C531" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4bB98D82fD0058E1cE97B71Dc5c54b6d98c8C531/logo.png b/blockchains/ethereum/assets/0x4bB98D82fD0058E1cE97B71Dc5c54b6d98c8C531/logo.png new file mode 100755 index 00000000..0d3b71ca Binary files /dev/null and b/blockchains/ethereum/assets/0x4bB98D82fD0058E1cE97B71Dc5c54b6d98c8C531/logo.png differ diff --git a/blockchains/ethereum/assets/0x4bD70556ae3F8a6eC6C4080A0C327B24325438f3/info.json b/blockchains/ethereum/assets/0x4bD70556ae3F8a6eC6C4080A0C327B24325438f3/info.json new file mode 100644 index 00000000..9d8d2485 --- /dev/null +++ b/blockchains/ethereum/assets/0x4bD70556ae3F8a6eC6C4080A0C327B24325438f3/info.json @@ -0,0 +1,25 @@ +{ + "name": "Hxro Token", + "website": "https://hxro.io/", + "description": "Hxro is a cryptocurrency exchange platform that offers perpetual, time-based digital derivatives markets. Hxro offers a way to interact with the market.", + "explorer": "https://etherscan.io/token/0x4bD70556ae3F8a6eC6C4080A0C327B24325438f3", + "type": "ERC20", + "symbol": "HXRO", + "decimals": 18, + "status": "active", + "id": "0x4bD70556ae3F8a6eC6C4080A0C327B24325438f3", + "links": [ + { + "name": "x", + "url": "https://x.com/RealHxro" + }, + { + "name": "telegram", + "url": "https://t.me/TheRealHxro" + }, + { + "name": "medium", + "url": "https://medium.com/@hxromedia" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4bD70556ae3F8a6eC6C4080A0C327B24325438f3/logo.png b/blockchains/ethereum/assets/0x4bD70556ae3F8a6eC6C4080A0C327B24325438f3/logo.png new file mode 100644 index 00000000..0d48e4e9 Binary files /dev/null and b/blockchains/ethereum/assets/0x4bD70556ae3F8a6eC6C4080A0C327B24325438f3/logo.png differ diff --git a/blockchains/ethereum/assets/0x4bE28e4b7dd6A8d5a4Fa059382175Dad781B51E8/info.json b/blockchains/ethereum/assets/0x4bE28e4b7dd6A8d5a4Fa059382175Dad781B51E8/info.json new file mode 100644 index 00000000..1e985cb5 --- /dev/null +++ b/blockchains/ethereum/assets/0x4bE28e4b7dd6A8d5a4Fa059382175Dad781B51E8/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrainingToken", + "symbol": "TRT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4bE28e4b7dd6A8d5a4Fa059382175Dad781B51E8", + "status": "abandoned", + "id": "0x4bE28e4b7dd6A8d5a4Fa059382175Dad781B51E8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4bE28e4b7dd6A8d5a4Fa059382175Dad781B51E8/logo.png b/blockchains/ethereum/assets/0x4bE28e4b7dd6A8d5a4Fa059382175Dad781B51E8/logo.png new file mode 100644 index 00000000..de305dfb Binary files /dev/null and b/blockchains/ethereum/assets/0x4bE28e4b7dd6A8d5a4Fa059382175Dad781B51E8/logo.png differ diff --git a/blockchains/ethereum/assets/0x4bFe3B97929FA86e4955A4afB474FF2962848Af3/info.json b/blockchains/ethereum/assets/0x4bFe3B97929FA86e4955A4afB474FF2962848Af3/info.json new file mode 100644 index 00000000..40f17ac4 --- /dev/null +++ b/blockchains/ethereum/assets/0x4bFe3B97929FA86e4955A4afB474FF2962848Af3/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R885760", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4bFe3B97929FA86e4955A4afB474FF2962848Af3", + "status": "abandoned", + "id": "0x4bFe3B97929FA86e4955A4afB474FF2962848Af3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4bFe3B97929FA86e4955A4afB474FF2962848Af3/logo.png b/blockchains/ethereum/assets/0x4bFe3B97929FA86e4955A4afB474FF2962848Af3/logo.png new file mode 100644 index 00000000..65c6d9ab Binary files /dev/null and b/blockchains/ethereum/assets/0x4bFe3B97929FA86e4955A4afB474FF2962848Af3/logo.png differ diff --git a/blockchains/ethereum/assets/0x4be40bc9681D0A7C24A99b4c92F85B9053Fc2A45/info.json b/blockchains/ethereum/assets/0x4be40bc9681D0A7C24A99b4c92F85B9053Fc2A45/info.json new file mode 100644 index 00000000..a9923581 --- /dev/null +++ b/blockchains/ethereum/assets/0x4be40bc9681D0A7C24A99b4c92F85B9053Fc2A45/info.json @@ -0,0 +1,11 @@ +{ + "name": "DiFy.Finance", + "website": "https://dify.finance", + "description": "The next generation of Yearn Finance FORK is here now- DiFy Finance . DeFi moves fast. DiFy Finance moves faster.", + "explorer": "https://etherscan.io/token/0x4be40bc9681D0A7C24A99b4c92F85B9053Fc2A45", + "type": "ERC20", + "symbol": "YFIII", + "decimals": 18, + "status": "active", + "id": "0x4be40bc9681D0A7C24A99b4c92F85B9053Fc2A45" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4be40bc9681D0A7C24A99b4c92F85B9053Fc2A45/logo.png b/blockchains/ethereum/assets/0x4be40bc9681D0A7C24A99b4c92F85B9053Fc2A45/logo.png new file mode 100644 index 00000000..75f1e83b Binary files /dev/null and b/blockchains/ethereum/assets/0x4be40bc9681D0A7C24A99b4c92F85B9053Fc2A45/logo.png differ diff --git a/blockchains/ethereum/assets/0x4c11249814f11b9346808179Cf06e71ac328c1b5/info.json b/blockchains/ethereum/assets/0x4c11249814f11b9346808179Cf06e71ac328c1b5/info.json new file mode 100644 index 00000000..bdcf42e5 --- /dev/null +++ b/blockchains/ethereum/assets/0x4c11249814f11b9346808179Cf06e71ac328c1b5/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://etherscan.io/token/0x4c11249814f11b9346808179cf06e71ac328c1b5", + "type": "ERC20", + "symbol": "ORAI", + "decimals": 18, + "status": "active", + "id": "0x4c11249814f11b9346808179Cf06e71ac328c1b5", + "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/ethereum/assets/0x4c11249814f11b9346808179Cf06e71ac328c1b5/logo.png b/blockchains/ethereum/assets/0x4c11249814f11b9346808179Cf06e71ac328c1b5/logo.png new file mode 100644 index 00000000..2b7b599e Binary files /dev/null and b/blockchains/ethereum/assets/0x4c11249814f11b9346808179Cf06e71ac328c1b5/logo.png differ diff --git a/blockchains/ethereum/assets/0x4c14114C107D6374EC31981F5F6Cc27A13e22F9a/info.json b/blockchains/ethereum/assets/0x4c14114C107D6374EC31981F5F6Cc27A13e22F9a/info.json new file mode 100644 index 00000000..d296083c --- /dev/null +++ b/blockchains/ethereum/assets/0x4c14114C107D6374EC31981F5F6Cc27A13e22F9a/info.json @@ -0,0 +1,11 @@ +{ + "name": "SToken", + "symbol": "STS", + "type": "ERC20", + "decimals": 18, + "description": "SToken (STS) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.sbankcapital.com", + "explorer": "https://etherscan.io/token/0x4c14114C107D6374EC31981F5F6Cc27A13e22F9a", + "status": "active", + "id": "0x4c14114C107D6374EC31981F5F6Cc27A13e22F9a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4c14114C107D6374EC31981F5F6Cc27A13e22F9a/logo.png b/blockchains/ethereum/assets/0x4c14114C107D6374EC31981F5F6Cc27A13e22F9a/logo.png new file mode 100644 index 00000000..c6283eb4 Binary files /dev/null and b/blockchains/ethereum/assets/0x4c14114C107D6374EC31981F5F6Cc27A13e22F9a/logo.png differ diff --git a/blockchains/ethereum/assets/0x4c1A8ba7D6Fe281ea01B3Cd69fcB6d82d5771996/info.json b/blockchains/ethereum/assets/0x4c1A8ba7D6Fe281ea01B3Cd69fcB6d82d5771996/info.json new file mode 100644 index 00000000..efae70bd --- /dev/null +++ b/blockchains/ethereum/assets/0x4c1A8ba7D6Fe281ea01B3Cd69fcB6d82d5771996/info.json @@ -0,0 +1,11 @@ +{ + "name": "游龙盾", + "symbol": "GDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4c1A8ba7D6Fe281ea01B3Cd69fcB6d82d5771996", + "status": "abandoned", + "id": "0x4c1A8ba7D6Fe281ea01B3Cd69fcB6d82d5771996" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4c1A8ba7D6Fe281ea01B3Cd69fcB6d82d5771996/logo.png b/blockchains/ethereum/assets/0x4c1A8ba7D6Fe281ea01B3Cd69fcB6d82d5771996/logo.png new file mode 100644 index 00000000..c02f2b62 Binary files /dev/null and b/blockchains/ethereum/assets/0x4c1A8ba7D6Fe281ea01B3Cd69fcB6d82d5771996/logo.png differ diff --git a/blockchains/ethereum/assets/0x4c1C4957D22D8F373aeD54d0853b090666F6F9De/info.json b/blockchains/ethereum/assets/0x4c1C4957D22D8F373aeD54d0853b090666F6F9De/info.json new file mode 100644 index 00000000..ac5f24cf --- /dev/null +++ b/blockchains/ethereum/assets/0x4c1C4957D22D8F373aeD54d0853b090666F6F9De/info.json @@ -0,0 +1,11 @@ +{ + "name": "Silverway", + "symbol": "SLV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://silverway.io", + "explorer": "https://etherscan.io/token/0x4c1C4957D22D8F373aeD54d0853b090666F6F9De", + "status": "abandoned", + "id": "0x4c1C4957D22D8F373aeD54d0853b090666F6F9De" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4c1C4957D22D8F373aeD54d0853b090666F6F9De/logo.png b/blockchains/ethereum/assets/0x4c1C4957D22D8F373aeD54d0853b090666F6F9De/logo.png new file mode 100644 index 00000000..48115560 Binary files /dev/null and b/blockchains/ethereum/assets/0x4c1C4957D22D8F373aeD54d0853b090666F6F9De/logo.png differ diff --git a/blockchains/ethereum/assets/0x4c327471C44B2dacD6E90525f9D629bd2e4f662C/info.json b/blockchains/ethereum/assets/0x4c327471C44B2dacD6E90525f9D629bd2e4f662C/info.json new file mode 100644 index 00000000..949ccc55 --- /dev/null +++ b/blockchains/ethereum/assets/0x4c327471C44B2dacD6E90525f9D629bd2e4f662C/info.json @@ -0,0 +1,11 @@ +{ + "name": "GHOST", + "symbol": "GHOST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.ghostbymcafee.com/", + "explorer": "https://etherscan.io/token/0x4c327471C44B2dacD6E90525f9D629bd2e4f662C", + "status": "abandoned", + "id": "0x4c327471C44B2dacD6E90525f9D629bd2e4f662C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4c327471C44B2dacD6E90525f9D629bd2e4f662C/logo.png b/blockchains/ethereum/assets/0x4c327471C44B2dacD6E90525f9D629bd2e4f662C/logo.png new file mode 100644 index 00000000..f21c85a8 Binary files /dev/null and b/blockchains/ethereum/assets/0x4c327471C44B2dacD6E90525f9D629bd2e4f662C/logo.png differ diff --git a/blockchains/ethereum/assets/0x4c382F8E09615AC86E08CE58266CC227e7d4D913/info.json b/blockchains/ethereum/assets/0x4c382F8E09615AC86E08CE58266CC227e7d4D913/info.json new file mode 100644 index 00000000..e72fb492 --- /dev/null +++ b/blockchains/ethereum/assets/0x4c382F8E09615AC86E08CE58266CC227e7d4D913/info.json @@ -0,0 +1,11 @@ +{ + "name": "Skrilla", + "symbol": "SKR", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4c382F8E09615AC86E08CE58266CC227e7d4D913", + "status": "abandoned", + "id": "0x4c382F8E09615AC86E08CE58266CC227e7d4D913" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4c382F8E09615AC86E08CE58266CC227e7d4D913/logo.png b/blockchains/ethereum/assets/0x4c382F8E09615AC86E08CE58266CC227e7d4D913/logo.png new file mode 100755 index 00000000..00a0e9ea Binary files /dev/null and b/blockchains/ethereum/assets/0x4c382F8E09615AC86E08CE58266CC227e7d4D913/logo.png differ diff --git a/blockchains/ethereum/assets/0x4c383bDCae52a6e1cb810C76C70d6f31A249eC9B/info.json b/blockchains/ethereum/assets/0x4c383bDCae52a6e1cb810C76C70d6f31A249eC9B/info.json new file mode 100644 index 00000000..98cdab19 --- /dev/null +++ b/blockchains/ethereum/assets/0x4c383bDCae52a6e1cb810C76C70d6f31A249eC9B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rusgas", + "symbol": "RGS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4c383bDCae52a6e1cb810C76C70d6f31A249eC9B", + "status": "abandoned", + "id": "0x4c383bDCae52a6e1cb810C76C70d6f31A249eC9B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4c383bDCae52a6e1cb810C76C70d6f31A249eC9B/logo.png b/blockchains/ethereum/assets/0x4c383bDCae52a6e1cb810C76C70d6f31A249eC9B/logo.png new file mode 100644 index 00000000..b4421381 Binary files /dev/null and b/blockchains/ethereum/assets/0x4c383bDCae52a6e1cb810C76C70d6f31A249eC9B/logo.png differ diff --git a/blockchains/ethereum/assets/0x4c4c62A08eb49404aB85f3b4A0d6560488f2E216/info.json b/blockchains/ethereum/assets/0x4c4c62A08eb49404aB85f3b4A0d6560488f2E216/info.json new file mode 100644 index 00000000..b337a6e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x4c4c62A08eb49404aB85f3b4A0d6560488f2E216/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sparkles Light", + "symbol": "Spark", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4c4c62A08eb49404aB85f3b4A0d6560488f2E216", + "status": "spam", + "id": "0x4c4c62A08eb49404aB85f3b4A0d6560488f2E216" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4c4c62A08eb49404aB85f3b4A0d6560488f2E216/logo.png b/blockchains/ethereum/assets/0x4c4c62A08eb49404aB85f3b4A0d6560488f2E216/logo.png new file mode 100644 index 00000000..2219f968 Binary files /dev/null and b/blockchains/ethereum/assets/0x4c4c62A08eb49404aB85f3b4A0d6560488f2E216/logo.png differ diff --git a/blockchains/ethereum/assets/0x4c5601164e2048a4154DE91Fa5e0B07E626CaB7F/info.json b/blockchains/ethereum/assets/0x4c5601164e2048a4154DE91Fa5e0B07E626CaB7F/info.json new file mode 100644 index 00000000..e9821975 --- /dev/null +++ b/blockchains/ethereum/assets/0x4c5601164e2048a4154DE91Fa5e0B07E626CaB7F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Funnel", + "symbol": "FNL", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4c5601164e2048a4154DE91Fa5e0B07E626CaB7F", + "status": "abandoned", + "id": "0x4c5601164e2048a4154DE91Fa5e0B07E626CaB7F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4c5601164e2048a4154DE91Fa5e0B07E626CaB7F/logo.png b/blockchains/ethereum/assets/0x4c5601164e2048a4154DE91Fa5e0B07E626CaB7F/logo.png new file mode 100644 index 00000000..41c7f787 Binary files /dev/null and b/blockchains/ethereum/assets/0x4c5601164e2048a4154DE91Fa5e0B07E626CaB7F/logo.png differ diff --git a/blockchains/ethereum/assets/0x4c9EDD5852cd905f086C759E8383e09bff1E68B3/info.json b/blockchains/ethereum/assets/0x4c9EDD5852cd905f086C759E8383e09bff1E68B3/info.json new file mode 100644 index 00000000..5390b56b --- /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 00000000..4aaa7e37 Binary files /dev/null and b/blockchains/ethereum/assets/0x4c9EDD5852cd905f086C759E8383e09bff1E68B3/logo.png differ diff --git a/blockchains/ethereum/assets/0x4cA16BF196440310d6dBe693758210Ca1338e011/info.json b/blockchains/ethereum/assets/0x4cA16BF196440310d6dBe693758210Ca1338e011/info.json new file mode 100644 index 00000000..5fe31944 --- /dev/null +++ b/blockchains/ethereum/assets/0x4cA16BF196440310d6dBe693758210Ca1338e011/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C572394", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4cA16BF196440310d6dBe693758210Ca1338e011", + "status": "abandoned", + "id": "0x4cA16BF196440310d6dBe693758210Ca1338e011" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4cA16BF196440310d6dBe693758210Ca1338e011/logo.png b/blockchains/ethereum/assets/0x4cA16BF196440310d6dBe693758210Ca1338e011/logo.png new file mode 100644 index 00000000..a9e6ca78 Binary files /dev/null and b/blockchains/ethereum/assets/0x4cA16BF196440310d6dBe693758210Ca1338e011/logo.png differ diff --git a/blockchains/ethereum/assets/0x4cA74185532DC1789527194e5B9c866dD33F4E82/info.json b/blockchains/ethereum/assets/0x4cA74185532DC1789527194e5B9c866dD33F4E82/info.json new file mode 100644 index 00000000..24045241 --- /dev/null +++ b/blockchains/ethereum/assets/0x4cA74185532DC1789527194e5B9c866dD33F4E82/info.json @@ -0,0 +1,11 @@ +{ + "name": "sensatori", + "symbol": "sense", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4cA74185532DC1789527194e5B9c866dD33F4E82", + "status": "abandoned", + "id": "0x4cA74185532DC1789527194e5B9c866dD33F4E82" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4cA74185532DC1789527194e5B9c866dD33F4E82/logo.png b/blockchains/ethereum/assets/0x4cA74185532DC1789527194e5B9c866dD33F4E82/logo.png new file mode 100644 index 00000000..21ce896f Binary files /dev/null and b/blockchains/ethereum/assets/0x4cA74185532DC1789527194e5B9c866dD33F4E82/logo.png differ diff --git a/blockchains/ethereum/assets/0x4cA91F13FDB0ce461D5B09b74f3094652688043B/info.json b/blockchains/ethereum/assets/0x4cA91F13FDB0ce461D5B09b74f3094652688043B/info.json new file mode 100644 index 00000000..ad81ae20 --- /dev/null +++ b/blockchains/ethereum/assets/0x4cA91F13FDB0ce461D5B09b74f3094652688043B/info.json @@ -0,0 +1,11 @@ +{ + "name": "KEPENG", + "symbol": "KPNG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4cA91F13FDB0ce461D5B09b74f3094652688043B", + "status": "abandoned", + "id": "0x4cA91F13FDB0ce461D5B09b74f3094652688043B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4cA91F13FDB0ce461D5B09b74f3094652688043B/logo.png b/blockchains/ethereum/assets/0x4cA91F13FDB0ce461D5B09b74f3094652688043B/logo.png new file mode 100644 index 00000000..11414ad8 Binary files /dev/null and b/blockchains/ethereum/assets/0x4cA91F13FDB0ce461D5B09b74f3094652688043B/logo.png differ diff --git a/blockchains/ethereum/assets/0x4cE6B362Bc77A24966Dda9078f9cEF81b3B886a7/info.json b/blockchains/ethereum/assets/0x4cE6B362Bc77A24966Dda9078f9cEF81b3B886a7/info.json new file mode 100644 index 00000000..ac2b8cf3 --- /dev/null +++ b/blockchains/ethereum/assets/0x4cE6B362Bc77A24966Dda9078f9cEF81b3B886a7/info.json @@ -0,0 +1,11 @@ +{ + "name": "NPER", + "symbol": "NPER", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4cE6B362Bc77A24966Dda9078f9cEF81b3B886a7", + "status": "abandoned", + "id": "0x4cE6B362Bc77A24966Dda9078f9cEF81b3B886a7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4cE6B362Bc77A24966Dda9078f9cEF81b3B886a7/logo.png b/blockchains/ethereum/assets/0x4cE6B362Bc77A24966Dda9078f9cEF81b3B886a7/logo.png new file mode 100644 index 00000000..3b67e57e Binary files /dev/null and b/blockchains/ethereum/assets/0x4cE6B362Bc77A24966Dda9078f9cEF81b3B886a7/logo.png differ diff --git a/blockchains/ethereum/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json b/blockchains/ethereum/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json new file mode 100644 index 00000000..17d7339b --- /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 00000000..a937d858 Binary files /dev/null and b/blockchains/ethereum/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/logo.png differ diff --git a/blockchains/ethereum/assets/0x4ceE978c126c43522765dE9ed02D9373C72AC290/info.json b/blockchains/ethereum/assets/0x4ceE978c126c43522765dE9ed02D9373C72AC290/info.json new file mode 100644 index 00000000..83a17d1c --- /dev/null +++ b/blockchains/ethereum/assets/0x4ceE978c126c43522765dE9ed02D9373C72AC290/info.json @@ -0,0 +1,11 @@ +{ + "name": "Comet", + "symbol": "COMET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4ceE978c126c43522765dE9ed02D9373C72AC290", + "status": "abandoned", + "id": "0x4ceE978c126c43522765dE9ed02D9373C72AC290" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4ceE978c126c43522765dE9ed02D9373C72AC290/logo.png b/blockchains/ethereum/assets/0x4ceE978c126c43522765dE9ed02D9373C72AC290/logo.png new file mode 100644 index 00000000..9473252f Binary files /dev/null and b/blockchains/ethereum/assets/0x4ceE978c126c43522765dE9ed02D9373C72AC290/logo.png differ diff --git a/blockchains/ethereum/assets/0x4d1C297d39C5c1277964D0E3f8Aa901493664530/info.json b/blockchains/ethereum/assets/0x4d1C297d39C5c1277964D0E3f8Aa901493664530/info.json new file mode 100644 index 00000000..2bad3157 --- /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 00000000..7796f2d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x4d1C297d39C5c1277964D0E3f8Aa901493664530/logo.png differ diff --git a/blockchains/ethereum/assets/0x4d1f4B0eF6F65dE9A8f5c12C208C37E5c2458444/info.json b/blockchains/ethereum/assets/0x4d1f4B0eF6F65dE9A8f5c12C208C37E5c2458444/info.json new file mode 100644 index 00000000..b1542c9a --- /dev/null +++ b/blockchains/ethereum/assets/0x4d1f4B0eF6F65dE9A8f5c12C208C37E5c2458444/info.json @@ -0,0 +1,11 @@ +{ + "name": "OREO", + "symbol": "Orion", + "type": "ERC20", + "decimals": 1, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4d1f4B0eF6F65dE9A8f5c12C208C37E5c2458444", + "status": "abandoned", + "id": "0x4d1f4B0eF6F65dE9A8f5c12C208C37E5c2458444" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4d1f4B0eF6F65dE9A8f5c12C208C37E5c2458444/logo.png b/blockchains/ethereum/assets/0x4d1f4B0eF6F65dE9A8f5c12C208C37E5c2458444/logo.png new file mode 100644 index 00000000..c0819bd0 Binary files /dev/null and b/blockchains/ethereum/assets/0x4d1f4B0eF6F65dE9A8f5c12C208C37E5c2458444/logo.png differ diff --git a/blockchains/ethereum/assets/0x4d21563feB6c880AbC2A6a74B090D1a7cbF06Ca8/info.json b/blockchains/ethereum/assets/0x4d21563feB6c880AbC2A6a74B090D1a7cbF06Ca8/info.json new file mode 100644 index 00000000..bd530d62 --- /dev/null +++ b/blockchains/ethereum/assets/0x4d21563feB6c880AbC2A6a74B090D1a7cbF06Ca8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ben Token", + "symbol": "BEN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4d21563feB6c880AbC2A6a74B090D1a7cbF06Ca8", + "status": "abandoned", + "id": "0x4d21563feB6c880AbC2A6a74B090D1a7cbF06Ca8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4d21563feB6c880AbC2A6a74B090D1a7cbF06Ca8/logo.png b/blockchains/ethereum/assets/0x4d21563feB6c880AbC2A6a74B090D1a7cbF06Ca8/logo.png new file mode 100644 index 00000000..77256065 Binary files /dev/null and b/blockchains/ethereum/assets/0x4d21563feB6c880AbC2A6a74B090D1a7cbF06Ca8/logo.png differ diff --git a/blockchains/ethereum/assets/0x4d224452801ACEd8B2F0aebE155379bb5D594381/info.json b/blockchains/ethereum/assets/0x4d224452801ACEd8B2F0aebE155379bb5D594381/info.json new file mode 100644 index 00000000..b2aecde2 --- /dev/null +++ b/blockchains/ethereum/assets/0x4d224452801ACEd8B2F0aebE155379bb5D594381/info.json @@ -0,0 +1,24 @@ +{ + "name": "ApeCoin (APE)", + "type": "ERC20", + "symbol": "APE", + "decimals": 18, + "website": "https://apecoin.com", + "description": "ApeCoin is an ERC-20 governance and utility token used within the APE ecosystem to empower a decentralized community building at the forefront of web3.", + "explorer": "https://etherscan.io/token/0x4d224452801aced8b2f0aebe155379bb5d594381", + "status": "active", + "id": "0x4d224452801ACEd8B2F0aebE155379bb5D594381", + "links": [ + { + "name": "x", + "url": "https://x.com/apecoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apecoin-ape/" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4d224452801ACEd8B2F0aebE155379bb5D594381/logo.png b/blockchains/ethereum/assets/0x4d224452801ACEd8B2F0aebE155379bb5D594381/logo.png new file mode 100644 index 00000000..f7a107f9 Binary files /dev/null and b/blockchains/ethereum/assets/0x4d224452801ACEd8B2F0aebE155379bb5D594381/logo.png differ diff --git a/blockchains/ethereum/assets/0x4d46335Fe05EBf9D220382AE014328C0f62EB12D/info.json b/blockchains/ethereum/assets/0x4d46335Fe05EBf9D220382AE014328C0f62EB12D/info.json new file mode 100644 index 00000000..d3d421f5 --- /dev/null +++ b/blockchains/ethereum/assets/0x4d46335Fe05EBf9D220382AE014328C0f62EB12D/info.json @@ -0,0 +1,11 @@ +{ + "name": "BsaiCoin", + "symbol": "BSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4d46335Fe05EBf9D220382AE014328C0f62EB12D", + "status": "abandoned", + "id": "0x4d46335Fe05EBf9D220382AE014328C0f62EB12D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4d46335Fe05EBf9D220382AE014328C0f62EB12D/logo.png b/blockchains/ethereum/assets/0x4d46335Fe05EBf9D220382AE014328C0f62EB12D/logo.png new file mode 100644 index 00000000..f80ecae8 Binary files /dev/null and b/blockchains/ethereum/assets/0x4d46335Fe05EBf9D220382AE014328C0f62EB12D/logo.png differ diff --git a/blockchains/ethereum/assets/0x4d714Dd7E399e0Abb0b1aF54dB10998Cb239996E/info.json b/blockchains/ethereum/assets/0x4d714Dd7E399e0Abb0b1aF54dB10998Cb239996E/info.json new file mode 100644 index 00000000..7c7f9a7c --- /dev/null +++ b/blockchains/ethereum/assets/0x4d714Dd7E399e0Abb0b1aF54dB10998Cb239996E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Carbon Network Token", + "symbol": "CBN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4d714Dd7E399e0Abb0b1aF54dB10998Cb239996E", + "status": "abandoned", + "id": "0x4d714Dd7E399e0Abb0b1aF54dB10998Cb239996E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4d714Dd7E399e0Abb0b1aF54dB10998Cb239996E/logo.png b/blockchains/ethereum/assets/0x4d714Dd7E399e0Abb0b1aF54dB10998Cb239996E/logo.png new file mode 100644 index 00000000..a27c7ae3 Binary files /dev/null and b/blockchains/ethereum/assets/0x4d714Dd7E399e0Abb0b1aF54dB10998Cb239996E/logo.png differ diff --git a/blockchains/ethereum/assets/0x4d9Ee34b7eE0d3ceF04E5909c27a266e7Eb14712/info.json b/blockchains/ethereum/assets/0x4d9Ee34b7eE0d3ceF04E5909c27a266e7Eb14712/info.json new file mode 100644 index 00000000..3d062ff5 --- /dev/null +++ b/blockchains/ethereum/assets/0x4d9Ee34b7eE0d3ceF04E5909c27a266e7Eb14712/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRYPTOBUCKS", + "symbol": "C-BUCKS", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4d9Ee34b7eE0d3ceF04E5909c27a266e7Eb14712", + "status": "abandoned", + "id": "0x4d9Ee34b7eE0d3ceF04E5909c27a266e7Eb14712" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4d9Ee34b7eE0d3ceF04E5909c27a266e7Eb14712/logo.png b/blockchains/ethereum/assets/0x4d9Ee34b7eE0d3ceF04E5909c27a266e7Eb14712/logo.png new file mode 100644 index 00000000..6f62e489 Binary files /dev/null and b/blockchains/ethereum/assets/0x4d9Ee34b7eE0d3ceF04E5909c27a266e7Eb14712/logo.png differ diff --git a/blockchains/ethereum/assets/0x4dB56A679DF2694c98793BdEB0a92f9C77C5ae64/info.json b/blockchains/ethereum/assets/0x4dB56A679DF2694c98793BdEB0a92f9C77C5ae64/info.json new file mode 100644 index 00000000..9bee3cbd --- /dev/null +++ b/blockchains/ethereum/assets/0x4dB56A679DF2694c98793BdEB0a92f9C77C5ae64/info.json @@ -0,0 +1,11 @@ +{ + "name": "KNIGHT", + "symbol": "KNIGHT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4dB56A679DF2694c98793BdEB0a92f9C77C5ae64", + "status": "abandoned", + "id": "0x4dB56A679DF2694c98793BdEB0a92f9C77C5ae64" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4dB56A679DF2694c98793BdEB0a92f9C77C5ae64/logo.png b/blockchains/ethereum/assets/0x4dB56A679DF2694c98793BdEB0a92f9C77C5ae64/logo.png new file mode 100644 index 00000000..fe6c9d26 Binary files /dev/null and b/blockchains/ethereum/assets/0x4dB56A679DF2694c98793BdEB0a92f9C77C5ae64/logo.png differ diff --git a/blockchains/ethereum/assets/0x4dF76A9DaB9bb8310e4Ad3dc4336a8e26ed24EBB/info.json b/blockchains/ethereum/assets/0x4dF76A9DaB9bb8310e4Ad3dc4336a8e26ed24EBB/info.json new file mode 100644 index 00000000..f8264e0b --- /dev/null +++ b/blockchains/ethereum/assets/0x4dF76A9DaB9bb8310e4Ad3dc4336a8e26ed24EBB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sappchain", + "symbol": "SAPP", + "type": "ERC20", + "decimals": 18, + "description": "SAPPCHAIN is a decentralized end-to-end encrypted anonymous messaging App with peer-to-peer transfer of money and cryptocurrency solution.", + "website": "https://sappchain.co/", + "explorer": "https://etherscan.io/token/0x4dF76A9DaB9bb8310e4Ad3dc4336a8e26ed24EBB", + "status": "active", + "id": "0x4dF76A9DaB9bb8310e4Ad3dc4336a8e26ed24EBB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4dF76A9DaB9bb8310e4Ad3dc4336a8e26ed24EBB/logo.png b/blockchains/ethereum/assets/0x4dF76A9DaB9bb8310e4Ad3dc4336a8e26ed24EBB/logo.png new file mode 100644 index 00000000..bb01908d Binary files /dev/null and b/blockchains/ethereum/assets/0x4dF76A9DaB9bb8310e4Ad3dc4336a8e26ed24EBB/logo.png differ diff --git a/blockchains/ethereum/assets/0x4da08a1Bff50BE96bdeD5C7019227164b49C2bFc/info.json b/blockchains/ethereum/assets/0x4da08a1Bff50BE96bdeD5C7019227164b49C2bFc/info.json new file mode 100644 index 00000000..a07a50e0 --- /dev/null +++ b/blockchains/ethereum/assets/0x4da08a1Bff50BE96bdeD5C7019227164b49C2bFc/info.json @@ -0,0 +1,33 @@ +{ + "name": "Mononoke Inu", + "website": "https://www.mononoke-i.nu/", + "description": "Mononoke Inu - the anime token with the biggest potential out there! Freshly released on Ethereum!", + "explorer": "https://etherscan.io/token/0x4da08a1bff50be96bded5c7019227164b49c2bfc", + "type": "ERC20", + "symbol": "Mononoke-Inu", + "decimals": 9, + "status": "active", + "id": "0x4da08a1Bff50BE96bdeD5C7019227164b49C2bFc", + "links": [ + { + "name": "github", + "url": "https://github.com/MononokeInu" + }, + { + "name": "x", + "url": "https://x.com/Mononoke_Inu" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/mononoke_inu" + }, + { + "name": "telegram", + "url": "https://t.me/mononokeinu" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCdH9xvqETEHJSZDRW94jJAg" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4da08a1Bff50BE96bdeD5C7019227164b49C2bFc/logo.png b/blockchains/ethereum/assets/0x4da08a1Bff50BE96bdeD5C7019227164b49C2bFc/logo.png new file mode 100644 index 00000000..38813b85 Binary files /dev/null and b/blockchains/ethereum/assets/0x4da08a1Bff50BE96bdeD5C7019227164b49C2bFc/logo.png differ diff --git a/blockchains/ethereum/assets/0x4da27a545c0c5B758a6BA100e3a049001de870f5/info.json b/blockchains/ethereum/assets/0x4da27a545c0c5B758a6BA100e3a049001de870f5/info.json new file mode 100644 index 00000000..6a38737d --- /dev/null +++ b/blockchains/ethereum/assets/0x4da27a545c0c5B758a6BA100e3a049001de870f5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Staked AAVE", + "symbol": "stkAAVE", + "type": "ERC20", + "decimals": 18, + "description": "stkAAVE is AAVE that is staked in the Aave Protocol Safety Module. In case of a shortfall event, up to 30% of the stkAAVE can be slashed to cover the deficit. stkAAVE holders earn Safety Incentives as a reward for protecting the protocol. stkAAVE holders can also vote on governance proposals for protocol updates.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x4da27a545c0c5B758a6BA100e3a049001de870f5", + "status": "active", + "id": "0x4da27a545c0c5B758a6BA100e3a049001de870f5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4da27a545c0c5B758a6BA100e3a049001de870f5/logo.png b/blockchains/ethereum/assets/0x4da27a545c0c5B758a6BA100e3a049001de870f5/logo.png new file mode 100644 index 00000000..596c6872 Binary files /dev/null and b/blockchains/ethereum/assets/0x4da27a545c0c5B758a6BA100e3a049001de870f5/logo.png differ diff --git a/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/info.json b/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/info.json new file mode 100644 index 00000000..8ed681e6 --- /dev/null +++ b/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/info.json @@ -0,0 +1,32 @@ +{ + "name": "Stable ICHI", + "website": "app.ichi.org", + "description": "oneICHI is an ICHI-created stablecoin backed by USDC and ICHI built for the ICHI DAO.", + "explorer": "https://etherscan.io/token/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07", + "type": "ERC20", + "symbol": "oneICHI", + "decimals": 18, + "status": "active", + "id": "0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm/ichi-oneToken" + }, + { + "name": "x", + "url": "https://x.com/ichifoundation" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/logo.png b/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/logo.png new file mode 100644 index 00000000..2b3da169 Binary files /dev/null and b/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/logo.png differ diff --git a/blockchains/ethereum/assets/0x4dbF2b6830EE68a0CD789610138795Ce78606385/info.json b/blockchains/ethereum/assets/0x4dbF2b6830EE68a0CD789610138795Ce78606385/info.json new file mode 100644 index 00000000..dc2846d3 --- /dev/null +++ b/blockchains/ethereum/assets/0x4dbF2b6830EE68a0CD789610138795Ce78606385/info.json @@ -0,0 +1,11 @@ +{ + "name": "1irst", + "symbol": "FSCO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4dbF2b6830EE68a0CD789610138795Ce78606385", + "status": "abandoned", + "id": "0x4dbF2b6830EE68a0CD789610138795Ce78606385" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4dbF2b6830EE68a0CD789610138795Ce78606385/logo.png b/blockchains/ethereum/assets/0x4dbF2b6830EE68a0CD789610138795Ce78606385/logo.png new file mode 100644 index 00000000..4d26b7c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x4dbF2b6830EE68a0CD789610138795Ce78606385/logo.png differ diff --git a/blockchains/ethereum/assets/0x4de2573e27E648607B50e1Cfff921A33E4A34405/info.json b/blockchains/ethereum/assets/0x4de2573e27E648607B50e1Cfff921A33E4A34405/info.json new file mode 100644 index 00000000..bc6dad3a --- /dev/null +++ b/blockchains/ethereum/assets/0x4de2573e27E648607B50e1Cfff921A33E4A34405/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lendroid Support Token", + "symbol": "LST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.lendroid.com/", + "explorer": "https://etherscan.io/token/0x4de2573e27E648607B50e1Cfff921A33E4A34405", + "status": "abandoned", + "id": "0x4de2573e27E648607B50e1Cfff921A33E4A34405" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4de2573e27E648607B50e1Cfff921A33E4A34405/logo.png b/blockchains/ethereum/assets/0x4de2573e27E648607B50e1Cfff921A33E4A34405/logo.png new file mode 100644 index 00000000..cdd4074e Binary files /dev/null and b/blockchains/ethereum/assets/0x4de2573e27E648607B50e1Cfff921A33E4A34405/logo.png differ diff --git a/blockchains/ethereum/assets/0x4de25F080E02e8b3fDD450F0B2b9ed22c7e6Cf0A/info.json b/blockchains/ethereum/assets/0x4de25F080E02e8b3fDD450F0B2b9ed22c7e6Cf0A/info.json new file mode 100644 index 00000000..68ffcb54 --- /dev/null +++ b/blockchains/ethereum/assets/0x4de25F080E02e8b3fDD450F0B2b9ed22c7e6Cf0A/info.json @@ -0,0 +1,11 @@ +{ + "name": "CAPT", + "website": "http://captainbitcoin.io", + "description": "Captain Bitcoin is a platform designed specifically to drive Bitcoin, crypto, and blockchain adoption through video content in a fun and engaging manner. Users watch crypto-related videos, earn crypto for answering multiple-choice questions, and WIN BITCOIN in our daily Bitcoin giveaways.", + "explorer": "https://etherscan.io/token/0x4de25F080E02e8b3fDD450F0B2b9ed22c7e6Cf0A", + "type": "ERC20", + "symbol": "CAPT", + "decimals": 18, + "status": "active", + "id": "0x4de25F080E02e8b3fDD450F0B2b9ed22c7e6Cf0A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4de25F080E02e8b3fDD450F0B2b9ed22c7e6Cf0A/logo.png b/blockchains/ethereum/assets/0x4de25F080E02e8b3fDD450F0B2b9ed22c7e6Cf0A/logo.png new file mode 100644 index 00000000..9bb55027 Binary files /dev/null and b/blockchains/ethereum/assets/0x4de25F080E02e8b3fDD450F0B2b9ed22c7e6Cf0A/logo.png differ diff --git a/blockchains/ethereum/assets/0x4e005a760e00e17c4912A8070EEc047CfecBabbb/info.json b/blockchains/ethereum/assets/0x4e005a760e00e17c4912A8070EEc047CfecBabbb/info.json new file mode 100644 index 00000000..c26d3fc1 --- /dev/null +++ b/blockchains/ethereum/assets/0x4e005a760e00e17c4912A8070EEc047CfecBabbb/info.json @@ -0,0 +1,11 @@ +{ + "name": "NEXT.exchange", + "symbol": "NEXT", + "type": "ERC20", + "decimals": 18, + "description": "A hybrid exchange registered as an N. V. (Public company) in the Netherlands and provides fiat pairs to all altcoins on its platform.", + "website": "https://next.exchange/", + "explorer": "https://etherscan.io/token/0x4e005a760e00e17c4912A8070EEc047CfecBabbb", + "status": "active", + "id": "0x4e005a760e00e17c4912A8070EEc047CfecBabbb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4e005a760e00e17c4912A8070EEc047CfecBabbb/logo.png b/blockchains/ethereum/assets/0x4e005a760e00e17c4912A8070EEc047CfecBabbb/logo.png new file mode 100644 index 00000000..0827039e Binary files /dev/null and b/blockchains/ethereum/assets/0x4e005a760e00e17c4912A8070EEc047CfecBabbb/logo.png differ diff --git a/blockchains/ethereum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/info.json b/blockchains/ethereum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/info.json new file mode 100644 index 00000000..9d4acd08 --- /dev/null +++ b/blockchains/ethereum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/info.json @@ -0,0 +1,11 @@ +{ + "name": "MCDEX Token", + "website": "https://mcdex.io", + "description": "Monte Carlo Decentralized Exchange is a crypto trading platform. MCDEX is powered by the Mai Protocol smart contracts deployed on the Ethereum blockchain. The Mai Protocol smart contracts are fully audited by Open Zeppelin, Consensys and Chain Security.", + "explorer": "https://etherscan.io/token/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42", + "type": "ERC20", + "symbol": "MCB", + "decimals": 18, + "status": "active", + "id": "0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/logo.png b/blockchains/ethereum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/logo.png new file mode 100644 index 00000000..ee172cac Binary files /dev/null and b/blockchains/ethereum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/logo.png differ diff --git a/blockchains/ethereum/assets/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B/info.json b/blockchains/ethereum/assets/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B/info.json new file mode 100644 index 00000000..58ca0d69 --- /dev/null +++ b/blockchains/ethereum/assets/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B/info.json @@ -0,0 +1,32 @@ +{ + "name": "Convex Token", + "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", + "type": "ERC20", + "symbol": "CVX", + "decimals": 18, + "status": "active", + "id": "0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B", + "tags": [ + "defi" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/convex-finance/" + }, + { + "name": "x", + "url": "https://x.com/convexfinance" + }, + { + "name": "telegram", + "url": "https://t.me/convexEthChat" + }, + { + "name": "medium", + "url": "https://convexfinance.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B/logo.png b/blockchains/ethereum/assets/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B/logo.png new file mode 100644 index 00000000..9b437cd9 Binary files /dev/null and b/blockchains/ethereum/assets/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B/logo.png differ diff --git a/blockchains/ethereum/assets/0x4e7363E2B4253f07D786Fd12CFeE45f121DdaE98/info.json b/blockchains/ethereum/assets/0x4e7363E2B4253f07D786Fd12CFeE45f121DdaE98/info.json new file mode 100644 index 00000000..39a36147 --- /dev/null +++ b/blockchains/ethereum/assets/0x4e7363E2B4253f07D786Fd12CFeE45f121DdaE98/info.json @@ -0,0 +1,11 @@ +{ + "name": "ARAKAN DAN GAR", + "symbol": "ADG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4e7363E2B4253f07D786Fd12CFeE45f121DdaE98", + "status": "abandoned", + "id": "0x4e7363E2B4253f07D786Fd12CFeE45f121DdaE98" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4e7363E2B4253f07D786Fd12CFeE45f121DdaE98/logo.png b/blockchains/ethereum/assets/0x4e7363E2B4253f07D786Fd12CFeE45f121DdaE98/logo.png new file mode 100644 index 00000000..d9dc67d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x4e7363E2B4253f07D786Fd12CFeE45f121DdaE98/logo.png differ diff --git a/blockchains/ethereum/assets/0x4e7dE94e1243c25be42c523A0A4EA712BE6d9766/info.json b/blockchains/ethereum/assets/0x4e7dE94e1243c25be42c523A0A4EA712BE6d9766/info.json new file mode 100644 index 00000000..63ecad52 --- /dev/null +++ b/blockchains/ethereum/assets/0x4e7dE94e1243c25be42c523A0A4EA712BE6d9766/info.json @@ -0,0 +1,11 @@ +{ + "name": "Roman Empire Club", + "symbol": "REC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4e7dE94e1243c25be42c523A0A4EA712BE6d9766", + "status": "abandoned", + "id": "0x4e7dE94e1243c25be42c523A0A4EA712BE6d9766" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4e7dE94e1243c25be42c523A0A4EA712BE6d9766/logo.png b/blockchains/ethereum/assets/0x4e7dE94e1243c25be42c523A0A4EA712BE6d9766/logo.png new file mode 100644 index 00000000..5d086d47 Binary files /dev/null and b/blockchains/ethereum/assets/0x4e7dE94e1243c25be42c523A0A4EA712BE6d9766/logo.png differ diff --git a/blockchains/ethereum/assets/0x4e84A65B5664D33B67750771F8bEAeC458bD6729/info.json b/blockchains/ethereum/assets/0x4e84A65B5664D33B67750771F8bEAeC458bD6729/info.json new file mode 100644 index 00000000..65dd13a6 --- /dev/null +++ b/blockchains/ethereum/assets/0x4e84A65B5664D33B67750771F8bEAeC458bD6729/info.json @@ -0,0 +1,11 @@ +{ + "name": "Orionix", + "symbol": "ORX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4e84A65B5664D33B67750771F8bEAeC458bD6729", + "status": "abandoned", + "id": "0x4e84A65B5664D33B67750771F8bEAeC458bD6729" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4e84A65B5664D33B67750771F8bEAeC458bD6729/logo.png b/blockchains/ethereum/assets/0x4e84A65B5664D33B67750771F8bEAeC458bD6729/logo.png new file mode 100644 index 00000000..d42282ad Binary files /dev/null and b/blockchains/ethereum/assets/0x4e84A65B5664D33B67750771F8bEAeC458bD6729/logo.png differ diff --git a/blockchains/ethereum/assets/0x4e9095A1B97933bf528B5C2Fa1e734f167C3aE12/info.json b/blockchains/ethereum/assets/0x4e9095A1B97933bf528B5C2Fa1e734f167C3aE12/info.json new file mode 100644 index 00000000..e64ace13 --- /dev/null +++ b/blockchains/ethereum/assets/0x4e9095A1B97933bf528B5C2Fa1e734f167C3aE12/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zaigar", + "symbol": "ZAI", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4e9095A1B97933bf528B5C2Fa1e734f167C3aE12", + "status": "abandoned", + "id": "0x4e9095A1B97933bf528B5C2Fa1e734f167C3aE12" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4e9095A1B97933bf528B5C2Fa1e734f167C3aE12/logo.png b/blockchains/ethereum/assets/0x4e9095A1B97933bf528B5C2Fa1e734f167C3aE12/logo.png new file mode 100644 index 00000000..3101e955 Binary files /dev/null and b/blockchains/ethereum/assets/0x4e9095A1B97933bf528B5C2Fa1e734f167C3aE12/logo.png differ diff --git a/blockchains/ethereum/assets/0x4eC2eFb9cBd374786A03261E46ffce1a67756f3B/info.json b/blockchains/ethereum/assets/0x4eC2eFb9cBd374786A03261E46ffce1a67756f3B/info.json new file mode 100644 index 00000000..864fe455 --- /dev/null +++ b/blockchains/ethereum/assets/0x4eC2eFb9cBd374786A03261E46ffce1a67756f3B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Deflacoin", + "symbol": "DEFL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://deflacoin.org/", + "explorer": "https://etherscan.io/token/0x4eC2eFb9cBd374786A03261E46ffce1a67756f3B", + "status": "abandoned", + "id": "0x4eC2eFb9cBd374786A03261E46ffce1a67756f3B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4eC2eFb9cBd374786A03261E46ffce1a67756f3B/logo.png b/blockchains/ethereum/assets/0x4eC2eFb9cBd374786A03261E46ffce1a67756f3B/logo.png new file mode 100644 index 00000000..bc439ce0 Binary files /dev/null and b/blockchains/ethereum/assets/0x4eC2eFb9cBd374786A03261E46ffce1a67756f3B/logo.png differ diff --git a/blockchains/ethereum/assets/0x4eCB692B0fEDeCD7B486b4c99044392784877E8C/info.json b/blockchains/ethereum/assets/0x4eCB692B0fEDeCD7B486b4c99044392784877E8C/info.json new file mode 100644 index 00000000..cd61dbd3 --- /dev/null +++ b/blockchains/ethereum/assets/0x4eCB692B0fEDeCD7B486b4c99044392784877E8C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cherry", + "symbol": "CHERRY", + "type": "ERC20", + "decimals": 4, + "description": "$CHERRY is the store of the value and the currency of the community. Allows use of tokenized membership, removing the need for monthly payments through credit cards and banks.", + "website": "http://cherryhotwife.com/tour/", + "explorer": "https://etherscan.io/token/0x4eCB692B0fEDeCD7B486b4c99044392784877E8C", + "status": "active", + "id": "0x4eCB692B0fEDeCD7B486b4c99044392784877E8C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4eCB692B0fEDeCD7B486b4c99044392784877E8C/logo.png b/blockchains/ethereum/assets/0x4eCB692B0fEDeCD7B486b4c99044392784877E8C/logo.png new file mode 100644 index 00000000..e8163239 Binary files /dev/null and b/blockchains/ethereum/assets/0x4eCB692B0fEDeCD7B486b4c99044392784877E8C/logo.png differ diff --git a/blockchains/ethereum/assets/0x4eD040F2896761d1688Af5d772cc9138722ab9Ec/info.json b/blockchains/ethereum/assets/0x4eD040F2896761d1688Af5d772cc9138722ab9Ec/info.json new file mode 100644 index 00000000..f4eeea24 --- /dev/null +++ b/blockchains/ethereum/assets/0x4eD040F2896761d1688Af5d772cc9138722ab9Ec/info.json @@ -0,0 +1,11 @@ +{ + "name": "Firefly Token", + "symbol": "FRFY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4eD040F2896761d1688Af5d772cc9138722ab9Ec", + "status": "abandoned", + "id": "0x4eD040F2896761d1688Af5d772cc9138722ab9Ec" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4eD040F2896761d1688Af5d772cc9138722ab9Ec/logo.png b/blockchains/ethereum/assets/0x4eD040F2896761d1688Af5d772cc9138722ab9Ec/logo.png new file mode 100644 index 00000000..a2cfb399 Binary files /dev/null and b/blockchains/ethereum/assets/0x4eD040F2896761d1688Af5d772cc9138722ab9Ec/logo.png differ diff --git a/blockchains/ethereum/assets/0x4eDDb15A0abfa2c349e8065aF9214E942d9A6D36/info.json b/blockchains/ethereum/assets/0x4eDDb15A0abfa2c349e8065aF9214E942d9A6D36/info.json new file mode 100644 index 00000000..07ad1948 --- /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 00000000..fdfd0ac0 Binary files /dev/null and b/blockchains/ethereum/assets/0x4eDDb15A0abfa2c349e8065aF9214E942d9A6D36/logo.png differ diff --git a/blockchains/ethereum/assets/0x4eE6E959d460dE47DfE58E5E6fBAB330Ce8484b6/info.json b/blockchains/ethereum/assets/0x4eE6E959d460dE47DfE58E5E6fBAB330Ce8484b6/info.json new file mode 100644 index 00000000..25cf534a --- /dev/null +++ b/blockchains/ethereum/assets/0x4eE6E959d460dE47DfE58E5E6fBAB330Ce8484b6/info.json @@ -0,0 +1,11 @@ +{ + "name": "QURA GLOBAL", + "symbol": "QURA", + "type": "ERC20", + "decimals": 18, + "description": "Cryptocurrency – Work on Modern Ideas.", + "website": "https://quratoken.com/", + "explorer": "https://etherscan.io/token/0x4eE6E959d460dE47DfE58E5E6fBAB330Ce8484b6", + "status": "abandoned", + "id": "0x4eE6E959d460dE47DfE58E5E6fBAB330Ce8484b6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4eE6E959d460dE47DfE58E5E6fBAB330Ce8484b6/logo.png b/blockchains/ethereum/assets/0x4eE6E959d460dE47DfE58E5E6fBAB330Ce8484b6/logo.png new file mode 100644 index 00000000..ed6ec09e Binary files /dev/null and b/blockchains/ethereum/assets/0x4eE6E959d460dE47DfE58E5E6fBAB330Ce8484b6/logo.png differ diff --git a/blockchains/ethereum/assets/0x4f01eCbe8D6882FFaEe47fe23A9677A96AAbED07/info.json b/blockchains/ethereum/assets/0x4f01eCbe8D6882FFaEe47fe23A9677A96AAbED07/info.json new file mode 100644 index 00000000..ee38006b --- /dev/null +++ b/blockchains/ethereum/assets/0x4f01eCbe8D6882FFaEe47fe23A9677A96AAbED07/info.json @@ -0,0 +1,11 @@ +{ + "name": "MythicUSD", + "symbol": "MTUSD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4f01eCbe8D6882FFaEe47fe23A9677A96AAbED07", + "status": "abandoned", + "id": "0x4f01eCbe8D6882FFaEe47fe23A9677A96AAbED07" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4f01eCbe8D6882FFaEe47fe23A9677A96AAbED07/logo.png b/blockchains/ethereum/assets/0x4f01eCbe8D6882FFaEe47fe23A9677A96AAbED07/logo.png new file mode 100644 index 00000000..0d1c0bc6 Binary files /dev/null and b/blockchains/ethereum/assets/0x4f01eCbe8D6882FFaEe47fe23A9677A96AAbED07/logo.png differ diff --git a/blockchains/ethereum/assets/0x4f0CA3df1c2e6b943cf82E649d576ffe7B2fABCF/info.json b/blockchains/ethereum/assets/0x4f0CA3df1c2e6b943cf82E649d576ffe7B2fABCF/info.json new file mode 100644 index 00000000..b0cf2364 --- /dev/null +++ b/blockchains/ethereum/assets/0x4f0CA3df1c2e6b943cf82E649d576ffe7B2fABCF/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Gold Trust (Ondo Tokenized)", + "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 00000000..140fda8b Binary files /dev/null and b/blockchains/ethereum/assets/0x4f0CA3df1c2e6b943cf82E649d576ffe7B2fABCF/logo.png differ diff --git a/blockchains/ethereum/assets/0x4f27053F32edA8Af84956437Bc00e5fFa7003287/info.json b/blockchains/ethereum/assets/0x4f27053F32edA8Af84956437Bc00e5fFa7003287/info.json new file mode 100644 index 00000000..df66b3d2 --- /dev/null +++ b/blockchains/ethereum/assets/0x4f27053F32edA8Af84956437Bc00e5fFa7003287/info.json @@ -0,0 +1,11 @@ +{ + "name": "ThriveToken", + "symbol": "THRT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ico.thrivelabs.io", + "explorer": "https://etherscan.io/token/0x4f27053F32edA8Af84956437Bc00e5fFa7003287", + "status": "active", + "id": "0x4f27053F32edA8Af84956437Bc00e5fFa7003287" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4f27053F32edA8Af84956437Bc00e5fFa7003287/logo.png b/blockchains/ethereum/assets/0x4f27053F32edA8Af84956437Bc00e5fFa7003287/logo.png new file mode 100755 index 00000000..d3046867 Binary files /dev/null and b/blockchains/ethereum/assets/0x4f27053F32edA8Af84956437Bc00e5fFa7003287/logo.png differ diff --git a/blockchains/ethereum/assets/0x4f3AfEC4E5a3F2A6a1A411DEF7D7dFe50eE057bF/info.json b/blockchains/ethereum/assets/0x4f3AfEC4E5a3F2A6a1A411DEF7D7dFe50eE057bF/info.json new file mode 100644 index 00000000..534bf83f --- /dev/null +++ b/blockchains/ethereum/assets/0x4f3AfEC4E5a3F2A6a1A411DEF7D7dFe50eE057bF/info.json @@ -0,0 +1,14 @@ +{ + "name": "Digix Gold Token", + "symbol": "DGX", + "type": "ERC20", + "decimals": 9, + "description": "The project provides the infrastructure to create tokens backed by physical assets on the blockchain.", + "website": "http://digix.io/", + "explorer": "https://etherscan.io/token/0x4f3AfEC4E5a3F2A6a1A411DEF7D7dFe50eE057bF", + "status": "active", + "id": "0x4f3AfEC4E5a3F2A6a1A411DEF7D7dFe50eE057bF", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4f3AfEC4E5a3F2A6a1A411DEF7D7dFe50eE057bF/logo.png b/blockchains/ethereum/assets/0x4f3AfEC4E5a3F2A6a1A411DEF7D7dFe50eE057bF/logo.png new file mode 100755 index 00000000..ae2da48c Binary files /dev/null and b/blockchains/ethereum/assets/0x4f3AfEC4E5a3F2A6a1A411DEF7D7dFe50eE057bF/logo.png differ diff --git a/blockchains/ethereum/assets/0x4f4f2963311a9A97b2Ac252b7912b440BDB342A7/info.json b/blockchains/ethereum/assets/0x4f4f2963311a9A97b2Ac252b7912b440BDB342A7/info.json new file mode 100644 index 00000000..807e67a2 --- /dev/null +++ b/blockchains/ethereum/assets/0x4f4f2963311a9A97b2Ac252b7912b440BDB342A7/info.json @@ -0,0 +1,11 @@ +{ + "name": "AURUM", + "symbol": "AUR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4f4f2963311a9A97b2Ac252b7912b440BDB342A7", + "status": "abandoned", + "id": "0x4f4f2963311a9A97b2Ac252b7912b440BDB342A7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4f4f2963311a9A97b2Ac252b7912b440BDB342A7/logo.png b/blockchains/ethereum/assets/0x4f4f2963311a9A97b2Ac252b7912b440BDB342A7/logo.png new file mode 100755 index 00000000..b1fd62f1 Binary files /dev/null and b/blockchains/ethereum/assets/0x4f4f2963311a9A97b2Ac252b7912b440BDB342A7/logo.png differ diff --git a/blockchains/ethereum/assets/0x4f56221252d117f35E2f6Ab937A3F77CAd38934D/info.json b/blockchains/ethereum/assets/0x4f56221252d117f35E2f6Ab937A3F77CAd38934D/info.json new file mode 100644 index 00000000..ee55cccb --- /dev/null +++ b/blockchains/ethereum/assets/0x4f56221252d117f35E2f6Ab937A3F77CAd38934D/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoCricketClub", + "symbol": "3Cs", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.cryptocricketclub.com/", + "explorer": "https://etherscan.io/token/0x4f56221252d117f35E2f6Ab937A3F77CAd38934D", + "status": "abandoned", + "id": "0x4f56221252d117f35E2f6Ab937A3F77CAd38934D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4f56221252d117f35E2f6Ab937A3F77CAd38934D/logo.png b/blockchains/ethereum/assets/0x4f56221252d117f35E2f6Ab937A3F77CAd38934D/logo.png new file mode 100644 index 00000000..44357c66 Binary files /dev/null and b/blockchains/ethereum/assets/0x4f56221252d117f35E2f6Ab937A3F77CAd38934D/logo.png differ diff --git a/blockchains/ethereum/assets/0x4f5fa8f2d12e5eB780f6082Dd656C565C48E0f24/info.json b/blockchains/ethereum/assets/0x4f5fa8f2d12e5eB780f6082Dd656C565C48E0f24/info.json new file mode 100644 index 00000000..ea92c529 --- /dev/null +++ b/blockchains/ethereum/assets/0x4f5fa8f2d12e5eB780f6082Dd656C565C48E0f24/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gourmet Galaxy", + "type": "ERC20", + "symbol": "GUM", + "decimals": 18, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0x4f5fa8f2d12e5eb780f6082dd656c565c48e0f24", + "status": "active", + "id": "0x4f5fa8f2d12e5eB780f6082Dd656C565C48E0f24" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4f5fa8f2d12e5eB780f6082Dd656C565C48E0f24/logo.png b/blockchains/ethereum/assets/0x4f5fa8f2d12e5eB780f6082Dd656C565C48E0f24/logo.png new file mode 100644 index 00000000..0845f5aa Binary files /dev/null and b/blockchains/ethereum/assets/0x4f5fa8f2d12e5eB780f6082Dd656C565C48E0f24/logo.png differ diff --git a/blockchains/ethereum/assets/0x4f76E85d067e219779A863ff18577846b3152F1F/info.json b/blockchains/ethereum/assets/0x4f76E85d067e219779A863ff18577846b3152F1F/info.json new file mode 100644 index 00000000..bc42a238 --- /dev/null +++ b/blockchains/ethereum/assets/0x4f76E85d067e219779A863ff18577846b3152F1F/info.json @@ -0,0 +1,11 @@ +{ + "name": "KUBO COIN", + "symbol": "KUBO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://kubocoin.org/", + "explorer": "https://etherscan.io/token/0x4f76E85d067e219779A863ff18577846b3152F1F", + "status": "abandoned", + "id": "0x4f76E85d067e219779A863ff18577846b3152F1F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4f76E85d067e219779A863ff18577846b3152F1F/logo.png b/blockchains/ethereum/assets/0x4f76E85d067e219779A863ff18577846b3152F1F/logo.png new file mode 100644 index 00000000..976ef454 Binary files /dev/null and b/blockchains/ethereum/assets/0x4f76E85d067e219779A863ff18577846b3152F1F/logo.png differ diff --git a/blockchains/ethereum/assets/0x4f83e4a0A4605b471CcB290db3aBDB920b5C70b0/info.json b/blockchains/ethereum/assets/0x4f83e4a0A4605b471CcB290db3aBDB920b5C70b0/info.json new file mode 100644 index 00000000..b4675256 --- /dev/null +++ b/blockchains/ethereum/assets/0x4f83e4a0A4605b471CcB290db3aBDB920b5C70b0/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST 2", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4f83e4a0A4605b471CcB290db3aBDB920b5C70b0", + "status": "abandoned", + "id": "0x4f83e4a0A4605b471CcB290db3aBDB920b5C70b0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4f83e4a0A4605b471CcB290db3aBDB920b5C70b0/logo.png b/blockchains/ethereum/assets/0x4f83e4a0A4605b471CcB290db3aBDB920b5C70b0/logo.png new file mode 100644 index 00000000..dfa5271d Binary files /dev/null and b/blockchains/ethereum/assets/0x4f83e4a0A4605b471CcB290db3aBDB920b5C70b0/logo.png differ diff --git a/blockchains/ethereum/assets/0x4f878C0852722b0976A955d68B376E4Cd4Ae99E5/info.json b/blockchains/ethereum/assets/0x4f878C0852722b0976A955d68B376E4Cd4Ae99E5/info.json new file mode 100644 index 00000000..85f6aec1 --- /dev/null +++ b/blockchains/ethereum/assets/0x4f878C0852722b0976A955d68B376E4Cd4Ae99E5/info.json @@ -0,0 +1,11 @@ +{ + "name": "WaykiCoin", + "symbol": "WIC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x4f878C0852722b0976A955d68B376E4Cd4Ae99E5", + "status": "abandoned", + "id": "0x4f878C0852722b0976A955d68B376E4Cd4Ae99E5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4f878C0852722b0976A955d68B376E4Cd4Ae99E5/logo.png b/blockchains/ethereum/assets/0x4f878C0852722b0976A955d68B376E4Cd4Ae99E5/logo.png new file mode 100644 index 00000000..5bd6c4e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x4f878C0852722b0976A955d68B376E4Cd4Ae99E5/logo.png differ diff --git a/blockchains/ethereum/assets/0x4f8e5DE400DE08B164E7421B3EE387f461beCD1A/info.json b/blockchains/ethereum/assets/0x4f8e5DE400DE08B164E7421B3EE387f461beCD1A/info.json new file mode 100644 index 00000000..cc2f5de0 --- /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 00000000..b17bf63f Binary files /dev/null and b/blockchains/ethereum/assets/0x4f8e5DE400DE08B164E7421B3EE387f461beCD1A/logo.png differ diff --git a/blockchains/ethereum/assets/0x4fAC0ccD9e2ed9fD462D42B66Fb81bA9A1f6F25E/info.json b/blockchains/ethereum/assets/0x4fAC0ccD9e2ed9fD462D42B66Fb81bA9A1f6F25E/info.json new file mode 100644 index 00000000..43b60ffa --- /dev/null +++ b/blockchains/ethereum/assets/0x4fAC0ccD9e2ed9fD462D42B66Fb81bA9A1f6F25E/info.json @@ -0,0 +1,11 @@ +{ + "name": "AXiaL Entertainment Digital Asset", + "symbol": "AXL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://axl.team/", + "explorer": "https://etherscan.io/token/0x4fAC0ccD9e2ed9fD462D42B66Fb81bA9A1f6F25E", + "status": "abandoned", + "id": "0x4fAC0ccD9e2ed9fD462D42B66Fb81bA9A1f6F25E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4fAC0ccD9e2ed9fD462D42B66Fb81bA9A1f6F25E/logo.png b/blockchains/ethereum/assets/0x4fAC0ccD9e2ed9fD462D42B66Fb81bA9A1f6F25E/logo.png new file mode 100644 index 00000000..a5fc1c28 Binary files /dev/null and b/blockchains/ethereum/assets/0x4fAC0ccD9e2ed9fD462D42B66Fb81bA9A1f6F25E/logo.png differ diff --git a/blockchains/ethereum/assets/0x4fE83213D56308330EC302a8BD641f1d0113A4Cc/info.json b/blockchains/ethereum/assets/0x4fE83213D56308330EC302a8BD641f1d0113A4Cc/info.json new file mode 100644 index 00000000..a5da53e7 --- /dev/null +++ b/blockchains/ethereum/assets/0x4fE83213D56308330EC302a8BD641f1d0113A4Cc/info.json @@ -0,0 +1,33 @@ +{ + "name": "NuCypher", + "type": "ERC20", + "symbol": "NU", + "decimals": 18, + "website": "https://www.nucypher.com/", + "description": "NuCypher is a decentralized threshold cryptography network.", + "explorer": "https://etherscan.io/token/0x4fE83213D56308330EC302a8BD641f1d0113A4Cc", + "status": "active", + "id": "0x4fE83213D56308330EC302a8BD641f1d0113A4Cc", + "links": [ + { + "name": "github", + "url": "https://github.com/nucypher/" + }, + { + "name": "x", + "url": "https://x.com/nucypher" + }, + { + "name": "telegram", + "url": "https://t.me/nucypher" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nucypher/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nucypher/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4fE83213D56308330EC302a8BD641f1d0113A4Cc/logo.png b/blockchains/ethereum/assets/0x4fE83213D56308330EC302a8BD641f1d0113A4Cc/logo.png new file mode 100644 index 00000000..dadf0512 Binary files /dev/null and b/blockchains/ethereum/assets/0x4fE83213D56308330EC302a8BD641f1d0113A4Cc/logo.png differ diff --git a/blockchains/ethereum/assets/0x500565E098d98A273224eC8Fb33d98dC8946F8B9/info.json b/blockchains/ethereum/assets/0x500565E098d98A273224eC8Fb33d98dC8946F8B9/info.json new file mode 100644 index 00000000..e775d1fe --- /dev/null +++ b/blockchains/ethereum/assets/0x500565E098d98A273224eC8Fb33d98dC8946F8B9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Game Cell Coin", + "symbol": "GCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x500565E098d98A273224eC8Fb33d98dC8946F8B9", + "status": "abandoned", + "id": "0x500565E098d98A273224eC8Fb33d98dC8946F8B9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x500565E098d98A273224eC8Fb33d98dC8946F8B9/logo.png b/blockchains/ethereum/assets/0x500565E098d98A273224eC8Fb33d98dC8946F8B9/logo.png new file mode 100644 index 00000000..aa982744 Binary files /dev/null and b/blockchains/ethereum/assets/0x500565E098d98A273224eC8Fb33d98dC8946F8B9/logo.png differ diff --git a/blockchains/ethereum/assets/0x500Df47E1dF0ef06039218dCF0960253D89D6658/info.json b/blockchains/ethereum/assets/0x500Df47E1dF0ef06039218dCF0960253D89D6658/info.json new file mode 100644 index 00000000..12b7af27 --- /dev/null +++ b/blockchains/ethereum/assets/0x500Df47E1dF0ef06039218dCF0960253D89D6658/info.json @@ -0,0 +1,11 @@ +{ + "name": "Authpaper Coin", + "symbol": "AUPC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.authpaper.io/", + "explorer": "https://etherscan.io/token/0x500Df47E1dF0ef06039218dCF0960253D89D6658", + "status": "abandoned", + "id": "0x500Df47E1dF0ef06039218dCF0960253D89D6658" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x500Df47E1dF0ef06039218dCF0960253D89D6658/logo.png b/blockchains/ethereum/assets/0x500Df47E1dF0ef06039218dCF0960253D89D6658/logo.png new file mode 100644 index 00000000..187b24e5 Binary files /dev/null and b/blockchains/ethereum/assets/0x500Df47E1dF0ef06039218dCF0960253D89D6658/logo.png differ diff --git a/blockchains/ethereum/assets/0x500d15aA5b01E7eb77e4D4C8283Df3E6c49Da754/info.json b/blockchains/ethereum/assets/0x500d15aA5b01E7eb77e4D4C8283Df3E6c49Da754/info.json new file mode 100644 index 00000000..45faf65a --- /dev/null +++ b/blockchains/ethereum/assets/0x500d15aA5b01E7eb77e4D4C8283Df3E6c49Da754/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hashthereum", + "symbol": "HETH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://hashthereum.info/", + "explorer": "https://etherscan.io/token/0x500d15aA5b01E7eb77e4D4C8283Df3E6c49Da754", + "status": "abandoned", + "id": "0x500d15aA5b01E7eb77e4D4C8283Df3E6c49Da754" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x500d15aA5b01E7eb77e4D4C8283Df3E6c49Da754/logo.png b/blockchains/ethereum/assets/0x500d15aA5b01E7eb77e4D4C8283Df3E6c49Da754/logo.png new file mode 100644 index 00000000..8a4cef5d Binary files /dev/null and b/blockchains/ethereum/assets/0x500d15aA5b01E7eb77e4D4C8283Df3E6c49Da754/logo.png differ diff --git a/blockchains/ethereum/assets/0x501262281B2Ba043e2fbf14904980689CDDB0C78/info.json b/blockchains/ethereum/assets/0x501262281B2Ba043e2fbf14904980689CDDB0C78/info.json new file mode 100644 index 00000000..3369f82c --- /dev/null +++ b/blockchains/ethereum/assets/0x501262281B2Ba043e2fbf14904980689CDDB0C78/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mithril Ore", + "symbol": "MORE", + "type": "ERC20", + "decimals": 2, + "description": "Mithril Ore is a Casper Ethereum Staking Pool. Participation in Casper may be limited due to complexity, network-congestion, and/or lack of funds. This token allows participation by resolving these variables.", + "website": "http://www.mithrilore.io/", + "explorer": "https://etherscan.io/token/0x501262281B2Ba043e2fbf14904980689CDDB0C78", + "status": "active", + "id": "0x501262281B2Ba043e2fbf14904980689CDDB0C78" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x501262281B2Ba043e2fbf14904980689CDDB0C78/logo.png b/blockchains/ethereum/assets/0x501262281B2Ba043e2fbf14904980689CDDB0C78/logo.png new file mode 100644 index 00000000..54cfaf85 Binary files /dev/null and b/blockchains/ethereum/assets/0x501262281B2Ba043e2fbf14904980689CDDB0C78/logo.png differ diff --git a/blockchains/ethereum/assets/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/info.json b/blockchains/ethereum/assets/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/info.json new file mode 100644 index 00000000..cfb3d274 --- /dev/null +++ b/blockchains/ethereum/assets/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wojak Coin", + "type": "ERC20", + "symbol": "WOJAK", + "decimals": 18, + "website": "https://www.wojak.finance/", + "description": "A digital asset inspired by the Wojak meme.", + "explorer": "https://etherscan.io/token/0x5026F006B85729a8b14553FAE6af249aD16c9aaB", + "status": "active", + "id": "0x5026F006B85729a8b14553FAE6af249aD16c9aaB", + "links": [ + { + "name": "x", + "url": "https://x.com/wojakcoineth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wojak/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/logo.png b/blockchains/ethereum/assets/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/logo.png new file mode 100644 index 00000000..354f229d Binary files /dev/null and b/blockchains/ethereum/assets/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/logo.png differ diff --git a/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/info.json b/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/info.json new file mode 100644 index 00000000..3ba47cca --- /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 00000000..74ec9785 Binary files /dev/null and b/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/logo.png differ diff --git a/blockchains/ethereum/assets/0x5036aA791115Ad4d35493De68B5529648A36De8e/info.json b/blockchains/ethereum/assets/0x5036aA791115Ad4d35493De68B5529648A36De8e/info.json new file mode 100644 index 00000000..870d7f49 --- /dev/null +++ b/blockchains/ethereum/assets/0x5036aA791115Ad4d35493De68B5529648A36De8e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tachain", + "symbol": "TCHN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5036aA791115Ad4d35493De68B5529648A36De8e", + "status": "abandoned", + "id": "0x5036aA791115Ad4d35493De68B5529648A36De8e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5036aA791115Ad4d35493De68B5529648A36De8e/logo.png b/blockchains/ethereum/assets/0x5036aA791115Ad4d35493De68B5529648A36De8e/logo.png new file mode 100644 index 00000000..c75083dc Binary files /dev/null and b/blockchains/ethereum/assets/0x5036aA791115Ad4d35493De68B5529648A36De8e/logo.png differ diff --git a/blockchains/ethereum/assets/0x50398DE4651FFeCF38A93cc4dE9f2F0e20f3daD1/info.json b/blockchains/ethereum/assets/0x50398DE4651FFeCF38A93cc4dE9f2F0e20f3daD1/info.json new file mode 100644 index 00000000..1df8af42 --- /dev/null +++ b/blockchains/ethereum/assets/0x50398DE4651FFeCF38A93cc4dE9f2F0e20f3daD1/info.json @@ -0,0 +1,11 @@ +{ + "name": "PYR", + "symbol": "PYR", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x50398DE4651FFeCF38A93cc4dE9f2F0e20f3daD1", + "status": "abandoned", + "id": "0x50398DE4651FFeCF38A93cc4dE9f2F0e20f3daD1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x50398DE4651FFeCF38A93cc4dE9f2F0e20f3daD1/logo.png b/blockchains/ethereum/assets/0x50398DE4651FFeCF38A93cc4dE9f2F0e20f3daD1/logo.png new file mode 100644 index 00000000..a7fa9a11 Binary files /dev/null and b/blockchains/ethereum/assets/0x50398DE4651FFeCF38A93cc4dE9f2F0e20f3daD1/logo.png differ diff --git a/blockchains/ethereum/assets/0x5046E860ff274fb8c66106B0Ffb8155849fB0787/info.json b/blockchains/ethereum/assets/0x5046E860ff274fb8c66106B0Ffb8155849fB0787/info.json new file mode 100644 index 00000000..c7313ea8 --- /dev/null +++ b/blockchains/ethereum/assets/0x5046E860ff274fb8c66106B0Ffb8155849fB0787/info.json @@ -0,0 +1,11 @@ +{ + "name": "JavaScript", + "symbol": "JS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://javascripttoken.pagedemo.co/", + "explorer": "https://etherscan.io/token/0x5046E860ff274fb8c66106B0Ffb8155849fB0787", + "status": "abandoned", + "id": "0x5046E860ff274fb8c66106B0Ffb8155849fB0787" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5046E860ff274fb8c66106B0Ffb8155849fB0787/logo.png b/blockchains/ethereum/assets/0x5046E860ff274fb8c66106B0Ffb8155849fB0787/logo.png new file mode 100644 index 00000000..b3a833a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x5046E860ff274fb8c66106B0Ffb8155849fB0787/logo.png differ diff --git a/blockchains/ethereum/assets/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff/info.json b/blockchains/ethereum/assets/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff/info.json new file mode 100644 index 00000000..03ac9317 --- /dev/null +++ b/blockchains/ethereum/assets/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff/info.json @@ -0,0 +1,36 @@ +{ + "name": "Stable WING", + "website": "app.ichi.org", + "description": "oneWING is an ICHI-created stablecoin for Wing.", + "explorer": "https://etherscan.io/token/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff", + "type": "ERC20", + "symbol": "oneWING", + "decimals": 18, + "status": "active", + "id": "0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm/ichi-oneToken" + }, + { + "name": "x", + "url": "https://x.com/ichifarm" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + }, + { + "name": "discord", + "url": "https://discord.com/invite/DvsYCfK8" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff/logo.png b/blockchains/ethereum/assets/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff/logo.png new file mode 100644 index 00000000..be448c03 Binary files /dev/null and b/blockchains/ethereum/assets/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff/logo.png differ diff --git a/blockchains/ethereum/assets/0x505d0fFa350B2687eB8393AeBD14632F2990991a/info.json b/blockchains/ethereum/assets/0x505d0fFa350B2687eB8393AeBD14632F2990991a/info.json new file mode 100644 index 00000000..c534a9c1 --- /dev/null +++ b/blockchains/ethereum/assets/0x505d0fFa350B2687eB8393AeBD14632F2990991a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tatcoin", + "website": "https://abitnetwork.com", + "description": "TAT is a utility token designed to create value and alleviate most financial problems faced by Africans", + "explorer": "https://etherscan.io/token/0x505d0fFa350B2687eB8393AeBD14632F2990991a", + "type": "ERC20", + "symbol": "TAT", + "decimals": 18, + "status": "active", + "id": "0x505d0fFa350B2687eB8393AeBD14632F2990991a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x505d0fFa350B2687eB8393AeBD14632F2990991a/logo.png b/blockchains/ethereum/assets/0x505d0fFa350B2687eB8393AeBD14632F2990991a/logo.png new file mode 100644 index 00000000..ea5281a7 Binary files /dev/null and b/blockchains/ethereum/assets/0x505d0fFa350B2687eB8393AeBD14632F2990991a/logo.png differ diff --git a/blockchains/ethereum/assets/0x50625b636dAB619BF6AF75f693Dc486E56C2a694/info.json b/blockchains/ethereum/assets/0x50625b636dAB619BF6AF75f693Dc486E56C2a694/info.json new file mode 100644 index 00000000..a64591f3 --- /dev/null +++ b/blockchains/ethereum/assets/0x50625b636dAB619BF6AF75f693Dc486E56C2a694/info.json @@ -0,0 +1,11 @@ +{ + "name": "Groovy Hooman Token", + "symbol": "GHT", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "https://groovyhooman.com/", + "explorer": "https://etherscan.io/token/0x50625b636dAB619BF6AF75f693Dc486E56C2a694", + "status": "abandoned", + "id": "0x50625b636dAB619BF6AF75f693Dc486E56C2a694" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x50625b636dAB619BF6AF75f693Dc486E56C2a694/logo.png b/blockchains/ethereum/assets/0x50625b636dAB619BF6AF75f693Dc486E56C2a694/logo.png new file mode 100755 index 00000000..cc42e938 Binary files /dev/null and b/blockchains/ethereum/assets/0x50625b636dAB619BF6AF75f693Dc486E56C2a694/logo.png differ diff --git a/blockchains/ethereum/assets/0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a/info.json b/blockchains/ethereum/assets/0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a/info.json new file mode 100644 index 00000000..2c0df8df --- /dev/null +++ b/blockchains/ethereum/assets/0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a/info.json @@ -0,0 +1,25 @@ +{ + "name": "Blocksquare", + "website": "https://blocksquare.io/", + "description": "Increase value and liquidity of real estate properties in your portfolio.", + "explorer": "https://etherscan.io/token/0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a", + "type": "ERC20", + "symbol": "BST", + "decimals": 18, + "status": "active", + "id": "0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a", + "links": [ + { + "name": "github", + "url": "https://github.com/blocksquare" + }, + { + "name": "x", + "url": "https://x.com/blocksquare_io" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Blocksquare_io/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a/logo.png b/blockchains/ethereum/assets/0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a/logo.png new file mode 100755 index 00000000..86a9412d Binary files /dev/null and b/blockchains/ethereum/assets/0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a/logo.png differ diff --git a/blockchains/ethereum/assets/0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9/info.json b/blockchains/ethereum/assets/0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9/info.json new file mode 100644 index 00000000..ceeba215 --- /dev/null +++ b/blockchains/ethereum/assets/0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9/info.json @@ -0,0 +1,37 @@ +{ + "name": "FTX Token (FTT)", + "type": "ERC20", + "symbol": "FTT", + "decimals": 18, + "website": "https://ftx.com", + "description": "FTX’s leveraged tokens aim to provide a clean, automated way for users to get leverage. FTT is the FTX ecosystem utility token.", + "explorer": "https://etherscan.io/token/0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9", + "status": "active", + "id": "0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9", + "links": [ + { + "name": "blog", + "url": "https://blog.ftx.com/" + }, + { + "name": "x", + "url": "https://x.com/FTX_Official" + }, + { + "name": "telegram", + "url": "https://t.me/FTX_Official" + }, + { + "name": "whitepaper", + "url": "https://docs.google.com/document/d/1u5MOkENoWP8PGcjuoKqRkNP5Gl1LLRB9JvAHwffQ7ec/view" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ftx-token/" + }, + { + "name": "blog", + "url": "https://blog.ftx.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9/logo.png b/blockchains/ethereum/assets/0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9/logo.png new file mode 100644 index 00000000..8476fe01 Binary files /dev/null and b/blockchains/ethereum/assets/0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9/logo.png differ diff --git a/blockchains/ethereum/assets/0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd/info.json b/blockchains/ethereum/assets/0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd/info.json new file mode 100644 index 00000000..affbb803 --- /dev/null +++ b/blockchains/ethereum/assets/0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd/info.json @@ -0,0 +1,41 @@ +{ + "name": "Razor Network", + "website": "https://razor.network/", + "description": "Razor Network is a decentralized oracle network, which connects smart contracts with real-world off-chain data in a fast, robust and secure way. The core of Razor Network is a set of smart contracts that can run on any Ethereum compatible blockchain. Razor Network is blockchain agnostic and will be integrated with multiple blockchains.", + "explorer": "https://etherscan.io/token/0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd", + "type": "ERC20", + "symbol": "RAZOR", + "decimals": 18, + "status": "active", + "id": "0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd", + "links": [ + { + "name": "github", + "url": "https://github.com/razor-network" + }, + { + "name": "x", + "url": "https://x.com/razor_network" + }, + { + "name": "telegram", + "url": "https://t.me/razornetwork" + }, + { + "name": "discord", + "url": "https://discord.com/invite/yvrHg85ycE" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/RazorNetwork" + }, + { + "name": "medium", + "url": "https://medium.com/razor-network" + }, + { + "name": "whitepaper", + "url": "https://razor.network/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd/logo.png b/blockchains/ethereum/assets/0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd/logo.png new file mode 100644 index 00000000..f8a847b2 Binary files /dev/null and b/blockchains/ethereum/assets/0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd/logo.png differ diff --git a/blockchains/ethereum/assets/0x50Ee674689d75C0f88E8f83cfE8c4B69E8fd590D/info.json b/blockchains/ethereum/assets/0x50Ee674689d75C0f88E8f83cfE8c4B69E8fd590D/info.json new file mode 100644 index 00000000..bde29996 --- /dev/null +++ b/blockchains/ethereum/assets/0x50Ee674689d75C0f88E8f83cfE8c4B69E8fd590D/info.json @@ -0,0 +1,11 @@ +{ + "name": "EmphyCoin", + "symbol": "EPY", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x50Ee674689d75C0f88E8f83cfE8c4B69E8fd590D", + "status": "abandoned", + "id": "0x50Ee674689d75C0f88E8f83cfE8c4B69E8fd590D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x50Ee674689d75C0f88E8f83cfE8c4B69E8fd590D/logo.png b/blockchains/ethereum/assets/0x50Ee674689d75C0f88E8f83cfE8c4B69E8fd590D/logo.png new file mode 100644 index 00000000..56a08ce0 Binary files /dev/null and b/blockchains/ethereum/assets/0x50Ee674689d75C0f88E8f83cfE8c4B69E8fd590D/logo.png differ diff --git a/blockchains/ethereum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json b/blockchains/ethereum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json new file mode 100644 index 00000000..2910f53a --- /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 00000000..29c2803e Binary files /dev/null and b/blockchains/ethereum/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/logo.png differ diff --git a/blockchains/ethereum/assets/0x50bC2Ecc0bfDf5666640048038C1ABA7B7525683/info.json b/blockchains/ethereum/assets/0x50bC2Ecc0bfDf5666640048038C1ABA7B7525683/info.json new file mode 100644 index 00000000..0587397a --- /dev/null +++ b/blockchains/ethereum/assets/0x50bC2Ecc0bfDf5666640048038C1ABA7B7525683/info.json @@ -0,0 +1,11 @@ +{ + "name": "carVertical", + "type": "ERC20", + "symbol": "cV", + "decimals": 18, + "website": "https://www.carvertical.com", + "description": "carVertical is building a decentralized vehicle registry.", + "explorer": "https://etherscan.io/token/0x50bC2Ecc0bfDf5666640048038C1ABA7B7525683", + "status": "active", + "id": "0x50bC2Ecc0bfDf5666640048038C1ABA7B7525683" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x50bC2Ecc0bfDf5666640048038C1ABA7B7525683/logo.png b/blockchains/ethereum/assets/0x50bC2Ecc0bfDf5666640048038C1ABA7B7525683/logo.png new file mode 100644 index 00000000..bea2c1e5 Binary files /dev/null and b/blockchains/ethereum/assets/0x50bC2Ecc0bfDf5666640048038C1ABA7B7525683/logo.png differ diff --git a/blockchains/ethereum/assets/0x50d78dF1ae1b29DEad5764624c6617f326825912/info.json b/blockchains/ethereum/assets/0x50d78dF1ae1b29DEad5764624c6617f326825912/info.json new file mode 100644 index 00000000..57665da1 --- /dev/null +++ b/blockchains/ethereum/assets/0x50d78dF1ae1b29DEad5764624c6617f326825912/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R924468", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x50d78dF1ae1b29DEad5764624c6617f326825912", + "status": "abandoned", + "id": "0x50d78dF1ae1b29DEad5764624c6617f326825912" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x50d78dF1ae1b29DEad5764624c6617f326825912/logo.png b/blockchains/ethereum/assets/0x50d78dF1ae1b29DEad5764624c6617f326825912/logo.png new file mode 100644 index 00000000..e80099f8 Binary files /dev/null and b/blockchains/ethereum/assets/0x50d78dF1ae1b29DEad5764624c6617f326825912/logo.png differ diff --git a/blockchains/ethereum/assets/0x50dc23F6A26825209670c2b6A6a93506F9732f00/info.json b/blockchains/ethereum/assets/0x50dc23F6A26825209670c2b6A6a93506F9732f00/info.json new file mode 100644 index 00000000..f055e38b --- /dev/null +++ b/blockchains/ethereum/assets/0x50dc23F6A26825209670c2b6A6a93506F9732f00/info.json @@ -0,0 +1,11 @@ +{ + "name": "MCOM", + "symbol": "MCOM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x50dc23F6A26825209670c2b6A6a93506F9732f00", + "status": "abandoned", + "id": "0x50dc23F6A26825209670c2b6A6a93506F9732f00" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x50dc23F6A26825209670c2b6A6a93506F9732f00/logo.png b/blockchains/ethereum/assets/0x50dc23F6A26825209670c2b6A6a93506F9732f00/logo.png new file mode 100644 index 00000000..71b6b1c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x50dc23F6A26825209670c2b6A6a93506F9732f00/logo.png differ diff --git a/blockchains/ethereum/assets/0x50f31a45C1502B77c07Aa86698dB16ff3b35C333/info.json b/blockchains/ethereum/assets/0x50f31a45C1502B77c07Aa86698dB16ff3b35C333/info.json new file mode 100644 index 00000000..6c49f627 --- /dev/null +++ b/blockchains/ethereum/assets/0x50f31a45C1502B77c07Aa86698dB16ff3b35C333/info.json @@ -0,0 +1,11 @@ +{ + "name": "INFOREX", + "symbol": "IREX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x50f31a45C1502B77c07Aa86698dB16ff3b35C333", + "status": "abandoned", + "id": "0x50f31a45C1502B77c07Aa86698dB16ff3b35C333" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x50f31a45C1502B77c07Aa86698dB16ff3b35C333/logo.png b/blockchains/ethereum/assets/0x50f31a45C1502B77c07Aa86698dB16ff3b35C333/logo.png new file mode 100755 index 00000000..b4c78460 Binary files /dev/null and b/blockchains/ethereum/assets/0x50f31a45C1502B77c07Aa86698dB16ff3b35C333/logo.png differ diff --git a/blockchains/ethereum/assets/0x5102791cA02FC3595398400BFE0e33d7B6C82267/info.json b/blockchains/ethereum/assets/0x5102791cA02FC3595398400BFE0e33d7B6C82267/info.json new file mode 100644 index 00000000..12943de4 --- /dev/null +++ b/blockchains/ethereum/assets/0x5102791cA02FC3595398400BFE0e33d7B6C82267/info.json @@ -0,0 +1,11 @@ +{ + "name": "LEADCOIN", + "symbol": "LDC", + "type": "ERC20", + "decimals": 18, + "description": "LeadCoin empowers businesses to sell their unused leads and buy hot leads from other businesses. Sellers automatically share their unused leads in real-time. LeadCoin’s matching algorithm then analyzes and matches leads to buyers.", + "website": "https://www.leadcoin.network/", + "explorer": "https://etherscan.io/token/0x5102791cA02FC3595398400BFE0e33d7B6C82267", + "status": "active", + "id": "0x5102791cA02FC3595398400BFE0e33d7B6C82267" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5102791cA02FC3595398400BFE0e33d7B6C82267/logo.png b/blockchains/ethereum/assets/0x5102791cA02FC3595398400BFE0e33d7B6C82267/logo.png new file mode 100644 index 00000000..15adddbd Binary files /dev/null and b/blockchains/ethereum/assets/0x5102791cA02FC3595398400BFE0e33d7B6C82267/logo.png differ diff --git a/blockchains/ethereum/assets/0x510Dd21055188Eda378714DE3bb5591Ffa0CC468/info.json b/blockchains/ethereum/assets/0x510Dd21055188Eda378714DE3bb5591Ffa0CC468/info.json new file mode 100644 index 00000000..adec4c9c --- /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 00000000..ea300600 Binary files /dev/null and b/blockchains/ethereum/assets/0x510Dd21055188Eda378714DE3bb5591Ffa0CC468/logo.png differ diff --git a/blockchains/ethereum/assets/0x511232281BCD64d15b08C7f78825C45968caDbbf/info.json b/blockchains/ethereum/assets/0x511232281BCD64d15b08C7f78825C45968caDbbf/info.json new file mode 100644 index 00000000..a32b099d --- /dev/null +++ b/blockchains/ethereum/assets/0x511232281BCD64d15b08C7f78825C45968caDbbf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tritecoin", + "symbol": "TRT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x511232281BCD64d15b08C7f78825C45968caDbbf", + "status": "abandoned", + "id": "0x511232281BCD64d15b08C7f78825C45968caDbbf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x511232281BCD64d15b08C7f78825C45968caDbbf/logo.png b/blockchains/ethereum/assets/0x511232281BCD64d15b08C7f78825C45968caDbbf/logo.png new file mode 100644 index 00000000..9769afa8 Binary files /dev/null and b/blockchains/ethereum/assets/0x511232281BCD64d15b08C7f78825C45968caDbbf/logo.png differ diff --git a/blockchains/ethereum/assets/0x5114C3Db64727FB14D5c3D88BEDE12D87b26211d/info.json b/blockchains/ethereum/assets/0x5114C3Db64727FB14D5c3D88BEDE12D87b26211d/info.json new file mode 100644 index 00000000..d88a10b5 --- /dev/null +++ b/blockchains/ethereum/assets/0x5114C3Db64727FB14D5c3D88BEDE12D87b26211d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Grow Token", + "symbol": "GRWT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5114C3Db64727FB14D5c3D88BEDE12D87b26211d", + "status": "abandoned", + "id": "0x5114C3Db64727FB14D5c3D88BEDE12D87b26211d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5114C3Db64727FB14D5c3D88BEDE12D87b26211d/logo.png b/blockchains/ethereum/assets/0x5114C3Db64727FB14D5c3D88BEDE12D87b26211d/logo.png new file mode 100644 index 00000000..fb77f860 Binary files /dev/null and b/blockchains/ethereum/assets/0x5114C3Db64727FB14D5c3D88BEDE12D87b26211d/logo.png differ diff --git a/blockchains/ethereum/assets/0x511759F0318750c7A9B5d2e083253720F4cE63A6/info.json b/blockchains/ethereum/assets/0x511759F0318750c7A9B5d2e083253720F4cE63A6/info.json new file mode 100644 index 00000000..b761c017 --- /dev/null +++ b/blockchains/ethereum/assets/0x511759F0318750c7A9B5d2e083253720F4cE63A6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wisely coin", + "symbol": "wise", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x511759F0318750c7A9B5d2e083253720F4cE63A6", + "status": "abandoned", + "id": "0x511759F0318750c7A9B5d2e083253720F4cE63A6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x511759F0318750c7A9B5d2e083253720F4cE63A6/logo.png b/blockchains/ethereum/assets/0x511759F0318750c7A9B5d2e083253720F4cE63A6/logo.png new file mode 100644 index 00000000..d19d8add Binary files /dev/null and b/blockchains/ethereum/assets/0x511759F0318750c7A9B5d2e083253720F4cE63A6/logo.png differ diff --git a/blockchains/ethereum/assets/0x511798118E18f0c51aCabF138427d6caaDeccC76/info.json b/blockchains/ethereum/assets/0x511798118E18f0c51aCabF138427d6caaDeccC76/info.json new file mode 100644 index 00000000..5e9f0407 --- /dev/null +++ b/blockchains/ethereum/assets/0x511798118E18f0c51aCabF138427d6caaDeccC76/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitCareCoin", + "symbol": "BCARE", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x511798118E18f0c51aCabF138427d6caaDeccC76", + "status": "abandoned", + "id": "0x511798118E18f0c51aCabF138427d6caaDeccC76" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x511798118E18f0c51aCabF138427d6caaDeccC76/logo.png b/blockchains/ethereum/assets/0x511798118E18f0c51aCabF138427d6caaDeccC76/logo.png new file mode 100644 index 00000000..d67e517b Binary files /dev/null and b/blockchains/ethereum/assets/0x511798118E18f0c51aCabF138427d6caaDeccC76/logo.png differ diff --git a/blockchains/ethereum/assets/0x5121E348e897dAEf1Eef23959Ab290e5557CF274/info.json b/blockchains/ethereum/assets/0x5121E348e897dAEf1Eef23959Ab290e5557CF274/info.json new file mode 100644 index 00000000..178b1d07 --- /dev/null +++ b/blockchains/ethereum/assets/0x5121E348e897dAEf1Eef23959Ab290e5557CF274/info.json @@ -0,0 +1,11 @@ +{ + "name": "PolyAi", + "symbol": "AI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5121E348e897dAEf1Eef23959Ab290e5557CF274", + "status": "abandoned", + "id": "0x5121E348e897dAEf1Eef23959Ab290e5557CF274" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5121E348e897dAEf1Eef23959Ab290e5557CF274/logo.png b/blockchains/ethereum/assets/0x5121E348e897dAEf1Eef23959Ab290e5557CF274/logo.png new file mode 100644 index 00000000..a898ea6c Binary files /dev/null and b/blockchains/ethereum/assets/0x5121E348e897dAEf1Eef23959Ab290e5557CF274/logo.png differ diff --git a/blockchains/ethereum/assets/0x5123C0555Bc9064db9fD8676d077E06D39393866/info.json b/blockchains/ethereum/assets/0x5123C0555Bc9064db9fD8676d077E06D39393866/info.json new file mode 100644 index 00000000..7aa16011 --- /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/0x51344E5Ca564D1B8f05bDB483305a3CafeC3DF78/info.json b/blockchains/ethereum/assets/0x51344E5Ca564D1B8f05bDB483305a3CafeC3DF78/info.json new file mode 100644 index 00000000..4f26cabd --- /dev/null +++ b/blockchains/ethereum/assets/0x51344E5Ca564D1B8f05bDB483305a3CafeC3DF78/info.json @@ -0,0 +1,11 @@ +{ + "name": "Colombian", + "symbol": "ECOP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x51344E5Ca564D1B8f05bDB483305a3CafeC3DF78", + "status": "abandoned", + "id": "0x51344E5Ca564D1B8f05bDB483305a3CafeC3DF78" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x51344E5Ca564D1B8f05bDB483305a3CafeC3DF78/logo.png b/blockchains/ethereum/assets/0x51344E5Ca564D1B8f05bDB483305a3CafeC3DF78/logo.png new file mode 100644 index 00000000..c60201e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x51344E5Ca564D1B8f05bDB483305a3CafeC3DF78/logo.png differ diff --git a/blockchains/ethereum/assets/0x5136C98A80811C3f46bDda8B5c4555CFd9f812F0/info.json b/blockchains/ethereum/assets/0x5136C98A80811C3f46bDda8B5c4555CFd9f812F0/info.json new file mode 100644 index 00000000..a2684811 --- /dev/null +++ b/blockchains/ethereum/assets/0x5136C98A80811C3f46bDda8B5c4555CFd9f812F0/info.json @@ -0,0 +1,11 @@ +{ + "name": "indaHash Coin", + "symbol": "IDH", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://indahash.com/ico", + "explorer": "https://etherscan.io/token/0x5136C98A80811C3f46bDda8B5c4555CFd9f812F0", + "status": "abandoned", + "id": "0x5136C98A80811C3f46bDda8B5c4555CFd9f812F0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5136C98A80811C3f46bDda8B5c4555CFd9f812F0/logo.png b/blockchains/ethereum/assets/0x5136C98A80811C3f46bDda8B5c4555CFd9f812F0/logo.png new file mode 100755 index 00000000..5f83f069 Binary files /dev/null and b/blockchains/ethereum/assets/0x5136C98A80811C3f46bDda8B5c4555CFd9f812F0/logo.png differ diff --git a/blockchains/ethereum/assets/0x5136c475c553Fe6ABFBb9Fd31C90A5Fc9FDfF5D3/info.json b/blockchains/ethereum/assets/0x5136c475c553Fe6ABFBb9Fd31C90A5Fc9FDfF5D3/info.json new file mode 100644 index 00000000..82a070b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x5136c475c553Fe6ABFBb9Fd31C90A5Fc9FDfF5D3/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoodWineToken", + "symbol": "GWT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5136c475c553Fe6ABFBb9Fd31C90A5Fc9FDfF5D3", + "status": "abandoned", + "id": "0x5136c475c553Fe6ABFBb9Fd31C90A5Fc9FDfF5D3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5136c475c553Fe6ABFBb9Fd31C90A5Fc9FDfF5D3/logo.png b/blockchains/ethereum/assets/0x5136c475c553Fe6ABFBb9Fd31C90A5Fc9FDfF5D3/logo.png new file mode 100644 index 00000000..dc3623fc Binary files /dev/null and b/blockchains/ethereum/assets/0x5136c475c553Fe6ABFBb9Fd31C90A5Fc9FDfF5D3/logo.png differ diff --git a/blockchains/ethereum/assets/0x5137A403Dd25e48DE528912a4aF62881e625D801/info.json b/blockchains/ethereum/assets/0x5137A403Dd25e48DE528912a4aF62881e625D801/info.json new file mode 100644 index 00000000..6b7e7a30 --- /dev/null +++ b/blockchains/ethereum/assets/0x5137A403Dd25e48DE528912a4aF62881e625D801/info.json @@ -0,0 +1,11 @@ +{ + "name": "Huddl", + "symbol": "HUDDL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5137A403Dd25e48DE528912a4aF62881e625D801", + "status": "abandoned", + "id": "0x5137A403Dd25e48DE528912a4aF62881e625D801" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5137A403Dd25e48DE528912a4aF62881e625D801/logo.png b/blockchains/ethereum/assets/0x5137A403Dd25e48DE528912a4aF62881e625D801/logo.png new file mode 100644 index 00000000..da5cb78b Binary files /dev/null and b/blockchains/ethereum/assets/0x5137A403Dd25e48DE528912a4aF62881e625D801/logo.png differ diff --git a/blockchains/ethereum/assets/0x5140e8453f913f53F9412a5AA126B64094d54e89/info.json b/blockchains/ethereum/assets/0x5140e8453f913f53F9412a5AA126B64094d54e89/info.json new file mode 100644 index 00000000..e7a53d18 --- /dev/null +++ b/blockchains/ethereum/assets/0x5140e8453f913f53F9412a5AA126B64094d54e89/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST 8", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5140e8453f913f53F9412a5AA126B64094d54e89", + "status": "abandoned", + "id": "0x5140e8453f913f53F9412a5AA126B64094d54e89" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5140e8453f913f53F9412a5AA126B64094d54e89/logo.png b/blockchains/ethereum/assets/0x5140e8453f913f53F9412a5AA126B64094d54e89/logo.png new file mode 100644 index 00000000..c2fe3377 Binary files /dev/null and b/blockchains/ethereum/assets/0x5140e8453f913f53F9412a5AA126B64094d54e89/logo.png differ diff --git a/blockchains/ethereum/assets/0x514910771AF9Ca656af840dff83E8264EcF986CA/info.json b/blockchains/ethereum/assets/0x514910771AF9Ca656af840dff83E8264EcF986CA/info.json new file mode 100644 index 00000000..f9c8a640 --- /dev/null +++ b/blockchains/ethereum/assets/0x514910771AF9Ca656af840dff83E8264EcF986CA/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://etherscan.io/token/0x514910771AF9Ca656af840dff83E8264EcF986CA", + "type": "ERC20", + "symbol": "LINK", + "decimals": 18, + "status": "active", + "id": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + "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/ethereum/assets/0x514910771AF9Ca656af840dff83E8264EcF986CA/logo.png b/blockchains/ethereum/assets/0x514910771AF9Ca656af840dff83E8264EcF986CA/logo.png new file mode 100644 index 00000000..ab55f5e2 Binary files /dev/null and b/blockchains/ethereum/assets/0x514910771AF9Ca656af840dff83E8264EcF986CA/logo.png differ diff --git a/blockchains/ethereum/assets/0x5149fFdf642D551539f7B68Bd75fA37b16371eb9/info.json b/blockchains/ethereum/assets/0x5149fFdf642D551539f7B68Bd75fA37b16371eb9/info.json new file mode 100644 index 00000000..b3a86d7a --- /dev/null +++ b/blockchains/ethereum/assets/0x5149fFdf642D551539f7B68Bd75fA37b16371eb9/info.json @@ -0,0 +1,11 @@ +{ + "name": "KhanhTest01", + "symbol": "KT1", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5149fFdf642D551539f7B68Bd75fA37b16371eb9", + "status": "abandoned", + "id": "0x5149fFdf642D551539f7B68Bd75fA37b16371eb9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5149fFdf642D551539f7B68Bd75fA37b16371eb9/logo.png b/blockchains/ethereum/assets/0x5149fFdf642D551539f7B68Bd75fA37b16371eb9/logo.png new file mode 100644 index 00000000..46d5158f Binary files /dev/null and b/blockchains/ethereum/assets/0x5149fFdf642D551539f7B68Bd75fA37b16371eb9/logo.png differ diff --git a/blockchains/ethereum/assets/0x514cdb9cd8A2fb2BdCf7A3b8DDd098CaF466E548/info.json b/blockchains/ethereum/assets/0x514cdb9cd8A2fb2BdCf7A3b8DDd098CaF466E548/info.json new file mode 100644 index 00000000..b9fba824 --- /dev/null +++ b/blockchains/ethereum/assets/0x514cdb9cd8A2fb2BdCf7A3b8DDd098CaF466E548/info.json @@ -0,0 +1,11 @@ +{ + "name": "RedPanda Earth ", + "type": "ERC20", + "symbol": "REDPANDA", + "decimals": 9, + "website": "https://redpanda.earth", + "description": "RedPanda Earth is a deflationary token focused on donating to charitable organizations worldwide to save our endangered species.", + "explorer": "https://etherscan.io/token/0x514cdb9cd8A2fb2BdCf7A3b8DDd098CaF466E548", + "status": "active", + "id": "0x514cdb9cd8A2fb2BdCf7A3b8DDd098CaF466E548" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x514cdb9cd8A2fb2BdCf7A3b8DDd098CaF466E548/logo.png b/blockchains/ethereum/assets/0x514cdb9cd8A2fb2BdCf7A3b8DDd098CaF466E548/logo.png new file mode 100644 index 00000000..0bd8796f Binary files /dev/null and b/blockchains/ethereum/assets/0x514cdb9cd8A2fb2BdCf7A3b8DDd098CaF466E548/logo.png differ diff --git a/blockchains/ethereum/assets/0x5150956E082C748Ca837a5dFa0a7C10CA4697f9c/info.json b/blockchains/ethereum/assets/0x5150956E082C748Ca837a5dFa0a7C10CA4697f9c/info.json new file mode 100644 index 00000000..f75cecdb --- /dev/null +++ b/blockchains/ethereum/assets/0x5150956E082C748Ca837a5dFa0a7C10CA4697f9c/info.json @@ -0,0 +1,19 @@ +{ + "name": "Zeedex", + "website": "https://zeedex.io", + "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", + "type": "ERC20", + "symbol": "ZDEX", + "decimals": 18, + "status": "active", + "id": "0x5150956E082C748Ca837a5dFa0a7C10CA4697f9c", + "links": [ + { + "name": "github", + "url": "https://github.com/zeedexio" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5150956E082C748Ca837a5dFa0a7C10CA4697f9c/logo.png b/blockchains/ethereum/assets/0x5150956E082C748Ca837a5dFa0a7C10CA4697f9c/logo.png new file mode 100644 index 00000000..5828296c Binary files /dev/null and b/blockchains/ethereum/assets/0x5150956E082C748Ca837a5dFa0a7C10CA4697f9c/logo.png differ diff --git a/blockchains/ethereum/assets/0x515669d308f887Fd83a471C7764F5d084886D34D/info.json b/blockchains/ethereum/assets/0x515669d308f887Fd83a471C7764F5d084886D34D/info.json new file mode 100644 index 00000000..5985343e --- /dev/null +++ b/blockchains/ethereum/assets/0x515669d308f887Fd83a471C7764F5d084886D34D/info.json @@ -0,0 +1,11 @@ +{ + "name": "MUXE Token", + "symbol": "MUXE", + "type": "ERC20", + "decimals": 18, + "description": "MUXE The Innovative Platform For all your needs. MUXE is the innovative platform that uses Blockchain technology to allow users to LIST, SEARCH, SECURE and SETTLE all your needs.", + "website": "https://www.muxe.io/", + "explorer": "https://etherscan.io/token/0x515669d308f887Fd83a471C7764F5d084886D34D", + "status": "active", + "id": "0x515669d308f887Fd83a471C7764F5d084886D34D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x515669d308f887Fd83a471C7764F5d084886D34D/logo.png b/blockchains/ethereum/assets/0x515669d308f887Fd83a471C7764F5d084886D34D/logo.png new file mode 100644 index 00000000..d55b29cd Binary files /dev/null and b/blockchains/ethereum/assets/0x515669d308f887Fd83a471C7764F5d084886D34D/logo.png differ diff --git a/blockchains/ethereum/assets/0x515bA0a2E286AF10115284F151cF398688A69170/info.json b/blockchains/ethereum/assets/0x515bA0a2E286AF10115284F151cF398688A69170/info.json new file mode 100644 index 00000000..57693db2 --- /dev/null +++ b/blockchains/ethereum/assets/0x515bA0a2E286AF10115284F151cF398688A69170/info.json @@ -0,0 +1,11 @@ +{ + "name": "TenX Token", + "symbol": "TENX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x515bA0a2E286AF10115284F151cF398688A69170", + "status": "abandoned", + "id": "0x515bA0a2E286AF10115284F151cF398688A69170" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x515bA0a2E286AF10115284F151cF398688A69170/logo.png b/blockchains/ethereum/assets/0x515bA0a2E286AF10115284F151cF398688A69170/logo.png new file mode 100644 index 00000000..0bbb3c78 Binary files /dev/null and b/blockchains/ethereum/assets/0x515bA0a2E286AF10115284F151cF398688A69170/logo.png differ diff --git a/blockchains/ethereum/assets/0x5165d24277cD063F5ac44Efd447B27025e888f37/info.json b/blockchains/ethereum/assets/0x5165d24277cD063F5ac44Efd447B27025e888f37/info.json new file mode 100644 index 00000000..8ac22941 --- /dev/null +++ b/blockchains/ethereum/assets/0x5165d24277cD063F5ac44Efd447B27025e888f37/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave YFI", + "symbol": "aYFI", + "type": "ERC20", + "decimals": 18, + "description": "Aave YFI is an interest bearing token pegged 1:1 to the underlying YFI deposited in Aave. aYFI accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x5165d24277cD063F5ac44Efd447B27025e888f37", + "status": "active", + "id": "0x5165d24277cD063F5ac44Efd447B27025e888f37" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5165d24277cD063F5ac44Efd447B27025e888f37/logo.png b/blockchains/ethereum/assets/0x5165d24277cD063F5ac44Efd447B27025e888f37/logo.png new file mode 100644 index 00000000..766a811b Binary files /dev/null and b/blockchains/ethereum/assets/0x5165d24277cD063F5ac44Efd447B27025e888f37/logo.png differ diff --git a/blockchains/ethereum/assets/0x516E5436bAfdc11083654DE7Bb9b95382d08d5DE/info.json b/blockchains/ethereum/assets/0x516E5436bAfdc11083654DE7Bb9b95382d08d5DE/info.json new file mode 100644 index 00000000..cea19c11 --- /dev/null +++ b/blockchains/ethereum/assets/0x516E5436bAfdc11083654DE7Bb9b95382d08d5DE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ormeus Coin", + "symbol": "ORME", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x516E5436bAfdc11083654DE7Bb9b95382d08d5DE", + "status": "abandoned", + "id": "0x516E5436bAfdc11083654DE7Bb9b95382d08d5DE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x516E5436bAfdc11083654DE7Bb9b95382d08d5DE/logo.png b/blockchains/ethereum/assets/0x516E5436bAfdc11083654DE7Bb9b95382d08d5DE/logo.png new file mode 100755 index 00000000..4852be1a Binary files /dev/null and b/blockchains/ethereum/assets/0x516E5436bAfdc11083654DE7Bb9b95382d08d5DE/logo.png differ diff --git a/blockchains/ethereum/assets/0x519475b31653E46D20cD09F9FdcF3B12BDAcB4f5/info.json b/blockchains/ethereum/assets/0x519475b31653E46D20cD09F9FdcF3B12BDAcB4f5/info.json new file mode 100644 index 00000000..6b354b23 --- /dev/null +++ b/blockchains/ethereum/assets/0x519475b31653E46D20cD09F9FdcF3B12BDAcB4f5/info.json @@ -0,0 +1,11 @@ +{ + "name": "VIU", + "symbol": "VIU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x519475b31653E46D20cD09F9FdcF3B12BDAcB4f5", + "status": "abandoned", + "id": "0x519475b31653E46D20cD09F9FdcF3B12BDAcB4f5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x519475b31653E46D20cD09F9FdcF3B12BDAcB4f5/logo.png b/blockchains/ethereum/assets/0x519475b31653E46D20cD09F9FdcF3B12BDAcB4f5/logo.png new file mode 100644 index 00000000..e912aa6b Binary files /dev/null and b/blockchains/ethereum/assets/0x519475b31653E46D20cD09F9FdcF3B12BDAcB4f5/logo.png differ diff --git a/blockchains/ethereum/assets/0x5197FBE1a86679FF1360E27862BF88B0c5119BD8/info.json b/blockchains/ethereum/assets/0x5197FBE1a86679FF1360E27862BF88B0c5119BD8/info.json new file mode 100644 index 00000000..9461fbcd --- /dev/null +++ b/blockchains/ethereum/assets/0x5197FBE1a86679FF1360E27862BF88B0c5119BD8/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITPIF", + "symbol": "BPF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5197FBE1a86679FF1360E27862BF88B0c5119BD8", + "status": "abandoned", + "id": "0x5197FBE1a86679FF1360E27862BF88B0c5119BD8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5197FBE1a86679FF1360E27862BF88B0c5119BD8/logo.png b/blockchains/ethereum/assets/0x5197FBE1a86679FF1360E27862BF88B0c5119BD8/logo.png new file mode 100644 index 00000000..dc3a48dc Binary files /dev/null and b/blockchains/ethereum/assets/0x5197FBE1a86679FF1360E27862BF88B0c5119BD8/logo.png differ diff --git a/blockchains/ethereum/assets/0x51AD8CDcFE12dd38C746ABE72429B9c870032A7C/info.json b/blockchains/ethereum/assets/0x51AD8CDcFE12dd38C746ABE72429B9c870032A7C/info.json new file mode 100644 index 00000000..f60ca839 --- /dev/null +++ b/blockchains/ethereum/assets/0x51AD8CDcFE12dd38C746ABE72429B9c870032A7C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sky Ether", + "symbol": "SET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x51AD8CDcFE12dd38C746ABE72429B9c870032A7C", + "status": "abandoned", + "id": "0x51AD8CDcFE12dd38C746ABE72429B9c870032A7C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x51AD8CDcFE12dd38C746ABE72429B9c870032A7C/logo.png b/blockchains/ethereum/assets/0x51AD8CDcFE12dd38C746ABE72429B9c870032A7C/logo.png new file mode 100644 index 00000000..760dd7f9 Binary files /dev/null and b/blockchains/ethereum/assets/0x51AD8CDcFE12dd38C746ABE72429B9c870032A7C/logo.png differ diff --git a/blockchains/ethereum/assets/0x51B0dFD23f45e0700C598BBB91beE60e0a175c1B/info.json b/blockchains/ethereum/assets/0x51B0dFD23f45e0700C598BBB91beE60e0a175c1B/info.json new file mode 100644 index 00000000..4bab1cc1 --- /dev/null +++ b/blockchains/ethereum/assets/0x51B0dFD23f45e0700C598BBB91beE60e0a175c1B/info.json @@ -0,0 +1,11 @@ +{ + "name": "FriendsCoin", + "symbol": "FZC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x51B0dFD23f45e0700C598BBB91beE60e0a175c1B", + "status": "abandoned", + "id": "0x51B0dFD23f45e0700C598BBB91beE60e0a175c1B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x51B0dFD23f45e0700C598BBB91beE60e0a175c1B/logo.png b/blockchains/ethereum/assets/0x51B0dFD23f45e0700C598BBB91beE60e0a175c1B/logo.png new file mode 100755 index 00000000..8d0905a7 Binary files /dev/null and b/blockchains/ethereum/assets/0x51B0dFD23f45e0700C598BBB91beE60e0a175c1B/logo.png differ diff --git a/blockchains/ethereum/assets/0x51BC0DeaF7bBE82bC9006b0c3531668a4206D27F/info.json b/blockchains/ethereum/assets/0x51BC0DeaF7bBE82bC9006b0c3531668a4206D27F/info.json new file mode 100644 index 00000000..9d38c919 --- /dev/null +++ b/blockchains/ethereum/assets/0x51BC0DeaF7bBE82bC9006b0c3531668a4206D27F/info.json @@ -0,0 +1,11 @@ +{ + "name": "RAKUN", + "symbol": "RAKU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://rakunworld.com/", + "explorer": "https://etherscan.io/token/0x51BC0DeaF7bBE82bC9006b0c3531668a4206D27F", + "status": "abandoned", + "id": "0x51BC0DeaF7bBE82bC9006b0c3531668a4206D27F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x51BC0DeaF7bBE82bC9006b0c3531668a4206D27F/logo.png b/blockchains/ethereum/assets/0x51BC0DeaF7bBE82bC9006b0c3531668a4206D27F/logo.png new file mode 100644 index 00000000..f103a5a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x51BC0DeaF7bBE82bC9006b0c3531668a4206D27F/logo.png differ diff --git a/blockchains/ethereum/assets/0x51Bb9c623226CE781F4A54FC8F4A530a47142b6B/info.json b/blockchains/ethereum/assets/0x51Bb9c623226CE781F4A54FC8F4A530a47142b6B/info.json new file mode 100644 index 00000000..549708e6 --- /dev/null +++ b/blockchains/ethereum/assets/0x51Bb9c623226CE781F4A54FC8F4A530a47142b6B/info.json @@ -0,0 +1,18 @@ +{ + "name": "Peet DeFi", + "website": "https://peetdecentralized.finance/", + "description": "Core utility, staking, and governance token for Peet decentralized finance platform.", + "explorer": "https://etherscan.io/token/0x51bb9c623226ce781f4a54fc8f4a530a47142b6b", + "research": "https://peetdefi.gitbook.io/docs/", + "type": "ERC20", + "symbol": "PTE", + "decimals": 18, + "status": "active", + "id": "0x51Bb9c623226CE781F4A54FC8F4A530a47142b6B", + "links": [ + { + "name": "whitepaper", + "url": "https://peetdecentralized.finance/litepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x51Bb9c623226CE781F4A54FC8F4A530a47142b6B/logo.png b/blockchains/ethereum/assets/0x51Bb9c623226CE781F4A54FC8F4A530a47142b6B/logo.png new file mode 100644 index 00000000..686395c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x51Bb9c623226CE781F4A54FC8F4A530a47142b6B/logo.png differ diff --git a/blockchains/ethereum/assets/0x51DB5Ad35C671a87207d88fC11d593AC0C8415bd/info.json b/blockchains/ethereum/assets/0x51DB5Ad35C671a87207d88fC11d593AC0C8415bd/info.json new file mode 100644 index 00000000..73c03bc9 --- /dev/null +++ b/blockchains/ethereum/assets/0x51DB5Ad35C671a87207d88fC11d593AC0C8415bd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moeda Loyalty Points", + "symbol": "MDA", + "type": "ERC20", + "decimals": 18, + "description": "From anywhere in the world, secure and transparent contributions can be made in ventures and projects selected by our technical network that promote the enhancement and development of local communities", + "website": "https://moedaseeds.com/", + "explorer": "https://etherscan.io/token/0x51DB5Ad35C671a87207d88fC11d593AC0C8415bd", + "status": "active", + "id": "0x51DB5Ad35C671a87207d88fC11d593AC0C8415bd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x51DB5Ad35C671a87207d88fC11d593AC0C8415bd/logo.png b/blockchains/ethereum/assets/0x51DB5Ad35C671a87207d88fC11d593AC0C8415bd/logo.png new file mode 100644 index 00000000..1856b6ff Binary files /dev/null and b/blockchains/ethereum/assets/0x51DB5Ad35C671a87207d88fC11d593AC0C8415bd/logo.png differ diff --git a/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/info.json b/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/info.json new file mode 100644 index 00000000..5c38ea41 --- /dev/null +++ b/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/info.json @@ -0,0 +1,44 @@ +{ + "name": "VLaunch", + "type": "ERC20", + "symbol": "VPAD", + "decimals": 18, + "website": "https://www.vlaunch.com", + "description": "First Fully Influencer-Backed Multi-Chain Launchpad", + "explorer": "https://etherscan.io/token/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc", + "status": "abandoned", + "id": "0x51FE2E572e97BFEB1D719809d743Ec2675924EDc", + "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/coins/vlaunch" + }, + { + "name": "source_code", + "url": "https://github.com/vlaunchcom" + }, + { + "name": "whitepaper", + "url": "https://www.vlaunch.com/whitepaper" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x51a82905bE168B0eE9855bCfE64109FC88eB87d6/info.json b/blockchains/ethereum/assets/0x51a82905bE168B0eE9855bCfE64109FC88eB87d6/info.json new file mode 100644 index 00000000..d9085c97 --- /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 00000000..c7dd9cb0 --- /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 00000000..33c368f9 Binary files /dev/null and b/blockchains/ethereum/assets/0x51cB253744189f11241becb29BeDd3F1b5384fdB/logo.png differ diff --git a/blockchains/ethereum/assets/0x51e00a95748DBd2a3F47bC5c3b3E7B3F0fea666c/info.json b/blockchains/ethereum/assets/0x51e00a95748DBd2a3F47bC5c3b3E7B3F0fea666c/info.json new file mode 100644 index 00000000..5a519c74 --- /dev/null +++ b/blockchains/ethereum/assets/0x51e00a95748DBd2a3F47bC5c3b3E7B3F0fea666c/info.json @@ -0,0 +1,11 @@ +{ + "name": "DVGToken", + "type": "ERC20", + "symbol": "DVG", + "decimals": 18, + "description": "DAOventures.co DeFi robo-advisor and automated money manager.", + "website": "https://www.daoventures.co/", + "explorer": "https://etherscan.io/token/0x51e00a95748dbd2a3f47bc5c3b3e7b3f0fea666c", + "status": "active", + "id": "0x51e00a95748DBd2a3F47bC5c3b3E7B3F0fea666c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x51e00a95748DBd2a3F47bC5c3b3E7B3F0fea666c/logo.png b/blockchains/ethereum/assets/0x51e00a95748DBd2a3F47bC5c3b3E7B3F0fea666c/logo.png new file mode 100644 index 00000000..1073fcce Binary files /dev/null and b/blockchains/ethereum/assets/0x51e00a95748DBd2a3F47bC5c3b3E7B3F0fea666c/logo.png differ diff --git a/blockchains/ethereum/assets/0x51ee82641Ac238BDe34B9859f98F5F311d6E4954/info.json b/blockchains/ethereum/assets/0x51ee82641Ac238BDe34B9859f98F5F311d6E4954/info.json new file mode 100644 index 00000000..58599255 --- /dev/null +++ b/blockchains/ethereum/assets/0x51ee82641Ac238BDe34B9859f98F5F311d6E4954/info.json @@ -0,0 +1,11 @@ +{ + "name": "IQT Token", + "symbol": "IQT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x51ee82641Ac238BDe34B9859f98F5F311d6E4954", + "status": "abandoned", + "id": "0x51ee82641Ac238BDe34B9859f98F5F311d6E4954" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x51ee82641Ac238BDe34B9859f98F5F311d6E4954/logo.png b/blockchains/ethereum/assets/0x51ee82641Ac238BDe34B9859f98F5F311d6E4954/logo.png new file mode 100644 index 00000000..796f42b8 Binary files /dev/null and b/blockchains/ethereum/assets/0x51ee82641Ac238BDe34B9859f98F5F311d6E4954/logo.png differ diff --git a/blockchains/ethereum/assets/0x51fB3dA8A67861361281AC56Fe2Ad8c3b4539FFa/info.json b/blockchains/ethereum/assets/0x51fB3dA8A67861361281AC56Fe2Ad8c3b4539FFa/info.json new file mode 100644 index 00000000..dad18a6f --- /dev/null +++ b/blockchains/ethereum/assets/0x51fB3dA8A67861361281AC56Fe2Ad8c3b4539FFa/info.json @@ -0,0 +1,11 @@ +{ + "name": "InsurChain2.0", + "symbol": "INSUR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x51fB3dA8A67861361281AC56Fe2Ad8c3b4539FFa", + "status": "abandoned", + "id": "0x51fB3dA8A67861361281AC56Fe2Ad8c3b4539FFa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x51fB3dA8A67861361281AC56Fe2Ad8c3b4539FFa/logo.png b/blockchains/ethereum/assets/0x51fB3dA8A67861361281AC56Fe2Ad8c3b4539FFa/logo.png new file mode 100644 index 00000000..e7438f95 Binary files /dev/null and b/blockchains/ethereum/assets/0x51fB3dA8A67861361281AC56Fe2Ad8c3b4539FFa/logo.png differ diff --git a/blockchains/ethereum/assets/0x51fcc029E8DeA8dCbDF84e11B7fF69c5F3561136/info.json b/blockchains/ethereum/assets/0x51fcc029E8DeA8dCbDF84e11B7fF69c5F3561136/info.json new file mode 100644 index 00000000..b5303751 --- /dev/null +++ b/blockchains/ethereum/assets/0x51fcc029E8DeA8dCbDF84e11B7fF69c5F3561136/info.json @@ -0,0 +1,11 @@ +{ + "name": "NEWDIA", + "symbol": "NDIA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x51fcc029E8DeA8dCbDF84e11B7fF69c5F3561136", + "status": "abandoned", + "id": "0x51fcc029E8DeA8dCbDF84e11B7fF69c5F3561136" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x51fcc029E8DeA8dCbDF84e11B7fF69c5F3561136/logo.png b/blockchains/ethereum/assets/0x51fcc029E8DeA8dCbDF84e11B7fF69c5F3561136/logo.png new file mode 100644 index 00000000..5ea519d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x51fcc029E8DeA8dCbDF84e11B7fF69c5F3561136/logo.png differ diff --git a/blockchains/ethereum/assets/0x5212BD86b83fE7E72e19D95891fd634d98286f04/info.json b/blockchains/ethereum/assets/0x5212BD86b83fE7E72e19D95891fd634d98286f04/info.json new file mode 100644 index 00000000..6879506e --- /dev/null +++ b/blockchains/ethereum/assets/0x5212BD86b83fE7E72e19D95891fd634d98286f04/info.json @@ -0,0 +1,11 @@ +{ + "name": "Maxburn Token", + "symbol": "XMB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5212BD86b83fE7E72e19D95891fd634d98286f04", + "status": "abandoned", + "id": "0x5212BD86b83fE7E72e19D95891fd634d98286f04" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5212BD86b83fE7E72e19D95891fd634d98286f04/logo.png b/blockchains/ethereum/assets/0x5212BD86b83fE7E72e19D95891fd634d98286f04/logo.png new file mode 100644 index 00000000..d56b6966 Binary files /dev/null and b/blockchains/ethereum/assets/0x5212BD86b83fE7E72e19D95891fd634d98286f04/logo.png differ diff --git a/blockchains/ethereum/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json b/blockchains/ethereum/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json new file mode 100644 index 00000000..057fd792 --- /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 00000000..cf1609ac Binary files /dev/null and b/blockchains/ethereum/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/logo.png differ diff --git a/blockchains/ethereum/assets/0x5218E472cFCFE0b64A064F055B43b4cdC9EfD3A6/info.json b/blockchains/ethereum/assets/0x5218E472cFCFE0b64A064F055B43b4cdC9EfD3A6/info.json new file mode 100644 index 00000000..ea6587f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x5218E472cFCFE0b64A064F055B43b4cdC9EfD3A6/info.json @@ -0,0 +1,14 @@ +{ + "name": "unFederalReserve", + "website": "https://unFederalReserve.com", + "description": "unFederalReserve is a banking SaaS company built on blockchain technology. Our banking products are designed for smaller U.S. Treasury chartered banks and non-bank lenders in need of greater liquidity without sacrificing security or compliance.", + "explorer": "https://etherscan.io/token/0x5218E472cFCFE0b64A064F055B43b4cdC9EfD3A6", + "type": "ERC20", + "symbol": "eRSDL", + "decimals": 18, + "status": "active", + "id": "0x5218E472cFCFE0b64A064F055B43b4cdC9EfD3A6", + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5218E472cFCFE0b64A064F055B43b4cdC9EfD3A6/logo.png b/blockchains/ethereum/assets/0x5218E472cFCFE0b64A064F055B43b4cdC9EfD3A6/logo.png new file mode 100644 index 00000000..c9f5954f Binary files /dev/null and b/blockchains/ethereum/assets/0x5218E472cFCFE0b64A064F055B43b4cdC9EfD3A6/logo.png differ diff --git a/blockchains/ethereum/assets/0x5219D24CAa72040F055fC547Cc786a29e025E767/info.json b/blockchains/ethereum/assets/0x5219D24CAa72040F055fC547Cc786a29e025E767/info.json new file mode 100644 index 00000000..0ec11319 --- /dev/null +++ b/blockchains/ethereum/assets/0x5219D24CAa72040F055fC547Cc786a29e025E767/info.json @@ -0,0 +1,11 @@ +{ + "name": "Linden Lab", + "symbol": "LDL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5219D24CAa72040F055fC547Cc786a29e025E767", + "status": "abandoned", + "id": "0x5219D24CAa72040F055fC547Cc786a29e025E767" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5219D24CAa72040F055fC547Cc786a29e025E767/logo.png b/blockchains/ethereum/assets/0x5219D24CAa72040F055fC547Cc786a29e025E767/logo.png new file mode 100644 index 00000000..1a58d1dd Binary files /dev/null and b/blockchains/ethereum/assets/0x5219D24CAa72040F055fC547Cc786a29e025E767/logo.png differ diff --git a/blockchains/ethereum/assets/0x521A2aC7b33b09fA21A1aD7C040F4e1b5912C1d0/info.json b/blockchains/ethereum/assets/0x521A2aC7b33b09fA21A1aD7C040F4e1b5912C1d0/info.json new file mode 100644 index 00000000..e648e3ee --- /dev/null +++ b/blockchains/ethereum/assets/0x521A2aC7b33b09fA21A1aD7C040F4e1b5912C1d0/info.json @@ -0,0 +1,11 @@ +{ + "name": "zTrueUSD", + "symbol": "zTUSD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x521A2aC7b33b09fA21A1aD7C040F4e1b5912C1d0", + "status": "abandoned", + "id": "0x521A2aC7b33b09fA21A1aD7C040F4e1b5912C1d0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x521A2aC7b33b09fA21A1aD7C040F4e1b5912C1d0/logo.png b/blockchains/ethereum/assets/0x521A2aC7b33b09fA21A1aD7C040F4e1b5912C1d0/logo.png new file mode 100644 index 00000000..729f5087 Binary files /dev/null and b/blockchains/ethereum/assets/0x521A2aC7b33b09fA21A1aD7C040F4e1b5912C1d0/logo.png differ diff --git a/blockchains/ethereum/assets/0x521cdd9083b751dba264e9E000d11511993836e9/info.json b/blockchains/ethereum/assets/0x521cdd9083b751dba264e9E000d11511993836e9/info.json new file mode 100644 index 00000000..61c177f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x521cdd9083b751dba264e9E000d11511993836e9/info.json @@ -0,0 +1,11 @@ +{ + "name": "XMAO", + "symbol": "XMAO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x521cdd9083b751dba264e9E000d11511993836e9", + "status": "abandoned", + "id": "0x521cdd9083b751dba264e9E000d11511993836e9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x521cdd9083b751dba264e9E000d11511993836e9/logo.png b/blockchains/ethereum/assets/0x521cdd9083b751dba264e9E000d11511993836e9/logo.png new file mode 100644 index 00000000..831e2601 Binary files /dev/null and b/blockchains/ethereum/assets/0x521cdd9083b751dba264e9E000d11511993836e9/logo.png differ diff --git a/blockchains/ethereum/assets/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/info.json b/blockchains/ethereum/assets/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/info.json new file mode 100644 index 00000000..9c1a9055 --- /dev/null +++ b/blockchains/ethereum/assets/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/info.json @@ -0,0 +1,33 @@ +{ + "name": "pTokens BTC", + "website": "https://ptokens.io/", + "description": "pTokens BTC is a one-to-one pegged tokenised Bitcoin on Ethereum. Leveraging the pTokens system, Bitcoin is automatically moved into the Ethereum protocol as an ERC-777 token. pTokens BTC makes Bitcoin compatible with all financial dApps, bringing unparalleled liquidity to the DeFi ecosystem.", + "explorer": "https://etherscan.io/token/0x5228a22e72ccC52d415EcFd199F99D0665E7733b", + "type": "ERC20", + "symbol": "pBTC", + "decimals": 18, + "status": "active", + "id": "0x5228a22e72ccC52d415EcFd199F99D0665E7733b", + "links": [ + { + "name": "github", + "url": "https://github.com/provable-things" + }, + { + "name": "x", + "url": "https://x.com/pToken pBTC" + }, + { + "name": "telegram", + "url": "https://t.me/ptokens" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/pTokens" + }, + { + "name": "whitepaper", + "url": "https://ptokens.io/ptokens-rev5b.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/logo.png b/blockchains/ethereum/assets/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/logo.png new file mode 100644 index 00000000..bbf9eb9b Binary files /dev/null and b/blockchains/ethereum/assets/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/logo.png differ diff --git a/blockchains/ethereum/assets/0x52353940A0271f0048d01eD15Ad13923662190dd/info.json b/blockchains/ethereum/assets/0x52353940A0271f0048d01eD15Ad13923662190dd/info.json new file mode 100644 index 00000000..6fc2cc69 --- /dev/null +++ b/blockchains/ethereum/assets/0x52353940A0271f0048d01eD15Ad13923662190dd/info.json @@ -0,0 +1,11 @@ +{ + "name": "MAHOGANY COIN", + "symbol": "MHG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x52353940A0271f0048d01eD15Ad13923662190dd", + "status": "abandoned", + "id": "0x52353940A0271f0048d01eD15Ad13923662190dd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x52353940A0271f0048d01eD15Ad13923662190dd/logo.png b/blockchains/ethereum/assets/0x52353940A0271f0048d01eD15Ad13923662190dd/logo.png new file mode 100644 index 00000000..b2688b64 Binary files /dev/null and b/blockchains/ethereum/assets/0x52353940A0271f0048d01eD15Ad13923662190dd/logo.png differ diff --git a/blockchains/ethereum/assets/0x525794473F7ab5715C81d06d10f52d11cC052804/info.json b/blockchains/ethereum/assets/0x525794473F7ab5715C81d06d10f52d11cC052804/info.json new file mode 100644 index 00000000..5ffef15d --- /dev/null +++ b/blockchains/ethereum/assets/0x525794473F7ab5715C81d06d10f52d11cC052804/info.json @@ -0,0 +1,11 @@ +{ + "name": "12Ships", + "symbol": "TSHP", + "type": "ERC20", + "decimals": 18, + "description": "12ships will make your journey to the blockchain investment.", + "website": "http://12ships.com/", + "explorer": "https://etherscan.io/token/0x525794473F7ab5715C81d06d10f52d11cC052804", + "status": "active", + "id": "0x525794473F7ab5715C81d06d10f52d11cC052804" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x525794473F7ab5715C81d06d10f52d11cC052804/logo.png b/blockchains/ethereum/assets/0x525794473F7ab5715C81d06d10f52d11cC052804/logo.png new file mode 100644 index 00000000..ffca1b03 Binary files /dev/null and b/blockchains/ethereum/assets/0x525794473F7ab5715C81d06d10f52d11cC052804/logo.png differ diff --git a/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/info.json b/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/info.json new file mode 100644 index 00000000..1b225ca3 --- /dev/null +++ b/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/info.json @@ -0,0 +1,32 @@ +{ + "name": "NYM", + "type": "ERC20", + "symbol": "NYM", + "decimals": 6, + "website": "https://nymtech.net/", + "description": "Nym is an open-source, decentralized and permissionless privacy system. It provides full-stack privacy, allowing other applications, services or blockchains to provide their users with strong metadata protection, at both the network level (mixnet), and the application level (anonymous credentials).", + "explorer": "https://etherscan.io/token/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1", + "status": "active", + "id": "0x525A8F6F3Ba4752868cde25164382BfbaE3990e1", + "links": [ + { + "name": "x", + "url": "https://x.com/nymproject" + }, + { + "name": "github", + "url": "https://github.com/nymtech" + }, + { + "name": "telegram", + "url": "https://t.me/nymchan" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/nym/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/logo.png b/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/logo.png new file mode 100644 index 00000000..35395713 Binary files /dev/null and b/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/logo.png differ diff --git a/blockchains/ethereum/assets/0x525Ebb05F90Df8b2A70be1D49A938217F1F4e941/info.json b/blockchains/ethereum/assets/0x525Ebb05F90Df8b2A70be1D49A938217F1F4e941/info.json new file mode 100644 index 00000000..624d0804 --- /dev/null +++ b/blockchains/ethereum/assets/0x525Ebb05F90Df8b2A70be1D49A938217F1F4e941/info.json @@ -0,0 +1,11 @@ +{ + "name": "Happy Coin", + "symbol": "HACO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x525Ebb05F90Df8b2A70be1D49A938217F1F4e941", + "status": "spam", + "id": "0x525Ebb05F90Df8b2A70be1D49A938217F1F4e941" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x525Ebb05F90Df8b2A70be1D49A938217F1F4e941/logo.png b/blockchains/ethereum/assets/0x525Ebb05F90Df8b2A70be1D49A938217F1F4e941/logo.png new file mode 100644 index 00000000..a8f59bb9 Binary files /dev/null and b/blockchains/ethereum/assets/0x525Ebb05F90Df8b2A70be1D49A938217F1F4e941/logo.png differ diff --git a/blockchains/ethereum/assets/0x526Ccc90191A9472299323816bD2c784C0A1BCDE/info.json b/blockchains/ethereum/assets/0x526Ccc90191A9472299323816bD2c784C0A1BCDE/info.json new file mode 100644 index 00000000..8a211389 --- /dev/null +++ b/blockchains/ethereum/assets/0x526Ccc90191A9472299323816bD2c784C0A1BCDE/info.json @@ -0,0 +1,11 @@ +{ + "name": "DataOnBlock", + "symbol": "DBLK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x526Ccc90191A9472299323816bD2c784C0A1BCDE", + "status": "abandoned", + "id": "0x526Ccc90191A9472299323816bD2c784C0A1BCDE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x526Ccc90191A9472299323816bD2c784C0A1BCDE/logo.png b/blockchains/ethereum/assets/0x526Ccc90191A9472299323816bD2c784C0A1BCDE/logo.png new file mode 100644 index 00000000..55d15c86 Binary files /dev/null and b/blockchains/ethereum/assets/0x526Ccc90191A9472299323816bD2c784C0A1BCDE/logo.png differ diff --git a/blockchains/ethereum/assets/0x5283D291DBCF85356A21bA090E6db59121208b44/info.json b/blockchains/ethereum/assets/0x5283D291DBCF85356A21bA090E6db59121208b44/info.json new file mode 100644 index 00000000..15842e17 --- /dev/null +++ b/blockchains/ethereum/assets/0x5283D291DBCF85356A21bA090E6db59121208b44/info.json @@ -0,0 +1,28 @@ +{ + "name": "Blur", + "type": "ERC20", + "symbol": "BLUR", + "decimals": 18, + "website": "https://blur.io/", + "description": "Blur is the NFT marketplace for pro traders. The goal is to make Blur a marketplace that the entire NFT community owns and profits from.", + "explorer": "https://etherscan.io/token/0x5283d291dbcf85356a21ba090e6db59121208b44", + "status": "active", + "id": "0x5283D291DBCF85356A21bA090E6db59121208b44", + "links": [ + { + "name": "x", + "url": "https://x.com/blur_io" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/blur/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/blur-token/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5283D291DBCF85356A21bA090E6db59121208b44/logo.png b/blockchains/ethereum/assets/0x5283D291DBCF85356A21bA090E6db59121208b44/logo.png new file mode 100644 index 00000000..f8383d88 Binary files /dev/null and b/blockchains/ethereum/assets/0x5283D291DBCF85356A21bA090E6db59121208b44/logo.png differ diff --git a/blockchains/ethereum/assets/0x528d068AE69e90c90AD090b3c2b0D18241E9e9b5/info.json b/blockchains/ethereum/assets/0x528d068AE69e90c90AD090b3c2b0D18241E9e9b5/info.json new file mode 100644 index 00000000..e0f6001a --- /dev/null +++ b/blockchains/ethereum/assets/0x528d068AE69e90c90AD090b3c2b0D18241E9e9b5/info.json @@ -0,0 +1,11 @@ +{ + "name": "XstarToken", + "symbol": "XT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x528d068AE69e90c90AD090b3c2b0D18241E9e9b5", + "status": "abandoned", + "id": "0x528d068AE69e90c90AD090b3c2b0D18241E9e9b5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x528d068AE69e90c90AD090b3c2b0D18241E9e9b5/logo.png b/blockchains/ethereum/assets/0x528d068AE69e90c90AD090b3c2b0D18241E9e9b5/logo.png new file mode 100644 index 00000000..3c1e1e6e Binary files /dev/null and b/blockchains/ethereum/assets/0x528d068AE69e90c90AD090b3c2b0D18241E9e9b5/logo.png differ diff --git a/blockchains/ethereum/assets/0x5292EB1d4f669e697AD14E55D151013969485711/info.json b/blockchains/ethereum/assets/0x5292EB1d4f669e697AD14E55D151013969485711/info.json new file mode 100644 index 00000000..8bdd88b0 --- /dev/null +++ b/blockchains/ethereum/assets/0x5292EB1d4f669e697AD14E55D151013969485711/info.json @@ -0,0 +1,11 @@ +{ + "name": "WorkValley", + "symbol": "WVT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5292EB1d4f669e697AD14E55D151013969485711", + "status": "abandoned", + "id": "0x5292EB1d4f669e697AD14E55D151013969485711" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5292EB1d4f669e697AD14E55D151013969485711/logo.png b/blockchains/ethereum/assets/0x5292EB1d4f669e697AD14E55D151013969485711/logo.png new file mode 100644 index 00000000..9d37dbd6 Binary files /dev/null and b/blockchains/ethereum/assets/0x5292EB1d4f669e697AD14E55D151013969485711/logo.png differ diff --git a/blockchains/ethereum/assets/0x52A7cB918c11A16958bE40CBA7E31e32a499a465/info.json b/blockchains/ethereum/assets/0x52A7cB918c11A16958bE40CBA7E31e32a499a465/info.json new file mode 100644 index 00000000..6acd8577 --- /dev/null +++ b/blockchains/ethereum/assets/0x52A7cB918c11A16958bE40CBA7E31e32a499a465/info.json @@ -0,0 +1,11 @@ +{ + "name": "fidentiaX", + "symbol": "fdX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x52A7cB918c11A16958bE40CBA7E31e32a499a465", + "status": "abandoned", + "id": "0x52A7cB918c11A16958bE40CBA7E31e32a499a465" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x52A7cB918c11A16958bE40CBA7E31e32a499a465/logo.png b/blockchains/ethereum/assets/0x52A7cB918c11A16958bE40CBA7E31e32a499a465/logo.png new file mode 100644 index 00000000..655d3aba Binary files /dev/null and b/blockchains/ethereum/assets/0x52A7cB918c11A16958bE40CBA7E31e32a499a465/logo.png differ diff --git a/blockchains/ethereum/assets/0x52A8845DF664D76C69d2EEa607CD793565aF42B8/info.json b/blockchains/ethereum/assets/0x52A8845DF664D76C69d2EEa607CD793565aF42B8/info.json new file mode 100644 index 00000000..3504e54f --- /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 00000000..9557c948 Binary files /dev/null and b/blockchains/ethereum/assets/0x52A8845DF664D76C69d2EEa607CD793565aF42B8/logo.png differ diff --git a/blockchains/ethereum/assets/0x52DB8ebF894036ec997Da693C5fa237A4fb69d10/info.json b/blockchains/ethereum/assets/0x52DB8ebF894036ec997Da693C5fa237A4fb69d10/info.json new file mode 100644 index 00000000..d0b720e5 --- /dev/null +++ b/blockchains/ethereum/assets/0x52DB8ebF894036ec997Da693C5fa237A4fb69d10/info.json @@ -0,0 +1,11 @@ +{ + "name": "Curriculum Vitae", + "symbol": "CVH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x52DB8ebF894036ec997Da693C5fa237A4fb69d10", + "status": "abandoned", + "id": "0x52DB8ebF894036ec997Da693C5fa237A4fb69d10" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x52DB8ebF894036ec997Da693C5fa237A4fb69d10/logo.png b/blockchains/ethereum/assets/0x52DB8ebF894036ec997Da693C5fa237A4fb69d10/logo.png new file mode 100755 index 00000000..70864c34 Binary files /dev/null and b/blockchains/ethereum/assets/0x52DB8ebF894036ec997Da693C5fa237A4fb69d10/logo.png differ diff --git a/blockchains/ethereum/assets/0x52Fe31c97e5c29EA63CbcFB045E1171427Bb9248/info.json b/blockchains/ethereum/assets/0x52Fe31c97e5c29EA63CbcFB045E1171427Bb9248/info.json new file mode 100644 index 00000000..ff8ed6a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x52Fe31c97e5c29EA63CbcFB045E1171427Bb9248/info.json @@ -0,0 +1,11 @@ +{ + "name": "NewRich", + "symbol": "NRCH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x52Fe31c97e5c29EA63CbcFB045E1171427Bb9248", + "status": "abandoned", + "id": "0x52Fe31c97e5c29EA63CbcFB045E1171427Bb9248" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x52Fe31c97e5c29EA63CbcFB045E1171427Bb9248/logo.png b/blockchains/ethereum/assets/0x52Fe31c97e5c29EA63CbcFB045E1171427Bb9248/logo.png new file mode 100644 index 00000000..e1ab9e8d Binary files /dev/null and b/blockchains/ethereum/assets/0x52Fe31c97e5c29EA63CbcFB045E1171427Bb9248/logo.png differ diff --git a/blockchains/ethereum/assets/0x52a669d086A8df6F57074B0740997b24e6FDA530/info.json b/blockchains/ethereum/assets/0x52a669d086A8df6F57074B0740997b24e6FDA530/info.json new file mode 100644 index 00000000..40b9d2d2 --- /dev/null +++ b/blockchains/ethereum/assets/0x52a669d086A8df6F57074B0740997b24e6FDA530/info.json @@ -0,0 +1,11 @@ +{ + "name": "earlybirdcoin", + "symbol": "EBC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x52a669d086A8df6F57074B0740997b24e6FDA530", + "status": "abandoned", + "id": "0x52a669d086A8df6F57074B0740997b24e6FDA530" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x52a669d086A8df6F57074B0740997b24e6FDA530/logo.png b/blockchains/ethereum/assets/0x52a669d086A8df6F57074B0740997b24e6FDA530/logo.png new file mode 100644 index 00000000..1ee4cf1f Binary files /dev/null and b/blockchains/ethereum/assets/0x52a669d086A8df6F57074B0740997b24e6FDA530/logo.png differ diff --git a/blockchains/ethereum/assets/0x52b65CE1391C49eaE108017c4442077b3C2Bd17a/info.json b/blockchains/ethereum/assets/0x52b65CE1391C49eaE108017c4442077b3C2Bd17a/info.json new file mode 100644 index 00000000..56ff99a2 --- /dev/null +++ b/blockchains/ethereum/assets/0x52b65CE1391C49eaE108017c4442077b3C2Bd17a/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEG Wrapped USDC", + "symbol": "fUSDC", + "type": "ERC20", + "decimals": 6, + "description": "FEG Wrapped USDC", + "website": "https://fegtoken.com", + "explorer": "https://etherscan.io/token/0x52b65ce1391c49eae108017c4442077b3c2bd17a", + "status": "active", + "id": "0x52b65CE1391C49eaE108017c4442077b3C2Bd17a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x52b65CE1391C49eaE108017c4442077b3C2Bd17a/logo.png b/blockchains/ethereum/assets/0x52b65CE1391C49eaE108017c4442077b3C2Bd17a/logo.png new file mode 100644 index 00000000..fa402770 Binary files /dev/null and b/blockchains/ethereum/assets/0x52b65CE1391C49eaE108017c4442077b3C2Bd17a/logo.png differ diff --git a/blockchains/ethereum/assets/0x52fb36C83ad33C1824912FC81071cA5eEB8AB390/info.json b/blockchains/ethereum/assets/0x52fb36C83ad33C1824912FC81071cA5eEB8AB390/info.json new file mode 100644 index 00000000..8e079dc5 --- /dev/null +++ b/blockchains/ethereum/assets/0x52fb36C83ad33C1824912FC81071cA5eEB8AB390/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fidelium Token", + "symbol": "FID", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x52fb36C83ad33C1824912FC81071cA5eEB8AB390", + "status": "abandoned", + "id": "0x52fb36C83ad33C1824912FC81071cA5eEB8AB390" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x52fb36C83ad33C1824912FC81071cA5eEB8AB390/logo.png b/blockchains/ethereum/assets/0x52fb36C83ad33C1824912FC81071cA5eEB8AB390/logo.png new file mode 100755 index 00000000..97f70eae Binary files /dev/null and b/blockchains/ethereum/assets/0x52fb36C83ad33C1824912FC81071cA5eEB8AB390/logo.png differ diff --git a/blockchains/ethereum/assets/0x5301Eae39a4cBa1CC2A74E861fDed062cA3E3420/info.json b/blockchains/ethereum/assets/0x5301Eae39a4cBa1CC2A74E861fDed062cA3E3420/info.json new file mode 100644 index 00000000..25caa254 --- /dev/null +++ b/blockchains/ethereum/assets/0x5301Eae39a4cBa1CC2A74E861fDed062cA3E3420/info.json @@ -0,0 +1,11 @@ +{ + "name": "Centaure Token", + "symbol": "CEN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5301Eae39a4cBa1CC2A74E861fDed062cA3E3420", + "status": "abandoned", + "id": "0x5301Eae39a4cBa1CC2A74E861fDed062cA3E3420" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5301Eae39a4cBa1CC2A74E861fDed062cA3E3420/logo.png b/blockchains/ethereum/assets/0x5301Eae39a4cBa1CC2A74E861fDed062cA3E3420/logo.png new file mode 100644 index 00000000..8bbe5333 Binary files /dev/null and b/blockchains/ethereum/assets/0x5301Eae39a4cBa1CC2A74E861fDed062cA3E3420/logo.png differ diff --git a/blockchains/ethereum/assets/0x53066cdDBc0099eb6c96785d9b3DF2AAeEDE5DA3/info.json b/blockchains/ethereum/assets/0x53066cdDBc0099eb6c96785d9b3DF2AAeEDE5DA3/info.json new file mode 100644 index 00000000..83f16af9 --- /dev/null +++ b/blockchains/ethereum/assets/0x53066cdDBc0099eb6c96785d9b3DF2AAeEDE5DA3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Penta Network Token", + "symbol": "PNT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.penta.global", + "explorer": "https://etherscan.io/token/0x53066cdDBc0099eb6c96785d9b3DF2AAeEDE5DA3", + "status": "active", + "id": "0x53066cdDBc0099eb6c96785d9b3DF2AAeEDE5DA3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x53066cdDBc0099eb6c96785d9b3DF2AAeEDE5DA3/logo.png b/blockchains/ethereum/assets/0x53066cdDBc0099eb6c96785d9b3DF2AAeEDE5DA3/logo.png new file mode 100755 index 00000000..765f7d4a Binary files /dev/null and b/blockchains/ethereum/assets/0x53066cdDBc0099eb6c96785d9b3DF2AAeEDE5DA3/logo.png differ diff --git a/blockchains/ethereum/assets/0x5313E18463Cf2F4b68b392a5b11f94dE5528D01d/info.json b/blockchains/ethereum/assets/0x5313E18463Cf2F4b68b392a5b11f94dE5528D01d/info.json new file mode 100644 index 00000000..f53e5b31 --- /dev/null +++ b/blockchains/ethereum/assets/0x5313E18463Cf2F4b68b392a5b11f94dE5528D01d/info.json @@ -0,0 +1,11 @@ +{ + "name": "ullu", + "symbol": "ULLU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ullu.io/", + "explorer": "https://etherscan.io/token/0x5313E18463Cf2F4b68b392a5b11f94dE5528D01d", + "status": "abandoned", + "id": "0x5313E18463Cf2F4b68b392a5b11f94dE5528D01d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5313E18463Cf2F4b68b392a5b11f94dE5528D01d/logo.png b/blockchains/ethereum/assets/0x5313E18463Cf2F4b68b392a5b11f94dE5528D01d/logo.png new file mode 100644 index 00000000..68015ad1 Binary files /dev/null and b/blockchains/ethereum/assets/0x5313E18463Cf2F4b68b392a5b11f94dE5528D01d/logo.png differ diff --git a/blockchains/ethereum/assets/0x5322A3556F979cE2180B30e689a9436fDDCB1021/info.json b/blockchains/ethereum/assets/0x5322A3556F979cE2180B30e689a9436fDDCB1021/info.json new file mode 100644 index 00000000..c70265a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x5322A3556F979cE2180B30e689a9436fDDCB1021/info.json @@ -0,0 +1,21 @@ +{ + "name": "yTSLA Finance", + "website": "https://ytsla.finance/", + "description": "$yTSLA is an experimental parody token. This project is not affiliated with Tesla Inc, Elon Musk or $MEME. yTSLA is a novelty and was given away through a free airdrop and farm yield. The distribution of yTSLA was conducted in a decentralized manner. yTSLA’s inherit value is $0.00. If the value is higher than $0.00 on the open market then please note that the price can quickly go back down to $0.00.", + "explorer": "https://etherscan.io/token/0x5322A3556F979cE2180B30e689a9436fDDCB1021", + "type": "ERC20", + "symbol": "yTSLA", + "decimals": 18, + "status": "active", + "id": "0x5322A3556F979cE2180B30e689a9436fDDCB1021", + "links": [ + { + "name": "x", + "url": "https://x.com/yTSLA" + }, + { + "name": "reddit", + "url": "https://reddit.com/yTSLA" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5322A3556F979cE2180B30e689a9436fDDCB1021/logo.png b/blockchains/ethereum/assets/0x5322A3556F979cE2180B30e689a9436fDDCB1021/logo.png new file mode 100644 index 00000000..2d369fa5 Binary files /dev/null and b/blockchains/ethereum/assets/0x5322A3556F979cE2180B30e689a9436fDDCB1021/logo.png differ diff --git a/blockchains/ethereum/assets/0x53378825D95281737914a8A2ac0E5A9304aE5Ed7/info.json b/blockchains/ethereum/assets/0x53378825D95281737914a8A2ac0E5A9304aE5Ed7/info.json new file mode 100644 index 00000000..81f0d602 --- /dev/null +++ b/blockchains/ethereum/assets/0x53378825D95281737914a8A2ac0E5A9304aE5Ed7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Samurai Token", + "website": "https://samuraiswap.org", + "description": "is an ER20 token where liquidity is locked at Uniswap, holders will be allowed to stake their tokens to the platform and make amazing gains.", + "explorer": "https://etherscan.io/token/0x53378825D95281737914a8A2ac0E5A9304aE5Ed7", + "type": "ERC20", + "symbol": "SAM", + "decimals": 18, + "status": "active", + "id": "0x53378825D95281737914a8A2ac0E5A9304aE5Ed7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x53378825D95281737914a8A2ac0E5A9304aE5Ed7/logo.png b/blockchains/ethereum/assets/0x53378825D95281737914a8A2ac0E5A9304aE5Ed7/logo.png new file mode 100644 index 00000000..d10b1b5c Binary files /dev/null and b/blockchains/ethereum/assets/0x53378825D95281737914a8A2ac0E5A9304aE5Ed7/logo.png differ diff --git a/blockchains/ethereum/assets/0x53437f622bf47e758C301D0E1d2649fd42A8bAa6/info.json b/blockchains/ethereum/assets/0x53437f622bf47e758C301D0E1d2649fd42A8bAa6/info.json new file mode 100644 index 00000000..c5dc222c --- /dev/null +++ b/blockchains/ethereum/assets/0x53437f622bf47e758C301D0E1d2649fd42A8bAa6/info.json @@ -0,0 +1,11 @@ +{ + "name": "NewYorkCoin", + "symbol": "NYC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x53437f622bf47e758C301D0E1d2649fd42A8bAa6", + "status": "abandoned", + "id": "0x53437f622bf47e758C301D0E1d2649fd42A8bAa6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x53437f622bf47e758C301D0E1d2649fd42A8bAa6/logo.png b/blockchains/ethereum/assets/0x53437f622bf47e758C301D0E1d2649fd42A8bAa6/logo.png new file mode 100755 index 00000000..59915c73 Binary files /dev/null and b/blockchains/ethereum/assets/0x53437f622bf47e758C301D0E1d2649fd42A8bAa6/logo.png differ diff --git a/blockchains/ethereum/assets/0x534546C490A4Ed2a9D0c3555447Bb9b4b01bcb9E/info.json b/blockchains/ethereum/assets/0x534546C490A4Ed2a9D0c3555447Bb9b4b01bcb9E/info.json new file mode 100644 index 00000000..b6af3d12 --- /dev/null +++ b/blockchains/ethereum/assets/0x534546C490A4Ed2a9D0c3555447Bb9b4b01bcb9E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yotro", + "symbol": "YTRO", + "type": "ERC20", + "decimals": 17, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x534546C490A4Ed2a9D0c3555447Bb9b4b01bcb9E", + "status": "abandoned", + "id": "0x534546C490A4Ed2a9D0c3555447Bb9b4b01bcb9E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x534546C490A4Ed2a9D0c3555447Bb9b4b01bcb9E/logo.png b/blockchains/ethereum/assets/0x534546C490A4Ed2a9D0c3555447Bb9b4b01bcb9E/logo.png new file mode 100644 index 00000000..d0301055 Binary files /dev/null and b/blockchains/ethereum/assets/0x534546C490A4Ed2a9D0c3555447Bb9b4b01bcb9E/logo.png differ diff --git a/blockchains/ethereum/assets/0x534c5EC7bF392d0B6b228EBEfBe3F6606a2b3484/info.json b/blockchains/ethereum/assets/0x534c5EC7bF392d0B6b228EBEfBe3F6606a2b3484/info.json new file mode 100644 index 00000000..105af759 --- /dev/null +++ b/blockchains/ethereum/assets/0x534c5EC7bF392d0B6b228EBEfBe3F6606a2b3484/info.json @@ -0,0 +1,11 @@ +{ + "name": "Daex.Trade", + "symbol": "DAEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x534c5EC7bF392d0B6b228EBEfBe3F6606a2b3484", + "status": "abandoned", + "id": "0x534c5EC7bF392d0B6b228EBEfBe3F6606a2b3484" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x534c5EC7bF392d0B6b228EBEfBe3F6606a2b3484/logo.png b/blockchains/ethereum/assets/0x534c5EC7bF392d0B6b228EBEfBe3F6606a2b3484/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x534c5EC7bF392d0B6b228EBEfBe3F6606a2b3484/logo.png differ diff --git a/blockchains/ethereum/assets/0x535c8019e78805d48e9dA4f2Ef81aA9Bd77F753D/info.json b/blockchains/ethereum/assets/0x535c8019e78805d48e9dA4f2Ef81aA9Bd77F753D/info.json new file mode 100644 index 00000000..976d9d31 --- /dev/null +++ b/blockchains/ethereum/assets/0x535c8019e78805d48e9dA4f2Ef81aA9Bd77F753D/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-30/30M90", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x535c8019e78805d48e9dA4f2Ef81aA9Bd77F753D", + "status": "abandoned", + "id": "0x535c8019e78805d48e9dA4f2Ef81aA9Bd77F753D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x535c8019e78805d48e9dA4f2Ef81aA9Bd77F753D/logo.png b/blockchains/ethereum/assets/0x535c8019e78805d48e9dA4f2Ef81aA9Bd77F753D/logo.png new file mode 100644 index 00000000..64154874 Binary files /dev/null and b/blockchains/ethereum/assets/0x535c8019e78805d48e9dA4f2Ef81aA9Bd77F753D/logo.png differ diff --git a/blockchains/ethereum/assets/0x537A9095b78517597b5f2058EDcd6E1978095909/info.json b/blockchains/ethereum/assets/0x537A9095b78517597b5f2058EDcd6E1978095909/info.json new file mode 100644 index 00000000..384c7257 --- /dev/null +++ b/blockchains/ethereum/assets/0x537A9095b78517597b5f2058EDcd6E1978095909/info.json @@ -0,0 +1,11 @@ +{ + "name": "Design", + "symbol": "DSGN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x537A9095b78517597b5f2058EDcd6E1978095909", + "status": "abandoned", + "id": "0x537A9095b78517597b5f2058EDcd6E1978095909" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x537A9095b78517597b5f2058EDcd6E1978095909/logo.png b/blockchains/ethereum/assets/0x537A9095b78517597b5f2058EDcd6E1978095909/logo.png new file mode 100644 index 00000000..975d5e10 Binary files /dev/null and b/blockchains/ethereum/assets/0x537A9095b78517597b5f2058EDcd6E1978095909/logo.png differ diff --git a/blockchains/ethereum/assets/0x537edD52ebcb9F48ff2f8a28c51FCdB9D6a6E0D4/info.json b/blockchains/ethereum/assets/0x537edD52ebcb9F48ff2f8a28c51FCdB9D6a6E0D4/info.json new file mode 100644 index 00000000..0fc56cf3 --- /dev/null +++ b/blockchains/ethereum/assets/0x537edD52ebcb9F48ff2f8a28c51FCdB9D6a6E0D4/info.json @@ -0,0 +1,11 @@ +{ + "name": "SDOG", + "website": "https://smalldogecoin.com", + "description": "Small Dogecoin is a revolutionary experiment initiated by the decentralised community in an attempt to connect the centralised and decentralised worlds so that they are no longer isolated from each other. through its token SDOG, the Small Dogecoin community hopes to achieve harmony between CEX and DEX. the Small Dogecoin community is at the heart of the project and all decisions are made by The community decides, we are like a doghole tunnel in the universe connecting two suspended planets", + "explorer": "https://etherscan.io/token/0x537edD52ebcb9F48ff2f8a28c51FCdB9D6a6E0D4", + "type": "ERC20", + "symbol": "SDOG", + "decimals": 18, + "status": "active", + "id": "0x537edD52ebcb9F48ff2f8a28c51FCdB9D6a6E0D4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x537edD52ebcb9F48ff2f8a28c51FCdB9D6a6E0D4/logo.png b/blockchains/ethereum/assets/0x537edD52ebcb9F48ff2f8a28c51FCdB9D6a6E0D4/logo.png new file mode 100644 index 00000000..0c420e67 Binary files /dev/null and b/blockchains/ethereum/assets/0x537edD52ebcb9F48ff2f8a28c51FCdB9D6a6E0D4/logo.png differ diff --git a/blockchains/ethereum/assets/0x53884b61963351C283118a8E1Fc05BA464a11959/info.json b/blockchains/ethereum/assets/0x53884b61963351C283118a8E1Fc05BA464a11959/info.json new file mode 100644 index 00000000..b4573a3d --- /dev/null +++ b/blockchains/ethereum/assets/0x53884b61963351C283118a8E1Fc05BA464a11959/info.json @@ -0,0 +1,11 @@ +{ + "name": "Monnos Token", + "symbol": "MNS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://monnos.com/", + "explorer": "https://etherscan.io/token/0x53884b61963351C283118a8E1Fc05BA464a11959", + "status": "abandoned", + "id": "0x53884b61963351C283118a8E1Fc05BA464a11959" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x53884b61963351C283118a8E1Fc05BA464a11959/logo.png b/blockchains/ethereum/assets/0x53884b61963351C283118a8E1Fc05BA464a11959/logo.png new file mode 100644 index 00000000..e8b1ad0d Binary files /dev/null and b/blockchains/ethereum/assets/0x53884b61963351C283118a8E1Fc05BA464a11959/logo.png differ diff --git a/blockchains/ethereum/assets/0x538a151Dd910C1D1227719bd400D6C4f99ea06d0/info.json b/blockchains/ethereum/assets/0x538a151Dd910C1D1227719bd400D6C4f99ea06d0/info.json new file mode 100644 index 00000000..3cbbd87b --- /dev/null +++ b/blockchains/ethereum/assets/0x538a151Dd910C1D1227719bd400D6C4f99ea06d0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptochrome", + "website": "https://cryptochrome.org/", + "description": "Liquidity Mining & Staking of ERC-20 tokens.", + "explorer": "https://etherscan.io/token/0x538a151Dd910C1D1227719bd400D6C4f99ea06d0", + "type": "ERC20", + "symbol": "CHM", + "decimals": 18, + "status": "active", + "id": "0x538a151Dd910C1D1227719bd400D6C4f99ea06d0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x538a151Dd910C1D1227719bd400D6C4f99ea06d0/logo.png b/blockchains/ethereum/assets/0x538a151Dd910C1D1227719bd400D6C4f99ea06d0/logo.png new file mode 100644 index 00000000..bc53dbba Binary files /dev/null and b/blockchains/ethereum/assets/0x538a151Dd910C1D1227719bd400D6C4f99ea06d0/logo.png differ diff --git a/blockchains/ethereum/assets/0x539EfE69bCDd21a83eFD9122571a64CC25e0282b/info.json b/blockchains/ethereum/assets/0x539EfE69bCDd21a83eFD9122571a64CC25e0282b/info.json new file mode 100644 index 00000000..1ab79ddf --- /dev/null +++ b/blockchains/ethereum/assets/0x539EfE69bCDd21a83eFD9122571a64CC25e0282b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Blue", + "symbol": "BLUE", + "type": "ERC20", + "decimals": 8, + "description": "Decentralized 2-Factor Authentication, Blacklisting, Whitelisting, Auto Smart Contract Scanning, & more.", + "website": "https://www.blueprotocol.com/", + "explorer": "https://etherscan.io/token/0x539EfE69bCDd21a83eFD9122571a64CC25e0282b", + "status": "active", + "id": "0x539EfE69bCDd21a83eFD9122571a64CC25e0282b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x539EfE69bCDd21a83eFD9122571a64CC25e0282b/logo.png b/blockchains/ethereum/assets/0x539EfE69bCDd21a83eFD9122571a64CC25e0282b/logo.png new file mode 100644 index 00000000..18bdb8aa Binary files /dev/null and b/blockchains/ethereum/assets/0x539EfE69bCDd21a83eFD9122571a64CC25e0282b/logo.png differ diff --git a/blockchains/ethereum/assets/0x539F3615C1dBAfa0D008d87504667458acBd16Fa/info.json b/blockchains/ethereum/assets/0x539F3615C1dBAfa0D008d87504667458acBd16Fa/info.json new file mode 100644 index 00000000..5e93acdd --- /dev/null +++ b/blockchains/ethereum/assets/0x539F3615C1dBAfa0D008d87504667458acBd16Fa/info.json @@ -0,0 +1,11 @@ +{ + "name": "FERA", + "website": "https://ferastrategies.com/", + "description": "FERA provides trading strategies for crypto traders and investors, focusing on low-cap projects. The full service includes a trading plan that covers funds management and short-term predictions.", + "explorer": "https://etherscan.io/token/0x539F3615C1dBAfa0D008d87504667458acBd16Fa", + "type": "ERC20", + "symbol": "FERA", + "decimals": 18, + "status": "active", + "id": "0x539F3615C1dBAfa0D008d87504667458acBd16Fa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x539F3615C1dBAfa0D008d87504667458acBd16Fa/logo.png b/blockchains/ethereum/assets/0x539F3615C1dBAfa0D008d87504667458acBd16Fa/logo.png new file mode 100644 index 00000000..138bee0f Binary files /dev/null and b/blockchains/ethereum/assets/0x539F3615C1dBAfa0D008d87504667458acBd16Fa/logo.png differ diff --git a/blockchains/ethereum/assets/0x539ad7704C67FDB7A608fCA79695b6655f623e50/info.json b/blockchains/ethereum/assets/0x539ad7704C67FDB7A608fCA79695b6655f623e50/info.json new file mode 100644 index 00000000..3a882cbc --- /dev/null +++ b/blockchains/ethereum/assets/0x539ad7704C67FDB7A608fCA79695b6655f623e50/info.json @@ -0,0 +1,11 @@ +{ + "name": "Scudo", + "symbol": "SNG", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x539ad7704C67FDB7A608fCA79695b6655f623e50", + "status": "abandoned", + "id": "0x539ad7704C67FDB7A608fCA79695b6655f623e50" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x539ad7704C67FDB7A608fCA79695b6655f623e50/logo.png b/blockchains/ethereum/assets/0x539ad7704C67FDB7A608fCA79695b6655f623e50/logo.png new file mode 100644 index 00000000..c82a4a76 Binary files /dev/null and b/blockchains/ethereum/assets/0x539ad7704C67FDB7A608fCA79695b6655f623e50/logo.png differ diff --git a/blockchains/ethereum/assets/0x53Bd789F2cDb846b227d8ffc7B46eD4263231FDf/info.json b/blockchains/ethereum/assets/0x53Bd789F2cDb846b227d8ffc7B46eD4263231FDf/info.json new file mode 100644 index 00000000..232ba584 --- /dev/null +++ b/blockchains/ethereum/assets/0x53Bd789F2cDb846b227d8ffc7B46eD4263231FDf/info.json @@ -0,0 +1,11 @@ +{ + "name": "SIMBCOIN SWAP", + "type": "ERC20", + "symbol": "SMB SWAP", + "decimals": 18, + "website": "https://www.simbcoin.net", + "description": "SIMBCOIN SWAP ( SMBSWAP ) offers a new amazing and unique approach to invest in the crypto sphere, generating rewards from tangible luxury such as real estate, integrated by eco-sustainable energy and extraordinary form of btc crypto mining.", + "explorer": "https://etherscan.io/token/0x53bd789f2cdb846b227d8ffc7b46ed4263231fdf", + "status": "active", + "id": "0x53Bd789F2cDb846b227d8ffc7B46eD4263231FDf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x53Bd789F2cDb846b227d8ffc7B46eD4263231FDf/logo.png b/blockchains/ethereum/assets/0x53Bd789F2cDb846b227d8ffc7B46eD4263231FDf/logo.png new file mode 100644 index 00000000..e0c131e3 Binary files /dev/null and b/blockchains/ethereum/assets/0x53Bd789F2cDb846b227d8ffc7B46eD4263231FDf/logo.png differ diff --git a/blockchains/ethereum/assets/0x53D428716900EAe876aD1d7E4535e796B5FAedA2/info.json b/blockchains/ethereum/assets/0x53D428716900EAe876aD1d7E4535e796B5FAedA2/info.json new file mode 100644 index 00000000..5ee543f5 --- /dev/null +++ b/blockchains/ethereum/assets/0x53D428716900EAe876aD1d7E4535e796B5FAedA2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zero Fee Xchange", + "symbol": "ZFE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x53D428716900EAe876aD1d7E4535e796B5FAedA2", + "status": "abandoned", + "id": "0x53D428716900EAe876aD1d7E4535e796B5FAedA2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x53D428716900EAe876aD1d7E4535e796B5FAedA2/logo.png b/blockchains/ethereum/assets/0x53D428716900EAe876aD1d7E4535e796B5FAedA2/logo.png new file mode 100644 index 00000000..cba5c4d9 Binary files /dev/null and b/blockchains/ethereum/assets/0x53D428716900EAe876aD1d7E4535e796B5FAedA2/logo.png differ diff --git a/blockchains/ethereum/assets/0x53F64bE99Da00fec224EAf9f8ce2012149D2FC88/info.json b/blockchains/ethereum/assets/0x53F64bE99Da00fec224EAf9f8ce2012149D2FC88/info.json new file mode 100644 index 00000000..9ef9e5ee --- /dev/null +++ b/blockchains/ethereum/assets/0x53F64bE99Da00fec224EAf9f8ce2012149D2FC88/info.json @@ -0,0 +1,11 @@ +{ + "name": "NICE", + "website": "https://niceee.org/", + "description": "NICE is a farming token that inflates when the supply is between 69 and 420 coins. Once it reaches 420 coins, it deflates by burning 20% of every transaction until it reaches 69 again, and then the cycle repeats.", + "explorer": "https://etherscan.io/token/0x53F64bE99Da00fec224EAf9f8ce2012149D2FC88", + "type": "ERC20", + "symbol": "NICE", + "decimals": 18, + "status": "active", + "id": "0x53F64bE99Da00fec224EAf9f8ce2012149D2FC88" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x53F64bE99Da00fec224EAf9f8ce2012149D2FC88/logo.png b/blockchains/ethereum/assets/0x53F64bE99Da00fec224EAf9f8ce2012149D2FC88/logo.png new file mode 100644 index 00000000..f21e77c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x53F64bE99Da00fec224EAf9f8ce2012149D2FC88/logo.png differ diff --git a/blockchains/ethereum/assets/0x53c4871322Bb47e7A24136fce291a6dcC832a294/info.json b/blockchains/ethereum/assets/0x53c4871322Bb47e7A24136fce291a6dcC832a294/info.json new file mode 100644 index 00000000..c9cb7f8c --- /dev/null +++ b/blockchains/ethereum/assets/0x53c4871322Bb47e7A24136fce291a6dcC832a294/info.json @@ -0,0 +1,11 @@ +{ + "name": "WLTC", + "website": "https://www.wrapped.com", + "description": "Wrapped Litecoin is a 1:1 equivalent of Litecoin on the Ethereum network", + "explorer": "https://etherscan.io/token/0x53c4871322Bb47e7A24136fce291a6dcC832a294", + "type": "ERC20", + "symbol": "WLTC", + "decimals": 18, + "status": "active", + "id": "0x53c4871322Bb47e7A24136fce291a6dcC832a294" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x53c4871322Bb47e7A24136fce291a6dcC832a294/logo.png b/blockchains/ethereum/assets/0x53c4871322Bb47e7A24136fce291a6dcC832a294/logo.png new file mode 100644 index 00000000..d5c9c6f1 Binary files /dev/null and b/blockchains/ethereum/assets/0x53c4871322Bb47e7A24136fce291a6dcC832a294/logo.png differ diff --git a/blockchains/ethereum/assets/0x53eBb10Ca7F91E6c90d7ce9249Cea70E75948b16/info.json b/blockchains/ethereum/assets/0x53eBb10Ca7F91E6c90d7ce9249Cea70E75948b16/info.json new file mode 100644 index 00000000..a1ec76fe --- /dev/null +++ b/blockchains/ethereum/assets/0x53eBb10Ca7F91E6c90d7ce9249Cea70E75948b16/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alteum", + "symbol": "AUM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x53eBb10Ca7F91E6c90d7ce9249Cea70E75948b16", + "status": "spam", + "id": "0x53eBb10Ca7F91E6c90d7ce9249Cea70E75948b16" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x53eBb10Ca7F91E6c90d7ce9249Cea70E75948b16/logo.png b/blockchains/ethereum/assets/0x53eBb10Ca7F91E6c90d7ce9249Cea70E75948b16/logo.png new file mode 100644 index 00000000..b4de77eb Binary files /dev/null and b/blockchains/ethereum/assets/0x53eBb10Ca7F91E6c90d7ce9249Cea70E75948b16/logo.png differ diff --git a/blockchains/ethereum/assets/0x5400575877b6db1749e60ed87780A94A7CA8AF13/info.json b/blockchains/ethereum/assets/0x5400575877b6db1749e60ed87780A94A7CA8AF13/info.json new file mode 100644 index 00000000..37fd98dd --- /dev/null +++ b/blockchains/ethereum/assets/0x5400575877b6db1749e60ed87780A94A7CA8AF13/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinFuns", + "symbol": "CFS", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5400575877b6db1749e60ed87780A94A7CA8AF13", + "status": "abandoned", + "id": "0x5400575877b6db1749e60ed87780A94A7CA8AF13" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5400575877b6db1749e60ed87780A94A7CA8AF13/logo.png b/blockchains/ethereum/assets/0x5400575877b6db1749e60ed87780A94A7CA8AF13/logo.png new file mode 100644 index 00000000..c49af5c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x5400575877b6db1749e60ed87780A94A7CA8AF13/logo.png differ diff --git a/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/info.json b/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/info.json new file mode 100644 index 00000000..401f6b59 --- /dev/null +++ b/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/info.json @@ -0,0 +1,32 @@ +{ + "name": "LUFFY", + "website": "https://luffytoken.com/", + "description": "Luffy is a versatile altcoin featuring a layer-2 blockchain for fast and cheap transactions.", + "explorer": "https://etherscan.io/token/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7", + "symbol": "LUFFY", + "type": "ERC20", + "decimals": 9, + "status": "active", + "id": "0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7", + "tags": [ + "nft" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/luffyinutoken" + }, + { + "name": "telegram", + "url": "https://t.me/luffytoken_official" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/luffy_inu/" + }, + { + "name": "facebook", + "url": "https://facebook.com/groups/luffytoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/logo.png b/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/logo.png new file mode 100644 index 00000000..fe575a03 Binary files /dev/null and b/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/logo.png differ diff --git a/blockchains/ethereum/assets/0x54021fDe36B7c4C4F9C35b02fb9A153eD8F5938A/info.json b/blockchains/ethereum/assets/0x54021fDe36B7c4C4F9C35b02fb9A153eD8F5938A/info.json new file mode 100644 index 00000000..e16fd496 --- /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 00000000..2ce033b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x54021fDe36B7c4C4F9C35b02fb9A153eD8F5938A/logo.png differ diff --git a/blockchains/ethereum/assets/0x5403d3AC289322C482cD558014ea3888EF1B1d44/info.json b/blockchains/ethereum/assets/0x5403d3AC289322C482cD558014ea3888EF1B1d44/info.json new file mode 100644 index 00000000..ce4e8fac --- /dev/null +++ b/blockchains/ethereum/assets/0x5403d3AC289322C482cD558014ea3888EF1B1d44/info.json @@ -0,0 +1,11 @@ +{ + "name": "Super Trip Chain", + "symbol": "SUPT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5403d3AC289322C482cD558014ea3888EF1B1d44", + "status": "abandoned", + "id": "0x5403d3AC289322C482cD558014ea3888EF1B1d44" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5403d3AC289322C482cD558014ea3888EF1B1d44/logo.png b/blockchains/ethereum/assets/0x5403d3AC289322C482cD558014ea3888EF1B1d44/logo.png new file mode 100644 index 00000000..610efe79 Binary files /dev/null and b/blockchains/ethereum/assets/0x5403d3AC289322C482cD558014ea3888EF1B1d44/logo.png differ diff --git a/blockchains/ethereum/assets/0x540e5fFF293f523Acd26291b5bC7ac5713991FEb/info.json b/blockchains/ethereum/assets/0x540e5fFF293f523Acd26291b5bC7ac5713991FEb/info.json new file mode 100644 index 00000000..e516c7d7 --- /dev/null +++ b/blockchains/ethereum/assets/0x540e5fFF293f523Acd26291b5bC7ac5713991FEb/info.json @@ -0,0 +1,11 @@ +{ + "name": "PitisCoin", + "symbol": "PTS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x540e5fFF293f523Acd26291b5bC7ac5713991FEb", + "status": "abandoned", + "id": "0x540e5fFF293f523Acd26291b5bC7ac5713991FEb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x540e5fFF293f523Acd26291b5bC7ac5713991FEb/logo.png b/blockchains/ethereum/assets/0x540e5fFF293f523Acd26291b5bC7ac5713991FEb/logo.png new file mode 100644 index 00000000..62b2476e Binary files /dev/null and b/blockchains/ethereum/assets/0x540e5fFF293f523Acd26291b5bC7ac5713991FEb/logo.png differ diff --git a/blockchains/ethereum/assets/0x54257FcaAA8e50ae9a47Bf3afe054756fB1230F6/info.json b/blockchains/ethereum/assets/0x54257FcaAA8e50ae9a47Bf3afe054756fB1230F6/info.json new file mode 100644 index 00000000..f5daa70a --- /dev/null +++ b/blockchains/ethereum/assets/0x54257FcaAA8e50ae9a47Bf3afe054756fB1230F6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tombola", + "symbol": "TBL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x54257FcaAA8e50ae9a47Bf3afe054756fB1230F6", + "status": "abandoned", + "id": "0x54257FcaAA8e50ae9a47Bf3afe054756fB1230F6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x54257FcaAA8e50ae9a47Bf3afe054756fB1230F6/logo.png b/blockchains/ethereum/assets/0x54257FcaAA8e50ae9a47Bf3afe054756fB1230F6/logo.png new file mode 100644 index 00000000..92759980 Binary files /dev/null and b/blockchains/ethereum/assets/0x54257FcaAA8e50ae9a47Bf3afe054756fB1230F6/logo.png differ diff --git a/blockchains/ethereum/assets/0x542a1eb77C705D12c11d2aaa1Ae90cdd5e8103eC/info.json b/blockchains/ethereum/assets/0x542a1eb77C705D12c11d2aaa1Ae90cdd5e8103eC/info.json new file mode 100644 index 00000000..b71d4120 --- /dev/null +++ b/blockchains/ethereum/assets/0x542a1eb77C705D12c11d2aaa1Ae90cdd5e8103eC/info.json @@ -0,0 +1,11 @@ +{ + "name": "SitCoin", + "symbol": "SIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x542a1eb77C705D12c11d2aaa1Ae90cdd5e8103eC", + "status": "abandoned", + "id": "0x542a1eb77C705D12c11d2aaa1Ae90cdd5e8103eC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x542a1eb77C705D12c11d2aaa1Ae90cdd5e8103eC/logo.png b/blockchains/ethereum/assets/0x542a1eb77C705D12c11d2aaa1Ae90cdd5e8103eC/logo.png new file mode 100644 index 00000000..ccd459f2 Binary files /dev/null and b/blockchains/ethereum/assets/0x542a1eb77C705D12c11d2aaa1Ae90cdd5e8103eC/logo.png differ diff --git a/blockchains/ethereum/assets/0x5432C580E34f590f4dd901B825DDeb92e905e826/info.json b/blockchains/ethereum/assets/0x5432C580E34f590f4dd901B825DDeb92e905e826/info.json new file mode 100644 index 00000000..04cab298 --- /dev/null +++ b/blockchains/ethereum/assets/0x5432C580E34f590f4dd901B825DDeb92e905e826/info.json @@ -0,0 +1,11 @@ +{ + "name": "TradeX Token", + "symbol": "TXH", + "type": "ERC20", + "decimals": 18, + "description": "TradeX token is created for the projects which are built with its real-life utility.", + "website": "https://tradextoken.com/", + "explorer": "https://etherscan.io/token/0x5432C580E34f590f4dd901B825DDeb92e905e826", + "status": "active", + "id": "0x5432C580E34f590f4dd901B825DDeb92e905e826" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5432C580E34f590f4dd901B825DDeb92e905e826/logo.png b/blockchains/ethereum/assets/0x5432C580E34f590f4dd901B825DDeb92e905e826/logo.png new file mode 100644 index 00000000..58e0b625 Binary files /dev/null and b/blockchains/ethereum/assets/0x5432C580E34f590f4dd901B825DDeb92e905e826/logo.png differ diff --git a/blockchains/ethereum/assets/0x5436056123811eA75C4740d086CfBac77eBcb6F8/info.json b/blockchains/ethereum/assets/0x5436056123811eA75C4740d086CfBac77eBcb6F8/info.json new file mode 100644 index 00000000..a577f8f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x5436056123811eA75C4740d086CfBac77eBcb6F8/info.json @@ -0,0 +1,11 @@ +{ + "name": "DD Electrum", + "symbol": "DDE", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5436056123811eA75C4740d086CfBac77eBcb6F8", + "status": "abandoned", + "id": "0x5436056123811eA75C4740d086CfBac77eBcb6F8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5436056123811eA75C4740d086CfBac77eBcb6F8/logo.png b/blockchains/ethereum/assets/0x5436056123811eA75C4740d086CfBac77eBcb6F8/logo.png new file mode 100644 index 00000000..89a0c6d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x5436056123811eA75C4740d086CfBac77eBcb6F8/logo.png differ diff --git a/blockchains/ethereum/assets/0x543Ff227F64Aa17eA132Bf9886cAb5DB55DCAddf/info.json b/blockchains/ethereum/assets/0x543Ff227F64Aa17eA132Bf9886cAb5DB55DCAddf/info.json new file mode 100644 index 00000000..a8442c88 --- /dev/null +++ b/blockchains/ethereum/assets/0x543Ff227F64Aa17eA132Bf9886cAb5DB55DCAddf/info.json @@ -0,0 +1,11 @@ +{ + "name": "DAOstack", + "symbol": "GEN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://daostack.io/", + "explorer": "https://etherscan.io/token/0x543Ff227F64Aa17eA132Bf9886cAb5DB55DCAddf", + "status": "abandoned", + "id": "0x543Ff227F64Aa17eA132Bf9886cAb5DB55DCAddf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x543Ff227F64Aa17eA132Bf9886cAb5DB55DCAddf/logo.png b/blockchains/ethereum/assets/0x543Ff227F64Aa17eA132Bf9886cAb5DB55DCAddf/logo.png new file mode 100755 index 00000000..9fa10ebe Binary files /dev/null and b/blockchains/ethereum/assets/0x543Ff227F64Aa17eA132Bf9886cAb5DB55DCAddf/logo.png differ diff --git a/blockchains/ethereum/assets/0x544c42fBB96B39B21DF61cf322b5EDC285EE7429/info.json b/blockchains/ethereum/assets/0x544c42fBB96B39B21DF61cf322b5EDC285EE7429/info.json new file mode 100644 index 00000000..f9300824 --- /dev/null +++ b/blockchains/ethereum/assets/0x544c42fBB96B39B21DF61cf322b5EDC285EE7429/info.json @@ -0,0 +1,11 @@ +{ + "name": "InsurAce", + "website": "https://insurace.io", + "description": "InsurAce is a decentralized insurance protocol, aiming to provide reliable, robust, and carefree DeFi insurance services to DeFi users, with a low premium and sustainable investment returns.", + "explorer": "https://etherscan.io/token/0x544c42fbb96b39b21df61cf322b5edc285ee7429", + "type": "ERC20", + "symbol": "INSUR", + "decimals": 18, + "status": "active", + "id": "0x544c42fBB96B39B21DF61cf322b5EDC285EE7429" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x544c42fBB96B39B21DF61cf322b5EDC285EE7429/logo.png b/blockchains/ethereum/assets/0x544c42fBB96B39B21DF61cf322b5EDC285EE7429/logo.png new file mode 100644 index 00000000..367f2575 Binary files /dev/null and b/blockchains/ethereum/assets/0x544c42fBB96B39B21DF61cf322b5EDC285EE7429/logo.png differ diff --git a/blockchains/ethereum/assets/0x5456BC77Dd275c45c3C15f0cF936b763cF57c3B5/info.json b/blockchains/ethereum/assets/0x5456BC77Dd275c45c3C15f0cF936b763cF57c3B5/info.json new file mode 100644 index 00000000..24ff6d5b --- /dev/null +++ b/blockchains/ethereum/assets/0x5456BC77Dd275c45c3C15f0cF936b763cF57c3B5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Anchor", + "symbol": "ANCT", + "type": "ERC20", + "decimals": 8, + "description": "Anchor is the world’s first cryptocurrency (stablecoin) pegged to global economic growth.", + "website": "https://theanchor.io/", + "explorer": "https://etherscan.io/token/0x5456BC77Dd275c45c3C15f0cF936b763cF57c3B5", + "status": "active", + "id": "0x5456BC77Dd275c45c3C15f0cF936b763cF57c3B5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5456BC77Dd275c45c3C15f0cF936b763cF57c3B5/logo.png b/blockchains/ethereum/assets/0x5456BC77Dd275c45c3C15f0cF936b763cF57c3B5/logo.png new file mode 100644 index 00000000..0bd87949 Binary files /dev/null and b/blockchains/ethereum/assets/0x5456BC77Dd275c45c3C15f0cF936b763cF57c3B5/logo.png differ diff --git a/blockchains/ethereum/assets/0x54672394026d16F223FdCD912973218AdB4b0E6d/info.json b/blockchains/ethereum/assets/0x54672394026d16F223FdCD912973218AdB4b0E6d/info.json new file mode 100644 index 00000000..d9b7fdb9 --- /dev/null +++ b/blockchains/ethereum/assets/0x54672394026d16F223FdCD912973218AdB4b0E6d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Game4Bitcoin", + "symbol": "G4B", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x54672394026d16F223FdCD912973218AdB4b0E6d", + "status": "abandoned", + "id": "0x54672394026d16F223FdCD912973218AdB4b0E6d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x54672394026d16F223FdCD912973218AdB4b0E6d/logo.png b/blockchains/ethereum/assets/0x54672394026d16F223FdCD912973218AdB4b0E6d/logo.png new file mode 100644 index 00000000..3c286920 Binary files /dev/null and b/blockchains/ethereum/assets/0x54672394026d16F223FdCD912973218AdB4b0E6d/logo.png differ diff --git a/blockchains/ethereum/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json b/blockchains/ethereum/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json new file mode 100644 index 00000000..7b8084b3 --- /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 00000000..8179bd11 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 new file mode 100644 index 00000000..836955d1 --- /dev/null +++ b/blockchains/ethereum/assets/0x549020a9Cb845220D66d3E9c6D9F9eF61C981102/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://etherscan.io/token/0x549020a9Cb845220D66d3E9c6D9F9eF61C981102", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0x549020a9Cb845220D66d3E9c6D9F9eF61C981102", + "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/ethereum/assets/0x549020a9Cb845220D66d3E9c6D9F9eF61C981102/logo.png b/blockchains/ethereum/assets/0x549020a9Cb845220D66d3E9c6D9F9eF61C981102/logo.png new file mode 100644 index 00000000..04638be4 Binary files /dev/null and b/blockchains/ethereum/assets/0x549020a9Cb845220D66d3E9c6D9F9eF61C981102/logo.png differ diff --git a/blockchains/ethereum/assets/0x54A994f88794C25fb8517c47De239bb3f5f7044F/info.json b/blockchains/ethereum/assets/0x54A994f88794C25fb8517c47De239bb3f5f7044F/info.json new file mode 100644 index 00000000..ad7a87d4 --- /dev/null +++ b/blockchains/ethereum/assets/0x54A994f88794C25fb8517c47De239bb3f5f7044F/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R785456", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x54A994f88794C25fb8517c47De239bb3f5f7044F", + "status": "abandoned", + "id": "0x54A994f88794C25fb8517c47De239bb3f5f7044F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x54A994f88794C25fb8517c47De239bb3f5f7044F/logo.png b/blockchains/ethereum/assets/0x54A994f88794C25fb8517c47De239bb3f5f7044F/logo.png new file mode 100644 index 00000000..52b30576 Binary files /dev/null and b/blockchains/ethereum/assets/0x54A994f88794C25fb8517c47De239bb3f5f7044F/logo.png differ diff --git a/blockchains/ethereum/assets/0x54A9ed327F2614316914c3F3a782a77d0AA47AEe/info.json b/blockchains/ethereum/assets/0x54A9ed327F2614316914c3F3a782a77d0AA47AEe/info.json new file mode 100644 index 00000000..d71c771e --- /dev/null +++ b/blockchains/ethereum/assets/0x54A9ed327F2614316914c3F3a782a77d0AA47AEe/info.json @@ -0,0 +1,11 @@ +{ + "name": "CONNECT", + "symbol": "CNCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://connectplatformlimited.com/", + "explorer": "https://etherscan.io/token/0x54A9ed327F2614316914c3F3a782a77d0AA47AEe", + "status": "abandoned", + "id": "0x54A9ed327F2614316914c3F3a782a77d0AA47AEe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x54A9ed327F2614316914c3F3a782a77d0AA47AEe/logo.png b/blockchains/ethereum/assets/0x54A9ed327F2614316914c3F3a782a77d0AA47AEe/logo.png new file mode 100644 index 00000000..4c2b70dd Binary files /dev/null and b/blockchains/ethereum/assets/0x54A9ed327F2614316914c3F3a782a77d0AA47AEe/logo.png differ diff --git a/blockchains/ethereum/assets/0x54C1Ff361b402f66c13107421E6A431C3375EF24/info.json b/blockchains/ethereum/assets/0x54C1Ff361b402f66c13107421E6A431C3375EF24/info.json new file mode 100644 index 00000000..31fc343d --- /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 00000000..344948ad 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 new file mode 100644 index 00000000..8dacc31a --- /dev/null +++ b/blockchains/ethereum/assets/0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba/info.json @@ -0,0 +1,17 @@ +{ + "name": "BarterTrade", + "website": "https://bartertrade.io/", + "description": "Utility token of cryptocurrency exchange.", + "explorer": "https://etherscan.io/token/0x54c9ea2e9c9e8ed865db4a4ce6711c2a0d5063ba", + "type": "ERC20", + "symbol": "BART", + "decimals": 18, + "status": "active", + "id": "0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba", + "links": [ + { + "name": "x", + "url": "https://x.com/bartertradeio" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba/logo.png b/blockchains/ethereum/assets/0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba/logo.png new file mode 100644 index 00000000..66867045 Binary files /dev/null and b/blockchains/ethereum/assets/0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba/logo.png differ diff --git a/blockchains/ethereum/assets/0x54bFd2c33B252F6C959688bb1Ef2169A96DcEE8f/info.json b/blockchains/ethereum/assets/0x54bFd2c33B252F6C959688bb1Ef2169A96DcEE8f/info.json new file mode 100644 index 00000000..420141e0 --- /dev/null +++ b/blockchains/ethereum/assets/0x54bFd2c33B252F6C959688bb1Ef2169A96DcEE8f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bliss Exchange Token", + "symbol": "BLISS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x54bFd2c33B252F6C959688bb1Ef2169A96DcEE8f", + "status": "abandoned", + "id": "0x54bFd2c33B252F6C959688bb1Ef2169A96DcEE8f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x54bFd2c33B252F6C959688bb1Ef2169A96DcEE8f/logo.png b/blockchains/ethereum/assets/0x54bFd2c33B252F6C959688bb1Ef2169A96DcEE8f/logo.png new file mode 100755 index 00000000..5903b7d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x54bFd2c33B252F6C959688bb1Ef2169A96DcEE8f/logo.png differ diff --git a/blockchains/ethereum/assets/0x54c402817c437A492DCE44e2ff1e82D168196c86/info.json b/blockchains/ethereum/assets/0x54c402817c437A492DCE44e2ff1e82D168196c86/info.json new file mode 100644 index 00000000..652536e8 --- /dev/null +++ b/blockchains/ethereum/assets/0x54c402817c437A492DCE44e2ff1e82D168196c86/info.json @@ -0,0 +1,11 @@ +{ + "name": "Visor", + "symbol": "XVR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x54c402817c437A492DCE44e2ff1e82D168196c86", + "status": "abandoned", + "id": "0x54c402817c437A492DCE44e2ff1e82D168196c86" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x54c402817c437A492DCE44e2ff1e82D168196c86/logo.png b/blockchains/ethereum/assets/0x54c402817c437A492DCE44e2ff1e82D168196c86/logo.png new file mode 100755 index 00000000..ebf6c6c9 Binary files /dev/null and b/blockchains/ethereum/assets/0x54c402817c437A492DCE44e2ff1e82D168196c86/logo.png differ diff --git a/blockchains/ethereum/assets/0x54e5Fd5f3163709e0601A8EE09cf698F7019C9AE/info.json b/blockchains/ethereum/assets/0x54e5Fd5f3163709e0601A8EE09cf698F7019C9AE/info.json new file mode 100644 index 00000000..7cc7998b --- /dev/null +++ b/blockchains/ethereum/assets/0x54e5Fd5f3163709e0601A8EE09cf698F7019C9AE/info.json @@ -0,0 +1,11 @@ +{ + "name": "ORICToken", + "symbol": "ORIC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x54e5Fd5f3163709e0601A8EE09cf698F7019C9AE", + "status": "spam", + "id": "0x54e5Fd5f3163709e0601A8EE09cf698F7019C9AE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x54e5Fd5f3163709e0601A8EE09cf698F7019C9AE/logo.png b/blockchains/ethereum/assets/0x54e5Fd5f3163709e0601A8EE09cf698F7019C9AE/logo.png new file mode 100755 index 00000000..3d658c7a Binary files /dev/null and b/blockchains/ethereum/assets/0x54e5Fd5f3163709e0601A8EE09cf698F7019C9AE/logo.png differ diff --git a/blockchains/ethereum/assets/0x55126479c6AB438A6bee892dC2577aE4da9eCdAd/info.json b/blockchains/ethereum/assets/0x55126479c6AB438A6bee892dC2577aE4da9eCdAd/info.json new file mode 100644 index 00000000..18cf57e5 --- /dev/null +++ b/blockchains/ethereum/assets/0x55126479c6AB438A6bee892dC2577aE4da9eCdAd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chicken Together", + "symbol": "🐤", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x55126479c6AB438A6bee892dC2577aE4da9eCdAd", + "status": "abandoned", + "id": "0x55126479c6AB438A6bee892dC2577aE4da9eCdAd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x55126479c6AB438A6bee892dC2577aE4da9eCdAd/logo.png b/blockchains/ethereum/assets/0x55126479c6AB438A6bee892dC2577aE4da9eCdAd/logo.png new file mode 100644 index 00000000..3184a2a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x55126479c6AB438A6bee892dC2577aE4da9eCdAd/logo.png differ diff --git a/blockchains/ethereum/assets/0x55296f69f40Ea6d20E478533C15A6B08B654E758/info.json b/blockchains/ethereum/assets/0x55296f69f40Ea6d20E478533C15A6B08B654E758/info.json new file mode 100644 index 00000000..816e5642 --- /dev/null +++ b/blockchains/ethereum/assets/0x55296f69f40Ea6d20E478533C15A6B08B654E758/info.json @@ -0,0 +1,11 @@ +{ + "name": "XY Oracle", + "symbol": "XYO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://xyo.network/", + "explorer": "https://etherscan.io/token/0x55296f69f40Ea6d20E478533C15A6B08B654E758", + "status": "active", + "id": "0x55296f69f40Ea6d20E478533C15A6B08B654E758" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x55296f69f40Ea6d20E478533C15A6B08B654E758/logo.png b/blockchains/ethereum/assets/0x55296f69f40Ea6d20E478533C15A6B08B654E758/logo.png new file mode 100644 index 00000000..49f67155 Binary files /dev/null and b/blockchains/ethereum/assets/0x55296f69f40Ea6d20E478533C15A6B08B654E758/logo.png differ diff --git a/blockchains/ethereum/assets/0x552Ed8253f341fb770E8BAdff5A0E0Ee2fd57B43/info.json b/blockchains/ethereum/assets/0x552Ed8253f341fb770E8BAdff5A0E0Ee2fd57B43/info.json new file mode 100644 index 00000000..1067e5f6 --- /dev/null +++ b/blockchains/ethereum/assets/0x552Ed8253f341fb770E8BAdff5A0E0Ee2fd57B43/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vestarin", + "symbol": "VST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x552Ed8253f341fb770E8BAdff5A0E0Ee2fd57B43", + "status": "abandoned", + "id": "0x552Ed8253f341fb770E8BAdff5A0E0Ee2fd57B43" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x552Ed8253f341fb770E8BAdff5A0E0Ee2fd57B43/logo.png b/blockchains/ethereum/assets/0x552Ed8253f341fb770E8BAdff5A0E0Ee2fd57B43/logo.png new file mode 100755 index 00000000..c3e81680 Binary files /dev/null and b/blockchains/ethereum/assets/0x552Ed8253f341fb770E8BAdff5A0E0Ee2fd57B43/logo.png differ diff --git a/blockchains/ethereum/assets/0x554C20B7c486beeE439277b4540A434566dC4C02/info.json b/blockchains/ethereum/assets/0x554C20B7c486beeE439277b4540A434566dC4C02/info.json new file mode 100644 index 00000000..b940c7c3 --- /dev/null +++ b/blockchains/ethereum/assets/0x554C20B7c486beeE439277b4540A434566dC4C02/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decision Token", + "symbol": "HST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://horizonstate.com/", + "explorer": "https://etherscan.io/token/0x554C20B7c486beeE439277b4540A434566dC4C02", + "status": "abandoned", + "id": "0x554C20B7c486beeE439277b4540A434566dC4C02" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x554C20B7c486beeE439277b4540A434566dC4C02/logo.png b/blockchains/ethereum/assets/0x554C20B7c486beeE439277b4540A434566dC4C02/logo.png new file mode 100644 index 00000000..16751664 Binary files /dev/null and b/blockchains/ethereum/assets/0x554C20B7c486beeE439277b4540A434566dC4C02/logo.png differ diff --git a/blockchains/ethereum/assets/0x554FFc77F4251a9fB3c0E3590a6a205f8d4e067D/info.json b/blockchains/ethereum/assets/0x554FFc77F4251a9fB3c0E3590a6a205f8d4e067D/info.json new file mode 100644 index 00000000..955770f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x554FFc77F4251a9fB3c0E3590a6a205f8d4e067D/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZMINE Token", + "symbol": "ZMN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.zmine.com/", + "explorer": "https://etherscan.io/token/0x554FFc77F4251a9fB3c0E3590a6a205f8d4e067D", + "status": "abandoned", + "id": "0x554FFc77F4251a9fB3c0E3590a6a205f8d4e067D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x554FFc77F4251a9fB3c0E3590a6a205f8d4e067D/logo.png b/blockchains/ethereum/assets/0x554FFc77F4251a9fB3c0E3590a6a205f8d4e067D/logo.png new file mode 100755 index 00000000..4bda4cce Binary files /dev/null and b/blockchains/ethereum/assets/0x554FFc77F4251a9fB3c0E3590a6a205f8d4e067D/logo.png differ diff --git a/blockchains/ethereum/assets/0x554b0C70258D3F4dC84C39b36D9018c27381b3bE/info.json b/blockchains/ethereum/assets/0x554b0C70258D3F4dC84C39b36D9018c27381b3bE/info.json new file mode 100644 index 00000000..86d434aa --- /dev/null +++ b/blockchains/ethereum/assets/0x554b0C70258D3F4dC84C39b36D9018c27381b3bE/info.json @@ -0,0 +1,11 @@ +{ + "name": "IOT$", + "symbol": "IOT$", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x554b0C70258D3F4dC84C39b36D9018c27381b3bE", + "status": "active", + "id": "0x554b0C70258D3F4dC84C39b36D9018c27381b3bE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x554b0C70258D3F4dC84C39b36D9018c27381b3bE/logo.png b/blockchains/ethereum/assets/0x554b0C70258D3F4dC84C39b36D9018c27381b3bE/logo.png new file mode 100755 index 00000000..df4f2bb2 Binary files /dev/null and b/blockchains/ethereum/assets/0x554b0C70258D3F4dC84C39b36D9018c27381b3bE/logo.png differ diff --git a/blockchains/ethereum/assets/0x5554e04e76533E1d14c52f05beEF6c9d329E1E30/info.json b/blockchains/ethereum/assets/0x5554e04e76533E1d14c52f05beEF6c9d329E1E30/info.json new file mode 100644 index 00000000..7f7f4ada --- /dev/null +++ b/blockchains/ethereum/assets/0x5554e04e76533E1d14c52f05beEF6c9d329E1E30/info.json @@ -0,0 +1,11 @@ +{ + "name": "Autonio", + "symbol": "NIO", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5554e04e76533E1d14c52f05beEF6c9d329E1E30", + "status": "abandoned", + "id": "0x5554e04e76533E1d14c52f05beEF6c9d329E1E30" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5554e04e76533E1d14c52f05beEF6c9d329E1E30/logo.png b/blockchains/ethereum/assets/0x5554e04e76533E1d14c52f05beEF6c9d329E1E30/logo.png new file mode 100644 index 00000000..ed8d2324 Binary files /dev/null and b/blockchains/ethereum/assets/0x5554e04e76533E1d14c52f05beEF6c9d329E1E30/logo.png differ diff --git a/blockchains/ethereum/assets/0x5555e6B8e710BBCd7804f5172395b87c09621f80/info.json b/blockchains/ethereum/assets/0x5555e6B8e710BBCd7804f5172395b87c09621f80/info.json new file mode 100644 index 00000000..e7abd221 --- /dev/null +++ b/blockchains/ethereum/assets/0x5555e6B8e710BBCd7804f5172395b87c09621f80/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dolphin Token", + "website": "revi.network", + "description": "Dolphin Token (DHT) is an open-source, decentralized lottery token or stake chip, on the Ethereum platform.", + "explorer": "https://etherscan.io/token/0x5555e6B8e710BBCd7804f5172395b87c09621f80", + "type": "ERC20", + "symbol": "DHT", + "decimals": 18, + "status": "active", + "id": "0x5555e6B8e710BBCd7804f5172395b87c09621f80" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5555e6B8e710BBCd7804f5172395b87c09621f80/logo.png b/blockchains/ethereum/assets/0x5555e6B8e710BBCd7804f5172395b87c09621f80/logo.png new file mode 100644 index 00000000..195d6f89 Binary files /dev/null and b/blockchains/ethereum/assets/0x5555e6B8e710BBCd7804f5172395b87c09621f80/logo.png differ diff --git a/blockchains/ethereum/assets/0x5556d6a283fD18d71FD0c8b50D1211C5F842dBBc/info.json b/blockchains/ethereum/assets/0x5556d6a283fD18d71FD0c8b50D1211C5F842dBBc/info.json new file mode 100644 index 00000000..255d47ea --- /dev/null +++ b/blockchains/ethereum/assets/0x5556d6a283fD18d71FD0c8b50D1211C5F842dBBc/info.json @@ -0,0 +1,11 @@ +{ + "name": "ButtCoin v2.0", + "symbol": "0xBUTT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5556d6a283fD18d71FD0c8b50D1211C5F842dBBc", + "status": "abandoned", + "id": "0x5556d6a283fD18d71FD0c8b50D1211C5F842dBBc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5556d6a283fD18d71FD0c8b50D1211C5F842dBBc/logo.png b/blockchains/ethereum/assets/0x5556d6a283fD18d71FD0c8b50D1211C5F842dBBc/logo.png new file mode 100644 index 00000000..a06e9701 Binary files /dev/null and b/blockchains/ethereum/assets/0x5556d6a283fD18d71FD0c8b50D1211C5F842dBBc/logo.png differ diff --git a/blockchains/ethereum/assets/0x555907a0b5c32DF0fEb35401187aED60a9191D74/info.json b/blockchains/ethereum/assets/0x555907a0b5c32DF0fEb35401187aED60a9191D74/info.json new file mode 100644 index 00000000..b30747b7 --- /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 00000000..7ed9afd9 Binary files /dev/null and b/blockchains/ethereum/assets/0x555907a0b5c32DF0fEb35401187aED60a9191D74/logo.png differ diff --git a/blockchains/ethereum/assets/0x556148562d5DdeB72545D7EC4B3eC8edc8F55Ba7/info.json b/blockchains/ethereum/assets/0x556148562d5DdeB72545D7EC4B3eC8edc8F55Ba7/info.json new file mode 100644 index 00000000..ce8fa696 --- /dev/null +++ b/blockchains/ethereum/assets/0x556148562d5DdeB72545D7EC4B3eC8edc8F55Ba7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Predix Network", + "symbol": "PRDX", + "type": "ERC20", + "decimals": 18, + "description": "Predix Network is a prediction-based reward system on the Ethereum blockchain powered by PRDX, a price-reactive deflationary stakable ERC20 token. PRDX supports a tiered staking mechanism where users are placed in different staking tiers based on the staking size.", + "website": "https://predix.network/", + "explorer": "https://etherscan.io/token/0x556148562d5DdeB72545D7EC4B3eC8edc8F55Ba7", + "status": "active", + "id": "0x556148562d5DdeB72545D7EC4B3eC8edc8F55Ba7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x556148562d5DdeB72545D7EC4B3eC8edc8F55Ba7/logo.png b/blockchains/ethereum/assets/0x556148562d5DdeB72545D7EC4B3eC8edc8F55Ba7/logo.png new file mode 100644 index 00000000..7ca62c07 Binary files /dev/null and b/blockchains/ethereum/assets/0x556148562d5DdeB72545D7EC4B3eC8edc8F55Ba7/logo.png differ diff --git a/blockchains/ethereum/assets/0x556237E86Df9325017c330E295c13A6c7d0E71a7/info.json b/blockchains/ethereum/assets/0x556237E86Df9325017c330E295c13A6c7d0E71a7/info.json new file mode 100644 index 00000000..855b2c52 --- /dev/null +++ b/blockchains/ethereum/assets/0x556237E86Df9325017c330E295c13A6c7d0E71a7/info.json @@ -0,0 +1,21 @@ +{ + "name": "Go9tro", + "website": "https://go9tro.io/en/basic", + "description": "Real crowdfunding for you and non-profits", + "explorer": "https://etherscan.io/token/0x556237E86Df9325017c330E295c13A6c7d0E71a7", + "type": "ERC20", + "symbol": "Go9tro", + "decimals": 18, + "status": "active", + "id": "0x556237E86Df9325017c330E295c13A6c7d0E71a7", + "links": [ + { + "name": "telegram", + "url": "https://t.me/joinchat/GVUMOljY3IFZpd5XnRKonw" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCo_xEbK6rImcbERDp4G4dGQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x556237E86Df9325017c330E295c13A6c7d0E71a7/logo.png b/blockchains/ethereum/assets/0x556237E86Df9325017c330E295c13A6c7d0E71a7/logo.png new file mode 100644 index 00000000..94342ae2 Binary files /dev/null and b/blockchains/ethereum/assets/0x556237E86Df9325017c330E295c13A6c7d0E71a7/logo.png differ diff --git a/blockchains/ethereum/assets/0x55648De19836338549130B1af587F16beA46F66B/info.json b/blockchains/ethereum/assets/0x55648De19836338549130B1af587F16beA46F66B/info.json new file mode 100644 index 00000000..242a94db --- /dev/null +++ b/blockchains/ethereum/assets/0x55648De19836338549130B1af587F16beA46F66B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pebbles", + "symbol": "PBL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://publica.io/", + "explorer": "https://etherscan.io/token/0x55648De19836338549130B1af587F16beA46F66B", + "status": "abandoned", + "id": "0x55648De19836338549130B1af587F16beA46F66B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x55648De19836338549130B1af587F16beA46F66B/logo.png b/blockchains/ethereum/assets/0x55648De19836338549130B1af587F16beA46F66B/logo.png new file mode 100644 index 00000000..eed01d04 Binary files /dev/null and b/blockchains/ethereum/assets/0x55648De19836338549130B1af587F16beA46F66B/logo.png differ diff --git a/blockchains/ethereum/assets/0x5565317065fb33EA1afb4d55665402ecc557d7cC/info.json b/blockchains/ethereum/assets/0x5565317065fb33EA1afb4d55665402ecc557d7cC/info.json new file mode 100644 index 00000000..cade6e43 --- /dev/null +++ b/blockchains/ethereum/assets/0x5565317065fb33EA1afb4d55665402ecc557d7cC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digger", + "symbol": "DG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5565317065fb33EA1afb4d55665402ecc557d7cC", + "status": "abandoned", + "id": "0x5565317065fb33EA1afb4d55665402ecc557d7cC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5565317065fb33EA1afb4d55665402ecc557d7cC/logo.png b/blockchains/ethereum/assets/0x5565317065fb33EA1afb4d55665402ecc557d7cC/logo.png new file mode 100644 index 00000000..df8f5d61 Binary files /dev/null and b/blockchains/ethereum/assets/0x5565317065fb33EA1afb4d55665402ecc557d7cC/logo.png differ diff --git a/blockchains/ethereum/assets/0x5565E9824e9d4a9F4175D912A7376d3A10e187Ba/info.json b/blockchains/ethereum/assets/0x5565E9824e9d4a9F4175D912A7376d3A10e187Ba/info.json new file mode 100644 index 00000000..0354521f --- /dev/null +++ b/blockchains/ethereum/assets/0x5565E9824e9d4a9F4175D912A7376d3A10e187Ba/info.json @@ -0,0 +1,11 @@ +{ + "name": "PWCC", + "symbol": "PWCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5565E9824e9d4a9F4175D912A7376d3A10e187Ba", + "status": "abandoned", + "id": "0x5565E9824e9d4a9F4175D912A7376d3A10e187Ba" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5565E9824e9d4a9F4175D912A7376d3A10e187Ba/logo.png b/blockchains/ethereum/assets/0x5565E9824e9d4a9F4175D912A7376d3A10e187Ba/logo.png new file mode 100644 index 00000000..bdafc8af Binary files /dev/null and b/blockchains/ethereum/assets/0x5565E9824e9d4a9F4175D912A7376d3A10e187Ba/logo.png differ diff --git a/blockchains/ethereum/assets/0x556c3cbDCA77a7f21AFE15b17e644e0e98e64Df4/info.json b/blockchains/ethereum/assets/0x556c3cbDCA77a7f21AFE15b17e644e0e98e64Df4/info.json new file mode 100644 index 00000000..9a180271 --- /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 00000000..468cb923 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 00000000..072ce6cc --- /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 00000000..1ba6eba7 Binary files /dev/null and b/blockchains/ethereum/assets/0x55720eF5b023Fd043AE5F8D2e526030207978950/logo.png differ diff --git a/blockchains/ethereum/assets/0x557B933a7C2c45672B610F8954A3deB39a51A8Ca/info.json b/blockchains/ethereum/assets/0x557B933a7C2c45672B610F8954A3deB39a51A8Ca/info.json new file mode 100644 index 00000000..7ff03c74 --- /dev/null +++ b/blockchains/ethereum/assets/0x557B933a7C2c45672B610F8954A3deB39a51A8Ca/info.json @@ -0,0 +1,17 @@ +{ + "name": "REVV", + "website": "https://revvmotorsport.com/", + "description": "REVV is the main utility token and in-game currency for branded motorsports blockchain game titles produced by Animoca Brands, such as the F1® Delta Time blockchain game platform, and a title based on the MotoGP™ motorsport intellectual property, releasing in Q4 of 2020.", + "explorer": "https://etherscan.io/token/0x557B933a7C2c45672B610F8954A3deB39a51A8Ca", + "type": "ERC20", + "symbol": "REVV", + "decimals": 18, + "status": "active", + "id": "0x557B933a7C2c45672B610F8954A3deB39a51A8Ca", + "links": [ + { + "name": "whitepaper", + "url": "https://revvmotorsport.com/REVV-Motorsport-Lightpaperv1.1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x557B933a7C2c45672B610F8954A3deB39a51A8Ca/logo.png b/blockchains/ethereum/assets/0x557B933a7C2c45672B610F8954A3deB39a51A8Ca/logo.png new file mode 100644 index 00000000..7ce7ea57 Binary files /dev/null and b/blockchains/ethereum/assets/0x557B933a7C2c45672B610F8954A3deB39a51A8Ca/logo.png differ diff --git a/blockchains/ethereum/assets/0x5580ab97F226C324c671746a1787524AEF42E415/info.json b/blockchains/ethereum/assets/0x5580ab97F226C324c671746a1787524AEF42E415/info.json new file mode 100644 index 00000000..05d096da --- /dev/null +++ b/blockchains/ethereum/assets/0x5580ab97F226C324c671746a1787524AEF42E415/info.json @@ -0,0 +1,21 @@ +{ + "name": "JustLiquidity", + "website": "https://justliquidity.org", + "description": "The JustLiquidity DeFi is not merely a better way to trade and earn on Uniswap with ETH, but also a DeFi which can execute a Liquidity Token Sale with a token. .", + "explorer": "https://etherscan.io/token/0x5580ab97F226C324c671746a1787524AEF42E415", + "type": "ERC20", + "symbol": "JUL", + "decimals": 18, + "status": "active", + "id": "0x5580ab97F226C324c671746a1787524AEF42E415", + "links": [ + { + "name": "github", + "url": "https://github.com/JustLiquidity" + }, + { + "name": "whitepaper", + "url": "https://docdro.id/DyOuQZr" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5580ab97F226C324c671746a1787524AEF42E415/logo.png b/blockchains/ethereum/assets/0x5580ab97F226C324c671746a1787524AEF42E415/logo.png new file mode 100644 index 00000000..0928ae72 Binary files /dev/null and b/blockchains/ethereum/assets/0x5580ab97F226C324c671746a1787524AEF42E415/logo.png differ diff --git a/blockchains/ethereum/assets/0x558EC3152e2eb2174905cd19AeA4e34A23DE9aD6/info.json b/blockchains/ethereum/assets/0x558EC3152e2eb2174905cd19AeA4e34A23DE9aD6/info.json new file mode 100644 index 00000000..5371a9a2 --- /dev/null +++ b/blockchains/ethereum/assets/0x558EC3152e2eb2174905cd19AeA4e34A23DE9aD6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bread", + "website": "https://brd.com", + "description": "BRD bills itself as 'the simple and secure onramp to bitcoin, ethereum, and other digital currencies'.", + "explorer": "https://etherscan.io/token/0x558EC3152e2eb2174905cd19AeA4e34A23DE9aD6", + "type": "ERC20", + "symbol": "BRD", + "decimals": 18, + "status": "active", + "id": "0x558EC3152e2eb2174905cd19AeA4e34A23DE9aD6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x558EC3152e2eb2174905cd19AeA4e34A23DE9aD6/logo.png b/blockchains/ethereum/assets/0x558EC3152e2eb2174905cd19AeA4e34A23DE9aD6/logo.png new file mode 100644 index 00000000..638cd867 Binary files /dev/null and b/blockchains/ethereum/assets/0x558EC3152e2eb2174905cd19AeA4e34A23DE9aD6/logo.png differ diff --git a/blockchains/ethereum/assets/0x5590b05495bAD72365d4aFAa3Ed5FBA5D8D67af2/info.json b/blockchains/ethereum/assets/0x5590b05495bAD72365d4aFAa3Ed5FBA5D8D67af2/info.json new file mode 100644 index 00000000..6e2f60c1 --- /dev/null +++ b/blockchains/ethereum/assets/0x5590b05495bAD72365d4aFAa3Ed5FBA5D8D67af2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short WBTC-DAI v2", + "symbol": "dsWBTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5590b05495bAD72365d4aFAa3Ed5FBA5D8D67af2", + "status": "abandoned", + "id": "0x5590b05495bAD72365d4aFAa3Ed5FBA5D8D67af2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5590b05495bAD72365d4aFAa3Ed5FBA5D8D67af2/logo.png b/blockchains/ethereum/assets/0x5590b05495bAD72365d4aFAa3Ed5FBA5D8D67af2/logo.png new file mode 100644 index 00000000..a84ef80e Binary files /dev/null and b/blockchains/ethereum/assets/0x5590b05495bAD72365d4aFAa3Ed5FBA5D8D67af2/logo.png differ diff --git a/blockchains/ethereum/assets/0x559E848A1b6a7AfC69Ee27F8d20280A42628b2cf/info.json b/blockchains/ethereum/assets/0x559E848A1b6a7AfC69Ee27F8d20280A42628b2cf/info.json new file mode 100644 index 00000000..afebe483 --- /dev/null +++ b/blockchains/ethereum/assets/0x559E848A1b6a7AfC69Ee27F8d20280A42628b2cf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Synth sJPY", + "symbol": "sJPY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x559E848A1b6a7AfC69Ee27F8d20280A42628b2cf", + "status": "abandoned", + "id": "0x559E848A1b6a7AfC69Ee27F8d20280A42628b2cf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x559E848A1b6a7AfC69Ee27F8d20280A42628b2cf/logo.png b/blockchains/ethereum/assets/0x559E848A1b6a7AfC69Ee27F8d20280A42628b2cf/logo.png new file mode 100644 index 00000000..f325234c Binary files /dev/null and b/blockchains/ethereum/assets/0x559E848A1b6a7AfC69Ee27F8d20280A42628b2cf/logo.png differ diff --git a/blockchains/ethereum/assets/0x55C2E2Ea5D2dEEBD64a57F4E959F22E7851F92F7/info.json b/blockchains/ethereum/assets/0x55C2E2Ea5D2dEEBD64a57F4E959F22E7851F92F7/info.json new file mode 100644 index 00000000..1a6aecec --- /dev/null +++ b/blockchains/ethereum/assets/0x55C2E2Ea5D2dEEBD64a57F4E959F22E7851F92F7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kannalon", + "symbol": "KNL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x55C2E2Ea5D2dEEBD64a57F4E959F22E7851F92F7", + "status": "abandoned", + "id": "0x55C2E2Ea5D2dEEBD64a57F4E959F22E7851F92F7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x55C2E2Ea5D2dEEBD64a57F4E959F22E7851F92F7/logo.png b/blockchains/ethereum/assets/0x55C2E2Ea5D2dEEBD64a57F4E959F22E7851F92F7/logo.png new file mode 100644 index 00000000..4170d6aa Binary files /dev/null and b/blockchains/ethereum/assets/0x55C2E2Ea5D2dEEBD64a57F4E959F22E7851F92F7/logo.png differ diff --git a/blockchains/ethereum/assets/0x55a290f08Bb4CAe8DcF1Ea5635A3FCfd4Da60456/info.json b/blockchains/ethereum/assets/0x55a290f08Bb4CAe8DcF1Ea5635A3FCfd4Da60456/info.json new file mode 100644 index 00000000..61d2520f --- /dev/null +++ b/blockchains/ethereum/assets/0x55a290f08Bb4CAe8DcF1Ea5635A3FCfd4Da60456/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITTO", + "website": "https://bittoexchange.com", + "description": "First Exchange with Proof of Stake Blockchain Technology that offers an advanced access to its users to gain profit.", + "explorer": "https://etherscan.io/token/0x55a290f08Bb4CAe8DcF1Ea5635A3FCfd4Da60456", + "type": "ERC20", + "symbol": "BITTO", + "decimals": 18, + "status": "active", + "id": "0x55a290f08Bb4CAe8DcF1Ea5635A3FCfd4Da60456" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x55a290f08Bb4CAe8DcF1Ea5635A3FCfd4Da60456/logo.png b/blockchains/ethereum/assets/0x55a290f08Bb4CAe8DcF1Ea5635A3FCfd4Da60456/logo.png new file mode 100644 index 00000000..a5a7e9e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x55a290f08Bb4CAe8DcF1Ea5635A3FCfd4Da60456/logo.png differ diff --git a/blockchains/ethereum/assets/0x55aF5865807b196bD0197e0902746F31FBcCFa58/info.json b/blockchains/ethereum/assets/0x55aF5865807b196bD0197e0902746F31FBcCFa58/info.json new file mode 100644 index 00000000..b8ae7e20 --- /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 00000000..ef7cade4 Binary files /dev/null and b/blockchains/ethereum/assets/0x55aF5865807b196bD0197e0902746F31FBcCFa58/logo.png differ diff --git a/blockchains/ethereum/assets/0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855/info.json b/blockchains/ethereum/assets/0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855/info.json new file mode 100644 index 00000000..8cb6ce1b --- /dev/null +++ b/blockchains/ethereum/assets/0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855/info.json @@ -0,0 +1,11 @@ +{ + "name": "DigixGold", + "type": "ERC20", + "symbol": "DGX", + "decimals": 0, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0x55b9a11c2e8351b4ffc7b11561148bfac9977855", + "status": "active", + "id": "0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855/logo.png b/blockchains/ethereum/assets/0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855/logo.png new file mode 100644 index 00000000..b47bbd3e Binary files /dev/null and b/blockchains/ethereum/assets/0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855/logo.png differ diff --git a/blockchains/ethereum/assets/0x55f6CdC949b6a38d8F549599b3e8c10f10FE6AB1/info.json b/blockchains/ethereum/assets/0x55f6CdC949b6a38d8F549599b3e8c10f10FE6AB1/info.json new file mode 100644 index 00000000..74da25bc --- /dev/null +++ b/blockchains/ethereum/assets/0x55f6CdC949b6a38d8F549599b3e8c10f10FE6AB1/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOST", + "symbol": "BOST", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x55f6CdC949b6a38d8F549599b3e8c10f10FE6AB1", + "status": "abandoned", + "id": "0x55f6CdC949b6a38d8F549599b3e8c10f10FE6AB1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x55f6CdC949b6a38d8F549599b3e8c10f10FE6AB1/logo.png b/blockchains/ethereum/assets/0x55f6CdC949b6a38d8F549599b3e8c10f10FE6AB1/logo.png new file mode 100755 index 00000000..2389d9b3 Binary files /dev/null and b/blockchains/ethereum/assets/0x55f6CdC949b6a38d8F549599b3e8c10f10FE6AB1/logo.png differ diff --git a/blockchains/ethereum/assets/0x56015BBE3C01fE05bc30A8a9a9Fd9A88917e7dB3/info.json b/blockchains/ethereum/assets/0x56015BBE3C01fE05bc30A8a9a9Fd9A88917e7dB3/info.json new file mode 100644 index 00000000..ba35fbbf --- /dev/null +++ b/blockchains/ethereum/assets/0x56015BBE3C01fE05bc30A8a9a9Fd9A88917e7dB3/info.json @@ -0,0 +1,17 @@ +{ + "name": "CAT Token", + "website": "https://thecattoken.com/", + "description": "CAT Token - created for people who love cats.", + "explorer": "https://etherscan.io/token/0x56015BBE3C01fE05bc30A8a9a9Fd9A88917e7dB3", + "type": "ERC20", + "symbol": "CAT", + "decimals": 18, + "status": "active", + "id": "0x56015BBE3C01fE05bc30A8a9a9Fd9A88917e7dB3", + "links": [ + { + "name": "whitepaper", + "url": "https://thecattoken.com/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56015BBE3C01fE05bc30A8a9a9Fd9A88917e7dB3/logo.png b/blockchains/ethereum/assets/0x56015BBE3C01fE05bc30A8a9a9Fd9A88917e7dB3/logo.png new file mode 100644 index 00000000..ae5b5f33 Binary files /dev/null and b/blockchains/ethereum/assets/0x56015BBE3C01fE05bc30A8a9a9Fd9A88917e7dB3/logo.png differ diff --git a/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json b/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json new file mode 100644 index 00000000..fa6db940 --- /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 00000000..149d2563 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 00000000..908920cb --- /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 00000000..e1245850 Binary files /dev/null and b/blockchains/ethereum/assets/0x56072C95FAA701256059aa122697B133aDEd9279/logo.png differ diff --git a/blockchains/ethereum/assets/0x560a20EDdeDDf84217221AeF0d5Ca7d7aE7aE798/info.json b/blockchains/ethereum/assets/0x560a20EDdeDDf84217221AeF0d5Ca7d7aE7aE798/info.json new file mode 100644 index 00000000..8de097e7 --- /dev/null +++ b/blockchains/ethereum/assets/0x560a20EDdeDDf84217221AeF0d5Ca7d7aE7aE798/info.json @@ -0,0 +1,11 @@ +{ + "name": "PlasmaBank token", + "symbol": "PBK", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x560a20EDdeDDf84217221AeF0d5Ca7d7aE7aE798", + "status": "abandoned", + "id": "0x560a20EDdeDDf84217221AeF0d5Ca7d7aE7aE798" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x560a20EDdeDDf84217221AeF0d5Ca7d7aE7aE798/logo.png b/blockchains/ethereum/assets/0x560a20EDdeDDf84217221AeF0d5Ca7d7aE7aE798/logo.png new file mode 100755 index 00000000..400f0fe8 Binary files /dev/null and b/blockchains/ethereum/assets/0x560a20EDdeDDf84217221AeF0d5Ca7d7aE7aE798/logo.png differ diff --git a/blockchains/ethereum/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json b/blockchains/ethereum/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json new file mode 100644 index 00000000..4d68e5b4 --- /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 00000000..409e4ece Binary files /dev/null and b/blockchains/ethereum/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/logo.png differ diff --git a/blockchains/ethereum/assets/0x56288Db47A268810fa49A505044919aF82E9088a/info.json b/blockchains/ethereum/assets/0x56288Db47A268810fa49A505044919aF82E9088a/info.json new file mode 100644 index 00000000..3357692c --- /dev/null +++ b/blockchains/ethereum/assets/0x56288Db47A268810fa49A505044919aF82E9088a/info.json @@ -0,0 +1,11 @@ +{ + "name": "JTrust Coin", + "symbol": "JTC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x56288Db47A268810fa49A505044919aF82E9088a", + "status": "abandoned", + "id": "0x56288Db47A268810fa49A505044919aF82E9088a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56288Db47A268810fa49A505044919aF82E9088a/logo.png b/blockchains/ethereum/assets/0x56288Db47A268810fa49A505044919aF82E9088a/logo.png new file mode 100644 index 00000000..7c464ce2 Binary files /dev/null and b/blockchains/ethereum/assets/0x56288Db47A268810fa49A505044919aF82E9088a/logo.png differ diff --git a/blockchains/ethereum/assets/0x56325d180Ec3878A9028AfC7B0EDCEe7486Cc9df/info.json b/blockchains/ethereum/assets/0x56325d180Ec3878A9028AfC7B0EDCEe7486Cc9df/info.json new file mode 100644 index 00000000..54106b20 --- /dev/null +++ b/blockchains/ethereum/assets/0x56325d180Ec3878A9028AfC7B0EDCEe7486Cc9df/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fountain 3", + "symbol": "FTN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x56325d180Ec3878A9028AfC7B0EDCEe7486Cc9df", + "status": "active", + "id": "0x56325d180Ec3878A9028AfC7B0EDCEe7486Cc9df" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56325d180Ec3878A9028AfC7B0EDCEe7486Cc9df/logo.png b/blockchains/ethereum/assets/0x56325d180Ec3878A9028AfC7B0EDCEe7486Cc9df/logo.png new file mode 100644 index 00000000..09704a83 Binary files /dev/null and b/blockchains/ethereum/assets/0x56325d180Ec3878A9028AfC7B0EDCEe7486Cc9df/logo.png differ diff --git a/blockchains/ethereum/assets/0x5635ddEaBf9cdDA686995Fe90BEB5411831563FC/info.json b/blockchains/ethereum/assets/0x5635ddEaBf9cdDA686995Fe90BEB5411831563FC/info.json new file mode 100644 index 00000000..65bb8256 --- /dev/null +++ b/blockchains/ethereum/assets/0x5635ddEaBf9cdDA686995Fe90BEB5411831563FC/info.json @@ -0,0 +1,11 @@ +{ + "name": "TravelNote", + "symbol": "TVNT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://ico.travelnote.io/", + "explorer": "https://etherscan.io/token/0x5635ddEaBf9cdDA686995Fe90BEB5411831563FC", + "status": "abandoned", + "id": "0x5635ddEaBf9cdDA686995Fe90BEB5411831563FC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5635ddEaBf9cdDA686995Fe90BEB5411831563FC/logo.png b/blockchains/ethereum/assets/0x5635ddEaBf9cdDA686995Fe90BEB5411831563FC/logo.png new file mode 100644 index 00000000..8b3ae846 Binary files /dev/null and b/blockchains/ethereum/assets/0x5635ddEaBf9cdDA686995Fe90BEB5411831563FC/logo.png differ diff --git a/blockchains/ethereum/assets/0x564393b8D6dEAeA8f3D739a3f6D9B441D8Ee6198/info.json b/blockchains/ethereum/assets/0x564393b8D6dEAeA8f3D739a3f6D9B441D8Ee6198/info.json new file mode 100644 index 00000000..81b5376f --- /dev/null +++ b/blockchains/ethereum/assets/0x564393b8D6dEAeA8f3D739a3f6D9B441D8Ee6198/info.json @@ -0,0 +1,11 @@ +{ + "name": "Amino Network Infrastructure ", + "symbol": "AMIX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://amino.world/", + "explorer": "https://etherscan.io/token/0x564393b8D6dEAeA8f3D739a3f6D9B441D8Ee6198", + "status": "abandoned", + "id": "0x564393b8D6dEAeA8f3D739a3f6D9B441D8Ee6198" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x564393b8D6dEAeA8f3D739a3f6D9B441D8Ee6198/logo.png b/blockchains/ethereum/assets/0x564393b8D6dEAeA8f3D739a3f6D9B441D8Ee6198/logo.png new file mode 100644 index 00000000..b53f8c2d Binary files /dev/null and b/blockchains/ethereum/assets/0x564393b8D6dEAeA8f3D739a3f6D9B441D8Ee6198/logo.png differ diff --git a/blockchains/ethereum/assets/0x564F45b6bb68ADEd8b660a0d8a0A948DD6d6e4E8/info.json b/blockchains/ethereum/assets/0x564F45b6bb68ADEd8b660a0d8a0A948DD6d6e4E8/info.json new file mode 100644 index 00000000..ae417acb --- /dev/null +++ b/blockchains/ethereum/assets/0x564F45b6bb68ADEd8b660a0d8a0A948DD6d6e4E8/info.json @@ -0,0 +1,11 @@ +{ + "name": "ALADIN", + "website": "https://aladiex.com/", + "description": "We make it possible for any business to raise capital for their projects globally at a small cost, with low barriers and support investors around the world who can invest in potential projects more easily, manage their assets and provide them with great trading tools", + "explorer": "https://etherscan.io/token/0x564F45b6bb68ADEd8b660a0d8a0A948DD6d6e4E8", + "type": "ERC20", + "symbol": "ALA", + "decimals": 8, + "status": "active", + "id": "0x564F45b6bb68ADEd8b660a0d8a0A948DD6d6e4E8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x564F45b6bb68ADEd8b660a0d8a0A948DD6d6e4E8/logo.png b/blockchains/ethereum/assets/0x564F45b6bb68ADEd8b660a0d8a0A948DD6d6e4E8/logo.png new file mode 100644 index 00000000..92bcdeb6 Binary files /dev/null and b/blockchains/ethereum/assets/0x564F45b6bb68ADEd8b660a0d8a0A948DD6d6e4E8/logo.png differ diff --git a/blockchains/ethereum/assets/0x5651D6678bcf70740487cAd0003918d98ab2898B/info.json b/blockchains/ethereum/assets/0x5651D6678bcf70740487cAd0003918d98ab2898B/info.json new file mode 100644 index 00000000..75e47237 --- /dev/null +++ b/blockchains/ethereum/assets/0x5651D6678bcf70740487cAd0003918d98ab2898B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Expect Chain", + "symbol": "EXC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5651D6678bcf70740487cAd0003918d98ab2898B", + "status": "abandoned", + "id": "0x5651D6678bcf70740487cAd0003918d98ab2898B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5651D6678bcf70740487cAd0003918d98ab2898B/logo.png b/blockchains/ethereum/assets/0x5651D6678bcf70740487cAd0003918d98ab2898B/logo.png new file mode 100755 index 00000000..55412ee4 Binary files /dev/null and b/blockchains/ethereum/assets/0x5651D6678bcf70740487cAd0003918d98ab2898B/logo.png differ diff --git a/blockchains/ethereum/assets/0x5651fA7a726B9Ec0cAd00Ee140179912B6E73599/info.json b/blockchains/ethereum/assets/0x5651fA7a726B9Ec0cAd00Ee140179912B6E73599/info.json new file mode 100644 index 00000000..9f1d831c --- /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 00000000..87149be7 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 new file mode 100644 index 00000000..f971a3a6 --- /dev/null +++ b/blockchains/ethereum/assets/0x56687cf29Ac9751Ce2a4E764680B6aD7E668942e/info.json @@ -0,0 +1,17 @@ +{ + "name": "FlynJamm", + "website": "https://outpost-protocol.com/jamm", + "description": "A social token for crypto-natives who are experimenting with tokenized community tools to pave the way for new creator economies.", + "explorer": "https://etherscan.io/token/0x56687cf29Ac9751Ce2a4E764680B6aD7E668942e", + "type": "ERC20", + "symbol": "JAMM", + "decimals": 4, + "status": "active", + "id": "0x56687cf29Ac9751Ce2a4E764680B6aD7E668942e", + "links": [ + { + "name": "x", + "url": "https://x.com/jammsession_" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56687cf29Ac9751Ce2a4E764680B6aD7E668942e/logo.png b/blockchains/ethereum/assets/0x56687cf29Ac9751Ce2a4E764680B6aD7E668942e/logo.png new file mode 100644 index 00000000..09e19df8 Binary files /dev/null and b/blockchains/ethereum/assets/0x56687cf29Ac9751Ce2a4E764680B6aD7E668942e/logo.png differ diff --git a/blockchains/ethereum/assets/0x566957eF80F9fd5526CD2BEF8BE67035C0b81130/info.json b/blockchains/ethereum/assets/0x566957eF80F9fd5526CD2BEF8BE67035C0b81130/info.json new file mode 100644 index 00000000..54fc9aff --- /dev/null +++ b/blockchains/ethereum/assets/0x566957eF80F9fd5526CD2BEF8BE67035C0b81130/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (PoS) (Portal from Polygon)", + "type": "ERC20", + "symbol": "USDCpo", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://etherscan.io/token/0x566957eF80F9fd5526CD2BEF8BE67035C0b81130", + "status": "active", + "id": "0x566957eF80F9fd5526CD2BEF8BE67035C0b81130", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x566957eF80F9fd5526CD2BEF8BE67035C0b81130/logo.png b/blockchains/ethereum/assets/0x566957eF80F9fd5526CD2BEF8BE67035C0b81130/logo.png new file mode 100644 index 00000000..4e3f74d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x566957eF80F9fd5526CD2BEF8BE67035C0b81130/logo.png differ diff --git a/blockchains/ethereum/assets/0x566fF8D8bD6dE69d2af4e3cf9153E2Cc77c7972f/info.json b/blockchains/ethereum/assets/0x566fF8D8bD6dE69d2af4e3cf9153E2Cc77c7972f/info.json new file mode 100644 index 00000000..d4b455d2 --- /dev/null +++ b/blockchains/ethereum/assets/0x566fF8D8bD6dE69d2af4e3cf9153E2Cc77c7972f/info.json @@ -0,0 +1,11 @@ +{ + "name": "VianeXGold ", + "symbol": "VIXG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://vianex-org.site/", + "explorer": "https://etherscan.io/token/0x566fF8D8bD6dE69d2af4e3cf9153E2Cc77c7972f", + "status": "abandoned", + "id": "0x566fF8D8bD6dE69d2af4e3cf9153E2Cc77c7972f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x566fF8D8bD6dE69d2af4e3cf9153E2Cc77c7972f/logo.png b/blockchains/ethereum/assets/0x566fF8D8bD6dE69d2af4e3cf9153E2Cc77c7972f/logo.png new file mode 100644 index 00000000..555ba176 Binary files /dev/null and b/blockchains/ethereum/assets/0x566fF8D8bD6dE69d2af4e3cf9153E2Cc77c7972f/logo.png differ diff --git a/blockchains/ethereum/assets/0x567287d4f42086BEAb4b36De9Af21C70aDEc6760/info.json b/blockchains/ethereum/assets/0x567287d4f42086BEAb4b36De9Af21C70aDEc6760/info.json new file mode 100644 index 00000000..54db8451 --- /dev/null +++ b/blockchains/ethereum/assets/0x567287d4f42086BEAb4b36De9Af21C70aDEc6760/info.json @@ -0,0 +1,11 @@ +{ + "name": "Latino Token", + "symbol": "LATINO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://latinotoken.com/", + "explorer": "https://etherscan.io/token/0x567287d4f42086BEAb4b36De9Af21C70aDEc6760", + "status": "abandoned", + "id": "0x567287d4f42086BEAb4b36De9Af21C70aDEc6760" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x567287d4f42086BEAb4b36De9Af21C70aDEc6760/logo.png b/blockchains/ethereum/assets/0x567287d4f42086BEAb4b36De9Af21C70aDEc6760/logo.png new file mode 100644 index 00000000..223e0cc3 Binary files /dev/null and b/blockchains/ethereum/assets/0x567287d4f42086BEAb4b36De9Af21C70aDEc6760/logo.png differ diff --git a/blockchains/ethereum/assets/0x567300e14f8d67e1F6720a95291Dce2511a86723/info.json b/blockchains/ethereum/assets/0x567300e14f8d67e1F6720a95291Dce2511a86723/info.json new file mode 100644 index 00000000..5ebcc17e --- /dev/null +++ b/blockchains/ethereum/assets/0x567300e14f8d67e1F6720a95291Dce2511a86723/info.json @@ -0,0 +1,11 @@ +{ + "name": "Helper Search Token", + "symbol": "HSN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://helpersearch.network/", + "explorer": "https://etherscan.io/token/0x567300e14f8d67e1F6720a95291Dce2511a86723", + "status": "abandoned", + "id": "0x567300e14f8d67e1F6720a95291Dce2511a86723" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x567300e14f8d67e1F6720a95291Dce2511a86723/logo.png b/blockchains/ethereum/assets/0x567300e14f8d67e1F6720a95291Dce2511a86723/logo.png new file mode 100644 index 00000000..83a9312f Binary files /dev/null and b/blockchains/ethereum/assets/0x567300e14f8d67e1F6720a95291Dce2511a86723/logo.png differ diff --git a/blockchains/ethereum/assets/0x568F9F32969E29B5cE1a4545bE5398e8Cc7C4401/info.json b/blockchains/ethereum/assets/0x568F9F32969E29B5cE1a4545bE5398e8Cc7C4401/info.json new file mode 100644 index 00000000..d6d22b12 --- /dev/null +++ b/blockchains/ethereum/assets/0x568F9F32969E29B5cE1a4545bE5398e8Cc7C4401/info.json @@ -0,0 +1,11 @@ +{ + "name": "FiveBalance", + "symbol": "FBN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x568F9F32969E29B5cE1a4545bE5398e8Cc7C4401", + "status": "abandoned", + "id": "0x568F9F32969E29B5cE1a4545bE5398e8Cc7C4401" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x568F9F32969E29B5cE1a4545bE5398e8Cc7C4401/logo.png b/blockchains/ethereum/assets/0x568F9F32969E29B5cE1a4545bE5398e8Cc7C4401/logo.png new file mode 100644 index 00000000..61ce32a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x568F9F32969E29B5cE1a4545bE5398e8Cc7C4401/logo.png differ diff --git a/blockchains/ethereum/assets/0x56978aa0ce04e117f4c2EACEf0EaCc27Ae99Ff82/info.json b/blockchains/ethereum/assets/0x56978aa0ce04e117f4c2EACEf0EaCc27Ae99Ff82/info.json new file mode 100644 index 00000000..cb122d26 --- /dev/null +++ b/blockchains/ethereum/assets/0x56978aa0ce04e117f4c2EACEf0EaCc27Ae99Ff82/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 306-CN12", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x56978aa0ce04e117f4c2EACEf0EaCc27Ae99Ff82", + "status": "abandoned", + "id": "0x56978aa0ce04e117f4c2EACEf0EaCc27Ae99Ff82" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56978aa0ce04e117f4c2EACEf0EaCc27Ae99Ff82/logo.png b/blockchains/ethereum/assets/0x56978aa0ce04e117f4c2EACEf0EaCc27Ae99Ff82/logo.png new file mode 100644 index 00000000..e173eeb9 Binary files /dev/null and b/blockchains/ethereum/assets/0x56978aa0ce04e117f4c2EACEf0EaCc27Ae99Ff82/logo.png differ diff --git a/blockchains/ethereum/assets/0x5699C04A5Bee6adBA02Ac81Baa36E01960F94562/info.json b/blockchains/ethereum/assets/0x5699C04A5Bee6adBA02Ac81Baa36E01960F94562/info.json new file mode 100644 index 00000000..243ac944 --- /dev/null +++ b/blockchains/ethereum/assets/0x5699C04A5Bee6adBA02Ac81Baa36E01960F94562/info.json @@ -0,0 +1,11 @@ +{ + "name": "FX Crypto", + "symbol": "FXC", + "type": "ERC20", + "decimals": 16, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5699C04A5Bee6adBA02Ac81Baa36E01960F94562", + "status": "abandoned", + "id": "0x5699C04A5Bee6adBA02Ac81Baa36E01960F94562" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5699C04A5Bee6adBA02Ac81Baa36E01960F94562/logo.png b/blockchains/ethereum/assets/0x5699C04A5Bee6adBA02Ac81Baa36E01960F94562/logo.png new file mode 100644 index 00000000..ad29a805 Binary files /dev/null and b/blockchains/ethereum/assets/0x5699C04A5Bee6adBA02Ac81Baa36E01960F94562/logo.png differ diff --git a/blockchains/ethereum/assets/0x56Af706584668690a500BC35C5499dD6104B96D1/info.json b/blockchains/ethereum/assets/0x56Af706584668690a500BC35C5499dD6104B96D1/info.json new file mode 100644 index 00000000..3c535345 --- /dev/null +++ b/blockchains/ethereum/assets/0x56Af706584668690a500BC35C5499dD6104B96D1/info.json @@ -0,0 +1,11 @@ +{ + "name": "IQC Token", + "website": "https://iqcexchange.com", + "description": "IQC Exchange. We are always making efforts to become the best and the most reliable trading broker in the world", + "explorer": "https://etherscan.io/token/0x56Af706584668690a500BC35C5499dD6104B96D1", + "type": "ERC20", + "symbol": "IQC", + "decimals": 18, + "status": "active", + "id": "0x56Af706584668690a500BC35C5499dD6104B96D1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56Af706584668690a500BC35C5499dD6104B96D1/logo.png b/blockchains/ethereum/assets/0x56Af706584668690a500BC35C5499dD6104B96D1/logo.png new file mode 100644 index 00000000..87ba37b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x56Af706584668690a500BC35C5499dD6104B96D1/logo.png differ diff --git a/blockchains/ethereum/assets/0x56BE94D29e1125D2D61D06629c1b251d72c1b3B3/info.json b/blockchains/ethereum/assets/0x56BE94D29e1125D2D61D06629c1b251d72c1b3B3/info.json new file mode 100644 index 00000000..16cf55d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x56BE94D29e1125D2D61D06629c1b251d72c1b3B3/info.json @@ -0,0 +1,11 @@ +{ + "name": "HUSTLE", + "symbol": "HUSL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.hustletoken.org/", + "explorer": "https://etherscan.io/token/0x56BE94D29e1125D2D61D06629c1b251d72c1b3B3", + "status": "abandoned", + "id": "0x56BE94D29e1125D2D61D06629c1b251d72c1b3B3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56BE94D29e1125D2D61D06629c1b251d72c1b3B3/logo.png b/blockchains/ethereum/assets/0x56BE94D29e1125D2D61D06629c1b251d72c1b3B3/logo.png new file mode 100644 index 00000000..665b1055 Binary files /dev/null and b/blockchains/ethereum/assets/0x56BE94D29e1125D2D61D06629c1b251d72c1b3B3/logo.png differ diff --git a/blockchains/ethereum/assets/0x56C438eE032224D93a5E9F182cBF4608cDfc928e/info.json b/blockchains/ethereum/assets/0x56C438eE032224D93a5E9F182cBF4608cDfc928e/info.json new file mode 100644 index 00000000..49cd09ba --- /dev/null +++ b/blockchains/ethereum/assets/0x56C438eE032224D93a5E9F182cBF4608cDfc928e/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETH Player Key", + "symbol": "EPK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x56C438eE032224D93a5E9F182cBF4608cDfc928e", + "status": "spam", + "id": "0x56C438eE032224D93a5E9F182cBF4608cDfc928e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56C438eE032224D93a5E9F182cBF4608cDfc928e/logo.png b/blockchains/ethereum/assets/0x56C438eE032224D93a5E9F182cBF4608cDfc928e/logo.png new file mode 100644 index 00000000..264cb670 Binary files /dev/null and b/blockchains/ethereum/assets/0x56C438eE032224D93a5E9F182cBF4608cDfc928e/logo.png differ diff --git a/blockchains/ethereum/assets/0x56CdBbeec9828962cECB3f1b69517d430295D952/info.json b/blockchains/ethereum/assets/0x56CdBbeec9828962cECB3f1b69517d430295D952/info.json new file mode 100644 index 00000000..ccc1c180 --- /dev/null +++ b/blockchains/ethereum/assets/0x56CdBbeec9828962cECB3f1b69517d430295D952/info.json @@ -0,0 +1,11 @@ +{ + "name": "Davecoin", + "symbol": "DDTG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://davecoin.cash/", + "explorer": "https://etherscan.io/token/0x56CdBbeec9828962cECB3f1b69517d430295D952", + "status": "abandoned", + "id": "0x56CdBbeec9828962cECB3f1b69517d430295D952" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56CdBbeec9828962cECB3f1b69517d430295D952/logo.png b/blockchains/ethereum/assets/0x56CdBbeec9828962cECB3f1b69517d430295D952/logo.png new file mode 100644 index 00000000..d1f5991c Binary files /dev/null and b/blockchains/ethereum/assets/0x56CdBbeec9828962cECB3f1b69517d430295D952/logo.png differ diff --git a/blockchains/ethereum/assets/0x56D1aE30c97288DA4B58BC39F026091778e4E316/info.json b/blockchains/ethereum/assets/0x56D1aE30c97288DA4B58BC39F026091778e4E316/info.json new file mode 100644 index 00000000..7bac6814 --- /dev/null +++ b/blockchains/ethereum/assets/0x56D1aE30c97288DA4B58BC39F026091778e4E316/info.json @@ -0,0 +1,11 @@ +{ + "name": "DAGT Crypto Platform", + "symbol": "DAGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.dagt.io/", + "explorer": "https://etherscan.io/token/0x56D1aE30c97288DA4B58BC39F026091778e4E316", + "status": "abandoned", + "id": "0x56D1aE30c97288DA4B58BC39F026091778e4E316" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56D1aE30c97288DA4B58BC39F026091778e4E316/logo.png b/blockchains/ethereum/assets/0x56D1aE30c97288DA4B58BC39F026091778e4E316/logo.png new file mode 100644 index 00000000..668903a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x56D1aE30c97288DA4B58BC39F026091778e4E316/logo.png differ diff --git a/blockchains/ethereum/assets/0x56aA298a19C93c6801FDde870fA63EF75Cc0aF72/info.json b/blockchains/ethereum/assets/0x56aA298a19C93c6801FDde870fA63EF75Cc0aF72/info.json new file mode 100644 index 00000000..947ae3a9 --- /dev/null +++ b/blockchains/ethereum/assets/0x56aA298a19C93c6801FDde870fA63EF75Cc0aF72/info.json @@ -0,0 +1,32 @@ +{ + "name": "mBABA Token", + "website": "https://mirror.finance", + "description": "Wrapped Mirror BABA Token.", + "explorer": "https://etherscan.io/token/0x56aA298a19C93c6801FDde870fA63EF75Cc0aF72", + "type": "ERC20", + "symbol": "mBABA", + "decimals": 18, + "status": "active", + "id": "0x56aA298a19C93c6801FDde870fA63EF75Cc0aF72", + "tags": [ + "wrapped" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MirrorProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/mirror_protocol" + }, + { + "name": "discord", + "url": "https://discord.com/MirrorProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/@mirror-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56aA298a19C93c6801FDde870fA63EF75Cc0aF72/logo.png b/blockchains/ethereum/assets/0x56aA298a19C93c6801FDde870fA63EF75Cc0aF72/logo.png new file mode 100644 index 00000000..d4a07672 Binary files /dev/null and b/blockchains/ethereum/assets/0x56aA298a19C93c6801FDde870fA63EF75Cc0aF72/logo.png differ diff --git a/blockchains/ethereum/assets/0x56b6431F45d08eED55f34371386326c739eACbcC/info.json b/blockchains/ethereum/assets/0x56b6431F45d08eED55f34371386326c739eACbcC/info.json new file mode 100644 index 00000000..1855619d --- /dev/null +++ b/blockchains/ethereum/assets/0x56b6431F45d08eED55f34371386326c739eACbcC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Meta", + "symbol": "ETHM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ethermeta.com/", + "explorer": "https://etherscan.io/token/0x56b6431F45d08eED55f34371386326c739eACbcC", + "status": "abandoned", + "id": "0x56b6431F45d08eED55f34371386326c739eACbcC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56b6431F45d08eED55f34371386326c739eACbcC/logo.png b/blockchains/ethereum/assets/0x56b6431F45d08eED55f34371386326c739eACbcC/logo.png new file mode 100644 index 00000000..27fd34bf Binary files /dev/null and b/blockchains/ethereum/assets/0x56b6431F45d08eED55f34371386326c739eACbcC/logo.png differ diff --git a/blockchains/ethereum/assets/0x56bB6f961F2CB9947FEa063Df1A42c2233487903/info.json b/blockchains/ethereum/assets/0x56bB6f961F2CB9947FEa063Df1A42c2233487903/info.json new file mode 100644 index 00000000..7bcc94ca --- /dev/null +++ b/blockchains/ethereum/assets/0x56bB6f961F2CB9947FEa063Df1A42c2233487903/info.json @@ -0,0 +1,11 @@ +{ + "name": "TAPSPAY", + "symbol": "TAPS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x56bB6f961F2CB9947FEa063Df1A42c2233487903", + "status": "abandoned", + "id": "0x56bB6f961F2CB9947FEa063Df1A42c2233487903" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56bB6f961F2CB9947FEa063Df1A42c2233487903/logo.png b/blockchains/ethereum/assets/0x56bB6f961F2CB9947FEa063Df1A42c2233487903/logo.png new file mode 100644 index 00000000..e154fc15 Binary files /dev/null and b/blockchains/ethereum/assets/0x56bB6f961F2CB9947FEa063Df1A42c2233487903/logo.png differ diff --git a/blockchains/ethereum/assets/0x56ba2Ee7890461f463F7be02aAC3099f6d5811A8/info.json b/blockchains/ethereum/assets/0x56ba2Ee7890461f463F7be02aAC3099f6d5811A8/info.json new file mode 100644 index 00000000..f70c212c --- /dev/null +++ b/blockchains/ethereum/assets/0x56ba2Ee7890461f463F7be02aAC3099f6d5811A8/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlockCAT Token", + "symbol": "CAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x56ba2Ee7890461f463F7be02aAC3099f6d5811A8", + "status": "abandoned", + "id": "0x56ba2Ee7890461f463F7be02aAC3099f6d5811A8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56ba2Ee7890461f463F7be02aAC3099f6d5811A8/logo.png b/blockchains/ethereum/assets/0x56ba2Ee7890461f463F7be02aAC3099f6d5811A8/logo.png new file mode 100644 index 00000000..4abe0f35 Binary files /dev/null and b/blockchains/ethereum/assets/0x56ba2Ee7890461f463F7be02aAC3099f6d5811A8/logo.png differ diff --git a/blockchains/ethereum/assets/0x56d61054bce91d607CB0e52a6c28E08D35578244/info.json b/blockchains/ethereum/assets/0x56d61054bce91d607CB0e52a6c28E08D35578244/info.json new file mode 100644 index 00000000..d162d324 --- /dev/null +++ b/blockchains/ethereum/assets/0x56d61054bce91d607CB0e52a6c28E08D35578244/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C480772", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x56d61054bce91d607CB0e52a6c28E08D35578244", + "status": "abandoned", + "id": "0x56d61054bce91d607CB0e52a6c28E08D35578244" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56d61054bce91d607CB0e52a6c28E08D35578244/logo.png b/blockchains/ethereum/assets/0x56d61054bce91d607CB0e52a6c28E08D35578244/logo.png new file mode 100644 index 00000000..b11c53d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x56d61054bce91d607CB0e52a6c28E08D35578244/logo.png differ diff --git a/blockchains/ethereum/assets/0x56d811088235F11C8920698a204A5010a788f4b3/info.json b/blockchains/ethereum/assets/0x56d811088235F11C8920698a204A5010a788f4b3/info.json new file mode 100644 index 00000000..a0591075 --- /dev/null +++ b/blockchains/ethereum/assets/0x56d811088235F11C8920698a204A5010a788f4b3/info.json @@ -0,0 +1,11 @@ +{ + "name": "bZx Protocol Token", + "website": "https://bzx.network", + "description": "BZRX is a bZx protocol governance token", + "explorer": "https://etherscan.io/token/0x56d811088235F11C8920698a204A5010a788f4b3", + "type": "ERC20", + "symbol": "BZRX", + "decimals": 18, + "status": "active", + "id": "0x56d811088235F11C8920698a204A5010a788f4b3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56d811088235F11C8920698a204A5010a788f4b3/logo.png b/blockchains/ethereum/assets/0x56d811088235F11C8920698a204A5010a788f4b3/logo.png new file mode 100644 index 00000000..d0c8bd14 Binary files /dev/null and b/blockchains/ethereum/assets/0x56d811088235F11C8920698a204A5010a788f4b3/logo.png differ diff --git a/blockchains/ethereum/assets/0x56e0B2C7694E6e10391E870774daA45cf6583486/info.json b/blockchains/ethereum/assets/0x56e0B2C7694E6e10391E870774daA45cf6583486/info.json new file mode 100644 index 00000000..171d53ac --- /dev/null +++ b/blockchains/ethereum/assets/0x56e0B2C7694E6e10391E870774daA45cf6583486/info.json @@ -0,0 +1,11 @@ +{ + "name": "DUO Network Token", + "symbol": "DUO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://duo.network/", + "explorer": "https://etherscan.io/token/0x56e0B2C7694E6e10391E870774daA45cf6583486", + "status": "abandoned", + "id": "0x56e0B2C7694E6e10391E870774daA45cf6583486" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56e0B2C7694E6e10391E870774daA45cf6583486/logo.png b/blockchains/ethereum/assets/0x56e0B2C7694E6e10391E870774daA45cf6583486/logo.png new file mode 100644 index 00000000..37eafa38 Binary files /dev/null and b/blockchains/ethereum/assets/0x56e0B2C7694E6e10391E870774daA45cf6583486/logo.png differ diff --git a/blockchains/ethereum/assets/0x56eE8C9BD1d445a3324ad83E86D8be309Db8f85d/info.json b/blockchains/ethereum/assets/0x56eE8C9BD1d445a3324ad83E86D8be309Db8f85d/info.json new file mode 100644 index 00000000..ff3fbe77 --- /dev/null +++ b/blockchains/ethereum/assets/0x56eE8C9BD1d445a3324ad83E86D8be309Db8f85d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Solareum", + "symbol": "SLRM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://solareum.club", + "explorer": "https://etherscan.io/token/0x56eE8C9BD1d445a3324ad83E86D8be309Db8f85d", + "status": "abandoned", + "id": "0x56eE8C9BD1d445a3324ad83E86D8be309Db8f85d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x56eE8C9BD1d445a3324ad83E86D8be309Db8f85d/logo.png b/blockchains/ethereum/assets/0x56eE8C9BD1d445a3324ad83E86D8be309Db8f85d/logo.png new file mode 100644 index 00000000..8feeed46 Binary files /dev/null and b/blockchains/ethereum/assets/0x56eE8C9BD1d445a3324ad83E86D8be309Db8f85d/logo.png differ diff --git a/blockchains/ethereum/assets/0x571f1ae7851E59580f24857Ed65bf2d89eaFBF00/info.json b/blockchains/ethereum/assets/0x571f1ae7851E59580f24857Ed65bf2d89eaFBF00/info.json new file mode 100644 index 00000000..a26cca02 --- /dev/null +++ b/blockchains/ethereum/assets/0x571f1ae7851E59580f24857Ed65bf2d89eaFBF00/info.json @@ -0,0 +1,11 @@ +{ + "name": "ATLANTACOIN", + "symbol": "ATLT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x571f1ae7851E59580f24857Ed65bf2d89eaFBF00", + "status": "abandoned", + "id": "0x571f1ae7851E59580f24857Ed65bf2d89eaFBF00" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x571f1ae7851E59580f24857Ed65bf2d89eaFBF00/logo.png b/blockchains/ethereum/assets/0x571f1ae7851E59580f24857Ed65bf2d89eaFBF00/logo.png new file mode 100644 index 00000000..6b065d35 Binary files /dev/null and b/blockchains/ethereum/assets/0x571f1ae7851E59580f24857Ed65bf2d89eaFBF00/logo.png differ diff --git a/blockchains/ethereum/assets/0x57270D35A840BC5C094da6FBeCA033FB71eA6Ab0/info.json b/blockchains/ethereum/assets/0x57270D35A840BC5C094da6FBeCA033FB71eA6Ab0/info.json new file mode 100644 index 00000000..17c69e32 --- /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 00000000..8a939bb2 Binary files /dev/null and b/blockchains/ethereum/assets/0x57270D35A840BC5C094da6FBeCA033FB71eA6Ab0/logo.png differ diff --git a/blockchains/ethereum/assets/0x5732046A883704404F284Ce41FfADd5b007FD668/info.json b/blockchains/ethereum/assets/0x5732046A883704404F284Ce41FfADd5b007FD668/info.json new file mode 100644 index 00000000..bb3c04a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x5732046A883704404F284Ce41FfADd5b007FD668/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bluzelle Token", + "symbol": "BLZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bluzelle.com", + "explorer": "https://etherscan.io/token/0x5732046A883704404F284Ce41FfADd5b007FD668", + "status": "active", + "id": "0x5732046A883704404F284Ce41FfADd5b007FD668" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5732046A883704404F284Ce41FfADd5b007FD668/logo.png b/blockchains/ethereum/assets/0x5732046A883704404F284Ce41FfADd5b007FD668/logo.png new file mode 100644 index 00000000..211c9c4a Binary files /dev/null and b/blockchains/ethereum/assets/0x5732046A883704404F284Ce41FfADd5b007FD668/logo.png differ diff --git a/blockchains/ethereum/assets/0x574725c3f528096e7b27Ae7e5FC47b35eF515260/info.json b/blockchains/ethereum/assets/0x574725c3f528096e7b27Ae7e5FC47b35eF515260/info.json new file mode 100644 index 00000000..d7803119 --- /dev/null +++ b/blockchains/ethereum/assets/0x574725c3f528096e7b27Ae7e5FC47b35eF515260/info.json @@ -0,0 +1,11 @@ +{ + "name": "Petra", + "symbol": "PTR", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x574725c3f528096e7b27Ae7e5FC47b35eF515260", + "status": "abandoned", + "id": "0x574725c3f528096e7b27Ae7e5FC47b35eF515260" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x574725c3f528096e7b27Ae7e5FC47b35eF515260/logo.png b/blockchains/ethereum/assets/0x574725c3f528096e7b27Ae7e5FC47b35eF515260/logo.png new file mode 100644 index 00000000..9c214916 Binary files /dev/null and b/blockchains/ethereum/assets/0x574725c3f528096e7b27Ae7e5FC47b35eF515260/logo.png differ diff --git a/blockchains/ethereum/assets/0x574B5B500517ccaD92c78573c7daf8Be8cc0dE19/info.json b/blockchains/ethereum/assets/0x574B5B500517ccaD92c78573c7daf8Be8cc0dE19/info.json new file mode 100644 index 00000000..da425b7b --- /dev/null +++ b/blockchains/ethereum/assets/0x574B5B500517ccaD92c78573c7daf8Be8cc0dE19/info.json @@ -0,0 +1,11 @@ +{ + "name": "Five Color Stone", + "symbol": "FCS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x574B5B500517ccaD92c78573c7daf8Be8cc0dE19", + "status": "abandoned", + "id": "0x574B5B500517ccaD92c78573c7daf8Be8cc0dE19" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x574B5B500517ccaD92c78573c7daf8Be8cc0dE19/logo.png b/blockchains/ethereum/assets/0x574B5B500517ccaD92c78573c7daf8Be8cc0dE19/logo.png new file mode 100644 index 00000000..2e6b6dc7 Binary files /dev/null and b/blockchains/ethereum/assets/0x574B5B500517ccaD92c78573c7daf8Be8cc0dE19/logo.png differ diff --git a/blockchains/ethereum/assets/0x574F84108a98c575794F75483d801d1d5DC861a5/info.json b/blockchains/ethereum/assets/0x574F84108a98c575794F75483d801d1d5DC861a5/info.json new file mode 100644 index 00000000..c5287233 --- /dev/null +++ b/blockchains/ethereum/assets/0x574F84108a98c575794F75483d801d1d5DC861a5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Robotina token", + "symbol": "ROX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://robotinarox.io/", + "explorer": "https://etherscan.io/token/0x574F84108a98c575794F75483d801d1d5DC861a5", + "status": "abandoned", + "id": "0x574F84108a98c575794F75483d801d1d5DC861a5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x574F84108a98c575794F75483d801d1d5DC861a5/logo.png b/blockchains/ethereum/assets/0x574F84108a98c575794F75483d801d1d5DC861a5/logo.png new file mode 100644 index 00000000..9953a47b Binary files /dev/null and b/blockchains/ethereum/assets/0x574F84108a98c575794F75483d801d1d5DC861a5/logo.png differ diff --git a/blockchains/ethereum/assets/0x576097fA17E1F702bB9167f0f08F2eA0898a3EA5/info.json b/blockchains/ethereum/assets/0x576097fA17E1F702bB9167f0f08F2eA0898a3EA5/info.json new file mode 100644 index 00000000..8c68bce0 --- /dev/null +++ b/blockchains/ethereum/assets/0x576097fA17E1F702bB9167f0f08F2eA0898a3EA5/info.json @@ -0,0 +1,11 @@ +{ + "name": "DogeToken", + "symbol": "DogeT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x576097fA17E1F702bB9167f0f08F2eA0898a3EA5", + "status": "abandoned", + "id": "0x576097fA17E1F702bB9167f0f08F2eA0898a3EA5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x576097fA17E1F702bB9167f0f08F2eA0898a3EA5/logo.png b/blockchains/ethereum/assets/0x576097fA17E1F702bB9167f0f08F2eA0898a3EA5/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x576097fA17E1F702bB9167f0f08F2eA0898a3EA5/logo.png differ diff --git a/blockchains/ethereum/assets/0x57652Fc91f522f9EFF0b38CDF1D51f5FB5764215/info.json b/blockchains/ethereum/assets/0x57652Fc91f522f9EFF0b38CDF1D51f5FB5764215/info.json new file mode 100644 index 00000000..2ad28f2f --- /dev/null +++ b/blockchains/ethereum/assets/0x57652Fc91f522f9EFF0b38CDF1D51f5FB5764215/info.json @@ -0,0 +1,11 @@ +{ + "name": "Buddy", + "symbol": "BUD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://investors.buddy.cloud/", + "explorer": "https://etherscan.io/token/0x57652Fc91f522f9EFF0b38CDF1D51f5FB5764215", + "status": "abandoned", + "id": "0x57652Fc91f522f9EFF0b38CDF1D51f5FB5764215" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x57652Fc91f522f9EFF0b38CDF1D51f5FB5764215/logo.png b/blockchains/ethereum/assets/0x57652Fc91f522f9EFF0b38CDF1D51f5FB5764215/logo.png new file mode 100644 index 00000000..78df5752 Binary files /dev/null and b/blockchains/ethereum/assets/0x57652Fc91f522f9EFF0b38CDF1D51f5FB5764215/logo.png differ diff --git a/blockchains/ethereum/assets/0x576E9CA70e3a040c00d8139b0665a2b7b7B64844/info.json b/blockchains/ethereum/assets/0x576E9CA70e3a040c00d8139b0665a2b7b7B64844/info.json new file mode 100644 index 00000000..cbac74a3 --- /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 00000000..5c74edc6 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 00000000..0f22a49e --- /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 00000000..4d1fc39f Binary files /dev/null and b/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/logo.png differ diff --git a/blockchains/ethereum/assets/0x57700244B20f84799a31c6C96DadFF373ca9D6c5/info.json b/blockchains/ethereum/assets/0x57700244B20f84799a31c6C96DadFF373ca9D6c5/info.json new file mode 100644 index 00000000..91a3ec4f --- /dev/null +++ b/blockchains/ethereum/assets/0x57700244B20f84799a31c6C96DadFF373ca9D6c5/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRUST DAO", + "symbol": "TRUST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.trustdao.network", + "explorer": "https://etherscan.io/token/0x57700244B20f84799a31c6C96DadFF373ca9D6c5", + "status": "active", + "id": "0x57700244B20f84799a31c6C96DadFF373ca9D6c5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x57700244B20f84799a31c6C96DadFF373ca9D6c5/logo.png b/blockchains/ethereum/assets/0x57700244B20f84799a31c6C96DadFF373ca9D6c5/logo.png new file mode 100644 index 00000000..6461d313 Binary files /dev/null and b/blockchains/ethereum/assets/0x57700244B20f84799a31c6C96DadFF373ca9D6c5/logo.png differ diff --git a/blockchains/ethereum/assets/0x5783862cef49094bE4DE1fe31280B2E33cF87416/info.json b/blockchains/ethereum/assets/0x5783862cef49094bE4DE1fe31280B2E33cF87416/info.json new file mode 100644 index 00000000..7c040fee --- /dev/null +++ b/blockchains/ethereum/assets/0x5783862cef49094bE4DE1fe31280B2E33cF87416/info.json @@ -0,0 +1,11 @@ +{ + "name": "KredX Token", + "symbol": "KRT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5783862cef49094bE4DE1fe31280B2E33cF87416", + "status": "abandoned", + "id": "0x5783862cef49094bE4DE1fe31280B2E33cF87416" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5783862cef49094bE4DE1fe31280B2E33cF87416/logo.png b/blockchains/ethereum/assets/0x5783862cef49094bE4DE1fe31280B2E33cF87416/logo.png new file mode 100644 index 00000000..e0800a77 Binary files /dev/null and b/blockchains/ethereum/assets/0x5783862cef49094bE4DE1fe31280B2E33cF87416/logo.png differ diff --git a/blockchains/ethereum/assets/0x57838fF342f36A1EC18224981ea8715a4667fB3a/info.json b/blockchains/ethereum/assets/0x57838fF342f36A1EC18224981ea8715a4667fB3a/info.json new file mode 100644 index 00000000..22e210f5 --- /dev/null +++ b/blockchains/ethereum/assets/0x57838fF342f36A1EC18224981ea8715a4667fB3a/info.json @@ -0,0 +1,11 @@ +{ + "name": "QUBE", + "symbol": "QUBE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.qube.vip/", + "explorer": "https://etherscan.io/token/0x57838fF342f36A1EC18224981ea8715a4667fB3a", + "status": "abandoned", + "id": "0x57838fF342f36A1EC18224981ea8715a4667fB3a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x57838fF342f36A1EC18224981ea8715a4667fB3a/logo.png b/blockchains/ethereum/assets/0x57838fF342f36A1EC18224981ea8715a4667fB3a/logo.png new file mode 100644 index 00000000..263372cf Binary files /dev/null and b/blockchains/ethereum/assets/0x57838fF342f36A1EC18224981ea8715a4667fB3a/logo.png differ diff --git a/blockchains/ethereum/assets/0x578B49C45961f98d8DF92854b53F1641AF0A5036/info.json b/blockchains/ethereum/assets/0x578B49C45961f98d8DF92854b53F1641AF0A5036/info.json new file mode 100644 index 00000000..c07d3cee --- /dev/null +++ b/blockchains/ethereum/assets/0x578B49C45961f98d8DF92854b53F1641AF0A5036/info.json @@ -0,0 +1,11 @@ +{ + "name": "LinkaToken", + "symbol": "LINKA", + "type": "ERC20", + "decimals": 18, + "description": "Enrich your everyday life with. Fintech on Blockchain.", + "website": "https://www.linka.io", + "explorer": "https://etherscan.io/token/0x578B49C45961f98d8DF92854b53F1641AF0A5036", + "status": "active", + "id": "0x578B49C45961f98d8DF92854b53F1641AF0A5036" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x578B49C45961f98d8DF92854b53F1641AF0A5036/logo.png b/blockchains/ethereum/assets/0x578B49C45961f98d8DF92854b53F1641AF0A5036/logo.png new file mode 100644 index 00000000..f031a1df Binary files /dev/null and b/blockchains/ethereum/assets/0x578B49C45961f98d8DF92854b53F1641AF0A5036/logo.png differ diff --git a/blockchains/ethereum/assets/0x578C7557D207e87e8232Cd69d94f41A9A136A5fe/info.json b/blockchains/ethereum/assets/0x578C7557D207e87e8232Cd69d94f41A9A136A5fe/info.json new file mode 100644 index 00000000..3c9556f1 --- /dev/null +++ b/blockchains/ethereum/assets/0x578C7557D207e87e8232Cd69d94f41A9A136A5fe/info.json @@ -0,0 +1,11 @@ +{ + "name": "DaQianCoin", + "symbol": "DQC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x578C7557D207e87e8232Cd69d94f41A9A136A5fe", + "status": "abandoned", + "id": "0x578C7557D207e87e8232Cd69d94f41A9A136A5fe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x578C7557D207e87e8232Cd69d94f41A9A136A5fe/logo.png b/blockchains/ethereum/assets/0x578C7557D207e87e8232Cd69d94f41A9A136A5fe/logo.png new file mode 100644 index 00000000..52bbe437 Binary files /dev/null and b/blockchains/ethereum/assets/0x578C7557D207e87e8232Cd69d94f41A9A136A5fe/logo.png differ diff --git a/blockchains/ethereum/assets/0x5797A6291C3F22F785bc6B793d023EF034A17719/info.json b/blockchains/ethereum/assets/0x5797A6291C3F22F785bc6B793d023EF034A17719/info.json new file mode 100644 index 00000000..3220a737 --- /dev/null +++ b/blockchains/ethereum/assets/0x5797A6291C3F22F785bc6B793d023EF034A17719/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptune", + "symbol": "CPT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5797A6291C3F22F785bc6B793d023EF034A17719", + "status": "abandoned", + "id": "0x5797A6291C3F22F785bc6B793d023EF034A17719" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5797A6291C3F22F785bc6B793d023EF034A17719/logo.png b/blockchains/ethereum/assets/0x5797A6291C3F22F785bc6B793d023EF034A17719/logo.png new file mode 100644 index 00000000..ce8349ba Binary files /dev/null and b/blockchains/ethereum/assets/0x5797A6291C3F22F785bc6B793d023EF034A17719/logo.png differ diff --git a/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/info.json b/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/info.json new file mode 100644 index 00000000..2f181ada --- /dev/null +++ b/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/info.json @@ -0,0 +1,28 @@ +{ + "name": "Everipedia IQ", + "type": "ERC20", + "symbol": "IQ", + "decimals": 18, + "website": "https://iq.wiki/", + "description": "Everipedia IQ’s mission is to bring the world’s knowledge on-chain.", + "explorer": "https://etherscan.io/token/0x579cea1889991f68acc35ff5c3dd0621ff29b0c9", + "status": "active", + "id": "0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9", + "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/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/logo.png b/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/logo.png new file mode 100644 index 00000000..dceff00b Binary files /dev/null and b/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/logo.png differ diff --git a/blockchains/ethereum/assets/0x579f51260059DaA77B21343b66Ed73E3bF7b58aA/info.json b/blockchains/ethereum/assets/0x579f51260059DaA77B21343b66Ed73E3bF7b58aA/info.json new file mode 100644 index 00000000..ee65d15c --- /dev/null +++ b/blockchains/ethereum/assets/0x579f51260059DaA77B21343b66Ed73E3bF7b58aA/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoBiz", + "symbol": "CBZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x579f51260059DaA77B21343b66Ed73E3bF7b58aA", + "status": "abandoned", + "id": "0x579f51260059DaA77B21343b66Ed73E3bF7b58aA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x579f51260059DaA77B21343b66Ed73E3bF7b58aA/logo.png b/blockchains/ethereum/assets/0x579f51260059DaA77B21343b66Ed73E3bF7b58aA/logo.png new file mode 100644 index 00000000..e3b6ccbb Binary files /dev/null and b/blockchains/ethereum/assets/0x579f51260059DaA77B21343b66Ed73E3bF7b58aA/logo.png differ diff --git a/blockchains/ethereum/assets/0x57Ab1E02fEE23774580C119740129eAC7081e9D3/info.json b/blockchains/ethereum/assets/0x57Ab1E02fEE23774580C119740129eAC7081e9D3/info.json new file mode 100644 index 00000000..32712c09 --- /dev/null +++ b/blockchains/ethereum/assets/0x57Ab1E02fEE23774580C119740129eAC7081e9D3/info.json @@ -0,0 +1,14 @@ +{ + "name": "Synth sUSD", + "symbol": "sUSD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x57Ab1E02fEE23774580C119740129eAC7081e9D3", + "status": "abandoned", + "id": "0x57Ab1E02fEE23774580C119740129eAC7081e9D3", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x57Ab1E02fEE23774580C119740129eAC7081e9D3/logo.png b/blockchains/ethereum/assets/0x57Ab1E02fEE23774580C119740129eAC7081e9D3/logo.png new file mode 100644 index 00000000..b26b625a Binary files /dev/null and b/blockchains/ethereum/assets/0x57Ab1E02fEE23774580C119740129eAC7081e9D3/logo.png differ diff --git a/blockchains/ethereum/assets/0x57Ab1ec28D129707052df4dF418D58a2D46d5f51/info.json b/blockchains/ethereum/assets/0x57Ab1ec28D129707052df4dF418D58a2D46d5f51/info.json new file mode 100644 index 00000000..d7808829 --- /dev/null +++ b/blockchains/ethereum/assets/0x57Ab1ec28D129707052df4dF418D58a2D46d5f51/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://etherscan.io/token/0x57Ab1ec28D129707052df4dF418D58a2D46d5f51", + "type": "ERC20", + "symbol": "sUSD", + "decimals": 18, + "status": "active", + "id": "0x57Ab1ec28D129707052df4dF418D58a2D46d5f51", + "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/ethereum/assets/0x57Ab1ec28D129707052df4dF418D58a2D46d5f51/logo.png b/blockchains/ethereum/assets/0x57Ab1ec28D129707052df4dF418D58a2D46d5f51/logo.png new file mode 100644 index 00000000..b26b625a Binary files /dev/null and b/blockchains/ethereum/assets/0x57Ab1ec28D129707052df4dF418D58a2D46d5f51/logo.png differ diff --git a/blockchains/ethereum/assets/0x57B392146848C6321bb2A3D4358DF1bDEACdc62A/info.json b/blockchains/ethereum/assets/0x57B392146848C6321bb2A3D4358DF1bDEACdc62A/info.json new file mode 100644 index 00000000..8f59cfdd --- /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 00000000..c8b7fdf9 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 00000000..07ec8a7d --- /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 00000000..929c6829 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 new file mode 100644 index 00000000..94370c31 --- /dev/null +++ b/blockchains/ethereum/assets/0x57B946008913B82E4dF85f501cbAeD910e58D26C/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://etherscan.io/token/0x57b946008913b82e4df85f501cbaed910e58d26c", + "type": "ERC20", + "symbol": "POND", + "decimals": 18, + "status": "active", + "id": "0x57B946008913B82E4dF85f501cbAeD910e58D26C", + "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/ethereum/assets/0x57B946008913B82E4dF85f501cbAeD910e58D26C/logo.png b/blockchains/ethereum/assets/0x57B946008913B82E4dF85f501cbAeD910e58D26C/logo.png new file mode 100644 index 00000000..5bf18545 Binary files /dev/null and b/blockchains/ethereum/assets/0x57B946008913B82E4dF85f501cbAeD910e58D26C/logo.png differ diff --git a/blockchains/ethereum/assets/0x57C09A8de0b0F471F8567609777aDdFfb5c46a08/info.json b/blockchains/ethereum/assets/0x57C09A8de0b0F471F8567609777aDdFfb5c46a08/info.json new file mode 100644 index 00000000..6af93973 --- /dev/null +++ b/blockchains/ethereum/assets/0x57C09A8de0b0F471F8567609777aDdFfb5c46a08/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitex Global XBX Coin", + "symbol": "XBX", + "type": "ERC20", + "decimals": 18, + "description": "EZBitex is the currency exchange and banking infrastructure with a decentralized, distributed and immutable ledger.", + "website": "https://bitex.global/", + "explorer": "https://etherscan.io/token/0x57C09A8de0b0F471F8567609777aDdFfb5c46a08", + "status": "active", + "id": "0x57C09A8de0b0F471F8567609777aDdFfb5c46a08" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x57C09A8de0b0F471F8567609777aDdFfb5c46a08/logo.png b/blockchains/ethereum/assets/0x57C09A8de0b0F471F8567609777aDdFfb5c46a08/logo.png new file mode 100644 index 00000000..150057e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x57C09A8de0b0F471F8567609777aDdFfb5c46a08/logo.png differ diff --git a/blockchains/ethereum/assets/0x57C75ECCc8557136D32619a191fBCDc88560d711/info.json b/blockchains/ethereum/assets/0x57C75ECCc8557136D32619a191fBCDc88560d711/info.json new file mode 100644 index 00000000..3f01c061 --- /dev/null +++ b/blockchains/ethereum/assets/0x57C75ECCc8557136D32619a191fBCDc88560d711/info.json @@ -0,0 +1,11 @@ +{ + "name": "VeriDocGlobal", + "symbol": "VDG", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://www.veridocglobal.com", + "explorer": "https://etherscan.io/token/0x57C75ECCc8557136D32619a191fBCDc88560d711", + "status": "active", + "id": "0x57C75ECCc8557136D32619a191fBCDc88560d711" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x57C75ECCc8557136D32619a191fBCDc88560d711/logo.png b/blockchains/ethereum/assets/0x57C75ECCc8557136D32619a191fBCDc88560d711/logo.png new file mode 100644 index 00000000..98efcba0 Binary files /dev/null and b/blockchains/ethereum/assets/0x57C75ECCc8557136D32619a191fBCDc88560d711/logo.png differ diff --git a/blockchains/ethereum/assets/0x57D79A886f2b8FCe735AdCb6c36cADdfC0c5ebF0/info.json b/blockchains/ethereum/assets/0x57D79A886f2b8FCe735AdCb6c36cADdfC0c5ebF0/info.json new file mode 100644 index 00000000..61d510fd --- /dev/null +++ b/blockchains/ethereum/assets/0x57D79A886f2b8FCe735AdCb6c36cADdfC0c5ebF0/info.json @@ -0,0 +1,11 @@ +{ + "name": "EtherCenter", + "symbol": "ECT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x57D79A886f2b8FCe735AdCb6c36cADdfC0c5ebF0", + "status": "abandoned", + "id": "0x57D79A886f2b8FCe735AdCb6c36cADdfC0c5ebF0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x57D79A886f2b8FCe735AdCb6c36cADdfC0c5ebF0/logo.png b/blockchains/ethereum/assets/0x57D79A886f2b8FCe735AdCb6c36cADdfC0c5ebF0/logo.png new file mode 100644 index 00000000..aa42dd86 Binary files /dev/null and b/blockchains/ethereum/assets/0x57D79A886f2b8FCe735AdCb6c36cADdfC0c5ebF0/logo.png differ diff --git a/blockchains/ethereum/assets/0x57aD67aCf9bF015E4820Fbd66EA1A21BED8852eC/info.json b/blockchains/ethereum/assets/0x57aD67aCf9bF015E4820Fbd66EA1A21BED8852eC/info.json new file mode 100644 index 00000000..35e7d0d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x57aD67aCf9bF015E4820Fbd66EA1A21BED8852eC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lympo tokens", + "symbol": "LYM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x57aD67aCf9bF015E4820Fbd66EA1A21BED8852eC", + "status": "abandoned", + "id": "0x57aD67aCf9bF015E4820Fbd66EA1A21BED8852eC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x57aD67aCf9bF015E4820Fbd66EA1A21BED8852eC/logo.png b/blockchains/ethereum/assets/0x57aD67aCf9bF015E4820Fbd66EA1A21BED8852eC/logo.png new file mode 100755 index 00000000..e5bfa97a Binary files /dev/null and b/blockchains/ethereum/assets/0x57aD67aCf9bF015E4820Fbd66EA1A21BED8852eC/logo.png differ diff --git a/blockchains/ethereum/assets/0x57b7E9f4B3CD22B0D6CDb672F6494da2492C16fF/info.json b/blockchains/ethereum/assets/0x57b7E9f4B3CD22B0D6CDb672F6494da2492C16fF/info.json new file mode 100644 index 00000000..81607d80 --- /dev/null +++ b/blockchains/ethereum/assets/0x57b7E9f4B3CD22B0D6CDb672F6494da2492C16fF/info.json @@ -0,0 +1,11 @@ +{ + "name": "YUI", + "symbol": "YUI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x57b7E9f4B3CD22B0D6CDb672F6494da2492C16fF", + "status": "abandoned", + "id": "0x57b7E9f4B3CD22B0D6CDb672F6494da2492C16fF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x57b7E9f4B3CD22B0D6CDb672F6494da2492C16fF/logo.png b/blockchains/ethereum/assets/0x57b7E9f4B3CD22B0D6CDb672F6494da2492C16fF/logo.png new file mode 100644 index 00000000..a9775514 Binary files /dev/null and b/blockchains/ethereum/assets/0x57b7E9f4B3CD22B0D6CDb672F6494da2492C16fF/logo.png differ diff --git a/blockchains/ethereum/assets/0x57c8D5d5b87A1580FDAF996cEF674Bb0d7F14C98/info.json b/blockchains/ethereum/assets/0x57c8D5d5b87A1580FDAF996cEF674Bb0d7F14C98/info.json new file mode 100644 index 00000000..55dd1cb8 --- /dev/null +++ b/blockchains/ethereum/assets/0x57c8D5d5b87A1580FDAF996cEF674Bb0d7F14C98/info.json @@ -0,0 +1,11 @@ +{ + "name": "OdinBrowser", + "symbol": "ODIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.odinlink.com/", + "explorer": "https://etherscan.io/token/0x57c8D5d5b87A1580FDAF996cEF674Bb0d7F14C98", + "status": "abandoned", + "id": "0x57c8D5d5b87A1580FDAF996cEF674Bb0d7F14C98" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x57c8D5d5b87A1580FDAF996cEF674Bb0d7F14C98/logo.png b/blockchains/ethereum/assets/0x57c8D5d5b87A1580FDAF996cEF674Bb0d7F14C98/logo.png new file mode 100644 index 00000000..912f193e Binary files /dev/null and b/blockchains/ethereum/assets/0x57c8D5d5b87A1580FDAF996cEF674Bb0d7F14C98/logo.png differ diff --git a/blockchains/ethereum/assets/0x57e114B691Db790C35207b2e685D4A43181e6061/info.json b/blockchains/ethereum/assets/0x57e114B691Db790C35207b2e685D4A43181e6061/info.json new file mode 100644 index 00000000..93fef716 --- /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 00000000..69ecb3a3 Binary files /dev/null and b/blockchains/ethereum/assets/0x57e114B691Db790C35207b2e685D4A43181e6061/logo.png differ diff --git a/blockchains/ethereum/assets/0x57e299eE8F1C5A92A9Ed54F934ACC7FF5F159699/info.json b/blockchains/ethereum/assets/0x57e299eE8F1C5A92A9Ed54F934ACC7FF5F159699/info.json new file mode 100644 index 00000000..142d8c2e --- /dev/null +++ b/blockchains/ethereum/assets/0x57e299eE8F1C5A92A9Ed54F934ACC7FF5F159699/info.json @@ -0,0 +1,11 @@ +{ + "name": "RECORD", + "symbol": "RCD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x57e299eE8F1C5A92A9Ed54F934ACC7FF5F159699", + "status": "abandoned", + "id": "0x57e299eE8F1C5A92A9Ed54F934ACC7FF5F159699" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5807CA447851C98569c567963B25B1C83D41BeBc/info.json b/blockchains/ethereum/assets/0x5807CA447851C98569c567963B25B1C83D41BeBc/info.json new file mode 100644 index 00000000..4f38be67 --- /dev/null +++ b/blockchains/ethereum/assets/0x5807CA447851C98569c567963B25B1C83D41BeBc/info.json @@ -0,0 +1,11 @@ +{ + "name": "RealToken 10024-10028 Appoline Street Detroit MI", + "symbol": "REALTOKEN-10024-10028-APPOLINE-ST-DETROIT-MI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://realt.co/product/10024-28-appoline-st-detroit-mi-48227/", + "explorer": "https://etherscan.io/token/0x5807CA447851C98569c567963B25B1C83D41BeBc", + "status": "abandoned", + "id": "0x5807CA447851C98569c567963B25B1C83D41BeBc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5807CA447851C98569c567963B25B1C83D41BeBc/logo.png b/blockchains/ethereum/assets/0x5807CA447851C98569c567963B25B1C83D41BeBc/logo.png new file mode 100644 index 00000000..4617b23e Binary files /dev/null and b/blockchains/ethereum/assets/0x5807CA447851C98569c567963B25B1C83D41BeBc/logo.png differ diff --git a/blockchains/ethereum/assets/0x580c8520dEDA0a441522AEAe0f9F7A5f29629aFa/info.json b/blockchains/ethereum/assets/0x580c8520dEDA0a441522AEAe0f9F7A5f29629aFa/info.json new file mode 100644 index 00000000..e2022f3e --- /dev/null +++ b/blockchains/ethereum/assets/0x580c8520dEDA0a441522AEAe0f9F7A5f29629aFa/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dawn", + "website": "https://dawn.org", + "description": "Dawn is an open-source protocol for gaming and competitions.", + "explorer": "https://etherscan.io/token/0x580c8520dEDA0a441522AEAe0f9F7A5f29629aFa", + "type": "ERC20", + "symbol": "DAWN", + "decimals": 18, + "status": "active", + "id": "0x580c8520dEDA0a441522AEAe0f9F7A5f29629aFa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x580c8520dEDA0a441522AEAe0f9F7A5f29629aFa/logo.png b/blockchains/ethereum/assets/0x580c8520dEDA0a441522AEAe0f9F7A5f29629aFa/logo.png new file mode 100644 index 00000000..51dee464 Binary files /dev/null and b/blockchains/ethereum/assets/0x580c8520dEDA0a441522AEAe0f9F7A5f29629aFa/logo.png differ diff --git a/blockchains/ethereum/assets/0x5825fBa40871aaaCba45E4b34629abB86520B807/info.json b/blockchains/ethereum/assets/0x5825fBa40871aaaCba45E4b34629abB86520B807/info.json new file mode 100644 index 00000000..db6d7466 --- /dev/null +++ b/blockchains/ethereum/assets/0x5825fBa40871aaaCba45E4b34629abB86520B807/info.json @@ -0,0 +1,11 @@ +{ + "name": "ChainPay", + "symbol": "CPAY", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5825fBa40871aaaCba45E4b34629abB86520B807", + "status": "abandoned", + "id": "0x5825fBa40871aaaCba45E4b34629abB86520B807" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5825fBa40871aaaCba45E4b34629abB86520B807/logo.png b/blockchains/ethereum/assets/0x5825fBa40871aaaCba45E4b34629abB86520B807/logo.png new file mode 100644 index 00000000..7c411313 Binary files /dev/null and b/blockchains/ethereum/assets/0x5825fBa40871aaaCba45E4b34629abB86520B807/logo.png differ diff --git a/blockchains/ethereum/assets/0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1/info.json b/blockchains/ethereum/assets/0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1/info.json new file mode 100644 index 00000000..09c4ec79 --- /dev/null +++ b/blockchains/ethereum/assets/0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1/info.json @@ -0,0 +1,28 @@ +{ + "name": "Wrapped TON Coin", + "type": "ERC20", + "symbol": "TONCOIN", + "decimals": 9, + "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://etherscan.io/token/0x582d872a1b094fc48f5de31d3b73f2d9be47def1", + "status": "active", + "id": "0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1", + "links": [ + { + "name": "github", + "url": "https://github.com/newton-blockchain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/toncoin/" + }, + { + "name": "telegram", + "url": "https://t.me/tonblockchain" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1/logo.png b/blockchains/ethereum/assets/0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1/logo.png new file mode 100644 index 00000000..9ef1d563 Binary files /dev/null and b/blockchains/ethereum/assets/0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1/logo.png differ diff --git a/blockchains/ethereum/assets/0x582e09eE0a6ae313f9E8E4E84491808Dec0e7edA/info.json b/blockchains/ethereum/assets/0x582e09eE0a6ae313f9E8E4E84491808Dec0e7edA/info.json new file mode 100644 index 00000000..d32cb6f0 --- /dev/null +++ b/blockchains/ethereum/assets/0x582e09eE0a6ae313f9E8E4E84491808Dec0e7edA/info.json @@ -0,0 +1,11 @@ +{ + "name": "BUYEXSHOP", + "symbol": "BYXS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x582e09eE0a6ae313f9E8E4E84491808Dec0e7edA", + "status": "abandoned", + "id": "0x582e09eE0a6ae313f9E8E4E84491808Dec0e7edA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x582e09eE0a6ae313f9E8E4E84491808Dec0e7edA/logo.png b/blockchains/ethereum/assets/0x582e09eE0a6ae313f9E8E4E84491808Dec0e7edA/logo.png new file mode 100755 index 00000000..9ef8495b Binary files /dev/null and b/blockchains/ethereum/assets/0x582e09eE0a6ae313f9E8E4E84491808Dec0e7edA/logo.png differ diff --git a/blockchains/ethereum/assets/0x584B44853680ee34a0F337B712a8f66d816dF151/info.json b/blockchains/ethereum/assets/0x584B44853680ee34a0F337B712a8f66d816dF151/info.json new file mode 100644 index 00000000..44ec55dc --- /dev/null +++ b/blockchains/ethereum/assets/0x584B44853680ee34a0F337B712a8f66d816dF151/info.json @@ -0,0 +1,11 @@ +{ + "name": "AI Doctor", + "symbol": "AIDOC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.aidoc.me", + "explorer": "https://etherscan.io/token/0x584B44853680ee34a0F337B712a8f66d816dF151", + "status": "active", + "id": "0x584B44853680ee34a0F337B712a8f66d816dF151" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x584B44853680ee34a0F337B712a8f66d816dF151/logo.png b/blockchains/ethereum/assets/0x584B44853680ee34a0F337B712a8f66d816dF151/logo.png new file mode 100644 index 00000000..cf85b78e Binary files /dev/null and b/blockchains/ethereum/assets/0x584B44853680ee34a0F337B712a8f66d816dF151/logo.png differ diff --git a/blockchains/ethereum/assets/0x584bC13c7D411c00c01A62e8019472dE68768430/info.json b/blockchains/ethereum/assets/0x584bC13c7D411c00c01A62e8019472dE68768430/info.json new file mode 100644 index 00000000..0fb437b5 --- /dev/null +++ b/blockchains/ethereum/assets/0x584bC13c7D411c00c01A62e8019472dE68768430/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://etherscan.io/token/0x584bC13c7D411c00c01A62e8019472dE68768430", + "research": "", + "type": "ERC20", + "symbol": "HEGIC", + "decimals": 18, + "status": "active", + "id": "0x584bC13c7D411c00c01A62e8019472dE68768430", + "links": [ + { + "name": "github", + "url": "https://github.com/hegic" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x584bC13c7D411c00c01A62e8019472dE68768430/logo.png b/blockchains/ethereum/assets/0x584bC13c7D411c00c01A62e8019472dE68768430/logo.png new file mode 100644 index 00000000..44c118da Binary files /dev/null and b/blockchains/ethereum/assets/0x584bC13c7D411c00c01A62e8019472dE68768430/logo.png differ diff --git a/blockchains/ethereum/assets/0x5850700E214c16C73d1778B2886C01639e69faA3/info.json b/blockchains/ethereum/assets/0x5850700E214c16C73d1778B2886C01639e69faA3/info.json new file mode 100644 index 00000000..a08f3abe --- /dev/null +++ b/blockchains/ethereum/assets/0x5850700E214c16C73d1778B2886C01639e69faA3/info.json @@ -0,0 +1,11 @@ +{ + "name": "ROGANCOIN", + "symbol": "RGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5850700E214c16C73d1778B2886C01639e69faA3", + "status": "abandoned", + "id": "0x5850700E214c16C73d1778B2886C01639e69faA3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5850700E214c16C73d1778B2886C01639e69faA3/logo.png b/blockchains/ethereum/assets/0x5850700E214c16C73d1778B2886C01639e69faA3/logo.png new file mode 100644 index 00000000..93e8903d Binary files /dev/null and b/blockchains/ethereum/assets/0x5850700E214c16C73d1778B2886C01639e69faA3/logo.png differ diff --git a/blockchains/ethereum/assets/0x585C2cF94c41b528ec7329CBc3cdE3C4f8d268dB/info.json b/blockchains/ethereum/assets/0x585C2cF94c41b528ec7329CBc3cdE3C4f8d268dB/info.json new file mode 100644 index 00000000..9888d969 --- /dev/null +++ b/blockchains/ethereum/assets/0x585C2cF94c41b528ec7329CBc3cdE3C4f8d268dB/info.json @@ -0,0 +1,11 @@ +{ + "name": "STETHDaiRebalancingSetToken", + "symbol": "STETHDai", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.tokensets.com/set/ethlovol", + "explorer": "https://etherscan.io/token/0x585C2cF94c41b528ec7329CBc3cdE3C4f8d268dB", + "status": "abandoned", + "id": "0x585C2cF94c41b528ec7329CBc3cdE3C4f8d268dB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x585C2cF94c41b528ec7329CBc3cdE3C4f8d268dB/logo.png b/blockchains/ethereum/assets/0x585C2cF94c41b528ec7329CBc3cdE3C4f8d268dB/logo.png new file mode 100644 index 00000000..1e535315 Binary files /dev/null and b/blockchains/ethereum/assets/0x585C2cF94c41b528ec7329CBc3cdE3C4f8d268dB/logo.png differ diff --git a/blockchains/ethereum/assets/0x5862A9935Aa62Ca329f679933491057413Ce2943/info.json b/blockchains/ethereum/assets/0x5862A9935Aa62Ca329f679933491057413Ce2943/info.json new file mode 100644 index 00000000..a4a49095 --- /dev/null +++ b/blockchains/ethereum/assets/0x5862A9935Aa62Ca329f679933491057413Ce2943/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlockMed", + "symbol": "BMD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5862A9935Aa62Ca329f679933491057413Ce2943", + "status": "abandoned", + "id": "0x5862A9935Aa62Ca329f679933491057413Ce2943" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5862A9935Aa62Ca329f679933491057413Ce2943/logo.png b/blockchains/ethereum/assets/0x5862A9935Aa62Ca329f679933491057413Ce2943/logo.png new file mode 100755 index 00000000..8f055806 Binary files /dev/null and b/blockchains/ethereum/assets/0x5862A9935Aa62Ca329f679933491057413Ce2943/logo.png differ diff --git a/blockchains/ethereum/assets/0x586f381885E91898663c96946b1030C503130AA1/info.json b/blockchains/ethereum/assets/0x586f381885E91898663c96946b1030C503130AA1/info.json new file mode 100644 index 00000000..284079a2 --- /dev/null +++ b/blockchains/ethereum/assets/0x586f381885E91898663c96946b1030C503130AA1/info.json @@ -0,0 +1,11 @@ +{ + "name": "High Tech Genesis", + "symbol": "HTECH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x586f381885E91898663c96946b1030C503130AA1", + "status": "abandoned", + "id": "0x586f381885E91898663c96946b1030C503130AA1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x586f381885E91898663c96946b1030C503130AA1/logo.png b/blockchains/ethereum/assets/0x586f381885E91898663c96946b1030C503130AA1/logo.png new file mode 100644 index 00000000..b8912535 Binary files /dev/null and b/blockchains/ethereum/assets/0x586f381885E91898663c96946b1030C503130AA1/logo.png differ diff --git a/blockchains/ethereum/assets/0x5874548C51822Da642661b235e101D6d636b6feb/info.json b/blockchains/ethereum/assets/0x5874548C51822Da642661b235e101D6d636b6feb/info.json new file mode 100644 index 00000000..eeb4e133 --- /dev/null +++ b/blockchains/ethereum/assets/0x5874548C51822Da642661b235e101D6d636b6feb/info.json @@ -0,0 +1,11 @@ +{ + "name": "MESSE Coin", + "symbol": "MESSE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5874548C51822Da642661b235e101D6d636b6feb", + "status": "abandoned", + "id": "0x5874548C51822Da642661b235e101D6d636b6feb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5874548C51822Da642661b235e101D6d636b6feb/logo.png b/blockchains/ethereum/assets/0x5874548C51822Da642661b235e101D6d636b6feb/logo.png new file mode 100644 index 00000000..496bbc02 Binary files /dev/null and b/blockchains/ethereum/assets/0x5874548C51822Da642661b235e101D6d636b6feb/logo.png differ diff --git a/blockchains/ethereum/assets/0x587E276Dc7F2C97d986E8AdF9b82D3F14D6cd8d2/info.json b/blockchains/ethereum/assets/0x587E276Dc7F2C97d986E8AdF9b82D3F14D6cd8d2/info.json new file mode 100644 index 00000000..14b1f101 --- /dev/null +++ b/blockchains/ethereum/assets/0x587E276Dc7F2C97d986E8AdF9b82D3F14D6cd8d2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fysical", + "symbol": "FYS", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x587E276Dc7F2C97d986E8AdF9b82D3F14D6cd8d2", + "status": "abandoned", + "id": "0x587E276Dc7F2C97d986E8AdF9b82D3F14D6cd8d2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x587E276Dc7F2C97d986E8AdF9b82D3F14D6cd8d2/logo.png b/blockchains/ethereum/assets/0x587E276Dc7F2C97d986E8AdF9b82D3F14D6cd8d2/logo.png new file mode 100644 index 00000000..1910abdf Binary files /dev/null and b/blockchains/ethereum/assets/0x587E276Dc7F2C97d986E8AdF9b82D3F14D6cd8d2/logo.png differ diff --git a/blockchains/ethereum/assets/0x588047365dF5BA589F923604AAC23d673555c623/info.json b/blockchains/ethereum/assets/0x588047365dF5BA589F923604AAC23d673555c623/info.json new file mode 100644 index 00000000..2f9dda84 --- /dev/null +++ b/blockchains/ethereum/assets/0x588047365dF5BA589F923604AAC23d673555c623/info.json @@ -0,0 +1,11 @@ +{ + "name": "NaviToken", + "symbol": "NAVI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x588047365dF5BA589F923604AAC23d673555c623", + "status": "abandoned", + "id": "0x588047365dF5BA589F923604AAC23d673555c623" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x588047365dF5BA589F923604AAC23d673555c623/logo.png b/blockchains/ethereum/assets/0x588047365dF5BA589F923604AAC23d673555c623/logo.png new file mode 100644 index 00000000..627aac14 Binary files /dev/null and b/blockchains/ethereum/assets/0x588047365dF5BA589F923604AAC23d673555c623/logo.png differ diff --git a/blockchains/ethereum/assets/0x5881dA4527BCdC44a100F8bA2efC4039243D2C07/info.json b/blockchains/ethereum/assets/0x5881dA4527BCdC44a100F8bA2efC4039243D2C07/info.json new file mode 100644 index 00000000..756a36aa --- /dev/null +++ b/blockchains/ethereum/assets/0x5881dA4527BCdC44a100F8bA2efC4039243D2C07/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pride", + "symbol": "LGBTQ", + "type": "ERC20", + "decimals": 1, + "description": "A project offering the opportunity to participate in the LGBTQ community and support for the LGBTQ community from around the world.", + "website": "https://www.lgbtqnetwork.space/", + "explorer": "https://etherscan.io/token/0x5881dA4527BCdC44a100F8bA2efC4039243D2C07", + "status": "active", + "id": "0x5881dA4527BCdC44a100F8bA2efC4039243D2C07" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5881dA4527BCdC44a100F8bA2efC4039243D2C07/logo.png b/blockchains/ethereum/assets/0x5881dA4527BCdC44a100F8bA2efC4039243D2C07/logo.png new file mode 100644 index 00000000..810396f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x5881dA4527BCdC44a100F8bA2efC4039243D2C07/logo.png differ diff --git a/blockchains/ethereum/assets/0x588ED7e35595e3396F6aA72B7dDCEC2fEFBcA46e/info.json b/blockchains/ethereum/assets/0x588ED7e35595e3396F6aA72B7dDCEC2fEFBcA46e/info.json new file mode 100644 index 00000000..de9c2abd --- /dev/null +++ b/blockchains/ethereum/assets/0x588ED7e35595e3396F6aA72B7dDCEC2fEFBcA46e/info.json @@ -0,0 +1,11 @@ +{ + "name": "rix.finance", + "symbol": "RIX", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x588ED7e35595e3396F6aA72B7dDCEC2fEFBcA46e", + "status": "abandoned", + "id": "0x588ED7e35595e3396F6aA72B7dDCEC2fEFBcA46e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x588ED7e35595e3396F6aA72B7dDCEC2fEFBcA46e/logo.png b/blockchains/ethereum/assets/0x588ED7e35595e3396F6aA72B7dDCEC2fEFBcA46e/logo.png new file mode 100644 index 00000000..d0453265 Binary files /dev/null and b/blockchains/ethereum/assets/0x588ED7e35595e3396F6aA72B7dDCEC2fEFBcA46e/logo.png differ diff --git a/blockchains/ethereum/assets/0x58959E0C71080434f237bD42d07Cd84B74CeF438/info.json b/blockchains/ethereum/assets/0x58959E0C71080434f237bD42d07Cd84B74CeF438/info.json new file mode 100644 index 00000000..b07389ed --- /dev/null +++ b/blockchains/ethereum/assets/0x58959E0C71080434f237bD42d07Cd84B74CeF438/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tesra AI Supernet", + "symbol": "TSR", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "https://tesra.io/", + "explorer": "https://etherscan.io/token/0x58959E0C71080434f237bD42d07Cd84B74CeF438", + "status": "abandoned", + "id": "0x58959E0C71080434f237bD42d07Cd84B74CeF438" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58959E0C71080434f237bD42d07Cd84B74CeF438/logo.png b/blockchains/ethereum/assets/0x58959E0C71080434f237bD42d07Cd84B74CeF438/logo.png new file mode 100644 index 00000000..6d71fbc1 Binary files /dev/null and b/blockchains/ethereum/assets/0x58959E0C71080434f237bD42d07Cd84B74CeF438/logo.png differ diff --git a/blockchains/ethereum/assets/0x589891a198195061Cb8ad1a75357A3b7DbaDD7Bc/info.json b/blockchains/ethereum/assets/0x589891a198195061Cb8ad1a75357A3b7DbaDD7Bc/info.json new file mode 100644 index 00000000..044145f0 --- /dev/null +++ b/blockchains/ethereum/assets/0x589891a198195061Cb8ad1a75357A3b7DbaDD7Bc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Contentos", + "symbol": "COS", + "type": "ERC20", + "decimals": 18, + "description": "The decentralized global ecosystem for digital content, where content can be freely produced, distributed and transacted, and where the value and rights will be returned to creators and contributors.", + "website": "https://www.contentos.io/", + "explorer": "https://etherscan.io/token/0x589891a198195061Cb8ad1a75357A3b7DbaDD7Bc", + "status": "active", + "id": "0x589891a198195061Cb8ad1a75357A3b7DbaDD7Bc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x589891a198195061Cb8ad1a75357A3b7DbaDD7Bc/logo.png b/blockchains/ethereum/assets/0x589891a198195061Cb8ad1a75357A3b7DbaDD7Bc/logo.png new file mode 100644 index 00000000..a2d4abfb Binary files /dev/null and b/blockchains/ethereum/assets/0x589891a198195061Cb8ad1a75357A3b7DbaDD7Bc/logo.png differ diff --git a/blockchains/ethereum/assets/0x58A3520D738B268c2353ECeE518A1AD8e28E4AE5/info.json b/blockchains/ethereum/assets/0x58A3520D738B268c2353ECeE518A1AD8e28E4AE5/info.json new file mode 100644 index 00000000..c70d319a --- /dev/null +++ b/blockchains/ethereum/assets/0x58A3520D738B268c2353ECeE518A1AD8e28E4AE5/info.json @@ -0,0 +1,11 @@ +{ + "name": "HEIDI", + "symbol": "HDI", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "https://heidicoin.ch", + "explorer": "https://etherscan.io/token/0x58A3520D738B268c2353ECeE518A1AD8e28E4AE5", + "status": "abandoned", + "id": "0x58A3520D738B268c2353ECeE518A1AD8e28E4AE5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58A3520D738B268c2353ECeE518A1AD8e28E4AE5/logo.png b/blockchains/ethereum/assets/0x58A3520D738B268c2353ECeE518A1AD8e28E4AE5/logo.png new file mode 100644 index 00000000..f73fc4b8 Binary files /dev/null and b/blockchains/ethereum/assets/0x58A3520D738B268c2353ECeE518A1AD8e28E4AE5/logo.png differ diff --git a/blockchains/ethereum/assets/0x58B823abd4b0B5506A60dF6A12Ae681A350dAb4c/info.json b/blockchains/ethereum/assets/0x58B823abd4b0B5506A60dF6A12Ae681A350dAb4c/info.json new file mode 100644 index 00000000..2fa80f6d --- /dev/null +++ b/blockchains/ethereum/assets/0x58B823abd4b0B5506A60dF6A12Ae681A350dAb4c/info.json @@ -0,0 +1,11 @@ +{ + "name": "SUREBANQA UTILITY TOKEN", + "symbol": "FEX", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x58B823abd4b0B5506A60dF6A12Ae681A350dAb4c", + "status": "abandoned", + "id": "0x58B823abd4b0B5506A60dF6A12Ae681A350dAb4c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58B823abd4b0B5506A60dF6A12Ae681A350dAb4c/logo.png b/blockchains/ethereum/assets/0x58B823abd4b0B5506A60dF6A12Ae681A350dAb4c/logo.png new file mode 100644 index 00000000..2949cdef Binary files /dev/null and b/blockchains/ethereum/assets/0x58B823abd4b0B5506A60dF6A12Ae681A350dAb4c/logo.png differ diff --git a/blockchains/ethereum/assets/0x58D97B57BB95320F9a05dC918Aef65434969c2B2/info.json b/blockchains/ethereum/assets/0x58D97B57BB95320F9a05dC918Aef65434969c2B2/info.json new file mode 100644 index 00000000..e6da2228 --- /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 00000000..7be98cc6 Binary files /dev/null and b/blockchains/ethereum/assets/0x58D97B57BB95320F9a05dC918Aef65434969c2B2/logo.png differ diff --git a/blockchains/ethereum/assets/0x58FFeCe158216D694d33b1ca1A31b6E539D95523/info.json b/blockchains/ethereum/assets/0x58FFeCe158216D694d33b1ca1A31b6E539D95523/info.json new file mode 100644 index 00000000..e6a4bff7 --- /dev/null +++ b/blockchains/ethereum/assets/0x58FFeCe158216D694d33b1ca1A31b6E539D95523/info.json @@ -0,0 +1,11 @@ +{ + "name": "CIXCA", + "symbol": "CAX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x58FFeCe158216D694d33b1ca1A31b6E539D95523", + "status": "abandoned", + "id": "0x58FFeCe158216D694d33b1ca1A31b6E539D95523" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58FFeCe158216D694d33b1ca1A31b6E539D95523/logo.png b/blockchains/ethereum/assets/0x58FFeCe158216D694d33b1ca1A31b6E539D95523/logo.png new file mode 100755 index 00000000..08c1ac53 Binary files /dev/null and b/blockchains/ethereum/assets/0x58FFeCe158216D694d33b1ca1A31b6E539D95523/logo.png differ diff --git a/blockchains/ethereum/assets/0x58a2EDF0169eDE82904e47a0E2a3a4008eDebB60/info.json b/blockchains/ethereum/assets/0x58a2EDF0169eDE82904e47a0E2a3a4008eDebB60/info.json new file mode 100644 index 00000000..2658be8a --- /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 00000000..8a3fd699 Binary files /dev/null and b/blockchains/ethereum/assets/0x58a2EDF0169eDE82904e47a0E2a3a4008eDebB60/logo.png differ diff --git a/blockchains/ethereum/assets/0x58a4884182d9E835597f405e5F258290E46ae7C2/info.json b/blockchains/ethereum/assets/0x58a4884182d9E835597f405e5F258290E46ae7C2/info.json new file mode 100644 index 00000000..425e2db7 --- /dev/null +++ b/blockchains/ethereum/assets/0x58a4884182d9E835597f405e5F258290E46ae7C2/info.json @@ -0,0 +1,11 @@ +{ + "name": "NOAHCOIN", + "symbol": "NOAH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x58a4884182d9E835597f405e5F258290E46ae7C2", + "status": "abandoned", + "id": "0x58a4884182d9E835597f405e5F258290E46ae7C2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58a4884182d9E835597f405e5F258290E46ae7C2/logo.png b/blockchains/ethereum/assets/0x58a4884182d9E835597f405e5F258290E46ae7C2/logo.png new file mode 100644 index 00000000..3ff494f4 Binary files /dev/null and b/blockchains/ethereum/assets/0x58a4884182d9E835597f405e5F258290E46ae7C2/logo.png differ diff --git a/blockchains/ethereum/assets/0x58a5d3e4873A75B07fB3c7CF477EeBc44ea73B3B/info.json b/blockchains/ethereum/assets/0x58a5d3e4873A75B07fB3c7CF477EeBc44ea73B3B/info.json new file mode 100644 index 00000000..b0948a76 --- /dev/null +++ b/blockchains/ethereum/assets/0x58a5d3e4873A75B07fB3c7CF477EeBc44ea73B3B/info.json @@ -0,0 +1,11 @@ +{ + "name": "KAIJU", + "symbol": "KAIJU", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x58a5d3e4873A75B07fB3c7CF477EeBc44ea73B3B", + "status": "abandoned", + "id": "0x58a5d3e4873A75B07fB3c7CF477EeBc44ea73B3B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58a5d3e4873A75B07fB3c7CF477EeBc44ea73B3B/logo.png b/blockchains/ethereum/assets/0x58a5d3e4873A75B07fB3c7CF477EeBc44ea73B3B/logo.png new file mode 100644 index 00000000..1c1ec734 Binary files /dev/null and b/blockchains/ethereum/assets/0x58a5d3e4873A75B07fB3c7CF477EeBc44ea73B3B/logo.png differ diff --git a/blockchains/ethereum/assets/0x58aEA10748a00D1781D6651f9d78A414EA32CA46/info.json b/blockchains/ethereum/assets/0x58aEA10748a00D1781D6651f9d78A414EA32CA46/info.json new file mode 100644 index 00000000..0e742e80 --- /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 00000000..37a43e40 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 new file mode 100644 index 00000000..d41050d1 --- /dev/null +++ b/blockchains/ethereum/assets/0x58b6A8A3302369DAEc383334672404Ee733aB239/info.json @@ -0,0 +1,37 @@ +{ + "name": "Livepeer Token", + "symbol": "LPT", + "type": "ERC20", + "decimals": 18, + "description": "A decentralized video streaming protocol that empowers developers to build video enabled applications backed by a competitive market of economically incentivized service providers.", + "website": "https://livepeer.org/", + "explorer": "https://etherscan.io/token/0x58b6A8A3302369DAEc383334672404Ee733aB239", + "status": "active", + "id": "0x58b6A8A3302369DAEc383334672404Ee733aB239", + "links": [ + { + "name": "github", + "url": "https://github.com/livepeer" + }, + { + "name": "x", + "url": "https://x.com/LivepeerOrg" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/livepeer/" + }, + { + "name": "blog", + "url": "https://medium.com/livepeer-blog" + }, + { + "name": "whitepaper", + "url": "https://github.com/livepeer/wiki/blob/master/WHITEPAPER.md" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/livepeer/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58b6A8A3302369DAEc383334672404Ee733aB239/logo.png b/blockchains/ethereum/assets/0x58b6A8A3302369DAEc383334672404Ee733aB239/logo.png new file mode 100755 index 00000000..e7a2df01 Binary files /dev/null and b/blockchains/ethereum/assets/0x58b6A8A3302369DAEc383334672404Ee733aB239/logo.png differ diff --git a/blockchains/ethereum/assets/0x58b9cB810A68a7f3e1E4f8Cb45D1B9B3c79705E8/info.json b/blockchains/ethereum/assets/0x58b9cB810A68a7f3e1E4f8Cb45D1B9B3c79705E8/info.json new file mode 100644 index 00000000..6bb98bf5 --- /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 00000000..3addeaec Binary files /dev/null and b/blockchains/ethereum/assets/0x58b9cB810A68a7f3e1E4f8Cb45D1B9B3c79705E8/logo.png differ diff --git a/blockchains/ethereum/assets/0x58c69ed6cd6887c0225D1FcCEcC055127843c69b/info.json b/blockchains/ethereum/assets/0x58c69ed6cd6887c0225D1FcCEcC055127843c69b/info.json new file mode 100644 index 00000000..ee7af56d --- /dev/null +++ b/blockchains/ethereum/assets/0x58c69ed6cd6887c0225D1FcCEcC055127843c69b/info.json @@ -0,0 +1,11 @@ +{ + "name": "HalalChain", + "symbol": "HLC", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "http://www.hlc.com", + "explorer": "https://etherscan.io/token/0x58c69ed6cd6887c0225D1FcCEcC055127843c69b", + "status": "active", + "id": "0x58c69ed6cd6887c0225D1FcCEcC055127843c69b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58c69ed6cd6887c0225D1FcCEcC055127843c69b/logo.png b/blockchains/ethereum/assets/0x58c69ed6cd6887c0225D1FcCEcC055127843c69b/logo.png new file mode 100644 index 00000000..d4741c6d Binary files /dev/null and b/blockchains/ethereum/assets/0x58c69ed6cd6887c0225D1FcCEcC055127843c69b/logo.png differ diff --git a/blockchains/ethereum/assets/0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb/info.json b/blockchains/ethereum/assets/0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb/info.json new file mode 100644 index 00000000..d45177db --- /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 00000000..27795b4d Binary files /dev/null and b/blockchains/ethereum/assets/0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb/logo.png differ diff --git a/blockchains/ethereum/assets/0x58ca3065C0F24C7c96Aee8d6056b5B5deCf9c2f8/info.json b/blockchains/ethereum/assets/0x58ca3065C0F24C7c96Aee8d6056b5B5deCf9c2f8/info.json new file mode 100644 index 00000000..9ddf24f1 --- /dev/null +++ b/blockchains/ethereum/assets/0x58ca3065C0F24C7c96Aee8d6056b5B5deCf9c2f8/info.json @@ -0,0 +1,11 @@ +{ + "name": "GXC", + "symbol": "GXC", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x58ca3065C0F24C7c96Aee8d6056b5B5deCf9c2f8", + "status": "abandoned", + "id": "0x58ca3065C0F24C7c96Aee8d6056b5B5deCf9c2f8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58ca3065C0F24C7c96Aee8d6056b5B5deCf9c2f8/logo.png b/blockchains/ethereum/assets/0x58ca3065C0F24C7c96Aee8d6056b5B5deCf9c2f8/logo.png new file mode 100755 index 00000000..83de0945 Binary files /dev/null and b/blockchains/ethereum/assets/0x58ca3065C0F24C7c96Aee8d6056b5B5deCf9c2f8/logo.png differ diff --git a/blockchains/ethereum/assets/0x58d0A58E4B165a27E4e1B8C2A3eF39C89b581180/info.json b/blockchains/ethereum/assets/0x58d0A58E4B165a27E4e1B8C2A3eF39C89b581180/info.json new file mode 100644 index 00000000..472524af --- /dev/null +++ b/blockchains/ethereum/assets/0x58d0A58E4B165a27E4e1B8C2A3eF39C89b581180/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShowCoin", + "symbol": "Show", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x58d0A58E4B165a27E4e1B8C2A3eF39C89b581180", + "status": "abandoned", + "id": "0x58d0A58E4B165a27E4e1B8C2A3eF39C89b581180" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58d0A58E4B165a27E4e1B8C2A3eF39C89b581180/logo.png b/blockchains/ethereum/assets/0x58d0A58E4B165a27E4e1B8C2A3eF39C89b581180/logo.png new file mode 100644 index 00000000..da7a6df8 Binary files /dev/null and b/blockchains/ethereum/assets/0x58d0A58E4B165a27E4e1B8C2A3eF39C89b581180/logo.png differ diff --git a/blockchains/ethereum/assets/0x58e1a16Cc86FE135b6f0e478B383a2f8D75B4652/info.json b/blockchains/ethereum/assets/0x58e1a16Cc86FE135b6f0e478B383a2f8D75B4652/info.json new file mode 100644 index 00000000..df3830be --- /dev/null +++ b/blockchains/ethereum/assets/0x58e1a16Cc86FE135b6f0e478B383a2f8D75B4652/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ines y Pacheco", + "symbol": "LOVE", + "type": "ERC20", + "decimals": 1, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x58e1a16Cc86FE135b6f0e478B383a2f8D75B4652", + "status": "abandoned", + "id": "0x58e1a16Cc86FE135b6f0e478B383a2f8D75B4652" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58e1a16Cc86FE135b6f0e478B383a2f8D75B4652/logo.png b/blockchains/ethereum/assets/0x58e1a16Cc86FE135b6f0e478B383a2f8D75B4652/logo.png new file mode 100644 index 00000000..931e11ee Binary files /dev/null and b/blockchains/ethereum/assets/0x58e1a16Cc86FE135b6f0e478B383a2f8D75B4652/logo.png differ diff --git a/blockchains/ethereum/assets/0x58e570f4D7d8be486207D21fF661591c65A22E23/info.json b/blockchains/ethereum/assets/0x58e570f4D7d8be486207D21fF661591c65A22E23/info.json new file mode 100644 index 00000000..f3bae810 --- /dev/null +++ b/blockchains/ethereum/assets/0x58e570f4D7d8be486207D21fF661591c65A22E23/info.json @@ -0,0 +1,11 @@ +{ + "name": "Phoenex", + "symbol": "PHNEX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x58e570f4D7d8be486207D21fF661591c65A22E23", + "status": "abandoned", + "id": "0x58e570f4D7d8be486207D21fF661591c65A22E23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58e570f4D7d8be486207D21fF661591c65A22E23/logo.png b/blockchains/ethereum/assets/0x58e570f4D7d8be486207D21fF661591c65A22E23/logo.png new file mode 100644 index 00000000..20ef2ffb Binary files /dev/null and b/blockchains/ethereum/assets/0x58e570f4D7d8be486207D21fF661591c65A22E23/logo.png differ diff --git a/blockchains/ethereum/assets/0x58fC9d573Ea773ef9a25c3DE66F990B87Ee5f50E/info.json b/blockchains/ethereum/assets/0x58fC9d573Ea773ef9a25c3DE66F990B87Ee5f50E/info.json new file mode 100644 index 00000000..0ffd90ec --- /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 00000000..cc54cd49 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 00000000..bab8c8cb --- /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 00000000..4da09d72 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 00000000..0b595ce1 --- /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 00000000..a7adfb47 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 00000000..7d90ab9b --- /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 new file mode 100644 index 00000000..fc1b3877 --- /dev/null +++ b/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/info.json @@ -0,0 +1,33 @@ +{ + "name": "The People's Coin", + "website": "https://thepeoplescoin.money/", + "description": "PEEPS is a community-driven coin built by people within that very same community. It will host an ever-adapting ecosystem built with the visibility and security of the ETH network. The transparency and welcoming community will both allow organic growth and the promotion of ideas to improve the existing crypto landscape.", + "explorer": "https://etherscan.io/token/0x5919DeA604631016c15c805e3D948A0384879892", + "type": "ERC20", + "symbol": "PEEPS", + "decimals": 9, + "status": "active", + "id": "0x5919DeA604631016c15c805e3D948A0384879892", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/groups/thepeoplescoin/" + }, + { + "name": "x", + "url": "https://x.com/ThePeoples_Coin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/PEEPScoin/" + }, + { + "name": "telegram", + "url": "https://t.me/ThePeoplesCoinOfficial" + } + ], + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/logo.png b/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/logo.png new file mode 100644 index 00000000..007114fa Binary files /dev/null and b/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/logo.png differ diff --git a/blockchains/ethereum/assets/0x5925f67d2767d937F47141DAC24166B469558222/info.json b/blockchains/ethereum/assets/0x5925f67d2767d937F47141DAC24166B469558222/info.json new file mode 100644 index 00000000..56d6fe9d --- /dev/null +++ b/blockchains/ethereum/assets/0x5925f67d2767d937F47141DAC24166B469558222/info.json @@ -0,0 +1,11 @@ +{ + "name": "OLXA", + "symbol": "OLXA", + "type": "ERC20", + "decimals": 2, + "description": "OLXA is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.olxacoin.com", + "explorer": "https://etherscan.io/token/0x5925f67d2767d937F47141DAC24166B469558222", + "status": "active", + "id": "0x5925f67d2767d937F47141DAC24166B469558222" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5925f67d2767d937F47141DAC24166B469558222/logo.png b/blockchains/ethereum/assets/0x5925f67d2767d937F47141DAC24166B469558222/logo.png new file mode 100755 index 00000000..83beb133 Binary files /dev/null and b/blockchains/ethereum/assets/0x5925f67d2767d937F47141DAC24166B469558222/logo.png differ diff --git a/blockchains/ethereum/assets/0x592643a667633bCa51Cb2387C98B6dE6CE549A45/info.json b/blockchains/ethereum/assets/0x592643a667633bCa51Cb2387C98B6dE6CE549A45/info.json new file mode 100644 index 00000000..1397ea5a --- /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 00000000..fe6efcd5 Binary files /dev/null and b/blockchains/ethereum/assets/0x592643a667633bCa51Cb2387C98B6dE6CE549A45/logo.png differ diff --git a/blockchains/ethereum/assets/0x593114f03A0A575aece9ED675e52Ed68D2172B8c/info.json b/blockchains/ethereum/assets/0x593114f03A0A575aece9ED675e52Ed68D2172B8c/info.json new file mode 100644 index 00000000..2fe71fbd --- /dev/null +++ b/blockchains/ethereum/assets/0x593114f03A0A575aece9ED675e52Ed68D2172B8c/info.json @@ -0,0 +1,11 @@ +{ + "name": "BidiPass", + "symbol": "BDP", + "type": "ERC20", + "decimals": 18, + "description": "BidiPass Network is comprised of an EVM blockchain and digital asset bridge. Our team leverages our existing infrastructure to build products that improve usability and trust of decentralized applications.", + "website": "https://bidipass.org/", + "explorer": "https://etherscan.io/token/0x593114f03A0A575aece9ED675e52Ed68D2172B8c", + "status": "active", + "id": "0x593114f03A0A575aece9ED675e52Ed68D2172B8c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x593114f03A0A575aece9ED675e52Ed68D2172B8c/logo.png b/blockchains/ethereum/assets/0x593114f03A0A575aece9ED675e52Ed68D2172B8c/logo.png new file mode 100644 index 00000000..f28a09cd Binary files /dev/null and b/blockchains/ethereum/assets/0x593114f03A0A575aece9ED675e52Ed68D2172B8c/logo.png differ diff --git a/blockchains/ethereum/assets/0x59321ace77C8087FF8Cb9F94C8384807E4Fd8a3c/info.json b/blockchains/ethereum/assets/0x59321ace77C8087FF8Cb9F94C8384807E4Fd8a3c/info.json new file mode 100644 index 00000000..0d8aabfe --- /dev/null +++ b/blockchains/ethereum/assets/0x59321ace77C8087FF8Cb9F94C8384807E4Fd8a3c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xeniumx", + "symbol": "XEMX", + "type": "ERC20", + "decimals": 18, + "description": "Xeniumx is a blockchain-based marketplace, where buyers & sellers meet to carry out operations involving digital goods & saas based services with cryptocurrency transactions. It uses an automatic matching of users, based on the artificial intelligence approach.", + "website": "https://xeniumx.com/", + "explorer": "https://etherscan.io/token/0x59321ace77C8087FF8Cb9F94C8384807E4Fd8a3c", + "status": "active", + "id": "0x59321ace77C8087FF8Cb9F94C8384807E4Fd8a3c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x59321ace77C8087FF8Cb9F94C8384807E4Fd8a3c/logo.png b/blockchains/ethereum/assets/0x59321ace77C8087FF8Cb9F94C8384807E4Fd8a3c/logo.png new file mode 100644 index 00000000..b2b20722 Binary files /dev/null and b/blockchains/ethereum/assets/0x59321ace77C8087FF8Cb9F94C8384807E4Fd8a3c/logo.png differ diff --git a/blockchains/ethereum/assets/0x594120039687DDaAB50C4aB03bAda20Eb4b218F6/info.json b/blockchains/ethereum/assets/0x594120039687DDaAB50C4aB03bAda20Eb4b218F6/info.json new file mode 100644 index 00000000..d4a63657 --- /dev/null +++ b/blockchains/ethereum/assets/0x594120039687DDaAB50C4aB03bAda20Eb4b218F6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Green Movement", + "symbol": "GMV", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x594120039687DDaAB50C4aB03bAda20Eb4b218F6", + "status": "abandoned", + "id": "0x594120039687DDaAB50C4aB03bAda20Eb4b218F6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x594120039687DDaAB50C4aB03bAda20Eb4b218F6/logo.png b/blockchains/ethereum/assets/0x594120039687DDaAB50C4aB03bAda20Eb4b218F6/logo.png new file mode 100755 index 00000000..d9922782 Binary files /dev/null and b/blockchains/ethereum/assets/0x594120039687DDaAB50C4aB03bAda20Eb4b218F6/logo.png differ diff --git a/blockchains/ethereum/assets/0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa/info.json b/blockchains/ethereum/assets/0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa/info.json new file mode 100644 index 00000000..fcc1f35b --- /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 00000000..9b86cd55 Binary files /dev/null and b/blockchains/ethereum/assets/0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa/logo.png differ diff --git a/blockchains/ethereum/assets/0x594e9F0c7914118A6e2158F83b5D1dDDE2157475/info.json b/blockchains/ethereum/assets/0x594e9F0c7914118A6e2158F83b5D1dDDE2157475/info.json new file mode 100644 index 00000000..9beea23d --- /dev/null +++ b/blockchains/ethereum/assets/0x594e9F0c7914118A6e2158F83b5D1dDDE2157475/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockchain Media Group", + "symbol": "BCMG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x594e9F0c7914118A6e2158F83b5D1dDDE2157475", + "status": "abandoned", + "id": "0x594e9F0c7914118A6e2158F83b5D1dDDE2157475" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x594e9F0c7914118A6e2158F83b5D1dDDE2157475/logo.png b/blockchains/ethereum/assets/0x594e9F0c7914118A6e2158F83b5D1dDDE2157475/logo.png new file mode 100644 index 00000000..a94197d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x594e9F0c7914118A6e2158F83b5D1dDDE2157475/logo.png differ diff --git a/blockchains/ethereum/assets/0x595643D83B35df38E29058976C04000AcFA31570/info.json b/blockchains/ethereum/assets/0x595643D83B35df38E29058976C04000AcFA31570/info.json new file mode 100644 index 00000000..cb2f5fdc --- /dev/null +++ b/blockchains/ethereum/assets/0x595643D83B35df38E29058976C04000AcFA31570/info.json @@ -0,0 +1,12 @@ +{ + "name": "Order of the Black Rose", + "website": "https://nftobr.com", + "description": "The official token of Order of the Black Rose", + "explorer": "https://etherscan.io/token/0x595643D83B35df38E29058976C04000AcFA31570", + "research": "", + "type": "ERC20", + "symbol": "OBR", + "decimals": 18, + "status": "active", + "id": "0x595643D83B35df38E29058976C04000AcFA31570" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x595643D83B35df38E29058976C04000AcFA31570/logo.png b/blockchains/ethereum/assets/0x595643D83B35df38E29058976C04000AcFA31570/logo.png new file mode 100644 index 00000000..bd44a9b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x595643D83B35df38E29058976C04000AcFA31570/logo.png differ diff --git a/blockchains/ethereum/assets/0x595832F8FC6BF59c85C527fEC3740A1b7a361269/info.json b/blockchains/ethereum/assets/0x595832F8FC6BF59c85C527fEC3740A1b7a361269/info.json new file mode 100644 index 00000000..019c6ea1 --- /dev/null +++ b/blockchains/ethereum/assets/0x595832F8FC6BF59c85C527fEC3740A1b7a361269/info.json @@ -0,0 +1,11 @@ +{ + "name": "Power Ledger", + "website": "https://powerledger.io", + "description": "Power Ledger (POWR), based in Australia, encourages us to imagine a world in which electricity is dependable, affordable and clean for everyone.", + "explorer": "https://etherscan.io/token/0x595832F8FC6BF59c85C527fEC3740A1b7a361269", + "type": "ERC20", + "symbol": "POWR", + "decimals": 6, + "status": "active", + "id": "0x595832F8FC6BF59c85C527fEC3740A1b7a361269" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x595832F8FC6BF59c85C527fEC3740A1b7a361269/logo.png b/blockchains/ethereum/assets/0x595832F8FC6BF59c85C527fEC3740A1b7a361269/logo.png new file mode 100755 index 00000000..3a3e5fc7 Binary files /dev/null and b/blockchains/ethereum/assets/0x595832F8FC6BF59c85C527fEC3740A1b7a361269/logo.png differ diff --git a/blockchains/ethereum/assets/0x59639Ab94e7dAF3b39C6555115e493145032e85E/info.json b/blockchains/ethereum/assets/0x59639Ab94e7dAF3b39C6555115e493145032e85E/info.json new file mode 100644 index 00000000..1aec61a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x59639Ab94e7dAF3b39C6555115e493145032e85E/info.json @@ -0,0 +1,11 @@ +{ + "name": "OmnisBit", + "symbol": "OMNIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x59639Ab94e7dAF3b39C6555115e493145032e85E", + "status": "abandoned", + "id": "0x59639Ab94e7dAF3b39C6555115e493145032e85E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x59639Ab94e7dAF3b39C6555115e493145032e85E/logo.png b/blockchains/ethereum/assets/0x59639Ab94e7dAF3b39C6555115e493145032e85E/logo.png new file mode 100644 index 00000000..3584ce8e Binary files /dev/null and b/blockchains/ethereum/assets/0x59639Ab94e7dAF3b39C6555115e493145032e85E/logo.png differ diff --git a/blockchains/ethereum/assets/0x59641DCaD70239473503DDaa27af4f1017e3c998/info.json b/blockchains/ethereum/assets/0x59641DCaD70239473503DDaa27af4f1017e3c998/info.json new file mode 100644 index 00000000..b9e07c25 --- /dev/null +++ b/blockchains/ethereum/assets/0x59641DCaD70239473503DDaa27af4f1017e3c998/info.json @@ -0,0 +1,11 @@ +{ + "name": "Oracle Network", + "symbol": "ONK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x59641DCaD70239473503DDaa27af4f1017e3c998", + "status": "abandoned", + "id": "0x59641DCaD70239473503DDaa27af4f1017e3c998" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x59641DCaD70239473503DDaa27af4f1017e3c998/logo.png b/blockchains/ethereum/assets/0x59641DCaD70239473503DDaa27af4f1017e3c998/logo.png new file mode 100644 index 00000000..8591b285 Binary files /dev/null and b/blockchains/ethereum/assets/0x59641DCaD70239473503DDaa27af4f1017e3c998/logo.png differ diff --git a/blockchains/ethereum/assets/0x59644165402b611b350645555B50Afb581C71EB2/info.json b/blockchains/ethereum/assets/0x59644165402b611b350645555B50Afb581C71EB2/info.json new file mode 100644 index 00000000..e58b1e44 --- /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 00000000..df2bffa2 Binary files /dev/null and b/blockchains/ethereum/assets/0x59644165402b611b350645555B50Afb581C71EB2/logo.png differ diff --git a/blockchains/ethereum/assets/0x5978708d6ccE1CC9640Eed47422D64c91BbD5171/info.json b/blockchains/ethereum/assets/0x5978708d6ccE1CC9640Eed47422D64c91BbD5171/info.json new file mode 100644 index 00000000..6ad4c7d1 --- /dev/null +++ b/blockchains/ethereum/assets/0x5978708d6ccE1CC9640Eed47422D64c91BbD5171/info.json @@ -0,0 +1,11 @@ +{ + "name": "LOLTOKEN", + "symbol": "LOL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://loleiu.io", + "explorer": "https://etherscan.io/token/0x5978708d6ccE1CC9640Eed47422D64c91BbD5171", + "status": "abandoned", + "id": "0x5978708d6ccE1CC9640Eed47422D64c91BbD5171" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5978708d6ccE1CC9640Eed47422D64c91BbD5171/logo.png b/blockchains/ethereum/assets/0x5978708d6ccE1CC9640Eed47422D64c91BbD5171/logo.png new file mode 100644 index 00000000..6e5db0fb Binary files /dev/null and b/blockchains/ethereum/assets/0x5978708d6ccE1CC9640Eed47422D64c91BbD5171/logo.png differ diff --git a/blockchains/ethereum/assets/0x5987b7aD0bfB6eB3d8e00882BBab490c79d185C9/info.json b/blockchains/ethereum/assets/0x5987b7aD0bfB6eB3d8e00882BBab490c79d185C9/info.json new file mode 100644 index 00000000..150f1790 --- /dev/null +++ b/blockchains/ethereum/assets/0x5987b7aD0bfB6eB3d8e00882BBab490c79d185C9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitgene Token", + "symbol": "BGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5987b7aD0bfB6eB3d8e00882BBab490c79d185C9", + "status": "abandoned", + "id": "0x5987b7aD0bfB6eB3d8e00882BBab490c79d185C9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5987b7aD0bfB6eB3d8e00882BBab490c79d185C9/logo.png b/blockchains/ethereum/assets/0x5987b7aD0bfB6eB3d8e00882BBab490c79d185C9/logo.png new file mode 100644 index 00000000..c99a6efa Binary files /dev/null and b/blockchains/ethereum/assets/0x5987b7aD0bfB6eB3d8e00882BBab490c79d185C9/logo.png differ diff --git a/blockchains/ethereum/assets/0x598C9a4f069dC076984868873C01e78a905D50E6/info.json b/blockchains/ethereum/assets/0x598C9a4f069dC076984868873C01e78a905D50E6/info.json new file mode 100644 index 00000000..25140dd5 --- /dev/null +++ b/blockchains/ethereum/assets/0x598C9a4f069dC076984868873C01e78a905D50E6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ledgerium", + "symbol": "XLG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x598C9a4f069dC076984868873C01e78a905D50E6", + "status": "abandoned", + "id": "0x598C9a4f069dC076984868873C01e78a905D50E6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x598C9a4f069dC076984868873C01e78a905D50E6/logo.png b/blockchains/ethereum/assets/0x598C9a4f069dC076984868873C01e78a905D50E6/logo.png new file mode 100644 index 00000000..d5dc1284 Binary files /dev/null and b/blockchains/ethereum/assets/0x598C9a4f069dC076984868873C01e78a905D50E6/logo.png differ diff --git a/blockchains/ethereum/assets/0x599346779e90fc3F5F997b5ea715349820F91571/info.json b/blockchains/ethereum/assets/0x599346779e90fc3F5F997b5ea715349820F91571/info.json new file mode 100644 index 00000000..038b70c5 --- /dev/null +++ b/blockchains/ethereum/assets/0x599346779e90fc3F5F997b5ea715349820F91571/info.json @@ -0,0 +1,11 @@ +{ + "name": "Saturn", + "symbol": "STN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x599346779e90fc3F5F997b5ea715349820F91571", + "status": "abandoned", + "id": "0x599346779e90fc3F5F997b5ea715349820F91571" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x599346779e90fc3F5F997b5ea715349820F91571/logo.png b/blockchains/ethereum/assets/0x599346779e90fc3F5F997b5ea715349820F91571/logo.png new file mode 100755 index 00000000..3c748146 Binary files /dev/null and b/blockchains/ethereum/assets/0x599346779e90fc3F5F997b5ea715349820F91571/logo.png differ diff --git a/blockchains/ethereum/assets/0x59A11e14514b15D5486b7fAa190Ab234DE04EdB4/info.json b/blockchains/ethereum/assets/0x59A11e14514b15D5486b7fAa190Ab234DE04EdB4/info.json new file mode 100644 index 00000000..f3cf63bf --- /dev/null +++ b/blockchains/ethereum/assets/0x59A11e14514b15D5486b7fAa190Ab234DE04EdB4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planetagro", + "symbol": "MXN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x59A11e14514b15D5486b7fAa190Ab234DE04EdB4", + "status": "abandoned", + "id": "0x59A11e14514b15D5486b7fAa190Ab234DE04EdB4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x59A11e14514b15D5486b7fAa190Ab234DE04EdB4/logo.png b/blockchains/ethereum/assets/0x59A11e14514b15D5486b7fAa190Ab234DE04EdB4/logo.png new file mode 100644 index 00000000..c25437eb Binary files /dev/null and b/blockchains/ethereum/assets/0x59A11e14514b15D5486b7fAa190Ab234DE04EdB4/logo.png differ diff --git a/blockchains/ethereum/assets/0x59A921Db27Dd6d4d974745B7FfC5c33932653442/info.json b/blockchains/ethereum/assets/0x59A921Db27Dd6d4d974745B7FfC5c33932653442/info.json new file mode 100644 index 00000000..9142dc27 --- /dev/null +++ b/blockchains/ethereum/assets/0x59A921Db27Dd6d4d974745B7FfC5c33932653442/info.json @@ -0,0 +1,32 @@ +{ + "name": "mGOOGL Token", + "website": "https://mirror.finance", + "description": "Wrapped Mirror GOOGL Token.", + "explorer": "https://etherscan.io/token/0x59A921Db27Dd6d4d974745B7FfC5c33932653442", + "type": "ERC20", + "symbol": "mGOOGL", + "decimals": 18, + "status": "active", + "id": "0x59A921Db27Dd6d4d974745B7FfC5c33932653442", + "tags": [ + "wrapped" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MirrorProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/mirror_protocol" + }, + { + "name": "discord", + "url": "https://discord.com/MirrorProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/@mirror-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x59A921Db27Dd6d4d974745B7FfC5c33932653442/logo.png b/blockchains/ethereum/assets/0x59A921Db27Dd6d4d974745B7FfC5c33932653442/logo.png new file mode 100644 index 00000000..5e9b9e1f Binary files /dev/null and b/blockchains/ethereum/assets/0x59A921Db27Dd6d4d974745B7FfC5c33932653442/logo.png differ diff --git a/blockchains/ethereum/assets/0x59AD6061A0be82155E7aCcE9F0C37Bf59F9c1e3C/info.json b/blockchains/ethereum/assets/0x59AD6061A0be82155E7aCcE9F0C37Bf59F9c1e3C/info.json new file mode 100644 index 00000000..d2e62b33 --- /dev/null +++ b/blockchains/ethereum/assets/0x59AD6061A0be82155E7aCcE9F0C37Bf59F9c1e3C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Liquid Lottery RTC", + "website": "https://etherscan.io/address/0x59AD6061A0be82155E7aCcE9F0C37Bf59F9c1e3C#code", + "description": "Utility token used as the main prize in the daily Liquid Lottery draws. Read This Contract (RTC)", + "explorer": "https://etherscan.io/token/0x59AD6061A0be82155E7aCcE9F0C37Bf59F9c1e3C", + "type": "ERC20", + "symbol": "LIQLO", + "decimals": 18, + "status": "active", + "id": "0x59AD6061A0be82155E7aCcE9F0C37Bf59F9c1e3C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x59AD6061A0be82155E7aCcE9F0C37Bf59F9c1e3C/logo.png b/blockchains/ethereum/assets/0x59AD6061A0be82155E7aCcE9F0C37Bf59F9c1e3C/logo.png new file mode 100755 index 00000000..0580d54d Binary files /dev/null and b/blockchains/ethereum/assets/0x59AD6061A0be82155E7aCcE9F0C37Bf59F9c1e3C/logo.png differ diff --git a/blockchains/ethereum/assets/0x59BE937f05cf2c406b61c42C6c82a093fA54edfE/info.json b/blockchains/ethereum/assets/0x59BE937f05cf2c406b61c42C6c82a093fA54edfE/info.json new file mode 100644 index 00000000..6f9dfcb9 --- /dev/null +++ b/blockchains/ethereum/assets/0x59BE937f05cf2c406b61c42C6c82a093fA54edfE/info.json @@ -0,0 +1,11 @@ +{ + "name": "PlayCoin", + "symbol": "PLY", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "https://playcoin.game/Home/Index", + "explorer": "https://etherscan.io/token/0x59BE937f05cf2c406b61c42C6c82a093fA54edfE", + "status": "abandoned", + "id": "0x59BE937f05cf2c406b61c42C6c82a093fA54edfE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x59BE937f05cf2c406b61c42C6c82a093fA54edfE/logo.png b/blockchains/ethereum/assets/0x59BE937f05cf2c406b61c42C6c82a093fA54edfE/logo.png new file mode 100644 index 00000000..3eeea0b7 Binary files /dev/null and b/blockchains/ethereum/assets/0x59BE937f05cf2c406b61c42C6c82a093fA54edfE/logo.png differ diff --git a/blockchains/ethereum/assets/0x59D63c88aDa5A485A4Ea1cCEc1145619C59e5f39/info.json b/blockchains/ethereum/assets/0x59D63c88aDa5A485A4Ea1cCEc1145619C59e5f39/info.json new file mode 100644 index 00000000..803b65a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x59D63c88aDa5A485A4Ea1cCEc1145619C59e5f39/info.json @@ -0,0 +1,11 @@ +{ + "name": "ARESCOIN", + "symbol": "ARES", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x59D63c88aDa5A485A4Ea1cCEc1145619C59e5f39", + "status": "abandoned", + "id": "0x59D63c88aDa5A485A4Ea1cCEc1145619C59e5f39" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x59D63c88aDa5A485A4Ea1cCEc1145619C59e5f39/logo.png b/blockchains/ethereum/assets/0x59D63c88aDa5A485A4Ea1cCEc1145619C59e5f39/logo.png new file mode 100644 index 00000000..d9ec0aa6 Binary files /dev/null and b/blockchains/ethereum/assets/0x59D63c88aDa5A485A4Ea1cCEc1145619C59e5f39/logo.png differ diff --git a/blockchains/ethereum/assets/0x59F96b8571E3B11f859A09Eaf5a790A138FC64D0/info.json b/blockchains/ethereum/assets/0x59F96b8571E3B11f859A09Eaf5a790A138FC64D0/info.json new file mode 100644 index 00000000..dfd0145a --- /dev/null +++ b/blockchains/ethereum/assets/0x59F96b8571E3B11f859A09Eaf5a790A138FC64D0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Uniswap V2", + "symbol": "UNI-V2", + "type": "ERC20", + "decimals": 18, + "description": " This Uniswap Liquidity Provider (LP) token represents the STA and ETH pairing.", + "website": "https://stateratoken.com/", + "explorer": "https://etherscan.io/token/0x59F96b8571E3B11f859A09Eaf5a790A138FC64D0", + "status": "active", + "id": "0x59F96b8571E3B11f859A09Eaf5a790A138FC64D0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x59F96b8571E3B11f859A09Eaf5a790A138FC64D0/logo.png b/blockchains/ethereum/assets/0x59F96b8571E3B11f859A09Eaf5a790A138FC64D0/logo.png new file mode 100644 index 00000000..0b17e5b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x59F96b8571E3B11f859A09Eaf5a790A138FC64D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x59a17c58DAAEE299b39A060B9De67Bf7C829e4d3/info.json b/blockchains/ethereum/assets/0x59a17c58DAAEE299b39A060B9De67Bf7C829e4d3/info.json new file mode 100644 index 00000000..29439654 --- /dev/null +++ b/blockchains/ethereum/assets/0x59a17c58DAAEE299b39A060B9De67Bf7C829e4d3/info.json @@ -0,0 +1,11 @@ +{ + "name": "shelterDAO", + "symbol": "SHEL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x59a17c58DAAEE299b39A060B9De67Bf7C829e4d3", + "status": "abandoned", + "id": "0x59a17c58DAAEE299b39A060B9De67Bf7C829e4d3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x59a17c58DAAEE299b39A060B9De67Bf7C829e4d3/logo.png b/blockchains/ethereum/assets/0x59a17c58DAAEE299b39A060B9De67Bf7C829e4d3/logo.png new file mode 100644 index 00000000..33b4499e Binary files /dev/null and b/blockchains/ethereum/assets/0x59a17c58DAAEE299b39A060B9De67Bf7C829e4d3/logo.png differ diff --git a/blockchains/ethereum/assets/0x59d4CCC94A9C4C3d3b4bA2Aa343a9bDF95145DD1/info.json b/blockchains/ethereum/assets/0x59d4CCC94A9C4C3d3b4bA2Aa343a9bDF95145DD1/info.json new file mode 100644 index 00000000..6a28dbf2 --- /dev/null +++ b/blockchains/ethereum/assets/0x59d4CCC94A9C4C3d3b4bA2Aa343a9bDF95145DD1/info.json @@ -0,0 +1,22 @@ +{ + "name": "QUSD", + "website": "https://qian.finance", + "description": "QUSD is the first kind of stablecoin of QIAN protocol. In the future, QIAN will launch QHKD, QEUR and other stable assets).", + "explorer": "https://etherscan.io/token/0x59d4CCC94A9C4C3d3b4bA2Aa343a9bDF95145DD1", + "audit_report": "https://qian.finance/PeckShield-Audit-Report-QIAN2-v1.0.pdf", + "type": "ERC20", + "symbol": "QUSD", + "decimals": 18, + "status": "active", + "id": "0x59d4CCC94A9C4C3d3b4bA2Aa343a9bDF95145DD1", + "links": [ + { + "name": "whitepaper", + "url": "https://qian.finance/qian_whitepaper_zh.pdf" + }, + { + "name": "github", + "url": "https://github.com/QIAN-Protocol/QIAN" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x59d4CCC94A9C4C3d3b4bA2Aa343a9bDF95145DD1/logo.png b/blockchains/ethereum/assets/0x59d4CCC94A9C4C3d3b4bA2Aa343a9bDF95145DD1/logo.png new file mode 100644 index 00000000..84412499 Binary files /dev/null and b/blockchains/ethereum/assets/0x59d4CCC94A9C4C3d3b4bA2Aa343a9bDF95145DD1/logo.png differ diff --git a/blockchains/ethereum/assets/0x5A07db85AA330Bb0E333018722bFA4b65B6009cB/info.json b/blockchains/ethereum/assets/0x5A07db85AA330Bb0E333018722bFA4b65B6009cB/info.json new file mode 100644 index 00000000..6bd2db4d --- /dev/null +++ b/blockchains/ethereum/assets/0x5A07db85AA330Bb0E333018722bFA4b65B6009cB/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-17/30M17", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5A07db85AA330Bb0E333018722bFA4b65B6009cB", + "status": "abandoned", + "id": "0x5A07db85AA330Bb0E333018722bFA4b65B6009cB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5A07db85AA330Bb0E333018722bFA4b65B6009cB/logo.png b/blockchains/ethereum/assets/0x5A07db85AA330Bb0E333018722bFA4b65B6009cB/logo.png new file mode 100644 index 00000000..9e2dd473 Binary files /dev/null and b/blockchains/ethereum/assets/0x5A07db85AA330Bb0E333018722bFA4b65B6009cB/logo.png differ diff --git a/blockchains/ethereum/assets/0x5A1A29DBb6Ad6153DB764568C1289076bC876df6/info.json b/blockchains/ethereum/assets/0x5A1A29DBb6Ad6153DB764568C1289076bC876df6/info.json new file mode 100644 index 00000000..171536fb --- /dev/null +++ b/blockchains/ethereum/assets/0x5A1A29DBb6Ad6153DB764568C1289076bC876df6/info.json @@ -0,0 +1,11 @@ +{ + "name": "NeworkCoin", + "symbol": "NKC", + "type": "ERC20", + "decimals": 18, + "description": "Nework is an incentive platform based on block-chain technology to connect human work skills.", + "website": "http://nework.pro/", + "explorer": "https://etherscan.io/token/0x5A1A29DBb6Ad6153DB764568C1289076bC876df6", + "status": "active", + "id": "0x5A1A29DBb6Ad6153DB764568C1289076bC876df6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5A1A29DBb6Ad6153DB764568C1289076bC876df6/logo.png b/blockchains/ethereum/assets/0x5A1A29DBb6Ad6153DB764568C1289076bC876df6/logo.png new file mode 100644 index 00000000..1c4cccaa Binary files /dev/null and b/blockchains/ethereum/assets/0x5A1A29DBb6Ad6153DB764568C1289076bC876df6/logo.png differ diff --git a/blockchains/ethereum/assets/0x5A2fe67e429fB02ceBc3344a23e90E242263205D/info.json b/blockchains/ethereum/assets/0x5A2fe67e429fB02ceBc3344a23e90E242263205D/info.json new file mode 100644 index 00000000..a3fa5390 --- /dev/null +++ b/blockchains/ethereum/assets/0x5A2fe67e429fB02ceBc3344a23e90E242263205D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mercury Network", + "symbol": "MNT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5A2fe67e429fB02ceBc3344a23e90E242263205D", + "status": "abandoned", + "id": "0x5A2fe67e429fB02ceBc3344a23e90E242263205D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5A2fe67e429fB02ceBc3344a23e90E242263205D/logo.png b/blockchains/ethereum/assets/0x5A2fe67e429fB02ceBc3344a23e90E242263205D/logo.png new file mode 100644 index 00000000..9ead4310 Binary files /dev/null and b/blockchains/ethereum/assets/0x5A2fe67e429fB02ceBc3344a23e90E242263205D/logo.png differ diff --git a/blockchains/ethereum/assets/0x5A758e5A34e5C9258198b2b6d186a92056ae0B19/info.json b/blockchains/ethereum/assets/0x5A758e5A34e5C9258198b2b6d186a92056ae0B19/info.json new file mode 100644 index 00000000..cc933047 --- /dev/null +++ b/blockchains/ethereum/assets/0x5A758e5A34e5C9258198b2b6d186a92056ae0B19/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cooin", + "symbol": "COOIN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5A758e5A34e5C9258198b2b6d186a92056ae0B19", + "status": "abandoned", + "id": "0x5A758e5A34e5C9258198b2b6d186a92056ae0B19" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5A758e5A34e5C9258198b2b6d186a92056ae0B19/logo.png b/blockchains/ethereum/assets/0x5A758e5A34e5C9258198b2b6d186a92056ae0B19/logo.png new file mode 100644 index 00000000..9ca5d002 Binary files /dev/null and b/blockchains/ethereum/assets/0x5A758e5A34e5C9258198b2b6d186a92056ae0B19/logo.png differ diff --git a/blockchains/ethereum/assets/0x5A844590c5b8f40ae56190771d06c60b9ab1Da1C/info.json b/blockchains/ethereum/assets/0x5A844590c5b8f40ae56190771d06c60b9ab1Da1C/info.json new file mode 100644 index 00000000..a43ae9e7 --- /dev/null +++ b/blockchains/ethereum/assets/0x5A844590c5b8f40ae56190771d06c60b9ab1Da1C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ross Campbell Legal Engineering", + "symbol": "RCLE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5A844590c5b8f40ae56190771d06c60b9ab1Da1C", + "status": "abandoned", + "id": "0x5A844590c5b8f40ae56190771d06c60b9ab1Da1C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5A844590c5b8f40ae56190771d06c60b9ab1Da1C/logo.png b/blockchains/ethereum/assets/0x5A844590c5b8f40ae56190771d06c60b9ab1Da1C/logo.png new file mode 100644 index 00000000..ba978dbc Binary files /dev/null and b/blockchains/ethereum/assets/0x5A844590c5b8f40ae56190771d06c60b9ab1Da1C/logo.png differ diff --git a/blockchains/ethereum/assets/0x5A95527eD7616d35fb2a113cD68832f4EDEFa2dF/info.json b/blockchains/ethereum/assets/0x5A95527eD7616d35fb2a113cD68832f4EDEFa2dF/info.json new file mode 100644 index 00000000..08e5f6d9 --- /dev/null +++ b/blockchains/ethereum/assets/0x5A95527eD7616d35fb2a113cD68832f4EDEFa2dF/info.json @@ -0,0 +1,11 @@ +{ + "name": "AllWensCoin", + "symbol": "AWC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5A95527eD7616d35fb2a113cD68832f4EDEFa2dF", + "status": "abandoned", + "id": "0x5A95527eD7616d35fb2a113cD68832f4EDEFa2dF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5A95527eD7616d35fb2a113cD68832f4EDEFa2dF/logo.png b/blockchains/ethereum/assets/0x5A95527eD7616d35fb2a113cD68832f4EDEFa2dF/logo.png new file mode 100644 index 00000000..ef838be1 Binary files /dev/null and b/blockchains/ethereum/assets/0x5A95527eD7616d35fb2a113cD68832f4EDEFa2dF/logo.png differ diff --git a/blockchains/ethereum/assets/0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32/info.json b/blockchains/ethereum/assets/0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32/info.json new file mode 100644 index 00000000..3cda6c59 --- /dev/null +++ b/blockchains/ethereum/assets/0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32/info.json @@ -0,0 +1,29 @@ +{ + "name": "Lido DAO", + "type": "ERC20", + "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://etherscan.io/token/0x5a98fcbea516cf06857215779fd812ca3bef1b32", + "status": "active", + "id": "0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32", + "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/ethereum/assets/0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32/logo.png b/blockchains/ethereum/assets/0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32/logo.png new file mode 100644 index 00000000..2b7f52ad Binary files /dev/null and b/blockchains/ethereum/assets/0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32/logo.png differ diff --git a/blockchains/ethereum/assets/0x5AB793E36070F0fac928EA15826b0c1Bc5365119/info.json b/blockchains/ethereum/assets/0x5AB793E36070F0fac928EA15826b0c1Bc5365119/info.json new file mode 100644 index 00000000..53c69a8f --- /dev/null +++ b/blockchains/ethereum/assets/0x5AB793E36070F0fac928EA15826b0c1Bc5365119/info.json @@ -0,0 +1,11 @@ +{ + "name": "YUKI", + "symbol": "YUKI", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.yukicoin.jp/en", + "explorer": "https://etherscan.io/token/0x5AB793E36070F0fac928EA15826b0c1Bc5365119", + "status": "abandoned", + "id": "0x5AB793E36070F0fac928EA15826b0c1Bc5365119" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5AB793E36070F0fac928EA15826b0c1Bc5365119/logo.png b/blockchains/ethereum/assets/0x5AB793E36070F0fac928EA15826b0c1Bc5365119/logo.png new file mode 100644 index 00000000..020b4c36 Binary files /dev/null and b/blockchains/ethereum/assets/0x5AB793E36070F0fac928EA15826b0c1Bc5365119/logo.png differ diff --git a/blockchains/ethereum/assets/0x5ABaFf0B83F81DC061C590AAdcbA013C69237fd7/info.json b/blockchains/ethereum/assets/0x5ABaFf0B83F81DC061C590AAdcbA013C69237fd7/info.json new file mode 100644 index 00000000..7f21c1df --- /dev/null +++ b/blockchains/ethereum/assets/0x5ABaFf0B83F81DC061C590AAdcbA013C69237fd7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jade Token", + "symbol": "JADE", + "type": "ERC20", + "decimals": 18, + "description": "Jade Currency aims to change the world the world by allowing the public to pay for Jade with our token safely and easily.", + "website": "https://www.jadecurrency.com/", + "explorer": "https://etherscan.io/token/0x5ABaFf0B83F81DC061C590AAdcbA013C69237fd7", + "status": "active", + "id": "0x5ABaFf0B83F81DC061C590AAdcbA013C69237fd7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5ABaFf0B83F81DC061C590AAdcbA013C69237fd7/logo.png b/blockchains/ethereum/assets/0x5ABaFf0B83F81DC061C590AAdcbA013C69237fd7/logo.png new file mode 100644 index 00000000..6b0e5550 Binary files /dev/null and b/blockchains/ethereum/assets/0x5ABaFf0B83F81DC061C590AAdcbA013C69237fd7/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Af2Be193a6ABCa9c8817001F45744777Db30756/info.json b/blockchains/ethereum/assets/0x5Af2Be193a6ABCa9c8817001F45744777Db30756/info.json new file mode 100644 index 00000000..54897968 --- /dev/null +++ b/blockchains/ethereum/assets/0x5Af2Be193a6ABCa9c8817001F45744777Db30756/info.json @@ -0,0 +1,37 @@ +{ + "name": "Voyager Token", + "symbol": "VGX", + "type": "ERC20", + "decimals": 8, + "description": "The Voyager Token (VGX) rewards users within the Voyager crypto broker ecosystem.", + "website": "https://www.InvestVoyager.com", + "explorer": "https://etherscan.io/token/0x5Af2Be193a6ABCa9c8817001F45744777Db30756", + "status": "abandoned", + "id": "0x5Af2Be193a6ABCa9c8817001F45744777Db30756", + "links": [ + { + "name": "blog", + "url": "https://investvoyager.com/blog/" + }, + { + "name": "x", + "url": "https://x.com/investvoyager" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Invest_Voyager/" + }, + { + "name": "telegram", + "url": "https://t.me/investvoyager" + }, + { + "name": "whitepaper", + "url": "https://investvoyager.com/VoyagerToken/White_Paper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ethos/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5B0751713b2527d7f002c0c4e2a37e1219610A6B/info.json b/blockchains/ethereum/assets/0x5B0751713b2527d7f002c0c4e2a37e1219610A6B/info.json new file mode 100644 index 00000000..67e6aa6a --- /dev/null +++ b/blockchains/ethereum/assets/0x5B0751713b2527d7f002c0c4e2a37e1219610A6B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Horse", + "symbol": "HORSE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ethorse.com/", + "explorer": "https://etherscan.io/token/0x5B0751713b2527d7f002c0c4e2a37e1219610A6B", + "status": "abandoned", + "id": "0x5B0751713b2527d7f002c0c4e2a37e1219610A6B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5B0751713b2527d7f002c0c4e2a37e1219610A6B/logo.png b/blockchains/ethereum/assets/0x5B0751713b2527d7f002c0c4e2a37e1219610A6B/logo.png new file mode 100644 index 00000000..b2f18994 Binary files /dev/null and b/blockchains/ethereum/assets/0x5B0751713b2527d7f002c0c4e2a37e1219610A6B/logo.png differ diff --git a/blockchains/ethereum/assets/0x5B09A0371C1DA44A8E24D36Bf5DEb1141a84d875/info.json b/blockchains/ethereum/assets/0x5B09A0371C1DA44A8E24D36Bf5DEb1141a84d875/info.json new file mode 100644 index 00000000..438dd098 --- /dev/null +++ b/blockchains/ethereum/assets/0x5B09A0371C1DA44A8E24D36Bf5DEb1141a84d875/info.json @@ -0,0 +1,12 @@ +{ + "name": "MadNetwork", + "website": "http://madnetwork.com", + "description": "MadNetwork is a custom blockchain designed to authenticate and manage the identity of organizations, people, or assets in the digital world.", + "explorer": "https://etherscan.io/token/0x5B09A0371C1DA44A8E24D36Bf5DEb1141a84d875", + "research": "", + "type": "ERC20", + "symbol": "MAD", + "decimals": 18, + "status": "active", + "id": "0x5B09A0371C1DA44A8E24D36Bf5DEb1141a84d875" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5B09A0371C1DA44A8E24D36Bf5DEb1141a84d875/logo.png b/blockchains/ethereum/assets/0x5B09A0371C1DA44A8E24D36Bf5DEb1141a84d875/logo.png new file mode 100644 index 00000000..72c1c5c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x5B09A0371C1DA44A8E24D36Bf5DEb1141a84d875/logo.png differ diff --git a/blockchains/ethereum/assets/0x5B0A88473EdBD7B68e9D2f71583faeF866aE1114/info.json b/blockchains/ethereum/assets/0x5B0A88473EdBD7B68e9D2f71583faeF866aE1114/info.json new file mode 100644 index 00000000..3c8aa39a --- /dev/null +++ b/blockchains/ethereum/assets/0x5B0A88473EdBD7B68e9D2f71583faeF866aE1114/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R885766", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5B0A88473EdBD7B68e9D2f71583faeF866aE1114", + "status": "abandoned", + "id": "0x5B0A88473EdBD7B68e9D2f71583faeF866aE1114" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5B0A88473EdBD7B68e9D2f71583faeF866aE1114/logo.png b/blockchains/ethereum/assets/0x5B0A88473EdBD7B68e9D2f71583faeF866aE1114/logo.png new file mode 100644 index 00000000..f56e1112 Binary files /dev/null and b/blockchains/ethereum/assets/0x5B0A88473EdBD7B68e9D2f71583faeF866aE1114/logo.png differ diff --git a/blockchains/ethereum/assets/0x5B21E581a0A441338fFDC19923Eb32bA4c9Df365/info.json b/blockchains/ethereum/assets/0x5B21E581a0A441338fFDC19923Eb32bA4c9Df365/info.json new file mode 100644 index 00000000..6a020abe --- /dev/null +++ b/blockchains/ethereum/assets/0x5B21E581a0A441338fFDC19923Eb32bA4c9Df365/info.json @@ -0,0 +1,11 @@ +{ + "name": "mHealthCoin", + "symbol": "MHEC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5B21E581a0A441338fFDC19923Eb32bA4c9Df365", + "status": "abandoned", + "id": "0x5B21E581a0A441338fFDC19923Eb32bA4c9Df365" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5B21E581a0A441338fFDC19923Eb32bA4c9Df365/logo.png b/blockchains/ethereum/assets/0x5B21E581a0A441338fFDC19923Eb32bA4c9Df365/logo.png new file mode 100755 index 00000000..3831672e Binary files /dev/null and b/blockchains/ethereum/assets/0x5B21E581a0A441338fFDC19923Eb32bA4c9Df365/logo.png differ diff --git a/blockchains/ethereum/assets/0x5B2801375De6C23fcF8D2ECD453D3Fa72c254306/info.json b/blockchains/ethereum/assets/0x5B2801375De6C23fcF8D2ECD453D3Fa72c254306/info.json new file mode 100644 index 00000000..64ad0a1a --- /dev/null +++ b/blockchains/ethereum/assets/0x5B2801375De6C23fcF8D2ECD453D3Fa72c254306/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTC", + "symbol": "BTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5B2801375De6C23fcF8D2ECD453D3Fa72c254306", + "status": "abandoned", + "id": "0x5B2801375De6C23fcF8D2ECD453D3Fa72c254306" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5B2801375De6C23fcF8D2ECD453D3Fa72c254306/logo.png b/blockchains/ethereum/assets/0x5B2801375De6C23fcF8D2ECD453D3Fa72c254306/logo.png new file mode 100644 index 00000000..f277625e Binary files /dev/null and b/blockchains/ethereum/assets/0x5B2801375De6C23fcF8D2ECD453D3Fa72c254306/logo.png differ diff --git a/blockchains/ethereum/assets/0x5B2e4a700dfBc560061e957edec8F6EeEb74a320/info.json b/blockchains/ethereum/assets/0x5B2e4a700dfBc560061e957edec8F6EeEb74a320/info.json new file mode 100644 index 00000000..c6cf142f --- /dev/null +++ b/blockchains/ethereum/assets/0x5B2e4a700dfBc560061e957edec8F6EeEb74a320/info.json @@ -0,0 +1,11 @@ +{ + "name": "INS Token", + "symbol": "INS", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5B2e4a700dfBc560061e957edec8F6EeEb74a320", + "status": "abandoned", + "id": "0x5B2e4a700dfBc560061e957edec8F6EeEb74a320" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5B2e4a700dfBc560061e957edec8F6EeEb74a320/logo.png b/blockchains/ethereum/assets/0x5B2e4a700dfBc560061e957edec8F6EeEb74a320/logo.png new file mode 100755 index 00000000..011a62e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x5B2e4a700dfBc560061e957edec8F6EeEb74a320/logo.png differ diff --git a/blockchains/ethereum/assets/0x5B322514FF727253292637D9054301600c2C81e8/info.json b/blockchains/ethereum/assets/0x5B322514FF727253292637D9054301600c2C81e8/info.json new file mode 100644 index 00000000..ae170a11 --- /dev/null +++ b/blockchains/ethereum/assets/0x5B322514FF727253292637D9054301600c2C81e8/info.json @@ -0,0 +1,11 @@ +{ + "name": "DAD", + "symbol": "DAD", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "https://dad.one", + "explorer": "https://etherscan.io/token/0x5B322514FF727253292637D9054301600c2C81e8", + "status": "active", + "id": "0x5B322514FF727253292637D9054301600c2C81e8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5B322514FF727253292637D9054301600c2C81e8/logo.png b/blockchains/ethereum/assets/0x5B322514FF727253292637D9054301600c2C81e8/logo.png new file mode 100644 index 00000000..a553cda9 Binary files /dev/null and b/blockchains/ethereum/assets/0x5B322514FF727253292637D9054301600c2C81e8/logo.png differ diff --git a/blockchains/ethereum/assets/0x5B4E0B60f6F3725628d831057C8A624422B2E9aF/info.json b/blockchains/ethereum/assets/0x5B4E0B60f6F3725628d831057C8A624422B2E9aF/info.json new file mode 100644 index 00000000..d57e5c86 --- /dev/null +++ b/blockchains/ethereum/assets/0x5B4E0B60f6F3725628d831057C8A624422B2E9aF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Health Data Chain Token", + "symbol": "HDCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5B4E0B60f6F3725628d831057C8A624422B2E9aF", + "status": "abandoned", + "id": "0x5B4E0B60f6F3725628d831057C8A624422B2E9aF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5B4E0B60f6F3725628d831057C8A624422B2E9aF/logo.png b/blockchains/ethereum/assets/0x5B4E0B60f6F3725628d831057C8A624422B2E9aF/logo.png new file mode 100644 index 00000000..58900a4d Binary files /dev/null and b/blockchains/ethereum/assets/0x5B4E0B60f6F3725628d831057C8A624422B2E9aF/logo.png differ diff --git a/blockchains/ethereum/assets/0x5B54240612a83d34E89C141fd2F8d399349A9490/info.json b/blockchains/ethereum/assets/0x5B54240612a83d34E89C141fd2F8d399349A9490/info.json new file mode 100644 index 00000000..1c584ce9 --- /dev/null +++ b/blockchains/ethereum/assets/0x5B54240612a83d34E89C141fd2F8d399349A9490/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUnits", + "symbol": "UNITX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5B54240612a83d34E89C141fd2F8d399349A9490", + "status": "abandoned", + "id": "0x5B54240612a83d34E89C141fd2F8d399349A9490" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5B54240612a83d34E89C141fd2F8d399349A9490/logo.png b/blockchains/ethereum/assets/0x5B54240612a83d34E89C141fd2F8d399349A9490/logo.png new file mode 100755 index 00000000..f9784d4b Binary files /dev/null and b/blockchains/ethereum/assets/0x5B54240612a83d34E89C141fd2F8d399349A9490/logo.png differ diff --git a/blockchains/ethereum/assets/0x5B7093Fe2491DFB058c94BcD62A1CD4D822F884C/info.json b/blockchains/ethereum/assets/0x5B7093Fe2491DFB058c94BcD62A1CD4D822F884C/info.json new file mode 100644 index 00000000..4d01298e --- /dev/null +++ b/blockchains/ethereum/assets/0x5B7093Fe2491DFB058c94BcD62A1CD4D822F884C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Authoreon", + "symbol": "AUN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5B7093Fe2491DFB058c94BcD62A1CD4D822F884C", + "status": "abandoned", + "id": "0x5B7093Fe2491DFB058c94BcD62A1CD4D822F884C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5B7093Fe2491DFB058c94BcD62A1CD4D822F884C/logo.png b/blockchains/ethereum/assets/0x5B7093Fe2491DFB058c94BcD62A1CD4D822F884C/logo.png new file mode 100644 index 00000000..54da8e09 Binary files /dev/null and b/blockchains/ethereum/assets/0x5B7093Fe2491DFB058c94BcD62A1CD4D822F884C/logo.png differ diff --git a/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/info.json b/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/info.json new file mode 100644 index 00000000..3a75c15c --- /dev/null +++ b/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/info.json @@ -0,0 +1,58 @@ +{ + "name": "SingularityNET Token", + "website": "https://singularitynet.io", + "description": "SingularityNET is a blockchain-powered platform that allows anybody to easily create, share, and monetize AI services, thanks to its globally-accessible AI marketplace.", + "explorer": "https://etherscan.io/token/0x5B7533812759B45C2B44C19e320ba2cD2681b542", + "research": "https://research.binance.com/en/projects/singularitynet", + "type": "ERC20", + "symbol": "AGIX", + "decimals": 8, + "status": "active", + "id": "0x5B7533812759B45C2B44C19e320ba2cD2681b542", + "tags": [ + "governance", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/singnet" + }, + { + "name": "whitepaper", + "url": "https://public.singularitynet.io/whitepaper.pdf" + }, + { + "name": "x", + "url": "https://x.com/singularity_net" + }, + { + "name": "telegram", + "url": "https://t.me/singularitynet" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SingularityNet" + }, + { + "name": "facebook", + "url": "https://facebook.com/singularityNET.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/singularitynet/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/singularitynet" + }, + { + "name": "blog", + "url": "https://blog.singularitynet.io/" + }, + { + "name": "forum", + "url": "https://community.singularitynet.io/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/logo.png b/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/logo.png new file mode 100644 index 00000000..5332b573 Binary files /dev/null and b/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/logo.png differ diff --git a/blockchains/ethereum/assets/0x5B9DeCe6E8E703BFfC25E794e6f5DfaEbd26D543/info.json b/blockchains/ethereum/assets/0x5B9DeCe6E8E703BFfC25E794e6f5DfaEbd26D543/info.json new file mode 100644 index 00000000..2834ed4a --- /dev/null +++ b/blockchains/ethereum/assets/0x5B9DeCe6E8E703BFfC25E794e6f5DfaEbd26D543/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gorn", + "symbol": "GORN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5B9DeCe6E8E703BFfC25E794e6f5DfaEbd26D543", + "status": "abandoned", + "id": "0x5B9DeCe6E8E703BFfC25E794e6f5DfaEbd26D543" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5B9DeCe6E8E703BFfC25E794e6f5DfaEbd26D543/logo.png b/blockchains/ethereum/assets/0x5B9DeCe6E8E703BFfC25E794e6f5DfaEbd26D543/logo.png new file mode 100644 index 00000000..a5703365 Binary files /dev/null and b/blockchains/ethereum/assets/0x5B9DeCe6E8E703BFfC25E794e6f5DfaEbd26D543/logo.png differ diff --git a/blockchains/ethereum/assets/0x5BC7e5f0Ab8b2E10D2D0a3F21739FCe62459aeF3/info.json b/blockchains/ethereum/assets/0x5BC7e5f0Ab8b2E10D2D0a3F21739FCe62459aeF3/info.json new file mode 100644 index 00000000..b05bae8e --- /dev/null +++ b/blockchains/ethereum/assets/0x5BC7e5f0Ab8b2E10D2D0a3F21739FCe62459aeF3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hut34 Entropy Token", + "symbol": "ENTRP", + "type": "ERC20", + "decimals": 18, + "description": "Building the tools for the new data economy.", + "website": "https://hut34.io/", + "explorer": "https://etherscan.io/token/0x5BC7e5f0Ab8b2E10D2D0a3F21739FCe62459aeF3", + "status": "active", + "id": "0x5BC7e5f0Ab8b2E10D2D0a3F21739FCe62459aeF3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5BC7e5f0Ab8b2E10D2D0a3F21739FCe62459aeF3/logo.png b/blockchains/ethereum/assets/0x5BC7e5f0Ab8b2E10D2D0a3F21739FCe62459aeF3/logo.png new file mode 100644 index 00000000..f319192c Binary files /dev/null and b/blockchains/ethereum/assets/0x5BC7e5f0Ab8b2E10D2D0a3F21739FCe62459aeF3/logo.png differ diff --git a/blockchains/ethereum/assets/0x5BEfBB272290dD5b8521D4a938f6c4757742c430/info.json b/blockchains/ethereum/assets/0x5BEfBB272290dD5b8521D4a938f6c4757742c430/info.json new file mode 100644 index 00000000..33b52c64 --- /dev/null +++ b/blockchains/ethereum/assets/0x5BEfBB272290dD5b8521D4a938f6c4757742c430/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xfinance", + "website": "https://xfinance.io", + "description": "Xfinance is a decentralized finance (DeFi) which aims to build an aggregate liquidity pool.", + "explorer": "https://etherscan.io/token/0x5BEfBB272290dD5b8521D4a938f6c4757742c430", + "type": "ERC20", + "symbol": "XFI", + "decimals": 18, + "status": "active", + "id": "0x5BEfBB272290dD5b8521D4a938f6c4757742c430" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5BEfBB272290dD5b8521D4a938f6c4757742c430/logo.png b/blockchains/ethereum/assets/0x5BEfBB272290dD5b8521D4a938f6c4757742c430/logo.png new file mode 100644 index 00000000..f42f8a26 Binary files /dev/null and b/blockchains/ethereum/assets/0x5BEfBB272290dD5b8521D4a938f6c4757742c430/logo.png differ diff --git a/blockchains/ethereum/assets/0x5BF68f3eFc3A7817e6B2C304070423261C0a0afa/info.json b/blockchains/ethereum/assets/0x5BF68f3eFc3A7817e6B2C304070423261C0a0afa/info.json new file mode 100644 index 00000000..a85268e4 --- /dev/null +++ b/blockchains/ethereum/assets/0x5BF68f3eFc3A7817e6B2C304070423261C0a0afa/info.json @@ -0,0 +1,11 @@ +{ + "name": "OkNodeToken", + "symbol": "OKNC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5BF68f3eFc3A7817e6B2C304070423261C0a0afa", + "status": "abandoned", + "id": "0x5BF68f3eFc3A7817e6B2C304070423261C0a0afa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5BF68f3eFc3A7817e6B2C304070423261C0a0afa/logo.png b/blockchains/ethereum/assets/0x5BF68f3eFc3A7817e6B2C304070423261C0a0afa/logo.png new file mode 100755 index 00000000..336b5603 Binary files /dev/null and b/blockchains/ethereum/assets/0x5BF68f3eFc3A7817e6B2C304070423261C0a0afa/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Bc63f70030CC31531c9cD899BD1BA97b9411AbC/info.json b/blockchains/ethereum/assets/0x5Bc63f70030CC31531c9cD899BD1BA97b9411AbC/info.json new file mode 100644 index 00000000..7023d27a --- /dev/null +++ b/blockchains/ethereum/assets/0x5Bc63f70030CC31531c9cD899BD1BA97b9411AbC/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C572388", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5Bc63f70030CC31531c9cD899BD1BA97b9411AbC", + "status": "abandoned", + "id": "0x5Bc63f70030CC31531c9cD899BD1BA97b9411AbC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5Bc63f70030CC31531c9cD899BD1BA97b9411AbC/logo.png b/blockchains/ethereum/assets/0x5Bc63f70030CC31531c9cD899BD1BA97b9411AbC/logo.png new file mode 100644 index 00000000..190c1e2f Binary files /dev/null and b/blockchains/ethereum/assets/0x5Bc63f70030CC31531c9cD899BD1BA97b9411AbC/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Bcd8195E3Ef58f677aeF9eBC276B5087c027050/info.json b/blockchains/ethereum/assets/0x5Bcd8195E3Ef58f677aeF9eBC276B5087c027050/info.json new file mode 100644 index 00000000..c962dda4 --- /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 00000000..eae90c65 Binary files /dev/null and b/blockchains/ethereum/assets/0x5Bcd8195E3Ef58f677aeF9eBC276B5087c027050/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Bdd8A2bbAcEdC580A5BC73b27eC905bC9fA9d50/info.json b/blockchains/ethereum/assets/0x5Bdd8A2bbAcEdC580A5BC73b27eC905bC9fA9d50/info.json new file mode 100644 index 00000000..0c720925 --- /dev/null +++ b/blockchains/ethereum/assets/0x5Bdd8A2bbAcEdC580A5BC73b27eC905bC9fA9d50/info.json @@ -0,0 +1,11 @@ +{ + "name": "DaangnCoin", + "symbol": "DGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5Bdd8A2bbAcEdC580A5BC73b27eC905bC9fA9d50", + "status": "abandoned", + "id": "0x5Bdd8A2bbAcEdC580A5BC73b27eC905bC9fA9d50" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5Bdd8A2bbAcEdC580A5BC73b27eC905bC9fA9d50/logo.png b/blockchains/ethereum/assets/0x5Bdd8A2bbAcEdC580A5BC73b27eC905bC9fA9d50/logo.png new file mode 100644 index 00000000..2e574ed0 Binary files /dev/null and b/blockchains/ethereum/assets/0x5Bdd8A2bbAcEdC580A5BC73b27eC905bC9fA9d50/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Bf1b2A808598C0eF4Af1673a5457d86fE6d7B3d/info.json b/blockchains/ethereum/assets/0x5Bf1b2A808598C0eF4Af1673a5457d86fE6d7B3d/info.json new file mode 100644 index 00000000..f30e118e --- /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 00000000..33bca5e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x5Bf1b2A808598C0eF4Af1673a5457d86fE6d7B3d/logo.png differ diff --git a/blockchains/ethereum/assets/0x5C406D99E04B8494dc253FCc52943Ef82bcA7D75/info.json b/blockchains/ethereum/assets/0x5C406D99E04B8494dc253FCc52943Ef82bcA7D75/info.json new file mode 100644 index 00000000..22f00e1f --- /dev/null +++ b/blockchains/ethereum/assets/0x5C406D99E04B8494dc253FCc52943Ef82bcA7D75/info.json @@ -0,0 +1,11 @@ +{ + "name": "cUSD Currency", + "symbol": "cUSD", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://www.cusd.money", + "explorer": "https://etherscan.io/token/0x5C406D99E04B8494dc253FCc52943Ef82bcA7D75", + "status": "abandoned", + "id": "0x5C406D99E04B8494dc253FCc52943Ef82bcA7D75" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5C406D99E04B8494dc253FCc52943Ef82bcA7D75/logo.png b/blockchains/ethereum/assets/0x5C406D99E04B8494dc253FCc52943Ef82bcA7D75/logo.png new file mode 100644 index 00000000..d7b407e0 Binary files /dev/null and b/blockchains/ethereum/assets/0x5C406D99E04B8494dc253FCc52943Ef82bcA7D75/logo.png differ diff --git a/blockchains/ethereum/assets/0x5C424B9b60383FCE7fE7069D2a2B1047BCd04a73/info.json b/blockchains/ethereum/assets/0x5C424B9b60383FCE7fE7069D2a2B1047BCd04a73/info.json new file mode 100644 index 00000000..27aafe65 --- /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 00000000..6c932394 Binary files /dev/null and b/blockchains/ethereum/assets/0x5C424B9b60383FCE7fE7069D2a2B1047BCd04a73/logo.png differ diff --git a/blockchains/ethereum/assets/0x5C529EDa84EF12Dba15AA1A12FefAfeb8deE4Ea7/info.json b/blockchains/ethereum/assets/0x5C529EDa84EF12Dba15AA1A12FefAfeb8deE4Ea7/info.json new file mode 100644 index 00000000..843877f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x5C529EDa84EF12Dba15AA1A12FefAfeb8deE4Ea7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Garuda Coin", + "symbol": "GAR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5C529EDa84EF12Dba15AA1A12FefAfeb8deE4Ea7", + "status": "abandoned", + "id": "0x5C529EDa84EF12Dba15AA1A12FefAfeb8deE4Ea7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5C529EDa84EF12Dba15AA1A12FefAfeb8deE4Ea7/logo.png b/blockchains/ethereum/assets/0x5C529EDa84EF12Dba15AA1A12FefAfeb8deE4Ea7/logo.png new file mode 100644 index 00000000..678743cb Binary files /dev/null and b/blockchains/ethereum/assets/0x5C529EDa84EF12Dba15AA1A12FefAfeb8deE4Ea7/logo.png differ diff --git a/blockchains/ethereum/assets/0x5C5a61c0C8182b368e3E7DE52Ee64ABb693565Ad/info.json b/blockchains/ethereum/assets/0x5C5a61c0C8182b368e3E7DE52Ee64ABb693565Ad/info.json new file mode 100644 index 00000000..68543f75 --- /dev/null +++ b/blockchains/ethereum/assets/0x5C5a61c0C8182b368e3E7DE52Ee64ABb693565Ad/info.json @@ -0,0 +1,11 @@ +{ + "name": "Etherfaith", + "symbol": "ETFH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5C5a61c0C8182b368e3E7DE52Ee64ABb693565Ad", + "status": "abandoned", + "id": "0x5C5a61c0C8182b368e3E7DE52Ee64ABb693565Ad" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5C5a61c0C8182b368e3E7DE52Ee64ABb693565Ad/logo.png b/blockchains/ethereum/assets/0x5C5a61c0C8182b368e3E7DE52Ee64ABb693565Ad/logo.png new file mode 100755 index 00000000..b06befcb Binary files /dev/null and b/blockchains/ethereum/assets/0x5C5a61c0C8182b368e3E7DE52Ee64ABb693565Ad/logo.png differ diff --git a/blockchains/ethereum/assets/0x5C71bF122B5e1eEC7fb2cf029D6fAB7B224BD94F/info.json b/blockchains/ethereum/assets/0x5C71bF122B5e1eEC7fb2cf029D6fAB7B224BD94F/info.json new file mode 100644 index 00000000..3904e494 --- /dev/null +++ b/blockchains/ethereum/assets/0x5C71bF122B5e1eEC7fb2cf029D6fAB7B224BD94F/info.json @@ -0,0 +1,11 @@ +{ + "name": "DeFi-X USD", + "website": "https://defix.finance/", + "description": "TGX holders can cast xUSD by locking their TGX as collateral through DeFi-Xsmart contract. xUSD is a synthetic asset that tracks the actual asset price.", + "explorer": "https://etherscan.io/token/0x5c71bf122b5e1eec7fb2cf029d6fab7b224bd94f", + "type": "ERC20", + "symbol": "xUSD", + "decimals": 18, + "status": "active", + "id": "0x5C71bF122B5e1eEC7fb2cf029D6fAB7B224BD94F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5C71bF122B5e1eEC7fb2cf029D6fAB7B224BD94F/logo.png b/blockchains/ethereum/assets/0x5C71bF122B5e1eEC7fb2cf029D6fAB7B224BD94F/logo.png new file mode 100644 index 00000000..3edea18a Binary files /dev/null and b/blockchains/ethereum/assets/0x5C71bF122B5e1eEC7fb2cf029D6fAB7B224BD94F/logo.png differ diff --git a/blockchains/ethereum/assets/0x5CC00ccA0692b9b34AF816e5439CDb47D3B63691/info.json b/blockchains/ethereum/assets/0x5CC00ccA0692b9b34AF816e5439CDb47D3B63691/info.json new file mode 100644 index 00000000..a837044e --- /dev/null +++ b/blockchains/ethereum/assets/0x5CC00ccA0692b9b34AF816e5439CDb47D3B63691/info.json @@ -0,0 +1,11 @@ +{ + "name": "WooshCoin", + "symbol": "XWO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.wooshcoin.io/", + "explorer": "https://etherscan.io/token/0x5CC00ccA0692b9b34AF816e5439CDb47D3B63691", + "status": "abandoned", + "id": "0x5CC00ccA0692b9b34AF816e5439CDb47D3B63691" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5CC00ccA0692b9b34AF816e5439CDb47D3B63691/logo.png b/blockchains/ethereum/assets/0x5CC00ccA0692b9b34AF816e5439CDb47D3B63691/logo.png new file mode 100644 index 00000000..d371bab9 Binary files /dev/null and b/blockchains/ethereum/assets/0x5CC00ccA0692b9b34AF816e5439CDb47D3B63691/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Ca381bBfb58f0092df149bD3D243b08B9a8386e/info.json b/blockchains/ethereum/assets/0x5Ca381bBfb58f0092df149bD3D243b08B9a8386e/info.json new file mode 100644 index 00000000..c4a9ea77 --- /dev/null +++ b/blockchains/ethereum/assets/0x5Ca381bBfb58f0092df149bD3D243b08B9a8386e/info.json @@ -0,0 +1,11 @@ +{ + "name": "MXCToken", + "symbol": "MXC", + "type": "ERC20", + "decimals": 18, + "description": "MXC Supernodes provide LPWAN network services to devices around the world.", + "website": "https://www.mxc.org", + "explorer": "https://etherscan.io/token/0x5Ca381bBfb58f0092df149bD3D243b08B9a8386e", + "status": "active", + "id": "0x5Ca381bBfb58f0092df149bD3D243b08B9a8386e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5Ca381bBfb58f0092df149bD3D243b08B9a8386e/logo.png b/blockchains/ethereum/assets/0x5Ca381bBfb58f0092df149bD3D243b08B9a8386e/logo.png new file mode 100644 index 00000000..6f760ab1 Binary files /dev/null and b/blockchains/ethereum/assets/0x5Ca381bBfb58f0092df149bD3D243b08B9a8386e/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Cb888182fBfFdb62C08fb4B5a343914F00FdfeE/info.json b/blockchains/ethereum/assets/0x5Cb888182fBfFdb62C08fb4B5a343914F00FdfeE/info.json new file mode 100644 index 00000000..da57ae3f --- /dev/null +++ b/blockchains/ethereum/assets/0x5Cb888182fBfFdb62C08fb4B5a343914F00FdfeE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moneybrain BiPS", + "symbol": "BiPS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5Cb888182fBfFdb62C08fb4B5a343914F00FdfeE", + "status": "abandoned", + "id": "0x5Cb888182fBfFdb62C08fb4B5a343914F00FdfeE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5Cb888182fBfFdb62C08fb4B5a343914F00FdfeE/logo.png b/blockchains/ethereum/assets/0x5Cb888182fBfFdb62C08fb4B5a343914F00FdfeE/logo.png new file mode 100644 index 00000000..05ce0c0a Binary files /dev/null and b/blockchains/ethereum/assets/0x5Cb888182fBfFdb62C08fb4B5a343914F00FdfeE/logo.png differ diff --git a/blockchains/ethereum/assets/0x5CcC4Ff4b286c1c1Cce05f5194E8c8B01Cb7C80d/info.json b/blockchains/ethereum/assets/0x5CcC4Ff4b286c1c1Cce05f5194E8c8B01Cb7C80d/info.json new file mode 100644 index 00000000..f9215a42 --- /dev/null +++ b/blockchains/ethereum/assets/0x5CcC4Ff4b286c1c1Cce05f5194E8c8B01Cb7C80d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Electronic Trading Unit", + "symbol": "ETU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5CcC4Ff4b286c1c1Cce05f5194E8c8B01Cb7C80d", + "status": "abandoned", + "id": "0x5CcC4Ff4b286c1c1Cce05f5194E8c8B01Cb7C80d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5CcC4Ff4b286c1c1Cce05f5194E8c8B01Cb7C80d/logo.png b/blockchains/ethereum/assets/0x5CcC4Ff4b286c1c1Cce05f5194E8c8B01Cb7C80d/logo.png new file mode 100644 index 00000000..0dffb212 Binary files /dev/null and b/blockchains/ethereum/assets/0x5CcC4Ff4b286c1c1Cce05f5194E8c8B01Cb7C80d/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Ce215d9c37a195DF88e294a06B8396C296B4e15/info.json b/blockchains/ethereum/assets/0x5Ce215d9c37a195DF88e294a06B8396C296B4e15/info.json new file mode 100644 index 00000000..ca495250 --- /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 00000000..d5a152fe Binary files /dev/null and b/blockchains/ethereum/assets/0x5Ce215d9c37a195DF88e294a06B8396C296B4e15/logo.png differ diff --git a/blockchains/ethereum/assets/0x5CeB8c7f189e694B326310694Ac6DF98e5CED66E/info.json b/blockchains/ethereum/assets/0x5CeB8c7f189e694B326310694Ac6DF98e5CED66E/info.json new file mode 100644 index 00000000..e50db5ad --- /dev/null +++ b/blockchains/ethereum/assets/0x5CeB8c7f189e694B326310694Ac6DF98e5CED66E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yattaqi", + "symbol": "YAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5CeB8c7f189e694B326310694Ac6DF98e5CED66E", + "status": "abandoned", + "id": "0x5CeB8c7f189e694B326310694Ac6DF98e5CED66E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5CeB8c7f189e694B326310694Ac6DF98e5CED66E/logo.png b/blockchains/ethereum/assets/0x5CeB8c7f189e694B326310694Ac6DF98e5CED66E/logo.png new file mode 100644 index 00000000..04f25cb0 Binary files /dev/null and b/blockchains/ethereum/assets/0x5CeB8c7f189e694B326310694Ac6DF98e5CED66E/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Cf04716BA20127F1E2297AdDCf4B5035000c9eb/info.json b/blockchains/ethereum/assets/0x5Cf04716BA20127F1E2297AdDCf4B5035000c9eb/info.json new file mode 100644 index 00000000..2b2ae382 --- /dev/null +++ b/blockchains/ethereum/assets/0x5Cf04716BA20127F1E2297AdDCf4B5035000c9eb/info.json @@ -0,0 +1,11 @@ +{ + "name": "NKN", + "symbol": "NKN", + "type": "ERC20", + "decimals": 18, + "description": "NKN, or New Kind of Network, is an open-source protocol for public blockchain-based peer-to-peer Networks to share network bandwidth and Internet connectivity.", + "website": "https://www.nkn.org/", + "explorer": "https://etherscan.io/token/0x5Cf04716BA20127F1E2297AdDCf4B5035000c9eb", + "status": "active", + "id": "0x5Cf04716BA20127F1E2297AdDCf4B5035000c9eb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5Cf04716BA20127F1E2297AdDCf4B5035000c9eb/logo.png b/blockchains/ethereum/assets/0x5Cf04716BA20127F1E2297AdDCf4B5035000c9eb/logo.png new file mode 100644 index 00000000..2b942ab0 Binary files /dev/null and b/blockchains/ethereum/assets/0x5Cf04716BA20127F1E2297AdDCf4B5035000c9eb/logo.png differ diff --git a/blockchains/ethereum/assets/0x5D00d312e171Be5342067c09BaE883f9Bcb2003B/info.json b/blockchains/ethereum/assets/0x5D00d312e171Be5342067c09BaE883f9Bcb2003B/info.json new file mode 100755 index 00000000..ace1d914 --- /dev/null +++ b/blockchains/ethereum/assets/0x5D00d312e171Be5342067c09BaE883f9Bcb2003B/info.json @@ -0,0 +1,17 @@ +{ + "name": "Ethermon", + "website": "https://ethermon.io", + "description": "Decentralized World of Ether Monsters", + "explorer": "https://etherscan.io/token/0x5D00d312e171Be5342067c09BaE883f9Bcb2003B", + "type": "ERC20", + "symbol": "EMONA", + "decimals": 0, + "status": "active", + "id": "0x5D00d312e171Be5342067c09BaE883f9Bcb2003B", + "links": [ + { + "name": "x", + "url": "https://x.com/ethermon_nft" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5D00d312e171Be5342067c09BaE883f9Bcb2003B/logo.png b/blockchains/ethereum/assets/0x5D00d312e171Be5342067c09BaE883f9Bcb2003B/logo.png new file mode 100755 index 00000000..77b632bd Binary files /dev/null and b/blockchains/ethereum/assets/0x5D00d312e171Be5342067c09BaE883f9Bcb2003B/logo.png differ diff --git a/blockchains/ethereum/assets/0x5D0773b82644c28C96813DCF2D58B2b83D785b6d/info.json b/blockchains/ethereum/assets/0x5D0773b82644c28C96813DCF2D58B2b83D785b6d/info.json new file mode 100644 index 00000000..b52d4466 --- /dev/null +++ b/blockchains/ethereum/assets/0x5D0773b82644c28C96813DCF2D58B2b83D785b6d/info.json @@ -0,0 +1,11 @@ +{ + "name": "MIN", + "symbol": "MIN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5D0773b82644c28C96813DCF2D58B2b83D785b6d", + "status": "abandoned", + "id": "0x5D0773b82644c28C96813DCF2D58B2b83D785b6d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5D0773b82644c28C96813DCF2D58B2b83D785b6d/logo.png b/blockchains/ethereum/assets/0x5D0773b82644c28C96813DCF2D58B2b83D785b6d/logo.png new file mode 100644 index 00000000..d185d72e Binary files /dev/null and b/blockchains/ethereum/assets/0x5D0773b82644c28C96813DCF2D58B2b83D785b6d/logo.png differ diff --git a/blockchains/ethereum/assets/0x5D1a9a9B118fF19721e0111f094f2360b6Ef7A2f/info.json b/blockchains/ethereum/assets/0x5D1a9a9B118fF19721e0111f094f2360b6Ef7A2f/info.json new file mode 100644 index 00000000..89f14ecf --- /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 00000000..f960a127 Binary files /dev/null and b/blockchains/ethereum/assets/0x5D1a9a9B118fF19721e0111f094f2360b6Ef7A2f/logo.png differ diff --git a/blockchains/ethereum/assets/0x5D21eF5f25a985380B65c8e943A0082fEDa0Db84/info.json b/blockchains/ethereum/assets/0x5D21eF5f25a985380B65c8e943A0082fEDa0Db84/info.json new file mode 100644 index 00000000..ec6ccae5 --- /dev/null +++ b/blockchains/ethereum/assets/0x5D21eF5f25a985380B65c8e943A0082fEDa0Db84/info.json @@ -0,0 +1,11 @@ +{ + "name": "ethereumcash", + "symbol": "ECASH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.ethereumcash.technology/", + "explorer": "https://etherscan.io/token/0x5D21eF5f25a985380B65c8e943A0082fEDa0Db84", + "status": "abandoned", + "id": "0x5D21eF5f25a985380B65c8e943A0082fEDa0Db84" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5D21eF5f25a985380B65c8e943A0082fEDa0Db84/logo.png b/blockchains/ethereum/assets/0x5D21eF5f25a985380B65c8e943A0082fEDa0Db84/logo.png new file mode 100644 index 00000000..7d2e37fe Binary files /dev/null and b/blockchains/ethereum/assets/0x5D21eF5f25a985380B65c8e943A0082fEDa0Db84/logo.png differ diff --git a/blockchains/ethereum/assets/0x5D4232EAC1EA003a4dB87138585aA5078DeD2b10/info.json b/blockchains/ethereum/assets/0x5D4232EAC1EA003a4dB87138585aA5078DeD2b10/info.json new file mode 100644 index 00000000..856c4611 --- /dev/null +++ b/blockchains/ethereum/assets/0x5D4232EAC1EA003a4dB87138585aA5078DeD2b10/info.json @@ -0,0 +1,11 @@ +{ + "name": "����������", + "symbol": "GCB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5D4232EAC1EA003a4dB87138585aA5078DeD2b10", + "status": "abandoned", + "id": "0x5D4232EAC1EA003a4dB87138585aA5078DeD2b10" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5D4232EAC1EA003a4dB87138585aA5078DeD2b10/logo.png b/blockchains/ethereum/assets/0x5D4232EAC1EA003a4dB87138585aA5078DeD2b10/logo.png new file mode 100755 index 00000000..a55465a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x5D4232EAC1EA003a4dB87138585aA5078DeD2b10/logo.png differ diff --git a/blockchains/ethereum/assets/0x5D4d57cd06Fa7fe99e26fdc481b468f77f05073C/info.json b/blockchains/ethereum/assets/0x5D4d57cd06Fa7fe99e26fdc481b468f77f05073C/info.json new file mode 100644 index 00000000..b0946219 --- /dev/null +++ b/blockchains/ethereum/assets/0x5D4d57cd06Fa7fe99e26fdc481b468f77f05073C/info.json @@ -0,0 +1,18 @@ +{ + "name": "Netkoin", + "website": "https://netkoin.com", + "description": "Netkoin is a crypto rewards platform.", + "explorer": "https://etherscan.io/token/0x5d4d57cd06fa7fe99e26fdc481b468f77f05073c", + "research": "https://coinmarketcap.com/currencies/netkoin/", + "type": "ERC20", + "symbol": "NTK", + "decimals": 18, + "status": "active", + "id": "0x5D4d57cd06Fa7fe99e26fdc481b468f77f05073C", + "links": [ + { + "name": "whitepaper", + "url": "https://www.netkoin.com/wp-content/uploads/2019/09/Netkoin-Whitepaper-version-3_0-1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5D4d57cd06Fa7fe99e26fdc481b468f77f05073C/logo.png b/blockchains/ethereum/assets/0x5D4d57cd06Fa7fe99e26fdc481b468f77f05073C/logo.png new file mode 100755 index 00000000..0e327129 Binary files /dev/null and b/blockchains/ethereum/assets/0x5D4d57cd06Fa7fe99e26fdc481b468f77f05073C/logo.png differ diff --git a/blockchains/ethereum/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json b/blockchains/ethereum/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json new file mode 100644 index 00000000..ba71865d --- /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 00000000..d5946212 Binary files /dev/null and b/blockchains/ethereum/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/logo.png differ diff --git a/blockchains/ethereum/assets/0x5D64D850c8368008aFB39224E92aD0DcEFf3CF38/info.json b/blockchains/ethereum/assets/0x5D64D850c8368008aFB39224E92aD0DcEFf3CF38/info.json new file mode 100644 index 00000000..57ff5430 --- /dev/null +++ b/blockchains/ethereum/assets/0x5D64D850c8368008aFB39224E92aD0DcEFf3CF38/info.json @@ -0,0 +1,11 @@ +{ + "name": "MINDOL", + "symbol": "MIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://mindol.net", + "explorer": "https://etherscan.io/token/0x5D64D850c8368008aFB39224E92aD0DcEFf3CF38", + "status": "abandoned", + "id": "0x5D64D850c8368008aFB39224E92aD0DcEFf3CF38" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5D64D850c8368008aFB39224E92aD0DcEFf3CF38/logo.png b/blockchains/ethereum/assets/0x5D64D850c8368008aFB39224E92aD0DcEFf3CF38/logo.png new file mode 100644 index 00000000..c227c2d8 Binary files /dev/null and b/blockchains/ethereum/assets/0x5D64D850c8368008aFB39224E92aD0DcEFf3CF38/logo.png differ diff --git a/blockchains/ethereum/assets/0x5D762F76b9E91F71cc4F94391BDFe6333dB8519c/info.json b/blockchains/ethereum/assets/0x5D762F76b9E91F71cc4F94391BDFe6333dB8519c/info.json new file mode 100644 index 00000000..5270c13d --- /dev/null +++ b/blockchains/ethereum/assets/0x5D762F76b9E91F71cc4F94391BDFe6333dB8519c/info.json @@ -0,0 +1,11 @@ +{ + "name": "IYF.finance", + "website": "https://iyf.finance", + "description": "iYieldFarm (IYF) is a community-driven yieldfarming project with decentralized arbitrage tools provided.", + "explorer": "https://etherscan.io/token/0x5D762F76b9E91F71cc4F94391BDFe6333dB8519c", + "type": "ERC20", + "symbol": "IYF", + "decimals": 18, + "status": "active", + "id": "0x5D762F76b9E91F71cc4F94391BDFe6333dB8519c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5D762F76b9E91F71cc4F94391BDFe6333dB8519c/logo.png b/blockchains/ethereum/assets/0x5D762F76b9E91F71cc4F94391BDFe6333dB8519c/logo.png new file mode 100644 index 00000000..1ae9a794 Binary files /dev/null and b/blockchains/ethereum/assets/0x5D762F76b9E91F71cc4F94391BDFe6333dB8519c/logo.png differ diff --git a/blockchains/ethereum/assets/0x5D858bcd53E085920620549214a8b27CE2f04670/info.json b/blockchains/ethereum/assets/0x5D858bcd53E085920620549214a8b27CE2f04670/info.json new file mode 100644 index 00000000..f6f2316b --- /dev/null +++ b/blockchains/ethereum/assets/0x5D858bcd53E085920620549214a8b27CE2f04670/info.json @@ -0,0 +1,11 @@ +{ + "name": "POP Network Token", + "symbol": "POP", + "type": "ERC20", + "decimals": 18, + "description": "POP Network is an ecosystem of blockchain and artificial intelligence applications built to power the streaming economy. Components include: Masternode Torrent Network, Superdelegated Proof-of-Stake Blockchain, and Artificial Intelligence.", + "website": "http://thepopnetwork.org/", + "explorer": "https://etherscan.io/token/0x5D858bcd53E085920620549214a8b27CE2f04670", + "status": "active", + "id": "0x5D858bcd53E085920620549214a8b27CE2f04670" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5D858bcd53E085920620549214a8b27CE2f04670/logo.png b/blockchains/ethereum/assets/0x5D858bcd53E085920620549214a8b27CE2f04670/logo.png new file mode 100644 index 00000000..0a1ca5f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x5D858bcd53E085920620549214a8b27CE2f04670/logo.png differ diff --git a/blockchains/ethereum/assets/0x5D8d9F5b96f4438195BE9b99eee6118Ed4304286/info.json b/blockchains/ethereum/assets/0x5D8d9F5b96f4438195BE9b99eee6118Ed4304286/info.json new file mode 100644 index 00000000..fe30a066 --- /dev/null +++ b/blockchains/ethereum/assets/0x5D8d9F5b96f4438195BE9b99eee6118Ed4304286/info.json @@ -0,0 +1,33 @@ +{ + "name": "Old Cover Protocol", + "website": "https://www.coverprotocol.com/", + "description": "COVER Protocol features shield-mining and SAFE2 token will be converted to COVER token.", + "explorer": "https://etherscan.io/token/0x5d8d9f5b96f4438195be9b99eee6118ed4304286", + "type": "ERC20", + "symbol": "COVER", + "decimals": 18, + "status": "active", + "id": "0x5D8d9F5b96f4438195BE9b99eee6118Ed4304286", + "links": [ + { + "name": "github", + "url": "https://github.com/CoverProtocol" + }, + { + "name": "x", + "url": "https://x.com/COVERProtocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cover-protocol/" + }, + { + "name": "medium", + "url": "https://coverprotocol.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cover-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5D8d9F5b96f4438195BE9b99eee6118Ed4304286/logo.png b/blockchains/ethereum/assets/0x5D8d9F5b96f4438195BE9b99eee6118Ed4304286/logo.png new file mode 100644 index 00000000..5b868fff Binary files /dev/null and b/blockchains/ethereum/assets/0x5D8d9F5b96f4438195BE9b99eee6118Ed4304286/logo.png differ diff --git a/blockchains/ethereum/assets/0x5D9B9f6EeaeEBc46FDfA0c1041E929834b15c03A/info.json b/blockchains/ethereum/assets/0x5D9B9f6EeaeEBc46FDfA0c1041E929834b15c03A/info.json new file mode 100644 index 00000000..2888679f --- /dev/null +++ b/blockchains/ethereum/assets/0x5D9B9f6EeaeEBc46FDfA0c1041E929834b15c03A/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitZyon", + "symbol": "ZYON", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5D9B9f6EeaeEBc46FDfA0c1041E929834b15c03A", + "status": "abandoned", + "id": "0x5D9B9f6EeaeEBc46FDfA0c1041E929834b15c03A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5D9B9f6EeaeEBc46FDfA0c1041E929834b15c03A/logo.png b/blockchains/ethereum/assets/0x5D9B9f6EeaeEBc46FDfA0c1041E929834b15c03A/logo.png new file mode 100644 index 00000000..a57be929 Binary files /dev/null and b/blockchains/ethereum/assets/0x5D9B9f6EeaeEBc46FDfA0c1041E929834b15c03A/logo.png differ diff --git a/blockchains/ethereum/assets/0x5DBAC24e98E2a4f43ADC0DC82Af403fca063Ce2c/info.json b/blockchains/ethereum/assets/0x5DBAC24e98E2a4f43ADC0DC82Af403fca063Ce2c/info.json new file mode 100644 index 00000000..1911a0dc --- /dev/null +++ b/blockchains/ethereum/assets/0x5DBAC24e98E2a4f43ADC0DC82Af403fca063Ce2c/info.json @@ -0,0 +1,11 @@ +{ + "name": "EngagementToken", + "symbol": "EGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5DBAC24e98E2a4f43ADC0DC82Af403fca063Ce2c", + "status": "abandoned", + "id": "0x5DBAC24e98E2a4f43ADC0DC82Af403fca063Ce2c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5DBAC24e98E2a4f43ADC0DC82Af403fca063Ce2c/logo.png b/blockchains/ethereum/assets/0x5DBAC24e98E2a4f43ADC0DC82Af403fca063Ce2c/logo.png new file mode 100644 index 00000000..84edc77d Binary files /dev/null and b/blockchains/ethereum/assets/0x5DBAC24e98E2a4f43ADC0DC82Af403fca063Ce2c/logo.png differ diff --git a/blockchains/ethereum/assets/0x5DBd23a64EE5b80DabDE8E0b8474f901b4D0b5AE/info.json b/blockchains/ethereum/assets/0x5DBd23a64EE5b80DabDE8E0b8474f901b4D0b5AE/info.json new file mode 100644 index 00000000..1a069891 --- /dev/null +++ b/blockchains/ethereum/assets/0x5DBd23a64EE5b80DabDE8E0b8474f901b4D0b5AE/info.json @@ -0,0 +1,11 @@ +{ + "name": "BEX", + "symbol": "BEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5DBd23a64EE5b80DabDE8E0b8474f901b4D0b5AE", + "status": "abandoned", + "id": "0x5DBd23a64EE5b80DabDE8E0b8474f901b4D0b5AE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5DBd23a64EE5b80DabDE8E0b8474f901b4D0b5AE/logo.png b/blockchains/ethereum/assets/0x5DBd23a64EE5b80DabDE8E0b8474f901b4D0b5AE/logo.png new file mode 100644 index 00000000..b53e4d79 Binary files /dev/null and b/blockchains/ethereum/assets/0x5DBd23a64EE5b80DabDE8E0b8474f901b4D0b5AE/logo.png differ diff --git a/blockchains/ethereum/assets/0x5DE8ab7E27f6E7A1fFf3E5B337584Aa43961BEeF/info.json b/blockchains/ethereum/assets/0x5DE8ab7E27f6E7A1fFf3E5B337584Aa43961BEeF/info.json new file mode 100644 index 00000000..ad915c31 --- /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 00000000..d193ae87 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 new file mode 100644 index 00000000..8861bedc --- /dev/null +++ b/blockchains/ethereum/assets/0x5Dc02Ea99285E17656b8350722694c35154DB1E8/info.json @@ -0,0 +1,17 @@ +{ + "name": "BOND", + "website": "https://bonded.finance/", + "description": "The Bonded platform was created to incubate and deploy experimental, high-yield, smart-contract driven, financial instruments that push the bounds of open finance.", + "explorer": "https://etherscan.io/token/0x5Dc02Ea99285E17656b8350722694c35154DB1E8", + "type": "ERC20", + "symbol": "BOND", + "decimals": 8, + "status": "active", + "id": "0x5Dc02Ea99285E17656b8350722694c35154DB1E8", + "links": [ + { + "name": "x", + "url": "https://x.com/Bondedfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5Dc02Ea99285E17656b8350722694c35154DB1E8/logo.png b/blockchains/ethereum/assets/0x5Dc02Ea99285E17656b8350722694c35154DB1E8/logo.png new file mode 100644 index 00000000..d12005ec Binary files /dev/null and b/blockchains/ethereum/assets/0x5Dc02Ea99285E17656b8350722694c35154DB1E8/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Dc74029509752F4ed9A609C2bb52216275E4c1D/info.json b/blockchains/ethereum/assets/0x5Dc74029509752F4ed9A609C2bb52216275E4c1D/info.json new file mode 100644 index 00000000..8e5c3033 --- /dev/null +++ b/blockchains/ethereum/assets/0x5Dc74029509752F4ed9A609C2bb52216275E4c1D/info.json @@ -0,0 +1,11 @@ +{ + "name": "GameCity", + "symbol": "GMCI", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://gamecity-muezza.com/", + "explorer": "https://etherscan.io/token/0x5Dc74029509752F4ed9A609C2bb52216275E4c1D", + "status": "abandoned", + "id": "0x5Dc74029509752F4ed9A609C2bb52216275E4c1D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5Dc74029509752F4ed9A609C2bb52216275E4c1D/logo.png b/blockchains/ethereum/assets/0x5Dc74029509752F4ed9A609C2bb52216275E4c1D/logo.png new file mode 100644 index 00000000..2ccecafe Binary files /dev/null and b/blockchains/ethereum/assets/0x5Dc74029509752F4ed9A609C2bb52216275E4c1D/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Dff89a2caa4D76bc286F74D67Bd718eb834da61/info.json b/blockchains/ethereum/assets/0x5Dff89a2caa4D76bc286F74D67Bd718eb834da61/info.json new file mode 100644 index 00000000..82382b7a --- /dev/null +++ b/blockchains/ethereum/assets/0x5Dff89a2caa4D76bc286F74D67Bd718eb834da61/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptFillCoin", + "symbol": "CFC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5Dff89a2caa4D76bc286F74D67Bd718eb834da61", + "status": "abandoned", + "id": "0x5Dff89a2caa4D76bc286F74D67Bd718eb834da61" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5Dff89a2caa4D76bc286F74D67Bd718eb834da61/logo.png b/blockchains/ethereum/assets/0x5Dff89a2caa4D76bc286F74D67Bd718eb834da61/logo.png new file mode 100755 index 00000000..0c35fccc Binary files /dev/null and b/blockchains/ethereum/assets/0x5Dff89a2caa4D76bc286F74D67Bd718eb834da61/logo.png differ diff --git a/blockchains/ethereum/assets/0x5E09feb2136f92fd7Cd80cD97A284D3124376ab2/info.json b/blockchains/ethereum/assets/0x5E09feb2136f92fd7Cd80cD97A284D3124376ab2/info.json new file mode 100644 index 00000000..ae91f158 --- /dev/null +++ b/blockchains/ethereum/assets/0x5E09feb2136f92fd7Cd80cD97A284D3124376ab2/info.json @@ -0,0 +1,11 @@ +{ + "name": "ARcoin", + "symbol": "ARCI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5E09feb2136f92fd7Cd80cD97A284D3124376ab2", + "status": "abandoned", + "id": "0x5E09feb2136f92fd7Cd80cD97A284D3124376ab2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5E09feb2136f92fd7Cd80cD97A284D3124376ab2/logo.png b/blockchains/ethereum/assets/0x5E09feb2136f92fd7Cd80cD97A284D3124376ab2/logo.png new file mode 100644 index 00000000..b0a74cb4 Binary files /dev/null and b/blockchains/ethereum/assets/0x5E09feb2136f92fd7Cd80cD97A284D3124376ab2/logo.png differ diff --git a/blockchains/ethereum/assets/0x5E3002dff591C5e75Bb9DEdae268049742E6b13a/info.json b/blockchains/ethereum/assets/0x5E3002dff591C5e75Bb9DEdae268049742E6b13a/info.json new file mode 100644 index 00000000..7c2c7a90 --- /dev/null +++ b/blockchains/ethereum/assets/0x5E3002dff591C5e75Bb9DEdae268049742E6b13a/info.json @@ -0,0 +1,11 @@ +{ + "name": "TudaToken", + "symbol": "\"\"", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.tutorsdiary.io", + "explorer": "https://etherscan.io/token/0x5E3002dff591C5e75Bb9DEdae268049742E6b13a", + "status": "abandoned", + "id": "0x5E3002dff591C5e75Bb9DEdae268049742E6b13a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5E3002dff591C5e75Bb9DEdae268049742E6b13a/logo.png b/blockchains/ethereum/assets/0x5E3002dff591C5e75Bb9DEdae268049742E6b13a/logo.png new file mode 100644 index 00000000..febb6e33 Binary files /dev/null and b/blockchains/ethereum/assets/0x5E3002dff591C5e75Bb9DEdae268049742E6b13a/logo.png differ diff --git a/blockchains/ethereum/assets/0x5E3D723c0CB363127D4a6ab5D43d504A17a5c05D/info.json b/blockchains/ethereum/assets/0x5E3D723c0CB363127D4a6ab5D43d504A17a5c05D/info.json new file mode 100644 index 00000000..8b030e26 --- /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 00000000..6c803512 Binary files /dev/null and b/blockchains/ethereum/assets/0x5E3D723c0CB363127D4a6ab5D43d504A17a5c05D/logo.png differ diff --git a/blockchains/ethereum/assets/0x5E42c9A733C12AD90cdfC0bC863D1D5Dca1FFBa2/info.json b/blockchains/ethereum/assets/0x5E42c9A733C12AD90cdfC0bC863D1D5Dca1FFBa2/info.json new file mode 100644 index 00000000..e8bfa6af --- /dev/null +++ b/blockchains/ethereum/assets/0x5E42c9A733C12AD90cdfC0bC863D1D5Dca1FFBa2/info.json @@ -0,0 +1,11 @@ +{ + "name": "XCBytes", + "symbol": "XCB", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5E42c9A733C12AD90cdfC0bC863D1D5Dca1FFBa2", + "status": "abandoned", + "id": "0x5E42c9A733C12AD90cdfC0bC863D1D5Dca1FFBa2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5E42c9A733C12AD90cdfC0bC863D1D5Dca1FFBa2/logo.png b/blockchains/ethereum/assets/0x5E42c9A733C12AD90cdfC0bC863D1D5Dca1FFBa2/logo.png new file mode 100644 index 00000000..32a0d094 Binary files /dev/null and b/blockchains/ethereum/assets/0x5E42c9A733C12AD90cdfC0bC863D1D5Dca1FFBa2/logo.png differ diff --git a/blockchains/ethereum/assets/0x5E4334fD53B95dF63993c805066d693bb8CE5dFc/info.json b/blockchains/ethereum/assets/0x5E4334fD53B95dF63993c805066d693bb8CE5dFc/info.json new file mode 100644 index 00000000..89cc5a7a --- /dev/null +++ b/blockchains/ethereum/assets/0x5E4334fD53B95dF63993c805066d693bb8CE5dFc/info.json @@ -0,0 +1,11 @@ +{ + "name": "CayTreX Token", + "symbol": "CTXT", + "type": "ERC20", + "decimals": 18, + "description": "Crypto Exchange. Caytrex offers one of the most liquid order book in the world, allowing users to easily exchange Bitcoin, Ethereum, and many other.", + "website": "https://www.caytrex.com/", + "explorer": "https://etherscan.io/token/0x5E4334fD53B95dF63993c805066d693bb8CE5dFc", + "status": "active", + "id": "0x5E4334fD53B95dF63993c805066d693bb8CE5dFc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5E4334fD53B95dF63993c805066d693bb8CE5dFc/logo.png b/blockchains/ethereum/assets/0x5E4334fD53B95dF63993c805066d693bb8CE5dFc/logo.png new file mode 100644 index 00000000..9afaf458 Binary files /dev/null and b/blockchains/ethereum/assets/0x5E4334fD53B95dF63993c805066d693bb8CE5dFc/logo.png differ diff --git a/blockchains/ethereum/assets/0x5E6Dd064B32EFA783d5745f2f3a994004956b67E/info.json b/blockchains/ethereum/assets/0x5E6Dd064B32EFA783d5745f2f3a994004956b67E/info.json new file mode 100644 index 00000000..b9c200a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x5E6Dd064B32EFA783d5745f2f3a994004956b67E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Accommodation", + "symbol": "ACCO", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5E6Dd064B32EFA783d5745f2f3a994004956b67E", + "status": "abandoned", + "id": "0x5E6Dd064B32EFA783d5745f2f3a994004956b67E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5E6Dd064B32EFA783d5745f2f3a994004956b67E/logo.png b/blockchains/ethereum/assets/0x5E6Dd064B32EFA783d5745f2f3a994004956b67E/logo.png new file mode 100644 index 00000000..2077f3cd Binary files /dev/null and b/blockchains/ethereum/assets/0x5E6Dd064B32EFA783d5745f2f3a994004956b67E/logo.png differ diff --git a/blockchains/ethereum/assets/0x5E6b6d9aBAd9093fdc861Ea1600eBa1b355Cd940/info.json b/blockchains/ethereum/assets/0x5E6b6d9aBAd9093fdc861Ea1600eBa1b355Cd940/info.json new file mode 100644 index 00000000..05298051 --- /dev/null +++ b/blockchains/ethereum/assets/0x5E6b6d9aBAd9093fdc861Ea1600eBa1b355Cd940/info.json @@ -0,0 +1,11 @@ +{ + "name": "IOT on Chain", + "symbol": "ITC", + "type": "ERC20", + "decimals": 18, + "description": "A secure IoT light operating system driven by blockchain technology.", + "website": "https://iotchain.io/", + "explorer": "https://etherscan.io/token/0x5E6b6d9aBAd9093fdc861Ea1600eBa1b355Cd940", + "status": "active", + "id": "0x5E6b6d9aBAd9093fdc861Ea1600eBa1b355Cd940" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5E6b6d9aBAd9093fdc861Ea1600eBa1b355Cd940/logo.png b/blockchains/ethereum/assets/0x5E6b6d9aBAd9093fdc861Ea1600eBa1b355Cd940/logo.png new file mode 100755 index 00000000..ca175f58 Binary files /dev/null and b/blockchains/ethereum/assets/0x5E6b6d9aBAd9093fdc861Ea1600eBa1b355Cd940/logo.png differ diff --git a/blockchains/ethereum/assets/0x5E7Ebea68ab05198F771d77a875480314f1d0aae/info.json b/blockchains/ethereum/assets/0x5E7Ebea68ab05198F771d77a875480314f1d0aae/info.json new file mode 100644 index 00000000..3e50fbef --- /dev/null +++ b/blockchains/ethereum/assets/0x5E7Ebea68ab05198F771d77a875480314f1d0aae/info.json @@ -0,0 +1,11 @@ +{ + "name": "DABANKING", + "symbol": "DAB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5E7Ebea68ab05198F771d77a875480314f1d0aae", + "status": "abandoned", + "id": "0x5E7Ebea68ab05198F771d77a875480314f1d0aae" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5E7Ebea68ab05198F771d77a875480314f1d0aae/logo.png b/blockchains/ethereum/assets/0x5E7Ebea68ab05198F771d77a875480314f1d0aae/logo.png new file mode 100644 index 00000000..0f180c51 Binary files /dev/null and b/blockchains/ethereum/assets/0x5E7Ebea68ab05198F771d77a875480314f1d0aae/logo.png differ diff --git a/blockchains/ethereum/assets/0x5EB40F52c6cA784036f1496CfB1495Ba06579B8A/info.json b/blockchains/ethereum/assets/0x5EB40F52c6cA784036f1496CfB1495Ba06579B8A/info.json new file mode 100644 index 00000000..c2ef029b --- /dev/null +++ b/blockchains/ethereum/assets/0x5EB40F52c6cA784036f1496CfB1495Ba06579B8A/info.json @@ -0,0 +1,11 @@ +{ + "name": "OwnerToken", + "symbol": "OWN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5EB40F52c6cA784036f1496CfB1495Ba06579B8A", + "status": "abandoned", + "id": "0x5EB40F52c6cA784036f1496CfB1495Ba06579B8A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5EB40F52c6cA784036f1496CfB1495Ba06579B8A/logo.png b/blockchains/ethereum/assets/0x5EB40F52c6cA784036f1496CfB1495Ba06579B8A/logo.png new file mode 100755 index 00000000..6f1c8a1b Binary files /dev/null and b/blockchains/ethereum/assets/0x5EB40F52c6cA784036f1496CfB1495Ba06579B8A/logo.png differ diff --git a/blockchains/ethereum/assets/0x5EB87cAA0105a63aa87A36C7Bd2573Bd13E84faE/info.json b/blockchains/ethereum/assets/0x5EB87cAA0105a63aa87A36C7Bd2573Bd13E84faE/info.json new file mode 100644 index 00000000..f42463c6 --- /dev/null +++ b/blockchains/ethereum/assets/0x5EB87cAA0105a63aa87A36C7Bd2573Bd13E84faE/info.json @@ -0,0 +1,11 @@ +{ + "name": "BQT", + "symbol": "BQT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.bqi.com/cn/", + "explorer": "https://etherscan.io/token/0x5EB87cAA0105a63aa87A36C7Bd2573Bd13E84faE", + "status": "abandoned", + "id": "0x5EB87cAA0105a63aa87A36C7Bd2573Bd13E84faE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5EB87cAA0105a63aa87A36C7Bd2573Bd13E84faE/logo.png b/blockchains/ethereum/assets/0x5EB87cAA0105a63aa87A36C7Bd2573Bd13E84faE/logo.png new file mode 100644 index 00000000..89b2c4f3 Binary files /dev/null and b/blockchains/ethereum/assets/0x5EB87cAA0105a63aa87A36C7Bd2573Bd13E84faE/logo.png differ diff --git a/blockchains/ethereum/assets/0x5EF42C9eFFa0Ab4a6fAEB101CD328baA53Fa2268/info.json b/blockchains/ethereum/assets/0x5EF42C9eFFa0Ab4a6fAEB101CD328baA53Fa2268/info.json new file mode 100644 index 00000000..36408e2d --- /dev/null +++ b/blockchains/ethereum/assets/0x5EF42C9eFFa0Ab4a6fAEB101CD328baA53Fa2268/info.json @@ -0,0 +1,11 @@ +{ + "name": "KTLCOIN", + "symbol": "KTL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5EF42C9eFFa0Ab4a6fAEB101CD328baA53Fa2268", + "status": "abandoned", + "id": "0x5EF42C9eFFa0Ab4a6fAEB101CD328baA53Fa2268" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5EF42C9eFFa0Ab4a6fAEB101CD328baA53Fa2268/logo.png b/blockchains/ethereum/assets/0x5EF42C9eFFa0Ab4a6fAEB101CD328baA53Fa2268/logo.png new file mode 100644 index 00000000..b8aab599 Binary files /dev/null and b/blockchains/ethereum/assets/0x5EF42C9eFFa0Ab4a6fAEB101CD328baA53Fa2268/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Ea29CcE6E375a14A043C2D88DfB87f6f825Aa9a/info.json b/blockchains/ethereum/assets/0x5Ea29CcE6E375a14A043C2D88DfB87f6f825Aa9a/info.json new file mode 100644 index 00000000..169958d1 --- /dev/null +++ b/blockchains/ethereum/assets/0x5Ea29CcE6E375a14A043C2D88DfB87f6f825Aa9a/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C573719", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5Ea29CcE6E375a14A043C2D88DfB87f6f825Aa9a", + "status": "spam", + "id": "0x5Ea29CcE6E375a14A043C2D88DfB87f6f825Aa9a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5Ea29CcE6E375a14A043C2D88DfB87f6f825Aa9a/logo.png b/blockchains/ethereum/assets/0x5Ea29CcE6E375a14A043C2D88DfB87f6f825Aa9a/logo.png new file mode 100644 index 00000000..1ca7d209 Binary files /dev/null and b/blockchains/ethereum/assets/0x5Ea29CcE6E375a14A043C2D88DfB87f6f825Aa9a/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Eaa69B29f99C84Fe5dE8200340b4e9b4Ab38EaC/info.json b/blockchains/ethereum/assets/0x5Eaa69B29f99C84Fe5dE8200340b4e9b4Ab38EaC/info.json new file mode 100644 index 00000000..85f510fc --- /dev/null +++ b/blockchains/ethereum/assets/0x5Eaa69B29f99C84Fe5dE8200340b4e9b4Ab38EaC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Raze Network Token", + "symbol": "RAZE", + "type": "ERC20", + "decimals": 18, + "description": "Raze Network is a Substrate-based Cross-chain Privacy Protocol for the Polkadot Ecosystem.", + "website": "https://raze.network/", + "explorer": "https://etherscan.io/token/0x5Eaa69B29f99C84Fe5dE8200340b4e9b4Ab38EaC", + "status": "active", + "id": "0x5Eaa69B29f99C84Fe5dE8200340b4e9b4Ab38EaC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5Eaa69B29f99C84Fe5dE8200340b4e9b4Ab38EaC/logo.png b/blockchains/ethereum/assets/0x5Eaa69B29f99C84Fe5dE8200340b4e9b4Ab38EaC/logo.png new file mode 100644 index 00000000..0da3545c Binary files /dev/null and b/blockchains/ethereum/assets/0x5Eaa69B29f99C84Fe5dE8200340b4e9b4Ab38EaC/logo.png differ diff --git a/blockchains/ethereum/assets/0x5EdC1a266E8b2c5E8086d373725dF0690af7e3Ea/info.json b/blockchains/ethereum/assets/0x5EdC1a266E8b2c5E8086d373725dF0690af7e3Ea/info.json new file mode 100644 index 00000000..c2a94120 --- /dev/null +++ b/blockchains/ethereum/assets/0x5EdC1a266E8b2c5E8086d373725dF0690af7e3Ea/info.json @@ -0,0 +1,11 @@ +{ + "name": "YottaCoin", + "symbol": "YTA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.yottachain.io/", + "explorer": "https://etherscan.io/token/0x5EdC1a266E8b2c5E8086d373725dF0690af7e3Ea", + "status": "abandoned", + "id": "0x5EdC1a266E8b2c5E8086d373725dF0690af7e3Ea" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5EdC1a266E8b2c5E8086d373725dF0690af7e3Ea/logo.png b/blockchains/ethereum/assets/0x5EdC1a266E8b2c5E8086d373725dF0690af7e3Ea/logo.png new file mode 100644 index 00000000..6299373d Binary files /dev/null and b/blockchains/ethereum/assets/0x5EdC1a266E8b2c5E8086d373725dF0690af7e3Ea/logo.png differ diff --git a/blockchains/ethereum/assets/0x5F08Dcb63edD9E2553e4C363a78b88392Df94B2A/info.json b/blockchains/ethereum/assets/0x5F08Dcb63edD9E2553e4C363a78b88392Df94B2A/info.json new file mode 100644 index 00000000..9bd512ba --- /dev/null +++ b/blockchains/ethereum/assets/0x5F08Dcb63edD9E2553e4C363a78b88392Df94B2A/info.json @@ -0,0 +1,11 @@ +{ + "name": "RPS Coin", + "symbol": "RPSC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5F08Dcb63edD9E2553e4C363a78b88392Df94B2A", + "status": "abandoned", + "id": "0x5F08Dcb63edD9E2553e4C363a78b88392Df94B2A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5F08Dcb63edD9E2553e4C363a78b88392Df94B2A/logo.png b/blockchains/ethereum/assets/0x5F08Dcb63edD9E2553e4C363a78b88392Df94B2A/logo.png new file mode 100644 index 00000000..d7277a75 Binary files /dev/null and b/blockchains/ethereum/assets/0x5F08Dcb63edD9E2553e4C363a78b88392Df94B2A/logo.png differ diff --git a/blockchains/ethereum/assets/0x5F236F062f16A9B19819c535127398dF9a01D762/info.json b/blockchains/ethereum/assets/0x5F236F062f16A9B19819c535127398dF9a01D762/info.json new file mode 100644 index 00000000..c80de3bb --- /dev/null +++ b/blockchains/ethereum/assets/0x5F236F062f16A9B19819c535127398dF9a01D762/info.json @@ -0,0 +1,11 @@ +{ + "name": "IPUX Token", + "symbol": "IPUX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ipux.io/", + "explorer": "https://etherscan.io/token/0x5F236F062f16A9B19819c535127398dF9a01D762", + "status": "abandoned", + "id": "0x5F236F062f16A9B19819c535127398dF9a01D762" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5F236F062f16A9B19819c535127398dF9a01D762/logo.png b/blockchains/ethereum/assets/0x5F236F062f16A9B19819c535127398dF9a01D762/logo.png new file mode 100644 index 00000000..7c5e4069 Binary files /dev/null and b/blockchains/ethereum/assets/0x5F236F062f16A9B19819c535127398dF9a01D762/logo.png differ diff --git a/blockchains/ethereum/assets/0x5F33d158CA7275848F70A3f149b421190DF85B32/info.json b/blockchains/ethereum/assets/0x5F33d158CA7275848F70A3f149b421190DF85B32/info.json new file mode 100644 index 00000000..67aed1a6 --- /dev/null +++ b/blockchains/ethereum/assets/0x5F33d158CA7275848F70A3f149b421190DF85B32/info.json @@ -0,0 +1,11 @@ +{ + "name": "PdxToken", + "symbol": "PDX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://pdx.link", + "explorer": "https://etherscan.io/token/0x5F33d158CA7275848F70A3f149b421190DF85B32", + "status": "abandoned", + "id": "0x5F33d158CA7275848F70A3f149b421190DF85B32" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5F33d158CA7275848F70A3f149b421190DF85B32/logo.png b/blockchains/ethereum/assets/0x5F33d158CA7275848F70A3f149b421190DF85B32/logo.png new file mode 100644 index 00000000..b45968d8 Binary files /dev/null and b/blockchains/ethereum/assets/0x5F33d158CA7275848F70A3f149b421190DF85B32/logo.png differ diff --git a/blockchains/ethereum/assets/0x5F401A460FC931a7E6D4141188501F3B91ed1A95/info.json b/blockchains/ethereum/assets/0x5F401A460FC931a7E6D4141188501F3B91ed1A95/info.json new file mode 100644 index 00000000..905b6c1e --- /dev/null +++ b/blockchains/ethereum/assets/0x5F401A460FC931a7E6D4141188501F3B91ed1A95/info.json @@ -0,0 +1,11 @@ +{ + "name": "GRAND", + "symbol": "G", + "type": "ERC20", + "decimals": 15, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5F401A460FC931a7E6D4141188501F3B91ed1A95", + "status": "abandoned", + "id": "0x5F401A460FC931a7E6D4141188501F3B91ed1A95" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5F401A460FC931a7E6D4141188501F3B91ed1A95/logo.png b/blockchains/ethereum/assets/0x5F401A460FC931a7E6D4141188501F3B91ed1A95/logo.png new file mode 100755 index 00000000..f4c35491 Binary files /dev/null and b/blockchains/ethereum/assets/0x5F401A460FC931a7E6D4141188501F3B91ed1A95/logo.png differ diff --git a/blockchains/ethereum/assets/0x5F53f7A8075614b699Baad0bC2c899f4bAd8FBBF/info.json b/blockchains/ethereum/assets/0x5F53f7A8075614b699Baad0bC2c899f4bAd8FBBF/info.json new file mode 100644 index 00000000..1c2feac9 --- /dev/null +++ b/blockchains/ethereum/assets/0x5F53f7A8075614b699Baad0bC2c899f4bAd8FBBF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rebellious", + "symbol": "REBL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5F53f7A8075614b699Baad0bC2c899f4bAd8FBBF", + "status": "abandoned", + "id": "0x5F53f7A8075614b699Baad0bC2c899f4bAd8FBBF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5F53f7A8075614b699Baad0bC2c899f4bAd8FBBF/logo.png b/blockchains/ethereum/assets/0x5F53f7A8075614b699Baad0bC2c899f4bAd8FBBF/logo.png new file mode 100644 index 00000000..24dab192 Binary files /dev/null and b/blockchains/ethereum/assets/0x5F53f7A8075614b699Baad0bC2c899f4bAd8FBBF/logo.png differ diff --git a/blockchains/ethereum/assets/0x5F632f77a8077170Edcd8FADdADF06384CdC0e93/info.json b/blockchains/ethereum/assets/0x5F632f77a8077170Edcd8FADdADF06384CdC0e93/info.json new file mode 100644 index 00000000..31d1f9dd --- /dev/null +++ b/blockchains/ethereum/assets/0x5F632f77a8077170Edcd8FADdADF06384CdC0e93/info.json @@ -0,0 +1,11 @@ +{ + "name": "HRQ Token", + "symbol": "HRQ", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5F632f77a8077170Edcd8FADdADF06384CdC0e93", + "status": "abandoned", + "id": "0x5F632f77a8077170Edcd8FADdADF06384CdC0e93" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5F632f77a8077170Edcd8FADdADF06384CdC0e93/logo.png b/blockchains/ethereum/assets/0x5F632f77a8077170Edcd8FADdADF06384CdC0e93/logo.png new file mode 100644 index 00000000..5e5ed07b Binary files /dev/null and b/blockchains/ethereum/assets/0x5F632f77a8077170Edcd8FADdADF06384CdC0e93/logo.png differ diff --git a/blockchains/ethereum/assets/0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0/info.json b/blockchains/ethereum/assets/0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0/info.json new file mode 100644 index 00000000..b2fd82cf --- /dev/null +++ b/blockchains/ethereum/assets/0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0/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://etherscan.io/token/0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0", + "type": "ERC20", + "symbol": "DEXTF", + "decimals": 18, + "status": "active", + "id": "0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0", + "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/ethereum/assets/0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0/logo.png b/blockchains/ethereum/assets/0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0/logo.png new file mode 100644 index 00000000..bc59e0c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0/logo.png differ diff --git a/blockchains/ethereum/assets/0x5F85c60187aB233Ca6e750731D15e7eFd061fBdE/info.json b/blockchains/ethereum/assets/0x5F85c60187aB233Ca6e750731D15e7eFd061fBdE/info.json new file mode 100644 index 00000000..0b6d8c0a --- /dev/null +++ b/blockchains/ethereum/assets/0x5F85c60187aB233Ca6e750731D15e7eFd061fBdE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Poseidon", + "symbol": "PSDN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5F85c60187aB233Ca6e750731D15e7eFd061fBdE", + "status": "abandoned", + "id": "0x5F85c60187aB233Ca6e750731D15e7eFd061fBdE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5F85c60187aB233Ca6e750731D15e7eFd061fBdE/logo.png b/blockchains/ethereum/assets/0x5F85c60187aB233Ca6e750731D15e7eFd061fBdE/logo.png new file mode 100644 index 00000000..0bbd5417 Binary files /dev/null and b/blockchains/ethereum/assets/0x5F85c60187aB233Ca6e750731D15e7eFd061fBdE/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Fa8F6890EfE30E8aA47C5614E510Dc34AC8A89c/info.json b/blockchains/ethereum/assets/0x5Fa8F6890EfE30E8aA47C5614E510Dc34AC8A89c/info.json new file mode 100644 index 00000000..c5acfaed --- /dev/null +++ b/blockchains/ethereum/assets/0x5Fa8F6890EfE30E8aA47C5614E510Dc34AC8A89c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ururu", + "symbol": "URT", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5Fa8F6890EfE30E8aA47C5614E510Dc34AC8A89c", + "status": "abandoned", + "id": "0x5Fa8F6890EfE30E8aA47C5614E510Dc34AC8A89c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5Fa8F6890EfE30E8aA47C5614E510Dc34AC8A89c/logo.png b/blockchains/ethereum/assets/0x5Fa8F6890EfE30E8aA47C5614E510Dc34AC8A89c/logo.png new file mode 100755 index 00000000..448ef6e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x5Fa8F6890EfE30E8aA47C5614E510Dc34AC8A89c/logo.png differ diff --git a/blockchains/ethereum/assets/0x5Fc6DE61258e63706543bb57619b99cC0E5a5A1F/info.json b/blockchains/ethereum/assets/0x5Fc6DE61258e63706543bb57619b99cC0E5a5A1F/info.json new file mode 100644 index 00000000..ecc754cc --- /dev/null +++ b/blockchains/ethereum/assets/0x5Fc6DE61258e63706543bb57619b99cC0E5a5A1F/info.json @@ -0,0 +1,11 @@ +{ + "name": "WanCoin", + "type": "ERC20", + "symbol": "WAN", + "decimals": 18, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0x5fc6de61258e63706543bb57619b99cc0e5a5a1f", + "status": "active", + "id": "0x5Fc6DE61258e63706543bb57619b99cC0E5a5A1F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5Fc6DE61258e63706543bb57619b99cC0E5a5A1F/logo.png b/blockchains/ethereum/assets/0x5Fc6DE61258e63706543bb57619b99cC0E5a5A1F/logo.png new file mode 100644 index 00000000..4dbcc0e2 Binary files /dev/null and b/blockchains/ethereum/assets/0x5Fc6DE61258e63706543bb57619b99cC0E5a5A1F/logo.png differ diff --git a/blockchains/ethereum/assets/0x5a011bC3B10191782DFA67806f8864bD5cF9d3ae/info.json b/blockchains/ethereum/assets/0x5a011bC3B10191782DFA67806f8864bD5cF9d3ae/info.json new file mode 100644 index 00000000..cf0f077e --- /dev/null +++ b/blockchains/ethereum/assets/0x5a011bC3B10191782DFA67806f8864bD5cF9d3ae/info.json @@ -0,0 +1,11 @@ +{ + "name": "SocialWorld", + "symbol": "SWD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5a011bC3B10191782DFA67806f8864bD5cF9d3ae", + "status": "abandoned", + "id": "0x5a011bC3B10191782DFA67806f8864bD5cF9d3ae" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5a011bC3B10191782DFA67806f8864bD5cF9d3ae/logo.png b/blockchains/ethereum/assets/0x5a011bC3B10191782DFA67806f8864bD5cF9d3ae/logo.png new file mode 100644 index 00000000..d952192e Binary files /dev/null and b/blockchains/ethereum/assets/0x5a011bC3B10191782DFA67806f8864bD5cF9d3ae/logo.png differ diff --git a/blockchains/ethereum/assets/0x5a3c9A1725AA82690ee0959c89abE96fD1b527ee/info.json b/blockchains/ethereum/assets/0x5a3c9A1725AA82690ee0959c89abE96fD1b527ee/info.json new file mode 100644 index 00000000..433dee3c --- /dev/null +++ b/blockchains/ethereum/assets/0x5a3c9A1725AA82690ee0959c89abE96fD1b527ee/info.json @@ -0,0 +1,11 @@ +{ + "name": "PiedPiperCoin", + "symbol": "PPI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5a3c9A1725AA82690ee0959c89abE96fD1b527ee", + "status": "abandoned", + "id": "0x5a3c9A1725AA82690ee0959c89abE96fD1b527ee" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5a3c9A1725AA82690ee0959c89abE96fD1b527ee/logo.png b/blockchains/ethereum/assets/0x5a3c9A1725AA82690ee0959c89abE96fD1b527ee/logo.png new file mode 100644 index 00000000..2e429417 Binary files /dev/null and b/blockchains/ethereum/assets/0x5a3c9A1725AA82690ee0959c89abE96fD1b527ee/logo.png differ diff --git a/blockchains/ethereum/assets/0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5/info.json b/blockchains/ethereum/assets/0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5/info.json new file mode 100644 index 00000000..cdac7cf3 --- /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 00000000..a6b1fbdd Binary files /dev/null and b/blockchains/ethereum/assets/0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5/logo.png differ diff --git a/blockchains/ethereum/assets/0x5a4B14aea23A605aBc463f04a6B8Aaf52Dd3e7C6/info.json b/blockchains/ethereum/assets/0x5a4B14aea23A605aBc463f04a6B8Aaf52Dd3e7C6/info.json new file mode 100644 index 00000000..fa142b2c --- /dev/null +++ b/blockchains/ethereum/assets/0x5a4B14aea23A605aBc463f04a6B8Aaf52Dd3e7C6/info.json @@ -0,0 +1,11 @@ +{ + "name": "HeartBout HP", + "symbol": "HP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://heartbout.com/", + "explorer": "https://etherscan.io/token/0x5a4B14aea23A605aBc463f04a6B8Aaf52Dd3e7C6", + "status": "abandoned", + "id": "0x5a4B14aea23A605aBc463f04a6B8Aaf52Dd3e7C6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5a4B14aea23A605aBc463f04a6B8Aaf52Dd3e7C6/logo.png b/blockchains/ethereum/assets/0x5a4B14aea23A605aBc463f04a6B8Aaf52Dd3e7C6/logo.png new file mode 100644 index 00000000..a83165a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x5a4B14aea23A605aBc463f04a6B8Aaf52Dd3e7C6/logo.png differ diff --git a/blockchains/ethereum/assets/0x5a50B3d55e9a1089029824a26caaA8f2abFC4bb0/info.json b/blockchains/ethereum/assets/0x5a50B3d55e9a1089029824a26caaA8f2abFC4bb0/info.json new file mode 100644 index 00000000..74f2bbb8 --- /dev/null +++ b/blockchains/ethereum/assets/0x5a50B3d55e9a1089029824a26caaA8f2abFC4bb0/info.json @@ -0,0 +1,25 @@ +{ + "name": "xunii.finance", + "website": "https://xunii.finance", + "description": "A Yield Farming Project.", + "explorer": "https://etherscan.io/token/0x5a50B3d55e9a1089029824a26caaA8f2abFC4bb0", + "type": "ERC20", + "symbol": "XUNII", + "decimals": 18, + "status": "active", + "id": "0x5a50B3d55e9a1089029824a26caaA8f2abFC4bb0", + "links": [ + { + "name": "github", + "url": "https://github.com/xuniifinance/" + }, + { + "name": "x", + "url": "https://x.com/xuniifinance" + }, + { + "name": "telegram", + "url": "https://t.me/xuniifinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5a50B3d55e9a1089029824a26caaA8f2abFC4bb0/logo.png b/blockchains/ethereum/assets/0x5a50B3d55e9a1089029824a26caaA8f2abFC4bb0/logo.png new file mode 100644 index 00000000..3e9de498 Binary files /dev/null and b/blockchains/ethereum/assets/0x5a50B3d55e9a1089029824a26caaA8f2abFC4bb0/logo.png differ diff --git a/blockchains/ethereum/assets/0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37/info.json b/blockchains/ethereum/assets/0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37/info.json new file mode 100644 index 00000000..af15f8c2 --- /dev/null +++ b/blockchains/ethereum/assets/0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37/info.json @@ -0,0 +1,11 @@ +{ + "name": "UnMarshal", + "symbol": "MARSH", + "type": "ERC20", + "decimals": 18, + "description": "Unmarshal is a Multi-chain DeFi network of indexers that provides seamless access to Blockchain data for DeFi applications. We provide rich, meaningful, and reliable access to data through our decentralized network nodes.", + "website": "https://unmarshal.io/", + "explorer": "https://etherscan.io/token/0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37", + "status": "active", + "id": "0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37/logo.png b/blockchains/ethereum/assets/0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37/logo.png new file mode 100644 index 00000000..579ef272 Binary files /dev/null and b/blockchains/ethereum/assets/0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37/logo.png differ diff --git a/blockchains/ethereum/assets/0x5a84969bb663fb64F6d015DcF9F622Aedc796750/info.json b/blockchains/ethereum/assets/0x5a84969bb663fb64F6d015DcF9F622Aedc796750/info.json new file mode 100644 index 00000000..a61a09b1 --- /dev/null +++ b/blockchains/ethereum/assets/0x5a84969bb663fb64F6d015DcF9F622Aedc796750/info.json @@ -0,0 +1,11 @@ +{ + "name": "IDICE", + "symbol": "ICE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5a84969bb663fb64F6d015DcF9F622Aedc796750", + "status": "abandoned", + "id": "0x5a84969bb663fb64F6d015DcF9F622Aedc796750" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5a84969bb663fb64F6d015DcF9F622Aedc796750/logo.png b/blockchains/ethereum/assets/0x5a84969bb663fb64F6d015DcF9F622Aedc796750/logo.png new file mode 100644 index 00000000..f6bd394c Binary files /dev/null and b/blockchains/ethereum/assets/0x5a84969bb663fb64F6d015DcF9F622Aedc796750/logo.png differ diff --git a/blockchains/ethereum/assets/0x5a8C4342d07C90293fbb82D9B08098c8603E0947/info.json b/blockchains/ethereum/assets/0x5a8C4342d07C90293fbb82D9B08098c8603E0947/info.json new file mode 100644 index 00000000..2b30778c --- /dev/null +++ b/blockchains/ethereum/assets/0x5a8C4342d07C90293fbb82D9B08098c8603E0947/info.json @@ -0,0 +1,11 @@ +{ + "name": "LocalKoin", + "symbol": "DXC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5a8C4342d07C90293fbb82D9B08098c8603E0947", + "status": "abandoned", + "id": "0x5a8C4342d07C90293fbb82D9B08098c8603E0947" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5a8C4342d07C90293fbb82D9B08098c8603E0947/logo.png b/blockchains/ethereum/assets/0x5a8C4342d07C90293fbb82D9B08098c8603E0947/logo.png new file mode 100644 index 00000000..c53bf805 Binary files /dev/null and b/blockchains/ethereum/assets/0x5a8C4342d07C90293fbb82D9B08098c8603E0947/logo.png differ diff --git a/blockchains/ethereum/assets/0x5aB0897E4c4EA07D16BdBedA58d40dE728bCE16C/info.json b/blockchains/ethereum/assets/0x5aB0897E4c4EA07D16BdBedA58d40dE728bCE16C/info.json new file mode 100644 index 00000000..e17f1658 --- /dev/null +++ b/blockchains/ethereum/assets/0x5aB0897E4c4EA07D16BdBedA58d40dE728bCE16C/info.json @@ -0,0 +1,11 @@ +{ + "name": "REFER", + "symbol": "REF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5aB0897E4c4EA07D16BdBedA58d40dE728bCE16C", + "status": "abandoned", + "id": "0x5aB0897E4c4EA07D16BdBedA58d40dE728bCE16C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5aB0897E4c4EA07D16BdBedA58d40dE728bCE16C/logo.png b/blockchains/ethereum/assets/0x5aB0897E4c4EA07D16BdBedA58d40dE728bCE16C/logo.png new file mode 100644 index 00000000..b435cbd1 Binary files /dev/null and b/blockchains/ethereum/assets/0x5aB0897E4c4EA07D16BdBedA58d40dE728bCE16C/logo.png differ diff --git a/blockchains/ethereum/assets/0x5aD866239154Bc912846576a60277e2a085E365C/info.json b/blockchains/ethereum/assets/0x5aD866239154Bc912846576a60277e2a085E365C/info.json new file mode 100644 index 00000000..16478291 --- /dev/null +++ b/blockchains/ethereum/assets/0x5aD866239154Bc912846576a60277e2a085E365C/info.json @@ -0,0 +1,11 @@ +{ + "name": "GN", + "symbol": "GN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5aD866239154Bc912846576a60277e2a085E365C", + "status": "abandoned", + "id": "0x5aD866239154Bc912846576a60277e2a085E365C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5aD866239154Bc912846576a60277e2a085E365C/logo.png b/blockchains/ethereum/assets/0x5aD866239154Bc912846576a60277e2a085E365C/logo.png new file mode 100644 index 00000000..cb289dcc Binary files /dev/null and b/blockchains/ethereum/assets/0x5aD866239154Bc912846576a60277e2a085E365C/logo.png differ diff --git a/blockchains/ethereum/assets/0x5aFE3855358E112B5647B952709E6165e1c1eEEe/info.json b/blockchains/ethereum/assets/0x5aFE3855358E112B5647B952709E6165e1c1eEEe/info.json new file mode 100644 index 00000000..de89f00e --- /dev/null +++ b/blockchains/ethereum/assets/0x5aFE3855358E112B5647B952709E6165e1c1eEEe/info.json @@ -0,0 +1,29 @@ +{ + "name": "Safe token", + "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 00000000..6f5fd6ef Binary files /dev/null and b/blockchains/ethereum/assets/0x5aFE3855358E112B5647B952709E6165e1c1eEEe/logo.png differ diff --git a/blockchains/ethereum/assets/0x5aaEFe84E0fB3DD1f0fCfF6fA7468124986B91bd/info.json b/blockchains/ethereum/assets/0x5aaEFe84E0fB3DD1f0fCfF6fA7468124986B91bd/info.json new file mode 100644 index 00000000..bdc542be --- /dev/null +++ b/blockchains/ethereum/assets/0x5aaEFe84E0fB3DD1f0fCfF6fA7468124986B91bd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Evedo Token", + "symbol": "EVED", + "type": "ERC20", + "decimals": 18, + "description": "Evedo is a blockchain based platform, consisting of B2B & B2C Marketplaces. It unifies all businesses and participants involved in organizing events.", + "website": "https://www.evedo.co", + "explorer": "https://etherscan.io/token/0x5aaEFe84E0fB3DD1f0fCfF6fA7468124986B91bd", + "status": "active", + "id": "0x5aaEFe84E0fB3DD1f0fCfF6fA7468124986B91bd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5aaEFe84E0fB3DD1f0fCfF6fA7468124986B91bd/logo.png b/blockchains/ethereum/assets/0x5aaEFe84E0fB3DD1f0fCfF6fA7468124986B91bd/logo.png new file mode 100644 index 00000000..7b76c0c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x5aaEFe84E0fB3DD1f0fCfF6fA7468124986B91bd/logo.png differ diff --git a/blockchains/ethereum/assets/0x5aaa2182459377b6cA18b10712F9F602140764af/info.json b/blockchains/ethereum/assets/0x5aaa2182459377b6cA18b10712F9F602140764af/info.json new file mode 100644 index 00000000..a1ce4963 --- /dev/null +++ b/blockchains/ethereum/assets/0x5aaa2182459377b6cA18b10712F9F602140764af/info.json @@ -0,0 +1,11 @@ +{ + "name": "ElevationToken", + "symbol": "EVT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://theelevationico.com", + "explorer": "https://etherscan.io/token/0x5aaa2182459377b6cA18b10712F9F602140764af", + "status": "abandoned", + "id": "0x5aaa2182459377b6cA18b10712F9F602140764af" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5aaa2182459377b6cA18b10712F9F602140764af/logo.png b/blockchains/ethereum/assets/0x5aaa2182459377b6cA18b10712F9F602140764af/logo.png new file mode 100644 index 00000000..1fc3dcd0 Binary files /dev/null and b/blockchains/ethereum/assets/0x5aaa2182459377b6cA18b10712F9F602140764af/logo.png differ diff --git a/blockchains/ethereum/assets/0x5abFd418AdB35e89c68313574eB16BdfFc15e607/info.json b/blockchains/ethereum/assets/0x5abFd418AdB35e89c68313574eB16BdfFc15e607/info.json new file mode 100644 index 00000000..14815081 --- /dev/null +++ b/blockchains/ethereum/assets/0x5abFd418AdB35e89c68313574eB16BdfFc15e607/info.json @@ -0,0 +1,11 @@ +{ + "name": "TimviToken", + "symbol": "TMV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://timvi.com/", + "explorer": "https://etherscan.io/token/0x5abFd418AdB35e89c68313574eB16BdfFc15e607", + "status": "abandoned", + "id": "0x5abFd418AdB35e89c68313574eB16BdfFc15e607" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5abFd418AdB35e89c68313574eB16BdfFc15e607/logo.png b/blockchains/ethereum/assets/0x5abFd418AdB35e89c68313574eB16BdfFc15e607/logo.png new file mode 100644 index 00000000..dca62d48 Binary files /dev/null and b/blockchains/ethereum/assets/0x5abFd418AdB35e89c68313574eB16BdfFc15e607/logo.png differ diff --git a/blockchains/ethereum/assets/0x5acD19b9c91e596b1f062f18e3D02da7eD8D1e50/info.json b/blockchains/ethereum/assets/0x5acD19b9c91e596b1f062f18e3D02da7eD8D1e50/info.json new file mode 100644 index 00000000..bff61227 --- /dev/null +++ b/blockchains/ethereum/assets/0x5acD19b9c91e596b1f062f18e3D02da7eD8D1e50/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTC LITE", + "symbol": "BTCL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://btclite.org/", + "explorer": "https://etherscan.io/token/0x5acD19b9c91e596b1f062f18e3D02da7eD8D1e50", + "status": "abandoned", + "id": "0x5acD19b9c91e596b1f062f18e3D02da7eD8D1e50" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5acD19b9c91e596b1f062f18e3D02da7eD8D1e50/logo.png b/blockchains/ethereum/assets/0x5acD19b9c91e596b1f062f18e3D02da7eD8D1e50/logo.png new file mode 100755 index 00000000..2c2dc834 Binary files /dev/null and b/blockchains/ethereum/assets/0x5acD19b9c91e596b1f062f18e3D02da7eD8D1e50/logo.png differ diff --git a/blockchains/ethereum/assets/0x5adc961D6AC3f7062D2eA45FEFB8D8167d44b190/info.json b/blockchains/ethereum/assets/0x5adc961D6AC3f7062D2eA45FEFB8D8167d44b190/info.json new file mode 100644 index 00000000..12b833b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x5adc961D6AC3f7062D2eA45FEFB8D8167d44b190/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dether", + "symbol": "DTH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://dether.io", + "explorer": "https://etherscan.io/token/0x5adc961D6AC3f7062D2eA45FEFB8D8167d44b190", + "status": "active", + "id": "0x5adc961D6AC3f7062D2eA45FEFB8D8167d44b190" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5adc961D6AC3f7062D2eA45FEFB8D8167d44b190/logo.png b/blockchains/ethereum/assets/0x5adc961D6AC3f7062D2eA45FEFB8D8167d44b190/logo.png new file mode 100644 index 00000000..4196850b Binary files /dev/null and b/blockchains/ethereum/assets/0x5adc961D6AC3f7062D2eA45FEFB8D8167d44b190/logo.png differ diff --git a/blockchains/ethereum/assets/0x5b0CFFdB6E04992eBFe4748F6fD8FA868f216Fdb/info.json b/blockchains/ethereum/assets/0x5b0CFFdB6E04992eBFe4748F6fD8FA868f216Fdb/info.json new file mode 100644 index 00000000..dfb44270 --- /dev/null +++ b/blockchains/ethereum/assets/0x5b0CFFdB6E04992eBFe4748F6fD8FA868f216Fdb/info.json @@ -0,0 +1,11 @@ +{ + "name": "CUBE", + "symbol": "CUBE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5b0CFFdB6E04992eBFe4748F6fD8FA868f216Fdb", + "status": "abandoned", + "id": "0x5b0CFFdB6E04992eBFe4748F6fD8FA868f216Fdb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5b0CFFdB6E04992eBFe4748F6fD8FA868f216Fdb/logo.png b/blockchains/ethereum/assets/0x5b0CFFdB6E04992eBFe4748F6fD8FA868f216Fdb/logo.png new file mode 100644 index 00000000..21d14a5b Binary files /dev/null and b/blockchains/ethereum/assets/0x5b0CFFdB6E04992eBFe4748F6fD8FA868f216Fdb/logo.png differ diff --git a/blockchains/ethereum/assets/0x5b11aAcB6Bddb9ffab908FDCE739Bf4aed554327/info.json b/blockchains/ethereum/assets/0x5b11aAcB6Bddb9ffab908FDCE739Bf4aed554327/info.json new file mode 100644 index 00000000..081f05d4 --- /dev/null +++ b/blockchains/ethereum/assets/0x5b11aAcB6Bddb9ffab908FDCE739Bf4aed554327/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueDeck", + "symbol": "TDP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://truedeck.io/", + "explorer": "https://etherscan.io/token/0x5b11aAcB6Bddb9ffab908FDCE739Bf4aed554327", + "status": "abandoned", + "id": "0x5b11aAcB6Bddb9ffab908FDCE739Bf4aed554327" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5b11aAcB6Bddb9ffab908FDCE739Bf4aed554327/logo.png b/blockchains/ethereum/assets/0x5b11aAcB6Bddb9ffab908FDCE739Bf4aed554327/logo.png new file mode 100644 index 00000000..a258fb2a Binary files /dev/null and b/blockchains/ethereum/assets/0x5b11aAcB6Bddb9ffab908FDCE739Bf4aed554327/logo.png differ diff --git a/blockchains/ethereum/assets/0x5b135D7E2774c801a73208f258123d7623E07784/info.json b/blockchains/ethereum/assets/0x5b135D7E2774c801a73208f258123d7623E07784/info.json new file mode 100644 index 00000000..0b5b892a --- /dev/null +++ b/blockchains/ethereum/assets/0x5b135D7E2774c801a73208f258123d7623E07784/info.json @@ -0,0 +1,11 @@ +{ + "name": "Saifu", + "symbol": "SFU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5b135D7E2774c801a73208f258123d7623E07784", + "status": "abandoned", + "id": "0x5b135D7E2774c801a73208f258123d7623E07784" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5b135D7E2774c801a73208f258123d7623E07784/logo.png b/blockchains/ethereum/assets/0x5b135D7E2774c801a73208f258123d7623E07784/logo.png new file mode 100755 index 00000000..c3a205b2 Binary files /dev/null and b/blockchains/ethereum/assets/0x5b135D7E2774c801a73208f258123d7623E07784/logo.png differ diff --git a/blockchains/ethereum/assets/0x5b3DA67e01436d735717F1EFadF1dD607f35043C/info.json b/blockchains/ethereum/assets/0x5b3DA67e01436d735717F1EFadF1dD607f35043C/info.json new file mode 100644 index 00000000..d710f4a5 --- /dev/null +++ b/blockchains/ethereum/assets/0x5b3DA67e01436d735717F1EFadF1dD607f35043C/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C530026", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5b3DA67e01436d735717F1EFadF1dD607f35043C", + "status": "abandoned", + "id": "0x5b3DA67e01436d735717F1EFadF1dD607f35043C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5b3DA67e01436d735717F1EFadF1dD607f35043C/logo.png b/blockchains/ethereum/assets/0x5b3DA67e01436d735717F1EFadF1dD607f35043C/logo.png new file mode 100644 index 00000000..af9a1ef3 Binary files /dev/null and b/blockchains/ethereum/assets/0x5b3DA67e01436d735717F1EFadF1dD607f35043C/logo.png differ diff --git a/blockchains/ethereum/assets/0x5b5bB9765eff8D26c24B9FF0DAa09838a3Cd78E9/info.json b/blockchains/ethereum/assets/0x5b5bB9765eff8D26c24B9FF0DAa09838a3Cd78E9/info.json new file mode 100644 index 00000000..890c1b02 --- /dev/null +++ b/blockchains/ethereum/assets/0x5b5bB9765eff8D26c24B9FF0DAa09838a3Cd78E9/info.json @@ -0,0 +1,30 @@ +{ + "name": "Bitanium", + "website": "https://bitanium.org", + "description": "Bitanium (BI) was built from the ground up to embody the strength and stability of Titanium. Bitanium delivers the finest high performance enterprise-first blockchain available in an ERC20 Token to date.", + "explorer": "https://etherscan.io/token/0x5b5bB9765eff8D26c24B9FF0DAa09838a3Cd78E9", + "research": "https://ethplorer.io/address/0x5b5bb9765eff8d26c24b9ff0daa09838a3cd78e9", + "type": "ERC20", + "symbol": "BI", + "decimals": 4, + "status": "active", + "id": "0x5b5bB9765eff8D26c24B9FF0DAa09838a3Cd78E9", + "links": [ + { + "name": "github", + "url": "https://github.com/vittominacori/erc20-generator/blob/v3.0.4/dist/BaseToken.dist.sol" + }, + { + "name": "x", + "url": "https://x.com/@bitaniumb" + }, + { + "name": "telegram", + "url": "https://t.me/gregowens" + }, + { + "name": "whitepaper", + "url": "https://bitanium.org" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5b5bB9765eff8D26c24B9FF0DAa09838a3Cd78E9/logo.png b/blockchains/ethereum/assets/0x5b5bB9765eff8D26c24B9FF0DAa09838a3Cd78E9/logo.png new file mode 100644 index 00000000..689291e9 Binary files /dev/null and b/blockchains/ethereum/assets/0x5b5bB9765eff8D26c24B9FF0DAa09838a3Cd78E9/logo.png differ diff --git a/blockchains/ethereum/assets/0x5b71BEE9D961b1B848f8485EEC8d8787f80217F5/info.json b/blockchains/ethereum/assets/0x5b71BEE9D961b1B848f8485EEC8d8787f80217F5/info.json new file mode 100644 index 00000000..39a1e2d0 --- /dev/null +++ b/blockchains/ethereum/assets/0x5b71BEE9D961b1B848f8485EEC8d8787f80217F5/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitForex Token", + "symbol": "BF", + "type": "ERC20", + "decimals": 18, + "description": "Bitforex Token (BF) is token issued by BitForex Exchange, it is the proof of platform ownership. BF are issued mainly through trade mining, community and ecosystem mutual construction, and being released gradually.", + "website": "https://bitforex.com", + "explorer": "https://etherscan.io/token/0x5b71BEE9D961b1B848f8485EEC8d8787f80217F5", + "status": "active", + "id": "0x5b71BEE9D961b1B848f8485EEC8d8787f80217F5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5b71BEE9D961b1B848f8485EEC8d8787f80217F5/logo.png b/blockchains/ethereum/assets/0x5b71BEE9D961b1B848f8485EEC8d8787f80217F5/logo.png new file mode 100644 index 00000000..d33a253f Binary files /dev/null and b/blockchains/ethereum/assets/0x5b71BEE9D961b1B848f8485EEC8d8787f80217F5/logo.png differ diff --git a/blockchains/ethereum/assets/0x5b7EE4fc3DC39335AE2D6bFBa3033C3FE1ae5D0f/info.json b/blockchains/ethereum/assets/0x5b7EE4fc3DC39335AE2D6bFBa3033C3FE1ae5D0f/info.json new file mode 100644 index 00000000..f22bfa08 --- /dev/null +++ b/blockchains/ethereum/assets/0x5b7EE4fc3DC39335AE2D6bFBa3033C3FE1ae5D0f/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoronaCrypto", + "symbol": "NCOR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5b7EE4fc3DC39335AE2D6bFBa3033C3FE1ae5D0f", + "status": "abandoned", + "id": "0x5b7EE4fc3DC39335AE2D6bFBa3033C3FE1ae5D0f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5b7EE4fc3DC39335AE2D6bFBa3033C3FE1ae5D0f/logo.png b/blockchains/ethereum/assets/0x5b7EE4fc3DC39335AE2D6bFBa3033C3FE1ae5D0f/logo.png new file mode 100644 index 00000000..8df23884 Binary files /dev/null and b/blockchains/ethereum/assets/0x5b7EE4fc3DC39335AE2D6bFBa3033C3FE1ae5D0f/logo.png differ diff --git a/blockchains/ethereum/assets/0x5b978aA9227cDD45905a1fbaC52d6d6b497E88ce/info.json b/blockchains/ethereum/assets/0x5b978aA9227cDD45905a1fbaC52d6d6b497E88ce/info.json new file mode 100644 index 00000000..e274fc66 --- /dev/null +++ b/blockchains/ethereum/assets/0x5b978aA9227cDD45905a1fbaC52d6d6b497E88ce/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-1/30M31", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5b978aA9227cDD45905a1fbaC52d6d6b497E88ce", + "status": "active", + "id": "0x5b978aA9227cDD45905a1fbaC52d6d6b497E88ce" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5b978aA9227cDD45905a1fbaC52d6d6b497E88ce/logo.png b/blockchains/ethereum/assets/0x5b978aA9227cDD45905a1fbaC52d6d6b497E88ce/logo.png new file mode 100644 index 00000000..7a2ee4d5 Binary files /dev/null and b/blockchains/ethereum/assets/0x5b978aA9227cDD45905a1fbaC52d6d6b497E88ce/logo.png differ diff --git a/blockchains/ethereum/assets/0x5bC901CbebefB03a56D45e57E4F356dc4DB30ab5/info.json b/blockchains/ethereum/assets/0x5bC901CbebefB03a56D45e57E4F356dc4DB30ab5/info.json new file mode 100644 index 00000000..08caca61 --- /dev/null +++ b/blockchains/ethereum/assets/0x5bC901CbebefB03a56D45e57E4F356dc4DB30ab5/info.json @@ -0,0 +1,11 @@ +{ + "name": "xensor token", + "symbol": "XST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5bC901CbebefB03a56D45e57E4F356dc4DB30ab5", + "status": "abandoned", + "id": "0x5bC901CbebefB03a56D45e57E4F356dc4DB30ab5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5bC901CbebefB03a56D45e57E4F356dc4DB30ab5/logo.png b/blockchains/ethereum/assets/0x5bC901CbebefB03a56D45e57E4F356dc4DB30ab5/logo.png new file mode 100644 index 00000000..0d2478d3 Binary files /dev/null and b/blockchains/ethereum/assets/0x5bC901CbebefB03a56D45e57E4F356dc4DB30ab5/logo.png differ diff --git a/blockchains/ethereum/assets/0x5bEaBAEBB3146685Dd74176f68a0721F91297D37/info.json b/blockchains/ethereum/assets/0x5bEaBAEBB3146685Dd74176f68a0721F91297D37/info.json new file mode 100644 index 00000000..939bb8c1 --- /dev/null +++ b/blockchains/ethereum/assets/0x5bEaBAEBB3146685Dd74176f68a0721F91297D37/info.json @@ -0,0 +1,30 @@ +{ + "name": "Bounce Finance", + "website": "https://bounce.finance", + "description": "Decentralized auctions including fixed swap, sealed-bid, Dutch auction, NFT auctions.", + "explorer": "https://etherscan.io/token/0x5bEaBAEBB3146685Dd74176f68a0721F91297D37", + "research": "https://research.binance.com/en/projects/bounce", + "type": "ERC20", + "symbol": "BOT", + "decimals": 18, + "status": "active", + "id": "0x5bEaBAEBB3146685Dd74176f68a0721F91297D37", + "links": [ + { + "name": "github", + "url": "https://github.com/bouncefinance" + }, + { + "name": "x", + "url": "https://x.com/bounce_finance" + }, + { + "name": "telegram", + "url": "https://t.me/bounce_finance" + }, + { + "name": "medium", + "url": "https://bouncefinance.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5bEaBAEBB3146685Dd74176f68a0721F91297D37/logo.png b/blockchains/ethereum/assets/0x5bEaBAEBB3146685Dd74176f68a0721F91297D37/logo.png new file mode 100644 index 00000000..b20857aa Binary files /dev/null and b/blockchains/ethereum/assets/0x5bEaBAEBB3146685Dd74176f68a0721F91297D37/logo.png differ diff --git a/blockchains/ethereum/assets/0x5bfc1FF7f9e087C64fEfb34F2e7cF24e5570919F/info.json b/blockchains/ethereum/assets/0x5bfc1FF7f9e087C64fEfb34F2e7cF24e5570919F/info.json new file mode 100644 index 00000000..b9567fa5 --- /dev/null +++ b/blockchains/ethereum/assets/0x5bfc1FF7f9e087C64fEfb34F2e7cF24e5570919F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Habitus", + "symbol": "HABS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5bfc1FF7f9e087C64fEfb34F2e7cF24e5570919F", + "status": "abandoned", + "id": "0x5bfc1FF7f9e087C64fEfb34F2e7cF24e5570919F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5bfc1FF7f9e087C64fEfb34F2e7cF24e5570919F/logo.png b/blockchains/ethereum/assets/0x5bfc1FF7f9e087C64fEfb34F2e7cF24e5570919F/logo.png new file mode 100644 index 00000000..8b324aa0 Binary files /dev/null and b/blockchains/ethereum/assets/0x5bfc1FF7f9e087C64fEfb34F2e7cF24e5570919F/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c1209acd4fAE170Eea93c830A0CB74Bc5f9eF2b/info.json b/blockchains/ethereum/assets/0x5c1209acd4fAE170Eea93c830A0CB74Bc5f9eF2b/info.json new file mode 100644 index 00000000..80d2a7ec --- /dev/null +++ b/blockchains/ethereum/assets/0x5c1209acd4fAE170Eea93c830A0CB74Bc5f9eF2b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cojam", + "symbol": "CT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5c1209acd4fAE170Eea93c830A0CB74Bc5f9eF2b", + "status": "abandoned", + "id": "0x5c1209acd4fAE170Eea93c830A0CB74Bc5f9eF2b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c1209acd4fAE170Eea93c830A0CB74Bc5f9eF2b/logo.png b/blockchains/ethereum/assets/0x5c1209acd4fAE170Eea93c830A0CB74Bc5f9eF2b/logo.png new file mode 100644 index 00000000..2086c66c Binary files /dev/null and b/blockchains/ethereum/assets/0x5c1209acd4fAE170Eea93c830A0CB74Bc5f9eF2b/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c147e74D63B1D31AA3Fd78Eb229B65161983B2b/info.json b/blockchains/ethereum/assets/0x5c147e74D63B1D31AA3Fd78Eb229B65161983B2b/info.json new file mode 100644 index 00000000..1a618776 --- /dev/null +++ b/blockchains/ethereum/assets/0x5c147e74D63B1D31AA3Fd78Eb229B65161983B2b/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Flow", + "type": "ERC20", + "symbol": "WFLOW", + "decimals": 18, + "website": "https://www.onflow.org/", + "description": "Wrapped FLOW (WFLOW) is an ERC-20 token backed 1:1 with FLOW, the native token of the Flow blockchain. All minted WFLOW will be backed 1:1 by FLOW held in Anchorage custody, an institutional-grade storage system.", + "explorer": "https://etherscan.io/token/0x5c147e74d63b1d31aa3fd78eb229b65161983b2b", + "status": "active", + "id": "0x5c147e74D63B1D31AA3Fd78Eb229B65161983B2b", + "links": [ + { + "name": "x", + "url": "https://x.com/flow_blockchain" + }, + { + "name": "github", + "url": "https://github.com/onflow/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c147e74D63B1D31AA3Fd78Eb229B65161983B2b/logo.png b/blockchains/ethereum/assets/0x5c147e74D63B1D31AA3Fd78Eb229B65161983B2b/logo.png new file mode 100644 index 00000000..e13a7539 Binary files /dev/null and b/blockchains/ethereum/assets/0x5c147e74D63B1D31AA3Fd78Eb229B65161983B2b/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c1b16991eE5c7555a340DD72bB293A5eAAdd8ac/info.json b/blockchains/ethereum/assets/0x5c1b16991eE5c7555a340DD72bB293A5eAAdd8ac/info.json new file mode 100644 index 00000000..17b9c0f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x5c1b16991eE5c7555a340DD72bB293A5eAAdd8ac/info.json @@ -0,0 +1,11 @@ +{ + "name": "FLC_Coin", + "symbol": "FLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5c1b16991eE5c7555a340DD72bB293A5eAAdd8ac", + "status": "abandoned", + "id": "0x5c1b16991eE5c7555a340DD72bB293A5eAAdd8ac" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c1b16991eE5c7555a340DD72bB293A5eAAdd8ac/logo.png b/blockchains/ethereum/assets/0x5c1b16991eE5c7555a340DD72bB293A5eAAdd8ac/logo.png new file mode 100644 index 00000000..78c04696 Binary files /dev/null and b/blockchains/ethereum/assets/0x5c1b16991eE5c7555a340DD72bB293A5eAAdd8ac/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c250ff9b993C6991cC4A3cC543716e53b478018/info.json b/blockchains/ethereum/assets/0x5c250ff9b993C6991cC4A3cC543716e53b478018/info.json new file mode 100644 index 00000000..a7bce739 --- /dev/null +++ b/blockchains/ethereum/assets/0x5c250ff9b993C6991cC4A3cC543716e53b478018/info.json @@ -0,0 +1,29 @@ +{ + "name": "STPAY", + "website": "https://stpay.org/", + "description": "STPAY is creating a global platform to support Education and E-Commerce.", + "explorer": "https://etherscan.io/token/0x5c250ff9b993C6991cC4A3cC543716e53b478018", + "type": "ERC20", + "symbol": "STP", + "decimals": 18, + "status": "active", + "id": "0x5c250ff9b993C6991cC4A3cC543716e53b478018", + "links": [ + { + "name": "github", + "url": "https://github.com/stpay/contract" + }, + { + "name": "telegram", + "url": "https://t.me/stpaychannel" + }, + { + "name": "facebook", + "url": "https://facebook.com/stpaychannel" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCfrHNUUZMw7PfojxfdRTTDQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c250ff9b993C6991cC4A3cC543716e53b478018/logo.png b/blockchains/ethereum/assets/0x5c250ff9b993C6991cC4A3cC543716e53b478018/logo.png new file mode 100644 index 00000000..86059e65 Binary files /dev/null and b/blockchains/ethereum/assets/0x5c250ff9b993C6991cC4A3cC543716e53b478018/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c2f940281e735ca3496d8138be12d18023DcE9F/info.json b/blockchains/ethereum/assets/0x5c2f940281e735ca3496d8138be12d18023DcE9F/info.json new file mode 100644 index 00000000..d215ad2b --- /dev/null +++ b/blockchains/ethereum/assets/0x5c2f940281e735ca3496d8138be12d18023DcE9F/info.json @@ -0,0 +1,11 @@ +{ + "name": "BANANA TOKEN", + "symbol": "BNANA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5c2f940281e735ca3496d8138be12d18023DcE9F", + "status": "abandoned", + "id": "0x5c2f940281e735ca3496d8138be12d18023DcE9F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c2f940281e735ca3496d8138be12d18023DcE9F/logo.png b/blockchains/ethereum/assets/0x5c2f940281e735ca3496d8138be12d18023DcE9F/logo.png new file mode 100644 index 00000000..38a778c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x5c2f940281e735ca3496d8138be12d18023DcE9F/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c3a228510D246b78a3765C20221Cbf3082b44a4/info.json b/blockchains/ethereum/assets/0x5c3a228510D246b78a3765C20221Cbf3082b44a4/info.json new file mode 100644 index 00000000..d40cedd4 --- /dev/null +++ b/blockchains/ethereum/assets/0x5c3a228510D246b78a3765C20221Cbf3082b44a4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Storiqa Token", + "symbol": "STQ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ico.storiqa.com", + "explorer": "https://etherscan.io/token/0x5c3a228510D246b78a3765C20221Cbf3082b44a4", + "status": "abandoned", + "id": "0x5c3a228510D246b78a3765C20221Cbf3082b44a4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c3a228510D246b78a3765C20221Cbf3082b44a4/logo.png b/blockchains/ethereum/assets/0x5c3a228510D246b78a3765C20221Cbf3082b44a4/logo.png new file mode 100644 index 00000000..b92f7f5a Binary files /dev/null and b/blockchains/ethereum/assets/0x5c3a228510D246b78a3765C20221Cbf3082b44a4/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c4E325d2c570443f4ea3Ed5623c58dE221E9475/info.json b/blockchains/ethereum/assets/0x5c4E325d2c570443f4ea3Ed5623c58dE221E9475/info.json new file mode 100644 index 00000000..b6993ec3 --- /dev/null +++ b/blockchains/ethereum/assets/0x5c4E325d2c570443f4ea3Ed5623c58dE221E9475/info.json @@ -0,0 +1,11 @@ +{ + "name": "BestOne", + "symbol": "BOF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5c4E325d2c570443f4ea3Ed5623c58dE221E9475", + "status": "abandoned", + "id": "0x5c4E325d2c570443f4ea3Ed5623c58dE221E9475" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c4E325d2c570443f4ea3Ed5623c58dE221E9475/logo.png b/blockchains/ethereum/assets/0x5c4E325d2c570443f4ea3Ed5623c58dE221E9475/logo.png new file mode 100644 index 00000000..4a3c38a9 Binary files /dev/null and b/blockchains/ethereum/assets/0x5c4E325d2c570443f4ea3Ed5623c58dE221E9475/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c4ac68aAc56eBe098D621Cd8CE9F43270Aaa355/info.json b/blockchains/ethereum/assets/0x5c4ac68aAc56eBe098D621Cd8CE9F43270Aaa355/info.json new file mode 100644 index 00000000..598a0425 --- /dev/null +++ b/blockchains/ethereum/assets/0x5c4ac68aAc56eBe098D621Cd8CE9F43270Aaa355/info.json @@ -0,0 +1,11 @@ +{ + "name": "bXIOT", + "website": "https://xiotri.io", + "description": "bXIOT is the second token of the Xiotri platform, giving fair yields to everyone.", + "explorer": "https://etherscan.io/token/0x5c4ac68aAc56eBe098D621Cd8CE9F43270Aaa355", + "type": "ERC20", + "symbol": "bXIOT", + "decimals": 6, + "status": "active", + "id": "0x5c4ac68aAc56eBe098D621Cd8CE9F43270Aaa355" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c4ac68aAc56eBe098D621Cd8CE9F43270Aaa355/logo.png b/blockchains/ethereum/assets/0x5c4ac68aAc56eBe098D621Cd8CE9F43270Aaa355/logo.png new file mode 100644 index 00000000..8c508fe4 Binary files /dev/null and b/blockchains/ethereum/assets/0x5c4ac68aAc56eBe098D621Cd8CE9F43270Aaa355/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c543e7AE0A1104f78406C340E9C64FD9fCE5170/info.json b/blockchains/ethereum/assets/0x5c543e7AE0A1104f78406C340E9C64FD9fCE5170/info.json new file mode 100644 index 00000000..ba457ed4 --- /dev/null +++ b/blockchains/ethereum/assets/0x5c543e7AE0A1104f78406C340E9C64FD9fCE5170/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "\"\"", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5c543e7AE0A1104f78406C340E9C64FD9fCE5170", + "status": "abandoned", + "id": "0x5c543e7AE0A1104f78406C340E9C64FD9fCE5170" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c543e7AE0A1104f78406C340E9C64FD9fCE5170/logo.png b/blockchains/ethereum/assets/0x5c543e7AE0A1104f78406C340E9C64FD9fCE5170/logo.png new file mode 100644 index 00000000..87fe34d9 Binary files /dev/null and b/blockchains/ethereum/assets/0x5c543e7AE0A1104f78406C340E9C64FD9fCE5170/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c5887E55bBe41472AcDBA5FAe989788C6f7ab59/info.json b/blockchains/ethereum/assets/0x5c5887E55bBe41472AcDBA5FAe989788C6f7ab59/info.json new file mode 100644 index 00000000..9f8f4020 --- /dev/null +++ b/blockchains/ethereum/assets/0x5c5887E55bBe41472AcDBA5FAe989788C6f7ab59/info.json @@ -0,0 +1,11 @@ +{ + "name": "STK Coin", + "symbol": "STK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://stkcoin.io/", + "explorer": "https://etherscan.io/token/0x5c5887E55bBe41472AcDBA5FAe989788C6f7ab59", + "status": "abandoned", + "id": "0x5c5887E55bBe41472AcDBA5FAe989788C6f7ab59" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c5887E55bBe41472AcDBA5FAe989788C6f7ab59/logo.png b/blockchains/ethereum/assets/0x5c5887E55bBe41472AcDBA5FAe989788C6f7ab59/logo.png new file mode 100644 index 00000000..056c0981 Binary files /dev/null and b/blockchains/ethereum/assets/0x5c5887E55bBe41472AcDBA5FAe989788C6f7ab59/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c62Da804298D5972a323C80B539B8E7517a0dDe/info.json b/blockchains/ethereum/assets/0x5c62Da804298D5972a323C80B539B8E7517a0dDe/info.json new file mode 100644 index 00000000..2a6e296f --- /dev/null +++ b/blockchains/ethereum/assets/0x5c62Da804298D5972a323C80B539B8E7517a0dDe/info.json @@ -0,0 +1,11 @@ +{ + "name": "VENJOCOIN", + "symbol": "VJC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://venjocoin.io", + "explorer": "https://etherscan.io/token/0x5c62Da804298D5972a323C80B539B8E7517a0dDe", + "status": "abandoned", + "id": "0x5c62Da804298D5972a323C80B539B8E7517a0dDe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c62Da804298D5972a323C80B539B8E7517a0dDe/logo.png b/blockchains/ethereum/assets/0x5c62Da804298D5972a323C80B539B8E7517a0dDe/logo.png new file mode 100644 index 00000000..2201cea6 Binary files /dev/null and b/blockchains/ethereum/assets/0x5c62Da804298D5972a323C80B539B8E7517a0dDe/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c64031C62061865E5FD0F53d3CDaeF80f72E99D/info.json b/blockchains/ethereum/assets/0x5c64031C62061865E5FD0F53d3CDaeF80f72E99D/info.json new file mode 100644 index 00000000..ff3ebd4d --- /dev/null +++ b/blockchains/ethereum/assets/0x5c64031C62061865E5FD0F53d3CDaeF80f72E99D/info.json @@ -0,0 +1,11 @@ +{ + "name": "HASHGARD", + "symbol": "GARD", + "type": "ERC20", + "decimals": 18, + "description": "OLXA Coin aims to connect the crypto market to the real world through services such as Letter of Crypto Credit, i-Advertising Platform, and Crowd-Projects.", + "website": "https://www.hashgard.io", + "explorer": "https://etherscan.io/token/0x5c64031C62061865E5FD0F53d3CDaeF80f72E99D", + "status": "active", + "id": "0x5c64031C62061865E5FD0F53d3CDaeF80f72E99D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c64031C62061865E5FD0F53d3CDaeF80f72E99D/logo.png b/blockchains/ethereum/assets/0x5c64031C62061865E5FD0F53d3CDaeF80f72E99D/logo.png new file mode 100644 index 00000000..74bd781e Binary files /dev/null and b/blockchains/ethereum/assets/0x5c64031C62061865E5FD0F53d3CDaeF80f72E99D/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c743a35E903F6c584514ec617ACEe0611Cf44f3/info.json b/blockchains/ethereum/assets/0x5c743a35E903F6c584514ec617ACEe0611Cf44f3/info.json new file mode 100644 index 00000000..ad2ec04a --- /dev/null +++ b/blockchains/ethereum/assets/0x5c743a35E903F6c584514ec617ACEe0611Cf44f3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Experty Token", + "symbol": "EXY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.experty.io/en?utm_source=coingecko&utm_medium=listing&utm_campaign=coingecko", + "explorer": "https://etherscan.io/token/0x5c743a35E903F6c584514ec617ACEe0611Cf44f3", + "status": "active", + "id": "0x5c743a35E903F6c584514ec617ACEe0611Cf44f3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c743a35E903F6c584514ec617ACEe0611Cf44f3/logo.png b/blockchains/ethereum/assets/0x5c743a35E903F6c584514ec617ACEe0611Cf44f3/logo.png new file mode 100644 index 00000000..35e61557 Binary files /dev/null and b/blockchains/ethereum/assets/0x5c743a35E903F6c584514ec617ACEe0611Cf44f3/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c7499CF00E8278AA232982fF178ee9735024091/info.json b/blockchains/ethereum/assets/0x5c7499CF00E8278AA232982fF178ee9735024091/info.json new file mode 100644 index 00000000..baa128fc --- /dev/null +++ b/blockchains/ethereum/assets/0x5c7499CF00E8278AA232982fF178ee9735024091/info.json @@ -0,0 +1,11 @@ +{ + "name": "r.Pepe", + "website": "https://rarepepe.net", + "description": "r.Pepe Token is a deflationary cypto-currency with a 2.5% burn implemented for each transaction.", + "explorer": "https://etherscan.io/token/0x5c7499CF00E8278AA232982fF178ee9735024091", + "type": "ERC20", + "symbol": "r.Pepe", + "decimals": 0, + "status": "active", + "id": "0x5c7499CF00E8278AA232982fF178ee9735024091" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c7499CF00E8278AA232982fF178ee9735024091/logo.png b/blockchains/ethereum/assets/0x5c7499CF00E8278AA232982fF178ee9735024091/logo.png new file mode 100644 index 00000000..573f8229 Binary files /dev/null and b/blockchains/ethereum/assets/0x5c7499CF00E8278AA232982fF178ee9735024091/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c7869eA979814d64b0C09Fd6BB06ab9ed6B6cC2/info.json b/blockchains/ethereum/assets/0x5c7869eA979814d64b0C09Fd6BB06ab9ed6B6cC2/info.json new file mode 100644 index 00000000..ace53b1a --- /dev/null +++ b/blockchains/ethereum/assets/0x5c7869eA979814d64b0C09Fd6BB06ab9ed6B6cC2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kaze Coin Group", + "symbol": "KCG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5c7869eA979814d64b0C09Fd6BB06ab9ed6B6cC2", + "status": "abandoned", + "id": "0x5c7869eA979814d64b0C09Fd6BB06ab9ed6B6cC2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c7869eA979814d64b0C09Fd6BB06ab9ed6B6cC2/logo.png b/blockchains/ethereum/assets/0x5c7869eA979814d64b0C09Fd6BB06ab9ed6B6cC2/logo.png new file mode 100755 index 00000000..8e000788 Binary files /dev/null and b/blockchains/ethereum/assets/0x5c7869eA979814d64b0C09Fd6BB06ab9ed6B6cC2/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c8118FC0237697422CeD89a448Dce2C8E34B4EF/info.json b/blockchains/ethereum/assets/0x5c8118FC0237697422CeD89a448Dce2C8E34B4EF/info.json new file mode 100644 index 00000000..064e3c44 --- /dev/null +++ b/blockchains/ethereum/assets/0x5c8118FC0237697422CeD89a448Dce2C8E34B4EF/info.json @@ -0,0 +1,11 @@ +{ + "name": "LutherChain", + "symbol": "LTH", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5c8118FC0237697422CeD89a448Dce2C8E34B4EF", + "status": "abandoned", + "id": "0x5c8118FC0237697422CeD89a448Dce2C8E34B4EF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c8118FC0237697422CeD89a448Dce2C8E34B4EF/logo.png b/blockchains/ethereum/assets/0x5c8118FC0237697422CeD89a448Dce2C8E34B4EF/logo.png new file mode 100644 index 00000000..6416fd32 Binary files /dev/null and b/blockchains/ethereum/assets/0x5c8118FC0237697422CeD89a448Dce2C8E34B4EF/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c872500c00565505F3624AB435c222E558E9ff8/info.json b/blockchains/ethereum/assets/0x5c872500c00565505F3624AB435c222E558E9ff8/info.json new file mode 100644 index 00000000..01da7371 --- /dev/null +++ b/blockchains/ethereum/assets/0x5c872500c00565505F3624AB435c222E558E9ff8/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoTrader", + "symbol": "COT", + "type": "ERC20", + "decimals": 18, + "description": "CoTrader (COT) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://cotrader.com/", + "explorer": "https://etherscan.io/token/0x5c872500c00565505F3624AB435c222E558E9ff8", + "status": "active", + "id": "0x5c872500c00565505F3624AB435c222E558E9ff8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5c872500c00565505F3624AB435c222E558E9ff8/logo.png b/blockchains/ethereum/assets/0x5c872500c00565505F3624AB435c222E558E9ff8/logo.png new file mode 100644 index 00000000..ba9e97f2 Binary files /dev/null and b/blockchains/ethereum/assets/0x5c872500c00565505F3624AB435c222E558E9ff8/logo.png differ diff --git a/blockchains/ethereum/assets/0x5c8D0C48810FD37A0A824D074ee290E64f7A8Fa2/info.json b/blockchains/ethereum/assets/0x5c8D0C48810FD37A0A824D074ee290E64f7A8Fa2/info.json new file mode 100644 index 00000000..e9b66aa8 --- /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 00000000..8937d17d Binary files /dev/null and b/blockchains/ethereum/assets/0x5c8D0C48810FD37A0A824D074ee290E64f7A8Fa2/logo.png differ diff --git a/blockchains/ethereum/assets/0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26/info.json b/blockchains/ethereum/assets/0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26/info.json new file mode 100644 index 00000000..da782625 --- /dev/null +++ b/blockchains/ethereum/assets/0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dev", + "symbol": "DEV", + "type": "ERC20", + "decimals": 18, + "description": "Dev Protocol lets GitHub users tokenize their OSS projects in a few clicks. Creating an OSS token allows projects to access sustainable funding, create underlying economic models for their project, and distribute incentives at scale.", + "website": "https://devprtcl.com/", + "explorer": "https://etherscan.io/token/0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26", + "status": "active", + "id": "0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26/logo.png b/blockchains/ethereum/assets/0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26/logo.png new file mode 100644 index 00000000..30f971c6 Binary files /dev/null and b/blockchains/ethereum/assets/0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26/logo.png differ diff --git a/blockchains/ethereum/assets/0x5cb654CDEc88eE15f9e91C9b3A8Cd4266F85c8F7/info.json b/blockchains/ethereum/assets/0x5cb654CDEc88eE15f9e91C9b3A8Cd4266F85c8F7/info.json new file mode 100644 index 00000000..c5ba0ea7 --- /dev/null +++ b/blockchains/ethereum/assets/0x5cb654CDEc88eE15f9e91C9b3A8Cd4266F85c8F7/info.json @@ -0,0 +1,11 @@ +{ + "name": "COINVR", + "symbol": "COVR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5cb654CDEc88eE15f9e91C9b3A8Cd4266F85c8F7", + "status": "abandoned", + "id": "0x5cb654CDEc88eE15f9e91C9b3A8Cd4266F85c8F7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5cb654CDEc88eE15f9e91C9b3A8Cd4266F85c8F7/logo.png b/blockchains/ethereum/assets/0x5cb654CDEc88eE15f9e91C9b3A8Cd4266F85c8F7/logo.png new file mode 100644 index 00000000..1c4d2ea3 Binary files /dev/null and b/blockchains/ethereum/assets/0x5cb654CDEc88eE15f9e91C9b3A8Cd4266F85c8F7/logo.png differ diff --git a/blockchains/ethereum/assets/0x5cb95099a2C7e3C8187fbca6eFe5ba222b5bA820/info.json b/blockchains/ethereum/assets/0x5cb95099a2C7e3C8187fbca6eFe5ba222b5bA820/info.json new file mode 100644 index 00000000..fed81618 --- /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 00000000..5d8e1811 Binary files /dev/null and b/blockchains/ethereum/assets/0x5cb95099a2C7e3C8187fbca6eFe5ba222b5bA820/logo.png differ diff --git a/blockchains/ethereum/assets/0x5d285F735998F36631F678FF41fb56A10A4d0429/info.json b/blockchains/ethereum/assets/0x5d285F735998F36631F678FF41fb56A10A4d0429/info.json new file mode 100644 index 00000000..10910059 --- /dev/null +++ b/blockchains/ethereum/assets/0x5d285F735998F36631F678FF41fb56A10A4d0429/info.json @@ -0,0 +1,11 @@ +{ + "name": "MixMarvel Token", + "symbol": "MIX", + "type": "ERC20", + "decimals": 18, + "description": "MixMarvel is a global game publishing platform based on blockchain technology.", + "website": "https://www.mixmarvel.com/", + "explorer": "https://etherscan.io/token/0x5d285F735998F36631F678FF41fb56A10A4d0429", + "status": "active", + "id": "0x5d285F735998F36631F678FF41fb56A10A4d0429" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5d285F735998F36631F678FF41fb56A10A4d0429/logo.png b/blockchains/ethereum/assets/0x5d285F735998F36631F678FF41fb56A10A4d0429/logo.png new file mode 100644 index 00000000..1b2678fb Binary files /dev/null and b/blockchains/ethereum/assets/0x5d285F735998F36631F678FF41fb56A10A4d0429/logo.png differ diff --git a/blockchains/ethereum/assets/0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643/info.json b/blockchains/ethereum/assets/0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643/info.json new file mode 100644 index 00000000..fae929d4 --- /dev/null +++ b/blockchains/ethereum/assets/0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643/info.json @@ -0,0 +1,11 @@ +{ + "name": "Compound Dai", + "symbol": "cDAI", + "type": "ERC20", + "decimals": 8, + "description": "Compound is an open-source, autonomous protocol built for developers, to unlock a universe of new financial applications. Interest and borrowing, for the open financial system.", + "website": "https://compound.finance/", + "explorer": "https://etherscan.io/token/0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643", + "status": "active", + "id": "0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643/logo.png b/blockchains/ethereum/assets/0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643/logo.png new file mode 100644 index 00000000..fe655839 Binary files /dev/null and b/blockchains/ethereum/assets/0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643/logo.png differ diff --git a/blockchains/ethereum/assets/0x5d4481675fC07dee43f5DBC1Cf17eB3DbE212a9D/info.json b/blockchains/ethereum/assets/0x5d4481675fC07dee43f5DBC1Cf17eB3DbE212a9D/info.json new file mode 100644 index 00000000..99dc3e4f --- /dev/null +++ b/blockchains/ethereum/assets/0x5d4481675fC07dee43f5DBC1Cf17eB3DbE212a9D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tyche Share", + "symbol": "TYS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5d4481675fC07dee43f5DBC1Cf17eB3DbE212a9D", + "status": "abandoned", + "id": "0x5d4481675fC07dee43f5DBC1Cf17eB3DbE212a9D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5d4481675fC07dee43f5DBC1Cf17eB3DbE212a9D/logo.png b/blockchains/ethereum/assets/0x5d4481675fC07dee43f5DBC1Cf17eB3DbE212a9D/logo.png new file mode 100644 index 00000000..f6f8668c Binary files /dev/null and b/blockchains/ethereum/assets/0x5d4481675fC07dee43f5DBC1Cf17eB3DbE212a9D/logo.png differ diff --git a/blockchains/ethereum/assets/0x5d48F293BaED247A2D0189058bA37aa238bD4725/info.json b/blockchains/ethereum/assets/0x5d48F293BaED247A2D0189058bA37aa238bD4725/info.json new file mode 100644 index 00000000..0e154a25 --- /dev/null +++ b/blockchains/ethereum/assets/0x5d48F293BaED247A2D0189058bA37aa238bD4725/info.json @@ -0,0 +1,11 @@ +{ + "name": "NeuroChain Clausius", + "symbol": "NCC", + "type": "ERC20", + "decimals": 18, + "description": "NeuroChain will deliver a protocol to create simple and scalable business applications.", + "website": "https://www.neurochaintech.io/", + "explorer": "https://etherscan.io/token/0x5d48F293BaED247A2D0189058bA37aa238bD4725", + "status": "active", + "id": "0x5d48F293BaED247A2D0189058bA37aa238bD4725" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5d48F293BaED247A2D0189058bA37aa238bD4725/logo.png b/blockchains/ethereum/assets/0x5d48F293BaED247A2D0189058bA37aa238bD4725/logo.png new file mode 100644 index 00000000..f18a2b8f Binary files /dev/null and b/blockchains/ethereum/assets/0x5d48F293BaED247A2D0189058bA37aa238bD4725/logo.png differ diff --git a/blockchains/ethereum/assets/0x5d4ABC77B8405aD177d8ac6682D584ecbFd46CEc/info.json b/blockchains/ethereum/assets/0x5d4ABC77B8405aD177d8ac6682D584ecbFd46CEc/info.json new file mode 100644 index 00000000..8d0476d6 --- /dev/null +++ b/blockchains/ethereum/assets/0x5d4ABC77B8405aD177d8ac6682D584ecbFd46CEc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Primas Token", + "symbol": "PST", + "type": "ERC20", + "decimals": 18, + "description": "Primas is a platform for high-quality content centred in Distributed Trusted Content Protocol or DTCP.", + "website": "https://primas.io/", + "explorer": "https://etherscan.io/token/0x5d4ABC77B8405aD177d8ac6682D584ecbFd46CEc", + "status": "active", + "id": "0x5d4ABC77B8405aD177d8ac6682D584ecbFd46CEc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5d4ABC77B8405aD177d8ac6682D584ecbFd46CEc/logo.png b/blockchains/ethereum/assets/0x5d4ABC77B8405aD177d8ac6682D584ecbFd46CEc/logo.png new file mode 100644 index 00000000..2144e3e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x5d4ABC77B8405aD177d8ac6682D584ecbFd46CEc/logo.png differ diff --git a/blockchains/ethereum/assets/0x5d51FCceD3114A8bb5E90cDD0f9d682bCbCC5393/info.json b/blockchains/ethereum/assets/0x5d51FCceD3114A8bb5E90cDD0f9d682bCbCC5393/info.json new file mode 100644 index 00000000..ee4d5e09 --- /dev/null +++ b/blockchains/ethereum/assets/0x5d51FCceD3114A8bb5E90cDD0f9d682bCbCC5393/info.json @@ -0,0 +1,11 @@ +{ + "name": "B2BX", + "website": "https://b2bx.exchange", + "description": "The first official provider of cryptocurrency liquidity.", + "explorer": "https://etherscan.io/token/0x5d51FCceD3114A8bb5E90cDD0f9d682bCbCC5393", + "type": "ERC20", + "symbol": "B2BX", + "decimals": 18, + "status": "active", + "id": "0x5d51FCceD3114A8bb5E90cDD0f9d682bCbCC5393" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5d51FCceD3114A8bb5E90cDD0f9d682bCbCC5393/logo.png b/blockchains/ethereum/assets/0x5d51FCceD3114A8bb5E90cDD0f9d682bCbCC5393/logo.png new file mode 100644 index 00000000..3326b3a3 Binary files /dev/null and b/blockchains/ethereum/assets/0x5d51FCceD3114A8bb5E90cDD0f9d682bCbCC5393/logo.png differ diff --git a/blockchains/ethereum/assets/0x5d551fA77ec2C7dd1387B626c4f33235c3885199/info.json b/blockchains/ethereum/assets/0x5d551fA77ec2C7dd1387B626c4f33235c3885199/info.json new file mode 100644 index 00000000..8a729d7f --- /dev/null +++ b/blockchains/ethereum/assets/0x5d551fA77ec2C7dd1387B626c4f33235c3885199/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlockSports", + "symbol": "BSP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5d551fA77ec2C7dd1387B626c4f33235c3885199", + "status": "abandoned", + "id": "0x5d551fA77ec2C7dd1387B626c4f33235c3885199" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5d551fA77ec2C7dd1387B626c4f33235c3885199/logo.png b/blockchains/ethereum/assets/0x5d551fA77ec2C7dd1387B626c4f33235c3885199/logo.png new file mode 100644 index 00000000..20ee5910 Binary files /dev/null and b/blockchains/ethereum/assets/0x5d551fA77ec2C7dd1387B626c4f33235c3885199/logo.png differ diff --git a/blockchains/ethereum/assets/0x5d60d8d7eF6d37E16EBABc324de3bE57f135e0BC/info.json b/blockchains/ethereum/assets/0x5d60d8d7eF6d37E16EBABc324de3bE57f135e0BC/info.json new file mode 100644 index 00000000..8331a28d --- /dev/null +++ b/blockchains/ethereum/assets/0x5d60d8d7eF6d37E16EBABc324de3bE57f135e0BC/info.json @@ -0,0 +1,11 @@ +{ + "name": "MyBit", + "symbol": "MYB", + "type": "ERC20", + "decimals": 18, + "description": "Our vision is creating a future where people don't have to work and machines pay humans.", + "website": "https://mybit.io/", + "explorer": "https://etherscan.io/token/0x5d60d8d7eF6d37E16EBABc324de3bE57f135e0BC", + "status": "active", + "id": "0x5d60d8d7eF6d37E16EBABc324de3bE57f135e0BC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5d60d8d7eF6d37E16EBABc324de3bE57f135e0BC/logo.png b/blockchains/ethereum/assets/0x5d60d8d7eF6d37E16EBABc324de3bE57f135e0BC/logo.png new file mode 100644 index 00000000..fca1572d Binary files /dev/null and b/blockchains/ethereum/assets/0x5d60d8d7eF6d37E16EBABc324de3bE57f135e0BC/logo.png differ diff --git a/blockchains/ethereum/assets/0x5d7F6540b8d592E81deF42904C853a6DD01bD486/info.json b/blockchains/ethereum/assets/0x5d7F6540b8d592E81deF42904C853a6DD01bD486/info.json new file mode 100644 index 00000000..e9d6da00 --- /dev/null +++ b/blockchains/ethereum/assets/0x5d7F6540b8d592E81deF42904C853a6DD01bD486/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bizcoin", + "symbol": "BIZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5d7F6540b8d592E81deF42904C853a6DD01bD486", + "status": "abandoned", + "id": "0x5d7F6540b8d592E81deF42904C853a6DD01bD486" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5d7F6540b8d592E81deF42904C853a6DD01bD486/logo.png b/blockchains/ethereum/assets/0x5d7F6540b8d592E81deF42904C853a6DD01bD486/logo.png new file mode 100644 index 00000000..3a39aa30 Binary files /dev/null and b/blockchains/ethereum/assets/0x5d7F6540b8d592E81deF42904C853a6DD01bD486/logo.png differ diff --git a/blockchains/ethereum/assets/0x5d81a1DDB8E51D3f7f68C0698CeE1193FC2b07e2/info.json b/blockchains/ethereum/assets/0x5d81a1DDB8E51D3f7f68C0698CeE1193FC2b07e2/info.json new file mode 100644 index 00000000..ba618d8a --- /dev/null +++ b/blockchains/ethereum/assets/0x5d81a1DDB8E51D3f7f68C0698CeE1193FC2b07e2/info.json @@ -0,0 +1,11 @@ +{ + "name": "USD Asset", + "symbol": "USDA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5d81a1DDB8E51D3f7f68C0698CeE1193FC2b07e2", + "status": "abandoned", + "id": "0x5d81a1DDB8E51D3f7f68C0698CeE1193FC2b07e2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5d81a1DDB8E51D3f7f68C0698CeE1193FC2b07e2/logo.png b/blockchains/ethereum/assets/0x5d81a1DDB8E51D3f7f68C0698CeE1193FC2b07e2/logo.png new file mode 100644 index 00000000..95b7f7c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x5d81a1DDB8E51D3f7f68C0698CeE1193FC2b07e2/logo.png differ diff --git a/blockchains/ethereum/assets/0x5d8cE06A40fB101895bE5b6560931b92a1b3444F/info.json b/blockchains/ethereum/assets/0x5d8cE06A40fB101895bE5b6560931b92a1b3444F/info.json new file mode 100644 index 00000000..d8eb02a3 --- /dev/null +++ b/blockchains/ethereum/assets/0x5d8cE06A40fB101895bE5b6560931b92a1b3444F/info.json @@ -0,0 +1,11 @@ +{ + "name": "TAGZ", + "symbol": "TAGZ", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5d8cE06A40fB101895bE5b6560931b92a1b3444F", + "status": "abandoned", + "id": "0x5d8cE06A40fB101895bE5b6560931b92a1b3444F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5d8cE06A40fB101895bE5b6560931b92a1b3444F/logo.png b/blockchains/ethereum/assets/0x5d8cE06A40fB101895bE5b6560931b92a1b3444F/logo.png new file mode 100644 index 00000000..449c3c23 Binary files /dev/null and b/blockchains/ethereum/assets/0x5d8cE06A40fB101895bE5b6560931b92a1b3444F/logo.png differ diff --git a/blockchains/ethereum/assets/0x5dBA63c221d7A584795431cE01Ecd641A1798416/info.json b/blockchains/ethereum/assets/0x5dBA63c221d7A584795431cE01Ecd641A1798416/info.json new file mode 100644 index 00000000..c35b8844 --- /dev/null +++ b/blockchains/ethereum/assets/0x5dBA63c221d7A584795431cE01Ecd641A1798416/info.json @@ -0,0 +1,11 @@ +{ + "name": "Oratium", + "symbol": "ORT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.oratium.io", + "explorer": "https://etherscan.io/token/0x5dBA63c221d7A584795431cE01Ecd641A1798416", + "status": "abandoned", + "id": "0x5dBA63c221d7A584795431cE01Ecd641A1798416" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5dBA63c221d7A584795431cE01Ecd641A1798416/logo.png b/blockchains/ethereum/assets/0x5dBA63c221d7A584795431cE01Ecd641A1798416/logo.png new file mode 100644 index 00000000..88fc7d1b Binary files /dev/null and b/blockchains/ethereum/assets/0x5dBA63c221d7A584795431cE01Ecd641A1798416/logo.png differ diff --git a/blockchains/ethereum/assets/0x5dbcF33D8c2E976c6b560249878e6F1491Bca25c/info.json b/blockchains/ethereum/assets/0x5dbcF33D8c2E976c6b560249878e6F1491Bca25c/info.json new file mode 100644 index 00000000..9be2868e --- /dev/null +++ b/blockchains/ethereum/assets/0x5dbcF33D8c2E976c6b560249878e6F1491Bca25c/info.json @@ -0,0 +1,18 @@ +{ + "name": "yUSD", + "website": "https://yearn.finance/", + "description": "yUSD makes DeFi simple by automatically maximizing yield and minimizing risk for our depositors. On the backend, the yCRV Vault implements modular, autonomous, yield-aware strategies. These are created and regularly updated by the best minds in DeFi, all under the control of Yearn governance.", + "explorer": "https://etherscan.io/token/0x5dbcF33D8c2E976c6b560249878e6F1491Bca25c", + "research": "https://research.binance.com/en/projects/yearnfinance", + "type": "ERC20", + "symbol": "yyDAI+yUSDC+yUSDT+yTUSD", + "decimals": 18, + "status": "active", + "id": "0x5dbcF33D8c2E976c6b560249878e6F1491Bca25c", + "links": [ + { + "name": "github", + "url": "https://github.com/iearn-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5dbcF33D8c2E976c6b560249878e6F1491Bca25c/logo.png b/blockchains/ethereum/assets/0x5dbcF33D8c2E976c6b560249878e6F1491Bca25c/logo.png new file mode 100644 index 00000000..2e09e443 Binary files /dev/null and b/blockchains/ethereum/assets/0x5dbcF33D8c2E976c6b560249878e6F1491Bca25c/logo.png differ diff --git a/blockchains/ethereum/assets/0x5dbe296F97B23C4A6AA6183D73e574D02bA5c719/info.json b/blockchains/ethereum/assets/0x5dbe296F97B23C4A6AA6183D73e574D02bA5c719/info.json new file mode 100644 index 00000000..92506ecf --- /dev/null +++ b/blockchains/ethereum/assets/0x5dbe296F97B23C4A6AA6183D73e574D02bA5c719/info.json @@ -0,0 +1,11 @@ +{ + "name": "Level-Up Coin", + "symbol": "LUC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://play2live.io/", + "explorer": "https://etherscan.io/token/0x5dbe296F97B23C4A6AA6183D73e574D02bA5c719", + "status": "abandoned", + "id": "0x5dbe296F97B23C4A6AA6183D73e574D02bA5c719" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5dbe296F97B23C4A6AA6183D73e574D02bA5c719/logo.png b/blockchains/ethereum/assets/0x5dbe296F97B23C4A6AA6183D73e574D02bA5c719/logo.png new file mode 100755 index 00000000..25e637ec Binary files /dev/null and b/blockchains/ethereum/assets/0x5dbe296F97B23C4A6AA6183D73e574D02bA5c719/logo.png differ diff --git a/blockchains/ethereum/assets/0x5dc60C4D5e75D22588FA17fFEB90A63E535efCE0/info.json b/blockchains/ethereum/assets/0x5dc60C4D5e75D22588FA17fFEB90A63E535efCE0/info.json new file mode 100644 index 00000000..e1d6415e --- /dev/null +++ b/blockchains/ethereum/assets/0x5dc60C4D5e75D22588FA17fFEB90A63E535efCE0/info.json @@ -0,0 +1,11 @@ +{ + "name": "dKargo", + "symbol": "DKA", + "type": "ERC20", + "decimals": 18, + "description": "A decentralized and cooperative protocol for next generation logistics .", + "website": "https://dkargo.io/main_en.html", + "explorer": "https://etherscan.io/token/0x5dc60C4D5e75D22588FA17fFEB90A63E535efCE0", + "status": "active", + "id": "0x5dc60C4D5e75D22588FA17fFEB90A63E535efCE0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5dc60C4D5e75D22588FA17fFEB90A63E535efCE0/logo.png b/blockchains/ethereum/assets/0x5dc60C4D5e75D22588FA17fFEB90A63E535efCE0/logo.png new file mode 100644 index 00000000..e3b8ed8b Binary files /dev/null and b/blockchains/ethereum/assets/0x5dc60C4D5e75D22588FA17fFEB90A63E535efCE0/logo.png differ diff --git a/blockchains/ethereum/assets/0x5de5Aca787818a2d485E278727cE575D54FedbE4/info.json b/blockchains/ethereum/assets/0x5de5Aca787818a2d485E278727cE575D54FedbE4/info.json new file mode 100644 index 00000000..84d1964d --- /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 00000000..6436d787 Binary files /dev/null and b/blockchains/ethereum/assets/0x5de5Aca787818a2d485E278727cE575D54FedbE4/logo.png differ diff --git a/blockchains/ethereum/assets/0x5df94780f00140FE72d239D0D261f7797E3Fbd1B/info.json b/blockchains/ethereum/assets/0x5df94780f00140FE72d239D0D261f7797E3Fbd1B/info.json new file mode 100644 index 00000000..ad95e44a --- /dev/null +++ b/blockchains/ethereum/assets/0x5df94780f00140FE72d239D0D261f7797E3Fbd1B/info.json @@ -0,0 +1,11 @@ +{ + "name": "QChi Chain", + "website": "https://qchichain.com/", + "description": "QChi Chain (QHC) is a cross industry application platform that brings blockchain technology to a wide range of industries.", + "explorer": "https://etherscan.io/token/0x5df94780f00140FE72d239D0D261f7797E3Fbd1B", + "type": "ERC20", + "symbol": "QHC", + "decimals": 18, + "status": "active", + "id": "0x5df94780f00140FE72d239D0D261f7797E3Fbd1B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5df94780f00140FE72d239D0D261f7797E3Fbd1B/logo.png b/blockchains/ethereum/assets/0x5df94780f00140FE72d239D0D261f7797E3Fbd1B/logo.png new file mode 100644 index 00000000..635eb05a Binary files /dev/null and b/blockchains/ethereum/assets/0x5df94780f00140FE72d239D0D261f7797E3Fbd1B/logo.png differ diff --git a/blockchains/ethereum/assets/0x5e040aC72140F0617bC24aB7134c0C6eCae0e965/info.json b/blockchains/ethereum/assets/0x5e040aC72140F0617bC24aB7134c0C6eCae0e965/info.json new file mode 100644 index 00000000..ae8b7515 --- /dev/null +++ b/blockchains/ethereum/assets/0x5e040aC72140F0617bC24aB7134c0C6eCae0e965/info.json @@ -0,0 +1,11 @@ +{ + "name": "Folgory Coin", + "symbol": "FLG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5e040aC72140F0617bC24aB7134c0C6eCae0e965", + "status": "abandoned", + "id": "0x5e040aC72140F0617bC24aB7134c0C6eCae0e965" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5e040aC72140F0617bC24aB7134c0C6eCae0e965/logo.png b/blockchains/ethereum/assets/0x5e040aC72140F0617bC24aB7134c0C6eCae0e965/logo.png new file mode 100644 index 00000000..4e722138 Binary files /dev/null and b/blockchains/ethereum/assets/0x5e040aC72140F0617bC24aB7134c0C6eCae0e965/logo.png differ diff --git a/blockchains/ethereum/assets/0x5e0aF01930c8dc676a6Dc7133Bd86370a0bE3953/info.json b/blockchains/ethereum/assets/0x5e0aF01930c8dc676a6Dc7133Bd86370a0bE3953/info.json new file mode 100644 index 00000000..81625642 --- /dev/null +++ b/blockchains/ethereum/assets/0x5e0aF01930c8dc676a6Dc7133Bd86370a0bE3953/info.json @@ -0,0 +1,11 @@ +{ + "name": "Touch. Token", + "symbol": "TST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5e0aF01930c8dc676a6Dc7133Bd86370a0bE3953", + "status": "abandoned", + "id": "0x5e0aF01930c8dc676a6Dc7133Bd86370a0bE3953" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5e0aF01930c8dc676a6Dc7133Bd86370a0bE3953/logo.png b/blockchains/ethereum/assets/0x5e0aF01930c8dc676a6Dc7133Bd86370a0bE3953/logo.png new file mode 100755 index 00000000..a0d8b177 Binary files /dev/null and b/blockchains/ethereum/assets/0x5e0aF01930c8dc676a6Dc7133Bd86370a0bE3953/logo.png differ diff --git a/blockchains/ethereum/assets/0x5e13427Aa62028CdB937228906837f1aba911956/info.json b/blockchains/ethereum/assets/0x5e13427Aa62028CdB937228906837f1aba911956/info.json new file mode 100644 index 00000000..5bdea854 --- /dev/null +++ b/blockchains/ethereum/assets/0x5e13427Aa62028CdB937228906837f1aba911956/info.json @@ -0,0 +1,11 @@ +{ + "name": "BX2019", + "symbol": "BX2019", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5e13427Aa62028CdB937228906837f1aba911956", + "status": "abandoned", + "id": "0x5e13427Aa62028CdB937228906837f1aba911956" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5e13427Aa62028CdB937228906837f1aba911956/logo.png b/blockchains/ethereum/assets/0x5e13427Aa62028CdB937228906837f1aba911956/logo.png new file mode 100644 index 00000000..6439449a Binary files /dev/null and b/blockchains/ethereum/assets/0x5e13427Aa62028CdB937228906837f1aba911956/logo.png differ diff --git a/blockchains/ethereum/assets/0x5e29CF3E3fEd4df50aCab95f8268e9ee26Ea36f2/info.json b/blockchains/ethereum/assets/0x5e29CF3E3fEd4df50aCab95f8268e9ee26Ea36f2/info.json new file mode 100644 index 00000000..e550af7a --- /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 00000000..5f20738c Binary files /dev/null and b/blockchains/ethereum/assets/0x5e29CF3E3fEd4df50aCab95f8268e9ee26Ea36f2/logo.png differ diff --git a/blockchains/ethereum/assets/0x5e3346444010135322268a4630d2ED5F8D09446c/info.json b/blockchains/ethereum/assets/0x5e3346444010135322268a4630d2ED5F8D09446c/info.json new file mode 100644 index 00000000..6e6d6f51 --- /dev/null +++ b/blockchains/ethereum/assets/0x5e3346444010135322268a4630d2ED5F8D09446c/info.json @@ -0,0 +1,11 @@ +{ + "name": "LockChain", + "symbol": "LOC", + "type": "ERC20", + "decimals": 18, + "description": "LockTrip.com is a blockchain-based travel marketplace that allows users to save up to 60% on their bookings by cutting out middlemen and their commissions. Choose among various payment methods such as credit card, popular cryptocurrencies and the native LOC token to bypass payment fees.", + "website": "https://locktrip.com/", + "explorer": "https://etherscan.io/token/0x5e3346444010135322268a4630d2ED5F8D09446c", + "status": "active", + "id": "0x5e3346444010135322268a4630d2ED5F8D09446c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5e3346444010135322268a4630d2ED5F8D09446c/logo.png b/blockchains/ethereum/assets/0x5e3346444010135322268a4630d2ED5F8D09446c/logo.png new file mode 100644 index 00000000..c4ced2e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x5e3346444010135322268a4630d2ED5F8D09446c/logo.png differ diff --git a/blockchains/ethereum/assets/0x5e3845A1d78DB544613EdbE43Dc1Ea497266d3b8/info.json b/blockchains/ethereum/assets/0x5e3845A1d78DB544613EdbE43Dc1Ea497266d3b8/info.json new file mode 100644 index 00000000..41d5b3fd --- /dev/null +++ b/blockchains/ethereum/assets/0x5e3845A1d78DB544613EdbE43Dc1Ea497266d3b8/info.json @@ -0,0 +1,11 @@ +{ + "name": "LNX Protocol", + "symbol": "LNX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://lnxprotocol.io/", + "explorer": "https://etherscan.io/token/0x5e3845A1d78DB544613EdbE43Dc1Ea497266d3b8", + "status": "abandoned", + "id": "0x5e3845A1d78DB544613EdbE43Dc1Ea497266d3b8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5e3845A1d78DB544613EdbE43Dc1Ea497266d3b8/logo.png b/blockchains/ethereum/assets/0x5e3845A1d78DB544613EdbE43Dc1Ea497266d3b8/logo.png new file mode 100644 index 00000000..986dc570 Binary files /dev/null and b/blockchains/ethereum/assets/0x5e3845A1d78DB544613EdbE43Dc1Ea497266d3b8/logo.png differ diff --git a/blockchains/ethereum/assets/0x5e4ABE6419650CA839Ce5BB7Db422b881a6064bB/info.json b/blockchains/ethereum/assets/0x5e4ABE6419650CA839Ce5BB7Db422b881a6064bB/info.json new file mode 100644 index 00000000..bce0d22b --- /dev/null +++ b/blockchains/ethereum/assets/0x5e4ABE6419650CA839Ce5BB7Db422b881a6064bB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wi Coin", + "symbol": "WiC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.cryptowi.com/", + "explorer": "https://etherscan.io/token/0x5e4ABE6419650CA839Ce5BB7Db422b881a6064bB", + "status": "abandoned", + "id": "0x5e4ABE6419650CA839Ce5BB7Db422b881a6064bB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5e4ABE6419650CA839Ce5BB7Db422b881a6064bB/logo.png b/blockchains/ethereum/assets/0x5e4ABE6419650CA839Ce5BB7Db422b881a6064bB/logo.png new file mode 100644 index 00000000..0f9fe869 Binary files /dev/null and b/blockchains/ethereum/assets/0x5e4ABE6419650CA839Ce5BB7Db422b881a6064bB/logo.png differ diff --git a/blockchains/ethereum/assets/0x5e6016Ae7d7C49d347dcF834860B9f3Ee282812b/info.json b/blockchains/ethereum/assets/0x5e6016Ae7d7C49d347dcF834860B9f3Ee282812b/info.json new file mode 100644 index 00000000..0d2c460b --- /dev/null +++ b/blockchains/ethereum/assets/0x5e6016Ae7d7C49d347dcF834860B9f3Ee282812b/info.json @@ -0,0 +1,11 @@ +{ + "name": "EZToken", + "symbol": "EZT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5e6016Ae7d7C49d347dcF834860B9f3Ee282812b", + "status": "abandoned", + "id": "0x5e6016Ae7d7C49d347dcF834860B9f3Ee282812b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5e6016Ae7d7C49d347dcF834860B9f3Ee282812b/logo.png b/blockchains/ethereum/assets/0x5e6016Ae7d7C49d347dcF834860B9f3Ee282812b/logo.png new file mode 100644 index 00000000..32d77119 Binary files /dev/null and b/blockchains/ethereum/assets/0x5e6016Ae7d7C49d347dcF834860B9f3Ee282812b/logo.png differ diff --git a/blockchains/ethereum/assets/0x5e6364d4534F780Ae053B93b45c8B8840E683Eb7/info.json b/blockchains/ethereum/assets/0x5e6364d4534F780Ae053B93b45c8B8840E683Eb7/info.json new file mode 100644 index 00000000..ad63310c --- /dev/null +++ b/blockchains/ethereum/assets/0x5e6364d4534F780Ae053B93b45c8B8840E683Eb7/info.json @@ -0,0 +1,11 @@ +{ + "name": "NOTES", + "symbol": "NOTES", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5e6364d4534F780Ae053B93b45c8B8840E683Eb7", + "status": "abandoned", + "id": "0x5e6364d4534F780Ae053B93b45c8B8840E683Eb7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5e6364d4534F780Ae053B93b45c8B8840E683Eb7/logo.png b/blockchains/ethereum/assets/0x5e6364d4534F780Ae053B93b45c8B8840E683Eb7/logo.png new file mode 100644 index 00000000..1a92c451 Binary files /dev/null and b/blockchains/ethereum/assets/0x5e6364d4534F780Ae053B93b45c8B8840E683Eb7/logo.png differ diff --git a/blockchains/ethereum/assets/0x5e7370A6a6E08ec756434bC2eF97D71d87587126/info.json b/blockchains/ethereum/assets/0x5e7370A6a6E08ec756434bC2eF97D71d87587126/info.json new file mode 100644 index 00000000..85bd3c20 --- /dev/null +++ b/blockchains/ethereum/assets/0x5e7370A6a6E08ec756434bC2eF97D71d87587126/info.json @@ -0,0 +1,11 @@ +{ + "name": "EL REY", + "symbol": "XRY", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5e7370A6a6E08ec756434bC2eF97D71d87587126", + "status": "abandoned", + "id": "0x5e7370A6a6E08ec756434bC2eF97D71d87587126" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5e7370A6a6E08ec756434bC2eF97D71d87587126/logo.png b/blockchains/ethereum/assets/0x5e7370A6a6E08ec756434bC2eF97D71d87587126/logo.png new file mode 100644 index 00000000..121899e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x5e7370A6a6E08ec756434bC2eF97D71d87587126/logo.png differ diff --git a/blockchains/ethereum/assets/0x5e74C9036fb86BD7eCdcb084a0673EFc32eA31cb/info.json b/blockchains/ethereum/assets/0x5e74C9036fb86BD7eCdcb084a0673EFc32eA31cb/info.json new file mode 100644 index 00000000..1e2019ab --- /dev/null +++ b/blockchains/ethereum/assets/0x5e74C9036fb86BD7eCdcb084a0673EFc32eA31cb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Synth sETH", + "symbol": "sETH", + "type": "ERC20", + "decimals": 18, + "description": "A synthetic asset issued by the Synthetix protocol which tracks the price of Ether (ETH). ETH is the native digital currency of the Ethereum blockchain, a smart contract platform that enables developers to build decentralized applications.", + "website": "https://www.synthetix.io/", + "explorer": "https://etherscan.io/token/0x5e74C9036fb86BD7eCdcb084a0673EFc32eA31cb", + "status": "active", + "id": "0x5e74C9036fb86BD7eCdcb084a0673EFc32eA31cb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5e74C9036fb86BD7eCdcb084a0673EFc32eA31cb/logo.png b/blockchains/ethereum/assets/0x5e74C9036fb86BD7eCdcb084a0673EFc32eA31cb/logo.png new file mode 100644 index 00000000..4a8adcc2 Binary files /dev/null and b/blockchains/ethereum/assets/0x5e74C9036fb86BD7eCdcb084a0673EFc32eA31cb/logo.png differ diff --git a/blockchains/ethereum/assets/0x5e7f7fA613FF78b5fb0373D873cf291EBE9AbD7C/info.json b/blockchains/ethereum/assets/0x5e7f7fA613FF78b5fb0373D873cf291EBE9AbD7C/info.json new file mode 100644 index 00000000..1f7be997 --- /dev/null +++ b/blockchains/ethereum/assets/0x5e7f7fA613FF78b5fb0373D873cf291EBE9AbD7C/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-12/30M12", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5e7f7fA613FF78b5fb0373D873cf291EBE9AbD7C", + "status": "abandoned", + "id": "0x5e7f7fA613FF78b5fb0373D873cf291EBE9AbD7C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5e7f7fA613FF78b5fb0373D873cf291EBE9AbD7C/logo.png b/blockchains/ethereum/assets/0x5e7f7fA613FF78b5fb0373D873cf291EBE9AbD7C/logo.png new file mode 100644 index 00000000..fe7c28a9 Binary files /dev/null and b/blockchains/ethereum/assets/0x5e7f7fA613FF78b5fb0373D873cf291EBE9AbD7C/logo.png differ diff --git a/blockchains/ethereum/assets/0x5e8816e9f910C472a18617B64B75711132E4678C/info.json b/blockchains/ethereum/assets/0x5e8816e9f910C472a18617B64B75711132E4678C/info.json new file mode 100644 index 00000000..956038ae --- /dev/null +++ b/blockchains/ethereum/assets/0x5e8816e9f910C472a18617B64B75711132E4678C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Avengers Coin", + "symbol": "AVE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5e8816e9f910C472a18617B64B75711132E4678C", + "status": "abandoned", + "id": "0x5e8816e9f910C472a18617B64B75711132E4678C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5e8816e9f910C472a18617B64B75711132E4678C/logo.png b/blockchains/ethereum/assets/0x5e8816e9f910C472a18617B64B75711132E4678C/logo.png new file mode 100644 index 00000000..683b6fd6 Binary files /dev/null and b/blockchains/ethereum/assets/0x5e8816e9f910C472a18617B64B75711132E4678C/logo.png differ diff --git a/blockchains/ethereum/assets/0x5e8F855966D638135a968861E80DdA722291B06d/info.json b/blockchains/ethereum/assets/0x5e8F855966D638135a968861E80DdA722291B06d/info.json new file mode 100644 index 00000000..8c088493 --- /dev/null +++ b/blockchains/ethereum/assets/0x5e8F855966D638135a968861E80DdA722291B06d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coinvest COIN V2 Token", + "symbol": "COIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://coinve.st", + "explorer": "https://etherscan.io/token/0x5e8F855966D638135a968861E80DdA722291B06d", + "status": "abandoned", + "id": "0x5e8F855966D638135a968861E80DdA722291B06d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5e8F855966D638135a968861E80DdA722291B06d/logo.png b/blockchains/ethereum/assets/0x5e8F855966D638135a968861E80DdA722291B06d/logo.png new file mode 100755 index 00000000..0100879d Binary files /dev/null and b/blockchains/ethereum/assets/0x5e8F855966D638135a968861E80DdA722291B06d/logo.png differ diff --git a/blockchains/ethereum/assets/0x5eBDd407FE6D47eC4af2DbBEf7d790100C567aB6/info.json b/blockchains/ethereum/assets/0x5eBDd407FE6D47eC4af2DbBEf7d790100C567aB6/info.json new file mode 100644 index 00000000..3423384c --- /dev/null +++ b/blockchains/ethereum/assets/0x5eBDd407FE6D47eC4af2DbBEf7d790100C567aB6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bmplfort", + "symbol": "BMPL", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5eBDd407FE6D47eC4af2DbBEf7d790100C567aB6", + "status": "abandoned", + "id": "0x5eBDd407FE6D47eC4af2DbBEf7d790100C567aB6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5eBDd407FE6D47eC4af2DbBEf7d790100C567aB6/logo.png b/blockchains/ethereum/assets/0x5eBDd407FE6D47eC4af2DbBEf7d790100C567aB6/logo.png new file mode 100644 index 00000000..3a0537de Binary files /dev/null and b/blockchains/ethereum/assets/0x5eBDd407FE6D47eC4af2DbBEf7d790100C567aB6/logo.png differ diff --git a/blockchains/ethereum/assets/0x5eF227F7cE4e96c9Ce90E32D4850545a6C5D099B/info.json b/blockchains/ethereum/assets/0x5eF227F7cE4e96c9Ce90E32D4850545a6C5D099B/info.json new file mode 100644 index 00000000..41379b86 --- /dev/null +++ b/blockchains/ethereum/assets/0x5eF227F7cE4e96c9Ce90E32D4850545a6C5D099B/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLUECHIPS", + "symbol": "BCHIP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.bluechips-token.com/", + "explorer": "https://etherscan.io/token/0x5eF227F7cE4e96c9Ce90E32D4850545a6C5D099B", + "status": "abandoned", + "id": "0x5eF227F7cE4e96c9Ce90E32D4850545a6C5D099B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5eF227F7cE4e96c9Ce90E32D4850545a6C5D099B/logo.png b/blockchains/ethereum/assets/0x5eF227F7cE4e96c9Ce90E32D4850545a6C5D099B/logo.png new file mode 100644 index 00000000..8a315e00 Binary files /dev/null and b/blockchains/ethereum/assets/0x5eF227F7cE4e96c9Ce90E32D4850545a6C5D099B/logo.png differ diff --git a/blockchains/ethereum/assets/0x5ec41a158e09De1dBA6410AEbe72f504f2428052/info.json b/blockchains/ethereum/assets/0x5ec41a158e09De1dBA6410AEbe72f504f2428052/info.json new file mode 100644 index 00000000..81121e69 --- /dev/null +++ b/blockchains/ethereum/assets/0x5ec41a158e09De1dBA6410AEbe72f504f2428052/info.json @@ -0,0 +1,11 @@ +{ + "name": "COPA Coin", + "symbol": "COPA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5ec41a158e09De1dBA6410AEbe72f504f2428052", + "status": "abandoned", + "id": "0x5ec41a158e09De1dBA6410AEbe72f504f2428052" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5ec41a158e09De1dBA6410AEbe72f504f2428052/logo.png b/blockchains/ethereum/assets/0x5ec41a158e09De1dBA6410AEbe72f504f2428052/logo.png new file mode 100644 index 00000000..eefd7cd9 Binary files /dev/null and b/blockchains/ethereum/assets/0x5ec41a158e09De1dBA6410AEbe72f504f2428052/logo.png differ diff --git a/blockchains/ethereum/assets/0x5edA415009B984118e7061966B629b12733dff92/info.json b/blockchains/ethereum/assets/0x5edA415009B984118e7061966B629b12733dff92/info.json new file mode 100644 index 00000000..34344f93 --- /dev/null +++ b/blockchains/ethereum/assets/0x5edA415009B984118e7061966B629b12733dff92/info.json @@ -0,0 +1,11 @@ +{ + "name": "Super Radar", + "symbol": "SRADAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5edA415009B984118e7061966B629b12733dff92", + "status": "abandoned", + "id": "0x5edA415009B984118e7061966B629b12733dff92" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5edA415009B984118e7061966B629b12733dff92/logo.png b/blockchains/ethereum/assets/0x5edA415009B984118e7061966B629b12733dff92/logo.png new file mode 100644 index 00000000..496917a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x5edA415009B984118e7061966B629b12733dff92/logo.png differ diff --git a/blockchains/ethereum/assets/0x5f038e82bB69b6A52FeC7A4A38163340b98fb1e4/info.json b/blockchains/ethereum/assets/0x5f038e82bB69b6A52FeC7A4A38163340b98fb1e4/info.json new file mode 100644 index 00000000..e668930b --- /dev/null +++ b/blockchains/ethereum/assets/0x5f038e82bB69b6A52FeC7A4A38163340b98fb1e4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitpaid", + "website": "https://bitpaid.org/", + "description": "ERC-20 token for Bitpaid ecosystem.", + "explorer": "https://etherscan.io/token/0x5f038e82bB69b6A52FeC7A4A38163340b98fb1e4", + "type": "ERC20", + "symbol": "BTP", + "decimals": 18, + "status": "active", + "id": "0x5f038e82bB69b6A52FeC7A4A38163340b98fb1e4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5f038e82bB69b6A52FeC7A4A38163340b98fb1e4/logo.png b/blockchains/ethereum/assets/0x5f038e82bB69b6A52FeC7A4A38163340b98fb1e4/logo.png new file mode 100644 index 00000000..9d95d2ff Binary files /dev/null and b/blockchains/ethereum/assets/0x5f038e82bB69b6A52FeC7A4A38163340b98fb1e4/logo.png differ diff --git a/blockchains/ethereum/assets/0x5f1C478F23a2F14dd0a624121F61d9e74C4598a2/info.json b/blockchains/ethereum/assets/0x5f1C478F23a2F14dd0a624121F61d9e74C4598a2/info.json new file mode 100644 index 00000000..a0a9d4b4 --- /dev/null +++ b/blockchains/ethereum/assets/0x5f1C478F23a2F14dd0a624121F61d9e74C4598a2/info.json @@ -0,0 +1,11 @@ +{ + "name": "WOTER", + "symbol": "WOT", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5f1C478F23a2F14dd0a624121F61d9e74C4598a2", + "status": "abandoned", + "id": "0x5f1C478F23a2F14dd0a624121F61d9e74C4598a2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5f1C478F23a2F14dd0a624121F61d9e74C4598a2/logo.png b/blockchains/ethereum/assets/0x5f1C478F23a2F14dd0a624121F61d9e74C4598a2/logo.png new file mode 100755 index 00000000..5640c398 Binary files /dev/null and b/blockchains/ethereum/assets/0x5f1C478F23a2F14dd0a624121F61d9e74C4598a2/logo.png differ diff --git a/blockchains/ethereum/assets/0x5f3789907b35DCe5605b00C0bE0a7eCDBFa8A841/info.json b/blockchains/ethereum/assets/0x5f3789907b35DCe5605b00C0bE0a7eCDBFa8A841/info.json new file mode 100644 index 00000000..24cd7f9d --- /dev/null +++ b/blockchains/ethereum/assets/0x5f3789907b35DCe5605b00C0bE0a7eCDBFa8A841/info.json @@ -0,0 +1,11 @@ +{ + "name": "Content and Ad Network", + "symbol": "CAN", + "type": "ERC20", + "decimals": 18, + "description": "CAN is the token designed for advertising services basing on a constantly growing AD system being developed by MobiPromo.", + "website": "http://mobipromo.io/", + "explorer": "https://etherscan.io/token/0x5f3789907b35DCe5605b00C0bE0a7eCDBFa8A841", + "status": "active", + "id": "0x5f3789907b35DCe5605b00C0bE0a7eCDBFa8A841" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5f3789907b35DCe5605b00C0bE0a7eCDBFa8A841/logo.png b/blockchains/ethereum/assets/0x5f3789907b35DCe5605b00C0bE0a7eCDBFa8A841/logo.png new file mode 100644 index 00000000..637bd83e Binary files /dev/null and b/blockchains/ethereum/assets/0x5f3789907b35DCe5605b00C0bE0a7eCDBFa8A841/logo.png differ diff --git a/blockchains/ethereum/assets/0x5f51a196ED91Fb14E3B3650c30743675c9a429Be/info.json b/blockchains/ethereum/assets/0x5f51a196ED91Fb14E3B3650c30743675c9a429Be/info.json new file mode 100644 index 00000000..43085d7b --- /dev/null +++ b/blockchains/ethereum/assets/0x5f51a196ED91Fb14E3B3650c30743675c9a429Be/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Solar", + "symbol": "BTCS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5f51a196ED91Fb14E3B3650c30743675c9a429Be", + "status": "abandoned", + "id": "0x5f51a196ED91Fb14E3B3650c30743675c9a429Be" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5f51a196ED91Fb14E3B3650c30743675c9a429Be/logo.png b/blockchains/ethereum/assets/0x5f51a196ED91Fb14E3B3650c30743675c9a429Be/logo.png new file mode 100644 index 00000000..502b6b2e Binary files /dev/null and b/blockchains/ethereum/assets/0x5f51a196ED91Fb14E3B3650c30743675c9a429Be/logo.png differ diff --git a/blockchains/ethereum/assets/0x5f55D0f814eD8Ac0101538e2aE200BA4CCDb6FEF/info.json b/blockchains/ethereum/assets/0x5f55D0f814eD8Ac0101538e2aE200BA4CCDb6FEF/info.json new file mode 100644 index 00000000..5e640976 --- /dev/null +++ b/blockchains/ethereum/assets/0x5f55D0f814eD8Ac0101538e2aE200BA4CCDb6FEF/info.json @@ -0,0 +1,11 @@ +{ + "name": "OPENPAY", + "symbol": "OPY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5f55D0f814eD8Ac0101538e2aE200BA4CCDb6FEF", + "status": "abandoned", + "id": "0x5f55D0f814eD8Ac0101538e2aE200BA4CCDb6FEF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5f55D0f814eD8Ac0101538e2aE200BA4CCDb6FEF/logo.png b/blockchains/ethereum/assets/0x5f55D0f814eD8Ac0101538e2aE200BA4CCDb6FEF/logo.png new file mode 100644 index 00000000..a1286d5e Binary files /dev/null and b/blockchains/ethereum/assets/0x5f55D0f814eD8Ac0101538e2aE200BA4CCDb6FEF/logo.png differ diff --git a/blockchains/ethereum/assets/0x5f5f8a9C9775499b783171ac1979b4327ab60447/info.json b/blockchains/ethereum/assets/0x5f5f8a9C9775499b783171ac1979b4327ab60447/info.json new file mode 100644 index 00000000..c78b8880 --- /dev/null +++ b/blockchains/ethereum/assets/0x5f5f8a9C9775499b783171ac1979b4327ab60447/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fructus", + "symbol": "XFRC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5f5f8a9C9775499b783171ac1979b4327ab60447", + "status": "abandoned", + "id": "0x5f5f8a9C9775499b783171ac1979b4327ab60447" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5f5f8a9C9775499b783171ac1979b4327ab60447/logo.png b/blockchains/ethereum/assets/0x5f5f8a9C9775499b783171ac1979b4327ab60447/logo.png new file mode 100644 index 00000000..3719f5c6 Binary files /dev/null and b/blockchains/ethereum/assets/0x5f5f8a9C9775499b783171ac1979b4327ab60447/logo.png differ diff --git a/blockchains/ethereum/assets/0x5f75112bBB4E1aF516fBE3e21528C63DA2B6a1A5/info.json b/blockchains/ethereum/assets/0x5f75112bBB4E1aF516fBE3e21528C63DA2B6a1A5/info.json new file mode 100644 index 00000000..aea75311 --- /dev/null +++ b/blockchains/ethereum/assets/0x5f75112bBB4E1aF516fBE3e21528C63DA2B6a1A5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chess Coin", + "symbol": "CHESS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://brainiacchess.network/", + "explorer": "https://etherscan.io/token/0x5f75112bBB4E1aF516fBE3e21528C63DA2B6a1A5", + "status": "abandoned", + "id": "0x5f75112bBB4E1aF516fBE3e21528C63DA2B6a1A5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5f75112bBB4E1aF516fBE3e21528C63DA2B6a1A5/logo.png b/blockchains/ethereum/assets/0x5f75112bBB4E1aF516fBE3e21528C63DA2B6a1A5/logo.png new file mode 100644 index 00000000..345f97df Binary files /dev/null and b/blockchains/ethereum/assets/0x5f75112bBB4E1aF516fBE3e21528C63DA2B6a1A5/logo.png differ diff --git a/blockchains/ethereum/assets/0x5f7d95329e806Befa024982e91B7127393737249/info.json b/blockchains/ethereum/assets/0x5f7d95329e806Befa024982e91B7127393737249/info.json new file mode 100644 index 00000000..1a7bd0d2 --- /dev/null +++ b/blockchains/ethereum/assets/0x5f7d95329e806Befa024982e91B7127393737249/info.json @@ -0,0 +1,11 @@ +{ + "name": "BaapPay", + "symbol": "BAAP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5f7d95329e806Befa024982e91B7127393737249", + "status": "abandoned", + "id": "0x5f7d95329e806Befa024982e91B7127393737249" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5f7d95329e806Befa024982e91B7127393737249/logo.png b/blockchains/ethereum/assets/0x5f7d95329e806Befa024982e91B7127393737249/logo.png new file mode 100644 index 00000000..b9695d82 Binary files /dev/null and b/blockchains/ethereum/assets/0x5f7d95329e806Befa024982e91B7127393737249/logo.png differ diff --git a/blockchains/ethereum/assets/0x5f9172EcEeaC7bBac9DD6A8013bfA9a30F5E5628/info.json b/blockchains/ethereum/assets/0x5f9172EcEeaC7bBac9DD6A8013bfA9a30F5E5628/info.json new file mode 100644 index 00000000..232565d0 --- /dev/null +++ b/blockchains/ethereum/assets/0x5f9172EcEeaC7bBac9DD6A8013bfA9a30F5E5628/info.json @@ -0,0 +1,11 @@ +{ + "name": "SEXPOP Collective", + "symbol": "EXPOP", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5f9172EcEeaC7bBac9DD6A8013bfA9a30F5E5628", + "status": "abandoned", + "id": "0x5f9172EcEeaC7bBac9DD6A8013bfA9a30F5E5628" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5f9172EcEeaC7bBac9DD6A8013bfA9a30F5E5628/logo.png b/blockchains/ethereum/assets/0x5f9172EcEeaC7bBac9DD6A8013bfA9a30F5E5628/logo.png new file mode 100644 index 00000000..faec5e07 Binary files /dev/null and b/blockchains/ethereum/assets/0x5f9172EcEeaC7bBac9DD6A8013bfA9a30F5E5628/logo.png differ diff --git a/blockchains/ethereum/assets/0x5f98805A4E8be255a32880FDeC7F6728C6568bA0/info.json b/blockchains/ethereum/assets/0x5f98805A4E8be255a32880FDeC7F6728C6568bA0/info.json new file mode 100644 index 00000000..65f06173 --- /dev/null +++ b/blockchains/ethereum/assets/0x5f98805A4E8be255a32880FDeC7F6728C6568bA0/info.json @@ -0,0 +1,16 @@ +{ + "name": "Liquity USD", + "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/0x5f98805A4E8be255a32880FDeC7F6728C6568bA0", + "research": "https://docs.liquity.org", + "type": "ERC20", + "symbol": "LUSD", + "decimals": 18, + "status": "active", + "id": "0x5f98805A4E8be255a32880FDeC7F6728C6568bA0", + "tags": [ + "defi", + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5f98805A4E8be255a32880FDeC7F6728C6568bA0/logo.png b/blockchains/ethereum/assets/0x5f98805A4E8be255a32880FDeC7F6728C6568bA0/logo.png new file mode 100644 index 00000000..f7ff889c Binary files /dev/null and b/blockchains/ethereum/assets/0x5f98805A4E8be255a32880FDeC7F6728C6568bA0/logo.png differ diff --git a/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/info.json b/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/info.json new file mode 100644 index 00000000..224ddd09 --- /dev/null +++ b/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/info.json @@ -0,0 +1,36 @@ +{ + "name": "Galxe", + "type": "ERC20", + "symbol": "GAL", + "decimals": 18, + "website": "https://galxe.com/", + "description": "Galxe is the leading Web3 credential data network in the world.", + "explorer": "https://etherscan.io/token/0x5faa989af96af85384b8a938c2ede4a7378d9875", + "status": "active", + "id": "0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/galxe/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/galxe" + }, + { + "name": "x", + "url": "https://x.com/galxe" + }, + { + "name": "telegram", + "url": "https://t.me/galxe" + }, + { + "name": "discord", + "url": "https://discord.com/invite/galxe" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/logo.png b/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/logo.png new file mode 100644 index 00000000..2c93c622 Binary files /dev/null and b/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/logo.png differ diff --git a/blockchains/ethereum/assets/0x5fCde0CB8B4964756baF27BAf3A400C9135915B5/info.json b/blockchains/ethereum/assets/0x5fCde0CB8B4964756baF27BAf3A400C9135915B5/info.json new file mode 100644 index 00000000..20483a83 --- /dev/null +++ b/blockchains/ethereum/assets/0x5fCde0CB8B4964756baF27BAf3A400C9135915B5/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-8/30M8", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5fCde0CB8B4964756baF27BAf3A400C9135915B5", + "status": "abandoned", + "id": "0x5fCde0CB8B4964756baF27BAf3A400C9135915B5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5fCde0CB8B4964756baF27BAf3A400C9135915B5/logo.png b/blockchains/ethereum/assets/0x5fCde0CB8B4964756baF27BAf3A400C9135915B5/logo.png new file mode 100644 index 00000000..718a6fd4 Binary files /dev/null and b/blockchains/ethereum/assets/0x5fCde0CB8B4964756baF27BAf3A400C9135915B5/logo.png differ diff --git a/blockchains/ethereum/assets/0x5fEA39e08561caEf6bD94cdaA48Ef002111De741/info.json b/blockchains/ethereum/assets/0x5fEA39e08561caEf6bD94cdaA48Ef002111De741/info.json new file mode 100644 index 00000000..453c3f25 --- /dev/null +++ b/blockchains/ethereum/assets/0x5fEA39e08561caEf6bD94cdaA48Ef002111De741/info.json @@ -0,0 +1,11 @@ +{ + "name": "SitKoin", + "symbol": "SIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5fEA39e08561caEf6bD94cdaA48Ef002111De741", + "status": "abandoned", + "id": "0x5fEA39e08561caEf6bD94cdaA48Ef002111De741" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5fEA39e08561caEf6bD94cdaA48Ef002111De741/logo.png b/blockchains/ethereum/assets/0x5fEA39e08561caEf6bD94cdaA48Ef002111De741/logo.png new file mode 100644 index 00000000..76063d1a Binary files /dev/null and b/blockchains/ethereum/assets/0x5fEA39e08561caEf6bD94cdaA48Ef002111De741/logo.png differ diff --git a/blockchains/ethereum/assets/0x5feeE18D8BA20bE1fbfad89B2b793E03c8bB3b95/info.json b/blockchains/ethereum/assets/0x5feeE18D8BA20bE1fbfad89B2b793E03c8bB3b95/info.json new file mode 100644 index 00000000..72e86f31 --- /dev/null +++ b/blockchains/ethereum/assets/0x5feeE18D8BA20bE1fbfad89B2b793E03c8bB3b95/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gives Token", + "symbol": "GIVES", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x5feeE18D8BA20bE1fbfad89B2b793E03c8bB3b95", + "status": "abandoned", + "id": "0x5feeE18D8BA20bE1fbfad89B2b793E03c8bB3b95" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5feeE18D8BA20bE1fbfad89B2b793E03c8bB3b95/logo.png b/blockchains/ethereum/assets/0x5feeE18D8BA20bE1fbfad89B2b793E03c8bB3b95/logo.png new file mode 100644 index 00000000..2066fa32 Binary files /dev/null and b/blockchains/ethereum/assets/0x5feeE18D8BA20bE1fbfad89B2b793E03c8bB3b95/logo.png differ diff --git a/blockchains/ethereum/assets/0x5ff668ddfDcBB7505f41ED56e626E4D4719DcB26/info.json b/blockchains/ethereum/assets/0x5ff668ddfDcBB7505f41ED56e626E4D4719DcB26/info.json new file mode 100644 index 00000000..213d164c --- /dev/null +++ b/blockchains/ethereum/assets/0x5ff668ddfDcBB7505f41ED56e626E4D4719DcB26/info.json @@ -0,0 +1,26 @@ +{ + "name": "Wrapped Loki", + "website": "https://loki.network", + "description": "Loki is a private cryptocurrency with an incentivised service node network. The decentralised service node network is leveraged to create a whole suite of privacy tools including an anonymous private messenger (Session) and an anonymous onion router (Lokinet).", + "explorer": "https://etherscan.io/token/0x5ff668ddfdcbb7505f41ed56e626e4d4719dcb26", + "research": "", + "type": "ERC20", + "symbol": "wLOKI", + "decimals": 9, + "status": "active", + "id": "0x5ff668ddfDcBB7505f41ED56e626E4D4719DcB26", + "links": [ + { + "name": "github", + "url": "https://github.com/loki-project/loki-core" + }, + { + "name": "x", + "url": "https://x.com/Loki_Project" + }, + { + "name": "whitepaper", + "url": "https://loki.network/wp-content/uploads/2018/10/LokiWhitepaperV3_1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5ff668ddfDcBB7505f41ED56e626E4D4719DcB26/logo.png b/blockchains/ethereum/assets/0x5ff668ddfDcBB7505f41ED56e626E4D4719DcB26/logo.png new file mode 100644 index 00000000..9bdcc58f Binary files /dev/null and b/blockchains/ethereum/assets/0x5ff668ddfDcBB7505f41ED56e626E4D4719DcB26/logo.png differ diff --git a/blockchains/ethereum/assets/0x6006FC2a849fEdABa8330ce36F5133DE01F96189/info.json b/blockchains/ethereum/assets/0x6006FC2a849fEdABa8330ce36F5133DE01F96189/info.json new file mode 100644 index 00000000..4f41ec4f --- /dev/null +++ b/blockchains/ethereum/assets/0x6006FC2a849fEdABa8330ce36F5133DE01F96189/info.json @@ -0,0 +1,29 @@ +{ + "name": "Shake Token", + "website": "https://spaceswap.app/", + "description": "SHAKE token is conditionally stable and is pegged to MILK2 token at a 1:1000 ratio. SHAKE price is raising (+10 MILK2 per token) with each SHAKE token minted.", + "explorer": "https://etherscan.io/token/0x6006FC2a849fEdABa8330ce36F5133DE01F96189", + "type": "ERC20", + "symbol": "SHAKE", + "decimals": 18, + "status": "active", + "id": "0x6006FC2a849fEdABa8330ce36F5133DE01F96189", + "links": [ + { + "name": "github", + "url": "https://github.com/spaceswap/spaceswap" + }, + { + "name": "x", + "url": "https://x.com/spaceswapdefi" + }, + { + "name": "telegram", + "url": "https://t.me/spaceswap" + }, + { + "name": "discord", + "url": "https://discord.com/invite/r6RymJj" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6006FC2a849fEdABa8330ce36F5133DE01F96189/logo.png b/blockchains/ethereum/assets/0x6006FC2a849fEdABa8330ce36F5133DE01F96189/logo.png new file mode 100644 index 00000000..9ca47537 Binary files /dev/null and b/blockchains/ethereum/assets/0x6006FC2a849fEdABa8330ce36F5133DE01F96189/logo.png differ diff --git a/blockchains/ethereum/assets/0x6020Da0F7c1857dBE4431Ec92A15cC318D933eAa/info.json b/blockchains/ethereum/assets/0x6020Da0F7c1857dBE4431Ec92A15cC318D933eAa/info.json new file mode 100644 index 00000000..b5510e81 --- /dev/null +++ b/blockchains/ethereum/assets/0x6020Da0F7c1857dBE4431Ec92A15cC318D933eAa/info.json @@ -0,0 +1,11 @@ +{ + "name": "EnTanMo", + "symbol": "ETM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.entanmo.com/", + "explorer": "https://etherscan.io/token/0x6020Da0F7c1857dBE4431Ec92A15cC318D933eAa", + "status": "abandoned", + "id": "0x6020Da0F7c1857dBE4431Ec92A15cC318D933eAa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6020Da0F7c1857dBE4431Ec92A15cC318D933eAa/logo.png b/blockchains/ethereum/assets/0x6020Da0F7c1857dBE4431Ec92A15cC318D933eAa/logo.png new file mode 100644 index 00000000..89cff2ba Binary files /dev/null and b/blockchains/ethereum/assets/0x6020Da0F7c1857dBE4431Ec92A15cC318D933eAa/logo.png differ diff --git a/blockchains/ethereum/assets/0x6025Fb154B7C30E13657d5304DaFdb55B194E5Dd/info.json b/blockchains/ethereum/assets/0x6025Fb154B7C30E13657d5304DaFdb55B194E5Dd/info.json new file mode 100644 index 00000000..9d4e50f0 --- /dev/null +++ b/blockchains/ethereum/assets/0x6025Fb154B7C30E13657d5304DaFdb55B194E5Dd/info.json @@ -0,0 +1,11 @@ +{ + "name": "iAM", + "symbol": "IAM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6025Fb154B7C30E13657d5304DaFdb55B194E5Dd", + "status": "abandoned", + "id": "0x6025Fb154B7C30E13657d5304DaFdb55B194E5Dd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6025Fb154B7C30E13657d5304DaFdb55B194E5Dd/logo.png b/blockchains/ethereum/assets/0x6025Fb154B7C30E13657d5304DaFdb55B194E5Dd/logo.png new file mode 100644 index 00000000..3b82be48 Binary files /dev/null and b/blockchains/ethereum/assets/0x6025Fb154B7C30E13657d5304DaFdb55B194E5Dd/logo.png differ diff --git a/blockchains/ethereum/assets/0x6032a80aD22AC6aDAAEb0921eb39eE534F560fBE/info.json b/blockchains/ethereum/assets/0x6032a80aD22AC6aDAAEb0921eb39eE534F560fBE/info.json new file mode 100644 index 00000000..95468d4a --- /dev/null +++ b/blockchains/ethereum/assets/0x6032a80aD22AC6aDAAEb0921eb39eE534F560fBE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Celfits", + "symbol": "CELFIT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6032a80aD22AC6aDAAEb0921eb39eE534F560fBE", + "status": "abandoned", + "id": "0x6032a80aD22AC6aDAAEb0921eb39eE534F560fBE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6032a80aD22AC6aDAAEb0921eb39eE534F560fBE/logo.png b/blockchains/ethereum/assets/0x6032a80aD22AC6aDAAEb0921eb39eE534F560fBE/logo.png new file mode 100644 index 00000000..c4d303aa Binary files /dev/null and b/blockchains/ethereum/assets/0x6032a80aD22AC6aDAAEb0921eb39eE534F560fBE/logo.png differ diff --git a/blockchains/ethereum/assets/0x6033F7f88332B8db6ad452B7C6D5bB643990aE3f/info.json b/blockchains/ethereum/assets/0x6033F7f88332B8db6ad452B7C6D5bB643990aE3f/info.json new file mode 100644 index 00000000..a4446b48 --- /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 00000000..331bb1c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x6033F7f88332B8db6ad452B7C6D5bB643990aE3f/logo.png differ diff --git a/blockchains/ethereum/assets/0x60507b69cCF9a30380c0cc7E781E278A355743F7/info.json b/blockchains/ethereum/assets/0x60507b69cCF9a30380c0cc7E781E278A355743F7/info.json new file mode 100644 index 00000000..bf50ef26 --- /dev/null +++ b/blockchains/ethereum/assets/0x60507b69cCF9a30380c0cc7E781E278A355743F7/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlockMed_Venture", + "symbol": "BMV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x60507b69cCF9a30380c0cc7E781E278A355743F7", + "status": "abandoned", + "id": "0x60507b69cCF9a30380c0cc7E781E278A355743F7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60507b69cCF9a30380c0cc7E781E278A355743F7/logo.png b/blockchains/ethereum/assets/0x60507b69cCF9a30380c0cc7E781E278A355743F7/logo.png new file mode 100755 index 00000000..86b89f16 Binary files /dev/null and b/blockchains/ethereum/assets/0x60507b69cCF9a30380c0cc7E781E278A355743F7/logo.png differ diff --git a/blockchains/ethereum/assets/0x6051C1354Ccc51b4d561e43b02735DEaE64768B8/info.json b/blockchains/ethereum/assets/0x6051C1354Ccc51b4d561e43b02735DEaE64768B8/info.json new file mode 100644 index 00000000..52ccfe3b --- /dev/null +++ b/blockchains/ethereum/assets/0x6051C1354Ccc51b4d561e43b02735DEaE64768B8/info.json @@ -0,0 +1,29 @@ +{ + "name": "yRise", + "website": "https://yrise.finance", + "description": "yRise is an innovative solution for your Decentralized Finance needs, bringing staking, yield farming and fixed-rate savings into a single platform, and making it easier for users to manage their portfolio of DeFi assets. Our platform is one of the most user-friendly platforms in the market, where users find it easy and intuitive to navigate.", + "explorer": "https://etherscan.io/token/0x6051C1354Ccc51b4d561e43b02735DEaE64768B8", + "type": "ERC20", + "symbol": "yRise", + "decimals": 18, + "status": "active", + "id": "0x6051C1354Ccc51b4d561e43b02735DEaE64768B8", + "links": [ + { + "name": "x", + "url": "https://x.com/YriseFinance" + }, + { + "name": "telegram", + "url": "https://t.me/YriseFinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/3agjxBy" + }, + { + "name": "medium", + "url": "https://medium.com/@yrisefinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6051C1354Ccc51b4d561e43b02735DEaE64768B8/logo.png b/blockchains/ethereum/assets/0x6051C1354Ccc51b4d561e43b02735DEaE64768B8/logo.png new file mode 100644 index 00000000..6f4fe71f Binary files /dev/null and b/blockchains/ethereum/assets/0x6051C1354Ccc51b4d561e43b02735DEaE64768B8/logo.png differ diff --git a/blockchains/ethereum/assets/0x60571E95E12c78CbA5223042692908f0649435a5/info.json b/blockchains/ethereum/assets/0x60571E95E12c78CbA5223042692908f0649435a5/info.json new file mode 100644 index 00000000..773ec49a --- /dev/null +++ b/blockchains/ethereum/assets/0x60571E95E12c78CbA5223042692908f0649435a5/info.json @@ -0,0 +1,11 @@ +{ + "name": "PLAAS FARMERS TOKEN", + "symbol": "PLAAS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://plaas.io/", + "explorer": "https://etherscan.io/token/0x60571E95E12c78CbA5223042692908f0649435a5", + "status": "abandoned", + "id": "0x60571E95E12c78CbA5223042692908f0649435a5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60571E95E12c78CbA5223042692908f0649435a5/logo.png b/blockchains/ethereum/assets/0x60571E95E12c78CbA5223042692908f0649435a5/logo.png new file mode 100644 index 00000000..97d41619 Binary files /dev/null and b/blockchains/ethereum/assets/0x60571E95E12c78CbA5223042692908f0649435a5/logo.png differ diff --git a/blockchains/ethereum/assets/0x6059F55751603eAd7Dc6d280ad83A7B33D837C90/info.json b/blockchains/ethereum/assets/0x6059F55751603eAd7Dc6d280ad83A7B33D837C90/info.json new file mode 100644 index 00000000..0702e10f --- /dev/null +++ b/blockchains/ethereum/assets/0x6059F55751603eAd7Dc6d280ad83A7B33D837C90/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hybrid Block", + "symbol": "HYB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6059F55751603eAd7Dc6d280ad83A7B33D837C90", + "status": "abandoned", + "id": "0x6059F55751603eAd7Dc6d280ad83A7B33D837C90" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6059F55751603eAd7Dc6d280ad83A7B33D837C90/logo.png b/blockchains/ethereum/assets/0x6059F55751603eAd7Dc6d280ad83A7B33D837C90/logo.png new file mode 100644 index 00000000..c5531bfa Binary files /dev/null and b/blockchains/ethereum/assets/0x6059F55751603eAd7Dc6d280ad83A7B33D837C90/logo.png differ diff --git a/blockchains/ethereum/assets/0x605f360B047f3e089283d0da1D5cE3168dbB53ac/info.json b/blockchains/ethereum/assets/0x605f360B047f3e089283d0da1D5cE3168dbB53ac/info.json new file mode 100644 index 00000000..b8c89222 --- /dev/null +++ b/blockchains/ethereum/assets/0x605f360B047f3e089283d0da1D5cE3168dbB53ac/info.json @@ -0,0 +1,11 @@ +{ + "name": "FCash Coin", + "symbol": "FEC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x605f360B047f3e089283d0da1D5cE3168dbB53ac", + "status": "abandoned", + "id": "0x605f360B047f3e089283d0da1D5cE3168dbB53ac" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x605f360B047f3e089283d0da1D5cE3168dbB53ac/logo.png b/blockchains/ethereum/assets/0x605f360B047f3e089283d0da1D5cE3168dbB53ac/logo.png new file mode 100644 index 00000000..8bdd42c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x605f360B047f3e089283d0da1D5cE3168dbB53ac/logo.png differ diff --git a/blockchains/ethereum/assets/0x6063F73fd4701ae7Ffe7E5D990F2804538a4C199/info.json b/blockchains/ethereum/assets/0x6063F73fd4701ae7Ffe7E5D990F2804538a4C199/info.json new file mode 100644 index 00000000..1ea426ba --- /dev/null +++ b/blockchains/ethereum/assets/0x6063F73fd4701ae7Ffe7E5D990F2804538a4C199/info.json @@ -0,0 +1,11 @@ +{ + "name": "Flora Fic", + "symbol": "FIC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://www.florafic.io/", + "explorer": "https://etherscan.io/token/0x6063F73fd4701ae7Ffe7E5D990F2804538a4C199", + "status": "abandoned", + "id": "0x6063F73fd4701ae7Ffe7E5D990F2804538a4C199" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6063F73fd4701ae7Ffe7E5D990F2804538a4C199/logo.png b/blockchains/ethereum/assets/0x6063F73fd4701ae7Ffe7E5D990F2804538a4C199/logo.png new file mode 100644 index 00000000..4df7a089 Binary files /dev/null and b/blockchains/ethereum/assets/0x6063F73fd4701ae7Ffe7E5D990F2804538a4C199/logo.png differ diff --git a/blockchains/ethereum/assets/0x60715E436c37444E29772c0D26a98Ae1E8E1A989/info.json b/blockchains/ethereum/assets/0x60715E436c37444E29772c0D26a98Ae1E8E1A989/info.json new file mode 100644 index 00000000..9ef297ca --- /dev/null +++ b/blockchains/ethereum/assets/0x60715E436c37444E29772c0D26a98Ae1E8E1A989/info.json @@ -0,0 +1,11 @@ +{ + "name": "VOLTZ", + "symbol": "VOLTZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://voltz.io", + "explorer": "https://etherscan.io/token/0x60715E436c37444E29772c0D26a98Ae1E8E1A989", + "status": "abandoned", + "id": "0x60715E436c37444E29772c0D26a98Ae1E8E1A989" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60715E436c37444E29772c0D26a98Ae1E8E1A989/logo.png b/blockchains/ethereum/assets/0x60715E436c37444E29772c0D26a98Ae1E8E1A989/logo.png new file mode 100644 index 00000000..5f53bd94 Binary files /dev/null and b/blockchains/ethereum/assets/0x60715E436c37444E29772c0D26a98Ae1E8E1A989/logo.png differ diff --git a/blockchains/ethereum/assets/0x607C794cDa77efB21F8848B7910ecf27451Ae842/info.json b/blockchains/ethereum/assets/0x607C794cDa77efB21F8848B7910ecf27451Ae842/info.json new file mode 100644 index 00000000..dd45a92b --- /dev/null +++ b/blockchains/ethereum/assets/0x607C794cDa77efB21F8848B7910ecf27451Ae842/info.json @@ -0,0 +1,29 @@ +{ + "name": "DeFiPIE", + "website": "https://defipie.com", + "description": "DeFiPIE allows everyone to create lending pools for any assets on Ethereum and Binance Smart Chain networks. Users can supply their assets and borrow other assets.", + "explorer": "https://etherscan.io/token/0x607C794cDa77efB21F8848B7910ecf27451Ae842", + "type": "ERC20", + "symbol": "PIE", + "decimals": 18, + "status": "active", + "id": "0x607C794cDa77efB21F8848B7910ecf27451Ae842", + "links": [ + { + "name": "github", + "url": "https://github.com/DefiPie" + }, + { + "name": "x", + "url": "https://x.com/defipiepie" + }, + { + "name": "telegram", + "url": "https://t.me/defipie" + }, + { + "name": "medium", + "url": "https://medium.com/defipie" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x607C794cDa77efB21F8848B7910ecf27451Ae842/logo.png b/blockchains/ethereum/assets/0x607C794cDa77efB21F8848B7910ecf27451Ae842/logo.png new file mode 100644 index 00000000..fe37ce71 Binary files /dev/null and b/blockchains/ethereum/assets/0x607C794cDa77efB21F8848B7910ecf27451Ae842/logo.png differ diff --git a/blockchains/ethereum/assets/0x607F4C5BB672230e8672085532f7e901544a7375/info.json b/blockchains/ethereum/assets/0x607F4C5BB672230e8672085532f7e901544a7375/info.json new file mode 100644 index 00000000..0796d1ad --- /dev/null +++ b/blockchains/ethereum/assets/0x607F4C5BB672230e8672085532f7e901544a7375/info.json @@ -0,0 +1,14 @@ +{ + "name": "iExec RLC", + "website": "https://iex.ec", + "description": "iExec claims to have developed the first decentralized marketplace for cloud computing resources.", + "explorer": "https://etherscan.io/token/0x607F4C5BB672230e8672085532f7e901544a7375", + "type": "ERC20", + "symbol": "RLC", + "decimals": 9, + "status": "active", + "id": "0x607F4C5BB672230e8672085532f7e901544a7375", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x607F4C5BB672230e8672085532f7e901544a7375/logo.png b/blockchains/ethereum/assets/0x607F4C5BB672230e8672085532f7e901544a7375/logo.png new file mode 100644 index 00000000..3525a91f Binary files /dev/null and b/blockchains/ethereum/assets/0x607F4C5BB672230e8672085532f7e901544a7375/logo.png differ diff --git a/blockchains/ethereum/assets/0x60808f2a0d035e16F57e9043842BD1BFBda24fA2/info.json b/blockchains/ethereum/assets/0x60808f2a0d035e16F57e9043842BD1BFBda24fA2/info.json new file mode 100644 index 00000000..dfe0c2f0 --- /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 00000000..f580f2c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x60808f2a0d035e16F57e9043842BD1BFBda24fA2/logo.png differ diff --git a/blockchains/ethereum/assets/0x6086b52Cab4522b4B0E8aF9C3b2c5b8994C36ba6/info.json b/blockchains/ethereum/assets/0x6086b52Cab4522b4B0E8aF9C3b2c5b8994C36ba6/info.json new file mode 100644 index 00000000..22ba562d --- /dev/null +++ b/blockchains/ethereum/assets/0x6086b52Cab4522b4B0E8aF9C3b2c5b8994C36ba6/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShuttleOne Token", + "symbol": "SZO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6086b52Cab4522b4B0E8aF9C3b2c5b8994C36ba6", + "status": "abandoned", + "id": "0x6086b52Cab4522b4B0E8aF9C3b2c5b8994C36ba6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6086b52Cab4522b4B0E8aF9C3b2c5b8994C36ba6/logo.png b/blockchains/ethereum/assets/0x6086b52Cab4522b4B0E8aF9C3b2c5b8994C36ba6/logo.png new file mode 100644 index 00000000..d6cbc12d Binary files /dev/null and b/blockchains/ethereum/assets/0x6086b52Cab4522b4B0E8aF9C3b2c5b8994C36ba6/logo.png differ diff --git a/blockchains/ethereum/assets/0x608Be0464774A7Be87EC2a1fc7407ce64714d5D2/info.json b/blockchains/ethereum/assets/0x608Be0464774A7Be87EC2a1fc7407ce64714d5D2/info.json new file mode 100644 index 00000000..996f324e --- /dev/null +++ b/blockchains/ethereum/assets/0x608Be0464774A7Be87EC2a1fc7407ce64714d5D2/info.json @@ -0,0 +1,11 @@ +{ + "name": "GlobalCryptoGate", + "symbol": "GCG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.globalcryptogate.com/", + "explorer": "https://etherscan.io/token/0x608Be0464774A7Be87EC2a1fc7407ce64714d5D2", + "status": "abandoned", + "id": "0x608Be0464774A7Be87EC2a1fc7407ce64714d5D2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x608Be0464774A7Be87EC2a1fc7407ce64714d5D2/logo.png b/blockchains/ethereum/assets/0x608Be0464774A7Be87EC2a1fc7407ce64714d5D2/logo.png new file mode 100644 index 00000000..2ed90352 Binary files /dev/null and b/blockchains/ethereum/assets/0x608Be0464774A7Be87EC2a1fc7407ce64714d5D2/logo.png differ diff --git a/blockchains/ethereum/assets/0x608f006B6813f97097372d0d31Fb0F11d1CA3E4e/info.json b/blockchains/ethereum/assets/0x608f006B6813f97097372d0d31Fb0F11d1CA3E4e/info.json new file mode 100644 index 00000000..bb80c992 --- /dev/null +++ b/blockchains/ethereum/assets/0x608f006B6813f97097372d0d31Fb0F11d1CA3E4e/info.json @@ -0,0 +1,41 @@ +{ + "name": "CRAD CASH", + "website": "https://cfc.io/", + "description": "CryptoAds Marketplace, a Decentralized advertisement ecosystem built on blockchain (based on CFC.io app,7M+ users). CryptoAds is a focus to disrupt the advertising market, launched.", + "explorer": "https://etherscan.io/token/0x608f006B6813f97097372d0d31Fb0F11d1CA3E4e", + "type": "ERC20", + "symbol": "CRAD", + "decimals": 18, + "status": "active", + "id": "0x608f006B6813f97097372d0d31Fb0F11d1CA3E4e", + "links": [ + { + "name": "github", + "url": "https://github.com/ixc-software" + }, + { + "name": "x", + "url": "https://x.com/CryptoAds Marketplace" + }, + { + "name": "telegram", + "url": "https://t.me/cryptoads_marketplace_en" + }, + { + "name": "facebook", + "url": "https://facebook.com/CryptoAdsMarketplace" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/CRAD/" + }, + { + "name": "medium", + "url": "https://medium.com/@AlexVinogradov4" + }, + { + "name": "whitepaper", + "url": "https://cryptoads.exchange" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x608f006B6813f97097372d0d31Fb0F11d1CA3E4e/logo.png b/blockchains/ethereum/assets/0x608f006B6813f97097372d0d31Fb0F11d1CA3E4e/logo.png new file mode 100644 index 00000000..2e750172 Binary files /dev/null and b/blockchains/ethereum/assets/0x608f006B6813f97097372d0d31Fb0F11d1CA3E4e/logo.png differ diff --git a/blockchains/ethereum/assets/0x6096d2460CF5177E40B515223428DC005ad35123/info.json b/blockchains/ethereum/assets/0x6096d2460CF5177E40B515223428DC005ad35123/info.json new file mode 100644 index 00000000..8e21bfb9 --- /dev/null +++ b/blockchains/ethereum/assets/0x6096d2460CF5177E40B515223428DC005ad35123/info.json @@ -0,0 +1,11 @@ +{ + "name": "Precium Token", + "symbol": "PCM", + "type": "ERC20", + "decimals": 18, + "description": "Precium is a smart contract platform that provides a template of various smart contract terms to allow users to create and use smart contracts simply and securely through peer-to-peer transactions.", + "website": "https://precium.io", + "explorer": "https://etherscan.io/token/0x6096d2460CF5177E40B515223428DC005ad35123", + "status": "active", + "id": "0x6096d2460CF5177E40B515223428DC005ad35123" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6096d2460CF5177E40B515223428DC005ad35123/logo.png b/blockchains/ethereum/assets/0x6096d2460CF5177E40B515223428DC005ad35123/logo.png new file mode 100644 index 00000000..fef8b93a Binary files /dev/null and b/blockchains/ethereum/assets/0x6096d2460CF5177E40B515223428DC005ad35123/logo.png differ diff --git a/blockchains/ethereum/assets/0x609e79A9fB9A71655B017f637A962B9962F4a9FC/info.json b/blockchains/ethereum/assets/0x609e79A9fB9A71655B017f637A962B9962F4a9FC/info.json new file mode 100644 index 00000000..e3a407cc --- /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/0x60AD32E32e07dEf2997dCA8859b6AC8a29E259f1/info.json b/blockchains/ethereum/assets/0x60AD32E32e07dEf2997dCA8859b6AC8a29E259f1/info.json new file mode 100644 index 00000000..d95329bb --- /dev/null +++ b/blockchains/ethereum/assets/0x60AD32E32e07dEf2997dCA8859b6AC8a29E259f1/info.json @@ -0,0 +1,11 @@ +{ + "name": "NEWERA", + "symbol": "NWR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x60AD32E32e07dEf2997dCA8859b6AC8a29E259f1", + "status": "abandoned", + "id": "0x60AD32E32e07dEf2997dCA8859b6AC8a29E259f1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60AD32E32e07dEf2997dCA8859b6AC8a29E259f1/logo.png b/blockchains/ethereum/assets/0x60AD32E32e07dEf2997dCA8859b6AC8a29E259f1/logo.png new file mode 100644 index 00000000..e11f38f3 Binary files /dev/null and b/blockchains/ethereum/assets/0x60AD32E32e07dEf2997dCA8859b6AC8a29E259f1/logo.png differ diff --git a/blockchains/ethereum/assets/0x60B4E7dfc29dAC77a6d9f4b2D8b4568515E59c26/info.json b/blockchains/ethereum/assets/0x60B4E7dfc29dAC77a6d9f4b2D8b4568515E59c26/info.json new file mode 100644 index 00000000..92bf94ef --- /dev/null +++ b/blockchains/ethereum/assets/0x60B4E7dfc29dAC77a6d9f4b2D8b4568515E59c26/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C560224", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x60B4E7dfc29dAC77a6d9f4b2D8b4568515E59c26", + "status": "abandoned", + "id": "0x60B4E7dfc29dAC77a6d9f4b2D8b4568515E59c26" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60B4E7dfc29dAC77a6d9f4b2D8b4568515E59c26/logo.png b/blockchains/ethereum/assets/0x60B4E7dfc29dAC77a6d9f4b2D8b4568515E59c26/logo.png new file mode 100644 index 00000000..ecee2513 Binary files /dev/null and b/blockchains/ethereum/assets/0x60B4E7dfc29dAC77a6d9f4b2D8b4568515E59c26/logo.png differ diff --git a/blockchains/ethereum/assets/0x60C24407d01782C2175D32fe7C8921ed732371D1/info.json b/blockchains/ethereum/assets/0x60C24407d01782C2175D32fe7C8921ed732371D1/info.json new file mode 100644 index 00000000..763a8bbc --- /dev/null +++ b/blockchains/ethereum/assets/0x60C24407d01782C2175D32fe7C8921ed732371D1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lemo", + "symbol": "LEMO", + "type": "ERC20", + "decimals": 18, + "description": "LemoChain is a cross-application ecosystem for business data circulation, based on secure multi-party computation.", + "website": "https://www.lemochain.com/#/", + "explorer": "https://etherscan.io/token/0x60C24407d01782C2175D32fe7C8921ed732371D1", + "status": "active", + "id": "0x60C24407d01782C2175D32fe7C8921ed732371D1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60C24407d01782C2175D32fe7C8921ed732371D1/logo.png b/blockchains/ethereum/assets/0x60C24407d01782C2175D32fe7C8921ed732371D1/logo.png new file mode 100644 index 00000000..54497633 Binary files /dev/null and b/blockchains/ethereum/assets/0x60C24407d01782C2175D32fe7C8921ed732371D1/logo.png differ diff --git a/blockchains/ethereum/assets/0x60a41Dcc8D48a32dDE8ef4cCA4Ef044E8304df38/info.json b/blockchains/ethereum/assets/0x60a41Dcc8D48a32dDE8ef4cCA4Ef044E8304df38/info.json new file mode 100644 index 00000000..f686202f --- /dev/null +++ b/blockchains/ethereum/assets/0x60a41Dcc8D48a32dDE8ef4cCA4Ef044E8304df38/info.json @@ -0,0 +1,11 @@ +{ + "name": "Assam", + "symbol": "AXM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x60a41Dcc8D48a32dDE8ef4cCA4Ef044E8304df38", + "status": "abandoned", + "id": "0x60a41Dcc8D48a32dDE8ef4cCA4Ef044E8304df38" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60a41Dcc8D48a32dDE8ef4cCA4Ef044E8304df38/logo.png b/blockchains/ethereum/assets/0x60a41Dcc8D48a32dDE8ef4cCA4Ef044E8304df38/logo.png new file mode 100644 index 00000000..30a1e0a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x60a41Dcc8D48a32dDE8ef4cCA4Ef044E8304df38/logo.png differ diff --git a/blockchains/ethereum/assets/0x60c68a87bE1E8a84144b543AAcfA77199cd3d024/info.json b/blockchains/ethereum/assets/0x60c68a87bE1E8a84144b543AAcfA77199cd3d024/info.json new file mode 100644 index 00000000..91f870d6 --- /dev/null +++ b/blockchains/ethereum/assets/0x60c68a87bE1E8a84144b543AAcfA77199cd3d024/info.json @@ -0,0 +1,11 @@ +{ + "name": "Themis", + "symbol": "GET", + "type": "ERC20", + "decimals": 18, + "description": "Themis is a trusted blockchain infrastructure based on group escrow service, the problmes of fair exchanges which using cryptocurrencies as the medium, and helping to build a new generation of trusted network.", + "website": "https://themis.network", + "explorer": "https://etherscan.io/token/0x60c68a87bE1E8a84144b543AAcfA77199cd3d024", + "status": "active", + "id": "0x60c68a87bE1E8a84144b543AAcfA77199cd3d024" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60c68a87bE1E8a84144b543AAcfA77199cd3d024/logo.png b/blockchains/ethereum/assets/0x60c68a87bE1E8a84144b543AAcfA77199cd3d024/logo.png new file mode 100644 index 00000000..9dbac203 Binary files /dev/null and b/blockchains/ethereum/assets/0x60c68a87bE1E8a84144b543AAcfA77199cd3d024/logo.png differ diff --git a/blockchains/ethereum/assets/0x60c87297A1fEaDC3C25993FfcadC54e99971e307/info.json b/blockchains/ethereum/assets/0x60c87297A1fEaDC3C25993FfcadC54e99971e307/info.json new file mode 100644 index 00000000..5be2dc63 --- /dev/null +++ b/blockchains/ethereum/assets/0x60c87297A1fEaDC3C25993FfcadC54e99971e307/info.json @@ -0,0 +1,11 @@ +{ + "name": "GXToken", + "symbol": "GXT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x60c87297A1fEaDC3C25993FfcadC54e99971e307", + "status": "abandoned", + "id": "0x60c87297A1fEaDC3C25993FfcadC54e99971e307" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60c87297A1fEaDC3C25993FfcadC54e99971e307/logo.png b/blockchains/ethereum/assets/0x60c87297A1fEaDC3C25993FfcadC54e99971e307/logo.png new file mode 100644 index 00000000..d736cdce Binary files /dev/null and b/blockchains/ethereum/assets/0x60c87297A1fEaDC3C25993FfcadC54e99971e307/logo.png differ diff --git a/blockchains/ethereum/assets/0x60d95823F795F1972dBDbcd886955095E36E04Cd/info.json b/blockchains/ethereum/assets/0x60d95823F795F1972dBDbcd886955095E36E04Cd/info.json new file mode 100644 index 00000000..042deab9 --- /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 00000000..8530d08e Binary files /dev/null and b/blockchains/ethereum/assets/0x60d95823F795F1972dBDbcd886955095E36E04Cd/logo.png differ diff --git a/blockchains/ethereum/assets/0x60db53521c1563C89E55D9FcEDa8D47F55c14d0e/info.json b/blockchains/ethereum/assets/0x60db53521c1563C89E55D9FcEDa8D47F55c14d0e/info.json new file mode 100644 index 00000000..2dfaf4f6 --- /dev/null +++ b/blockchains/ethereum/assets/0x60db53521c1563C89E55D9FcEDa8D47F55c14d0e/info.json @@ -0,0 +1,11 @@ +{ + "name": "e-Money DKK stablecoin", + "website": "https://e-money.com", + "description": "ERC20 version of the e-Money DKK stablecoin", + "explorer": "https://etherscan.io/token/0x60db53521c1563C89E55D9FcEDa8D47F55c14d0e", + "type": "ERC20", + "symbol": "EDKK", + "decimals": 6, + "status": "active", + "id": "0x60db53521c1563C89E55D9FcEDa8D47F55c14d0e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60db53521c1563C89E55D9FcEDa8D47F55c14d0e/logo.png b/blockchains/ethereum/assets/0x60db53521c1563C89E55D9FcEDa8D47F55c14d0e/logo.png new file mode 100644 index 00000000..dc81836d Binary files /dev/null and b/blockchains/ethereum/assets/0x60db53521c1563C89E55D9FcEDa8D47F55c14d0e/logo.png differ diff --git a/blockchains/ethereum/assets/0x60e254E35Dd712394b3AbA7A1D19114732e143dD/info.json b/blockchains/ethereum/assets/0x60e254E35Dd712394b3AbA7A1D19114732e143dD/info.json new file mode 100644 index 00000000..c7112cfd --- /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 00000000..6a716613 Binary files /dev/null and b/blockchains/ethereum/assets/0x60e254E35Dd712394b3AbA7A1D19114732e143dD/logo.png differ diff --git a/blockchains/ethereum/assets/0x60e7f0518102A4E70431960F88c1EBC98f994159/info.json b/blockchains/ethereum/assets/0x60e7f0518102A4E70431960F88c1EBC98f994159/info.json new file mode 100644 index 00000000..b6b1fa81 --- /dev/null +++ b/blockchains/ethereum/assets/0x60e7f0518102A4E70431960F88c1EBC98f994159/info.json @@ -0,0 +1,11 @@ +{ + "name": "Exenox Mobile", + "symbol": "EXNX", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://exenox.net/", + "explorer": "https://etherscan.io/token/0x60e7f0518102A4E70431960F88c1EBC98f994159", + "status": "abandoned", + "id": "0x60e7f0518102A4E70431960F88c1EBC98f994159" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60e7f0518102A4E70431960F88c1EBC98f994159/logo.png b/blockchains/ethereum/assets/0x60e7f0518102A4E70431960F88c1EBC98f994159/logo.png new file mode 100644 index 00000000..6860448f Binary files /dev/null and b/blockchains/ethereum/assets/0x60e7f0518102A4E70431960F88c1EBC98f994159/logo.png differ diff --git a/blockchains/ethereum/assets/0x60ec679cf3a48d89EfA774FCcD3Dc59Ef1401330/info.json b/blockchains/ethereum/assets/0x60ec679cf3a48d89EfA774FCcD3Dc59Ef1401330/info.json new file mode 100644 index 00000000..5182361b --- /dev/null +++ b/blockchains/ethereum/assets/0x60ec679cf3a48d89EfA774FCcD3Dc59Ef1401330/info.json @@ -0,0 +1,17 @@ +{ + "name": "NXT Gold", + "description": "NXT Gold (NXTG) is an ERC20 token backed 1:1 with NXT.", + "website": "https://nxtgold.eu", + "explorer": "https://etherscan.io/token/0x60ec679cf3a48d89EfA774FCcD3Dc59Ef1401330", + "type": "ERC20", + "symbol": "NXTG", + "decimals": 0, + "status": "active", + "id": "0x60ec679cf3a48d89EfA774FCcD3Dc59Ef1401330", + "links": [ + { + "name": "telegram", + "url": "https://t.me/nxtgold" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60ec679cf3a48d89EfA774FCcD3Dc59Ef1401330/logo.png b/blockchains/ethereum/assets/0x60ec679cf3a48d89EfA774FCcD3Dc59Ef1401330/logo.png new file mode 100644 index 00000000..ddcca7cc Binary files /dev/null and b/blockchains/ethereum/assets/0x60ec679cf3a48d89EfA774FCcD3Dc59Ef1401330/logo.png differ diff --git a/blockchains/ethereum/assets/0x60ecB1536D7c49c07a05ed042e8662cb7FA3dD42/info.json b/blockchains/ethereum/assets/0x60ecB1536D7c49c07a05ed042e8662cb7FA3dD42/info.json new file mode 100644 index 00000000..cf2c9e4c --- /dev/null +++ b/blockchains/ethereum/assets/0x60ecB1536D7c49c07a05ed042e8662cb7FA3dD42/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vessel Investment Trust", + "symbol": "VTRUST", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x60ecB1536D7c49c07a05ed042e8662cb7FA3dD42", + "status": "abandoned", + "id": "0x60ecB1536D7c49c07a05ed042e8662cb7FA3dD42" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60ecB1536D7c49c07a05ed042e8662cb7FA3dD42/logo.png b/blockchains/ethereum/assets/0x60ecB1536D7c49c07a05ed042e8662cb7FA3dD42/logo.png new file mode 100644 index 00000000..1ef2db0a Binary files /dev/null and b/blockchains/ethereum/assets/0x60ecB1536D7c49c07a05ed042e8662cb7FA3dD42/logo.png differ diff --git a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json new file mode 100644 index 00000000..2ab891c6 --- /dev/null +++ b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json @@ -0,0 +1,28 @@ +{ + "name": "Ethereans", + "symbol": "OS", + "type": "ERC20", + "decimals": 18, + "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": "x", + "url": "https://x.com/ethereansOS" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ncbK6nYdFU" + }, + { + "name": "youtube", + "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 new file mode 100644 index 00000000..86ffb8db Binary files /dev/null and b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png differ diff --git a/blockchains/ethereum/assets/0x610740Af3f25b72892Ba21b98bFB8595F2cDE386/info.json b/blockchains/ethereum/assets/0x610740Af3f25b72892Ba21b98bFB8595F2cDE386/info.json new file mode 100644 index 00000000..1a0ae417 --- /dev/null +++ b/blockchains/ethereum/assets/0x610740Af3f25b72892Ba21b98bFB8595F2cDE386/info.json @@ -0,0 +1,11 @@ +{ + "name": "Garuda Token", + "symbol": "GAD", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x610740Af3f25b72892Ba21b98bFB8595F2cDE386", + "status": "abandoned", + "id": "0x610740Af3f25b72892Ba21b98bFB8595F2cDE386" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x610740Af3f25b72892Ba21b98bFB8595F2cDE386/logo.png b/blockchains/ethereum/assets/0x610740Af3f25b72892Ba21b98bFB8595F2cDE386/logo.png new file mode 100755 index 00000000..aa81d858 Binary files /dev/null and b/blockchains/ethereum/assets/0x610740Af3f25b72892Ba21b98bFB8595F2cDE386/logo.png differ diff --git a/blockchains/ethereum/assets/0x61152b50B7162F994d0cFbb9d4e108f96646e81f/info.json b/blockchains/ethereum/assets/0x61152b50B7162F994d0cFbb9d4e108f96646e81f/info.json new file mode 100644 index 00000000..3c9946d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x61152b50B7162F994d0cFbb9d4e108f96646e81f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decentr Protocol", + "symbol": "DPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x61152b50B7162F994d0cFbb9d4e108f96646e81f", + "status": "abandoned", + "id": "0x61152b50B7162F994d0cFbb9d4e108f96646e81f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61152b50B7162F994d0cFbb9d4e108f96646e81f/logo.png b/blockchains/ethereum/assets/0x61152b50B7162F994d0cFbb9d4e108f96646e81f/logo.png new file mode 100644 index 00000000..3a044f45 Binary files /dev/null and b/blockchains/ethereum/assets/0x61152b50B7162F994d0cFbb9d4e108f96646e81f/logo.png differ diff --git a/blockchains/ethereum/assets/0x611c74310a06B10593E073aFFe4Ea543b793f539/info.json b/blockchains/ethereum/assets/0x611c74310a06B10593E073aFFe4Ea543b793f539/info.json new file mode 100644 index 00000000..d6ce280c --- /dev/null +++ b/blockchains/ethereum/assets/0x611c74310a06B10593E073aFFe4Ea543b793f539/info.json @@ -0,0 +1,11 @@ +{ + "name": "FinCrypChain", + "symbol": "FCC", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x611c74310a06B10593E073aFFe4Ea543b793f539", + "status": "abandoned", + "id": "0x611c74310a06B10593E073aFFe4Ea543b793f539" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x611c74310a06B10593E073aFFe4Ea543b793f539/logo.png b/blockchains/ethereum/assets/0x611c74310a06B10593E073aFFe4Ea543b793f539/logo.png new file mode 100755 index 00000000..25a12c05 Binary files /dev/null and b/blockchains/ethereum/assets/0x611c74310a06B10593E073aFFe4Ea543b793f539/logo.png differ diff --git a/blockchains/ethereum/assets/0x6123A0CBC95Cb157995A0795187A60995B85e0A9/info.json b/blockchains/ethereum/assets/0x6123A0CBC95Cb157995A0795187A60995B85e0A9/info.json new file mode 100644 index 00000000..377b469c --- /dev/null +++ b/blockchains/ethereum/assets/0x6123A0CBC95Cb157995A0795187A60995B85e0A9/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTCDaiRebalancingSetToken", + "symbol": "BTCDai", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.tokensets.com/set/btchivol", + "explorer": "https://etherscan.io/token/0x6123A0CBC95Cb157995A0795187A60995B85e0A9", + "status": "abandoned", + "id": "0x6123A0CBC95Cb157995A0795187A60995B85e0A9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6123A0CBC95Cb157995A0795187A60995B85e0A9/logo.png b/blockchains/ethereum/assets/0x6123A0CBC95Cb157995A0795187A60995B85e0A9/logo.png new file mode 100644 index 00000000..3359c7aa Binary files /dev/null and b/blockchains/ethereum/assets/0x6123A0CBC95Cb157995A0795187A60995B85e0A9/logo.png differ diff --git a/blockchains/ethereum/assets/0x6123B0049F904d730dB3C36a31167D9d4121fA6B/info.json b/blockchains/ethereum/assets/0x6123B0049F904d730dB3C36a31167D9d4121fA6B/info.json new file mode 100644 index 00000000..4a556f5a --- /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 00000000..d4cdccc8 Binary files /dev/null and b/blockchains/ethereum/assets/0x6123B0049F904d730dB3C36a31167D9d4121fA6B/logo.png differ diff --git a/blockchains/ethereum/assets/0x61383Ac89988B498dF5363050ff07fE5C52ecDDA/info.json b/blockchains/ethereum/assets/0x61383Ac89988B498dF5363050ff07fE5C52ecDDA/info.json new file mode 100644 index 00000000..932344c6 --- /dev/null +++ b/blockchains/ethereum/assets/0x61383Ac89988B498dF5363050ff07fE5C52ecDDA/info.json @@ -0,0 +1,11 @@ +{ + "name": "REBGLO Token", + "symbol": "REB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x61383Ac89988B498dF5363050ff07fE5C52ecDDA", + "status": "abandoned", + "id": "0x61383Ac89988B498dF5363050ff07fE5C52ecDDA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61383Ac89988B498dF5363050ff07fE5C52ecDDA/logo.png b/blockchains/ethereum/assets/0x61383Ac89988B498dF5363050ff07fE5C52ecDDA/logo.png new file mode 100644 index 00000000..6f98f919 Binary files /dev/null and b/blockchains/ethereum/assets/0x61383Ac89988B498dF5363050ff07fE5C52ecDDA/logo.png differ diff --git a/blockchains/ethereum/assets/0x6139F7FB1937806d21cc6b3b8152492c21239bdD/info.json b/blockchains/ethereum/assets/0x6139F7FB1937806d21cc6b3b8152492c21239bdD/info.json new file mode 100644 index 00000000..10e34bf8 --- /dev/null +++ b/blockchains/ethereum/assets/0x6139F7FB1937806d21cc6b3b8152492c21239bdD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unix Chain", + "symbol": "UNIX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6139F7FB1937806d21cc6b3b8152492c21239bdD", + "status": "abandoned", + "id": "0x6139F7FB1937806d21cc6b3b8152492c21239bdD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6139F7FB1937806d21cc6b3b8152492c21239bdD/logo.png b/blockchains/ethereum/assets/0x6139F7FB1937806d21cc6b3b8152492c21239bdD/logo.png new file mode 100644 index 00000000..d0cfb442 Binary files /dev/null and b/blockchains/ethereum/assets/0x6139F7FB1937806d21cc6b3b8152492c21239bdD/logo.png differ diff --git a/blockchains/ethereum/assets/0x613Fa2A6e6DAA70c659060E86bA1443D2679c9D7/info.json b/blockchains/ethereum/assets/0x613Fa2A6e6DAA70c659060E86bA1443D2679c9D7/info.json new file mode 100644 index 00000000..a75d7f05 --- /dev/null +++ b/blockchains/ethereum/assets/0x613Fa2A6e6DAA70c659060E86bA1443D2679c9D7/info.json @@ -0,0 +1,11 @@ +{ + "name": "GOToken", + "symbol": "GOT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://parkingo.io/en/", + "explorer": "https://etherscan.io/token/0x613Fa2A6e6DAA70c659060E86bA1443D2679c9D7", + "status": "abandoned", + "id": "0x613Fa2A6e6DAA70c659060E86bA1443D2679c9D7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x613Fa2A6e6DAA70c659060E86bA1443D2679c9D7/logo.png b/blockchains/ethereum/assets/0x613Fa2A6e6DAA70c659060E86bA1443D2679c9D7/logo.png new file mode 100644 index 00000000..97c24462 Binary files /dev/null and b/blockchains/ethereum/assets/0x613Fa2A6e6DAA70c659060E86bA1443D2679c9D7/logo.png differ diff --git a/blockchains/ethereum/assets/0x614348D080835ADCbbDEe121af077024e27EcCC6/info.json b/blockchains/ethereum/assets/0x614348D080835ADCbbDEe121af077024e27EcCC6/info.json new file mode 100644 index 00000000..a2a09a22 --- /dev/null +++ b/blockchains/ethereum/assets/0x614348D080835ADCbbDEe121af077024e27EcCC6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ledgit", + "symbol": "LDG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x614348D080835ADCbbDEe121af077024e27EcCC6", + "status": "abandoned", + "id": "0x614348D080835ADCbbDEe121af077024e27EcCC6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x614348D080835ADCbbDEe121af077024e27EcCC6/logo.png b/blockchains/ethereum/assets/0x614348D080835ADCbbDEe121af077024e27EcCC6/logo.png new file mode 100644 index 00000000..748fae9b Binary files /dev/null and b/blockchains/ethereum/assets/0x614348D080835ADCbbDEe121af077024e27EcCC6/logo.png differ diff --git a/blockchains/ethereum/assets/0x6149C26Cd2f7b5CCdb32029aF817123F6E37Df5B/info.json b/blockchains/ethereum/assets/0x6149C26Cd2f7b5CCdb32029aF817123F6E37Df5B/info.json new file mode 100644 index 00000000..41abd2c1 --- /dev/null +++ b/blockchains/ethereum/assets/0x6149C26Cd2f7b5CCdb32029aF817123F6E37Df5B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Launchpool", + "symbol": "LPOOL", + "type": "ERC20", + "decimals": 18, + "description": "LPOOL is the platform token of Launchpool, the fair token launchpad. LPOOL can be staked to earn an allocation from projects launching on Launchpool.", + "website": "https://launchpool.xyz/", + "explorer": "https://etherscan.io/token/0x6149c26cd2f7b5ccdb32029af817123f6e37df5b", + "status": "active", + "id": "0x6149C26Cd2f7b5CCdb32029aF817123F6E37Df5B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6149C26Cd2f7b5CCdb32029aF817123F6E37Df5B/logo.png b/blockchains/ethereum/assets/0x6149C26Cd2f7b5CCdb32029aF817123F6E37Df5B/logo.png new file mode 100644 index 00000000..0588d72f Binary files /dev/null and b/blockchains/ethereum/assets/0x6149C26Cd2f7b5CCdb32029aF817123F6E37Df5B/logo.png differ diff --git a/blockchains/ethereum/assets/0x614D7f40701132E25fe6fc17801Fbd34212d2Eda/info.json b/blockchains/ethereum/assets/0x614D7f40701132E25fe6fc17801Fbd34212d2Eda/info.json new file mode 100644 index 00000000..42bbbe31 --- /dev/null +++ b/blockchains/ethereum/assets/0x614D7f40701132E25fe6fc17801Fbd34212d2Eda/info.json @@ -0,0 +1,52 @@ +{ + "name": "SafeBLAST", + "type": "ERC20", + "symbol": "BLAST", + "decimals": 9, + "website": "https://www.safeblastcrypto.com/", + "description": "SafeBLAST token is an autonomous yield and Liquidity generation protocol. Every transaction reduces the total circulating supply of BLAST. Every wallet HODLers automatically gets rewarded with a 5% distribution on each transaction. Each transaction also creates a 5% liquidity, which is automatically LOCKED.", + "explorer": "https://etherscan.io/token/0x614D7f40701132E25fe6fc17801Fbd34212d2Eda", + "status": "active", + "id": "0x614D7f40701132E25fe6fc17801Fbd34212d2Eda", + "links": [ + { + "name": "x", + "url": "https://x.com/SafeBlastArmy" + }, + { + "name": "facebook", + "url": "https://facebook.com/SafeBlastCrypto" + }, + { + "name": "medium", + "url": "https://safeblastcrypto.medium.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/u/SafeBlastCrypto" + }, + { + "name": "youtube", + "url": "https://youtube.com/SafeBlastCrypto" + }, + { + "name": "telegram", + "url": "https://t.me/SafeBLAST" + }, + { + "name": "whitepaper", + "url": "https://safeblastcrypto.com/SafeBLAST-Whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/safeblast/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/safeblast" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x614D7f40701132E25fe6fc17801Fbd34212d2Eda/logo.png b/blockchains/ethereum/assets/0x614D7f40701132E25fe6fc17801Fbd34212d2Eda/logo.png new file mode 100644 index 00000000..34180c9c Binary files /dev/null and b/blockchains/ethereum/assets/0x614D7f40701132E25fe6fc17801Fbd34212d2Eda/logo.png differ diff --git a/blockchains/ethereum/assets/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707/info.json b/blockchains/ethereum/assets/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707/info.json new file mode 100644 index 00000000..19779a2b --- /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 00000000..f2b3d434 Binary files /dev/null and b/blockchains/ethereum/assets/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707/logo.png differ diff --git a/blockchains/ethereum/assets/0x61588F52056A65f5d145fFE83E4d482FFf01E096/info.json b/blockchains/ethereum/assets/0x61588F52056A65f5d145fFE83E4d482FFf01E096/info.json new file mode 100644 index 00000000..c488b022 --- /dev/null +++ b/blockchains/ethereum/assets/0x61588F52056A65f5d145fFE83E4d482FFf01E096/info.json @@ -0,0 +1,11 @@ +{ + "name": "iZiCoin", + "symbol": "IZC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x61588F52056A65f5d145fFE83E4d482FFf01E096", + "status": "abandoned", + "id": "0x61588F52056A65f5d145fFE83E4d482FFf01E096" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61588F52056A65f5d145fFE83E4d482FFf01E096/logo.png b/blockchains/ethereum/assets/0x61588F52056A65f5d145fFE83E4d482FFf01E096/logo.png new file mode 100644 index 00000000..a774022d Binary files /dev/null and b/blockchains/ethereum/assets/0x61588F52056A65f5d145fFE83E4d482FFf01E096/logo.png differ diff --git a/blockchains/ethereum/assets/0x6158e3F89b4398f5fb20D20DbFc5a5c955F0F6dd/info.json b/blockchains/ethereum/assets/0x6158e3F89b4398f5fb20D20DbFc5a5c955F0F6dd/info.json new file mode 100644 index 00000000..62ed1075 --- /dev/null +++ b/blockchains/ethereum/assets/0x6158e3F89b4398f5fb20D20DbFc5a5c955F0F6dd/info.json @@ -0,0 +1,11 @@ +{ + "name": "TimeBox Coin", + "symbol": "TB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.timebox.network", + "explorer": "https://etherscan.io/token/0x6158e3F89b4398f5fb20D20DbFc5a5c955F0F6dd", + "status": "spam", + "id": "0x6158e3F89b4398f5fb20D20DbFc5a5c955F0F6dd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6158e3F89b4398f5fb20D20DbFc5a5c955F0F6dd/logo.png b/blockchains/ethereum/assets/0x6158e3F89b4398f5fb20D20DbFc5a5c955F0F6dd/logo.png new file mode 100644 index 00000000..731a0995 Binary files /dev/null and b/blockchains/ethereum/assets/0x6158e3F89b4398f5fb20D20DbFc5a5c955F0F6dd/logo.png differ diff --git a/blockchains/ethereum/assets/0x617178Aab7d75e90E424FfE3C35BeF3b180C2080/info.json b/blockchains/ethereum/assets/0x617178Aab7d75e90E424FfE3C35BeF3b180C2080/info.json new file mode 100644 index 00000000..21ab64a6 --- /dev/null +++ b/blockchains/ethereum/assets/0x617178Aab7d75e90E424FfE3C35BeF3b180C2080/info.json @@ -0,0 +1,11 @@ +{ + "name": "Curlva Network", + "symbol": "AAA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x617178Aab7d75e90E424FfE3C35BeF3b180C2080", + "status": "abandoned", + "id": "0x617178Aab7d75e90E424FfE3C35BeF3b180C2080" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x617178Aab7d75e90E424FfE3C35BeF3b180C2080/logo.png b/blockchains/ethereum/assets/0x617178Aab7d75e90E424FfE3C35BeF3b180C2080/logo.png new file mode 100644 index 00000000..07cd3514 Binary files /dev/null and b/blockchains/ethereum/assets/0x617178Aab7d75e90E424FfE3C35BeF3b180C2080/logo.png differ diff --git a/blockchains/ethereum/assets/0x61725f3db4004AFE014745B21DAb1E1677CC328b/info.json b/blockchains/ethereum/assets/0x61725f3db4004AFE014745B21DAb1E1677CC328b/info.json new file mode 100644 index 00000000..1ca2202c --- /dev/null +++ b/blockchains/ethereum/assets/0x61725f3db4004AFE014745B21DAb1E1677CC328b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digital Asset Exchange Token", + "symbol": "DAXT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x61725f3db4004AFE014745B21DAb1E1677CC328b", + "status": "abandoned", + "id": "0x61725f3db4004AFE014745B21DAb1E1677CC328b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61725f3db4004AFE014745B21DAb1E1677CC328b/logo.png b/blockchains/ethereum/assets/0x61725f3db4004AFE014745B21DAb1E1677CC328b/logo.png new file mode 100755 index 00000000..992c2ed1 Binary files /dev/null and b/blockchains/ethereum/assets/0x61725f3db4004AFE014745B21DAb1E1677CC328b/logo.png differ diff --git a/blockchains/ethereum/assets/0x6175f6F85339f1e56AFFAc5A68cBf8297969004D/info.json b/blockchains/ethereum/assets/0x6175f6F85339f1e56AFFAc5A68cBf8297969004D/info.json new file mode 100644 index 00000000..a3375702 --- /dev/null +++ b/blockchains/ethereum/assets/0x6175f6F85339f1e56AFFAc5A68cBf8297969004D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shopin Token", + "symbol": "SHOP", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6175f6F85339f1e56AFFAc5A68cBf8297969004D", + "status": "abandoned", + "id": "0x6175f6F85339f1e56AFFAc5A68cBf8297969004D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6175f6F85339f1e56AFFAc5A68cBf8297969004D/logo.png b/blockchains/ethereum/assets/0x6175f6F85339f1e56AFFAc5A68cBf8297969004D/logo.png new file mode 100755 index 00000000..29589754 Binary files /dev/null and b/blockchains/ethereum/assets/0x6175f6F85339f1e56AFFAc5A68cBf8297969004D/logo.png differ diff --git a/blockchains/ethereum/assets/0x6179078872605396Ee62960917128F9477a5DdbB/info.json b/blockchains/ethereum/assets/0x6179078872605396Ee62960917128F9477a5DdbB/info.json new file mode 100644 index 00000000..efe4faa2 --- /dev/null +++ b/blockchains/ethereum/assets/0x6179078872605396Ee62960917128F9477a5DdbB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave UniETH", + "website": "https://aave.com", + "description": "Aave UniETH is an interest bearing token pegged 1:1 to the underlying ETH deposited in the Uniswap Market of Aave Protocol.", + "explorer": "https://etherscan.io/token/0x6179078872605396Ee62960917128F9477a5DdbB", + "type": "ERC20", + "symbol": "aUniETH", + "decimals": 18, + "status": "active", + "id": "0x6179078872605396Ee62960917128F9477a5DdbB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6179078872605396Ee62960917128F9477a5DdbB/logo.png b/blockchains/ethereum/assets/0x6179078872605396Ee62960917128F9477a5DdbB/logo.png new file mode 100644 index 00000000..81e599bc Binary files /dev/null and b/blockchains/ethereum/assets/0x6179078872605396Ee62960917128F9477a5DdbB/logo.png differ diff --git a/blockchains/ethereum/assets/0x618E75Ac90b12c6049Ba3b27f5d5F8651b0037F6/info.json b/blockchains/ethereum/assets/0x618E75Ac90b12c6049Ba3b27f5d5F8651b0037F6/info.json new file mode 100644 index 00000000..dc0bb844 --- /dev/null +++ b/blockchains/ethereum/assets/0x618E75Ac90b12c6049Ba3b27f5d5F8651b0037F6/info.json @@ -0,0 +1,11 @@ +{ + "name": "QASH", + "website": "https://liquid.com", + "description": "Liquid, formerly Quoine, is building a universal liquidity solution for cryptoasset trading and a suite of services, Worldbook and Prime Brokerage, using the Qash (QASH) token.", + "explorer": "https://etherscan.io/token/0x618E75Ac90b12c6049Ba3b27f5d5F8651b0037F6", + "type": "ERC20", + "symbol": "QASH", + "decimals": 6, + "status": "active", + "id": "0x618E75Ac90b12c6049Ba3b27f5d5F8651b0037F6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x618E75Ac90b12c6049Ba3b27f5d5F8651b0037F6/logo.png b/blockchains/ethereum/assets/0x618E75Ac90b12c6049Ba3b27f5d5F8651b0037F6/logo.png new file mode 100644 index 00000000..e0176a45 Binary files /dev/null and b/blockchains/ethereum/assets/0x618E75Ac90b12c6049Ba3b27f5d5F8651b0037F6/logo.png differ diff --git a/blockchains/ethereum/assets/0x618aCb9601cb54244F5780F09536DB07d2C7aCf4/info.json b/blockchains/ethereum/assets/0x618aCb9601cb54244F5780F09536DB07d2C7aCf4/info.json new file mode 100644 index 00000000..4618f2f3 --- /dev/null +++ b/blockchains/ethereum/assets/0x618aCb9601cb54244F5780F09536DB07d2C7aCf4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Defense Grade Security (GRIG)", + "website": "https://grig.ai/", + "description": "Grig is an ambitious project dedicated to produce a cutting-edge mobile platform providing highly secure messaging, payment transfers and 3-factor authentication capabilities.", + "explorer": "https://etherscan.io/token/0x618aCb9601cb54244F5780F09536DB07d2C7aCf4", + "type": "ERC20", + "symbol": "GRIG", + "decimals": 2, + "status": "active", + "id": "0x618aCb9601cb54244F5780F09536DB07d2C7aCf4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x618aCb9601cb54244F5780F09536DB07d2C7aCf4/logo.png b/blockchains/ethereum/assets/0x618aCb9601cb54244F5780F09536DB07d2C7aCf4/logo.png new file mode 100644 index 00000000..650d10ee Binary files /dev/null and b/blockchains/ethereum/assets/0x618aCb9601cb54244F5780F09536DB07d2C7aCf4/logo.png differ diff --git a/blockchains/ethereum/assets/0x61B21C6EE787bC1dF5EF873E5F6809711C62Ab92/info.json b/blockchains/ethereum/assets/0x61B21C6EE787bC1dF5EF873E5F6809711C62Ab92/info.json new file mode 100644 index 00000000..ee0b8e53 --- /dev/null +++ b/blockchains/ethereum/assets/0x61B21C6EE787bC1dF5EF873E5F6809711C62Ab92/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unit Payment International", + "symbol": "UPI", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x61B21C6EE787bC1dF5EF873E5F6809711C62Ab92", + "status": "abandoned", + "id": "0x61B21C6EE787bC1dF5EF873E5F6809711C62Ab92" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61B21C6EE787bC1dF5EF873E5F6809711C62Ab92/logo.png b/blockchains/ethereum/assets/0x61B21C6EE787bC1dF5EF873E5F6809711C62Ab92/logo.png new file mode 100644 index 00000000..3f14f791 Binary files /dev/null and b/blockchains/ethereum/assets/0x61B21C6EE787bC1dF5EF873E5F6809711C62Ab92/logo.png differ diff --git a/blockchains/ethereum/assets/0x61B2d3eA9f1c6b387C985C73d40e8fBfb284E5C7/info.json b/blockchains/ethereum/assets/0x61B2d3eA9f1c6b387C985C73d40e8fBfb284E5C7/info.json new file mode 100644 index 00000000..94ce276f --- /dev/null +++ b/blockchains/ethereum/assets/0x61B2d3eA9f1c6b387C985C73d40e8fBfb284E5C7/info.json @@ -0,0 +1,11 @@ +{ + "name": "RoboCalls", + "symbol": "RC20", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://robocalls.io", + "explorer": "https://etherscan.io/token/0x61B2d3eA9f1c6b387C985C73d40e8fBfb284E5C7", + "status": "abandoned", + "id": "0x61B2d3eA9f1c6b387C985C73d40e8fBfb284E5C7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61B2d3eA9f1c6b387C985C73d40e8fBfb284E5C7/logo.png b/blockchains/ethereum/assets/0x61B2d3eA9f1c6b387C985C73d40e8fBfb284E5C7/logo.png new file mode 100644 index 00000000..496e520f Binary files /dev/null and b/blockchains/ethereum/assets/0x61B2d3eA9f1c6b387C985C73d40e8fBfb284E5C7/logo.png differ diff --git a/blockchains/ethereum/assets/0x61C8BD3402999c5B4cAd919B774DBd5ab710E71f/info.json b/blockchains/ethereum/assets/0x61C8BD3402999c5B4cAd919B774DBd5ab710E71f/info.json new file mode 100644 index 00000000..67bedb9f --- /dev/null +++ b/blockchains/ethereum/assets/0x61C8BD3402999c5B4cAd919B774DBd5ab710E71f/info.json @@ -0,0 +1,11 @@ +{ + "name": "CESIO", + "symbol": "CES", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x61C8BD3402999c5B4cAd919B774DBd5ab710E71f", + "status": "abandoned", + "id": "0x61C8BD3402999c5B4cAd919B774DBd5ab710E71f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61C8BD3402999c5B4cAd919B774DBd5ab710E71f/logo.png b/blockchains/ethereum/assets/0x61C8BD3402999c5B4cAd919B774DBd5ab710E71f/logo.png new file mode 100644 index 00000000..e1eeafa4 Binary files /dev/null and b/blockchains/ethereum/assets/0x61C8BD3402999c5B4cAd919B774DBd5ab710E71f/logo.png differ diff --git a/blockchains/ethereum/assets/0x61D0ADfCF76225F3060eD9F72a5d74523c8eCabE/info.json b/blockchains/ethereum/assets/0x61D0ADfCF76225F3060eD9F72a5d74523c8eCabE/info.json new file mode 100644 index 00000000..3e4f640e --- /dev/null +++ b/blockchains/ethereum/assets/0x61D0ADfCF76225F3060eD9F72a5d74523c8eCabE/info.json @@ -0,0 +1,11 @@ +{ + "name": "OBIDUA", + "symbol": "OBD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x61D0ADfCF76225F3060eD9F72a5d74523c8eCabE", + "status": "abandoned", + "id": "0x61D0ADfCF76225F3060eD9F72a5d74523c8eCabE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61D0ADfCF76225F3060eD9F72a5d74523c8eCabE/logo.png b/blockchains/ethereum/assets/0x61D0ADfCF76225F3060eD9F72a5d74523c8eCabE/logo.png new file mode 100644 index 00000000..5db0dc39 Binary files /dev/null and b/blockchains/ethereum/assets/0x61D0ADfCF76225F3060eD9F72a5d74523c8eCabE/logo.png differ diff --git a/blockchains/ethereum/assets/0x61D24Aabb3e5E800D8f3d3D43dcBD66AE6caB51E/info.json b/blockchains/ethereum/assets/0x61D24Aabb3e5E800D8f3d3D43dcBD66AE6caB51E/info.json new file mode 100644 index 00000000..3f2db8d6 --- /dev/null +++ b/blockchains/ethereum/assets/0x61D24Aabb3e5E800D8f3d3D43dcBD66AE6caB51E/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitRabbit Exchange", + "symbol": "BRB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bitrabbit.io/", + "explorer": "https://etherscan.io/token/0x61D24Aabb3e5E800D8f3d3D43dcBD66AE6caB51E", + "status": "abandoned", + "id": "0x61D24Aabb3e5E800D8f3d3D43dcBD66AE6caB51E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61D24Aabb3e5E800D8f3d3D43dcBD66AE6caB51E/logo.png b/blockchains/ethereum/assets/0x61D24Aabb3e5E800D8f3d3D43dcBD66AE6caB51E/logo.png new file mode 100644 index 00000000..46b030cb Binary files /dev/null and b/blockchains/ethereum/assets/0x61D24Aabb3e5E800D8f3d3D43dcBD66AE6caB51E/logo.png differ diff --git a/blockchains/ethereum/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json b/blockchains/ethereum/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json new file mode 100644 index 00000000..33f469bc --- /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 00000000..08570c22 Binary files /dev/null and b/blockchains/ethereum/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png differ diff --git a/blockchains/ethereum/assets/0x61D71973A6FfD07d5F1095AED53b06E5673E64BC/info.json b/blockchains/ethereum/assets/0x61D71973A6FfD07d5F1095AED53b06E5673E64BC/info.json new file mode 100644 index 00000000..dcecad1f --- /dev/null +++ b/blockchains/ethereum/assets/0x61D71973A6FfD07d5F1095AED53b06E5673E64BC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mima", + "symbol": "MIMA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x61D71973A6FfD07d5F1095AED53b06E5673E64BC", + "status": "abandoned", + "id": "0x61D71973A6FfD07d5F1095AED53b06E5673E64BC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61D71973A6FfD07d5F1095AED53b06E5673E64BC/logo.png b/blockchains/ethereum/assets/0x61D71973A6FfD07d5F1095AED53b06E5673E64BC/logo.png new file mode 100644 index 00000000..f2d74740 Binary files /dev/null and b/blockchains/ethereum/assets/0x61D71973A6FfD07d5F1095AED53b06E5673E64BC/logo.png differ diff --git a/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/info.json b/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/info.json new file mode 100644 index 00000000..93f707a9 --- /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 00000000..c62c82fc Binary files /dev/null and b/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/logo.png differ diff --git a/blockchains/ethereum/assets/0x61Ed1C66239d29Cc93C8597c6167159e8F69a823/info.json b/blockchains/ethereum/assets/0x61Ed1C66239d29Cc93C8597c6167159e8F69a823/info.json new file mode 100644 index 00000000..8fd80fb5 --- /dev/null +++ b/blockchains/ethereum/assets/0x61Ed1C66239d29Cc93C8597c6167159e8F69a823/info.json @@ -0,0 +1,12 @@ +{ + "name": "Reference System for DeFi", + "website": "https://rsd.cash", + "description": "RSD is an algorithmic token with dynamic supply based on reinforcement learning aimed at the DeFi market.", + "explorer": "https://etherscan.io/token/0x61Ed1C66239d29Cc93C8597c6167159e8F69a823", + "research": "", + "type": "ERC20", + "symbol": "RSD", + "decimals": 18, + "status": "active", + "id": "0x61Ed1C66239d29Cc93C8597c6167159e8F69a823" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61Ed1C66239d29Cc93C8597c6167159e8F69a823/logo.png b/blockchains/ethereum/assets/0x61Ed1C66239d29Cc93C8597c6167159e8F69a823/logo.png new file mode 100644 index 00000000..99f1c68f Binary files /dev/null and b/blockchains/ethereum/assets/0x61Ed1C66239d29Cc93C8597c6167159e8F69a823/logo.png differ diff --git a/blockchains/ethereum/assets/0x61bc1F530AC6193D73aF1e1A6A14CB44b9C3f915/info.json b/blockchains/ethereum/assets/0x61bc1F530AC6193D73aF1e1A6A14CB44b9C3f915/info.json new file mode 100644 index 00000000..891a7635 --- /dev/null +++ b/blockchains/ethereum/assets/0x61bc1F530AC6193D73aF1e1A6A14CB44b9C3f915/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pajama.Finance", + "website": "https://pajama.finance/", + "description": "Pajama.Finance - $PJM is an Yield Farming Token! Farm $PJM and receive $PJM!", + "explorer": "https://etherscan.io/token/0x61bc1F530AC6193D73aF1e1A6A14CB44b9C3f915", + "type": "ERC20", + "symbol": "PJM", + "decimals": 18, + "status": "active", + "id": "0x61bc1F530AC6193D73aF1e1A6A14CB44b9C3f915" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61bc1F530AC6193D73aF1e1A6A14CB44b9C3f915/logo.png b/blockchains/ethereum/assets/0x61bc1F530AC6193D73aF1e1A6A14CB44b9C3f915/logo.png new file mode 100644 index 00000000..e62f0ee1 Binary files /dev/null and b/blockchains/ethereum/assets/0x61bc1F530AC6193D73aF1e1A6A14CB44b9C3f915/logo.png differ diff --git a/blockchains/ethereum/assets/0x61c0407487349E7C828d0C21D63BfD0Ac6640AB5/info.json b/blockchains/ethereum/assets/0x61c0407487349E7C828d0C21D63BfD0Ac6640AB5/info.json new file mode 100644 index 00000000..807a3070 --- /dev/null +++ b/blockchains/ethereum/assets/0x61c0407487349E7C828d0C21D63BfD0Ac6640AB5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zebras Token", + "symbol": "ZBT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x61c0407487349E7C828d0C21D63BfD0Ac6640AB5", + "status": "abandoned", + "id": "0x61c0407487349E7C828d0C21D63BfD0Ac6640AB5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61c0407487349E7C828d0C21D63BfD0Ac6640AB5/logo.png b/blockchains/ethereum/assets/0x61c0407487349E7C828d0C21D63BfD0Ac6640AB5/logo.png new file mode 100644 index 00000000..d6fd8a2f Binary files /dev/null and b/blockchains/ethereum/assets/0x61c0407487349E7C828d0C21D63BfD0Ac6640AB5/logo.png differ diff --git a/blockchains/ethereum/assets/0x61cDb66e56FAD942a7b5cE3F419FfE9375E31075/info.json b/blockchains/ethereum/assets/0x61cDb66e56FAD942a7b5cE3F419FfE9375E31075/info.json new file mode 100644 index 00000000..30346a49 --- /dev/null +++ b/blockchains/ethereum/assets/0x61cDb66e56FAD942a7b5cE3F419FfE9375E31075/info.json @@ -0,0 +1,11 @@ +{ + "name": "RAIN Network", + "symbol": "RAIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://rainnetwork.online/", + "explorer": "https://etherscan.io/token/0x61cDb66e56FAD942a7b5cE3F419FfE9375E31075", + "status": "abandoned", + "id": "0x61cDb66e56FAD942a7b5cE3F419FfE9375E31075" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61cDb66e56FAD942a7b5cE3F419FfE9375E31075/logo.png b/blockchains/ethereum/assets/0x61cDb66e56FAD942a7b5cE3F419FfE9375E31075/logo.png new file mode 100644 index 00000000..5c310fb1 Binary files /dev/null and b/blockchains/ethereum/assets/0x61cDb66e56FAD942a7b5cE3F419FfE9375E31075/logo.png differ diff --git a/blockchains/ethereum/assets/0x61cc6aF18C351351148815c5F4813A16DEe7A7E4/info.json b/blockchains/ethereum/assets/0x61cc6aF18C351351148815c5F4813A16DEe7A7E4/info.json new file mode 100644 index 00000000..2b4108f0 --- /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 00000000..dd09bc1d Binary files /dev/null and b/blockchains/ethereum/assets/0x61cc6aF18C351351148815c5F4813A16DEe7A7E4/logo.png differ diff --git a/blockchains/ethereum/assets/0x61dF1FD3454185A66B03C27F84ffB7e4D478553E/info.json b/blockchains/ethereum/assets/0x61dF1FD3454185A66B03C27F84ffB7e4D478553E/info.json new file mode 100644 index 00000000..d5aeb5f5 --- /dev/null +++ b/blockchains/ethereum/assets/0x61dF1FD3454185A66B03C27F84ffB7e4D478553E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Junto", + "symbol": "JUNTO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x61dF1FD3454185A66B03C27F84ffB7e4D478553E", + "status": "abandoned", + "id": "0x61dF1FD3454185A66B03C27F84ffB7e4D478553E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61dF1FD3454185A66B03C27F84ffB7e4D478553E/logo.png b/blockchains/ethereum/assets/0x61dF1FD3454185A66B03C27F84ffB7e4D478553E/logo.png new file mode 100644 index 00000000..7d945946 Binary files /dev/null and b/blockchains/ethereum/assets/0x61dF1FD3454185A66B03C27F84ffB7e4D478553E/logo.png differ diff --git a/blockchains/ethereum/assets/0x61f33Da40594cEc1E3Dc900FaF99F861D01e2e7D/info.json b/blockchains/ethereum/assets/0x61f33Da40594cEc1E3Dc900FaF99F861D01e2e7D/info.json new file mode 100644 index 00000000..11d61b61 --- /dev/null +++ b/blockchains/ethereum/assets/0x61f33Da40594cEc1E3Dc900FaF99F861D01e2e7D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cybereits Token", + "symbol": "CRE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://cybereits.com/", + "explorer": "https://etherscan.io/token/0x61f33Da40594cEc1E3Dc900FaF99F861D01e2e7D", + "status": "abandoned", + "id": "0x61f33Da40594cEc1E3Dc900FaF99F861D01e2e7D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61f33Da40594cEc1E3Dc900FaF99F861D01e2e7D/logo.png b/blockchains/ethereum/assets/0x61f33Da40594cEc1E3Dc900FaF99F861D01e2e7D/logo.png new file mode 100755 index 00000000..132f43c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x61f33Da40594cEc1E3Dc900FaF99F861D01e2e7D/logo.png differ diff --git a/blockchains/ethereum/assets/0x61f7f75552A8d961718B4eAaae10DEfc4D29a28c/info.json b/blockchains/ethereum/assets/0x61f7f75552A8d961718B4eAaae10DEfc4D29a28c/info.json new file mode 100644 index 00000000..93b48eb2 --- /dev/null +++ b/blockchains/ethereum/assets/0x61f7f75552A8d961718B4eAaae10DEfc4D29a28c/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-12/30M42", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x61f7f75552A8d961718B4eAaae10DEfc4D29a28c", + "status": "abandoned", + "id": "0x61f7f75552A8d961718B4eAaae10DEfc4D29a28c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61f7f75552A8d961718B4eAaae10DEfc4D29a28c/logo.png b/blockchains/ethereum/assets/0x61f7f75552A8d961718B4eAaae10DEfc4D29a28c/logo.png new file mode 100644 index 00000000..8bdba1ee Binary files /dev/null and b/blockchains/ethereum/assets/0x61f7f75552A8d961718B4eAaae10DEfc4D29a28c/logo.png differ diff --git a/blockchains/ethereum/assets/0x62050D57CB395239972Dc9A0D6c1bA273b45a416/info.json b/blockchains/ethereum/assets/0x62050D57CB395239972Dc9A0D6c1bA273b45a416/info.json new file mode 100644 index 00000000..a0f93a83 --- /dev/null +++ b/blockchains/ethereum/assets/0x62050D57CB395239972Dc9A0D6c1bA273b45a416/info.json @@ -0,0 +1,11 @@ +{ + "name": "Retengo", + "symbol": "REG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x62050D57CB395239972Dc9A0D6c1bA273b45a416", + "status": "spam", + "id": "0x62050D57CB395239972Dc9A0D6c1bA273b45a416" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62050D57CB395239972Dc9A0D6c1bA273b45a416/logo.png b/blockchains/ethereum/assets/0x62050D57CB395239972Dc9A0D6c1bA273b45a416/logo.png new file mode 100755 index 00000000..53178633 Binary files /dev/null and b/blockchains/ethereum/assets/0x62050D57CB395239972Dc9A0D6c1bA273b45a416/logo.png differ diff --git a/blockchains/ethereum/assets/0x621E0D4E21683459A1fc4784A525095677461DbE/info.json b/blockchains/ethereum/assets/0x621E0D4E21683459A1fc4784A525095677461DbE/info.json new file mode 100644 index 00000000..70d2e14b --- /dev/null +++ b/blockchains/ethereum/assets/0x621E0D4E21683459A1fc4784A525095677461DbE/info.json @@ -0,0 +1,11 @@ +{ + "name": "wetoken", + "symbol": "WET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x621E0D4E21683459A1fc4784A525095677461DbE", + "status": "abandoned", + "id": "0x621E0D4E21683459A1fc4784A525095677461DbE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x621E0D4E21683459A1fc4784A525095677461DbE/logo.png b/blockchains/ethereum/assets/0x621E0D4E21683459A1fc4784A525095677461DbE/logo.png new file mode 100644 index 00000000..497b2650 Binary files /dev/null and b/blockchains/ethereum/assets/0x621E0D4E21683459A1fc4784A525095677461DbE/logo.png differ diff --git a/blockchains/ethereum/assets/0x621d78f2EF2fd937BFca696CabaF9A779F59B3Ed/info.json b/blockchains/ethereum/assets/0x621d78f2EF2fd937BFca696CabaF9A779F59B3Ed/info.json new file mode 100644 index 00000000..fcd24915 --- /dev/null +++ b/blockchains/ethereum/assets/0x621d78f2EF2fd937BFca696CabaF9A779F59B3Ed/info.json @@ -0,0 +1,11 @@ +{ + "name": "DCORP", + "symbol": "DRP", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "https://www.dcorp.it/", + "explorer": "https://etherscan.io/token/0x621d78f2EF2fd937BFca696CabaF9A779F59B3Ed", + "status": "abandoned", + "id": "0x621d78f2EF2fd937BFca696CabaF9A779F59B3Ed" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x621d78f2EF2fd937BFca696CabaF9A779F59B3Ed/logo.png b/blockchains/ethereum/assets/0x621d78f2EF2fd937BFca696CabaF9A779F59B3Ed/logo.png new file mode 100644 index 00000000..adee5c73 Binary files /dev/null and b/blockchains/ethereum/assets/0x621d78f2EF2fd937BFca696CabaF9A779F59B3Ed/logo.png differ diff --git a/blockchains/ethereum/assets/0x6226caA1857AFBc6DFB6ca66071Eb241228031A1/info.json b/blockchains/ethereum/assets/0x6226caA1857AFBc6DFB6ca66071Eb241228031A1/info.json new file mode 100644 index 00000000..b53d7fe0 --- /dev/null +++ b/blockchains/ethereum/assets/0x6226caA1857AFBc6DFB6ca66071Eb241228031A1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Linkart", + "symbol": "LAR", + "type": "ERC20", + "decimals": 18, + "description": "LinkArt aims to establish a decentralized platform to track and manage the whole life cycle of artworks on blockchain. Through token economy, LinkArt empowers the artwork and improves artwork awareness and liquidity.", + "website": "http://www.linkart.io/", + "explorer": "https://etherscan.io/token/0x6226caA1857AFBc6DFB6ca66071Eb241228031A1", + "status": "active", + "id": "0x6226caA1857AFBc6DFB6ca66071Eb241228031A1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6226caA1857AFBc6DFB6ca66071Eb241228031A1/logo.png b/blockchains/ethereum/assets/0x6226caA1857AFBc6DFB6ca66071Eb241228031A1/logo.png new file mode 100644 index 00000000..1d2056b8 Binary files /dev/null and b/blockchains/ethereum/assets/0x6226caA1857AFBc6DFB6ca66071Eb241228031A1/logo.png differ diff --git a/blockchains/ethereum/assets/0x6226e00bCAc68b0Fe55583B90A1d727C14fAB77f/info.json b/blockchains/ethereum/assets/0x6226e00bCAc68b0Fe55583B90A1d727C14fAB77f/info.json new file mode 100644 index 00000000..f5b1694d --- /dev/null +++ b/blockchains/ethereum/assets/0x6226e00bCAc68b0Fe55583B90A1d727C14fAB77f/info.json @@ -0,0 +1,61 @@ +{ + "name": "MultiVAC", + "symbol": "MTV", + "type": "ERC20", + "decimals": 18, + "description": "MultiVAC is the innovative sharding protocol and pioneering flexible computing framework. MultiVAC is also called 'Multi-core Ethereum'. As a high-throughput and flexible public blockchain platform, MultiVAC proposed an all-dimensional sharding solution to increase TPS of blockchain, and MultiVAC is the first one that proposed a flexible computing framework, so the developers can trade-off freely about the blockchain trilemma on this framework.", + "website": "https://www.mtv.ac/", + "explorer": "https://etherscan.io/token/0x6226e00bcac68b0fe55583b90a1d727c14fab77f", + "status": "active", + "id": "0x6226e00bCAc68b0Fe55583B90A1d727C14fAB77f", + "links": [ + { + "name": "github", + "url": "https://github.com/multivactech" + }, + { + "name": "x", + "url": "https://x.com/MultiVAC_Global" + }, + { + "name": "blog", + "url": "https://multivac-global.medium.com" + }, + { + "name": "telegram", + "url": "https://t.me/MultiVAC2020" + }, + { + "name": "telegram_news", + "url": "https://t.me/MultiVACMTV" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC601thGbV-rneZB8KTtbqpA?sub_confirmation=1" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiVAC.MTV/" + }, + { + "name": "discord", + "url": "https://discord.com/zq8dbUZMCF" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MultiVAC_official/" + }, + { + "name": "whitepaper", + "url": "https://mtv.ac/assets/file/MultiVAC_Tech_Whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multivac/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/multivac" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6226e00bCAc68b0Fe55583B90A1d727C14fAB77f/logo.png b/blockchains/ethereum/assets/0x6226e00bCAc68b0Fe55583B90A1d727C14fAB77f/logo.png new file mode 100644 index 00000000..3b63f069 Binary files /dev/null and b/blockchains/ethereum/assets/0x6226e00bCAc68b0Fe55583B90A1d727C14fAB77f/logo.png differ diff --git a/blockchains/ethereum/assets/0x622CD54dEb2bB7A051515192417109bcF3fe098f/info.json b/blockchains/ethereum/assets/0x622CD54dEb2bB7A051515192417109bcF3fe098f/info.json new file mode 100644 index 00000000..570158bc --- /dev/null +++ b/blockchains/ethereum/assets/0x622CD54dEb2bB7A051515192417109bcF3fe098f/info.json @@ -0,0 +1,11 @@ +{ + "name": "IPC", + "symbol": "IPC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.ipcchain.org/", + "explorer": "https://etherscan.io/token/0x622CD54dEb2bB7A051515192417109bcF3fe098f", + "status": "abandoned", + "id": "0x622CD54dEb2bB7A051515192417109bcF3fe098f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x622CD54dEb2bB7A051515192417109bcF3fe098f/logo.png b/blockchains/ethereum/assets/0x622CD54dEb2bB7A051515192417109bcF3fe098f/logo.png new file mode 100644 index 00000000..bfcf78aa Binary files /dev/null and b/blockchains/ethereum/assets/0x622CD54dEb2bB7A051515192417109bcF3fe098f/logo.png differ diff --git a/blockchains/ethereum/assets/0x622dFfCc4e83C64ba959530A5a5580687a57581b/info.json b/blockchains/ethereum/assets/0x622dFfCc4e83C64ba959530A5a5580687a57581b/info.json new file mode 100644 index 00000000..bb8ec063 --- /dev/null +++ b/blockchains/ethereum/assets/0x622dFfCc4e83C64ba959530A5a5580687a57581b/info.json @@ -0,0 +1,11 @@ +{ + "name": "CUBE", + "symbol": "AUTO", + "type": "ERC20", + "decimals": 18, + "description": "Autonomous Car Future Mobility Platform", + "website": "https://cubeint.io", + "explorer": "https://etherscan.io/token/0x622dFfCc4e83C64ba959530A5a5580687a57581b", + "status": "active", + "id": "0x622dFfCc4e83C64ba959530A5a5580687a57581b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x622dFfCc4e83C64ba959530A5a5580687a57581b/logo.png b/blockchains/ethereum/assets/0x622dFfCc4e83C64ba959530A5a5580687a57581b/logo.png new file mode 100644 index 00000000..8a3196c5 Binary files /dev/null and b/blockchains/ethereum/assets/0x622dFfCc4e83C64ba959530A5a5580687a57581b/logo.png differ diff --git a/blockchains/ethereum/assets/0x62357227E54d0A3a832bD5c58b3325A09c778Bdf/info.json b/blockchains/ethereum/assets/0x62357227E54d0A3a832bD5c58b3325A09c778Bdf/info.json new file mode 100644 index 00000000..35918920 --- /dev/null +++ b/blockchains/ethereum/assets/0x62357227E54d0A3a832bD5c58b3325A09c778Bdf/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETH_2X TOKEN", + "symbol": "E2X", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x62357227E54d0A3a832bD5c58b3325A09c778Bdf", + "status": "abandoned", + "id": "0x62357227E54d0A3a832bD5c58b3325A09c778Bdf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62357227E54d0A3a832bD5c58b3325A09c778Bdf/logo.png b/blockchains/ethereum/assets/0x62357227E54d0A3a832bD5c58b3325A09c778Bdf/logo.png new file mode 100644 index 00000000..c5706830 Binary files /dev/null and b/blockchains/ethereum/assets/0x62357227E54d0A3a832bD5c58b3325A09c778Bdf/logo.png differ diff --git a/blockchains/ethereum/assets/0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7/info.json b/blockchains/ethereum/assets/0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7/info.json new file mode 100644 index 00000000..2f9cba96 --- /dev/null +++ b/blockchains/ethereum/assets/0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7/info.json @@ -0,0 +1,28 @@ +{ + "name": "cVault.finance", + "website": "https://cVault.finance", + "description": "CORE is the first ever deflationary farming token.", + "explorer": "https://etherscan.io/token/0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7", + "type": "ERC20", + "symbol": "CORE", + "decimals": 18, + "status": "active", + "id": "0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7", + "tags": [ + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/cVault-finance/" + }, + { + "name": "x", + "url": "https://x.com/CORE_VAULT" + }, + { + "name": "telegram", + "url": "https://t.me/COREVault" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7/logo.png b/blockchains/ethereum/assets/0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7/logo.png new file mode 100644 index 00000000..096af2ce Binary files /dev/null and b/blockchains/ethereum/assets/0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7/logo.png differ diff --git a/blockchains/ethereum/assets/0x623aFE103Fb8d189B56311E4CE9956Ec0989b412/info.json b/blockchains/ethereum/assets/0x623aFE103Fb8d189B56311E4CE9956Ec0989b412/info.json new file mode 100644 index 00000000..33c7b360 --- /dev/null +++ b/blockchains/ethereum/assets/0x623aFE103Fb8d189B56311E4CE9956Ec0989b412/info.json @@ -0,0 +1,11 @@ +{ + "name": "Beauty Coin", + "symbol": "BEAUTY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x623aFE103Fb8d189B56311E4CE9956Ec0989b412", + "status": "abandoned", + "id": "0x623aFE103Fb8d189B56311E4CE9956Ec0989b412" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x623aFE103Fb8d189B56311E4CE9956Ec0989b412/logo.png b/blockchains/ethereum/assets/0x623aFE103Fb8d189B56311E4CE9956Ec0989b412/logo.png new file mode 100644 index 00000000..66da3a6c Binary files /dev/null and b/blockchains/ethereum/assets/0x623aFE103Fb8d189B56311E4CE9956Ec0989b412/logo.png differ diff --git a/blockchains/ethereum/assets/0x6243d8CEA23066d098a15582d81a598b4e8391F4/info.json b/blockchains/ethereum/assets/0x6243d8CEA23066d098a15582d81a598b4e8391F4/info.json new file mode 100644 index 00000000..678e07db --- /dev/null +++ b/blockchains/ethereum/assets/0x6243d8CEA23066d098a15582d81a598b4e8391F4/info.json @@ -0,0 +1,12 @@ +{ + "name": "Reflexer Ungovernance Token", + "website": "https://reflexer.finance", + "description": "FLX is the ungovernance token for the RAI stable asset and the Reflexer ecosystem. It is a backstop asset for the RAI protocol.", + "explorer": "https://etherscan.io/token/0x6243d8CEA23066d098a15582d81a598b4e8391F4", + "research": "https://docs.reflexer.finance/", + "type": "ERC20", + "symbol": "FLX", + "decimals": 18, + "status": "active", + "id": "0x6243d8CEA23066d098a15582d81a598b4e8391F4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6243d8CEA23066d098a15582d81a598b4e8391F4/logo.png b/blockchains/ethereum/assets/0x6243d8CEA23066d098a15582d81a598b4e8391F4/logo.png new file mode 100644 index 00000000..006b8c97 Binary files /dev/null and b/blockchains/ethereum/assets/0x6243d8CEA23066d098a15582d81a598b4e8391F4/logo.png differ diff --git a/blockchains/ethereum/assets/0x624d520BAB2E4aD83935Fa503fB130614374E850/info.json b/blockchains/ethereum/assets/0x624d520BAB2E4aD83935Fa503fB130614374E850/info.json new file mode 100644 index 00000000..aa3f9106 --- /dev/null +++ b/blockchains/ethereum/assets/0x624d520BAB2E4aD83935Fa503fB130614374E850/info.json @@ -0,0 +1,11 @@ +{ + "name": "smartshare token", + "symbol": "SSP", + "type": "ERC20", + "decimals": 4, + "description": "Smartshare (SSP) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://smartshare.vip/#/", + "explorer": "https://etherscan.io/token/0x624d520BAB2E4aD83935Fa503fB130614374E850", + "status": "active", + "id": "0x624d520BAB2E4aD83935Fa503fB130614374E850" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x624d520BAB2E4aD83935Fa503fB130614374E850/logo.png b/blockchains/ethereum/assets/0x624d520BAB2E4aD83935Fa503fB130614374E850/logo.png new file mode 100755 index 00000000..31b4ab0e Binary files /dev/null and b/blockchains/ethereum/assets/0x624d520BAB2E4aD83935Fa503fB130614374E850/logo.png differ diff --git a/blockchains/ethereum/assets/0x6251583e7D997DF3604bc73B9779196e94A090Ce/info.json b/blockchains/ethereum/assets/0x6251583e7D997DF3604bc73B9779196e94A090Ce/info.json new file mode 100644 index 00000000..41cad536 --- /dev/null +++ b/blockchains/ethereum/assets/0x6251583e7D997DF3604bc73B9779196e94A090Ce/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hercules", + "symbol": "HERC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6251583e7D997DF3604bc73B9779196e94A090Ce", + "status": "abandoned", + "id": "0x6251583e7D997DF3604bc73B9779196e94A090Ce" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6251583e7D997DF3604bc73B9779196e94A090Ce/logo.png b/blockchains/ethereum/assets/0x6251583e7D997DF3604bc73B9779196e94A090Ce/logo.png new file mode 100644 index 00000000..a121695e Binary files /dev/null and b/blockchains/ethereum/assets/0x6251583e7D997DF3604bc73B9779196e94A090Ce/logo.png differ diff --git a/blockchains/ethereum/assets/0x6251E725CD45Fb1AF99354035a414A2C0890B929/info.json b/blockchains/ethereum/assets/0x6251E725CD45Fb1AF99354035a414A2C0890B929/info.json new file mode 100644 index 00000000..5acdebf3 --- /dev/null +++ b/blockchains/ethereum/assets/0x6251E725CD45Fb1AF99354035a414A2C0890B929/info.json @@ -0,0 +1,11 @@ +{ + "name": "MixTrust", + "symbol": "MXT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.mixtrust.exchange/", + "explorer": "https://etherscan.io/token/0x6251E725CD45Fb1AF99354035a414A2C0890B929", + "status": "abandoned", + "id": "0x6251E725CD45Fb1AF99354035a414A2C0890B929" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6251E725CD45Fb1AF99354035a414A2C0890B929/logo.png b/blockchains/ethereum/assets/0x6251E725CD45Fb1AF99354035a414A2C0890B929/logo.png new file mode 100644 index 00000000..3f05494c Binary files /dev/null and b/blockchains/ethereum/assets/0x6251E725CD45Fb1AF99354035a414A2C0890B929/logo.png differ diff --git a/blockchains/ethereum/assets/0x625Fb557cAD6D4638dae420626F3F08A485b43a8/info.json b/blockchains/ethereum/assets/0x625Fb557cAD6D4638dae420626F3F08A485b43a8/info.json new file mode 100644 index 00000000..ebb89618 --- /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 00000000..2ce033b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x625Fb557cAD6D4638dae420626F3F08A485b43a8/logo.png differ diff --git a/blockchains/ethereum/assets/0x625aE63000f46200499120B906716420bd059240/info.json b/blockchains/ethereum/assets/0x625aE63000f46200499120B906716420bd059240/info.json new file mode 100644 index 00000000..7ffcf21e --- /dev/null +++ b/blockchains/ethereum/assets/0x625aE63000f46200499120B906716420bd059240/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave SUSD V1", + "symbol": "aSUSD V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave SUSD V1 is an interest bearing token pegged 1:1 to the underlying SUSD deposited in Aave V1. aSUSD V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x625aE63000f46200499120B906716420bd059240", + "status": "abandoned", + "id": "0x625aE63000f46200499120B906716420bd059240" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x625aE63000f46200499120B906716420bd059240/logo.png b/blockchains/ethereum/assets/0x625aE63000f46200499120B906716420bd059240/logo.png new file mode 100644 index 00000000..b1303460 Binary files /dev/null and b/blockchains/ethereum/assets/0x625aE63000f46200499120B906716420bd059240/logo.png differ diff --git a/blockchains/ethereum/assets/0x6265bCD2ca8E8Ee077CB9A9C66a851F18216022E/info.json b/blockchains/ethereum/assets/0x6265bCD2ca8E8Ee077CB9A9C66a851F18216022E/info.json new file mode 100644 index 00000000..030912aa --- /dev/null +++ b/blockchains/ethereum/assets/0x6265bCD2ca8E8Ee077CB9A9C66a851F18216022E/info.json @@ -0,0 +1,11 @@ +{ + "name": "EtherCare", + "symbol": "ETCR", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6265bCD2ca8E8Ee077CB9A9C66a851F18216022E", + "status": "abandoned", + "id": "0x6265bCD2ca8E8Ee077CB9A9C66a851F18216022E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6265bCD2ca8E8Ee077CB9A9C66a851F18216022E/logo.png b/blockchains/ethereum/assets/0x6265bCD2ca8E8Ee077CB9A9C66a851F18216022E/logo.png new file mode 100644 index 00000000..4d2e6cb9 Binary files /dev/null and b/blockchains/ethereum/assets/0x6265bCD2ca8E8Ee077CB9A9C66a851F18216022E/logo.png differ diff --git a/blockchains/ethereum/assets/0x626E8036dEB333b408Be468F951bdB42433cBF18/info.json b/blockchains/ethereum/assets/0x626E8036dEB333b408Be468F951bdB42433cBF18/info.json new file mode 100644 index 00000000..7b67dc8d --- /dev/null +++ b/blockchains/ethereum/assets/0x626E8036dEB333b408Be468F951bdB42433cBF18/info.json @@ -0,0 +1,11 @@ +{ + "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://etherscan.io/token/0x626E8036dEB333b408Be468F951bdB42433cBF18", + "type": "ERC20", + "symbol": "AIOZ", + "decimals": 18, + "status": "active", + "id": "0x626E8036dEB333b408Be468F951bdB42433cBF18" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x626E8036dEB333b408Be468F951bdB42433cBF18/logo.png b/blockchains/ethereum/assets/0x626E8036dEB333b408Be468F951bdB42433cBF18/logo.png new file mode 100644 index 00000000..3a03dd6f Binary files /dev/null and b/blockchains/ethereum/assets/0x626E8036dEB333b408Be468F951bdB42433cBF18/logo.png differ diff --git a/blockchains/ethereum/assets/0x6275181a6480Deb056B60c2ABa055bFD56C3c5fb/info.json b/blockchains/ethereum/assets/0x6275181a6480Deb056B60c2ABa055bFD56C3c5fb/info.json new file mode 100644 index 00000000..c32faece --- /dev/null +++ b/blockchains/ethereum/assets/0x6275181a6480Deb056B60c2ABa055bFD56C3c5fb/info.json @@ -0,0 +1,11 @@ +{ + "name": "TGKR", + "symbol": "TGKR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6275181a6480Deb056B60c2ABa055bFD56C3c5fb", + "status": "abandoned", + "id": "0x6275181a6480Deb056B60c2ABa055bFD56C3c5fb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6275181a6480Deb056B60c2ABa055bFD56C3c5fb/logo.png b/blockchains/ethereum/assets/0x6275181a6480Deb056B60c2ABa055bFD56C3c5fb/logo.png new file mode 100644 index 00000000..2e0ccbcf Binary files /dev/null and b/blockchains/ethereum/assets/0x6275181a6480Deb056B60c2ABa055bFD56C3c5fb/logo.png differ diff --git a/blockchains/ethereum/assets/0x627974847450C45b60B3Fe3598f4e6E4cf945B9a/info.json b/blockchains/ethereum/assets/0x627974847450C45b60B3Fe3598f4e6E4cf945B9a/info.json new file mode 100644 index 00000000..eab11947 --- /dev/null +++ b/blockchains/ethereum/assets/0x627974847450C45b60B3Fe3598f4e6E4cf945B9a/info.json @@ -0,0 +1,11 @@ +{ + "name": "ThunderBoltCoin", + "symbol": "TBC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.thunderboltcoin.io/", + "explorer": "https://etherscan.io/token/0x627974847450C45b60B3Fe3598f4e6E4cf945B9a", + "status": "abandoned", + "id": "0x627974847450C45b60B3Fe3598f4e6E4cf945B9a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x627974847450C45b60B3Fe3598f4e6E4cf945B9a/logo.png b/blockchains/ethereum/assets/0x627974847450C45b60B3Fe3598f4e6E4cf945B9a/logo.png new file mode 100755 index 00000000..0769c321 Binary files /dev/null and b/blockchains/ethereum/assets/0x627974847450C45b60B3Fe3598f4e6E4cf945B9a/logo.png differ diff --git a/blockchains/ethereum/assets/0x627B9057549CE79ca1dE9dE5019EE5cfa1EaDC86/info.json b/blockchains/ethereum/assets/0x627B9057549CE79ca1dE9dE5019EE5cfa1EaDC86/info.json new file mode 100644 index 00000000..45ec2713 --- /dev/null +++ b/blockchains/ethereum/assets/0x627B9057549CE79ca1dE9dE5019EE5cfa1EaDC86/info.json @@ -0,0 +1,11 @@ +{ + "name": "YACHT.SOCIAL", + "symbol": "YSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x627B9057549CE79ca1dE9dE5019EE5cfa1EaDC86", + "status": "abandoned", + "id": "0x627B9057549CE79ca1dE9dE5019EE5cfa1EaDC86" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x627B9057549CE79ca1dE9dE5019EE5cfa1EaDC86/logo.png b/blockchains/ethereum/assets/0x627B9057549CE79ca1dE9dE5019EE5cfa1EaDC86/logo.png new file mode 100644 index 00000000..4bd88f19 Binary files /dev/null and b/blockchains/ethereum/assets/0x627B9057549CE79ca1dE9dE5019EE5cfa1EaDC86/logo.png differ diff --git a/blockchains/ethereum/assets/0x628A3b2E302C7e896AcC432D2d0dD22B6cb9bc88/info.json b/blockchains/ethereum/assets/0x628A3b2E302C7e896AcC432D2d0dD22B6cb9bc88/info.json new file mode 100644 index 00000000..c827cf4e --- /dev/null +++ b/blockchains/ethereum/assets/0x628A3b2E302C7e896AcC432D2d0dD22B6cb9bc88/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://etherscan.io/token/0x628a3b2e302c7e896acc432d2d0dd22b6cb9bc88", + "symbol": "LMWR", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0x628A3b2E302C7e896AcC432D2d0dD22B6cb9bc88", + "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/ethereum/assets/0x628A3b2E302C7e896AcC432D2d0dD22B6cb9bc88/logo.png b/blockchains/ethereum/assets/0x628A3b2E302C7e896AcC432D2d0dD22B6cb9bc88/logo.png new file mode 100644 index 00000000..686dbf33 Binary files /dev/null and b/blockchains/ethereum/assets/0x628A3b2E302C7e896AcC432D2d0dD22B6cb9bc88/logo.png differ diff --git a/blockchains/ethereum/assets/0x62951eD30443389CDd36026cC79D68021420Cd6B/info.json b/blockchains/ethereum/assets/0x62951eD30443389CDd36026cC79D68021420Cd6B/info.json new file mode 100644 index 00000000..b927c8e6 --- /dev/null +++ b/blockchains/ethereum/assets/0x62951eD30443389CDd36026cC79D68021420Cd6B/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 330-CN37", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x62951eD30443389CDd36026cC79D68021420Cd6B", + "status": "abandoned", + "id": "0x62951eD30443389CDd36026cC79D68021420Cd6B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62951eD30443389CDd36026cC79D68021420Cd6B/logo.png b/blockchains/ethereum/assets/0x62951eD30443389CDd36026cC79D68021420Cd6B/logo.png new file mode 100644 index 00000000..e779a511 Binary files /dev/null and b/blockchains/ethereum/assets/0x62951eD30443389CDd36026cC79D68021420Cd6B/logo.png differ diff --git a/blockchains/ethereum/assets/0x62959c699A52eC647622c91e79CE73344e4099f5/info.json b/blockchains/ethereum/assets/0x62959c699A52eC647622c91e79CE73344e4099f5/info.json new file mode 100644 index 00000000..e42d6b4e --- /dev/null +++ b/blockchains/ethereum/assets/0x62959c699A52eC647622c91e79CE73344e4099f5/info.json @@ -0,0 +1,28 @@ +{ + "name": "DeFine Art", + "type": "ERC20", + "symbol": "DFA", + "decimals": 18, + "website": "https://www.define.one/", + "description": "DeFine is the NFT social platform for all creators including artists, musicians, influencers, gamers, and athletes. The platform facilitates all social interaction, engagement and communication for creators and their fanbase with digital assets like NFTs and social/fan tokens.", + "explorer": "https://etherscan.io/token/0x62959c699a52ec647622c91e79ce73344e4099f5", + "status": "active", + "id": "0x62959c699A52eC647622c91e79CE73344e4099f5", + "links": [ + { + "name": "x", + "url": "https://x.com/DeFinePlatform" + }, + { + "name": "telegram", + "url": "https://t.me/DeFinePlatform" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/define/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62959c699A52eC647622c91e79CE73344e4099f5/logo.png b/blockchains/ethereum/assets/0x62959c699A52eC647622c91e79CE73344e4099f5/logo.png new file mode 100644 index 00000000..bf1c9f34 Binary files /dev/null and b/blockchains/ethereum/assets/0x62959c699A52eC647622c91e79CE73344e4099f5/logo.png differ diff --git a/blockchains/ethereum/assets/0x6295Ab2BE04A617747481B292c390BfcA592Cf28/info.json b/blockchains/ethereum/assets/0x6295Ab2BE04A617747481B292c390BfcA592Cf28/info.json new file mode 100644 index 00000000..f4750f50 --- /dev/null +++ b/blockchains/ethereum/assets/0x6295Ab2BE04A617747481B292c390BfcA592Cf28/info.json @@ -0,0 +1,11 @@ +{ + "name": "TokenDesk", + "symbol": "TDS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.tokendesk.io/", + "explorer": "https://etherscan.io/token/0x6295Ab2BE04A617747481B292c390BfcA592Cf28", + "status": "abandoned", + "id": "0x6295Ab2BE04A617747481B292c390BfcA592Cf28" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6295Ab2BE04A617747481B292c390BfcA592Cf28/logo.png b/blockchains/ethereum/assets/0x6295Ab2BE04A617747481B292c390BfcA592Cf28/logo.png new file mode 100644 index 00000000..df88300c Binary files /dev/null and b/blockchains/ethereum/assets/0x6295Ab2BE04A617747481B292c390BfcA592Cf28/logo.png differ diff --git a/blockchains/ethereum/assets/0x62994dEF86d1810cFA795eF20f81aC74Dc43d155/info.json b/blockchains/ethereum/assets/0x62994dEF86d1810cFA795eF20f81aC74Dc43d155/info.json new file mode 100644 index 00000000..2b5413df --- /dev/null +++ b/blockchains/ethereum/assets/0x62994dEF86d1810cFA795eF20f81aC74Dc43d155/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg14500", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x62994dEF86d1810cFA795eF20f81aC74Dc43d155", + "status": "abandoned", + "id": "0x62994dEF86d1810cFA795eF20f81aC74Dc43d155" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62994dEF86d1810cFA795eF20f81aC74Dc43d155/logo.png b/blockchains/ethereum/assets/0x62994dEF86d1810cFA795eF20f81aC74Dc43d155/logo.png new file mode 100644 index 00000000..dca3799e Binary files /dev/null and b/blockchains/ethereum/assets/0x62994dEF86d1810cFA795eF20f81aC74Dc43d155/logo.png differ diff --git a/blockchains/ethereum/assets/0x629aEe55ed49581C33ab27f9403F7992A289ffd5/info.json b/blockchains/ethereum/assets/0x629aEe55ed49581C33ab27f9403F7992A289ffd5/info.json new file mode 100644 index 00000000..65570940 --- /dev/null +++ b/blockchains/ethereum/assets/0x629aEe55ed49581C33ab27f9403F7992A289ffd5/info.json @@ -0,0 +1,11 @@ +{ + "name": "StrikeCoin Token", + "symbol": "STC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x629aEe55ed49581C33ab27f9403F7992A289ffd5", + "status": "abandoned", + "id": "0x629aEe55ed49581C33ab27f9403F7992A289ffd5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x629aEe55ed49581C33ab27f9403F7992A289ffd5/logo.png b/blockchains/ethereum/assets/0x629aEe55ed49581C33ab27f9403F7992A289ffd5/logo.png new file mode 100644 index 00000000..b6a6eb05 Binary files /dev/null and b/blockchains/ethereum/assets/0x629aEe55ed49581C33ab27f9403F7992A289ffd5/logo.png differ diff --git a/blockchains/ethereum/assets/0x62A6738d887F47e297676FaB05b902709B106C64/info.json b/blockchains/ethereum/assets/0x62A6738d887F47e297676FaB05b902709B106C64/info.json new file mode 100644 index 00000000..9e18fc84 --- /dev/null +++ b/blockchains/ethereum/assets/0x62A6738d887F47e297676FaB05b902709B106C64/info.json @@ -0,0 +1,11 @@ +{ + "name": "ArCoin", + "website": "https://arcoin.arcalabs.com/", + "description": "The Arca U.S. Treasury Fund is the first of its kind—a closed-end fund registered under the Investment Company Act of 1940 issuing shares as digital securities that are transferable using blockchain technology.", + "explorer": "https://etherscan.io/token/0x62A6738d887F47e297676FaB05b902709B106C64", + "type": "ERC20", + "symbol": "ARCA", + "decimals": 18, + "status": "active", + "id": "0x62A6738d887F47e297676FaB05b902709B106C64" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62A6738d887F47e297676FaB05b902709B106C64/logo.png b/blockchains/ethereum/assets/0x62A6738d887F47e297676FaB05b902709B106C64/logo.png new file mode 100644 index 00000000..49a83f62 Binary files /dev/null and b/blockchains/ethereum/assets/0x62A6738d887F47e297676FaB05b902709B106C64/logo.png differ diff --git a/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json b/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json new file mode 100644 index 00000000..76f18514 --- /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 00000000..df55519f Binary files /dev/null and b/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/logo.png differ diff --git a/blockchains/ethereum/assets/0x62Eca46294e51FC10D48572Ad2A99467919F7CBE/info.json b/blockchains/ethereum/assets/0x62Eca46294e51FC10D48572Ad2A99467919F7CBE/info.json new file mode 100644 index 00000000..cabc5052 --- /dev/null +++ b/blockchains/ethereum/assets/0x62Eca46294e51FC10D48572Ad2A99467919F7CBE/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitcoinCash Token", + "symbol": "BCHT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x62Eca46294e51FC10D48572Ad2A99467919F7CBE", + "status": "abandoned", + "id": "0x62Eca46294e51FC10D48572Ad2A99467919F7CBE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62Eca46294e51FC10D48572Ad2A99467919F7CBE/logo.png b/blockchains/ethereum/assets/0x62Eca46294e51FC10D48572Ad2A99467919F7CBE/logo.png new file mode 100644 index 00000000..316b6a02 Binary files /dev/null and b/blockchains/ethereum/assets/0x62Eca46294e51FC10D48572Ad2A99467919F7CBE/logo.png differ diff --git a/blockchains/ethereum/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json b/blockchains/ethereum/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json new file mode 100644 index 00000000..9ba4364b --- /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 00000000..2757f36e Binary files /dev/null and b/blockchains/ethereum/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/logo.png differ diff --git a/blockchains/ethereum/assets/0x62a56a4A2Ef4D355D34D10fBF837e747504d38d4/info.json b/blockchains/ethereum/assets/0x62a56a4A2Ef4D355D34D10fBF837e747504d38d4/info.json new file mode 100644 index 00000000..84bd3b88 --- /dev/null +++ b/blockchains/ethereum/assets/0x62a56a4A2Ef4D355D34D10fBF837e747504d38d4/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "PAYX", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "https://paypex.org/", + "explorer": "https://etherscan.io/token/0x62a56a4A2Ef4D355D34D10fBF837e747504d38d4", + "status": "abandoned", + "id": "0x62a56a4A2Ef4D355D34D10fBF837e747504d38d4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62a56a4A2Ef4D355D34D10fBF837e747504d38d4/logo.png b/blockchains/ethereum/assets/0x62a56a4A2Ef4D355D34D10fBF837e747504d38d4/logo.png new file mode 100644 index 00000000..8fbd3e7f Binary files /dev/null and b/blockchains/ethereum/assets/0x62a56a4A2Ef4D355D34D10fBF837e747504d38d4/logo.png differ diff --git a/blockchains/ethereum/assets/0x62a7F298fCC43d23359307Cc7c7db8f5aFa80992/info.json b/blockchains/ethereum/assets/0x62a7F298fCC43d23359307Cc7c7db8f5aFa80992/info.json new file mode 100644 index 00000000..40b6db4a --- /dev/null +++ b/blockchains/ethereum/assets/0x62a7F298fCC43d23359307Cc7c7db8f5aFa80992/info.json @@ -0,0 +1,11 @@ +{ + "name": "Integration Of Credit", + "symbol": "IOL", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x62a7F298fCC43d23359307Cc7c7db8f5aFa80992", + "status": "abandoned", + "id": "0x62a7F298fCC43d23359307Cc7c7db8f5aFa80992" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62a7F298fCC43d23359307Cc7c7db8f5aFa80992/logo.png b/blockchains/ethereum/assets/0x62a7F298fCC43d23359307Cc7c7db8f5aFa80992/logo.png new file mode 100644 index 00000000..b7417a91 Binary files /dev/null and b/blockchains/ethereum/assets/0x62a7F298fCC43d23359307Cc7c7db8f5aFa80992/logo.png differ diff --git a/blockchains/ethereum/assets/0x62a7dA217d6a55A983455e5fd6C4a025aC786879/info.json b/blockchains/ethereum/assets/0x62a7dA217d6a55A983455e5fd6C4a025aC786879/info.json new file mode 100644 index 00000000..8db1233c --- /dev/null +++ b/blockchains/ethereum/assets/0x62a7dA217d6a55A983455e5fd6C4a025aC786879/info.json @@ -0,0 +1,11 @@ +{ + "name": "TBT", + "symbol": "TBT", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x62a7dA217d6a55A983455e5fd6C4a025aC786879", + "status": "abandoned", + "id": "0x62a7dA217d6a55A983455e5fd6C4a025aC786879" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62a7dA217d6a55A983455e5fd6C4a025aC786879/logo.png b/blockchains/ethereum/assets/0x62a7dA217d6a55A983455e5fd6C4a025aC786879/logo.png new file mode 100644 index 00000000..4cd0fc3b Binary files /dev/null and b/blockchains/ethereum/assets/0x62a7dA217d6a55A983455e5fd6C4a025aC786879/logo.png differ diff --git a/blockchains/ethereum/assets/0x62bf50192b3ef428e24Bc8d10f0c2A6Eabe80E08/info.json b/blockchains/ethereum/assets/0x62bf50192b3ef428e24Bc8d10f0c2A6Eabe80E08/info.json new file mode 100644 index 00000000..e362f85c --- /dev/null +++ b/blockchains/ethereum/assets/0x62bf50192b3ef428e24Bc8d10f0c2A6Eabe80E08/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITSIFU COIN", + "symbol": "BSF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x62bf50192b3ef428e24Bc8d10f0c2A6Eabe80E08", + "status": "abandoned", + "id": "0x62bf50192b3ef428e24Bc8d10f0c2A6Eabe80E08" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62bf50192b3ef428e24Bc8d10f0c2A6Eabe80E08/logo.png b/blockchains/ethereum/assets/0x62bf50192b3ef428e24Bc8d10f0c2A6Eabe80E08/logo.png new file mode 100755 index 00000000..cf4e2a88 Binary files /dev/null and b/blockchains/ethereum/assets/0x62bf50192b3ef428e24Bc8d10f0c2A6Eabe80E08/logo.png differ diff --git a/blockchains/ethereum/assets/0x62cA254a363dc3c748e7E955c20447aB5bF06fF7/info.json b/blockchains/ethereum/assets/0x62cA254a363dc3c748e7E955c20447aB5bF06fF7/info.json new file mode 100644 index 00000000..73d1d4ae --- /dev/null +++ b/blockchains/ethereum/assets/0x62cA254a363dc3c748e7E955c20447aB5bF06fF7/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core S&P 500 ETF (Ondo Tokenized)", + "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 00000000..8adf5788 Binary files /dev/null and b/blockchains/ethereum/assets/0x62cA254a363dc3c748e7E955c20447aB5bF06fF7/logo.png differ diff --git a/blockchains/ethereum/assets/0x62d6655db4D29a38E3fA588bCd4137c6D330C2a2/info.json b/blockchains/ethereum/assets/0x62d6655db4D29a38E3fA588bCd4137c6D330C2a2/info.json new file mode 100644 index 00000000..57237eac --- /dev/null +++ b/blockchains/ethereum/assets/0x62d6655db4D29a38E3fA588bCd4137c6D330C2a2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hexa Chain", + "symbol": "HXC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x62d6655db4D29a38E3fA588bCd4137c6D330C2a2", + "status": "abandoned", + "id": "0x62d6655db4D29a38E3fA588bCd4137c6D330C2a2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62d6655db4D29a38E3fA588bCd4137c6D330C2a2/logo.png b/blockchains/ethereum/assets/0x62d6655db4D29a38E3fA588bCd4137c6D330C2a2/logo.png new file mode 100755 index 00000000..13f2bf8b Binary files /dev/null and b/blockchains/ethereum/assets/0x62d6655db4D29a38E3fA588bCd4137c6D330C2a2/logo.png differ diff --git a/blockchains/ethereum/assets/0x62d69910f45b839903eFfd217559307AEc307076/info.json b/blockchains/ethereum/assets/0x62d69910f45b839903eFfd217559307AEc307076/info.json new file mode 100644 index 00000000..7412a668 --- /dev/null +++ b/blockchains/ethereum/assets/0x62d69910f45b839903eFfd217559307AEc307076/info.json @@ -0,0 +1,11 @@ +{ + "name": "AfterShock V2", + "symbol": "SHOCK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://aftershock.vip/", + "explorer": "https://etherscan.io/token/0x62d69910f45b839903eFfd217559307AEc307076", + "status": "abandoned", + "id": "0x62d69910f45b839903eFfd217559307AEc307076" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62d69910f45b839903eFfd217559307AEc307076/logo.png b/blockchains/ethereum/assets/0x62d69910f45b839903eFfd217559307AEc307076/logo.png new file mode 100644 index 00000000..94ff9ef1 Binary files /dev/null and b/blockchains/ethereum/assets/0x62d69910f45b839903eFfd217559307AEc307076/logo.png differ diff --git a/blockchains/ethereum/assets/0x630323f3A19d248CaB2FA9ef1cD743E7985768dD/info.json b/blockchains/ethereum/assets/0x630323f3A19d248CaB2FA9ef1cD743E7985768dD/info.json new file mode 100644 index 00000000..83405935 --- /dev/null +++ b/blockchains/ethereum/assets/0x630323f3A19d248CaB2FA9ef1cD743E7985768dD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shine Network Token", + "symbol": "SNT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x630323f3A19d248CaB2FA9ef1cD743E7985768dD", + "status": "abandoned", + "id": "0x630323f3A19d248CaB2FA9ef1cD743E7985768dD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x630323f3A19d248CaB2FA9ef1cD743E7985768dD/logo.png b/blockchains/ethereum/assets/0x630323f3A19d248CaB2FA9ef1cD743E7985768dD/logo.png new file mode 100644 index 00000000..48d153ab Binary files /dev/null and b/blockchains/ethereum/assets/0x630323f3A19d248CaB2FA9ef1cD743E7985768dD/logo.png differ diff --git a/blockchains/ethereum/assets/0x630d98424eFe0Ea27fB1b3Ab7741907DFFEaAd78/info.json b/blockchains/ethereum/assets/0x630d98424eFe0Ea27fB1b3Ab7741907DFFEaAd78/info.json new file mode 100644 index 00000000..686f9d8f --- /dev/null +++ b/blockchains/ethereum/assets/0x630d98424eFe0Ea27fB1b3Ab7741907DFFEaAd78/info.json @@ -0,0 +1,11 @@ +{ + "name": "PEAK", + "website": "https://app.peakdefi.com/download", + "description": "PEAKDEFI is a decentralized asset management fund, created to connect investors and asset managers for capital growth.", + "explorer": "https://etherscan.io/token/0x630d98424efe0ea27fb1b3ab7741907dffeaad78", + "type": "ERC20", + "symbol": "PEAK", + "decimals": 8, + "status": "active", + "id": "0x630d98424eFe0Ea27fB1b3Ab7741907DFFEaAd78" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x630d98424eFe0Ea27fB1b3Ab7741907DFFEaAd78/logo.png b/blockchains/ethereum/assets/0x630d98424eFe0Ea27fB1b3Ab7741907DFFEaAd78/logo.png new file mode 100644 index 00000000..bc0e9487 Binary files /dev/null and b/blockchains/ethereum/assets/0x630d98424eFe0Ea27fB1b3Ab7741907DFFEaAd78/logo.png differ diff --git a/blockchains/ethereum/assets/0x6311a8D6C7ad7d84eF100366aE0B747e50856ec3/info.json b/blockchains/ethereum/assets/0x6311a8D6C7ad7d84eF100366aE0B747e50856ec3/info.json new file mode 100644 index 00000000..d552e0f1 --- /dev/null +++ b/blockchains/ethereum/assets/0x6311a8D6C7ad7d84eF100366aE0B747e50856ec3/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoBones", + "symbol": "CBT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6311a8D6C7ad7d84eF100366aE0B747e50856ec3", + "status": "abandoned", + "id": "0x6311a8D6C7ad7d84eF100366aE0B747e50856ec3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6311a8D6C7ad7d84eF100366aE0B747e50856ec3/logo.png b/blockchains/ethereum/assets/0x6311a8D6C7ad7d84eF100366aE0B747e50856ec3/logo.png new file mode 100755 index 00000000..e0db1017 Binary files /dev/null and b/blockchains/ethereum/assets/0x6311a8D6C7ad7d84eF100366aE0B747e50856ec3/logo.png differ diff --git a/blockchains/ethereum/assets/0x631Fc019888CcB5618fF6D8B95fc06D339fC7755/info.json b/blockchains/ethereum/assets/0x631Fc019888CcB5618fF6D8B95fc06D339fC7755/info.json new file mode 100644 index 00000000..1831f15f --- /dev/null +++ b/blockchains/ethereum/assets/0x631Fc019888CcB5618fF6D8B95fc06D339fC7755/info.json @@ -0,0 +1,11 @@ +{ + "name": "Recycle Chain", + "symbol": "RECH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x631Fc019888CcB5618fF6D8B95fc06D339fC7755", + "status": "abandoned", + "id": "0x631Fc019888CcB5618fF6D8B95fc06D339fC7755" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x631Fc019888CcB5618fF6D8B95fc06D339fC7755/logo.png b/blockchains/ethereum/assets/0x631Fc019888CcB5618fF6D8B95fc06D339fC7755/logo.png new file mode 100644 index 00000000..22164fd5 Binary files /dev/null and b/blockchains/ethereum/assets/0x631Fc019888CcB5618fF6D8B95fc06D339fC7755/logo.png differ diff --git a/blockchains/ethereum/assets/0x632F62FCf63cb56380ffD27d63afcF5F1349f73f/info.json b/blockchains/ethereum/assets/0x632F62FCf63cb56380ffD27d63afcF5F1349f73f/info.json new file mode 100644 index 00000000..03862769 --- /dev/null +++ b/blockchains/ethereum/assets/0x632F62FCf63cb56380ffD27d63afcF5F1349f73f/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoHarborExchange", + "symbol": "CHE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x632F62FCf63cb56380ffD27d63afcF5F1349f73f", + "status": "abandoned", + "id": "0x632F62FCf63cb56380ffD27d63afcF5F1349f73f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x632F62FCf63cb56380ffD27d63afcF5F1349f73f/logo.png b/blockchains/ethereum/assets/0x632F62FCf63cb56380ffD27d63afcF5F1349f73f/logo.png new file mode 100644 index 00000000..500e9742 Binary files /dev/null and b/blockchains/ethereum/assets/0x632F62FCf63cb56380ffD27d63afcF5F1349f73f/logo.png differ diff --git a/blockchains/ethereum/assets/0x633eE3fbE5ffc05bD44Ecd8240732fF9ef9Dee1d/info.json b/blockchains/ethereum/assets/0x633eE3fbE5ffc05bD44Ecd8240732fF9ef9Dee1d/info.json new file mode 100644 index 00000000..09d4649b --- /dev/null +++ b/blockchains/ethereum/assets/0x633eE3fbE5ffc05bD44Ecd8240732fF9ef9Dee1d/info.json @@ -0,0 +1,11 @@ +{ + "name": "MarketPeak", + "symbol": "PEAK", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://marketpeak.com/", + "explorer": "https://etherscan.io/token/0x633eE3fbE5ffc05bD44Ecd8240732fF9ef9Dee1d", + "status": "abandoned", + "id": "0x633eE3fbE5ffc05bD44Ecd8240732fF9ef9Dee1d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x633eE3fbE5ffc05bD44Ecd8240732fF9ef9Dee1d/logo.png b/blockchains/ethereum/assets/0x633eE3fbE5ffc05bD44Ecd8240732fF9ef9Dee1d/logo.png new file mode 100644 index 00000000..34ad77d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x633eE3fbE5ffc05bD44Ecd8240732fF9ef9Dee1d/logo.png differ diff --git a/blockchains/ethereum/assets/0x6342A4744EA2fD9685610Ab0c7D11f3d083Bc7Ba/info.json b/blockchains/ethereum/assets/0x6342A4744EA2fD9685610Ab0c7D11f3d083Bc7Ba/info.json new file mode 100644 index 00000000..c696128f --- /dev/null +++ b/blockchains/ethereum/assets/0x6342A4744EA2fD9685610Ab0c7D11f3d083Bc7Ba/info.json @@ -0,0 +1,11 @@ +{ + "name": "jiatingwang.net Token", + "symbol": "JTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6342A4744EA2fD9685610Ab0c7D11f3d083Bc7Ba", + "status": "abandoned", + "id": "0x6342A4744EA2fD9685610Ab0c7D11f3d083Bc7Ba" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6342A4744EA2fD9685610Ab0c7D11f3d083Bc7Ba/logo.png b/blockchains/ethereum/assets/0x6342A4744EA2fD9685610Ab0c7D11f3d083Bc7Ba/logo.png new file mode 100644 index 00000000..eb376d8d Binary files /dev/null and b/blockchains/ethereum/assets/0x6342A4744EA2fD9685610Ab0c7D11f3d083Bc7Ba/logo.png differ diff --git a/blockchains/ethereum/assets/0x634769EB87542EAf41C0008c05D5d8F5d8bEc3A5/info.json b/blockchains/ethereum/assets/0x634769EB87542EAf41C0008c05D5d8F5d8bEc3A5/info.json new file mode 100644 index 00000000..9b0f5290 --- /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/0x635d081fD8F6670135D8a3640E2cF78220787d56/info.json b/blockchains/ethereum/assets/0x635d081fD8F6670135D8a3640E2cF78220787d56/info.json new file mode 100644 index 00000000..9380d3d0 --- /dev/null +++ b/blockchains/ethereum/assets/0x635d081fD8F6670135D8a3640E2cF78220787d56/info.json @@ -0,0 +1,11 @@ +{ + "name": "ADD.xyz", + "symbol": "ADD", + "type": "ERC20", + "decimals": 18, + "description": "ADD.xyz is a full-stack DeFi aggregator, plugging in multiple products and DeFi applications into one single platform, focusing on User Experience, Design, Privacy and Anonymity.", + "website": "https://ADD.xyz", + "explorer": "https://etherscan.io/token/0x635d081fd8f6670135d8a3640e2cf78220787d56", + "status": "active", + "id": "0x635d081fD8F6670135D8a3640E2cF78220787d56" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x635d081fD8F6670135D8a3640E2cF78220787d56/logo.png b/blockchains/ethereum/assets/0x635d081fD8F6670135D8a3640E2cF78220787d56/logo.png new file mode 100644 index 00000000..8ea64a6e Binary files /dev/null and b/blockchains/ethereum/assets/0x635d081fD8F6670135D8a3640E2cF78220787d56/logo.png differ diff --git a/blockchains/ethereum/assets/0x6360322F95e72f049bfc010c83a6D9a9DE1c651B/info.json b/blockchains/ethereum/assets/0x6360322F95e72f049bfc010c83a6D9a9DE1c651B/info.json new file mode 100644 index 00000000..41eac8c5 --- /dev/null +++ b/blockchains/ethereum/assets/0x6360322F95e72f049bfc010c83a6D9a9DE1c651B/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R793660", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6360322F95e72f049bfc010c83a6D9a9DE1c651B", + "status": "abandoned", + "id": "0x6360322F95e72f049bfc010c83a6D9a9DE1c651B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6360322F95e72f049bfc010c83a6D9a9DE1c651B/logo.png b/blockchains/ethereum/assets/0x6360322F95e72f049bfc010c83a6D9a9DE1c651B/logo.png new file mode 100644 index 00000000..5fb9090b Binary files /dev/null and b/blockchains/ethereum/assets/0x6360322F95e72f049bfc010c83a6D9a9DE1c651B/logo.png differ diff --git a/blockchains/ethereum/assets/0x6368e1E18c4C419DDFC608A0BEd1ccb87b9250fc/info.json b/blockchains/ethereum/assets/0x6368e1E18c4C419DDFC608A0BEd1ccb87b9250fc/info.json new file mode 100644 index 00000000..767c7a76 --- /dev/null +++ b/blockchains/ethereum/assets/0x6368e1E18c4C419DDFC608A0BEd1ccb87b9250fc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tap", + "symbol": "XTP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.tap.global", + "explorer": "https://etherscan.io/token/0x6368e1E18c4C419DDFC608A0BEd1ccb87b9250fc", + "status": "active", + "id": "0x6368e1E18c4C419DDFC608A0BEd1ccb87b9250fc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6368e1E18c4C419DDFC608A0BEd1ccb87b9250fc/logo.png b/blockchains/ethereum/assets/0x6368e1E18c4C419DDFC608A0BEd1ccb87b9250fc/logo.png new file mode 100644 index 00000000..e057a83b Binary files /dev/null and b/blockchains/ethereum/assets/0x6368e1E18c4C419DDFC608A0BEd1ccb87b9250fc/logo.png differ diff --git a/blockchains/ethereum/assets/0x6369c3DadfC00054A42BA8B2c09c48131dd4Aa38/info.json b/blockchains/ethereum/assets/0x6369c3DadfC00054A42BA8B2c09c48131dd4Aa38/info.json new file mode 100644 index 00000000..7f48d2c6 --- /dev/null +++ b/blockchains/ethereum/assets/0x6369c3DadfC00054A42BA8B2c09c48131dd4Aa38/info.json @@ -0,0 +1,29 @@ +{ + "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://etherscan.io/token/0x6369c3DadfC00054A42BA8B2c09c48131dd4Aa38", + "type": "ERC20", + "symbol": "MPH", + "decimals": 18, + "status": "active", + "id": "0x6369c3DadfC00054A42BA8B2c09c48131dd4Aa38", + "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" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6369c3DadfC00054A42BA8B2c09c48131dd4Aa38/logo.png b/blockchains/ethereum/assets/0x6369c3DadfC00054A42BA8B2c09c48131dd4Aa38/logo.png new file mode 100644 index 00000000..6f8fa384 Binary files /dev/null and b/blockchains/ethereum/assets/0x6369c3DadfC00054A42BA8B2c09c48131dd4Aa38/logo.png differ diff --git a/blockchains/ethereum/assets/0x636bd98fC13908e475F56d8a38a6e03616Ec5563/info.json b/blockchains/ethereum/assets/0x636bd98fC13908e475F56d8a38a6e03616Ec5563/info.json new file mode 100644 index 00000000..c88c0272 --- /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 00000000..8a9e4d41 Binary files /dev/null and b/blockchains/ethereum/assets/0x636bd98fC13908e475F56d8a38a6e03616Ec5563/logo.png differ diff --git a/blockchains/ethereum/assets/0x636ea377BaCbb41bF5A64400a2e5621407A898c4/info.json b/blockchains/ethereum/assets/0x636ea377BaCbb41bF5A64400a2e5621407A898c4/info.json new file mode 100644 index 00000000..e198959e --- /dev/null +++ b/blockchains/ethereum/assets/0x636ea377BaCbb41bF5A64400a2e5621407A898c4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ten Billion Coin", + "symbol": "YBY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x636ea377BaCbb41bF5A64400a2e5621407A898c4", + "status": "abandoned", + "id": "0x636ea377BaCbb41bF5A64400a2e5621407A898c4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x636ea377BaCbb41bF5A64400a2e5621407A898c4/logo.png b/blockchains/ethereum/assets/0x636ea377BaCbb41bF5A64400a2e5621407A898c4/logo.png new file mode 100644 index 00000000..17e3a82c Binary files /dev/null and b/blockchains/ethereum/assets/0x636ea377BaCbb41bF5A64400a2e5621407A898c4/logo.png differ diff --git a/blockchains/ethereum/assets/0x6378930da9be7C90d824d7f113974741644d62dA/info.json b/blockchains/ethereum/assets/0x6378930da9be7C90d824d7f113974741644d62dA/info.json new file mode 100644 index 00000000..f4a4e0c2 --- /dev/null +++ b/blockchains/ethereum/assets/0x6378930da9be7C90d824d7f113974741644d62dA/info.json @@ -0,0 +1,28 @@ +{ + "name": "CTC", + "address": "0x6378930da9be7C90d824d7f113974741644d62dA", + "description": "Cetacean Pool (CTC) will continue to be used to increase liquidity and borrow needs for BMJ-DAO as the First Distributed Storage Project BMJ's DeFi Governance Certificate. Participate in the ecological management of BMJ by pledgeing the proceeds of the DeFi project under the Cetacean Pool agreement.", + "email": "bmj20200716@gmail.com", + "website": "https://dapp.bmjcoin.com", + "explorer": "https://etherscan.io/token/0x6378930da9be7C90d824d7f113974741644d62dA", + "state": "NORMAL", + "links": [ + { + "name": "x", + "url": "https://x.com/BMJ67466085" + }, + { + "name": "telegram", + "url": "https://t.me/CTCcommunity01" + }, + { + "name": "github", + "url": "https://github.com/BMJ20200716" + } + ], + "type": "ERC20", + "symbol": "CTC", + "decimals": 18, + "status": "active", + "id": "0x6378930da9be7C90d824d7f113974741644d62dA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6378930da9be7C90d824d7f113974741644d62dA/logo.png b/blockchains/ethereum/assets/0x6378930da9be7C90d824d7f113974741644d62dA/logo.png new file mode 100644 index 00000000..caf8ee78 Binary files /dev/null and b/blockchains/ethereum/assets/0x6378930da9be7C90d824d7f113974741644d62dA/logo.png differ diff --git a/blockchains/ethereum/assets/0x638155F4BD8F85d401Da32498D8866eE39A150B8/info.json b/blockchains/ethereum/assets/0x638155F4BD8F85d401Da32498D8866eE39A150B8/info.json new file mode 100644 index 00000000..a18f806e --- /dev/null +++ b/blockchains/ethereum/assets/0x638155F4BD8F85d401Da32498D8866eE39A150B8/info.json @@ -0,0 +1,25 @@ +{ + "name": "Jura", + "website": "https://jura.network/", + "description": "The Jura protocol is essentially a suite of four different innovations all wrapped into one: an individual account-based directed acyclic graph (DAG) data structure we’ve named the Fusus, a Proof of Dedication (PoD) consensus mechanism, a dynamically monitored and distributed sharding (DMDS) technique for distributing data, and an AI security and learning layer to prevent malicious attacks from happening", + "explorer": "https://etherscan.io/token/0x638155F4BD8F85d401Da32498D8866eE39A150B8", + "type": "ERC20", + "symbol": "JREX", + "decimals": 8, + "status": "active", + "id": "0x638155F4BD8F85d401Da32498D8866eE39A150B8", + "links": [ + { + "name": "github", + "url": "https://github.com/JuraNetwork" + }, + { + "name": "x", + "url": "https://x.com/JuraProtocol" + }, + { + "name": "whitepaper", + "url": "https://docsend.com/view/p9f87gp/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x638155F4BD8F85d401Da32498D8866eE39A150B8/logo.png b/blockchains/ethereum/assets/0x638155F4BD8F85d401Da32498D8866eE39A150B8/logo.png new file mode 100644 index 00000000..f3cad408 Binary files /dev/null and b/blockchains/ethereum/assets/0x638155F4BD8F85d401Da32498D8866eE39A150B8/logo.png differ diff --git a/blockchains/ethereum/assets/0x6390D6E16a097CC899Fb6eE72Ea0DD67267E6415/info.json b/blockchains/ethereum/assets/0x6390D6E16a097CC899Fb6eE72Ea0DD67267E6415/info.json new file mode 100644 index 00000000..f7f937d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x6390D6E16a097CC899Fb6eE72Ea0DD67267E6415/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-20/30M20", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6390D6E16a097CC899Fb6eE72Ea0DD67267E6415", + "status": "abandoned", + "id": "0x6390D6E16a097CC899Fb6eE72Ea0DD67267E6415" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6390D6E16a097CC899Fb6eE72Ea0DD67267E6415/logo.png b/blockchains/ethereum/assets/0x6390D6E16a097CC899Fb6eE72Ea0DD67267E6415/logo.png new file mode 100644 index 00000000..d8f766d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x6390D6E16a097CC899Fb6eE72Ea0DD67267E6415/logo.png differ diff --git a/blockchains/ethereum/assets/0x6393E822874728f8Afa7e1C9944E417D37CA5878/info.json b/blockchains/ethereum/assets/0x6393E822874728f8Afa7e1C9944E417D37CA5878/info.json new file mode 100644 index 00000000..4fc56c36 --- /dev/null +++ b/blockchains/ethereum/assets/0x6393E822874728f8Afa7e1C9944E417D37CA5878/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptoindex 100", + "symbol": "CIX100", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://cryptoindex.com/", + "explorer": "https://etherscan.io/token/0x6393E822874728f8Afa7e1C9944E417D37CA5878", + "status": "abandoned", + "id": "0x6393E822874728f8Afa7e1C9944E417D37CA5878" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6393E822874728f8Afa7e1C9944E417D37CA5878/logo.png b/blockchains/ethereum/assets/0x6393E822874728f8Afa7e1C9944E417D37CA5878/logo.png new file mode 100644 index 00000000..5e1233eb Binary files /dev/null and b/blockchains/ethereum/assets/0x6393E822874728f8Afa7e1C9944E417D37CA5878/logo.png differ diff --git a/blockchains/ethereum/assets/0x6399C842dD2bE3dE30BF99Bc7D1bBF6Fa3650E70/info.json b/blockchains/ethereum/assets/0x6399C842dD2bE3dE30BF99Bc7D1bBF6Fa3650E70/info.json new file mode 100644 index 00000000..a7ec9b9c --- /dev/null +++ b/blockchains/ethereum/assets/0x6399C842dD2bE3dE30BF99Bc7D1bBF6Fa3650E70/info.json @@ -0,0 +1,26 @@ +{ + "name": "PREMIA", + "website": "https://premia.finance", + "short_description": "powered by anons.", + "description": "Decentralized Financial Instrument Protocol.", + "explorer": "https://etherscan.io/token/0x6399C842dD2bE3dE30BF99Bc7D1bBF6Fa3650E70", + "type": "ERC20", + "symbol": "$PREMIA", + "decimals": 18, + "status": "active", + "id": "0x6399C842dD2bE3dE30BF99Bc7D1bBF6Fa3650E70", + "links": [ + { + "name": "github", + "url": "https://github.com/premiafinance/" + }, + { + "name": "x", + "url": "https://x.com/premiafinance" + }, + { + "name": "medium", + "url": "https://premia.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6399C842dD2bE3dE30BF99Bc7D1bBF6Fa3650E70/logo.png b/blockchains/ethereum/assets/0x6399C842dD2bE3dE30BF99Bc7D1bBF6Fa3650E70/logo.png new file mode 100644 index 00000000..5f250183 Binary files /dev/null and b/blockchains/ethereum/assets/0x6399C842dD2bE3dE30BF99Bc7D1bBF6Fa3650E70/logo.png differ diff --git a/blockchains/ethereum/assets/0x639ae8F3EEd18690bF451229d14953a5A5627b72/info.json b/blockchains/ethereum/assets/0x639ae8F3EEd18690bF451229d14953a5A5627b72/info.json new file mode 100644 index 00000000..71043f90 --- /dev/null +++ b/blockchains/ethereum/assets/0x639ae8F3EEd18690bF451229d14953a5A5627b72/info.json @@ -0,0 +1,11 @@ +{ + "name": "GNBU", + "website": "https://nimbusplatform.io", + "description": "Nimbus - Creating Value Based on Real Use cases for Digital Assets.", + "explorer": "https://etherscan.io/token/0x639ae8F3EEd18690bF451229d14953a5A5627b72", + "type": "ERC20", + "symbol": "GNBU", + "decimals": 18, + "status": "active", + "id": "0x639ae8F3EEd18690bF451229d14953a5A5627b72" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x639ae8F3EEd18690bF451229d14953a5A5627b72/logo.png b/blockchains/ethereum/assets/0x639ae8F3EEd18690bF451229d14953a5A5627b72/logo.png new file mode 100644 index 00000000..07eb3b5e Binary files /dev/null and b/blockchains/ethereum/assets/0x639ae8F3EEd18690bF451229d14953a5A5627b72/logo.png differ diff --git a/blockchains/ethereum/assets/0x63A2CcD492E316EEFAB5B3326dB3C7b0a94c3726/info.json b/blockchains/ethereum/assets/0x63A2CcD492E316EEFAB5B3326dB3C7b0a94c3726/info.json new file mode 100644 index 00000000..b62c0e84 --- /dev/null +++ b/blockchains/ethereum/assets/0x63A2CcD492E316EEFAB5B3326dB3C7b0a94c3726/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cercle", + "symbol": "CIRCL", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x63A2CcD492E316EEFAB5B3326dB3C7b0a94c3726", + "status": "abandoned", + "id": "0x63A2CcD492E316EEFAB5B3326dB3C7b0a94c3726" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63A2CcD492E316EEFAB5B3326dB3C7b0a94c3726/logo.png b/blockchains/ethereum/assets/0x63A2CcD492E316EEFAB5B3326dB3C7b0a94c3726/logo.png new file mode 100644 index 00000000..dc00dc0a Binary files /dev/null and b/blockchains/ethereum/assets/0x63A2CcD492E316EEFAB5B3326dB3C7b0a94c3726/logo.png differ diff --git a/blockchains/ethereum/assets/0x63B8b7d4A3EFD0735c4BFFBD95B332a55e4eB851/info.json b/blockchains/ethereum/assets/0x63B8b7d4A3EFD0735c4BFFBD95B332a55e4eB851/info.json new file mode 100644 index 00000000..4b4e8738 --- /dev/null +++ b/blockchains/ethereum/assets/0x63B8b7d4A3EFD0735c4BFFBD95B332a55e4eB851/info.json @@ -0,0 +1,11 @@ +{ + "name": "DigiCol Token", + "website": "https://www.digicol.io", + "description": "-", + "explorer": "https://etherscan.io/token/0x63B8b7d4A3EFD0735c4BFFBD95B332a55e4eB851", + "type": "ERC20", + "symbol": "DGCL", + "decimals": 18, + "status": "active", + "id": "0x63B8b7d4A3EFD0735c4BFFBD95B332a55e4eB851" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63B8b7d4A3EFD0735c4BFFBD95B332a55e4eB851/logo.png b/blockchains/ethereum/assets/0x63B8b7d4A3EFD0735c4BFFBD95B332a55e4eB851/logo.png new file mode 100644 index 00000000..3b006880 Binary files /dev/null and b/blockchains/ethereum/assets/0x63B8b7d4A3EFD0735c4BFFBD95B332a55e4eB851/logo.png differ diff --git a/blockchains/ethereum/assets/0x63DcaD9E5F2d784Fc4F12ABf61eC47236FABA895/info.json b/blockchains/ethereum/assets/0x63DcaD9E5F2d784Fc4F12ABf61eC47236FABA895/info.json new file mode 100644 index 00000000..3132b840 --- /dev/null +++ b/blockchains/ethereum/assets/0x63DcaD9E5F2d784Fc4F12ABf61eC47236FABA895/info.json @@ -0,0 +1,11 @@ +{ + "name": "BigTorum Stake", + "symbol": "BTS", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x63DcaD9E5F2d784Fc4F12ABf61eC47236FABA895", + "status": "abandoned", + "id": "0x63DcaD9E5F2d784Fc4F12ABf61eC47236FABA895" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63DcaD9E5F2d784Fc4F12ABf61eC47236FABA895/logo.png b/blockchains/ethereum/assets/0x63DcaD9E5F2d784Fc4F12ABf61eC47236FABA895/logo.png new file mode 100644 index 00000000..22c25bee Binary files /dev/null and b/blockchains/ethereum/assets/0x63DcaD9E5F2d784Fc4F12ABf61eC47236FABA895/logo.png differ diff --git a/blockchains/ethereum/assets/0x63a18BC38D1101DB7F0efCbCBdCbe927A5879039/info.json b/blockchains/ethereum/assets/0x63a18BC38D1101DB7F0efCbCBdCbe927A5879039/info.json new file mode 100644 index 00000000..de9c5afa --- /dev/null +++ b/blockchains/ethereum/assets/0x63a18BC38D1101DB7F0efCbCBdCbe927A5879039/info.json @@ -0,0 +1,21 @@ +{ + "name": "EARN Token", + "website": "http://www.yearnclassic.finance/", + "description": "EARN is the governance token for the Yearn Classic platform, the sustainable decentralised finance (DeFi) ecosystem with a total supply of 21,000 EARN issued on the Ethereum platform.", + "explorer": "https://etherscan.io/token/0x63a18BC38D1101DB7F0efCbCBdCbe927A5879039", + "type": "ERC20", + "symbol": "EARN", + "decimals": 18, + "status": "active", + "id": "0x63a18BC38D1101DB7F0efCbCBdCbe927A5879039", + "links": [ + { + "name": "github", + "url": "https://github.com/YearnClassic" + }, + { + "name": "telegram", + "url": "https://t.me/earndefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63a18BC38D1101DB7F0efCbCBdCbe927A5879039/logo.png b/blockchains/ethereum/assets/0x63a18BC38D1101DB7F0efCbCBdCbe927A5879039/logo.png new file mode 100644 index 00000000..80638478 Binary files /dev/null and b/blockchains/ethereum/assets/0x63a18BC38D1101DB7F0efCbCBdCbe927A5879039/logo.png differ diff --git a/blockchains/ethereum/assets/0x63b4f3e3fa4e438698CE330e365E831F7cCD1eF4/info.json b/blockchains/ethereum/assets/0x63b4f3e3fa4e438698CE330e365E831F7cCD1eF4/info.json new file mode 100644 index 00000000..593b8585 --- /dev/null +++ b/blockchains/ethereum/assets/0x63b4f3e3fa4e438698CE330e365E831F7cCD1eF4/info.json @@ -0,0 +1,11 @@ +{ + "name": "CyberFi Token", + "type": "ERC20", + "symbol": "CFi", + "decimals": 18, + "website": "https://cyberfi.tech/", + "description": "The mission of CyberFi is to create a user-friendly DeFi experience and add a new layer of features available. Users of our platform will experience zero-stress, automated DeFi trading and farming, smaller fees and tools for Impermanent Loss mitigation.", + "explorer": "https://etherscan.io/token/0x63b4f3e3fa4e438698ce330e365e831f7ccd1ef4", + "status": "active", + "id": "0x63b4f3e3fa4e438698CE330e365E831F7cCD1eF4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63b4f3e3fa4e438698CE330e365E831F7cCD1eF4/logo.png b/blockchains/ethereum/assets/0x63b4f3e3fa4e438698CE330e365E831F7cCD1eF4/logo.png new file mode 100644 index 00000000..ca7ade89 Binary files /dev/null and b/blockchains/ethereum/assets/0x63b4f3e3fa4e438698CE330e365E831F7cCD1eF4/logo.png differ diff --git a/blockchains/ethereum/assets/0x63b619A040CcE5f90c12b230d7258E5809E91082/info.json b/blockchains/ethereum/assets/0x63b619A040CcE5f90c12b230d7258E5809E91082/info.json new file mode 100644 index 00000000..64286544 --- /dev/null +++ b/blockchains/ethereum/assets/0x63b619A040CcE5f90c12b230d7258E5809E91082/info.json @@ -0,0 +1,11 @@ +{ + "name": "Investment Kingdom", + "symbol": "KIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x63b619A040CcE5f90c12b230d7258E5809E91082", + "status": "abandoned", + "id": "0x63b619A040CcE5f90c12b230d7258E5809E91082" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63b619A040CcE5f90c12b230d7258E5809E91082/logo.png b/blockchains/ethereum/assets/0x63b619A040CcE5f90c12b230d7258E5809E91082/logo.png new file mode 100644 index 00000000..67f988c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x63b619A040CcE5f90c12b230d7258E5809E91082/logo.png differ diff --git a/blockchains/ethereum/assets/0x63b992e6246d88f07fc35A056d2C365E6D441A3D/info.json b/blockchains/ethereum/assets/0x63b992e6246d88f07fc35A056d2C365E6D441A3D/info.json new file mode 100644 index 00000000..961784b5 --- /dev/null +++ b/blockchains/ethereum/assets/0x63b992e6246d88f07fc35A056d2C365E6D441A3D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Soma Community Token", + "symbol": "SCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://soma.co", + "explorer": "https://etherscan.io/token/0x63b992e6246d88f07fc35A056d2C365E6D441A3D", + "status": "abandoned", + "id": "0x63b992e6246d88f07fc35A056d2C365E6D441A3D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63b992e6246d88f07fc35A056d2C365E6D441A3D/logo.png b/blockchains/ethereum/assets/0x63b992e6246d88f07fc35A056d2C365E6D441A3D/logo.png new file mode 100644 index 00000000..2739951b Binary files /dev/null and b/blockchains/ethereum/assets/0x63b992e6246d88f07fc35A056d2C365E6D441A3D/logo.png differ diff --git a/blockchains/ethereum/assets/0x63c9c6BBb3C1dC7769512fD7a9ED49226bEf52f7/info.json b/blockchains/ethereum/assets/0x63c9c6BBb3C1dC7769512fD7a9ED49226bEf52f7/info.json new file mode 100644 index 00000000..9c5c9668 --- /dev/null +++ b/blockchains/ethereum/assets/0x63c9c6BBb3C1dC7769512fD7a9ED49226bEf52f7/info.json @@ -0,0 +1,11 @@ +{ + "name": "WrapETH", + "website": "https://ecocelium.io", + "description": "Wrapped version of Ethereum (ETH)", + "explorer": "https://etherscan.io/token/0x63c9c6BBb3C1dC7769512fD7a9ED49226bEf52f7", + "type": "ERC20", + "symbol": "eETH", + "decimals": 18, + "status": "active", + "id": "0x63c9c6BBb3C1dC7769512fD7a9ED49226bEf52f7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63c9c6BBb3C1dC7769512fD7a9ED49226bEf52f7/logo.png b/blockchains/ethereum/assets/0x63c9c6BBb3C1dC7769512fD7a9ED49226bEf52f7/logo.png new file mode 100644 index 00000000..8f5f37cb Binary files /dev/null and b/blockchains/ethereum/assets/0x63c9c6BBb3C1dC7769512fD7a9ED49226bEf52f7/logo.png differ diff --git a/blockchains/ethereum/assets/0x63d4ed1173B7BBbaD79B897C0989bc1CAe6E2ae6/info.json b/blockchains/ethereum/assets/0x63d4ed1173B7BBbaD79B897C0989bc1CAe6E2ae6/info.json new file mode 100644 index 00000000..9b1d8e26 --- /dev/null +++ b/blockchains/ethereum/assets/0x63d4ed1173B7BBbaD79B897C0989bc1CAe6E2ae6/info.json @@ -0,0 +1,11 @@ +{ + "name": "IONACK", + "symbol": "ION", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x63d4ed1173B7BBbaD79B897C0989bc1CAe6E2ae6", + "status": "abandoned", + "id": "0x63d4ed1173B7BBbaD79B897C0989bc1CAe6E2ae6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63d4ed1173B7BBbaD79B897C0989bc1CAe6E2ae6/logo.png b/blockchains/ethereum/assets/0x63d4ed1173B7BBbaD79B897C0989bc1CAe6E2ae6/logo.png new file mode 100755 index 00000000..41d87f27 Binary files /dev/null and b/blockchains/ethereum/assets/0x63d4ed1173B7BBbaD79B897C0989bc1CAe6E2ae6/logo.png differ diff --git a/blockchains/ethereum/assets/0x63d958D765F5bd88efDbD8Afd32445393b24907f/info.json b/blockchains/ethereum/assets/0x63d958D765F5bd88efDbD8Afd32445393b24907f/info.json new file mode 100644 index 00000000..a97adf83 --- /dev/null +++ b/blockchains/ethereum/assets/0x63d958D765F5bd88efDbD8Afd32445393b24907f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Acash Coin", + "symbol": "ACA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.acashcorp.com/", + "explorer": "https://etherscan.io/token/0x63d958D765F5bd88efDbD8Afd32445393b24907f", + "status": "abandoned", + "id": "0x63d958D765F5bd88efDbD8Afd32445393b24907f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63d958D765F5bd88efDbD8Afd32445393b24907f/logo.png b/blockchains/ethereum/assets/0x63d958D765F5bd88efDbD8Afd32445393b24907f/logo.png new file mode 100644 index 00000000..85bc273d Binary files /dev/null and b/blockchains/ethereum/assets/0x63d958D765F5bd88efDbD8Afd32445393b24907f/logo.png differ diff --git a/blockchains/ethereum/assets/0x63e634330A20150DbB61B15648bC73855d6CCF07/info.json b/blockchains/ethereum/assets/0x63e634330A20150DbB61B15648bC73855d6CCF07/info.json new file mode 100644 index 00000000..70203dfd --- /dev/null +++ b/blockchains/ethereum/assets/0x63e634330A20150DbB61B15648bC73855d6CCF07/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lancer Token", + "symbol": "LNC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://blocklancer.net/", + "explorer": "https://etherscan.io/token/0x63e634330A20150DbB61B15648bC73855d6CCF07", + "status": "abandoned", + "id": "0x63e634330A20150DbB61B15648bC73855d6CCF07" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63e634330A20150DbB61B15648bC73855d6CCF07/logo.png b/blockchains/ethereum/assets/0x63e634330A20150DbB61B15648bC73855d6CCF07/logo.png new file mode 100644 index 00000000..188f5167 Binary files /dev/null and b/blockchains/ethereum/assets/0x63e634330A20150DbB61B15648bC73855d6CCF07/logo.png differ diff --git a/blockchains/ethereum/assets/0x63ec021C680E3958878aec8615b86Ff48290653f/info.json b/blockchains/ethereum/assets/0x63ec021C680E3958878aec8615b86Ff48290653f/info.json new file mode 100644 index 00000000..553e9a91 --- /dev/null +++ b/blockchains/ethereum/assets/0x63ec021C680E3958878aec8615b86Ff48290653f/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg10000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x63ec021C680E3958878aec8615b86Ff48290653f", + "status": "abandoned", + "id": "0x63ec021C680E3958878aec8615b86Ff48290653f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63ec021C680E3958878aec8615b86Ff48290653f/logo.png b/blockchains/ethereum/assets/0x63ec021C680E3958878aec8615b86Ff48290653f/logo.png new file mode 100644 index 00000000..e264127d Binary files /dev/null and b/blockchains/ethereum/assets/0x63ec021C680E3958878aec8615b86Ff48290653f/logo.png differ diff --git a/blockchains/ethereum/assets/0x63ecd27326E3E6b303aC680cceA0f69816e9873d/info.json b/blockchains/ethereum/assets/0x63ecd27326E3E6b303aC680cceA0f69816e9873d/info.json new file mode 100644 index 00000000..57f707bf --- /dev/null +++ b/blockchains/ethereum/assets/0x63ecd27326E3E6b303aC680cceA0f69816e9873d/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C560226", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x63ecd27326E3E6b303aC680cceA0f69816e9873d", + "status": "abandoned", + "id": "0x63ecd27326E3E6b303aC680cceA0f69816e9873d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63ecd27326E3E6b303aC680cceA0f69816e9873d/logo.png b/blockchains/ethereum/assets/0x63ecd27326E3E6b303aC680cceA0f69816e9873d/logo.png new file mode 100644 index 00000000..e0c1bb31 Binary files /dev/null and b/blockchains/ethereum/assets/0x63ecd27326E3E6b303aC680cceA0f69816e9873d/logo.png differ diff --git a/blockchains/ethereum/assets/0x63f0b23080DeC3d4485577F085D117D6DeDa9fDF/info.json b/blockchains/ethereum/assets/0x63f0b23080DeC3d4485577F085D117D6DeDa9fDF/info.json new file mode 100644 index 00000000..330b773d --- /dev/null +++ b/blockchains/ethereum/assets/0x63f0b23080DeC3d4485577F085D117D6DeDa9fDF/info.json @@ -0,0 +1,11 @@ +{ + "name": "EveryBody", + "symbol": "EB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x63f0b23080DeC3d4485577F085D117D6DeDa9fDF", + "status": "abandoned", + "id": "0x63f0b23080DeC3d4485577F085D117D6DeDa9fDF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63f0b23080DeC3d4485577F085D117D6DeDa9fDF/logo.png b/blockchains/ethereum/assets/0x63f0b23080DeC3d4485577F085D117D6DeDa9fDF/logo.png new file mode 100644 index 00000000..cda952fe Binary files /dev/null and b/blockchains/ethereum/assets/0x63f0b23080DeC3d4485577F085D117D6DeDa9fDF/logo.png differ diff --git a/blockchains/ethereum/assets/0x63f584FA56E60e4D0fE8802b27C7e6E3b33E007f/info.json b/blockchains/ethereum/assets/0x63f584FA56E60e4D0fE8802b27C7e6E3b33E007f/info.json new file mode 100644 index 00000000..2ab24f0c --- /dev/null +++ b/blockchains/ethereum/assets/0x63f584FA56E60e4D0fE8802b27C7e6E3b33E007f/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOX Token", + "symbol": "BOX", + "type": "ERC20", + "decimals": 18, + "description": "Blockchain Infrastructure For The Digital Content Industry. Empowering a decentralized digital content ecosystem.", + "website": "https://contentbox.one/", + "explorer": "https://etherscan.io/token/0x63f584FA56E60e4D0fE8802b27C7e6E3b33E007f", + "status": "active", + "id": "0x63f584FA56E60e4D0fE8802b27C7e6E3b33E007f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63f584FA56E60e4D0fE8802b27C7e6E3b33E007f/logo.png b/blockchains/ethereum/assets/0x63f584FA56E60e4D0fE8802b27C7e6E3b33E007f/logo.png new file mode 100644 index 00000000..c131d609 Binary files /dev/null and b/blockchains/ethereum/assets/0x63f584FA56E60e4D0fE8802b27C7e6E3b33E007f/logo.png differ diff --git a/blockchains/ethereum/assets/0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437/info.json b/blockchains/ethereum/assets/0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437/info.json new file mode 100644 index 00000000..ce8fad6f --- /dev/null +++ b/blockchains/ethereum/assets/0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437/info.json @@ -0,0 +1,45 @@ +{ + "name": "GAME Credits", + "website": "https://gamecredits.org", + "description": "The next-generation blockchain platform for large-scale online games and social apps. GAME Credits is a platform eSports solution for true digital item ownership - Blockchain for every game and every gamer - empower your players and deliver what they want - true ownership, digital security and boundless possibilities for fun.", + "explorer": "https://etherscan.io/token/0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437", + "type": "ERC20", + "symbol": "GAME", + "decimals": 18, + "status": "active", + "id": "0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437", + "links": [ + { + "name": "github", + "url": "https://github.com/novatokenplatform" + }, + { + "name": "x", + "url": "https://x.com/gamecredits" + }, + { + "name": "telegram", + "url": "https://t.me/gamecreditsglobal" + }, + { + "name": "discord", + "url": "https://discord.com/invite/gamecredits" + }, + { + "name": "facebook", + "url": "https://facebook.com/gamecredits/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/GameCredits/" + }, + { + "name": "medium", + "url": "https://medium.com/gamecredits" + }, + { + "name": "whitepaper", + "url": "https://gamecredits.org/wp-content/uploads/2020/04/GC_whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437/logo.png b/blockchains/ethereum/assets/0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437/logo.png new file mode 100644 index 00000000..c60bccda Binary files /dev/null and b/blockchains/ethereum/assets/0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437/logo.png differ diff --git a/blockchains/ethereum/assets/0x6400B5522f8D448C0803e6245436DD1c81dF09ce/info.json b/blockchains/ethereum/assets/0x6400B5522f8D448C0803e6245436DD1c81dF09ce/info.json new file mode 100644 index 00000000..c4ba1b83 --- /dev/null +++ b/blockchains/ethereum/assets/0x6400B5522f8D448C0803e6245436DD1c81dF09ce/info.json @@ -0,0 +1,11 @@ +{ + "name": "CVNToken", + "symbol": "CVNT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://cvn.io/", + "explorer": "https://etherscan.io/token/0x6400B5522f8D448C0803e6245436DD1c81dF09ce", + "status": "abandoned", + "id": "0x6400B5522f8D448C0803e6245436DD1c81dF09ce" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6400B5522f8D448C0803e6245436DD1c81dF09ce/logo.png b/blockchains/ethereum/assets/0x6400B5522f8D448C0803e6245436DD1c81dF09ce/logo.png new file mode 100644 index 00000000..3b3409b1 Binary files /dev/null and b/blockchains/ethereum/assets/0x6400B5522f8D448C0803e6245436DD1c81dF09ce/logo.png differ diff --git a/blockchains/ethereum/assets/0x640c88a3F7dbD2CBeB4821b0436Eb49Af86A2aAd/info.json b/blockchains/ethereum/assets/0x640c88a3F7dbD2CBeB4821b0436Eb49Af86A2aAd/info.json new file mode 100644 index 00000000..e15c3486 --- /dev/null +++ b/blockchains/ethereum/assets/0x640c88a3F7dbD2CBeB4821b0436Eb49Af86A2aAd/info.json @@ -0,0 +1,11 @@ +{ + "name": "PURCOW MILK TOKEN", + "symbol": "MILK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x640c88a3F7dbD2CBeB4821b0436Eb49Af86A2aAd", + "status": "abandoned", + "id": "0x640c88a3F7dbD2CBeB4821b0436Eb49Af86A2aAd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x640c88a3F7dbD2CBeB4821b0436Eb49Af86A2aAd/logo.png b/blockchains/ethereum/assets/0x640c88a3F7dbD2CBeB4821b0436Eb49Af86A2aAd/logo.png new file mode 100644 index 00000000..a79eadd2 Binary files /dev/null and b/blockchains/ethereum/assets/0x640c88a3F7dbD2CBeB4821b0436Eb49Af86A2aAd/logo.png differ diff --git a/blockchains/ethereum/assets/0x6420A10A763dB3E0f3B8EB501Ba9c6153619410b/info.json b/blockchains/ethereum/assets/0x6420A10A763dB3E0f3B8EB501Ba9c6153619410b/info.json new file mode 100644 index 00000000..ce4965cb --- /dev/null +++ b/blockchains/ethereum/assets/0x6420A10A763dB3E0f3B8EB501Ba9c6153619410b/info.json @@ -0,0 +1,11 @@ +{ + "name": "RAS", + "symbol": "RAS", + "type": "ERC20", + "decimals": 4, + "description": "RAS is a stable crypto asset (“stablecoin”) with a fixed price of 1.00 BRL and it is backed in BRL (Reais) in a 1:1 ratio.", + "website": "https://ras.cash/", + "explorer": "https://etherscan.io/token/0x6420A10A763dB3E0f3B8EB501Ba9c6153619410b", + "status": "active", + "id": "0x6420A10A763dB3E0f3B8EB501Ba9c6153619410b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6420A10A763dB3E0f3B8EB501Ba9c6153619410b/logo.png b/blockchains/ethereum/assets/0x6420A10A763dB3E0f3B8EB501Ba9c6153619410b/logo.png new file mode 100644 index 00000000..f690299a Binary files /dev/null and b/blockchains/ethereum/assets/0x6420A10A763dB3E0f3B8EB501Ba9c6153619410b/logo.png differ diff --git a/blockchains/ethereum/assets/0x6425c6BE902d692AE2db752B3c268AFAdb099D3b/info.json b/blockchains/ethereum/assets/0x6425c6BE902d692AE2db752B3c268AFAdb099D3b/info.json new file mode 100644 index 00000000..258f35e8 --- /dev/null +++ b/blockchains/ethereum/assets/0x6425c6BE902d692AE2db752B3c268AFAdb099D3b/info.json @@ -0,0 +1,11 @@ +{ + "name": "RED MWAT", + "symbol": "MWAT", + "type": "ERC20", + "decimals": 18, + "description": "Restart Energy MWAT (MWAT) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://restartenergy.io", + "explorer": "https://etherscan.io/token/0x6425c6BE902d692AE2db752B3c268AFAdb099D3b", + "status": "active", + "id": "0x6425c6BE902d692AE2db752B3c268AFAdb099D3b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6425c6BE902d692AE2db752B3c268AFAdb099D3b/logo.png b/blockchains/ethereum/assets/0x6425c6BE902d692AE2db752B3c268AFAdb099D3b/logo.png new file mode 100644 index 00000000..c38fdf86 Binary files /dev/null and b/blockchains/ethereum/assets/0x6425c6BE902d692AE2db752B3c268AFAdb099D3b/logo.png differ diff --git a/blockchains/ethereum/assets/0x64340ed116881E2b435b7240b3A60cF224630E01/info.json b/blockchains/ethereum/assets/0x64340ed116881E2b435b7240b3A60cF224630E01/info.json new file mode 100644 index 00000000..0eb0d24d --- /dev/null +++ b/blockchains/ethereum/assets/0x64340ed116881E2b435b7240b3A60cF224630E01/info.json @@ -0,0 +1,11 @@ +{ + "name": "SIGMA Token", + "symbol": "SIGMA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x64340ed116881E2b435b7240b3A60cF224630E01", + "status": "abandoned", + "id": "0x64340ed116881E2b435b7240b3A60cF224630E01" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64340ed116881E2b435b7240b3A60cF224630E01/logo.png b/blockchains/ethereum/assets/0x64340ed116881E2b435b7240b3A60cF224630E01/logo.png new file mode 100644 index 00000000..28cb39f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x64340ed116881E2b435b7240b3A60cF224630E01/logo.png differ diff --git a/blockchains/ethereum/assets/0x643C4E15d7d62Ad0aBeC4a9BD4b001aA3Ef52d66/info.json b/blockchains/ethereum/assets/0x643C4E15d7d62Ad0aBeC4a9BD4b001aA3Ef52d66/info.json new file mode 100644 index 00000000..439cbf1d --- /dev/null +++ b/blockchains/ethereum/assets/0x643C4E15d7d62Ad0aBeC4a9BD4b001aA3Ef52d66/info.json @@ -0,0 +1,25 @@ +{ + "name": "Syrup Token", + "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 00000000..173efab5 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 new file mode 100644 index 00000000..a287aa53 --- /dev/null +++ b/blockchains/ethereum/assets/0x644192291cc835A93d6330b24EA5f5FEdD0eEF9e/info.json @@ -0,0 +1,52 @@ +{ + "name": "AllianceBlock Nexera Token", + "type": "ERC20", + "symbol": "NXRA", + "decimals": 18, + "website": "https://allianceblock.io", + "description": "Seamless gateways between TradFi and DeFi", + "explorer": "https://etherscan.io/token/0x644192291cc835a93d6330b24ea5f5fedd0eef9e", + "status": "active", + "id": "0x644192291cc835A93d6330b24EA5f5FEdD0eEF9e", + "links": [ + { + "name": "x", + "url": "https://x.com/allianceblock" + }, + { + "name": "telegram", + "url": "https://t.me/AllianceBlock" + }, + { + "name": "telegram_news", + "url": "https://t.me/AllianceBlockAnn" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AllianceBlock/" + }, + { + "name": "medium", + "url": "https://medium.com/allianceblock" + }, + { + "name": "youtube", + "url": "https://youtube.com/AllianceBlock" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/allianceblock-nexera" + }, + { + "name": "github", + "url": "https://github.com/Stichting-AllianceBlock-Foundation/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/fB4tkF52H5" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x644192291cc835A93d6330b24EA5f5FEdD0eEF9e/logo.png b/blockchains/ethereum/assets/0x644192291cc835A93d6330b24EA5f5FEdD0eEF9e/logo.png new file mode 100644 index 00000000..db68f1ad Binary files /dev/null and b/blockchains/ethereum/assets/0x644192291cc835A93d6330b24EA5f5FEdD0eEF9e/logo.png differ diff --git a/blockchains/ethereum/assets/0x6444b69B46D5bA431C5A7D4e2a91E2e1AD52e4d0/info.json b/blockchains/ethereum/assets/0x6444b69B46D5bA431C5A7D4e2a91E2e1AD52e4d0/info.json new file mode 100644 index 00000000..b538d51c --- /dev/null +++ b/blockchains/ethereum/assets/0x6444b69B46D5bA431C5A7D4e2a91E2e1AD52e4d0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chain Key", + "symbol": "CKY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6444b69B46D5bA431C5A7D4e2a91E2e1AD52e4d0", + "status": "abandoned", + "id": "0x6444b69B46D5bA431C5A7D4e2a91E2e1AD52e4d0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6444b69B46D5bA431C5A7D4e2a91E2e1AD52e4d0/logo.png b/blockchains/ethereum/assets/0x6444b69B46D5bA431C5A7D4e2a91E2e1AD52e4d0/logo.png new file mode 100644 index 00000000..9f68d3aa Binary files /dev/null and b/blockchains/ethereum/assets/0x6444b69B46D5bA431C5A7D4e2a91E2e1AD52e4d0/logo.png differ diff --git a/blockchains/ethereum/assets/0x6454340896B9AE47921809de9035F4dADEA3ac8B/info.json b/blockchains/ethereum/assets/0x6454340896B9AE47921809de9035F4dADEA3ac8B/info.json new file mode 100644 index 00000000..d1edd52f --- /dev/null +++ b/blockchains/ethereum/assets/0x6454340896B9AE47921809de9035F4dADEA3ac8B/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLOCKCHAIN NEWMEDIA NETWORK", + "symbol": "BNN2U", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6454340896B9AE47921809de9035F4dADEA3ac8B", + "status": "abandoned", + "id": "0x6454340896B9AE47921809de9035F4dADEA3ac8B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6454340896B9AE47921809de9035F4dADEA3ac8B/logo.png b/blockchains/ethereum/assets/0x6454340896B9AE47921809de9035F4dADEA3ac8B/logo.png new file mode 100644 index 00000000..40a39510 Binary files /dev/null and b/blockchains/ethereum/assets/0x6454340896B9AE47921809de9035F4dADEA3ac8B/logo.png differ diff --git a/blockchains/ethereum/assets/0x646707246D7d5C2a86d7206f41CA8199ea9CED69/info.json b/blockchains/ethereum/assets/0x646707246D7d5C2a86d7206f41CA8199ea9CED69/info.json new file mode 100644 index 00000000..6e58da13 --- /dev/null +++ b/blockchains/ethereum/assets/0x646707246D7d5C2a86d7206f41CA8199ea9CED69/info.json @@ -0,0 +1,11 @@ +{ + "name": "Porkchop", + "symbol": "CHOP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.porkchop.network/", + "explorer": "https://etherscan.io/token/0x646707246D7d5C2a86d7206f41CA8199ea9CED69", + "status": "abandoned", + "id": "0x646707246D7d5C2a86d7206f41CA8199ea9CED69" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x646707246D7d5C2a86d7206f41CA8199ea9CED69/logo.png b/blockchains/ethereum/assets/0x646707246D7d5C2a86d7206f41CA8199ea9CED69/logo.png new file mode 100644 index 00000000..0a0b99ad Binary files /dev/null and b/blockchains/ethereum/assets/0x646707246D7d5C2a86d7206f41CA8199ea9CED69/logo.png differ diff --git a/blockchains/ethereum/assets/0x6467882316dc6e206FEef05fBa6deaA69277f155/info.json b/blockchains/ethereum/assets/0x6467882316dc6e206FEef05fBa6deaA69277f155/info.json new file mode 100644 index 00000000..a34b17e3 --- /dev/null +++ b/blockchains/ethereum/assets/0x6467882316dc6e206FEef05fBa6deaA69277f155/info.json @@ -0,0 +1,11 @@ +{ + "name": "FAPcoin", + "symbol": "FAP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6467882316dc6e206FEef05fBa6deaA69277f155", + "status": "abandoned", + "id": "0x6467882316dc6e206FEef05fBa6deaA69277f155" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6467882316dc6e206FEef05fBa6deaA69277f155/logo.png b/blockchains/ethereum/assets/0x6467882316dc6e206FEef05fBa6deaA69277f155/logo.png new file mode 100644 index 00000000..272e1eb0 Binary files /dev/null and b/blockchains/ethereum/assets/0x6467882316dc6e206FEef05fBa6deaA69277f155/logo.png differ diff --git a/blockchains/ethereum/assets/0x6468e79A80C0eaB0F9A2B574c8d5bC374Af59414/info.json b/blockchains/ethereum/assets/0x6468e79A80C0eaB0F9A2B574c8d5bC374Af59414/info.json new file mode 100644 index 00000000..06639f58 --- /dev/null +++ b/blockchains/ethereum/assets/0x6468e79A80C0eaB0F9A2B574c8d5bC374Af59414/info.json @@ -0,0 +1,45 @@ +{ + "name": "E-RADIX", + "website": "https://radixdlt.com", + "description": "E-RADIX (eXRD) is the Ethereum token of Radix, the first layer one protocol built for DeFi. Radix introduces a scalable, secure-by-design, composable platform with a DeFi specific build environment to make it easy to build and launch scalable DeFi.", + "explorer": "https://etherscan.io/token/0x6468e79A80C0eaB0F9A2B574c8d5bC374Af59414", + "type": "ERC20", + "symbol": "eXRD", + "decimals": 18, + "status": "active", + "id": "0x6468e79A80C0eaB0F9A2B574c8d5bC374Af59414", + "links": [ + { + "name": "github", + "url": "https://github.com/radixdlt" + }, + { + "name": "x", + "url": "https://x.com/Radix" + }, + { + "name": "telegram", + "url": "https://t.me/RadixAnnouncements" + }, + { + "name": "discord", + "url": "https://discord.com/invite/WkB2USt" + }, + { + "name": "facebook", + "url": "https://facebook.com/RadixDLT/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCWz_uLkOCrmSUnLAxSY4N5Q" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Radix/" + }, + { + "name": "medium", + "url": "https://medium.com/@radixdlt" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6468e79A80C0eaB0F9A2B574c8d5bC374Af59414/logo.png b/blockchains/ethereum/assets/0x6468e79A80C0eaB0F9A2B574c8d5bC374Af59414/logo.png new file mode 100644 index 00000000..db2666e2 Binary files /dev/null and b/blockchains/ethereum/assets/0x6468e79A80C0eaB0F9A2B574c8d5bC374Af59414/logo.png differ diff --git a/blockchains/ethereum/assets/0x64786063A352b399d44de2875909D1229F120eBE/info.json b/blockchains/ethereum/assets/0x64786063A352b399d44de2875909D1229F120eBE/info.json new file mode 100644 index 00000000..4015b478 --- /dev/null +++ b/blockchains/ethereum/assets/0x64786063A352b399d44de2875909D1229F120eBE/info.json @@ -0,0 +1,11 @@ +{ + "name": "TAUR", + "symbol": "TAUR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x64786063A352b399d44de2875909D1229F120eBE", + "status": "active", + "id": "0x64786063A352b399d44de2875909D1229F120eBE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64786063A352b399d44de2875909D1229F120eBE/logo.png b/blockchains/ethereum/assets/0x64786063A352b399d44de2875909D1229F120eBE/logo.png new file mode 100755 index 00000000..993c3b9f Binary files /dev/null and b/blockchains/ethereum/assets/0x64786063A352b399d44de2875909D1229F120eBE/logo.png differ diff --git a/blockchains/ethereum/assets/0x647F274b3a7248D6CF51b35f08E7E7fD6EdFb271/info.json b/blockchains/ethereum/assets/0x647F274b3a7248D6CF51b35f08E7E7fD6EdFb271/info.json new file mode 100644 index 00000000..f5795518 --- /dev/null +++ b/blockchains/ethereum/assets/0x647F274b3a7248D6CF51b35f08E7E7fD6EdFb271/info.json @@ -0,0 +1,11 @@ +{ + "name": "Maggie Token", + "symbol": "MAG", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "http://maggie.vip/", + "explorer": "https://etherscan.io/token/0x647F274b3a7248D6CF51b35f08E7E7fD6EdFb271", + "status": "abandoned", + "id": "0x647F274b3a7248D6CF51b35f08E7E7fD6EdFb271" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x647F274b3a7248D6CF51b35f08E7E7fD6EdFb271/logo.png b/blockchains/ethereum/assets/0x647F274b3a7248D6CF51b35f08E7E7fD6EdFb271/logo.png new file mode 100644 index 00000000..6a73ab83 Binary files /dev/null and b/blockchains/ethereum/assets/0x647F274b3a7248D6CF51b35f08E7E7fD6EdFb271/logo.png differ diff --git a/blockchains/ethereum/assets/0x64921aCb8Fc1B54D7F774788A405b7cF1864CBFf/info.json b/blockchains/ethereum/assets/0x64921aCb8Fc1B54D7F774788A405b7cF1864CBFf/info.json new file mode 100644 index 00000000..ce0dd852 --- /dev/null +++ b/blockchains/ethereum/assets/0x64921aCb8Fc1B54D7F774788A405b7cF1864CBFf/info.json @@ -0,0 +1,11 @@ +{ + "name": "AFRICAN DIGITAL CURRENCY", + "symbol": "ADC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x64921aCb8Fc1B54D7F774788A405b7cF1864CBFf", + "status": "abandoned", + "id": "0x64921aCb8Fc1B54D7F774788A405b7cF1864CBFf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64921aCb8Fc1B54D7F774788A405b7cF1864CBFf/logo.png b/blockchains/ethereum/assets/0x64921aCb8Fc1B54D7F774788A405b7cF1864CBFf/logo.png new file mode 100644 index 00000000..691c5283 Binary files /dev/null and b/blockchains/ethereum/assets/0x64921aCb8Fc1B54D7F774788A405b7cF1864CBFf/logo.png differ diff --git a/blockchains/ethereum/assets/0x64944C83481Ed0228E7500c013E4C23aB825bB6D/info.json b/blockchains/ethereum/assets/0x64944C83481Ed0228E7500c013E4C23aB825bB6D/info.json new file mode 100644 index 00000000..80bbe85a --- /dev/null +++ b/blockchains/ethereum/assets/0x64944C83481Ed0228E7500c013E4C23aB825bB6D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Instant Asset Token", + "symbol": "IAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x64944C83481Ed0228E7500c013E4C23aB825bB6D", + "status": "abandoned", + "id": "0x64944C83481Ed0228E7500c013E4C23aB825bB6D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64944C83481Ed0228E7500c013E4C23aB825bB6D/logo.png b/blockchains/ethereum/assets/0x64944C83481Ed0228E7500c013E4C23aB825bB6D/logo.png new file mode 100644 index 00000000..89bd5af2 Binary files /dev/null and b/blockchains/ethereum/assets/0x64944C83481Ed0228E7500c013E4C23aB825bB6D/logo.png differ diff --git a/blockchains/ethereum/assets/0x64A60493D888728Cf42616e034a0dfEAe38EFCF0/info.json b/blockchains/ethereum/assets/0x64A60493D888728Cf42616e034a0dfEAe38EFCF0/info.json new file mode 100644 index 00000000..20da9afe --- /dev/null +++ b/blockchains/ethereum/assets/0x64A60493D888728Cf42616e034a0dfEAe38EFCF0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Oneledger Token", + "symbol": "OLT", + "type": "ERC20", + "decimals": 18, + "description": "OneLedger is A Universal Blockchain Protocol Enabling Cross-ledger Access through Business Modularization.", + "website": "https://oneledger.io/", + "explorer": "https://etherscan.io/token/0x64A60493D888728Cf42616e034a0dfEAe38EFCF0", + "status": "active", + "id": "0x64A60493D888728Cf42616e034a0dfEAe38EFCF0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64A60493D888728Cf42616e034a0dfEAe38EFCF0/logo.png b/blockchains/ethereum/assets/0x64A60493D888728Cf42616e034a0dfEAe38EFCF0/logo.png new file mode 100644 index 00000000..4f2ae04e Binary files /dev/null and b/blockchains/ethereum/assets/0x64A60493D888728Cf42616e034a0dfEAe38EFCF0/logo.png differ diff --git a/blockchains/ethereum/assets/0x64Ac6Dfd5D74C5A255c970F173Feb37aF6d6D04B/info.json b/blockchains/ethereum/assets/0x64Ac6Dfd5D74C5A255c970F173Feb37aF6d6D04B/info.json new file mode 100644 index 00000000..1147a4f0 --- /dev/null +++ b/blockchains/ethereum/assets/0x64Ac6Dfd5D74C5A255c970F173Feb37aF6d6D04B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crowdnext", + "symbol": "CNXT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x64Ac6Dfd5D74C5A255c970F173Feb37aF6d6D04B", + "status": "abandoned", + "id": "0x64Ac6Dfd5D74C5A255c970F173Feb37aF6d6D04B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64Ac6Dfd5D74C5A255c970F173Feb37aF6d6D04B/logo.png b/blockchains/ethereum/assets/0x64Ac6Dfd5D74C5A255c970F173Feb37aF6d6D04B/logo.png new file mode 100644 index 00000000..180031ce Binary files /dev/null and b/blockchains/ethereum/assets/0x64Ac6Dfd5D74C5A255c970F173Feb37aF6d6D04B/logo.png differ diff --git a/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/info.json b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/info.json new file mode 100644 index 00000000..b6bb63e1 --- /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 00000000..2b3a7008 Binary files /dev/null and b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/logo.png differ diff --git a/blockchains/ethereum/assets/0x64CA86de1D7103943da14aAE723C450c4a1af3C8/info.json b/blockchains/ethereum/assets/0x64CA86de1D7103943da14aAE723C450c4a1af3C8/info.json new file mode 100644 index 00000000..e823ae0f --- /dev/null +++ b/blockchains/ethereum/assets/0x64CA86de1D7103943da14aAE723C450c4a1af3C8/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R932638", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x64CA86de1D7103943da14aAE723C450c4a1af3C8", + "status": "spam", + "id": "0x64CA86de1D7103943da14aAE723C450c4a1af3C8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64CA86de1D7103943da14aAE723C450c4a1af3C8/logo.png b/blockchains/ethereum/assets/0x64CA86de1D7103943da14aAE723C450c4a1af3C8/logo.png new file mode 100644 index 00000000..d71997b9 Binary files /dev/null and b/blockchains/ethereum/assets/0x64CA86de1D7103943da14aAE723C450c4a1af3C8/logo.png differ diff --git a/blockchains/ethereum/assets/0x64CdF819d3E75Ac8eC217B3496d7cE167Be42e80/info.json b/blockchains/ethereum/assets/0x64CdF819d3E75Ac8eC217B3496d7cE167Be42e80/info.json new file mode 100644 index 00000000..9ab70607 --- /dev/null +++ b/blockchains/ethereum/assets/0x64CdF819d3E75Ac8eC217B3496d7cE167Be42e80/info.json @@ -0,0 +1,11 @@ +{ + "name": "InsurePal token", + "symbol": "IPL", + "type": "ERC20", + "decimals": 18, + "description": "Team insurance is a form of insurance in which a group of people insures themselves at the same time, as a team.", + "website": "https://insurepal.io/", + "explorer": "https://etherscan.io/token/0x64CdF819d3E75Ac8eC217B3496d7cE167Be42e80", + "status": "active", + "id": "0x64CdF819d3E75Ac8eC217B3496d7cE167Be42e80" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64CdF819d3E75Ac8eC217B3496d7cE167Be42e80/logo.png b/blockchains/ethereum/assets/0x64CdF819d3E75Ac8eC217B3496d7cE167Be42e80/logo.png new file mode 100644 index 00000000..a6924613 Binary files /dev/null and b/blockchains/ethereum/assets/0x64CdF819d3E75Ac8eC217B3496d7cE167Be42e80/logo.png differ diff --git a/blockchains/ethereum/assets/0x64EA2c6104F1CF3035E28Be0f781B6286d50934D/info.json b/blockchains/ethereum/assets/0x64EA2c6104F1CF3035E28Be0f781B6286d50934D/info.json new file mode 100644 index 00000000..88b16061 --- /dev/null +++ b/blockchains/ethereum/assets/0x64EA2c6104F1CF3035E28Be0f781B6286d50934D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Satoshivisioncoin", + "symbol": "SVC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://satoshivisioncoin.com/", + "explorer": "https://etherscan.io/token/0x64EA2c6104F1CF3035E28Be0f781B6286d50934D", + "status": "abandoned", + "id": "0x64EA2c6104F1CF3035E28Be0f781B6286d50934D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64EA2c6104F1CF3035E28Be0f781B6286d50934D/logo.png b/blockchains/ethereum/assets/0x64EA2c6104F1CF3035E28Be0f781B6286d50934D/logo.png new file mode 100644 index 00000000..bb48ac87 Binary files /dev/null and b/blockchains/ethereum/assets/0x64EA2c6104F1CF3035E28Be0f781B6286d50934D/logo.png differ diff --git a/blockchains/ethereum/assets/0x64Ee5a075701f75359F10626BC986Aae844Ad9a7/info.json b/blockchains/ethereum/assets/0x64Ee5a075701f75359F10626BC986Aae844Ad9a7/info.json new file mode 100644 index 00000000..168f99ef --- /dev/null +++ b/blockchains/ethereum/assets/0x64Ee5a075701f75359F10626BC986Aae844Ad9a7/info.json @@ -0,0 +1,11 @@ +{ + "name": "TradeStars TSX Utility Coin", + "symbol": "TSX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x64Ee5a075701f75359F10626BC986Aae844Ad9a7", + "status": "abandoned", + "id": "0x64Ee5a075701f75359F10626BC986Aae844Ad9a7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64Ee5a075701f75359F10626BC986Aae844Ad9a7/logo.png b/blockchains/ethereum/assets/0x64Ee5a075701f75359F10626BC986Aae844Ad9a7/logo.png new file mode 100644 index 00000000..50c30635 Binary files /dev/null and b/blockchains/ethereum/assets/0x64Ee5a075701f75359F10626BC986Aae844Ad9a7/logo.png differ diff --git a/blockchains/ethereum/assets/0x64c5cbA9A1BfBD2A5faf601D91Beff2dCac2c974/info.json b/blockchains/ethereum/assets/0x64c5cbA9A1BfBD2A5faf601D91Beff2dCac2c974/info.json new file mode 100644 index 00000000..4b7e995f --- /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 00000000..e156ce76 Binary files /dev/null and b/blockchains/ethereum/assets/0x64c5cbA9A1BfBD2A5faf601D91Beff2dCac2c974/logo.png differ diff --git a/blockchains/ethereum/assets/0x64d0260eF0BA835c427603a3DECEe49f539653E9/info.json b/blockchains/ethereum/assets/0x64d0260eF0BA835c427603a3DECEe49f539653E9/info.json new file mode 100644 index 00000000..1fabe178 --- /dev/null +++ b/blockchains/ethereum/assets/0x64d0260eF0BA835c427603a3DECEe49f539653E9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Business", + "symbol": "BET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x64d0260eF0BA835c427603a3DECEe49f539653E9", + "status": "abandoned", + "id": "0x64d0260eF0BA835c427603a3DECEe49f539653E9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64d0260eF0BA835c427603a3DECEe49f539653E9/logo.png b/blockchains/ethereum/assets/0x64d0260eF0BA835c427603a3DECEe49f539653E9/logo.png new file mode 100644 index 00000000..0c2af656 Binary files /dev/null and b/blockchains/ethereum/assets/0x64d0260eF0BA835c427603a3DECEe49f539653E9/logo.png differ diff --git a/blockchains/ethereum/assets/0x64d0f55Cd8C7133a9D7102b13987235F486F2224/info.json b/blockchains/ethereum/assets/0x64d0f55Cd8C7133a9D7102b13987235F486F2224/info.json new file mode 100644 index 00000000..89cfd779 --- /dev/null +++ b/blockchains/ethereum/assets/0x64d0f55Cd8C7133a9D7102b13987235F486F2224/info.json @@ -0,0 +1,29 @@ +{ + "name": "SwissBorg Token", + "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 00000000..847cda52 Binary files /dev/null and b/blockchains/ethereum/assets/0x64d0f55Cd8C7133a9D7102b13987235F486F2224/logo.png differ diff --git a/blockchains/ethereum/assets/0x64e274f486a5c6c52b09D1862Bb291Ec647c7d82/info.json b/blockchains/ethereum/assets/0x64e274f486a5c6c52b09D1862Bb291Ec647c7d82/info.json new file mode 100644 index 00000000..f4709019 --- /dev/null +++ b/blockchains/ethereum/assets/0x64e274f486a5c6c52b09D1862Bb291Ec647c7d82/info.json @@ -0,0 +1,11 @@ +{ + "name": "OZCAR", + "symbol": "OCR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x64e274f486a5c6c52b09D1862Bb291Ec647c7d82", + "status": "abandoned", + "id": "0x64e274f486a5c6c52b09D1862Bb291Ec647c7d82" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64e274f486a5c6c52b09D1862Bb291Ec647c7d82/logo.png b/blockchains/ethereum/assets/0x64e274f486a5c6c52b09D1862Bb291Ec647c7d82/logo.png new file mode 100644 index 00000000..1357b383 Binary files /dev/null and b/blockchains/ethereum/assets/0x64e274f486a5c6c52b09D1862Bb291Ec647c7d82/logo.png differ diff --git a/blockchains/ethereum/assets/0x64f64A26873ffbD11188679fB85FE00b6a2DdE27/info.json b/blockchains/ethereum/assets/0x64f64A26873ffbD11188679fB85FE00b6a2DdE27/info.json new file mode 100644 index 00000000..cc19f5a4 --- /dev/null +++ b/blockchains/ethereum/assets/0x64f64A26873ffbD11188679fB85FE00b6a2DdE27/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ltconlinemarkets", + "website": "https://ltconlinemarkets.com/Token/", + "description": "LOM is a collaborative and decentralised solution for the globalsourcing and problems.I", + "explorer": "https://etherscan.io/token/0x64f64A26873ffbD11188679fB85FE00b6a2DdE27", + "type": "ERC20", + "symbol": "LOM", + "decimals": 18, + "status": "active", + "id": "0x64f64A26873ffbD11188679fB85FE00b6a2DdE27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64f64A26873ffbD11188679fB85FE00b6a2DdE27/logo.png b/blockchains/ethereum/assets/0x64f64A26873ffbD11188679fB85FE00b6a2DdE27/logo.png new file mode 100644 index 00000000..0212e329 Binary files /dev/null and b/blockchains/ethereum/assets/0x64f64A26873ffbD11188679fB85FE00b6a2DdE27/logo.png differ diff --git a/blockchains/ethereum/assets/0x650882557EAF672A7Ee16f6338031bB277572BD0/info.json b/blockchains/ethereum/assets/0x650882557EAF672A7Ee16f6338031bB277572BD0/info.json new file mode 100644 index 00000000..c81b94d7 --- /dev/null +++ b/blockchains/ethereum/assets/0x650882557EAF672A7Ee16f6338031bB277572BD0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hydra Protocol", + "symbol": "HPL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x650882557EAF672A7Ee16f6338031bB277572BD0", + "status": "abandoned", + "id": "0x650882557EAF672A7Ee16f6338031bB277572BD0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x650882557EAF672A7Ee16f6338031bB277572BD0/logo.png b/blockchains/ethereum/assets/0x650882557EAF672A7Ee16f6338031bB277572BD0/logo.png new file mode 100644 index 00000000..8bda527b Binary files /dev/null and b/blockchains/ethereum/assets/0x650882557EAF672A7Ee16f6338031bB277572BD0/logo.png differ diff --git a/blockchains/ethereum/assets/0x651bC25bB8913c48A4249992C303B1E48189a004/info.json b/blockchains/ethereum/assets/0x651bC25bB8913c48A4249992C303B1E48189a004/info.json new file mode 100644 index 00000000..7d7dd633 --- /dev/null +++ b/blockchains/ethereum/assets/0x651bC25bB8913c48A4249992C303B1E48189a004/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yasuda Crypto", + "symbol": "TAKAYASUDA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x651bC25bB8913c48A4249992C303B1E48189a004", + "status": "abandoned", + "id": "0x651bC25bB8913c48A4249992C303B1E48189a004" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x651bC25bB8913c48A4249992C303B1E48189a004/logo.png b/blockchains/ethereum/assets/0x651bC25bB8913c48A4249992C303B1E48189a004/logo.png new file mode 100644 index 00000000..2968b3fa Binary files /dev/null and b/blockchains/ethereum/assets/0x651bC25bB8913c48A4249992C303B1E48189a004/logo.png differ diff --git a/blockchains/ethereum/assets/0x6524B87960c2d573AE514fd4181777E7842435d4/info.json b/blockchains/ethereum/assets/0x6524B87960c2d573AE514fd4181777E7842435d4/info.json new file mode 100644 index 00000000..9f5f6db5 --- /dev/null +++ b/blockchains/ethereum/assets/0x6524B87960c2d573AE514fd4181777E7842435d4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Benzene 2.1", + "symbol": "BZN", + "type": "ERC20", + "decimals": 18, + "description": "War Riders is the MMO game of earning cryptocurrency and blowing up cars. Use your vehicles to mine and attack enemies for Benzene.", + "website": "https://warriders.com/", + "explorer": "https://etherscan.io/token/0x6524B87960c2d573AE514fd4181777E7842435d4", + "status": "active", + "id": "0x6524B87960c2d573AE514fd4181777E7842435d4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6524B87960c2d573AE514fd4181777E7842435d4/logo.png b/blockchains/ethereum/assets/0x6524B87960c2d573AE514fd4181777E7842435d4/logo.png new file mode 100755 index 00000000..845ddbab Binary files /dev/null and b/blockchains/ethereum/assets/0x6524B87960c2d573AE514fd4181777E7842435d4/logo.png differ diff --git a/blockchains/ethereum/assets/0x652594082f97392a1703D80985Ab575085f34a4e/info.json b/blockchains/ethereum/assets/0x652594082f97392a1703D80985Ab575085f34a4e/info.json new file mode 100644 index 00000000..b5a96304 --- /dev/null +++ b/blockchains/ethereum/assets/0x652594082f97392a1703D80985Ab575085f34a4e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Silvertoken", + "symbol": "SLVT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "Http://www.silvertoken.com", + "explorer": "https://etherscan.io/token/0x652594082f97392a1703D80985Ab575085f34a4e", + "status": "abandoned", + "id": "0x652594082f97392a1703D80985Ab575085f34a4e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x652594082f97392a1703D80985Ab575085f34a4e/logo.png b/blockchains/ethereum/assets/0x652594082f97392a1703D80985Ab575085f34a4e/logo.png new file mode 100644 index 00000000..fbe81a43 Binary files /dev/null and b/blockchains/ethereum/assets/0x652594082f97392a1703D80985Ab575085f34a4e/logo.png differ diff --git a/blockchains/ethereum/assets/0x65292EeadF1426Cd2dF1C4793a3d7519f253913b/info.json b/blockchains/ethereum/assets/0x65292EeadF1426Cd2dF1C4793a3d7519f253913b/info.json new file mode 100644 index 00000000..e024de04 --- /dev/null +++ b/blockchains/ethereum/assets/0x65292EeadF1426Cd2dF1C4793a3d7519f253913b/info.json @@ -0,0 +1,11 @@ +{ + "name": "COSS", + "symbol": "COSS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x65292EeadF1426Cd2dF1C4793a3d7519f253913b", + "status": "abandoned", + "id": "0x65292EeadF1426Cd2dF1C4793a3d7519f253913b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x65292EeadF1426Cd2dF1C4793a3d7519f253913b/logo.png b/blockchains/ethereum/assets/0x65292EeadF1426Cd2dF1C4793a3d7519f253913b/logo.png new file mode 100755 index 00000000..f29a5274 Binary files /dev/null and b/blockchains/ethereum/assets/0x65292EeadF1426Cd2dF1C4793a3d7519f253913b/logo.png differ diff --git a/blockchains/ethereum/assets/0x6531f133e6DeeBe7F2dcE5A0441aA7ef330B4e53/info.json b/blockchains/ethereum/assets/0x6531f133e6DeeBe7F2dcE5A0441aA7ef330B4e53/info.json new file mode 100644 index 00000000..c1552001 --- /dev/null +++ b/blockchains/ethereum/assets/0x6531f133e6DeeBe7F2dcE5A0441aA7ef330B4e53/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chronobank TIME (EOL)", + "website": "https://chronobank.io", + "description": "TIME is an utility token of Chronobank ecosystem", + "explorer": "https://etherscan.io/token/0x6531f133e6deebe7f2dce5a0441aa7ef330b4e53", + "type": "ERC20", + "symbol": "TIME", + "decimals": 8, + "status": "active", + "id": "0x6531f133e6DeeBe7F2dcE5A0441aA7ef330B4e53" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6531f133e6DeeBe7F2dcE5A0441aA7ef330B4e53/logo.png b/blockchains/ethereum/assets/0x6531f133e6DeeBe7F2dcE5A0441aA7ef330B4e53/logo.png new file mode 100644 index 00000000..6c72ef3a Binary files /dev/null and b/blockchains/ethereum/assets/0x6531f133e6DeeBe7F2dcE5A0441aA7ef330B4e53/logo.png differ diff --git a/blockchains/ethereum/assets/0x653430560bE843C4a3D143d0110e896c2Ab8ac0D/info.json b/blockchains/ethereum/assets/0x653430560bE843C4a3D143d0110e896c2Ab8ac0D/info.json new file mode 100644 index 00000000..248cbd16 --- /dev/null +++ b/blockchains/ethereum/assets/0x653430560bE843C4a3D143d0110e896c2Ab8ac0D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Molecular Future", + "website": "http://molecular.cc", + "description": "Molecular Future is an innovative financial investment service company. The platform includes but not limited to digital currency management, hedge funds, crowd funding, ETF index funds, and mortgage transaction products.", + "explorer": "https://etherscan.io/token/0x653430560bE843C4a3D143d0110e896c2Ab8ac0D", + "type": "ERC20", + "symbol": "MOF", + "decimals": 16, + "status": "active", + "id": "0x653430560bE843C4a3D143d0110e896c2Ab8ac0D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x653430560bE843C4a3D143d0110e896c2Ab8ac0D/logo.png b/blockchains/ethereum/assets/0x653430560bE843C4a3D143d0110e896c2Ab8ac0D/logo.png new file mode 100644 index 00000000..801780d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x653430560bE843C4a3D143d0110e896c2Ab8ac0D/logo.png differ diff --git a/blockchains/ethereum/assets/0x653d2fD3ca2D8795831f5c73afdb28B122BD4C4D/info.json b/blockchains/ethereum/assets/0x653d2fD3ca2D8795831f5c73afdb28B122BD4C4D/info.json new file mode 100644 index 00000000..14f377b6 --- /dev/null +++ b/blockchains/ethereum/assets/0x653d2fD3ca2D8795831f5c73afdb28B122BD4C4D/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R943215", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x653d2fD3ca2D8795831f5c73afdb28B122BD4C4D", + "status": "abandoned", + "id": "0x653d2fD3ca2D8795831f5c73afdb28B122BD4C4D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x653d2fD3ca2D8795831f5c73afdb28B122BD4C4D/logo.png b/blockchains/ethereum/assets/0x653d2fD3ca2D8795831f5c73afdb28B122BD4C4D/logo.png new file mode 100644 index 00000000..32fc5dca Binary files /dev/null and b/blockchains/ethereum/assets/0x653d2fD3ca2D8795831f5c73afdb28B122BD4C4D/logo.png differ diff --git a/blockchains/ethereum/assets/0x6556D2EC4D96Da39CF75cbE50D58fae90079800a/info.json b/blockchains/ethereum/assets/0x6556D2EC4D96Da39CF75cbE50D58fae90079800a/info.json new file mode 100644 index 00000000..9a31ff30 --- /dev/null +++ b/blockchains/ethereum/assets/0x6556D2EC4D96Da39CF75cbE50D58fae90079800a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lukki Operating Token", + "symbol": "LOT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://lukki.io/", + "explorer": "https://etherscan.io/token/0x6556D2EC4D96Da39CF75cbE50D58fae90079800a", + "status": "abandoned", + "id": "0x6556D2EC4D96Da39CF75cbE50D58fae90079800a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6556D2EC4D96Da39CF75cbE50D58fae90079800a/logo.png b/blockchains/ethereum/assets/0x6556D2EC4D96Da39CF75cbE50D58fae90079800a/logo.png new file mode 100644 index 00000000..4d80a61e Binary files /dev/null and b/blockchains/ethereum/assets/0x6556D2EC4D96Da39CF75cbE50D58fae90079800a/logo.png differ diff --git a/blockchains/ethereum/assets/0x657e8C867D8B37dCC18fA4Caead9C45EB088C642/info.json b/blockchains/ethereum/assets/0x657e8C867D8B37dCC18fA4Caead9C45EB088C642/info.json new file mode 100644 index 00000000..0dc9f308 --- /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 00000000..4a995bdc Binary files /dev/null and b/blockchains/ethereum/assets/0x657e8C867D8B37dCC18fA4Caead9C45EB088C642/logo.png differ diff --git a/blockchains/ethereum/assets/0x657f624dd8Eef219E020C456A991A68f3e205a3D/info.json b/blockchains/ethereum/assets/0x657f624dd8Eef219E020C456A991A68f3e205a3D/info.json new file mode 100644 index 00000000..20b0085e --- /dev/null +++ b/blockchains/ethereum/assets/0x657f624dd8Eef219E020C456A991A68f3e205a3D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digital Trader Luxury", + "symbol": "DTL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x657f624dd8Eef219E020C456A991A68f3e205a3D", + "status": "abandoned", + "id": "0x657f624dd8Eef219E020C456A991A68f3e205a3D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x657f624dd8Eef219E020C456A991A68f3e205a3D/logo.png b/blockchains/ethereum/assets/0x657f624dd8Eef219E020C456A991A68f3e205a3D/logo.png new file mode 100644 index 00000000..546f310f Binary files /dev/null and b/blockchains/ethereum/assets/0x657f624dd8Eef219E020C456A991A68f3e205a3D/logo.png differ diff --git a/blockchains/ethereum/assets/0x658D79c02A4829B5efA49254F627287e92458ECD/info.json b/blockchains/ethereum/assets/0x658D79c02A4829B5efA49254F627287e92458ECD/info.json new file mode 100644 index 00000000..1786a3dc --- /dev/null +++ b/blockchains/ethereum/assets/0x658D79c02A4829B5efA49254F627287e92458ECD/info.json @@ -0,0 +1,11 @@ +{ + "name": "M2O coin", + "symbol": "M2O", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x658D79c02A4829B5efA49254F627287e92458ECD", + "status": "abandoned", + "id": "0x658D79c02A4829B5efA49254F627287e92458ECD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x658D79c02A4829B5efA49254F627287e92458ECD/logo.png b/blockchains/ethereum/assets/0x658D79c02A4829B5efA49254F627287e92458ECD/logo.png new file mode 100644 index 00000000..29a0052c Binary files /dev/null and b/blockchains/ethereum/assets/0x658D79c02A4829B5efA49254F627287e92458ECD/logo.png differ diff --git a/blockchains/ethereum/assets/0x659635905891a08f23D2CC7E000Bc452eA5EE074/info.json b/blockchains/ethereum/assets/0x659635905891a08f23D2CC7E000Bc452eA5EE074/info.json new file mode 100644 index 00000000..097b8b72 --- /dev/null +++ b/blockchains/ethereum/assets/0x659635905891a08f23D2CC7E000Bc452eA5EE074/info.json @@ -0,0 +1,11 @@ +{ + "name": "CCTCOIN", + "symbol": "CCTC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://cybercrypto.io/", + "explorer": "https://etherscan.io/token/0x659635905891a08f23D2CC7E000Bc452eA5EE074", + "status": "abandoned", + "id": "0x659635905891a08f23D2CC7E000Bc452eA5EE074" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x659635905891a08f23D2CC7E000Bc452eA5EE074/logo.png b/blockchains/ethereum/assets/0x659635905891a08f23D2CC7E000Bc452eA5EE074/logo.png new file mode 100644 index 00000000..c1312fc7 Binary files /dev/null and b/blockchains/ethereum/assets/0x659635905891a08f23D2CC7E000Bc452eA5EE074/logo.png differ diff --git a/blockchains/ethereum/assets/0x65BCd48666b1c534947bCd1518c42974d07e781d/info.json b/blockchains/ethereum/assets/0x65BCd48666b1c534947bCd1518c42974d07e781d/info.json new file mode 100644 index 00000000..c801bfcc --- /dev/null +++ b/blockchains/ethereum/assets/0x65BCd48666b1c534947bCd1518c42974d07e781d/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R790705", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x65BCd48666b1c534947bCd1518c42974d07e781d", + "status": "abandoned", + "id": "0x65BCd48666b1c534947bCd1518c42974d07e781d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x65BCd48666b1c534947bCd1518c42974d07e781d/logo.png b/blockchains/ethereum/assets/0x65BCd48666b1c534947bCd1518c42974d07e781d/logo.png new file mode 100644 index 00000000..3c548b66 Binary files /dev/null and b/blockchains/ethereum/assets/0x65BCd48666b1c534947bCd1518c42974d07e781d/logo.png differ diff --git a/blockchains/ethereum/assets/0x65C9F3bC25370cD91FD7a1BAdC7352CaE2D8031B/info.json b/blockchains/ethereum/assets/0x65C9F3bC25370cD91FD7a1BAdC7352CaE2D8031B/info.json new file mode 100644 index 00000000..04638a25 --- /dev/null +++ b/blockchains/ethereum/assets/0x65C9F3bC25370cD91FD7a1BAdC7352CaE2D8031B/info.json @@ -0,0 +1,11 @@ +{ + "name": "COZ", + "symbol": "COZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x65C9F3bC25370cD91FD7a1BAdC7352CaE2D8031B", + "status": "abandoned", + "id": "0x65C9F3bC25370cD91FD7a1BAdC7352CaE2D8031B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x65C9F3bC25370cD91FD7a1BAdC7352CaE2D8031B/logo.png b/blockchains/ethereum/assets/0x65C9F3bC25370cD91FD7a1BAdC7352CaE2D8031B/logo.png new file mode 100644 index 00000000..ff2dd191 Binary files /dev/null and b/blockchains/ethereum/assets/0x65C9F3bC25370cD91FD7a1BAdC7352CaE2D8031B/logo.png differ diff --git a/blockchains/ethereum/assets/0x65ED27b8560aA16b12E684620679AeAB531eF84B/info.json b/blockchains/ethereum/assets/0x65ED27b8560aA16b12E684620679AeAB531eF84B/info.json new file mode 100644 index 00000000..f1bc96fc --- /dev/null +++ b/blockchains/ethereum/assets/0x65ED27b8560aA16b12E684620679AeAB531eF84B/info.json @@ -0,0 +1,11 @@ +{ + "name": "69 c", + "symbol": "COIN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x65ED27b8560aA16b12E684620679AeAB531eF84B", + "status": "abandoned", + "id": "0x65ED27b8560aA16b12E684620679AeAB531eF84B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x65ED27b8560aA16b12E684620679AeAB531eF84B/logo.png b/blockchains/ethereum/assets/0x65ED27b8560aA16b12E684620679AeAB531eF84B/logo.png new file mode 100644 index 00000000..7572fafd Binary files /dev/null and b/blockchains/ethereum/assets/0x65ED27b8560aA16b12E684620679AeAB531eF84B/logo.png differ diff --git a/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/info.json b/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/info.json new file mode 100644 index 00000000..05b9b762 --- /dev/null +++ b/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/info.json @@ -0,0 +1,33 @@ +{ + "name": "Multichain", + "type": "ERC20", + "symbol": "MULTI", + "decimals": 18, + "website": "https://multichain.org/", + "description": "Multichain is a cross-chain router protocol (CRP), to be the ultimate router for Web3.", + "explorer": "https://etherscan.io/token/0x65ef703f5594d2573eb71aaf55bc0cb548492df4", + "status": "active", + "id": "0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4", + "links": [ + { + "name": "x", + "url": "https://x.com/multichainorg" + }, + { + "name": "github", + "url": "https://github.com/anyswap" + }, + { + "name": "telegram", + "url": "https://t.me/anyswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multichain/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/multichain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/logo.png b/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/logo.png new file mode 100644 index 00000000..c0623a5b Binary files /dev/null and b/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/logo.png differ diff --git a/blockchains/ethereum/assets/0x65cCD72c0813CE6f2703593B633202a0F3Ca6a0c/info.json b/blockchains/ethereum/assets/0x65cCD72c0813CE6f2703593B633202a0F3Ca6a0c/info.json new file mode 100644 index 00000000..4ac0c4ed --- /dev/null +++ b/blockchains/ethereum/assets/0x65cCD72c0813CE6f2703593B633202a0F3Ca6a0c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nestree", + "symbol": "EGG", + "type": "ERC20", + "decimals": 18, + "description": "Nestree Community Messenger.", + "website": "https://www.nestree.io/", + "explorer": "https://etherscan.io/token/0x65cCD72c0813CE6f2703593B633202a0F3Ca6a0c", + "status": "active", + "id": "0x65cCD72c0813CE6f2703593B633202a0F3Ca6a0c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x65cCD72c0813CE6f2703593B633202a0F3Ca6a0c/logo.png b/blockchains/ethereum/assets/0x65cCD72c0813CE6f2703593B633202a0F3Ca6a0c/logo.png new file mode 100644 index 00000000..cfb8bfa2 Binary files /dev/null and b/blockchains/ethereum/assets/0x65cCD72c0813CE6f2703593B633202a0F3Ca6a0c/logo.png differ diff --git a/blockchains/ethereum/assets/0x65d9bC970aA9B2413027fA339F7f179B3F3f2604/info.json b/blockchains/ethereum/assets/0x65d9bC970aA9B2413027fA339F7f179B3F3f2604/info.json new file mode 100644 index 00000000..2d53325b --- /dev/null +++ b/blockchains/ethereum/assets/0x65d9bC970aA9B2413027fA339F7f179B3F3f2604/info.json @@ -0,0 +1,22 @@ +{ + "name": "KUN", + "website": "https://qian.finance/mining", + "description": "KUN is the governance token of the QIAN stablecoin protocol. It is used to vote on QIAN governance and to maintain QUSD price stability.", + "explorer": "https://etherscan.io/token/0x65d9bC970aA9B2413027fA339F7f179B3F3f2604", + "audit_report": "https://qian.finance/PeckShield-Audit-Report-QIAN2-v1.0.pdf", + "type": "ERC20", + "symbol": "KUN", + "decimals": 18, + "status": "active", + "id": "0x65d9bC970aA9B2413027fA339F7f179B3F3f2604", + "links": [ + { + "name": "whitepaper", + "url": "https://qian.finance/qian_whitepaper_zh.pdf" + }, + { + "name": "github", + "url": "https://github.com/QIAN-Protocol/QIAN" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x65d9bC970aA9B2413027fA339F7f179B3F3f2604/logo.png b/blockchains/ethereum/assets/0x65d9bC970aA9B2413027fA339F7f179B3F3f2604/logo.png new file mode 100644 index 00000000..195a3271 Binary files /dev/null and b/blockchains/ethereum/assets/0x65d9bC970aA9B2413027fA339F7f179B3F3f2604/logo.png differ diff --git a/blockchains/ethereum/assets/0x65ed651b23B13268C3F5971372BE770Bde1b0A6F/info.json b/blockchains/ethereum/assets/0x65ed651b23B13268C3F5971372BE770Bde1b0A6F/info.json new file mode 100644 index 00000000..dae7a328 --- /dev/null +++ b/blockchains/ethereum/assets/0x65ed651b23B13268C3F5971372BE770Bde1b0A6F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Basis Neuro System Token", + "symbol": "BNST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x65ed651b23B13268C3F5971372BE770Bde1b0A6F", + "status": "abandoned", + "id": "0x65ed651b23B13268C3F5971372BE770Bde1b0A6F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x65ed651b23B13268C3F5971372BE770Bde1b0A6F/logo.png b/blockchains/ethereum/assets/0x65ed651b23B13268C3F5971372BE770Bde1b0A6F/logo.png new file mode 100644 index 00000000..c1a3a922 Binary files /dev/null and b/blockchains/ethereum/assets/0x65ed651b23B13268C3F5971372BE770Bde1b0A6F/logo.png differ diff --git a/blockchains/ethereum/assets/0x660AD693D77FB33325aCdf0250E5417d929F8d7d/info.json b/blockchains/ethereum/assets/0x660AD693D77FB33325aCdf0250E5417d929F8d7d/info.json new file mode 100644 index 00000000..2347a4b9 --- /dev/null +++ b/blockchains/ethereum/assets/0x660AD693D77FB33325aCdf0250E5417d929F8d7d/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniFire", + "symbol": "uFire", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x660AD693D77FB33325aCdf0250E5417d929F8d7d", + "status": "abandoned", + "id": "0x660AD693D77FB33325aCdf0250E5417d929F8d7d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x660AD693D77FB33325aCdf0250E5417d929F8d7d/logo.png b/blockchains/ethereum/assets/0x660AD693D77FB33325aCdf0250E5417d929F8d7d/logo.png new file mode 100644 index 00000000..a2e2e88e Binary files /dev/null and b/blockchains/ethereum/assets/0x660AD693D77FB33325aCdf0250E5417d929F8d7d/logo.png differ diff --git a/blockchains/ethereum/assets/0x660Fc35032bbbB04A2bd6c39C7c29D6214e1BF75/info.json b/blockchains/ethereum/assets/0x660Fc35032bbbB04A2bd6c39C7c29D6214e1BF75/info.json new file mode 100644 index 00000000..e5496f71 --- /dev/null +++ b/blockchains/ethereum/assets/0x660Fc35032bbbB04A2bd6c39C7c29D6214e1BF75/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C476246", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x660Fc35032bbbB04A2bd6c39C7c29D6214e1BF75", + "status": "abandoned", + "id": "0x660Fc35032bbbB04A2bd6c39C7c29D6214e1BF75" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x660Fc35032bbbB04A2bd6c39C7c29D6214e1BF75/logo.png b/blockchains/ethereum/assets/0x660Fc35032bbbB04A2bd6c39C7c29D6214e1BF75/logo.png new file mode 100644 index 00000000..11cb71d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x660Fc35032bbbB04A2bd6c39C7c29D6214e1BF75/logo.png differ diff --git a/blockchains/ethereum/assets/0x660e71483785f66133548B10f6926dC332b06e61/info.json b/blockchains/ethereum/assets/0x660e71483785f66133548B10f6926dC332b06e61/info.json new file mode 100644 index 00000000..784fc1b0 --- /dev/null +++ b/blockchains/ethereum/assets/0x660e71483785f66133548B10f6926dC332b06e61/info.json @@ -0,0 +1,11 @@ +{ + "name": "Adelphoi", + "symbol": "ADL", + "type": "ERC20", + "decimals": 18, + "description": "Adel is a cryptocurrency system and global community that is self-sustaining and operates within its own macroeconomic ecosystem. This ecosystem will maintain its fiat independence through the use of the Adelphoi ($ADL) cryptocurrency coin.", + "website": "https://www.adelphoi.io/", + "explorer": "https://etherscan.io/token/0x660e71483785f66133548B10f6926dC332b06e61", + "status": "active", + "id": "0x660e71483785f66133548B10f6926dC332b06e61" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x660e71483785f66133548B10f6926dC332b06e61/logo.png b/blockchains/ethereum/assets/0x660e71483785f66133548B10f6926dC332b06e61/logo.png new file mode 100644 index 00000000..008266be Binary files /dev/null and b/blockchains/ethereum/assets/0x660e71483785f66133548B10f6926dC332b06e61/logo.png differ diff --git a/blockchains/ethereum/assets/0x6613876533Bc69b9DD628611a4D5dD2CCD8C7638/info.json b/blockchains/ethereum/assets/0x6613876533Bc69b9DD628611a4D5dD2CCD8C7638/info.json new file mode 100644 index 00000000..9b35a2b3 --- /dev/null +++ b/blockchains/ethereum/assets/0x6613876533Bc69b9DD628611a4D5dD2CCD8C7638/info.json @@ -0,0 +1,11 @@ +{ + "name": "Toqqn", + "symbol": "TQN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6613876533Bc69b9DD628611a4D5dD2CCD8C7638", + "status": "abandoned", + "id": "0x6613876533Bc69b9DD628611a4D5dD2CCD8C7638" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6613876533Bc69b9DD628611a4D5dD2CCD8C7638/logo.png b/blockchains/ethereum/assets/0x6613876533Bc69b9DD628611a4D5dD2CCD8C7638/logo.png new file mode 100644 index 00000000..2a6d7204 Binary files /dev/null and b/blockchains/ethereum/assets/0x6613876533Bc69b9DD628611a4D5dD2CCD8C7638/logo.png differ diff --git a/blockchains/ethereum/assets/0x66186008C1050627F979d464eABb258860563dbE/info.json b/blockchains/ethereum/assets/0x66186008C1050627F979d464eABb258860563dbE/info.json new file mode 100644 index 00000000..15923945 --- /dev/null +++ b/blockchains/ethereum/assets/0x66186008C1050627F979d464eABb258860563dbE/info.json @@ -0,0 +1,11 @@ +{ + "name": "MediShares Token", + "symbol": "MDS", + "type": "ERC20", + "decimals": 18, + "description": "Mutual DAO System is a Ethereum based, decentralized, open-source mutual insurance marketplace.", + "website": "http://www.medishares.org/", + "explorer": "https://etherscan.io/token/0x66186008C1050627F979d464eABb258860563dbE", + "status": "active", + "id": "0x66186008C1050627F979d464eABb258860563dbE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66186008C1050627F979d464eABb258860563dbE/logo.png b/blockchains/ethereum/assets/0x66186008C1050627F979d464eABb258860563dbE/logo.png new file mode 100755 index 00000000..415eaa6b Binary files /dev/null and b/blockchains/ethereum/assets/0x66186008C1050627F979d464eABb258860563dbE/logo.png differ diff --git a/blockchains/ethereum/assets/0x661Ab0Ed68000491d98C796146bcF28c20d7c559/info.json b/blockchains/ethereum/assets/0x661Ab0Ed68000491d98C796146bcF28c20d7c559/info.json new file mode 100644 index 00000000..4d7cd414 --- /dev/null +++ b/blockchains/ethereum/assets/0x661Ab0Ed68000491d98C796146bcF28c20d7c559/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shadows", + "symbol": "DOWS", + "type": "ERC20", + "decimals": 18, + "description": "Shadows is a hub for issuing, trading, lending and borrowing synthetic assets.", + "website": "http://shadows.link/", + "explorer": "https://etherscan.io/token/0x661ab0ed68000491d98c796146bcf28c20d7c559", + "status": "active", + "id": "0x661Ab0Ed68000491d98C796146bcF28c20d7c559" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x661Ab0Ed68000491d98C796146bcF28c20d7c559/logo.png b/blockchains/ethereum/assets/0x661Ab0Ed68000491d98C796146bcF28c20d7c559/logo.png new file mode 100644 index 00000000..0344c1c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x661Ab0Ed68000491d98C796146bcF28c20d7c559/logo.png differ diff --git a/blockchains/ethereum/assets/0x662F5Ed82f2FF613a35c5Dd2Cd30048e1330aC93/info.json b/blockchains/ethereum/assets/0x662F5Ed82f2FF613a35c5Dd2Cd30048e1330aC93/info.json new file mode 100644 index 00000000..cda446f0 --- /dev/null +++ b/blockchains/ethereum/assets/0x662F5Ed82f2FF613a35c5Dd2Cd30048e1330aC93/info.json @@ -0,0 +1,11 @@ +{ + "name": "SG30013(ACE)", + "symbol": "ACE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x662F5Ed82f2FF613a35c5Dd2Cd30048e1330aC93", + "status": "abandoned", + "id": "0x662F5Ed82f2FF613a35c5Dd2Cd30048e1330aC93" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x662F5Ed82f2FF613a35c5Dd2Cd30048e1330aC93/logo.png b/blockchains/ethereum/assets/0x662F5Ed82f2FF613a35c5Dd2Cd30048e1330aC93/logo.png new file mode 100644 index 00000000..234c5bb8 Binary files /dev/null and b/blockchains/ethereum/assets/0x662F5Ed82f2FF613a35c5Dd2Cd30048e1330aC93/logo.png differ diff --git a/blockchains/ethereum/assets/0x662aBcAd0b7f345AB7FfB1b1fbb9Df7894f18e66/info.json b/blockchains/ethereum/assets/0x662aBcAd0b7f345AB7FfB1b1fbb9Df7894f18e66/info.json new file mode 100644 index 00000000..272abca4 --- /dev/null +++ b/blockchains/ethereum/assets/0x662aBcAd0b7f345AB7FfB1b1fbb9Df7894f18e66/info.json @@ -0,0 +1,11 @@ +{ + "name": "CarTaxi", + "symbol": "CTX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x662aBcAd0b7f345AB7FfB1b1fbb9Df7894f18e66", + "status": "abandoned", + "id": "0x662aBcAd0b7f345AB7FfB1b1fbb9Df7894f18e66" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x662aBcAd0b7f345AB7FfB1b1fbb9Df7894f18e66/logo.png b/blockchains/ethereum/assets/0x662aBcAd0b7f345AB7FfB1b1fbb9Df7894f18e66/logo.png new file mode 100755 index 00000000..f8f5d332 Binary files /dev/null and b/blockchains/ethereum/assets/0x662aBcAd0b7f345AB7FfB1b1fbb9Df7894f18e66/logo.png differ diff --git a/blockchains/ethereum/assets/0x663085225320c7Afae10f3f1982EAA7324eA55DA/info.json b/blockchains/ethereum/assets/0x663085225320c7Afae10f3f1982EAA7324eA55DA/info.json new file mode 100644 index 00000000..328d8b59 --- /dev/null +++ b/blockchains/ethereum/assets/0x663085225320c7Afae10f3f1982EAA7324eA55DA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Qualified Quality Block ", + "symbol": "QQB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x663085225320c7Afae10f3f1982EAA7324eA55DA", + "status": "abandoned", + "id": "0x663085225320c7Afae10f3f1982EAA7324eA55DA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x663085225320c7Afae10f3f1982EAA7324eA55DA/logo.png b/blockchains/ethereum/assets/0x663085225320c7Afae10f3f1982EAA7324eA55DA/logo.png new file mode 100644 index 00000000..48fdac44 Binary files /dev/null and b/blockchains/ethereum/assets/0x663085225320c7Afae10f3f1982EAA7324eA55DA/logo.png differ diff --git a/blockchains/ethereum/assets/0x6634437f057e89198aAe001A7893dE7D21F7f619/info.json b/blockchains/ethereum/assets/0x6634437f057e89198aAe001A7893dE7D21F7f619/info.json new file mode 100644 index 00000000..f6a4640f --- /dev/null +++ b/blockchains/ethereum/assets/0x6634437f057e89198aAe001A7893dE7D21F7f619/info.json @@ -0,0 +1,11 @@ +{ + "name": "WineChain", + "symbol": "WID", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6634437f057e89198aAe001A7893dE7D21F7f619", + "status": "abandoned", + "id": "0x6634437f057e89198aAe001A7893dE7D21F7f619" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6634437f057e89198aAe001A7893dE7D21F7f619/logo.png b/blockchains/ethereum/assets/0x6634437f057e89198aAe001A7893dE7D21F7f619/logo.png new file mode 100644 index 00000000..c47ad53b Binary files /dev/null and b/blockchains/ethereum/assets/0x6634437f057e89198aAe001A7893dE7D21F7f619/logo.png differ diff --git a/blockchains/ethereum/assets/0x66446Ab822206ce050BccEc8fdCaD37a584ebdf1/info.json b/blockchains/ethereum/assets/0x66446Ab822206ce050BccEc8fdCaD37a584ebdf1/info.json new file mode 100644 index 00000000..b11bcf23 --- /dev/null +++ b/blockchains/ethereum/assets/0x66446Ab822206ce050BccEc8fdCaD37a584ebdf1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Robries", + "symbol": "RBC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x66446Ab822206ce050BccEc8fdCaD37a584ebdf1", + "status": "abandoned", + "id": "0x66446Ab822206ce050BccEc8fdCaD37a584ebdf1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66446Ab822206ce050BccEc8fdCaD37a584ebdf1/logo.png b/blockchains/ethereum/assets/0x66446Ab822206ce050BccEc8fdCaD37a584ebdf1/logo.png new file mode 100644 index 00000000..c20de1ca Binary files /dev/null and b/blockchains/ethereum/assets/0x66446Ab822206ce050BccEc8fdCaD37a584ebdf1/logo.png differ diff --git a/blockchains/ethereum/assets/0x6667A56d8fCB35448eE8514936e6D6c4CcC86E97/info.json b/blockchains/ethereum/assets/0x6667A56d8fCB35448eE8514936e6D6c4CcC86E97/info.json new file mode 100644 index 00000000..805fa418 --- /dev/null +++ b/blockchains/ethereum/assets/0x6667A56d8fCB35448eE8514936e6D6c4CcC86E97/info.json @@ -0,0 +1,11 @@ +{ + "name": "Globfone Coin", + "symbol": "GFC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6667A56d8fCB35448eE8514936e6D6c4CcC86E97", + "status": "abandoned", + "id": "0x6667A56d8fCB35448eE8514936e6D6c4CcC86E97" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6667A56d8fCB35448eE8514936e6D6c4CcC86E97/logo.png b/blockchains/ethereum/assets/0x6667A56d8fCB35448eE8514936e6D6c4CcC86E97/logo.png new file mode 100755 index 00000000..53a46478 Binary files /dev/null and b/blockchains/ethereum/assets/0x6667A56d8fCB35448eE8514936e6D6c4CcC86E97/logo.png differ diff --git a/blockchains/ethereum/assets/0x666d875C600AA06AC1cf15641361dEC3b00432Ef/info.json b/blockchains/ethereum/assets/0x666d875C600AA06AC1cf15641361dEC3b00432Ef/info.json new file mode 100644 index 00000000..9d3b6dcc --- /dev/null +++ b/blockchains/ethereum/assets/0x666d875C600AA06AC1cf15641361dEC3b00432Ef/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTSE Token", + "website": "https://btse.com", + "description": "BTSE utility token carefully designed to augment the user experience on the exchange and within the BTSE ecosystem.", + "explorer": "https://etherscan.io/token/0x666d875C600AA06AC1cf15641361dEC3b00432Ef", + "type": "ERC20", + "symbol": "BTSE", + "decimals": 8, + "status": "active", + "id": "0x666d875C600AA06AC1cf15641361dEC3b00432Ef" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x666d875C600AA06AC1cf15641361dEC3b00432Ef/logo.png b/blockchains/ethereum/assets/0x666d875C600AA06AC1cf15641361dEC3b00432Ef/logo.png new file mode 100644 index 00000000..45820619 Binary files /dev/null and b/blockchains/ethereum/assets/0x666d875C600AA06AC1cf15641361dEC3b00432Ef/logo.png differ diff --git a/blockchains/ethereum/assets/0x667088b212ce3d06a1b553a7221E1fD19000d9aF/info.json b/blockchains/ethereum/assets/0x667088b212ce3d06a1b553a7221E1fD19000d9aF/info.json new file mode 100644 index 00000000..9fa60d3c --- /dev/null +++ b/blockchains/ethereum/assets/0x667088b212ce3d06a1b553a7221E1fD19000d9aF/info.json @@ -0,0 +1,11 @@ +{ + "name": "WINGS", + "symbol": "WINGS", + "type": "ERC20", + "decimals": 18, + "description": "WINGS combines several concepts, ranging from attention rewards, forecasting markets, smart contracts, governance models and federated funds security.", + "website": "https://wings.ai/", + "explorer": "https://etherscan.io/token/0x667088b212ce3d06a1b553a7221E1fD19000d9aF", + "status": "active", + "id": "0x667088b212ce3d06a1b553a7221E1fD19000d9aF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x667088b212ce3d06a1b553a7221E1fD19000d9aF/logo.png b/blockchains/ethereum/assets/0x667088b212ce3d06a1b553a7221E1fD19000d9aF/logo.png new file mode 100755 index 00000000..d851b459 Binary files /dev/null and b/blockchains/ethereum/assets/0x667088b212ce3d06a1b553a7221E1fD19000d9aF/logo.png differ diff --git a/blockchains/ethereum/assets/0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5/info.json b/blockchains/ethereum/assets/0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5/info.json new file mode 100644 index 00000000..94f9a2a7 --- /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 00000000..61be5c53 Binary files /dev/null and b/blockchains/ethereum/assets/0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5/logo.png differ diff --git a/blockchains/ethereum/assets/0x668921a4d40ca5204B5F2A0dbF8a88d842a0d62F/info.json b/blockchains/ethereum/assets/0x668921a4d40ca5204B5F2A0dbF8a88d842a0d62F/info.json new file mode 100644 index 00000000..4cd30bef --- /dev/null +++ b/blockchains/ethereum/assets/0x668921a4d40ca5204B5F2A0dbF8a88d842a0d62F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Semain", + "symbol": "SMA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x668921a4d40ca5204B5F2A0dbF8a88d842a0d62F", + "status": "abandoned", + "id": "0x668921a4d40ca5204B5F2A0dbF8a88d842a0d62F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x668921a4d40ca5204B5F2A0dbF8a88d842a0d62F/logo.png b/blockchains/ethereum/assets/0x668921a4d40ca5204B5F2A0dbF8a88d842a0d62F/logo.png new file mode 100755 index 00000000..614faeae Binary files /dev/null and b/blockchains/ethereum/assets/0x668921a4d40ca5204B5F2A0dbF8a88d842a0d62F/logo.png differ diff --git a/blockchains/ethereum/assets/0x668C50B1c7f46EFFBE3f242687071d7908AAB00A/info.json b/blockchains/ethereum/assets/0x668C50B1c7f46EFFBE3f242687071d7908AAB00A/info.json new file mode 100644 index 00000000..83bc144b --- /dev/null +++ b/blockchains/ethereum/assets/0x668C50B1c7f46EFFBE3f242687071d7908AAB00A/info.json @@ -0,0 +1,21 @@ +{ + "name": "CoShi Inu", + "website": "https://corgishiba.dog/", + "description": "CoShi Inu is a MEME coin inspired by Shiba Inu and Doge", + "explorer": "https://etherscan.io/token/0x668C50B1c7f46EFFBE3f242687071d7908AAB00A", + "type": "ERC20", + "symbol": "CoShi", + "decimals": 9, + "status": "active", + "id": "0x668C50B1c7f46EFFBE3f242687071d7908AAB00A", + "links": [ + { + "name": "x", + "url": "https://x.com/ShibaCorgiDog" + }, + { + "name": "telegram", + "url": "https://t.me/corgishibadog" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x668C50B1c7f46EFFBE3f242687071d7908AAB00A/logo.png b/blockchains/ethereum/assets/0x668C50B1c7f46EFFBE3f242687071d7908AAB00A/logo.png new file mode 100644 index 00000000..efac94c9 Binary files /dev/null and b/blockchains/ethereum/assets/0x668C50B1c7f46EFFBE3f242687071d7908AAB00A/logo.png differ diff --git a/blockchains/ethereum/assets/0x668DbF100635f593A3847c0bDaF21f0a09380188/info.json b/blockchains/ethereum/assets/0x668DbF100635f593A3847c0bDaF21f0a09380188/info.json new file mode 100644 index 00000000..3f960ea6 --- /dev/null +++ b/blockchains/ethereum/assets/0x668DbF100635f593A3847c0bDaF21f0a09380188/info.json @@ -0,0 +1,11 @@ +{ + "name": "BNSD Finance", + "website": "https://bns.finance", + "description": "BNSD is a DeFI token to augment the returns on your existing tokens by generating high yields on it.", + "explorer": "https://etherscan.io/token/0x668DbF100635f593A3847c0bDaF21f0a09380188", + "type": "ERC20", + "symbol": "BNSD", + "decimals": 18, + "status": "active", + "id": "0x668DbF100635f593A3847c0bDaF21f0a09380188" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x668DbF100635f593A3847c0bDaF21f0a09380188/logo.png b/blockchains/ethereum/assets/0x668DbF100635f593A3847c0bDaF21f0a09380188/logo.png new file mode 100644 index 00000000..0ba1609a Binary files /dev/null and b/blockchains/ethereum/assets/0x668DbF100635f593A3847c0bDaF21f0a09380188/logo.png differ diff --git a/blockchains/ethereum/assets/0x668cBDdAf840d324Fdc974758C32A6735d7Aeaea/info.json b/blockchains/ethereum/assets/0x668cBDdAf840d324Fdc974758C32A6735d7Aeaea/info.json new file mode 100644 index 00000000..9f84f1fc --- /dev/null +++ b/blockchains/ethereum/assets/0x668cBDdAf840d324Fdc974758C32A6735d7Aeaea/info.json @@ -0,0 +1,11 @@ +{ + "name": "25% of MindAd Project", + "symbol": "MindAd", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x668cBDdAf840d324Fdc974758C32A6735d7Aeaea", + "status": "abandoned", + "id": "0x668cBDdAf840d324Fdc974758C32A6735d7Aeaea" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x668cBDdAf840d324Fdc974758C32A6735d7Aeaea/logo.png b/blockchains/ethereum/assets/0x668cBDdAf840d324Fdc974758C32A6735d7Aeaea/logo.png new file mode 100644 index 00000000..31dcf2de Binary files /dev/null and b/blockchains/ethereum/assets/0x668cBDdAf840d324Fdc974758C32A6735d7Aeaea/logo.png differ diff --git a/blockchains/ethereum/assets/0x66908813cd7676269494B2c6F6DBAB8B4f9E95df/info.json b/blockchains/ethereum/assets/0x66908813cd7676269494B2c6F6DBAB8B4f9E95df/info.json new file mode 100644 index 00000000..b2292b39 --- /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 00000000..3997bb79 Binary files /dev/null and b/blockchains/ethereum/assets/0x66908813cd7676269494B2c6F6DBAB8B4f9E95df/logo.png differ diff --git a/blockchains/ethereum/assets/0x66969Da31cCCaB81366524DE642A9fc764532C26/info.json b/blockchains/ethereum/assets/0x66969Da31cCCaB81366524DE642A9fc764532C26/info.json new file mode 100644 index 00000000..a73261e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x66969Da31cCCaB81366524DE642A9fc764532C26/info.json @@ -0,0 +1,11 @@ +{ + "name": "Culture Travel Currency", + "symbol": "CTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x66969Da31cCCaB81366524DE642A9fc764532C26", + "status": "abandoned", + "id": "0x66969Da31cCCaB81366524DE642A9fc764532C26" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66969Da31cCCaB81366524DE642A9fc764532C26/logo.png b/blockchains/ethereum/assets/0x66969Da31cCCaB81366524DE642A9fc764532C26/logo.png new file mode 100644 index 00000000..eb07cb01 Binary files /dev/null and b/blockchains/ethereum/assets/0x66969Da31cCCaB81366524DE642A9fc764532C26/logo.png differ diff --git a/blockchains/ethereum/assets/0x66980DbFF5476f2D09A9330821E8f6B2572C4B1a/info.json b/blockchains/ethereum/assets/0x66980DbFF5476f2D09A9330821E8f6B2572C4B1a/info.json new file mode 100644 index 00000000..4a3ca984 --- /dev/null +++ b/blockchains/ethereum/assets/0x66980DbFF5476f2D09A9330821E8f6B2572C4B1a/info.json @@ -0,0 +1,11 @@ +{ + "name": "TiValue", + "symbol": "TV", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x66980DbFF5476f2D09A9330821E8f6B2572C4B1a", + "status": "abandoned", + "id": "0x66980DbFF5476f2D09A9330821E8f6B2572C4B1a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66980DbFF5476f2D09A9330821E8f6B2572C4B1a/logo.png b/blockchains/ethereum/assets/0x66980DbFF5476f2D09A9330821E8f6B2572C4B1a/logo.png new file mode 100644 index 00000000..1d94cc37 Binary files /dev/null and b/blockchains/ethereum/assets/0x66980DbFF5476f2D09A9330821E8f6B2572C4B1a/logo.png differ diff --git a/blockchains/ethereum/assets/0x66B3037aa8Dd64c3eF1AEE13a4D1F2509F672D1C/info.json b/blockchains/ethereum/assets/0x66B3037aa8Dd64c3eF1AEE13a4D1F2509F672D1C/info.json new file mode 100644 index 00000000..d2c75473 --- /dev/null +++ b/blockchains/ethereum/assets/0x66B3037aa8Dd64c3eF1AEE13a4D1F2509F672D1C/info.json @@ -0,0 +1,11 @@ +{ + "name": "NAP", + "website": "https://zzz.finance", + "description": "NAP is the fuel token used for DeFI products governed by ZZZ.finance ", + "explorer": "https://etherscan.io/token/0x66B3037aa8Dd64c3eF1AEE13a4D1F2509F672D1C", + "type": "ERC20", + "symbol": "NAP", + "decimals": 18, + "status": "active", + "id": "0x66B3037aa8Dd64c3eF1AEE13a4D1F2509F672D1C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66B3037aa8Dd64c3eF1AEE13a4D1F2509F672D1C/logo.png b/blockchains/ethereum/assets/0x66B3037aa8Dd64c3eF1AEE13a4D1F2509F672D1C/logo.png new file mode 100644 index 00000000..5cb42594 Binary files /dev/null and b/blockchains/ethereum/assets/0x66B3037aa8Dd64c3eF1AEE13a4D1F2509F672D1C/logo.png differ diff --git a/blockchains/ethereum/assets/0x66BaD545596fb17a0B4ebDC003a85dEF10E8F6Ae/info.json b/blockchains/ethereum/assets/0x66BaD545596fb17a0B4ebDC003a85dEF10E8F6Ae/info.json new file mode 100644 index 00000000..f8a7a79a --- /dev/null +++ b/blockchains/ethereum/assets/0x66BaD545596fb17a0B4ebDC003a85dEF10E8F6Ae/info.json @@ -0,0 +1,11 @@ +{ + "name": "WIKI Token", + "symbol": "WIKI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://wikitoken.bitcoinwiki.org/", + "explorer": "https://etherscan.io/token/0x66BaD545596fb17a0B4ebDC003a85dEF10E8F6Ae", + "status": "abandoned", + "id": "0x66BaD545596fb17a0B4ebDC003a85dEF10E8F6Ae" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66BaD545596fb17a0B4ebDC003a85dEF10E8F6Ae/logo.png b/blockchains/ethereum/assets/0x66BaD545596fb17a0B4ebDC003a85dEF10E8F6Ae/logo.png new file mode 100644 index 00000000..9d3ddb31 Binary files /dev/null and b/blockchains/ethereum/assets/0x66BaD545596fb17a0B4ebDC003a85dEF10E8F6Ae/logo.png differ diff --git a/blockchains/ethereum/assets/0x66E0a4E0BaF97e3883296d4E2aaFD484FE8Cd783/info.json b/blockchains/ethereum/assets/0x66E0a4E0BaF97e3883296d4E2aaFD484FE8Cd783/info.json new file mode 100644 index 00000000..bfd01b96 --- /dev/null +++ b/blockchains/ethereum/assets/0x66E0a4E0BaF97e3883296d4E2aaFD484FE8Cd783/info.json @@ -0,0 +1,11 @@ +{ + "name": "YAM.Finance", + "symbol": "YAM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x66E0a4E0BaF97e3883296d4E2aaFD484FE8Cd783", + "status": "abandoned", + "id": "0x66E0a4E0BaF97e3883296d4E2aaFD484FE8Cd783" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66E0a4E0BaF97e3883296d4E2aaFD484FE8Cd783/logo.png b/blockchains/ethereum/assets/0x66E0a4E0BaF97e3883296d4E2aaFD484FE8Cd783/logo.png new file mode 100644 index 00000000..68d7b1ce Binary files /dev/null and b/blockchains/ethereum/assets/0x66E0a4E0BaF97e3883296d4E2aaFD484FE8Cd783/logo.png differ diff --git a/blockchains/ethereum/assets/0x66E2e867B93FBE69f84387427d08861285A9a65a/info.json b/blockchains/ethereum/assets/0x66E2e867B93FBE69f84387427d08861285A9a65a/info.json new file mode 100644 index 00000000..68ac6a7e --- /dev/null +++ b/blockchains/ethereum/assets/0x66E2e867B93FBE69f84387427d08861285A9a65a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Atp", + "symbol": "Atp", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x66E2e867B93FBE69f84387427d08861285A9a65a", + "status": "abandoned", + "id": "0x66E2e867B93FBE69f84387427d08861285A9a65a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66E2e867B93FBE69f84387427d08861285A9a65a/logo.png b/blockchains/ethereum/assets/0x66E2e867B93FBE69f84387427d08861285A9a65a/logo.png new file mode 100644 index 00000000..732a0224 Binary files /dev/null and b/blockchains/ethereum/assets/0x66E2e867B93FBE69f84387427d08861285A9a65a/logo.png differ diff --git a/blockchains/ethereum/assets/0x66a0f676479Cee1d7373f3DC2e2952778BfF5bd6/info.json b/blockchains/ethereum/assets/0x66a0f676479Cee1d7373f3DC2e2952778BfF5bd6/info.json new file mode 100644 index 00000000..7b6f6c3f --- /dev/null +++ b/blockchains/ethereum/assets/0x66a0f676479Cee1d7373f3DC2e2952778BfF5bd6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wise Token", + "website": "https://wisetoken.net/", + "description": "Wise is an innovative and highly secure DeFi ecosystem that offers a full suite of financial tools. 100% of ecosystem profits go to token holders.", + "explorer": "https://etherscan.io/token/0x66a0f676479cee1d7373f3dc2e2952778bff5bd6", + "type": "ERC20", + "symbol": "WISE", + "decimals": 18, + "status": "active", + "id": "0x66a0f676479Cee1d7373f3DC2e2952778BfF5bd6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66a0f676479Cee1d7373f3DC2e2952778BfF5bd6/logo.png b/blockchains/ethereum/assets/0x66a0f676479Cee1d7373f3DC2e2952778BfF5bd6/logo.png new file mode 100644 index 00000000..cace932e Binary files /dev/null and b/blockchains/ethereum/assets/0x66a0f676479Cee1d7373f3DC2e2952778BfF5bd6/logo.png differ diff --git a/blockchains/ethereum/assets/0x66b213c6C76C578C58973184bB09aCB6e6F99D7C/info.json b/blockchains/ethereum/assets/0x66b213c6C76C578C58973184bB09aCB6e6F99D7C/info.json new file mode 100644 index 00000000..fefe0570 --- /dev/null +++ b/blockchains/ethereum/assets/0x66b213c6C76C578C58973184bB09aCB6e6F99D7C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Defi Solution Token", + "symbol": "DST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x66b213c6C76C578C58973184bB09aCB6e6F99D7C", + "status": "abandoned", + "id": "0x66b213c6C76C578C58973184bB09aCB6e6F99D7C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66b213c6C76C578C58973184bB09aCB6e6F99D7C/logo.png b/blockchains/ethereum/assets/0x66b213c6C76C578C58973184bB09aCB6e6F99D7C/logo.png new file mode 100644 index 00000000..001f4d57 Binary files /dev/null and b/blockchains/ethereum/assets/0x66b213c6C76C578C58973184bB09aCB6e6F99D7C/logo.png differ diff --git a/blockchains/ethereum/assets/0x66b5228CfD34d9f4d9f03188d67816286C7c0b74/info.json b/blockchains/ethereum/assets/0x66b5228CfD34d9f4d9f03188d67816286C7c0b74/info.json new file mode 100644 index 00000000..16dc71f7 --- /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 00000000..ba31240e Binary files /dev/null and b/blockchains/ethereum/assets/0x66b5228CfD34d9f4d9f03188d67816286C7c0b74/logo.png differ diff --git a/blockchains/ethereum/assets/0x66d9c4D19b4C8e23a54C6dc4CeEd141f66b8111C/info.json b/blockchains/ethereum/assets/0x66d9c4D19b4C8e23a54C6dc4CeEd141f66b8111C/info.json new file mode 100644 index 00000000..ebf0a4fa --- /dev/null +++ b/blockchains/ethereum/assets/0x66d9c4D19b4C8e23a54C6dc4CeEd141f66b8111C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fountain 2", + "symbol": "FTN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://fountainhub.com/en/index.html", + "explorer": "https://etherscan.io/token/0x66d9c4D19b4C8e23a54C6dc4CeEd141f66b8111C", + "status": "abandoned", + "id": "0x66d9c4D19b4C8e23a54C6dc4CeEd141f66b8111C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66d9c4D19b4C8e23a54C6dc4CeEd141f66b8111C/logo.png b/blockchains/ethereum/assets/0x66d9c4D19b4C8e23a54C6dc4CeEd141f66b8111C/logo.png new file mode 100644 index 00000000..09704a83 Binary files /dev/null and b/blockchains/ethereum/assets/0x66d9c4D19b4C8e23a54C6dc4CeEd141f66b8111C/logo.png differ diff --git a/blockchains/ethereum/assets/0x66eb65D7Ab8e9567ba0fa6E37c305956c5341574/info.json b/blockchains/ethereum/assets/0x66eb65D7Ab8e9567ba0fa6E37c305956c5341574/info.json new file mode 100644 index 00000000..6996bfcb --- /dev/null +++ b/blockchains/ethereum/assets/0x66eb65D7Ab8e9567ba0fa6E37c305956c5341574/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "HLX", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "https://helex.world", + "explorer": "https://etherscan.io/token/0x66eb65D7Ab8e9567ba0fa6E37c305956c5341574", + "status": "abandoned", + "id": "0x66eb65D7Ab8e9567ba0fa6E37c305956c5341574" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66eb65D7Ab8e9567ba0fa6E37c305956c5341574/logo.png b/blockchains/ethereum/assets/0x66eb65D7Ab8e9567ba0fa6E37c305956c5341574/logo.png new file mode 100644 index 00000000..4309380d Binary files /dev/null and b/blockchains/ethereum/assets/0x66eb65D7Ab8e9567ba0fa6E37c305956c5341574/logo.png differ diff --git a/blockchains/ethereum/assets/0x66fD97a78d8854fEc445cd1C80a07896B0b4851f/info.json b/blockchains/ethereum/assets/0x66fD97a78d8854fEc445cd1C80a07896B0b4851f/info.json new file mode 100644 index 00000000..c193dd12 --- /dev/null +++ b/blockchains/ethereum/assets/0x66fD97a78d8854fEc445cd1C80a07896B0b4851f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lunch Money", + "symbol": "LMY", + "type": "ERC20", + "decimals": 18, + "description": "Lunch Money is an ERC20 token built on the Ethereum Blockchain.", + "website": "http://lunchmoney.io", + "explorer": "https://etherscan.io/token/0x66fD97a78d8854fEc445cd1C80a07896B0b4851f", + "status": "active", + "id": "0x66fD97a78d8854fEc445cd1C80a07896B0b4851f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66fD97a78d8854fEc445cd1C80a07896B0b4851f/logo.png b/blockchains/ethereum/assets/0x66fD97a78d8854fEc445cd1C80a07896B0b4851f/logo.png new file mode 100755 index 00000000..fad93de5 Binary files /dev/null and b/blockchains/ethereum/assets/0x66fD97a78d8854fEc445cd1C80a07896B0b4851f/logo.png differ diff --git a/blockchains/ethereum/assets/0x6704B673c70dE9bF74C8fBa4b4bd748F0e2190E1/info.json b/blockchains/ethereum/assets/0x6704B673c70dE9bF74C8fBa4b4bd748F0e2190E1/info.json new file mode 100644 index 00000000..9384a2ae --- /dev/null +++ b/blockchains/ethereum/assets/0x6704B673c70dE9bF74C8fBa4b4bd748F0e2190E1/info.json @@ -0,0 +1,11 @@ +{ + "name": "UBEX Token", + "symbol": "UBEX", + "type": "ERC20", + "decimals": 18, + "description": "Ubex is a global decentralized advertising exchange where companies advertise effectively, while publishers profitably tokenize ad slots on their resources.", + "website": "https://www.ubex.com/", + "explorer": "https://etherscan.io/token/0x6704B673c70dE9bF74C8fBa4b4bd748F0e2190E1", + "status": "active", + "id": "0x6704B673c70dE9bF74C8fBa4b4bd748F0e2190E1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6704B673c70dE9bF74C8fBa4b4bd748F0e2190E1/logo.png b/blockchains/ethereum/assets/0x6704B673c70dE9bF74C8fBa4b4bd748F0e2190E1/logo.png new file mode 100644 index 00000000..b4bcdda4 Binary files /dev/null and b/blockchains/ethereum/assets/0x6704B673c70dE9bF74C8fBa4b4bd748F0e2190E1/logo.png differ diff --git a/blockchains/ethereum/assets/0x6710CeE627Fa3A988200ffD5687cc1C814cEf0F6/info.json b/blockchains/ethereum/assets/0x6710CeE627Fa3A988200ffD5687cc1C814cEf0F6/info.json new file mode 100644 index 00000000..feb81b71 --- /dev/null +++ b/blockchains/ethereum/assets/0x6710CeE627Fa3A988200ffD5687cc1C814cEf0F6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fotrem Capital Token", + "symbol": "FCQ", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6710CeE627Fa3A988200ffD5687cc1C814cEf0F6", + "status": "abandoned", + "id": "0x6710CeE627Fa3A988200ffD5687cc1C814cEf0F6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6710CeE627Fa3A988200ffD5687cc1C814cEf0F6/logo.png b/blockchains/ethereum/assets/0x6710CeE627Fa3A988200ffD5687cc1C814cEf0F6/logo.png new file mode 100644 index 00000000..95c91fd2 Binary files /dev/null and b/blockchains/ethereum/assets/0x6710CeE627Fa3A988200ffD5687cc1C814cEf0F6/logo.png differ diff --git a/blockchains/ethereum/assets/0x6710c63432A2De02954fc0f851db07146a6c0312/info.json b/blockchains/ethereum/assets/0x6710c63432A2De02954fc0f851db07146a6c0312/info.json new file mode 100644 index 00000000..ab2d3d82 --- /dev/null +++ b/blockchains/ethereum/assets/0x6710c63432A2De02954fc0f851db07146a6c0312/info.json @@ -0,0 +1,11 @@ +{ + "name": "SyncFab Smart Manufacturing Blockchain", + "symbol": "MFG", + "type": "ERC20", + "decimals": 18, + "description": "Decentralizing Manufacturing Supply Chains with Blockchain and the MFG Token", + "website": "https://blockchain.syncfab.com", + "explorer": "https://etherscan.io/token/0x6710c63432A2De02954fc0f851db07146a6c0312", + "status": "active", + "id": "0x6710c63432A2De02954fc0f851db07146a6c0312" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6710c63432A2De02954fc0f851db07146a6c0312/logo.png b/blockchains/ethereum/assets/0x6710c63432A2De02954fc0f851db07146a6c0312/logo.png new file mode 100644 index 00000000..6f93928e Binary files /dev/null and b/blockchains/ethereum/assets/0x6710c63432A2De02954fc0f851db07146a6c0312/logo.png differ diff --git a/blockchains/ethereum/assets/0x671AbBe5CE652491985342e85428EB1b07bC6c64/info.json b/blockchains/ethereum/assets/0x671AbBe5CE652491985342e85428EB1b07bC6c64/info.json new file mode 100644 index 00000000..a0335394 --- /dev/null +++ b/blockchains/ethereum/assets/0x671AbBe5CE652491985342e85428EB1b07bC6c64/info.json @@ -0,0 +1,11 @@ +{ + "name": "Quantum", + "symbol": "QAU", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x671AbBe5CE652491985342e85428EB1b07bC6c64", + "status": "abandoned", + "id": "0x671AbBe5CE652491985342e85428EB1b07bC6c64" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x671AbBe5CE652491985342e85428EB1b07bC6c64/logo.png b/blockchains/ethereum/assets/0x671AbBe5CE652491985342e85428EB1b07bC6c64/logo.png new file mode 100755 index 00000000..43f20932 Binary files /dev/null and b/blockchains/ethereum/assets/0x671AbBe5CE652491985342e85428EB1b07bC6c64/logo.png differ diff --git a/blockchains/ethereum/assets/0x672D7b3333d0F069a28b73A268bC6eAeC65F2E1a/info.json b/blockchains/ethereum/assets/0x672D7b3333d0F069a28b73A268bC6eAeC65F2E1a/info.json new file mode 100644 index 00000000..20cddd20 --- /dev/null +++ b/blockchains/ethereum/assets/0x672D7b3333d0F069a28b73A268bC6eAeC65F2E1a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kelpie Inu", + "type": "ERC20", + "symbol": "KELPIE", + "decimals": 9, + "website": "https://kelpie.tech", + "description": "New Submission for logo", + "explorer": "https://etherscan.io/token/0x672d7b3333d0f069a28b73a268bc6eaec65f2e1a", + "status": "active", + "id": "0x672D7b3333d0F069a28b73A268bC6eAeC65F2E1a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x672D7b3333d0F069a28b73A268bC6eAeC65F2E1a/logo.png b/blockchains/ethereum/assets/0x672D7b3333d0F069a28b73A268bC6eAeC65F2E1a/logo.png new file mode 100644 index 00000000..48937fd8 Binary files /dev/null and b/blockchains/ethereum/assets/0x672D7b3333d0F069a28b73A268bC6eAeC65F2E1a/logo.png differ diff --git a/blockchains/ethereum/assets/0x672a1AD4f667FB18A333Af13667aa0Af1F5b5bDD/info.json b/blockchains/ethereum/assets/0x672a1AD4f667FB18A333Af13667aa0Af1F5b5bDD/info.json new file mode 100644 index 00000000..7e95ca5f --- /dev/null +++ b/blockchains/ethereum/assets/0x672a1AD4f667FB18A333Af13667aa0Af1F5b5bDD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Verify Token", + "symbol": "CRED", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://verify.as/", + "explorer": "https://etherscan.io/token/0x672a1AD4f667FB18A333Af13667aa0Af1F5b5bDD", + "status": "abandoned", + "id": "0x672a1AD4f667FB18A333Af13667aa0Af1F5b5bDD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x672a1AD4f667FB18A333Af13667aa0Af1F5b5bDD/logo.png b/blockchains/ethereum/assets/0x672a1AD4f667FB18A333Af13667aa0Af1F5b5bDD/logo.png new file mode 100644 index 00000000..1c175830 Binary files /dev/null and b/blockchains/ethereum/assets/0x672a1AD4f667FB18A333Af13667aa0Af1F5b5bDD/logo.png differ diff --git a/blockchains/ethereum/assets/0x6733D909e10DDedB8d6181b213dE32A30cEac7ed/info.json b/blockchains/ethereum/assets/0x6733D909e10DDedB8d6181b213dE32A30cEac7ed/info.json new file mode 100644 index 00000000..a6f33ff2 --- /dev/null +++ b/blockchains/ethereum/assets/0x6733D909e10DDedB8d6181b213dE32A30cEac7ed/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitSerial", + "symbol": "BTE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6733D909e10DDedB8d6181b213dE32A30cEac7ed", + "status": "abandoned", + "id": "0x6733D909e10DDedB8d6181b213dE32A30cEac7ed" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6733D909e10DDedB8d6181b213dE32A30cEac7ed/logo.png b/blockchains/ethereum/assets/0x6733D909e10DDedB8d6181b213dE32A30cEac7ed/logo.png new file mode 100644 index 00000000..50392e66 Binary files /dev/null and b/blockchains/ethereum/assets/0x6733D909e10DDedB8d6181b213dE32A30cEac7ed/logo.png differ diff --git a/blockchains/ethereum/assets/0x6737fE98389Ffb356F64ebB726aA1a92390D94Fb/info.json b/blockchains/ethereum/assets/0x6737fE98389Ffb356F64ebB726aA1a92390D94Fb/info.json new file mode 100644 index 00000000..b6768da7 --- /dev/null +++ b/blockchains/ethereum/assets/0x6737fE98389Ffb356F64ebB726aA1a92390D94Fb/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZeroCarbon", + "symbol": "ZCC", + "type": "ERC20", + "decimals": 18, + "description": "Our Zero Carbon Market delivers lower energy prices and rewards consumers with Energis tokens as a catalyst for change, reducing carbon emissions faster than renewable energy.", + "website": "https://www.zerocarbonproject.com/", + "explorer": "https://etherscan.io/token/0x6737fE98389Ffb356F64ebB726aA1a92390D94Fb", + "status": "active", + "id": "0x6737fE98389Ffb356F64ebB726aA1a92390D94Fb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6737fE98389Ffb356F64ebB726aA1a92390D94Fb/logo.png b/blockchains/ethereum/assets/0x6737fE98389Ffb356F64ebB726aA1a92390D94Fb/logo.png new file mode 100644 index 00000000..0d742948 Binary files /dev/null and b/blockchains/ethereum/assets/0x6737fE98389Ffb356F64ebB726aA1a92390D94Fb/logo.png differ diff --git a/blockchains/ethereum/assets/0x6745fAB6801e376cD24F03572B9C9B0D4EdDDCcf/info.json b/blockchains/ethereum/assets/0x6745fAB6801e376cD24F03572B9C9B0D4EdDDCcf/info.json new file mode 100644 index 00000000..e401628f --- /dev/null +++ b/blockchains/ethereum/assets/0x6745fAB6801e376cD24F03572B9C9B0D4EdDDCcf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sense", + "symbol": "SENSE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6745fAB6801e376cD24F03572B9C9B0D4EdDDCcf", + "status": "abandoned", + "id": "0x6745fAB6801e376cD24F03572B9C9B0D4EdDDCcf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6745fAB6801e376cD24F03572B9C9B0D4EdDDCcf/logo.png b/blockchains/ethereum/assets/0x6745fAB6801e376cD24F03572B9C9B0D4EdDDCcf/logo.png new file mode 100644 index 00000000..21ce896f Binary files /dev/null and b/blockchains/ethereum/assets/0x6745fAB6801e376cD24F03572B9C9B0D4EdDDCcf/logo.png differ diff --git a/blockchains/ethereum/assets/0x67466BE17df832165F8C80a5A120CCc652bD7E69/info.json b/blockchains/ethereum/assets/0x67466BE17df832165F8C80a5A120CCc652bD7E69/info.json new file mode 100644 index 00000000..92454f8e --- /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 00000000..8d92079c 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 new file mode 100644 index 00000000..3096a3a2 --- /dev/null +++ b/blockchains/ethereum/assets/0x674C6Ad92Fd080e4004b2312b45f796a192D27a0/info.json @@ -0,0 +1,45 @@ +{ + "name": "USDN", + "website": "https://neutrino.at", + "description": "Neutrino USDN is a stablecoin issued on Waves Protocol. Collaterization is based on NSBT. More details in WP.", + "explorer": "https://etherscan.io/token/0x674c6ad92fd080e4004b2312b45f796a192d27a0", + "type": "ERC20", + "symbol": "USDN", + "decimals": 18, + "status": "active", + "id": "0x674C6Ad92Fd080e4004b2312b45f796a192D27a0", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/Neutrino-Protocol" + }, + { + "name": "x", + "url": "https://x.com/neutrino_proto" + }, + { + "name": "blog", + "url": "https://medium.com/neutrinoteam" + }, + { + "name": "facebook", + "url": "https://facebook.com/NeutrinoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/neutrino_group" + }, + { + "name": "whitepaper", + "url": "https://wp.neutrino.at/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/neutrino/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x674C6Ad92Fd080e4004b2312b45f796a192D27a0/logo.png b/blockchains/ethereum/assets/0x674C6Ad92Fd080e4004b2312b45f796a192D27a0/logo.png new file mode 100644 index 00000000..435ade89 Binary files /dev/null and b/blockchains/ethereum/assets/0x674C6Ad92Fd080e4004b2312b45f796a192D27a0/logo.png differ diff --git a/blockchains/ethereum/assets/0x6752787D5A119DAD443E97cC6CC4449C655ED5d2/info.json b/blockchains/ethereum/assets/0x6752787D5A119DAD443E97cC6CC4449C655ED5d2/info.json new file mode 100644 index 00000000..55679431 --- /dev/null +++ b/blockchains/ethereum/assets/0x6752787D5A119DAD443E97cC6CC4449C655ED5d2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Start Chain", + "symbol": "STC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6752787D5A119DAD443E97cC6CC4449C655ED5d2", + "status": "abandoned", + "id": "0x6752787D5A119DAD443E97cC6CC4449C655ED5d2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6752787D5A119DAD443E97cC6CC4449C655ED5d2/logo.png b/blockchains/ethereum/assets/0x6752787D5A119DAD443E97cC6CC4449C655ED5d2/logo.png new file mode 100644 index 00000000..ec688685 Binary files /dev/null and b/blockchains/ethereum/assets/0x6752787D5A119DAD443E97cC6CC4449C655ED5d2/logo.png differ diff --git a/blockchains/ethereum/assets/0x6758B7d441a9739b98552B373703d8d3d14f9e62/info.json b/blockchains/ethereum/assets/0x6758B7d441a9739b98552B373703d8d3d14f9e62/info.json new file mode 100644 index 00000000..656ae12c --- /dev/null +++ b/blockchains/ethereum/assets/0x6758B7d441a9739b98552B373703d8d3d14f9e62/info.json @@ -0,0 +1,11 @@ +{ + "name": "POA ERC20 on Foundation", + "symbol": "POA20", + "type": "ERC20", + "decimals": 18, + "description": "POA Network is an Ethereum-based platform that offers an open-source framework for smart contracts.", + "website": "https://poa.net/", + "explorer": "https://etherscan.io/token/0x6758B7d441a9739b98552B373703d8d3d14f9e62", + "status": "active", + "id": "0x6758B7d441a9739b98552B373703d8d3d14f9e62" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6758B7d441a9739b98552B373703d8d3d14f9e62/logo.png b/blockchains/ethereum/assets/0x6758B7d441a9739b98552B373703d8d3d14f9e62/logo.png new file mode 100755 index 00000000..cfa1b254 Binary files /dev/null and b/blockchains/ethereum/assets/0x6758B7d441a9739b98552B373703d8d3d14f9e62/logo.png differ diff --git a/blockchains/ethereum/assets/0x675E7d927Af7e6D0082e0153dc3485B687a6F0ad/info.json b/blockchains/ethereum/assets/0x675E7d927Af7e6D0082e0153dc3485B687a6F0ad/info.json new file mode 100644 index 00000000..d36f3c58 --- /dev/null +++ b/blockchains/ethereum/assets/0x675E7d927Af7e6D0082e0153dc3485B687a6F0ad/info.json @@ -0,0 +1,11 @@ +{ + "name": "CREED", + "website": "https://creed.finance", + "description": "Every time you stake and unstake LP tokens, the contract will automatically harvest CREED rewards for you", + "explorer": "https://etherscan.io/token/0x675E7d927Af7e6D0082e0153dc3485B687a6F0ad", + "type": "ERC20", + "symbol": "CREED", + "decimals": 18, + "status": "active", + "id": "0x675E7d927Af7e6D0082e0153dc3485B687a6F0ad" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x675E7d927Af7e6D0082e0153dc3485B687a6F0ad/logo.png b/blockchains/ethereum/assets/0x675E7d927Af7e6D0082e0153dc3485B687a6F0ad/logo.png new file mode 100644 index 00000000..1792590b Binary files /dev/null and b/blockchains/ethereum/assets/0x675E7d927Af7e6D0082e0153dc3485B687a6F0ad/logo.png differ diff --git a/blockchains/ethereum/assets/0x675a1f8750C1e6a3fd8708E224283dE843BF28EC/info.json b/blockchains/ethereum/assets/0x675a1f8750C1e6a3fd8708E224283dE843BF28EC/info.json new file mode 100644 index 00000000..1c60e621 --- /dev/null +++ b/blockchains/ethereum/assets/0x675a1f8750C1e6a3fd8708E224283dE843BF28EC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yacht Club", + "symbol": "POINT", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x675a1f8750C1e6a3fd8708E224283dE843BF28EC", + "status": "abandoned", + "id": "0x675a1f8750C1e6a3fd8708E224283dE843BF28EC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x675a1f8750C1e6a3fd8708E224283dE843BF28EC/logo.png b/blockchains/ethereum/assets/0x675a1f8750C1e6a3fd8708E224283dE843BF28EC/logo.png new file mode 100644 index 00000000..16875994 Binary files /dev/null and b/blockchains/ethereum/assets/0x675a1f8750C1e6a3fd8708E224283dE843BF28EC/logo.png differ diff --git a/blockchains/ethereum/assets/0x6768063279E2B185Dc0c972b97f11f231d0B45ad/info.json b/blockchains/ethereum/assets/0x6768063279E2B185Dc0c972b97f11f231d0B45ad/info.json new file mode 100644 index 00000000..f4913162 --- /dev/null +++ b/blockchains/ethereum/assets/0x6768063279E2B185Dc0c972b97f11f231d0B45ad/info.json @@ -0,0 +1,11 @@ +{ + "name": "YIELD", + "website": "https://yield-farming.io", + "description": "A trustable farming DeFi project", + "explorer": "https://etherscan.io/token/0x6768063279E2B185Dc0c972b97f11f231d0B45ad", + "type": "ERC20", + "symbol": "YIELD", + "decimals": 18, + "status": "active", + "id": "0x6768063279E2B185Dc0c972b97f11f231d0B45ad" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6768063279E2B185Dc0c972b97f11f231d0B45ad/logo.png b/blockchains/ethereum/assets/0x6768063279E2B185Dc0c972b97f11f231d0B45ad/logo.png new file mode 100644 index 00000000..b202d2c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x6768063279E2B185Dc0c972b97f11f231d0B45ad/logo.png differ diff --git a/blockchains/ethereum/assets/0x6773BfBc5e1B5bBDCf2c160b04d68b2Ff2250C5f/info.json b/blockchains/ethereum/assets/0x6773BfBc5e1B5bBDCf2c160b04d68b2Ff2250C5f/info.json new file mode 100644 index 00000000..e7107bda --- /dev/null +++ b/blockchains/ethereum/assets/0x6773BfBc5e1B5bBDCf2c160b04d68b2Ff2250C5f/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg11500", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6773BfBc5e1B5bBDCf2c160b04d68b2Ff2250C5f", + "status": "abandoned", + "id": "0x6773BfBc5e1B5bBDCf2c160b04d68b2Ff2250C5f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6773BfBc5e1B5bBDCf2c160b04d68b2Ff2250C5f/logo.png b/blockchains/ethereum/assets/0x6773BfBc5e1B5bBDCf2c160b04d68b2Ff2250C5f/logo.png new file mode 100644 index 00000000..5b8a092b Binary files /dev/null and b/blockchains/ethereum/assets/0x6773BfBc5e1B5bBDCf2c160b04d68b2Ff2250C5f/logo.png differ diff --git a/blockchains/ethereum/assets/0x677fB8474b6bf1496f7Ab633E63e25fE1132d042/info.json b/blockchains/ethereum/assets/0x677fB8474b6bf1496f7Ab633E63e25fE1132d042/info.json new file mode 100644 index 00000000..8f579570 --- /dev/null +++ b/blockchains/ethereum/assets/0x677fB8474b6bf1496f7Ab633E63e25fE1132d042/info.json @@ -0,0 +1,11 @@ +{ + "name": "bitecoin", + "symbol": "BITE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x677fB8474b6bf1496f7Ab633E63e25fE1132d042", + "status": "abandoned", + "id": "0x677fB8474b6bf1496f7Ab633E63e25fE1132d042" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x677fB8474b6bf1496f7Ab633E63e25fE1132d042/logo.png b/blockchains/ethereum/assets/0x677fB8474b6bf1496f7Ab633E63e25fE1132d042/logo.png new file mode 100755 index 00000000..f8d9969f Binary files /dev/null and b/blockchains/ethereum/assets/0x677fB8474b6bf1496f7Ab633E63e25fE1132d042/logo.png differ diff --git a/blockchains/ethereum/assets/0x6781a0F84c7E9e846DCb84A9a5bd49333067b104/info.json b/blockchains/ethereum/assets/0x6781a0F84c7E9e846DCb84A9a5bd49333067b104/info.json new file mode 100644 index 00000000..2af9be21 --- /dev/null +++ b/blockchains/ethereum/assets/0x6781a0F84c7E9e846DCb84A9a5bd49333067b104/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZAP TOKEN", + "symbol": "ZAP", + "type": "ERC20", + "decimals": 18, + "description": "ZAP is a cryptocurrency and operates on the Ethereum platform. ", + "website": "https://zap.org", + "explorer": "https://etherscan.io/token/0x6781a0F84c7E9e846DCb84A9a5bd49333067b104", + "status": "active", + "id": "0x6781a0F84c7E9e846DCb84A9a5bd49333067b104" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6781a0F84c7E9e846DCb84A9a5bd49333067b104/logo.png b/blockchains/ethereum/assets/0x6781a0F84c7E9e846DCb84A9a5bd49333067b104/logo.png new file mode 100644 index 00000000..9c25ad97 Binary files /dev/null and b/blockchains/ethereum/assets/0x6781a0F84c7E9e846DCb84A9a5bd49333067b104/logo.png differ diff --git a/blockchains/ethereum/assets/0x678e840C640F619E17848045D23072844224dD37/info.json b/blockchains/ethereum/assets/0x678e840C640F619E17848045D23072844224dD37/info.json new file mode 100644 index 00000000..97cc837b --- /dev/null +++ b/blockchains/ethereum/assets/0x678e840C640F619E17848045D23072844224dD37/info.json @@ -0,0 +1,28 @@ +{ + "name": "Cratos", + "type": "ERC20", + "symbol": "CRTS", + "decimals": 18, + "website": "https://www.cratostoken.com/", + "description": "CRATOS is an ERC-20 utility token designed to facilitate citizen participation in the CRATOS app, a real-time live vote platform.", + "explorer": "https://etherscan.io/token/0x678e840c640f619e17848045d23072844224dd37", + "status": "active", + "id": "0x678e840C640F619E17848045D23072844224dD37", + "links": [ + { + "name": "x", + "url": "https://x.com/cratostoken" + }, + { + "name": "telegram", + "url": "https://t.me/CratosToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cratos/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x678e840C640F619E17848045D23072844224dD37/logo.png b/blockchains/ethereum/assets/0x678e840C640F619E17848045D23072844224dD37/logo.png new file mode 100644 index 00000000..cad91b5e Binary files /dev/null and b/blockchains/ethereum/assets/0x678e840C640F619E17848045D23072844224dD37/logo.png differ diff --git a/blockchains/ethereum/assets/0x679131F591B4f369acB8cd8c51E68596806c3916/info.json b/blockchains/ethereum/assets/0x679131F591B4f369acB8cd8c51E68596806c3916/info.json new file mode 100644 index 00000000..1cb49d98 --- /dev/null +++ b/blockchains/ethereum/assets/0x679131F591B4f369acB8cd8c51E68596806c3916/info.json @@ -0,0 +1,25 @@ +{ + "name": "Trustlines Network Token", + "website": "https://trustlines.network/", + "description": "TLN are ERC20 tokens on the Ethereum chain, which can be converted to TLC by sending them to the Trustlines Blockchain bridge.", + "explorer": "https://etherscan.io/token/0x679131F591B4f369acB8cd8c51E68596806c3916", + "type": "ERC20", + "symbol": "TLN", + "decimals": 18, + "status": "active", + "id": "0x679131F591B4f369acB8cd8c51E68596806c3916", + "links": [ + { + "name": "github", + "url": "https://github.com/trustlines-protocol/" + }, + { + "name": "x", + "url": "https://x.com/TrustlinesFound" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Trustlines" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x679131F591B4f369acB8cd8c51E68596806c3916/logo.png b/blockchains/ethereum/assets/0x679131F591B4f369acB8cd8c51E68596806c3916/logo.png new file mode 100644 index 00000000..fd3f05e7 Binary files /dev/null and b/blockchains/ethereum/assets/0x679131F591B4f369acB8cd8c51E68596806c3916/logo.png differ diff --git a/blockchains/ethereum/assets/0x679BADc551626e01B23CeecEFBc9B877EA18fc46/info.json b/blockchains/ethereum/assets/0x679BADc551626e01B23CeecEFBc9B877EA18fc46/info.json new file mode 100644 index 00000000..ead3c42a --- /dev/null +++ b/blockchains/ethereum/assets/0x679BADc551626e01B23CeecEFBc9B877EA18fc46/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ccore Token", + "symbol": "CCO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ccore.io/", + "explorer": "https://etherscan.io/token/0x679BADc551626e01B23CeecEFBc9B877EA18fc46", + "status": "abandoned", + "id": "0x679BADc551626e01B23CeecEFBc9B877EA18fc46" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x679BADc551626e01B23CeecEFBc9B877EA18fc46/logo.png b/blockchains/ethereum/assets/0x679BADc551626e01B23CeecEFBc9B877EA18fc46/logo.png new file mode 100644 index 00000000..a8e712d8 Binary files /dev/null and b/blockchains/ethereum/assets/0x679BADc551626e01B23CeecEFBc9B877EA18fc46/logo.png differ diff --git a/blockchains/ethereum/assets/0x67A8C7EdADd6827056F489ABDfF85fB5a4B2182C/info.json b/blockchains/ethereum/assets/0x67A8C7EdADd6827056F489ABDfF85fB5a4B2182C/info.json new file mode 100644 index 00000000..eda14e65 --- /dev/null +++ b/blockchains/ethereum/assets/0x67A8C7EdADd6827056F489ABDfF85fB5a4B2182C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Medicine Health Token", + "symbol": "MHT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x67A8C7EdADd6827056F489ABDfF85fB5a4B2182C", + "status": "spam", + "id": "0x67A8C7EdADd6827056F489ABDfF85fB5a4B2182C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67A8C7EdADd6827056F489ABDfF85fB5a4B2182C/logo.png b/blockchains/ethereum/assets/0x67A8C7EdADd6827056F489ABDfF85fB5a4B2182C/logo.png new file mode 100644 index 00000000..59e3dc3c Binary files /dev/null and b/blockchains/ethereum/assets/0x67A8C7EdADd6827056F489ABDfF85fB5a4B2182C/logo.png differ diff --git a/blockchains/ethereum/assets/0x67B6D479c7bB412C54e03dCA8E1Bc6740ce6b99C/info.json b/blockchains/ethereum/assets/0x67B6D479c7bB412C54e03dCA8E1Bc6740ce6b99C/info.json new file mode 100644 index 00000000..ef9b332f --- /dev/null +++ b/blockchains/ethereum/assets/0x67B6D479c7bB412C54e03dCA8E1Bc6740ce6b99C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kylin", + "symbol": "KYL", + "type": "ERC20", + "decimals": 18, + "description": "Kylin Network aims to Build a Cross-chain Platform Powering the Data Economy on Polkadot. It will be the Data Infrastructure for DeFi and Web 3.0 Powered by Polkadot.", + "website": "https://kylin.network/", + "explorer": "https://etherscan.io/token/0x67B6D479c7bB412C54e03dCA8E1Bc6740ce6b99C", + "status": "active", + "id": "0x67B6D479c7bB412C54e03dCA8E1Bc6740ce6b99C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67B6D479c7bB412C54e03dCA8E1Bc6740ce6b99C/logo.png b/blockchains/ethereum/assets/0x67B6D479c7bB412C54e03dCA8E1Bc6740ce6b99C/logo.png new file mode 100644 index 00000000..e2628e4b Binary files /dev/null and b/blockchains/ethereum/assets/0x67B6D479c7bB412C54e03dCA8E1Bc6740ce6b99C/logo.png differ diff --git a/blockchains/ethereum/assets/0x67CFE387D6a1C9BC02293d82e443A2aA011336E7/info.json b/blockchains/ethereum/assets/0x67CFE387D6a1C9BC02293d82e443A2aA011336E7/info.json new file mode 100644 index 00000000..f7ad8fa7 --- /dev/null +++ b/blockchains/ethereum/assets/0x67CFE387D6a1C9BC02293d82e443A2aA011336E7/info.json @@ -0,0 +1,11 @@ +{ + "name": "LGN International", + "symbol": "LGN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x67CFE387D6a1C9BC02293d82e443A2aA011336E7", + "status": "abandoned", + "id": "0x67CFE387D6a1C9BC02293d82e443A2aA011336E7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67CFE387D6a1C9BC02293d82e443A2aA011336E7/logo.png b/blockchains/ethereum/assets/0x67CFE387D6a1C9BC02293d82e443A2aA011336E7/logo.png new file mode 100644 index 00000000..02fa9a4a Binary files /dev/null and b/blockchains/ethereum/assets/0x67CFE387D6a1C9BC02293d82e443A2aA011336E7/logo.png differ diff --git a/blockchains/ethereum/assets/0x67D3E39Ae5D3316dfdAAebEd1C62293e7cF19297/info.json b/blockchains/ethereum/assets/0x67D3E39Ae5D3316dfdAAebEd1C62293e7cF19297/info.json new file mode 100644 index 00000000..e2cd860d --- /dev/null +++ b/blockchains/ethereum/assets/0x67D3E39Ae5D3316dfdAAebEd1C62293e7cF19297/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-16/30M76", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x67D3E39Ae5D3316dfdAAebEd1C62293e7cF19297", + "status": "abandoned", + "id": "0x67D3E39Ae5D3316dfdAAebEd1C62293e7cF19297" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67D3E39Ae5D3316dfdAAebEd1C62293e7cF19297/logo.png b/blockchains/ethereum/assets/0x67D3E39Ae5D3316dfdAAebEd1C62293e7cF19297/logo.png new file mode 100644 index 00000000..0d9f15e5 Binary files /dev/null and b/blockchains/ethereum/assets/0x67D3E39Ae5D3316dfdAAebEd1C62293e7cF19297/logo.png differ diff --git a/blockchains/ethereum/assets/0x67D511f4a4f2Bc034dDc5DB3b28102d888CdD11F/info.json b/blockchains/ethereum/assets/0x67D511f4a4f2Bc034dDc5DB3b28102d888CdD11F/info.json new file mode 100644 index 00000000..0836e67b --- /dev/null +++ b/blockchains/ethereum/assets/0x67D511f4a4f2Bc034dDc5DB3b28102d888CdD11F/info.json @@ -0,0 +1,11 @@ +{ + "name": "AlgoTradingFun", + "symbol": "ATF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x67D511f4a4f2Bc034dDc5DB3b28102d888CdD11F", + "status": "abandoned", + "id": "0x67D511f4a4f2Bc034dDc5DB3b28102d888CdD11F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67D511f4a4f2Bc034dDc5DB3b28102d888CdD11F/logo.png b/blockchains/ethereum/assets/0x67D511f4a4f2Bc034dDc5DB3b28102d888CdD11F/logo.png new file mode 100644 index 00000000..e910bd56 Binary files /dev/null and b/blockchains/ethereum/assets/0x67D511f4a4f2Bc034dDc5DB3b28102d888CdD11F/logo.png differ diff --git a/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/info.json b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/info.json new file mode 100644 index 00000000..44ae95d4 --- /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 00000000..5c1ecf3d Binary files /dev/null and b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/logo.png differ diff --git a/blockchains/ethereum/assets/0x67a9099f0008C35C61c00042cd9Fb03684451097/info.json b/blockchains/ethereum/assets/0x67a9099f0008C35C61c00042cd9Fb03684451097/info.json new file mode 100644 index 00000000..41ce0f1f --- /dev/null +++ b/blockchains/ethereum/assets/0x67a9099f0008C35C61c00042cd9Fb03684451097/info.json @@ -0,0 +1,11 @@ +{ + "name": "GAMESTARS TOKEN", + "symbol": "GST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://gamestars.io", + "explorer": "https://etherscan.io/token/0x67a9099f0008C35C61c00042cd9Fb03684451097", + "status": "abandoned", + "id": "0x67a9099f0008C35C61c00042cd9Fb03684451097" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67a9099f0008C35C61c00042cd9Fb03684451097/logo.png b/blockchains/ethereum/assets/0x67a9099f0008C35C61c00042cd9Fb03684451097/logo.png new file mode 100644 index 00000000..d5d779fc Binary files /dev/null and b/blockchains/ethereum/assets/0x67a9099f0008C35C61c00042cd9Fb03684451097/logo.png differ diff --git a/blockchains/ethereum/assets/0x67ab11058eF23D0a19178f61A050D3c38F81Ae21/info.json b/blockchains/ethereum/assets/0x67ab11058eF23D0a19178f61A050D3c38F81Ae21/info.json new file mode 100644 index 00000000..29cf6c4f --- /dev/null +++ b/blockchains/ethereum/assets/0x67ab11058eF23D0a19178f61A050D3c38F81Ae21/info.json @@ -0,0 +1,11 @@ +{ + "name": "SELF TOKEN", + "symbol": "SELF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x67ab11058eF23D0a19178f61A050D3c38F81Ae21", + "status": "abandoned", + "id": "0x67ab11058eF23D0a19178f61A050D3c38F81Ae21" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67ab11058eF23D0a19178f61A050D3c38F81Ae21/logo.png b/blockchains/ethereum/assets/0x67ab11058eF23D0a19178f61A050D3c38F81Ae21/logo.png new file mode 100644 index 00000000..be542f39 Binary files /dev/null and b/blockchains/ethereum/assets/0x67ab11058eF23D0a19178f61A050D3c38F81Ae21/logo.png differ diff --git a/blockchains/ethereum/assets/0x67b562802aE7Da63283741103d14F508597f6380/info.json b/blockchains/ethereum/assets/0x67b562802aE7Da63283741103d14F508597f6380/info.json new file mode 100644 index 00000000..7d34d82b --- /dev/null +++ b/blockchains/ethereum/assets/0x67b562802aE7Da63283741103d14F508597f6380/info.json @@ -0,0 +1,11 @@ +{ + "name": "ROOKS", + "symbol": "ROOKS", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x67b562802aE7Da63283741103d14F508597f6380", + "status": "abandoned", + "id": "0x67b562802aE7Da63283741103d14F508597f6380" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67b562802aE7Da63283741103d14F508597f6380/logo.png b/blockchains/ethereum/assets/0x67b562802aE7Da63283741103d14F508597f6380/logo.png new file mode 100644 index 00000000..4800e949 Binary files /dev/null and b/blockchains/ethereum/assets/0x67b562802aE7Da63283741103d14F508597f6380/logo.png differ diff --git a/blockchains/ethereum/assets/0x67c5902F5210F62f37157cd9C735c693164c1378/info.json b/blockchains/ethereum/assets/0x67c5902F5210F62f37157cd9C735c693164c1378/info.json new file mode 100644 index 00000000..81b3879b --- /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 00000000..9a8d3dbd 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 new file mode 100644 index 00000000..8efed271 --- /dev/null +++ b/blockchains/ethereum/assets/0x67c597624B17b16fb77959217360B7cD18284253/info.json @@ -0,0 +1,17 @@ +{ + "name": "Benchmark Protocol", + "type": "ERC20", + "symbol": "MARK", + "decimals": 9, + "website": "https://benchmarkprotocol.finance", + "description": "Benchmark Protocol mitigates liquidation events and hedges risk with the MARK token; a supply elastic, stablecoin-alternative that connects traditional capital markets to DeFi.", + "explorer": "https://etherscan.io/token/0x67c597624B17b16fb77959217360B7cD18284253", + "status": "active", + "id": "0x67c597624B17b16fb77959217360B7cD18284253", + "links": [ + { + "name": "x", + "url": "https://x.com/Benchmark_Defi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67c597624B17b16fb77959217360B7cD18284253/logo.png b/blockchains/ethereum/assets/0x67c597624B17b16fb77959217360B7cD18284253/logo.png new file mode 100644 index 00000000..d51f9fa3 Binary files /dev/null and b/blockchains/ethereum/assets/0x67c597624B17b16fb77959217360B7cD18284253/logo.png differ diff --git a/blockchains/ethereum/assets/0x68037790A0229e9Ce6EaA8A99ea92964106C4703/info.json b/blockchains/ethereum/assets/0x68037790A0229e9Ce6EaA8A99ea92964106C4703/info.json new file mode 100644 index 00000000..824a229e --- /dev/null +++ b/blockchains/ethereum/assets/0x68037790A0229e9Ce6EaA8A99ea92964106C4703/info.json @@ -0,0 +1,11 @@ +{ + "name": "PAR Stablecoin (PAR)", + "type": "ERC20", + "symbol": "PAR", + "decimals": 18, + "website": "https://mimo.capital", + "description": "PAR is introduced to the market as the first stable token algorithmically pegged to the Euro (€), offering investors for the first time the possibility to acquire a token in the native currency of the European Community countries. PAR token holders will be able to place their tokens in liquidity pools to obtain attractive returns within the MIMO Decentralized Finance Platform.", + "explorer": "https://etherscan.io/token/0x68037790A0229e9Ce6EaA8A99ea92964106C4703", + "status": "active", + "id": "0x68037790A0229e9Ce6EaA8A99ea92964106C4703" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68037790A0229e9Ce6EaA8A99ea92964106C4703/logo.png b/blockchains/ethereum/assets/0x68037790A0229e9Ce6EaA8A99ea92964106C4703/logo.png new file mode 100644 index 00000000..49d033de Binary files /dev/null and b/blockchains/ethereum/assets/0x68037790A0229e9Ce6EaA8A99ea92964106C4703/logo.png differ diff --git a/blockchains/ethereum/assets/0x6810e776880C02933D47DB1b9fc05908e5386b96/info.json b/blockchains/ethereum/assets/0x6810e776880C02933D47DB1b9fc05908e5386b96/info.json new file mode 100644 index 00000000..0a43f57d --- /dev/null +++ b/blockchains/ethereum/assets/0x6810e776880C02933D47DB1b9fc05908e5386b96/info.json @@ -0,0 +1,40 @@ +{ + "name": "Gnosis", + "website": "https://gnosis.io", + "description": "Gnosis is a decentralized prediction market built on the Ethereum protocol.", + "explorer": "https://etherscan.io/token/0x6810e776880C02933D47DB1b9fc05908e5386b96", + "type": "ERC20", + "symbol": "GNO", + "decimals": 18, + "status": "active", + "id": "0x6810e776880C02933D47DB1b9fc05908e5386b96", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/gnosis" + }, + { + "name": "x", + "url": "https://x.com/gnosisPM" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/gnosisPM/" + }, + { + "name": "blog", + "url": "https://blog.gnosis.io/" + }, + { + "name": "facebook", + "url": "https://facebook.com/Gnosis.pm/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gnosis/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6810e776880C02933D47DB1b9fc05908e5386b96/logo.png b/blockchains/ethereum/assets/0x6810e776880C02933D47DB1b9fc05908e5386b96/logo.png new file mode 100644 index 00000000..92b62f1b Binary files /dev/null and b/blockchains/ethereum/assets/0x6810e776880C02933D47DB1b9fc05908e5386b96/logo.png differ diff --git a/blockchains/ethereum/assets/0x681724368d052a4e29Fc226eD5085082d74Fe716/info.json b/blockchains/ethereum/assets/0x681724368d052a4e29Fc226eD5085082d74Fe716/info.json new file mode 100644 index 00000000..5c2ef369 --- /dev/null +++ b/blockchains/ethereum/assets/0x681724368d052a4e29Fc226eD5085082d74Fe716/info.json @@ -0,0 +1,11 @@ +{ + "name": "SOLARMINING", + "symbol": "SRM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x681724368d052a4e29Fc226eD5085082d74Fe716", + "status": "abandoned", + "id": "0x681724368d052a4e29Fc226eD5085082d74Fe716" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x681724368d052a4e29Fc226eD5085082d74Fe716/logo.png b/blockchains/ethereum/assets/0x681724368d052a4e29Fc226eD5085082d74Fe716/logo.png new file mode 100644 index 00000000..32bfde2c Binary files /dev/null and b/blockchains/ethereum/assets/0x681724368d052a4e29Fc226eD5085082d74Fe716/logo.png differ diff --git a/blockchains/ethereum/assets/0x68350d30D9F58C81aaaA41929f1bfC52FFf4Ea49/info.json b/blockchains/ethereum/assets/0x68350d30D9F58C81aaaA41929f1bfC52FFf4Ea49/info.json new file mode 100644 index 00000000..6b6ed715 --- /dev/null +++ b/blockchains/ethereum/assets/0x68350d30D9F58C81aaaA41929f1bfC52FFf4Ea49/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rapidz", + "symbol": "RPZX", + "type": "ERC20", + "decimals": 18, + "description": "RAPIDZ - reimagines the digital finance & payment experience and propels the crypto ecosystem to a broader audience.", + "website": "https://www.rapidz.io", + "explorer": "https://etherscan.io/token/0x68350d30D9F58C81aaaA41929f1bfC52FFf4Ea49", + "status": "active", + "id": "0x68350d30D9F58C81aaaA41929f1bfC52FFf4Ea49" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68350d30D9F58C81aaaA41929f1bfC52FFf4Ea49/logo.png b/blockchains/ethereum/assets/0x68350d30D9F58C81aaaA41929f1bfC52FFf4Ea49/logo.png new file mode 100644 index 00000000..99160ade Binary files /dev/null and b/blockchains/ethereum/assets/0x68350d30D9F58C81aaaA41929f1bfC52FFf4Ea49/logo.png differ diff --git a/blockchains/ethereum/assets/0x684e2DCb12Bb755237E07242529C82f78a84Ea61/info.json b/blockchains/ethereum/assets/0x684e2DCb12Bb755237E07242529C82f78a84Ea61/info.json new file mode 100644 index 00000000..87f43525 --- /dev/null +++ b/blockchains/ethereum/assets/0x684e2DCb12Bb755237E07242529C82f78a84Ea61/info.json @@ -0,0 +1,11 @@ +{ + "name": "WELL Token", + "symbol": "WELL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x684e2DCb12Bb755237E07242529C82f78a84Ea61", + "status": "abandoned", + "id": "0x684e2DCb12Bb755237E07242529C82f78a84Ea61" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x684e2DCb12Bb755237E07242529C82f78a84Ea61/logo.png b/blockchains/ethereum/assets/0x684e2DCb12Bb755237E07242529C82f78a84Ea61/logo.png new file mode 100644 index 00000000..69f3ef04 Binary files /dev/null and b/blockchains/ethereum/assets/0x684e2DCb12Bb755237E07242529C82f78a84Ea61/logo.png differ diff --git a/blockchains/ethereum/assets/0x6859242a5c8e43101BC96787c09728036590083B/info.json b/blockchains/ethereum/assets/0x6859242a5c8e43101BC96787c09728036590083B/info.json new file mode 100644 index 00000000..6d0590f5 --- /dev/null +++ b/blockchains/ethereum/assets/0x6859242a5c8e43101BC96787c09728036590083B/info.json @@ -0,0 +1,11 @@ +{ + "name": "World Travel Token", + "symbol": "WTL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6859242a5c8e43101BC96787c09728036590083B", + "status": "abandoned", + "id": "0x6859242a5c8e43101BC96787c09728036590083B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6859242a5c8e43101BC96787c09728036590083B/logo.png b/blockchains/ethereum/assets/0x6859242a5c8e43101BC96787c09728036590083B/logo.png new file mode 100644 index 00000000..9443bb91 Binary files /dev/null and b/blockchains/ethereum/assets/0x6859242a5c8e43101BC96787c09728036590083B/logo.png differ diff --git a/blockchains/ethereum/assets/0x68622855dcf14ced1B0Cc2A69cc34843708e2E0f/info.json b/blockchains/ethereum/assets/0x68622855dcf14ced1B0Cc2A69cc34843708e2E0f/info.json new file mode 100644 index 00000000..dce7af8e --- /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 00000000..2ce033b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x68622855dcf14ced1B0Cc2A69cc34843708e2E0f/logo.png differ diff --git a/blockchains/ethereum/assets/0x6863bE0e7CF7ce860A574760e9020D519a8bDC47/info.json b/blockchains/ethereum/assets/0x6863bE0e7CF7ce860A574760e9020D519a8bDC47/info.json new file mode 100644 index 00000000..a5786afa --- /dev/null +++ b/blockchains/ethereum/assets/0x6863bE0e7CF7ce860A574760e9020D519a8bDC47/info.json @@ -0,0 +1,11 @@ +{ + "name": "On.Live", + "symbol": "ONL", + "type": "ERC20", + "decimals": 18, + "description": "On.Live (ONL) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://on.live/", + "explorer": "https://etherscan.io/token/0x6863bE0e7CF7ce860A574760e9020D519a8bDC47", + "status": "active", + "id": "0x6863bE0e7CF7ce860A574760e9020D519a8bDC47" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6863bE0e7CF7ce860A574760e9020D519a8bDC47/logo.png b/blockchains/ethereum/assets/0x6863bE0e7CF7ce860A574760e9020D519a8bDC47/logo.png new file mode 100755 index 00000000..3177915a Binary files /dev/null and b/blockchains/ethereum/assets/0x6863bE0e7CF7ce860A574760e9020D519a8bDC47/logo.png differ diff --git a/blockchains/ethereum/assets/0x686C650dbcFEaa75D09B883621Ad810F5952bD5d/info.json b/blockchains/ethereum/assets/0x686C650dbcFEaa75D09B883621Ad810F5952bD5d/info.json new file mode 100644 index 00000000..5903f396 --- /dev/null +++ b/blockchains/ethereum/assets/0x686C650dbcFEaa75D09B883621Ad810F5952bD5d/info.json @@ -0,0 +1,11 @@ +{ + "name": "AAX Token", + "symbol": "AAB", + "type": "ERC20", + "decimals": 18, + "description": "Digital asset exchange. AAX Token (AAB) is an integral part of AAX, providing special benefits to users, and a means to be part of the growth of the exchange.", + "website": "https://aab.aax.com/", + "explorer": "https://etherscan.io/token/0x686C650dbcFEaa75D09B883621Ad810F5952bD5d", + "status": "active", + "id": "0x686C650dbcFEaa75D09B883621Ad810F5952bD5d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x686C650dbcFEaa75D09B883621Ad810F5952bD5d/logo.png b/blockchains/ethereum/assets/0x686C650dbcFEaa75D09B883621Ad810F5952bD5d/logo.png new file mode 100644 index 00000000..b72fdf34 Binary files /dev/null and b/blockchains/ethereum/assets/0x686C650dbcFEaa75D09B883621Ad810F5952bD5d/logo.png differ diff --git a/blockchains/ethereum/assets/0x687174f8C49ceb7729D925C3A961507ea4Ac7b28/info.json b/blockchains/ethereum/assets/0x687174f8C49ceb7729D925C3A961507ea4Ac7b28/info.json new file mode 100644 index 00000000..3e6094eb --- /dev/null +++ b/blockchains/ethereum/assets/0x687174f8C49ceb7729D925C3A961507ea4Ac7b28/info.json @@ -0,0 +1,11 @@ +{ + "name": "GAT Token", + "symbol": "GAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.gatcoin.io/", + "explorer": "https://etherscan.io/token/0x687174f8C49ceb7729D925C3A961507ea4Ac7b28", + "status": "active", + "id": "0x687174f8C49ceb7729D925C3A961507ea4Ac7b28" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x687174f8C49ceb7729D925C3A961507ea4Ac7b28/logo.png b/blockchains/ethereum/assets/0x687174f8C49ceb7729D925C3A961507ea4Ac7b28/logo.png new file mode 100644 index 00000000..2f30702e Binary files /dev/null and b/blockchains/ethereum/assets/0x687174f8C49ceb7729D925C3A961507ea4Ac7b28/logo.png differ diff --git a/blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/info.json b/blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/info.json new file mode 100644 index 00000000..bec70818 --- /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/0x68749665FF8D2d112Fa859AA293F07A622782F38/logo.png b/blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/logo.png new file mode 100644 index 00000000..d42b0263 Binary files /dev/null and b/blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/logo.png differ diff --git a/blockchains/ethereum/assets/0x687BfC3E73f6af55F0CccA8450114D107E781a0e/info.json b/blockchains/ethereum/assets/0x687BfC3E73f6af55F0CccA8450114D107E781a0e/info.json new file mode 100644 index 00000000..03b63565 --- /dev/null +++ b/blockchains/ethereum/assets/0x687BfC3E73f6af55F0CccA8450114D107E781a0e/info.json @@ -0,0 +1,11 @@ +{ + "name": "QChi", + "symbol": "QCH", + "type": "ERC20", + "decimals": 18, + "description": "Chi (Q-Chi) can be broken down to mean quantum essence of life, is attempting to harness the disruptive blockchain technology to power the marketing, health and gaming industry. ", + "website": "http://www.qchi.mobi", + "explorer": "https://etherscan.io/token/0x687BfC3E73f6af55F0CccA8450114D107E781a0e", + "status": "active", + "id": "0x687BfC3E73f6af55F0CccA8450114D107E781a0e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x687BfC3E73f6af55F0CccA8450114D107E781a0e/logo.png b/blockchains/ethereum/assets/0x687BfC3E73f6af55F0CccA8450114D107E781a0e/logo.png new file mode 100644 index 00000000..5016240b Binary files /dev/null and b/blockchains/ethereum/assets/0x687BfC3E73f6af55F0CccA8450114D107E781a0e/logo.png differ diff --git a/blockchains/ethereum/assets/0x688478f003b8D0F10b8af2122bF20378555EF958/info.json b/blockchains/ethereum/assets/0x688478f003b8D0F10b8af2122bF20378555EF958/info.json new file mode 100644 index 00000000..c88b09ab --- /dev/null +++ b/blockchains/ethereum/assets/0x688478f003b8D0F10b8af2122bF20378555EF958/info.json @@ -0,0 +1,11 @@ +{ + "name": "BolttCoin", + "symbol": "BOLTT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x688478f003b8D0F10b8af2122bF20378555EF958", + "status": "abandoned", + "id": "0x688478f003b8D0F10b8af2122bF20378555EF958" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x688478f003b8D0F10b8af2122bF20378555EF958/logo.png b/blockchains/ethereum/assets/0x688478f003b8D0F10b8af2122bF20378555EF958/logo.png new file mode 100644 index 00000000..7c5a7d11 Binary files /dev/null and b/blockchains/ethereum/assets/0x688478f003b8D0F10b8af2122bF20378555EF958/logo.png differ diff --git a/blockchains/ethereum/assets/0x6885Fc6a8166d6B875CC9884Ea9FCf76745F8B51/info.json b/blockchains/ethereum/assets/0x6885Fc6a8166d6B875CC9884Ea9FCf76745F8B51/info.json new file mode 100644 index 00000000..6a5f3700 --- /dev/null +++ b/blockchains/ethereum/assets/0x6885Fc6a8166d6B875CC9884Ea9FCf76745F8B51/info.json @@ -0,0 +1,11 @@ +{ + "name": "MonetChainToken", + "symbol": "MOTE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6885Fc6a8166d6B875CC9884Ea9FCf76745F8B51", + "status": "abandoned", + "id": "0x6885Fc6a8166d6B875CC9884Ea9FCf76745F8B51" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6885Fc6a8166d6B875CC9884Ea9FCf76745F8B51/logo.png b/blockchains/ethereum/assets/0x6885Fc6a8166d6B875CC9884Ea9FCf76745F8B51/logo.png new file mode 100644 index 00000000..d8375842 Binary files /dev/null and b/blockchains/ethereum/assets/0x6885Fc6a8166d6B875CC9884Ea9FCf76745F8B51/logo.png differ diff --git a/blockchains/ethereum/assets/0x6888a16eA9792c15A4DCF2f6C623D055c8eDe792/info.json b/blockchains/ethereum/assets/0x6888a16eA9792c15A4DCF2f6C623D055c8eDe792/info.json new file mode 100644 index 00000000..9fe2883d --- /dev/null +++ b/blockchains/ethereum/assets/0x6888a16eA9792c15A4DCF2f6C623D055c8eDe792/info.json @@ -0,0 +1,11 @@ +{ + "name": "Signals", + "symbol": "SIG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.spectivvr.com/", + "explorer": "https://etherscan.io/token/0x6888a16eA9792c15A4DCF2f6C623D055c8eDe792", + "status": "abandoned", + "id": "0x6888a16eA9792c15A4DCF2f6C623D055c8eDe792" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6888a16eA9792c15A4DCF2f6C623D055c8eDe792/logo.png b/blockchains/ethereum/assets/0x6888a16eA9792c15A4DCF2f6C623D055c8eDe792/logo.png new file mode 100644 index 00000000..580937ac Binary files /dev/null and b/blockchains/ethereum/assets/0x6888a16eA9792c15A4DCF2f6C623D055c8eDe792/logo.png differ diff --git a/blockchains/ethereum/assets/0x688fF43c3c19e4714f0BeB76df8Ee394207Ab411/info.json b/blockchains/ethereum/assets/0x688fF43c3c19e4714f0BeB76df8Ee394207Ab411/info.json new file mode 100644 index 00000000..f9916e1c --- /dev/null +++ b/blockchains/ethereum/assets/0x688fF43c3c19e4714f0BeB76df8Ee394207Ab411/info.json @@ -0,0 +1,11 @@ +{ + "name": "RoboAi Coin R2R", + "symbol": "R2R", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.citios.io/", + "explorer": "https://etherscan.io/token/0x688fF43c3c19e4714f0BeB76df8Ee394207Ab411", + "status": "abandoned", + "id": "0x688fF43c3c19e4714f0BeB76df8Ee394207Ab411" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x688fF43c3c19e4714f0BeB76df8Ee394207Ab411/logo.png b/blockchains/ethereum/assets/0x688fF43c3c19e4714f0BeB76df8Ee394207Ab411/logo.png new file mode 100644 index 00000000..c8694dc4 Binary files /dev/null and b/blockchains/ethereum/assets/0x688fF43c3c19e4714f0BeB76df8Ee394207Ab411/logo.png differ diff --git a/blockchains/ethereum/assets/0x68909e586eeAC8F47315e84B4c9788DD54Ef65Bb/info.json b/blockchains/ethereum/assets/0x68909e586eeAC8F47315e84B4c9788DD54Ef65Bb/info.json new file mode 100644 index 00000000..410fafc5 --- /dev/null +++ b/blockchains/ethereum/assets/0x68909e586eeAC8F47315e84B4c9788DD54Ef65Bb/info.json @@ -0,0 +1,11 @@ +{ + "name": "EvenCoin", + "symbol": "EVN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://evencoin.io", + "explorer": "https://etherscan.io/token/0x68909e586eeAC8F47315e84B4c9788DD54Ef65Bb", + "status": "abandoned", + "id": "0x68909e586eeAC8F47315e84B4c9788DD54Ef65Bb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68909e586eeAC8F47315e84B4c9788DD54Ef65Bb/logo.png b/blockchains/ethereum/assets/0x68909e586eeAC8F47315e84B4c9788DD54Ef65Bb/logo.png new file mode 100644 index 00000000..691e48ac Binary files /dev/null and b/blockchains/ethereum/assets/0x68909e586eeAC8F47315e84B4c9788DD54Ef65Bb/logo.png differ diff --git a/blockchains/ethereum/assets/0x68A118Ef45063051Eac49c7e647CE5Ace48a68a5/info.json b/blockchains/ethereum/assets/0x68A118Ef45063051Eac49c7e647CE5Ace48a68a5/info.json new file mode 100644 index 00000000..5cb477df --- /dev/null +++ b/blockchains/ethereum/assets/0x68A118Ef45063051Eac49c7e647CE5Ace48a68a5/info.json @@ -0,0 +1,12 @@ +{ + "name": "Based Money", + "website": "https://based.money", + "description": "The BASED Protocol is a DeFi game of chicken designed to shake out weak hands and yield the highest gains for those who understand the rules.", + "explorer": "https://etherscan.io/token/0x68A118Ef45063051Eac49c7e647CE5Ace48a68a5", + "dapp": "https://stake.based.money", + "type": "ERC20", + "symbol": "$BASED", + "decimals": 18, + "status": "active", + "id": "0x68A118Ef45063051Eac49c7e647CE5Ace48a68a5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68A118Ef45063051Eac49c7e647CE5Ace48a68a5/logo.png b/blockchains/ethereum/assets/0x68A118Ef45063051Eac49c7e647CE5Ace48a68a5/logo.png new file mode 100644 index 00000000..b0aa09a7 Binary files /dev/null and b/blockchains/ethereum/assets/0x68A118Ef45063051Eac49c7e647CE5Ace48a68a5/logo.png differ diff --git a/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/info.json b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/info.json new file mode 100644 index 00000000..68189ae0 --- /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 00000000..b58cc8e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/logo.png differ diff --git a/blockchains/ethereum/assets/0x68A5A07C6ef88C0C9Be41fd967CFF73Aa05dE63D/info.json b/blockchains/ethereum/assets/0x68A5A07C6ef88C0C9Be41fd967CFF73Aa05dE63D/info.json new file mode 100644 index 00000000..52205bd3 --- /dev/null +++ b/blockchains/ethereum/assets/0x68A5A07C6ef88C0C9Be41fd967CFF73Aa05dE63D/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTEApplication", + "symbol": "BTEA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x68A5A07C6ef88C0C9Be41fd967CFF73Aa05dE63D", + "status": "abandoned", + "id": "0x68A5A07C6ef88C0C9Be41fd967CFF73Aa05dE63D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68A5A07C6ef88C0C9Be41fd967CFF73Aa05dE63D/logo.png b/blockchains/ethereum/assets/0x68A5A07C6ef88C0C9Be41fd967CFF73Aa05dE63D/logo.png new file mode 100644 index 00000000..6b5d734f Binary files /dev/null and b/blockchains/ethereum/assets/0x68A5A07C6ef88C0C9Be41fd967CFF73Aa05dE63D/logo.png differ diff --git a/blockchains/ethereum/assets/0x68AA3F232dA9bdC2343465545794ef3eEa5209BD/info.json b/blockchains/ethereum/assets/0x68AA3F232dA9bdC2343465545794ef3eEa5209BD/info.json new file mode 100644 index 00000000..68a643d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x68AA3F232dA9bdC2343465545794ef3eEa5209BD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mothership Token", + "symbol": "MSP", + "type": "ERC20", + "decimals": 18, + "description": "Cryptocurrency exchange built from the ground up to support cryptocurrency traders with fiat pairs.", + "website": "https://mothership.cx/", + "explorer": "https://etherscan.io/token/0x68AA3F232dA9bdC2343465545794ef3eEa5209BD", + "status": "active", + "id": "0x68AA3F232dA9bdC2343465545794ef3eEa5209BD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68AA3F232dA9bdC2343465545794ef3eEa5209BD/logo.png b/blockchains/ethereum/assets/0x68AA3F232dA9bdC2343465545794ef3eEa5209BD/logo.png new file mode 100644 index 00000000..5d8c2fde Binary files /dev/null and b/blockchains/ethereum/assets/0x68AA3F232dA9bdC2343465545794ef3eEa5209BD/logo.png differ diff --git a/blockchains/ethereum/assets/0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E/info.json b/blockchains/ethereum/assets/0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E/info.json new file mode 100644 index 00000000..d30c37ab --- /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 00000000..d5be27ad Binary files /dev/null and b/blockchains/ethereum/assets/0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E/logo.png differ diff --git a/blockchains/ethereum/assets/0x68D3AF29a900D21d092778A9D0aa4F73B1367141/info.json b/blockchains/ethereum/assets/0x68D3AF29a900D21d092778A9D0aa4F73B1367141/info.json new file mode 100644 index 00000000..9c67f4d9 --- /dev/null +++ b/blockchains/ethereum/assets/0x68D3AF29a900D21d092778A9D0aa4F73B1367141/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bayan Token", + "symbol": "BYT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x68D3AF29a900D21d092778A9D0aa4F73B1367141", + "status": "abandoned", + "id": "0x68D3AF29a900D21d092778A9D0aa4F73B1367141" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68D3AF29a900D21d092778A9D0aa4F73B1367141/logo.png b/blockchains/ethereum/assets/0x68D3AF29a900D21d092778A9D0aa4F73B1367141/logo.png new file mode 100644 index 00000000..f4bd3657 Binary files /dev/null and b/blockchains/ethereum/assets/0x68D3AF29a900D21d092778A9D0aa4F73B1367141/logo.png differ diff --git a/blockchains/ethereum/assets/0x68EE15Cd6A76547fb5851453632fd1D4f752Ba79/info.json b/blockchains/ethereum/assets/0x68EE15Cd6A76547fb5851453632fd1D4f752Ba79/info.json new file mode 100644 index 00000000..d9db4703 --- /dev/null +++ b/blockchains/ethereum/assets/0x68EE15Cd6A76547fb5851453632fd1D4f752Ba79/info.json @@ -0,0 +1,11 @@ +{ + "name": "BULLIONXT", + "symbol": "BNXT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x68EE15Cd6A76547fb5851453632fd1D4f752Ba79", + "status": "abandoned", + "id": "0x68EE15Cd6A76547fb5851453632fd1D4f752Ba79" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68EE15Cd6A76547fb5851453632fd1D4f752Ba79/logo.png b/blockchains/ethereum/assets/0x68EE15Cd6A76547fb5851453632fd1D4f752Ba79/logo.png new file mode 100644 index 00000000..0dd7cfd2 Binary files /dev/null and b/blockchains/ethereum/assets/0x68EE15Cd6A76547fb5851453632fd1D4f752Ba79/logo.png differ diff --git a/blockchains/ethereum/assets/0x68F8b2E7B1A5841724e614758a56ADe0482F077e/info.json b/blockchains/ethereum/assets/0x68F8b2E7B1A5841724e614758a56ADe0482F077e/info.json new file mode 100644 index 00000000..5d5727f6 --- /dev/null +++ b/blockchains/ethereum/assets/0x68F8b2E7B1A5841724e614758a56ADe0482F077e/info.json @@ -0,0 +1,11 @@ +{ + "name": "LXANK", + "symbol": "LXANK", + "type": "ERC20", + "decimals": 16, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x68F8b2E7B1A5841724e614758a56ADe0482F077e", + "status": "abandoned", + "id": "0x68F8b2E7B1A5841724e614758a56ADe0482F077e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68F8b2E7B1A5841724e614758a56ADe0482F077e/logo.png b/blockchains/ethereum/assets/0x68F8b2E7B1A5841724e614758a56ADe0482F077e/logo.png new file mode 100644 index 00000000..73eba7aa Binary files /dev/null and b/blockchains/ethereum/assets/0x68F8b2E7B1A5841724e614758a56ADe0482F077e/logo.png differ diff --git a/blockchains/ethereum/assets/0x68a3637bA6E75c0f66B61A42639c4e9fCD3D4824/info.json b/blockchains/ethereum/assets/0x68a3637bA6E75c0f66B61A42639c4e9fCD3D4824/info.json new file mode 100644 index 00000000..7d54183a --- /dev/null +++ b/blockchains/ethereum/assets/0x68a3637bA6E75c0f66B61A42639c4e9fCD3D4824/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoonToken", + "website": "https://moonswap.fi", + "description": "moonswap is first experiment with cross-chain migration of swapDEX .", + "explorer": "https://etherscan.io/token/0x68a3637bA6E75c0f66B61A42639c4e9fCD3D4824", + "type": "ERC20", + "symbol": "MOON", + "decimals": 18, + "status": "active", + "id": "0x68a3637bA6E75c0f66B61A42639c4e9fCD3D4824" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68a3637bA6E75c0f66B61A42639c4e9fCD3D4824/logo.png b/blockchains/ethereum/assets/0x68a3637bA6E75c0f66B61A42639c4e9fCD3D4824/logo.png new file mode 100644 index 00000000..80b27b7e Binary files /dev/null and b/blockchains/ethereum/assets/0x68a3637bA6E75c0f66B61A42639c4e9fCD3D4824/logo.png differ diff --git a/blockchains/ethereum/assets/0x68bD713Fe048FC41Eb500b198cc9297e42A8bBfb/info.json b/blockchains/ethereum/assets/0x68bD713Fe048FC41Eb500b198cc9297e42A8bBfb/info.json new file mode 100644 index 00000000..d1bcec84 --- /dev/null +++ b/blockchains/ethereum/assets/0x68bD713Fe048FC41Eb500b198cc9297e42A8bBfb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lottery Pools", + "symbol": "PLOTO", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x68bD713Fe048FC41Eb500b198cc9297e42A8bBfb", + "status": "abandoned", + "id": "0x68bD713Fe048FC41Eb500b198cc9297e42A8bBfb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68bD713Fe048FC41Eb500b198cc9297e42A8bBfb/logo.png b/blockchains/ethereum/assets/0x68bD713Fe048FC41Eb500b198cc9297e42A8bBfb/logo.png new file mode 100644 index 00000000..a9c09cb8 Binary files /dev/null and b/blockchains/ethereum/assets/0x68bD713Fe048FC41Eb500b198cc9297e42A8bBfb/logo.png differ diff --git a/blockchains/ethereum/assets/0x68d57c9a1C35f63E2c83eE8e49A64e9d70528D25/info.json b/blockchains/ethereum/assets/0x68d57c9a1C35f63E2c83eE8e49A64e9d70528D25/info.json new file mode 100644 index 00000000..b82df75e --- /dev/null +++ b/blockchains/ethereum/assets/0x68d57c9a1C35f63E2c83eE8e49A64e9d70528D25/info.json @@ -0,0 +1,11 @@ +{ + "name": "SIRIN", + "symbol": "SRN", + "type": "ERC20", + "decimals": 18, + "description": "Blockchain Smartphone.", + "website": "https://www.sirinlabs.com", + "explorer": "https://etherscan.io/token/0x68d57c9a1C35f63E2c83eE8e49A64e9d70528D25", + "status": "active", + "id": "0x68d57c9a1C35f63E2c83eE8e49A64e9d70528D25" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68d57c9a1C35f63E2c83eE8e49A64e9d70528D25/logo.png b/blockchains/ethereum/assets/0x68d57c9a1C35f63E2c83eE8e49A64e9d70528D25/logo.png new file mode 100755 index 00000000..fe5185c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x68d57c9a1C35f63E2c83eE8e49A64e9d70528D25/logo.png differ diff --git a/blockchains/ethereum/assets/0x68e14bb5A45B9681327E16E528084B9d962C1a39/info.json b/blockchains/ethereum/assets/0x68e14bb5A45B9681327E16E528084B9d962C1a39/info.json new file mode 100644 index 00000000..b9c1ba6e --- /dev/null +++ b/blockchains/ethereum/assets/0x68e14bb5A45B9681327E16E528084B9d962C1a39/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitClave - Consumer Activity Token", + "symbol": "CAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x68e14bb5A45B9681327E16E528084B9d962C1a39", + "status": "abandoned", + "id": "0x68e14bb5A45B9681327E16E528084B9d962C1a39" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68e14bb5A45B9681327E16E528084B9d962C1a39/logo.png b/blockchains/ethereum/assets/0x68e14bb5A45B9681327E16E528084B9d962C1a39/logo.png new file mode 100644 index 00000000..c38e542a Binary files /dev/null and b/blockchains/ethereum/assets/0x68e14bb5A45B9681327E16E528084B9d962C1a39/logo.png differ diff --git a/blockchains/ethereum/assets/0x68eb95Dc9934E19B86687A10DF8e364423240E94/info.json b/blockchains/ethereum/assets/0x68eb95Dc9934E19B86687A10DF8e364423240E94/info.json new file mode 100644 index 00000000..2a1b51ba --- /dev/null +++ b/blockchains/ethereum/assets/0x68eb95Dc9934E19B86687A10DF8e364423240E94/info.json @@ -0,0 +1,11 @@ +{ + "name": " 3X Long Bitcoin Token", + "symbol": "BULL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ftx.com/tokens/BULL", + "explorer": "https://etherscan.io/token/0x68eb95Dc9934E19B86687A10DF8e364423240E94", + "status": "abandoned", + "id": "0x68eb95Dc9934E19B86687A10DF8e364423240E94" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68eb95Dc9934E19B86687A10DF8e364423240E94/logo.png b/blockchains/ethereum/assets/0x68eb95Dc9934E19B86687A10DF8e364423240E94/logo.png new file mode 100644 index 00000000..36d37c8b Binary files /dev/null and b/blockchains/ethereum/assets/0x68eb95Dc9934E19B86687A10DF8e364423240E94/logo.png differ diff --git a/blockchains/ethereum/assets/0x68f54CeF8DB7Ca1d3aC1bdd4cB56bC7A6Ec26Faa/info.json b/blockchains/ethereum/assets/0x68f54CeF8DB7Ca1d3aC1bdd4cB56bC7A6Ec26Faa/info.json new file mode 100644 index 00000000..b3cc9aa8 --- /dev/null +++ b/blockchains/ethereum/assets/0x68f54CeF8DB7Ca1d3aC1bdd4cB56bC7A6Ec26Faa/info.json @@ -0,0 +1,11 @@ +{ + "name": "NanoX Coin", + "symbol": "NNX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x68f54CeF8DB7Ca1d3aC1bdd4cB56bC7A6Ec26Faa", + "status": "abandoned", + "id": "0x68f54CeF8DB7Ca1d3aC1bdd4cB56bC7A6Ec26Faa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68f54CeF8DB7Ca1d3aC1bdd4cB56bC7A6Ec26Faa/logo.png b/blockchains/ethereum/assets/0x68f54CeF8DB7Ca1d3aC1bdd4cB56bC7A6Ec26Faa/logo.png new file mode 100644 index 00000000..55c737d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x68f54CeF8DB7Ca1d3aC1bdd4cB56bC7A6Ec26Faa/logo.png differ diff --git a/blockchains/ethereum/assets/0x6911270D4BC1915744AEdd785d41D44f47245BD0/info.json b/blockchains/ethereum/assets/0x6911270D4BC1915744AEdd785d41D44f47245BD0/info.json new file mode 100644 index 00000000..14c9e907 --- /dev/null +++ b/blockchains/ethereum/assets/0x6911270D4BC1915744AEdd785d41D44f47245BD0/info.json @@ -0,0 +1,11 @@ +{ + "name": "QPay", + "symbol": "QPY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://qpay.group/", + "explorer": "https://etherscan.io/token/0x6911270D4BC1915744AEdd785d41D44f47245BD0", + "status": "abandoned", + "id": "0x6911270D4BC1915744AEdd785d41D44f47245BD0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6911270D4BC1915744AEdd785d41D44f47245BD0/logo.png b/blockchains/ethereum/assets/0x6911270D4BC1915744AEdd785d41D44f47245BD0/logo.png new file mode 100644 index 00000000..512e31b9 Binary files /dev/null and b/blockchains/ethereum/assets/0x6911270D4BC1915744AEdd785d41D44f47245BD0/logo.png differ diff --git a/blockchains/ethereum/assets/0x6913cCabBC337F0ea7b4109dd8200D61c704D332/info.json b/blockchains/ethereum/assets/0x6913cCabBC337F0ea7b4109dd8200D61c704D332/info.json new file mode 100644 index 00000000..9765ba9e --- /dev/null +++ b/blockchains/ethereum/assets/0x6913cCabBC337F0ea7b4109dd8200D61c704D332/info.json @@ -0,0 +1,11 @@ +{ + "name": "Asac Coin", + "symbol": "ASAC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://asaccoin.com/", + "explorer": "https://etherscan.io/token/0x6913cCabBC337F0ea7b4109dd8200D61c704D332", + "status": "abandoned", + "id": "0x6913cCabBC337F0ea7b4109dd8200D61c704D332" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6913cCabBC337F0ea7b4109dd8200D61c704D332/logo.png b/blockchains/ethereum/assets/0x6913cCabBC337F0ea7b4109dd8200D61c704D332/logo.png new file mode 100644 index 00000000..6035d9f6 Binary files /dev/null and b/blockchains/ethereum/assets/0x6913cCabBC337F0ea7b4109dd8200D61c704D332/logo.png differ diff --git a/blockchains/ethereum/assets/0x691b126cF619707Ed5d16CaB1B27C000aa8De300/info.json b/blockchains/ethereum/assets/0x691b126cF619707Ed5d16CaB1B27C000aa8De300/info.json new file mode 100644 index 00000000..29cacbf3 --- /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 00000000..fd46efcd Binary files /dev/null and b/blockchains/ethereum/assets/0x691b126cF619707Ed5d16CaB1B27C000aa8De300/logo.png differ diff --git a/blockchains/ethereum/assets/0x691c25C461DaFC47792b6E4d674FBB637bca1C6F/info.json b/blockchains/ethereum/assets/0x691c25C461DaFC47792b6E4d674FBB637bca1C6F/info.json new file mode 100644 index 00000000..6bcdbf9f --- /dev/null +++ b/blockchains/ethereum/assets/0x691c25C461DaFC47792b6E4d674FBB637bca1C6F/info.json @@ -0,0 +1,11 @@ +{ + "name": "iBBT Utility Token", + "symbol": "iBBT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ibbt.io", + "explorer": "https://etherscan.io/token/0x691c25C461DaFC47792b6E4d674FBB637bca1C6F", + "status": "abandoned", + "id": "0x691c25C461DaFC47792b6E4d674FBB637bca1C6F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x691c25C461DaFC47792b6E4d674FBB637bca1C6F/logo.png b/blockchains/ethereum/assets/0x691c25C461DaFC47792b6E4d674FBB637bca1C6F/logo.png new file mode 100644 index 00000000..e5b43b1f Binary files /dev/null and b/blockchains/ethereum/assets/0x691c25C461DaFC47792b6E4d674FBB637bca1C6F/logo.png differ diff --git a/blockchains/ethereum/assets/0x6942806D1B2d5886D95cE2f04314ece8eb825833/info.json b/blockchains/ethereum/assets/0x6942806D1B2d5886D95cE2f04314ece8eb825833/info.json new file mode 100644 index 00000000..421814a8 --- /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 00000000..6f2ee6d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x6942806D1B2d5886D95cE2f04314ece8eb825833/logo.png differ diff --git a/blockchains/ethereum/assets/0x694cC11c7b749B4D19aAfE5B7543A8A7C2f14687/info.json b/blockchains/ethereum/assets/0x694cC11c7b749B4D19aAfE5B7543A8A7C2f14687/info.json new file mode 100644 index 00000000..1547e195 --- /dev/null +++ b/blockchains/ethereum/assets/0x694cC11c7b749B4D19aAfE5B7543A8A7C2f14687/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRYPTOTRADER", + "symbol": "CTT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x694cC11c7b749B4D19aAfE5B7543A8A7C2f14687", + "status": "abandoned", + "id": "0x694cC11c7b749B4D19aAfE5B7543A8A7C2f14687" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x694cC11c7b749B4D19aAfE5B7543A8A7C2f14687/logo.png b/blockchains/ethereum/assets/0x694cC11c7b749B4D19aAfE5B7543A8A7C2f14687/logo.png new file mode 100755 index 00000000..aa3a91d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x694cC11c7b749B4D19aAfE5B7543A8A7C2f14687/logo.png differ diff --git a/blockchains/ethereum/assets/0x695106Ad73f506f9D0A9650a78019A93149AE07C/info.json b/blockchains/ethereum/assets/0x695106Ad73f506f9D0A9650a78019A93149AE07C/info.json new file mode 100644 index 00000000..a5c58d61 --- /dev/null +++ b/blockchains/ethereum/assets/0x695106Ad73f506f9D0A9650a78019A93149AE07C/info.json @@ -0,0 +1,11 @@ +{ + "name": "BNS Token", + "website": "https://bitbns.com", + "description": "BNS Token is a multi-protocol utility token by Bitbns, which aims at enabling general masses to use cryptocurrency just like they use FIAT currency in day-to-day transactions.", + "explorer": "https://etherscan.io/token/0x695106Ad73f506f9D0A9650a78019A93149AE07C", + "type": "ERC20", + "symbol": "BNS", + "decimals": 8, + "status": "active", + "id": "0x695106Ad73f506f9D0A9650a78019A93149AE07C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x695106Ad73f506f9D0A9650a78019A93149AE07C/logo.png b/blockchains/ethereum/assets/0x695106Ad73f506f9D0A9650a78019A93149AE07C/logo.png new file mode 100644 index 00000000..cad2375b Binary files /dev/null and b/blockchains/ethereum/assets/0x695106Ad73f506f9D0A9650a78019A93149AE07C/logo.png differ diff --git a/blockchains/ethereum/assets/0x6956983F8B3Ce173B4AB84361AA0ad52f38D936f/info.json b/blockchains/ethereum/assets/0x6956983F8B3Ce173B4AB84361AA0ad52f38D936f/info.json new file mode 100644 index 00000000..c7c5dfae --- /dev/null +++ b/blockchains/ethereum/assets/0x6956983F8B3Ce173B4AB84361AA0ad52f38D936f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crafty Token", + "symbol": "CFTY", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6956983F8B3Ce173B4AB84361AA0ad52f38D936f", + "status": "abandoned", + "id": "0x6956983F8B3Ce173B4AB84361AA0ad52f38D936f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6956983F8B3Ce173B4AB84361AA0ad52f38D936f/logo.png b/blockchains/ethereum/assets/0x6956983F8B3Ce173B4AB84361AA0ad52f38D936f/logo.png new file mode 100644 index 00000000..8326a462 Binary files /dev/null and b/blockchains/ethereum/assets/0x6956983F8B3Ce173B4AB84361AA0ad52f38D936f/logo.png differ diff --git a/blockchains/ethereum/assets/0x695d38EB4e57E0f137e36df7c1f0f2635981246b/info.json b/blockchains/ethereum/assets/0x695d38EB4e57E0f137e36df7c1f0f2635981246b/info.json new file mode 100644 index 00000000..1ff3fc67 --- /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 00000000..ec20be5f Binary files /dev/null and b/blockchains/ethereum/assets/0x695d38EB4e57E0f137e36df7c1f0f2635981246b/logo.png differ diff --git a/blockchains/ethereum/assets/0x6961A3e9D86deD4C0c64678d538dc2359659b29E/info.json b/blockchains/ethereum/assets/0x6961A3e9D86deD4C0c64678d538dc2359659b29E/info.json new file mode 100644 index 00000000..db170057 --- /dev/null +++ b/blockchains/ethereum/assets/0x6961A3e9D86deD4C0c64678d538dc2359659b29E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Qbean", + "type": "ERC20", + "symbol": "QBC", + "decimals": 18, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0x6961a3e9d86ded4c0c64678d538dc2359659b29e", + "status": "active", + "id": "0x6961A3e9D86deD4C0c64678d538dc2359659b29E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6961A3e9D86deD4C0c64678d538dc2359659b29E/logo.png b/blockchains/ethereum/assets/0x6961A3e9D86deD4C0c64678d538dc2359659b29E/logo.png new file mode 100644 index 00000000..10a6c6f1 Binary files /dev/null and b/blockchains/ethereum/assets/0x6961A3e9D86deD4C0c64678d538dc2359659b29E/logo.png differ diff --git a/blockchains/ethereum/assets/0x69692D3345010a207b759a7D1af6fc7F38b35c5E/info.json b/blockchains/ethereum/assets/0x69692D3345010a207b759a7D1af6fc7F38b35c5E/info.json new file mode 100644 index 00000000..1766b750 --- /dev/null +++ b/blockchains/ethereum/assets/0x69692D3345010a207b759a7D1af6fc7F38b35c5E/info.json @@ -0,0 +1,11 @@ +{ + "name": "chads.vc", + "website": "https://chads.vc", + "description": "CHADS is a deflationary token utilizing a novel burn curve mechanism to create a supply-and-demand equilibrium. CHADS tokens are the centerpoint of the non-fungible-token (NFT) marketplace and Chadswap, a Polkadot cross-parachain exchange.", + "explorer": "https://etherscan.io/token/0x69692D3345010a207b759a7D1af6fc7F38b35c5E", + "type": "ERC20", + "symbol": "CHADS", + "decimals": 18, + "status": "active", + "id": "0x69692D3345010a207b759a7D1af6fc7F38b35c5E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69692D3345010a207b759a7D1af6fc7F38b35c5E/logo.png b/blockchains/ethereum/assets/0x69692D3345010a207b759a7D1af6fc7F38b35c5E/logo.png new file mode 100644 index 00000000..0e2d150b Binary files /dev/null and b/blockchains/ethereum/assets/0x69692D3345010a207b759a7D1af6fc7F38b35c5E/logo.png differ diff --git a/blockchains/ethereum/assets/0x69765C619F11bbcc5C382F9127383A2126F94138/info.json b/blockchains/ethereum/assets/0x69765C619F11bbcc5C382F9127383A2126F94138/info.json new file mode 100644 index 00000000..db457438 --- /dev/null +++ b/blockchains/ethereum/assets/0x69765C619F11bbcc5C382F9127383A2126F94138/info.json @@ -0,0 +1,11 @@ +{ + "name": "BAR Coin", + "symbol": "BAR", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x69765C619F11bbcc5C382F9127383A2126F94138", + "status": "abandoned", + "id": "0x69765C619F11bbcc5C382F9127383A2126F94138" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69765C619F11bbcc5C382F9127383A2126F94138/logo.png b/blockchains/ethereum/assets/0x69765C619F11bbcc5C382F9127383A2126F94138/logo.png new file mode 100644 index 00000000..08815116 Binary files /dev/null and b/blockchains/ethereum/assets/0x69765C619F11bbcc5C382F9127383A2126F94138/logo.png differ diff --git a/blockchains/ethereum/assets/0x697beac28B09E122C4332D163985e8a73121b97F/info.json b/blockchains/ethereum/assets/0x697beac28B09E122C4332D163985e8a73121b97F/info.json new file mode 100644 index 00000000..d497fa10 --- /dev/null +++ b/blockchains/ethereum/assets/0x697beac28B09E122C4332D163985e8a73121b97F/info.json @@ -0,0 +1,11 @@ +{ + "name": "QRL", + "symbol": "QRL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x697beac28B09E122C4332D163985e8a73121b97F", + "status": "abandoned", + "id": "0x697beac28B09E122C4332D163985e8a73121b97F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x697beac28B09E122C4332D163985e8a73121b97F/logo.png b/blockchains/ethereum/assets/0x697beac28B09E122C4332D163985e8a73121b97F/logo.png new file mode 100755 index 00000000..62eb6a65 Binary files /dev/null and b/blockchains/ethereum/assets/0x697beac28B09E122C4332D163985e8a73121b97F/logo.png differ diff --git a/blockchains/ethereum/assets/0x697eF32B4a3F5a4C39dE1cB7563f24CA7BfC5947/info.json b/blockchains/ethereum/assets/0x697eF32B4a3F5a4C39dE1cB7563f24CA7BfC5947/info.json new file mode 100644 index 00000000..74f6c485 --- /dev/null +++ b/blockchains/ethereum/assets/0x697eF32B4a3F5a4C39dE1cB7563f24CA7BfC5947/info.json @@ -0,0 +1,11 @@ +{ + "name": "Insula", + "symbol": "ISLA", + "type": "ERC20", + "decimals": 18, + "description": "Insula builds long only diversified crypto investment funds custodied securely on the blockchain and owned by investors through private key.", + "website": "https://www.insulainvestments.com", + "explorer": "https://etherscan.io/token/0x697eF32B4a3F5a4C39dE1cB7563f24CA7BfC5947", + "status": "active", + "id": "0x697eF32B4a3F5a4C39dE1cB7563f24CA7BfC5947" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x697eF32B4a3F5a4C39dE1cB7563f24CA7BfC5947/logo.png b/blockchains/ethereum/assets/0x697eF32B4a3F5a4C39dE1cB7563f24CA7BfC5947/logo.png new file mode 100644 index 00000000..b4da9c0e Binary files /dev/null and b/blockchains/ethereum/assets/0x697eF32B4a3F5a4C39dE1cB7563f24CA7BfC5947/logo.png differ diff --git a/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/info.json b/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/info.json new file mode 100644 index 00000000..24047ed4 --- /dev/null +++ b/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/info.json @@ -0,0 +1,32 @@ +{ + "name": "Pepe", + "type": "ERC20", + "symbol": "PEPE", + "decimals": 18, + "website": "https://www.pepe.vip/", + "description": "Pepe is a community based memecoin with one mission: to make memecoins great again. Made to honor the iconic meme we all know and love, Pepe is here to take reign as the most memeable memecoin in existence, fueled purely by memetic power. Pepe is for the people.", + "explorer": "https://etherscan.io/token/0x6982508145454ce325ddbe47a25d4ec3d2311933", + "status": "active", + "id": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "links": [ + { + "name": "x", + "url": "https://x.com/pepecoineth" + }, + { + "name": "telegram", + "url": "https://t.me/pepecoineth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepe/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pepe" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/logo.png b/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/logo.png new file mode 100644 index 00000000..9b4a73e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/logo.png differ diff --git a/blockchains/ethereum/assets/0x6982e4F4b6269b0FebaA60B788FedAc2518c7bcF/info.json b/blockchains/ethereum/assets/0x6982e4F4b6269b0FebaA60B788FedAc2518c7bcF/info.json new file mode 100644 index 00000000..d7b70c66 --- /dev/null +++ b/blockchains/ethereum/assets/0x6982e4F4b6269b0FebaA60B788FedAc2518c7bcF/info.json @@ -0,0 +1,11 @@ +{ + "name": "OldDriver Token", + "symbol": "ODT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6982e4F4b6269b0FebaA60B788FedAc2518c7bcF", + "status": "abandoned", + "id": "0x6982e4F4b6269b0FebaA60B788FedAc2518c7bcF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6982e4F4b6269b0FebaA60B788FedAc2518c7bcF/logo.png b/blockchains/ethereum/assets/0x6982e4F4b6269b0FebaA60B788FedAc2518c7bcF/logo.png new file mode 100644 index 00000000..89f5c49d Binary files /dev/null and b/blockchains/ethereum/assets/0x6982e4F4b6269b0FebaA60B788FedAc2518c7bcF/logo.png differ diff --git a/blockchains/ethereum/assets/0x6984337918DdDD917c36456facE3a73f1b27BC38/info.json b/blockchains/ethereum/assets/0x6984337918DdDD917c36456facE3a73f1b27BC38/info.json new file mode 100644 index 00000000..db5a846b --- /dev/null +++ b/blockchains/ethereum/assets/0x6984337918DdDD917c36456facE3a73f1b27BC38/info.json @@ -0,0 +1,11 @@ +{ + "name": "MakersProtocol", + "symbol": "MP", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6984337918DdDD917c36456facE3a73f1b27BC38", + "status": "abandoned", + "id": "0x6984337918DdDD917c36456facE3a73f1b27BC38" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6984337918DdDD917c36456facE3a73f1b27BC38/logo.png b/blockchains/ethereum/assets/0x6984337918DdDD917c36456facE3a73f1b27BC38/logo.png new file mode 100644 index 00000000..ace18518 Binary files /dev/null and b/blockchains/ethereum/assets/0x6984337918DdDD917c36456facE3a73f1b27BC38/logo.png differ diff --git a/blockchains/ethereum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/ethereum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 00000000..f7720376 --- /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 00000000..203a846c Binary files /dev/null and b/blockchains/ethereum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png differ diff --git a/blockchains/ethereum/assets/0x69948cC03f478B95283F7dbf1CE764d0fc7EC54C/info.json b/blockchains/ethereum/assets/0x69948cC03f478B95283F7dbf1CE764d0fc7EC54C/info.json new file mode 100644 index 00000000..1bbb7b16 --- /dev/null +++ b/blockchains/ethereum/assets/0x69948cC03f478B95283F7dbf1CE764d0fc7EC54C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave REN V1", + "symbol": "aREN V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave REN V1 is an interest bearing token pegged 1:1 to the underlying REN deposited in Aave V1. aREN V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x69948cC03f478B95283F7dbf1CE764d0fc7EC54C", + "status": "active", + "id": "0x69948cC03f478B95283F7dbf1CE764d0fc7EC54C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69948cC03f478B95283F7dbf1CE764d0fc7EC54C/logo.png b/blockchains/ethereum/assets/0x69948cC03f478B95283F7dbf1CE764d0fc7EC54C/logo.png new file mode 100644 index 00000000..87456b42 Binary files /dev/null and b/blockchains/ethereum/assets/0x69948cC03f478B95283F7dbf1CE764d0fc7EC54C/logo.png differ diff --git a/blockchains/ethereum/assets/0x6999d699a8210d728A9b2C34B4aD89E96cE34df8/info.json b/blockchains/ethereum/assets/0x6999d699a8210d728A9b2C34B4aD89E96cE34df8/info.json new file mode 100644 index 00000000..d687fed4 --- /dev/null +++ b/blockchains/ethereum/assets/0x6999d699a8210d728A9b2C34B4aD89E96cE34df8/info.json @@ -0,0 +1,11 @@ +{ + "name": "DD Gold", + "symbol": "DDG", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6999d699a8210d728A9b2C34B4aD89E96cE34df8", + "status": "abandoned", + "id": "0x6999d699a8210d728A9b2C34B4aD89E96cE34df8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6999d699a8210d728A9b2C34B4aD89E96cE34df8/logo.png b/blockchains/ethereum/assets/0x6999d699a8210d728A9b2C34B4aD89E96cE34df8/logo.png new file mode 100644 index 00000000..81199c2b Binary files /dev/null and b/blockchains/ethereum/assets/0x6999d699a8210d728A9b2C34B4aD89E96cE34df8/logo.png differ diff --git a/blockchains/ethereum/assets/0x69A3e8c6cF0Ff937a3F08607b6D6CB80DF8aE733/info.json b/blockchains/ethereum/assets/0x69A3e8c6cF0Ff937a3F08607b6D6CB80DF8aE733/info.json new file mode 100644 index 00000000..8ad2f1da --- /dev/null +++ b/blockchains/ethereum/assets/0x69A3e8c6cF0Ff937a3F08607b6D6CB80DF8aE733/info.json @@ -0,0 +1,11 @@ +{ + "name": "0x0000000000000000000000000000000000000000000000000000000000000000", + "symbol": "TDCash", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x69A3e8c6cF0Ff937a3F08607b6D6CB80DF8aE733", + "status": "abandoned", + "id": "0x69A3e8c6cF0Ff937a3F08607b6D6CB80DF8aE733" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69A3e8c6cF0Ff937a3F08607b6D6CB80DF8aE733/logo.png b/blockchains/ethereum/assets/0x69A3e8c6cF0Ff937a3F08607b6D6CB80DF8aE733/logo.png new file mode 100644 index 00000000..0a1eb897 Binary files /dev/null and b/blockchains/ethereum/assets/0x69A3e8c6cF0Ff937a3F08607b6D6CB80DF8aE733/logo.png differ diff --git a/blockchains/ethereum/assets/0x69A4f651f0e3aE823be95Eda4041D4eDF317eD71/info.json b/blockchains/ethereum/assets/0x69A4f651f0e3aE823be95Eda4041D4eDF317eD71/info.json new file mode 100644 index 00000000..72294990 --- /dev/null +++ b/blockchains/ethereum/assets/0x69A4f651f0e3aE823be95Eda4041D4eDF317eD71/info.json @@ -0,0 +1,11 @@ +{ + "name": "OmukX", + "symbol": "OMX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x69A4f651f0e3aE823be95Eda4041D4eDF317eD71", + "status": "abandoned", + "id": "0x69A4f651f0e3aE823be95Eda4041D4eDF317eD71" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69A4f651f0e3aE823be95Eda4041D4eDF317eD71/logo.png b/blockchains/ethereum/assets/0x69A4f651f0e3aE823be95Eda4041D4eDF317eD71/logo.png new file mode 100644 index 00000000..20c66599 Binary files /dev/null and b/blockchains/ethereum/assets/0x69A4f651f0e3aE823be95Eda4041D4eDF317eD71/logo.png differ diff --git a/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/info.json b/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/info.json new file mode 100644 index 00000000..ec59c1fa --- /dev/null +++ b/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/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://etherscan.io/token/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23", + "type": "ERC20", + "symbol": "POOLZ", + "decimals": 18, + "status": "abandoned", + "id": "0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23", + "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/0x69BEaB403438253f13b6e92Db91F7FB849258263/info.json b/blockchains/ethereum/assets/0x69BEaB403438253f13b6e92Db91F7FB849258263/info.json new file mode 100644 index 00000000..bae89190 --- /dev/null +++ b/blockchains/ethereum/assets/0x69BEaB403438253f13b6e92Db91F7FB849258263/info.json @@ -0,0 +1,11 @@ +{ + "name": "NeuroToken", + "symbol": "NTK", + "type": "ERC20", + "decimals": 18, + "description": "Through our expertise in deep learning and with our development platform, we drive breakthrough AI products from concept to market.", + "website": "https://neuromation.io", + "explorer": "https://etherscan.io/token/0x69BEaB403438253f13b6e92Db91F7FB849258263", + "status": "active", + "id": "0x69BEaB403438253f13b6e92Db91F7FB849258263" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69BEaB403438253f13b6e92Db91F7FB849258263/logo.png b/blockchains/ethereum/assets/0x69BEaB403438253f13b6e92Db91F7FB849258263/logo.png new file mode 100755 index 00000000..a97708ab Binary files /dev/null and b/blockchains/ethereum/assets/0x69BEaB403438253f13b6e92Db91F7FB849258263/logo.png differ diff --git a/blockchains/ethereum/assets/0x69DC5556A91DFab39f8D50f6FE552296F2268Dda/info.json b/blockchains/ethereum/assets/0x69DC5556A91DFab39f8D50f6FE552296F2268Dda/info.json new file mode 100644 index 00000000..7cdfc7d0 --- /dev/null +++ b/blockchains/ethereum/assets/0x69DC5556A91DFab39f8D50f6FE552296F2268Dda/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wonder", + "website": "https://wondercoin.info", + "description": "Wonder is ERC20 token that is going to become a payment method in websites and games.", + "explorer": "https://etherscan.io/token/0x69DC5556A91DFab39f8D50f6FE552296F2268Dda", + "type": "ERC20", + "symbol": "WND", + "decimals": 5, + "status": "active", + "id": "0x69DC5556A91DFab39f8D50f6FE552296F2268Dda" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69DC5556A91DFab39f8D50f6FE552296F2268Dda/logo.png b/blockchains/ethereum/assets/0x69DC5556A91DFab39f8D50f6FE552296F2268Dda/logo.png new file mode 100644 index 00000000..f9bcdbe3 Binary files /dev/null and b/blockchains/ethereum/assets/0x69DC5556A91DFab39f8D50f6FE552296F2268Dda/logo.png differ diff --git a/blockchains/ethereum/assets/0x69F64d814Aa278825997e71738120392993973A4/info.json b/blockchains/ethereum/assets/0x69F64d814Aa278825997e71738120392993973A4/info.json new file mode 100644 index 00000000..ff7ab52b --- /dev/null +++ b/blockchains/ethereum/assets/0x69F64d814Aa278825997e71738120392993973A4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crowdvilla Ownership", + "symbol": "CRV", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x69F64d814Aa278825997e71738120392993973A4", + "status": "abandoned", + "id": "0x69F64d814Aa278825997e71738120392993973A4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69F64d814Aa278825997e71738120392993973A4/logo.png b/blockchains/ethereum/assets/0x69F64d814Aa278825997e71738120392993973A4/logo.png new file mode 100644 index 00000000..71fd8e30 Binary files /dev/null and b/blockchains/ethereum/assets/0x69F64d814Aa278825997e71738120392993973A4/logo.png differ diff --git a/blockchains/ethereum/assets/0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074/info.json b/blockchains/ethereum/assets/0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074/info.json new file mode 100644 index 00000000..1e04990e --- /dev/null +++ b/blockchains/ethereum/assets/0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074/info.json @@ -0,0 +1,25 @@ +{ + "name": "Mask Network", + "website": "https://mask.io", + "description": "The portal to the new, open internet.", + "explorer": "https://etherscan.io/token/0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074", + "type": "ERC20", + "symbol": "MASK", + "decimals": 18, + "status": "active", + "id": "0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074", + "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/ethereum/assets/0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074/logo.png b/blockchains/ethereum/assets/0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074/logo.png new file mode 100644 index 00000000..a87ba04b Binary files /dev/null and b/blockchains/ethereum/assets/0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074/logo.png differ diff --git a/blockchains/ethereum/assets/0x69b148395Ce0015C13e36BFfBAd63f49EF874E03/info.json b/blockchains/ethereum/assets/0x69b148395Ce0015C13e36BFfBAd63f49EF874E03/info.json new file mode 100644 index 00000000..729c5c16 --- /dev/null +++ b/blockchains/ethereum/assets/0x69b148395Ce0015C13e36BFfBAd63f49EF874E03/info.json @@ -0,0 +1,11 @@ +{ + "name": "Data Token", + "symbol": "DTA", + "type": "ERC20", + "decimals": 18, + "description": "DATA (Decentralized AI-powered Trust Alliance) is a blockchain based digital data authentication protocol powered by AI & P2P mobile storage infrastructure.", + "website": "http://data.eco/", + "explorer": "https://etherscan.io/token/0x69b148395Ce0015C13e36BFfBAd63f49EF874E03", + "status": "active", + "id": "0x69b148395Ce0015C13e36BFfBAd63f49EF874E03" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69b148395Ce0015C13e36BFfBAd63f49EF874E03/logo.png b/blockchains/ethereum/assets/0x69b148395Ce0015C13e36BFfBAd63f49EF874E03/logo.png new file mode 100644 index 00000000..75fa92b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x69b148395Ce0015C13e36BFfBAd63f49EF874E03/logo.png differ diff --git a/blockchains/ethereum/assets/0x69b6AB6866bCeBECa2A1AFB203D210BaC57D6267/info.json b/blockchains/ethereum/assets/0x69b6AB6866bCeBECa2A1AFB203D210BaC57D6267/info.json new file mode 100644 index 00000000..cda91b77 --- /dev/null +++ b/blockchains/ethereum/assets/0x69b6AB6866bCeBECa2A1AFB203D210BaC57D6267/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockchain Accentuated Gambling System", + "symbol": "BAGS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x69b6AB6866bCeBECa2A1AFB203D210BaC57D6267", + "status": "abandoned", + "id": "0x69b6AB6866bCeBECa2A1AFB203D210BaC57D6267" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69b6AB6866bCeBECa2A1AFB203D210BaC57D6267/logo.png b/blockchains/ethereum/assets/0x69b6AB6866bCeBECa2A1AFB203D210BaC57D6267/logo.png new file mode 100644 index 00000000..65f1befd Binary files /dev/null and b/blockchains/ethereum/assets/0x69b6AB6866bCeBECa2A1AFB203D210BaC57D6267/logo.png differ diff --git a/blockchains/ethereum/assets/0x69b9e58Dcc2680cf07c66399b7E50670F7452459/info.json b/blockchains/ethereum/assets/0x69b9e58Dcc2680cf07c66399b7E50670F7452459/info.json new file mode 100644 index 00000000..f3da3f64 --- /dev/null +++ b/blockchains/ethereum/assets/0x69b9e58Dcc2680cf07c66399b7E50670F7452459/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coinverter.info", + "website": "https://coinverter.info", + "description": "Coinverter.info is a platform where you can easily see information about coin rates.", + "explorer": "https://etherscan.io/token/0x69b9e58Dcc2680cf07c66399b7E50670F7452459", + "type": "ERC20", + "symbol": "COIN", + "decimals": 18, + "status": "active", + "id": "0x69b9e58Dcc2680cf07c66399b7E50670F7452459" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69b9e58Dcc2680cf07c66399b7E50670F7452459/logo.png b/blockchains/ethereum/assets/0x69b9e58Dcc2680cf07c66399b7E50670F7452459/logo.png new file mode 100644 index 00000000..f2ce5bec Binary files /dev/null and b/blockchains/ethereum/assets/0x69b9e58Dcc2680cf07c66399b7E50670F7452459/logo.png differ diff --git a/blockchains/ethereum/assets/0x69cea718773F3ffBc9ff77dD0647F7270bF9282D/info.json b/blockchains/ethereum/assets/0x69cea718773F3ffBc9ff77dD0647F7270bF9282D/info.json new file mode 100644 index 00000000..5f02102f --- /dev/null +++ b/blockchains/ethereum/assets/0x69cea718773F3ffBc9ff77dD0647F7270bF9282D/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETU Exchange", + "symbol": "ETUex", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x69cea718773F3ffBc9ff77dD0647F7270bF9282D", + "status": "abandoned", + "id": "0x69cea718773F3ffBc9ff77dD0647F7270bF9282D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69cea718773F3ffBc9ff77dD0647F7270bF9282D/logo.png b/blockchains/ethereum/assets/0x69cea718773F3ffBc9ff77dD0647F7270bF9282D/logo.png new file mode 100644 index 00000000..4eea80c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x69cea718773F3ffBc9ff77dD0647F7270bF9282D/logo.png differ diff --git a/blockchains/ethereum/assets/0x69cf82EEAf06778aABAfE71Bc990F1937E00eDBd/info.json b/blockchains/ethereum/assets/0x69cf82EEAf06778aABAfE71Bc990F1937E00eDBd/info.json new file mode 100644 index 00000000..9af0ed9d --- /dev/null +++ b/blockchains/ethereum/assets/0x69cf82EEAf06778aABAfE71Bc990F1937E00eDBd/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg15000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x69cf82EEAf06778aABAfE71Bc990F1937E00eDBd", + "status": "abandoned", + "id": "0x69cf82EEAf06778aABAfE71Bc990F1937E00eDBd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69cf82EEAf06778aABAfE71Bc990F1937E00eDBd/logo.png b/blockchains/ethereum/assets/0x69cf82EEAf06778aABAfE71Bc990F1937E00eDBd/logo.png new file mode 100644 index 00000000..58b5241c Binary files /dev/null and b/blockchains/ethereum/assets/0x69cf82EEAf06778aABAfE71Bc990F1937E00eDBd/logo.png differ diff --git a/blockchains/ethereum/assets/0x69d2779533a4D2c780639713558B2cC98c46A9b7/info.json b/blockchains/ethereum/assets/0x69d2779533a4D2c780639713558B2cC98c46A9b7/info.json new file mode 100644 index 00000000..6c882248 --- /dev/null +++ b/blockchains/ethereum/assets/0x69d2779533a4D2c780639713558B2cC98c46A9b7/info.json @@ -0,0 +1,11 @@ +{ + "name": "VNTChain", + "symbol": "VNT", + "type": "ERC20", + "decimals": 8, + "description": "VNT Chain is built with immutable and consistent distributed ledger technology. It provides standardized data access protocols to participating organizations on various blockchains, and forms a multi-dimension data network for various applications and business models.", + "website": "http://vntchain.io", + "explorer": "https://etherscan.io/token/0x69d2779533a4D2c780639713558B2cC98c46A9b7", + "status": "active", + "id": "0x69d2779533a4D2c780639713558B2cC98c46A9b7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69d2779533a4D2c780639713558B2cC98c46A9b7/logo.png b/blockchains/ethereum/assets/0x69d2779533a4D2c780639713558B2cC98c46A9b7/logo.png new file mode 100644 index 00000000..942731ea Binary files /dev/null and b/blockchains/ethereum/assets/0x69d2779533a4D2c780639713558B2cC98c46A9b7/logo.png differ diff --git a/blockchains/ethereum/assets/0x69d3Af30c63F5bd916bBcD79b58dBc8BD16D0308/info.json b/blockchains/ethereum/assets/0x69d3Af30c63F5bd916bBcD79b58dBc8BD16D0308/info.json new file mode 100644 index 00000000..e986025f --- /dev/null +++ b/blockchains/ethereum/assets/0x69d3Af30c63F5bd916bBcD79b58dBc8BD16D0308/info.json @@ -0,0 +1,12 @@ +{ + "name": "MikeTangoBravo21", + "website": "https://openvino.exchange/MTB21", + "description": "MTB21 is a wine-backed vintage coin from Costaflores", + "explorer": "https://etherscan.io/token/0x69d3Af30c63F5bd916bBcD79b58dBc8BD16D0308", + "research": "https://wiki.costaflores.com", + "type": "ERC20", + "symbol": "MTB21", + "decimals": 18, + "status": "active", + "id": "0x69d3Af30c63F5bd916bBcD79b58dBc8BD16D0308" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69d3Af30c63F5bd916bBcD79b58dBc8BD16D0308/logo.png b/blockchains/ethereum/assets/0x69d3Af30c63F5bd916bBcD79b58dBc8BD16D0308/logo.png new file mode 100644 index 00000000..d9dab20e Binary files /dev/null and b/blockchains/ethereum/assets/0x69d3Af30c63F5bd916bBcD79b58dBc8BD16D0308/logo.png differ diff --git a/blockchains/ethereum/assets/0x69dFcf370c5ba8959acEbd0BfA229A0608961a6d/info.json b/blockchains/ethereum/assets/0x69dFcf370c5ba8959acEbd0BfA229A0608961a6d/info.json new file mode 100644 index 00000000..4469bebf --- /dev/null +++ b/blockchains/ethereum/assets/0x69dFcf370c5ba8959acEbd0BfA229A0608961a6d/info.json @@ -0,0 +1,11 @@ +{ + "name": "TokenBookCoin", + "symbol": "TBCoin", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x69dFcf370c5ba8959acEbd0BfA229A0608961a6d", + "status": "abandoned", + "id": "0x69dFcf370c5ba8959acEbd0BfA229A0608961a6d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69dFcf370c5ba8959acEbd0BfA229A0608961a6d/logo.png b/blockchains/ethereum/assets/0x69dFcf370c5ba8959acEbd0BfA229A0608961a6d/logo.png new file mode 100644 index 00000000..ce3c92cc Binary files /dev/null and b/blockchains/ethereum/assets/0x69dFcf370c5ba8959acEbd0BfA229A0608961a6d/logo.png differ diff --git a/blockchains/ethereum/assets/0x69fa0feE221AD11012BAb0FdB45d444D3D2Ce71c/info.json b/blockchains/ethereum/assets/0x69fa0feE221AD11012BAb0FdB45d444D3D2Ce71c/info.json new file mode 100644 index 00000000..3210a1f1 --- /dev/null +++ b/blockchains/ethereum/assets/0x69fa0feE221AD11012BAb0FdB45d444D3D2Ce71c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Thorstarter XRUNE Token", + "website": "https://thorstarter.org", + "description": "Thorstarter is an IDO platform and liquidity relayer for the THORChain ecosystem", + "explorer": "https://etherscan.io/token/0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c", + "type": "ERC20", + "symbol": "XRUNE", + "decimals": 18, + "status": "active", + "id": "0x69fa0feE221AD11012BAb0FdB45d444D3D2Ce71c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69fa0feE221AD11012BAb0FdB45d444D3D2Ce71c/logo.png b/blockchains/ethereum/assets/0x69fa0feE221AD11012BAb0FdB45d444D3D2Ce71c/logo.png new file mode 100644 index 00000000..5a12d21c Binary files /dev/null and b/blockchains/ethereum/assets/0x69fa0feE221AD11012BAb0FdB45d444D3D2Ce71c/logo.png differ diff --git a/blockchains/ethereum/assets/0x6A0F8F1531C76A2C57A9Cd07AD3DCf51c09d8B17/info.json b/blockchains/ethereum/assets/0x6A0F8F1531C76A2C57A9Cd07AD3DCf51c09d8B17/info.json new file mode 100644 index 00000000..f202b624 --- /dev/null +++ b/blockchains/ethereum/assets/0x6A0F8F1531C76A2C57A9Cd07AD3DCf51c09d8B17/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C573718", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6A0F8F1531C76A2C57A9Cd07AD3DCf51c09d8B17", + "status": "abandoned", + "id": "0x6A0F8F1531C76A2C57A9Cd07AD3DCf51c09d8B17" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6A0F8F1531C76A2C57A9Cd07AD3DCf51c09d8B17/logo.png b/blockchains/ethereum/assets/0x6A0F8F1531C76A2C57A9Cd07AD3DCf51c09d8B17/logo.png new file mode 100644 index 00000000..98b636b3 Binary files /dev/null and b/blockchains/ethereum/assets/0x6A0F8F1531C76A2C57A9Cd07AD3DCf51c09d8B17/logo.png differ diff --git a/blockchains/ethereum/assets/0x6A0ae448Da83d73B291A199b798D13bB2e7d664d/info.json b/blockchains/ethereum/assets/0x6A0ae448Da83d73B291A199b798D13bB2e7d664d/info.json new file mode 100644 index 00000000..e164d1ef --- /dev/null +++ b/blockchains/ethereum/assets/0x6A0ae448Da83d73B291A199b798D13bB2e7d664d/info.json @@ -0,0 +1,11 @@ +{ + "name": "World Wide Web Coin (WWW)", + "website": "https://norisk.trade", + "description": "WWW is a Stable Coin which want to sell Internet throughout the world.Backed stablecoins are subject to the same volatility and risk associated with the backing asset. If the backed stablecoin is backed in a decentralized manner, then they are relatively safe from predation, but if there is a central vault, they may be robbed, of suffer loss of confidence.", + "explorer": "https://etherscan.io/token/0x6A0ae448Da83d73B291A199b798D13bB2e7d664d", + "type": "ERC20", + "symbol": "WWW", + "decimals": 18, + "status": "active", + "id": "0x6A0ae448Da83d73B291A199b798D13bB2e7d664d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6A0ae448Da83d73B291A199b798D13bB2e7d664d/logo.png b/blockchains/ethereum/assets/0x6A0ae448Da83d73B291A199b798D13bB2e7d664d/logo.png new file mode 100644 index 00000000..eab85573 Binary files /dev/null and b/blockchains/ethereum/assets/0x6A0ae448Da83d73B291A199b798D13bB2e7d664d/logo.png differ diff --git a/blockchains/ethereum/assets/0x6A27348483D59150aE76eF4C0f3622A78B0cA698/info.json b/blockchains/ethereum/assets/0x6A27348483D59150aE76eF4C0f3622A78B0cA698/info.json new file mode 100644 index 00000000..1ea852a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x6A27348483D59150aE76eF4C0f3622A78B0cA698/info.json @@ -0,0 +1,11 @@ +{ + "name": "MetaGraphChain", + "symbol": "BKBT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.beekan.org/index_en.html#", + "explorer": "https://etherscan.io/token/0x6A27348483D59150aE76eF4C0f3622A78B0cA698", + "status": "abandoned", + "id": "0x6A27348483D59150aE76eF4C0f3622A78B0cA698" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6A27348483D59150aE76eF4C0f3622A78B0cA698/logo.png b/blockchains/ethereum/assets/0x6A27348483D59150aE76eF4C0f3622A78B0cA698/logo.png new file mode 100755 index 00000000..2140b78c Binary files /dev/null and b/blockchains/ethereum/assets/0x6A27348483D59150aE76eF4C0f3622A78B0cA698/logo.png differ diff --git a/blockchains/ethereum/assets/0x6A5A304D8b0675D74665A3162353b1F5440B23d1/info.json b/blockchains/ethereum/assets/0x6A5A304D8b0675D74665A3162353b1F5440B23d1/info.json new file mode 100644 index 00000000..de37a85a --- /dev/null +++ b/blockchains/ethereum/assets/0x6A5A304D8b0675D74665A3162353b1F5440B23d1/info.json @@ -0,0 +1,11 @@ +{ + "name": "PriorityEx", + "symbol": "PYX", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "https://www.priorityex.io", + "explorer": "https://etherscan.io/token/0x6A5A304D8b0675D74665A3162353b1F5440B23d1", + "status": "abandoned", + "id": "0x6A5A304D8b0675D74665A3162353b1F5440B23d1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6A5A304D8b0675D74665A3162353b1F5440B23d1/logo.png b/blockchains/ethereum/assets/0x6A5A304D8b0675D74665A3162353b1F5440B23d1/logo.png new file mode 100644 index 00000000..702db12f Binary files /dev/null and b/blockchains/ethereum/assets/0x6A5A304D8b0675D74665A3162353b1F5440B23d1/logo.png differ diff --git a/blockchains/ethereum/assets/0x6A6AA13393B7d1100c00a57c76c39e8B6C835041/info.json b/blockchains/ethereum/assets/0x6A6AA13393B7d1100c00a57c76c39e8B6C835041/info.json new file mode 100644 index 00000000..4a71d423 --- /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 00000000..c3d3821c 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 00000000..5f3bd0c3 --- /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 00000000..05b66f4f Binary files /dev/null and b/blockchains/ethereum/assets/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98/logo.png differ diff --git a/blockchains/ethereum/assets/0x6A943f0F37d2d811b0b89c5e845d3aC04bbcC32F/info.json b/blockchains/ethereum/assets/0x6A943f0F37d2d811b0b89c5e845d3aC04bbcC32F/info.json new file mode 100644 index 00000000..65d898f0 --- /dev/null +++ b/blockchains/ethereum/assets/0x6A943f0F37d2d811b0b89c5e845d3aC04bbcC32F/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R908627", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6A943f0F37d2d811b0b89c5e845d3aC04bbcC32F", + "status": "abandoned", + "id": "0x6A943f0F37d2d811b0b89c5e845d3aC04bbcC32F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6A943f0F37d2d811b0b89c5e845d3aC04bbcC32F/logo.png b/blockchains/ethereum/assets/0x6A943f0F37d2d811b0b89c5e845d3aC04bbcC32F/logo.png new file mode 100644 index 00000000..95ddd20d Binary files /dev/null and b/blockchains/ethereum/assets/0x6A943f0F37d2d811b0b89c5e845d3aC04bbcC32F/logo.png differ diff --git a/blockchains/ethereum/assets/0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F/info.json b/blockchains/ethereum/assets/0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F/info.json new file mode 100644 index 00000000..eac08065 --- /dev/null +++ b/blockchains/ethereum/assets/0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F/info.json @@ -0,0 +1,49 @@ +{ + "name": "ShibaDoge", + "type": "ERC20", + "symbol": "SHIBDOGE", + "decimals": 9, + "website": "https://realshibadoge.com", + "description": "The first community driven token created by Shiba & Dogecoin whales coming together for the greater good of both communities", + "explorer": "https://etherscan.io/token/0x6adb2e268de2aa1abf6578e4a8119b960e02928f", + "status": "active", + "id": "0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F", + "links": [ + { + "name": "x", + "url": "https://x.com/realshibadoge" + }, + { + "name": "telegram", + "url": "https://t.me/ShibaDoge_Portal" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.realshibadoge.com" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shibadoge/" + }, + { + "name": "github", + "url": "https://github.com/RealShibaDogeDev" + }, + { + "name": "discord", + "url": "https://discord.com/invite/realshibadoge" + }, + { + "name": "medium", + "url": "https://realshibadoge.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shibadoge" + } + ], + "tags": [ + "memes", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F/logo.png b/blockchains/ethereum/assets/0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F/logo.png new file mode 100644 index 00000000..dcae30b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F/logo.png differ diff --git a/blockchains/ethereum/assets/0x6AEF0E5A3DdD864F7FbbF5CA7Ce38852d39bF4D2/info.json b/blockchains/ethereum/assets/0x6AEF0E5A3DdD864F7FbbF5CA7Ce38852d39bF4D2/info.json new file mode 100644 index 00000000..3d2b6cb2 --- /dev/null +++ b/blockchains/ethereum/assets/0x6AEF0E5A3DdD864F7FbbF5CA7Ce38852d39bF4D2/info.json @@ -0,0 +1,11 @@ +{ + "name": "EGW Capital", + "symbol": "EGWCAP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6AEF0E5A3DdD864F7FbbF5CA7Ce38852d39bF4D2", + "status": "abandoned", + "id": "0x6AEF0E5A3DdD864F7FbbF5CA7Ce38852d39bF4D2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6AEF0E5A3DdD864F7FbbF5CA7Ce38852d39bF4D2/logo.png b/blockchains/ethereum/assets/0x6AEF0E5A3DdD864F7FbbF5CA7Ce38852d39bF4D2/logo.png new file mode 100644 index 00000000..2af72fff Binary files /dev/null and b/blockchains/ethereum/assets/0x6AEF0E5A3DdD864F7FbbF5CA7Ce38852d39bF4D2/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Aac8CB9861E42bf8259F5AbDC6aE3Ae89909E11/info.json b/blockchains/ethereum/assets/0x6Aac8CB9861E42bf8259F5AbDC6aE3Ae89909E11/info.json new file mode 100644 index 00000000..bf9cda2d --- /dev/null +++ b/blockchains/ethereum/assets/0x6Aac8CB9861E42bf8259F5AbDC6aE3Ae89909E11/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Red", + "symbol": "BTCR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://www.bitcoinred.io/", + "explorer": "https://etherscan.io/token/0x6Aac8CB9861E42bf8259F5AbDC6aE3Ae89909E11", + "status": "abandoned", + "id": "0x6Aac8CB9861E42bf8259F5AbDC6aE3Ae89909E11" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6Aac8CB9861E42bf8259F5AbDC6aE3Ae89909E11/logo.png b/blockchains/ethereum/assets/0x6Aac8CB9861E42bf8259F5AbDC6aE3Ae89909E11/logo.png new file mode 100644 index 00000000..c7aa5c49 Binary files /dev/null and b/blockchains/ethereum/assets/0x6Aac8CB9861E42bf8259F5AbDC6aE3Ae89909E11/logo.png differ diff --git a/blockchains/ethereum/assets/0x6AbA1623ea906D1164Cbb007E764eBde2514A2Ba/info.json b/blockchains/ethereum/assets/0x6AbA1623ea906D1164Cbb007E764eBde2514A2Ba/info.json new file mode 100644 index 00000000..b88df58a --- /dev/null +++ b/blockchains/ethereum/assets/0x6AbA1623ea906D1164Cbb007E764eBde2514A2Ba/info.json @@ -0,0 +1,11 @@ +{ + "name": "App Alliance Association", + "symbol": "AAA", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "https://aaachain.net/", + "explorer": "https://etherscan.io/token/0x6AbA1623ea906D1164Cbb007E764eBde2514A2Ba", + "status": "abandoned", + "id": "0x6AbA1623ea906D1164Cbb007E764eBde2514A2Ba" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6AbA1623ea906D1164Cbb007E764eBde2514A2Ba/logo.png b/blockchains/ethereum/assets/0x6AbA1623ea906D1164Cbb007E764eBde2514A2Ba/logo.png new file mode 100644 index 00000000..5887f27b Binary files /dev/null and b/blockchains/ethereum/assets/0x6AbA1623ea906D1164Cbb007E764eBde2514A2Ba/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Ad8804A34bFaC166e85cd28569fD299b96acd92/info.json b/blockchains/ethereum/assets/0x6Ad8804A34bFaC166e85cd28569fD299b96acd92/info.json new file mode 100644 index 00000000..8a114ee1 --- /dev/null +++ b/blockchains/ethereum/assets/0x6Ad8804A34bFaC166e85cd28569fD299b96acd92/info.json @@ -0,0 +1,11 @@ +{ + "name": "MasterMind Token", + "symbol": "MMT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6Ad8804A34bFaC166e85cd28569fD299b96acd92", + "status": "abandoned", + "id": "0x6Ad8804A34bFaC166e85cd28569fD299b96acd92" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6Ad8804A34bFaC166e85cd28569fD299b96acd92/logo.png b/blockchains/ethereum/assets/0x6Ad8804A34bFaC166e85cd28569fD299b96acd92/logo.png new file mode 100644 index 00000000..55537b0a Binary files /dev/null and b/blockchains/ethereum/assets/0x6Ad8804A34bFaC166e85cd28569fD299b96acd92/logo.png differ diff --git a/blockchains/ethereum/assets/0x6AfdE9E8732EB8fe6376aE98347e64E2895299D4/info.json b/blockchains/ethereum/assets/0x6AfdE9E8732EB8fe6376aE98347e64E2895299D4/info.json new file mode 100644 index 00000000..02f80a12 --- /dev/null +++ b/blockchains/ethereum/assets/0x6AfdE9E8732EB8fe6376aE98347e64E2895299D4/info.json @@ -0,0 +1,11 @@ +{ + "name": "$BASED", + "symbol": "$BASED", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6AfdE9E8732EB8fe6376aE98347e64E2895299D4", + "status": "abandoned", + "id": "0x6AfdE9E8732EB8fe6376aE98347e64E2895299D4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6AfdE9E8732EB8fe6376aE98347e64E2895299D4/logo.png b/blockchains/ethereum/assets/0x6AfdE9E8732EB8fe6376aE98347e64E2895299D4/logo.png new file mode 100644 index 00000000..f374811c Binary files /dev/null and b/blockchains/ethereum/assets/0x6AfdE9E8732EB8fe6376aE98347e64E2895299D4/logo.png differ diff --git a/blockchains/ethereum/assets/0x6B01c3170ae1EFEBEe1a3159172CB3F7A5ECf9E5/info.json b/blockchains/ethereum/assets/0x6B01c3170ae1EFEBEe1a3159172CB3F7A5ECf9E5/info.json new file mode 100644 index 00000000..b57eb66e --- /dev/null +++ b/blockchains/ethereum/assets/0x6B01c3170ae1EFEBEe1a3159172CB3F7A5ECf9E5/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOOTY", + "symbol": "BOOTY", + "type": "ERC20", + "decimals": 18, + "description": "Platform and payment services for the adult industry.", + "website": "https://bank.spankchain.com/", + "explorer": "https://etherscan.io/token/0x6B01c3170ae1EFEBEe1a3159172CB3F7A5ECf9E5", + "status": "active", + "id": "0x6B01c3170ae1EFEBEe1a3159172CB3F7A5ECf9E5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6B01c3170ae1EFEBEe1a3159172CB3F7A5ECf9E5/logo.png b/blockchains/ethereum/assets/0x6B01c3170ae1EFEBEe1a3159172CB3F7A5ECf9E5/logo.png new file mode 100644 index 00000000..db6dd924 Binary files /dev/null and b/blockchains/ethereum/assets/0x6B01c3170ae1EFEBEe1a3159172CB3F7A5ECf9E5/logo.png differ diff --git a/blockchains/ethereum/assets/0x6B0359f95796327475ad4F12aE4E1047c3A67fA3/info.json b/blockchains/ethereum/assets/0x6B0359f95796327475ad4F12aE4E1047c3A67fA3/info.json new file mode 100644 index 00000000..94bfdbed --- /dev/null +++ b/blockchains/ethereum/assets/0x6B0359f95796327475ad4F12aE4E1047c3A67fA3/info.json @@ -0,0 +1,11 @@ +{ + "name": "FINFINE TOKEN", + "website": "https://conin.ai/", + "description": "FinFine Tokens is the intermediary cryptocurrency for the CONIN Exchange. We build exchange activitives for cryptocurrencies and index investment funds in the crypto market.", + "explorer": "https://etherscan.io/token/0x6B0359f95796327475ad4F12aE4E1047c3A67fA3", + "type": "ERC20", + "symbol": "FFT", + "decimals": 3, + "status": "active", + "id": "0x6B0359f95796327475ad4F12aE4E1047c3A67fA3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6B0359f95796327475ad4F12aE4E1047c3A67fA3/logo.png b/blockchains/ethereum/assets/0x6B0359f95796327475ad4F12aE4E1047c3A67fA3/logo.png new file mode 100644 index 00000000..a4308cbd Binary files /dev/null and b/blockchains/ethereum/assets/0x6B0359f95796327475ad4F12aE4E1047c3A67fA3/logo.png differ diff --git a/blockchains/ethereum/assets/0x6B0FaCA7bA905a86F221CEb5CA404f605e5b3131/info.json b/blockchains/ethereum/assets/0x6B0FaCA7bA905a86F221CEb5CA404f605e5b3131/info.json new file mode 100644 index 00000000..3b27a07a --- /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 00000000..01177bca 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 00000000..dd8c34a8 --- /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 00000000..3a2b934f 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 new file mode 100644 index 00000000..f1ae40ca --- /dev/null +++ b/blockchains/ethereum/assets/0x6B175474E89094C44Da98b954EedeAC495271d0F/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://etherscan.io/token/0x6B175474E89094C44Da98b954EedeAC495271d0F", + "research": "https://research.binance.com/en/projects/dai", + "type": "ERC20", + "symbol": "DAI", + "decimals": 18, + "status": "active", + "id": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "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/ethereum/assets/0x6B175474E89094C44Da98b954EedeAC495271d0F/logo.png b/blockchains/ethereum/assets/0x6B175474E89094C44Da98b954EedeAC495271d0F/logo.png new file mode 100644 index 00000000..836fe787 Binary files /dev/null and b/blockchains/ethereum/assets/0x6B175474E89094C44Da98b954EedeAC495271d0F/logo.png differ diff --git a/blockchains/ethereum/assets/0x6B2bAB5E4b9Bc9592636c16bC4e5e07eF076cD6d/info.json b/blockchains/ethereum/assets/0x6B2bAB5E4b9Bc9592636c16bC4e5e07eF076cD6d/info.json new file mode 100644 index 00000000..d91a22b2 --- /dev/null +++ b/blockchains/ethereum/assets/0x6B2bAB5E4b9Bc9592636c16bC4e5e07eF076cD6d/info.json @@ -0,0 +1,11 @@ +{ + "name": "MP Shield", + "symbol": "SLD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6B2bAB5E4b9Bc9592636c16bC4e5e07eF076cD6d", + "status": "abandoned", + "id": "0x6B2bAB5E4b9Bc9592636c16bC4e5e07eF076cD6d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6B2bAB5E4b9Bc9592636c16bC4e5e07eF076cD6d/logo.png b/blockchains/ethereum/assets/0x6B2bAB5E4b9Bc9592636c16bC4e5e07eF076cD6d/logo.png new file mode 100644 index 00000000..e92993f9 Binary files /dev/null and b/blockchains/ethereum/assets/0x6B2bAB5E4b9Bc9592636c16bC4e5e07eF076cD6d/logo.png differ diff --git a/blockchains/ethereum/assets/0x6B3595068778DD592e39A122f4f5a5cF09C90fE2/info.json b/blockchains/ethereum/assets/0x6B3595068778DD592e39A122f4f5a5cF09C90fE2/info.json new file mode 100644 index 00000000..4f61a1c5 --- /dev/null +++ b/blockchains/ethereum/assets/0x6B3595068778DD592e39A122f4f5a5cF09C90fE2/info.json @@ -0,0 +1,31 @@ +{ + "name": "SushiSwap", + "website": "https://sushiswap.fi", + "description": "SushiSwap claims to be an evolution of #Uniswap with $SUSHI tokenomics.", + "explorer": "https://etherscan.io/token/0x6B3595068778DD592e39A122f4f5a5cF09C90fE2", + "research": "", + "type": "ERC20", + "symbol": "SUSHI", + "decimals": 18, + "status": "active", + "id": "0x6B3595068778DD592e39A122f4f5a5cF09C90fE2", + "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/ethereum/assets/0x6B3595068778DD592e39A122f4f5a5cF09C90fE2/logo.png b/blockchains/ethereum/assets/0x6B3595068778DD592e39A122f4f5a5cF09C90fE2/logo.png new file mode 100644 index 00000000..37523b87 Binary files /dev/null and b/blockchains/ethereum/assets/0x6B3595068778DD592e39A122f4f5a5cF09C90fE2/logo.png differ diff --git a/blockchains/ethereum/assets/0x6B4c7A5e3f0B99FCD83e9c089BDDD6c7FCe5c611/info.json b/blockchains/ethereum/assets/0x6B4c7A5e3f0B99FCD83e9c089BDDD6c7FCe5c611/info.json new file mode 100644 index 00000000..4bcd3df0 --- /dev/null +++ b/blockchains/ethereum/assets/0x6B4c7A5e3f0B99FCD83e9c089BDDD6c7FCe5c611/info.json @@ -0,0 +1,11 @@ +{ + "name": "Million", + "website": "https://milliontoken.org", + "description": "Million is a digital currency with 1,000,000 total supply. https://milliontoken.org", + "explorer": "https://etherscan.io/token/0x6B4c7A5e3f0B99FCD83e9c089BDDD6c7FCe5c611", + "type": "ERC20", + "symbol": "MM", + "decimals": 18, + "status": "active", + "id": "0x6B4c7A5e3f0B99FCD83e9c089BDDD6c7FCe5c611" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6B4c7A5e3f0B99FCD83e9c089BDDD6c7FCe5c611/logo.png b/blockchains/ethereum/assets/0x6B4c7A5e3f0B99FCD83e9c089BDDD6c7FCe5c611/logo.png new file mode 100644 index 00000000..20b89158 Binary files /dev/null and b/blockchains/ethereum/assets/0x6B4c7A5e3f0B99FCD83e9c089BDDD6c7FCe5c611/logo.png differ diff --git a/blockchains/ethereum/assets/0x6B9f031D718dDed0d681c20cB754F97b3BB81b78/info.json b/blockchains/ethereum/assets/0x6B9f031D718dDed0d681c20cB754F97b3BB81b78/info.json new file mode 100644 index 00000000..5a4ddafb --- /dev/null +++ b/blockchains/ethereum/assets/0x6B9f031D718dDed0d681c20cB754F97b3BB81b78/info.json @@ -0,0 +1,26 @@ +{ + "name": "Geeq", + "website": "https://geeq.io", + "description": "Geeq is based on a new blockchain consensus protocol called Proof of Honesty(PoH). PoH empowers users who hold tokens on the platform to determine for themselves whether the network of validating nodes is behaving honestly. This allows Geeq to provide 99% Byzantine Fault Tolerance (BFT) while delivering rapid transaction finality at extremely low transactions cost.", + "explorer": "https://etherscan.io/token/0x6B9f031D718dDed0d681c20cB754F97b3BB81b78", + "research": "https://www.coingecko.com/en/coins/geeq", + "type": "ERC20", + "symbol": "GEEQ", + "decimals": 18, + "status": "active", + "id": "0x6B9f031D718dDed0d681c20cB754F97b3BB81b78", + "links": [ + { + "name": "github", + "url": "https://github.com/geeq-token" + }, + { + "name": "x", + "url": "https://x.com/Geeq" + }, + { + "name": "whitepaper", + "url": "https://geeq.io/geeq-white-paper-2/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6B9f031D718dDed0d681c20cB754F97b3BB81b78/logo.png b/blockchains/ethereum/assets/0x6B9f031D718dDed0d681c20cB754F97b3BB81b78/logo.png new file mode 100644 index 00000000..e568344c Binary files /dev/null and b/blockchains/ethereum/assets/0x6B9f031D718dDed0d681c20cB754F97b3BB81b78/logo.png differ diff --git a/blockchains/ethereum/assets/0x6BDA8ad4D771e628C2Ea7481b4591236bA01A864/info.json b/blockchains/ethereum/assets/0x6BDA8ad4D771e628C2Ea7481b4591236bA01A864/info.json new file mode 100644 index 00000000..1e58a399 --- /dev/null +++ b/blockchains/ethereum/assets/0x6BDA8ad4D771e628C2Ea7481b4591236bA01A864/info.json @@ -0,0 +1,11 @@ +{ + "name": "INFWEE", + "symbol": "INFWEE", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6BDA8ad4D771e628C2Ea7481b4591236bA01A864", + "status": "abandoned", + "id": "0x6BDA8ad4D771e628C2Ea7481b4591236bA01A864" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6BDA8ad4D771e628C2Ea7481b4591236bA01A864/logo.png b/blockchains/ethereum/assets/0x6BDA8ad4D771e628C2Ea7481b4591236bA01A864/logo.png new file mode 100644 index 00000000..582f18da Binary files /dev/null and b/blockchains/ethereum/assets/0x6BDA8ad4D771e628C2Ea7481b4591236bA01A864/logo.png differ diff --git a/blockchains/ethereum/assets/0x6BEB418Fc6E1958204aC8baddCf109B8E9694966/info.json b/blockchains/ethereum/assets/0x6BEB418Fc6E1958204aC8baddCf109B8E9694966/info.json new file mode 100644 index 00000000..bc94826a --- /dev/null +++ b/blockchains/ethereum/assets/0x6BEB418Fc6E1958204aC8baddCf109B8E9694966/info.json @@ -0,0 +1,11 @@ +{ + "name": "Linker Coin", + "symbol": "LNC", + "type": "ERC20", + "decimals": 18, + "description": "Collection of the systems which facilitate the inter-transaction between Linker Coin and various economic networks built on crypto-currency market, financial market, e-commerce market, etc.", + "website": "https://www.linkercoin.com/en", + "explorer": "https://etherscan.io/token/0x6BEB418Fc6E1958204aC8baddCf109B8E9694966", + "status": "active", + "id": "0x6BEB418Fc6E1958204aC8baddCf109B8E9694966" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6BEB418Fc6E1958204aC8baddCf109B8E9694966/logo.png b/blockchains/ethereum/assets/0x6BEB418Fc6E1958204aC8baddCf109B8E9694966/logo.png new file mode 100644 index 00000000..3d66a559 Binary files /dev/null and b/blockchains/ethereum/assets/0x6BEB418Fc6E1958204aC8baddCf109B8E9694966/logo.png differ diff --git a/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/info.json b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/info.json new file mode 100644 index 00000000..778a5f90 --- /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 00000000..da782d14 Binary files /dev/null and b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/logo.png differ diff --git a/blockchains/ethereum/assets/0x6BFf2fE249601ed0Db3a87424a2E923118BB0312/info.json b/blockchains/ethereum/assets/0x6BFf2fE249601ed0Db3a87424a2E923118BB0312/info.json new file mode 100644 index 00000000..480fa852 --- /dev/null +++ b/blockchains/ethereum/assets/0x6BFf2fE249601ed0Db3a87424a2E923118BB0312/info.json @@ -0,0 +1,12 @@ +{ + "name": "Fyooz", + "website": "https://fyooz.io", + "description": "When decentralized finance meets pop culture. Fyooz empowers users to invest in anything you love. It can be a artist, brand or influencer. Fyooz combines the power of Social Media with state-of-the-art Fintech solutions – in a decentralized way.", + "explorer": "https://etherscan.io/token/0x6BFf2fE249601ed0Db3a87424a2E923118BB0312", + "research": "https://www.fyooz.io/wiki", + "type": "ERC20", + "symbol": "FYZ", + "decimals": 18, + "status": "active", + "id": "0x6BFf2fE249601ed0Db3a87424a2E923118BB0312" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6BFf2fE249601ed0Db3a87424a2E923118BB0312/logo.png b/blockchains/ethereum/assets/0x6BFf2fE249601ed0Db3a87424a2E923118BB0312/logo.png new file mode 100644 index 00000000..c0f4c835 Binary files /dev/null and b/blockchains/ethereum/assets/0x6BFf2fE249601ed0Db3a87424a2E923118BB0312/logo.png differ diff --git a/blockchains/ethereum/assets/0x6BFfa07a1B0ceBC474cE6833eAf2bE6326252449/info.json b/blockchains/ethereum/assets/0x6BFfa07a1B0ceBC474cE6833eAf2bE6326252449/info.json new file mode 100644 index 00000000..55c0a830 --- /dev/null +++ b/blockchains/ethereum/assets/0x6BFfa07a1B0ceBC474cE6833eAf2bE6326252449/info.json @@ -0,0 +1,11 @@ +{ + "name": "BAEPAY", + "symbol": "BAEPAY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6BFfa07a1B0ceBC474cE6833eAf2bE6326252449", + "status": "abandoned", + "id": "0x6BFfa07a1B0ceBC474cE6833eAf2bE6326252449" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6BFfa07a1B0ceBC474cE6833eAf2bE6326252449/logo.png b/blockchains/ethereum/assets/0x6BFfa07a1B0ceBC474cE6833eAf2bE6326252449/logo.png new file mode 100644 index 00000000..891dfa0d Binary files /dev/null and b/blockchains/ethereum/assets/0x6BFfa07a1B0ceBC474cE6833eAf2bE6326252449/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Ba460AB75Cd2c56343b3517ffeBA60748654D26/info.json b/blockchains/ethereum/assets/0x6Ba460AB75Cd2c56343b3517ffeBA60748654D26/info.json new file mode 100644 index 00000000..3689342f --- /dev/null +++ b/blockchains/ethereum/assets/0x6Ba460AB75Cd2c56343b3517ffeBA60748654D26/info.json @@ -0,0 +1,11 @@ +{ + "name": "UpToken", + "symbol": "UP", + "type": "ERC20", + "decimals": 8, + "description": "UpToken is designed to rapidly build a crypto ATM network where we all rise together.", + "website": "https://uptoken.org/", + "explorer": "https://etherscan.io/token/0x6Ba460AB75Cd2c56343b3517ffeBA60748654D26", + "status": "active", + "id": "0x6Ba460AB75Cd2c56343b3517ffeBA60748654D26" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6Ba460AB75Cd2c56343b3517ffeBA60748654D26/logo.png b/blockchains/ethereum/assets/0x6Ba460AB75Cd2c56343b3517ffeBA60748654D26/logo.png new file mode 100644 index 00000000..35b3249a Binary files /dev/null and b/blockchains/ethereum/assets/0x6Ba460AB75Cd2c56343b3517ffeBA60748654D26/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Bba316c48b49BD1eAc44573c5c871ff02958469/info.json b/blockchains/ethereum/assets/0x6Bba316c48b49BD1eAc44573c5c871ff02958469/info.json new file mode 100644 index 00000000..d16c9a46 --- /dev/null +++ b/blockchains/ethereum/assets/0x6Bba316c48b49BD1eAc44573c5c871ff02958469/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gas DAO", + "type": "ERC20", + "symbol": "GAS", + "decimals": 18, + "website": "https://www.gasdao.org", + "description": "A super-DAO formed with the vision of being the heartbeat and voice of the largest community of Web3 native users on the Ethereum Network.", + "explorer": "https://etherscan.io/token/0x6Bba316c48b49BD1eAc44573c5c871ff02958469", + "status": "active", + "id": "0x6Bba316c48b49BD1eAc44573c5c871ff02958469" +} diff --git a/blockchains/ethereum/assets/0x6Bba316c48b49BD1eAc44573c5c871ff02958469/logo.png b/blockchains/ethereum/assets/0x6Bba316c48b49BD1eAc44573c5c871ff02958469/logo.png new file mode 100644 index 00000000..b5b0ee40 Binary files /dev/null and b/blockchains/ethereum/assets/0x6Bba316c48b49BD1eAc44573c5c871ff02958469/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/info.json b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/info.json new file mode 100644 index 00000000..2c94a144 --- /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 00000000..bd683035 Binary files /dev/null and b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/logo.png differ diff --git a/blockchains/ethereum/assets/0x6C03106799Fedd0060804aF8f05d007b8216C5AA/info.json b/blockchains/ethereum/assets/0x6C03106799Fedd0060804aF8f05d007b8216C5AA/info.json new file mode 100644 index 00000000..fe5ea936 --- /dev/null +++ b/blockchains/ethereum/assets/0x6C03106799Fedd0060804aF8f05d007b8216C5AA/info.json @@ -0,0 +1,11 @@ +{ + "name": "DISDAT", + "symbol": "DISDAT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6C03106799Fedd0060804aF8f05d007b8216C5AA", + "status": "abandoned", + "id": "0x6C03106799Fedd0060804aF8f05d007b8216C5AA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6C03106799Fedd0060804aF8f05d007b8216C5AA/logo.png b/blockchains/ethereum/assets/0x6C03106799Fedd0060804aF8f05d007b8216C5AA/logo.png new file mode 100644 index 00000000..1e408025 Binary files /dev/null and b/blockchains/ethereum/assets/0x6C03106799Fedd0060804aF8f05d007b8216C5AA/logo.png differ diff --git a/blockchains/ethereum/assets/0x6C16119B20fa52600230F074b349dA3cb861a7e3/info.json b/blockchains/ethereum/assets/0x6C16119B20fa52600230F074b349dA3cb861a7e3/info.json new file mode 100644 index 00000000..0abe65b1 --- /dev/null +++ b/blockchains/ethereum/assets/0x6C16119B20fa52600230F074b349dA3cb861a7e3/info.json @@ -0,0 +1,45 @@ +{ + "name": "Alkemi Network DAO Token", + "website": "https://alkemi.network", + "description": "Alkemi Network is bridging CeFi to DeFi, building an institution-grade liquidity network for financial institutions and individuals to access professional DeFi and earn yields on their Ethereum-based digital assets.", + "explorer": "https://etherscan.io/token/0x6C16119B20fa52600230F074b349dA3cb861a7e3", + "type": "ERC20", + "symbol": "ALK", + "decimals": 18, + "status": "active", + "id": "0x6C16119B20fa52600230F074b349dA3cb861a7e3", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/alkemi-network-dao-token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alkemi-network-dao-token/" + }, + { + "name": "x", + "url": "https://x.com/AlkemiNetwork" + }, + { + "name": "telegram", + "url": "https://t.me/AlkemiNetwork" + }, + { + "name": "discord", + "url": "https://discord.com/invite/4pThZqCJrj" + }, + { + "name": "medium", + "url": "https://medium.com/alkemi" + }, + { + "name": "github", + "url": "https://github.com/AlkemiNetwork" + }, + { + "name": "docs", + "url": "https://docs.alkemi.network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6C16119B20fa52600230F074b349dA3cb861a7e3/logo.png b/blockchains/ethereum/assets/0x6C16119B20fa52600230F074b349dA3cb861a7e3/logo.png new file mode 100644 index 00000000..cd74254f Binary files /dev/null and b/blockchains/ethereum/assets/0x6C16119B20fa52600230F074b349dA3cb861a7e3/logo.png differ diff --git a/blockchains/ethereum/assets/0x6C2adC2073994fb2CCC5032cC2906Fa221e9B391/info.json b/blockchains/ethereum/assets/0x6C2adC2073994fb2CCC5032cC2906Fa221e9B391/info.json new file mode 100644 index 00000000..1e8aa3f1 --- /dev/null +++ b/blockchains/ethereum/assets/0x6C2adC2073994fb2CCC5032cC2906Fa221e9B391/info.json @@ -0,0 +1,11 @@ +{ + "name": "Delphy Token", + "symbol": "DPY", + "type": "ERC20", + "decimals": 18, + "description": "Delphy is a distributed, social mobile prediction market platform built on Ethereum..", + "website": "https://www.delphy.org", + "explorer": "https://etherscan.io/token/0x6C2adC2073994fb2CCC5032cC2906Fa221e9B391", + "status": "active", + "id": "0x6C2adC2073994fb2CCC5032cC2906Fa221e9B391" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6C2adC2073994fb2CCC5032cC2906Fa221e9B391/logo.png b/blockchains/ethereum/assets/0x6C2adC2073994fb2CCC5032cC2906Fa221e9B391/logo.png new file mode 100755 index 00000000..07038c99 Binary files /dev/null and b/blockchains/ethereum/assets/0x6C2adC2073994fb2CCC5032cC2906Fa221e9B391/logo.png differ diff --git a/blockchains/ethereum/assets/0x6C5024Cd4F8A59110119C56f8933403A539555EB/info.json b/blockchains/ethereum/assets/0x6C5024Cd4F8A59110119C56f8933403A539555EB/info.json new file mode 100644 index 00000000..148c5058 --- /dev/null +++ b/blockchains/ethereum/assets/0x6C5024Cd4F8A59110119C56f8933403A539555EB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave SUSD", + "symbol": "aSUSD", + "type": "ERC20", + "decimals": 18, + "description": "Aave SUSD is an interest bearing token pegged 1:1 to the underlying SUSD deposited in Aave. aSUSD accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x6C5024Cd4F8A59110119C56f8933403A539555EB", + "status": "active", + "id": "0x6C5024Cd4F8A59110119C56f8933403A539555EB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6C5024Cd4F8A59110119C56f8933403A539555EB/logo.png b/blockchains/ethereum/assets/0x6C5024Cd4F8A59110119C56f8933403A539555EB/logo.png new file mode 100644 index 00000000..f3981203 Binary files /dev/null and b/blockchains/ethereum/assets/0x6C5024Cd4F8A59110119C56f8933403A539555EB/logo.png differ diff --git a/blockchains/ethereum/assets/0x6C5A643F582408a640068Ed68443D9185Fb2b0B8/info.json b/blockchains/ethereum/assets/0x6C5A643F582408a640068Ed68443D9185Fb2b0B8/info.json new file mode 100644 index 00000000..cc62c1f7 --- /dev/null +++ b/blockchains/ethereum/assets/0x6C5A643F582408a640068Ed68443D9185Fb2b0B8/info.json @@ -0,0 +1,11 @@ +{ + "name": "EGGS", + "symbol": "EGGS", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6C5A643F582408a640068Ed68443D9185Fb2b0B8", + "status": "abandoned", + "id": "0x6C5A643F582408a640068Ed68443D9185Fb2b0B8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6C5A643F582408a640068Ed68443D9185Fb2b0B8/logo.png b/blockchains/ethereum/assets/0x6C5A643F582408a640068Ed68443D9185Fb2b0B8/logo.png new file mode 100644 index 00000000..18b0a513 Binary files /dev/null and b/blockchains/ethereum/assets/0x6C5A643F582408a640068Ed68443D9185Fb2b0B8/logo.png differ diff --git a/blockchains/ethereum/assets/0x6C8c6b02E7b2BE14d4fA6022Dfd6d75921D90E4E/info.json b/blockchains/ethereum/assets/0x6C8c6b02E7b2BE14d4fA6022Dfd6d75921D90E4E/info.json new file mode 100644 index 00000000..6813280a --- /dev/null +++ b/blockchains/ethereum/assets/0x6C8c6b02E7b2BE14d4fA6022Dfd6d75921D90E4E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Compound Basic Attention Token", + "symbol": "cBAT", + "type": "ERC20", + "decimals": 8, + "description": "Compound is an open-source protocol for algorithmic, efficient Money Markets on the Ethereum blockchain.", + "website": "https://compound.finance/", + "explorer": "https://etherscan.io/token/0x6C8c6b02E7b2BE14d4fA6022Dfd6d75921D90E4E", + "status": "active", + "id": "0x6C8c6b02E7b2BE14d4fA6022Dfd6d75921D90E4E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6C8c6b02E7b2BE14d4fA6022Dfd6d75921D90E4E/logo.png b/blockchains/ethereum/assets/0x6C8c6b02E7b2BE14d4fA6022Dfd6d75921D90E4E/logo.png new file mode 100644 index 00000000..ff67c645 Binary files /dev/null and b/blockchains/ethereum/assets/0x6C8c6b02E7b2BE14d4fA6022Dfd6d75921D90E4E/logo.png differ diff --git a/blockchains/ethereum/assets/0x6CE10f66B4D47601Be2BEd4aC20653D9b90d0759/info.json b/blockchains/ethereum/assets/0x6CE10f66B4D47601Be2BEd4aC20653D9b90d0759/info.json new file mode 100644 index 00000000..fab32dd4 --- /dev/null +++ b/blockchains/ethereum/assets/0x6CE10f66B4D47601Be2BEd4aC20653D9b90d0759/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinWithNoName", + "symbol": "CWNN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6CE10f66B4D47601Be2BEd4aC20653D9b90d0759", + "status": "abandoned", + "id": "0x6CE10f66B4D47601Be2BEd4aC20653D9b90d0759" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6CE10f66B4D47601Be2BEd4aC20653D9b90d0759/logo.png b/blockchains/ethereum/assets/0x6CE10f66B4D47601Be2BEd4aC20653D9b90d0759/logo.png new file mode 100644 index 00000000..d0eb7cb4 Binary files /dev/null and b/blockchains/ethereum/assets/0x6CE10f66B4D47601Be2BEd4aC20653D9b90d0759/logo.png differ diff --git a/blockchains/ethereum/assets/0x6CE21e5f5383c95691d243879A86A6025E0870c0/info.json b/blockchains/ethereum/assets/0x6CE21e5f5383c95691d243879A86A6025E0870c0/info.json new file mode 100644 index 00000000..dccc5fc7 --- /dev/null +++ b/blockchains/ethereum/assets/0x6CE21e5f5383c95691d243879A86A6025E0870c0/info.json @@ -0,0 +1,11 @@ +{ + "name": "HINT Token", + "symbol": "HINT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://hintchain.io/", + "explorer": "https://etherscan.io/token/0x6CE21e5f5383c95691d243879A86A6025E0870c0", + "status": "abandoned", + "id": "0x6CE21e5f5383c95691d243879A86A6025E0870c0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6CE21e5f5383c95691d243879A86A6025E0870c0/logo.png b/blockchains/ethereum/assets/0x6CE21e5f5383c95691d243879A86A6025E0870c0/logo.png new file mode 100644 index 00000000..24066340 Binary files /dev/null and b/blockchains/ethereum/assets/0x6CE21e5f5383c95691d243879A86A6025E0870c0/logo.png differ diff --git a/blockchains/ethereum/assets/0x6CbEDEc4F1ac9D874987D2769596544E0d9161ab/info.json b/blockchains/ethereum/assets/0x6CbEDEc4F1ac9D874987D2769596544E0d9161ab/info.json new file mode 100644 index 00000000..80b64f16 --- /dev/null +++ b/blockchains/ethereum/assets/0x6CbEDEc4F1ac9D874987D2769596544E0d9161ab/info.json @@ -0,0 +1,11 @@ +{ + "name": "DeepCloud", + "symbol": "DEEP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.deepcloudai.com", + "explorer": "https://etherscan.io/token/0x6CbEDEc4F1ac9D874987D2769596544E0d9161ab", + "status": "abandoned", + "id": "0x6CbEDEc4F1ac9D874987D2769596544E0d9161ab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6CbEDEc4F1ac9D874987D2769596544E0d9161ab/logo.png b/blockchains/ethereum/assets/0x6CbEDEc4F1ac9D874987D2769596544E0d9161ab/logo.png new file mode 100644 index 00000000..6611a2f2 Binary files /dev/null and b/blockchains/ethereum/assets/0x6CbEDEc4F1ac9D874987D2769596544E0d9161ab/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Ccb2AdECc8cE829F768465280586F0E04a6959c/info.json b/blockchains/ethereum/assets/0x6Ccb2AdECc8cE829F768465280586F0E04a6959c/info.json new file mode 100644 index 00000000..d96ae0c6 --- /dev/null +++ b/blockchains/ethereum/assets/0x6Ccb2AdECc8cE829F768465280586F0E04a6959c/info.json @@ -0,0 +1,11 @@ +{ + "name": "TOP TOKEN", + "symbol": "TOP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6Ccb2AdECc8cE829F768465280586F0E04a6959c", + "status": "abandoned", + "id": "0x6Ccb2AdECc8cE829F768465280586F0E04a6959c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6Ccb2AdECc8cE829F768465280586F0E04a6959c/logo.png b/blockchains/ethereum/assets/0x6Ccb2AdECc8cE829F768465280586F0E04a6959c/logo.png new file mode 100644 index 00000000..4132eb6c Binary files /dev/null and b/blockchains/ethereum/assets/0x6Ccb2AdECc8cE829F768465280586F0E04a6959c/logo.png differ diff --git a/blockchains/ethereum/assets/0x6D06095d75784e948E0F98Dd680C798bFf1aaBAf/info.json b/blockchains/ethereum/assets/0x6D06095d75784e948E0F98Dd680C798bFf1aaBAf/info.json new file mode 100644 index 00000000..0c1fc923 --- /dev/null +++ b/blockchains/ethereum/assets/0x6D06095d75784e948E0F98Dd680C798bFf1aaBAf/info.json @@ -0,0 +1,11 @@ +{ + "name": "EntropyEnergyCoin", + "symbol": "EEC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6D06095d75784e948E0F98Dd680C798bFf1aaBAf", + "status": "abandoned", + "id": "0x6D06095d75784e948E0F98Dd680C798bFf1aaBAf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6D06095d75784e948E0F98Dd680C798bFf1aaBAf/logo.png b/blockchains/ethereum/assets/0x6D06095d75784e948E0F98Dd680C798bFf1aaBAf/logo.png new file mode 100644 index 00000000..f8f490cd Binary files /dev/null and b/blockchains/ethereum/assets/0x6D06095d75784e948E0F98Dd680C798bFf1aaBAf/logo.png differ diff --git a/blockchains/ethereum/assets/0x6D45640F5D0B75280647f2F37CCD19c1167f833c/info.json b/blockchains/ethereum/assets/0x6D45640F5D0B75280647f2F37CCD19c1167f833c/info.json new file mode 100644 index 00000000..b0bb830f --- /dev/null +++ b/blockchains/ethereum/assets/0x6D45640F5D0B75280647f2F37CCD19c1167f833c/info.json @@ -0,0 +1,11 @@ +{ + "name": "FLEx Token", + "website": "https://fuzzy.one", + "description": "FLEx token is the proof of work token used as payment for contributors to the fuzzy.one solutions library and discussion board.", + "explorer": "https://etherscan.io/token/0x6D45640F5D0B75280647f2F37CCD19c1167f833c", + "type": "ERC20", + "symbol": "FLEx", + "decimals": 4, + "status": "active", + "id": "0x6D45640F5D0B75280647f2F37CCD19c1167f833c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6D45640F5D0B75280647f2F37CCD19c1167f833c/logo.png b/blockchains/ethereum/assets/0x6D45640F5D0B75280647f2F37CCD19c1167f833c/logo.png new file mode 100644 index 00000000..b65fdbae Binary files /dev/null and b/blockchains/ethereum/assets/0x6D45640F5D0B75280647f2F37CCD19c1167f833c/logo.png differ diff --git a/blockchains/ethereum/assets/0x6D5caC36c1AE39f41d52393b7a425d0A610ad9f2/info.json b/blockchains/ethereum/assets/0x6D5caC36c1AE39f41d52393b7a425d0A610ad9f2/info.json new file mode 100644 index 00000000..a3e9b226 --- /dev/null +++ b/blockchains/ethereum/assets/0x6D5caC36c1AE39f41d52393b7a425d0A610ad9f2/info.json @@ -0,0 +1,11 @@ +{ + "name": "LLToken", + "symbol": "LLT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6D5caC36c1AE39f41d52393b7a425d0A610ad9f2", + "status": "abandoned", + "id": "0x6D5caC36c1AE39f41d52393b7a425d0A610ad9f2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6D5caC36c1AE39f41d52393b7a425d0A610ad9f2/logo.png b/blockchains/ethereum/assets/0x6D5caC36c1AE39f41d52393b7a425d0A610ad9f2/logo.png new file mode 100644 index 00000000..bb2ef6ff Binary files /dev/null and b/blockchains/ethereum/assets/0x6D5caC36c1AE39f41d52393b7a425d0A610ad9f2/logo.png differ diff --git a/blockchains/ethereum/assets/0x6D5e9Ab1E1085492736615A34A229db65C382236/info.json b/blockchains/ethereum/assets/0x6D5e9Ab1E1085492736615A34A229db65C382236/info.json new file mode 100644 index 00000000..7048badc --- /dev/null +++ b/blockchains/ethereum/assets/0x6D5e9Ab1E1085492736615A34A229db65C382236/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R885794", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6D5e9Ab1E1085492736615A34A229db65C382236", + "status": "abandoned", + "id": "0x6D5e9Ab1E1085492736615A34A229db65C382236" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6D5e9Ab1E1085492736615A34A229db65C382236/logo.png b/blockchains/ethereum/assets/0x6D5e9Ab1E1085492736615A34A229db65C382236/logo.png new file mode 100644 index 00000000..bcd1816f Binary files /dev/null and b/blockchains/ethereum/assets/0x6D5e9Ab1E1085492736615A34A229db65C382236/logo.png differ diff --git a/blockchains/ethereum/assets/0x6D6166aD588314eC2ad3D7a365b23E2cA31Ba71d/info.json b/blockchains/ethereum/assets/0x6D6166aD588314eC2ad3D7a365b23E2cA31Ba71d/info.json new file mode 100644 index 00000000..938eb9de --- /dev/null +++ b/blockchains/ethereum/assets/0x6D6166aD588314eC2ad3D7a365b23E2cA31Ba71d/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITECH", + "symbol": "BTH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6D6166aD588314eC2ad3D7a365b23E2cA31Ba71d", + "status": "abandoned", + "id": "0x6D6166aD588314eC2ad3D7a365b23E2cA31Ba71d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6D6166aD588314eC2ad3D7a365b23E2cA31Ba71d/logo.png b/blockchains/ethereum/assets/0x6D6166aD588314eC2ad3D7a365b23E2cA31Ba71d/logo.png new file mode 100644 index 00000000..7e248976 Binary files /dev/null and b/blockchains/ethereum/assets/0x6D6166aD588314eC2ad3D7a365b23E2cA31Ba71d/logo.png differ diff --git a/blockchains/ethereum/assets/0x6D6506E6F438edE269877a0A720026559110B7d5/info.json b/blockchains/ethereum/assets/0x6D6506E6F438edE269877a0A720026559110B7d5/info.json new file mode 100644 index 00000000..02d93e3b --- /dev/null +++ b/blockchains/ethereum/assets/0x6D6506E6F438edE269877a0A720026559110B7d5/info.json @@ -0,0 +1,17 @@ +{ + "name": "Bonk Token", + "website": "https://bonktoken.com/", + "description": "Proof of art combined with decentralized staking", + "explorer": "https://etherscan.io/token/0x6D6506E6F438edE269877a0A720026559110B7d5", + "type": "ERC20", + "symbol": "BONK", + "decimals": 18, + "status": "active", + "id": "0x6D6506E6F438edE269877a0A720026559110B7d5", + "links": [ + { + "name": "github", + "url": "https://github.com/bonktoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6D6506E6F438edE269877a0A720026559110B7d5/logo.png b/blockchains/ethereum/assets/0x6D6506E6F438edE269877a0A720026559110B7d5/logo.png new file mode 100644 index 00000000..676446ca Binary files /dev/null and b/blockchains/ethereum/assets/0x6D6506E6F438edE269877a0A720026559110B7d5/logo.png differ diff --git a/blockchains/ethereum/assets/0x6D6CC526EB192D0bf8feabA959bAbA384C5Cf100/info.json b/blockchains/ethereum/assets/0x6D6CC526EB192D0bf8feabA959bAbA384C5Cf100/info.json new file mode 100644 index 00000000..dfbe2576 --- /dev/null +++ b/blockchains/ethereum/assets/0x6D6CC526EB192D0bf8feabA959bAbA384C5Cf100/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dreambuilder Dept.", + "symbol": "DBD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6D6CC526EB192D0bf8feabA959bAbA384C5Cf100", + "status": "abandoned", + "id": "0x6D6CC526EB192D0bf8feabA959bAbA384C5Cf100" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6D6CC526EB192D0bf8feabA959bAbA384C5Cf100/logo.png b/blockchains/ethereum/assets/0x6D6CC526EB192D0bf8feabA959bAbA384C5Cf100/logo.png new file mode 100644 index 00000000..7ad0c92b Binary files /dev/null and b/blockchains/ethereum/assets/0x6D6CC526EB192D0bf8feabA959bAbA384C5Cf100/logo.png differ diff --git a/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/info.json b/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/info.json new file mode 100644 index 00000000..58c0ef44 --- /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 00000000..0f7ec388 Binary files /dev/null and b/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/logo.png differ diff --git a/blockchains/ethereum/assets/0x6D7efEB3DF42e6075fa7Cf04E278d2D69e26a623/info.json b/blockchains/ethereum/assets/0x6D7efEB3DF42e6075fa7Cf04E278d2D69e26a623/info.json new file mode 100644 index 00000000..15585d2b --- /dev/null +++ b/blockchains/ethereum/assets/0x6D7efEB3DF42e6075fa7Cf04E278d2D69e26a623/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lucky You", + "symbol": "LKY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6D7efEB3DF42e6075fa7Cf04E278d2D69e26a623", + "status": "abandoned", + "id": "0x6D7efEB3DF42e6075fa7Cf04E278d2D69e26a623" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6D7efEB3DF42e6075fa7Cf04E278d2D69e26a623/logo.png b/blockchains/ethereum/assets/0x6D7efEB3DF42e6075fa7Cf04E278d2D69e26a623/logo.png new file mode 100644 index 00000000..b9be2d67 Binary files /dev/null and b/blockchains/ethereum/assets/0x6D7efEB3DF42e6075fa7Cf04E278d2D69e26a623/logo.png differ diff --git a/blockchains/ethereum/assets/0x6DAaf4CfCDA1605519d331D35e7A978Ee71327cf/info.json b/blockchains/ethereum/assets/0x6DAaf4CfCDA1605519d331D35e7A978Ee71327cf/info.json new file mode 100644 index 00000000..a9eb4ddb --- /dev/null +++ b/blockchains/ethereum/assets/0x6DAaf4CfCDA1605519d331D35e7A978Ee71327cf/info.json @@ -0,0 +1,11 @@ +{ + "name": " Official Made Beaver; The traditional Metis Currency", + "symbol": "MB", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://madebeaver.wordpress.com", + "explorer": "https://etherscan.io/token/0x6DAaf4CfCDA1605519d331D35e7A978Ee71327cf", + "status": "abandoned", + "id": "0x6DAaf4CfCDA1605519d331D35e7A978Ee71327cf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6DAaf4CfCDA1605519d331D35e7A978Ee71327cf/logo.png b/blockchains/ethereum/assets/0x6DAaf4CfCDA1605519d331D35e7A978Ee71327cf/logo.png new file mode 100755 index 00000000..7fa525a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x6DAaf4CfCDA1605519d331D35e7A978Ee71327cf/logo.png differ diff --git a/blockchains/ethereum/assets/0x6DCcF9C0aB71dAc26b7F7886E43a2B433806c590/info.json b/blockchains/ethereum/assets/0x6DCcF9C0aB71dAc26b7F7886E43a2B433806c590/info.json new file mode 100644 index 00000000..a9721f4d --- /dev/null +++ b/blockchains/ethereum/assets/0x6DCcF9C0aB71dAc26b7F7886E43a2B433806c590/info.json @@ -0,0 +1,11 @@ +{ + "name": "vibrant", + "symbol": "VBX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6DCcF9C0aB71dAc26b7F7886E43a2B433806c590", + "status": "abandoned", + "id": "0x6DCcF9C0aB71dAc26b7F7886E43a2B433806c590" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6DCcF9C0aB71dAc26b7F7886E43a2B433806c590/logo.png b/blockchains/ethereum/assets/0x6DCcF9C0aB71dAc26b7F7886E43a2B433806c590/logo.png new file mode 100644 index 00000000..3e55a64d Binary files /dev/null and b/blockchains/ethereum/assets/0x6DCcF9C0aB71dAc26b7F7886E43a2B433806c590/logo.png differ diff --git a/blockchains/ethereum/assets/0x6DD4e4Aad29A40eDd6A409b9c1625186C9855b4D/info.json b/blockchains/ethereum/assets/0x6DD4e4Aad29A40eDd6A409b9c1625186C9855b4D/info.json new file mode 100644 index 00000000..845bbb8d --- /dev/null +++ b/blockchains/ethereum/assets/0x6DD4e4Aad29A40eDd6A409b9c1625186C9855b4D/info.json @@ -0,0 +1,11 @@ +{ + "name": "GENE TOKEN (PARKGENE)", + "symbol": "GENE", + "type": "ERC20", + "decimals": 8, + "description": "Parkgene (GENE) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://parkgene.io", + "explorer": "https://etherscan.io/token/0x6DD4e4Aad29A40eDd6A409b9c1625186C9855b4D", + "status": "active", + "id": "0x6DD4e4Aad29A40eDd6A409b9c1625186C9855b4D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6DD4e4Aad29A40eDd6A409b9c1625186C9855b4D/logo.png b/blockchains/ethereum/assets/0x6DD4e4Aad29A40eDd6A409b9c1625186C9855b4D/logo.png new file mode 100755 index 00000000..2554c7ef Binary files /dev/null and b/blockchains/ethereum/assets/0x6DD4e4Aad29A40eDd6A409b9c1625186C9855b4D/logo.png differ diff --git a/blockchains/ethereum/assets/0x6DEA81C8171D0bA574754EF6F8b412F2Ed88c54D/info.json b/blockchains/ethereum/assets/0x6DEA81C8171D0bA574754EF6F8b412F2Ed88c54D/info.json new file mode 100644 index 00000000..1815f8c3 --- /dev/null +++ b/blockchains/ethereum/assets/0x6DEA81C8171D0bA574754EF6F8b412F2Ed88c54D/info.json @@ -0,0 +1,12 @@ +{ + "name": "LQTY Token", + "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", + "research": "https://docs.liquity.org", + "type": "ERC20", + "symbol": "LQTY", + "decimals": 18, + "status": "active", + "id": "0x6DEA81C8171D0bA574754EF6F8b412F2Ed88c54D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6DEA81C8171D0bA574754EF6F8b412F2Ed88c54D/logo.png b/blockchains/ethereum/assets/0x6DEA81C8171D0bA574754EF6F8b412F2Ed88c54D/logo.png new file mode 100644 index 00000000..3064aa03 Binary files /dev/null and b/blockchains/ethereum/assets/0x6DEA81C8171D0bA574754EF6F8b412F2Ed88c54D/logo.png differ diff --git a/blockchains/ethereum/assets/0x6DF0E641FC9847c0c6Fde39bE6253045440c14d3/info.json b/blockchains/ethereum/assets/0x6DF0E641FC9847c0c6Fde39bE6253045440c14d3/info.json new file mode 100644 index 00000000..5cd6e6f5 --- /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 00000000..dacde145 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 new file mode 100644 index 00000000..4826da20 --- /dev/null +++ b/blockchains/ethereum/assets/0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24/info.json @@ -0,0 +1,11 @@ +{ + "name": "Render Token", + "symbol": "RNDR", + "type": "ERC20", + "decimals": 18, + "description": "Distributed GPU rendering on the blockchain.", + "website": "https://rendertoken.com/", + "explorer": "https://etherscan.io/token/0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24", + "status": "active", + "id": "0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24/logo.png b/blockchains/ethereum/assets/0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24/logo.png new file mode 100755 index 00000000..eb4d727e Binary files /dev/null and b/blockchains/ethereum/assets/0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24/logo.png differ diff --git a/blockchains/ethereum/assets/0x6E10AAcb89A28d6FA0FE68790777fec7E7f01890/info.json b/blockchains/ethereum/assets/0x6E10AAcb89A28d6FA0FE68790777fec7E7f01890/info.json new file mode 100644 index 00000000..75f44f1b --- /dev/null +++ b/blockchains/ethereum/assets/0x6E10AAcb89A28d6FA0FE68790777fec7E7f01890/info.json @@ -0,0 +1,17 @@ +{ + "name": "Sav3Token", + "website": "https://sav3.org/", + "description": "SAV3 is a DAO for uncensorable on-chain information. It charges a 4% tax on transfers which is paid to liquidity providers.", + "explorer": "https://etherscan.io/token/0x6e10aacb89a28d6fa0fe68790777fec7e7f01890", + "type": "ERC20", + "symbol": "SAV3", + "decimals": 18, + "status": "active", + "id": "0x6E10AAcb89A28d6FA0FE68790777fec7E7f01890", + "links": [ + { + "name": "telegram", + "url": "https://t.me/sav3org" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6E10AAcb89A28d6FA0FE68790777fec7E7f01890/logo.png b/blockchains/ethereum/assets/0x6E10AAcb89A28d6FA0FE68790777fec7E7f01890/logo.png new file mode 100644 index 00000000..8ab3e886 Binary files /dev/null and b/blockchains/ethereum/assets/0x6E10AAcb89A28d6FA0FE68790777fec7E7f01890/logo.png differ diff --git a/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/info.json b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/info.json new file mode 100644 index 00000000..92900349 --- /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 00000000..0abe387b Binary files /dev/null and b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/logo.png differ diff --git a/blockchains/ethereum/assets/0x6E403DF62b5E5d2991519Fee1768291b1bFEEb8B/info.json b/blockchains/ethereum/assets/0x6E403DF62b5E5d2991519Fee1768291b1bFEEb8B/info.json new file mode 100644 index 00000000..9c41c694 --- /dev/null +++ b/blockchains/ethereum/assets/0x6E403DF62b5E5d2991519Fee1768291b1bFEEb8B/info.json @@ -0,0 +1,11 @@ +{ + "name": "ANNAcoin", + "symbol": "ANNA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6E403DF62b5E5d2991519Fee1768291b1bFEEb8B", + "status": "abandoned", + "id": "0x6E403DF62b5E5d2991519Fee1768291b1bFEEb8B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6E403DF62b5E5d2991519Fee1768291b1bFEEb8B/logo.png b/blockchains/ethereum/assets/0x6E403DF62b5E5d2991519Fee1768291b1bFEEb8B/logo.png new file mode 100755 index 00000000..8d17ba73 Binary files /dev/null and b/blockchains/ethereum/assets/0x6E403DF62b5E5d2991519Fee1768291b1bFEEb8B/logo.png differ diff --git a/blockchains/ethereum/assets/0x6E514DE4c2675feeb51d759977B4222Dc65556AF/info.json b/blockchains/ethereum/assets/0x6E514DE4c2675feeb51d759977B4222Dc65556AF/info.json new file mode 100644 index 00000000..3bd5a034 --- /dev/null +++ b/blockchains/ethereum/assets/0x6E514DE4c2675feeb51d759977B4222Dc65556AF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Oldtimer", + "symbol": "OLD", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://www.oldtimersoffer.com", + "explorer": "https://etherscan.io/token/0x6E514DE4c2675feeb51d759977B4222Dc65556AF", + "status": "abandoned", + "id": "0x6E514DE4c2675feeb51d759977B4222Dc65556AF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6E514DE4c2675feeb51d759977B4222Dc65556AF/logo.png b/blockchains/ethereum/assets/0x6E514DE4c2675feeb51d759977B4222Dc65556AF/logo.png new file mode 100644 index 00000000..9ee2ff14 Binary files /dev/null and b/blockchains/ethereum/assets/0x6E514DE4c2675feeb51d759977B4222Dc65556AF/logo.png differ diff --git a/blockchains/ethereum/assets/0x6E5a43DB10b04701385A34afb670E404bC7Ea597/info.json b/blockchains/ethereum/assets/0x6E5a43DB10b04701385A34afb670E404bC7Ea597/info.json new file mode 100644 index 00000000..0bc4b676 --- /dev/null +++ b/blockchains/ethereum/assets/0x6E5a43DB10b04701385A34afb670E404bC7Ea597/info.json @@ -0,0 +1,11 @@ +{ + "name": "RAKON", + "symbol": "RKN", + "type": "ERC20", + "decimals": 12, + "description": "-", + "website": "https://rakon.io/", + "explorer": "https://etherscan.io/token/0x6E5a43DB10b04701385A34afb670E404bC7Ea597", + "status": "active", + "id": "0x6E5a43DB10b04701385A34afb670E404bC7Ea597" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6E5a43DB10b04701385A34afb670E404bC7Ea597/logo.png b/blockchains/ethereum/assets/0x6E5a43DB10b04701385A34afb670E404bC7Ea597/logo.png new file mode 100644 index 00000000..c37e024c Binary files /dev/null and b/blockchains/ethereum/assets/0x6E5a43DB10b04701385A34afb670E404bC7Ea597/logo.png differ diff --git a/blockchains/ethereum/assets/0x6E605c269E0C92e70BEeB85486f1fC550f9380BD/info.json b/blockchains/ethereum/assets/0x6E605c269E0C92e70BEeB85486f1fC550f9380BD/info.json new file mode 100644 index 00000000..479b81e3 --- /dev/null +++ b/blockchains/ethereum/assets/0x6E605c269E0C92e70BEeB85486f1fC550f9380BD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Catex", + "symbol": "CATT", + "type": "ERC20", + "decimals": 18, + "description": "The Catex Token (CATT) is the native asset of the Catex exchange. Catt token holders reportedly receive dividends from the exchange and enjoy zero fee withdrawals.", + "website": "https://www.catex.io/", + "explorer": "https://etherscan.io/token/0x6E605c269E0C92e70BEeB85486f1fC550f9380BD", + "status": "active", + "id": "0x6E605c269E0C92e70BEeB85486f1fC550f9380BD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6E605c269E0C92e70BEeB85486f1fC550f9380BD/logo.png b/blockchains/ethereum/assets/0x6E605c269E0C92e70BEeB85486f1fC550f9380BD/logo.png new file mode 100644 index 00000000..714cada4 Binary files /dev/null and b/blockchains/ethereum/assets/0x6E605c269E0C92e70BEeB85486f1fC550f9380BD/logo.png differ diff --git a/blockchains/ethereum/assets/0x6E765D26388A17A6e86c49A8E41DF3F58aBcd337/info.json b/blockchains/ethereum/assets/0x6E765D26388A17A6e86c49A8E41DF3F58aBcd337/info.json new file mode 100644 index 00000000..05956554 --- /dev/null +++ b/blockchains/ethereum/assets/0x6E765D26388A17A6e86c49A8E41DF3F58aBcd337/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kangal", + "type": "ERC20", + "symbol": "KANGAL", + "decimals": 18, + "website": "https://www.kangaltoken.com", + "description": "Kangal is a DAO that is creating the ultimate dApps ecosystem. Kangal holders are able to create and vote on governance proposals, and will be able to stake Kangal and Kangal LP tokens for earning the Utility Token $TEAK of the dApps ecosystem. Kangal is available both on Ethereum and Binance Smart Chain Mainnet.", + "explorer": "https://etherscan.io/token/0x6e765d26388a17a6e86c49a8e41df3f58abcd337", + "status": "active", + "id": "0x6E765D26388A17A6e86c49A8E41DF3F58aBcd337" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6E765D26388A17A6e86c49A8E41DF3F58aBcd337/logo.png b/blockchains/ethereum/assets/0x6E765D26388A17A6e86c49A8E41DF3F58aBcd337/logo.png new file mode 100644 index 00000000..908a4865 Binary files /dev/null and b/blockchains/ethereum/assets/0x6E765D26388A17A6e86c49A8E41DF3F58aBcd337/logo.png differ diff --git a/blockchains/ethereum/assets/0x6E79B51959CF968d87826592f46f819F92466615/info.json b/blockchains/ethereum/assets/0x6E79B51959CF968d87826592f46f819F92466615/info.json new file mode 100644 index 00000000..920b471a --- /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 00000000..0814fa80 Binary files /dev/null and b/blockchains/ethereum/assets/0x6E79B51959CF968d87826592f46f819F92466615/logo.png differ diff --git a/blockchains/ethereum/assets/0x6EA53dfc58C5cbf68a799EdD208cb3A905db5939/info.json b/blockchains/ethereum/assets/0x6EA53dfc58C5cbf68a799EdD208cb3A905db5939/info.json new file mode 100644 index 00000000..7b5a8f5c --- /dev/null +++ b/blockchains/ethereum/assets/0x6EA53dfc58C5cbf68a799EdD208cb3A905db5939/info.json @@ -0,0 +1,11 @@ +{ + "name": "EthereumeRush", + "symbol": "EER", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6EA53dfc58C5cbf68a799EdD208cb3A905db5939", + "status": "abandoned", + "id": "0x6EA53dfc58C5cbf68a799EdD208cb3A905db5939" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6EA53dfc58C5cbf68a799EdD208cb3A905db5939/logo.png b/blockchains/ethereum/assets/0x6EA53dfc58C5cbf68a799EdD208cb3A905db5939/logo.png new file mode 100644 index 00000000..ff72579e Binary files /dev/null and b/blockchains/ethereum/assets/0x6EA53dfc58C5cbf68a799EdD208cb3A905db5939/logo.png differ diff --git a/blockchains/ethereum/assets/0x6EB678CcBfA5CFbea98C94510B2543e2E7E1fd44/info.json b/blockchains/ethereum/assets/0x6EB678CcBfA5CFbea98C94510B2543e2E7E1fd44/info.json new file mode 100644 index 00000000..3cfbe729 --- /dev/null +++ b/blockchains/ethereum/assets/0x6EB678CcBfA5CFbea98C94510B2543e2E7E1fd44/info.json @@ -0,0 +1,11 @@ +{ + "name": "NLC Token", + "symbol": "NLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6EB678CcBfA5CFbea98C94510B2543e2E7E1fd44", + "status": "abandoned", + "id": "0x6EB678CcBfA5CFbea98C94510B2543e2E7E1fd44" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6EB678CcBfA5CFbea98C94510B2543e2E7E1fd44/logo.png b/blockchains/ethereum/assets/0x6EB678CcBfA5CFbea98C94510B2543e2E7E1fd44/logo.png new file mode 100644 index 00000000..1a34c5ac Binary files /dev/null and b/blockchains/ethereum/assets/0x6EB678CcBfA5CFbea98C94510B2543e2E7E1fd44/logo.png differ diff --git a/blockchains/ethereum/assets/0x6EC8a24CaBdc339A06a172F8223ea557055aDAa5/info.json b/blockchains/ethereum/assets/0x6EC8a24CaBdc339A06a172F8223ea557055aDAa5/info.json new file mode 100644 index 00000000..8d5053fe --- /dev/null +++ b/blockchains/ethereum/assets/0x6EC8a24CaBdc339A06a172F8223ea557055aDAa5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Genaro X", + "symbol": "GNX", + "type": "ERC20", + "decimals": 9, + "description": "The Genaro Network is the first Turing-complete public blockchain combining peer-to-peer storage with a sustainable consensus mechanism. Genaro's mixed consensus uses SPoR and PoS, ensuring stronger performance and security.", + "website": "https://genaro.network/en", + "explorer": "https://etherscan.io/token/0x6EC8a24CaBdc339A06a172F8223ea557055aDAa5", + "status": "active", + "id": "0x6EC8a24CaBdc339A06a172F8223ea557055aDAa5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6EC8a24CaBdc339A06a172F8223ea557055aDAa5/logo.png b/blockchains/ethereum/assets/0x6EC8a24CaBdc339A06a172F8223ea557055aDAa5/logo.png new file mode 100644 index 00000000..05e864b8 Binary files /dev/null and b/blockchains/ethereum/assets/0x6EC8a24CaBdc339A06a172F8223ea557055aDAa5/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Eb53a6B9dF66A4B1D6a9fcCd6C530E1fbaCCea9/info.json b/blockchains/ethereum/assets/0x6Eb53a6B9dF66A4B1D6a9fcCd6C530E1fbaCCea9/info.json new file mode 100644 index 00000000..e8cfbd16 --- /dev/null +++ b/blockchains/ethereum/assets/0x6Eb53a6B9dF66A4B1D6a9fcCd6C530E1fbaCCea9/info.json @@ -0,0 +1,11 @@ +{ + "name": "CREDITCRYPTO", + "symbol": "CREDIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6Eb53a6B9dF66A4B1D6a9fcCd6C530E1fbaCCea9", + "status": "abandoned", + "id": "0x6Eb53a6B9dF66A4B1D6a9fcCd6C530E1fbaCCea9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6Eb53a6B9dF66A4B1D6a9fcCd6C530E1fbaCCea9/logo.png b/blockchains/ethereum/assets/0x6Eb53a6B9dF66A4B1D6a9fcCd6C530E1fbaCCea9/logo.png new file mode 100644 index 00000000..1a576870 Binary files /dev/null and b/blockchains/ethereum/assets/0x6Eb53a6B9dF66A4B1D6a9fcCd6C530E1fbaCCea9/logo.png differ diff --git a/blockchains/ethereum/assets/0x6EbeAf8e8E946F0716E6533A6f2cefc83f60e8Ab/info.json b/blockchains/ethereum/assets/0x6EbeAf8e8E946F0716E6533A6f2cefc83f60e8Ab/info.json new file mode 100644 index 00000000..95ac8003 --- /dev/null +++ b/blockchains/ethereum/assets/0x6EbeAf8e8E946F0716E6533A6f2cefc83f60e8Ab/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gods Unchained", + "symbol": "GODS", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6EbeAf8e8E946F0716E6533A6f2cefc83f60e8Ab", + "status": "abandoned", + "id": "0x6EbeAf8e8E946F0716E6533A6f2cefc83f60e8Ab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6EbeAf8e8E946F0716E6533A6f2cefc83f60e8Ab/logo.png b/blockchains/ethereum/assets/0x6EbeAf8e8E946F0716E6533A6f2cefc83f60e8Ab/logo.png new file mode 100755 index 00000000..c3d7e0df Binary files /dev/null and b/blockchains/ethereum/assets/0x6EbeAf8e8E946F0716E6533A6f2cefc83f60e8Ab/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Ee0f7BB50a54AB5253dA0667B0Dc2ee526C30a8/info.json b/blockchains/ethereum/assets/0x6Ee0f7BB50a54AB5253dA0667B0Dc2ee526C30a8/info.json new file mode 100644 index 00000000..8c7f8d8c --- /dev/null +++ b/blockchains/ethereum/assets/0x6Ee0f7BB50a54AB5253dA0667B0Dc2ee526C30a8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave BUSD V1", + "symbol": "aBUSD V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave BUSD V1 is an interest bearing token pegged 1:1 to the underlying BUSD deposited in Aave V1. aBUSD V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x6Ee0f7BB50a54AB5253dA0667B0Dc2ee526C30a8", + "status": "active", + "id": "0x6Ee0f7BB50a54AB5253dA0667B0Dc2ee526C30a8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6Ee0f7BB50a54AB5253dA0667B0Dc2ee526C30a8/logo.png b/blockchains/ethereum/assets/0x6Ee0f7BB50a54AB5253dA0667B0Dc2ee526C30a8/logo.png new file mode 100644 index 00000000..d358ca8c Binary files /dev/null and b/blockchains/ethereum/assets/0x6Ee0f7BB50a54AB5253dA0667B0Dc2ee526C30a8/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Ef5febbD2A56FAb23f18a69d3fB9F4E2A70440B/info.json b/blockchains/ethereum/assets/0x6Ef5febbD2A56FAb23f18a69d3fB9F4E2A70440B/info.json new file mode 100644 index 00000000..f0ae9806 --- /dev/null +++ b/blockchains/ethereum/assets/0x6Ef5febbD2A56FAb23f18a69d3fB9F4E2A70440B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Intercoin", + "symbol": "ITR", + "type": "ERC20", + "decimals": 18, + "description": "Building a next-gen scalable crypto payment platform.", + "website": "https://global.intercoin.org/", + "explorer": "https://etherscan.io/token/0x6Ef5febbD2A56FAb23f18a69d3fB9F4E2A70440B", + "status": "active", + "id": "0x6Ef5febbD2A56FAb23f18a69d3fB9F4E2A70440B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6Ef5febbD2A56FAb23f18a69d3fB9F4E2A70440B/logo.png b/blockchains/ethereum/assets/0x6Ef5febbD2A56FAb23f18a69d3fB9F4E2A70440B/logo.png new file mode 100644 index 00000000..448f502e Binary files /dev/null and b/blockchains/ethereum/assets/0x6Ef5febbD2A56FAb23f18a69d3fB9F4E2A70440B/logo.png differ diff --git a/blockchains/ethereum/assets/0x6F02055E3541DD74A1aBD8692116c22fFAFaDc5D/info.json b/blockchains/ethereum/assets/0x6F02055E3541DD74A1aBD8692116c22fFAFaDc5D/info.json new file mode 100644 index 00000000..268c1ef3 --- /dev/null +++ b/blockchains/ethereum/assets/0x6F02055E3541DD74A1aBD8692116c22fFAFaDc5D/info.json @@ -0,0 +1,11 @@ +{ + "name": "TBC Mart Token", + "symbol": "TMT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://tbcmartoken.store", + "explorer": "https://etherscan.io/token/0x6F02055E3541DD74A1aBD8692116c22fFAFaDc5D", + "status": "abandoned", + "id": "0x6F02055E3541DD74A1aBD8692116c22fFAFaDc5D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6F02055E3541DD74A1aBD8692116c22fFAFaDc5D/logo.png b/blockchains/ethereum/assets/0x6F02055E3541DD74A1aBD8692116c22fFAFaDc5D/logo.png new file mode 100644 index 00000000..0e3bd1d8 Binary files /dev/null and b/blockchains/ethereum/assets/0x6F02055E3541DD74A1aBD8692116c22fFAFaDc5D/logo.png differ diff --git a/blockchains/ethereum/assets/0x6F1ba97fA36A0e78d73618C6722A9b108848235C/info.json b/blockchains/ethereum/assets/0x6F1ba97fA36A0e78d73618C6722A9b108848235C/info.json new file mode 100644 index 00000000..72f39cf8 --- /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/0x6F3009663470475F0749A6b76195375f95495fcB/info.json b/blockchains/ethereum/assets/0x6F3009663470475F0749A6b76195375f95495fcB/info.json new file mode 100644 index 00000000..ded85a8e --- /dev/null +++ b/blockchains/ethereum/assets/0x6F3009663470475F0749A6b76195375f95495fcB/info.json @@ -0,0 +1,22 @@ +{ + "name": "HATCH", + "website": "https://hatchdao.finance", + "description": "HatchDAO is a universal repository for researchers and developers to experiment with various decentralized consensus protocols in DAO’s", + "explorer": "https://etherscan.io/token/0x6F3009663470475F0749A6b76195375f95495fcB", + "research": "https://etherscan.io/token/0x6f3009663470475f0749a6b76195375f95495fcb", + "type": "ERC20", + "symbol": "HATCH", + "decimals": 18, + "status": "active", + "id": "0x6F3009663470475F0749A6b76195375f95495fcB", + "links": [ + { + "name": "github", + "url": "https://github.com/HatchDAO/HatchDAO-Token" + }, + { + "name": "whitepaper", + "url": "https://pdfhost.io/v/sizGm.REJ_HatchDao_WPpdf.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6F3009663470475F0749A6b76195375f95495fcB/logo.png b/blockchains/ethereum/assets/0x6F3009663470475F0749A6b76195375f95495fcB/logo.png new file mode 100644 index 00000000..34263015 Binary files /dev/null and b/blockchains/ethereum/assets/0x6F3009663470475F0749A6b76195375f95495fcB/logo.png differ diff --git a/blockchains/ethereum/assets/0x6F371CA338bbddd0baF719E1D5d0797cCE20774f/info.json b/blockchains/ethereum/assets/0x6F371CA338bbddd0baF719E1D5d0797cCE20774f/info.json new file mode 100644 index 00000000..c535cb40 --- /dev/null +++ b/blockchains/ethereum/assets/0x6F371CA338bbddd0baF719E1D5d0797cCE20774f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Rush", + "symbol": "ETR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6F371CA338bbddd0baF719E1D5d0797cCE20774f", + "status": "abandoned", + "id": "0x6F371CA338bbddd0baF719E1D5d0797cCE20774f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6F371CA338bbddd0baF719E1D5d0797cCE20774f/logo.png b/blockchains/ethereum/assets/0x6F371CA338bbddd0baF719E1D5d0797cCE20774f/logo.png new file mode 100644 index 00000000..ff72579e Binary files /dev/null and b/blockchains/ethereum/assets/0x6F371CA338bbddd0baF719E1D5d0797cCE20774f/logo.png differ diff --git a/blockchains/ethereum/assets/0x6F52dac9dC6676BB199d0d10BbEdbF05628A554A/info.json b/blockchains/ethereum/assets/0x6F52dac9dC6676BB199d0d10BbEdbF05628A554A/info.json new file mode 100644 index 00000000..6ce86830 --- /dev/null +++ b/blockchains/ethereum/assets/0x6F52dac9dC6676BB199d0d10BbEdbF05628A554A/info.json @@ -0,0 +1,11 @@ +{ + "name": "UFC Oficial", + "symbol": "UFC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6F52dac9dC6676BB199d0d10BbEdbF05628A554A", + "status": "abandoned", + "id": "0x6F52dac9dC6676BB199d0d10BbEdbF05628A554A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6F52dac9dC6676BB199d0d10BbEdbF05628A554A/logo.png b/blockchains/ethereum/assets/0x6F52dac9dC6676BB199d0d10BbEdbF05628A554A/logo.png new file mode 100644 index 00000000..0ec848ce Binary files /dev/null and b/blockchains/ethereum/assets/0x6F52dac9dC6676BB199d0d10BbEdbF05628A554A/logo.png differ diff --git a/blockchains/ethereum/assets/0x6F6DEb5db0C4994A8283A01D6CFeEB27Fc3bBe9C/info.json b/blockchains/ethereum/assets/0x6F6DEb5db0C4994A8283A01D6CFeEB27Fc3bBe9C/info.json new file mode 100644 index 00000000..fa8647cd --- /dev/null +++ b/blockchains/ethereum/assets/0x6F6DEb5db0C4994A8283A01D6CFeEB27Fc3bBe9C/info.json @@ -0,0 +1,11 @@ +{ + "name": "SmartBillions Token", + "symbol": "Smart", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6F6DEb5db0C4994A8283A01D6CFeEB27Fc3bBe9C", + "status": "abandoned", + "id": "0x6F6DEb5db0C4994A8283A01D6CFeEB27Fc3bBe9C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6F6DEb5db0C4994A8283A01D6CFeEB27Fc3bBe9C/logo.png b/blockchains/ethereum/assets/0x6F6DEb5db0C4994A8283A01D6CFeEB27Fc3bBe9C/logo.png new file mode 100755 index 00000000..5ca84fea Binary files /dev/null and b/blockchains/ethereum/assets/0x6F6DEb5db0C4994A8283A01D6CFeEB27Fc3bBe9C/logo.png differ diff --git a/blockchains/ethereum/assets/0x6F6d15e2DAbD182c7C0830dB1bDfF1f920b57ffA/info.json b/blockchains/ethereum/assets/0x6F6d15e2DAbD182c7C0830dB1bDfF1f920b57ffA/info.json new file mode 100644 index 00000000..71a19367 --- /dev/null +++ b/blockchains/ethereum/assets/0x6F6d15e2DAbD182c7C0830dB1bDfF1f920b57ffA/info.json @@ -0,0 +1,11 @@ +{ + "name": "ODE", + "website": "https://ode.money", + "description": "ODE is a digital currency of the new financial ecosystem designed for branchless banking and financial institutions. ODE offers individual retirement account (dIRA), which is the first time in the world savings with cryptocurrency. This is a decentralized finance (DeFi) product.", + "explorer": "https://etherscan.io/token/0x6F6d15e2DAbD182c7C0830dB1bDfF1f920b57ffA", + "type": "ERC20", + "symbol": "ODE", + "decimals": 2, + "status": "active", + "id": "0x6F6d15e2DAbD182c7C0830dB1bDfF1f920b57ffA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6F6d15e2DAbD182c7C0830dB1bDfF1f920b57ffA/logo.png b/blockchains/ethereum/assets/0x6F6d15e2DAbD182c7C0830dB1bDfF1f920b57ffA/logo.png new file mode 100644 index 00000000..9a619555 Binary files /dev/null and b/blockchains/ethereum/assets/0x6F6d15e2DAbD182c7C0830dB1bDfF1f920b57ffA/logo.png differ diff --git a/blockchains/ethereum/assets/0x6F6eef16939b8327d53afdcaF08a72bba99c1A7F/info.json b/blockchains/ethereum/assets/0x6F6eef16939b8327d53afdcaF08a72bba99c1A7F/info.json new file mode 100644 index 00000000..f6ad037d --- /dev/null +++ b/blockchains/ethereum/assets/0x6F6eef16939b8327d53afdcaF08a72bba99c1A7F/info.json @@ -0,0 +1,11 @@ +{ + "name": "KANGB INTL", + "symbol": "KBI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6F6eef16939b8327d53afdcaF08a72bba99c1A7F", + "status": "abandoned", + "id": "0x6F6eef16939b8327d53afdcaF08a72bba99c1A7F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6F6eef16939b8327d53afdcaF08a72bba99c1A7F/logo.png b/blockchains/ethereum/assets/0x6F6eef16939b8327d53afdcaF08a72bba99c1A7F/logo.png new file mode 100644 index 00000000..ee5644c5 Binary files /dev/null and b/blockchains/ethereum/assets/0x6F6eef16939b8327d53afdcaF08a72bba99c1A7F/logo.png differ diff --git a/blockchains/ethereum/assets/0x6F8591c960f41591097E9199E61441beA28D776A/info.json b/blockchains/ethereum/assets/0x6F8591c960f41591097E9199E61441beA28D776A/info.json new file mode 100644 index 00000000..11126498 --- /dev/null +++ b/blockchains/ethereum/assets/0x6F8591c960f41591097E9199E61441beA28D776A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eco Care Organic Token", + "symbol": "ECOT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6F8591c960f41591097E9199E61441beA28D776A", + "status": "abandoned", + "id": "0x6F8591c960f41591097E9199E61441beA28D776A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6F8591c960f41591097E9199E61441beA28D776A/logo.png b/blockchains/ethereum/assets/0x6F8591c960f41591097E9199E61441beA28D776A/logo.png new file mode 100644 index 00000000..7dda736b Binary files /dev/null and b/blockchains/ethereum/assets/0x6F8591c960f41591097E9199E61441beA28D776A/logo.png differ diff --git a/blockchains/ethereum/assets/0x6F87D756DAf0503d08Eb8993686c7Fc01Dc44fB1/info.json b/blockchains/ethereum/assets/0x6F87D756DAf0503d08Eb8993686c7Fc01Dc44fB1/info.json new file mode 100644 index 00000000..800e8441 --- /dev/null +++ b/blockchains/ethereum/assets/0x6F87D756DAf0503d08Eb8993686c7Fc01Dc44fB1/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniTrade", + "website": "https://unitrade.app", + "description": "UniTrade is a completely decentralized trading platform in the DeFi space that is built on top of UniSwap liquidity pools and requires no KYC, no accounts, and has no trading limits.", + "explorer": "https://etherscan.io/token/0x6F87D756DAf0503d08Eb8993686c7Fc01Dc44fB1", + "type": "ERC20", + "symbol": "TRADE", + "decimals": 18, + "status": "active", + "id": "0x6F87D756DAf0503d08Eb8993686c7Fc01Dc44fB1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6F87D756DAf0503d08Eb8993686c7Fc01Dc44fB1/logo.png b/blockchains/ethereum/assets/0x6F87D756DAf0503d08Eb8993686c7Fc01Dc44fB1/logo.png new file mode 100644 index 00000000..6f5a9130 Binary files /dev/null and b/blockchains/ethereum/assets/0x6F87D756DAf0503d08Eb8993686c7Fc01Dc44fB1/logo.png differ diff --git a/blockchains/ethereum/assets/0x6F8aAD52c0127aE0B676BDDEe340A24Afec5fC8E/info.json b/blockchains/ethereum/assets/0x6F8aAD52c0127aE0B676BDDEe340A24Afec5fC8E/info.json new file mode 100644 index 00000000..8e1afb31 --- /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/0x6F919D67967a97EA36195A2346d9244E60FE0dDB/info.json b/blockchains/ethereum/assets/0x6F919D67967a97EA36195A2346d9244E60FE0dDB/info.json new file mode 100644 index 00000000..4d133b39 --- /dev/null +++ b/blockchains/ethereum/assets/0x6F919D67967a97EA36195A2346d9244E60FE0dDB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockcloud", + "symbol": "BLOC", + "type": "ERC20", + "decimals": 18, + "description": "Blockcloud (BLOC) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.block-cloud.io", + "explorer": "https://etherscan.io/token/0x6F919D67967a97EA36195A2346d9244E60FE0dDB", + "status": "active", + "id": "0x6F919D67967a97EA36195A2346d9244E60FE0dDB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6F919D67967a97EA36195A2346d9244E60FE0dDB/logo.png b/blockchains/ethereum/assets/0x6F919D67967a97EA36195A2346d9244E60FE0dDB/logo.png new file mode 100644 index 00000000..5d5e7332 Binary files /dev/null and b/blockchains/ethereum/assets/0x6F919D67967a97EA36195A2346d9244E60FE0dDB/logo.png differ diff --git a/blockchains/ethereum/assets/0x6FB0fcA6B108E3636bb511A2F60c2b490e54171f/info.json b/blockchains/ethereum/assets/0x6FB0fcA6B108E3636bb511A2F60c2b490e54171f/info.json new file mode 100644 index 00000000..6e1efe1a --- /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/0x6FBF4e57EC93cDd33c74762f7d99694228a68Cd2/info.json b/blockchains/ethereum/assets/0x6FBF4e57EC93cDd33c74762f7d99694228a68Cd2/info.json new file mode 100644 index 00000000..172efb17 --- /dev/null +++ b/blockchains/ethereum/assets/0x6FBF4e57EC93cDd33c74762f7d99694228a68Cd2/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLANK", + "symbol": "BLK", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6FBF4e57EC93cDd33c74762f7d99694228a68Cd2", + "status": "abandoned", + "id": "0x6FBF4e57EC93cDd33c74762f7d99694228a68Cd2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6FBF4e57EC93cDd33c74762f7d99694228a68Cd2/logo.png b/blockchains/ethereum/assets/0x6FBF4e57EC93cDd33c74762f7d99694228a68Cd2/logo.png new file mode 100644 index 00000000..7608099e Binary files /dev/null and b/blockchains/ethereum/assets/0x6FBF4e57EC93cDd33c74762f7d99694228a68Cd2/logo.png differ diff --git a/blockchains/ethereum/assets/0x6FC2A052f82d0f8B5d774f8EF8B30Fe933ce9953/info.json b/blockchains/ethereum/assets/0x6FC2A052f82d0f8B5d774f8EF8B30Fe933ce9953/info.json new file mode 100644 index 00000000..ac1e0938 --- /dev/null +++ b/blockchains/ethereum/assets/0x6FC2A052f82d0f8B5d774f8EF8B30Fe933ce9953/info.json @@ -0,0 +1,11 @@ +{ + "name": "DMSCOIN", + "symbol": "DMS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6FC2A052f82d0f8B5d774f8EF8B30Fe933ce9953", + "status": "abandoned", + "id": "0x6FC2A052f82d0f8B5d774f8EF8B30Fe933ce9953" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6FC2A052f82d0f8B5d774f8EF8B30Fe933ce9953/logo.png b/blockchains/ethereum/assets/0x6FC2A052f82d0f8B5d774f8EF8B30Fe933ce9953/logo.png new file mode 100755 index 00000000..86ba41cb Binary files /dev/null and b/blockchains/ethereum/assets/0x6FC2A052f82d0f8B5d774f8EF8B30Fe933ce9953/logo.png differ diff --git a/blockchains/ethereum/assets/0x6FCE4A401B6B80ACe52baAefE4421Bd188e76F6f/info.json b/blockchains/ethereum/assets/0x6FCE4A401B6B80ACe52baAefE4421Bd188e76F6f/info.json new file mode 100644 index 00000000..b14c6d19 --- /dev/null +++ b/blockchains/ethereum/assets/0x6FCE4A401B6B80ACe52baAefE4421Bd188e76F6f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave MANA V1", + "symbol": "aMANA V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave MANA V1 is an interest bearing token pegged 1:1 to the underlying MANA deposited in Aave V1. aMANA V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x6FCE4A401B6B80ACe52baAefE4421Bd188e76F6f", + "status": "abandoned", + "id": "0x6FCE4A401B6B80ACe52baAefE4421Bd188e76F6f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6FCE4A401B6B80ACe52baAefE4421Bd188e76F6f/logo.png b/blockchains/ethereum/assets/0x6FCE4A401B6B80ACe52baAefE4421Bd188e76F6f/logo.png new file mode 100644 index 00000000..6a5925e7 Binary files /dev/null and b/blockchains/ethereum/assets/0x6FCE4A401B6B80ACe52baAefE4421Bd188e76F6f/logo.png differ diff --git a/blockchains/ethereum/assets/0x6FD695e4524209c92029E908F8A38A6eCd15337E/info.json b/blockchains/ethereum/assets/0x6FD695e4524209c92029E908F8A38A6eCd15337E/info.json new file mode 100644 index 00000000..7cb129eb --- /dev/null +++ b/blockchains/ethereum/assets/0x6FD695e4524209c92029E908F8A38A6eCd15337E/info.json @@ -0,0 +1,11 @@ +{ + "name": "जोह्_Token", + "symbol": "JOH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6FD695e4524209c92029E908F8A38A6eCd15337E", + "status": "abandoned", + "id": "0x6FD695e4524209c92029E908F8A38A6eCd15337E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6FD695e4524209c92029E908F8A38A6eCd15337E/logo.png b/blockchains/ethereum/assets/0x6FD695e4524209c92029E908F8A38A6eCd15337E/logo.png new file mode 100644 index 00000000..92e1f163 Binary files /dev/null and b/blockchains/ethereum/assets/0x6FD695e4524209c92029E908F8A38A6eCd15337E/logo.png differ diff --git a/blockchains/ethereum/assets/0x6FE2B5f6798C9D5D6aebE1335BbF03080aceE7Dc/info.json b/blockchains/ethereum/assets/0x6FE2B5f6798C9D5D6aebE1335BbF03080aceE7Dc/info.json new file mode 100644 index 00000000..c0fa16a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x6FE2B5f6798C9D5D6aebE1335BbF03080aceE7Dc/info.json @@ -0,0 +1,11 @@ +{ + "name": "TokenMakerOrg", + "symbol": "TMO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6FE2B5f6798C9D5D6aebE1335BbF03080aceE7Dc", + "status": "abandoned", + "id": "0x6FE2B5f6798C9D5D6aebE1335BbF03080aceE7Dc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6FE2B5f6798C9D5D6aebE1335BbF03080aceE7Dc/logo.png b/blockchains/ethereum/assets/0x6FE2B5f6798C9D5D6aebE1335BbF03080aceE7Dc/logo.png new file mode 100644 index 00000000..8ae8f043 Binary files /dev/null and b/blockchains/ethereum/assets/0x6FE2B5f6798C9D5D6aebE1335BbF03080aceE7Dc/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Fa4255fae82B80D2B8FA97e544Ae9D20456b29a/info.json b/blockchains/ethereum/assets/0x6Fa4255fae82B80D2B8FA97e544Ae9D20456b29a/info.json new file mode 100644 index 00000000..66301bd6 --- /dev/null +++ b/blockchains/ethereum/assets/0x6Fa4255fae82B80D2B8FA97e544Ae9D20456b29a/info.json @@ -0,0 +1,11 @@ +{ + "name": "door of future11", + "symbol": "DOFX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6Fa4255fae82B80D2B8FA97e544Ae9D20456b29a", + "status": "abandoned", + "id": "0x6Fa4255fae82B80D2B8FA97e544Ae9D20456b29a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6Fa4255fae82B80D2B8FA97e544Ae9D20456b29a/logo.png b/blockchains/ethereum/assets/0x6Fa4255fae82B80D2B8FA97e544Ae9D20456b29a/logo.png new file mode 100644 index 00000000..fa037c17 Binary files /dev/null and b/blockchains/ethereum/assets/0x6Fa4255fae82B80D2B8FA97e544Ae9D20456b29a/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Faa826aF0568d1866Fca570dA79B318ef114dAb/info.json b/blockchains/ethereum/assets/0x6Faa826aF0568d1866Fca570dA79B318ef114dAb/info.json new file mode 100644 index 00000000..58880962 --- /dev/null +++ b/blockchains/ethereum/assets/0x6Faa826aF0568d1866Fca570dA79B318ef114dAb/info.json @@ -0,0 +1,11 @@ +{ + "name": "B21 Token", + "symbol": "B21", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6Faa826aF0568d1866Fca570dA79B318ef114dAb", + "status": "abandoned", + "id": "0x6Faa826aF0568d1866Fca570dA79B318ef114dAb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6Faa826aF0568d1866Fca570dA79B318ef114dAb/logo.png b/blockchains/ethereum/assets/0x6Faa826aF0568d1866Fca570dA79B318ef114dAb/logo.png new file mode 100755 index 00000000..f7ed7a82 Binary files /dev/null and b/blockchains/ethereum/assets/0x6Faa826aF0568d1866Fca570dA79B318ef114dAb/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Fb0855c404E09c47C3fBCA25f08d4E41f9F062f/info.json b/blockchains/ethereum/assets/0x6Fb0855c404E09c47C3fBCA25f08d4E41f9F062f/info.json new file mode 100644 index 00000000..4b84eeab --- /dev/null +++ b/blockchains/ethereum/assets/0x6Fb0855c404E09c47C3fBCA25f08d4E41f9F062f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave ZRX V1", + "symbol": "aZRX V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave ZRX V1 is an interest bearing token pegged 1:1 to the underlying ZRX deposited in Aave V1. aZRX V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x6Fb0855c404E09c47C3fBCA25f08d4E41f9F062f", + "status": "abandoned", + "id": "0x6Fb0855c404E09c47C3fBCA25f08d4E41f9F062f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6Fb0855c404E09c47C3fBCA25f08d4E41f9F062f/logo.png b/blockchains/ethereum/assets/0x6Fb0855c404E09c47C3fBCA25f08d4E41f9F062f/logo.png new file mode 100644 index 00000000..af590bc1 Binary files /dev/null and b/blockchains/ethereum/assets/0x6Fb0855c404E09c47C3fBCA25f08d4E41f9F062f/logo.png differ diff --git a/blockchains/ethereum/assets/0x6FeBdFC0A9d9502C45343fCE0dF08828dEF44795/info.json b/blockchains/ethereum/assets/0x6FeBdFC0A9d9502C45343fCE0dF08828dEF44795/info.json new file mode 100644 index 00000000..8403a734 --- /dev/null +++ b/blockchains/ethereum/assets/0x6FeBdFC0A9d9502C45343fCE0dF08828dEF44795/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Short BNB Token", + "symbol": "BNBBEAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ftx.com/tokens/BNBBEAR", + "explorer": "https://etherscan.io/token/0x6FeBdFC0A9d9502C45343fCE0dF08828dEF44795", + "status": "abandoned", + "id": "0x6FeBdFC0A9d9502C45343fCE0dF08828dEF44795" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6FeBdFC0A9d9502C45343fCE0dF08828dEF44795/logo.png b/blockchains/ethereum/assets/0x6FeBdFC0A9d9502C45343fCE0dF08828dEF44795/logo.png new file mode 100644 index 00000000..a8cc1f57 Binary files /dev/null and b/blockchains/ethereum/assets/0x6FeBdFC0A9d9502C45343fCE0dF08828dEF44795/logo.png differ diff --git a/blockchains/ethereum/assets/0x6a073DdaBCaec5362B3D2A3290bE80B35397e48B/info.json b/blockchains/ethereum/assets/0x6a073DdaBCaec5362B3D2A3290bE80B35397e48B/info.json new file mode 100644 index 00000000..10dcf9a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x6a073DdaBCaec5362B3D2A3290bE80B35397e48B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pistoletoken", + "symbol": "ILE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6a073DdaBCaec5362B3D2A3290bE80B35397e48B", + "status": "abandoned", + "id": "0x6a073DdaBCaec5362B3D2A3290bE80B35397e48B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6a073DdaBCaec5362B3D2A3290bE80B35397e48B/logo.png b/blockchains/ethereum/assets/0x6a073DdaBCaec5362B3D2A3290bE80B35397e48B/logo.png new file mode 100644 index 00000000..02875941 Binary files /dev/null and b/blockchains/ethereum/assets/0x6a073DdaBCaec5362B3D2A3290bE80B35397e48B/logo.png differ diff --git a/blockchains/ethereum/assets/0x6a0A97E47d15aAd1D132a1Ac79a480E3F2079063/info.json b/blockchains/ethereum/assets/0x6a0A97E47d15aAd1D132a1Ac79a480E3F2079063/info.json new file mode 100644 index 00000000..2b28de0b --- /dev/null +++ b/blockchains/ethereum/assets/0x6a0A97E47d15aAd1D132a1Ac79a480E3F2079063/info.json @@ -0,0 +1,11 @@ +{ + "name": "WePower Contribution Token", + "symbol": "WCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6a0A97E47d15aAd1D132a1Ac79a480E3F2079063", + "status": "abandoned", + "id": "0x6a0A97E47d15aAd1D132a1Ac79a480E3F2079063" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6a0A97E47d15aAd1D132a1Ac79a480E3F2079063/logo.png b/blockchains/ethereum/assets/0x6a0A97E47d15aAd1D132a1Ac79a480E3F2079063/logo.png new file mode 100644 index 00000000..33511f97 Binary files /dev/null and b/blockchains/ethereum/assets/0x6a0A97E47d15aAd1D132a1Ac79a480E3F2079063/logo.png differ diff --git a/blockchains/ethereum/assets/0x6a2f414E1298264ecD446D6Bb9Da012760336A4f/info.json b/blockchains/ethereum/assets/0x6a2f414E1298264ecD446D6Bb9Da012760336A4f/info.json new file mode 100644 index 00000000..7a8683a1 --- /dev/null +++ b/blockchains/ethereum/assets/0x6a2f414E1298264ecD446D6Bb9Da012760336A4f/info.json @@ -0,0 +1,11 @@ +{ + "name": "MikeTangoBravo20", + "symbol": "MTB20", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6a2f414E1298264ecD446D6Bb9Da012760336A4f", + "status": "abandoned", + "id": "0x6a2f414E1298264ecD446D6Bb9Da012760336A4f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6a2f414E1298264ecD446D6Bb9Da012760336A4f/logo.png b/blockchains/ethereum/assets/0x6a2f414E1298264ecD446D6Bb9Da012760336A4f/logo.png new file mode 100644 index 00000000..d75862f5 Binary files /dev/null and b/blockchains/ethereum/assets/0x6a2f414E1298264ecD446D6Bb9Da012760336A4f/logo.png differ diff --git a/blockchains/ethereum/assets/0x6a33C2C807124Eae26f6188877c15675d3889Ca3/info.json b/blockchains/ethereum/assets/0x6a33C2C807124Eae26f6188877c15675d3889Ca3/info.json new file mode 100644 index 00000000..b79a4372 --- /dev/null +++ b/blockchains/ethereum/assets/0x6a33C2C807124Eae26f6188877c15675d3889Ca3/info.json @@ -0,0 +1,11 @@ +{ + "name": "TUNEZ", + "symbol": "TUNEZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6a33C2C807124Eae26f6188877c15675d3889Ca3", + "status": "abandoned", + "id": "0x6a33C2C807124Eae26f6188877c15675d3889Ca3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6a33C2C807124Eae26f6188877c15675d3889Ca3/logo.png b/blockchains/ethereum/assets/0x6a33C2C807124Eae26f6188877c15675d3889Ca3/logo.png new file mode 100644 index 00000000..c4adc791 Binary files /dev/null and b/blockchains/ethereum/assets/0x6a33C2C807124Eae26f6188877c15675d3889Ca3/logo.png differ diff --git a/blockchains/ethereum/assets/0x6a4C76874e686A7d080D173987A35A9c48905583/info.json b/blockchains/ethereum/assets/0x6a4C76874e686A7d080D173987A35A9c48905583/info.json new file mode 100644 index 00000000..db47e877 --- /dev/null +++ b/blockchains/ethereum/assets/0x6a4C76874e686A7d080D173987A35A9c48905583/info.json @@ -0,0 +1,60 @@ +{ + "name": "Luxurious Pro Network Token", + "type": "ERC20", + "symbol": "LPNT", + "decimals": 18, + "website": "https://lpntoken.io", + "description": "Luxurious Pro Network Token is A high demand ERC20 token for everyone. A big, growing and sustainable community is holding LPNT today. Community of people who want to grow their economy with blockchain.", + "explorer": "https://etherscan.io/token/0x6a4C76874e686A7d080D173987A35A9c48905583", + "status": "active", + "id": "0x6a4C76874e686A7d080D173987A35A9c48905583", + "links": [ + { + "name": "x", + "url": "https://x.com/officialLPNT" + }, + { + "name": "github", + "url": "https://github.com/LPNTOKEN" + }, + { + "name": "telegram", + "url": "https://t.me/LPNT_Official" + }, + { + "name": "facebook", + "url": "https://facebook.com/officialLPNT" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UChJkd2crx3fG31LVh5sbDiw/featured" + }, + { + "name": "blog", + "url": "https://blog.lpntoken.io/" + }, + { + "name": "whitepaper", + "url": "https://lpntoken.io/assets/lpnt-io/images/whitepaper-lpntoken.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/lpntokenofficial/" + }, + { + "name": "medium", + "url": "https://lpntoken.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/luxurious-pro-network-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/luxurious-pro-network-token" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6a4C76874e686A7d080D173987A35A9c48905583/logo.png b/blockchains/ethereum/assets/0x6a4C76874e686A7d080D173987A35A9c48905583/logo.png new file mode 100644 index 00000000..646089d3 Binary files /dev/null and b/blockchains/ethereum/assets/0x6a4C76874e686A7d080D173987A35A9c48905583/logo.png differ diff --git a/blockchains/ethereum/assets/0x6a4FFAafa8DD400676Df8076AD6c724867b0e2e8/info.json b/blockchains/ethereum/assets/0x6a4FFAafa8DD400676Df8076AD6c724867b0e2e8/info.json new file mode 100644 index 00000000..a1afa89a --- /dev/null +++ b/blockchains/ethereum/assets/0x6a4FFAafa8DD400676Df8076AD6c724867b0e2e8/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTU Incentivized DAI", + "symbol": "bDAI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://btu-protocol.com/bdai/", + "explorer": "https://etherscan.io/token/0x6a4FFAafa8DD400676Df8076AD6c724867b0e2e8", + "status": "abandoned", + "id": "0x6a4FFAafa8DD400676Df8076AD6c724867b0e2e8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6a4FFAafa8DD400676Df8076AD6c724867b0e2e8/logo.png b/blockchains/ethereum/assets/0x6a4FFAafa8DD400676Df8076AD6c724867b0e2e8/logo.png new file mode 100644 index 00000000..e0cab248 Binary files /dev/null and b/blockchains/ethereum/assets/0x6a4FFAafa8DD400676Df8076AD6c724867b0e2e8/logo.png differ diff --git a/blockchains/ethereum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json b/blockchains/ethereum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json new file mode 100644 index 00000000..88caf40e --- /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 00000000..857fe690 Binary files /dev/null and b/blockchains/ethereum/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/logo.png differ diff --git a/blockchains/ethereum/assets/0x6a85f717Aaa16a9050858be9415eB213DFc1957a/info.json b/blockchains/ethereum/assets/0x6a85f717Aaa16a9050858be9415eB213DFc1957a/info.json new file mode 100644 index 00000000..863ee630 --- /dev/null +++ b/blockchains/ethereum/assets/0x6a85f717Aaa16a9050858be9415eB213DFc1957a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xpress", + "symbol": "XPT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6a85f717Aaa16a9050858be9415eB213DFc1957a", + "status": "abandoned", + "id": "0x6a85f717Aaa16a9050858be9415eB213DFc1957a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6a85f717Aaa16a9050858be9415eB213DFc1957a/logo.png b/blockchains/ethereum/assets/0x6a85f717Aaa16a9050858be9415eB213DFc1957a/logo.png new file mode 100755 index 00000000..8fa3ebb4 Binary files /dev/null and b/blockchains/ethereum/assets/0x6a85f717Aaa16a9050858be9415eB213DFc1957a/logo.png differ diff --git a/blockchains/ethereum/assets/0x6a90445976B4a9ad09DE0C1621048483d2f5589F/info.json b/blockchains/ethereum/assets/0x6a90445976B4a9ad09DE0C1621048483d2f5589F/info.json new file mode 100644 index 00000000..18c657ec --- /dev/null +++ b/blockchains/ethereum/assets/0x6a90445976B4a9ad09DE0C1621048483d2f5589F/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZAI Stablecoin", + "symbol": "ZAI", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6a90445976B4a9ad09DE0C1621048483d2f5589F", + "status": "abandoned", + "id": "0x6a90445976B4a9ad09DE0C1621048483d2f5589F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6a90445976B4a9ad09DE0C1621048483d2f5589F/logo.png b/blockchains/ethereum/assets/0x6a90445976B4a9ad09DE0C1621048483d2f5589F/logo.png new file mode 100644 index 00000000..e6ae5561 Binary files /dev/null and b/blockchains/ethereum/assets/0x6a90445976B4a9ad09DE0C1621048483d2f5589F/logo.png differ diff --git a/blockchains/ethereum/assets/0x6aA56e1D98b3805921C170EB4B3fe7D4Fda6D89b/info.json b/blockchains/ethereum/assets/0x6aA56e1D98b3805921C170EB4B3fe7D4Fda6D89b/info.json new file mode 100644 index 00000000..b26f4447 --- /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 00000000..4d1fc39f Binary files /dev/null and b/blockchains/ethereum/assets/0x6aA56e1D98b3805921C170EB4B3fe7D4Fda6D89b/logo.png differ diff --git a/blockchains/ethereum/assets/0x6aB4A7d75B0A42B6Bc83E852daB9E121F9C610Aa/info.json b/blockchains/ethereum/assets/0x6aB4A7d75B0A42B6Bc83E852daB9E121F9C610Aa/info.json new file mode 100644 index 00000000..6a23abbf --- /dev/null +++ b/blockchains/ethereum/assets/0x6aB4A7d75B0A42B6Bc83E852daB9E121F9C610Aa/info.json @@ -0,0 +1,11 @@ +{ + "name": "Elitium", + "symbol": "EUM", + "type": "ERC20", + "decimals": 18, + "description": "Elitium provides a luxury lifestyle platform for its clientele using a sustainable cryptocurrency solution.", + "website": "https://www.elitium.io/", + "explorer": "https://etherscan.io/token/0x6aB4A7d75B0A42B6Bc83E852daB9E121F9C610Aa", + "status": "active", + "id": "0x6aB4A7d75B0A42B6Bc83E852daB9E121F9C610Aa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6aB4A7d75B0A42B6Bc83E852daB9E121F9C610Aa/logo.png b/blockchains/ethereum/assets/0x6aB4A7d75B0A42B6Bc83E852daB9E121F9C610Aa/logo.png new file mode 100644 index 00000000..45ce296d Binary files /dev/null and b/blockchains/ethereum/assets/0x6aB4A7d75B0A42B6Bc83E852daB9E121F9C610Aa/logo.png differ diff --git a/blockchains/ethereum/assets/0x6aBb492D778903be5fb8922e076cA5e337E29062/info.json b/blockchains/ethereum/assets/0x6aBb492D778903be5fb8922e076cA5e337E29062/info.json new file mode 100644 index 00000000..7ba3a2e5 --- /dev/null +++ b/blockchains/ethereum/assets/0x6aBb492D778903be5fb8922e076cA5e337E29062/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cashpayz Token", + "symbol": "CPC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6aBb492D778903be5fb8922e076cA5e337E29062", + "status": "abandoned", + "id": "0x6aBb492D778903be5fb8922e076cA5e337E29062" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6aBb492D778903be5fb8922e076cA5e337E29062/logo.png b/blockchains/ethereum/assets/0x6aBb492D778903be5fb8922e076cA5e337E29062/logo.png new file mode 100644 index 00000000..c9a7ffaa Binary files /dev/null and b/blockchains/ethereum/assets/0x6aBb492D778903be5fb8922e076cA5e337E29062/logo.png differ diff --git a/blockchains/ethereum/assets/0x6aCf5940974E2a935f3F4e4FEDAc798583eEE826/info.json b/blockchains/ethereum/assets/0x6aCf5940974E2a935f3F4e4FEDAc798583eEE826/info.json new file mode 100644 index 00000000..cbadda57 --- /dev/null +++ b/blockchains/ethereum/assets/0x6aCf5940974E2a935f3F4e4FEDAc798583eEE826/info.json @@ -0,0 +1,11 @@ +{ + "name": "CNAC", + "symbol": "cnacoin", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6aCf5940974E2a935f3F4e4FEDAc798583eEE826", + "status": "abandoned", + "id": "0x6aCf5940974E2a935f3F4e4FEDAc798583eEE826" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6aCf5940974E2a935f3F4e4FEDAc798583eEE826/logo.png b/blockchains/ethereum/assets/0x6aCf5940974E2a935f3F4e4FEDAc798583eEE826/logo.png new file mode 100644 index 00000000..abf23380 Binary files /dev/null and b/blockchains/ethereum/assets/0x6aCf5940974E2a935f3F4e4FEDAc798583eEE826/logo.png differ diff --git a/blockchains/ethereum/assets/0x6aD03307Fd545a68A391F99eFdd31CEC86569A4C/info.json b/blockchains/ethereum/assets/0x6aD03307Fd545a68A391F99eFdd31CEC86569A4C/info.json new file mode 100644 index 00000000..8088594c --- /dev/null +++ b/blockchains/ethereum/assets/0x6aD03307Fd545a68A391F99eFdd31CEC86569A4C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stake Street", + "symbol": "STST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6aD03307Fd545a68A391F99eFdd31CEC86569A4C", + "status": "abandoned", + "id": "0x6aD03307Fd545a68A391F99eFdd31CEC86569A4C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6aD03307Fd545a68A391F99eFdd31CEC86569A4C/logo.png b/blockchains/ethereum/assets/0x6aD03307Fd545a68A391F99eFdd31CEC86569A4C/logo.png new file mode 100644 index 00000000..9987d366 Binary files /dev/null and b/blockchains/ethereum/assets/0x6aD03307Fd545a68A391F99eFdd31CEC86569A4C/logo.png differ diff --git a/blockchains/ethereum/assets/0x6aD422DD6035AdC3Fb222334db9c14ED679F5b45/info.json b/blockchains/ethereum/assets/0x6aD422DD6035AdC3Fb222334db9c14ED679F5b45/info.json new file mode 100644 index 00000000..afa370da --- /dev/null +++ b/blockchains/ethereum/assets/0x6aD422DD6035AdC3Fb222334db9c14ED679F5b45/info.json @@ -0,0 +1,11 @@ +{ + "name": "Interstellar Credits", + "symbol": "ISC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6aD422DD6035AdC3Fb222334db9c14ED679F5b45", + "status": "abandoned", + "id": "0x6aD422DD6035AdC3Fb222334db9c14ED679F5b45" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6aD422DD6035AdC3Fb222334db9c14ED679F5b45/logo.png b/blockchains/ethereum/assets/0x6aD422DD6035AdC3Fb222334db9c14ED679F5b45/logo.png new file mode 100644 index 00000000..c4c6129d Binary files /dev/null and b/blockchains/ethereum/assets/0x6aD422DD6035AdC3Fb222334db9c14ED679F5b45/logo.png differ diff --git a/blockchains/ethereum/assets/0x6aD4a493d34149A7F2FB08d24f4481a2f57a1aA8/info.json b/blockchains/ethereum/assets/0x6aD4a493d34149A7F2FB08d24f4481a2f57a1aA8/info.json new file mode 100644 index 00000000..dc3428a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x6aD4a493d34149A7F2FB08d24f4481a2f57a1aA8/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-19/30M79", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6aD4a493d34149A7F2FB08d24f4481a2f57a1aA8", + "status": "abandoned", + "id": "0x6aD4a493d34149A7F2FB08d24f4481a2f57a1aA8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6aD4a493d34149A7F2FB08d24f4481a2f57a1aA8/logo.png b/blockchains/ethereum/assets/0x6aD4a493d34149A7F2FB08d24f4481a2f57a1aA8/logo.png new file mode 100644 index 00000000..7beb516a Binary files /dev/null and b/blockchains/ethereum/assets/0x6aD4a493d34149A7F2FB08d24f4481a2f57a1aA8/logo.png differ diff --git a/blockchains/ethereum/assets/0x6aEB95F06CDA84cA345c2dE0F3B7f96923a44f4c/info.json b/blockchains/ethereum/assets/0x6aEB95F06CDA84cA345c2dE0F3B7f96923a44f4c/info.json new file mode 100644 index 00000000..93763deb --- /dev/null +++ b/blockchains/ethereum/assets/0x6aEB95F06CDA84cA345c2dE0F3B7f96923a44f4c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Berry", + "symbol": "BERRY", + "type": "ERC20", + "decimals": 14, + "description": "Rentberry offers users a fully operational long-term rental platform. It leverages blockchain technology to ensure seamless rental experience.", + "website": "https://rentberry.com/", + "explorer": "https://etherscan.io/token/0x6aEB95F06CDA84cA345c2dE0F3B7f96923a44f4c", + "status": "active", + "id": "0x6aEB95F06CDA84cA345c2dE0F3B7f96923a44f4c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6aEB95F06CDA84cA345c2dE0F3B7f96923a44f4c/logo.png b/blockchains/ethereum/assets/0x6aEB95F06CDA84cA345c2dE0F3B7f96923a44f4c/logo.png new file mode 100644 index 00000000..a2d2cc35 Binary files /dev/null and b/blockchains/ethereum/assets/0x6aEB95F06CDA84cA345c2dE0F3B7f96923a44f4c/logo.png differ diff --git a/blockchains/ethereum/assets/0x6aEDbF8dFF31437220dF351950Ba2a3362168d1b/info.json b/blockchains/ethereum/assets/0x6aEDbF8dFF31437220dF351950Ba2a3362168d1b/info.json new file mode 100644 index 00000000..97b46517 --- /dev/null +++ b/blockchains/ethereum/assets/0x6aEDbF8dFF31437220dF351950Ba2a3362168d1b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dragonglass", + "symbol": "DGS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://dragonglass.com/", + "explorer": "https://etherscan.io/token/0x6aEDbF8dFF31437220dF351950Ba2a3362168d1b", + "status": "abandoned", + "id": "0x6aEDbF8dFF31437220dF351950Ba2a3362168d1b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6aEDbF8dFF31437220dF351950Ba2a3362168d1b/logo.png b/blockchains/ethereum/assets/0x6aEDbF8dFF31437220dF351950Ba2a3362168d1b/logo.png new file mode 100644 index 00000000..15eb95d3 Binary files /dev/null and b/blockchains/ethereum/assets/0x6aEDbF8dFF31437220dF351950Ba2a3362168d1b/logo.png differ diff --git a/blockchains/ethereum/assets/0x6ad5A90C31e1fE76E3A5Df21AFf3B736c3Bc3820/info.json b/blockchains/ethereum/assets/0x6ad5A90C31e1fE76E3A5Df21AFf3B736c3Bc3820/info.json new file mode 100644 index 00000000..bb5e6ddb --- /dev/null +++ b/blockchains/ethereum/assets/0x6ad5A90C31e1fE76E3A5Df21AFf3B736c3Bc3820/info.json @@ -0,0 +1,11 @@ +{ + "name": "Patent Coin", + "symbol": "XPT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6ad5A90C31e1fE76E3A5Df21AFf3B736c3Bc3820", + "status": "abandoned", + "id": "0x6ad5A90C31e1fE76E3A5Df21AFf3B736c3Bc3820" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6ad5A90C31e1fE76E3A5Df21AFf3B736c3Bc3820/logo.png b/blockchains/ethereum/assets/0x6ad5A90C31e1fE76E3A5Df21AFf3B736c3Bc3820/logo.png new file mode 100644 index 00000000..6a8d4a44 Binary files /dev/null and b/blockchains/ethereum/assets/0x6ad5A90C31e1fE76E3A5Df21AFf3B736c3Bc3820/logo.png differ diff --git a/blockchains/ethereum/assets/0x6b048D884188895EbA104645Ee6fFa093fe80a07/info.json b/blockchains/ethereum/assets/0x6b048D884188895EbA104645Ee6fFa093fe80a07/info.json new file mode 100644 index 00000000..16f83cf9 --- /dev/null +++ b/blockchains/ethereum/assets/0x6b048D884188895EbA104645Ee6fFa093fe80a07/info.json @@ -0,0 +1,11 @@ +{ + "name": "Erazer Token", + "symbol": "ERAZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6b048D884188895EbA104645Ee6fFa093fe80a07", + "status": "abandoned", + "id": "0x6b048D884188895EbA104645Ee6fFa093fe80a07" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6b048D884188895EbA104645Ee6fFa093fe80a07/logo.png b/blockchains/ethereum/assets/0x6b048D884188895EbA104645Ee6fFa093fe80a07/logo.png new file mode 100644 index 00000000..b3e8982f Binary files /dev/null and b/blockchains/ethereum/assets/0x6b048D884188895EbA104645Ee6fFa093fe80a07/logo.png differ diff --git a/blockchains/ethereum/assets/0x6b193e107A773967bD821bCf8218f3548Cfa2503/info.json b/blockchains/ethereum/assets/0x6b193e107A773967bD821bCf8218f3548Cfa2503/info.json new file mode 100644 index 00000000..fe957088 --- /dev/null +++ b/blockchains/ethereum/assets/0x6b193e107A773967bD821bCf8218f3548Cfa2503/info.json @@ -0,0 +1,11 @@ +{ + "name": "Posscoin", + "symbol": "POSS", + "type": "ERC20", + "decimals": 18, + "description": "Posscoin (POSS) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.posscoin.org", + "explorer": "https://etherscan.io/token/0x6b193e107A773967bD821bCf8218f3548Cfa2503", + "status": "active", + "id": "0x6b193e107A773967bD821bCf8218f3548Cfa2503" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6b193e107A773967bD821bCf8218f3548Cfa2503/logo.png b/blockchains/ethereum/assets/0x6b193e107A773967bD821bCf8218f3548Cfa2503/logo.png new file mode 100644 index 00000000..69217b29 Binary files /dev/null and b/blockchains/ethereum/assets/0x6b193e107A773967bD821bCf8218f3548Cfa2503/logo.png differ diff --git a/blockchains/ethereum/assets/0x6b414584f7DD3750a0D61b4b8692242A7dEBee06/info.json b/blockchains/ethereum/assets/0x6b414584f7DD3750a0D61b4b8692242A7dEBee06/info.json new file mode 100644 index 00000000..33e25dd7 --- /dev/null +++ b/blockchains/ethereum/assets/0x6b414584f7DD3750a0D61b4b8692242A7dEBee06/info.json @@ -0,0 +1,11 @@ +{ + "name": "XGoldToken", + "symbol": "XGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6b414584f7DD3750a0D61b4b8692242A7dEBee06", + "status": "abandoned", + "id": "0x6b414584f7DD3750a0D61b4b8692242A7dEBee06" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6b414584f7DD3750a0D61b4b8692242A7dEBee06/logo.png b/blockchains/ethereum/assets/0x6b414584f7DD3750a0D61b4b8692242A7dEBee06/logo.png new file mode 100755 index 00000000..94c0964e Binary files /dev/null and b/blockchains/ethereum/assets/0x6b414584f7DD3750a0D61b4b8692242A7dEBee06/logo.png differ diff --git a/blockchains/ethereum/assets/0x6b431B8a964BFcf28191b07c91189fF4403957D0/info.json b/blockchains/ethereum/assets/0x6b431B8a964BFcf28191b07c91189fF4403957D0/info.json new file mode 100644 index 00000000..d8959307 --- /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 00000000..e3f1fa3c Binary files /dev/null and b/blockchains/ethereum/assets/0x6b431B8a964BFcf28191b07c91189fF4403957D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x6b4689E4514957699eDeB2Ee91C947F18E439806/info.json b/blockchains/ethereum/assets/0x6b4689E4514957699eDeB2Ee91C947F18E439806/info.json new file mode 100644 index 00000000..47cb08ff --- /dev/null +++ b/blockchains/ethereum/assets/0x6b4689E4514957699eDeB2Ee91C947F18E439806/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZeuxCoin", + "symbol": "ZUC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.zeux.com/", + "explorer": "https://etherscan.io/token/0x6b4689E4514957699eDeB2Ee91C947F18E439806", + "status": "abandoned", + "id": "0x6b4689E4514957699eDeB2Ee91C947F18E439806" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6b4689E4514957699eDeB2Ee91C947F18E439806/logo.png b/blockchains/ethereum/assets/0x6b4689E4514957699eDeB2Ee91C947F18E439806/logo.png new file mode 100644 index 00000000..32b0e91b Binary files /dev/null and b/blockchains/ethereum/assets/0x6b4689E4514957699eDeB2Ee91C947F18E439806/logo.png differ diff --git a/blockchains/ethereum/assets/0x6b60d7285504D73DD88547cf1289c3B5528827d3/info.json b/blockchains/ethereum/assets/0x6b60d7285504D73DD88547cf1289c3B5528827d3/info.json new file mode 100644 index 00000000..a6c881d7 --- /dev/null +++ b/blockchains/ethereum/assets/0x6b60d7285504D73DD88547cf1289c3B5528827d3/info.json @@ -0,0 +1,11 @@ +{ + "name": "MaskFactory", + "symbol": "MFT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6b60d7285504D73DD88547cf1289c3B5528827d3", + "status": "abandoned", + "id": "0x6b60d7285504D73DD88547cf1289c3B5528827d3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6b60d7285504D73DD88547cf1289c3B5528827d3/logo.png b/blockchains/ethereum/assets/0x6b60d7285504D73DD88547cf1289c3B5528827d3/logo.png new file mode 100644 index 00000000..b4915885 Binary files /dev/null and b/blockchains/ethereum/assets/0x6b60d7285504D73DD88547cf1289c3B5528827d3/logo.png differ diff --git a/blockchains/ethereum/assets/0x6b74Dd5d01f8320081247F5CF1F7a48324700Db6/info.json b/blockchains/ethereum/assets/0x6b74Dd5d01f8320081247F5CF1F7a48324700Db6/info.json new file mode 100644 index 00000000..c03774b2 --- /dev/null +++ b/blockchains/ethereum/assets/0x6b74Dd5d01f8320081247F5CF1F7a48324700Db6/info.json @@ -0,0 +1,11 @@ +{ + "name": "UBU", + "symbol": "UBU", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://bitubu.com/ubu", + "explorer": "https://etherscan.io/token/0x6b74Dd5d01f8320081247F5CF1F7a48324700Db6", + "status": "abandoned", + "id": "0x6b74Dd5d01f8320081247F5CF1F7a48324700Db6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6b74Dd5d01f8320081247F5CF1F7a48324700Db6/logo.png b/blockchains/ethereum/assets/0x6b74Dd5d01f8320081247F5CF1F7a48324700Db6/logo.png new file mode 100644 index 00000000..3a33128f Binary files /dev/null and b/blockchains/ethereum/assets/0x6b74Dd5d01f8320081247F5CF1F7a48324700Db6/logo.png differ diff --git a/blockchains/ethereum/assets/0x6b785a0322126826d8226d77e173d75DAfb84d11/info.json b/blockchains/ethereum/assets/0x6b785a0322126826d8226d77e173d75DAfb84d11/info.json new file mode 100644 index 00000000..5a92f2a5 --- /dev/null +++ b/blockchains/ethereum/assets/0x6b785a0322126826d8226d77e173d75DAfb84d11/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bankroll Vault", + "symbol": "VLT", + "type": "ERC20", + "decimals": 18, + "description": "Bankroll is a decentralized finance network on TRON and Ethereum. It implements a voluntary, sustainable, and permissionless global economic engine. Through a network of financial contracts, the platform provides rewards in TRX, ETH, BTT, VLT, and BNKR.", + "website": "https://bankroll.network/", + "explorer": "https://etherscan.io/token/0x6b785a0322126826d8226d77e173d75DAfb84d11", + "status": "active", + "id": "0x6b785a0322126826d8226d77e173d75DAfb84d11" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6b785a0322126826d8226d77e173d75DAfb84d11/logo.png b/blockchains/ethereum/assets/0x6b785a0322126826d8226d77e173d75DAfb84d11/logo.png new file mode 100644 index 00000000..5fec6f33 Binary files /dev/null and b/blockchains/ethereum/assets/0x6b785a0322126826d8226d77e173d75DAfb84d11/logo.png differ diff --git a/blockchains/ethereum/assets/0x6b9F1F092E0B10015a4391A80cD3E6B6cefD1728/info.json b/blockchains/ethereum/assets/0x6b9F1F092E0B10015a4391A80cD3E6B6cefD1728/info.json new file mode 100644 index 00000000..7c428fd2 --- /dev/null +++ b/blockchains/ethereum/assets/0x6b9F1F092E0B10015a4391A80cD3E6B6cefD1728/info.json @@ -0,0 +1,11 @@ +{ + "name": "LuckySevenToken", + "symbol": "LST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://luckyseven.solutions/", + "explorer": "https://etherscan.io/token/0x6b9F1F092E0B10015a4391A80cD3E6B6cefD1728", + "status": "abandoned", + "id": "0x6b9F1F092E0B10015a4391A80cD3E6B6cefD1728" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6b9F1F092E0B10015a4391A80cD3E6B6cefD1728/logo.png b/blockchains/ethereum/assets/0x6b9F1F092E0B10015a4391A80cD3E6B6cefD1728/logo.png new file mode 100644 index 00000000..ff27c2db Binary files /dev/null and b/blockchains/ethereum/assets/0x6b9F1F092E0B10015a4391A80cD3E6B6cefD1728/logo.png differ diff --git a/blockchains/ethereum/assets/0x6bC1F3A1ae56231DbB64d3E82E070857EAe86045/info.json b/blockchains/ethereum/assets/0x6bC1F3A1ae56231DbB64d3E82E070857EAe86045/info.json new file mode 100644 index 00000000..149f3989 --- /dev/null +++ b/blockchains/ethereum/assets/0x6bC1F3A1ae56231DbB64d3E82E070857EAe86045/info.json @@ -0,0 +1,11 @@ +{ + "name": "xensor", + "symbol": "XSR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://xensor.cc/", + "explorer": "https://etherscan.io/token/0x6bC1F3A1ae56231DbB64d3E82E070857EAe86045", + "status": "abandoned", + "id": "0x6bC1F3A1ae56231DbB64d3E82E070857EAe86045" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6bC1F3A1ae56231DbB64d3E82E070857EAe86045/logo.png b/blockchains/ethereum/assets/0x6bC1F3A1ae56231DbB64d3E82E070857EAe86045/logo.png new file mode 100644 index 00000000..ae03db5d Binary files /dev/null and b/blockchains/ethereum/assets/0x6bC1F3A1ae56231DbB64d3E82E070857EAe86045/logo.png differ diff --git a/blockchains/ethereum/assets/0x6bC4375083D3aD563dE91caD8438F629841448a5/info.json b/blockchains/ethereum/assets/0x6bC4375083D3aD563dE91caD8438F629841448a5/info.json new file mode 100644 index 00000000..be450125 --- /dev/null +++ b/blockchains/ethereum/assets/0x6bC4375083D3aD563dE91caD8438F629841448a5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptogeneid Token", + "symbol": "ID7", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6bC4375083D3aD563dE91caD8438F629841448a5", + "status": "abandoned", + "id": "0x6bC4375083D3aD563dE91caD8438F629841448a5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6bC4375083D3aD563dE91caD8438F629841448a5/logo.png b/blockchains/ethereum/assets/0x6bC4375083D3aD563dE91caD8438F629841448a5/logo.png new file mode 100644 index 00000000..f7a76862 Binary files /dev/null and b/blockchains/ethereum/assets/0x6bC4375083D3aD563dE91caD8438F629841448a5/logo.png differ diff --git a/blockchains/ethereum/assets/0x6bE935eaDc71c49c414b1175985946ee40365c67/info.json b/blockchains/ethereum/assets/0x6bE935eaDc71c49c414b1175985946ee40365c67/info.json new file mode 100644 index 00000000..6197ef8f --- /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 00000000..760e219c Binary files /dev/null and b/blockchains/ethereum/assets/0x6bE935eaDc71c49c414b1175985946ee40365c67/logo.png differ diff --git a/blockchains/ethereum/assets/0x6bF0d1AfAF3F9073E3706EE4BEb140b9bf05a3D4/info.json b/blockchains/ethereum/assets/0x6bF0d1AfAF3F9073E3706EE4BEb140b9bf05a3D4/info.json new file mode 100644 index 00000000..f8705fde --- /dev/null +++ b/blockchains/ethereum/assets/0x6bF0d1AfAF3F9073E3706EE4BEb140b9bf05a3D4/info.json @@ -0,0 +1,11 @@ +{ + "name": "TransBurn", + "symbol": "TRB ", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6bF0d1AfAF3F9073E3706EE4BEb140b9bf05a3D4", + "status": "abandoned", + "id": "0x6bF0d1AfAF3F9073E3706EE4BEb140b9bf05a3D4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6bF0d1AfAF3F9073E3706EE4BEb140b9bf05a3D4/logo.png b/blockchains/ethereum/assets/0x6bF0d1AfAF3F9073E3706EE4BEb140b9bf05a3D4/logo.png new file mode 100644 index 00000000..e70a7f39 Binary files /dev/null and b/blockchains/ethereum/assets/0x6bF0d1AfAF3F9073E3706EE4BEb140b9bf05a3D4/logo.png differ diff --git a/blockchains/ethereum/assets/0x6baf7FcEA90B0968dc5eD7B8dCB76C986637Ff55/info.json b/blockchains/ethereum/assets/0x6baf7FcEA90B0968dc5eD7B8dCB76C986637Ff55/info.json new file mode 100644 index 00000000..d8cba041 --- /dev/null +++ b/blockchains/ethereum/assets/0x6baf7FcEA90B0968dc5eD7B8dCB76C986637Ff55/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hooli Coin Blockchain", + "symbol": "HLI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6baf7FcEA90B0968dc5eD7B8dCB76C986637Ff55", + "status": "abandoned", + "id": "0x6baf7FcEA90B0968dc5eD7B8dCB76C986637Ff55" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6baf7FcEA90B0968dc5eD7B8dCB76C986637Ff55/logo.png b/blockchains/ethereum/assets/0x6baf7FcEA90B0968dc5eD7B8dCB76C986637Ff55/logo.png new file mode 100644 index 00000000..4c817b0b Binary files /dev/null and b/blockchains/ethereum/assets/0x6baf7FcEA90B0968dc5eD7B8dCB76C986637Ff55/logo.png differ diff --git a/blockchains/ethereum/assets/0x6c1796D1c17d9361314770D357Dc7B6Aa03b3a5D/info.json b/blockchains/ethereum/assets/0x6c1796D1c17d9361314770D357Dc7B6Aa03b3a5D/info.json new file mode 100644 index 00000000..a9ea742e --- /dev/null +++ b/blockchains/ethereum/assets/0x6c1796D1c17d9361314770D357Dc7B6Aa03b3a5D/info.json @@ -0,0 +1,11 @@ +{ + "name": "EllisToken", + "symbol": "ELIS", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6c1796D1c17d9361314770D357Dc7B6Aa03b3a5D", + "status": "abandoned", + "id": "0x6c1796D1c17d9361314770D357Dc7B6Aa03b3a5D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6c1796D1c17d9361314770D357Dc7B6Aa03b3a5D/logo.png b/blockchains/ethereum/assets/0x6c1796D1c17d9361314770D357Dc7B6Aa03b3a5D/logo.png new file mode 100644 index 00000000..2aa40cf5 Binary files /dev/null and b/blockchains/ethereum/assets/0x6c1796D1c17d9361314770D357Dc7B6Aa03b3a5D/logo.png differ diff --git a/blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/info.json b/blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/info.json new file mode 100644 index 00000000..76c20c3a --- /dev/null +++ b/blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/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/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f", + "type": "ERC20", + "symbol": "QUICK", + "decimals": 18, + "status": "abandoned", + "id": "0x6c28AeF8977c9B773996d0e8376d2EE379446F2f", + "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/0x6c37Bf4f042712C978A73e3fd56D1F5738dD7C43/info.json b/blockchains/ethereum/assets/0x6c37Bf4f042712C978A73e3fd56D1F5738dD7C43/info.json new file mode 100644 index 00000000..3926e6f1 --- /dev/null +++ b/blockchains/ethereum/assets/0x6c37Bf4f042712C978A73e3fd56D1F5738dD7C43/info.json @@ -0,0 +1,11 @@ +{ + "name": "Elementeum", + "symbol": "ELET", + "type": "ERC20", + "decimals": 18, + "description": "Elementeum Games is behind the Ether Legends Trading Card Game, which aims to merge physical and blockchain trading cards with engaging gameplay.", + "website": "https://www.etherlegends.io", + "explorer": "https://etherscan.io/token/0x6c37Bf4f042712C978A73e3fd56D1F5738dD7C43", + "status": "active", + "id": "0x6c37Bf4f042712C978A73e3fd56D1F5738dD7C43" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6c37Bf4f042712C978A73e3fd56D1F5738dD7C43/logo.png b/blockchains/ethereum/assets/0x6c37Bf4f042712C978A73e3fd56D1F5738dD7C43/logo.png new file mode 100644 index 00000000..faeba1d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x6c37Bf4f042712C978A73e3fd56D1F5738dD7C43/logo.png differ diff --git a/blockchains/ethereum/assets/0x6c3BE406174349cfa4501654313d97e6a31072e1/info.json b/blockchains/ethereum/assets/0x6c3BE406174349cfa4501654313d97e6a31072e1/info.json new file mode 100644 index 00000000..c3abd6f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x6c3BE406174349cfa4501654313d97e6a31072e1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crypto Neo-value Neural System", + "symbol": "CNNS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://cnns.io/", + "explorer": "https://etherscan.io/token/0x6c3BE406174349cfa4501654313d97e6a31072e1", + "status": "abandoned", + "id": "0x6c3BE406174349cfa4501654313d97e6a31072e1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6c3BE406174349cfa4501654313d97e6a31072e1/logo.png b/blockchains/ethereum/assets/0x6c3BE406174349cfa4501654313d97e6a31072e1/logo.png new file mode 100644 index 00000000..00b035df Binary files /dev/null and b/blockchains/ethereum/assets/0x6c3BE406174349cfa4501654313d97e6a31072e1/logo.png differ diff --git a/blockchains/ethereum/assets/0x6c3ea9036406852006290770BEdFcAbA0e23A0e8/info.json b/blockchains/ethereum/assets/0x6c3ea9036406852006290770BEdFcAbA0e23A0e8/info.json new file mode 100644 index 00000000..87d19e66 --- /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 00000000..e3fb4632 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 new file mode 100644 index 00000000..38350619 --- /dev/null +++ b/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/info.json @@ -0,0 +1,49 @@ +{ + "name": "Phala", + "symbol": "PHA", + "type": "ERC20", + "decimals": 18, + "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", + "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 new file mode 100644 index 00000000..237d1a3b Binary files /dev/null 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 new file mode 100644 index 00000000..917db880 --- /dev/null +++ b/blockchains/ethereum/assets/0x6c6EE5e31d828De241282B9606C8e98Ea48526E2/info.json @@ -0,0 +1,45 @@ +{ + "name": "Holo", + "website": "https://holochain.org", + "description": "Holochain (HOT) is a decentralized application platform that uses peer-to-peer networking for processing agent-centric agreement and consensus mechanisms between users.", + "explorer": "https://etherscan.io/token/0x6c6EE5e31d828De241282B9606C8e98Ea48526E2", + "type": "ERC20", + "symbol": "HOT", + "decimals": 18, + "status": "active", + "id": "0x6c6EE5e31d828De241282B9606C8e98Ea48526E2", + "links": [ + { + "name": "github", + "url": "https://github.com/Holo-Host" + }, + { + "name": "x", + "url": "https://x.com/H_O_L_O_" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/holochain/" + }, + { + "name": "blog", + "url": "https://medium.com/h-o-l-o" + }, + { + "name": "facebook", + "url": "https://facebook.com/holohost/" + }, + { + "name": "telegram", + "url": "https://t.me/channelholo" + }, + { + "name": "whitepaper", + "url": "https://holo.host/whitepapers/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/holotoken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6c6EE5e31d828De241282B9606C8e98Ea48526E2/logo.png b/blockchains/ethereum/assets/0x6c6EE5e31d828De241282B9606C8e98Ea48526E2/logo.png new file mode 100644 index 00000000..d40fc954 Binary files /dev/null and b/blockchains/ethereum/assets/0x6c6EE5e31d828De241282B9606C8e98Ea48526E2/logo.png differ diff --git a/blockchains/ethereum/assets/0x6c972b70c533E2E045F333Ee28b9fFb8D717bE69/info.json b/blockchains/ethereum/assets/0x6c972b70c533E2E045F333Ee28b9fFb8D717bE69/info.json new file mode 100644 index 00000000..37c76102 --- /dev/null +++ b/blockchains/ethereum/assets/0x6c972b70c533E2E045F333Ee28b9fFb8D717bE69/info.json @@ -0,0 +1,42 @@ +{ + "name": "Foundry Logistics Token", + "symbol": "FRY", + "type": "ERC20", + "decimals": 18, + "website": "https://foundrydao.com", + "explorer": "https://etherscan.io/token/0x6c972b70c533E2E045F333Ee28b9fFb8D717bE69", + "status": "active", + "id": "0x6c972b70c533E2E045F333Ee28b9fFb8D717bE69", + "short_description": "Foundry: A DAO for Economic Freedom", + "description": "Foundry will attract FRY holders who believe in unstoppable economic freedom. Following SmokeSignal and DAIHard, FRY holders will likely drive Foundry to build or invest in similar pursuits: profitable tools that increase economic freedom which cannot be shut down.", + "links": [ + { + "name": "github", + "url": "https://github.com/team-toast/Foundry" + }, + { + "name": "x", + "url": "https://x.com/foundryDAO" + }, + { + "name": "telegram", + "url": "https://t.me/FoundryCommunity" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC4Z34M4q5emaYlJP_Sqa-Cw" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/foundrydao-logistics" + }, + { + "name": "medium", + "url": "https://medium.com/daihard-buidlers" + }, + { + "name": "whitepaper", + "url": "https://github.com/team-toast/foundry-design/releases/latest/download/foundry-design.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6c972b70c533E2E045F333Ee28b9fFb8D717bE69/logo.png b/blockchains/ethereum/assets/0x6c972b70c533E2E045F333Ee28b9fFb8D717bE69/logo.png new file mode 100644 index 00000000..8e5652b5 Binary files /dev/null and b/blockchains/ethereum/assets/0x6c972b70c533E2E045F333Ee28b9fFb8D717bE69/logo.png differ diff --git a/blockchains/ethereum/assets/0x6cC41275ef02B4EecCC04fC4424849A96f3272aa/info.json b/blockchains/ethereum/assets/0x6cC41275ef02B4EecCC04fC4424849A96f3272aa/info.json new file mode 100644 index 00000000..7e1c5b48 --- /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 00000000..69f7bedf Binary files /dev/null and b/blockchains/ethereum/assets/0x6cC41275ef02B4EecCC04fC4424849A96f3272aa/logo.png differ diff --git a/blockchains/ethereum/assets/0x6cCB56947eA1d6eFdc81ACfbAcd8263DDFa9b202/info.json b/blockchains/ethereum/assets/0x6cCB56947eA1d6eFdc81ACfbAcd8263DDFa9b202/info.json new file mode 100644 index 00000000..c167ed47 --- /dev/null +++ b/blockchains/ethereum/assets/0x6cCB56947eA1d6eFdc81ACfbAcd8263DDFa9b202/info.json @@ -0,0 +1,11 @@ +{ + "name": "Royal Kingdom Coin", + "symbol": "RKC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6cCB56947eA1d6eFdc81ACfbAcd8263DDFa9b202", + "status": "abandoned", + "id": "0x6cCB56947eA1d6eFdc81ACfbAcd8263DDFa9b202" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6cCB56947eA1d6eFdc81ACfbAcd8263DDFa9b202/logo.png b/blockchains/ethereum/assets/0x6cCB56947eA1d6eFdc81ACfbAcd8263DDFa9b202/logo.png new file mode 100644 index 00000000..954050ee Binary files /dev/null and b/blockchains/ethereum/assets/0x6cCB56947eA1d6eFdc81ACfbAcd8263DDFa9b202/logo.png differ diff --git a/blockchains/ethereum/assets/0x6cF1d9eEDC34a13bD385D02310d4Bfcf83CB270F/info.json b/blockchains/ethereum/assets/0x6cF1d9eEDC34a13bD385D02310d4Bfcf83CB270F/info.json new file mode 100644 index 00000000..1d19b3b5 --- /dev/null +++ b/blockchains/ethereum/assets/0x6cF1d9eEDC34a13bD385D02310d4Bfcf83CB270F/info.json @@ -0,0 +1,11 @@ +{ + "name": "NEXUS", + "symbol": "NEXUS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6cF1d9eEDC34a13bD385D02310d4Bfcf83CB270F", + "status": "abandoned", + "id": "0x6cF1d9eEDC34a13bD385D02310d4Bfcf83CB270F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6cF1d9eEDC34a13bD385D02310d4Bfcf83CB270F/logo.png b/blockchains/ethereum/assets/0x6cF1d9eEDC34a13bD385D02310d4Bfcf83CB270F/logo.png new file mode 100644 index 00000000..a245ad8a Binary files /dev/null and b/blockchains/ethereum/assets/0x6cF1d9eEDC34a13bD385D02310d4Bfcf83CB270F/logo.png differ diff --git a/blockchains/ethereum/assets/0x6cc0afD51CE4Cb6920B775F3D6376Ab82b9A93Bb/info.json b/blockchains/ethereum/assets/0x6cc0afD51CE4Cb6920B775F3D6376Ab82b9A93Bb/info.json new file mode 100644 index 00000000..14b52436 --- /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 00000000..7f174a20 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 00000000..4f4193a5 --- /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 00000000..ebd0c523 --- /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 00000000..da0a1030 Binary files /dev/null and b/blockchains/ethereum/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/logo.png differ diff --git a/blockchains/ethereum/assets/0x6d59439c9fDc84f495Dc72254EDf348Ad0dc30aF/info.json b/blockchains/ethereum/assets/0x6d59439c9fDc84f495Dc72254EDf348Ad0dc30aF/info.json new file mode 100644 index 00000000..ca1b10e8 --- /dev/null +++ b/blockchains/ethereum/assets/0x6d59439c9fDc84f495Dc72254EDf348Ad0dc30aF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vision Bitcoin Cash", + "symbol": "VSBC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6d59439c9fDc84f495Dc72254EDf348Ad0dc30aF", + "status": "abandoned", + "id": "0x6d59439c9fDc84f495Dc72254EDf348Ad0dc30aF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6d59439c9fDc84f495Dc72254EDf348Ad0dc30aF/logo.png b/blockchains/ethereum/assets/0x6d59439c9fDc84f495Dc72254EDf348Ad0dc30aF/logo.png new file mode 100644 index 00000000..1317b294 Binary files /dev/null and b/blockchains/ethereum/assets/0x6d59439c9fDc84f495Dc72254EDf348Ad0dc30aF/logo.png differ diff --git a/blockchains/ethereum/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/info.json b/blockchains/ethereum/assets/0x6d5edEEbBc6A4099Eb8bb289EB3b80D799f7b28C/info.json new file mode 100644 index 00000000..5f24900e --- /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 00000000..5968d83b 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 new file mode 100644 index 00000000..6899e77a --- /dev/null +++ b/blockchains/ethereum/assets/0x6d82017e55b1D24C53c7B33BbB770A86f2ca229D/info.json @@ -0,0 +1,37 @@ +{ + "name": "Stable FIL", + "website": "https://ichi.org", + "description": "Stable FIL is the stablecoin created for the Filecoin community. Backed by both a treasury of FIL and collateral of USDC this ERC20 token can be redeemed for USDC at anytime and also provides a vote for governance of the FIL treasury.", + "explorer": "https://etherscan.io/token/0x6d82017e55b1D24C53c7B33BbB770A86f2ca229D", + "type": "ERC20", + "symbol": "oneFIL", + "decimals": 18, + "status": "active", + "id": "0x6d82017e55b1D24C53c7B33BbB770A86f2ca229D", + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm/ichi-oneToken" + }, + { + "name": "x", + "url": "https://x.com/ichifarm" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Bm6pUHjHUC" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/stable-fil" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6d82017e55b1D24C53c7B33BbB770A86f2ca229D/logo.png b/blockchains/ethereum/assets/0x6d82017e55b1D24C53c7B33BbB770A86f2ca229D/logo.png new file mode 100644 index 00000000..24df5dec Binary files /dev/null and b/blockchains/ethereum/assets/0x6d82017e55b1D24C53c7B33BbB770A86f2ca229D/logo.png differ diff --git a/blockchains/ethereum/assets/0x6dc1ac0FF2619383AC3F3B6514403f31a07D1C52/info.json b/blockchains/ethereum/assets/0x6dc1ac0FF2619383AC3F3B6514403f31a07D1C52/info.json new file mode 100644 index 00000000..7f52abf1 --- /dev/null +++ b/blockchains/ethereum/assets/0x6dc1ac0FF2619383AC3F3B6514403f31a07D1C52/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKC Token", + "symbol": "MKC", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6dc1ac0FF2619383AC3F3B6514403f31a07D1C52", + "status": "abandoned", + "id": "0x6dc1ac0FF2619383AC3F3B6514403f31a07D1C52" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6dc1ac0FF2619383AC3F3B6514403f31a07D1C52/logo.png b/blockchains/ethereum/assets/0x6dc1ac0FF2619383AC3F3B6514403f31a07D1C52/logo.png new file mode 100644 index 00000000..0218579d Binary files /dev/null and b/blockchains/ethereum/assets/0x6dc1ac0FF2619383AC3F3B6514403f31a07D1C52/logo.png differ diff --git a/blockchains/ethereum/assets/0x6dfBCB859b4e64a04AFfCE7699a9Ea857c9C1452/info.json b/blockchains/ethereum/assets/0x6dfBCB859b4e64a04AFfCE7699a9Ea857c9C1452/info.json new file mode 100644 index 00000000..10ab2010 --- /dev/null +++ b/blockchains/ethereum/assets/0x6dfBCB859b4e64a04AFfCE7699a9Ea857c9C1452/info.json @@ -0,0 +1,11 @@ +{ + "name": "O2O Plus", + "symbol": "OOP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6dfBCB859b4e64a04AFfCE7699a9Ea857c9C1452", + "status": "abandoned", + "id": "0x6dfBCB859b4e64a04AFfCE7699a9Ea857c9C1452" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6dfBCB859b4e64a04AFfCE7699a9Ea857c9C1452/logo.png b/blockchains/ethereum/assets/0x6dfBCB859b4e64a04AFfCE7699a9Ea857c9C1452/logo.png new file mode 100644 index 00000000..85e4591a Binary files /dev/null and b/blockchains/ethereum/assets/0x6dfBCB859b4e64a04AFfCE7699a9Ea857c9C1452/logo.png differ diff --git a/blockchains/ethereum/assets/0x6e0daDE58D2d89eBBe7aFc384e3E4f15b70b14D8/info.json b/blockchains/ethereum/assets/0x6e0daDE58D2d89eBBe7aFc384e3E4f15b70b14D8/info.json new file mode 100644 index 00000000..bb406fcb --- /dev/null +++ b/blockchains/ethereum/assets/0x6e0daDE58D2d89eBBe7aFc384e3E4f15b70b14D8/info.json @@ -0,0 +1,11 @@ +{ + "name": "QuiverX", + "website": "https://quiverx.io/", + "description": "QuiverX is a utility token for the QuiverX crowdfunding platform which is based on blockchain technology, and governed by smart contracts on the Ethereum ecosystem.", + "explorer": "https://etherscan.io/token/0x6e0dade58d2d89ebbe7afc384e3e4f15b70b14d8", + "type": "ERC20", + "symbol": "QRX", + "decimals": 18, + "status": "active", + "id": "0x6e0daDE58D2d89eBBe7aFc384e3E4f15b70b14D8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6e0daDE58D2d89eBBe7aFc384e3E4f15b70b14D8/logo.png b/blockchains/ethereum/assets/0x6e0daDE58D2d89eBBe7aFc384e3E4f15b70b14D8/logo.png new file mode 100644 index 00000000..9c4eec95 Binary files /dev/null and b/blockchains/ethereum/assets/0x6e0daDE58D2d89eBBe7aFc384e3E4f15b70b14D8/logo.png differ diff --git a/blockchains/ethereum/assets/0x6e15A54B5EcAc17e58daDedDbe8506a7560252F9/info.json b/blockchains/ethereum/assets/0x6e15A54B5EcAc17e58daDedDbe8506a7560252F9/info.json new file mode 100644 index 00000000..4dfb2b7d --- /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 00000000..35fa50ab Binary files /dev/null and b/blockchains/ethereum/assets/0x6e15A54B5EcAc17e58daDedDbe8506a7560252F9/logo.png differ diff --git a/blockchains/ethereum/assets/0x6e1A19F235bE7ED8E3369eF73b196C07257494DE/info.json b/blockchains/ethereum/assets/0x6e1A19F235bE7ED8E3369eF73b196C07257494DE/info.json new file mode 100644 index 00000000..3c38d7a5 --- /dev/null +++ b/blockchains/ethereum/assets/0x6e1A19F235bE7ED8E3369eF73b196C07257494DE/info.json @@ -0,0 +1,11 @@ +{ + "name": "WFIL", + "website": "https://www.wrapped.com", + "description": "Wrapped Filecoin is a 1:1 equivalent of Filecoin on the Ethereum network", + "explorer": "https://etherscan.io/token/0x6e1A19F235bE7ED8E3369eF73b196C07257494DE", + "type": "ERC20", + "symbol": "WFIL", + "decimals": 18, + "status": "active", + "id": "0x6e1A19F235bE7ED8E3369eF73b196C07257494DE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6e1A19F235bE7ED8E3369eF73b196C07257494DE/logo.png b/blockchains/ethereum/assets/0x6e1A19F235bE7ED8E3369eF73b196C07257494DE/logo.png new file mode 100644 index 00000000..6df06db0 Binary files /dev/null and b/blockchains/ethereum/assets/0x6e1A19F235bE7ED8E3369eF73b196C07257494DE/logo.png differ diff --git a/blockchains/ethereum/assets/0x6e2050CBFB3eD8A4d39b64cC9f47E711a03a5a89/info.json b/blockchains/ethereum/assets/0x6e2050CBFB3eD8A4d39b64cC9f47E711a03a5a89/info.json new file mode 100644 index 00000000..e5ecea8c --- /dev/null +++ b/blockchains/ethereum/assets/0x6e2050CBFB3eD8A4d39b64cC9f47E711a03a5a89/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "\"\"", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6e2050CBFB3eD8A4d39b64cC9f47E711a03a5a89", + "status": "abandoned", + "id": "0x6e2050CBFB3eD8A4d39b64cC9f47E711a03a5a89" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6e2050CBFB3eD8A4d39b64cC9f47E711a03a5a89/logo.png b/blockchains/ethereum/assets/0x6e2050CBFB3eD8A4d39b64cC9f47E711a03a5a89/logo.png new file mode 100755 index 00000000..422324db Binary files /dev/null and b/blockchains/ethereum/assets/0x6e2050CBFB3eD8A4d39b64cC9f47E711a03a5a89/logo.png differ diff --git a/blockchains/ethereum/assets/0x6e2A5b577437440D6024AEf6a6bf81CdE09798de/info.json b/blockchains/ethereum/assets/0x6e2A5b577437440D6024AEf6a6bf81CdE09798de/info.json new file mode 100644 index 00000000..0bc6803c --- /dev/null +++ b/blockchains/ethereum/assets/0x6e2A5b577437440D6024AEf6a6bf81CdE09798de/info.json @@ -0,0 +1,11 @@ +{ + "name": "ChainBookSystem", + "symbol": "CBS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6e2A5b577437440D6024AEf6a6bf81CdE09798de", + "status": "abandoned", + "id": "0x6e2A5b577437440D6024AEf6a6bf81CdE09798de" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6e2A5b577437440D6024AEf6a6bf81CdE09798de/logo.png b/blockchains/ethereum/assets/0x6e2A5b577437440D6024AEf6a6bf81CdE09798de/logo.png new file mode 100644 index 00000000..8135ace0 Binary files /dev/null and b/blockchains/ethereum/assets/0x6e2A5b577437440D6024AEf6a6bf81CdE09798de/logo.png differ diff --git a/blockchains/ethereum/assets/0x6e55027CAe60cfdB7BACA78f3e6514aEE716fCf9/info.json b/blockchains/ethereum/assets/0x6e55027CAe60cfdB7BACA78f3e6514aEE716fCf9/info.json new file mode 100644 index 00000000..fff84963 --- /dev/null +++ b/blockchains/ethereum/assets/0x6e55027CAe60cfdB7BACA78f3e6514aEE716fCf9/info.json @@ -0,0 +1,11 @@ +{ + "name": "NANO ECOSYSTEM", + "symbol": "NECOS", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6e55027CAe60cfdB7BACA78f3e6514aEE716fCf9", + "status": "abandoned", + "id": "0x6e55027CAe60cfdB7BACA78f3e6514aEE716fCf9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6e55027CAe60cfdB7BACA78f3e6514aEE716fCf9/logo.png b/blockchains/ethereum/assets/0x6e55027CAe60cfdB7BACA78f3e6514aEE716fCf9/logo.png new file mode 100644 index 00000000..5e1cb4fe Binary files /dev/null and b/blockchains/ethereum/assets/0x6e55027CAe60cfdB7BACA78f3e6514aEE716fCf9/logo.png differ diff --git a/blockchains/ethereum/assets/0x6e63b76fa87a4085DdaCfB0066A57C1ED812f4cE/info.json b/blockchains/ethereum/assets/0x6e63b76fa87a4085DdaCfB0066A57C1ED812f4cE/info.json new file mode 100644 index 00000000..0305f5b6 --- /dev/null +++ b/blockchains/ethereum/assets/0x6e63b76fa87a4085DdaCfB0066A57C1ED812f4cE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ocbtoken - Blockmax", + "symbol": "OCB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6e63b76fa87a4085DdaCfB0066A57C1ED812f4cE", + "status": "abandoned", + "id": "0x6e63b76fa87a4085DdaCfB0066A57C1ED812f4cE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6e63b76fa87a4085DdaCfB0066A57C1ED812f4cE/logo.png b/blockchains/ethereum/assets/0x6e63b76fa87a4085DdaCfB0066A57C1ED812f4cE/logo.png new file mode 100644 index 00000000..a3254021 Binary files /dev/null and b/blockchains/ethereum/assets/0x6e63b76fa87a4085DdaCfB0066A57C1ED812f4cE/logo.png differ diff --git a/blockchains/ethereum/assets/0x6e8908cfa881C9f6f2C64d3436E7b80b1bf0093F/info.json b/blockchains/ethereum/assets/0x6e8908cfa881C9f6f2C64d3436E7b80b1bf0093F/info.json new file mode 100644 index 00000000..1a100420 --- /dev/null +++ b/blockchains/ethereum/assets/0x6e8908cfa881C9f6f2C64d3436E7b80b1bf0093F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bistroo", + "symbol": "BIST", + "type": "ERC20", + "decimals": 18, + "description": "The community-powered food delivery platform.", + "website": "https://bistroo.io", + "explorer": "https://etherscan.io/token/0x6e8908cfa881c9f6f2c64d3436e7b80b1bf0093f", + "status": "active", + "id": "0x6e8908cfa881C9f6f2C64d3436E7b80b1bf0093F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6e8908cfa881C9f6f2C64d3436E7b80b1bf0093F/logo.png b/blockchains/ethereum/assets/0x6e8908cfa881C9f6f2C64d3436E7b80b1bf0093F/logo.png new file mode 100644 index 00000000..3d13eb23 Binary files /dev/null and b/blockchains/ethereum/assets/0x6e8908cfa881C9f6f2C64d3436E7b80b1bf0093F/logo.png differ diff --git a/blockchains/ethereum/assets/0x6e9730EcFfBed43fD876A264C982e254ef05a0DE/info.json b/blockchains/ethereum/assets/0x6e9730EcFfBed43fD876A264C982e254ef05a0DE/info.json new file mode 100644 index 00000000..c9df6594 --- /dev/null +++ b/blockchains/ethereum/assets/0x6e9730EcFfBed43fD876A264C982e254ef05a0DE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nord Finance", + "type": "ERC20", + "symbol": "NORD", + "decimals": 18, + "website": "https://nordfinance.io", + "description": "Nord Finance, a blockchain agnostic platform, is an advanced decentralized financial ecosystem focusing on simplifying decentralized finance products.", + "explorer": "https://etherscan.io/token/0x6e9730ecffbed43fd876a264c982e254ef05a0de", + "status": "active", + "id": "0x6e9730EcFfBed43fD876A264C982e254ef05a0DE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6e9730EcFfBed43fD876A264C982e254ef05a0DE/logo.png b/blockchains/ethereum/assets/0x6e9730EcFfBed43fD876A264C982e254ef05a0DE/logo.png new file mode 100644 index 00000000..42fc1359 Binary files /dev/null and b/blockchains/ethereum/assets/0x6e9730EcFfBed43fD876A264C982e254ef05a0DE/logo.png differ diff --git a/blockchains/ethereum/assets/0x6e9DE2e85A8C1188995FeCea289b3F22E489bB12/info.json b/blockchains/ethereum/assets/0x6e9DE2e85A8C1188995FeCea289b3F22E489bB12/info.json new file mode 100644 index 00000000..7be39ab5 --- /dev/null +++ b/blockchains/ethereum/assets/0x6e9DE2e85A8C1188995FeCea289b3F22E489bB12/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bertbit", + "symbol": "BERT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6e9DE2e85A8C1188995FeCea289b3F22E489bB12", + "status": "abandoned", + "id": "0x6e9DE2e85A8C1188995FeCea289b3F22E489bB12" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6e9DE2e85A8C1188995FeCea289b3F22E489bB12/logo.png b/blockchains/ethereum/assets/0x6e9DE2e85A8C1188995FeCea289b3F22E489bB12/logo.png new file mode 100644 index 00000000..8e758e1b Binary files /dev/null and b/blockchains/ethereum/assets/0x6e9DE2e85A8C1188995FeCea289b3F22E489bB12/logo.png differ diff --git a/blockchains/ethereum/assets/0x6eC4Bd455ccEc9695A24A9DD702ed8fa8f69b27e/info.json b/blockchains/ethereum/assets/0x6eC4Bd455ccEc9695A24A9DD702ed8fa8f69b27e/info.json new file mode 100644 index 00000000..afc4432b --- /dev/null +++ b/blockchains/ethereum/assets/0x6eC4Bd455ccEc9695A24A9DD702ed8fa8f69b27e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eco Finances", + "symbol": "EFC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6eC4Bd455ccEc9695A24A9DD702ed8fa8f69b27e", + "status": "spam", + "id": "0x6eC4Bd455ccEc9695A24A9DD702ed8fa8f69b27e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6eC4Bd455ccEc9695A24A9DD702ed8fa8f69b27e/logo.png b/blockchains/ethereum/assets/0x6eC4Bd455ccEc9695A24A9DD702ed8fa8f69b27e/logo.png new file mode 100644 index 00000000..3b5f39c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x6eC4Bd455ccEc9695A24A9DD702ed8fa8f69b27e/logo.png differ diff --git a/blockchains/ethereum/assets/0x6eDBdEB48CCC0DFab0BbAebc349732e320d6d213/info.json b/blockchains/ethereum/assets/0x6eDBdEB48CCC0DFab0BbAebc349732e320d6d213/info.json new file mode 100644 index 00000000..b7b52981 --- /dev/null +++ b/blockchains/ethereum/assets/0x6eDBdEB48CCC0DFab0BbAebc349732e320d6d213/info.json @@ -0,0 +1,11 @@ +{ + "name": "YesManCoin", + "symbol": "YESM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6eDBdEB48CCC0DFab0BbAebc349732e320d6d213", + "status": "abandoned", + "id": "0x6eDBdEB48CCC0DFab0BbAebc349732e320d6d213" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6eDBdEB48CCC0DFab0BbAebc349732e320d6d213/logo.png b/blockchains/ethereum/assets/0x6eDBdEB48CCC0DFab0BbAebc349732e320d6d213/logo.png new file mode 100644 index 00000000..54ee38f6 Binary files /dev/null and b/blockchains/ethereum/assets/0x6eDBdEB48CCC0DFab0BbAebc349732e320d6d213/logo.png differ diff --git a/blockchains/ethereum/assets/0x6eE3c275D233f9519E5c32e24aDA2e90091a8f50/info.json b/blockchains/ethereum/assets/0x6eE3c275D233f9519E5c32e24aDA2e90091a8f50/info.json new file mode 100644 index 00000000..72f51a94 --- /dev/null +++ b/blockchains/ethereum/assets/0x6eE3c275D233f9519E5c32e24aDA2e90091a8f50/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlueChain", + "symbol": "BLC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6eE3c275D233f9519E5c32e24aDA2e90091a8f50", + "status": "abandoned", + "id": "0x6eE3c275D233f9519E5c32e24aDA2e90091a8f50" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6eE3c275D233f9519E5c32e24aDA2e90091a8f50/logo.png b/blockchains/ethereum/assets/0x6eE3c275D233f9519E5c32e24aDA2e90091a8f50/logo.png new file mode 100644 index 00000000..a5350349 Binary files /dev/null and b/blockchains/ethereum/assets/0x6eE3c275D233f9519E5c32e24aDA2e90091a8f50/logo.png differ diff --git a/blockchains/ethereum/assets/0x6ea6531b603F270d23d9EDd2d8279135DC5D6773/info.json b/blockchains/ethereum/assets/0x6ea6531b603F270d23d9EDd2d8279135DC5D6773/info.json new file mode 100644 index 00000000..418eb122 --- /dev/null +++ b/blockchains/ethereum/assets/0x6ea6531b603F270d23d9EDd2d8279135DC5D6773/info.json @@ -0,0 +1,11 @@ +{ + "name": "InsurChain Coin", + "symbol": "INSUR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6ea6531b603F270d23d9EDd2d8279135DC5D6773", + "status": "abandoned", + "id": "0x6ea6531b603F270d23d9EDd2d8279135DC5D6773" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6ea6531b603F270d23d9EDd2d8279135DC5D6773/logo.png b/blockchains/ethereum/assets/0x6ea6531b603F270d23d9EDd2d8279135DC5D6773/logo.png new file mode 100644 index 00000000..0c1afc7d Binary files /dev/null and b/blockchains/ethereum/assets/0x6ea6531b603F270d23d9EDd2d8279135DC5D6773/logo.png differ diff --git a/blockchains/ethereum/assets/0x6eab9C5e768C8C37e94dC236c6Cde7dbA4d0F3b3/info.json b/blockchains/ethereum/assets/0x6eab9C5e768C8C37e94dC236c6Cde7dbA4d0F3b3/info.json new file mode 100644 index 00000000..8a577ad4 --- /dev/null +++ b/blockchains/ethereum/assets/0x6eab9C5e768C8C37e94dC236c6Cde7dbA4d0F3b3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Swapscan", + "symbol": "SWP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6eab9C5e768C8C37e94dC236c6Cde7dbA4d0F3b3", + "status": "abandoned", + "id": "0x6eab9C5e768C8C37e94dC236c6Cde7dbA4d0F3b3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6eab9C5e768C8C37e94dC236c6Cde7dbA4d0F3b3/logo.png b/blockchains/ethereum/assets/0x6eab9C5e768C8C37e94dC236c6Cde7dbA4d0F3b3/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x6eab9C5e768C8C37e94dC236c6Cde7dbA4d0F3b3/logo.png differ diff --git a/blockchains/ethereum/assets/0x6ef69Ba2d051761aFD38F218F0a3cF517D64A760/info.json b/blockchains/ethereum/assets/0x6ef69Ba2d051761aFD38F218F0a3cF517D64A760/info.json new file mode 100644 index 00000000..84a5a56f --- /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 00000000..cc9a9e4e Binary files /dev/null and b/blockchains/ethereum/assets/0x6ef69Ba2d051761aFD38F218F0a3cF517D64A760/logo.png differ diff --git a/blockchains/ethereum/assets/0x6f022E991ea21d26F85f6716c088e2864101dfEC/info.json b/blockchains/ethereum/assets/0x6f022E991ea21d26F85f6716c088e2864101dfEC/info.json new file mode 100644 index 00000000..a4540b95 --- /dev/null +++ b/blockchains/ethereum/assets/0x6f022E991ea21d26F85f6716c088e2864101dfEC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hands Of Steel", + "website": "https://handsofsteel.money", + "description": "Our Seller Transfer Only Protocol Initiates Tax (STOP IT) actively taxes sellers while rewarding holders.", + "explorer": "https://etherscan.io/token/0x6f022E991ea21d26F85f6716c088e2864101dfEC", + "type": "ERC20", + "symbol": "STEEL", + "decimals": 0, + "status": "active", + "id": "0x6f022E991ea21d26F85f6716c088e2864101dfEC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6f022E991ea21d26F85f6716c088e2864101dfEC/logo.png b/blockchains/ethereum/assets/0x6f022E991ea21d26F85f6716c088e2864101dfEC/logo.png new file mode 100644 index 00000000..cef72b18 Binary files /dev/null and b/blockchains/ethereum/assets/0x6f022E991ea21d26F85f6716c088e2864101dfEC/logo.png differ diff --git a/blockchains/ethereum/assets/0x6f259637dcD74C767781E37Bc6133cd6A68aa161/info.json b/blockchains/ethereum/assets/0x6f259637dcD74C767781E37Bc6133cd6A68aa161/info.json new file mode 100644 index 00000000..ffb6b6f3 --- /dev/null +++ b/blockchains/ethereum/assets/0x6f259637dcD74C767781E37Bc6133cd6A68aa161/info.json @@ -0,0 +1,33 @@ +{ + "name": "Huobi Token", + "website": "https://hbg.com", + "description": "Huobi Token (HT) is an exchange based token and native currency of the Huobi crypto exchange.", + "explorer": "https://etherscan.io/token/0x6f259637dcD74C767781E37Bc6133cd6A68aa161", + "type": "ERC20", + "symbol": "HT", + "decimals": 18, + "status": "active", + "id": "0x6f259637dcD74C767781E37Bc6133cd6A68aa161", + "links": [ + { + "name": "telegram", + "url": "https://t.me/huobiproofficial" + }, + { + "name": "x", + "url": "https://x.com/HUOBI_Pro" + }, + { + "name": "facebook", + "url": "https://facebook.com/huobi.pro" + }, + { + "name": "blog", + "url": "https://medium.com/huobi-global" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/huobi-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6f259637dcD74C767781E37Bc6133cd6A68aa161/logo.png b/blockchains/ethereum/assets/0x6f259637dcD74C767781E37Bc6133cd6A68aa161/logo.png new file mode 100644 index 00000000..88f70f84 Binary files /dev/null and b/blockchains/ethereum/assets/0x6f259637dcD74C767781E37Bc6133cd6A68aa161/logo.png differ diff --git a/blockchains/ethereum/assets/0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb/info.json b/blockchains/ethereum/assets/0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb/info.json new file mode 100644 index 00000000..c952737f --- /dev/null +++ b/blockchains/ethereum/assets/0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb/info.json @@ -0,0 +1,21 @@ +{ + "name": "Fluid", + "type": "ERC20", + "symbol": "FLUID", + "decimals": 18, + "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", + "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 new file mode 100644 index 00000000..c92e11eb Binary files /dev/null and b/blockchains/ethereum/assets/0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb/logo.png differ diff --git a/blockchains/ethereum/assets/0x6f45453C04D9Ffc46F70a1c44c903a1fB0D51684/info.json b/blockchains/ethereum/assets/0x6f45453C04D9Ffc46F70a1c44c903a1fB0D51684/info.json new file mode 100644 index 00000000..7bae6311 --- /dev/null +++ b/blockchains/ethereum/assets/0x6f45453C04D9Ffc46F70a1c44c903a1fB0D51684/info.json @@ -0,0 +1,11 @@ +{ + "name": "Deut Capital Management", + "symbol": "DCM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6f45453C04D9Ffc46F70a1c44c903a1fB0D51684", + "status": "abandoned", + "id": "0x6f45453C04D9Ffc46F70a1c44c903a1fB0D51684" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6f45453C04D9Ffc46F70a1c44c903a1fB0D51684/logo.png b/blockchains/ethereum/assets/0x6f45453C04D9Ffc46F70a1c44c903a1fB0D51684/logo.png new file mode 100644 index 00000000..4be99841 Binary files /dev/null and b/blockchains/ethereum/assets/0x6f45453C04D9Ffc46F70a1c44c903a1fB0D51684/logo.png differ diff --git a/blockchains/ethereum/assets/0x6f5E77Cea0AbDdA40013a8eF53639C96972fb745/info.json b/blockchains/ethereum/assets/0x6f5E77Cea0AbDdA40013a8eF53639C96972fb745/info.json new file mode 100644 index 00000000..3fce7a2e --- /dev/null +++ b/blockchains/ethereum/assets/0x6f5E77Cea0AbDdA40013a8eF53639C96972fb745/info.json @@ -0,0 +1,11 @@ +{ + "name": "New York Exchange Coin", + "website": "https://nyecoin.io/", + "description": "It utilizes the blockchain technology to create a financial integration between old classic stock and commodities market with the new trend of Crypto Trading platforms. Transaction Transparency: Records and manages price, contracts, and transaction history. Re-evaluation of Corporate Values: In order to safeguard ITO participants, our crypto holders and their assets, NYE controls potential risks by depending on objective metrics analysis and multi-variable assessment.", + "type": "ERC20", + "symbol": "NYE", + "decimals": 18, + "status": "active", + "id": "0x6f5E77Cea0AbDdA40013a8eF53639C96972fb745", + "explorer": "https://etherscan.io/token/0x6f5e77cea0abdda40013a8ef53639c96972fb745" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6f5E77Cea0AbDdA40013a8eF53639C96972fb745/logo.png b/blockchains/ethereum/assets/0x6f5E77Cea0AbDdA40013a8eF53639C96972fb745/logo.png new file mode 100644 index 00000000..934aeaed Binary files /dev/null and b/blockchains/ethereum/assets/0x6f5E77Cea0AbDdA40013a8eF53639C96972fb745/logo.png differ diff --git a/blockchains/ethereum/assets/0x6f72b14383f5eCDAcDD2F761a5C4B070F91C2806/info.json b/blockchains/ethereum/assets/0x6f72b14383f5eCDAcDD2F761a5C4B070F91C2806/info.json new file mode 100644 index 00000000..100ffd51 --- /dev/null +++ b/blockchains/ethereum/assets/0x6f72b14383f5eCDAcDD2F761a5C4B070F91C2806/info.json @@ -0,0 +1,11 @@ +{ + "name": "Melt", + "symbol": "MELT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "https://www.meltproject.net", + "explorer": "https://etherscan.io/token/0x6f72b14383f5eCDAcDD2F761a5C4B070F91C2806", + "status": "abandoned", + "id": "0x6f72b14383f5eCDAcDD2F761a5C4B070F91C2806" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6f72b14383f5eCDAcDD2F761a5C4B070F91C2806/logo.png b/blockchains/ethereum/assets/0x6f72b14383f5eCDAcDD2F761a5C4B070F91C2806/logo.png new file mode 100644 index 00000000..2808d2b2 Binary files /dev/null and b/blockchains/ethereum/assets/0x6f72b14383f5eCDAcDD2F761a5C4B070F91C2806/logo.png differ diff --git a/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/info.json b/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/info.json new file mode 100644 index 00000000..56a1b169 --- /dev/null +++ b/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/info.json @@ -0,0 +1,44 @@ +{ + "name": "Silo Finance", + "type": "ERC20", + "symbol": "SILO", + "decimals": 18, + "website": "https://www.silo.finance", + "description": "Silo's lending protocol (Silo Finance) is owned and operated by the SiloDAO. The governance token ($SILO) endows holders with full control over the DAO and its lending protocol through voting and delegation rights.", + "explorer": "https://etherscan.io/token/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8", + "status": "active", + "id": "0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8", + "links": [ + { + "name": "x", + "url": "https://x.com/SiloFinance" + }, + { + "name": "github", + "url": "https://github.com/silo-finance" + }, + { + "name": "telegram", + "url": "https://t.me/silo_community" + }, + { + "name": "telegram_news", + "url": "https://t.me/silo_finance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/silo-finance" + }, + { + "name": "docs", + "url": "https://silopedia.silo.finance/welcome/read-me" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/silo-finance" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/logo.png b/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/logo.png new file mode 100644 index 00000000..7e2a636e Binary files /dev/null and b/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/logo.png differ diff --git a/blockchains/ethereum/assets/0x6f9aFEe7645ed0F115f39a64346e7Cb2Cd17B26F/info.json b/blockchains/ethereum/assets/0x6f9aFEe7645ed0F115f39a64346e7Cb2Cd17B26F/info.json new file mode 100644 index 00000000..1864a36e --- /dev/null +++ b/blockchains/ethereum/assets/0x6f9aFEe7645ed0F115f39a64346e7Cb2Cd17B26F/info.json @@ -0,0 +1,11 @@ +{ + "name": "LibraNetwork", + "symbol": "Libra", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6f9aFEe7645ed0F115f39a64346e7Cb2Cd17B26F", + "status": "abandoned", + "id": "0x6f9aFEe7645ed0F115f39a64346e7Cb2Cd17B26F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6f9aFEe7645ed0F115f39a64346e7Cb2Cd17B26F/logo.png b/blockchains/ethereum/assets/0x6f9aFEe7645ed0F115f39a64346e7Cb2Cd17B26F/logo.png new file mode 100644 index 00000000..b8d56373 Binary files /dev/null and b/blockchains/ethereum/assets/0x6f9aFEe7645ed0F115f39a64346e7Cb2Cd17B26F/logo.png differ diff --git a/blockchains/ethereum/assets/0x6fA0BE17e4beA2fCfA22ef89BF8ac9aab0AB0fc9/info.json b/blockchains/ethereum/assets/0x6fA0BE17e4beA2fCfA22ef89BF8ac9aab0AB0fc9/info.json new file mode 100644 index 00000000..590acb10 --- /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 00000000..06064d6b Binary files /dev/null and b/blockchains/ethereum/assets/0x6fA0BE17e4beA2fCfA22ef89BF8ac9aab0AB0fc9/logo.png differ diff --git a/blockchains/ethereum/assets/0x6fB3e0A217407EFFf7Ca062D46c26E5d60a14d69/info.json b/blockchains/ethereum/assets/0x6fB3e0A217407EFFf7Ca062D46c26E5d60a14d69/info.json new file mode 100644 index 00000000..335e1d41 --- /dev/null +++ b/blockchains/ethereum/assets/0x6fB3e0A217407EFFf7Ca062D46c26E5d60a14d69/info.json @@ -0,0 +1,14 @@ +{ + "name": "IoTeX ERC20", + "symbol": "IoTeX ERC20", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://iotex.io", + "explorer": "https://etherscan.io/token/0x6fB3e0A217407EFFf7Ca062D46c26E5d60a14d69", + "status": "abandoned", + "id": "0x6fB3e0A217407EFFf7Ca062D46c26E5d60a14d69", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6fB3e0A217407EFFf7Ca062D46c26E5d60a14d69/logo.png b/blockchains/ethereum/assets/0x6fB3e0A217407EFFf7Ca062D46c26E5d60a14d69/logo.png new file mode 100644 index 00000000..f0b73343 Binary files /dev/null and b/blockchains/ethereum/assets/0x6fB3e0A217407EFFf7Ca062D46c26E5d60a14d69/logo.png differ diff --git a/blockchains/ethereum/assets/0x6fC13EACE26590B80cCCAB1ba5d51890577D83B2/info.json b/blockchains/ethereum/assets/0x6fC13EACE26590B80cCCAB1ba5d51890577D83B2/info.json new file mode 100644 index 00000000..66e4c640 --- /dev/null +++ b/blockchains/ethereum/assets/0x6fC13EACE26590B80cCCAB1ba5d51890577D83B2/info.json @@ -0,0 +1,23 @@ +{ + "id": "0x6fC13EACE26590B80cCCAB1ba5d51890577D83B2", + "name": "Umbrella Network", + "website": "https://www.umb.network", + "short_description": "Umbrella is a scalable, community owned oracle", + "description": "Umbrella Network a Community owned, Decentralized Oracle built on Layer 2 for DeFi and Blockchain Applications powered by UMB cryptocurrency", + "explorer": "https://etherscan.io/token/0x6fC13EACE26590B80cCCAB1ba5d51890577D83B2", + "decimals": 18, + "type": "ERC20", + "symbol": "UMB", + "status": "active", + "research": "", + "links": [ + { + "name": "github", + "url": "https://github.com/umbrella-network/overture" + }, + { + "name": "whitepaper", + "url": "https://www.umb.network/wp-content/uploads/2021/02/umb_litepaper_design_v3.1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6fC13EACE26590B80cCCAB1ba5d51890577D83B2/logo.png b/blockchains/ethereum/assets/0x6fC13EACE26590B80cCCAB1ba5d51890577D83B2/logo.png new file mode 100644 index 00000000..de13ce26 Binary files /dev/null and b/blockchains/ethereum/assets/0x6fC13EACE26590B80cCCAB1ba5d51890577D83B2/logo.png differ diff --git a/blockchains/ethereum/assets/0x6fE355c62C6faf6946cE888fFABa9fD12355ae27/info.json b/blockchains/ethereum/assets/0x6fE355c62C6faf6946cE888fFABa9fD12355ae27/info.json new file mode 100644 index 00000000..6eac7016 --- /dev/null +++ b/blockchains/ethereum/assets/0x6fE355c62C6faf6946cE888fFABa9fD12355ae27/info.json @@ -0,0 +1,11 @@ +{ + "name": "HashBX", + "symbol": "HBX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://hashbx.io/", + "explorer": "https://etherscan.io/token/0x6fE355c62C6faf6946cE888fFABa9fD12355ae27", + "status": "abandoned", + "id": "0x6fE355c62C6faf6946cE888fFABa9fD12355ae27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6fE355c62C6faf6946cE888fFABa9fD12355ae27/logo.png b/blockchains/ethereum/assets/0x6fE355c62C6faf6946cE888fFABa9fD12355ae27/logo.png new file mode 100755 index 00000000..7d58ff8d Binary files /dev/null and b/blockchains/ethereum/assets/0x6fE355c62C6faf6946cE888fFABa9fD12355ae27/logo.png differ diff --git a/blockchains/ethereum/assets/0x6fF9FF021B978605DEA99b35d212AE950e9EA36e/info.json b/blockchains/ethereum/assets/0x6fF9FF021B978605DEA99b35d212AE950e9EA36e/info.json new file mode 100644 index 00000000..641773a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x6fF9FF021B978605DEA99b35d212AE950e9EA36e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Box5", + "symbol": "Box5", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6fF9FF021B978605DEA99b35d212AE950e9EA36e", + "status": "abandoned", + "id": "0x6fF9FF021B978605DEA99b35d212AE950e9EA36e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6fF9FF021B978605DEA99b35d212AE950e9EA36e/logo.png b/blockchains/ethereum/assets/0x6fF9FF021B978605DEA99b35d212AE950e9EA36e/logo.png new file mode 100755 index 00000000..e5ce8624 Binary files /dev/null and b/blockchains/ethereum/assets/0x6fF9FF021B978605DEA99b35d212AE950e9EA36e/logo.png differ diff --git a/blockchains/ethereum/assets/0x6fFF3806Bbac52A20e0d79BC538d527f6a22c96b/info.json b/blockchains/ethereum/assets/0x6fFF3806Bbac52A20e0d79BC538d527f6a22c96b/info.json new file mode 100644 index 00000000..5aab80ec --- /dev/null +++ b/blockchains/ethereum/assets/0x6fFF3806Bbac52A20e0d79BC538d527f6a22c96b/info.json @@ -0,0 +1,11 @@ +{ + "name": "0x0000000000000000000000000000000000000000000000000000000000000020", + "symbol": "CDX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://cdxnet.com/", + "explorer": "https://etherscan.io/token/0x6fFF3806Bbac52A20e0d79BC538d527f6a22c96b", + "status": "abandoned", + "id": "0x6fFF3806Bbac52A20e0d79BC538d527f6a22c96b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6fFF3806Bbac52A20e0d79BC538d527f6a22c96b/logo.png b/blockchains/ethereum/assets/0x6fFF3806Bbac52A20e0d79BC538d527f6a22c96b/logo.png new file mode 100755 index 00000000..c99b3b72 Binary files /dev/null and b/blockchains/ethereum/assets/0x6fFF3806Bbac52A20e0d79BC538d527f6a22c96b/logo.png differ diff --git a/blockchains/ethereum/assets/0x6fc22D1F6852Af2bceA6cB749033ccB6B4D3177a/info.json b/blockchains/ethereum/assets/0x6fc22D1F6852Af2bceA6cB749033ccB6B4D3177a/info.json new file mode 100644 index 00000000..ee97426b --- /dev/null +++ b/blockchains/ethereum/assets/0x6fc22D1F6852Af2bceA6cB749033ccB6B4D3177a/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitSTD Shares", + "symbol": "BSS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6fc22D1F6852Af2bceA6cB749033ccB6B4D3177a", + "status": "abandoned", + "id": "0x6fc22D1F6852Af2bceA6cB749033ccB6B4D3177a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6fc22D1F6852Af2bceA6cB749033ccB6B4D3177a/logo.png b/blockchains/ethereum/assets/0x6fc22D1F6852Af2bceA6cB749033ccB6B4D3177a/logo.png new file mode 100644 index 00000000..a3847c99 Binary files /dev/null and b/blockchains/ethereum/assets/0x6fc22D1F6852Af2bceA6cB749033ccB6B4D3177a/logo.png differ diff --git a/blockchains/ethereum/assets/0x6fcBBB527Fb2954BED2B224A5BB7c23C5AeEb6E1/info.json b/blockchains/ethereum/assets/0x6fcBBB527Fb2954BED2B224A5BB7c23C5AeEb6E1/info.json new file mode 100644 index 00000000..f935bc7e --- /dev/null +++ b/blockchains/ethereum/assets/0x6fcBBB527Fb2954BED2B224A5BB7c23C5AeEb6E1/info.json @@ -0,0 +1,11 @@ +{ + "name": "oneETH", + "website": "https://ichi.farm", + "description": "This has been migrated over to a new contract: 0xec0d77a58528a218cbf41fa6e1585c8d7a085868", + "explorer": "https://etherscan.io/token/0x6fcBBB527Fb2954BED2B224A5BB7c23C5AeEb6E1", + "type": "ERC20", + "symbol": "oneETH", + "decimals": 9, + "status": "abandoned", + "id": "0x6fcBBB527Fb2954BED2B224A5BB7c23C5AeEb6E1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6fcBBB527Fb2954BED2B224A5BB7c23C5AeEb6E1/logo.png b/blockchains/ethereum/assets/0x6fcBBB527Fb2954BED2B224A5BB7c23C5AeEb6E1/logo.png new file mode 100644 index 00000000..a8f65216 Binary files /dev/null and b/blockchains/ethereum/assets/0x6fcBBB527Fb2954BED2B224A5BB7c23C5AeEb6E1/logo.png differ diff --git a/blockchains/ethereum/assets/0x6fe56C0bcdD471359019FcBC48863d6c3e9d4F41/info.json b/blockchains/ethereum/assets/0x6fe56C0bcdD471359019FcBC48863d6c3e9d4F41/info.json new file mode 100644 index 00000000..dd6d2a6f --- /dev/null +++ b/blockchains/ethereum/assets/0x6fe56C0bcdD471359019FcBC48863d6c3e9d4F41/info.json @@ -0,0 +1,11 @@ +{ + "name": "Props Token", + "symbol": "PROPS", + "type": "ERC20", + "decimals": 18, + "description": " Props’ open-source infrastructure creates a decentralized network of apps operated by independent developers, who share an underlying token, benefiting from collective network effects.", + "website": "https://www.propsproject.com", + "explorer": "https://etherscan.io/token/0x6fe56C0bcdD471359019FcBC48863d6c3e9d4F41", + "status": "active", + "id": "0x6fe56C0bcdD471359019FcBC48863d6c3e9d4F41" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6fe56C0bcdD471359019FcBC48863d6c3e9d4F41/logo.png b/blockchains/ethereum/assets/0x6fe56C0bcdD471359019FcBC48863d6c3e9d4F41/logo.png new file mode 100644 index 00000000..2c62ceb7 Binary files /dev/null and b/blockchains/ethereum/assets/0x6fe56C0bcdD471359019FcBC48863d6c3e9d4F41/logo.png differ diff --git a/blockchains/ethereum/assets/0x6ff313FB38d53d7A458860b1bf7512f54a03e968/info.json b/blockchains/ethereum/assets/0x6ff313FB38d53d7A458860b1bf7512f54a03e968/info.json new file mode 100644 index 00000000..642133a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x6ff313FB38d53d7A458860b1bf7512f54a03e968/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mero Currency", + "symbol": "MRO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6ff313FB38d53d7A458860b1bf7512f54a03e968", + "status": "abandoned", + "id": "0x6ff313FB38d53d7A458860b1bf7512f54a03e968" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6ff313FB38d53d7A458860b1bf7512f54a03e968/logo.png b/blockchains/ethereum/assets/0x6ff313FB38d53d7A458860b1bf7512f54a03e968/logo.png new file mode 100644 index 00000000..b06a4548 Binary files /dev/null and b/blockchains/ethereum/assets/0x6ff313FB38d53d7A458860b1bf7512f54a03e968/logo.png differ diff --git a/blockchains/ethereum/assets/0x6ff7C968B50ec34FA13e99B80Ce97d5Df14c7921/info.json b/blockchains/ethereum/assets/0x6ff7C968B50ec34FA13e99B80Ce97d5Df14c7921/info.json new file mode 100644 index 00000000..f6ef967a --- /dev/null +++ b/blockchains/ethereum/assets/0x6ff7C968B50ec34FA13e99B80Ce97d5Df14c7921/info.json @@ -0,0 +1,11 @@ +{ + "name": "osimi.finance", + "symbol": "OS", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6ff7C968B50ec34FA13e99B80Ce97d5Df14c7921", + "status": "abandoned", + "id": "0x6ff7C968B50ec34FA13e99B80Ce97d5Df14c7921" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6ff7C968B50ec34FA13e99B80Ce97d5Df14c7921/logo.png b/blockchains/ethereum/assets/0x6ff7C968B50ec34FA13e99B80Ce97d5Df14c7921/logo.png new file mode 100644 index 00000000..290d5948 Binary files /dev/null and b/blockchains/ethereum/assets/0x6ff7C968B50ec34FA13e99B80Ce97d5Df14c7921/logo.png differ diff --git a/blockchains/ethereum/assets/0x6ffF948c46B92e4ba0A6A4142ec4d895785aFE19/info.json b/blockchains/ethereum/assets/0x6ffF948c46B92e4ba0A6A4142ec4d895785aFE19/info.json new file mode 100644 index 00000000..2a9abbe5 --- /dev/null +++ b/blockchains/ethereum/assets/0x6ffF948c46B92e4ba0A6A4142ec4d895785aFE19/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yoi Crypto", + "symbol": "YOI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x6ffF948c46B92e4ba0A6A4142ec4d895785aFE19", + "status": "abandoned", + "id": "0x6ffF948c46B92e4ba0A6A4142ec4d895785aFE19" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6ffF948c46B92e4ba0A6A4142ec4d895785aFE19/logo.png b/blockchains/ethereum/assets/0x6ffF948c46B92e4ba0A6A4142ec4d895785aFE19/logo.png new file mode 100644 index 00000000..786ddcce Binary files /dev/null and b/blockchains/ethereum/assets/0x6ffF948c46B92e4ba0A6A4142ec4d895785aFE19/logo.png differ diff --git a/blockchains/ethereum/assets/0x701C244b988a513c945973dEFA05de933b23Fe1D/info.json b/blockchains/ethereum/assets/0x701C244b988a513c945973dEFA05de933b23Fe1D/info.json new file mode 100644 index 00000000..322f4ec1 --- /dev/null +++ b/blockchains/ethereum/assets/0x701C244b988a513c945973dEFA05de933b23Fe1D/info.json @@ -0,0 +1,11 @@ +{ + "name": "openANX Token", + "symbol": "OAX", + "type": "ERC20", + "decimals": 18, + "description": "Developing and promoting a sustainable digital asset ecosystem for the future.", + "website": "https://www.oax.org", + "explorer": "https://etherscan.io/token/0x701C244b988a513c945973dEFA05de933b23Fe1D", + "status": "active", + "id": "0x701C244b988a513c945973dEFA05de933b23Fe1D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x701C244b988a513c945973dEFA05de933b23Fe1D/logo.png b/blockchains/ethereum/assets/0x701C244b988a513c945973dEFA05de933b23Fe1D/logo.png new file mode 100755 index 00000000..e5716b41 Binary files /dev/null and b/blockchains/ethereum/assets/0x701C244b988a513c945973dEFA05de933b23Fe1D/logo.png differ diff --git a/blockchains/ethereum/assets/0x7024e48B4B6439307920EB1D71682fE18262189c/info.json b/blockchains/ethereum/assets/0x7024e48B4B6439307920EB1D71682fE18262189c/info.json new file mode 100644 index 00000000..34c2bd91 --- /dev/null +++ b/blockchains/ethereum/assets/0x7024e48B4B6439307920EB1D71682fE18262189c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hitfinex", + "symbol": "HFX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7024e48B4B6439307920EB1D71682fE18262189c", + "status": "abandoned", + "id": "0x7024e48B4B6439307920EB1D71682fE18262189c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7024e48B4B6439307920EB1D71682fE18262189c/logo.png b/blockchains/ethereum/assets/0x7024e48B4B6439307920EB1D71682fE18262189c/logo.png new file mode 100644 index 00000000..1e44ef48 Binary files /dev/null and b/blockchains/ethereum/assets/0x7024e48B4B6439307920EB1D71682fE18262189c/logo.png differ diff --git a/blockchains/ethereum/assets/0x7025baB2EC90410de37F488d1298204cd4D6b29d/info.json b/blockchains/ethereum/assets/0x7025baB2EC90410de37F488d1298204cd4D6b29d/info.json new file mode 100644 index 00000000..42ddb01e --- /dev/null +++ b/blockchains/ethereum/assets/0x7025baB2EC90410de37F488d1298204cd4D6b29d/info.json @@ -0,0 +1,11 @@ +{ + "name": "MasterXriba", + "symbol": "XRA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://xriba.com/", + "explorer": "https://etherscan.io/token/0x7025baB2EC90410de37F488d1298204cd4D6b29d", + "status": "abandoned", + "id": "0x7025baB2EC90410de37F488d1298204cd4D6b29d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7025baB2EC90410de37F488d1298204cd4D6b29d/logo.png b/blockchains/ethereum/assets/0x7025baB2EC90410de37F488d1298204cd4D6b29d/logo.png new file mode 100644 index 00000000..53de497a Binary files /dev/null and b/blockchains/ethereum/assets/0x7025baB2EC90410de37F488d1298204cd4D6b29d/logo.png differ diff --git a/blockchains/ethereum/assets/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65/info.json b/blockchains/ethereum/assets/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65/info.json new file mode 100644 index 00000000..3f530e68 --- /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 00000000..7b70b24f Binary files /dev/null and b/blockchains/ethereum/assets/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65/logo.png differ diff --git a/blockchains/ethereum/assets/0x70401dFD142A16dC7031c56E862Fc88Cb9537Ce0/info.json b/blockchains/ethereum/assets/0x70401dFD142A16dC7031c56E862Fc88Cb9537Ce0/info.json new file mode 100644 index 00000000..37fe209b --- /dev/null +++ b/blockchains/ethereum/assets/0x70401dFD142A16dC7031c56E862Fc88Cb9537Ce0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bird.Money", + "type": "ERC20", + "symbol": "BIRD", + "decimals": 18, + "website": "https://bird.money", + "description": "Bird.Money leverages the power of its off-chain oracle analytics to provide on-chain protocols with trust data, combined with a lending platform. Allowing you to safely maximize borrowing while gaining access to additional digital assets.", + "explorer": "https://etherscan.io/token/0x70401dfd142a16dc7031c56e862fc88cb9537ce0", + "status": "active", + "id": "0x70401dFD142A16dC7031c56E862Fc88Cb9537Ce0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70401dFD142A16dC7031c56E862Fc88Cb9537Ce0/logo.png b/blockchains/ethereum/assets/0x70401dFD142A16dC7031c56E862Fc88Cb9537Ce0/logo.png new file mode 100644 index 00000000..db2078a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x70401dFD142A16dC7031c56E862Fc88Cb9537Ce0/logo.png differ diff --git a/blockchains/ethereum/assets/0x7042a8fFc7c7049684BfBc2fcb41b72380755a43/info.json b/blockchains/ethereum/assets/0x7042a8fFc7c7049684BfBc2fcb41b72380755a43/info.json new file mode 100644 index 00000000..67aff5a5 --- /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 00000000..bac3a277 Binary files /dev/null and b/blockchains/ethereum/assets/0x7042a8fFc7c7049684BfBc2fcb41b72380755a43/logo.png differ diff --git a/blockchains/ethereum/assets/0x704BDdaa18f3b4EEf33CDfec5e80dAf5847c7d41/info.json b/blockchains/ethereum/assets/0x704BDdaa18f3b4EEf33CDfec5e80dAf5847c7d41/info.json new file mode 100644 index 00000000..d4746978 --- /dev/null +++ b/blockchains/ethereum/assets/0x704BDdaa18f3b4EEf33CDfec5e80dAf5847c7d41/info.json @@ -0,0 +1,11 @@ +{ + "name": "MIQcoin", + "symbol": "MIQ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x704BDdaa18f3b4EEf33CDfec5e80dAf5847c7d41", + "status": "abandoned", + "id": "0x704BDdaa18f3b4EEf33CDfec5e80dAf5847c7d41" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x704BDdaa18f3b4EEf33CDfec5e80dAf5847c7d41/logo.png b/blockchains/ethereum/assets/0x704BDdaa18f3b4EEf33CDfec5e80dAf5847c7d41/logo.png new file mode 100644 index 00000000..f37bc157 Binary files /dev/null and b/blockchains/ethereum/assets/0x704BDdaa18f3b4EEf33CDfec5e80dAf5847c7d41/logo.png differ diff --git a/blockchains/ethereum/assets/0x705051Bbfd9f287869A412cbA8bC7d112de48E69/info.json b/blockchains/ethereum/assets/0x705051Bbfd9f287869A412cbA8bC7d112de48E69/info.json new file mode 100644 index 00000000..00aec8a1 --- /dev/null +++ b/blockchains/ethereum/assets/0x705051Bbfd9f287869A412cbA8bC7d112de48E69/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAKECOIN", + "symbol": "SAKE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.sakecoin.info/", + "explorer": "https://etherscan.io/token/0x705051Bbfd9f287869A412cbA8bC7d112de48E69", + "status": "abandoned", + "id": "0x705051Bbfd9f287869A412cbA8bC7d112de48E69" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x705051Bbfd9f287869A412cbA8bC7d112de48E69/logo.png b/blockchains/ethereum/assets/0x705051Bbfd9f287869A412cbA8bC7d112de48E69/logo.png new file mode 100644 index 00000000..c3e6d19e Binary files /dev/null and b/blockchains/ethereum/assets/0x705051Bbfd9f287869A412cbA8bC7d112de48E69/logo.png differ diff --git a/blockchains/ethereum/assets/0x7051620d11042c4335069AaA4f10Cd3B4290C681/info.json b/blockchains/ethereum/assets/0x7051620d11042c4335069AaA4f10Cd3B4290C681/info.json new file mode 100644 index 00000000..2415ea6f --- /dev/null +++ b/blockchains/ethereum/assets/0x7051620d11042c4335069AaA4f10Cd3B4290C681/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tcash", + "symbol": "TCASH", + "type": "ERC20", + "decimals": 8, + "description": "TCASH is EtherFlyer’s platform token. EtherFlyer describes itself as a decentralized crypto Exchange.", + "website": "https://www.etherflyer.com/index.html", + "explorer": "https://etherscan.io/token/0x7051620d11042c4335069AaA4f10Cd3B4290C681", + "status": "active", + "id": "0x7051620d11042c4335069AaA4f10Cd3B4290C681" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7051620d11042c4335069AaA4f10Cd3B4290C681/logo.png b/blockchains/ethereum/assets/0x7051620d11042c4335069AaA4f10Cd3B4290C681/logo.png new file mode 100644 index 00000000..500c5144 Binary files /dev/null and b/blockchains/ethereum/assets/0x7051620d11042c4335069AaA4f10Cd3B4290C681/logo.png differ diff --git a/blockchains/ethereum/assets/0x705EE96c1c160842C92c1aeCfCFfccc9C412e3D9/info.json b/blockchains/ethereum/assets/0x705EE96c1c160842C92c1aeCfCFfccc9C412e3D9/info.json new file mode 100644 index 00000000..5b5b8045 --- /dev/null +++ b/blockchains/ethereum/assets/0x705EE96c1c160842C92c1aeCfCFfccc9C412e3D9/info.json @@ -0,0 +1,11 @@ +{ + "name": "ClearPoll Token", + "symbol": "POLL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.clearpoll.io/", + "explorer": "https://etherscan.io/token/0x705EE96c1c160842C92c1aeCfCFfccc9C412e3D9", + "status": "abandoned", + "id": "0x705EE96c1c160842C92c1aeCfCFfccc9C412e3D9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x705EE96c1c160842C92c1aeCfCFfccc9C412e3D9/logo.png b/blockchains/ethereum/assets/0x705EE96c1c160842C92c1aeCfCFfccc9C412e3D9/logo.png new file mode 100644 index 00000000..47853fed Binary files /dev/null and b/blockchains/ethereum/assets/0x705EE96c1c160842C92c1aeCfCFfccc9C412e3D9/logo.png differ diff --git a/blockchains/ethereum/assets/0x70605a6457B0A8fBf1EEE896911895296eAB467E/info.json b/blockchains/ethereum/assets/0x70605a6457B0A8fBf1EEE896911895296eAB467E/info.json new file mode 100644 index 00000000..fa053bda --- /dev/null +++ b/blockchains/ethereum/assets/0x70605a6457B0A8fBf1EEE896911895296eAB467E/info.json @@ -0,0 +1,11 @@ +{ + "name": "IchiStake", + "website": "https://ichi.org", + "description": "xICHI is the staking coin of the ICHI community.", + "explorer": "https://etherscan.io/token/0x70605a6457B0A8fBf1EEE896911895296eAB467E", + "type": "ERC20", + "symbol": "xICHI", + "decimals": 9, + "status": "active", + "id": "0x70605a6457B0A8fBf1EEE896911895296eAB467E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70605a6457B0A8fBf1EEE896911895296eAB467E/logo.png b/blockchains/ethereum/assets/0x70605a6457B0A8fBf1EEE896911895296eAB467E/logo.png new file mode 100644 index 00000000..287d281f Binary files /dev/null and b/blockchains/ethereum/assets/0x70605a6457B0A8fBf1EEE896911895296eAB467E/logo.png differ diff --git a/blockchains/ethereum/assets/0x7064aAb39A0Fcf7221c3396719D0917a65E35515/info.json b/blockchains/ethereum/assets/0x7064aAb39A0Fcf7221c3396719D0917a65E35515/info.json new file mode 100644 index 00000000..447dc555 --- /dev/null +++ b/blockchains/ethereum/assets/0x7064aAb39A0Fcf7221c3396719D0917a65E35515/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cpollo", + "symbol": "CPLO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7064aAb39A0Fcf7221c3396719D0917a65E35515", + "status": "abandoned", + "id": "0x7064aAb39A0Fcf7221c3396719D0917a65E35515" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7064aAb39A0Fcf7221c3396719D0917a65E35515/logo.png b/blockchains/ethereum/assets/0x7064aAb39A0Fcf7221c3396719D0917a65E35515/logo.png new file mode 100644 index 00000000..59016b2f Binary files /dev/null and b/blockchains/ethereum/assets/0x7064aAb39A0Fcf7221c3396719D0917a65E35515/logo.png differ diff --git a/blockchains/ethereum/assets/0x706CB9E741CBFee00Ad5b3f5ACc8bd44D1644a74/info.json b/blockchains/ethereum/assets/0x706CB9E741CBFee00Ad5b3f5ACc8bd44D1644a74/info.json new file mode 100644 index 00000000..15b49b5d --- /dev/null +++ b/blockchains/ethereum/assets/0x706CB9E741CBFee00Ad5b3f5ACc8bd44D1644a74/info.json @@ -0,0 +1,21 @@ +{ + "name": "YFOX.FINANCE", + "website": "https://yfox.finance", + "description": "Y FOX is an open-source Decentralized protocol which enables you to easily access FOX DUAL STAKING, FARMING, GOVERNANCE VOTE, LENDING and BORROWING DeFi Services from a simple dashboard.", + "explorer": "https://etherscan.io/token/0x706CB9E741CBFee00Ad5b3f5ACc8bd44D1644a74", + "type": "ERC20", + "symbol": "YFOX", + "decimals": 6, + "status": "active", + "id": "0x706CB9E741CBFee00Ad5b3f5ACc8bd44D1644a74", + "links": [ + { + "name": "x", + "url": "https://x.com/yfoxfinance" + }, + { + "name": "telegram", + "url": "https://t.me/YFOX_Announcement" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x706CB9E741CBFee00Ad5b3f5ACc8bd44D1644a74/logo.png b/blockchains/ethereum/assets/0x706CB9E741CBFee00Ad5b3f5ACc8bd44D1644a74/logo.png new file mode 100644 index 00000000..b443e98c Binary files /dev/null and b/blockchains/ethereum/assets/0x706CB9E741CBFee00Ad5b3f5ACc8bd44D1644a74/logo.png differ diff --git a/blockchains/ethereum/assets/0x708aA4e8AaeAaD6074dD09cc4e5C52A70452eB39/info.json b/blockchains/ethereum/assets/0x708aA4e8AaeAaD6074dD09cc4e5C52A70452eB39/info.json new file mode 100644 index 00000000..e4cf6c0d --- /dev/null +++ b/blockchains/ethereum/assets/0x708aA4e8AaeAaD6074dD09cc4e5C52A70452eB39/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoffeen", + "symbol": "BFF", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://bitcoffeen.com/", + "explorer": "https://etherscan.io/token/0x708aA4e8AaeAaD6074dD09cc4e5C52A70452eB39", + "status": "abandoned", + "id": "0x708aA4e8AaeAaD6074dD09cc4e5C52A70452eB39" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x708aA4e8AaeAaD6074dD09cc4e5C52A70452eB39/logo.png b/blockchains/ethereum/assets/0x708aA4e8AaeAaD6074dD09cc4e5C52A70452eB39/logo.png new file mode 100644 index 00000000..433452d5 Binary files /dev/null and b/blockchains/ethereum/assets/0x708aA4e8AaeAaD6074dD09cc4e5C52A70452eB39/logo.png differ diff --git a/blockchains/ethereum/assets/0x7090a6e22c838469c9E67851D6489ba9c933a43F/info.json b/blockchains/ethereum/assets/0x7090a6e22c838469c9E67851D6489ba9c933a43F/info.json new file mode 100644 index 00000000..a30ce024 --- /dev/null +++ b/blockchains/ethereum/assets/0x7090a6e22c838469c9E67851D6489ba9c933a43F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zuck Bucks", + "symbol": "ZBUX", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://zuckbucks.cash/", + "explorer": "https://etherscan.io/token/0x7090a6e22c838469c9E67851D6489ba9c933a43F", + "status": "abandoned", + "id": "0x7090a6e22c838469c9E67851D6489ba9c933a43F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7090a6e22c838469c9E67851D6489ba9c933a43F/logo.png b/blockchains/ethereum/assets/0x7090a6e22c838469c9E67851D6489ba9c933a43F/logo.png new file mode 100644 index 00000000..4b5f031f Binary files /dev/null and b/blockchains/ethereum/assets/0x7090a6e22c838469c9E67851D6489ba9c933a43F/logo.png differ diff --git a/blockchains/ethereum/assets/0x70968FEAF13299d0dBf78f66860bAb9DbE3856bc/info.json b/blockchains/ethereum/assets/0x70968FEAF13299d0dBf78f66860bAb9DbE3856bc/info.json new file mode 100644 index 00000000..7aecd983 --- /dev/null +++ b/blockchains/ethereum/assets/0x70968FEAF13299d0dBf78f66860bAb9DbE3856bc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Treelion", + "symbol": "TRN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://treelion.com/", + "explorer": "https://etherscan.io/token/0x70968FEAF13299d0dBf78f66860bAb9DbE3856bc", + "status": "abandoned", + "id": "0x70968FEAF13299d0dBf78f66860bAb9DbE3856bc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70968FEAF13299d0dBf78f66860bAb9DbE3856bc/logo.png b/blockchains/ethereum/assets/0x70968FEAF13299d0dBf78f66860bAb9DbE3856bc/logo.png new file mode 100644 index 00000000..c428bded Binary files /dev/null and b/blockchains/ethereum/assets/0x70968FEAF13299d0dBf78f66860bAb9DbE3856bc/logo.png differ diff --git a/blockchains/ethereum/assets/0x70B4082F4e3F9067dB9A2aA7520C77719E8626EE/info.json b/blockchains/ethereum/assets/0x70B4082F4e3F9067dB9A2aA7520C77719E8626EE/info.json new file mode 100644 index 00000000..f7d4a6bb --- /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 00000000..34299b5b Binary files /dev/null and b/blockchains/ethereum/assets/0x70B4082F4e3F9067dB9A2aA7520C77719E8626EE/logo.png differ diff --git a/blockchains/ethereum/assets/0x70D17291E47DC09852baec47eD795CE9b1d64789/info.json b/blockchains/ethereum/assets/0x70D17291E47DC09852baec47eD795CE9b1d64789/info.json new file mode 100644 index 00000000..eb741b70 --- /dev/null +++ b/blockchains/ethereum/assets/0x70D17291E47DC09852baec47eD795CE9b1d64789/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unica Coin", + "symbol": "UNI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x70D17291E47DC09852baec47eD795CE9b1d64789", + "status": "abandoned", + "id": "0x70D17291E47DC09852baec47eD795CE9b1d64789" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70D17291E47DC09852baec47eD795CE9b1d64789/logo.png b/blockchains/ethereum/assets/0x70D17291E47DC09852baec47eD795CE9b1d64789/logo.png new file mode 100644 index 00000000..4adb579b Binary files /dev/null and b/blockchains/ethereum/assets/0x70D17291E47DC09852baec47eD795CE9b1d64789/logo.png differ diff --git a/blockchains/ethereum/assets/0x70Ec0f5B23404C0cD6f29ce88f4af00A0b0d895D/info.json b/blockchains/ethereum/assets/0x70Ec0f5B23404C0cD6f29ce88f4af00A0b0d895D/info.json new file mode 100644 index 00000000..9cfe5c7a --- /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 00000000..6678ea0d Binary files /dev/null and b/blockchains/ethereum/assets/0x70Ec0f5B23404C0cD6f29ce88f4af00A0b0d895D/logo.png differ diff --git a/blockchains/ethereum/assets/0x70Ec7702ADA8530d8f7332f7f3700099553D772D/info.json b/blockchains/ethereum/assets/0x70Ec7702ADA8530d8f7332f7f3700099553D772D/info.json new file mode 100644 index 00000000..58fa8625 --- /dev/null +++ b/blockchains/ethereum/assets/0x70Ec7702ADA8530d8f7332f7f3700099553D772D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Indonesian Project", + "symbol": "IDN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://indonesian-project.my.id", + "explorer": "https://etherscan.io/token/0x70Ec7702ADA8530d8f7332f7f3700099553D772D", + "status": "abandoned", + "id": "0x70Ec7702ADA8530d8f7332f7f3700099553D772D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70Ec7702ADA8530d8f7332f7f3700099553D772D/logo.png b/blockchains/ethereum/assets/0x70Ec7702ADA8530d8f7332f7f3700099553D772D/logo.png new file mode 100644 index 00000000..9a79081c Binary files /dev/null and b/blockchains/ethereum/assets/0x70Ec7702ADA8530d8f7332f7f3700099553D772D/logo.png differ diff --git a/blockchains/ethereum/assets/0x70F6A7Ac4ebB8C04539e6D5245501cc553E48D39/info.json b/blockchains/ethereum/assets/0x70F6A7Ac4ebB8C04539e6D5245501cc553E48D39/info.json new file mode 100644 index 00000000..3fe7172b --- /dev/null +++ b/blockchains/ethereum/assets/0x70F6A7Ac4ebB8C04539e6D5245501cc553E48D39/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chefs Coin", + "symbol": "CHEF", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x70F6A7Ac4ebB8C04539e6D5245501cc553E48D39", + "status": "abandoned", + "id": "0x70F6A7Ac4ebB8C04539e6D5245501cc553E48D39" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70F6A7Ac4ebB8C04539e6D5245501cc553E48D39/logo.png b/blockchains/ethereum/assets/0x70F6A7Ac4ebB8C04539e6D5245501cc553E48D39/logo.png new file mode 100644 index 00000000..37a20660 Binary files /dev/null and b/blockchains/ethereum/assets/0x70F6A7Ac4ebB8C04539e6D5245501cc553E48D39/logo.png differ diff --git a/blockchains/ethereum/assets/0x70b147E01E9285E7cE68B9BA437Fe3a9190E756a/info.json b/blockchains/ethereum/assets/0x70b147E01E9285E7cE68B9BA437Fe3a9190E756a/info.json new file mode 100644 index 00000000..bce866f6 --- /dev/null +++ b/blockchains/ethereum/assets/0x70b147E01E9285E7cE68B9BA437Fe3a9190E756a/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitFlux", + "symbol": "FLX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x70b147E01E9285E7cE68B9BA437Fe3a9190E756a", + "status": "abandoned", + "id": "0x70b147E01E9285E7cE68B9BA437Fe3a9190E756a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70b147E01E9285E7cE68B9BA437Fe3a9190E756a/logo.png b/blockchains/ethereum/assets/0x70b147E01E9285E7cE68B9BA437Fe3a9190E756a/logo.png new file mode 100644 index 00000000..c1b2ddb8 Binary files /dev/null and b/blockchains/ethereum/assets/0x70b147E01E9285E7cE68B9BA437Fe3a9190E756a/logo.png differ diff --git a/blockchains/ethereum/assets/0x70c29e99cA32592C0E88bb571B87444Bb0e08e33/info.json b/blockchains/ethereum/assets/0x70c29e99cA32592C0E88bb571B87444Bb0e08e33/info.json new file mode 100644 index 00000000..9346d970 --- /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 00000000..4f8d2936 Binary files /dev/null and b/blockchains/ethereum/assets/0x70c29e99cA32592C0E88bb571B87444Bb0e08e33/logo.png differ diff --git a/blockchains/ethereum/assets/0x70c621f949b6556c4545707a2d5d73A776b98359/info.json b/blockchains/ethereum/assets/0x70c621f949b6556c4545707a2d5d73A776b98359/info.json new file mode 100644 index 00000000..4fb75229 --- /dev/null +++ b/blockchains/ethereum/assets/0x70c621f949b6556c4545707a2d5d73A776b98359/info.json @@ -0,0 +1,11 @@ +{ + "name": "Skychain Global Token", + "symbol": "SKCH", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "http://skychain.global/", + "explorer": "https://etherscan.io/token/0x70c621f949b6556c4545707a2d5d73A776b98359", + "status": "abandoned", + "id": "0x70c621f949b6556c4545707a2d5d73A776b98359" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70c621f949b6556c4545707a2d5d73A776b98359/logo.png b/blockchains/ethereum/assets/0x70c621f949b6556c4545707a2d5d73A776b98359/logo.png new file mode 100644 index 00000000..37717581 Binary files /dev/null and b/blockchains/ethereum/assets/0x70c621f949b6556c4545707a2d5d73A776b98359/logo.png differ diff --git a/blockchains/ethereum/assets/0x70da48f4B7e83c386ef983D4CEF4e58c2c09D8Ac/info.json b/blockchains/ethereum/assets/0x70da48f4B7e83c386ef983D4CEF4e58c2c09D8Ac/info.json new file mode 100644 index 00000000..8d048323 --- /dev/null +++ b/blockchains/ethereum/assets/0x70da48f4B7e83c386ef983D4CEF4e58c2c09D8Ac/info.json @@ -0,0 +1,11 @@ +{ + "name": "Quras Token", + "symbol": "XQC", + "type": "ERC20", + "decimals": 8, + "description": "QURAS is a genuine secret contract platform that fulfills various privacy protection needs.", + "website": "https://quras.io/", + "explorer": "https://etherscan.io/token/0x70da48f4B7e83c386ef983D4CEF4e58c2c09D8Ac", + "status": "active", + "id": "0x70da48f4B7e83c386ef983D4CEF4e58c2c09D8Ac" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70da48f4B7e83c386ef983D4CEF4e58c2c09D8Ac/logo.png b/blockchains/ethereum/assets/0x70da48f4B7e83c386ef983D4CEF4e58c2c09D8Ac/logo.png new file mode 100644 index 00000000..d96cda17 Binary files /dev/null and b/blockchains/ethereum/assets/0x70da48f4B7e83c386ef983D4CEF4e58c2c09D8Ac/logo.png differ diff --git a/blockchains/ethereum/assets/0x70debcDAB2Ef20bE3d1dBFf6a845E9cCb6E46930/info.json b/blockchains/ethereum/assets/0x70debcDAB2Ef20bE3d1dBFf6a845E9cCb6E46930/info.json new file mode 100644 index 00000000..09e42221 --- /dev/null +++ b/blockchains/ethereum/assets/0x70debcDAB2Ef20bE3d1dBFf6a845E9cCb6E46930/info.json @@ -0,0 +1,11 @@ +{ + "name": "BIKICOIN TOKEN", + "symbol": "BIKI", + "type": "ERC20", + "decimals": 8, + "description": "BIKI is a token issued by the BiKi trading platform, and represents the rights and interests of the exchange.", + "website": "https://www.biki.cc", + "explorer": "https://etherscan.io/token/0x70debcDAB2Ef20bE3d1dBFf6a845E9cCb6E46930", + "status": "active", + "id": "0x70debcDAB2Ef20bE3d1dBFf6a845E9cCb6E46930" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70debcDAB2Ef20bE3d1dBFf6a845E9cCb6E46930/logo.png b/blockchains/ethereum/assets/0x70debcDAB2Ef20bE3d1dBFf6a845E9cCb6E46930/logo.png new file mode 100644 index 00000000..2e606c1f Binary files /dev/null and b/blockchains/ethereum/assets/0x70debcDAB2Ef20bE3d1dBFf6a845E9cCb6E46930/logo.png differ diff --git a/blockchains/ethereum/assets/0x70e14cD4d6e71775580124c139dF842b11c3AC3b/info.json b/blockchains/ethereum/assets/0x70e14cD4d6e71775580124c139dF842b11c3AC3b/info.json new file mode 100644 index 00000000..58d5362c --- /dev/null +++ b/blockchains/ethereum/assets/0x70e14cD4d6e71775580124c139dF842b11c3AC3b/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETHER CASH", + "symbol": "ETCA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x70e14cD4d6e71775580124c139dF842b11c3AC3b", + "status": "abandoned", + "id": "0x70e14cD4d6e71775580124c139dF842b11c3AC3b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70e14cD4d6e71775580124c139dF842b11c3AC3b/logo.png b/blockchains/ethereum/assets/0x70e14cD4d6e71775580124c139dF842b11c3AC3b/logo.png new file mode 100644 index 00000000..8087c308 Binary files /dev/null and b/blockchains/ethereum/assets/0x70e14cD4d6e71775580124c139dF842b11c3AC3b/logo.png differ diff --git a/blockchains/ethereum/assets/0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96/info.json b/blockchains/ethereum/assets/0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96/info.json new file mode 100644 index 00000000..e8900112 --- /dev/null +++ b/blockchains/ethereum/assets/0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96/info.json @@ -0,0 +1,24 @@ +{ + "name": "XSGD", + "type": "ERC20", + "symbol": "XSGD", + "decimals": 6, + "website": "https://www.straitsx.com/", + "description": "Fully collateralised Singapore-dollar backed stablecoin. ", + "explorer": "https://etherscan.io/token/0x70e8de73ce538da2beed35d14187f6959a8eca96", + "status": "active", + "id": "0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/Xfers/StraitsX-tokens/" + }, + { + "name": "x", + "url": "https://x.com/StraitsX" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96/logo.png b/blockchains/ethereum/assets/0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96/logo.png new file mode 100644 index 00000000..842ca827 Binary files /dev/null and b/blockchains/ethereum/assets/0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96/logo.png differ diff --git a/blockchains/ethereum/assets/0x70eFDc485a10210B056eF8e0A32993Bc6529995E/info.json b/blockchains/ethereum/assets/0x70eFDc485a10210B056eF8e0A32993Bc6529995E/info.json new file mode 100644 index 00000000..8697d337 --- /dev/null +++ b/blockchains/ethereum/assets/0x70eFDc485a10210B056eF8e0A32993Bc6529995E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blaze Network", + "symbol": "BLZN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.blazenetwork.info", + "explorer": "https://etherscan.io/token/0x70eFDc485a10210B056eF8e0A32993Bc6529995E", + "status": "abandoned", + "id": "0x70eFDc485a10210B056eF8e0A32993Bc6529995E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x70eFDc485a10210B056eF8e0A32993Bc6529995E/logo.png b/blockchains/ethereum/assets/0x70eFDc485a10210B056eF8e0A32993Bc6529995E/logo.png new file mode 100644 index 00000000..024506a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x70eFDc485a10210B056eF8e0A32993Bc6529995E/logo.png differ diff --git a/blockchains/ethereum/assets/0x71010A9D003445aC60C4e6A7017c1E89A477B438/info.json b/blockchains/ethereum/assets/0x71010A9D003445aC60C4e6A7017c1E89A477B438/info.json new file mode 100644 index 00000000..054822db --- /dev/null +++ b/blockchains/ethereum/assets/0x71010A9D003445aC60C4e6A7017c1E89A477B438/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave REP V1", + "symbol": "aREP V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave REP V1 is an interest bearing token pegged 1:1 to the underlying REP deposited in Aave V1. aREP V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x71010A9D003445aC60C4e6A7017c1E89A477B438", + "status": "abandoned", + "id": "0x71010A9D003445aC60C4e6A7017c1E89A477B438" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x71010A9D003445aC60C4e6A7017c1E89A477B438/logo.png b/blockchains/ethereum/assets/0x71010A9D003445aC60C4e6A7017c1E89A477B438/logo.png new file mode 100644 index 00000000..779fe0c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x71010A9D003445aC60C4e6A7017c1E89A477B438/logo.png differ diff --git a/blockchains/ethereum/assets/0x7101798482d3f230a4888434588984A9a6D70921/info.json b/blockchains/ethereum/assets/0x7101798482d3f230a4888434588984A9a6D70921/info.json new file mode 100644 index 00000000..637c84c9 --- /dev/null +++ b/blockchains/ethereum/assets/0x7101798482d3f230a4888434588984A9a6D70921/info.json @@ -0,0 +1,11 @@ +{ + "name": "Colombian", + "symbol": "ECOP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7101798482d3f230a4888434588984A9a6D70921", + "status": "abandoned", + "id": "0x7101798482d3f230a4888434588984A9a6D70921" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7101798482d3f230a4888434588984A9a6D70921/logo.png b/blockchains/ethereum/assets/0x7101798482d3f230a4888434588984A9a6D70921/logo.png new file mode 100644 index 00000000..c60201e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x7101798482d3f230a4888434588984A9a6D70921/logo.png differ diff --git a/blockchains/ethereum/assets/0x7105eC15995A97496eC25de36CF7eEc47b703375/info.json b/blockchains/ethereum/assets/0x7105eC15995A97496eC25de36CF7eEc47b703375/info.json new file mode 100644 index 00000000..4b17f4f3 --- /dev/null +++ b/blockchains/ethereum/assets/0x7105eC15995A97496eC25de36CF7eEc47b703375/info.json @@ -0,0 +1,11 @@ +{ + "name": "Red Box Dapp Token", + "symbol": "RBD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://redboxdapp.co", + "explorer": "https://etherscan.io/token/0x7105eC15995A97496eC25de36CF7eEc47b703375", + "status": "abandoned", + "id": "0x7105eC15995A97496eC25de36CF7eEc47b703375" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7105eC15995A97496eC25de36CF7eEc47b703375/logo.png b/blockchains/ethereum/assets/0x7105eC15995A97496eC25de36CF7eEc47b703375/logo.png new file mode 100644 index 00000000..19e90781 Binary files /dev/null and b/blockchains/ethereum/assets/0x7105eC15995A97496eC25de36CF7eEc47b703375/logo.png differ diff --git a/blockchains/ethereum/assets/0x7118057ff0F4Fd0994fb9d2D94de8231d5cca79E/info.json b/blockchains/ethereum/assets/0x7118057ff0F4Fd0994fb9d2D94de8231d5cca79E/info.json new file mode 100644 index 00000000..3cb64972 --- /dev/null +++ b/blockchains/ethereum/assets/0x7118057ff0F4Fd0994fb9d2D94de8231d5cca79E/info.json @@ -0,0 +1,28 @@ +{ + "name": "SOURCE", + "website": "https://resource.finance", + "description": "SOURCE is the utility token that powers the ReSource protocol—a DeFi protocol enabling the world’s first on-chain mutual credit economic system.", + "explorer": "https://etherscan.io/token/0x7118057ff0F4Fd0994fb9d2D94de8231d5cca79E", + "type": "ERC20", + "symbol": "SOURCE", + "decimals": 18, + "status": "active", + "id": "0x7118057ff0F4Fd0994fb9d2D94de8231d5cca79E", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ReSource_Fi" + }, + { + "name": "telegram", + "url": "https://t.me/theresourcenetwork" + }, + { + "name": "github", + "url": "https://github.com/ReSource-Network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7118057ff0F4Fd0994fb9d2D94de8231d5cca79E/logo.png b/blockchains/ethereum/assets/0x7118057ff0F4Fd0994fb9d2D94de8231d5cca79E/logo.png new file mode 100644 index 00000000..7c604f41 Binary files /dev/null and b/blockchains/ethereum/assets/0x7118057ff0F4Fd0994fb9d2D94de8231d5cca79E/logo.png differ diff --git a/blockchains/ethereum/assets/0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8/info.json b/blockchains/ethereum/assets/0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8/info.json new file mode 100644 index 00000000..63167052 --- /dev/null +++ b/blockchains/ethereum/assets/0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8/info.json @@ -0,0 +1,28 @@ +{ + "name": "Luffy", + "website": "https://luffytoken.com", + "description": "Luffy wants to revolutionize the cryptoverse by creating a matchless ecosystem combined with an own blockchain.", + "explorer": "https://etherscan.io/token/0x7121d00b4fa18f13da6c2e30d19c04844e6afdc8", + "type": "ERC20", + "symbol": "LUFFY", + "decimals": 9, + "status": "abandoned", + "id": "0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8", + "tags": [ + "nft" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/luffyinutoken" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/R4fpgPGB0l9kMGJi" + }, + { + "name": "whitepaper", + "url": "https://luffytoken.com/pdf/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x712DB54daA836B53Ef1EcBb9c6ba3b9Efb073F40/info.json b/blockchains/ethereum/assets/0x712DB54daA836B53Ef1EcBb9c6ba3b9Efb073F40/info.json new file mode 100644 index 00000000..67aac6e1 --- /dev/null +++ b/blockchains/ethereum/assets/0x712DB54daA836B53Ef1EcBb9c6ba3b9Efb073F40/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave ENJ V1", + "symbol": "aENJ V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave ENJ V1 is an interest bearing token pegged 1:1 to the underlying xxxx deposited in Aave V1. aENJ V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x712DB54daA836B53Ef1EcBb9c6ba3b9Efb073F40", + "status": "active", + "id": "0x712DB54daA836B53Ef1EcBb9c6ba3b9Efb073F40" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x712DB54daA836B53Ef1EcBb9c6ba3b9Efb073F40/logo.png b/blockchains/ethereum/assets/0x712DB54daA836B53Ef1EcBb9c6ba3b9Efb073F40/logo.png new file mode 100644 index 00000000..a2c47e09 Binary files /dev/null and b/blockchains/ethereum/assets/0x712DB54daA836B53Ef1EcBb9c6ba3b9Efb073F40/logo.png differ diff --git a/blockchains/ethereum/assets/0x712bd4Beb54C6B958267d9dB0259abdBb0BFF606/info.json b/blockchains/ethereum/assets/0x712bd4Beb54C6B958267d9dB0259abdBb0BFF606/info.json new file mode 100644 index 00000000..70798949 --- /dev/null +++ b/blockchains/ethereum/assets/0x712bd4Beb54C6B958267d9dB0259abdBb0BFF606/info.json @@ -0,0 +1,30 @@ +{ + "name": "UndeadServiceToken", + "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 00000000..67bdf893 Binary files /dev/null and b/blockchains/ethereum/assets/0x712bd4Beb54C6B958267d9dB0259abdBb0BFF606/logo.png differ diff --git a/blockchains/ethereum/assets/0x71396a6410249725C5609646c4e449C6c4d41E27/info.json b/blockchains/ethereum/assets/0x71396a6410249725C5609646c4e449C6c4d41E27/info.json new file mode 100644 index 00000000..6df912d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x71396a6410249725C5609646c4e449C6c4d41E27/info.json @@ -0,0 +1,11 @@ +{ + "name": "Max", + "symbol": "MVG", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x71396a6410249725C5609646c4e449C6c4d41E27", + "status": "abandoned", + "id": "0x71396a6410249725C5609646c4e449C6c4d41E27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x71396a6410249725C5609646c4e449C6c4d41E27/logo.png b/blockchains/ethereum/assets/0x71396a6410249725C5609646c4e449C6c4d41E27/logo.png new file mode 100644 index 00000000..d33e9c9f Binary files /dev/null and b/blockchains/ethereum/assets/0x71396a6410249725C5609646c4e449C6c4d41E27/logo.png differ diff --git a/blockchains/ethereum/assets/0x71797B389adC1607770A14ADd8173242ec11B7e6/info.json b/blockchains/ethereum/assets/0x71797B389adC1607770A14ADd8173242ec11B7e6/info.json new file mode 100644 index 00000000..92340842 --- /dev/null +++ b/blockchains/ethereum/assets/0x71797B389adC1607770A14ADd8173242ec11B7e6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Authentication Chain", + "symbol": "AUC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x71797B389adC1607770A14ADd8173242ec11B7e6", + "status": "abandoned", + "id": "0x71797B389adC1607770A14ADd8173242ec11B7e6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x71797B389adC1607770A14ADd8173242ec11B7e6/logo.png b/blockchains/ethereum/assets/0x71797B389adC1607770A14ADd8173242ec11B7e6/logo.png new file mode 100644 index 00000000..7936081e Binary files /dev/null and b/blockchains/ethereum/assets/0x71797B389adC1607770A14ADd8173242ec11B7e6/logo.png differ diff --git a/blockchains/ethereum/assets/0x71944c7953c93dBc0cd977e0ee1bBd9C2494B7B1/info.json b/blockchains/ethereum/assets/0x71944c7953c93dBc0cd977e0ee1bBd9C2494B7B1/info.json new file mode 100644 index 00000000..51251c53 --- /dev/null +++ b/blockchains/ethereum/assets/0x71944c7953c93dBc0cd977e0ee1bBd9C2494B7B1/info.json @@ -0,0 +1,11 @@ +{ + "name": "ALMEELA", + "symbol": "KZE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x71944c7953c93dBc0cd977e0ee1bBd9C2494B7B1", + "status": "abandoned", + "id": "0x71944c7953c93dBc0cd977e0ee1bBd9C2494B7B1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x71944c7953c93dBc0cd977e0ee1bBd9C2494B7B1/logo.png b/blockchains/ethereum/assets/0x71944c7953c93dBc0cd977e0ee1bBd9C2494B7B1/logo.png new file mode 100644 index 00000000..dc38b0f0 Binary files /dev/null and b/blockchains/ethereum/assets/0x71944c7953c93dBc0cd977e0ee1bBd9C2494B7B1/logo.png differ diff --git a/blockchains/ethereum/assets/0x7194BB18C95c638F9b9604C2f20064B66A0de8fE/info.json b/blockchains/ethereum/assets/0x7194BB18C95c638F9b9604C2f20064B66A0de8fE/info.json new file mode 100644 index 00000000..edc17d3a --- /dev/null +++ b/blockchains/ethereum/assets/0x7194BB18C95c638F9b9604C2f20064B66A0de8fE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Learno", + "symbol": "LRT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://learno.tech/", + "explorer": "https://etherscan.io/token/0x7194BB18C95c638F9b9604C2f20064B66A0de8fE", + "status": "abandoned", + "id": "0x7194BB18C95c638F9b9604C2f20064B66A0de8fE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7194BB18C95c638F9b9604C2f20064B66A0de8fE/logo.png b/blockchains/ethereum/assets/0x7194BB18C95c638F9b9604C2f20064B66A0de8fE/logo.png new file mode 100644 index 00000000..d21a53a8 Binary files /dev/null and b/blockchains/ethereum/assets/0x7194BB18C95c638F9b9604C2f20064B66A0de8fE/logo.png differ diff --git a/blockchains/ethereum/assets/0x71Ab77b7dbB4fa7e017BC15090b2163221420282/info.json b/blockchains/ethereum/assets/0x71Ab77b7dbB4fa7e017BC15090b2163221420282/info.json new file mode 100644 index 00000000..2b088377 --- /dev/null +++ b/blockchains/ethereum/assets/0x71Ab77b7dbB4fa7e017BC15090b2163221420282/info.json @@ -0,0 +1,49 @@ +{ + "name": "Highstreet", + "type": "ERC20", + "symbol": "HIGH", + "decimals": 18, + "website": "https://www.highstreet.market", + "description": "Inspired by classics from Nintendo, encouraged by a shared addiction in MMOs, and finally consolidated by our team’s 6 years of experience serving retail customers with VR, Highstreet creates the Shopify experience on an MMORPG for brands while presenting a true path to the Metaverse for players.", + "explorer": "https://etherscan.io/token/0x71Ab77b7dbB4fa7e017BC15090b2163221420282", + "status": "active", + "id": "0x71Ab77b7dbB4fa7e017BC15090b2163221420282", + "links": [ + { + "name": "medium", + "url": "https://medium.com/highstreet-market " + }, + { + "name": "x", + "url": "https://x.com/highstreetworld" + }, + { + "name": "github", + "url": "https://github.com/TravisBuilds/HighStreet" + }, + { + "name": "telegram", + "url": "https://t.me/highstreetworld" + }, + { + "name": "discord", + "url": "https://discord.com/invite/439FhsrMu2" + }, + { + "name": "facebook", + "url": "https://facebook.com/highstreetmkt" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/highstreet/ico/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/highstreet" + }, + { + "name": "whitepaper", + "url": "https://docsend.com/view/czjyuggsatn8hpj5" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x71Ab77b7dbB4fa7e017BC15090b2163221420282/logo.png b/blockchains/ethereum/assets/0x71Ab77b7dbB4fa7e017BC15090b2163221420282/logo.png new file mode 100644 index 00000000..6042f5a5 Binary files /dev/null and b/blockchains/ethereum/assets/0x71Ab77b7dbB4fa7e017BC15090b2163221420282/logo.png differ diff --git a/blockchains/ethereum/assets/0x71C830A05d787c1316a55bf9055a6f5920218537/info.json b/blockchains/ethereum/assets/0x71C830A05d787c1316a55bf9055a6f5920218537/info.json new file mode 100644 index 00000000..967d9331 --- /dev/null +++ b/blockchains/ethereum/assets/0x71C830A05d787c1316a55bf9055a6f5920218537/info.json @@ -0,0 +1,11 @@ +{ + "name": "Best US Token", + "symbol": "BEST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x71C830A05d787c1316a55bf9055a6f5920218537", + "status": "abandoned", + "id": "0x71C830A05d787c1316a55bf9055a6f5920218537" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x71C830A05d787c1316a55bf9055a6f5920218537/logo.png b/blockchains/ethereum/assets/0x71C830A05d787c1316a55bf9055a6f5920218537/logo.png new file mode 100644 index 00000000..8151b699 Binary files /dev/null and b/blockchains/ethereum/assets/0x71C830A05d787c1316a55bf9055a6f5920218537/logo.png differ diff --git a/blockchains/ethereum/assets/0x71D01dB8d6a2fBEa7f8d434599C237980C234e4C/info.json b/blockchains/ethereum/assets/0x71D01dB8d6a2fBEa7f8d434599C237980C234e4C/info.json new file mode 100644 index 00000000..50a3b9d2 --- /dev/null +++ b/blockchains/ethereum/assets/0x71D01dB8d6a2fBEa7f8d434599C237980C234e4C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gladius Token", + "symbol": "GLA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x71D01dB8d6a2fBEa7f8d434599C237980C234e4C", + "status": "abandoned", + "id": "0x71D01dB8d6a2fBEa7f8d434599C237980C234e4C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x71D01dB8d6a2fBEa7f8d434599C237980C234e4C/logo.png b/blockchains/ethereum/assets/0x71D01dB8d6a2fBEa7f8d434599C237980C234e4C/logo.png new file mode 100755 index 00000000..b4179c81 Binary files /dev/null and b/blockchains/ethereum/assets/0x71D01dB8d6a2fBEa7f8d434599C237980C234e4C/logo.png differ diff --git a/blockchains/ethereum/assets/0x71D6C373dd0d08Da66d578fE623B6Ed4c9e671a9/info.json b/blockchains/ethereum/assets/0x71D6C373dd0d08Da66d578fE623B6Ed4c9e671a9/info.json new file mode 100644 index 00000000..ea60ece9 --- /dev/null +++ b/blockchains/ethereum/assets/0x71D6C373dd0d08Da66d578fE623B6Ed4c9e671a9/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniversalGlobalIntegral", + "symbol": "UGI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x71D6C373dd0d08Da66d578fE623B6Ed4c9e671a9", + "status": "abandoned", + "id": "0x71D6C373dd0d08Da66d578fE623B6Ed4c9e671a9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x71D6C373dd0d08Da66d578fE623B6Ed4c9e671a9/logo.png b/blockchains/ethereum/assets/0x71D6C373dd0d08Da66d578fE623B6Ed4c9e671a9/logo.png new file mode 100755 index 00000000..e4953745 Binary files /dev/null and b/blockchains/ethereum/assets/0x71D6C373dd0d08Da66d578fE623B6Ed4c9e671a9/logo.png differ diff --git a/blockchains/ethereum/assets/0x71E2400CF1Cb83204f33794eD326636A71a9AAfC/info.json b/blockchains/ethereum/assets/0x71E2400CF1Cb83204f33794eD326636A71a9AAfC/info.json new file mode 100644 index 00000000..6c751311 --- /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 00000000..34101c97 Binary files /dev/null and b/blockchains/ethereum/assets/0x71E2400CF1Cb83204f33794eD326636A71a9AAfC/logo.png differ diff --git a/blockchains/ethereum/assets/0x71F85B2E46976bD21302B64329868fd15eb0D127/info.json b/blockchains/ethereum/assets/0x71F85B2E46976bD21302B64329868fd15eb0D127/info.json new file mode 100644 index 00000000..ddcee92d --- /dev/null +++ b/blockchains/ethereum/assets/0x71F85B2E46976bD21302B64329868fd15eb0D127/info.json @@ -0,0 +1,11 @@ +{ + "name": "Axion", + "website": "https://axion.network", + "description": "Using a high-interest time-locked savings account, Axion is a global currency, built to serve the people.", + "explorer": "https://etherscan.io/token/0x71F85B2E46976bD21302B64329868fd15eb0D127", + "type": "ERC20", + "symbol": "AXN", + "decimals": 18, + "status": "active", + "id": "0x71F85B2E46976bD21302B64329868fd15eb0D127" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x71F85B2E46976bD21302B64329868fd15eb0D127/logo.png b/blockchains/ethereum/assets/0x71F85B2E46976bD21302B64329868fd15eb0D127/logo.png new file mode 100644 index 00000000..81cc0baa Binary files /dev/null and b/blockchains/ethereum/assets/0x71F85B2E46976bD21302B64329868fd15eb0D127/logo.png differ diff --git a/blockchains/ethereum/assets/0x71b8744c38c11f2682199Ca4f697eED5A9c46a45/info.json b/blockchains/ethereum/assets/0x71b8744c38c11f2682199Ca4f697eED5A9c46a45/info.json new file mode 100644 index 00000000..27294dde --- /dev/null +++ b/blockchains/ethereum/assets/0x71b8744c38c11f2682199Ca4f697eED5A9c46a45/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C523493", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x71b8744c38c11f2682199Ca4f697eED5A9c46a45", + "status": "abandoned", + "id": "0x71b8744c38c11f2682199Ca4f697eED5A9c46a45" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x71b8744c38c11f2682199Ca4f697eED5A9c46a45/logo.png b/blockchains/ethereum/assets/0x71b8744c38c11f2682199Ca4f697eED5A9c46a45/logo.png new file mode 100644 index 00000000..d1d3f9a8 Binary files /dev/null and b/blockchains/ethereum/assets/0x71b8744c38c11f2682199Ca4f697eED5A9c46a45/logo.png differ diff --git a/blockchains/ethereum/assets/0x71d24Baeb0A033ec5F90FF65C4210545AF378D97/info.json b/blockchains/ethereum/assets/0x71d24Baeb0A033ec5F90FF65C4210545AF378D97/info.json new file mode 100644 index 00000000..7c6fa6e9 --- /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 00000000..e2e1397c Binary files /dev/null and b/blockchains/ethereum/assets/0x71d24Baeb0A033ec5F90FF65C4210545AF378D97/logo.png differ diff --git a/blockchains/ethereum/assets/0x71f1Bc89f38B241f3eBF0D5a013Fa2850c63a1D4/info.json b/blockchains/ethereum/assets/0x71f1Bc89f38B241f3eBF0D5a013Fa2850c63a1D4/info.json new file mode 100644 index 00000000..468aa1fa --- /dev/null +++ b/blockchains/ethereum/assets/0x71f1Bc89f38B241f3eBF0D5a013Fa2850c63a1D4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zloadr Token", + "symbol": "ZDR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x71f1Bc89f38B241f3eBF0D5a013Fa2850c63a1D4", + "status": "abandoned", + "id": "0x71f1Bc89f38B241f3eBF0D5a013Fa2850c63a1D4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x71f1Bc89f38B241f3eBF0D5a013Fa2850c63a1D4/logo.png b/blockchains/ethereum/assets/0x71f1Bc89f38B241f3eBF0D5a013Fa2850c63a1D4/logo.png new file mode 100755 index 00000000..bf74664c Binary files /dev/null and b/blockchains/ethereum/assets/0x71f1Bc89f38B241f3eBF0D5a013Fa2850c63a1D4/logo.png differ diff --git a/blockchains/ethereum/assets/0x71fc860F7D3A592A4a98740e39dB31d25db65ae8/info.json b/blockchains/ethereum/assets/0x71fc860F7D3A592A4a98740e39dB31d25db65ae8/info.json new file mode 100644 index 00000000..1369fa95 --- /dev/null +++ b/blockchains/ethereum/assets/0x71fc860F7D3A592A4a98740e39dB31d25db65ae8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave USDT V1", + "symbol": "aUSDT V1", + "type": "ERC20", + "decimals": 6, + "description": "Aave USDT V1 is an interest bearing token pegged 1:1 to the underlying USDT deposited in Aave V1. aUSDT V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x71fc860F7D3A592A4a98740e39dB31d25db65ae8", + "status": "abandoned", + "id": "0x71fc860F7D3A592A4a98740e39dB31d25db65ae8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x71fc860F7D3A592A4a98740e39dB31d25db65ae8/logo.png b/blockchains/ethereum/assets/0x71fc860F7D3A592A4a98740e39dB31d25db65ae8/logo.png new file mode 100644 index 00000000..97b9711e Binary files /dev/null and b/blockchains/ethereum/assets/0x71fc860F7D3A592A4a98740e39dB31d25db65ae8/logo.png differ diff --git a/blockchains/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/info.json b/blockchains/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/info.json new file mode 100644 index 00000000..2e9ec673 --- /dev/null +++ b/blockchains/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/info.json @@ -0,0 +1,40 @@ +{ + "name": "Flux", + "type": "ERC20", + "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://etherscan.io/token/0x720cd16b011b987da3518fbf38c3071d4f0d1495", + "status": "active", + "id": "0x720CD16b011b987Da3518fbf38c3071d4F0D1495", + "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/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/logo.png b/blockchains/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/logo.png new file mode 100644 index 00000000..9d7b0435 Binary files /dev/null and b/blockchains/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/logo.png differ diff --git a/blockchains/ethereum/assets/0x720c2c93F5f9A6b82226e84095558B10F399b0FA/info.json b/blockchains/ethereum/assets/0x720c2c93F5f9A6b82226e84095558B10F399b0FA/info.json new file mode 100644 index 00000000..1f16476b --- /dev/null +++ b/blockchains/ethereum/assets/0x720c2c93F5f9A6b82226e84095558B10F399b0FA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gric Coin", + "symbol": "GC", + "type": "ERC20", + "decimals": 18, + "description": "Gric Coin (GC) is an Agricultural Blockchain Project that is focused on improving agricultural practice and increase agricultural output globally with the major focus on Africa.", + "website": "https://agric.io/", + "explorer": "https://etherscan.io/token/0x720c2c93F5f9A6b82226e84095558B10F399b0FA", + "status": "active", + "id": "0x720c2c93F5f9A6b82226e84095558B10F399b0FA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x720c2c93F5f9A6b82226e84095558B10F399b0FA/logo.png b/blockchains/ethereum/assets/0x720c2c93F5f9A6b82226e84095558B10F399b0FA/logo.png new file mode 100644 index 00000000..78794cad Binary files /dev/null and b/blockchains/ethereum/assets/0x720c2c93F5f9A6b82226e84095558B10F399b0FA/logo.png differ diff --git a/blockchains/ethereum/assets/0x72112EE2f2Cfb1F8494e78E0C3166a77Fb6A2d24/info.json b/blockchains/ethereum/assets/0x72112EE2f2Cfb1F8494e78E0C3166a77Fb6A2d24/info.json new file mode 100644 index 00000000..f2233cb1 --- /dev/null +++ b/blockchains/ethereum/assets/0x72112EE2f2Cfb1F8494e78E0C3166a77Fb6A2d24/info.json @@ -0,0 +1,11 @@ +{ + "name": "Galaxy Diamond", + "symbol": "GD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.galalink.org", + "explorer": "https://etherscan.io/token/0x72112EE2f2Cfb1F8494e78E0C3166a77Fb6A2d24", + "status": "abandoned", + "id": "0x72112EE2f2Cfb1F8494e78E0C3166a77Fb6A2d24" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72112EE2f2Cfb1F8494e78E0C3166a77Fb6A2d24/logo.png b/blockchains/ethereum/assets/0x72112EE2f2Cfb1F8494e78E0C3166a77Fb6A2d24/logo.png new file mode 100644 index 00000000..c909f0f6 Binary files /dev/null and b/blockchains/ethereum/assets/0x72112EE2f2Cfb1F8494e78E0C3166a77Fb6A2d24/logo.png differ diff --git a/blockchains/ethereum/assets/0x722D7416827E0419C0A8B96add73c84D2a9b2a9b/info.json b/blockchains/ethereum/assets/0x722D7416827E0419C0A8B96add73c84D2a9b2a9b/info.json new file mode 100644 index 00000000..4d7b19c2 --- /dev/null +++ b/blockchains/ethereum/assets/0x722D7416827E0419C0A8B96add73c84D2a9b2a9b/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 063-CN41", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x722D7416827E0419C0A8B96add73c84D2a9b2a9b", + "status": "abandoned", + "id": "0x722D7416827E0419C0A8B96add73c84D2a9b2a9b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x722D7416827E0419C0A8B96add73c84D2a9b2a9b/logo.png b/blockchains/ethereum/assets/0x722D7416827E0419C0A8B96add73c84D2a9b2a9b/logo.png new file mode 100644 index 00000000..2afd70c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x722D7416827E0419C0A8B96add73c84D2a9b2a9b/logo.png differ diff --git a/blockchains/ethereum/assets/0x722F2f3EaC7e9597C73a593f7CF3de33Fbfc3308/info.json b/blockchains/ethereum/assets/0x722F2f3EaC7e9597C73a593f7CF3de33Fbfc3308/info.json new file mode 100644 index 00000000..ae37cba3 --- /dev/null +++ b/blockchains/ethereum/assets/0x722F2f3EaC7e9597C73a593f7CF3de33Fbfc3308/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinUs", + "symbol": "CNUS", + "type": "ERC20", + "decimals": 18, + "description": "CoinUs is a personal multi-wallet offering convenience and security for storing various cryptocurrencies.", + "website": "https://www.coinus.io", + "explorer": "https://etherscan.io/token/0x722F2f3EaC7e9597C73a593f7CF3de33Fbfc3308", + "status": "active", + "id": "0x722F2f3EaC7e9597C73a593f7CF3de33Fbfc3308" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x722F2f3EaC7e9597C73a593f7CF3de33Fbfc3308/logo.png b/blockchains/ethereum/assets/0x722F2f3EaC7e9597C73a593f7CF3de33Fbfc3308/logo.png new file mode 100644 index 00000000..e77770a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x722F2f3EaC7e9597C73a593f7CF3de33Fbfc3308/logo.png differ diff --git a/blockchains/ethereum/assets/0x723CbfC05e2cfcc71d3d89e770D32801A5eEf5Ab/info.json b/blockchains/ethereum/assets/0x723CbfC05e2cfcc71d3d89e770D32801A5eEf5Ab/info.json new file mode 100644 index 00000000..379f863f --- /dev/null +++ b/blockchains/ethereum/assets/0x723CbfC05e2cfcc71d3d89e770D32801A5eEf5Ab/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitcoinPro", + "symbol": "BTCP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://bitcoinpro.money", + "explorer": "https://etherscan.io/token/0x723CbfC05e2cfcc71d3d89e770D32801A5eEf5Ab", + "status": "abandoned", + "id": "0x723CbfC05e2cfcc71d3d89e770D32801A5eEf5Ab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x723CbfC05e2cfcc71d3d89e770D32801A5eEf5Ab/logo.png b/blockchains/ethereum/assets/0x723CbfC05e2cfcc71d3d89e770D32801A5eEf5Ab/logo.png new file mode 100644 index 00000000..b22e2939 Binary files /dev/null and b/blockchains/ethereum/assets/0x723CbfC05e2cfcc71d3d89e770D32801A5eEf5Ab/logo.png differ diff --git a/blockchains/ethereum/assets/0x7240aC91f01233BaAf8b064248E80feaA5912BA3/info.json b/blockchains/ethereum/assets/0x7240aC91f01233BaAf8b064248E80feaA5912BA3/info.json new file mode 100644 index 00000000..6730a531 --- /dev/null +++ b/blockchains/ethereum/assets/0x7240aC91f01233BaAf8b064248E80feaA5912BA3/info.json @@ -0,0 +1,20 @@ +{ + "name": "OctoFi", + "website": "https://octo.fi", + "description": "Decentralized finance tentacles", + "explorer": "https://etherscan.io/token/0x7240aC91f01233BaAf8b064248E80feaA5912BA3", + "type": "ERC20", + "symbol": "OCTO", + "decimals": 18, + "status": "active", + "id": "0x7240aC91f01233BaAf8b064248E80feaA5912BA3", + "tags": [ + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/octofi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7240aC91f01233BaAf8b064248E80feaA5912BA3/logo.png b/blockchains/ethereum/assets/0x7240aC91f01233BaAf8b064248E80feaA5912BA3/logo.png new file mode 100644 index 00000000..c6d65836 Binary files /dev/null and b/blockchains/ethereum/assets/0x7240aC91f01233BaAf8b064248E80feaA5912BA3/logo.png differ diff --git a/blockchains/ethereum/assets/0x72413edBf399E0F4B981E799F37a1712b73Dd790/info.json b/blockchains/ethereum/assets/0x72413edBf399E0F4B981E799F37a1712b73Dd790/info.json new file mode 100644 index 00000000..ea4d364e --- /dev/null +++ b/blockchains/ethereum/assets/0x72413edBf399E0F4B981E799F37a1712b73Dd790/info.json @@ -0,0 +1,11 @@ +{ + "name": "DKG Dark Pool Chain", + "symbol": "DDPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x72413edBf399E0F4B981E799F37a1712b73Dd790", + "status": "abandoned", + "id": "0x72413edBf399E0F4B981E799F37a1712b73Dd790" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72413edBf399E0F4B981E799F37a1712b73Dd790/logo.png b/blockchains/ethereum/assets/0x72413edBf399E0F4B981E799F37a1712b73Dd790/logo.png new file mode 100755 index 00000000..0458537f Binary files /dev/null and b/blockchains/ethereum/assets/0x72413edBf399E0F4B981E799F37a1712b73Dd790/logo.png differ diff --git a/blockchains/ethereum/assets/0x72430A612Adc007c50e3b6946dBb1Bb0fd3101D1/info.json b/blockchains/ethereum/assets/0x72430A612Adc007c50e3b6946dBb1Bb0fd3101D1/info.json new file mode 100644 index 00000000..e3927668 --- /dev/null +++ b/blockchains/ethereum/assets/0x72430A612Adc007c50e3b6946dBb1Bb0fd3101D1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Thingschain", + "symbol": "TIC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://thingschain.network/", + "explorer": "https://etherscan.io/token/0x72430A612Adc007c50e3b6946dBb1Bb0fd3101D1", + "status": "abandoned", + "id": "0x72430A612Adc007c50e3b6946dBb1Bb0fd3101D1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72430A612Adc007c50e3b6946dBb1Bb0fd3101D1/logo.png b/blockchains/ethereum/assets/0x72430A612Adc007c50e3b6946dBb1Bb0fd3101D1/logo.png new file mode 100644 index 00000000..d6bc0269 Binary files /dev/null and b/blockchains/ethereum/assets/0x72430A612Adc007c50e3b6946dBb1Bb0fd3101D1/logo.png differ diff --git a/blockchains/ethereum/assets/0x7252fDbB1097C7089D93b0fBDf3494aECf2c92A0/info.json b/blockchains/ethereum/assets/0x7252fDbB1097C7089D93b0fBDf3494aECf2c92A0/info.json new file mode 100644 index 00000000..16722b0d --- /dev/null +++ b/blockchains/ethereum/assets/0x7252fDbB1097C7089D93b0fBDf3494aECf2c92A0/info.json @@ -0,0 +1,11 @@ +{ + "name": "VIRTEX TOKEN", + "symbol": "VRX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7252fDbB1097C7089D93b0fBDf3494aECf2c92A0", + "status": "abandoned", + "id": "0x7252fDbB1097C7089D93b0fBDf3494aECf2c92A0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7252fDbB1097C7089D93b0fBDf3494aECf2c92A0/logo.png b/blockchains/ethereum/assets/0x7252fDbB1097C7089D93b0fBDf3494aECf2c92A0/logo.png new file mode 100755 index 00000000..ca9661c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x7252fDbB1097C7089D93b0fBDf3494aECf2c92A0/logo.png differ diff --git a/blockchains/ethereum/assets/0x725440512cb7b78bF56B334E50e31707418231CB/info.json b/blockchains/ethereum/assets/0x725440512cb7b78bF56B334E50e31707418231CB/info.json new file mode 100644 index 00000000..893ee357 --- /dev/null +++ b/blockchains/ethereum/assets/0x725440512cb7b78bF56B334E50e31707418231CB/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEXA COIN", + "symbol": "DEXA", + "type": "ERC20", + "decimals": 18, + "description": "A Social Messenger Platform that allows users to send Money & Cryptocurrency to each other.", + "website": "https://dexacoin.net", + "explorer": "https://etherscan.io/token/0x725440512cb7b78bF56B334E50e31707418231CB", + "status": "active", + "id": "0x725440512cb7b78bF56B334E50e31707418231CB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x725440512cb7b78bF56B334E50e31707418231CB/logo.png b/blockchains/ethereum/assets/0x725440512cb7b78bF56B334E50e31707418231CB/logo.png new file mode 100644 index 00000000..cfdb535e Binary files /dev/null and b/blockchains/ethereum/assets/0x725440512cb7b78bF56B334E50e31707418231CB/logo.png differ diff --git a/blockchains/ethereum/assets/0x725Be8aE1802C09343523556Fca6ef227E502ffF/info.json b/blockchains/ethereum/assets/0x725Be8aE1802C09343523556Fca6ef227E502ffF/info.json new file mode 100644 index 00000000..7602373c --- /dev/null +++ b/blockchains/ethereum/assets/0x725Be8aE1802C09343523556Fca6ef227E502ffF/info.json @@ -0,0 +1,11 @@ +{ + "name": "SG10006(YOU)", + "symbol": "YOU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x725Be8aE1802C09343523556Fca6ef227E502ffF", + "status": "abandoned", + "id": "0x725Be8aE1802C09343523556Fca6ef227E502ffF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x725Be8aE1802C09343523556Fca6ef227E502ffF/logo.png b/blockchains/ethereum/assets/0x725Be8aE1802C09343523556Fca6ef227E502ffF/logo.png new file mode 100644 index 00000000..abdb9441 Binary files /dev/null and b/blockchains/ethereum/assets/0x725Be8aE1802C09343523556Fca6ef227E502ffF/logo.png differ diff --git a/blockchains/ethereum/assets/0x725C263e32c72dDC3A19bEa12C5a0479a81eE688/info.json b/blockchains/ethereum/assets/0x725C263e32c72dDC3A19bEa12C5a0479a81eE688/info.json new file mode 100644 index 00000000..fe0d3281 --- /dev/null +++ b/blockchains/ethereum/assets/0x725C263e32c72dDC3A19bEa12C5a0479a81eE688/info.json @@ -0,0 +1,22 @@ +{ + "name": "Bridge Mutual", + "type": "ERC20", + "symbol": "BMI", + "decimals": 18, + "website": "https://bridgemutual.io", + "short_description": "A discretionary risk coverage platform.", + "description": "Bridge Mutual is a decentralized, discretionary p2p/p2b platform that provides coverage for stablecoins, centralized exchanges, and smart contracts. Its allows users to provide coverage, decide on payouts, and get compensated for taking part in the ecosystem.", + "explorer": "https://etherscan.io/token/0x725C263e32c72dDC3A19bEa12C5a0479a81eE688", + "status": "active", + "id": "0x725C263e32c72dDC3A19bEa12C5a0479a81eE688", + "links": [ + { + "name": "github", + "url": "https://github.com/Bridge-Mutual" + }, + { + "name": "x", + "url": "https://x.com/Bridge_Mutual" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x725C263e32c72dDC3A19bEa12C5a0479a81eE688/logo.png b/blockchains/ethereum/assets/0x725C263e32c72dDC3A19bEa12C5a0479a81eE688/logo.png new file mode 100644 index 00000000..b6b6c528 Binary files /dev/null and b/blockchains/ethereum/assets/0x725C263e32c72dDC3A19bEa12C5a0479a81eE688/logo.png differ diff --git a/blockchains/ethereum/assets/0x726091d1Dad881fBa95dc8093591bca110f2bf2E/info.json b/blockchains/ethereum/assets/0x726091d1Dad881fBa95dc8093591bca110f2bf2E/info.json new file mode 100644 index 00000000..b1e98cf0 --- /dev/null +++ b/blockchains/ethereum/assets/0x726091d1Dad881fBa95dc8093591bca110f2bf2E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planetagro-Exchange", + "symbol": "WHEAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x726091d1Dad881fBa95dc8093591bca110f2bf2E", + "status": "abandoned", + "id": "0x726091d1Dad881fBa95dc8093591bca110f2bf2E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x726091d1Dad881fBa95dc8093591bca110f2bf2E/logo.png b/blockchains/ethereum/assets/0x726091d1Dad881fBa95dc8093591bca110f2bf2E/logo.png new file mode 100755 index 00000000..4e77b9cb Binary files /dev/null and b/blockchains/ethereum/assets/0x726091d1Dad881fBa95dc8093591bca110f2bf2E/logo.png differ diff --git a/blockchains/ethereum/assets/0x72630B1e3B42874bf335020Ba0249e3E9e47Bafc/info.json b/blockchains/ethereum/assets/0x72630B1e3B42874bf335020Ba0249e3E9e47Bafc/info.json new file mode 100644 index 00000000..fd17a357 --- /dev/null +++ b/blockchains/ethereum/assets/0x72630B1e3B42874bf335020Ba0249e3E9e47Bafc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Paypolitan Token", + "website": "https://paypolitan.io", + "description": "PayPolitan offers mobile payments for fiat and cryptocurrencies with yield farming.", + "explorer": "https://etherscan.io/token/0x72630B1e3B42874bf335020Ba0249e3E9e47Bafc", + "type": "ERC20", + "symbol": "EPAN", + "decimals": 18, + "status": "active", + "id": "0x72630B1e3B42874bf335020Ba0249e3E9e47Bafc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72630B1e3B42874bf335020Ba0249e3E9e47Bafc/logo.png b/blockchains/ethereum/assets/0x72630B1e3B42874bf335020Ba0249e3E9e47Bafc/logo.png new file mode 100644 index 00000000..f4c257c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x72630B1e3B42874bf335020Ba0249e3E9e47Bafc/logo.png differ diff --git a/blockchains/ethereum/assets/0x727443713e3fF01411Feaae52dae5d142A3c7b29/info.json b/blockchains/ethereum/assets/0x727443713e3fF01411Feaae52dae5d142A3c7b29/info.json new file mode 100644 index 00000000..a4a2d405 --- /dev/null +++ b/blockchains/ethereum/assets/0x727443713e3fF01411Feaae52dae5d142A3c7b29/info.json @@ -0,0 +1,11 @@ +{ + "name": "GLOBALFOUNDATION", + "symbol": "GF", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x727443713e3fF01411Feaae52dae5d142A3c7b29", + "status": "abandoned", + "id": "0x727443713e3fF01411Feaae52dae5d142A3c7b29" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x727443713e3fF01411Feaae52dae5d142A3c7b29/logo.png b/blockchains/ethereum/assets/0x727443713e3fF01411Feaae52dae5d142A3c7b29/logo.png new file mode 100755 index 00000000..16214e24 Binary files /dev/null and b/blockchains/ethereum/assets/0x727443713e3fF01411Feaae52dae5d142A3c7b29/logo.png differ diff --git a/blockchains/ethereum/assets/0x728781E75735dc0962Df3a51d7Ef47E798A7107E/info.json b/blockchains/ethereum/assets/0x728781E75735dc0962Df3a51d7Ef47E798A7107E/info.json new file mode 100644 index 00000000..b8594935 --- /dev/null +++ b/blockchains/ethereum/assets/0x728781E75735dc0962Df3a51d7Ef47E798A7107E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wolk Protocol Token", + "symbol": "WOLK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x728781E75735dc0962Df3a51d7Ef47E798A7107E", + "status": "abandoned", + "id": "0x728781E75735dc0962Df3a51d7Ef47E798A7107E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x728781E75735dc0962Df3a51d7Ef47E798A7107E/logo.png b/blockchains/ethereum/assets/0x728781E75735dc0962Df3a51d7Ef47E798A7107E/logo.png new file mode 100644 index 00000000..232a1f13 Binary files /dev/null and b/blockchains/ethereum/assets/0x728781E75735dc0962Df3a51d7Ef47E798A7107E/logo.png differ diff --git a/blockchains/ethereum/assets/0x72896d5478aD86B14a6d4f6e7441740d4970083d/info.json b/blockchains/ethereum/assets/0x72896d5478aD86B14a6d4f6e7441740d4970083d/info.json new file mode 100644 index 00000000..cdad6077 --- /dev/null +++ b/blockchains/ethereum/assets/0x72896d5478aD86B14a6d4f6e7441740d4970083d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped ZCore", + "website": "https://defi.zcore.cash", + "description": "Wrapped ZCore is a coin backed by 1 ZCR, on the ethereum network, which is an scalable, easy to use peer-to-peer network.", + "explorer": "https://etherscan.io/token/0x72896d5478ad86b14a6d4f6e7441740d4970083d", + "type": "ERC20", + "symbol": "WZCR", + "decimals": 18, + "status": "active", + "id": "0x72896d5478aD86B14a6d4f6e7441740d4970083d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72896d5478aD86B14a6d4f6e7441740d4970083d/logo.png b/blockchains/ethereum/assets/0x72896d5478aD86B14a6d4f6e7441740d4970083d/logo.png new file mode 100644 index 00000000..34e9a3eb Binary files /dev/null and b/blockchains/ethereum/assets/0x72896d5478aD86B14a6d4f6e7441740d4970083d/logo.png differ diff --git a/blockchains/ethereum/assets/0x728f30fa2f100742C7949D1961804FA8E0B1387d/info.json b/blockchains/ethereum/assets/0x728f30fa2f100742C7949D1961804FA8E0B1387d/info.json new file mode 100644 index 00000000..7bb62284 --- /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 00000000..d2a350d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x728f30fa2f100742C7949D1961804FA8E0B1387d/logo.png differ diff --git a/blockchains/ethereum/assets/0x72955eCFf76E48F2C8AbCCe11d54e5734D6f3657/info.json b/blockchains/ethereum/assets/0x72955eCFf76E48F2C8AbCCe11d54e5734D6f3657/info.json new file mode 100644 index 00000000..22c5aed1 --- /dev/null +++ b/blockchains/ethereum/assets/0x72955eCFf76E48F2C8AbCCe11d54e5734D6f3657/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrustVerse", + "symbol": "TRV", + "type": "ERC20", + "decimals": 18, + "description": "TrustVerse aims to become the universe of trust. It describes itself as a blockchain-based AI-wealth management and digital asset planning protocol.", + "website": "https://trustverse.io", + "explorer": "https://etherscan.io/token/0x72955eCFf76E48F2C8AbCCe11d54e5734D6f3657", + "status": "active", + "id": "0x72955eCFf76E48F2C8AbCCe11d54e5734D6f3657" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72955eCFf76E48F2C8AbCCe11d54e5734D6f3657/logo.png b/blockchains/ethereum/assets/0x72955eCFf76E48F2C8AbCCe11d54e5734D6f3657/logo.png new file mode 100644 index 00000000..fcb8897d Binary files /dev/null and b/blockchains/ethereum/assets/0x72955eCFf76E48F2C8AbCCe11d54e5734D6f3657/logo.png differ diff --git a/blockchains/ethereum/assets/0x7296eaA225804451a91616b29D040cAB05435f0d/info.json b/blockchains/ethereum/assets/0x7296eaA225804451a91616b29D040cAB05435f0d/info.json new file mode 100644 index 00000000..bf03f68e --- /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 00000000..3b74cc31 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 new file mode 100644 index 00000000..7e24c649 --- /dev/null +++ b/blockchains/ethereum/assets/0x72B886d09C117654aB7dA13A14d603001dE0B777/info.json @@ -0,0 +1,34 @@ +{ + "name": "XDEFI", + "type": "ERC20", + "symbol": "XDEFI", + "decimals": 18, + "website": "https://www.xdefi.io", + "description": "XDEFI Wallet is a multi-chain web browser extension currently available on Chrome & Brave (soon on Firefox) built for DeFi users and NFT lovers. It is a wallet with native integrations on THORChain, Ethereum + several EVM networks and Terra.", + "explorer": "https://etherscan.io/token/0x72b886d09c117654ab7da13a14d603001de0b777", + "status": "active", + "id": "0x72B886d09C117654aB7dA13A14d603001dE0B777", + "links": [ + { + "name": "x", + "url": "https://x.com/xdefi_wallet" + }, + { + "name": "github", + "url": "https://github.com/xdefi-tech" + }, + { + "name": "telegram", + "url": "https://t.me/xdefi_io" + }, + { + "name": "telegram_news", + "url": "https://t.me/xdefi_announcements" + } + ], + "tags": [ + "nft", + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72B886d09C117654aB7dA13A14d603001dE0B777/logo.png b/blockchains/ethereum/assets/0x72B886d09C117654aB7dA13A14d603001dE0B777/logo.png new file mode 100644 index 00000000..1f9439a8 Binary files /dev/null and b/blockchains/ethereum/assets/0x72B886d09C117654aB7dA13A14d603001dE0B777/logo.png differ diff --git a/blockchains/ethereum/assets/0x72D84A0FD9Ca53FA302a0A1cE4be22B1072274Be/info.json b/blockchains/ethereum/assets/0x72D84A0FD9Ca53FA302a0A1cE4be22B1072274Be/info.json new file mode 100644 index 00000000..110960fe --- /dev/null +++ b/blockchains/ethereum/assets/0x72D84A0FD9Ca53FA302a0A1cE4be22B1072274Be/info.json @@ -0,0 +1,11 @@ +{ + "name": "EthereumPlus", + "symbol": "ETHP", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x72D84A0FD9Ca53FA302a0A1cE4be22B1072274Be", + "status": "abandoned", + "id": "0x72D84A0FD9Ca53FA302a0A1cE4be22B1072274Be" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72D84A0FD9Ca53FA302a0A1cE4be22B1072274Be/logo.png b/blockchains/ethereum/assets/0x72D84A0FD9Ca53FA302a0A1cE4be22B1072274Be/logo.png new file mode 100644 index 00000000..236125ce Binary files /dev/null and b/blockchains/ethereum/assets/0x72D84A0FD9Ca53FA302a0A1cE4be22B1072274Be/logo.png differ diff --git a/blockchains/ethereum/assets/0x72DC30371f77DD6eFb22e27843594a14Bde0337b/info.json b/blockchains/ethereum/assets/0x72DC30371f77DD6eFb22e27843594a14Bde0337b/info.json new file mode 100644 index 00000000..5b6a90ab --- /dev/null +++ b/blockchains/ethereum/assets/0x72DC30371f77DD6eFb22e27843594a14Bde0337b/info.json @@ -0,0 +1,11 @@ +{ + "name": "SBS COIN", + "symbol": "SBS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x72DC30371f77DD6eFb22e27843594a14Bde0337b", + "status": "abandoned", + "id": "0x72DC30371f77DD6eFb22e27843594a14Bde0337b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72DC30371f77DD6eFb22e27843594a14Bde0337b/logo.png b/blockchains/ethereum/assets/0x72DC30371f77DD6eFb22e27843594a14Bde0337b/logo.png new file mode 100644 index 00000000..1fe54123 Binary files /dev/null and b/blockchains/ethereum/assets/0x72DC30371f77DD6eFb22e27843594a14Bde0337b/logo.png differ diff --git a/blockchains/ethereum/assets/0x72F020f8f3E8fd9382705723Cd26380f8D0c66Bb/info.json b/blockchains/ethereum/assets/0x72F020f8f3E8fd9382705723Cd26380f8D0c66Bb/info.json new file mode 100644 index 00000000..e15b9cad --- /dev/null +++ b/blockchains/ethereum/assets/0x72F020f8f3E8fd9382705723Cd26380f8D0c66Bb/info.json @@ -0,0 +1,49 @@ +{ + "name": "PlotX", + "website": "https://plotx.io/", + "description": "PlotX is a non-custodial prediction market protocol that enables users to earn rewards on high-yield prediction markets. Dubbed as the Uniswap of Prediction Markets, PlotX uses an Automated Market Making algorithm to settle markets and distribute rewards on the Ethereum Blockchain without any counterparty risk. Markets are focused on crypto-pairs like BTC-USD & ETH-USD and created in intervals of 4h, 1d and 1w.", + "explorer": "https://etherscan.io/token/0x72f020f8f3e8fd9382705723cd26380f8d0c66bb", + "type": "ERC20", + "symbol": "PLOT", + "decimals": 18, + "status": "active", + "id": "0x72F020f8f3E8fd9382705723Cd26380f8D0c66Bb", + "links": [ + { + "name": "github", + "url": "https://github.com/plotx" + }, + { + "name": "x", + "url": "https://x.com/TryPlotX" + }, + { + "name": "telegram", + "url": "https://t.me/plotx_official" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8CWNQnG" + }, + { + "name": "facebook", + "url": "https://facebook.com/TryPlotX" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCiUd_PC6uUdsavWk3vYbtgA" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Plotx" + }, + { + "name": "medium", + "url": "https://medium.com/plotx" + }, + { + "name": "whitepaper", + "url": "https://docsend.com/view/nnea7um4434u49uh" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72F020f8f3E8fd9382705723Cd26380f8D0c66Bb/logo.png b/blockchains/ethereum/assets/0x72F020f8f3E8fd9382705723Cd26380f8D0c66Bb/logo.png new file mode 100644 index 00000000..0eda52ab Binary files /dev/null and b/blockchains/ethereum/assets/0x72F020f8f3E8fd9382705723Cd26380f8D0c66Bb/logo.png differ diff --git a/blockchains/ethereum/assets/0x72a8E0272fdf57F26588DFCA90082f01D51Cb29A/info.json b/blockchains/ethereum/assets/0x72a8E0272fdf57F26588DFCA90082f01D51Cb29A/info.json new file mode 100644 index 00000000..255bc33c --- /dev/null +++ b/blockchains/ethereum/assets/0x72a8E0272fdf57F26588DFCA90082f01D51Cb29A/info.json @@ -0,0 +1,11 @@ +{ + "name": "XUAN Token", + "symbol": "XUAN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x72a8E0272fdf57F26588DFCA90082f01D51Cb29A", + "status": "abandoned", + "id": "0x72a8E0272fdf57F26588DFCA90082f01D51Cb29A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72a8E0272fdf57F26588DFCA90082f01D51Cb29A/logo.png b/blockchains/ethereum/assets/0x72a8E0272fdf57F26588DFCA90082f01D51Cb29A/logo.png new file mode 100644 index 00000000..194b363b Binary files /dev/null and b/blockchains/ethereum/assets/0x72a8E0272fdf57F26588DFCA90082f01D51Cb29A/logo.png differ diff --git a/blockchains/ethereum/assets/0x72a8EAeaD0B6F735361a0a6b9402b13DD7081048/info.json b/blockchains/ethereum/assets/0x72a8EAeaD0B6F735361a0a6b9402b13DD7081048/info.json new file mode 100644 index 00000000..d73dfe7d --- /dev/null +++ b/blockchains/ethereum/assets/0x72a8EAeaD0B6F735361a0a6b9402b13DD7081048/info.json @@ -0,0 +1,11 @@ +{ + "name": "Intuz", + "symbol": "INZ", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x72a8EAeaD0B6F735361a0a6b9402b13DD7081048", + "status": "abandoned", + "id": "0x72a8EAeaD0B6F735361a0a6b9402b13DD7081048" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72a8EAeaD0B6F735361a0a6b9402b13DD7081048/logo.png b/blockchains/ethereum/assets/0x72a8EAeaD0B6F735361a0a6b9402b13DD7081048/logo.png new file mode 100644 index 00000000..33d0a15d Binary files /dev/null and b/blockchains/ethereum/assets/0x72a8EAeaD0B6F735361a0a6b9402b13DD7081048/logo.png differ diff --git a/blockchains/ethereum/assets/0x72a8e0B56ae249537A2636C5eCac0F03b60D7DC5/info.json b/blockchains/ethereum/assets/0x72a8e0B56ae249537A2636C5eCac0F03b60D7DC5/info.json new file mode 100644 index 00000000..dcdda01e --- /dev/null +++ b/blockchains/ethereum/assets/0x72a8e0B56ae249537A2636C5eCac0F03b60D7DC5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nise Chain", + "symbol": "STO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x72a8e0B56ae249537A2636C5eCac0F03b60D7DC5", + "status": "abandoned", + "id": "0x72a8e0B56ae249537A2636C5eCac0F03b60D7DC5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72a8e0B56ae249537A2636C5eCac0F03b60D7DC5/logo.png b/blockchains/ethereum/assets/0x72a8e0B56ae249537A2636C5eCac0F03b60D7DC5/logo.png new file mode 100644 index 00000000..5544a870 Binary files /dev/null and b/blockchains/ethereum/assets/0x72a8e0B56ae249537A2636C5eCac0F03b60D7DC5/logo.png differ diff --git a/blockchains/ethereum/assets/0x72aDadb447784dd7AB1F472467750fC485e4cb2d/info.json b/blockchains/ethereum/assets/0x72aDadb447784dd7AB1F472467750fC485e4cb2d/info.json new file mode 100644 index 00000000..caa1cff2 --- /dev/null +++ b/blockchains/ethereum/assets/0x72aDadb447784dd7AB1F472467750fC485e4cb2d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Worldcore", + "symbol": "WRC", + "type": "ERC20", + "decimals": 6, + "description": "Worldcore (WRC) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://worldcore.com", + "explorer": "https://etherscan.io/token/0x72aDadb447784dd7AB1F472467750fC485e4cb2d", + "status": "active", + "id": "0x72aDadb447784dd7AB1F472467750fC485e4cb2d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72aDadb447784dd7AB1F472467750fC485e4cb2d/logo.png b/blockchains/ethereum/assets/0x72aDadb447784dd7AB1F472467750fC485e4cb2d/logo.png new file mode 100755 index 00000000..716c48df Binary files /dev/null and b/blockchains/ethereum/assets/0x72aDadb447784dd7AB1F472467750fC485e4cb2d/logo.png differ diff --git a/blockchains/ethereum/assets/0x72b984078E270CfDdcb9E04643A18605507d1d77/info.json b/blockchains/ethereum/assets/0x72b984078E270CfDdcb9E04643A18605507d1d77/info.json new file mode 100644 index 00000000..65004ece --- /dev/null +++ b/blockchains/ethereum/assets/0x72b984078E270CfDdcb9E04643A18605507d1d77/info.json @@ -0,0 +1,11 @@ +{ + "name": "EASY", + "symbol": "EASY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x72b984078E270CfDdcb9E04643A18605507d1d77", + "status": "abandoned", + "id": "0x72b984078E270CfDdcb9E04643A18605507d1d77" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72b984078E270CfDdcb9E04643A18605507d1d77/logo.png b/blockchains/ethereum/assets/0x72b984078E270CfDdcb9E04643A18605507d1d77/logo.png new file mode 100644 index 00000000..ca405d9c Binary files /dev/null and b/blockchains/ethereum/assets/0x72b984078E270CfDdcb9E04643A18605507d1d77/logo.png differ diff --git a/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/info.json b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/info.json new file mode 100644 index 00000000..962b4740 --- /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 00000000..c01f437d Binary files /dev/null and b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/logo.png differ diff --git a/blockchains/ethereum/assets/0x72c9Fb7ED19D3ce51cea5C56B3e023cd918baaDf/info.json b/blockchains/ethereum/assets/0x72c9Fb7ED19D3ce51cea5C56B3e023cd918baaDf/info.json new file mode 100644 index 00000000..717806dc --- /dev/null +++ b/blockchains/ethereum/assets/0x72c9Fb7ED19D3ce51cea5C56B3e023cd918baaDf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Agrolot Token", + "symbol": "AGLT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://agrolot.io/", + "explorer": "https://etherscan.io/token/0x72c9Fb7ED19D3ce51cea5C56B3e023cd918baaDf", + "status": "abandoned", + "id": "0x72c9Fb7ED19D3ce51cea5C56B3e023cd918baaDf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72c9Fb7ED19D3ce51cea5C56B3e023cd918baaDf/logo.png b/blockchains/ethereum/assets/0x72c9Fb7ED19D3ce51cea5C56B3e023cd918baaDf/logo.png new file mode 100644 index 00000000..a6bb77b1 Binary files /dev/null and b/blockchains/ethereum/assets/0x72c9Fb7ED19D3ce51cea5C56B3e023cd918baaDf/logo.png differ diff --git a/blockchains/ethereum/assets/0x72dD4b6bd852A3AA172Be4d6C5a6dbEc588cf131/info.json b/blockchains/ethereum/assets/0x72dD4b6bd852A3AA172Be4d6C5a6dbEc588cf131/info.json new file mode 100644 index 00000000..b4b2f958 --- /dev/null +++ b/blockchains/ethereum/assets/0x72dD4b6bd852A3AA172Be4d6C5a6dbEc588cf131/info.json @@ -0,0 +1,11 @@ +{ + "name": "NAGA Coin", + "symbol": "NGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.thenagacoin.com/", + "explorer": "https://etherscan.io/token/0x72dD4b6bd852A3AA172Be4d6C5a6dbEc588cf131", + "status": "abandoned", + "id": "0x72dD4b6bd852A3AA172Be4d6C5a6dbEc588cf131" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72dD4b6bd852A3AA172Be4d6C5a6dbEc588cf131/logo.png b/blockchains/ethereum/assets/0x72dD4b6bd852A3AA172Be4d6C5a6dbEc588cf131/logo.png new file mode 100755 index 00000000..b25af754 Binary files /dev/null and b/blockchains/ethereum/assets/0x72dD4b6bd852A3AA172Be4d6C5a6dbEc588cf131/logo.png differ diff --git a/blockchains/ethereum/assets/0x72e364F2ABdC788b7E918bc238B21f109Cd634D7/info.json b/blockchains/ethereum/assets/0x72e364F2ABdC788b7E918bc238B21f109Cd634D7/info.json new file mode 100644 index 00000000..aaf4f5e1 --- /dev/null +++ b/blockchains/ethereum/assets/0x72e364F2ABdC788b7E918bc238B21f109Cd634D7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Metaverse Index", + "symbol": "MVI", + "type": "ERC20", + "decimals": 18, + "description": "The Metaverse Index captures the trend of entertainment, sports, and businesses shifting to virtual environments, with activity in this environment taking place on Ethereum.", + "website": "https://www.indexcoop.com", + "explorer": "https://etherscan.io/token/0x72e364F2ABdC788b7E918bc238B21f109Cd634D7", + "status": "active", + "id": "0x72e364F2ABdC788b7E918bc238B21f109Cd634D7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72e364F2ABdC788b7E918bc238B21f109Cd634D7/logo.png b/blockchains/ethereum/assets/0x72e364F2ABdC788b7E918bc238B21f109Cd634D7/logo.png new file mode 100644 index 00000000..ff61ec60 Binary files /dev/null and b/blockchains/ethereum/assets/0x72e364F2ABdC788b7E918bc238B21f109Cd634D7/logo.png differ diff --git a/blockchains/ethereum/assets/0x72e4f9F808C49A2a61dE9C5896298920Dc4EEEa9/info.json b/blockchains/ethereum/assets/0x72e4f9F808C49A2a61dE9C5896298920Dc4EEEa9/info.json new file mode 100644 index 00000000..9d9d7c97 --- /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 00000000..74e9e96f Binary files /dev/null and b/blockchains/ethereum/assets/0x72e4f9F808C49A2a61dE9C5896298920Dc4EEEa9/logo.png differ diff --git a/blockchains/ethereum/assets/0x72e646b78a2b58CBD9B0282c2E9C812Bc8033293/info.json b/blockchains/ethereum/assets/0x72e646b78a2b58CBD9B0282c2E9C812Bc8033293/info.json new file mode 100644 index 00000000..5706b7da --- /dev/null +++ b/blockchains/ethereum/assets/0x72e646b78a2b58CBD9B0282c2E9C812Bc8033293/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lunox", + "symbol": "LNX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x72e646b78a2b58CBD9B0282c2E9C812Bc8033293", + "status": "abandoned", + "id": "0x72e646b78a2b58CBD9B0282c2E9C812Bc8033293" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72e646b78a2b58CBD9B0282c2E9C812Bc8033293/logo.png b/blockchains/ethereum/assets/0x72e646b78a2b58CBD9B0282c2E9C812Bc8033293/logo.png new file mode 100644 index 00000000..3bf79304 Binary files /dev/null and b/blockchains/ethereum/assets/0x72e646b78a2b58CBD9B0282c2E9C812Bc8033293/logo.png differ diff --git a/blockchains/ethereum/assets/0x72e9D9038cE484EE986FEa183f8d8Df93f9aDA13/info.json b/blockchains/ethereum/assets/0x72e9D9038cE484EE986FEa183f8d8Df93f9aDA13/info.json new file mode 100644 index 00000000..da688ef1 --- /dev/null +++ b/blockchains/ethereum/assets/0x72e9D9038cE484EE986FEa183f8d8Df93f9aDA13/info.json @@ -0,0 +1,11 @@ +{ + "name": "SmartCredit Token", + "website": "https://smartcredit.io/", + "description": "DeFi lending solution from Swiss bankers. Low collateral ratio for Borrowers. Private Fixed Income Funds for Lenders.", + "explorer": "https://etherscan.io/token/0x72e9D9038cE484EE986FEa183f8d8Df93f9aDA13", + "type": "ERC20", + "symbol": "SMARTCREDIT", + "decimals": 18, + "status": "active", + "id": "0x72e9D9038cE484EE986FEa183f8d8Df93f9aDA13" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72e9D9038cE484EE986FEa183f8d8Df93f9aDA13/logo.png b/blockchains/ethereum/assets/0x72e9D9038cE484EE986FEa183f8d8Df93f9aDA13/logo.png new file mode 100644 index 00000000..d56485a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x72e9D9038cE484EE986FEa183f8d8Df93f9aDA13/logo.png differ diff --git a/blockchains/ethereum/assets/0x72f5eA105faC794fb3CF0Af0f5e65DF8dDd3519B/info.json b/blockchains/ethereum/assets/0x72f5eA105faC794fb3CF0Af0f5e65DF8dDd3519B/info.json new file mode 100644 index 00000000..93aee163 --- /dev/null +++ b/blockchains/ethereum/assets/0x72f5eA105faC794fb3CF0Af0f5e65DF8dDd3519B/info.json @@ -0,0 +1,11 @@ +{ + "name": "REC", + "website": "https://svcapital.io/", + "description": "REC Wallet is the ethereum wallet and cryptocurrency wallet to store your favourite ERC20 tokens!", + "explorer": "https://etherscan.io/token/0x72f5eA105faC794fb3CF0Af0f5e65DF8dDd3519B", + "type": "ERC20", + "symbol": "REC", + "decimals": 18, + "status": "active", + "id": "0x72f5eA105faC794fb3CF0Af0f5e65DF8dDd3519B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72f5eA105faC794fb3CF0Af0f5e65DF8dDd3519B/logo.png b/blockchains/ethereum/assets/0x72f5eA105faC794fb3CF0Af0f5e65DF8dDd3519B/logo.png new file mode 100644 index 00000000..7503ddfb Binary files /dev/null and b/blockchains/ethereum/assets/0x72f5eA105faC794fb3CF0Af0f5e65DF8dDd3519B/logo.png differ diff --git a/blockchains/ethereum/assets/0x72f713D11480DCF08b37E1898670e736688D218d/info.json b/blockchains/ethereum/assets/0x72f713D11480DCF08b37E1898670e736688D218d/info.json new file mode 100644 index 00000000..8e71b199 --- /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 00000000..72336c1f Binary files /dev/null and b/blockchains/ethereum/assets/0x72f713D11480DCF08b37E1898670e736688D218d/logo.png differ diff --git a/blockchains/ethereum/assets/0x730749c9C73cB491f9E0D4fd6bdd5f3096373BC7/info.json b/blockchains/ethereum/assets/0x730749c9C73cB491f9E0D4fd6bdd5f3096373BC7/info.json new file mode 100644 index 00000000..f37f0562 --- /dev/null +++ b/blockchains/ethereum/assets/0x730749c9C73cB491f9E0D4fd6bdd5f3096373BC7/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-10/30M70", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x730749c9C73cB491f9E0D4fd6bdd5f3096373BC7", + "status": "abandoned", + "id": "0x730749c9C73cB491f9E0D4fd6bdd5f3096373BC7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x730749c9C73cB491f9E0D4fd6bdd5f3096373BC7/logo.png b/blockchains/ethereum/assets/0x730749c9C73cB491f9E0D4fd6bdd5f3096373BC7/logo.png new file mode 100644 index 00000000..d8ed0012 Binary files /dev/null and b/blockchains/ethereum/assets/0x730749c9C73cB491f9E0D4fd6bdd5f3096373BC7/logo.png differ diff --git a/blockchains/ethereum/assets/0x73145E8603c71FFfDC4E37E6957a6C55dB00ED23/info.json b/blockchains/ethereum/assets/0x73145E8603c71FFfDC4E37E6957a6C55dB00ED23/info.json new file mode 100644 index 00000000..2ce4b0cc --- /dev/null +++ b/blockchains/ethereum/assets/0x73145E8603c71FFfDC4E37E6957a6C55dB00ED23/info.json @@ -0,0 +1,11 @@ +{ + "name": "NaGa", + "website": "https://nagatrade.com", + "description": "Binary options trading platform", + "explorer": "https://etherscan.io/token/0x73145E8603c71FFfDC4E37E6957a6C55dB00ED23", + "type": "ERC20", + "symbol": "NLP", + "decimals": 18, + "status": "active", + "id": "0x73145E8603c71FFfDC4E37E6957a6C55dB00ED23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73145E8603c71FFfDC4E37E6957a6C55dB00ED23/logo.png b/blockchains/ethereum/assets/0x73145E8603c71FFfDC4E37E6957a6C55dB00ED23/logo.png new file mode 100644 index 00000000..46873ca7 Binary files /dev/null and b/blockchains/ethereum/assets/0x73145E8603c71FFfDC4E37E6957a6C55dB00ED23/logo.png differ diff --git a/blockchains/ethereum/assets/0x73187be2C94F645175da8B60B43813d7A25f353B/info.json b/blockchains/ethereum/assets/0x73187be2C94F645175da8B60B43813d7A25f353B/info.json new file mode 100644 index 00000000..14065e82 --- /dev/null +++ b/blockchains/ethereum/assets/0x73187be2C94F645175da8B60B43813d7A25f353B/info.json @@ -0,0 +1,11 @@ +{ + "name": "BIG", + "symbol": "BIG", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x73187be2C94F645175da8B60B43813d7A25f353B", + "status": "abandoned", + "id": "0x73187be2C94F645175da8B60B43813d7A25f353B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73187be2C94F645175da8B60B43813d7A25f353B/logo.png b/blockchains/ethereum/assets/0x73187be2C94F645175da8B60B43813d7A25f353B/logo.png new file mode 100644 index 00000000..c1b33b9a Binary files /dev/null and b/blockchains/ethereum/assets/0x73187be2C94F645175da8B60B43813d7A25f353B/logo.png differ diff --git a/blockchains/ethereum/assets/0x7324e2Fc03dB82ed4f42ff04559a73E3D87226B4/info.json b/blockchains/ethereum/assets/0x7324e2Fc03dB82ed4f42ff04559a73E3D87226B4/info.json new file mode 100644 index 00000000..9f173951 --- /dev/null +++ b/blockchains/ethereum/assets/0x7324e2Fc03dB82ed4f42ff04559a73E3D87226B4/info.json @@ -0,0 +1,11 @@ +{ + "name": "MomToken", + "symbol": "MOM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7324e2Fc03dB82ed4f42ff04559a73E3D87226B4", + "status": "abandoned", + "id": "0x7324e2Fc03dB82ed4f42ff04559a73E3D87226B4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7324e2Fc03dB82ed4f42ff04559a73E3D87226B4/logo.png b/blockchains/ethereum/assets/0x7324e2Fc03dB82ed4f42ff04559a73E3D87226B4/logo.png new file mode 100644 index 00000000..bace0223 Binary files /dev/null and b/blockchains/ethereum/assets/0x7324e2Fc03dB82ed4f42ff04559a73E3D87226B4/logo.png differ diff --git a/blockchains/ethereum/assets/0x73374Ea518De7adDD4c2B624C0e8B113955ee041/info.json b/blockchains/ethereum/assets/0x73374Ea518De7adDD4c2B624C0e8B113955ee041/info.json new file mode 100644 index 00000000..63137063 --- /dev/null +++ b/blockchains/ethereum/assets/0x73374Ea518De7adDD4c2B624C0e8B113955ee041/info.json @@ -0,0 +1,11 @@ +{ + "name": "JGNDeFi", + "website": "https://jgndefi.com/", + "description": "The World’s First Unstoppable DeFi Communication Network.", + "explorer": "https://etherscan.io/token/0x73374Ea518De7adDD4c2B624C0e8B113955ee041", + "type": "ERC20", + "symbol": "JGN", + "decimals": 18, + "status": "active", + "id": "0x73374Ea518De7adDD4c2B624C0e8B113955ee041" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73374Ea518De7adDD4c2B624C0e8B113955ee041/logo.png b/blockchains/ethereum/assets/0x73374Ea518De7adDD4c2B624C0e8B113955ee041/logo.png new file mode 100644 index 00000000..43bf1b3e Binary files /dev/null and b/blockchains/ethereum/assets/0x73374Ea518De7adDD4c2B624C0e8B113955ee041/logo.png differ diff --git a/blockchains/ethereum/assets/0x733Fd1B5Aa477d55070546922Ba1Bd3751C167C7/info.json b/blockchains/ethereum/assets/0x733Fd1B5Aa477d55070546922Ba1Bd3751C167C7/info.json new file mode 100644 index 00000000..b2afe7e6 --- /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 00000000..a1310c06 Binary files /dev/null and b/blockchains/ethereum/assets/0x733Fd1B5Aa477d55070546922Ba1Bd3751C167C7/logo.png differ diff --git a/blockchains/ethereum/assets/0x73489CE024bF775498D6eEC5dC56688f66Db48e1/info.json b/blockchains/ethereum/assets/0x73489CE024bF775498D6eEC5dC56688f66Db48e1/info.json new file mode 100644 index 00000000..4c10bdb7 --- /dev/null +++ b/blockchains/ethereum/assets/0x73489CE024bF775498D6eEC5dC56688f66Db48e1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dollar Blocknote", + "symbol": "$", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x73489CE024bF775498D6eEC5dC56688f66Db48e1", + "status": "abandoned", + "id": "0x73489CE024bF775498D6eEC5dC56688f66Db48e1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73489CE024bF775498D6eEC5dC56688f66Db48e1/logo.png b/blockchains/ethereum/assets/0x73489CE024bF775498D6eEC5dC56688f66Db48e1/logo.png new file mode 100644 index 00000000..70d6aab7 Binary files /dev/null and b/blockchains/ethereum/assets/0x73489CE024bF775498D6eEC5dC56688f66Db48e1/logo.png differ diff --git a/blockchains/ethereum/assets/0x7357397c090F5ac0Ab4b1194020dB94F77c4D4da/info.json b/blockchains/ethereum/assets/0x7357397c090F5ac0Ab4b1194020dB94F77c4D4da/info.json new file mode 100644 index 00000000..2577ee78 --- /dev/null +++ b/blockchains/ethereum/assets/0x7357397c090F5ac0Ab4b1194020dB94F77c4D4da/info.json @@ -0,0 +1,11 @@ +{ + "name": "MySmartProperty Tokens", + "symbol": "MSPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7357397c090F5ac0Ab4b1194020dB94F77c4D4da", + "status": "abandoned", + "id": "0x7357397c090F5ac0Ab4b1194020dB94F77c4D4da" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7357397c090F5ac0Ab4b1194020dB94F77c4D4da/logo.png b/blockchains/ethereum/assets/0x7357397c090F5ac0Ab4b1194020dB94F77c4D4da/logo.png new file mode 100644 index 00000000..14517b44 Binary files /dev/null and b/blockchains/ethereum/assets/0x7357397c090F5ac0Ab4b1194020dB94F77c4D4da/logo.png differ diff --git a/blockchains/ethereum/assets/0x7368eFcc7BF9deE2f61e124EbF97663544b7Aa7f/info.json b/blockchains/ethereum/assets/0x7368eFcc7BF9deE2f61e124EbF97663544b7Aa7f/info.json new file mode 100644 index 00000000..de791a3d --- /dev/null +++ b/blockchains/ethereum/assets/0x7368eFcc7BF9deE2f61e124EbF97663544b7Aa7f/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-4/30M4", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7368eFcc7BF9deE2f61e124EbF97663544b7Aa7f", + "status": "abandoned", + "id": "0x7368eFcc7BF9deE2f61e124EbF97663544b7Aa7f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7368eFcc7BF9deE2f61e124EbF97663544b7Aa7f/logo.png b/blockchains/ethereum/assets/0x7368eFcc7BF9deE2f61e124EbF97663544b7Aa7f/logo.png new file mode 100644 index 00000000..9f8bcf22 Binary files /dev/null and b/blockchains/ethereum/assets/0x7368eFcc7BF9deE2f61e124EbF97663544b7Aa7f/logo.png differ diff --git a/blockchains/ethereum/assets/0x737Ec9a2509ea187E59b427F714b9ea8159cB76d/info.json b/blockchains/ethereum/assets/0x737Ec9a2509ea187E59b427F714b9ea8159cB76d/info.json new file mode 100644 index 00000000..03f4715d --- /dev/null +++ b/blockchains/ethereum/assets/0x737Ec9a2509ea187E59b427F714b9ea8159cB76d/info.json @@ -0,0 +1,11 @@ +{ + "name": "PlayChain", + "symbol": "PCN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x737Ec9a2509ea187E59b427F714b9ea8159cB76d", + "status": "abandoned", + "id": "0x737Ec9a2509ea187E59b427F714b9ea8159cB76d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x737Ec9a2509ea187E59b427F714b9ea8159cB76d/logo.png b/blockchains/ethereum/assets/0x737Ec9a2509ea187E59b427F714b9ea8159cB76d/logo.png new file mode 100755 index 00000000..6e21b051 Binary files /dev/null and b/blockchains/ethereum/assets/0x737Ec9a2509ea187E59b427F714b9ea8159cB76d/logo.png differ diff --git a/blockchains/ethereum/assets/0x737F98AC8cA59f2C68aD658E3C3d8C8963E40a4c/info.json b/blockchains/ethereum/assets/0x737F98AC8cA59f2C68aD658E3C3d8C8963E40a4c/info.json new file mode 100644 index 00000000..d3eaf7dd --- /dev/null +++ b/blockchains/ethereum/assets/0x737F98AC8cA59f2C68aD658E3C3d8C8963E40a4c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Amon", + "symbol": "AMN", + "type": "ERC20", + "decimals": 18, + "description": "Worldcore (WRC) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://amon.tech", + "explorer": "https://etherscan.io/token/0x737F98AC8cA59f2C68aD658E3C3d8C8963E40a4c", + "status": "active", + "id": "0x737F98AC8cA59f2C68aD658E3C3d8C8963E40a4c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x737F98AC8cA59f2C68aD658E3C3d8C8963E40a4c/logo.png b/blockchains/ethereum/assets/0x737F98AC8cA59f2C68aD658E3C3d8C8963E40a4c/logo.png new file mode 100644 index 00000000..1131ed8a Binary files /dev/null and b/blockchains/ethereum/assets/0x737F98AC8cA59f2C68aD658E3C3d8C8963E40a4c/logo.png differ diff --git a/blockchains/ethereum/assets/0x737fA0372c8D001904Ae6aCAf0552d4015F9c947/info.json b/blockchains/ethereum/assets/0x737fA0372c8D001904Ae6aCAf0552d4015F9c947/info.json new file mode 100644 index 00000000..be48b4b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x737fA0372c8D001904Ae6aCAf0552d4015F9c947/info.json @@ -0,0 +1,11 @@ +{ + "name": "MEDIBIT", + "symbol": "MEDIBIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.medibit.org/", + "explorer": "https://etherscan.io/token/0x737fA0372c8D001904Ae6aCAf0552d4015F9c947", + "status": "abandoned", + "id": "0x737fA0372c8D001904Ae6aCAf0552d4015F9c947" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x737fA0372c8D001904Ae6aCAf0552d4015F9c947/logo.png b/blockchains/ethereum/assets/0x737fA0372c8D001904Ae6aCAf0552d4015F9c947/logo.png new file mode 100644 index 00000000..d2fcdad2 Binary files /dev/null and b/blockchains/ethereum/assets/0x737fA0372c8D001904Ae6aCAf0552d4015F9c947/logo.png differ diff --git a/blockchains/ethereum/assets/0x7396dA68628183EE475Ad7285173047993a0A7C8/info.json b/blockchains/ethereum/assets/0x7396dA68628183EE475Ad7285173047993a0A7C8/info.json new file mode 100644 index 00000000..2a18b253 --- /dev/null +++ b/blockchains/ethereum/assets/0x7396dA68628183EE475Ad7285173047993a0A7C8/info.json @@ -0,0 +1,11 @@ +{ + "name": "NETTENCOIN", + "symbol": "NTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7396dA68628183EE475Ad7285173047993a0A7C8", + "status": "abandoned", + "id": "0x7396dA68628183EE475Ad7285173047993a0A7C8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7396dA68628183EE475Ad7285173047993a0A7C8/logo.png b/blockchains/ethereum/assets/0x7396dA68628183EE475Ad7285173047993a0A7C8/logo.png new file mode 100644 index 00000000..6d44be03 Binary files /dev/null and b/blockchains/ethereum/assets/0x7396dA68628183EE475Ad7285173047993a0A7C8/logo.png differ diff --git a/blockchains/ethereum/assets/0x73A15FeD60Bf67631dC6cd7Bc5B6e8da8190aCF5/info.json b/blockchains/ethereum/assets/0x73A15FeD60Bf67631dC6cd7Bc5B6e8da8190aCF5/info.json new file mode 100644 index 00000000..a63b6e38 --- /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 00000000..0b9515db Binary files /dev/null and b/blockchains/ethereum/assets/0x73A15FeD60Bf67631dC6cd7Bc5B6e8da8190aCF5/logo.png differ diff --git a/blockchains/ethereum/assets/0x73B534fb6F07381a29a60B01eed5ae57D4EE24D7/info.json b/blockchains/ethereum/assets/0x73B534fb6F07381a29a60B01eed5ae57D4EE24D7/info.json new file mode 100644 index 00000000..0067c284 --- /dev/null +++ b/blockchains/ethereum/assets/0x73B534fb6F07381a29a60B01eed5ae57D4EE24D7/info.json @@ -0,0 +1,11 @@ +{ + "name": "SENDERON", + "symbol": "SDRN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x73B534fb6F07381a29a60B01eed5ae57D4EE24D7", + "status": "abandoned", + "id": "0x73B534fb6F07381a29a60B01eed5ae57D4EE24D7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73B534fb6F07381a29a60B01eed5ae57D4EE24D7/logo.png b/blockchains/ethereum/assets/0x73B534fb6F07381a29a60B01eed5ae57D4EE24D7/logo.png new file mode 100644 index 00000000..f70bc4cc Binary files /dev/null and b/blockchains/ethereum/assets/0x73B534fb6F07381a29a60B01eed5ae57D4EE24D7/logo.png differ diff --git a/blockchains/ethereum/assets/0x73C9275c3a2Dd84b5741fD59AEbF102C91Eb033F/info.json b/blockchains/ethereum/assets/0x73C9275c3a2Dd84b5741fD59AEbF102C91Eb033F/info.json new file mode 100644 index 00000000..d24aa2a9 --- /dev/null +++ b/blockchains/ethereum/assets/0x73C9275c3a2Dd84b5741fD59AEbF102C91Eb033F/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitBall Treasure", + "symbol": "BTRS", + "type": "ERC20", + "decimals": 18, + "description": "Bitball Ecosystem: All in one crypto Solution. Peer to Peer digital currencies with Multiple utilities.", + "website": "https://bitball-btb.com", + "explorer": "https://etherscan.io/token/0x73C9275c3a2Dd84b5741fD59AEbF102C91Eb033F", + "status": "active", + "id": "0x73C9275c3a2Dd84b5741fD59AEbF102C91Eb033F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73C9275c3a2Dd84b5741fD59AEbF102C91Eb033F/logo.png b/blockchains/ethereum/assets/0x73C9275c3a2Dd84b5741fD59AEbF102C91Eb033F/logo.png new file mode 100644 index 00000000..0916db71 Binary files /dev/null and b/blockchains/ethereum/assets/0x73C9275c3a2Dd84b5741fD59AEbF102C91Eb033F/logo.png differ diff --git a/blockchains/ethereum/assets/0x73Cee8348b9bDd48c64E13452b8a6fbc81630573/info.json b/blockchains/ethereum/assets/0x73Cee8348b9bDd48c64E13452b8a6fbc81630573/info.json new file mode 100644 index 00000000..180ce7ce --- /dev/null +++ b/blockchains/ethereum/assets/0x73Cee8348b9bDd48c64E13452b8a6fbc81630573/info.json @@ -0,0 +1,11 @@ +{ + "name": "EGORAS", + "symbol": "EGR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://egoras.com", + "explorer": "https://etherscan.io/token/0x73Cee8348b9bDd48c64E13452b8a6fbc81630573", + "status": "abandoned", + "id": "0x73Cee8348b9bDd48c64E13452b8a6fbc81630573" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73Cee8348b9bDd48c64E13452b8a6fbc81630573/logo.png b/blockchains/ethereum/assets/0x73Cee8348b9bDd48c64E13452b8a6fbc81630573/logo.png new file mode 100644 index 00000000..4bf53164 Binary files /dev/null and b/blockchains/ethereum/assets/0x73Cee8348b9bDd48c64E13452b8a6fbc81630573/logo.png differ diff --git a/blockchains/ethereum/assets/0x73D65156b358B26B9626E98A7eC17dd386E6187D/info.json b/blockchains/ethereum/assets/0x73D65156b358B26B9626E98A7eC17dd386E6187D/info.json new file mode 100644 index 00000000..7035b869 --- /dev/null +++ b/blockchains/ethereum/assets/0x73D65156b358B26B9626E98A7eC17dd386E6187D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Myph", + "symbol": "MYPH", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x73D65156b358B26B9626E98A7eC17dd386E6187D", + "status": "abandoned", + "id": "0x73D65156b358B26B9626E98A7eC17dd386E6187D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73D65156b358B26B9626E98A7eC17dd386E6187D/logo.png b/blockchains/ethereum/assets/0x73D65156b358B26B9626E98A7eC17dd386E6187D/logo.png new file mode 100644 index 00000000..79374ed1 Binary files /dev/null and b/blockchains/ethereum/assets/0x73D65156b358B26B9626E98A7eC17dd386E6187D/logo.png differ diff --git a/blockchains/ethereum/assets/0x73DBbf72d427076BDd73CF905fDFc442c9C67D4a/info.json b/blockchains/ethereum/assets/0x73DBbf72d427076BDd73CF905fDFc442c9C67D4a/info.json new file mode 100644 index 00000000..8dfe323f --- /dev/null +++ b/blockchains/ethereum/assets/0x73DBbf72d427076BDd73CF905fDFc442c9C67D4a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zeedex", + "symbol": "ZDEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x73DBbf72d427076BDd73CF905fDFc442c9C67D4a", + "status": "abandoned", + "id": "0x73DBbf72d427076BDd73CF905fDFc442c9C67D4a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73DBbf72d427076BDd73CF905fDFc442c9C67D4a/logo.png b/blockchains/ethereum/assets/0x73DBbf72d427076BDd73CF905fDFc442c9C67D4a/logo.png new file mode 100644 index 00000000..5c42ac4b Binary files /dev/null and b/blockchains/ethereum/assets/0x73DBbf72d427076BDd73CF905fDFc442c9C67D4a/logo.png differ diff --git a/blockchains/ethereum/assets/0x73a052500105205d34Daf004eAb301916DA8190f/info.json b/blockchains/ethereum/assets/0x73a052500105205d34Daf004eAb301916DA8190f/info.json new file mode 100644 index 00000000..84266e36 --- /dev/null +++ b/blockchains/ethereum/assets/0x73a052500105205d34Daf004eAb301916DA8190f/info.json @@ -0,0 +1,11 @@ +{ + "name": "iearn TUSD", + "symbol": "yTUSD", + "type": "ERC20", + "decimals": 18, + "description": "Simple auto interest rate switching tokens for Compound, Fulcrum, Aave, and dYdX.", + "website": "https://docs.yearn.finance/", + "explorer": "https://etherscan.io/token/0x73a052500105205d34Daf004eAb301916DA8190f", + "status": "active", + "id": "0x73a052500105205d34Daf004eAb301916DA8190f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73a052500105205d34Daf004eAb301916DA8190f/logo.png b/blockchains/ethereum/assets/0x73a052500105205d34Daf004eAb301916DA8190f/logo.png new file mode 100644 index 00000000..9aa9d5c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x73a052500105205d34Daf004eAb301916DA8190f/logo.png differ diff --git a/blockchains/ethereum/assets/0x73d2ccEE12C120E7DA265a2dE9d9f952a0101b4f/info.json b/blockchains/ethereum/assets/0x73d2ccEE12C120E7DA265a2dE9d9f952a0101b4f/info.json new file mode 100644 index 00000000..86389b5a --- /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 00000000..e43feccb 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 00000000..473af98f --- /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 00000000..cd5ca436 Binary files /dev/null and b/blockchains/ethereum/assets/0x73d7c860998CA3c01Ce8c808F5577d94d545d1b4/logo.png differ diff --git a/blockchains/ethereum/assets/0x73dD069c299A5d691E9836243BcaeC9c8C1D8734/info.json b/blockchains/ethereum/assets/0x73dD069c299A5d691E9836243BcaeC9c8C1D8734/info.json new file mode 100644 index 00000000..847c18f0 --- /dev/null +++ b/blockchains/ethereum/assets/0x73dD069c299A5d691E9836243BcaeC9c8C1D8734/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoineum", + "symbol": "BTE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x73dD069c299A5d691E9836243BcaeC9c8C1D8734", + "status": "abandoned", + "id": "0x73dD069c299A5d691E9836243BcaeC9c8C1D8734" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73dD069c299A5d691E9836243BcaeC9c8C1D8734/logo.png b/blockchains/ethereum/assets/0x73dD069c299A5d691E9836243BcaeC9c8C1D8734/logo.png new file mode 100644 index 00000000..3251d109 Binary files /dev/null and b/blockchains/ethereum/assets/0x73dD069c299A5d691E9836243BcaeC9c8C1D8734/logo.png differ diff --git a/blockchains/ethereum/assets/0x73e4A6B80F8De0aA3f95331c5a93e7f8431B6d95/info.json b/blockchains/ethereum/assets/0x73e4A6B80F8De0aA3f95331c5a93e7f8431B6d95/info.json new file mode 100644 index 00000000..f5ad5480 --- /dev/null +++ b/blockchains/ethereum/assets/0x73e4A6B80F8De0aA3f95331c5a93e7f8431B6d95/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fama", + "website": "https://famacoins.com/", + "description": "FM is a basic setting for building a commercial blockchain. Both companies and individuals can use FM to realize payment, which is easy to operate. FM is a transaction medium between merchants, merchants and individuals, and individuals. FM as a digital currency will fully become a circulation demand and emerge..", + "explorer": "https://etherscan.io/token/0x73e4A6B80F8De0aA3f95331c5a93e7f8431B6d95", + "type": "ERC20", + "symbol": "FM", + "decimals": 18, + "status": "active", + "id": "0x73e4A6B80F8De0aA3f95331c5a93e7f8431B6d95" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73e4A6B80F8De0aA3f95331c5a93e7f8431B6d95/logo.png b/blockchains/ethereum/assets/0x73e4A6B80F8De0aA3f95331c5a93e7f8431B6d95/logo.png new file mode 100644 index 00000000..a9feedd0 Binary files /dev/null and b/blockchains/ethereum/assets/0x73e4A6B80F8De0aA3f95331c5a93e7f8431B6d95/logo.png differ diff --git a/blockchains/ethereum/assets/0x73f142e90636b4E063CFA80B02e4877484fe464E/info.json b/blockchains/ethereum/assets/0x73f142e90636b4E063CFA80B02e4877484fe464E/info.json new file mode 100644 index 00000000..fc52ad01 --- /dev/null +++ b/blockchains/ethereum/assets/0x73f142e90636b4E063CFA80B02e4877484fe464E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sava International", + "symbol": "SAVA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x73f142e90636b4E063CFA80B02e4877484fe464E", + "status": "abandoned", + "id": "0x73f142e90636b4E063CFA80B02e4877484fe464E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73f142e90636b4E063CFA80B02e4877484fe464E/logo.png b/blockchains/ethereum/assets/0x73f142e90636b4E063CFA80B02e4877484fe464E/logo.png new file mode 100644 index 00000000..a20cf2ae Binary files /dev/null and b/blockchains/ethereum/assets/0x73f142e90636b4E063CFA80B02e4877484fe464E/logo.png differ diff --git a/blockchains/ethereum/assets/0x73f8406eAACe2CE69BA49a67551464FDa1D11F14/info.json b/blockchains/ethereum/assets/0x73f8406eAACe2CE69BA49a67551464FDa1D11F14/info.json new file mode 100644 index 00000000..db02f54c --- /dev/null +++ b/blockchains/ethereum/assets/0x73f8406eAACe2CE69BA49a67551464FDa1D11F14/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoonCoin", + "symbol": "MOON", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x73f8406eAACe2CE69BA49a67551464FDa1D11F14", + "status": "abandoned", + "id": "0x73f8406eAACe2CE69BA49a67551464FDa1D11F14" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73f8406eAACe2CE69BA49a67551464FDa1D11F14/logo.png b/blockchains/ethereum/assets/0x73f8406eAACe2CE69BA49a67551464FDa1D11F14/logo.png new file mode 100644 index 00000000..bf05a525 Binary files /dev/null and b/blockchains/ethereum/assets/0x73f8406eAACe2CE69BA49a67551464FDa1D11F14/logo.png differ diff --git a/blockchains/ethereum/assets/0x740623d2c797b7D8D1EcB98e9b4Afcf99Ec31E14/info.json b/blockchains/ethereum/assets/0x740623d2c797b7D8D1EcB98e9b4Afcf99Ec31E14/info.json new file mode 100644 index 00000000..6e68386e --- /dev/null +++ b/blockchains/ethereum/assets/0x740623d2c797b7D8D1EcB98e9b4Afcf99Ec31E14/info.json @@ -0,0 +1,11 @@ +{ + "name": "DoYourTip", + "symbol": "DYT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://doyourtip.io/", + "explorer": "https://etherscan.io/token/0x740623d2c797b7D8D1EcB98e9b4Afcf99Ec31E14", + "status": "abandoned", + "id": "0x740623d2c797b7D8D1EcB98e9b4Afcf99Ec31E14" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x740623d2c797b7D8D1EcB98e9b4Afcf99Ec31E14/logo.png b/blockchains/ethereum/assets/0x740623d2c797b7D8D1EcB98e9b4Afcf99Ec31E14/logo.png new file mode 100644 index 00000000..1e534c7a Binary files /dev/null and b/blockchains/ethereum/assets/0x740623d2c797b7D8D1EcB98e9b4Afcf99Ec31E14/logo.png differ diff --git a/blockchains/ethereum/assets/0x740B88Dd18D4987f1b0Fe02d59E174be59938EBb/info.json b/blockchains/ethereum/assets/0x740B88Dd18D4987f1b0Fe02d59E174be59938EBb/info.json new file mode 100644 index 00000000..866f79c9 --- /dev/null +++ b/blockchains/ethereum/assets/0x740B88Dd18D4987f1b0Fe02d59E174be59938EBb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Econ", + "symbol": "ECON", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x740B88Dd18D4987f1b0Fe02d59E174be59938EBb", + "status": "abandoned", + "id": "0x740B88Dd18D4987f1b0Fe02d59E174be59938EBb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x740B88Dd18D4987f1b0Fe02d59E174be59938EBb/logo.png b/blockchains/ethereum/assets/0x740B88Dd18D4987f1b0Fe02d59E174be59938EBb/logo.png new file mode 100644 index 00000000..e5a91199 Binary files /dev/null and b/blockchains/ethereum/assets/0x740B88Dd18D4987f1b0Fe02d59E174be59938EBb/logo.png differ diff --git a/blockchains/ethereum/assets/0x7420B4b9a0110cdC71fB720908340C03F9Bc03EC/info.json b/blockchains/ethereum/assets/0x7420B4b9a0110cdC71fB720908340C03F9Bc03EC/info.json new file mode 100644 index 00000000..3720fca3 --- /dev/null +++ b/blockchains/ethereum/assets/0x7420B4b9a0110cdC71fB720908340C03F9Bc03EC/info.json @@ -0,0 +1,11 @@ +{ + "name": "JasmyCoin", + "website": "https://www.jasmy.co.jp/en.html", + "description": "JasmyCoin is based on the ERC 20 standard. The token can also be used by an unspecified number of individuals and businesses to transfer tokens using digital devices as proof of value exchange or payment for services. By not limiting its usability, the token can have a wide range of purposes.", + "explorer": "https://etherscan.io/token/0x7420B4b9a0110cdC71fB720908340C03F9Bc03EC", + "type": "ERC20", + "symbol": "JASMY", + "decimals": 18, + "status": "active", + "id": "0x7420B4b9a0110cdC71fB720908340C03F9Bc03EC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7420B4b9a0110cdC71fB720908340C03F9Bc03EC/logo.png b/blockchains/ethereum/assets/0x7420B4b9a0110cdC71fB720908340C03F9Bc03EC/logo.png new file mode 100644 index 00000000..16144dfa Binary files /dev/null and b/blockchains/ethereum/assets/0x7420B4b9a0110cdC71fB720908340C03F9Bc03EC/logo.png differ diff --git a/blockchains/ethereum/assets/0x742134547B314Adbf197aE10d53EFceBfc6ff1E8/info.json b/blockchains/ethereum/assets/0x742134547B314Adbf197aE10d53EFceBfc6ff1E8/info.json new file mode 100644 index 00000000..4ef8961c --- /dev/null +++ b/blockchains/ethereum/assets/0x742134547B314Adbf197aE10d53EFceBfc6ff1E8/info.json @@ -0,0 +1,11 @@ +{ + "name": "IChain", + "symbol": "ISC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x742134547B314Adbf197aE10d53EFceBfc6ff1E8", + "status": "abandoned", + "id": "0x742134547B314Adbf197aE10d53EFceBfc6ff1E8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x742134547B314Adbf197aE10d53EFceBfc6ff1E8/logo.png b/blockchains/ethereum/assets/0x742134547B314Adbf197aE10d53EFceBfc6ff1E8/logo.png new file mode 100644 index 00000000..135d308f Binary files /dev/null and b/blockchains/ethereum/assets/0x742134547B314Adbf197aE10d53EFceBfc6ff1E8/logo.png differ diff --git a/blockchains/ethereum/assets/0x74232704659ef37c08995e386A2E26cc27a8d7B1/info.json b/blockchains/ethereum/assets/0x74232704659ef37c08995e386A2E26cc27a8d7B1/info.json new file mode 100644 index 00000000..49795155 --- /dev/null +++ b/blockchains/ethereum/assets/0x74232704659ef37c08995e386A2E26cc27a8d7B1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Strike Finance", + "symbol": "STRK", + "type": "ERC20", + "decimals": 18, + "description": "Strike Finance Governance Token", + "explorer": "https://etherscan.io/token/0x74232704659ef37c08995e386A2E26cc27a8d7B1", + "status": "active", + "id": "0x74232704659ef37c08995e386A2E26cc27a8d7B1", + "website": "https://strike.org" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x74232704659ef37c08995e386A2E26cc27a8d7B1/logo.png b/blockchains/ethereum/assets/0x74232704659ef37c08995e386A2E26cc27a8d7B1/logo.png new file mode 100644 index 00000000..1f511540 Binary files /dev/null and b/blockchains/ethereum/assets/0x74232704659ef37c08995e386A2E26cc27a8d7B1/logo.png differ diff --git a/blockchains/ethereum/assets/0x74233bbf79A05409e367b10f9FCEF888cfFc9e59/info.json b/blockchains/ethereum/assets/0x74233bbf79A05409e367b10f9FCEF888cfFc9e59/info.json new file mode 100644 index 00000000..673bd957 --- /dev/null +++ b/blockchains/ethereum/assets/0x74233bbf79A05409e367b10f9FCEF888cfFc9e59/info.json @@ -0,0 +1,11 @@ +{ + "name": "GSDToken", + "symbol": "GSD", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x74233bbf79A05409e367b10f9FCEF888cfFc9e59", + "status": "abandoned", + "id": "0x74233bbf79A05409e367b10f9FCEF888cfFc9e59" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x74233bbf79A05409e367b10f9FCEF888cfFc9e59/logo.png b/blockchains/ethereum/assets/0x74233bbf79A05409e367b10f9FCEF888cfFc9e59/logo.png new file mode 100644 index 00000000..6572fa7d Binary files /dev/null and b/blockchains/ethereum/assets/0x74233bbf79A05409e367b10f9FCEF888cfFc9e59/logo.png differ diff --git a/blockchains/ethereum/assets/0x743E2916227E10882476da16487E6CF3030Df629/info.json b/blockchains/ethereum/assets/0x743E2916227E10882476da16487E6CF3030Df629/info.json new file mode 100644 index 00000000..71a87d63 --- /dev/null +++ b/blockchains/ethereum/assets/0x743E2916227E10882476da16487E6CF3030Df629/info.json @@ -0,0 +1,11 @@ +{ + "name": "MasonCoin", + "symbol": "MSNC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x743E2916227E10882476da16487E6CF3030Df629", + "status": "abandoned", + "id": "0x743E2916227E10882476da16487E6CF3030Df629" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x743E2916227E10882476da16487E6CF3030Df629/logo.png b/blockchains/ethereum/assets/0x743E2916227E10882476da16487E6CF3030Df629/logo.png new file mode 100755 index 00000000..2568a6e0 Binary files /dev/null and b/blockchains/ethereum/assets/0x743E2916227E10882476da16487E6CF3030Df629/logo.png differ diff --git a/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/info.json b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/info.json new file mode 100644 index 00000000..d5ed7ca9 --- /dev/null +++ b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/info.json @@ -0,0 +1,25 @@ +{ + "name": "Maverick Token", + "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 00000000..f21e40be Binary files /dev/null and b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/logo.png differ diff --git a/blockchains/ethereum/assets/0x744c9c36D1Cc3268a4b9b2e28c60B1752C85E97d/info.json b/blockchains/ethereum/assets/0x744c9c36D1Cc3268a4b9b2e28c60B1752C85E97d/info.json new file mode 100644 index 00000000..270a99e3 --- /dev/null +++ b/blockchains/ethereum/assets/0x744c9c36D1Cc3268a4b9b2e28c60B1752C85E97d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alluva", + "symbol": "ALV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x744c9c36D1Cc3268a4b9b2e28c60B1752C85E97d", + "status": "abandoned", + "id": "0x744c9c36D1Cc3268a4b9b2e28c60B1752C85E97d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x744c9c36D1Cc3268a4b9b2e28c60B1752C85E97d/logo.png b/blockchains/ethereum/assets/0x744c9c36D1Cc3268a4b9b2e28c60B1752C85E97d/logo.png new file mode 100644 index 00000000..6b9a1ece Binary files /dev/null and b/blockchains/ethereum/assets/0x744c9c36D1Cc3268a4b9b2e28c60B1752C85E97d/logo.png differ diff --git a/blockchains/ethereum/assets/0x744d70FDBE2Ba4CF95131626614a1763DF805B9E/info.json b/blockchains/ethereum/assets/0x744d70FDBE2Ba4CF95131626614a1763DF805B9E/info.json new file mode 100644 index 00000000..f28fc05f --- /dev/null +++ b/blockchains/ethereum/assets/0x744d70FDBE2Ba4CF95131626614a1763DF805B9E/info.json @@ -0,0 +1,37 @@ +{ + "name": "Status", + "website": "http://status.im", + "description": "Status (SNT) is an open source messaging platform and mobile interface built to interact with applications that run on the Ethereum network. ", + "explorer": "https://etherscan.io/token/0x744d70FDBE2Ba4CF95131626614a1763DF805B9E", + "type": "ERC20", + "symbol": "SNT", + "decimals": 18, + "status": "active", + "id": "0x744d70FDBE2Ba4CF95131626614a1763DF805B9E", + "links": [ + { + "name": "github", + "url": "https://github.com/status-im" + }, + { + "name": "x", + "url": "https://x.com/ethstatus" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/statusim/" + }, + { + "name": "facebook", + "url": "https://facebook.com/ethstatus" + }, + { + "name": "whitepaper", + "url": "https://status.im/whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/status/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x744d70FDBE2Ba4CF95131626614a1763DF805B9E/logo.png b/blockchains/ethereum/assets/0x744d70FDBE2Ba4CF95131626614a1763DF805B9E/logo.png new file mode 100644 index 00000000..959655c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x744d70FDBE2Ba4CF95131626614a1763DF805B9E/logo.png differ diff --git a/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/info.json b/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/info.json new file mode 100644 index 00000000..8738e15f --- /dev/null +++ b/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/info.json @@ -0,0 +1,30 @@ +{ + "name": "MahaDAO", + "website": "https://mahadao.com/", + "description": "MahaDAO introduces the world's first valuecoin ARTH, a new kind of currency that remains stable short term, but appreciates long-term", + "explorer": "https://etherscan.io/token/0x745407c86DF8DB893011912d3aB28e68B62E49B0", + "type": "ERC20", + "symbol": "MAHA", + "decimals": 18, + "status": "active", + "id": "0x745407c86DF8DB893011912d3aB28e68B62E49B0", + "links": [ + { + "name": "x", + "url": "https://x.com/TheMahaDAO" + }, + { + "name": "telegram", + "url": "https://t.me/mahadao" + }, + { + "name": "medium", + "url": "https://medium.com/mahadao" + } + ], + "tags": [ + "staking", + "governance", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/logo.png b/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/logo.png new file mode 100644 index 00000000..5193b525 Binary files /dev/null and b/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/logo.png differ diff --git a/blockchains/ethereum/assets/0x7461C43bb1E96863233D72A09191008ee9217Ee8/info.json b/blockchains/ethereum/assets/0x7461C43bb1E96863233D72A09191008ee9217Ee8/info.json new file mode 100644 index 00000000..741bfdc1 --- /dev/null +++ b/blockchains/ethereum/assets/0x7461C43bb1E96863233D72A09191008ee9217Ee8/info.json @@ -0,0 +1,11 @@ +{ + "name": "DGN", + "website": "https://degenerateplatform.com/", + "description": "Degenerate Platform is developing a marketplace for Sports Betting. Our token is used as a form of payment on sportsbooks and casinos.", + "explorer": "https://etherscan.io/token/0x7461C43bb1E96863233D72A09191008ee9217Ee8", + "type": "ERC20", + "symbol": "DGN", + "decimals": 18, + "status": "active", + "id": "0x7461C43bb1E96863233D72A09191008ee9217Ee8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7461C43bb1E96863233D72A09191008ee9217Ee8/logo.png b/blockchains/ethereum/assets/0x7461C43bb1E96863233D72A09191008ee9217Ee8/logo.png new file mode 100644 index 00000000..43579f39 Binary files /dev/null and b/blockchains/ethereum/assets/0x7461C43bb1E96863233D72A09191008ee9217Ee8/logo.png differ diff --git a/blockchains/ethereum/assets/0x74658fB5f7fF3Bc7d70f7F792d53fd74f89dC055/info.json b/blockchains/ethereum/assets/0x74658fB5f7fF3Bc7d70f7F792d53fd74f89dC055/info.json new file mode 100644 index 00000000..8082f8b6 --- /dev/null +++ b/blockchains/ethereum/assets/0x74658fB5f7fF3Bc7d70f7F792d53fd74f89dC055/info.json @@ -0,0 +1,11 @@ +{ + "name": "MYTHIC", + "symbol": "MTCX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x74658fB5f7fF3Bc7d70f7F792d53fd74f89dC055", + "status": "abandoned", + "id": "0x74658fB5f7fF3Bc7d70f7F792d53fd74f89dC055" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x74658fB5f7fF3Bc7d70f7F792d53fd74f89dC055/logo.png b/blockchains/ethereum/assets/0x74658fB5f7fF3Bc7d70f7F792d53fd74f89dC055/logo.png new file mode 100644 index 00000000..910d0b48 Binary files /dev/null and b/blockchains/ethereum/assets/0x74658fB5f7fF3Bc7d70f7F792d53fd74f89dC055/logo.png differ diff --git a/blockchains/ethereum/assets/0x746DdA2ea243400D5a63e0700F190aB79f06489e/info.json b/blockchains/ethereum/assets/0x746DdA2ea243400D5a63e0700F190aB79f06489e/info.json new file mode 100644 index 00000000..6cc52f20 --- /dev/null +++ b/blockchains/ethereum/assets/0x746DdA2ea243400D5a63e0700F190aB79f06489e/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOSAGORA", + "website": "https://bosagora.io", + "description": "BOSAGORA aims to establish a decentralized, censorship-resistant blockchain platform where stakers (part of the congress) can decide on what projects to support through a democratic decision-making process.", + "explorer": "https://etherscan.io/token/0x746DdA2ea243400D5a63e0700F190aB79f06489e", + "type": "ERC20", + "symbol": "BOA", + "decimals": 7, + "status": "active", + "id": "0x746DdA2ea243400D5a63e0700F190aB79f06489e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x746DdA2ea243400D5a63e0700F190aB79f06489e/logo.png b/blockchains/ethereum/assets/0x746DdA2ea243400D5a63e0700F190aB79f06489e/logo.png new file mode 100644 index 00000000..3c4f00a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x746DdA2ea243400D5a63e0700F190aB79f06489e/logo.png differ diff --git a/blockchains/ethereum/assets/0x748e0216C9C0ccf215DCd1E848d461E6Ce86a5f0/info.json b/blockchains/ethereum/assets/0x748e0216C9C0ccf215DCd1E848d461E6Ce86a5f0/info.json new file mode 100644 index 00000000..8aa5d69a --- /dev/null +++ b/blockchains/ethereum/assets/0x748e0216C9C0ccf215DCd1E848d461E6Ce86a5f0/info.json @@ -0,0 +1,11 @@ +{ + "name": "ExchangeGoodsChain", + "symbol": "EGC+", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x748e0216C9C0ccf215DCd1E848d461E6Ce86a5f0", + "status": "abandoned", + "id": "0x748e0216C9C0ccf215DCd1E848d461E6Ce86a5f0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x748e0216C9C0ccf215DCd1E848d461E6Ce86a5f0/logo.png b/blockchains/ethereum/assets/0x748e0216C9C0ccf215DCd1E848d461E6Ce86a5f0/logo.png new file mode 100644 index 00000000..53f21dce Binary files /dev/null and b/blockchains/ethereum/assets/0x748e0216C9C0ccf215DCd1E848d461E6Ce86a5f0/logo.png differ diff --git a/blockchains/ethereum/assets/0x749f35Ff65932E68267dd82F6CD85eeA735d700E/info.json b/blockchains/ethereum/assets/0x749f35Ff65932E68267dd82F6CD85eeA735d700E/info.json new file mode 100644 index 00000000..2f985e29 --- /dev/null +++ b/blockchains/ethereum/assets/0x749f35Ff65932E68267dd82F6CD85eeA735d700E/info.json @@ -0,0 +1,11 @@ +{ + "name": "CyClean Token", + "symbol": "CCL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x749f35Ff65932E68267dd82F6CD85eeA735d700E", + "status": "abandoned", + "id": "0x749f35Ff65932E68267dd82F6CD85eeA735d700E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x749f35Ff65932E68267dd82F6CD85eeA735d700E/logo.png b/blockchains/ethereum/assets/0x749f35Ff65932E68267dd82F6CD85eeA735d700E/logo.png new file mode 100644 index 00000000..46fdaf43 Binary files /dev/null and b/blockchains/ethereum/assets/0x749f35Ff65932E68267dd82F6CD85eeA735d700E/logo.png differ diff --git a/blockchains/ethereum/assets/0x74C8f41f57948Bfd8aa0D48C882d69d12d1Cc579/info.json b/blockchains/ethereum/assets/0x74C8f41f57948Bfd8aa0D48C882d69d12d1Cc579/info.json new file mode 100644 index 00000000..4d9a914a --- /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 00000000..2ce033b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x74C8f41f57948Bfd8aa0D48C882d69d12d1Cc579/logo.png differ diff --git a/blockchains/ethereum/assets/0x74CEDa77281b339142A36817Fa5F9E29412bAb85/info.json b/blockchains/ethereum/assets/0x74CEDa77281b339142A36817Fa5F9E29412bAb85/info.json new file mode 100644 index 00000000..e9785cdc --- /dev/null +++ b/blockchains/ethereum/assets/0x74CEDa77281b339142A36817Fa5F9E29412bAb85/info.json @@ -0,0 +1,11 @@ +{ + "name": "EROSCOIN", + "symbol": "ERO", + "type": "ERC20", + "decimals": 8, + "description": "Eroscoin (ERO) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://eroscoin.org", + "explorer": "https://etherscan.io/token/0x74CEDa77281b339142A36817Fa5F9E29412bAb85", + "status": "active", + "id": "0x74CEDa77281b339142A36817Fa5F9E29412bAb85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x74CEDa77281b339142A36817Fa5F9E29412bAb85/logo.png b/blockchains/ethereum/assets/0x74CEDa77281b339142A36817Fa5F9E29412bAb85/logo.png new file mode 100644 index 00000000..209e6adb Binary files /dev/null and b/blockchains/ethereum/assets/0x74CEDa77281b339142A36817Fa5F9E29412bAb85/logo.png differ diff --git a/blockchains/ethereum/assets/0x74F9595874b595c7A5af9cf78AC051C2E7387173/info.json b/blockchains/ethereum/assets/0x74F9595874b595c7A5af9cf78AC051C2E7387173/info.json new file mode 100644 index 00000000..0f510ee4 --- /dev/null +++ b/blockchains/ethereum/assets/0x74F9595874b595c7A5af9cf78AC051C2E7387173/info.json @@ -0,0 +1,11 @@ +{ + "name": "PROOF", + "website": "https://proofcoin.online", + "description": "Long-term venture and business investments with unique marketing system.", + "explorer": "https://etherscan.io/token/0x74F9595874b595c7A5af9cf78AC051C2E7387173", + "type": "ERC20", + "symbol": "PRF", + "decimals": 6, + "status": "active", + "id": "0x74F9595874b595c7A5af9cf78AC051C2E7387173" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x74F9595874b595c7A5af9cf78AC051C2E7387173/logo.png b/blockchains/ethereum/assets/0x74F9595874b595c7A5af9cf78AC051C2E7387173/logo.png new file mode 100644 index 00000000..e59be4be Binary files /dev/null and b/blockchains/ethereum/assets/0x74F9595874b595c7A5af9cf78AC051C2E7387173/logo.png differ diff --git a/blockchains/ethereum/assets/0x74FD51a98a4A1ECBeF8Cc43be801cce630E260Bd/info.json b/blockchains/ethereum/assets/0x74FD51a98a4A1ECBeF8Cc43be801cce630E260Bd/info.json new file mode 100644 index 00000000..a4f1cc59 --- /dev/null +++ b/blockchains/ethereum/assets/0x74FD51a98a4A1ECBeF8Cc43be801cce630E260Bd/info.json @@ -0,0 +1,11 @@ +{ + "name": "SiaCashCoin", + "symbol": "SCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.siacashcoin.com/", + "explorer": "https://etherscan.io/token/0x74FD51a98a4A1ECBeF8Cc43be801cce630E260Bd", + "status": "abandoned", + "id": "0x74FD51a98a4A1ECBeF8Cc43be801cce630E260Bd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x74FD51a98a4A1ECBeF8Cc43be801cce630E260Bd/logo.png b/blockchains/ethereum/assets/0x74FD51a98a4A1ECBeF8Cc43be801cce630E260Bd/logo.png new file mode 100644 index 00000000..efa55361 Binary files /dev/null and b/blockchains/ethereum/assets/0x74FD51a98a4A1ECBeF8Cc43be801cce630E260Bd/logo.png differ diff --git a/blockchains/ethereum/assets/0x74a03d741226f738098C35da8188E57acA50d146/info.json b/blockchains/ethereum/assets/0x74a03d741226f738098C35da8188E57acA50d146/info.json new file mode 100644 index 00000000..e134b1a5 --- /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 00000000..ab951412 Binary files /dev/null and b/blockchains/ethereum/assets/0x74a03d741226f738098C35da8188E57acA50d146/logo.png differ diff --git a/blockchains/ethereum/assets/0x74cF330c3f6017A1d346106515623180A6705Af2/info.json b/blockchains/ethereum/assets/0x74cF330c3f6017A1d346106515623180A6705Af2/info.json new file mode 100644 index 00000000..05fff1bd --- /dev/null +++ b/blockchains/ethereum/assets/0x74cF330c3f6017A1d346106515623180A6705Af2/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-11/30M41", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x74cF330c3f6017A1d346106515623180A6705Af2", + "status": "abandoned", + "id": "0x74cF330c3f6017A1d346106515623180A6705Af2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x74cF330c3f6017A1d346106515623180A6705Af2/logo.png b/blockchains/ethereum/assets/0x74cF330c3f6017A1d346106515623180A6705Af2/logo.png new file mode 100644 index 00000000..879e7f0f Binary files /dev/null and b/blockchains/ethereum/assets/0x74cF330c3f6017A1d346106515623180A6705Af2/logo.png differ diff --git a/blockchains/ethereum/assets/0x74cc9987BD51dC5481c467220B928BBCF8Df2c50/info.json b/blockchains/ethereum/assets/0x74cc9987BD51dC5481c467220B928BBCF8Df2c50/info.json new file mode 100644 index 00000000..96561d1e --- /dev/null +++ b/blockchains/ethereum/assets/0x74cc9987BD51dC5481c467220B928BBCF8Df2c50/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R863429", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x74cc9987BD51dC5481c467220B928BBCF8Df2c50", + "status": "abandoned", + "id": "0x74cc9987BD51dC5481c467220B928BBCF8Df2c50" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x74cc9987BD51dC5481c467220B928BBCF8Df2c50/logo.png b/blockchains/ethereum/assets/0x74cc9987BD51dC5481c467220B928BBCF8Df2c50/logo.png new file mode 100644 index 00000000..0128840d Binary files /dev/null and b/blockchains/ethereum/assets/0x74cc9987BD51dC5481c467220B928BBCF8Df2c50/logo.png differ diff --git a/blockchains/ethereum/assets/0x74faaB6986560fD1140508e4266D8a7b87274Ffd/info.json b/blockchains/ethereum/assets/0x74faaB6986560fD1140508e4266D8a7b87274Ffd/info.json new file mode 100644 index 00000000..d8bbf824 --- /dev/null +++ b/blockchains/ethereum/assets/0x74faaB6986560fD1140508e4266D8a7b87274Ffd/info.json @@ -0,0 +1,11 @@ +{ + "name": "HyperDao", + "symbol": "HDAO", + "type": "ERC20", + "decimals": 18, + "description": "Decentralised Financial Services Ecosystem.", + "website": "https://hyperdao.com", + "explorer": "https://etherscan.io/token/0x74faaB6986560fD1140508e4266D8a7b87274Ffd", + "status": "active", + "id": "0x74faaB6986560fD1140508e4266D8a7b87274Ffd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x74faaB6986560fD1140508e4266D8a7b87274Ffd/logo.png b/blockchains/ethereum/assets/0x74faaB6986560fD1140508e4266D8a7b87274Ffd/logo.png new file mode 100644 index 00000000..4e963d59 Binary files /dev/null and b/blockchains/ethereum/assets/0x74faaB6986560fD1140508e4266D8a7b87274Ffd/logo.png differ diff --git a/blockchains/ethereum/assets/0x75231F58b43240C9718Dd58B4967c5114342a86c/info.json b/blockchains/ethereum/assets/0x75231F58b43240C9718Dd58B4967c5114342a86c/info.json new file mode 100644 index 00000000..8d691335 --- /dev/null +++ b/blockchains/ethereum/assets/0x75231F58b43240C9718Dd58B4967c5114342a86c/info.json @@ -0,0 +1,33 @@ +{ + "name": "OKB", + "website": "https://okex.com", + "description": "OKB is a global utility token issued by OK Blockchain foundation.", + "explorer": "https://etherscan.io/token/0x75231F58b43240C9718Dd58B4967c5114342a86c", + "type": "ERC20", + "symbol": "OKB", + "decimals": 18, + "status": "active", + "id": "0x75231F58b43240C9718Dd58B4967c5114342a86c", + "links": [ + { + "name": "blog", + "url": "https://medium.com/okex-blog" + }, + { + "name": "x", + "url": "https://x.com/okex_" + }, + { + "name": "facebook", + "url": "https://facebook.com/okexofficial" + }, + { + "name": "telegram", + "url": "https://t.me/okexofficial_en" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/okb/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x75231F58b43240C9718Dd58B4967c5114342a86c/logo.png b/blockchains/ethereum/assets/0x75231F58b43240C9718Dd58B4967c5114342a86c/logo.png new file mode 100644 index 00000000..eaaa88f4 Binary files /dev/null and b/blockchains/ethereum/assets/0x75231F58b43240C9718Dd58B4967c5114342a86c/logo.png differ diff --git a/blockchains/ethereum/assets/0x7528E3040376EdD5DB8263Db2F5bd1beD91467FB/info.json b/blockchains/ethereum/assets/0x7528E3040376EdD5DB8263Db2F5bd1beD91467FB/info.json new file mode 100644 index 00000000..06fd1336 --- /dev/null +++ b/blockchains/ethereum/assets/0x7528E3040376EdD5DB8263Db2F5bd1beD91467FB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Simmitri", + "symbol": "SIM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://token.simmitri.com/", + "explorer": "https://etherscan.io/token/0x7528E3040376EdD5DB8263Db2F5bd1beD91467FB", + "status": "abandoned", + "id": "0x7528E3040376EdD5DB8263Db2F5bd1beD91467FB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7528E3040376EdD5DB8263Db2F5bd1beD91467FB/logo.png b/blockchains/ethereum/assets/0x7528E3040376EdD5DB8263Db2F5bd1beD91467FB/logo.png new file mode 100644 index 00000000..404b05fb Binary files /dev/null and b/blockchains/ethereum/assets/0x7528E3040376EdD5DB8263Db2F5bd1beD91467FB/logo.png differ diff --git a/blockchains/ethereum/assets/0x752FF65b884b9C260D212C804E0b7ACEea012473/info.json b/blockchains/ethereum/assets/0x752FF65b884b9C260D212C804E0b7ACEea012473/info.json new file mode 100644 index 00000000..1299a038 --- /dev/null +++ b/blockchains/ethereum/assets/0x752FF65b884b9C260D212C804E0b7ACEea012473/info.json @@ -0,0 +1,11 @@ +{ + "name": "SnapCoin", + "symbol": "SNPC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://earneo.io/", + "explorer": "https://etherscan.io/token/0x752FF65b884b9C260D212C804E0b7ACEea012473", + "status": "abandoned", + "id": "0x752FF65b884b9C260D212C804E0b7ACEea012473" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x752FF65b884b9C260D212C804E0b7ACEea012473/logo.png b/blockchains/ethereum/assets/0x752FF65b884b9C260D212C804E0b7ACEea012473/logo.png new file mode 100644 index 00000000..b842408e Binary files /dev/null and b/blockchains/ethereum/assets/0x752FF65b884b9C260D212C804E0b7ACEea012473/logo.png differ diff --git a/blockchains/ethereum/assets/0x752cBf685f75621A1330951B628059Ec2130C609/info.json b/blockchains/ethereum/assets/0x752cBf685f75621A1330951B628059Ec2130C609/info.json new file mode 100644 index 00000000..b54b228a --- /dev/null +++ b/blockchains/ethereum/assets/0x752cBf685f75621A1330951B628059Ec2130C609/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 172-CN05", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x752cBf685f75621A1330951B628059Ec2130C609", + "status": "abandoned", + "id": "0x752cBf685f75621A1330951B628059Ec2130C609" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x752cBf685f75621A1330951B628059Ec2130C609/logo.png b/blockchains/ethereum/assets/0x752cBf685f75621A1330951B628059Ec2130C609/logo.png new file mode 100644 index 00000000..cb0d0846 Binary files /dev/null and b/blockchains/ethereum/assets/0x752cBf685f75621A1330951B628059Ec2130C609/logo.png differ diff --git a/blockchains/ethereum/assets/0x752fd71994776Bde43C91e943F8612517F242432/info.json b/blockchains/ethereum/assets/0x752fd71994776Bde43C91e943F8612517F242432/info.json new file mode 100644 index 00000000..17ce7b83 --- /dev/null +++ b/blockchains/ethereum/assets/0x752fd71994776Bde43C91e943F8612517F242432/info.json @@ -0,0 +1,11 @@ +{ + "name": "BDAM Coin", + "symbol": "BDAM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x752fd71994776Bde43C91e943F8612517F242432", + "status": "abandoned", + "id": "0x752fd71994776Bde43C91e943F8612517F242432" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x752fd71994776Bde43C91e943F8612517F242432/logo.png b/blockchains/ethereum/assets/0x752fd71994776Bde43C91e943F8612517F242432/logo.png new file mode 100644 index 00000000..5fc13a01 Binary files /dev/null and b/blockchains/ethereum/assets/0x752fd71994776Bde43C91e943F8612517F242432/logo.png differ diff --git a/blockchains/ethereum/assets/0x755146E16214446DcB17b68Df0CFcCa4763eb77A/info.json b/blockchains/ethereum/assets/0x755146E16214446DcB17b68Df0CFcCa4763eb77A/info.json new file mode 100644 index 00000000..058c009b --- /dev/null +++ b/blockchains/ethereum/assets/0x755146E16214446DcB17b68Df0CFcCa4763eb77A/info.json @@ -0,0 +1,11 @@ +{ + "name": "SLOTH", + "symbol": "SLOTH", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x755146E16214446DcB17b68Df0CFcCa4763eb77A", + "status": "abandoned", + "id": "0x755146E16214446DcB17b68Df0CFcCa4763eb77A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x755146E16214446DcB17b68Df0CFcCa4763eb77A/logo.png b/blockchains/ethereum/assets/0x755146E16214446DcB17b68Df0CFcCa4763eb77A/logo.png new file mode 100644 index 00000000..740bc83b Binary files /dev/null and b/blockchains/ethereum/assets/0x755146E16214446DcB17b68Df0CFcCa4763eb77A/logo.png differ diff --git a/blockchains/ethereum/assets/0x75579D1C935Bc600c7b4e30c54EcF86e703E5d88/info.json b/blockchains/ethereum/assets/0x75579D1C935Bc600c7b4e30c54EcF86e703E5d88/info.json new file mode 100644 index 00000000..e1c02cc5 --- /dev/null +++ b/blockchains/ethereum/assets/0x75579D1C935Bc600c7b4e30c54EcF86e703E5d88/info.json @@ -0,0 +1,11 @@ +{ + "name": "YasudaCrypto 90", + "symbol": "YSD90", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x75579D1C935Bc600c7b4e30c54EcF86e703E5d88", + "status": "abandoned", + "id": "0x75579D1C935Bc600c7b4e30c54EcF86e703E5d88" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x75579D1C935Bc600c7b4e30c54EcF86e703E5d88/logo.png b/blockchains/ethereum/assets/0x75579D1C935Bc600c7b4e30c54EcF86e703E5d88/logo.png new file mode 100644 index 00000000..65a02b40 Binary files /dev/null and b/blockchains/ethereum/assets/0x75579D1C935Bc600c7b4e30c54EcF86e703E5d88/logo.png differ diff --git a/blockchains/ethereum/assets/0x755eb14D2fefF2939EB3026f5CaD9D03775b9fF4/info.json b/blockchains/ethereum/assets/0x755eb14D2fefF2939EB3026f5CaD9D03775b9fF4/info.json new file mode 100644 index 00000000..c4ceeec5 --- /dev/null +++ b/blockchains/ethereum/assets/0x755eb14D2fefF2939EB3026f5CaD9D03775b9fF4/info.json @@ -0,0 +1,11 @@ +{ + "name": "BunnyToken", + "symbol": "BUNNY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bunnytoken.com/", + "explorer": "https://etherscan.io/token/0x755eb14D2fefF2939EB3026f5CaD9D03775b9fF4", + "status": "abandoned", + "id": "0x755eb14D2fefF2939EB3026f5CaD9D03775b9fF4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x755eb14D2fefF2939EB3026f5CaD9D03775b9fF4/logo.png b/blockchains/ethereum/assets/0x755eb14D2fefF2939EB3026f5CaD9D03775b9fF4/logo.png new file mode 100644 index 00000000..d5c96ba8 Binary files /dev/null and b/blockchains/ethereum/assets/0x755eb14D2fefF2939EB3026f5CaD9D03775b9fF4/logo.png differ diff --git a/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json b/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json new file mode 100644 index 00000000..7b780e35 --- /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 00000000..ee3475dc Binary files /dev/null and b/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/logo.png differ diff --git a/blockchains/ethereum/assets/0x756bFb452cFE36A5Bc82e4F5f4261A89a18c242b/info.json b/blockchains/ethereum/assets/0x756bFb452cFE36A5Bc82e4F5f4261A89a18c242b/info.json new file mode 100644 index 00000000..0b576bcc --- /dev/null +++ b/blockchains/ethereum/assets/0x756bFb452cFE36A5Bc82e4F5f4261A89a18c242b/info.json @@ -0,0 +1,14 @@ +{ + "name": "Marinade staked SOL (Portal)", + "type": "ERC20", + "symbol": "mSOL", + "decimals": 9, + "description": "Cross Chain Portal Bridged Token", + "website": "https://marinade.finance/", + "explorer": "https://etherscan.io/token/0x756bFb452cFE36A5Bc82e4F5f4261A89a18c242b", + "status": "active", + "id": "0x756bFb452cFE36A5Bc82e4F5f4261A89a18c242b", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x756bFb452cFE36A5Bc82e4F5f4261A89a18c242b/logo.png b/blockchains/ethereum/assets/0x756bFb452cFE36A5Bc82e4F5f4261A89a18c242b/logo.png new file mode 100644 index 00000000..b6c01730 Binary files /dev/null and b/blockchains/ethereum/assets/0x756bFb452cFE36A5Bc82e4F5f4261A89a18c242b/logo.png differ diff --git a/blockchains/ethereum/assets/0x756eFAcB09fA797A21Dd62D942A5181a2Ec36f17/info.json b/blockchains/ethereum/assets/0x756eFAcB09fA797A21Dd62D942A5181a2Ec36f17/info.json new file mode 100644 index 00000000..6d723638 --- /dev/null +++ b/blockchains/ethereum/assets/0x756eFAcB09fA797A21Dd62D942A5181a2Ec36f17/info.json @@ -0,0 +1,11 @@ +{ + "name": "PhiCoinGold", + "symbol": "PhiG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x756eFAcB09fA797A21Dd62D942A5181a2Ec36f17", + "status": "abandoned", + "id": "0x756eFAcB09fA797A21Dd62D942A5181a2Ec36f17" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x756eFAcB09fA797A21Dd62D942A5181a2Ec36f17/logo.png b/blockchains/ethereum/assets/0x756eFAcB09fA797A21Dd62D942A5181a2Ec36f17/logo.png new file mode 100644 index 00000000..f7712e85 Binary files /dev/null and b/blockchains/ethereum/assets/0x756eFAcB09fA797A21Dd62D942A5181a2Ec36f17/logo.png differ diff --git a/blockchains/ethereum/assets/0x7571C4A38cCBd0fBE5206170b68C8BaF84F25dDF/info.json b/blockchains/ethereum/assets/0x7571C4A38cCBd0fBE5206170b68C8BaF84F25dDF/info.json new file mode 100644 index 00000000..b670af54 --- /dev/null +++ b/blockchains/ethereum/assets/0x7571C4A38cCBd0fBE5206170b68C8BaF84F25dDF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wizard", + "symbol": "WIZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7571C4A38cCBd0fBE5206170b68C8BaF84F25dDF", + "status": "abandoned", + "id": "0x7571C4A38cCBd0fBE5206170b68C8BaF84F25dDF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7571C4A38cCBd0fBE5206170b68C8BaF84F25dDF/logo.png b/blockchains/ethereum/assets/0x7571C4A38cCBd0fBE5206170b68C8BaF84F25dDF/logo.png new file mode 100644 index 00000000..9e41487e Binary files /dev/null and b/blockchains/ethereum/assets/0x7571C4A38cCBd0fBE5206170b68C8BaF84F25dDF/logo.png differ diff --git a/blockchains/ethereum/assets/0x75739d5944534115d7C54ee8C73F186D793BAE02/info.json b/blockchains/ethereum/assets/0x75739d5944534115d7C54ee8C73F186D793BAE02/info.json new file mode 100644 index 00000000..64945730 --- /dev/null +++ b/blockchains/ethereum/assets/0x75739d5944534115d7C54ee8C73F186D793BAE02/info.json @@ -0,0 +1,33 @@ +{ + "name": "Collective", + "website": "https://www.thecollectivegroup.org", + "description": "The Collective is an all-in-one platform built to incubate, manage and develop communities, and help assure liquidity for the best Crypto Projects.", + "explorer": "https://etherscan.io/token/0x75739d5944534115d7c54ee8c73f186d793bae02", + "symbol": "CO2", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0x75739d5944534115d7C54ee8C73F186D793BAE02", + "links": [ + { + "name": "x", + "url": "https://x.com/TheCollectiveGo" + }, + { + "name": "telegram", + "url": "https://t.me/TheCollectiveCommunity" + }, + { + "name": "facebook", + "url": "https://facebook.com/thecollectivego/" + }, + { + "name": "medium", + "url": "https://thecollectivego-02.medium.com/" + }, + { + "name": "whitepaper", + "url": "https://thecollectivego-02.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x75739d5944534115d7C54ee8C73F186D793BAE02/logo.png b/blockchains/ethereum/assets/0x75739d5944534115d7C54ee8C73F186D793BAE02/logo.png new file mode 100644 index 00000000..809340f8 Binary files /dev/null and b/blockchains/ethereum/assets/0x75739d5944534115d7C54ee8C73F186D793BAE02/logo.png differ diff --git a/blockchains/ethereum/assets/0x757ea444aE819413D68e6ccbD464e580d6E9f19F/info.json b/blockchains/ethereum/assets/0x757ea444aE819413D68e6ccbD464e580d6E9f19F/info.json new file mode 100644 index 00000000..0d2f052d --- /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 00000000..512f3f1e --- /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 00000000..283632c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x75846A2b2Eeee6575Ac775f9984be54fd1D08189/logo.png differ diff --git a/blockchains/ethereum/assets/0x7585F835ae2d522722d2684323a0ba83401f32f5/info.json b/blockchains/ethereum/assets/0x7585F835ae2d522722d2684323a0ba83401f32f5/info.json new file mode 100644 index 00000000..3a8d45eb --- /dev/null +++ b/blockchains/ethereum/assets/0x7585F835ae2d522722d2684323a0ba83401f32f5/info.json @@ -0,0 +1,11 @@ +{ + "name": "HelloGold Gold Backed Token", + "symbol": "GBT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7585F835ae2d522722d2684323a0ba83401f32f5", + "status": "abandoned", + "id": "0x7585F835ae2d522722d2684323a0ba83401f32f5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7585F835ae2d522722d2684323a0ba83401f32f5/logo.png b/blockchains/ethereum/assets/0x7585F835ae2d522722d2684323a0ba83401f32f5/logo.png new file mode 100644 index 00000000..699b64a8 Binary files /dev/null and b/blockchains/ethereum/assets/0x7585F835ae2d522722d2684323a0ba83401f32f5/logo.png differ diff --git a/blockchains/ethereum/assets/0x75A93C11dFF32A4312057714257758B113a0F512/info.json b/blockchains/ethereum/assets/0x75A93C11dFF32A4312057714257758B113a0F512/info.json new file mode 100644 index 00000000..dd0682a1 --- /dev/null +++ b/blockchains/ethereum/assets/0x75A93C11dFF32A4312057714257758B113a0F512/info.json @@ -0,0 +1,11 @@ +{ + "name": "OTFund", + "website": "https://otfund.io/", + "description": "OTFUND is the first open-end fund plaform integrates BLOCKCHAIN on DAPP GAME, DIGITAL LOTTERY, DIGITAL TRADING, GAME ONLINE, BLOCKCHAIN ACADEMY, E-COMMERCE SHARING ECONOMY which is officially launched in October.", + "explorer": "https://etherscan.io/token/0x75A93C11dFF32A4312057714257758B113a0F512", + "type": "ERC20", + "symbol": "OTF", + "decimals": 18, + "status": "active", + "id": "0x75A93C11dFF32A4312057714257758B113a0F512" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x75A93C11dFF32A4312057714257758B113a0F512/logo.png b/blockchains/ethereum/assets/0x75A93C11dFF32A4312057714257758B113a0F512/logo.png new file mode 100644 index 00000000..d55fb575 Binary files /dev/null and b/blockchains/ethereum/assets/0x75A93C11dFF32A4312057714257758B113a0F512/logo.png differ diff --git a/blockchains/ethereum/assets/0x75D12E4F91Df721faFCae4c6cD1d5280381370AC/info.json b/blockchains/ethereum/assets/0x75D12E4F91Df721faFCae4c6cD1d5280381370AC/info.json new file mode 100644 index 00000000..890df156 --- /dev/null +++ b/blockchains/ethereum/assets/0x75D12E4F91Df721faFCae4c6cD1d5280381370AC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Myōbu", + "type": "ERC20", + "symbol": "MYOBU", + "decimals": 9, + "website": "https://myobu.io", + "description": "Myōbu was designed to reward holders and discourage dumping. Learning from the mistakes of past so-called \"anti-whale\" tokens with fixed transaction and wallet limits that become useless as the number of pooled tokens decrease over time, we have introduced a dynamic sell limit that's based on price impact.", + "explorer": "https://etherscan.io/token/0x75d12e4f91df721fafcae4c6cd1d5280381370ac", + "status": "active", + "id": "0x75D12E4F91Df721faFCae4c6cD1d5280381370AC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x75D12E4F91Df721faFCae4c6cD1d5280381370AC/logo.png b/blockchains/ethereum/assets/0x75D12E4F91Df721faFCae4c6cD1d5280381370AC/logo.png new file mode 100644 index 00000000..85874829 Binary files /dev/null and b/blockchains/ethereum/assets/0x75D12E4F91Df721faFCae4c6cD1d5280381370AC/logo.png differ diff --git a/blockchains/ethereum/assets/0x75Dfa37dAC9D323f1d1E1249F248Bed52a6FaBA9/info.json b/blockchains/ethereum/assets/0x75Dfa37dAC9D323f1d1E1249F248Bed52a6FaBA9/info.json new file mode 100644 index 00000000..03a2fc77 --- /dev/null +++ b/blockchains/ethereum/assets/0x75Dfa37dAC9D323f1d1E1249F248Bed52a6FaBA9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cabo Token", + "symbol": "CTN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x75Dfa37dAC9D323f1d1E1249F248Bed52a6FaBA9", + "status": "abandoned", + "id": "0x75Dfa37dAC9D323f1d1E1249F248Bed52a6FaBA9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x75Dfa37dAC9D323f1d1E1249F248Bed52a6FaBA9/logo.png b/blockchains/ethereum/assets/0x75Dfa37dAC9D323f1d1E1249F248Bed52a6FaBA9/logo.png new file mode 100644 index 00000000..8bbf1265 Binary files /dev/null and b/blockchains/ethereum/assets/0x75Dfa37dAC9D323f1d1E1249F248Bed52a6FaBA9/logo.png differ diff --git a/blockchains/ethereum/assets/0x75FE5F25A39ac56083af564cFfA8F00c1b89011C/info.json b/blockchains/ethereum/assets/0x75FE5F25A39ac56083af564cFfA8F00c1b89011C/info.json new file mode 100644 index 00000000..0f2b3a6a --- /dev/null +++ b/blockchains/ethereum/assets/0x75FE5F25A39ac56083af564cFfA8F00c1b89011C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Piandex", + "symbol": "PIANDX", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x75FE5F25A39ac56083af564cFfA8F00c1b89011C", + "status": "abandoned", + "id": "0x75FE5F25A39ac56083af564cFfA8F00c1b89011C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x75FE5F25A39ac56083af564cFfA8F00c1b89011C/logo.png b/blockchains/ethereum/assets/0x75FE5F25A39ac56083af564cFfA8F00c1b89011C/logo.png new file mode 100644 index 00000000..bc44b570 Binary files /dev/null and b/blockchains/ethereum/assets/0x75FE5F25A39ac56083af564cFfA8F00c1b89011C/logo.png differ diff --git a/blockchains/ethereum/assets/0x75c5eE419331B6150879530D06f9Ba054755F1DA/info.json b/blockchains/ethereum/assets/0x75c5eE419331B6150879530D06f9Ba054755F1DA/info.json new file mode 100644 index 00000000..e5820b02 --- /dev/null +++ b/blockchains/ethereum/assets/0x75c5eE419331B6150879530D06f9Ba054755F1DA/info.json @@ -0,0 +1,11 @@ +{ + "name": "SalPay", + "symbol": "SAL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x75c5eE419331B6150879530D06f9Ba054755F1DA", + "status": "abandoned", + "id": "0x75c5eE419331B6150879530D06f9Ba054755F1DA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x75c5eE419331B6150879530D06f9Ba054755F1DA/logo.png b/blockchains/ethereum/assets/0x75c5eE419331B6150879530D06f9Ba054755F1DA/logo.png new file mode 100755 index 00000000..b19596bf Binary files /dev/null and b/blockchains/ethereum/assets/0x75c5eE419331B6150879530D06f9Ba054755F1DA/logo.png differ diff --git a/blockchains/ethereum/assets/0x761684e229f04ce8985b49e3BEB1CD994C776A21/info.json b/blockchains/ethereum/assets/0x761684e229f04ce8985b49e3BEB1CD994C776A21/info.json new file mode 100644 index 00000000..64040d26 --- /dev/null +++ b/blockchains/ethereum/assets/0x761684e229f04ce8985b49e3BEB1CD994C776A21/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pyrrhos", + "symbol": "PYR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x761684e229f04ce8985b49e3BEB1CD994C776A21", + "status": "abandoned", + "id": "0x761684e229f04ce8985b49e3BEB1CD994C776A21" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x761684e229f04ce8985b49e3BEB1CD994C776A21/logo.png b/blockchains/ethereum/assets/0x761684e229f04ce8985b49e3BEB1CD994C776A21/logo.png new file mode 100644 index 00000000..9e4b72f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x761684e229f04ce8985b49e3BEB1CD994C776A21/logo.png differ diff --git a/blockchains/ethereum/assets/0x761D38e5ddf6ccf6Cf7c55759d5210750B5D60F3/info.json b/blockchains/ethereum/assets/0x761D38e5ddf6ccf6Cf7c55759d5210750B5D60F3/info.json new file mode 100644 index 00000000..0fb0f841 --- /dev/null +++ b/blockchains/ethereum/assets/0x761D38e5ddf6ccf6Cf7c55759d5210750B5D60F3/info.json @@ -0,0 +1,11 @@ +{ + "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://etherscan.io/token/0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3", + "type": "ERC20", + "symbol": "ELON", + "decimals": 18, + "status": "active", + "id": "0x761D38e5ddf6ccf6Cf7c55759d5210750B5D60F3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x761D38e5ddf6ccf6Cf7c55759d5210750B5D60F3/logo.png b/blockchains/ethereum/assets/0x761D38e5ddf6ccf6Cf7c55759d5210750B5D60F3/logo.png new file mode 100644 index 00000000..d8c2bc23 Binary files /dev/null and b/blockchains/ethereum/assets/0x761D38e5ddf6ccf6Cf7c55759d5210750B5D60F3/logo.png differ diff --git a/blockchains/ethereum/assets/0x763186eB8d4856D536eD4478302971214FEbc6A9/info.json b/blockchains/ethereum/assets/0x763186eB8d4856D536eD4478302971214FEbc6A9/info.json new file mode 100644 index 00000000..22f3a926 --- /dev/null +++ b/blockchains/ethereum/assets/0x763186eB8d4856D536eD4478302971214FEbc6A9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Better Betting", + "symbol": "BETR", + "type": "ERC20", + "decimals": 18, + "description": "The smart escrow token.", + "website": "https://www.betterbetting.org", + "explorer": "https://etherscan.io/token/0x763186eB8d4856D536eD4478302971214FEbc6A9", + "status": "active", + "id": "0x763186eB8d4856D536eD4478302971214FEbc6A9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x763186eB8d4856D536eD4478302971214FEbc6A9/logo.png b/blockchains/ethereum/assets/0x763186eB8d4856D536eD4478302971214FEbc6A9/logo.png new file mode 100644 index 00000000..a6a63e26 Binary files /dev/null and b/blockchains/ethereum/assets/0x763186eB8d4856D536eD4478302971214FEbc6A9/logo.png differ diff --git a/blockchains/ethereum/assets/0x763A67bE94E2494DBFfdCC62CeE4ed8f761f6770/info.json b/blockchains/ethereum/assets/0x763A67bE94E2494DBFfdCC62CeE4ed8f761f6770/info.json new file mode 100644 index 00000000..cdfa0e43 --- /dev/null +++ b/blockchains/ethereum/assets/0x763A67bE94E2494DBFfdCC62CeE4ed8f761f6770/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitenny", + "symbol": "BTNY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x763A67bE94E2494DBFfdCC62CeE4ed8f761f6770", + "status": "abandoned", + "id": "0x763A67bE94E2494DBFfdCC62CeE4ed8f761f6770" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x763A67bE94E2494DBFfdCC62CeE4ed8f761f6770/logo.png b/blockchains/ethereum/assets/0x763A67bE94E2494DBFfdCC62CeE4ed8f761f6770/logo.png new file mode 100644 index 00000000..aa59fa10 Binary files /dev/null and b/blockchains/ethereum/assets/0x763A67bE94E2494DBFfdCC62CeE4ed8f761f6770/logo.png differ diff --git a/blockchains/ethereum/assets/0x763Fa6806e1acf68130D2D0f0df754C93cC546B2/info.json b/blockchains/ethereum/assets/0x763Fa6806e1acf68130D2D0f0df754C93cC546B2/info.json new file mode 100644 index 00000000..8272d8c8 --- /dev/null +++ b/blockchains/ethereum/assets/0x763Fa6806e1acf68130D2D0f0df754C93cC546B2/info.json @@ -0,0 +1,11 @@ +{ + "name": "LITION", + "symbol": "LIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.lition.io/", + "explorer": "https://etherscan.io/token/0x763Fa6806e1acf68130D2D0f0df754C93cC546B2", + "status": "abandoned", + "id": "0x763Fa6806e1acf68130D2D0f0df754C93cC546B2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x763Fa6806e1acf68130D2D0f0df754C93cC546B2/logo.png b/blockchains/ethereum/assets/0x763Fa6806e1acf68130D2D0f0df754C93cC546B2/logo.png new file mode 100644 index 00000000..c732ff06 Binary files /dev/null and b/blockchains/ethereum/assets/0x763Fa6806e1acf68130D2D0f0df754C93cC546B2/logo.png differ diff --git a/blockchains/ethereum/assets/0x7641b2Ca9DDD58adDf6e3381c1F994Aac5f1A32f/info.json b/blockchains/ethereum/assets/0x7641b2Ca9DDD58adDf6e3381c1F994Aac5f1A32f/info.json new file mode 100644 index 00000000..b592455c --- /dev/null +++ b/blockchains/ethereum/assets/0x7641b2Ca9DDD58adDf6e3381c1F994Aac5f1A32f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Purpose", + "symbol": "PRPS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7641b2Ca9DDD58adDf6e3381c1F994Aac5f1A32f", + "status": "abandoned", + "id": "0x7641b2Ca9DDD58adDf6e3381c1F994Aac5f1A32f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7641b2Ca9DDD58adDf6e3381c1F994Aac5f1A32f/logo.png b/blockchains/ethereum/assets/0x7641b2Ca9DDD58adDf6e3381c1F994Aac5f1A32f/logo.png new file mode 100755 index 00000000..6ef68dcf Binary files /dev/null and b/blockchains/ethereum/assets/0x7641b2Ca9DDD58adDf6e3381c1F994Aac5f1A32f/logo.png differ diff --git a/blockchains/ethereum/assets/0x7654915A1b82D6D2D0AFc37c52Af556eA8983c7E/info.json b/blockchains/ethereum/assets/0x7654915A1b82D6D2D0AFc37c52Af556eA8983c7E/info.json new file mode 100644 index 00000000..092983dc --- /dev/null +++ b/blockchains/ethereum/assets/0x7654915A1b82D6D2D0AFc37c52Af556eA8983c7E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Feed", + "symbol": "IFT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7654915A1b82D6D2D0AFc37c52Af556eA8983c7E", + "status": "abandoned", + "id": "0x7654915A1b82D6D2D0AFc37c52Af556eA8983c7E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7654915A1b82D6D2D0AFc37c52Af556eA8983c7E/logo.png b/blockchains/ethereum/assets/0x7654915A1b82D6D2D0AFc37c52Af556eA8983c7E/logo.png new file mode 100755 index 00000000..c5b7c73a Binary files /dev/null and b/blockchains/ethereum/assets/0x7654915A1b82D6D2D0AFc37c52Af556eA8983c7E/logo.png differ diff --git a/blockchains/ethereum/assets/0x7659CE147D0e714454073a5dd7003544234b6Aa0/info.json b/blockchains/ethereum/assets/0x7659CE147D0e714454073a5dd7003544234b6Aa0/info.json new file mode 100644 index 00000000..d282d672 --- /dev/null +++ b/blockchains/ethereum/assets/0x7659CE147D0e714454073a5dd7003544234b6Aa0/info.json @@ -0,0 +1,11 @@ +{ + "name": "XCAD Network", + "type": "ERC20", + "symbol": "XCAD", + "decimals": 18, + "website": "https://xcademytoken.com", + "description": "XCAD network is a tokenisation platform for content creators & their fans. Think CHZ fan tokens but for content creators", + "explorer": "https://etherscan.io/token/0x7659CE147D0e714454073a5dd7003544234b6Aa0", + "status": "active", + "id": "0x7659CE147D0e714454073a5dd7003544234b6Aa0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7659CE147D0e714454073a5dd7003544234b6Aa0/logo.png b/blockchains/ethereum/assets/0x7659CE147D0e714454073a5dd7003544234b6Aa0/logo.png new file mode 100644 index 00000000..c509ae64 Binary files /dev/null and b/blockchains/ethereum/assets/0x7659CE147D0e714454073a5dd7003544234b6Aa0/logo.png differ diff --git a/blockchains/ethereum/assets/0x765f0C16D1Ddc279295c1a7C24B0883F62d33F75/info.json b/blockchains/ethereum/assets/0x765f0C16D1Ddc279295c1a7C24B0883F62d33F75/info.json new file mode 100644 index 00000000..5bab6a29 --- /dev/null +++ b/blockchains/ethereum/assets/0x765f0C16D1Ddc279295c1a7C24B0883F62d33F75/info.json @@ -0,0 +1,11 @@ +{ + "name": "DaTa eXchange Token", + "symbol": "DTX", + "type": "ERC20", + "decimals": 18, + "description": "Databroker (DTX) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://databrokerdao.com", + "explorer": "https://etherscan.io/token/0x765f0C16D1Ddc279295c1a7C24B0883F62d33F75", + "status": "active", + "id": "0x765f0C16D1Ddc279295c1a7C24B0883F62d33F75" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x765f0C16D1Ddc279295c1a7C24B0883F62d33F75/logo.png b/blockchains/ethereum/assets/0x765f0C16D1Ddc279295c1a7C24B0883F62d33F75/logo.png new file mode 100755 index 00000000..ac10d7b2 Binary files /dev/null and b/blockchains/ethereum/assets/0x765f0C16D1Ddc279295c1a7C24B0883F62d33F75/logo.png differ diff --git a/blockchains/ethereum/assets/0x766E38D64EDdC4FD2369326E5Ea4Bf0b010c6A93/info.json b/blockchains/ethereum/assets/0x766E38D64EDdC4FD2369326E5Ea4Bf0b010c6A93/info.json new file mode 100644 index 00000000..586037f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x766E38D64EDdC4FD2369326E5Ea4Bf0b010c6A93/info.json @@ -0,0 +1,11 @@ +{ + "name": "Korean Won", + "symbol": "KRW", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x766E38D64EDdC4FD2369326E5Ea4Bf0b010c6A93", + "status": "abandoned", + "id": "0x766E38D64EDdC4FD2369326E5Ea4Bf0b010c6A93" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x766E38D64EDdC4FD2369326E5Ea4Bf0b010c6A93/logo.png b/blockchains/ethereum/assets/0x766E38D64EDdC4FD2369326E5Ea4Bf0b010c6A93/logo.png new file mode 100644 index 00000000..bea0b806 Binary files /dev/null and b/blockchains/ethereum/assets/0x766E38D64EDdC4FD2369326E5Ea4Bf0b010c6A93/logo.png differ diff --git a/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/info.json b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/info.json new file mode 100644 index 00000000..40a8e021 --- /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 00000000..3599f8fa 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 00000000..62422d6c --- /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 00000000..a49ae723 Binary files /dev/null and b/blockchains/ethereum/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/logo.png differ diff --git a/blockchains/ethereum/assets/0x7671904eed7f10808B664fc30BB8693FD7237abF/info.json b/blockchains/ethereum/assets/0x7671904eed7f10808B664fc30BB8693FD7237abF/info.json new file mode 100644 index 00000000..e3839c13 --- /dev/null +++ b/blockchains/ethereum/assets/0x7671904eed7f10808B664fc30BB8693FD7237abF/info.json @@ -0,0 +1,17 @@ +{ + "name": "Boolberry", + "website": "https://app.bbr.finance/", + "description": "New way of yield farming defi BITBERRY FINANCE", + "explorer": "https://etherscan.io/token/0x7671904eed7f10808b664fc30bb8693fd7237abf", + "type": "ERC20", + "symbol": "BBR", + "decimals": 18, + "status": "active", + "id": "0x7671904eed7f10808B664fc30BB8693FD7237abF", + "links": [ + { + "name": "github", + "url": "https://github.com/bbr-defi/bbr-contracts" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7671904eed7f10808B664fc30BB8693FD7237abF/logo.png b/blockchains/ethereum/assets/0x7671904eed7f10808B664fc30BB8693FD7237abF/logo.png new file mode 100644 index 00000000..a6aeb9e9 Binary files /dev/null and b/blockchains/ethereum/assets/0x7671904eed7f10808B664fc30BB8693FD7237abF/logo.png differ diff --git a/blockchains/ethereum/assets/0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E/info.json b/blockchains/ethereum/assets/0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E/info.json new file mode 100644 index 00000000..ce1610df --- /dev/null +++ b/blockchains/ethereum/assets/0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Illuvium", + "symbol": "ILV", + "type": "ERC20", + "decimals": 18, + "description": "Illuvium is a decentralized gaming studio that merges online gaming with cryptocurrency.", + "website": "https://illuvium.io", + "explorer": "https://etherscan.io/token/0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E", + "status": "active", + "id": "0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E/logo.png b/blockchains/ethereum/assets/0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E/logo.png new file mode 100644 index 00000000..eff90b69 Binary files /dev/null and b/blockchains/ethereum/assets/0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E/logo.png differ diff --git a/blockchains/ethereum/assets/0x767bA2915EC344015a7938E3eEDfeC2785195D05/info.json b/blockchains/ethereum/assets/0x767bA2915EC344015a7938E3eEDfeC2785195D05/info.json new file mode 100644 index 00000000..dc2a3f51 --- /dev/null +++ b/blockchains/ethereum/assets/0x767bA2915EC344015a7938E3eEDfeC2785195D05/info.json @@ -0,0 +1,11 @@ +{ + "name": "Realisto Token", + "symbol": "REA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x767bA2915EC344015a7938E3eEDfeC2785195D05", + "status": "abandoned", + "id": "0x767bA2915EC344015a7938E3eEDfeC2785195D05" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x767bA2915EC344015a7938E3eEDfeC2785195D05/logo.png b/blockchains/ethereum/assets/0x767bA2915EC344015a7938E3eEDfeC2785195D05/logo.png new file mode 100644 index 00000000..e93eab6f Binary files /dev/null and b/blockchains/ethereum/assets/0x767bA2915EC344015a7938E3eEDfeC2785195D05/logo.png differ diff --git a/blockchains/ethereum/assets/0x768386990688B293226B9f83465974003B5e40D7/info.json b/blockchains/ethereum/assets/0x768386990688B293226B9f83465974003B5e40D7/info.json new file mode 100644 index 00000000..84ccf7fa --- /dev/null +++ b/blockchains/ethereum/assets/0x768386990688B293226B9f83465974003B5e40D7/info.json @@ -0,0 +1,11 @@ +{ + "name": "NRVCOIN", + "symbol": "NRV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://nrvcoin.com/", + "explorer": "https://etherscan.io/token/0x768386990688B293226B9f83465974003B5e40D7", + "status": "abandoned", + "id": "0x768386990688B293226B9f83465974003B5e40D7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x768386990688B293226B9f83465974003B5e40D7/logo.png b/blockchains/ethereum/assets/0x768386990688B293226B9f83465974003B5e40D7/logo.png new file mode 100644 index 00000000..322a982a Binary files /dev/null and b/blockchains/ethereum/assets/0x768386990688B293226B9f83465974003B5e40D7/logo.png differ diff --git a/blockchains/ethereum/assets/0x76960Dccd5a1fe799F7c29bE9F19ceB4627aEb2f/info.json b/blockchains/ethereum/assets/0x76960Dccd5a1fe799F7c29bE9F19ceB4627aEb2f/info.json new file mode 100644 index 00000000..28a694d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x76960Dccd5a1fe799F7c29bE9F19ceB4627aEb2f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Red Community Token", + "symbol": "RED", + "type": "ERC20", + "decimals": 18, + "description": "The Red community is building the world's first fullstack and blockchain language.", + "website": "https://ico.red-lang.org", + "explorer": "https://etherscan.io/token/0x76960Dccd5a1fe799F7c29bE9F19ceB4627aEb2f", + "status": "active", + "id": "0x76960Dccd5a1fe799F7c29bE9F19ceB4627aEb2f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x76960Dccd5a1fe799F7c29bE9F19ceB4627aEb2f/logo.png b/blockchains/ethereum/assets/0x76960Dccd5a1fe799F7c29bE9F19ceB4627aEb2f/logo.png new file mode 100755 index 00000000..a5995ef1 Binary files /dev/null and b/blockchains/ethereum/assets/0x76960Dccd5a1fe799F7c29bE9F19ceB4627aEb2f/logo.png differ diff --git a/blockchains/ethereum/assets/0x76974C7B79dC8a6a109Fd71fd7cEb9E40eff5382/info.json b/blockchains/ethereum/assets/0x76974C7B79dC8a6a109Fd71fd7cEb9E40eff5382/info.json new file mode 100644 index 00000000..9e34ace3 --- /dev/null +++ b/blockchains/ethereum/assets/0x76974C7B79dC8a6a109Fd71fd7cEb9E40eff5382/info.json @@ -0,0 +1,11 @@ +{ + "name": "DOW", + "symbol": "dow", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.dowcoin.io", + "explorer": "https://etherscan.io/token/0x76974C7B79dC8a6a109Fd71fd7cEb9E40eff5382", + "status": "abandoned", + "id": "0x76974C7B79dC8a6a109Fd71fd7cEb9E40eff5382" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x76974C7B79dC8a6a109Fd71fd7cEb9E40eff5382/logo.png b/blockchains/ethereum/assets/0x76974C7B79dC8a6a109Fd71fd7cEb9E40eff5382/logo.png new file mode 100644 index 00000000..9aebf208 Binary files /dev/null and b/blockchains/ethereum/assets/0x76974C7B79dC8a6a109Fd71fd7cEb9E40eff5382/logo.png differ diff --git a/blockchains/ethereum/assets/0x7698211Cf413a2e5953e1c155bbDdCB033CC31e3/info.json b/blockchains/ethereum/assets/0x7698211Cf413a2e5953e1c155bbDdCB033CC31e3/info.json new file mode 100644 index 00000000..e47d79b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x7698211Cf413a2e5953e1c155bbDdCB033CC31e3/info.json @@ -0,0 +1,11 @@ +{ + "name": "NERV", + "symbol": "EVA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7698211Cf413a2e5953e1c155bbDdCB033CC31e3", + "status": "abandoned", + "id": "0x7698211Cf413a2e5953e1c155bbDdCB033CC31e3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7698211Cf413a2e5953e1c155bbDdCB033CC31e3/logo.png b/blockchains/ethereum/assets/0x7698211Cf413a2e5953e1c155bbDdCB033CC31e3/logo.png new file mode 100644 index 00000000..204a9b3e Binary files /dev/null and b/blockchains/ethereum/assets/0x7698211Cf413a2e5953e1c155bbDdCB033CC31e3/logo.png differ diff --git a/blockchains/ethereum/assets/0x76A034e76Aa835363056dd418611E4f81870f16e/info.json b/blockchains/ethereum/assets/0x76A034e76Aa835363056dd418611E4f81870f16e/info.json new file mode 100644 index 00000000..0411cc69 --- /dev/null +++ b/blockchains/ethereum/assets/0x76A034e76Aa835363056dd418611E4f81870f16e/info.json @@ -0,0 +1,33 @@ +{ + "name": "Value ETH", + "website": "https://valuedefi.io/", + "description": "Value DeFi: Bringing True Value to DeFi.", + "explorer": "https://etherscan.io/token/0x76A034e76Aa835363056dd418611E4f81870f16e", + "type": "ERC20", + "symbol": "vETH", + "decimals": 9, + "status": "active", + "id": "0x76A034e76Aa835363056dd418611E4f81870f16e", + "links": [ + { + "name": "github", + "url": "https://github.com/valuedefi" + }, + { + "name": "x", + "url": "https://x.com/value_defi" + }, + { + "name": "telegram", + "url": "https://t.me/ValueDeFi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Dpvd7tp" + }, + { + "name": "medium", + "url": "https://medium.com/@valuedefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x76A034e76Aa835363056dd418611E4f81870f16e/logo.png b/blockchains/ethereum/assets/0x76A034e76Aa835363056dd418611E4f81870f16e/logo.png new file mode 100644 index 00000000..da862922 Binary files /dev/null and b/blockchains/ethereum/assets/0x76A034e76Aa835363056dd418611E4f81870f16e/logo.png differ diff --git a/blockchains/ethereum/assets/0x76A0e27618462bDAC7a29104bdcfFf4E6BFCea2D/info.json b/blockchains/ethereum/assets/0x76A0e27618462bDAC7a29104bdcfFf4E6BFCea2D/info.json new file mode 100644 index 00000000..29c31cb7 --- /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 00000000..25982bb7 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 new file mode 100644 index 00000000..5dc25009 --- /dev/null +++ b/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/info.json @@ -0,0 +1,52 @@ +{ + "name": "Offshift", + "type": "ERC20", + "symbol": "XFT", + "decimals": 18, + "website": "https://offshift.io/", + "description": "Pioneering #PriFi on Ethereum Layer 1", + "explorer": "https://etherscan.io/token/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE", + "status": "active", + "id": "0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE", + "links": [ + { + "name": "x", + "url": "https://x.com/OffshiftXFT" + }, + { + "name": "github", + "url": "https://github.com/" + }, + { + "name": "telegram", + "url": "https://t.me/OffshiftXFT" + }, + { + "name": "blog", + "url": "https://offshift.io/blog/" + }, + { + "name": "whitepaper", + "url": "https://open.offshift.io/offshiftXFT/new-papers/-/blob/main/Offshift%20Ecosystem%20Whitepaper.md" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/OffshiftXFT" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/offshift-new/" + }, + { + "name": "source_code", + "url": "https://open.offshift.io/offshiftXFT" + }, + { + "name": "docs", + "url": "https://open.offshift.io/offshiftXFT/new-papers" + } + ], + "tags": [ + "privacy" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/logo.png b/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/logo.png new file mode 100644 index 00000000..152cba93 Binary files /dev/null and b/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/logo.png differ diff --git a/blockchains/ethereum/assets/0x76a435B51bAeae457324406da02ee7E3473288B5/info.json b/blockchains/ethereum/assets/0x76a435B51bAeae457324406da02ee7E3473288B5/info.json new file mode 100644 index 00000000..ec532a2c --- /dev/null +++ b/blockchains/ethereum/assets/0x76a435B51bAeae457324406da02ee7E3473288B5/info.json @@ -0,0 +1,11 @@ +{ + "name": "XTRLPay", + "symbol": "XTRLPay", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x76a435B51bAeae457324406da02ee7E3473288B5", + "status": "abandoned", + "id": "0x76a435B51bAeae457324406da02ee7E3473288B5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x76a435B51bAeae457324406da02ee7E3473288B5/logo.png b/blockchains/ethereum/assets/0x76a435B51bAeae457324406da02ee7E3473288B5/logo.png new file mode 100644 index 00000000..fac14e09 Binary files /dev/null and b/blockchains/ethereum/assets/0x76a435B51bAeae457324406da02ee7E3473288B5/logo.png differ diff --git a/blockchains/ethereum/assets/0x76acE4E080C49F04A6C12756c036d3627F6B1e69/info.json b/blockchains/ethereum/assets/0x76acE4E080C49F04A6C12756c036d3627F6B1e69/info.json new file mode 100644 index 00000000..43978704 --- /dev/null +++ b/blockchains/ethereum/assets/0x76acE4E080C49F04A6C12756c036d3627F6B1e69/info.json @@ -0,0 +1,11 @@ +{ + "name": "InterGalactic Credit", + "symbol": "CREE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x76acE4E080C49F04A6C12756c036d3627F6B1e69", + "status": "abandoned", + "id": "0x76acE4E080C49F04A6C12756c036d3627F6B1e69" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x76acE4E080C49F04A6C12756c036d3627F6B1e69/logo.png b/blockchains/ethereum/assets/0x76acE4E080C49F04A6C12756c036d3627F6B1e69/logo.png new file mode 100644 index 00000000..71bbb65f Binary files /dev/null and b/blockchains/ethereum/assets/0x76acE4E080C49F04A6C12756c036d3627F6B1e69/logo.png differ diff --git a/blockchains/ethereum/assets/0x76cb396Be0f76DbC58A8eB0569B7163Bf02d5555/info.json b/blockchains/ethereum/assets/0x76cb396Be0f76DbC58A8eB0569B7163Bf02d5555/info.json new file mode 100644 index 00000000..bba1efb0 --- /dev/null +++ b/blockchains/ethereum/assets/0x76cb396Be0f76DbC58A8eB0569B7163Bf02d5555/info.json @@ -0,0 +1,11 @@ +{ + "name": "MonsterEnergyToken", + "symbol": "MET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x76cb396Be0f76DbC58A8eB0569B7163Bf02d5555", + "status": "abandoned", + "id": "0x76cb396Be0f76DbC58A8eB0569B7163Bf02d5555" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x76cb396Be0f76DbC58A8eB0569B7163Bf02d5555/logo.png b/blockchains/ethereum/assets/0x76cb396Be0f76DbC58A8eB0569B7163Bf02d5555/logo.png new file mode 100755 index 00000000..597515ed Binary files /dev/null and b/blockchains/ethereum/assets/0x76cb396Be0f76DbC58A8eB0569B7163Bf02d5555/logo.png differ diff --git a/blockchains/ethereum/assets/0x76e222b07C53D28b89b0bAc18602810Fc22B49A8/info.json b/blockchains/ethereum/assets/0x76e222b07C53D28b89b0bAc18602810Fc22B49A8/info.json new file mode 100644 index 00000000..1df5bb10 --- /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 00000000..07839022 Binary files /dev/null and b/blockchains/ethereum/assets/0x76e222b07C53D28b89b0bAc18602810Fc22B49A8/logo.png differ diff --git a/blockchains/ethereum/assets/0x7703C35CfFdC5CDa8D27aa3df2F9ba6964544b6e/info.json b/blockchains/ethereum/assets/0x7703C35CfFdC5CDa8D27aa3df2F9ba6964544b6e/info.json new file mode 100644 index 00000000..29d9580f --- /dev/null +++ b/blockchains/ethereum/assets/0x7703C35CfFdC5CDa8D27aa3df2F9ba6964544b6e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pylon Token", + "symbol": "PYLNT", + "type": "ERC20", + "decimals": 18, + "description": "Pylon Network. The Energy-Wise Blockchain Platform.", + "website": "https://pylon-network.org", + "explorer": "https://etherscan.io/token/0x7703C35CfFdC5CDa8D27aa3df2F9ba6964544b6e", + "status": "active", + "id": "0x7703C35CfFdC5CDa8D27aa3df2F9ba6964544b6e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7703C35CfFdC5CDa8D27aa3df2F9ba6964544b6e/logo.png b/blockchains/ethereum/assets/0x7703C35CfFdC5CDa8D27aa3df2F9ba6964544b6e/logo.png new file mode 100644 index 00000000..c4b4b0ce Binary files /dev/null and b/blockchains/ethereum/assets/0x7703C35CfFdC5CDa8D27aa3df2F9ba6964544b6e/logo.png differ diff --git a/blockchains/ethereum/assets/0x771b5D3c4B6FA706A006Da2463b41A528E98E41D/info.json b/blockchains/ethereum/assets/0x771b5D3c4B6FA706A006Da2463b41A528E98E41D/info.json new file mode 100644 index 00000000..70402eed --- /dev/null +++ b/blockchains/ethereum/assets/0x771b5D3c4B6FA706A006Da2463b41A528E98E41D/info.json @@ -0,0 +1,11 @@ +{ + "name": "COSSE Coin", + "symbol": "COSSE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x771b5D3c4B6FA706A006Da2463b41A528E98E41D", + "status": "abandoned", + "id": "0x771b5D3c4B6FA706A006Da2463b41A528E98E41D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x771b5D3c4B6FA706A006Da2463b41A528E98E41D/logo.png b/blockchains/ethereum/assets/0x771b5D3c4B6FA706A006Da2463b41A528E98E41D/logo.png new file mode 100644 index 00000000..178a45fb Binary files /dev/null and b/blockchains/ethereum/assets/0x771b5D3c4B6FA706A006Da2463b41A528E98E41D/logo.png differ diff --git a/blockchains/ethereum/assets/0x7728dFEF5aBd468669EB7f9b48A7f70a501eD29D/info.json b/blockchains/ethereum/assets/0x7728dFEF5aBd468669EB7f9b48A7f70a501eD29D/info.json new file mode 100644 index 00000000..a9055684 --- /dev/null +++ b/blockchains/ethereum/assets/0x7728dFEF5aBd468669EB7f9b48A7f70a501eD29D/info.json @@ -0,0 +1,11 @@ +{ + "name": "PRG", + "symbol": "PRG", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7728dFEF5aBd468669EB7f9b48A7f70a501eD29D", + "status": "abandoned", + "id": "0x7728dFEF5aBd468669EB7f9b48A7f70a501eD29D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7728dFEF5aBd468669EB7f9b48A7f70a501eD29D/logo.png b/blockchains/ethereum/assets/0x7728dFEF5aBd468669EB7f9b48A7f70a501eD29D/logo.png new file mode 100644 index 00000000..143a7a83 Binary files /dev/null and b/blockchains/ethereum/assets/0x7728dFEF5aBd468669EB7f9b48A7f70a501eD29D/logo.png differ diff --git a/blockchains/ethereum/assets/0x773258b03c730F84aF10dFcB1BfAa7487558B8Ac/info.json b/blockchains/ethereum/assets/0x773258b03c730F84aF10dFcB1BfAa7487558B8Ac/info.json new file mode 100644 index 00000000..9a0f90e3 --- /dev/null +++ b/blockchains/ethereum/assets/0x773258b03c730F84aF10dFcB1BfAa7487558B8Ac/info.json @@ -0,0 +1,11 @@ +{ + "name": "SEFI", + "website": "https://secretswap.io", + "description": "SEFI is the native governance token for SecretSwap and Secret DeFi more generally. Earn SEFI and shape the future of the front-running resistant, privacy-first open finance ecosystem.", + "explorer": "https://etherscan.io/token/0x773258b03c730f84af10dfcb1bfaa7487558b8ac", + "type": "ERC20", + "symbol": "SEFI", + "decimals": 6, + "status": "active", + "id": "0x773258b03c730F84aF10dFcB1BfAa7487558B8Ac" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x773258b03c730F84aF10dFcB1BfAa7487558B8Ac/logo.png b/blockchains/ethereum/assets/0x773258b03c730F84aF10dFcB1BfAa7487558B8Ac/logo.png new file mode 100644 index 00000000..91bef483 Binary files /dev/null and b/blockchains/ethereum/assets/0x773258b03c730F84aF10dFcB1BfAa7487558B8Ac/logo.png differ diff --git a/blockchains/ethereum/assets/0x7732aBAe70c3b9319e27fa2cEaE509F538D8e94F/info.json b/blockchains/ethereum/assets/0x7732aBAe70c3b9319e27fa2cEaE509F538D8e94F/info.json new file mode 100644 index 00000000..5c22a3eb --- /dev/null +++ b/blockchains/ethereum/assets/0x7732aBAe70c3b9319e27fa2cEaE509F538D8e94F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Camel", + "symbol": "CAMEL", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7732aBAe70c3b9319e27fa2cEaE509F538D8e94F", + "status": "abandoned", + "id": "0x7732aBAe70c3b9319e27fa2cEaE509F538D8e94F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7732aBAe70c3b9319e27fa2cEaE509F538D8e94F/logo.png b/blockchains/ethereum/assets/0x7732aBAe70c3b9319e27fa2cEaE509F538D8e94F/logo.png new file mode 100644 index 00000000..9d34051c Binary files /dev/null and b/blockchains/ethereum/assets/0x7732aBAe70c3b9319e27fa2cEaE509F538D8e94F/logo.png differ diff --git a/blockchains/ethereum/assets/0x773dCEFa15b47E77c7955e5d0383BaFECd672734/info.json b/blockchains/ethereum/assets/0x773dCEFa15b47E77c7955e5d0383BaFECd672734/info.json new file mode 100644 index 00000000..6ad6137a --- /dev/null +++ b/blockchains/ethereum/assets/0x773dCEFa15b47E77c7955e5d0383BaFECd672734/info.json @@ -0,0 +1,11 @@ +{ + "name": "SignalCoin", + "symbol": "SGC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x773dCEFa15b47E77c7955e5d0383BaFECd672734", + "status": "abandoned", + "id": "0x773dCEFa15b47E77c7955e5d0383BaFECd672734" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x773dCEFa15b47E77c7955e5d0383BaFECd672734/logo.png b/blockchains/ethereum/assets/0x773dCEFa15b47E77c7955e5d0383BaFECd672734/logo.png new file mode 100755 index 00000000..ebc40001 Binary files /dev/null and b/blockchains/ethereum/assets/0x773dCEFa15b47E77c7955e5d0383BaFECd672734/logo.png differ diff --git a/blockchains/ethereum/assets/0x774be8Aa7482E2d4a4961ECa756C73D662689dF1/info.json b/blockchains/ethereum/assets/0x774be8Aa7482E2d4a4961ECa756C73D662689dF1/info.json new file mode 100644 index 00000000..f578b2b4 --- /dev/null +++ b/blockchains/ethereum/assets/0x774be8Aa7482E2d4a4961ECa756C73D662689dF1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pyramidion Cryptocurrency", + "symbol": "PYRA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x774be8Aa7482E2d4a4961ECa756C73D662689dF1", + "status": "abandoned", + "id": "0x774be8Aa7482E2d4a4961ECa756C73D662689dF1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x774be8Aa7482E2d4a4961ECa756C73D662689dF1/logo.png b/blockchains/ethereum/assets/0x774be8Aa7482E2d4a4961ECa756C73D662689dF1/logo.png new file mode 100644 index 00000000..56782a11 Binary files /dev/null and b/blockchains/ethereum/assets/0x774be8Aa7482E2d4a4961ECa756C73D662689dF1/logo.png differ diff --git a/blockchains/ethereum/assets/0x77599D2C6DB170224243e255e6669280F11F1473/info.json b/blockchains/ethereum/assets/0x77599D2C6DB170224243e255e6669280F11F1473/info.json new file mode 100644 index 00000000..45fa3a9b --- /dev/null +++ b/blockchains/ethereum/assets/0x77599D2C6DB170224243e255e6669280F11F1473/info.json @@ -0,0 +1,11 @@ +{ + "name": "Opacity", + "symbol": "OPQ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.opacity.io/", + "explorer": "https://etherscan.io/token/0x77599D2C6DB170224243e255e6669280F11F1473", + "status": "abandoned", + "id": "0x77599D2C6DB170224243e255e6669280F11F1473" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x77599D2C6DB170224243e255e6669280F11F1473/logo.png b/blockchains/ethereum/assets/0x77599D2C6DB170224243e255e6669280F11F1473/logo.png new file mode 100644 index 00000000..c756591a Binary files /dev/null and b/blockchains/ethereum/assets/0x77599D2C6DB170224243e255e6669280F11F1473/logo.png differ diff --git a/blockchains/ethereum/assets/0x77678CFD0f2B55152aDC6599DB9F988AB28D72F2/info.json b/blockchains/ethereum/assets/0x77678CFD0f2B55152aDC6599DB9F988AB28D72F2/info.json new file mode 100644 index 00000000..f2aa9cb6 --- /dev/null +++ b/blockchains/ethereum/assets/0x77678CFD0f2B55152aDC6599DB9F988AB28D72F2/info.json @@ -0,0 +1,11 @@ +{ + "name": "SwitchDex", + "symbol": "SDEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x77678CFD0f2B55152aDC6599DB9F988AB28D72F2", + "status": "abandoned", + "id": "0x77678CFD0f2B55152aDC6599DB9F988AB28D72F2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x77678CFD0f2B55152aDC6599DB9F988AB28D72F2/logo.png b/blockchains/ethereum/assets/0x77678CFD0f2B55152aDC6599DB9F988AB28D72F2/logo.png new file mode 100644 index 00000000..1d4194ae Binary files /dev/null and b/blockchains/ethereum/assets/0x77678CFD0f2B55152aDC6599DB9F988AB28D72F2/logo.png differ diff --git a/blockchains/ethereum/assets/0x776CA7dEd9474829ea20AD4a5Ab7a6fFdB64C796/info.json b/blockchains/ethereum/assets/0x776CA7dEd9474829ea20AD4a5Ab7a6fFdB64C796/info.json new file mode 100644 index 00000000..0f70fe54 --- /dev/null +++ b/blockchains/ethereum/assets/0x776CA7dEd9474829ea20AD4a5Ab7a6fFdB64C796/info.json @@ -0,0 +1,29 @@ +{ + "name": "TENS", + "website": "https://tenspeed.finance/", + "description": "TenSpeed is the next generation of high yield deflationary farming, utilizing the TENS cryptocurrency which has been programmed to decrease in total supply the more active trading, yield farming and moving tokens becomes.", + "explorer": "https://etherscan.io/token/0x776CA7dEd9474829ea20AD4a5Ab7a6fFdB64C796", + "type": "ERC20", + "symbol": "TENS", + "decimals": 18, + "status": "active", + "id": "0x776CA7dEd9474829ea20AD4a5Ab7a6fFdB64C796", + "links": [ + { + "name": "x", + "url": "https://x.com/TenSpeedFinance" + }, + { + "name": "telegram", + "url": "https://t.me/tenspeed_finance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/uS9FhGH" + }, + { + "name": "medium", + "url": "https://medium.com/tenspeed/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x776CA7dEd9474829ea20AD4a5Ab7a6fFdB64C796/logo.png b/blockchains/ethereum/assets/0x776CA7dEd9474829ea20AD4a5Ab7a6fFdB64C796/logo.png new file mode 100644 index 00000000..0f68933c Binary files /dev/null and b/blockchains/ethereum/assets/0x776CA7dEd9474829ea20AD4a5Ab7a6fFdB64C796/logo.png differ diff --git a/blockchains/ethereum/assets/0x776c5DebB8759e25ba7Ac1A2950F7158816E2705/info.json b/blockchains/ethereum/assets/0x776c5DebB8759e25ba7Ac1A2950F7158816E2705/info.json new file mode 100644 index 00000000..d8a02c57 --- /dev/null +++ b/blockchains/ethereum/assets/0x776c5DebB8759e25ba7Ac1A2950F7158816E2705/info.json @@ -0,0 +1,18 @@ +{ + "name": "Bests Token", + "website": "https://aibestgroup.com", + "description": "AI Best Group is a pioneer in harnessing the power of the internet, making the most of the internet to make money online, mining digital money, using the artificial intelligence to create trade coins, Forex generates great profit", + "explorer": "https://etherscan.io/token/0x776c5DebB8759e25ba7Ac1A2950F7158816E2705", + "explorers": [ + { + "name": "Etherscan", + "url": "https://etherscan.io/token/0x776c5debb8759e25ba7ac1a2950f7158816e2705" + } + ], + "data_source": "aibestgroup", + "type": "ERC20", + "symbol": "BTD", + "decimals": 18, + "status": "active", + "id": "0x776c5DebB8759e25ba7Ac1A2950F7158816E2705" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x776c5DebB8759e25ba7Ac1A2950F7158816E2705/logo.png b/blockchains/ethereum/assets/0x776c5DebB8759e25ba7Ac1A2950F7158816E2705/logo.png new file mode 100644 index 00000000..328953c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x776c5DebB8759e25ba7Ac1A2950F7158816E2705/logo.png differ diff --git a/blockchains/ethereum/assets/0x77761e63C05aeE6648FDaeaa9B94248351AF9bCd/info.json b/blockchains/ethereum/assets/0x77761e63C05aeE6648FDaeaa9B94248351AF9bCd/info.json new file mode 100644 index 00000000..617e3a6e --- /dev/null +++ b/blockchains/ethereum/assets/0x77761e63C05aeE6648FDaeaa9B94248351AF9bCd/info.json @@ -0,0 +1,11 @@ +{ + "name": "PASS Token", + "symbol": "PASS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x77761e63C05aeE6648FDaeaa9B94248351AF9bCd", + "status": "abandoned", + "id": "0x77761e63C05aeE6648FDaeaa9B94248351AF9bCd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x77761e63C05aeE6648FDaeaa9B94248351AF9bCd/logo.png b/blockchains/ethereum/assets/0x77761e63C05aeE6648FDaeaa9B94248351AF9bCd/logo.png new file mode 100644 index 00000000..dd5ada88 Binary files /dev/null and b/blockchains/ethereum/assets/0x77761e63C05aeE6648FDaeaa9B94248351AF9bCd/logo.png differ diff --git a/blockchains/ethereum/assets/0x7777770f8A6632ff043c8833310e245EBa9209E6/info.json b/blockchains/ethereum/assets/0x7777770f8A6632ff043c8833310e245EBa9209E6/info.json new file mode 100644 index 00000000..bc13c505 --- /dev/null +++ b/blockchains/ethereum/assets/0x7777770f8A6632ff043c8833310e245EBa9209E6/info.json @@ -0,0 +1,32 @@ +{ + "symbol": "TOB", + "name": "Tokens of Babel, Price is God", + "type": "ERC20", + "address": "0x7777770f8a6632ff043c8833310e245eba9209e6", + "ens_address": "", + "decimals": 18, + "website": "https://antiample.org/", + "description": "Tokens of Babel, Price is God. A new trading game that tests the limits of DeFi", + "explorer": "https://etherscan.io/token/0x7777770f8A6632ff043c8833310e245EBa9209E6", + "support": { + "email": "", + "url": "" + }, + "social": { + "blog": "", + "chat": "", + "facebook": "", + "forum": "", + "github": "", + "gitter": "", + "instagram": "", + "linkedin": "", + "reddit": "", + "slack": "", + "telegram": "https://t.me/antiample_official", + "x": "https://x.com/burn_the_state", + "youtube": "" + }, + "status": "active", + "id": "0x7777770f8A6632ff043c8833310e245EBa9209E6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7777770f8A6632ff043c8833310e245EBa9209E6/logo.png b/blockchains/ethereum/assets/0x7777770f8A6632ff043c8833310e245EBa9209E6/logo.png new file mode 100644 index 00000000..a014e9ed Binary files /dev/null and b/blockchains/ethereum/assets/0x7777770f8A6632ff043c8833310e245EBa9209E6/logo.png differ diff --git a/blockchains/ethereum/assets/0x77777FeDdddFfC19Ff86DB637967013e6C6A116C/info.json b/blockchains/ethereum/assets/0x77777FeDdddFfC19Ff86DB637967013e6C6A116C/info.json new file mode 100644 index 00000000..bf7179c4 --- /dev/null +++ b/blockchains/ethereum/assets/0x77777FeDdddFfC19Ff86DB637967013e6C6A116C/info.json @@ -0,0 +1,33 @@ +{ + "name": "Tornado Cash", + "website": "https://tornado.cash", + "description": "A fully decentralized protocol for private transactions on Ethereum.", + "explorer": "https://etherscan.io/token/0x77777feddddffc19ff86db637967013e6c6a116c", + "type": "ERC20", + "symbol": "TORN", + "decimals": 18, + "status": "active", + "id": "0x77777FeDdddFfC19Ff86DB637967013e6C6A116C", + "links": [ + { + "name": "github", + "url": "https://github.com/tornadocash" + }, + { + "name": "x", + "url": "https://x.com/TornadoCash" + }, + { + "name": "telegram", + "url": "https://t.me/TornadoCashOfficial" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tornado-cash/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/torn/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x77777FeDdddFfC19Ff86DB637967013e6C6A116C/logo.png b/blockchains/ethereum/assets/0x77777FeDdddFfC19Ff86DB637967013e6C6A116C/logo.png new file mode 100644 index 00000000..d7f45d24 Binary files /dev/null and b/blockchains/ethereum/assets/0x77777FeDdddFfC19Ff86DB637967013e6C6A116C/logo.png differ diff --git a/blockchains/ethereum/assets/0x777E2ae845272a2F540ebf6a3D03734A5a8f618e/info.json b/blockchains/ethereum/assets/0x777E2ae845272a2F540ebf6a3D03734A5a8f618e/info.json new file mode 100644 index 00000000..6c4faeb2 --- /dev/null +++ b/blockchains/ethereum/assets/0x777E2ae845272a2F540ebf6a3D03734A5a8f618e/info.json @@ -0,0 +1,41 @@ +{ + "name": "Ryoshi's Vision", + "type": "ERC20", + "symbol": "RYOSHI", + "decimals": 18, + "website": "https://www.ryoshi.vision/", + "description": "This is a deflationary token built to honor the founder of $SHIB and intended to fuel the Shiba ecosystem!", + "explorer": "https://etherscan.io/token/0x777E2ae845272a2F540ebf6a3D03734A5a8f618e", + "status": "active", + "id": "0x777E2ae845272a2F540ebf6a3D03734A5a8f618e", + "links": [ + { + "name": "telegram", + "url": "https://t.me/RyoshisVision" + }, + { + "name": "x", + "url": "https://x.com/RyoshisVision" + }, + { + "name": "blog", + "url": "https://medium.com/@RyoshisVision" + }, + { + "name": "discord", + "url": "https://discord.com/invite/TAqh6ZvU" + }, + { + "name": "medium", + "url": "https://medium.com/@RyoshisVision" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ryoshis-vision" + }, + { + "name": "source_code", + "url": "https://etherscan.io/address/0x777E2ae845272a2F540ebf6a3D03734A5a8f618e#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x777E2ae845272a2F540ebf6a3D03734A5a8f618e/logo.png b/blockchains/ethereum/assets/0x777E2ae845272a2F540ebf6a3D03734A5a8f618e/logo.png new file mode 100644 index 00000000..e88bc4d7 Binary files /dev/null and b/blockchains/ethereum/assets/0x777E2ae845272a2F540ebf6a3D03734A5a8f618e/logo.png differ diff --git a/blockchains/ethereum/assets/0x778608c4AC424522180A43329ff5145400B9d409/info.json b/blockchains/ethereum/assets/0x778608c4AC424522180A43329ff5145400B9d409/info.json new file mode 100644 index 00000000..2eb0f5a3 --- /dev/null +++ b/blockchains/ethereum/assets/0x778608c4AC424522180A43329ff5145400B9d409/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chainclub Ecosystem Network", + "symbol": "CEN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x778608c4AC424522180A43329ff5145400B9d409", + "status": "abandoned", + "id": "0x778608c4AC424522180A43329ff5145400B9d409" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x778608c4AC424522180A43329ff5145400B9d409/logo.png b/blockchains/ethereum/assets/0x778608c4AC424522180A43329ff5145400B9d409/logo.png new file mode 100644 index 00000000..be1642b9 Binary files /dev/null and b/blockchains/ethereum/assets/0x778608c4AC424522180A43329ff5145400B9d409/logo.png differ diff --git a/blockchains/ethereum/assets/0x7788D759F21F53533051A9AE657fA05A1E068fc6/info.json b/blockchains/ethereum/assets/0x7788D759F21F53533051A9AE657fA05A1E068fc6/info.json new file mode 100644 index 00000000..cbfe8c5a --- /dev/null +++ b/blockchains/ethereum/assets/0x7788D759F21F53533051A9AE657fA05A1E068fc6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fleta Token", + "symbol": "FLETA", + "type": "ERC20", + "decimals": 18, + "description": "FLETA is a blockchain platform that aims to offer infrastructure that can be applied to real-world business models. FLETA has its own core blockchain technologies like Level Tree Validation, Parallel Sharding, Independent multi-chain Structure, Block Redesign, and PoF(Proof-of-Formulation) which is its own consensus algorithm.", + "website": "https://fleta.io/", + "explorer": "https://etherscan.io/token/0x7788D759F21F53533051A9AE657fA05A1E068fc6", + "status": "active", + "id": "0x7788D759F21F53533051A9AE657fA05A1E068fc6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7788D759F21F53533051A9AE657fA05A1E068fc6/logo.png b/blockchains/ethereum/assets/0x7788D759F21F53533051A9AE657fA05A1E068fc6/logo.png new file mode 100644 index 00000000..5d6a24f6 Binary files /dev/null and b/blockchains/ethereum/assets/0x7788D759F21F53533051A9AE657fA05A1E068fc6/logo.png differ diff --git a/blockchains/ethereum/assets/0x77A1a02e4a888ADA8620b93C30dE8a41E621126c/info.json b/blockchains/ethereum/assets/0x77A1a02e4a888ADA8620b93C30dE8a41E621126c/info.json new file mode 100644 index 00000000..9b80b58a --- /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 00000000..8adf5788 Binary files /dev/null and b/blockchains/ethereum/assets/0x77A1a02e4a888ADA8620b93C30dE8a41E621126c/logo.png differ diff --git a/blockchains/ethereum/assets/0x77C07555aF5ffdC946Fb47ce15EA68620E4e7170/info.json b/blockchains/ethereum/assets/0x77C07555aF5ffdC946Fb47ce15EA68620E4e7170/info.json new file mode 100644 index 00000000..f1ba5d91 --- /dev/null +++ b/blockchains/ethereum/assets/0x77C07555aF5ffdC946Fb47ce15EA68620E4e7170/info.json @@ -0,0 +1,11 @@ +{ + "name": "Breeze", + "symbol": "BRZE", + "type": "ERC20", + "decimals": 18, + "description": "The goal of Breezecoin is to combine blockchain-based cryptocurrency technology with real estate investments.", + "website": "https://www.breezecoin.io", + "explorer": "https://etherscan.io/token/0x77C07555aF5ffdC946Fb47ce15EA68620E4e7170", + "status": "active", + "id": "0x77C07555aF5ffdC946Fb47ce15EA68620E4e7170" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x77C07555aF5ffdC946Fb47ce15EA68620E4e7170/logo.png b/blockchains/ethereum/assets/0x77C07555aF5ffdC946Fb47ce15EA68620E4e7170/logo.png new file mode 100644 index 00000000..c18cd586 Binary files /dev/null and b/blockchains/ethereum/assets/0x77C07555aF5ffdC946Fb47ce15EA68620E4e7170/logo.png differ diff --git a/blockchains/ethereum/assets/0x77D0112d005D21c1740A323F513bb088916B9A14/info.json b/blockchains/ethereum/assets/0x77D0112d005D21c1740A323F513bb088916B9A14/info.json new file mode 100644 index 00000000..ba4327a9 --- /dev/null +++ b/blockchains/ethereum/assets/0x77D0112d005D21c1740A323F513bb088916B9A14/info.json @@ -0,0 +1,11 @@ +{ + "name": "ManitoSuperToken", + "symbol": "ManitoS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x77D0112d005D21c1740A323F513bb088916B9A14", + "status": "abandoned", + "id": "0x77D0112d005D21c1740A323F513bb088916B9A14" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x77D0112d005D21c1740A323F513bb088916B9A14/logo.png b/blockchains/ethereum/assets/0x77D0112d005D21c1740A323F513bb088916B9A14/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x77D0112d005D21c1740A323F513bb088916B9A14/logo.png differ diff --git a/blockchains/ethereum/assets/0x77DE6b2729bAff72C220115Fe03017C57b57BAf5/info.json b/blockchains/ethereum/assets/0x77DE6b2729bAff72C220115Fe03017C57b57BAf5/info.json new file mode 100644 index 00000000..9474a51f --- /dev/null +++ b/blockchains/ethereum/assets/0x77DE6b2729bAff72C220115Fe03017C57b57BAf5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dancoin", + "symbol": "DANCOIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x77DE6b2729bAff72C220115Fe03017C57b57BAf5", + "status": "abandoned", + "id": "0x77DE6b2729bAff72C220115Fe03017C57b57BAf5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x77DE6b2729bAff72C220115Fe03017C57b57BAf5/logo.png b/blockchains/ethereum/assets/0x77DE6b2729bAff72C220115Fe03017C57b57BAf5/logo.png new file mode 100644 index 00000000..a8302478 Binary files /dev/null and b/blockchains/ethereum/assets/0x77DE6b2729bAff72C220115Fe03017C57b57BAf5/logo.png differ diff --git a/blockchains/ethereum/assets/0x77EDd08fa155bCE573a6a8C015dB188152584572/info.json b/blockchains/ethereum/assets/0x77EDd08fa155bCE573a6a8C015dB188152584572/info.json new file mode 100644 index 00000000..d1f14259 --- /dev/null +++ b/blockchains/ethereum/assets/0x77EDd08fa155bCE573a6a8C015dB188152584572/info.json @@ -0,0 +1,11 @@ +{ + "name": "BUSINESS TICKER COIN", + "symbol": "BSTC", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x77EDd08fa155bCE573a6a8C015dB188152584572", + "status": "abandoned", + "id": "0x77EDd08fa155bCE573a6a8C015dB188152584572" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x77EDd08fa155bCE573a6a8C015dB188152584572/logo.png b/blockchains/ethereum/assets/0x77EDd08fa155bCE573a6a8C015dB188152584572/logo.png new file mode 100644 index 00000000..c95b9091 Binary files /dev/null and b/blockchains/ethereum/assets/0x77EDd08fa155bCE573a6a8C015dB188152584572/logo.png differ diff --git a/blockchains/ethereum/assets/0x77FE30b2cf39245267C0a5084B66a560f1cF9E1f/info.json b/blockchains/ethereum/assets/0x77FE30b2cf39245267C0a5084B66a560f1cF9E1f/info.json new file mode 100644 index 00000000..ea8cde7e --- /dev/null +++ b/blockchains/ethereum/assets/0x77FE30b2cf39245267C0a5084B66a560f1cF9E1f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Azbit", + "symbol": "AZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x77FE30b2cf39245267C0a5084B66a560f1cF9E1f", + "status": "abandoned", + "id": "0x77FE30b2cf39245267C0a5084B66a560f1cF9E1f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x77FE30b2cf39245267C0a5084B66a560f1cF9E1f/logo.png b/blockchains/ethereum/assets/0x77FE30b2cf39245267C0a5084B66a560f1cF9E1f/logo.png new file mode 100644 index 00000000..527aad92 Binary files /dev/null and b/blockchains/ethereum/assets/0x77FE30b2cf39245267C0a5084B66a560f1cF9E1f/logo.png differ diff --git a/blockchains/ethereum/assets/0x77FbA179C79De5B7653F68b5039Af940AdA60ce0/info.json b/blockchains/ethereum/assets/0x77FbA179C79De5B7653F68b5039Af940AdA60ce0/info.json new file mode 100644 index 00000000..ae3a9e58 --- /dev/null +++ b/blockchains/ethereum/assets/0x77FbA179C79De5B7653F68b5039Af940AdA60ce0/info.json @@ -0,0 +1,40 @@ +{ + "name": "Ampleforth Governance", + "type": "ERC20", + "symbol": "FORTH", + "decimals": 18, + "website": "https://www.ampleforth.org/", + "description": "FORTH is the governance token for the Ampleforth protocol. AMPL is the first rebasing currency and a key DeFi building block for denominating stable contracts. The AMPL protocol adjusts total supply daily based on market conditions, transferring volatility from price to supply. Unlike stablecoin models, AMPL does not rely on traditional banks or lenders of last resort.", + "explorer": "https://etherscan.io/token/0x77FbA179C79De5B7653F68b5039Af940AdA60ce0", + "status": "active", + "id": "0x77FbA179C79De5B7653F68b5039Af940AdA60ce0", + "tags": [ + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ampleforth" + }, + { + "name": "x", + "url": "https://x.com/AmpleforthOrg" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ampleforthcrypto" + }, + { + "name": "telegram", + "url": "https://t.me/Ampleforth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ampleforth-governance-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ampleforth-governance-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x77FbA179C79De5B7653F68b5039Af940AdA60ce0/logo.png b/blockchains/ethereum/assets/0x77FbA179C79De5B7653F68b5039Af940AdA60ce0/logo.png new file mode 100644 index 00000000..c12070f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x77FbA179C79De5B7653F68b5039Af940AdA60ce0/logo.png differ diff --git a/blockchains/ethereum/assets/0x77dF79539083DCd4a8898dbA296d899aFef20067/info.json b/blockchains/ethereum/assets/0x77dF79539083DCd4a8898dbA296d899aFef20067/info.json new file mode 100644 index 00000000..30972ab3 --- /dev/null +++ b/blockchains/ethereum/assets/0x77dF79539083DCd4a8898dbA296d899aFef20067/info.json @@ -0,0 +1,12 @@ +{ + "name": "ArtemProtocol", + "website": "http://artem.finance", + "description": "Artem is a Compound derived lending project featuring liquidity for cryptocurrencies and Real-World Assets (RWA). It empowers community governance and adopts 0 pre-farming, 0 distribution, and 0 fundraisings.", + "explorer": "https://etherscan.io/token/0x77dF79539083DCd4a8898dbA296d899aFef20067", + "research": "https://app.zerion.io/explore/asset/ARTT-0x77df79539083dcd4a8898dba296d899afef20067", + "type": "ERC20", + "symbol": "ARTT", + "decimals": 18, + "status": "active", + "id": "0x77dF79539083DCd4a8898dbA296d899aFef20067" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x77dF79539083DCd4a8898dbA296d899aFef20067/logo.png b/blockchains/ethereum/assets/0x77dF79539083DCd4a8898dbA296d899aFef20067/logo.png new file mode 100644 index 00000000..5cb7cbd9 Binary files /dev/null and b/blockchains/ethereum/assets/0x77dF79539083DCd4a8898dbA296d899aFef20067/logo.png differ diff --git a/blockchains/ethereum/assets/0x77ee79C5cceF975c942732C0D54BAb4473566fed/info.json b/blockchains/ethereum/assets/0x77ee79C5cceF975c942732C0D54BAb4473566fed/info.json new file mode 100644 index 00000000..8a91e66a --- /dev/null +++ b/blockchains/ethereum/assets/0x77ee79C5cceF975c942732C0D54BAb4473566fed/info.json @@ -0,0 +1,11 @@ +{ + "name": "I Luv 2 C", + "symbol": "IL2C", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x77ee79C5cceF975c942732C0D54BAb4473566fed", + "status": "abandoned", + "id": "0x77ee79C5cceF975c942732C0D54BAb4473566fed" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x77ee79C5cceF975c942732C0D54BAb4473566fed/logo.png b/blockchains/ethereum/assets/0x77ee79C5cceF975c942732C0D54BAb4473566fed/logo.png new file mode 100644 index 00000000..451a6d0a Binary files /dev/null and b/blockchains/ethereum/assets/0x77ee79C5cceF975c942732C0D54BAb4473566fed/logo.png differ diff --git a/blockchains/ethereum/assets/0x77f973FCaF871459aa58cd81881Ce453759281bC/info.json b/blockchains/ethereum/assets/0x77f973FCaF871459aa58cd81881Ce453759281bC/info.json new file mode 100644 index 00000000..4270d8b0 --- /dev/null +++ b/blockchains/ethereum/assets/0x77f973FCaF871459aa58cd81881Ce453759281bC/info.json @@ -0,0 +1,11 @@ +{ + "name": "bZx ETH iToken", + "symbol": "iETH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x77f973FCaF871459aa58cd81881Ce453759281bC", + "status": "abandoned", + "id": "0x77f973FCaF871459aa58cd81881Ce453759281bC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x77f973FCaF871459aa58cd81881Ce453759281bC/logo.png b/blockchains/ethereum/assets/0x77f973FCaF871459aa58cd81881Ce453759281bC/logo.png new file mode 100644 index 00000000..f77fd7ed Binary files /dev/null and b/blockchains/ethereum/assets/0x77f973FCaF871459aa58cd81881Ce453759281bC/logo.png differ diff --git a/blockchains/ethereum/assets/0x78002d01A35E1098E1DC8f50b8182EE08b632f9F/info.json b/blockchains/ethereum/assets/0x78002d01A35E1098E1DC8f50b8182EE08b632f9F/info.json new file mode 100644 index 00000000..f655f419 --- /dev/null +++ b/blockchains/ethereum/assets/0x78002d01A35E1098E1DC8f50b8182EE08b632f9F/info.json @@ -0,0 +1,11 @@ +{ + "name": "TAURUS", + "symbol": "SIC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x78002d01A35E1098E1DC8f50b8182EE08b632f9F", + "status": "abandoned", + "id": "0x78002d01A35E1098E1DC8f50b8182EE08b632f9F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78002d01A35E1098E1DC8f50b8182EE08b632f9F/logo.png b/blockchains/ethereum/assets/0x78002d01A35E1098E1DC8f50b8182EE08b632f9F/logo.png new file mode 100644 index 00000000..ec66326a Binary files /dev/null and b/blockchains/ethereum/assets/0x78002d01A35E1098E1DC8f50b8182EE08b632f9F/logo.png differ diff --git a/blockchains/ethereum/assets/0x780116D91E5592E58a3b3c76A351571b39abCEc6/info.json b/blockchains/ethereum/assets/0x780116D91E5592E58a3b3c76A351571b39abCEc6/info.json new file mode 100644 index 00000000..8ed2866e --- /dev/null +++ b/blockchains/ethereum/assets/0x780116D91E5592E58a3b3c76A351571b39abCEc6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Boxx", + "symbol": "BOXX", + "type": "ERC20", + "decimals": 15, + "description": "Blockparty is designed to solve major pain points in ticketing: ensuring attendee identity, solving ticket fraud, and enabling revenue share in secondary ticket markets.", + "website": "https://www.goblockparty.com/", + "explorer": "https://etherscan.io/token/0x780116D91E5592E58a3b3c76A351571b39abCEc6", + "status": "active", + "id": "0x780116D91E5592E58a3b3c76A351571b39abCEc6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x780116D91E5592E58a3b3c76A351571b39abCEc6/logo.png b/blockchains/ethereum/assets/0x780116D91E5592E58a3b3c76A351571b39abCEc6/logo.png new file mode 100644 index 00000000..8e809c28 Binary files /dev/null and b/blockchains/ethereum/assets/0x780116D91E5592E58a3b3c76A351571b39abCEc6/logo.png differ diff --git a/blockchains/ethereum/assets/0x780c0C651C4f676A6cCAdc09E34150F97cE0066b/info.json b/blockchains/ethereum/assets/0x780c0C651C4f676A6cCAdc09E34150F97cE0066b/info.json new file mode 100644 index 00000000..a6ef5575 --- /dev/null +++ b/blockchains/ethereum/assets/0x780c0C651C4f676A6cCAdc09E34150F97cE0066b/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeStart Token", + "symbol": "SST", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x780c0C651C4f676A6cCAdc09E34150F97cE0066b", + "status": "abandoned", + "id": "0x780c0C651C4f676A6cCAdc09E34150F97cE0066b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x780c0C651C4f676A6cCAdc09E34150F97cE0066b/logo.png b/blockchains/ethereum/assets/0x780c0C651C4f676A6cCAdc09E34150F97cE0066b/logo.png new file mode 100644 index 00000000..a198611f Binary files /dev/null and b/blockchains/ethereum/assets/0x780c0C651C4f676A6cCAdc09E34150F97cE0066b/logo.png differ diff --git a/blockchains/ethereum/assets/0x780ec47d3696Fe6fc8Cd273D2420721bCEf936c5/info.json b/blockchains/ethereum/assets/0x780ec47d3696Fe6fc8Cd273D2420721bCEf936c5/info.json new file mode 100644 index 00000000..e3f3026d --- /dev/null +++ b/blockchains/ethereum/assets/0x780ec47d3696Fe6fc8Cd273D2420721bCEf936c5/info.json @@ -0,0 +1,11 @@ +{ + "name": "DAPTOKEN", + "symbol": "DAP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x780ec47d3696Fe6fc8Cd273D2420721bCEf936c5", + "status": "abandoned", + "id": "0x780ec47d3696Fe6fc8Cd273D2420721bCEf936c5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x780ec47d3696Fe6fc8Cd273D2420721bCEf936c5/logo.png b/blockchains/ethereum/assets/0x780ec47d3696Fe6fc8Cd273D2420721bCEf936c5/logo.png new file mode 100644 index 00000000..a360e33a Binary files /dev/null and b/blockchains/ethereum/assets/0x780ec47d3696Fe6fc8Cd273D2420721bCEf936c5/logo.png differ diff --git a/blockchains/ethereum/assets/0x7825e833D495F3d1c28872415a4aee339D26AC88/info.json b/blockchains/ethereum/assets/0x7825e833D495F3d1c28872415a4aee339D26AC88/info.json new file mode 100644 index 00000000..2086c306 --- /dev/null +++ b/blockchains/ethereum/assets/0x7825e833D495F3d1c28872415a4aee339D26AC88/info.json @@ -0,0 +1,28 @@ +{ + "name": "pTokens TLOS", + "type": "ERC20", + "symbol": "TLOS", + "decimals": 18, + "website": "https://ptokens.io/", + "description": "pNetwork enables cross-chain movement of assets and data.", + "explorer": "https://etherscan.io/token/0x7825e833d495f3d1c28872415a4aee339d26ac88", + "status": "active", + "id": "0x7825e833D495F3d1c28872415a4aee339D26AC88", + "links": [ + { + "name": "x", + "url": "https://x.com/pNetworkDeFi" + }, + { + "name": "github", + "url": "https://github.com/provable-things" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/telos/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7825e833D495F3d1c28872415a4aee339D26AC88/logo.png b/blockchains/ethereum/assets/0x7825e833D495F3d1c28872415a4aee339D26AC88/logo.png new file mode 100644 index 00000000..cc526a26 Binary files /dev/null and b/blockchains/ethereum/assets/0x7825e833D495F3d1c28872415a4aee339D26AC88/logo.png differ diff --git a/blockchains/ethereum/assets/0x783Ba0062326861eE76E0e15429594922e9FE2F5/info.json b/blockchains/ethereum/assets/0x783Ba0062326861eE76E0e15429594922e9FE2F5/info.json new file mode 100644 index 00000000..83add601 --- /dev/null +++ b/blockchains/ethereum/assets/0x783Ba0062326861eE76E0e15429594922e9FE2F5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Andrey Voronkov Ventures Promo", + "symbol": "AVVP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x783Ba0062326861eE76E0e15429594922e9FE2F5", + "status": "abandoned", + "id": "0x783Ba0062326861eE76E0e15429594922e9FE2F5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x783Ba0062326861eE76E0e15429594922e9FE2F5/logo.png b/blockchains/ethereum/assets/0x783Ba0062326861eE76E0e15429594922e9FE2F5/logo.png new file mode 100644 index 00000000..b3886b88 Binary files /dev/null and b/blockchains/ethereum/assets/0x783Ba0062326861eE76E0e15429594922e9FE2F5/logo.png differ diff --git a/blockchains/ethereum/assets/0x7841B2A48D1F6e78ACeC359FEd6D874Eb8a0f63c/info.json b/blockchains/ethereum/assets/0x7841B2A48D1F6e78ACeC359FEd6D874Eb8a0f63c/info.json new file mode 100644 index 00000000..cf6d6751 --- /dev/null +++ b/blockchains/ethereum/assets/0x7841B2A48D1F6e78ACeC359FEd6D874Eb8a0f63c/info.json @@ -0,0 +1,11 @@ +{ + "name": "KERMAN", + "symbol": "KERMAN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://app.tryroll.com/rewards/KERMAN", + "explorer": "https://etherscan.io/token/0x7841B2A48D1F6e78ACeC359FEd6D874Eb8a0f63c", + "status": "abandoned", + "id": "0x7841B2A48D1F6e78ACeC359FEd6D874Eb8a0f63c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7841B2A48D1F6e78ACeC359FEd6D874Eb8a0f63c/logo.png b/blockchains/ethereum/assets/0x7841B2A48D1F6e78ACeC359FEd6D874Eb8a0f63c/logo.png new file mode 100644 index 00000000..c24e1716 Binary files /dev/null and b/blockchains/ethereum/assets/0x7841B2A48D1F6e78ACeC359FEd6D874Eb8a0f63c/logo.png differ diff --git a/blockchains/ethereum/assets/0x784561B89A160990F46DE6dB19571Ca1B5F14bCE/info.json b/blockchains/ethereum/assets/0x784561B89A160990F46DE6dB19571Ca1B5F14bCE/info.json new file mode 100644 index 00000000..f8bc22f3 --- /dev/null +++ b/blockchains/ethereum/assets/0x784561B89A160990F46DE6dB19571Ca1B5F14bCE/info.json @@ -0,0 +1,11 @@ +{ + "name": "MOST", + "website": "https://mostprotocol.org/", + "description": "MOST is a decentralized algorithmic stable token with an elegant mechanism to incentivize MOST holders to sell tokens when they are highly demanded and hold MOST tokens when over circulated.", + "explorer": "https://etherscan.io/token/0x784561B89A160990F46DE6dB19571Ca1B5F14bCE", + "type": "ERC20", + "symbol": "MOST", + "decimals": 9, + "status": "active", + "id": "0x784561B89A160990F46DE6dB19571Ca1B5F14bCE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x784561B89A160990F46DE6dB19571Ca1B5F14bCE/logo.png b/blockchains/ethereum/assets/0x784561B89A160990F46DE6dB19571Ca1B5F14bCE/logo.png new file mode 100644 index 00000000..6323e5a8 Binary files /dev/null and b/blockchains/ethereum/assets/0x784561B89A160990F46DE6dB19571Ca1B5F14bCE/logo.png differ diff --git a/blockchains/ethereum/assets/0x7848ae8F19671Dc05966dafBeFbBbb0308BDfAbD/info.json b/blockchains/ethereum/assets/0x7848ae8F19671Dc05966dafBeFbBbb0308BDfAbD/info.json new file mode 100644 index 00000000..b8872c0d --- /dev/null +++ b/blockchains/ethereum/assets/0x7848ae8F19671Dc05966dafBeFbBbb0308BDfAbD/info.json @@ -0,0 +1,11 @@ +{ + "name": "WednesdayCoin", + "website": "https://wednesdaycoin.io", + "description": "WednesdayCoin is an ERC20 token that can only be sent on Wednesdays! It was created as a way to help people detach from the 24/7 crypto-world.", + "explorer": "https://etherscan.io/token/0x7848ae8F19671Dc05966dafBeFbBbb0308BDfAbD", + "type": "ERC20", + "symbol": "WED", + "decimals": 18, + "status": "active", + "id": "0x7848ae8F19671Dc05966dafBeFbBbb0308BDfAbD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7848ae8F19671Dc05966dafBeFbBbb0308BDfAbD/logo.png b/blockchains/ethereum/assets/0x7848ae8F19671Dc05966dafBeFbBbb0308BDfAbD/logo.png new file mode 100644 index 00000000..64520a51 Binary files /dev/null and b/blockchains/ethereum/assets/0x7848ae8F19671Dc05966dafBeFbBbb0308BDfAbD/logo.png differ diff --git a/blockchains/ethereum/assets/0x785AfB6062004F52A1d6A4323860e56803bc14D0/info.json b/blockchains/ethereum/assets/0x785AfB6062004F52A1d6A4323860e56803bc14D0/info.json new file mode 100644 index 00000000..7cca912a --- /dev/null +++ b/blockchains/ethereum/assets/0x785AfB6062004F52A1d6A4323860e56803bc14D0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kangdom", + "symbol": "KANGG", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x785AfB6062004F52A1d6A4323860e56803bc14D0", + "status": "abandoned", + "id": "0x785AfB6062004F52A1d6A4323860e56803bc14D0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x785AfB6062004F52A1d6A4323860e56803bc14D0/logo.png b/blockchains/ethereum/assets/0x785AfB6062004F52A1d6A4323860e56803bc14D0/logo.png new file mode 100644 index 00000000..fbfabe5d Binary files /dev/null and b/blockchains/ethereum/assets/0x785AfB6062004F52A1d6A4323860e56803bc14D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x7865af71cf0b288b4E7F654f4F7851EB46a2B7F8/info.json b/blockchains/ethereum/assets/0x7865af71cf0b288b4E7F654f4F7851EB46a2B7F8/info.json new file mode 100644 index 00000000..58d8d895 --- /dev/null +++ b/blockchains/ethereum/assets/0x7865af71cf0b288b4E7F654f4F7851EB46a2B7F8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sentivate", + "website": "https://sentivate.com/", + "description": "SENTIVATE IS A HYBRID WEB BUILT TO BE A VIABLE & REALISTIC REPLACEMENT FOR THE MODERN WEB. FASTER, SAFER, & MORE SCALABLE THAN ANY SOLELY CENTRALIZED OR DECENTRALIZED WEB.", + "explorer": "https://etherscan.io/token/0x7865af71cf0b288b4E7F654f4F7851EB46a2B7F8", + "type": "ERC20", + "symbol": "SNTVT", + "decimals": 18, + "status": "active", + "id": "0x7865af71cf0b288b4E7F654f4F7851EB46a2B7F8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7865af71cf0b288b4E7F654f4F7851EB46a2B7F8/logo.png b/blockchains/ethereum/assets/0x7865af71cf0b288b4E7F654f4F7851EB46a2B7F8/logo.png new file mode 100644 index 00000000..c4eba8c5 Binary files /dev/null and b/blockchains/ethereum/assets/0x7865af71cf0b288b4E7F654f4F7851EB46a2B7F8/logo.png differ diff --git a/blockchains/ethereum/assets/0x7869c4A1a3f6F8684FBCC422a21aD7Abe3167834/info.json b/blockchains/ethereum/assets/0x7869c4A1a3f6F8684FBCC422a21aD7Abe3167834/info.json new file mode 100644 index 00000000..ba0ea7bb --- /dev/null +++ b/blockchains/ethereum/assets/0x7869c4A1a3f6F8684FBCC422a21aD7Abe3167834/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pivot Token", + "symbol": "PVT", + "type": "ERC20", + "decimals": 18, + "description": "Pivot is the world's largest investment and communication platform for blockchains, dedicated to providing users with real-time comprehensive cryptocurrency market, information, trading one-stop service.", + "website": "https://www.pivot.one/", + "explorer": "https://etherscan.io/token/0x7869c4A1a3f6F8684FBCC422a21aD7Abe3167834", + "status": "active", + "id": "0x7869c4A1a3f6F8684FBCC422a21aD7Abe3167834" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7869c4A1a3f6F8684FBCC422a21aD7Abe3167834/logo.png b/blockchains/ethereum/assets/0x7869c4A1a3f6F8684FBCC422a21aD7Abe3167834/logo.png new file mode 100644 index 00000000..415197ed Binary files /dev/null and b/blockchains/ethereum/assets/0x7869c4A1a3f6F8684FBCC422a21aD7Abe3167834/logo.png differ diff --git a/blockchains/ethereum/assets/0x786A6743efe9500011C92c7D8540608a62382b6f/info.json b/blockchains/ethereum/assets/0x786A6743efe9500011C92c7D8540608a62382b6f/info.json new file mode 100644 index 00000000..a8e0a2f1 --- /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 00000000..56395e48 Binary files /dev/null and b/blockchains/ethereum/assets/0x786A6743efe9500011C92c7D8540608a62382b6f/logo.png differ diff --git a/blockchains/ethereum/assets/0x7878424E994D8a2B8E329D31096922B7CeAbe660/info.json b/blockchains/ethereum/assets/0x7878424E994D8a2B8E329D31096922B7CeAbe660/info.json new file mode 100644 index 00000000..8ff21af6 --- /dev/null +++ b/blockchains/ethereum/assets/0x7878424E994D8a2B8E329D31096922B7CeAbe660/info.json @@ -0,0 +1,11 @@ +{ + "name": "ImmVRse Token", + "symbol": "IMVR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7878424E994D8a2B8E329D31096922B7CeAbe660", + "status": "abandoned", + "id": "0x7878424E994D8a2B8E329D31096922B7CeAbe660" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7878424E994D8a2B8E329D31096922B7CeAbe660/logo.png b/blockchains/ethereum/assets/0x7878424E994D8a2B8E329D31096922B7CeAbe660/logo.png new file mode 100644 index 00000000..efcdd799 Binary files /dev/null and b/blockchains/ethereum/assets/0x7878424E994D8a2B8E329D31096922B7CeAbe660/logo.png differ diff --git a/blockchains/ethereum/assets/0x787C2fFFB74F559219836a77FAd6181f808b6F73/info.json b/blockchains/ethereum/assets/0x787C2fFFB74F559219836a77FAd6181f808b6F73/info.json new file mode 100644 index 00000000..cbd46d40 --- /dev/null +++ b/blockchains/ethereum/assets/0x787C2fFFB74F559219836a77FAd6181f808b6F73/info.json @@ -0,0 +1,11 @@ +{ + "name": "klcoin", + "symbol": "KLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x787C2fFFB74F559219836a77FAd6181f808b6F73", + "status": "abandoned", + "id": "0x787C2fFFB74F559219836a77FAd6181f808b6F73" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x787C2fFFB74F559219836a77FAd6181f808b6F73/logo.png b/blockchains/ethereum/assets/0x787C2fFFB74F559219836a77FAd6181f808b6F73/logo.png new file mode 100644 index 00000000..483194b8 Binary files /dev/null and b/blockchains/ethereum/assets/0x787C2fFFB74F559219836a77FAd6181f808b6F73/logo.png differ diff --git a/blockchains/ethereum/assets/0x7884F51dC1410387371ce61747CB6264E1dAeE0B/info.json b/blockchains/ethereum/assets/0x7884F51dC1410387371ce61747CB6264E1dAeE0B/info.json new file mode 100644 index 00000000..96c6bdb9 --- /dev/null +++ b/blockchains/ethereum/assets/0x7884F51dC1410387371ce61747CB6264E1dAeE0B/info.json @@ -0,0 +1,12 @@ +{ + "name": "Binance Wrapped DOT", + "website": "https://binance.org", + "description": "BDOT tokens are ERC20 tokens on the Ethereum network created via the Binance Token Canal program, where the price is pegged to DOT at a rate of 1 BDOT = 1 DOT.", + "explorer": "https://etherscan.io/token/0x7884f51dc1410387371ce61747cb6264e1daee0b", + "research": "https://research.binance.com/en/projects/polkadot", + "type": "ERC20", + "symbol": "BDOT", + "decimals": 10, + "status": "active", + "id": "0x7884F51dC1410387371ce61747CB6264E1dAeE0B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7884F51dC1410387371ce61747CB6264E1dAeE0B/logo.png b/blockchains/ethereum/assets/0x7884F51dC1410387371ce61747CB6264E1dAeE0B/logo.png new file mode 100644 index 00000000..4fdd922e Binary files /dev/null and b/blockchains/ethereum/assets/0x7884F51dC1410387371ce61747CB6264E1dAeE0B/logo.png differ diff --git a/blockchains/ethereum/assets/0x78886f538c0FAd33D777a325Ff2F9E54e4B70c67/info.json b/blockchains/ethereum/assets/0x78886f538c0FAd33D777a325Ff2F9E54e4B70c67/info.json new file mode 100644 index 00000000..786ddbaf --- /dev/null +++ b/blockchains/ethereum/assets/0x78886f538c0FAd33D777a325Ff2F9E54e4B70c67/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dogethereum", + "symbol": "DETH", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x78886f538c0FAd33D777a325Ff2F9E54e4B70c67", + "status": "abandoned", + "id": "0x78886f538c0FAd33D777a325Ff2F9E54e4B70c67" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78886f538c0FAd33D777a325Ff2F9E54e4B70c67/logo.png b/blockchains/ethereum/assets/0x78886f538c0FAd33D777a325Ff2F9E54e4B70c67/logo.png new file mode 100644 index 00000000..c943d53e Binary files /dev/null and b/blockchains/ethereum/assets/0x78886f538c0FAd33D777a325Ff2F9E54e4B70c67/logo.png differ diff --git a/blockchains/ethereum/assets/0x78A806A3Bef5f9AFcaA0F3B31fc07617A284516b/info.json b/blockchains/ethereum/assets/0x78A806A3Bef5f9AFcaA0F3B31fc07617A284516b/info.json new file mode 100644 index 00000000..d2c53a93 --- /dev/null +++ b/blockchains/ethereum/assets/0x78A806A3Bef5f9AFcaA0F3B31fc07617A284516b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Token Guardian", + "symbol": "TKGN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x78A806A3Bef5f9AFcaA0F3B31fc07617A284516b", + "status": "abandoned", + "id": "0x78A806A3Bef5f9AFcaA0F3B31fc07617A284516b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78A806A3Bef5f9AFcaA0F3B31fc07617A284516b/logo.png b/blockchains/ethereum/assets/0x78A806A3Bef5f9AFcaA0F3B31fc07617A284516b/logo.png new file mode 100644 index 00000000..5b934b26 Binary files /dev/null and b/blockchains/ethereum/assets/0x78A806A3Bef5f9AFcaA0F3B31fc07617A284516b/logo.png differ diff --git a/blockchains/ethereum/assets/0x78B039921E84E726EB72E7b1212bb35504c645cA/info.json b/blockchains/ethereum/assets/0x78B039921E84E726EB72E7b1212bb35504c645cA/info.json new file mode 100644 index 00000000..9e1f5ac8 --- /dev/null +++ b/blockchains/ethereum/assets/0x78B039921E84E726EB72E7b1212bb35504c645cA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sether", + "symbol": "SETH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.sether.io/", + "explorer": "https://etherscan.io/token/0x78B039921E84E726EB72E7b1212bb35504c645cA", + "status": "abandoned", + "id": "0x78B039921E84E726EB72E7b1212bb35504c645cA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78B039921E84E726EB72E7b1212bb35504c645cA/logo.png b/blockchains/ethereum/assets/0x78B039921E84E726EB72E7b1212bb35504c645cA/logo.png new file mode 100644 index 00000000..dae14ec3 Binary files /dev/null and b/blockchains/ethereum/assets/0x78B039921E84E726EB72E7b1212bb35504c645cA/logo.png differ diff --git a/blockchains/ethereum/assets/0x78B7FADA55A64dD895D8c8c35779DD8b67fA8a05/info.json b/blockchains/ethereum/assets/0x78B7FADA55A64dD895D8c8c35779DD8b67fA8a05/info.json new file mode 100644 index 00000000..c31487cc --- /dev/null +++ b/blockchains/ethereum/assets/0x78B7FADA55A64dD895D8c8c35779DD8b67fA8a05/info.json @@ -0,0 +1,11 @@ +{ + "name": "ATLANT Token", + "symbol": "ATL", + "type": "ERC20", + "decimals": 18, + "description": "ATLANT is addressing two of the most pertinent problems in real estate with its decentralized blockchain platform: Tokenized Ownership and global P2P Rentals.", + "website": "https://atlant.io/", + "explorer": "https://etherscan.io/token/0x78B7FADA55A64dD895D8c8c35779DD8b67fA8a05", + "status": "active", + "id": "0x78B7FADA55A64dD895D8c8c35779DD8b67fA8a05" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78B7FADA55A64dD895D8c8c35779DD8b67fA8a05/logo.png b/blockchains/ethereum/assets/0x78B7FADA55A64dD895D8c8c35779DD8b67fA8a05/logo.png new file mode 100755 index 00000000..fc1c1a19 Binary files /dev/null and b/blockchains/ethereum/assets/0x78B7FADA55A64dD895D8c8c35779DD8b67fA8a05/logo.png differ diff --git a/blockchains/ethereum/assets/0x78C857ee6633193C843B93Bd2db7f38befcf6732/info.json b/blockchains/ethereum/assets/0x78C857ee6633193C843B93Bd2db7f38befcf6732/info.json new file mode 100644 index 00000000..4cd73312 --- /dev/null +++ b/blockchains/ethereum/assets/0x78C857ee6633193C843B93Bd2db7f38befcf6732/info.json @@ -0,0 +1,11 @@ +{ + "name": "UFAN8", + "symbol": "UFAN8", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x78C857ee6633193C843B93Bd2db7f38befcf6732", + "status": "abandoned", + "id": "0x78C857ee6633193C843B93Bd2db7f38befcf6732" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78C857ee6633193C843B93Bd2db7f38befcf6732/logo.png b/blockchains/ethereum/assets/0x78C857ee6633193C843B93Bd2db7f38befcf6732/logo.png new file mode 100644 index 00000000..273c83af Binary files /dev/null and b/blockchains/ethereum/assets/0x78C857ee6633193C843B93Bd2db7f38befcf6732/logo.png differ diff --git a/blockchains/ethereum/assets/0x78CdF5497656297cEe5be43EecD3113c586515d3/info.json b/blockchains/ethereum/assets/0x78CdF5497656297cEe5be43EecD3113c586515d3/info.json new file mode 100644 index 00000000..711cc6c9 --- /dev/null +++ b/blockchains/ethereum/assets/0x78CdF5497656297cEe5be43EecD3113c586515d3/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R792351", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x78CdF5497656297cEe5be43EecD3113c586515d3", + "status": "abandoned", + "id": "0x78CdF5497656297cEe5be43EecD3113c586515d3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78CdF5497656297cEe5be43EecD3113c586515d3/logo.png b/blockchains/ethereum/assets/0x78CdF5497656297cEe5be43EecD3113c586515d3/logo.png new file mode 100755 index 00000000..13c3bf06 Binary files /dev/null and b/blockchains/ethereum/assets/0x78CdF5497656297cEe5be43EecD3113c586515d3/logo.png differ diff --git a/blockchains/ethereum/assets/0x78F5bBC74fb9137A75D85f3C9C3c599Be49f0A56/info.json b/blockchains/ethereum/assets/0x78F5bBC74fb9137A75D85f3C9C3c599Be49f0A56/info.json new file mode 100644 index 00000000..0c628eaa --- /dev/null +++ b/blockchains/ethereum/assets/0x78F5bBC74fb9137A75D85f3C9C3c599Be49f0A56/info.json @@ -0,0 +1,11 @@ +{ + "name": "smartup", + "symbol": "SmartUp", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.smartup.global/", + "explorer": "https://etherscan.io/token/0x78F5bBC74fb9137A75D85f3C9C3c599Be49f0A56", + "status": "abandoned", + "id": "0x78F5bBC74fb9137A75D85f3C9C3c599Be49f0A56" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78F5bBC74fb9137A75D85f3C9C3c599Be49f0A56/logo.png b/blockchains/ethereum/assets/0x78F5bBC74fb9137A75D85f3C9C3c599Be49f0A56/logo.png new file mode 100644 index 00000000..0e36af2c Binary files /dev/null and b/blockchains/ethereum/assets/0x78F5bBC74fb9137A75D85f3C9C3c599Be49f0A56/logo.png differ diff --git a/blockchains/ethereum/assets/0x78FAefDf01Efe5759Fe3123560e5bACD0cfe2819/info.json b/blockchains/ethereum/assets/0x78FAefDf01Efe5759Fe3123560e5bACD0cfe2819/info.json new file mode 100644 index 00000000..09d21b51 --- /dev/null +++ b/blockchains/ethereum/assets/0x78FAefDf01Efe5759Fe3123560e5bACD0cfe2819/info.json @@ -0,0 +1,11 @@ +{ + "name": "ElectroLite Network", + "symbol": "ETLX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x78FAefDf01Efe5759Fe3123560e5bACD0cfe2819", + "status": "abandoned", + "id": "0x78FAefDf01Efe5759Fe3123560e5bACD0cfe2819" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78FAefDf01Efe5759Fe3123560e5bACD0cfe2819/logo.png b/blockchains/ethereum/assets/0x78FAefDf01Efe5759Fe3123560e5bACD0cfe2819/logo.png new file mode 100644 index 00000000..6d7adc4d Binary files /dev/null and b/blockchains/ethereum/assets/0x78FAefDf01Efe5759Fe3123560e5bACD0cfe2819/logo.png differ diff --git a/blockchains/ethereum/assets/0x78FcEca5bf5EC79C23effece97Ae758665BA4f55/info.json b/blockchains/ethereum/assets/0x78FcEca5bf5EC79C23effece97Ae758665BA4f55/info.json new file mode 100644 index 00000000..2155c5d2 --- /dev/null +++ b/blockchains/ethereum/assets/0x78FcEca5bf5EC79C23effece97Ae758665BA4f55/info.json @@ -0,0 +1,11 @@ +{ + "name": "YouDeal Token", + "symbol": "YD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x78FcEca5bf5EC79C23effece97Ae758665BA4f55", + "status": "abandoned", + "id": "0x78FcEca5bf5EC79C23effece97Ae758665BA4f55" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78FcEca5bf5EC79C23effece97Ae758665BA4f55/logo.png b/blockchains/ethereum/assets/0x78FcEca5bf5EC79C23effece97Ae758665BA4f55/logo.png new file mode 100644 index 00000000..1f5a8353 Binary files /dev/null and b/blockchains/ethereum/assets/0x78FcEca5bf5EC79C23effece97Ae758665BA4f55/logo.png differ diff --git a/blockchains/ethereum/assets/0x78a2a1029E3168b49d3A276C787050fF5106dCF2/info.json b/blockchains/ethereum/assets/0x78a2a1029E3168b49d3A276C787050fF5106dCF2/info.json new file mode 100644 index 00000000..b9f14b1b --- /dev/null +++ b/blockchains/ethereum/assets/0x78a2a1029E3168b49d3A276C787050fF5106dCF2/info.json @@ -0,0 +1,11 @@ +{ + "name": "EZOOW", + "symbol": "EZW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.ezoow.com/", + "explorer": "https://etherscan.io/token/0x78a2a1029E3168b49d3A276C787050fF5106dCF2", + "status": "abandoned", + "id": "0x78a2a1029E3168b49d3A276C787050fF5106dCF2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78a2a1029E3168b49d3A276C787050fF5106dCF2/logo.png b/blockchains/ethereum/assets/0x78a2a1029E3168b49d3A276C787050fF5106dCF2/logo.png new file mode 100644 index 00000000..18dd9d17 Binary files /dev/null and b/blockchains/ethereum/assets/0x78a2a1029E3168b49d3A276C787050fF5106dCF2/logo.png differ diff --git a/blockchains/ethereum/assets/0x78a3B2f1e7eec1073088ea4a193618743F81cEf8/info.json b/blockchains/ethereum/assets/0x78a3B2f1e7eec1073088ea4a193618743F81cEf8/info.json new file mode 100644 index 00000000..3da2a278 --- /dev/null +++ b/blockchains/ethereum/assets/0x78a3B2f1e7eec1073088ea4a193618743F81cEf8/info.json @@ -0,0 +1,36 @@ +{ + "name": "Stable BOOT", + "website": "app.ichi.org", + "description": "bootusd is an ICHI-created stablecoin for Boot Finance.", + "explorer": "https://etherscan.io/token/0x78a3b2f1e7eec1073088ea4a193618743f81cef8", + "type": "ERC20", + "symbol": "bootusd", + "decimals": 18, + "status": "active", + "id": "0x78a3B2f1e7eec1073088ea4a193618743F81cEf8", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm/ichi-oneToken" + }, + { + "name": "x", + "url": "https://x.com/ichifarm" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + }, + { + "name": "discord", + "url": "https://discord.com/invite/DvsYCfK8" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78a3B2f1e7eec1073088ea4a193618743F81cEf8/logo.png b/blockchains/ethereum/assets/0x78a3B2f1e7eec1073088ea4a193618743F81cEf8/logo.png new file mode 100644 index 00000000..8d4e8974 Binary files /dev/null and b/blockchains/ethereum/assets/0x78a3B2f1e7eec1073088ea4a193618743F81cEf8/logo.png differ diff --git a/blockchains/ethereum/assets/0x78a685E0762096ed0F98107212e98F8C35A9D1D8/info.json b/blockchains/ethereum/assets/0x78a685E0762096ed0F98107212e98F8C35A9D1D8/info.json new file mode 100644 index 00000000..70f14a65 --- /dev/null +++ b/blockchains/ethereum/assets/0x78a685E0762096ed0F98107212e98F8C35A9D1D8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bloc", + "symbol": "Dap", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "https://www.daplabsllc.org", + "explorer": "https://etherscan.io/token/0x78a685E0762096ed0F98107212e98F8C35A9D1D8", + "status": "abandoned", + "id": "0x78a685E0762096ed0F98107212e98F8C35A9D1D8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78a685E0762096ed0F98107212e98F8C35A9D1D8/logo.png b/blockchains/ethereum/assets/0x78a685E0762096ed0F98107212e98F8C35A9D1D8/logo.png new file mode 100644 index 00000000..44dc14b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x78a685E0762096ed0F98107212e98F8C35A9D1D8/logo.png differ diff --git a/blockchains/ethereum/assets/0x78a73B6CBc5D183CE56e786f6e905CaDEC63547B/info.json b/blockchains/ethereum/assets/0x78a73B6CBc5D183CE56e786f6e905CaDEC63547B/info.json new file mode 100644 index 00000000..26359c62 --- /dev/null +++ b/blockchains/ethereum/assets/0x78a73B6CBc5D183CE56e786f6e905CaDEC63547B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fabric Token", + "symbol": "FT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x78a73B6CBc5D183CE56e786f6e905CaDEC63547B", + "status": "abandoned", + "id": "0x78a73B6CBc5D183CE56e786f6e905CaDEC63547B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78a73B6CBc5D183CE56e786f6e905CaDEC63547B/logo.png b/blockchains/ethereum/assets/0x78a73B6CBc5D183CE56e786f6e905CaDEC63547B/logo.png new file mode 100644 index 00000000..eeb80111 Binary files /dev/null and b/blockchains/ethereum/assets/0x78a73B6CBc5D183CE56e786f6e905CaDEC63547B/logo.png differ diff --git a/blockchains/ethereum/assets/0x78c292D1445E6b9558bf42e8BC369271DeD062eA/info.json b/blockchains/ethereum/assets/0x78c292D1445E6b9558bf42e8BC369271DeD062eA/info.json new file mode 100644 index 00000000..527b1f07 --- /dev/null +++ b/blockchains/ethereum/assets/0x78c292D1445E6b9558bf42e8BC369271DeD062eA/info.json @@ -0,0 +1,11 @@ +{ + "name": "CyberMusic", + "symbol": "CYMT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://cybermusic.io/", + "explorer": "https://etherscan.io/token/0x78c292D1445E6b9558bf42e8BC369271DeD062eA", + "status": "abandoned", + "id": "0x78c292D1445E6b9558bf42e8BC369271DeD062eA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78c292D1445E6b9558bf42e8BC369271DeD062eA/logo.png b/blockchains/ethereum/assets/0x78c292D1445E6b9558bf42e8BC369271DeD062eA/logo.png new file mode 100644 index 00000000..2313367e Binary files /dev/null and b/blockchains/ethereum/assets/0x78c292D1445E6b9558bf42e8BC369271DeD062eA/logo.png differ diff --git a/blockchains/ethereum/assets/0x78fAdca7874AFA0FDeE1cAfd9A80D6Ace86325Fe/info.json b/blockchains/ethereum/assets/0x78fAdca7874AFA0FDeE1cAfd9A80D6Ace86325Fe/info.json new file mode 100644 index 00000000..95b4ed9a --- /dev/null +++ b/blockchains/ethereum/assets/0x78fAdca7874AFA0FDeE1cAfd9A80D6Ace86325Fe/info.json @@ -0,0 +1,11 @@ +{ + "name": "EIC token", + "symbol": "EIC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x78fAdca7874AFA0FDeE1cAfd9A80D6Ace86325Fe", + "status": "abandoned", + "id": "0x78fAdca7874AFA0FDeE1cAfd9A80D6Ace86325Fe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x78fAdca7874AFA0FDeE1cAfd9A80D6Ace86325Fe/logo.png b/blockchains/ethereum/assets/0x78fAdca7874AFA0FDeE1cAfd9A80D6Ace86325Fe/logo.png new file mode 100644 index 00000000..3fd0f914 Binary files /dev/null and b/blockchains/ethereum/assets/0x78fAdca7874AFA0FDeE1cAfd9A80D6Ace86325Fe/logo.png differ diff --git a/blockchains/ethereum/assets/0x790bFaCaE71576107C068f494c8A6302aea640cb/info.json b/blockchains/ethereum/assets/0x790bFaCaE71576107C068f494c8A6302aea640cb/info.json new file mode 100644 index 00000000..b2097426 --- /dev/null +++ b/blockchains/ethereum/assets/0x790bFaCaE71576107C068f494c8A6302aea640cb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crypto Boss Coin", + "symbol": "CBC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://cryptoboss.me/", + "explorer": "https://etherscan.io/token/0x790bFaCaE71576107C068f494c8A6302aea640cb", + "status": "abandoned", + "id": "0x790bFaCaE71576107C068f494c8A6302aea640cb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x790bFaCaE71576107C068f494c8A6302aea640cb/logo.png b/blockchains/ethereum/assets/0x790bFaCaE71576107C068f494c8A6302aea640cb/logo.png new file mode 100644 index 00000000..9d64252f Binary files /dev/null and b/blockchains/ethereum/assets/0x790bFaCaE71576107C068f494c8A6302aea640cb/logo.png differ diff --git a/blockchains/ethereum/assets/0x791425156956E39F2ab8AB06B79DE189C18e95e5/info.json b/blockchains/ethereum/assets/0x791425156956E39F2ab8AB06B79DE189C18e95e5/info.json new file mode 100644 index 00000000..179437c3 --- /dev/null +++ b/blockchains/ethereum/assets/0x791425156956E39F2ab8AB06B79DE189C18e95e5/info.json @@ -0,0 +1,11 @@ +{ + "name": "IcoBay", + "symbol": "IBT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.icobay.net/", + "explorer": "https://etherscan.io/token/0x791425156956E39F2ab8AB06B79DE189C18e95e5", + "status": "abandoned", + "id": "0x791425156956E39F2ab8AB06B79DE189C18e95e5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x791425156956E39F2ab8AB06B79DE189C18e95e5/logo.png b/blockchains/ethereum/assets/0x791425156956E39F2ab8AB06B79DE189C18e95e5/logo.png new file mode 100644 index 00000000..2e140589 Binary files /dev/null and b/blockchains/ethereum/assets/0x791425156956E39F2ab8AB06B79DE189C18e95e5/logo.png differ diff --git a/blockchains/ethereum/assets/0x79186Ba0FC6fa49fd9DB2F0bA34F36F8c24489c7/info.json b/blockchains/ethereum/assets/0x79186Ba0FC6fa49fd9DB2F0bA34F36F8c24489c7/info.json new file mode 100644 index 00000000..31ecda31 --- /dev/null +++ b/blockchains/ethereum/assets/0x79186Ba0FC6fa49fd9DB2F0bA34F36F8c24489c7/info.json @@ -0,0 +1,11 @@ +{ + "name": "CrowdCoinage", + "symbol": "CCOS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x79186Ba0FC6fa49fd9DB2F0bA34F36F8c24489c7", + "status": "abandoned", + "id": "0x79186Ba0FC6fa49fd9DB2F0bA34F36F8c24489c7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79186Ba0FC6fa49fd9DB2F0bA34F36F8c24489c7/logo.png b/blockchains/ethereum/assets/0x79186Ba0FC6fa49fd9DB2F0bA34F36F8c24489c7/logo.png new file mode 100644 index 00000000..e384ad26 Binary files /dev/null and b/blockchains/ethereum/assets/0x79186Ba0FC6fa49fd9DB2F0bA34F36F8c24489c7/logo.png differ diff --git a/blockchains/ethereum/assets/0x79327212F66c259f0A0b46961D2aEF91A503a9E1/info.json b/blockchains/ethereum/assets/0x79327212F66c259f0A0b46961D2aEF91A503a9E1/info.json new file mode 100644 index 00000000..ed3b2de8 --- /dev/null +++ b/blockchains/ethereum/assets/0x79327212F66c259f0A0b46961D2aEF91A503a9E1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Score", + "symbol": "SCORE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x79327212F66c259f0A0b46961D2aEF91A503a9E1", + "status": "abandoned", + "id": "0x79327212F66c259f0A0b46961D2aEF91A503a9E1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79327212F66c259f0A0b46961D2aEF91A503a9E1/logo.png b/blockchains/ethereum/assets/0x79327212F66c259f0A0b46961D2aEF91A503a9E1/logo.png new file mode 100644 index 00000000..8d5eefce Binary files /dev/null and b/blockchains/ethereum/assets/0x79327212F66c259f0A0b46961D2aEF91A503a9E1/logo.png differ diff --git a/blockchains/ethereum/assets/0x793786e2dd4Cc492ed366a94B88a3Ff9ba5E7546/info.json b/blockchains/ethereum/assets/0x793786e2dd4Cc492ed366a94B88a3Ff9ba5E7546/info.json new file mode 100644 index 00000000..46af6688 --- /dev/null +++ b/blockchains/ethereum/assets/0x793786e2dd4Cc492ed366a94B88a3Ff9ba5E7546/info.json @@ -0,0 +1,21 @@ +{ + "name": "AXIA TOKEN", + "website": "https://axiaprotocol.io", + "description": " Axia Protocol is a Decentralized platform for Cryptocurrency Index Fund management.", + "explorer": "https://etherscan.io/token/0x793786e2dd4Cc492ed366a94B88a3Ff9ba5E7546", + "type": "ERC20", + "symbol": "AXIAv3", + "decimals": 18, + "status": "active", + "id": "0x793786e2dd4Cc492ed366a94B88a3Ff9ba5E7546", + "links": [ + { + "name": "github", + "url": "https://github.com/axiaprotocol" + }, + { + "name": "whitepaper", + "url": "https://axiaprotocol.io/Axia%20Protocol%20Whitepaper%202020.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x793786e2dd4Cc492ed366a94B88a3Ff9ba5E7546/logo.png b/blockchains/ethereum/assets/0x793786e2dd4Cc492ed366a94B88a3Ff9ba5E7546/logo.png new file mode 100644 index 00000000..180f0b56 Binary files /dev/null and b/blockchains/ethereum/assets/0x793786e2dd4Cc492ed366a94B88a3Ff9ba5E7546/logo.png differ diff --git a/blockchains/ethereum/assets/0x793e2602A8396468f3CE6E34C1B6C6Fd6D985bAD/info.json b/blockchains/ethereum/assets/0x793e2602A8396468f3CE6E34C1B6C6Fd6D985bAD/info.json new file mode 100644 index 00000000..e47fd263 --- /dev/null +++ b/blockchains/ethereum/assets/0x793e2602A8396468f3CE6E34C1B6C6Fd6D985bAD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Saint Fame: $ICK Mask", + "symbol": "ICK", + "type": "ERC20", + "decimals": 18, + "description": "The $ICK Mask is a face mask by Saint Fame, the world's first internet-owned fashion house. It is the first piece collectively designed by the disciples of Saint Fame.", + "website": "https://www.saintfame.com/SICK", + "explorer": "https://etherscan.io/token/0x793e2602A8396468f3CE6E34C1B6C6Fd6D985bAD", + "status": "active", + "id": "0x793e2602A8396468f3CE6E34C1B6C6Fd6D985bAD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x793e2602A8396468f3CE6E34C1B6C6Fd6D985bAD/logo.png b/blockchains/ethereum/assets/0x793e2602A8396468f3CE6E34C1B6C6Fd6D985bAD/logo.png new file mode 100644 index 00000000..83c4f321 Binary files /dev/null and b/blockchains/ethereum/assets/0x793e2602A8396468f3CE6E34C1B6C6Fd6D985bAD/logo.png differ diff --git a/blockchains/ethereum/assets/0x79650799e7899A802cB96C0Bc33a6a8d4CE4936C/info.json b/blockchains/ethereum/assets/0x79650799e7899A802cB96C0Bc33a6a8d4CE4936C/info.json new file mode 100644 index 00000000..da6d16b0 --- /dev/null +++ b/blockchains/ethereum/assets/0x79650799e7899A802cB96C0Bc33a6a8d4CE4936C/info.json @@ -0,0 +1,11 @@ +{ + "name": "AIT", + "symbol": "AIT", + "type": "ERC20", + "decimals": 18, + "description": "AICHAIN (AIT) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.aichain.me", + "explorer": "https://etherscan.io/token/0x79650799e7899A802cB96C0Bc33a6a8d4CE4936C", + "status": "active", + "id": "0x79650799e7899A802cB96C0Bc33a6a8d4CE4936C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79650799e7899A802cB96C0Bc33a6a8d4CE4936C/logo.png b/blockchains/ethereum/assets/0x79650799e7899A802cB96C0Bc33a6a8d4CE4936C/logo.png new file mode 100644 index 00000000..2704441e Binary files /dev/null and b/blockchains/ethereum/assets/0x79650799e7899A802cB96C0Bc33a6a8d4CE4936C/logo.png differ diff --git a/blockchains/ethereum/assets/0x7968bc6a03017eA2de509AAA816F163Db0f35148/info.json b/blockchains/ethereum/assets/0x7968bc6a03017eA2de509AAA816F163Db0f35148/info.json new file mode 100644 index 00000000..d776f30a --- /dev/null +++ b/blockchains/ethereum/assets/0x7968bc6a03017eA2de509AAA816F163Db0f35148/info.json @@ -0,0 +1,12 @@ +{ + "name": "Hedget", + "website": "https://www.hedget.com", + "description": "Hedget is a decentralised protocol for options trading.", + "explorer": "https://etherscan.io/token/0x7968bc6a03017eA2de509AAA816F163Db0f35148", + "research": "", + "type": "ERC20", + "symbol": "HGET", + "decimals": 6, + "status": "active", + "id": "0x7968bc6a03017eA2de509AAA816F163Db0f35148" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7968bc6a03017eA2de509AAA816F163Db0f35148/logo.png b/blockchains/ethereum/assets/0x7968bc6a03017eA2de509AAA816F163Db0f35148/logo.png new file mode 100644 index 00000000..9d0f4c8d Binary files /dev/null and b/blockchains/ethereum/assets/0x7968bc6a03017eA2de509AAA816F163Db0f35148/logo.png differ diff --git a/blockchains/ethereum/assets/0x796E47B85A0d759F300f1de96A3583004235D4D8/info.json b/blockchains/ethereum/assets/0x796E47B85A0d759F300f1de96A3583004235D4D8/info.json new file mode 100644 index 00000000..01b1d6d0 --- /dev/null +++ b/blockchains/ethereum/assets/0x796E47B85A0d759F300f1de96A3583004235D4D8/info.json @@ -0,0 +1,11 @@ +{ + "name": "electrumdark", + "symbol": "ELD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://electrumdark.com", + "explorer": "https://etherscan.io/token/0x796E47B85A0d759F300f1de96A3583004235D4D8", + "status": "abandoned", + "id": "0x796E47B85A0d759F300f1de96A3583004235D4D8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x796E47B85A0d759F300f1de96A3583004235D4D8/logo.png b/blockchains/ethereum/assets/0x796E47B85A0d759F300f1de96A3583004235D4D8/logo.png new file mode 100644 index 00000000..404fd094 Binary files /dev/null and b/blockchains/ethereum/assets/0x796E47B85A0d759F300f1de96A3583004235D4D8/logo.png differ diff --git a/blockchains/ethereum/assets/0x798D1bE841a82a273720CE31c822C61a67a601C3/info.json b/blockchains/ethereum/assets/0x798D1bE841a82a273720CE31c822C61a67a601C3/info.json new file mode 100644 index 00000000..8c9b1439 --- /dev/null +++ b/blockchains/ethereum/assets/0x798D1bE841a82a273720CE31c822C61a67a601C3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digg (DIGG)", + "type": "ERC20", + "symbol": "DIGG", + "decimals": 9, + "website": "https://badger.finance/", + "description": "DIGG is the first elastic supply rebase token where its price is pegged to Bitcoin’s price. It is one of the products released by Badger DAO.", + "explorer": "https://etherscan.io/token/0x798d1be841a82a273720ce31c822c61a67a601c3", + "status": "active", + "id": "0x798D1bE841a82a273720CE31c822C61a67a601C3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x798D1bE841a82a273720CE31c822C61a67a601C3/logo.png b/blockchains/ethereum/assets/0x798D1bE841a82a273720CE31c822C61a67a601C3/logo.png new file mode 100644 index 00000000..e2073293 Binary files /dev/null and b/blockchains/ethereum/assets/0x798D1bE841a82a273720CE31c822C61a67a601C3/logo.png differ diff --git a/blockchains/ethereum/assets/0x7995ab36bB307Afa6A683C24a25d90Dc1Ea83566/info.json b/blockchains/ethereum/assets/0x7995ab36bB307Afa6A683C24a25d90Dc1Ea83566/info.json new file mode 100644 index 00000000..1629fef7 --- /dev/null +++ b/blockchains/ethereum/assets/0x7995ab36bB307Afa6A683C24a25d90Dc1Ea83566/info.json @@ -0,0 +1,11 @@ +{ + "name": "HitchainCoin", + "symbol": "HIT", + "type": "ERC20", + "decimals": 6, + "description": "HitChain is a decentralized and collaborative community built to value developers’ works with a transparent credit system using blockchain technology. It is a community of the developers, by the developers, for the developers.", + "website": "http://hitchain.org/index.html", + "explorer": "https://etherscan.io/token/0x7995ab36bB307Afa6A683C24a25d90Dc1Ea83566", + "status": "active", + "id": "0x7995ab36bB307Afa6A683C24a25d90Dc1Ea83566" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7995ab36bB307Afa6A683C24a25d90Dc1Ea83566/logo.png b/blockchains/ethereum/assets/0x7995ab36bB307Afa6A683C24a25d90Dc1Ea83566/logo.png new file mode 100644 index 00000000..28b7d6e9 Binary files /dev/null and b/blockchains/ethereum/assets/0x7995ab36bB307Afa6A683C24a25d90Dc1Ea83566/logo.png differ diff --git a/blockchains/ethereum/assets/0x799a4202c12ca952cB311598a024C80eD371a41e/info.json b/blockchains/ethereum/assets/0x799a4202c12ca952cB311598a024C80eD371a41e/info.json new file mode 100644 index 00000000..b4347bd8 --- /dev/null +++ b/blockchains/ethereum/assets/0x799a4202c12ca952cB311598a024C80eD371a41e/info.json @@ -0,0 +1,11 @@ +{ + "name": "HarmonyOne", + "symbol": "ONE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x799a4202c12ca952cB311598a024C80eD371a41e", + "status": "abandoned", + "id": "0x799a4202c12ca952cB311598a024C80eD371a41e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x799a4202c12ca952cB311598a024C80eD371a41e/logo.png b/blockchains/ethereum/assets/0x799a4202c12ca952cB311598a024C80eD371a41e/logo.png new file mode 100644 index 00000000..a2e1b712 Binary files /dev/null and b/blockchains/ethereum/assets/0x799a4202c12ca952cB311598a024C80eD371a41e/logo.png differ diff --git a/blockchains/ethereum/assets/0x799d214d7143B766cDd4979cd0280939288ba931/info.json b/blockchains/ethereum/assets/0x799d214d7143B766cDd4979cd0280939288ba931/info.json new file mode 100644 index 00000000..22132949 --- /dev/null +++ b/blockchains/ethereum/assets/0x799d214d7143B766cDd4979cd0280939288ba931/info.json @@ -0,0 +1,11 @@ +{ + "name": "Countinghouse Fund", + "symbol": "CHT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x799d214d7143B766cDd4979cd0280939288ba931", + "status": "abandoned", + "id": "0x799d214d7143B766cDd4979cd0280939288ba931" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x799d214d7143B766cDd4979cd0280939288ba931/logo.png b/blockchains/ethereum/assets/0x799d214d7143B766cDd4979cd0280939288ba931/logo.png new file mode 100644 index 00000000..44c6bf02 Binary files /dev/null and b/blockchains/ethereum/assets/0x799d214d7143B766cDd4979cd0280939288ba931/logo.png differ diff --git a/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/info.json b/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/info.json new file mode 100644 index 00000000..eeeebf9f --- /dev/null +++ b/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/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://etherscan.io/token/0x799ebfabe77a6e34311eeee9825190b9ece32824", + "type": "ERC20", + "symbol": "BTRST", + "decimals": 18, + "status": "active", + "id": "0x799ebfABE77a6E34311eeEe9825190B9ECe32824", + "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/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/logo.png b/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/logo.png new file mode 100644 index 00000000..885fbedb Binary files /dev/null and b/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/logo.png differ diff --git a/blockchains/ethereum/assets/0x79A00A26f05f901fBC7D29cccf1156eD0599b5FC/info.json b/blockchains/ethereum/assets/0x79A00A26f05f901fBC7D29cccf1156eD0599b5FC/info.json new file mode 100644 index 00000000..991c9651 --- /dev/null +++ b/blockchains/ethereum/assets/0x79A00A26f05f901fBC7D29cccf1156eD0599b5FC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Astra", + "symbol": "AST", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x79A00A26f05f901fBC7D29cccf1156eD0599b5FC", + "status": "abandoned", + "id": "0x79A00A26f05f901fBC7D29cccf1156eD0599b5FC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79A00A26f05f901fBC7D29cccf1156eD0599b5FC/logo.png b/blockchains/ethereum/assets/0x79A00A26f05f901fBC7D29cccf1156eD0599b5FC/logo.png new file mode 100644 index 00000000..03fe75f8 Binary files /dev/null and b/blockchains/ethereum/assets/0x79A00A26f05f901fBC7D29cccf1156eD0599b5FC/logo.png differ diff --git a/blockchains/ethereum/assets/0x79C5a1Ae586322A07BfB60be36E1b31CE8C84A1e/info.json b/blockchains/ethereum/assets/0x79C5a1Ae586322A07BfB60be36E1b31CE8C84A1e/info.json new file mode 100644 index 00000000..2be1ce0c --- /dev/null +++ b/blockchains/ethereum/assets/0x79C5a1Ae586322A07BfB60be36E1b31CE8C84A1e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Freight Trust Network", + "symbol": "EDI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://freighttrust.com/", + "explorer": "https://etherscan.io/token/0x79C5a1Ae586322A07BfB60be36E1b31CE8C84A1e", + "status": "abandoned", + "id": "0x79C5a1Ae586322A07BfB60be36E1b31CE8C84A1e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79C5a1Ae586322A07BfB60be36E1b31CE8C84A1e/logo.png b/blockchains/ethereum/assets/0x79C5a1Ae586322A07BfB60be36E1b31CE8C84A1e/logo.png new file mode 100644 index 00000000..15538b7e Binary files /dev/null and b/blockchains/ethereum/assets/0x79C5a1Ae586322A07BfB60be36E1b31CE8C84A1e/logo.png differ diff --git a/blockchains/ethereum/assets/0x79C6ed6D205Dd41F00F3561a1D684C1F39152A20/info.json b/blockchains/ethereum/assets/0x79C6ed6D205Dd41F00F3561a1D684C1F39152A20/info.json new file mode 100644 index 00000000..835e6cae --- /dev/null +++ b/blockchains/ethereum/assets/0x79C6ed6D205Dd41F00F3561a1D684C1F39152A20/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long ZRX-DAI 3x v2", + "symbol": "dLZRX3x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x79C6ed6D205Dd41F00F3561a1D684C1F39152A20", + "status": "abandoned", + "id": "0x79C6ed6D205Dd41F00F3561a1D684C1F39152A20" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79C6ed6D205Dd41F00F3561a1D684C1F39152A20/logo.png b/blockchains/ethereum/assets/0x79C6ed6D205Dd41F00F3561a1D684C1F39152A20/logo.png new file mode 100644 index 00000000..bf1de2f3 Binary files /dev/null and b/blockchains/ethereum/assets/0x79C6ed6D205Dd41F00F3561a1D684C1F39152A20/logo.png differ diff --git a/blockchains/ethereum/assets/0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815/info.json b/blockchains/ethereum/assets/0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815/info.json new file mode 100644 index 00000000..2b6629b3 --- /dev/null +++ b/blockchains/ethereum/assets/0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815/info.json @@ -0,0 +1,52 @@ +{ + "name": "Ariva", + "type": "ERC20", + "symbol": "ARV", + "decimals": 8, + "website": "https://www.ariva.digital/", + "description": "Ariva (ARV) is a cryptocurrency supported by Ariva Co., produced for active use in global and local tourism and travel networks in the near future.", + "explorer": "https://etherscan.io/token/0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815", + "status": "active", + "id": "0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815", + "links": [ + { + "name": "x", + "url": "https://x.com/ArivaCoin" + }, + { + "name": "github", + "url": "https://github.com/ariva-digital" + }, + { + "name": "telegram", + "url": "https://t.me/ariva_arv" + }, + { + "name": "telegram_news", + "url": "https://t.me/arivadigital" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCYab7J37fMRtP7ucjEc0eog" + }, + { + "name": "facebook", + "url": "https://facebook.com/arivadigital" + }, + { + "name": "medium", + "url": "https://medium.com/@arivacoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ariva/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ariva" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815/logo.png b/blockchains/ethereum/assets/0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815/logo.png new file mode 100644 index 00000000..e381b4c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815/logo.png differ diff --git a/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/info.json b/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/info.json new file mode 100644 index 00000000..d3f167e1 --- /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 00000000..985650b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/logo.png differ diff --git a/blockchains/ethereum/assets/0x79b0CFb685cC88d79b67Ee3eedB912E369D0969f/info.json b/blockchains/ethereum/assets/0x79b0CFb685cC88d79b67Ee3eedB912E369D0969f/info.json new file mode 100644 index 00000000..13ca9ee8 --- /dev/null +++ b/blockchains/ethereum/assets/0x79b0CFb685cC88d79b67Ee3eedB912E369D0969f/info.json @@ -0,0 +1,11 @@ +{ + "name": "IRCM", + "symbol": "IRCM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x79b0CFb685cC88d79b67Ee3eedB912E369D0969f", + "status": "abandoned", + "id": "0x79b0CFb685cC88d79b67Ee3eedB912E369D0969f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79b0CFb685cC88d79b67Ee3eedB912E369D0969f/logo.png b/blockchains/ethereum/assets/0x79b0CFb685cC88d79b67Ee3eedB912E369D0969f/logo.png new file mode 100644 index 00000000..48ef6414 Binary files /dev/null and b/blockchains/ethereum/assets/0x79b0CFb685cC88d79b67Ee3eedB912E369D0969f/logo.png differ diff --git a/blockchains/ethereum/assets/0x79b4D12Fa63A8d1202b26c5Ba6d62136A4A09dDa/info.json b/blockchains/ethereum/assets/0x79b4D12Fa63A8d1202b26c5Ba6d62136A4A09dDa/info.json new file mode 100644 index 00000000..8e2cdc6e --- /dev/null +++ b/blockchains/ethereum/assets/0x79b4D12Fa63A8d1202b26c5Ba6d62136A4A09dDa/info.json @@ -0,0 +1,11 @@ +{ + "name": "SymVerse", + "symbol": "SYM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x79b4D12Fa63A8d1202b26c5Ba6d62136A4A09dDa", + "status": "abandoned", + "id": "0x79b4D12Fa63A8d1202b26c5Ba6d62136A4A09dDa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79b4D12Fa63A8d1202b26c5Ba6d62136A4A09dDa/logo.png b/blockchains/ethereum/assets/0x79b4D12Fa63A8d1202b26c5Ba6d62136A4A09dDa/logo.png new file mode 100644 index 00000000..2f9f24ff Binary files /dev/null and b/blockchains/ethereum/assets/0x79b4D12Fa63A8d1202b26c5Ba6d62136A4A09dDa/logo.png differ diff --git a/blockchains/ethereum/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/info.json b/blockchains/ethereum/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/info.json new file mode 100644 index 00000000..13e58042 --- /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 00000000..94b5bcfc Binary files /dev/null and b/blockchains/ethereum/assets/0x79bbF4508B1391af3A0F4B30bb5FC4aa9ab0E07C/logo.png differ diff --git a/blockchains/ethereum/assets/0x79c71D3436F39Ce382D0f58F1B011D88100B9D91/info.json b/blockchains/ethereum/assets/0x79c71D3436F39Ce382D0f58F1B011D88100B9D91/info.json new file mode 100644 index 00000000..da17924a --- /dev/null +++ b/blockchains/ethereum/assets/0x79c71D3436F39Ce382D0f58F1B011D88100B9D91/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xeonbit Token", + "symbol": "XNS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://xeonbit.com/", + "explorer": "https://etherscan.io/token/0x79c71D3436F39Ce382D0f58F1B011D88100B9D91", + "status": "abandoned", + "id": "0x79c71D3436F39Ce382D0f58F1B011D88100B9D91" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79c71D3436F39Ce382D0f58F1B011D88100B9D91/logo.png b/blockchains/ethereum/assets/0x79c71D3436F39Ce382D0f58F1B011D88100B9D91/logo.png new file mode 100644 index 00000000..241091cc Binary files /dev/null and b/blockchains/ethereum/assets/0x79c71D3436F39Ce382D0f58F1B011D88100B9D91/logo.png differ diff --git a/blockchains/ethereum/assets/0x79cB5d2936F814e0600e8adbB5De9d9Bc3341560/info.json b/blockchains/ethereum/assets/0x79cB5d2936F814e0600e8adbB5De9d9Bc3341560/info.json new file mode 100644 index 00000000..ceb3b32c --- /dev/null +++ b/blockchains/ethereum/assets/0x79cB5d2936F814e0600e8adbB5De9d9Bc3341560/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR 700", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x79cB5d2936F814e0600e8adbB5De9d9Bc3341560", + "status": "abandoned", + "id": "0x79cB5d2936F814e0600e8adbB5De9d9Bc3341560" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79cB5d2936F814e0600e8adbB5De9d9Bc3341560/logo.png b/blockchains/ethereum/assets/0x79cB5d2936F814e0600e8adbB5De9d9Bc3341560/logo.png new file mode 100644 index 00000000..3f499c14 Binary files /dev/null and b/blockchains/ethereum/assets/0x79cB5d2936F814e0600e8adbB5De9d9Bc3341560/logo.png differ diff --git a/blockchains/ethereum/assets/0x79cdFa04e3c4EB58C4f49DAE78b322E5b0D38788/info.json b/blockchains/ethereum/assets/0x79cdFa04e3c4EB58C4f49DAE78b322E5b0D38788/info.json new file mode 100644 index 00000000..b2786cd3 --- /dev/null +++ b/blockchains/ethereum/assets/0x79cdFa04e3c4EB58C4f49DAE78b322E5b0D38788/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueFeedBack", + "symbol": "TFB", + "type": "ERC20", + "decimals": 18, + "description": "The participants of the platform can keep their anonymity while completing surveys and receive TFB tokens.", + "website": "https://www.truefeedbackchain.com", + "explorer": "https://etherscan.io/token/0x79cdFa04e3c4EB58C4f49DAE78b322E5b0D38788", + "status": "active", + "id": "0x79cdFa04e3c4EB58C4f49DAE78b322E5b0D38788" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79cdFa04e3c4EB58C4f49DAE78b322E5b0D38788/logo.png b/blockchains/ethereum/assets/0x79cdFa04e3c4EB58C4f49DAE78b322E5b0D38788/logo.png new file mode 100644 index 00000000..8db202e0 Binary files /dev/null and b/blockchains/ethereum/assets/0x79cdFa04e3c4EB58C4f49DAE78b322E5b0D38788/logo.png differ diff --git a/blockchains/ethereum/assets/0x79dcD7320F227A368F0b73B0aF2997d2cB3888D6/info.json b/blockchains/ethereum/assets/0x79dcD7320F227A368F0b73B0aF2997d2cB3888D6/info.json new file mode 100644 index 00000000..564e47f1 --- /dev/null +++ b/blockchains/ethereum/assets/0x79dcD7320F227A368F0b73B0aF2997d2cB3888D6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Maya", + "symbol": "MAYA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x79dcD7320F227A368F0b73B0aF2997d2cB3888D6", + "status": "abandoned", + "id": "0x79dcD7320F227A368F0b73B0aF2997d2cB3888D6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79dcD7320F227A368F0b73B0aF2997d2cB3888D6/logo.png b/blockchains/ethereum/assets/0x79dcD7320F227A368F0b73B0aF2997d2cB3888D6/logo.png new file mode 100644 index 00000000..3fc1c77e Binary files /dev/null and b/blockchains/ethereum/assets/0x79dcD7320F227A368F0b73B0aF2997d2cB3888D6/logo.png differ diff --git a/blockchains/ethereum/assets/0x79fF677aF16e0e173C55ae571E5d9852A1c8f2Ff/info.json b/blockchains/ethereum/assets/0x79fF677aF16e0e173C55ae571E5d9852A1c8f2Ff/info.json new file mode 100644 index 00000000..f6d61329 --- /dev/null +++ b/blockchains/ethereum/assets/0x79fF677aF16e0e173C55ae571E5d9852A1c8f2Ff/info.json @@ -0,0 +1,11 @@ +{ + "name": "GlobalAssetsChain", + "symbol": "GAX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x79fF677aF16e0e173C55ae571E5d9852A1c8f2Ff", + "status": "abandoned", + "id": "0x79fF677aF16e0e173C55ae571E5d9852A1c8f2Ff" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x79fF677aF16e0e173C55ae571E5d9852A1c8f2Ff/logo.png b/blockchains/ethereum/assets/0x79fF677aF16e0e173C55ae571E5d9852A1c8f2Ff/logo.png new file mode 100644 index 00000000..edab7de5 Binary files /dev/null and b/blockchains/ethereum/assets/0x79fF677aF16e0e173C55ae571E5d9852A1c8f2Ff/logo.png differ diff --git a/blockchains/ethereum/assets/0x7A07E1a0c2514D51132183EcfeA2A880Ec3b7648/info.json b/blockchains/ethereum/assets/0x7A07E1a0c2514D51132183EcfeA2A880Ec3b7648/info.json new file mode 100644 index 00000000..9e4d015e --- /dev/null +++ b/blockchains/ethereum/assets/0x7A07E1a0c2514D51132183EcfeA2A880Ec3b7648/info.json @@ -0,0 +1,11 @@ +{ + "name": "IXE Token", + "symbol": "IXE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7A07E1a0c2514D51132183EcfeA2A880Ec3b7648", + "status": "abandoned", + "id": "0x7A07E1a0c2514D51132183EcfeA2A880Ec3b7648" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7A07E1a0c2514D51132183EcfeA2A880Ec3b7648/logo.png b/blockchains/ethereum/assets/0x7A07E1a0c2514D51132183EcfeA2A880Ec3b7648/logo.png new file mode 100644 index 00000000..3f32201c Binary files /dev/null and b/blockchains/ethereum/assets/0x7A07E1a0c2514D51132183EcfeA2A880Ec3b7648/logo.png differ diff --git a/blockchains/ethereum/assets/0x7A12a550cC13cE7c38c40a58465BfbB55D1EdC36/info.json b/blockchains/ethereum/assets/0x7A12a550cC13cE7c38c40a58465BfbB55D1EdC36/info.json new file mode 100644 index 00000000..8d8da6f9 --- /dev/null +++ b/blockchains/ethereum/assets/0x7A12a550cC13cE7c38c40a58465BfbB55D1EdC36/info.json @@ -0,0 +1,11 @@ +{ + "name": "cubecoin", + "website": "https://cubebit.io", + "description": "CubeBit is an innovative and extensive platform that tenders effortless, transparent, and secure way to grow your digital assets.", + "explorer": "https://etherscan.io/token/0x7a12a550cc13ce7c38c40a58465bfbb55d1edc36", + "type": "ERC20", + "symbol": "CUB", + "decimals": 18, + "status": "active", + "id": "0x7A12a550cC13cE7c38c40a58465BfbB55D1EdC36" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7A12a550cC13cE7c38c40a58465BfbB55D1EdC36/logo.png b/blockchains/ethereum/assets/0x7A12a550cC13cE7c38c40a58465BfbB55D1EdC36/logo.png new file mode 100644 index 00000000..0e933e91 Binary files /dev/null and b/blockchains/ethereum/assets/0x7A12a550cC13cE7c38c40a58465BfbB55D1EdC36/logo.png differ diff --git a/blockchains/ethereum/assets/0x7A2810d3d859Ed03ede523eB801a3B43B5e8979C/info.json b/blockchains/ethereum/assets/0x7A2810d3d859Ed03ede523eB801a3B43B5e8979C/info.json new file mode 100644 index 00000000..7f63c58f --- /dev/null +++ b/blockchains/ethereum/assets/0x7A2810d3d859Ed03ede523eB801a3B43B5e8979C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zodcoin", + "symbol": "ZDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7A2810d3d859Ed03ede523eB801a3B43B5e8979C", + "status": "abandoned", + "id": "0x7A2810d3d859Ed03ede523eB801a3B43B5e8979C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7A2810d3d859Ed03ede523eB801a3B43B5e8979C/logo.png b/blockchains/ethereum/assets/0x7A2810d3d859Ed03ede523eB801a3B43B5e8979C/logo.png new file mode 100644 index 00000000..08c7a427 Binary files /dev/null and b/blockchains/ethereum/assets/0x7A2810d3d859Ed03ede523eB801a3B43B5e8979C/logo.png differ diff --git a/blockchains/ethereum/assets/0x7A41e0517a5ecA4FdbC7FbebA4D4c47B9fF6DC63/info.json b/blockchains/ethereum/assets/0x7A41e0517a5ecA4FdbC7FbebA4D4c47B9fF6DC63/info.json new file mode 100644 index 00000000..859a3f3b --- /dev/null +++ b/blockchains/ethereum/assets/0x7A41e0517a5ecA4FdbC7FbebA4D4c47B9fF6DC63/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zeus Shield Coin", + "symbol": "ZSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://zsc.io/", + "explorer": "https://etherscan.io/token/0x7A41e0517a5ecA4FdbC7FbebA4D4c47B9fF6DC63", + "status": "abandoned", + "id": "0x7A41e0517a5ecA4FdbC7FbebA4D4c47B9fF6DC63" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7A41e0517a5ecA4FdbC7FbebA4D4c47B9fF6DC63/logo.png b/blockchains/ethereum/assets/0x7A41e0517a5ecA4FdbC7FbebA4D4c47B9fF6DC63/logo.png new file mode 100755 index 00000000..a8c2d536 Binary files /dev/null and b/blockchains/ethereum/assets/0x7A41e0517a5ecA4FdbC7FbebA4D4c47B9fF6DC63/logo.png differ diff --git a/blockchains/ethereum/assets/0x7A5599B97E8c4abB5dd06EBA0E9d1F75AF818DB9/info.json b/blockchains/ethereum/assets/0x7A5599B97E8c4abB5dd06EBA0E9d1F75AF818DB9/info.json new file mode 100644 index 00000000..368911c1 --- /dev/null +++ b/blockchains/ethereum/assets/0x7A5599B97E8c4abB5dd06EBA0E9d1F75AF818DB9/info.json @@ -0,0 +1,11 @@ +{ + "name": "OSMOTIC TOKEN", + "symbol": "RTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7A5599B97E8c4abB5dd06EBA0E9d1F75AF818DB9", + "status": "abandoned", + "id": "0x7A5599B97E8c4abB5dd06EBA0E9d1F75AF818DB9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7A5599B97E8c4abB5dd06EBA0E9d1F75AF818DB9/logo.png b/blockchains/ethereum/assets/0x7A5599B97E8c4abB5dd06EBA0E9d1F75AF818DB9/logo.png new file mode 100644 index 00000000..3d7a9fbb Binary files /dev/null and b/blockchains/ethereum/assets/0x7A5599B97E8c4abB5dd06EBA0E9d1F75AF818DB9/logo.png differ diff --git a/blockchains/ethereum/assets/0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71/info.json b/blockchains/ethereum/assets/0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71/info.json new file mode 100644 index 00000000..f9db2932 --- /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 00000000..f8ccec72 Binary files /dev/null and b/blockchains/ethereum/assets/0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71/logo.png differ diff --git a/blockchains/ethereum/assets/0x7A5E6ca9d335e343D1Ed12239F67248E056AFE2f/info.json b/blockchains/ethereum/assets/0x7A5E6ca9d335e343D1Ed12239F67248E056AFE2f/info.json new file mode 100644 index 00000000..5fe717cc --- /dev/null +++ b/blockchains/ethereum/assets/0x7A5E6ca9d335e343D1Ed12239F67248E056AFE2f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethash Miner", + "symbol": "HETM", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://www.ethash.net/", + "explorer": "https://etherscan.io/token/0x7A5E6ca9d335e343D1Ed12239F67248E056AFE2f", + "status": "abandoned", + "id": "0x7A5E6ca9d335e343D1Ed12239F67248E056AFE2f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7A5E6ca9d335e343D1Ed12239F67248E056AFE2f/logo.png b/blockchains/ethereum/assets/0x7A5E6ca9d335e343D1Ed12239F67248E056AFE2f/logo.png new file mode 100644 index 00000000..1bc87a4e Binary files /dev/null and b/blockchains/ethereum/assets/0x7A5E6ca9d335e343D1Ed12239F67248E056AFE2f/logo.png differ diff --git a/blockchains/ethereum/assets/0x7A69F675eA3886892a3bd15C1DD2A5a579b7f7dc/info.json b/blockchains/ethereum/assets/0x7A69F675eA3886892a3bd15C1DD2A5a579b7f7dc/info.json new file mode 100644 index 00000000..344d0a60 --- /dev/null +++ b/blockchains/ethereum/assets/0x7A69F675eA3886892a3bd15C1DD2A5a579b7f7dc/info.json @@ -0,0 +1,11 @@ +{ + "name": "DXM Solutions", + "symbol": "DXM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7A69F675eA3886892a3bd15C1DD2A5a579b7f7dc", + "status": "abandoned", + "id": "0x7A69F675eA3886892a3bd15C1DD2A5a579b7f7dc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7A69F675eA3886892a3bd15C1DD2A5a579b7f7dc/logo.png b/blockchains/ethereum/assets/0x7A69F675eA3886892a3bd15C1DD2A5a579b7f7dc/logo.png new file mode 100644 index 00000000..bc0d4c1d Binary files /dev/null and b/blockchains/ethereum/assets/0x7A69F675eA3886892a3bd15C1DD2A5a579b7f7dc/logo.png differ diff --git a/blockchains/ethereum/assets/0x7A74c427c833baD2A638E0fb203BA2C728f557C1/info.json b/blockchains/ethereum/assets/0x7A74c427c833baD2A638E0fb203BA2C728f557C1/info.json new file mode 100644 index 00000000..e872b951 --- /dev/null +++ b/blockchains/ethereum/assets/0x7A74c427c833baD2A638E0fb203BA2C728f557C1/info.json @@ -0,0 +1,11 @@ +{ + "name": "OrdoCoin", + "symbol": "RDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7A74c427c833baD2A638E0fb203BA2C728f557C1", + "status": "abandoned", + "id": "0x7A74c427c833baD2A638E0fb203BA2C728f557C1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7A74c427c833baD2A638E0fb203BA2C728f557C1/logo.png b/blockchains/ethereum/assets/0x7A74c427c833baD2A638E0fb203BA2C728f557C1/logo.png new file mode 100644 index 00000000..8458c22d Binary files /dev/null and b/blockchains/ethereum/assets/0x7A74c427c833baD2A638E0fb203BA2C728f557C1/logo.png differ diff --git a/blockchains/ethereum/assets/0x7A7F3Fa6FA036C97ec87617EEF82f44aF2A6F097/info.json b/blockchains/ethereum/assets/0x7A7F3Fa6FA036C97ec87617EEF82f44aF2A6F097/info.json new file mode 100644 index 00000000..787dd6d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x7A7F3Fa6FA036C97ec87617EEF82f44aF2A6F097/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST 5", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7A7F3Fa6FA036C97ec87617EEF82f44aF2A6F097", + "status": "abandoned", + "id": "0x7A7F3Fa6FA036C97ec87617EEF82f44aF2A6F097" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7A7F3Fa6FA036C97ec87617EEF82f44aF2A6F097/logo.png b/blockchains/ethereum/assets/0x7A7F3Fa6FA036C97ec87617EEF82f44aF2A6F097/logo.png new file mode 100644 index 00000000..c119a14f Binary files /dev/null and b/blockchains/ethereum/assets/0x7A7F3Fa6FA036C97ec87617EEF82f44aF2A6F097/logo.png differ diff --git a/blockchains/ethereum/assets/0x7A7b8be6F9c8b485da8E70b2da3b37946100F946/info.json b/blockchains/ethereum/assets/0x7A7b8be6F9c8b485da8E70b2da3b37946100F946/info.json new file mode 100644 index 00000000..c562d752 --- /dev/null +++ b/blockchains/ethereum/assets/0x7A7b8be6F9c8b485da8E70b2da3b37946100F946/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-15/30M45", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7A7b8be6F9c8b485da8E70b2da3b37946100F946", + "status": "abandoned", + "id": "0x7A7b8be6F9c8b485da8E70b2da3b37946100F946" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7A7b8be6F9c8b485da8E70b2da3b37946100F946/logo.png b/blockchains/ethereum/assets/0x7A7b8be6F9c8b485da8E70b2da3b37946100F946/logo.png new file mode 100644 index 00000000..020e69d7 Binary files /dev/null and b/blockchains/ethereum/assets/0x7A7b8be6F9c8b485da8E70b2da3b37946100F946/logo.png differ diff --git a/blockchains/ethereum/assets/0x7A8Ca2f815A260660158a38C34ca321A3605eCFE/info.json b/blockchains/ethereum/assets/0x7A8Ca2f815A260660158a38C34ca321A3605eCFE/info.json new file mode 100644 index 00000000..eacfbf28 --- /dev/null +++ b/blockchains/ethereum/assets/0x7A8Ca2f815A260660158a38C34ca321A3605eCFE/info.json @@ -0,0 +1,11 @@ +{ + "name": "BizzCoin", + "symbol": "BIZZ", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://bizzcoin.com/", + "explorer": "https://etherscan.io/token/0x7A8Ca2f815A260660158a38C34ca321A3605eCFE", + "status": "active", + "id": "0x7A8Ca2f815A260660158a38C34ca321A3605eCFE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7A8Ca2f815A260660158a38C34ca321A3605eCFE/logo.png b/blockchains/ethereum/assets/0x7A8Ca2f815A260660158a38C34ca321A3605eCFE/logo.png new file mode 100644 index 00000000..cced86ca Binary files /dev/null and b/blockchains/ethereum/assets/0x7A8Ca2f815A260660158a38C34ca321A3605eCFE/logo.png differ diff --git a/blockchains/ethereum/assets/0x7AA59A63d1D0C435a08bC96E11bef2E95aB66c40/info.json b/blockchains/ethereum/assets/0x7AA59A63d1D0C435a08bC96E11bef2E95aB66c40/info.json new file mode 100644 index 00000000..b41b8579 --- /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 00000000..b3759cdc Binary files /dev/null and b/blockchains/ethereum/assets/0x7AA59A63d1D0C435a08bC96E11bef2E95aB66c40/logo.png differ diff --git a/blockchains/ethereum/assets/0x7AAcAfb674be81F90dc19aF4f2047BB0EBAfbbe5/info.json b/blockchains/ethereum/assets/0x7AAcAfb674be81F90dc19aF4f2047BB0EBAfbbe5/info.json new file mode 100644 index 00000000..49d31b83 --- /dev/null +++ b/blockchains/ethereum/assets/0x7AAcAfb674be81F90dc19aF4f2047BB0EBAfbbe5/info.json @@ -0,0 +1,11 @@ +{ + "name": "GREENQUEEN", + "symbol": "GQC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7AAcAfb674be81F90dc19aF4f2047BB0EBAfbbe5", + "status": "abandoned", + "id": "0x7AAcAfb674be81F90dc19aF4f2047BB0EBAfbbe5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7AAcAfb674be81F90dc19aF4f2047BB0EBAfbbe5/logo.png b/blockchains/ethereum/assets/0x7AAcAfb674be81F90dc19aF4f2047BB0EBAfbbe5/logo.png new file mode 100644 index 00000000..7b91ddcb Binary files /dev/null and b/blockchains/ethereum/assets/0x7AAcAfb674be81F90dc19aF4f2047BB0EBAfbbe5/logo.png differ diff --git a/blockchains/ethereum/assets/0x7ABc8A5768E6bE61A6c693a6e4EAcb5B60602C4D/info.json b/blockchains/ethereum/assets/0x7ABc8A5768E6bE61A6c693a6e4EAcb5B60602C4D/info.json new file mode 100644 index 00000000..3b21c89b --- /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 00000000..06891815 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 00000000..af51861f --- /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 00000000..ef21853a Binary files /dev/null and b/blockchains/ethereum/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/logo.png differ diff --git a/blockchains/ethereum/assets/0x7Afe4978032e10D5Ac54ac8657C38F0000D55250/info.json b/blockchains/ethereum/assets/0x7Afe4978032e10D5Ac54ac8657C38F0000D55250/info.json new file mode 100644 index 00000000..a9809d44 --- /dev/null +++ b/blockchains/ethereum/assets/0x7Afe4978032e10D5Ac54ac8657C38F0000D55250/info.json @@ -0,0 +1,11 @@ +{ + "name": "Brennen", + "symbol": "BRN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7Afe4978032e10D5Ac54ac8657C38F0000D55250", + "status": "abandoned", + "id": "0x7Afe4978032e10D5Ac54ac8657C38F0000D55250" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7Afe4978032e10D5Ac54ac8657C38F0000D55250/logo.png b/blockchains/ethereum/assets/0x7Afe4978032e10D5Ac54ac8657C38F0000D55250/logo.png new file mode 100644 index 00000000..5e74505e Binary files /dev/null and b/blockchains/ethereum/assets/0x7Afe4978032e10D5Ac54ac8657C38F0000D55250/logo.png differ diff --git a/blockchains/ethereum/assets/0x7B0C06043468469967DBA22d1AF33d77d44056c8/info.json b/blockchains/ethereum/assets/0x7B0C06043468469967DBA22d1AF33d77d44056c8/info.json new file mode 100644 index 00000000..44dd8dd7 --- /dev/null +++ b/blockchains/ethereum/assets/0x7B0C06043468469967DBA22d1AF33d77d44056c8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Morpheus.Network", + "symbol": "MRPH", + "type": "ERC20", + "decimals": 4, + "description": "Launched in 2017 by a global team based in Canada, Taiwan and India. Morpheus.Network aims to digitally Integrate and automated global supply chains.", + "website": "https://morpheus.network", + "explorer": "https://etherscan.io/token/0x7B0C06043468469967DBA22d1AF33d77d44056c8", + "status": "active", + "id": "0x7B0C06043468469967DBA22d1AF33d77d44056c8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7B0C06043468469967DBA22d1AF33d77d44056c8/logo.png b/blockchains/ethereum/assets/0x7B0C06043468469967DBA22d1AF33d77d44056c8/logo.png new file mode 100644 index 00000000..df719cfc Binary files /dev/null and b/blockchains/ethereum/assets/0x7B0C06043468469967DBA22d1AF33d77d44056c8/logo.png differ diff --git a/blockchains/ethereum/assets/0x7B22938ca841aA392C93dBB7f4c42178E3d65E88/info.json b/blockchains/ethereum/assets/0x7B22938ca841aA392C93dBB7f4c42178E3d65E88/info.json new file mode 100644 index 00000000..b073daae --- /dev/null +++ b/blockchains/ethereum/assets/0x7B22938ca841aA392C93dBB7f4c42178E3d65E88/info.json @@ -0,0 +1,11 @@ +{ + "name": "AstroTokens", + "symbol": "ASTRO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://astronaut.capital/", + "explorer": "https://etherscan.io/token/0x7B22938ca841aA392C93dBB7f4c42178E3d65E88", + "status": "abandoned", + "id": "0x7B22938ca841aA392C93dBB7f4c42178E3d65E88" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7B22938ca841aA392C93dBB7f4c42178E3d65E88/logo.png b/blockchains/ethereum/assets/0x7B22938ca841aA392C93dBB7f4c42178E3d65E88/logo.png new file mode 100644 index 00000000..5d35add5 Binary files /dev/null and b/blockchains/ethereum/assets/0x7B22938ca841aA392C93dBB7f4c42178E3d65E88/logo.png differ diff --git a/blockchains/ethereum/assets/0x7B4B0B9b024109D182dCF3831222fbdA81369423/info.json b/blockchains/ethereum/assets/0x7B4B0B9b024109D182dCF3831222fbdA81369423/info.json new file mode 100644 index 00000000..6c81cec1 --- /dev/null +++ b/blockchains/ethereum/assets/0x7B4B0B9b024109D182dCF3831222fbdA81369423/info.json @@ -0,0 +1,14 @@ +{ + "name": "Binance USD (Portal from BSC)", + "type": "ERC20", + "symbol": "BUSDbs", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.paxos.com/busd/", + "explorer": "https://etherscan.io/token/0x7B4B0B9b024109D182dCF3831222fbdA81369423", + "status": "active", + "id": "0x7B4B0B9b024109D182dCF3831222fbdA81369423", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7B4B0B9b024109D182dCF3831222fbdA81369423/logo.png b/blockchains/ethereum/assets/0x7B4B0B9b024109D182dCF3831222fbdA81369423/logo.png new file mode 100644 index 00000000..58b66f7e Binary files /dev/null and b/blockchains/ethereum/assets/0x7B4B0B9b024109D182dCF3831222fbdA81369423/logo.png differ diff --git a/blockchains/ethereum/assets/0x7B68D272EDa2185ea2F9283F241b1c44C51e712A/info.json b/blockchains/ethereum/assets/0x7B68D272EDa2185ea2F9283F241b1c44C51e712A/info.json new file mode 100644 index 00000000..4d612705 --- /dev/null +++ b/blockchains/ethereum/assets/0x7B68D272EDa2185ea2F9283F241b1c44C51e712A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Okschain Token", + "symbol": "OKS", + "type": "ERC20", + "decimals": 18, + "description": "OKSCHAIN - is a decentralized financial system for a wide range of consumers, with different interests and requests. The new technology will make handling money easier and more diverse, as well as open the prospects for safe investment to everyone.", + "website": "https://okschain.com/", + "explorer": "https://etherscan.io/token/0x7B68D272EDa2185ea2F9283F241b1c44C51e712A", + "status": "active", + "id": "0x7B68D272EDa2185ea2F9283F241b1c44C51e712A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7B68D272EDa2185ea2F9283F241b1c44C51e712A/logo.png b/blockchains/ethereum/assets/0x7B68D272EDa2185ea2F9283F241b1c44C51e712A/logo.png new file mode 100644 index 00000000..ac171a8d Binary files /dev/null and b/blockchains/ethereum/assets/0x7B68D272EDa2185ea2F9283F241b1c44C51e712A/logo.png differ diff --git a/blockchains/ethereum/assets/0x7B6F4c8264a8DA34f84c360923d32E82922665E2/info.json b/blockchains/ethereum/assets/0x7B6F4c8264a8DA34f84c360923d32E82922665E2/info.json new file mode 100644 index 00000000..2a7d3f3b --- /dev/null +++ b/blockchains/ethereum/assets/0x7B6F4c8264a8DA34f84c360923d32E82922665E2/info.json @@ -0,0 +1,11 @@ +{ + "name": "EFILUM", + "symbol": "EFI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7B6F4c8264a8DA34f84c360923d32E82922665E2", + "status": "abandoned", + "id": "0x7B6F4c8264a8DA34f84c360923d32E82922665E2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7B6F4c8264a8DA34f84c360923d32E82922665E2/logo.png b/blockchains/ethereum/assets/0x7B6F4c8264a8DA34f84c360923d32E82922665E2/logo.png new file mode 100644 index 00000000..901608bd Binary files /dev/null and b/blockchains/ethereum/assets/0x7B6F4c8264a8DA34f84c360923d32E82922665E2/logo.png differ diff --git a/blockchains/ethereum/assets/0x7BD198b9107496fD5cC3d7655AF52f43a8eDBc4C/info.json b/blockchains/ethereum/assets/0x7BD198b9107496fD5cC3d7655AF52f43a8eDBc4C/info.json new file mode 100644 index 00000000..c27b0bc4 --- /dev/null +++ b/blockchains/ethereum/assets/0x7BD198b9107496fD5cC3d7655AF52f43a8eDBc4C/info.json @@ -0,0 +1,11 @@ +{ + "name": "oneVBTC", + "website": "https://ichi.org", + "description": "oneVBTC is the stablecoin created for the Strudel Finance community. Backed by both a treasury of VBTC and collateral of USDC this ERC20 token can be redeemed for USDC at anytime and also provides a vote for governance of the VBTC treasury.", + "explorer": "https://etherscan.io/token/0x7BD198b9107496fD5cC3d7655AF52f43a8eDBc4C", + "type": "ERC20", + "symbol": "oneVBTC", + "decimals": 9, + "status": "active", + "id": "0x7BD198b9107496fD5cC3d7655AF52f43a8eDBc4C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7BD198b9107496fD5cC3d7655AF52f43a8eDBc4C/logo.png b/blockchains/ethereum/assets/0x7BD198b9107496fD5cC3d7655AF52f43a8eDBc4C/logo.png new file mode 100644 index 00000000..99796cf9 Binary files /dev/null and b/blockchains/ethereum/assets/0x7BD198b9107496fD5cC3d7655AF52f43a8eDBc4C/logo.png differ diff --git a/blockchains/ethereum/assets/0x7BD6a4E7DB3A34c485A8DD02b30B6565e3bbC633/info.json b/blockchains/ethereum/assets/0x7BD6a4E7DB3A34c485A8DD02b30B6565e3bbC633/info.json new file mode 100644 index 00000000..c593de1e --- /dev/null +++ b/blockchains/ethereum/assets/0x7BD6a4E7DB3A34c485A8DD02b30B6565e3bbC633/info.json @@ -0,0 +1,11 @@ +{ + "name": "KOK Coin", + "symbol": "KOK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://kok-play.io/", + "explorer": "https://etherscan.io/token/0x7BD6a4E7DB3A34c485A8DD02b30B6565e3bbC633", + "status": "abandoned", + "id": "0x7BD6a4E7DB3A34c485A8DD02b30B6565e3bbC633" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7BD6a4E7DB3A34c485A8DD02b30B6565e3bbC633/logo.png b/blockchains/ethereum/assets/0x7BD6a4E7DB3A34c485A8DD02b30B6565e3bbC633/logo.png new file mode 100644 index 00000000..8a73d0d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x7BD6a4E7DB3A34c485A8DD02b30B6565e3bbC633/logo.png differ diff --git a/blockchains/ethereum/assets/0x7BEF710a5759d197EC0Bf621c3Df802C2D60D848/info.json b/blockchains/ethereum/assets/0x7BEF710a5759d197EC0Bf621c3Df802C2D60D848/info.json new file mode 100644 index 00000000..212ffcb1 --- /dev/null +++ b/blockchains/ethereum/assets/0x7BEF710a5759d197EC0Bf621c3Df802C2D60D848/info.json @@ -0,0 +1,44 @@ +{ + "name": "SHOPX", + "type": "ERC20", + "symbol": "SHOPX", + "decimals": 18, + "website": "https://shopx.co/", + "description": "SHOPX is an NFT-as-a-Service (NaaS) that allows businesses to create branded e-commerce NFTs, driving sales and customer engagement in Web3.", + "explorer": "https://etherscan.io/token/0x7bef710a5759d197ec0bf621c3df802c2d60d848", + "status": "active", + "id": "0x7BEF710a5759d197EC0Bf621c3Df802C2D60D848", + "links": [ + { + "name": "x", + "url": "https://x.com/shopxlabs" + }, + { + "name": "github", + "url": "https://github.com/shopxlabs" + }, + { + "name": "telegram", + "url": "https://t.me/shopxlabs" + }, + { + "name": "discord", + "url": "https://discord.com/invite/XNn9shER62" + }, + { + "name": "facebook", + "url": "https://facebook.com/shopxlabs/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/splyt" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/splyt/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7BEF710a5759d197EC0Bf621c3Df802C2D60D848/logo.png b/blockchains/ethereum/assets/0x7BEF710a5759d197EC0Bf621c3Df802C2D60D848/logo.png new file mode 100644 index 00000000..1dff0a55 Binary files /dev/null and b/blockchains/ethereum/assets/0x7BEF710a5759d197EC0Bf621c3Df802C2D60D848/logo.png differ diff --git a/blockchains/ethereum/assets/0x7Bb09bC8aDE747178e95B1D035ecBeEBbB18cFee/info.json b/blockchains/ethereum/assets/0x7Bb09bC8aDE747178e95B1D035ecBeEBbB18cFee/info.json new file mode 100644 index 00000000..eeb70762 --- /dev/null +++ b/blockchains/ethereum/assets/0x7Bb09bC8aDE747178e95B1D035ecBeEBbB18cFee/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crypto Valley Alliance", + "symbol": "CVA", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7Bb09bC8aDE747178e95B1D035ecBeEBbB18cFee", + "status": "abandoned", + "id": "0x7Bb09bC8aDE747178e95B1D035ecBeEBbB18cFee" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7Bb09bC8aDE747178e95B1D035ecBeEBbB18cFee/logo.png b/blockchains/ethereum/assets/0x7Bb09bC8aDE747178e95B1D035ecBeEBbB18cFee/logo.png new file mode 100755 index 00000000..92b40998 Binary files /dev/null and b/blockchains/ethereum/assets/0x7Bb09bC8aDE747178e95B1D035ecBeEBbB18cFee/logo.png differ diff --git a/blockchains/ethereum/assets/0x7Bb50Ae05147882107218FE9daB9f58BD2e8FF55/info.json b/blockchains/ethereum/assets/0x7Bb50Ae05147882107218FE9daB9f58BD2e8FF55/info.json new file mode 100644 index 00000000..04073b05 --- /dev/null +++ b/blockchains/ethereum/assets/0x7Bb50Ae05147882107218FE9daB9f58BD2e8FF55/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mark", + "symbol": "MARK", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7Bb50Ae05147882107218FE9daB9f58BD2e8FF55", + "status": "abandoned", + "id": "0x7Bb50Ae05147882107218FE9daB9f58BD2e8FF55" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7Bb50Ae05147882107218FE9daB9f58BD2e8FF55/logo.png b/blockchains/ethereum/assets/0x7Bb50Ae05147882107218FE9daB9f58BD2e8FF55/logo.png new file mode 100644 index 00000000..610708bc Binary files /dev/null and b/blockchains/ethereum/assets/0x7Bb50Ae05147882107218FE9daB9f58BD2e8FF55/logo.png differ diff --git a/blockchains/ethereum/assets/0x7C1056ac0F7D223C4297e0c683453EE625011B1f/info.json b/blockchains/ethereum/assets/0x7C1056ac0F7D223C4297e0c683453EE625011B1f/info.json new file mode 100644 index 00000000..b49aeeb1 --- /dev/null +++ b/blockchains/ethereum/assets/0x7C1056ac0F7D223C4297e0c683453EE625011B1f/info.json @@ -0,0 +1,11 @@ +{ + "name": "ButtCoin", + "symbol": "0xBUTT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7C1056ac0F7D223C4297e0c683453EE625011B1f", + "status": "abandoned", + "id": "0x7C1056ac0F7D223C4297e0c683453EE625011B1f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7C1056ac0F7D223C4297e0c683453EE625011B1f/logo.png b/blockchains/ethereum/assets/0x7C1056ac0F7D223C4297e0c683453EE625011B1f/logo.png new file mode 100644 index 00000000..933092e9 Binary files /dev/null and b/blockchains/ethereum/assets/0x7C1056ac0F7D223C4297e0c683453EE625011B1f/logo.png differ diff --git a/blockchains/ethereum/assets/0x7C2AF3a86B4bf47E6Ee63AD9bde7B3B0ba7F95da/info.json b/blockchains/ethereum/assets/0x7C2AF3a86B4bf47E6Ee63AD9bde7B3B0ba7F95da/info.json new file mode 100644 index 00000000..8e921dba --- /dev/null +++ b/blockchains/ethereum/assets/0x7C2AF3a86B4bf47E6Ee63AD9bde7B3B0ba7F95da/info.json @@ -0,0 +1,11 @@ +{ + "name": "EcosBall", + "symbol": "ABA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://ecoball.org/#/home", + "explorer": "https://etherscan.io/token/0x7C2AF3a86B4bf47E6Ee63AD9bde7B3B0ba7F95da", + "status": "abandoned", + "id": "0x7C2AF3a86B4bf47E6Ee63AD9bde7B3B0ba7F95da" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7C2AF3a86B4bf47E6Ee63AD9bde7B3B0ba7F95da/logo.png b/blockchains/ethereum/assets/0x7C2AF3a86B4bf47E6Ee63AD9bde7B3B0ba7F95da/logo.png new file mode 100644 index 00000000..fd6d44a5 Binary files /dev/null and b/blockchains/ethereum/assets/0x7C2AF3a86B4bf47E6Ee63AD9bde7B3B0ba7F95da/logo.png differ diff --git a/blockchains/ethereum/assets/0x7C2C75adcEE243e3874938aE8a71fA08020088a3/info.json b/blockchains/ethereum/assets/0x7C2C75adcEE243e3874938aE8a71fA08020088a3/info.json new file mode 100644 index 00000000..93ff9d05 --- /dev/null +++ b/blockchains/ethereum/assets/0x7C2C75adcEE243e3874938aE8a71fA08020088a3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Petro.Global", + "symbol": "PTG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7C2C75adcEE243e3874938aE8a71fA08020088a3", + "status": "abandoned", + "id": "0x7C2C75adcEE243e3874938aE8a71fA08020088a3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7C2C75adcEE243e3874938aE8a71fA08020088a3/logo.png b/blockchains/ethereum/assets/0x7C2C75adcEE243e3874938aE8a71fA08020088a3/logo.png new file mode 100755 index 00000000..3106b3b1 Binary files /dev/null and b/blockchains/ethereum/assets/0x7C2C75adcEE243e3874938aE8a71fA08020088a3/logo.png differ diff --git a/blockchains/ethereum/assets/0x7C2E5b7ec572199D3841f6a38F7D4868BD0798f1/info.json b/blockchains/ethereum/assets/0x7C2E5b7ec572199D3841f6a38F7D4868BD0798f1/info.json new file mode 100644 index 00000000..8dda89ca --- /dev/null +++ b/blockchains/ethereum/assets/0x7C2E5b7ec572199D3841f6a38F7D4868BD0798f1/info.json @@ -0,0 +1,11 @@ +{ + "name": "HAVY", + "symbol": "HAVY", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.havy.io", + "explorer": "https://etherscan.io/token/0x7C2E5b7ec572199D3841f6a38F7D4868BD0798f1", + "status": "active", + "id": "0x7C2E5b7ec572199D3841f6a38F7D4868BD0798f1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7C2E5b7ec572199D3841f6a38F7D4868BD0798f1/logo.png b/blockchains/ethereum/assets/0x7C2E5b7ec572199D3841f6a38F7D4868BD0798f1/logo.png new file mode 100644 index 00000000..8ce2181b Binary files /dev/null and b/blockchains/ethereum/assets/0x7C2E5b7ec572199D3841f6a38F7D4868BD0798f1/logo.png differ diff --git a/blockchains/ethereum/assets/0x7C3f24EcBeBbD6aDF612c91586DCD5D66A798ACe/info.json b/blockchains/ethereum/assets/0x7C3f24EcBeBbD6aDF612c91586DCD5D66A798ACe/info.json new file mode 100644 index 00000000..2eba4f60 --- /dev/null +++ b/blockchains/ethereum/assets/0x7C3f24EcBeBbD6aDF612c91586DCD5D66A798ACe/info.json @@ -0,0 +1,11 @@ +{ + "name": "Spexs Note 7", + "symbol": "SPXN7", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7C3f24EcBeBbD6aDF612c91586DCD5D66A798ACe", + "status": "abandoned", + "id": "0x7C3f24EcBeBbD6aDF612c91586DCD5D66A798ACe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7C3f24EcBeBbD6aDF612c91586DCD5D66A798ACe/logo.png b/blockchains/ethereum/assets/0x7C3f24EcBeBbD6aDF612c91586DCD5D66A798ACe/logo.png new file mode 100644 index 00000000..e834819e Binary files /dev/null and b/blockchains/ethereum/assets/0x7C3f24EcBeBbD6aDF612c91586DCD5D66A798ACe/logo.png differ diff --git a/blockchains/ethereum/assets/0x7C488cFc874Ca9F34e7bdBd0410C27CE6d6af5f9/info.json b/blockchains/ethereum/assets/0x7C488cFc874Ca9F34e7bdBd0410C27CE6d6af5f9/info.json new file mode 100644 index 00000000..cb766fe3 --- /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 00000000..12335ab8 Binary files /dev/null and b/blockchains/ethereum/assets/0x7C488cFc874Ca9F34e7bdBd0410C27CE6d6af5f9/logo.png differ diff --git a/blockchains/ethereum/assets/0x7C4Fb0152079f824111628c62342d8757c6ceCB3/info.json b/blockchains/ethereum/assets/0x7C4Fb0152079f824111628c62342d8757c6ceCB3/info.json new file mode 100644 index 00000000..7b966247 --- /dev/null +++ b/blockchains/ethereum/assets/0x7C4Fb0152079f824111628c62342d8757c6ceCB3/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R916853", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7C4Fb0152079f824111628c62342d8757c6ceCB3", + "status": "abandoned", + "id": "0x7C4Fb0152079f824111628c62342d8757c6ceCB3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7C4Fb0152079f824111628c62342d8757c6ceCB3/logo.png b/blockchains/ethereum/assets/0x7C4Fb0152079f824111628c62342d8757c6ceCB3/logo.png new file mode 100644 index 00000000..a3182494 Binary files /dev/null and b/blockchains/ethereum/assets/0x7C4Fb0152079f824111628c62342d8757c6ceCB3/logo.png differ diff --git a/blockchains/ethereum/assets/0x7C5A0CE9267ED19B22F8cae653F198e3E8daf098/info.json b/blockchains/ethereum/assets/0x7C5A0CE9267ED19B22F8cae653F198e3E8daf098/info.json new file mode 100644 index 00000000..89071326 --- /dev/null +++ b/blockchains/ethereum/assets/0x7C5A0CE9267ED19B22F8cae653F198e3E8daf098/info.json @@ -0,0 +1,11 @@ +{ + "name": "SANtiment network token", + "symbol": "SAN", + "type": "ERC20", + "decimals": 18, + "description": "Tools to help you analyze the crypto market and find data-driven investing opportunities.", + "website": "https://santiment.net", + "explorer": "https://etherscan.io/token/0x7C5A0CE9267ED19B22F8cae653F198e3E8daf098", + "status": "active", + "id": "0x7C5A0CE9267ED19B22F8cae653F198e3E8daf098" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7C5A0CE9267ED19B22F8cae653F198e3E8daf098/logo.png b/blockchains/ethereum/assets/0x7C5A0CE9267ED19B22F8cae653F198e3E8daf098/logo.png new file mode 100644 index 00000000..c16f2631 Binary files /dev/null and b/blockchains/ethereum/assets/0x7C5A0CE9267ED19B22F8cae653F198e3E8daf098/logo.png differ diff --git a/blockchains/ethereum/assets/0x7C84e62859D0715eb77d1b1C4154Ecd6aBB21BEC/info.json b/blockchains/ethereum/assets/0x7C84e62859D0715eb77d1b1C4154Ecd6aBB21BEC/info.json new file mode 100644 index 00000000..18856974 --- /dev/null +++ b/blockchains/ethereum/assets/0x7C84e62859D0715eb77d1b1C4154Ecd6aBB21BEC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shping Coin", + "symbol": "SHPING", + "type": "ERC20", + "decimals": 18, + "description": "Shping is the ultimate shopping companion, allowing you to compare pricing on products with a simple barcode scan of a product and earn money for interacting with the products you love.", + "website": "https://www.shping.com/", + "explorer": "https://etherscan.io/token/0x7C84e62859D0715eb77d1b1C4154Ecd6aBB21BEC", + "status": "active", + "id": "0x7C84e62859D0715eb77d1b1C4154Ecd6aBB21BEC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7C84e62859D0715eb77d1b1C4154Ecd6aBB21BEC/logo.png b/blockchains/ethereum/assets/0x7C84e62859D0715eb77d1b1C4154Ecd6aBB21BEC/logo.png new file mode 100644 index 00000000..14e44228 Binary files /dev/null and b/blockchains/ethereum/assets/0x7C84e62859D0715eb77d1b1C4154Ecd6aBB21BEC/logo.png differ diff --git a/blockchains/ethereum/assets/0x7C918dF91f8F4e8D707a7A4013b8e7247C0293B1/info.json b/blockchains/ethereum/assets/0x7C918dF91f8F4e8D707a7A4013b8e7247C0293B1/info.json new file mode 100644 index 00000000..3eccb900 --- /dev/null +++ b/blockchains/ethereum/assets/0x7C918dF91f8F4e8D707a7A4013b8e7247C0293B1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Feathers", + "symbol": "FTHR", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7C918dF91f8F4e8D707a7A4013b8e7247C0293B1", + "status": "abandoned", + "id": "0x7C918dF91f8F4e8D707a7A4013b8e7247C0293B1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7C918dF91f8F4e8D707a7A4013b8e7247C0293B1/logo.png b/blockchains/ethereum/assets/0x7C918dF91f8F4e8D707a7A4013b8e7247C0293B1/logo.png new file mode 100644 index 00000000..9b5f3463 Binary files /dev/null and b/blockchains/ethereum/assets/0x7C918dF91f8F4e8D707a7A4013b8e7247C0293B1/logo.png differ diff --git a/blockchains/ethereum/assets/0x7C974104DF9dd7fb91205ab3D66d15AFf1049DE8/info.json b/blockchains/ethereum/assets/0x7C974104DF9dd7fb91205ab3D66d15AFf1049DE8/info.json new file mode 100644 index 00000000..a8d571bc --- /dev/null +++ b/blockchains/ethereum/assets/0x7C974104DF9dd7fb91205ab3D66d15AFf1049DE8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped USD", + "website": "https://covenants.eth.link", + "description": "One stablecoin to pool them all in all the pools of DeFi. $WUSD is minted at the confluence of other stablecoins, which stream out and collateralize it in the pools of AMMs everywhere. Free from any oracle or issuer, it is the most resilient and decentralized stablecoin out there—and the first you can farm.", + "explorer": "https://etherscan.io/token/0x7C974104DF9dd7fb91205ab3D66d15AFf1049DE8", + "type": "ERC20", + "symbol": "uSD", + "decimals": 18, + "status": "active", + "id": "0x7C974104DF9dd7fb91205ab3D66d15AFf1049DE8", + "links": [ + { + "name": "github", + "url": "https://github.com/b-u-i-d-l/" + }, + { + "name": "whitepaper", + "url": "https://covenants.eth.link/#/grimoire" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7C974104DF9dd7fb91205ab3D66d15AFf1049DE8/logo.png b/blockchains/ethereum/assets/0x7C974104DF9dd7fb91205ab3D66d15AFf1049DE8/logo.png new file mode 100644 index 00000000..9c7d7e1f Binary files /dev/null and b/blockchains/ethereum/assets/0x7C974104DF9dd7fb91205ab3D66d15AFf1049DE8/logo.png differ diff --git a/blockchains/ethereum/assets/0x7CC62d8E80Be9bEa3947F3443aD136f50f75b505/info.json b/blockchains/ethereum/assets/0x7CC62d8E80Be9bEa3947F3443aD136f50f75b505/info.json new file mode 100644 index 00000000..b64d00f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x7CC62d8E80Be9bEa3947F3443aD136f50f75b505/info.json @@ -0,0 +1,11 @@ +{ + "name": "Knekted", + "symbol": "KNT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://knekted.net/", + "explorer": "https://etherscan.io/token/0x7CC62d8E80Be9bEa3947F3443aD136f50f75b505", + "status": "abandoned", + "id": "0x7CC62d8E80Be9bEa3947F3443aD136f50f75b505" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7CC62d8E80Be9bEa3947F3443aD136f50f75b505/logo.png b/blockchains/ethereum/assets/0x7CC62d8E80Be9bEa3947F3443aD136f50f75b505/logo.png new file mode 100644 index 00000000..a0fce870 Binary files /dev/null and b/blockchains/ethereum/assets/0x7CC62d8E80Be9bEa3947F3443aD136f50f75b505/logo.png differ diff --git a/blockchains/ethereum/assets/0x7Cc4356b280f0b5d2DB47EA2755916F6De8DbB6e/info.json b/blockchains/ethereum/assets/0x7Cc4356b280f0b5d2DB47EA2755916F6De8DbB6e/info.json new file mode 100644 index 00000000..af811ef9 --- /dev/null +++ b/blockchains/ethereum/assets/0x7Cc4356b280f0b5d2DB47EA2755916F6De8DbB6e/info.json @@ -0,0 +1,11 @@ +{ + "name": "BankersCoins", + "symbol": "BC", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7Cc4356b280f0b5d2DB47EA2755916F6De8DbB6e", + "status": "abandoned", + "id": "0x7Cc4356b280f0b5d2DB47EA2755916F6De8DbB6e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7Cc4356b280f0b5d2DB47EA2755916F6De8DbB6e/logo.png b/blockchains/ethereum/assets/0x7Cc4356b280f0b5d2DB47EA2755916F6De8DbB6e/logo.png new file mode 100644 index 00000000..7d7be917 Binary files /dev/null and b/blockchains/ethereum/assets/0x7Cc4356b280f0b5d2DB47EA2755916F6De8DbB6e/logo.png differ diff --git a/blockchains/ethereum/assets/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0/info.json b/blockchains/ethereum/assets/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0/info.json new file mode 100644 index 00000000..c43421b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Polygon", + "website": "https://matic.network", + "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.", + "explorer": "https://etherscan.io/token/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0", + "type": "ERC20", + "symbol": "MATIC", + "decimals": 18, + "status": "active", + "id": "0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0/logo.png b/blockchains/ethereum/assets/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0/logo.png new file mode 100644 index 00000000..af087704 Binary files /dev/null and b/blockchains/ethereum/assets/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0/logo.png differ diff --git a/blockchains/ethereum/assets/0x7D29A64504629172a429e64183D6673b9dAcbFCe/info.json b/blockchains/ethereum/assets/0x7D29A64504629172a429e64183D6673b9dAcbFCe/info.json new file mode 100644 index 00000000..d93d5d3d --- /dev/null +++ b/blockchains/ethereum/assets/0x7D29A64504629172a429e64183D6673b9dAcbFCe/info.json @@ -0,0 +1,11 @@ +{ + "name": "VectorspaceAI", + "symbol": "VXV", + "type": "ERC20", + "decimals": 18, + "description": "Our platform powers research groups, data vendors, funds and institutions by generating on-demand NLP/NLU correlation matrix datasets", + "website": "https://vectorspace.ai", + "explorer": "https://etherscan.io/token/0x7D29A64504629172a429e64183D6673b9dAcbFCe", + "status": "active", + "id": "0x7D29A64504629172a429e64183D6673b9dAcbFCe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7D29A64504629172a429e64183D6673b9dAcbFCe/logo.png b/blockchains/ethereum/assets/0x7D29A64504629172a429e64183D6673b9dAcbFCe/logo.png new file mode 100644 index 00000000..2955f9da Binary files /dev/null and b/blockchains/ethereum/assets/0x7D29A64504629172a429e64183D6673b9dAcbFCe/logo.png differ diff --git a/blockchains/ethereum/assets/0x7D2D3688Df45Ce7C552E19c27e007673da9204B8/info.json b/blockchains/ethereum/assets/0x7D2D3688Df45Ce7C552E19c27e007673da9204B8/info.json new file mode 100644 index 00000000..97fd320f --- /dev/null +++ b/blockchains/ethereum/assets/0x7D2D3688Df45Ce7C552E19c27e007673da9204B8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave LEND V1", + "symbol": "aLEND V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave LEND V1 is an interest bearing token pegged 1:1 to the underlying LEND deposited in Aave V1. aLEND V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x7D2D3688Df45Ce7C552E19c27e007673da9204B8", + "status": "abandoned", + "id": "0x7D2D3688Df45Ce7C552E19c27e007673da9204B8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7D2D3688Df45Ce7C552E19c27e007673da9204B8/logo.png b/blockchains/ethereum/assets/0x7D2D3688Df45Ce7C552E19c27e007673da9204B8/logo.png new file mode 100644 index 00000000..c5b1a227 Binary files /dev/null and b/blockchains/ethereum/assets/0x7D2D3688Df45Ce7C552E19c27e007673da9204B8/logo.png differ diff --git a/blockchains/ethereum/assets/0x7D2D8ad6d6c689B583fBd91f7b54C4395815de30/info.json b/blockchains/ethereum/assets/0x7D2D8ad6d6c689B583fBd91f7b54C4395815de30/info.json new file mode 100644 index 00000000..da43962b --- /dev/null +++ b/blockchains/ethereum/assets/0x7D2D8ad6d6c689B583fBd91f7b54C4395815de30/info.json @@ -0,0 +1,11 @@ +{ + "name": "RedRabbitToken", + "symbol": "REDRA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7D2D8ad6d6c689B583fBd91f7b54C4395815de30", + "status": "spam", + "id": "0x7D2D8ad6d6c689B583fBd91f7b54C4395815de30" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7D2D8ad6d6c689B583fBd91f7b54C4395815de30/logo.png b/blockchains/ethereum/assets/0x7D2D8ad6d6c689B583fBd91f7b54C4395815de30/logo.png new file mode 100644 index 00000000..92bc59c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x7D2D8ad6d6c689B583fBd91f7b54C4395815de30/logo.png differ diff --git a/blockchains/ethereum/assets/0x7D447595415db51C399cCc2D926ee8169b139765/info.json b/blockchains/ethereum/assets/0x7D447595415db51C399cCc2D926ee8169b139765/info.json new file mode 100644 index 00000000..16971433 --- /dev/null +++ b/blockchains/ethereum/assets/0x7D447595415db51C399cCc2D926ee8169b139765/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planetagro-Exchange", + "symbol": "COFEE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7D447595415db51C399cCc2D926ee8169b139765", + "status": "abandoned", + "id": "0x7D447595415db51C399cCc2D926ee8169b139765" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7D447595415db51C399cCc2D926ee8169b139765/logo.png b/blockchains/ethereum/assets/0x7D447595415db51C399cCc2D926ee8169b139765/logo.png new file mode 100755 index 00000000..4e77b9cb Binary files /dev/null and b/blockchains/ethereum/assets/0x7D447595415db51C399cCc2D926ee8169b139765/logo.png differ diff --git a/blockchains/ethereum/assets/0x7D48FBe0A877bB1f511fcf9B57F12420C75841e9/info.json b/blockchains/ethereum/assets/0x7D48FBe0A877bB1f511fcf9B57F12420C75841e9/info.json new file mode 100644 index 00000000..5cd70020 --- /dev/null +++ b/blockchains/ethereum/assets/0x7D48FBe0A877bB1f511fcf9B57F12420C75841e9/info.json @@ -0,0 +1,21 @@ +{ + "name": "DOOR Token", + "website": "https://doortoken.org/", + "description": "DOOR connects consumers and advertisers to facilitate transactions that reward consumers for the authorized use of their data. Every time a consumer's data is used for commercial use they are rewarded with DOOR Tokens. Advertisers purchase DOOR Tokens to be used for licensing authorized data from Consumers. By eliminating the middleman, the consumer and business can benefit from a direct connection via DOOR.", + "explorer": "https://etherscan.io/token/0x7D48FBe0A877bB1f511fcf9B57F12420C75841e9", + "type": "ERC20", + "symbol": "DOOR", + "decimals": 18, + "status": "active", + "id": "0x7D48FBe0A877bB1f511fcf9B57F12420C75841e9", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/door" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/door/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7D48FBe0A877bB1f511fcf9B57F12420C75841e9/logo.png b/blockchains/ethereum/assets/0x7D48FBe0A877bB1f511fcf9B57F12420C75841e9/logo.png new file mode 100644 index 00000000..a1daa02a Binary files /dev/null and b/blockchains/ethereum/assets/0x7D48FBe0A877bB1f511fcf9B57F12420C75841e9/logo.png differ diff --git a/blockchains/ethereum/assets/0x7D5Edcd23dAa3fB94317D32aE253eE1Af08Ba14d/info.json b/blockchains/ethereum/assets/0x7D5Edcd23dAa3fB94317D32aE253eE1Af08Ba14d/info.json new file mode 100644 index 00000000..c60d814c --- /dev/null +++ b/blockchains/ethereum/assets/0x7D5Edcd23dAa3fB94317D32aE253eE1Af08Ba14d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethbet", + "symbol": "EBET", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7D5Edcd23dAa3fB94317D32aE253eE1Af08Ba14d", + "status": "abandoned", + "id": "0x7D5Edcd23dAa3fB94317D32aE253eE1Af08Ba14d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7D5Edcd23dAa3fB94317D32aE253eE1Af08Ba14d/logo.png b/blockchains/ethereum/assets/0x7D5Edcd23dAa3fB94317D32aE253eE1Af08Ba14d/logo.png new file mode 100644 index 00000000..948fd472 Binary files /dev/null and b/blockchains/ethereum/assets/0x7D5Edcd23dAa3fB94317D32aE253eE1Af08Ba14d/logo.png differ diff --git a/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/info.json b/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/info.json new file mode 100644 index 00000000..a07bb7b2 --- /dev/null +++ b/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/info.json @@ -0,0 +1,28 @@ +{ + "name": "BOB", + "type": "ERC20", + "symbol": "BOB", + "decimals": 18, + "website": "https://bobishere.co/", + "description": "A meme token.", + "explorer": "https://etherscan.io/token/0x7D8146cf21e8D7cbe46054e01588207b51198729", + "status": "active", + "id": "0x7D8146cf21e8D7cbe46054e01588207b51198729", + "links": [ + { + "name": "x", + "url": "https://x.com/BOBETHtoken" + }, + { + "name": "telegram", + "url": "https://t.me/BOBERCPORTAL" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bob1/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/logo.png b/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/logo.png new file mode 100644 index 00000000..b8f85ad9 Binary files /dev/null and b/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/logo.png differ diff --git a/blockchains/ethereum/assets/0x7D8b9F24320Dab5369144Eb46927667f4a58dC49/info.json b/blockchains/ethereum/assets/0x7D8b9F24320Dab5369144Eb46927667f4a58dC49/info.json new file mode 100644 index 00000000..e30bb768 --- /dev/null +++ b/blockchains/ethereum/assets/0x7D8b9F24320Dab5369144Eb46927667f4a58dC49/info.json @@ -0,0 +1,11 @@ +{ + "name": "NRC", + "symbol": "R", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7D8b9F24320Dab5369144Eb46927667f4a58dC49", + "status": "abandoned", + "id": "0x7D8b9F24320Dab5369144Eb46927667f4a58dC49" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7D8b9F24320Dab5369144Eb46927667f4a58dC49/logo.png b/blockchains/ethereum/assets/0x7D8b9F24320Dab5369144Eb46927667f4a58dC49/logo.png new file mode 100755 index 00000000..74e74a90 Binary files /dev/null and b/blockchains/ethereum/assets/0x7D8b9F24320Dab5369144Eb46927667f4a58dC49/logo.png differ diff --git a/blockchains/ethereum/assets/0x7D8eaf75738C15729AC7e7ae497EFf397020AB63/info.json b/blockchains/ethereum/assets/0x7D8eaf75738C15729AC7e7ae497EFf397020AB63/info.json new file mode 100644 index 00000000..ac1de84f --- /dev/null +++ b/blockchains/ethereum/assets/0x7D8eaf75738C15729AC7e7ae497EFf397020AB63/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg5000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7D8eaf75738C15729AC7e7ae497EFf397020AB63", + "status": "abandoned", + "id": "0x7D8eaf75738C15729AC7e7ae497EFf397020AB63" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7D8eaf75738C15729AC7e7ae497EFf397020AB63/logo.png b/blockchains/ethereum/assets/0x7D8eaf75738C15729AC7e7ae497EFf397020AB63/logo.png new file mode 100644 index 00000000..ec87621a Binary files /dev/null and b/blockchains/ethereum/assets/0x7D8eaf75738C15729AC7e7ae497EFf397020AB63/logo.png differ diff --git a/blockchains/ethereum/assets/0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed/info.json b/blockchains/ethereum/assets/0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed/info.json new file mode 100644 index 00000000..006b1d49 --- /dev/null +++ b/blockchains/ethereum/assets/0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed/info.json @@ -0,0 +1,41 @@ +{ + "name": "Shibnobi", + "type": "ERC20", + "symbol": "SHINJA", + "decimals": 9, + "website": "https://shibnobi.com", + "description": "SHIBNOBI is a community-driven token / platform that wants to develop a cross-chain token swap for the next generation of investors and make crypto simple and safe for everyone.", + "explorer": "https://etherscan.io/token/0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed", + "status": "active", + "id": "0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed", + "links": [ + { + "name": "x", + "url": "https://x.com/Shib_nobi" + }, + { + "name": "telegram", + "url": "https://t.me/ShibnobiCommunity" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/shibnobi-v2/" + }, + { + "name": "facebook", + "url": "https://facebook.com/Shibnobi" + }, + { + "name": "medium", + "url": "https://medium.com/@Shibnobi" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Shibnobi/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shibnobi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed/logo.png b/blockchains/ethereum/assets/0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed/logo.png new file mode 100644 index 00000000..c11f4a49 Binary files /dev/null and b/blockchains/ethereum/assets/0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed/logo.png differ diff --git a/blockchains/ethereum/assets/0x7DBd435aa4eCAB5471CFCeF4527a022feF0b7e1C/info.json b/blockchains/ethereum/assets/0x7DBd435aa4eCAB5471CFCeF4527a022feF0b7e1C/info.json new file mode 100644 index 00000000..0f7e9869 --- /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 00000000..9bbe5934 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 00000000..f7f67599 --- /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 00000000..64407062 Binary files /dev/null and b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/logo.png differ diff --git a/blockchains/ethereum/assets/0x7DE2d123042994737105802D2abD0A10a7BdE276/info.json b/blockchains/ethereum/assets/0x7DE2d123042994737105802D2abD0A10a7BdE276/info.json new file mode 100644 index 00000000..f577e983 --- /dev/null +++ b/blockchains/ethereum/assets/0x7DE2d123042994737105802D2abD0A10a7BdE276/info.json @@ -0,0 +1,11 @@ +{ + "name": "MEXC Token", + "symbol": "MEXC", + "type": "ERC20", + "decimals": 18, + "description": "MEXC describes itself as a utility token for the Emergency Medical Services (EMS) industry.", + "website": "https://mexc.life", + "explorer": "https://etherscan.io/token/0x7DE2d123042994737105802D2abD0A10a7BdE276", + "status": "active", + "id": "0x7DE2d123042994737105802D2abD0A10a7BdE276" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7DE2d123042994737105802D2abD0A10a7BdE276/logo.png b/blockchains/ethereum/assets/0x7DE2d123042994737105802D2abD0A10a7BdE276/logo.png new file mode 100644 index 00000000..ef3a1dec Binary files /dev/null and b/blockchains/ethereum/assets/0x7DE2d123042994737105802D2abD0A10a7BdE276/logo.png differ diff --git a/blockchains/ethereum/assets/0x7DE580D247D0f5d72c522b2750089E18f26e1cF9/info.json b/blockchains/ethereum/assets/0x7DE580D247D0f5d72c522b2750089E18f26e1cF9/info.json new file mode 100644 index 00000000..85d9efd0 --- /dev/null +++ b/blockchains/ethereum/assets/0x7DE580D247D0f5d72c522b2750089E18f26e1cF9/info.json @@ -0,0 +1,11 @@ +{ + "name": "MadCripto", + "symbol": "MAD", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7DE580D247D0f5d72c522b2750089E18f26e1cF9", + "status": "active", + "id": "0x7DE580D247D0f5d72c522b2750089E18f26e1cF9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7DE580D247D0f5d72c522b2750089E18f26e1cF9/logo.png b/blockchains/ethereum/assets/0x7DE580D247D0f5d72c522b2750089E18f26e1cF9/logo.png new file mode 100644 index 00000000..a742d786 Binary files /dev/null and b/blockchains/ethereum/assets/0x7DE580D247D0f5d72c522b2750089E18f26e1cF9/logo.png differ diff --git a/blockchains/ethereum/assets/0x7DEE45dff03ec7137979586cA20a2F4917BAC9Fa/info.json b/blockchains/ethereum/assets/0x7DEE45dff03ec7137979586cA20a2F4917BAC9Fa/info.json new file mode 100644 index 00000000..37ee4f7b --- /dev/null +++ b/blockchains/ethereum/assets/0x7DEE45dff03ec7137979586cA20a2F4917BAC9Fa/info.json @@ -0,0 +1,11 @@ +{ + "name": "DeFiWizard", + "symbol": "DWZ", + "type": "ERC20", + "decimals": 18, + "description": "DeFi Wizard is a dashboard for building DeFi smart contracts with a few clicks, it offers real time programmer analytics and allows you to create smart contract for ERC20 / BEP20 / EDST, staking, yield farming, governance, cross-chain bridge, gas less relayer baked in.", + "website": "https://defiwizard.xyz/", + "explorer": "https://etherscan.io/token/0x7dee45dff03ec7137979586ca20a2f4917bac9fa", + "status": "active", + "id": "0x7DEE45dff03ec7137979586cA20a2F4917BAC9Fa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7DEE45dff03ec7137979586cA20a2F4917BAC9Fa/logo.png b/blockchains/ethereum/assets/0x7DEE45dff03ec7137979586cA20a2F4917BAC9Fa/logo.png new file mode 100644 index 00000000..ab3acfd0 Binary files /dev/null and b/blockchains/ethereum/assets/0x7DEE45dff03ec7137979586cA20a2F4917BAC9Fa/logo.png differ diff --git a/blockchains/ethereum/assets/0x7DF5816FE144c077aa2fF2a404F3F8AEB48C1d96/info.json b/blockchains/ethereum/assets/0x7DF5816FE144c077aa2fF2a404F3F8AEB48C1d96/info.json new file mode 100644 index 00000000..19616239 --- /dev/null +++ b/blockchains/ethereum/assets/0x7DF5816FE144c077aa2fF2a404F3F8AEB48C1d96/info.json @@ -0,0 +1,11 @@ +{ + "name": "GameChain", + "symbol": "GCN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7DF5816FE144c077aa2fF2a404F3F8AEB48C1d96", + "status": "abandoned", + "id": "0x7DF5816FE144c077aa2fF2a404F3F8AEB48C1d96" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7DF5816FE144c077aa2fF2a404F3F8AEB48C1d96/logo.png b/blockchains/ethereum/assets/0x7DF5816FE144c077aa2fF2a404F3F8AEB48C1d96/logo.png new file mode 100644 index 00000000..91c38795 Binary files /dev/null and b/blockchains/ethereum/assets/0x7DF5816FE144c077aa2fF2a404F3F8AEB48C1d96/logo.png differ diff --git a/blockchains/ethereum/assets/0x7Dc4f41294697a7903C4027f6Ac528C5d14cd7eB/info.json b/blockchains/ethereum/assets/0x7Dc4f41294697a7903C4027f6Ac528C5d14cd7eB/info.json new file mode 100644 index 00000000..4a5cb892 --- /dev/null +++ b/blockchains/ethereum/assets/0x7Dc4f41294697a7903C4027f6Ac528C5d14cd7eB/info.json @@ -0,0 +1,11 @@ +{ + "name": "RemiCoin", + "symbol": "RMC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7Dc4f41294697a7903C4027f6Ac528C5d14cd7eB", + "status": "abandoned", + "id": "0x7Dc4f41294697a7903C4027f6Ac528C5d14cd7eB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7Dc4f41294697a7903C4027f6Ac528C5d14cd7eB/logo.png b/blockchains/ethereum/assets/0x7Dc4f41294697a7903C4027f6Ac528C5d14cd7eB/logo.png new file mode 100644 index 00000000..cf4168b1 Binary files /dev/null and b/blockchains/ethereum/assets/0x7Dc4f41294697a7903C4027f6Ac528C5d14cd7eB/logo.png differ diff --git a/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json b/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json new file mode 100644 index 00000000..956cd43c --- /dev/null +++ b/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/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://etherscan.io/token/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989", + "type": "ERC20", + "symbol": "GOMINING", + "decimals": 18, + "status": "active", + "id": "0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989", + "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/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/logo.png b/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/logo.png new file mode 100644 index 00000000..1d15389d Binary files /dev/null and b/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/logo.png differ diff --git a/blockchains/ethereum/assets/0x7E1922F5eaFB2AA8f849838C638B7a7a5eC50751/info.json b/blockchains/ethereum/assets/0x7E1922F5eaFB2AA8f849838C638B7a7a5eC50751/info.json new file mode 100644 index 00000000..e02d4391 --- /dev/null +++ b/blockchains/ethereum/assets/0x7E1922F5eaFB2AA8f849838C638B7a7a5eC50751/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gains Circulation Chain(Gcchain)", + "symbol": "GCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7E1922F5eaFB2AA8f849838C638B7a7a5eC50751", + "status": "abandoned", + "id": "0x7E1922F5eaFB2AA8f849838C638B7a7a5eC50751" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7E1922F5eaFB2AA8f849838C638B7a7a5eC50751/logo.png b/blockchains/ethereum/assets/0x7E1922F5eaFB2AA8f849838C638B7a7a5eC50751/logo.png new file mode 100644 index 00000000..89322913 Binary files /dev/null and b/blockchains/ethereum/assets/0x7E1922F5eaFB2AA8f849838C638B7a7a5eC50751/logo.png differ diff --git a/blockchains/ethereum/assets/0x7E2a54ced53bcC12C6b537537da24c5a3C450844/info.json b/blockchains/ethereum/assets/0x7E2a54ced53bcC12C6b537537da24c5a3C450844/info.json new file mode 100644 index 00000000..6dd88845 --- /dev/null +++ b/blockchains/ethereum/assets/0x7E2a54ced53bcC12C6b537537da24c5a3C450844/info.json @@ -0,0 +1,11 @@ +{ + "name": "IMGame", + "symbol": "IMG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7E2a54ced53bcC12C6b537537da24c5a3C450844", + "status": "abandoned", + "id": "0x7E2a54ced53bcC12C6b537537da24c5a3C450844" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7E2a54ced53bcC12C6b537537da24c5a3C450844/logo.png b/blockchains/ethereum/assets/0x7E2a54ced53bcC12C6b537537da24c5a3C450844/logo.png new file mode 100644 index 00000000..cf850cf2 Binary files /dev/null and b/blockchains/ethereum/assets/0x7E2a54ced53bcC12C6b537537da24c5a3C450844/logo.png differ diff --git a/blockchains/ethereum/assets/0x7E43581b19ab509BCF9397a2eFd1ab10233f27dE/info.json b/blockchains/ethereum/assets/0x7E43581b19ab509BCF9397a2eFd1ab10233f27dE/info.json new file mode 100644 index 00000000..102d2259 --- /dev/null +++ b/blockchains/ethereum/assets/0x7E43581b19ab509BCF9397a2eFd1ab10233f27dE/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitGuild PLAT", + "symbol": "PLAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7E43581b19ab509BCF9397a2eFd1ab10233f27dE", + "status": "abandoned", + "id": "0x7E43581b19ab509BCF9397a2eFd1ab10233f27dE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7E43581b19ab509BCF9397a2eFd1ab10233f27dE/logo.png b/blockchains/ethereum/assets/0x7E43581b19ab509BCF9397a2eFd1ab10233f27dE/logo.png new file mode 100644 index 00000000..dec3ef67 Binary files /dev/null and b/blockchains/ethereum/assets/0x7E43581b19ab509BCF9397a2eFd1ab10233f27dE/logo.png differ diff --git a/blockchains/ethereum/assets/0x7E5fF2E01331f23c02EEA77D6706ccf070e6ad3c/info.json b/blockchains/ethereum/assets/0x7E5fF2E01331f23c02EEA77D6706ccf070e6ad3c/info.json new file mode 100644 index 00000000..de8e75a4 --- /dev/null +++ b/blockchains/ethereum/assets/0x7E5fF2E01331f23c02EEA77D6706ccf070e6ad3c/info.json @@ -0,0 +1,11 @@ +{ + "name": "HOWL-WPB", + "symbol": "HOWL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7E5fF2E01331f23c02EEA77D6706ccf070e6ad3c", + "status": "abandoned", + "id": "0x7E5fF2E01331f23c02EEA77D6706ccf070e6ad3c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7E5fF2E01331f23c02EEA77D6706ccf070e6ad3c/logo.png b/blockchains/ethereum/assets/0x7E5fF2E01331f23c02EEA77D6706ccf070e6ad3c/logo.png new file mode 100755 index 00000000..605806ec Binary files /dev/null and b/blockchains/ethereum/assets/0x7E5fF2E01331f23c02EEA77D6706ccf070e6ad3c/logo.png differ diff --git a/blockchains/ethereum/assets/0x7E6509aC567e7DE3Bc702E7CAF3B56245b50D1A7/info.json b/blockchains/ethereum/assets/0x7E6509aC567e7DE3Bc702E7CAF3B56245b50D1A7/info.json new file mode 100644 index 00000000..c0fa251b --- /dev/null +++ b/blockchains/ethereum/assets/0x7E6509aC567e7DE3Bc702E7CAF3B56245b50D1A7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Swace", + "symbol": "SWA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://swace.io/", + "explorer": "https://etherscan.io/token/0x7E6509aC567e7DE3Bc702E7CAF3B56245b50D1A7", + "status": "abandoned", + "id": "0x7E6509aC567e7DE3Bc702E7CAF3B56245b50D1A7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7E6509aC567e7DE3Bc702E7CAF3B56245b50D1A7/logo.png b/blockchains/ethereum/assets/0x7E6509aC567e7DE3Bc702E7CAF3B56245b50D1A7/logo.png new file mode 100644 index 00000000..7f8ee904 Binary files /dev/null and b/blockchains/ethereum/assets/0x7E6509aC567e7DE3Bc702E7CAF3B56245b50D1A7/logo.png differ diff --git a/blockchains/ethereum/assets/0x7E7Ed710D7d04DB0d278A046683C71FE00fb96D6/info.json b/blockchains/ethereum/assets/0x7E7Ed710D7d04DB0d278A046683C71FE00fb96D6/info.json new file mode 100644 index 00000000..cab32c6f --- /dev/null +++ b/blockchains/ethereum/assets/0x7E7Ed710D7d04DB0d278A046683C71FE00fb96D6/info.json @@ -0,0 +1,11 @@ +{ + "name": "LianPaiToken", + "symbol": "LP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7E7Ed710D7d04DB0d278A046683C71FE00fb96D6", + "status": "abandoned", + "id": "0x7E7Ed710D7d04DB0d278A046683C71FE00fb96D6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7E7Ed710D7d04DB0d278A046683C71FE00fb96D6/logo.png b/blockchains/ethereum/assets/0x7E7Ed710D7d04DB0d278A046683C71FE00fb96D6/logo.png new file mode 100644 index 00000000..0cc36638 Binary files /dev/null and b/blockchains/ethereum/assets/0x7E7Ed710D7d04DB0d278A046683C71FE00fb96D6/logo.png differ diff --git a/blockchains/ethereum/assets/0x7EF55A013D0632c24955553367C8D5Cc082ddBfF/info.json b/blockchains/ethereum/assets/0x7EF55A013D0632c24955553367C8D5Cc082ddBfF/info.json new file mode 100644 index 00000000..1f2a565a --- /dev/null +++ b/blockchains/ethereum/assets/0x7EF55A013D0632c24955553367C8D5Cc082ddBfF/info.json @@ -0,0 +1,11 @@ +{ + "name": "SILVERING", + "symbol": "SLVG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.silvering.biz/", + "explorer": "https://etherscan.io/token/0x7EF55A013D0632c24955553367C8D5Cc082ddBfF", + "status": "abandoned", + "id": "0x7EF55A013D0632c24955553367C8D5Cc082ddBfF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7EF55A013D0632c24955553367C8D5Cc082ddBfF/logo.png b/blockchains/ethereum/assets/0x7EF55A013D0632c24955553367C8D5Cc082ddBfF/logo.png new file mode 100644 index 00000000..d72551d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x7EF55A013D0632c24955553367C8D5Cc082ddBfF/logo.png differ diff --git a/blockchains/ethereum/assets/0x7Ed172530F9822cd0573B895853E3f745f4108B4/info.json b/blockchains/ethereum/assets/0x7Ed172530F9822cd0573B895853E3f745f4108B4/info.json new file mode 100644 index 00000000..6532ce0f --- /dev/null +++ b/blockchains/ethereum/assets/0x7Ed172530F9822cd0573B895853E3f745f4108B4/info.json @@ -0,0 +1,11 @@ +{ + "name": "HadesCoin", + "symbol": "HAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://hadescoin.net", + "explorer": "https://etherscan.io/token/0x7Ed172530F9822cd0573B895853E3f745f4108B4", + "status": "abandoned", + "id": "0x7Ed172530F9822cd0573B895853E3f745f4108B4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7Ed172530F9822cd0573B895853E3f745f4108B4/logo.png b/blockchains/ethereum/assets/0x7Ed172530F9822cd0573B895853E3f745f4108B4/logo.png new file mode 100644 index 00000000..7b299914 Binary files /dev/null and b/blockchains/ethereum/assets/0x7Ed172530F9822cd0573B895853E3f745f4108B4/logo.png differ diff --git a/blockchains/ethereum/assets/0x7F0F05D1a4d5bDeAA35aAe5a765c600E46e0B14E/info.json b/blockchains/ethereum/assets/0x7F0F05D1a4d5bDeAA35aAe5a765c600E46e0B14E/info.json new file mode 100644 index 00000000..a49da9e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x7F0F05D1a4d5bDeAA35aAe5a765c600E46e0B14E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Good Wine Token", + "symbol": "GWT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7F0F05D1a4d5bDeAA35aAe5a765c600E46e0B14E", + "status": "abandoned", + "id": "0x7F0F05D1a4d5bDeAA35aAe5a765c600E46e0B14E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7F0F05D1a4d5bDeAA35aAe5a765c600E46e0B14E/logo.png b/blockchains/ethereum/assets/0x7F0F05D1a4d5bDeAA35aAe5a765c600E46e0B14E/logo.png new file mode 100644 index 00000000..dc3623fc Binary files /dev/null and b/blockchains/ethereum/assets/0x7F0F05D1a4d5bDeAA35aAe5a765c600E46e0B14E/logo.png differ diff --git a/blockchains/ethereum/assets/0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB/info.json b/blockchains/ethereum/assets/0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB/info.json new file mode 100644 index 00000000..ad8a6cac --- /dev/null +++ b/blockchains/ethereum/assets/0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB/info.json @@ -0,0 +1,11 @@ +{ + "name": "xToken", + "website": "https://xtoken.market", + "description": "xTokens are ERC20 wrapper tokens for staking, governance and liquidity strategies. xToken offers simple set-and-forget tokens that provide simplified exposure to the returns from participating in staking protocols.", + "explorer": "https://etherscan.io/token/0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB", + "type": "ERC20", + "symbol": "XTK", + "decimals": 18, + "status": "active", + "id": "0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB/logo.png b/blockchains/ethereum/assets/0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB/logo.png new file mode 100644 index 00000000..305eca39 Binary files /dev/null and b/blockchains/ethereum/assets/0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB/logo.png differ diff --git a/blockchains/ethereum/assets/0x7F77a0cc3caCE8c58ccE9D153c070f312D1a1088/info.json b/blockchains/ethereum/assets/0x7F77a0cc3caCE8c58ccE9D153c070f312D1a1088/info.json new file mode 100644 index 00000000..9ed44607 --- /dev/null +++ b/blockchains/ethereum/assets/0x7F77a0cc3caCE8c58ccE9D153c070f312D1a1088/info.json @@ -0,0 +1,11 @@ +{ + "name": "Med. Cannabis Note", + "symbol": "₵", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7F77a0cc3caCE8c58ccE9D153c070f312D1a1088", + "status": "spam", + "id": "0x7F77a0cc3caCE8c58ccE9D153c070f312D1a1088" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7F77a0cc3caCE8c58ccE9D153c070f312D1a1088/logo.png b/blockchains/ethereum/assets/0x7F77a0cc3caCE8c58ccE9D153c070f312D1a1088/logo.png new file mode 100644 index 00000000..c378274d Binary files /dev/null and b/blockchains/ethereum/assets/0x7F77a0cc3caCE8c58ccE9D153c070f312D1a1088/logo.png differ diff --git a/blockchains/ethereum/assets/0x7FC408011165760eE31bE2BF20dAf450356692Af/info.json b/blockchains/ethereum/assets/0x7FC408011165760eE31bE2BF20dAf450356692Af/info.json new file mode 100644 index 00000000..78a91828 --- /dev/null +++ b/blockchains/ethereum/assets/0x7FC408011165760eE31bE2BF20dAf450356692Af/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mitrav", + "symbol": "MTR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7FC408011165760eE31bE2BF20dAf450356692Af", + "status": "abandoned", + "id": "0x7FC408011165760eE31bE2BF20dAf450356692Af" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7FC408011165760eE31bE2BF20dAf450356692Af/logo.png b/blockchains/ethereum/assets/0x7FC408011165760eE31bE2BF20dAf450356692Af/logo.png new file mode 100755 index 00000000..98465702 Binary files /dev/null and b/blockchains/ethereum/assets/0x7FC408011165760eE31bE2BF20dAf450356692Af/logo.png differ diff --git a/blockchains/ethereum/assets/0x7FCE2856899a6806eeEf70807985fc7554C66340/info.json b/blockchains/ethereum/assets/0x7FCE2856899a6806eeEf70807985fc7554C66340/info.json new file mode 100644 index 00000000..1f57258d --- /dev/null +++ b/blockchains/ethereum/assets/0x7FCE2856899a6806eeEf70807985fc7554C66340/info.json @@ -0,0 +1,11 @@ +{ + "name": "CLP Token", + "symbol": "CLP", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "https://cryptolending.org/", + "explorer": "https://etherscan.io/token/0x7FCE2856899a6806eeEf70807985fc7554C66340", + "status": "abandoned", + "id": "0x7FCE2856899a6806eeEf70807985fc7554C66340" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7FCE2856899a6806eeEf70807985fc7554C66340/logo.png b/blockchains/ethereum/assets/0x7FCE2856899a6806eeEf70807985fc7554C66340/logo.png new file mode 100644 index 00000000..d164a415 Binary files /dev/null and b/blockchains/ethereum/assets/0x7FCE2856899a6806eeEf70807985fc7554C66340/logo.png differ diff --git a/blockchains/ethereum/assets/0x7FF4169a6B5122b664c51c95727d87750eC07c84/info.json b/blockchains/ethereum/assets/0x7FF4169a6B5122b664c51c95727d87750eC07c84/info.json new file mode 100644 index 00000000..0e0696a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x7FF4169a6B5122b664c51c95727d87750eC07c84/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tenset", + "symbol": "10SET", + "type": "ERC20", + "decimals": 18, + "description": "The Bridge Between Crypto & Stock Market", + "website": "https://tenset.io/", + "explorer": "https://etherscan.io/token/0x7FF4169a6B5122b664c51c95727d87750eC07c84", + "status": "active", + "id": "0x7FF4169a6B5122b664c51c95727d87750eC07c84" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7FF4169a6B5122b664c51c95727d87750eC07c84/logo.png b/blockchains/ethereum/assets/0x7FF4169a6B5122b664c51c95727d87750eC07c84/logo.png new file mode 100644 index 00000000..7d344760 Binary files /dev/null and b/blockchains/ethereum/assets/0x7FF4169a6B5122b664c51c95727d87750eC07c84/logo.png differ diff --git a/blockchains/ethereum/assets/0x7FF7Fa94b8b66Ef313f7970d4EEbd2CB3103a2C0/info.json b/blockchains/ethereum/assets/0x7FF7Fa94b8b66Ef313f7970d4EEbd2CB3103a2C0/info.json new file mode 100644 index 00000000..daf22453 --- /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 00000000..35dbc63b 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 new file mode 100644 index 00000000..d5fb6fc2 --- /dev/null +++ b/blockchains/ethereum/assets/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9/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://etherscan.io/token/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "research": "https://research.binance.com/en/projects/aave-protocol", + "type": "ERC20", + "symbol": "AAVE", + "decimals": 18, + "status": "active", + "id": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "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/ethereum/assets/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9/logo.png b/blockchains/ethereum/assets/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9/logo.png new file mode 100644 index 00000000..d53b1142 Binary files /dev/null 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 00000000..ab1e8146 --- /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 00000000..642f8d77 Binary files /dev/null and b/blockchains/ethereum/assets/0x7Fd4d7737597E7b4ee22AcbF8D94362343ae0a79/logo.png differ diff --git a/blockchains/ethereum/assets/0x7Fe92EC600F15cD25253b421bc151c51b0276b7D/info.json b/blockchains/ethereum/assets/0x7Fe92EC600F15cD25253b421bc151c51b0276b7D/info.json new file mode 100644 index 00000000..1097dd5f --- /dev/null +++ b/blockchains/ethereum/assets/0x7Fe92EC600F15cD25253b421bc151c51b0276b7D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Japan Content Token", + "symbol": "JCT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7Fe92EC600F15cD25253b421bc151c51b0276b7D", + "status": "abandoned", + "id": "0x7Fe92EC600F15cD25253b421bc151c51b0276b7D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7Fe92EC600F15cD25253b421bc151c51b0276b7D/logo.png b/blockchains/ethereum/assets/0x7Fe92EC600F15cD25253b421bc151c51b0276b7D/logo.png new file mode 100755 index 00000000..ca625370 Binary files /dev/null and b/blockchains/ethereum/assets/0x7Fe92EC600F15cD25253b421bc151c51b0276b7D/logo.png differ diff --git a/blockchains/ethereum/assets/0x7a0F89c1606f71499950AA2590d547c3975B728E/info.json b/blockchains/ethereum/assets/0x7a0F89c1606f71499950AA2590d547c3975B728E/info.json new file mode 100644 index 00000000..fb53c8c7 --- /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 00000000..034a4b9d Binary files /dev/null and b/blockchains/ethereum/assets/0x7a0F89c1606f71499950AA2590d547c3975B728E/logo.png differ diff --git a/blockchains/ethereum/assets/0x7a0e91c4204355e0A6bBf746dc0B7E32dFEFDecf/info.json b/blockchains/ethereum/assets/0x7a0e91c4204355e0A6bBf746dc0B7E32dFEFDecf/info.json new file mode 100644 index 00000000..64732dc1 --- /dev/null +++ b/blockchains/ethereum/assets/0x7a0e91c4204355e0A6bBf746dc0B7E32dFEFDecf/info.json @@ -0,0 +1,11 @@ +{ + "name": "EURO TOKEN", + "symbol": "SREUR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.socialremit.com", + "explorer": "https://etherscan.io/token/0x7a0e91c4204355e0A6bBf746dc0B7E32dFEFDecf", + "status": "abandoned", + "id": "0x7a0e91c4204355e0A6bBf746dc0B7E32dFEFDecf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7a0e91c4204355e0A6bBf746dc0B7E32dFEFDecf/logo.png b/blockchains/ethereum/assets/0x7a0e91c4204355e0A6bBf746dc0B7E32dFEFDecf/logo.png new file mode 100644 index 00000000..811eec05 Binary files /dev/null and b/blockchains/ethereum/assets/0x7a0e91c4204355e0A6bBf746dc0B7E32dFEFDecf/logo.png differ diff --git a/blockchains/ethereum/assets/0x7a20456BEdBa4A5744b3Ac6a800B79286208eB48/info.json b/blockchains/ethereum/assets/0x7a20456BEdBa4A5744b3Ac6a800B79286208eB48/info.json new file mode 100644 index 00000000..cf1c2fb9 --- /dev/null +++ b/blockchains/ethereum/assets/0x7a20456BEdBa4A5744b3Ac6a800B79286208eB48/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLKTOKEN", + "symbol": "BLKT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7a20456BEdBa4A5744b3Ac6a800B79286208eB48", + "status": "abandoned", + "id": "0x7a20456BEdBa4A5744b3Ac6a800B79286208eB48" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7a20456BEdBa4A5744b3Ac6a800B79286208eB48/logo.png b/blockchains/ethereum/assets/0x7a20456BEdBa4A5744b3Ac6a800B79286208eB48/logo.png new file mode 100644 index 00000000..c2387c81 Binary files /dev/null and b/blockchains/ethereum/assets/0x7a20456BEdBa4A5744b3Ac6a800B79286208eB48/logo.png differ diff --git a/blockchains/ethereum/assets/0x7a2Bc711E19ba6aff6cE8246C546E8c4B4944DFD/info.json b/blockchains/ethereum/assets/0x7a2Bc711E19ba6aff6cE8246C546E8c4B4944DFD/info.json new file mode 100644 index 00000000..217173b6 --- /dev/null +++ b/blockchains/ethereum/assets/0x7a2Bc711E19ba6aff6cE8246C546E8c4B4944DFD/info.json @@ -0,0 +1,18 @@ +{ + "name": "WAXE", + "website": "https://wax.io", + "description": "WAX Economic Token", + "explorer": "https://etherscan.io/token/0x7a2Bc711E19ba6aff6cE8246C546E8c4B4944DFD", + "research": "https://wax.io/blog/tags/technical", + "type": "ERC20", + "symbol": "WAXE", + "decimals": 8, + "status": "active", + "id": "0x7a2Bc711E19ba6aff6cE8246C546E8c4B4944DFD", + "links": [ + { + "name": "whitepaper", + "url": "https://github.com/worldwide-asset-exchange/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7a2Bc711E19ba6aff6cE8246C546E8c4B4944DFD/logo.png b/blockchains/ethereum/assets/0x7a2Bc711E19ba6aff6cE8246C546E8c4B4944DFD/logo.png new file mode 100644 index 00000000..5e11cb7e Binary files /dev/null and b/blockchains/ethereum/assets/0x7a2Bc711E19ba6aff6cE8246C546E8c4B4944DFD/logo.png differ diff --git a/blockchains/ethereum/assets/0x7a2cF566Ee773AcCeD9F4Ac48bC05c11b31900C2/info.json b/blockchains/ethereum/assets/0x7a2cF566Ee773AcCeD9F4Ac48bC05c11b31900C2/info.json new file mode 100644 index 00000000..17f38834 --- /dev/null +++ b/blockchains/ethereum/assets/0x7a2cF566Ee773AcCeD9F4Ac48bC05c11b31900C2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aether", + "symbol": "AETH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7a2cF566Ee773AcCeD9F4Ac48bC05c11b31900C2", + "status": "abandoned", + "id": "0x7a2cF566Ee773AcCeD9F4Ac48bC05c11b31900C2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7a2cF566Ee773AcCeD9F4Ac48bC05c11b31900C2/logo.png b/blockchains/ethereum/assets/0x7a2cF566Ee773AcCeD9F4Ac48bC05c11b31900C2/logo.png new file mode 100644 index 00000000..b57663cb Binary files /dev/null and b/blockchains/ethereum/assets/0x7a2cF566Ee773AcCeD9F4Ac48bC05c11b31900C2/logo.png differ diff --git a/blockchains/ethereum/assets/0x7a35fE1e97823f78736EF60b8053BFF68fd7dEb4/info.json b/blockchains/ethereum/assets/0x7a35fE1e97823f78736EF60b8053BFF68fd7dEb4/info.json new file mode 100644 index 00000000..18482d56 --- /dev/null +++ b/blockchains/ethereum/assets/0x7a35fE1e97823f78736EF60b8053BFF68fd7dEb4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hasanah", + "symbol": "HUT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7a35fE1e97823f78736EF60b8053BFF68fd7dEb4", + "status": "active", + "id": "0x7a35fE1e97823f78736EF60b8053BFF68fd7dEb4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7a35fE1e97823f78736EF60b8053BFF68fd7dEb4/logo.png b/blockchains/ethereum/assets/0x7a35fE1e97823f78736EF60b8053BFF68fd7dEb4/logo.png new file mode 100644 index 00000000..74d6e9fa Binary files /dev/null and b/blockchains/ethereum/assets/0x7a35fE1e97823f78736EF60b8053BFF68fd7dEb4/logo.png differ diff --git a/blockchains/ethereum/assets/0x7a3d3c4f30c46F51b814BEe23D970A7c9b757a32/info.json b/blockchains/ethereum/assets/0x7a3d3c4f30c46F51b814BEe23D970A7c9b757a32/info.json new file mode 100644 index 00000000..ddb24e2a --- /dev/null +++ b/blockchains/ethereum/assets/0x7a3d3c4f30c46F51b814BEe23D970A7c9b757a32/info.json @@ -0,0 +1,11 @@ +{ + "name": "ASGARD", + "symbol": "ASG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7a3d3c4f30c46F51b814BEe23D970A7c9b757a32", + "status": "abandoned", + "id": "0x7a3d3c4f30c46F51b814BEe23D970A7c9b757a32" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7a3d3c4f30c46F51b814BEe23D970A7c9b757a32/logo.png b/blockchains/ethereum/assets/0x7a3d3c4f30c46F51b814BEe23D970A7c9b757a32/logo.png new file mode 100644 index 00000000..833a479a Binary files /dev/null and b/blockchains/ethereum/assets/0x7a3d3c4f30c46F51b814BEe23D970A7c9b757a32/logo.png differ diff --git a/blockchains/ethereum/assets/0x7a545Ed3863221A974F327199Ac22F7f12535F11/info.json b/blockchains/ethereum/assets/0x7a545Ed3863221A974F327199Ac22F7f12535F11/info.json new file mode 100644 index 00000000..d480e51a --- /dev/null +++ b/blockchains/ethereum/assets/0x7a545Ed3863221A974F327199Ac22F7f12535F11/info.json @@ -0,0 +1,29 @@ +{ + "name": "Baguette Token", + "website": "https://baguettetoken.com/", + "description": "Baguette Token is a community-based meme project implemented as an ERC20 token. BGTT is distributed as a reward for contributions made to its ecosystem. Its goal is to bridge the culinary and cryptocurrency worlds and provide partnerships with bakeries all around the world.", + "explorer": "https://etherscan.io/token/0x7a545Ed3863221A974F327199Ac22F7f12535F11", + "type": "ERC20", + "symbol": "BGTT", + "decimals": 18, + "status": "active", + "id": "0x7a545Ed3863221A974F327199Ac22F7f12535F11", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BaguetteToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baguette-token" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/baguette-token" + }, + { + "name": "whitepaper", + "url": "https://baguettetoken.com/assets/Baguette_Token_White_Paper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7a545Ed3863221A974F327199Ac22F7f12535F11/logo.png b/blockchains/ethereum/assets/0x7a545Ed3863221A974F327199Ac22F7f12535F11/logo.png new file mode 100644 index 00000000..ea077e6a Binary files /dev/null and b/blockchains/ethereum/assets/0x7a545Ed3863221A974F327199Ac22F7f12535F11/logo.png differ diff --git a/blockchains/ethereum/assets/0x7aBc60B3290F68c85f495fD2e0c3Bd278837a313/info.json b/blockchains/ethereum/assets/0x7aBc60B3290F68c85f495fD2e0c3Bd278837a313/info.json new file mode 100644 index 00000000..12f194db --- /dev/null +++ b/blockchains/ethereum/assets/0x7aBc60B3290F68c85f495fD2e0c3Bd278837a313/info.json @@ -0,0 +1,11 @@ +{ + "name": "CyberMovieChain", + "symbol": "CMCT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://cybermoviechain.io/", + "explorer": "https://etherscan.io/token/0x7aBc60B3290F68c85f495fD2e0c3Bd278837a313", + "status": "abandoned", + "id": "0x7aBc60B3290F68c85f495fD2e0c3Bd278837a313" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7aBc60B3290F68c85f495fD2e0c3Bd278837a313/logo.png b/blockchains/ethereum/assets/0x7aBc60B3290F68c85f495fD2e0c3Bd278837a313/logo.png new file mode 100755 index 00000000..22bb8924 Binary files /dev/null and b/blockchains/ethereum/assets/0x7aBc60B3290F68c85f495fD2e0c3Bd278837a313/logo.png differ diff --git a/blockchains/ethereum/assets/0x7aF9Fd0545D36Ca3c55C4DE505E6D5636BB7fE0B/info.json b/blockchains/ethereum/assets/0x7aF9Fd0545D36Ca3c55C4DE505E6D5636BB7fE0B/info.json new file mode 100644 index 00000000..5151ed52 --- /dev/null +++ b/blockchains/ethereum/assets/0x7aF9Fd0545D36Ca3c55C4DE505E6D5636BB7fE0B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Orange Token", + "symbol": "ORA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7aF9Fd0545D36Ca3c55C4DE505E6D5636BB7fE0B", + "status": "abandoned", + "id": "0x7aF9Fd0545D36Ca3c55C4DE505E6D5636BB7fE0B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7aF9Fd0545D36Ca3c55C4DE505E6D5636BB7fE0B/logo.png b/blockchains/ethereum/assets/0x7aF9Fd0545D36Ca3c55C4DE505E6D5636BB7fE0B/logo.png new file mode 100644 index 00000000..a164cda0 Binary files /dev/null and b/blockchains/ethereum/assets/0x7aF9Fd0545D36Ca3c55C4DE505E6D5636BB7fE0B/logo.png differ diff --git a/blockchains/ethereum/assets/0x7afA2BbC06Dad88487b5171EA2bcDF938A6b7Ff9/info.json b/blockchains/ethereum/assets/0x7afA2BbC06Dad88487b5171EA2bcDF938A6b7Ff9/info.json new file mode 100644 index 00000000..5e706e08 --- /dev/null +++ b/blockchains/ethereum/assets/0x7afA2BbC06Dad88487b5171EA2bcDF938A6b7Ff9/info.json @@ -0,0 +1,11 @@ +{ + "name": "TramsToken", + "symbol": "TRAMS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7afA2BbC06Dad88487b5171EA2bcDF938A6b7Ff9", + "status": "abandoned", + "id": "0x7afA2BbC06Dad88487b5171EA2bcDF938A6b7Ff9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7afA2BbC06Dad88487b5171EA2bcDF938A6b7Ff9/logo.png b/blockchains/ethereum/assets/0x7afA2BbC06Dad88487b5171EA2bcDF938A6b7Ff9/logo.png new file mode 100644 index 00000000..7dc0e049 Binary files /dev/null and b/blockchains/ethereum/assets/0x7afA2BbC06Dad88487b5171EA2bcDF938A6b7Ff9/logo.png differ diff --git a/blockchains/ethereum/assets/0x7b02C6118BaeFe500058cfC07D708fb404Ef5bC6/info.json b/blockchains/ethereum/assets/0x7b02C6118BaeFe500058cfC07D708fb404Ef5bC6/info.json new file mode 100644 index 00000000..c27d7873 --- /dev/null +++ b/blockchains/ethereum/assets/0x7b02C6118BaeFe500058cfC07D708fb404Ef5bC6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tryminex Token", + "symbol": "TMX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7b02C6118BaeFe500058cfC07D708fb404Ef5bC6", + "status": "abandoned", + "id": "0x7b02C6118BaeFe500058cfC07D708fb404Ef5bC6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7b02C6118BaeFe500058cfC07D708fb404Ef5bC6/logo.png b/blockchains/ethereum/assets/0x7b02C6118BaeFe500058cfC07D708fb404Ef5bC6/logo.png new file mode 100644 index 00000000..23d5e4e2 Binary files /dev/null and b/blockchains/ethereum/assets/0x7b02C6118BaeFe500058cfC07D708fb404Ef5bC6/logo.png differ diff --git a/blockchains/ethereum/assets/0x7b09Fb91eD7015B99db9e9ac10a2dD38aC0C85E1/info.json b/blockchains/ethereum/assets/0x7b09Fb91eD7015B99db9e9ac10a2dD38aC0C85E1/info.json new file mode 100644 index 00000000..92bcefd4 --- /dev/null +++ b/blockchains/ethereum/assets/0x7b09Fb91eD7015B99db9e9ac10a2dD38aC0C85E1/info.json @@ -0,0 +1,11 @@ +{ + "name": "GiftToken", + "symbol": "GFT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7b09Fb91eD7015B99db9e9ac10a2dD38aC0C85E1", + "status": "abandoned", + "id": "0x7b09Fb91eD7015B99db9e9ac10a2dD38aC0C85E1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7b09Fb91eD7015B99db9e9ac10a2dD38aC0C85E1/logo.png b/blockchains/ethereum/assets/0x7b09Fb91eD7015B99db9e9ac10a2dD38aC0C85E1/logo.png new file mode 100755 index 00000000..70de1bc4 Binary files /dev/null and b/blockchains/ethereum/assets/0x7b09Fb91eD7015B99db9e9ac10a2dD38aC0C85E1/logo.png differ diff --git a/blockchains/ethereum/assets/0x7b0CB0481E20448B030DeB3F292b61605EcEf050/info.json b/blockchains/ethereum/assets/0x7b0CB0481E20448B030DeB3F292b61605EcEf050/info.json new file mode 100644 index 00000000..1e388d5c --- /dev/null +++ b/blockchains/ethereum/assets/0x7b0CB0481E20448B030DeB3F292b61605EcEf050/info.json @@ -0,0 +1,11 @@ +{ + "name": "Healthy Coin", + "symbol": "HLCN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7b0CB0481E20448B030DeB3F292b61605EcEf050", + "status": "abandoned", + "id": "0x7b0CB0481E20448B030DeB3F292b61605EcEf050" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7b0CB0481E20448B030DeB3F292b61605EcEf050/logo.png b/blockchains/ethereum/assets/0x7b0CB0481E20448B030DeB3F292b61605EcEf050/logo.png new file mode 100644 index 00000000..c8886550 Binary files /dev/null and b/blockchains/ethereum/assets/0x7b0CB0481E20448B030DeB3F292b61605EcEf050/logo.png differ diff --git a/blockchains/ethereum/assets/0x7b123f53421b1bF8533339BFBdc7C98aA94163db/info.json b/blockchains/ethereum/assets/0x7b123f53421b1bF8533339BFBdc7C98aA94163db/info.json new file mode 100644 index 00000000..5234618e --- /dev/null +++ b/blockchains/ethereum/assets/0x7b123f53421b1bF8533339BFBdc7C98aA94163db/info.json @@ -0,0 +1,21 @@ +{ + "name": "DFOhub", + "website": "https://dfohub.com", + "description": "is the Voting Token of DFOhub, the first programmable equity. DFOhub is an On-Chain Github to deploy and manage Decentralised Flexible Organizations. DFOs are Microservices-Driven On-Chain organisations to build Independent Decentralised Applications, in where Token Holders are the real owners and nobody hold the pk.", + "explorer": "https://etherscan.io/token/0x7b123f53421b1bF8533339BFBdc7C98aA94163db", + "type": "ERC20", + "symbol": "buidl", + "decimals": 18, + "status": "active", + "id": "0x7b123f53421b1bF8533339BFBdc7C98aA94163db", + "links": [ + { + "name": "github", + "url": "https://github.com/b-u-i-d-l" + }, + { + "name": "whitepaper", + "url": "https://www.dfohub.com/strategy" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7b123f53421b1bF8533339BFBdc7C98aA94163db/logo.png b/blockchains/ethereum/assets/0x7b123f53421b1bF8533339BFBdc7C98aA94163db/logo.png new file mode 100644 index 00000000..b383274f Binary files /dev/null and b/blockchains/ethereum/assets/0x7b123f53421b1bF8533339BFBdc7C98aA94163db/logo.png differ diff --git a/blockchains/ethereum/assets/0x7b267eea6E679e747C0Cb1D6B453A976D3638D27/info.json b/blockchains/ethereum/assets/0x7b267eea6E679e747C0Cb1D6B453A976D3638D27/info.json new file mode 100644 index 00000000..4d288f46 --- /dev/null +++ b/blockchains/ethereum/assets/0x7b267eea6E679e747C0Cb1D6B453A976D3638D27/info.json @@ -0,0 +1,11 @@ +{ + "name": "CMAP Token", + "symbol": "CMAP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7b267eea6E679e747C0Cb1D6B453A976D3638D27", + "status": "abandoned", + "id": "0x7b267eea6E679e747C0Cb1D6B453A976D3638D27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7b267eea6E679e747C0Cb1D6B453A976D3638D27/logo.png b/blockchains/ethereum/assets/0x7b267eea6E679e747C0Cb1D6B453A976D3638D27/logo.png new file mode 100755 index 00000000..3cbd4d5f Binary files /dev/null and b/blockchains/ethereum/assets/0x7b267eea6E679e747C0Cb1D6B453A976D3638D27/logo.png differ diff --git a/blockchains/ethereum/assets/0x7b2dF125567815ac9b57DA04B620F50bc93B320C/info.json b/blockchains/ethereum/assets/0x7b2dF125567815ac9b57DA04B620F50bc93B320C/info.json new file mode 100644 index 00000000..a9ececa3 --- /dev/null +++ b/blockchains/ethereum/assets/0x7b2dF125567815ac9b57DA04B620F50bc93B320C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Archetypal Network", + "symbol": "ACTP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://archetypal.network/", + "explorer": "https://etherscan.io/token/0x7b2dF125567815ac9b57DA04B620F50bc93B320C", + "status": "abandoned", + "id": "0x7b2dF125567815ac9b57DA04B620F50bc93B320C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7b2dF125567815ac9b57DA04B620F50bc93B320C/logo.png b/blockchains/ethereum/assets/0x7b2dF125567815ac9b57DA04B620F50bc93B320C/logo.png new file mode 100644 index 00000000..84c3588b Binary files /dev/null and b/blockchains/ethereum/assets/0x7b2dF125567815ac9b57DA04B620F50bc93B320C/logo.png differ diff --git a/blockchains/ethereum/assets/0x7b39BB62b486cBD9C5995ce4AC331BCd63dabe82/info.json b/blockchains/ethereum/assets/0x7b39BB62b486cBD9C5995ce4AC331BCd63dabe82/info.json new file mode 100644 index 00000000..aed71a1c --- /dev/null +++ b/blockchains/ethereum/assets/0x7b39BB62b486cBD9C5995ce4AC331BCd63dabe82/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITWOX", + "symbol": "WOX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.bitwox.com", + "explorer": "https://etherscan.io/token/0x7b39BB62b486cBD9C5995ce4AC331BCd63dabe82", + "status": "abandoned", + "id": "0x7b39BB62b486cBD9C5995ce4AC331BCd63dabe82" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7b39BB62b486cBD9C5995ce4AC331BCd63dabe82/logo.png b/blockchains/ethereum/assets/0x7b39BB62b486cBD9C5995ce4AC331BCd63dabe82/logo.png new file mode 100644 index 00000000..5e23430a Binary files /dev/null and b/blockchains/ethereum/assets/0x7b39BB62b486cBD9C5995ce4AC331BCd63dabe82/logo.png differ diff --git a/blockchains/ethereum/assets/0x7b53B2C4B2F495d843a4e92e5c5511034d32bd15/info.json b/blockchains/ethereum/assets/0x7b53B2C4B2F495d843a4e92e5c5511034d32bd15/info.json new file mode 100644 index 00000000..577d7ea7 --- /dev/null +++ b/blockchains/ethereum/assets/0x7b53B2C4B2F495d843a4e92e5c5511034d32bd15/info.json @@ -0,0 +1,11 @@ +{ + "name": "VAYLA Token", + "symbol": "VYA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7b53B2C4B2F495d843a4e92e5c5511034d32bd15", + "status": "abandoned", + "id": "0x7b53B2C4B2F495d843a4e92e5c5511034d32bd15" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7b53B2C4B2F495d843a4e92e5c5511034d32bd15/logo.png b/blockchains/ethereum/assets/0x7b53B2C4B2F495d843a4e92e5c5511034d32bd15/logo.png new file mode 100644 index 00000000..b3d5ad7c Binary files /dev/null and b/blockchains/ethereum/assets/0x7b53B2C4B2F495d843a4e92e5c5511034d32bd15/logo.png differ diff --git a/blockchains/ethereum/assets/0x7b551d679606eE11862B0E9b2d354b53951fda93/info.json b/blockchains/ethereum/assets/0x7b551d679606eE11862B0E9b2d354b53951fda93/info.json new file mode 100644 index 00000000..39d1447c --- /dev/null +++ b/blockchains/ethereum/assets/0x7b551d679606eE11862B0E9b2d354b53951fda93/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hydrolic Token", + "symbol": "HDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7b551d679606eE11862B0E9b2d354b53951fda93", + "status": "abandoned", + "id": "0x7b551d679606eE11862B0E9b2d354b53951fda93" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7b551d679606eE11862B0E9b2d354b53951fda93/logo.png b/blockchains/ethereum/assets/0x7b551d679606eE11862B0E9b2d354b53951fda93/logo.png new file mode 100644 index 00000000..de3a665e Binary files /dev/null and b/blockchains/ethereum/assets/0x7b551d679606eE11862B0E9b2d354b53951fda93/logo.png differ diff --git a/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/info.json b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/info.json new file mode 100644 index 00000000..28670ac5 --- /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 00000000..1536e722 Binary files /dev/null and b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/logo.png differ diff --git a/blockchains/ethereum/assets/0x7b94A1281Db0335C9Efd68AcA5c98B494d775C70/info.json b/blockchains/ethereum/assets/0x7b94A1281Db0335C9Efd68AcA5c98B494d775C70/info.json new file mode 100644 index 00000000..40d6d69e --- /dev/null +++ b/blockchains/ethereum/assets/0x7b94A1281Db0335C9Efd68AcA5c98B494d775C70/info.json @@ -0,0 +1,11 @@ +{ + "name": "Path Network Token", + "symbol": "PATH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7b94A1281Db0335C9Efd68AcA5c98B494d775C70", + "status": "abandoned", + "id": "0x7b94A1281Db0335C9Efd68AcA5c98B494d775C70" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7b94A1281Db0335C9Efd68AcA5c98B494d775C70/logo.png b/blockchains/ethereum/assets/0x7b94A1281Db0335C9Efd68AcA5c98B494d775C70/logo.png new file mode 100644 index 00000000..94942d70 Binary files /dev/null and b/blockchains/ethereum/assets/0x7b94A1281Db0335C9Efd68AcA5c98B494d775C70/logo.png differ diff --git a/blockchains/ethereum/assets/0x7b98dC6Dea0BE60dea2b2cF44b5bd9e702D7440B/info.json b/blockchains/ethereum/assets/0x7b98dC6Dea0BE60dea2b2cF44b5bd9e702D7440B/info.json new file mode 100644 index 00000000..080c10c3 --- /dev/null +++ b/blockchains/ethereum/assets/0x7b98dC6Dea0BE60dea2b2cF44b5bd9e702D7440B/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitrouToken", + "symbol": "ROT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7b98dC6Dea0BE60dea2b2cF44b5bd9e702D7440B", + "status": "abandoned", + "id": "0x7b98dC6Dea0BE60dea2b2cF44b5bd9e702D7440B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7b98dC6Dea0BE60dea2b2cF44b5bd9e702D7440B/logo.png b/blockchains/ethereum/assets/0x7b98dC6Dea0BE60dea2b2cF44b5bd9e702D7440B/logo.png new file mode 100644 index 00000000..d1a2063f Binary files /dev/null and b/blockchains/ethereum/assets/0x7b98dC6Dea0BE60dea2b2cF44b5bd9e702D7440B/logo.png differ diff --git a/blockchains/ethereum/assets/0x7bA19B7F7d106A9a1e0985397B94F38EEe0b555e/info.json b/blockchains/ethereum/assets/0x7bA19B7F7d106A9a1e0985397B94F38EEe0b555e/info.json new file mode 100644 index 00000000..d224face --- /dev/null +++ b/blockchains/ethereum/assets/0x7bA19B7F7d106A9a1e0985397B94F38EEe0b555e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wixlar", + "symbol": "WIX", + "type": "ERC20", + "decimals": 2, + "description": "Wixlar is a Global Decentralized Digital Currency based on the BlockChain Technology which is instant, secure, private and with low fee transactions.", + "website": "https://wixlar.com", + "explorer": "https://etherscan.io/token/0x7bA19B7F7d106A9a1e0985397B94F38EEe0b555e", + "status": "active", + "id": "0x7bA19B7F7d106A9a1e0985397B94F38EEe0b555e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7bA19B7F7d106A9a1e0985397B94F38EEe0b555e/logo.png b/blockchains/ethereum/assets/0x7bA19B7F7d106A9a1e0985397B94F38EEe0b555e/logo.png new file mode 100755 index 00000000..536a6f73 Binary files /dev/null and b/blockchains/ethereum/assets/0x7bA19B7F7d106A9a1e0985397B94F38EEe0b555e/logo.png differ diff --git a/blockchains/ethereum/assets/0x7bBef2035c3BbE8D99E4Ac027Ba0EBA501BF8957/info.json b/blockchains/ethereum/assets/0x7bBef2035c3BbE8D99E4Ac027Ba0EBA501BF8957/info.json new file mode 100644 index 00000000..4e98c2ba --- /dev/null +++ b/blockchains/ethereum/assets/0x7bBef2035c3BbE8D99E4Ac027Ba0EBA501BF8957/info.json @@ -0,0 +1,11 @@ +{ + "name": "Astatos Token", + "symbol": "ASTT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7bBef2035c3BbE8D99E4Ac027Ba0EBA501BF8957", + "status": "abandoned", + "id": "0x7bBef2035c3BbE8D99E4Ac027Ba0EBA501BF8957" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7bBef2035c3BbE8D99E4Ac027Ba0EBA501BF8957/logo.png b/blockchains/ethereum/assets/0x7bBef2035c3BbE8D99E4Ac027Ba0EBA501BF8957/logo.png new file mode 100755 index 00000000..b525b7a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x7bBef2035c3BbE8D99E4Ac027Ba0EBA501BF8957/logo.png differ diff --git a/blockchains/ethereum/assets/0x7bE00ed6796B21656732E8f739Fc1b8F1C53DA0D/info.json b/blockchains/ethereum/assets/0x7bE00ed6796B21656732E8f739Fc1b8F1C53DA0D/info.json new file mode 100644 index 00000000..17b4f9fb --- /dev/null +++ b/blockchains/ethereum/assets/0x7bE00ed6796B21656732E8f739Fc1b8F1C53DA0D/info.json @@ -0,0 +1,11 @@ +{ + "name": "AC eXchange Token", + "website": "https://www.acdx.io", + "description": "-", + "explorer": "https://etherscan.io/token/0x7bE00ed6796B21656732E8f739Fc1b8F1C53DA0D", + "type": "ERC20", + "symbol": "ACXT", + "decimals": 18, + "status": "active", + "id": "0x7bE00ed6796B21656732E8f739Fc1b8F1C53DA0D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7bE00ed6796B21656732E8f739Fc1b8F1C53DA0D/logo.png b/blockchains/ethereum/assets/0x7bE00ed6796B21656732E8f739Fc1b8F1C53DA0D/logo.png new file mode 100644 index 00000000..45a6be45 Binary files /dev/null and b/blockchains/ethereum/assets/0x7bE00ed6796B21656732E8f739Fc1b8F1C53DA0D/logo.png differ diff --git a/blockchains/ethereum/assets/0x7bE14a02F9953D5A37f5569113f403De4704Eae4/info.json b/blockchains/ethereum/assets/0x7bE14a02F9953D5A37f5569113f403De4704Eae4/info.json new file mode 100644 index 00000000..00764690 --- /dev/null +++ b/blockchains/ethereum/assets/0x7bE14a02F9953D5A37f5569113f403De4704Eae4/info.json @@ -0,0 +1,11 @@ +{ + "name": "CARTY", + "symbol": "CTY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7bE14a02F9953D5A37f5569113f403De4704Eae4", + "status": "abandoned", + "id": "0x7bE14a02F9953D5A37f5569113f403De4704Eae4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7bE14a02F9953D5A37f5569113f403De4704Eae4/logo.png b/blockchains/ethereum/assets/0x7bE14a02F9953D5A37f5569113f403De4704Eae4/logo.png new file mode 100644 index 00000000..1627c899 Binary files /dev/null and b/blockchains/ethereum/assets/0x7bE14a02F9953D5A37f5569113f403De4704Eae4/logo.png differ diff --git a/blockchains/ethereum/assets/0x7bF219195f0A3E109886AE5901298A9ba34DD1F6/info.json b/blockchains/ethereum/assets/0x7bF219195f0A3E109886AE5901298A9ba34DD1F6/info.json new file mode 100644 index 00000000..e2f660ea --- /dev/null +++ b/blockchains/ethereum/assets/0x7bF219195f0A3E109886AE5901298A9ba34DD1F6/info.json @@ -0,0 +1,11 @@ +{ + "name": "VAN", + "website": "https://vancoin.cash", + "description": "A currency used as payment for removals and transport services", + "explorer": "https://etherscan.io/token/0x7bF219195f0A3E109886AE5901298A9ba34DD1F6", + "type": "ERC20", + "symbol": "VAN", + "decimals": 18, + "status": "active", + "id": "0x7bF219195f0A3E109886AE5901298A9ba34DD1F6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7bF219195f0A3E109886AE5901298A9ba34DD1F6/logo.png b/blockchains/ethereum/assets/0x7bF219195f0A3E109886AE5901298A9ba34DD1F6/logo.png new file mode 100644 index 00000000..49e7b60a Binary files /dev/null and b/blockchains/ethereum/assets/0x7bF219195f0A3E109886AE5901298A9ba34DD1F6/logo.png differ diff --git a/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/info.json b/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/info.json new file mode 100644 index 00000000..c68d7a05 --- /dev/null +++ b/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/info.json @@ -0,0 +1,56 @@ +{ + "name": "DynETH DynaSet", + "type": "ERC20", + "symbol": "dynETH", + "decimals": 18, + "website": "https://singularitydao.ai/dynasets/dynETH", + "description": "dynETH gives users exposure to Ethereum using long only strategies optimised by the Dynamic Asset Manager with less fees & expenses. Powered by SingularityDAO.ai.", + "explorer": "https://etherscan.io/token/0x7bb1A6b19e37028B3aA5c580339c640720E35203", + "status": "active", + "id": "0x7bb1A6b19e37028B3aA5c580339c640720E35203", + "links": [ + { + "name": "x", + "url": "https://x.com/SingularityDao" + }, + { + "name": "telegram", + "url": "https://t.me/chatsight_bot?start=dmVyaWZ5OjotMTAwMTI4NzAxNjEzNw==" + }, + { + "name": "telegram_news", + "url": "https://t.me/sdaoann" + }, + { + "name": "discord", + "url": "https://discord.com/invite/singularitydao" + }, + { + "name": "github", + "url": "https://github.com/Singularity-DAO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/singularitydao" + }, + { + "name": "youtube", + "url": "https://youtube.com/@SingularityDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/singularitydao/" + }, + { + "name": "medium", + "url": "https://medium.com/singularitydao" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SingularityDAO/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/logo.png b/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/logo.png new file mode 100644 index 00000000..3b2e5581 Binary files /dev/null and b/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/logo.png differ diff --git a/blockchains/ethereum/assets/0x7bf878a25f7d34D392EBC8d14E33478966c7CA75/info.json b/blockchains/ethereum/assets/0x7bf878a25f7d34D392EBC8d14E33478966c7CA75/info.json new file mode 100644 index 00000000..d237bd85 --- /dev/null +++ b/blockchains/ethereum/assets/0x7bf878a25f7d34D392EBC8d14E33478966c7CA75/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pornvisory", + "symbol": "PVY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7bf878a25f7d34D392EBC8d14E33478966c7CA75", + "status": "abandoned", + "id": "0x7bf878a25f7d34D392EBC8d14E33478966c7CA75" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7bf878a25f7d34D392EBC8d14E33478966c7CA75/logo.png b/blockchains/ethereum/assets/0x7bf878a25f7d34D392EBC8d14E33478966c7CA75/logo.png new file mode 100644 index 00000000..e7809d51 Binary files /dev/null and b/blockchains/ethereum/assets/0x7bf878a25f7d34D392EBC8d14E33478966c7CA75/logo.png differ diff --git a/blockchains/ethereum/assets/0x7c0AFD49D40Ec308d49E2926E5c99B037d54EE7e/info.json b/blockchains/ethereum/assets/0x7c0AFD49D40Ec308d49E2926E5c99B037d54EE7e/info.json new file mode 100644 index 00000000..83ea7309 --- /dev/null +++ b/blockchains/ethereum/assets/0x7c0AFD49D40Ec308d49E2926E5c99B037d54EE7e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Onyx USD", + "symbol": "OUSD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7c0AFD49D40Ec308d49E2926E5c99B037d54EE7e", + "status": "abandoned", + "id": "0x7c0AFD49D40Ec308d49E2926E5c99B037d54EE7e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7c0AFD49D40Ec308d49E2926E5c99B037d54EE7e/logo.png b/blockchains/ethereum/assets/0x7c0AFD49D40Ec308d49E2926E5c99B037d54EE7e/logo.png new file mode 100644 index 00000000..e0b286aa Binary files /dev/null and b/blockchains/ethereum/assets/0x7c0AFD49D40Ec308d49E2926E5c99B037d54EE7e/logo.png differ diff --git a/blockchains/ethereum/assets/0x7c3f46575C569caD06490AaB2d179D1153F2cD23/info.json b/blockchains/ethereum/assets/0x7c3f46575C569caD06490AaB2d179D1153F2cD23/info.json new file mode 100644 index 00000000..7358223d --- /dev/null +++ b/blockchains/ethereum/assets/0x7c3f46575C569caD06490AaB2d179D1153F2cD23/info.json @@ -0,0 +1,11 @@ +{ + "name": "HNGC Token", + "symbol": "HNGC", + "type": "ERC20", + "decimals": 16, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7c3f46575C569caD06490AaB2d179D1153F2cD23", + "status": "spam", + "id": "0x7c3f46575C569caD06490AaB2d179D1153F2cD23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7c3f46575C569caD06490AaB2d179D1153F2cD23/logo.png b/blockchains/ethereum/assets/0x7c3f46575C569caD06490AaB2d179D1153F2cD23/logo.png new file mode 100644 index 00000000..013cdc1b Binary files /dev/null and b/blockchains/ethereum/assets/0x7c3f46575C569caD06490AaB2d179D1153F2cD23/logo.png differ diff --git a/blockchains/ethereum/assets/0x7c50079cC96284C1e01e3a66FC38af090289b4Ee/info.json b/blockchains/ethereum/assets/0x7c50079cC96284C1e01e3a66FC38af090289b4Ee/info.json new file mode 100644 index 00000000..967ac085 --- /dev/null +++ b/blockchains/ethereum/assets/0x7c50079cC96284C1e01e3a66FC38af090289b4Ee/info.json @@ -0,0 +1,11 @@ +{ + "name": "SUREBANQA ENTERPRISE e-SHARE", + "symbol": "ST20E", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7c50079cC96284C1e01e3a66FC38af090289b4Ee", + "status": "abandoned", + "id": "0x7c50079cC96284C1e01e3a66FC38af090289b4Ee" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7c50079cC96284C1e01e3a66FC38af090289b4Ee/logo.png b/blockchains/ethereum/assets/0x7c50079cC96284C1e01e3a66FC38af090289b4Ee/logo.png new file mode 100755 index 00000000..cbdcc822 Binary files /dev/null and b/blockchains/ethereum/assets/0x7c50079cC96284C1e01e3a66FC38af090289b4Ee/logo.png differ diff --git a/blockchains/ethereum/assets/0x7c6ceDa90802BA9bEA8c7508c2c5b8dEF670f3c0/info.json b/blockchains/ethereum/assets/0x7c6ceDa90802BA9bEA8c7508c2c5b8dEF670f3c0/info.json new file mode 100644 index 00000000..e07b75dc --- /dev/null +++ b/blockchains/ethereum/assets/0x7c6ceDa90802BA9bEA8c7508c2c5b8dEF670f3c0/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R901372", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7c6ceDa90802BA9bEA8c7508c2c5b8dEF670f3c0", + "status": "abandoned", + "id": "0x7c6ceDa90802BA9bEA8c7508c2c5b8dEF670f3c0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7c6ceDa90802BA9bEA8c7508c2c5b8dEF670f3c0/logo.png b/blockchains/ethereum/assets/0x7c6ceDa90802BA9bEA8c7508c2c5b8dEF670f3c0/logo.png new file mode 100644 index 00000000..4159674b Binary files /dev/null and b/blockchains/ethereum/assets/0x7c6ceDa90802BA9bEA8c7508c2c5b8dEF670f3c0/logo.png differ diff --git a/blockchains/ethereum/assets/0x7c7378143a9c8839e0502e2178F058F46c6ea504/info.json b/blockchains/ethereum/assets/0x7c7378143a9c8839e0502e2178F058F46c6ea504/info.json new file mode 100644 index 00000000..fdd07c4a --- /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 00000000..4e50b5eb Binary files /dev/null and b/blockchains/ethereum/assets/0x7c7378143a9c8839e0502e2178F058F46c6ea504/logo.png differ diff --git a/blockchains/ethereum/assets/0x7c8161545717a334f3196e765d9713f8042EF338/info.json b/blockchains/ethereum/assets/0x7c8161545717a334f3196e765d9713f8042EF338/info.json new file mode 100644 index 00000000..044837dd --- /dev/null +++ b/blockchains/ethereum/assets/0x7c8161545717a334f3196e765d9713f8042EF338/info.json @@ -0,0 +1,14 @@ +{ + "name": "PancakeSwap Token (Portal)", + "type": "ERC20", + "symbol": "CAKE", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://pancakeswap.finance/", + "explorer": "https://etherscan.io/token/0x7c8161545717a334f3196e765d9713f8042EF338", + "status": "active", + "id": "0x7c8161545717a334f3196e765d9713f8042EF338", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7c8161545717a334f3196e765d9713f8042EF338/logo.png b/blockchains/ethereum/assets/0x7c8161545717a334f3196e765d9713f8042EF338/logo.png new file mode 100644 index 00000000..cb6457e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x7c8161545717a334f3196e765d9713f8042EF338/logo.png differ diff --git a/blockchains/ethereum/assets/0x7c8F07Ac5b0a2876ee582a661d53dE2D0BbAd96F/info.json b/blockchains/ethereum/assets/0x7c8F07Ac5b0a2876ee582a661d53dE2D0BbAd96F/info.json new file mode 100644 index 00000000..186b2bc6 --- /dev/null +++ b/blockchains/ethereum/assets/0x7c8F07Ac5b0a2876ee582a661d53dE2D0BbAd96F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Synth iBNB", + "symbol": "iBNB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7c8F07Ac5b0a2876ee582a661d53dE2D0BbAd96F", + "status": "abandoned", + "id": "0x7c8F07Ac5b0a2876ee582a661d53dE2D0BbAd96F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7c8F07Ac5b0a2876ee582a661d53dE2D0BbAd96F/logo.png b/blockchains/ethereum/assets/0x7c8F07Ac5b0a2876ee582a661d53dE2D0BbAd96F/logo.png new file mode 100644 index 00000000..d82e4d38 Binary files /dev/null and b/blockchains/ethereum/assets/0x7c8F07Ac5b0a2876ee582a661d53dE2D0BbAd96F/logo.png differ diff --git a/blockchains/ethereum/assets/0x7c95633971a6696bE4b7C1406a4Ff74f74613665/info.json b/blockchains/ethereum/assets/0x7c95633971a6696bE4b7C1406a4Ff74f74613665/info.json new file mode 100644 index 00000000..677b2dd1 --- /dev/null +++ b/blockchains/ethereum/assets/0x7c95633971a6696bE4b7C1406a4Ff74f74613665/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C565922", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7c95633971a6696bE4b7C1406a4Ff74f74613665", + "status": "abandoned", + "id": "0x7c95633971a6696bE4b7C1406a4Ff74f74613665" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7c95633971a6696bE4b7C1406a4Ff74f74613665/logo.png b/blockchains/ethereum/assets/0x7c95633971a6696bE4b7C1406a4Ff74f74613665/logo.png new file mode 100644 index 00000000..3855ef59 Binary files /dev/null and b/blockchains/ethereum/assets/0x7c95633971a6696bE4b7C1406a4Ff74f74613665/logo.png differ diff --git a/blockchains/ethereum/assets/0x7c9D8Fb3bDe3D9Ea6e89170618C2dC3d16695D36/info.json b/blockchains/ethereum/assets/0x7c9D8Fb3bDe3D9Ea6e89170618C2dC3d16695D36/info.json new file mode 100644 index 00000000..cc813d4d --- /dev/null +++ b/blockchains/ethereum/assets/0x7c9D8Fb3bDe3D9Ea6e89170618C2dC3d16695D36/info.json @@ -0,0 +1,11 @@ +{ + "name": "WhiteRockCasino", + "symbol": "WRC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://whiterock-coin.com/", + "explorer": "https://etherscan.io/token/0x7c9D8Fb3bDe3D9Ea6e89170618C2dC3d16695D36", + "status": "abandoned", + "id": "0x7c9D8Fb3bDe3D9Ea6e89170618C2dC3d16695D36" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7c9D8Fb3bDe3D9Ea6e89170618C2dC3d16695D36/logo.png b/blockchains/ethereum/assets/0x7c9D8Fb3bDe3D9Ea6e89170618C2dC3d16695D36/logo.png new file mode 100644 index 00000000..d4a92c22 Binary files /dev/null and b/blockchains/ethereum/assets/0x7c9D8Fb3bDe3D9Ea6e89170618C2dC3d16695D36/logo.png differ diff --git a/blockchains/ethereum/assets/0x7c9f4C87d911613Fe9ca58b579f737911AAD2D43/info.json b/blockchains/ethereum/assets/0x7c9f4C87d911613Fe9ca58b579f737911AAD2D43/info.json new file mode 100644 index 00000000..98c3f576 --- /dev/null +++ b/blockchains/ethereum/assets/0x7c9f4C87d911613Fe9ca58b579f737911AAD2D43/info.json @@ -0,0 +1,14 @@ +{ + "name": "MATIC (Portal from Polygon)", + "type": "ERC20", + "symbol": "MATICpo", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://polygon.technology/", + "explorer": "https://etherscan.io/token/0x7c9f4C87d911613Fe9ca58b579f737911AAD2D43", + "status": "active", + "id": "0x7c9f4C87d911613Fe9ca58b579f737911AAD2D43", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7c9f4C87d911613Fe9ca58b579f737911AAD2D43/logo.png b/blockchains/ethereum/assets/0x7c9f4C87d911613Fe9ca58b579f737911AAD2D43/logo.png new file mode 100644 index 00000000..60c97897 Binary files /dev/null and b/blockchains/ethereum/assets/0x7c9f4C87d911613Fe9ca58b579f737911AAD2D43/logo.png differ diff --git a/blockchains/ethereum/assets/0x7cC23E195D4db133A78B43eB93B524796777c3e7/info.json b/blockchains/ethereum/assets/0x7cC23E195D4db133A78B43eB93B524796777c3e7/info.json new file mode 100644 index 00000000..e73dd7d6 --- /dev/null +++ b/blockchains/ethereum/assets/0x7cC23E195D4db133A78B43eB93B524796777c3e7/info.json @@ -0,0 +1,11 @@ +{ + "name": "yam.gold", + "symbol": "YAM GOLD", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7cC23E195D4db133A78B43eB93B524796777c3e7", + "status": "abandoned", + "id": "0x7cC23E195D4db133A78B43eB93B524796777c3e7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7cC23E195D4db133A78B43eB93B524796777c3e7/logo.png b/blockchains/ethereum/assets/0x7cC23E195D4db133A78B43eB93B524796777c3e7/logo.png new file mode 100644 index 00000000..674156fc Binary files /dev/null and b/blockchains/ethereum/assets/0x7cC23E195D4db133A78B43eB93B524796777c3e7/logo.png differ diff --git a/blockchains/ethereum/assets/0x7cE0641D19095ed3226fC5222836901bcE41585D/info.json b/blockchains/ethereum/assets/0x7cE0641D19095ed3226fC5222836901bcE41585D/info.json new file mode 100644 index 00000000..1b23ca7e --- /dev/null +++ b/blockchains/ethereum/assets/0x7cE0641D19095ed3226fC5222836901bcE41585D/info.json @@ -0,0 +1,11 @@ +{ + "name": "StarFire GoldBond Fiat SettleMint", + "symbol": "SFGB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7cE0641D19095ed3226fC5222836901bcE41585D", + "status": "abandoned", + "id": "0x7cE0641D19095ed3226fC5222836901bcE41585D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7cE0641D19095ed3226fC5222836901bcE41585D/logo.png b/blockchains/ethereum/assets/0x7cE0641D19095ed3226fC5222836901bcE41585D/logo.png new file mode 100644 index 00000000..b6b46a6b Binary files /dev/null and b/blockchains/ethereum/assets/0x7cE0641D19095ed3226fC5222836901bcE41585D/logo.png differ diff --git a/blockchains/ethereum/assets/0x7ca121b093e2FbD4bB9A894bD5Ff487d16f1F83b/info.json b/blockchains/ethereum/assets/0x7ca121b093e2FbD4bB9A894bD5Ff487d16f1F83b/info.json new file mode 100644 index 00000000..be91ee4e --- /dev/null +++ b/blockchains/ethereum/assets/0x7ca121b093e2FbD4bB9A894bD5Ff487d16f1F83b/info.json @@ -0,0 +1,11 @@ +{ + "name": "LORDLESS TOKEN", + "symbol": "LESS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7ca121b093e2FbD4bB9A894bD5Ff487d16f1F83b", + "status": "abandoned", + "id": "0x7ca121b093e2FbD4bB9A894bD5Ff487d16f1F83b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7ca121b093e2FbD4bB9A894bD5Ff487d16f1F83b/logo.png b/blockchains/ethereum/assets/0x7ca121b093e2FbD4bB9A894bD5Ff487d16f1F83b/logo.png new file mode 100644 index 00000000..3c41f4ee Binary files /dev/null and b/blockchains/ethereum/assets/0x7ca121b093e2FbD4bB9A894bD5Ff487d16f1F83b/logo.png differ diff --git a/blockchains/ethereum/assets/0x7cd167B101D2808Cfd2C45d17b2E7EA9F46b74B6/info.json b/blockchains/ethereum/assets/0x7cd167B101D2808Cfd2C45d17b2E7EA9F46b74B6/info.json new file mode 100644 index 00000000..026140a5 --- /dev/null +++ b/blockchains/ethereum/assets/0x7cd167B101D2808Cfd2C45d17b2E7EA9F46b74B6/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from BSC)", + "type": "ERC20", + "symbol": "USDCbs", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://etherscan.io/token/0x7cd167B101D2808Cfd2C45d17b2E7EA9F46b74B6", + "status": "active", + "id": "0x7cd167B101D2808Cfd2C45d17b2E7EA9F46b74B6", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7cd167B101D2808Cfd2C45d17b2E7EA9F46b74B6/logo.png b/blockchains/ethereum/assets/0x7cd167B101D2808Cfd2C45d17b2E7EA9F46b74B6/logo.png new file mode 100644 index 00000000..8ec55937 Binary files /dev/null and b/blockchains/ethereum/assets/0x7cd167B101D2808Cfd2C45d17b2E7EA9F46b74B6/logo.png differ diff --git a/blockchains/ethereum/assets/0x7ce8559ab2ba6c5Ade33CC7DD6dBE14425eA9d8c/info.json b/blockchains/ethereum/assets/0x7ce8559ab2ba6c5Ade33CC7DD6dBE14425eA9d8c/info.json new file mode 100644 index 00000000..6edd667a --- /dev/null +++ b/blockchains/ethereum/assets/0x7ce8559ab2ba6c5Ade33CC7DD6dBE14425eA9d8c/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R674400", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7ce8559ab2ba6c5Ade33CC7DD6dBE14425eA9d8c", + "status": "abandoned", + "id": "0x7ce8559ab2ba6c5Ade33CC7DD6dBE14425eA9d8c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7ce8559ab2ba6c5Ade33CC7DD6dBE14425eA9d8c/logo.png b/blockchains/ethereum/assets/0x7ce8559ab2ba6c5Ade33CC7DD6dBE14425eA9d8c/logo.png new file mode 100755 index 00000000..727b4758 Binary files /dev/null and b/blockchains/ethereum/assets/0x7ce8559ab2ba6c5Ade33CC7DD6dBE14425eA9d8c/logo.png differ diff --git a/blockchains/ethereum/assets/0x7ce88CEEd1015eCEBAED624459Dd97435e77157B/info.json b/blockchains/ethereum/assets/0x7ce88CEEd1015eCEBAED624459Dd97435e77157B/info.json new file mode 100644 index 00000000..b60ab18f --- /dev/null +++ b/blockchains/ethereum/assets/0x7ce88CEEd1015eCEBAED624459Dd97435e77157B/info.json @@ -0,0 +1,11 @@ +{ + "name": "ATC", + "symbol": "ATC", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7ce88CEEd1015eCEBAED624459Dd97435e77157B", + "status": "abandoned", + "id": "0x7ce88CEEd1015eCEBAED624459Dd97435e77157B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7ce88CEEd1015eCEBAED624459Dd97435e77157B/logo.png b/blockchains/ethereum/assets/0x7ce88CEEd1015eCEBAED624459Dd97435e77157B/logo.png new file mode 100644 index 00000000..b7ca9ab4 Binary files /dev/null and b/blockchains/ethereum/assets/0x7ce88CEEd1015eCEBAED624459Dd97435e77157B/logo.png differ diff --git a/blockchains/ethereum/assets/0x7cf6dC769482AbEe2FF75795d000F381A8062DEC/info.json b/blockchains/ethereum/assets/0x7cf6dC769482AbEe2FF75795d000F381A8062DEC/info.json new file mode 100644 index 00000000..ecb98e50 --- /dev/null +++ b/blockchains/ethereum/assets/0x7cf6dC769482AbEe2FF75795d000F381A8062DEC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Far Token", + "symbol": "FAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7cf6dC769482AbEe2FF75795d000F381A8062DEC", + "status": "abandoned", + "id": "0x7cf6dC769482AbEe2FF75795d000F381A8062DEC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7cf6dC769482AbEe2FF75795d000F381A8062DEC/logo.png b/blockchains/ethereum/assets/0x7cf6dC769482AbEe2FF75795d000F381A8062DEC/logo.png new file mode 100755 index 00000000..410c8a03 Binary files /dev/null and b/blockchains/ethereum/assets/0x7cf6dC769482AbEe2FF75795d000F381A8062DEC/logo.png differ diff --git a/blockchains/ethereum/assets/0x7d0Bb7A2FDc7e15e2937226670f1622931459660/info.json b/blockchains/ethereum/assets/0x7d0Bb7A2FDc7e15e2937226670f1622931459660/info.json new file mode 100644 index 00000000..85d4d632 --- /dev/null +++ b/blockchains/ethereum/assets/0x7d0Bb7A2FDc7e15e2937226670f1622931459660/info.json @@ -0,0 +1,11 @@ +{ + "name": "CacheAvatarToken", + "symbol": "CACHEA", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7d0Bb7A2FDc7e15e2937226670f1622931459660", + "status": "abandoned", + "id": "0x7d0Bb7A2FDc7e15e2937226670f1622931459660" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7d0Bb7A2FDc7e15e2937226670f1622931459660/logo.png b/blockchains/ethereum/assets/0x7d0Bb7A2FDc7e15e2937226670f1622931459660/logo.png new file mode 100755 index 00000000..5fd9c4f9 Binary files /dev/null and b/blockchains/ethereum/assets/0x7d0Bb7A2FDc7e15e2937226670f1622931459660/logo.png differ diff --git a/blockchains/ethereum/assets/0x7d3761297D48E3364448560de2a40a3cCce399e2/info.json b/blockchains/ethereum/assets/0x7d3761297D48E3364448560de2a40a3cCce399e2/info.json new file mode 100644 index 00000000..040fa332 --- /dev/null +++ b/blockchains/ethereum/assets/0x7d3761297D48E3364448560de2a40a3cCce399e2/info.json @@ -0,0 +1,11 @@ +{ + "name": "BZcash", + "symbol": "BZC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7d3761297D48E3364448560de2a40a3cCce399e2", + "status": "abandoned", + "id": "0x7d3761297D48E3364448560de2a40a3cCce399e2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7d3761297D48E3364448560de2a40a3cCce399e2/logo.png b/blockchains/ethereum/assets/0x7d3761297D48E3364448560de2a40a3cCce399e2/logo.png new file mode 100644 index 00000000..8b7e4809 Binary files /dev/null and b/blockchains/ethereum/assets/0x7d3761297D48E3364448560de2a40a3cCce399e2/logo.png differ diff --git a/blockchains/ethereum/assets/0x7d3E7D41DA367b4FDCe7CBE06502B13294Deb758/info.json b/blockchains/ethereum/assets/0x7d3E7D41DA367b4FDCe7CBE06502B13294Deb758/info.json new file mode 100644 index 00000000..2f6abb86 --- /dev/null +++ b/blockchains/ethereum/assets/0x7d3E7D41DA367b4FDCe7CBE06502B13294Deb758/info.json @@ -0,0 +1,11 @@ +{ + "name": "SSS", + "symbol": "SSS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7d3E7D41DA367b4FDCe7CBE06502B13294Deb758", + "status": "abandoned", + "id": "0x7d3E7D41DA367b4FDCe7CBE06502B13294Deb758" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7d3E7D41DA367b4FDCe7CBE06502B13294Deb758/logo.png b/blockchains/ethereum/assets/0x7d3E7D41DA367b4FDCe7CBE06502B13294Deb758/logo.png new file mode 100644 index 00000000..8e1b0f32 Binary files /dev/null and b/blockchains/ethereum/assets/0x7d3E7D41DA367b4FDCe7CBE06502B13294Deb758/logo.png differ diff --git a/blockchains/ethereum/assets/0x7d3cb11f8c13730C24D01826d8F2005F0e1b348F/info.json b/blockchains/ethereum/assets/0x7d3cb11f8c13730C24D01826d8F2005F0e1b348F/info.json new file mode 100644 index 00000000..35020bd9 --- /dev/null +++ b/blockchains/ethereum/assets/0x7d3cb11f8c13730C24D01826d8F2005F0e1b348F/info.json @@ -0,0 +1,11 @@ +{ + "name": "COS", + "symbol": "COS", + "type": "ERC20", + "decimals": 18, + "description": "One-stop shop for all things crypto: an exchange, an e-wallet which supports a broad variety of tokens, a platform for ICO launches and promotional trading campaigns, a fiat gateway, a market cap widget, and more.", + "website": "https://coss.io/", + "explorer": "https://etherscan.io/token/0x7d3cb11f8c13730C24D01826d8F2005F0e1b348F", + "status": "active", + "id": "0x7d3cb11f8c13730C24D01826d8F2005F0e1b348F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7d3cb11f8c13730C24D01826d8F2005F0e1b348F/logo.png b/blockchains/ethereum/assets/0x7d3cb11f8c13730C24D01826d8F2005F0e1b348F/logo.png new file mode 100644 index 00000000..82c95023 Binary files /dev/null and b/blockchains/ethereum/assets/0x7d3cb11f8c13730C24D01826d8F2005F0e1b348F/logo.png differ diff --git a/blockchains/ethereum/assets/0x7d4b8Cce0591C9044a22ee543533b72E976E36C3/info.json b/blockchains/ethereum/assets/0x7d4b8Cce0591C9044a22ee543533b72E976E36C3/info.json new file mode 100644 index 00000000..d9f8e1b2 --- /dev/null +++ b/blockchains/ethereum/assets/0x7d4b8Cce0591C9044a22ee543533b72E976E36C3/info.json @@ -0,0 +1,41 @@ +{ + "name": "Change", + "website": "https://www.changeinvest.com", + "description": "Change is a rapidly growing FinTech providing everyone in Europe access to exciting investments. Tens of thousands of people from 31 EU countries trust Change to build their financial future and have traded over 170 million euros with us.", + "explorer": "https://etherscan.io/token/0x7d4b8cce0591c9044a22ee543533b72e976e36c3", + "type": "ERC20", + "symbol": "CAG", + "decimals": 18, + "status": "active", + "id": "0x7d4b8Cce0591C9044a22ee543533b72E976E36C3", + "links": [ + { + "name": "github", + "url": "https://github.com/ChangeFinance" + }, + { + "name": "x", + "url": "https://x.com/changefinance" + }, + { + "name": "telegram", + "url": "https://t.me/ChangeBank" + }, + { + "name": "facebook", + "url": "https://facebook.com/changeinvest" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/changeinvest" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ChangeInvest" + }, + { + "name": "whitepaper", + "url": "https://www.changeinvest.com/investor" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7d4b8Cce0591C9044a22ee543533b72E976E36C3/logo.png b/blockchains/ethereum/assets/0x7d4b8Cce0591C9044a22ee543533b72E976E36C3/logo.png new file mode 100644 index 00000000..a5a58777 Binary files /dev/null and b/blockchains/ethereum/assets/0x7d4b8Cce0591C9044a22ee543533b72E976E36C3/logo.png differ diff --git a/blockchains/ethereum/assets/0x7d5121505149065b562C789A0145eD750e6E8cdD/info.json b/blockchains/ethereum/assets/0x7d5121505149065b562C789A0145eD750e6E8cdD/info.json new file mode 100644 index 00000000..8a666a3d --- /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 00000000..ef40dd21 Binary files /dev/null and b/blockchains/ethereum/assets/0x7d5121505149065b562C789A0145eD750e6E8cdD/logo.png differ diff --git a/blockchains/ethereum/assets/0x7d7587513e4674e93Be5CB18d7EA6b905Abd1BbC/info.json b/blockchains/ethereum/assets/0x7d7587513e4674e93Be5CB18d7EA6b905Abd1BbC/info.json new file mode 100644 index 00000000..aac296a5 --- /dev/null +++ b/blockchains/ethereum/assets/0x7d7587513e4674e93Be5CB18d7EA6b905Abd1BbC/info.json @@ -0,0 +1,11 @@ +{ + "name": "DARK Token", + "website": "https://coin.darkpay.market", + "description": "D4RKBAY : P2P e-commerce solution focused on users privacy.", + "explorer": "https://etherscan.io/token/0x7d7587513e4674e93Be5CB18d7EA6b905Abd1BbC", + "type": "ERC20", + "symbol": "DARK", + "decimals": 18, + "status": "active", + "id": "0x7d7587513e4674e93Be5CB18d7EA6b905Abd1BbC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7d7587513e4674e93Be5CB18d7EA6b905Abd1BbC/logo.png b/blockchains/ethereum/assets/0x7d7587513e4674e93Be5CB18d7EA6b905Abd1BbC/logo.png new file mode 100644 index 00000000..3044db48 Binary files /dev/null and b/blockchains/ethereum/assets/0x7d7587513e4674e93Be5CB18d7EA6b905Abd1BbC/logo.png differ diff --git a/blockchains/ethereum/assets/0x7d7Ab1Db2c8766D98465a392f374eB97361289eF/info.json b/blockchains/ethereum/assets/0x7d7Ab1Db2c8766D98465a392f374eB97361289eF/info.json new file mode 100644 index 00000000..8a3ef386 --- /dev/null +++ b/blockchains/ethereum/assets/0x7d7Ab1Db2c8766D98465a392f374eB97361289eF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short LINK-DAI 2x v2", + "symbol": "dsLINK2x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7d7Ab1Db2c8766D98465a392f374eB97361289eF", + "status": "abandoned", + "id": "0x7d7Ab1Db2c8766D98465a392f374eB97361289eF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7d7Ab1Db2c8766D98465a392f374eB97361289eF/logo.png b/blockchains/ethereum/assets/0x7d7Ab1Db2c8766D98465a392f374eB97361289eF/logo.png new file mode 100644 index 00000000..2d530b62 Binary files /dev/null and b/blockchains/ethereum/assets/0x7d7Ab1Db2c8766D98465a392f374eB97361289eF/logo.png differ diff --git a/blockchains/ethereum/assets/0x7d91e637589EC3Bb54D8213a9e92Dc6E8D12da91/info.json b/blockchains/ethereum/assets/0x7d91e637589EC3Bb54D8213a9e92Dc6E8D12da91/info.json new file mode 100644 index 00000000..8f12f77f --- /dev/null +++ b/blockchains/ethereum/assets/0x7d91e637589EC3Bb54D8213a9e92Dc6E8D12da91/info.json @@ -0,0 +1,11 @@ +{ + "name": "FRIENDS WITH BENEFITS", + "symbol": "FWB", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7d91e637589EC3Bb54D8213a9e92Dc6E8D12da91", + "status": "abandoned", + "id": "0x7d91e637589EC3Bb54D8213a9e92Dc6E8D12da91" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7d91e637589EC3Bb54D8213a9e92Dc6E8D12da91/logo.png b/blockchains/ethereum/assets/0x7d91e637589EC3Bb54D8213a9e92Dc6E8D12da91/logo.png new file mode 100644 index 00000000..7fc87ed1 Binary files /dev/null and b/blockchains/ethereum/assets/0x7d91e637589EC3Bb54D8213a9e92Dc6E8D12da91/logo.png differ diff --git a/blockchains/ethereum/assets/0x7d93978d21DE3033B1bdCB3C0D16Dbd0afD29c27/info.json b/blockchains/ethereum/assets/0x7d93978d21DE3033B1bdCB3C0D16Dbd0afD29c27/info.json new file mode 100644 index 00000000..6d17c850 --- /dev/null +++ b/blockchains/ethereum/assets/0x7d93978d21DE3033B1bdCB3C0D16Dbd0afD29c27/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRE YTRE Y654 UY65", + "symbol": "TRE", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7d93978d21DE3033B1bdCB3C0D16Dbd0afD29c27", + "status": "abandoned", + "id": "0x7d93978d21DE3033B1bdCB3C0D16Dbd0afD29c27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7d93978d21DE3033B1bdCB3C0D16Dbd0afD29c27/logo.png b/blockchains/ethereum/assets/0x7d93978d21DE3033B1bdCB3C0D16Dbd0afD29c27/logo.png new file mode 100644 index 00000000..90855168 Binary files /dev/null and b/blockchains/ethereum/assets/0x7d93978d21DE3033B1bdCB3C0D16Dbd0afD29c27/logo.png differ diff --git a/blockchains/ethereum/assets/0x7dA2641000Cbb407C329310C461b2cB9c70C3046/info.json b/blockchains/ethereum/assets/0x7dA2641000Cbb407C329310C461b2cB9c70C3046/info.json new file mode 100644 index 00000000..4973503f --- /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 00000000..f7627ea4 Binary files /dev/null and b/blockchains/ethereum/assets/0x7dA2641000Cbb407C329310C461b2cB9c70C3046/logo.png differ diff --git a/blockchains/ethereum/assets/0x7dCB3B2356C822d3577D4d060D0D5D78C860488C/info.json b/blockchains/ethereum/assets/0x7dCB3B2356C822d3577D4d060D0D5D78C860488C/info.json new file mode 100644 index 00000000..90530c8e --- /dev/null +++ b/blockchains/ethereum/assets/0x7dCB3B2356C822d3577D4d060D0D5D78C860488C/info.json @@ -0,0 +1,11 @@ +{ + "name": "FANX Token", + "symbol": "FANX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7dCB3B2356C822d3577D4d060D0D5D78C860488C", + "status": "abandoned", + "id": "0x7dCB3B2356C822d3577D4d060D0D5D78C860488C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7dCB3B2356C822d3577D4d060D0D5D78C860488C/logo.png b/blockchains/ethereum/assets/0x7dCB3B2356C822d3577D4d060D0D5D78C860488C/logo.png new file mode 100755 index 00000000..68f2fc8b Binary files /dev/null and b/blockchains/ethereum/assets/0x7dCB3B2356C822d3577D4d060D0D5D78C860488C/logo.png differ diff --git a/blockchains/ethereum/assets/0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7/info.json b/blockchains/ethereum/assets/0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7/info.json new file mode 100644 index 00000000..29652b57 --- /dev/null +++ b/blockchains/ethereum/assets/0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Robonomics", + "website": "https://robonomics.network", + "description": "Operation of a decentralized network for the maintenance of Smart Cities and Industry 4.0", + "explorer": "https://etherscan.io/token/0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7", + "type": "ERC20", + "symbol": "XRT", + "decimals": 9, + "status": "active", + "id": "0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7/logo.png b/blockchains/ethereum/assets/0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7/logo.png new file mode 100644 index 00000000..13f6f27e Binary files /dev/null and b/blockchains/ethereum/assets/0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7/logo.png differ diff --git a/blockchains/ethereum/assets/0x7dEe371A788f9BD6c546dF83F0d74fBe37cbf006/info.json b/blockchains/ethereum/assets/0x7dEe371A788f9BD6c546dF83F0d74fBe37cbf006/info.json new file mode 100644 index 00000000..d9a43df2 --- /dev/null +++ b/blockchains/ethereum/assets/0x7dEe371A788f9BD6c546dF83F0d74fBe37cbf006/info.json @@ -0,0 +1,11 @@ +{ + "name": "Teccoin", + "symbol": "Tecn", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://teccoin.tech/", + "explorer": "https://etherscan.io/token/0x7dEe371A788f9BD6c546dF83F0d74fBe37cbf006", + "status": "abandoned", + "id": "0x7dEe371A788f9BD6c546dF83F0d74fBe37cbf006" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7dEe371A788f9BD6c546dF83F0d74fBe37cbf006/logo.png b/blockchains/ethereum/assets/0x7dEe371A788f9BD6c546dF83F0d74fBe37cbf006/logo.png new file mode 100644 index 00000000..b2480d2f Binary files /dev/null and b/blockchains/ethereum/assets/0x7dEe371A788f9BD6c546dF83F0d74fBe37cbf006/logo.png differ diff --git a/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json b/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json new file mode 100644 index 00000000..08aded6f --- /dev/null +++ b/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/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/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", + "status": "abandoned", + "id": "0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", + "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/0x7dd474dCe035debF073dCB9C188584d761b1D024/info.json b/blockchains/ethereum/assets/0x7dd474dCe035debF073dCB9C188584d761b1D024/info.json new file mode 100644 index 00000000..c5cad28f --- /dev/null +++ b/blockchains/ethereum/assets/0x7dd474dCe035debF073dCB9C188584d761b1D024/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short WBTC-DAI 3x v2", + "symbol": "dsWBTC3x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7dd474dCe035debF073dCB9C188584d761b1D024", + "status": "abandoned", + "id": "0x7dd474dCe035debF073dCB9C188584d761b1D024" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7dd474dCe035debF073dCB9C188584d761b1D024/logo.png b/blockchains/ethereum/assets/0x7dd474dCe035debF073dCB9C188584d761b1D024/logo.png new file mode 100644 index 00000000..0c5d843a Binary files /dev/null and b/blockchains/ethereum/assets/0x7dd474dCe035debF073dCB9C188584d761b1D024/logo.png differ diff --git a/blockchains/ethereum/assets/0x7deB5e830be29F91E298ba5FF1356BB7f8146998/info.json b/blockchains/ethereum/assets/0x7deB5e830be29F91E298ba5FF1356BB7f8146998/info.json new file mode 100644 index 00000000..2b9c2504 --- /dev/null +++ b/blockchains/ethereum/assets/0x7deB5e830be29F91E298ba5FF1356BB7f8146998/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave MKR V1", + "symbol": "aMKR V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave MKR V1 is an interest bearing token pegged 1:1 to the underlying MKR deposited in Aave V1. aMKR V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x7deB5e830be29F91E298ba5FF1356BB7f8146998", + "status": "abandoned", + "id": "0x7deB5e830be29F91E298ba5FF1356BB7f8146998" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7deB5e830be29F91E298ba5FF1356BB7f8146998/logo.png b/blockchains/ethereum/assets/0x7deB5e830be29F91E298ba5FF1356BB7f8146998/logo.png new file mode 100644 index 00000000..0debb533 Binary files /dev/null and b/blockchains/ethereum/assets/0x7deB5e830be29F91E298ba5FF1356BB7f8146998/logo.png differ diff --git a/blockchains/ethereum/assets/0x7deD07692e27B7b15Cb665666c7Fcd06417F9110/info.json b/blockchains/ethereum/assets/0x7deD07692e27B7b15Cb665666c7Fcd06417F9110/info.json new file mode 100644 index 00000000..98bf6da1 --- /dev/null +++ b/blockchains/ethereum/assets/0x7deD07692e27B7b15Cb665666c7Fcd06417F9110/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pentacles", + "symbol": "PNTCL", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7deD07692e27B7b15Cb665666c7Fcd06417F9110", + "status": "abandoned", + "id": "0x7deD07692e27B7b15Cb665666c7Fcd06417F9110" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7deD07692e27B7b15Cb665666c7Fcd06417F9110/logo.png b/blockchains/ethereum/assets/0x7deD07692e27B7b15Cb665666c7Fcd06417F9110/logo.png new file mode 100644 index 00000000..bdd69ed0 Binary files /dev/null and b/blockchains/ethereum/assets/0x7deD07692e27B7b15Cb665666c7Fcd06417F9110/logo.png differ diff --git a/blockchains/ethereum/assets/0x7deF4573628021500c3207994935a51801fB56bE/info.json b/blockchains/ethereum/assets/0x7deF4573628021500c3207994935a51801fB56bE/info.json new file mode 100644 index 00000000..df66f28b --- /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 00000000..8f7c14b8 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 00000000..ded87cf2 --- /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 00000000..b0ed7260 Binary files /dev/null and b/blockchains/ethereum/assets/0x7e08cE07acA80CefE61ebbFA0CedFe5C7b07eDB9/logo.png differ diff --git a/blockchains/ethereum/assets/0x7e1A6C74b9a862002d5246215205CA062FBe0868/info.json b/blockchains/ethereum/assets/0x7e1A6C74b9a862002d5246215205CA062FBe0868/info.json new file mode 100644 index 00000000..23cf83f7 --- /dev/null +++ b/blockchains/ethereum/assets/0x7e1A6C74b9a862002d5246215205CA062FBe0868/info.json @@ -0,0 +1,11 @@ +{ + "name": "Itubagus", + "symbol": "ITB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://www.itubagus.com/", + "explorer": "https://etherscan.io/token/0x7e1A6C74b9a862002d5246215205CA062FBe0868", + "status": "abandoned", + "id": "0x7e1A6C74b9a862002d5246215205CA062FBe0868" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7e1A6C74b9a862002d5246215205CA062FBe0868/logo.png b/blockchains/ethereum/assets/0x7e1A6C74b9a862002d5246215205CA062FBe0868/logo.png new file mode 100644 index 00000000..4becb012 Binary files /dev/null and b/blockchains/ethereum/assets/0x7e1A6C74b9a862002d5246215205CA062FBe0868/logo.png differ diff --git a/blockchains/ethereum/assets/0x7e4A9B2BfDDcc37D042B881e48344A560Ad7c462/info.json b/blockchains/ethereum/assets/0x7e4A9B2BfDDcc37D042B881e48344A560Ad7c462/info.json new file mode 100644 index 00000000..d1120254 --- /dev/null +++ b/blockchains/ethereum/assets/0x7e4A9B2BfDDcc37D042B881e48344A560Ad7c462/info.json @@ -0,0 +1,11 @@ +{ + "name": "United States of America", + "symbol": "USAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7e4A9B2BfDDcc37D042B881e48344A560Ad7c462", + "status": "abandoned", + "id": "0x7e4A9B2BfDDcc37D042B881e48344A560Ad7c462" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7e4A9B2BfDDcc37D042B881e48344A560Ad7c462/logo.png b/blockchains/ethereum/assets/0x7e4A9B2BfDDcc37D042B881e48344A560Ad7c462/logo.png new file mode 100644 index 00000000..bd6538c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x7e4A9B2BfDDcc37D042B881e48344A560Ad7c462/logo.png differ diff --git a/blockchains/ethereum/assets/0x7e667525521cF61352e2E01b50FaaaE7Df39749a/info.json b/blockchains/ethereum/assets/0x7e667525521cF61352e2E01b50FaaaE7Df39749a/info.json new file mode 100644 index 00000000..f92a2b2d --- /dev/null +++ b/blockchains/ethereum/assets/0x7e667525521cF61352e2E01b50FaaaE7Df39749a/info.json @@ -0,0 +1,11 @@ +{ + "name": "CMC ", + "symbol": "CMC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7e667525521cF61352e2E01b50FaaaE7Df39749a", + "status": "abandoned", + "id": "0x7e667525521cF61352e2E01b50FaaaE7Df39749a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7e667525521cF61352e2E01b50FaaaE7Df39749a/logo.png b/blockchains/ethereum/assets/0x7e667525521cF61352e2E01b50FaaaE7Df39749a/logo.png new file mode 100755 index 00000000..c5624501 Binary files /dev/null and b/blockchains/ethereum/assets/0x7e667525521cF61352e2E01b50FaaaE7Df39749a/logo.png differ diff --git a/blockchains/ethereum/assets/0x7e794eD35788b698AE60cefC98eE48015C4876dA/info.json b/blockchains/ethereum/assets/0x7e794eD35788b698AE60cefC98eE48015C4876dA/info.json new file mode 100644 index 00000000..017fc076 --- /dev/null +++ b/blockchains/ethereum/assets/0x7e794eD35788b698AE60cefC98eE48015C4876dA/info.json @@ -0,0 +1,28 @@ +{ + "name": "Shintama", + "type": "ERC20", + "symbol": "SHINTAMA", + "decimals": 9, + "website": "https://www.shintamatoken.com", + "description": "Shintama, a DeFi project launched after the success of Shinja and Saitama in the DeFi space has grand plans to build a bridge between everyday internet users and the Defi world in a safe and simple way.", + "explorer": "https://etherscan.io/token/0x7e794ed35788b698ae60cefc98ee48015c4876da", + "status": "active", + "id": "0x7e794eD35788b698AE60cefC98eE48015C4876dA", + "links": [ + { + "name": "x", + "url": "https://x.com/SHINTAMAToken" + }, + { + "name": "telegram", + "url": "https://t.me/SHINTAMA_Join" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shintama/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7e794eD35788b698AE60cefC98eE48015C4876dA/logo.png b/blockchains/ethereum/assets/0x7e794eD35788b698AE60cefC98eE48015C4876dA/logo.png new file mode 100644 index 00000000..71b32a03 Binary files /dev/null and b/blockchains/ethereum/assets/0x7e794eD35788b698AE60cefC98eE48015C4876dA/logo.png differ diff --git a/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/info.json b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/info.json new file mode 100644 index 00000000..2175d341 --- /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 00000000..1b0f2381 Binary files /dev/null and b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/logo.png differ diff --git a/blockchains/ethereum/assets/0x7e9b050F9ce3d41a0cCe8d53830C494E7d213156/info.json b/blockchains/ethereum/assets/0x7e9b050F9ce3d41a0cCe8d53830C494E7d213156/info.json new file mode 100644 index 00000000..ba6c217c --- /dev/null +++ b/blockchains/ethereum/assets/0x7e9b050F9ce3d41a0cCe8d53830C494E7d213156/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST 3", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7e9b050F9ce3d41a0cCe8d53830C494E7d213156", + "status": "abandoned", + "id": "0x7e9b050F9ce3d41a0cCe8d53830C494E7d213156" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7e9b050F9ce3d41a0cCe8d53830C494E7d213156/logo.png b/blockchains/ethereum/assets/0x7e9b050F9ce3d41a0cCe8d53830C494E7d213156/logo.png new file mode 100644 index 00000000..3779f0ac Binary files /dev/null and b/blockchains/ethereum/assets/0x7e9b050F9ce3d41a0cCe8d53830C494E7d213156/logo.png differ diff --git a/blockchains/ethereum/assets/0x7e9e431a0B8c4D532C745B1043c7FA29a48D4fBa/info.json b/blockchains/ethereum/assets/0x7e9e431a0B8c4D532C745B1043c7FA29a48D4fBa/info.json new file mode 100644 index 00000000..0f64bcfe --- /dev/null +++ b/blockchains/ethereum/assets/0x7e9e431a0B8c4D532C745B1043c7FA29a48D4fBa/info.json @@ -0,0 +1,11 @@ +{ + "name": "eosDAC", + "type": "ERC20", + "symbol": "eosDAC", + "decimals": 18, + "website": "https://eosdac.io", + "description": "eosDAC is being created and launched by BlockMaker Ltd. Once eosDAC is launched BlockMaker Ltd will not have any ownership or control over eosDAC, nor own any eosDAC tokens.", + "explorer": "https://etherscan.io/token/0x7e9e431a0B8c4D532C745B1043c7FA29a48D4fBa", + "status": "active", + "id": "0x7e9e431a0B8c4D532C745B1043c7FA29a48D4fBa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7e9e431a0B8c4D532C745B1043c7FA29a48D4fBa/logo.png b/blockchains/ethereum/assets/0x7e9e431a0B8c4D532C745B1043c7FA29a48D4fBa/logo.png new file mode 100644 index 00000000..febc0678 Binary files /dev/null and b/blockchains/ethereum/assets/0x7e9e431a0B8c4D532C745B1043c7FA29a48D4fBa/logo.png differ diff --git a/blockchains/ethereum/assets/0x7eAFF6b30F225475061FA49AaE97333666E258Ff/info.json b/blockchains/ethereum/assets/0x7eAFF6b30F225475061FA49AaE97333666E258Ff/info.json new file mode 100644 index 00000000..f105a030 --- /dev/null +++ b/blockchains/ethereum/assets/0x7eAFF6b30F225475061FA49AaE97333666E258Ff/info.json @@ -0,0 +1,11 @@ +{ + "name": "E-Dome Plus", + "symbol": "EDP", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7eAFF6b30F225475061FA49AaE97333666E258Ff", + "status": "abandoned", + "id": "0x7eAFF6b30F225475061FA49AaE97333666E258Ff" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7eAFF6b30F225475061FA49AaE97333666E258Ff/logo.png b/blockchains/ethereum/assets/0x7eAFF6b30F225475061FA49AaE97333666E258Ff/logo.png new file mode 100644 index 00000000..8eaacfc3 Binary files /dev/null and b/blockchains/ethereum/assets/0x7eAFF6b30F225475061FA49AaE97333666E258Ff/logo.png differ diff --git a/blockchains/ethereum/assets/0x7eE56d7D5a084e88E9843B537AcdC4B1D2bc50f7/info.json b/blockchains/ethereum/assets/0x7eE56d7D5a084e88E9843B537AcdC4B1D2bc50f7/info.json new file mode 100644 index 00000000..efa6040a --- /dev/null +++ b/blockchains/ethereum/assets/0x7eE56d7D5a084e88E9843B537AcdC4B1D2bc50f7/info.json @@ -0,0 +1,11 @@ +{ + "name": "CHATO", + "symbol": "GAN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7eE56d7D5a084e88E9843B537AcdC4B1D2bc50f7", + "status": "abandoned", + "id": "0x7eE56d7D5a084e88E9843B537AcdC4B1D2bc50f7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7eE56d7D5a084e88E9843B537AcdC4B1D2bc50f7/logo.png b/blockchains/ethereum/assets/0x7eE56d7D5a084e88E9843B537AcdC4B1D2bc50f7/logo.png new file mode 100644 index 00000000..4a8d4866 Binary files /dev/null and b/blockchains/ethereum/assets/0x7eE56d7D5a084e88E9843B537AcdC4B1D2bc50f7/logo.png differ diff --git a/blockchains/ethereum/assets/0x7f121d4EC6c2C07eB6BC7989d91d2d4fF654c068/info.json b/blockchains/ethereum/assets/0x7f121d4EC6c2C07eB6BC7989d91d2d4fF654c068/info.json new file mode 100644 index 00000000..eed42618 --- /dev/null +++ b/blockchains/ethereum/assets/0x7f121d4EC6c2C07eB6BC7989d91d2d4fF654c068/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinMeet", + "symbol": "MEET", + "type": "ERC20", + "decimals": 18, + "description": "CoinMeet is a revolutionary multi-asset management social wallet. Based on cross-chain adaptor, COINMEET can fulfill deposit, transfer, payment and democratic listing a wide range of digital assets.", + "website": "https://coinmeet.io/", + "explorer": "https://etherscan.io/token/0x7f121d4EC6c2C07eB6BC7989d91d2d4fF654c068", + "status": "active", + "id": "0x7f121d4EC6c2C07eB6BC7989d91d2d4fF654c068" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7f121d4EC6c2C07eB6BC7989d91d2d4fF654c068/logo.png b/blockchains/ethereum/assets/0x7f121d4EC6c2C07eB6BC7989d91d2d4fF654c068/logo.png new file mode 100644 index 00000000..21fc25f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x7f121d4EC6c2C07eB6BC7989d91d2d4fF654c068/logo.png differ diff --git a/blockchains/ethereum/assets/0x7f1F2D3dFa99678675ECE1C243d3f7bC3746db5D/info.json b/blockchains/ethereum/assets/0x7f1F2D3dFa99678675ECE1C243d3f7bC3746db5D/info.json new file mode 100644 index 00000000..7c270b27 --- /dev/null +++ b/blockchains/ethereum/assets/0x7f1F2D3dFa99678675ECE1C243d3f7bC3746db5D/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tapmydata", + "symbol": "TAP", + "decimals": 18, + "status": "active", + "website": "https://www.tapmydata.com", + "description": "Take back control of your data, store it on our encrypted wallet, license it to earn from your data", + "explorer": "https://etherscan.io/token/0x7f1f2d3dfa99678675ece1c243d3f7bc3746db5d", + "type": "ERC20", + "id": "0x7f1F2D3dFa99678675ECE1C243d3f7bC3746db5D", + "links": [ + { + "name": "x", + "url": "https://x.com/tapmydata" + }, + { + "name": "telegram", + "url": "https://t.me/tapmydataofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7f1F2D3dFa99678675ECE1C243d3f7bC3746db5D/logo.png b/blockchains/ethereum/assets/0x7f1F2D3dFa99678675ECE1C243d3f7bC3746db5D/logo.png new file mode 100644 index 00000000..69c9b5cb Binary files /dev/null and b/blockchains/ethereum/assets/0x7f1F2D3dFa99678675ECE1C243d3f7bC3746db5D/logo.png differ diff --git a/blockchains/ethereum/assets/0x7f288Ff5A8055F5f6103A80Dd806cf8415e035C7/info.json b/blockchains/ethereum/assets/0x7f288Ff5A8055F5f6103A80Dd806cf8415e035C7/info.json new file mode 100644 index 00000000..a5ea8a06 --- /dev/null +++ b/blockchains/ethereum/assets/0x7f288Ff5A8055F5f6103A80Dd806cf8415e035C7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chain Finance", + "symbol": "CFC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.chainfinance.org/", + "explorer": "https://etherscan.io/token/0x7f288Ff5A8055F5f6103A80Dd806cf8415e035C7", + "status": "abandoned", + "id": "0x7f288Ff5A8055F5f6103A80Dd806cf8415e035C7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7f288Ff5A8055F5f6103A80Dd806cf8415e035C7/logo.png b/blockchains/ethereum/assets/0x7f288Ff5A8055F5f6103A80Dd806cf8415e035C7/logo.png new file mode 100644 index 00000000..c40d50fe Binary files /dev/null and b/blockchains/ethereum/assets/0x7f288Ff5A8055F5f6103A80Dd806cf8415e035C7/logo.png differ diff --git a/blockchains/ethereum/assets/0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0/info.json b/blockchains/ethereum/assets/0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0/info.json new file mode 100644 index 00000000..2823570c --- /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 00000000..49ab895e Binary files /dev/null and b/blockchains/ethereum/assets/0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0/logo.png differ diff --git a/blockchains/ethereum/assets/0x7f3BEbd8D994972788f63585933446b520100732/info.json b/blockchains/ethereum/assets/0x7f3BEbd8D994972788f63585933446b520100732/info.json new file mode 100644 index 00000000..4e803fdd --- /dev/null +++ b/blockchains/ethereum/assets/0x7f3BEbd8D994972788f63585933446b520100732/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pinata", + "type": "ERC20", + "symbol": "PINS", + "decimals": 18, + "website": "https://www.pinatapins.io", + "description": "Decentralized Meme Tokens that grew into a vibrant ecosystem, Up to explode!", + "explorer": "https://etherscan.io/token/0x7f3bebd8d994972788f63585933446b520100732", + "status": "active", + "id": "0x7f3BEbd8D994972788f63585933446b520100732" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7f3BEbd8D994972788f63585933446b520100732/logo.png b/blockchains/ethereum/assets/0x7f3BEbd8D994972788f63585933446b520100732/logo.png new file mode 100644 index 00000000..f57eabd2 Binary files /dev/null and b/blockchains/ethereum/assets/0x7f3BEbd8D994972788f63585933446b520100732/logo.png differ diff --git a/blockchains/ethereum/assets/0x7f65BE7FAd0c22813e51746E7e8f13a20bAa9411/info.json b/blockchains/ethereum/assets/0x7f65BE7FAd0c22813e51746E7e8f13a20bAa9411/info.json new file mode 100644 index 00000000..820c18cc --- /dev/null +++ b/blockchains/ethereum/assets/0x7f65BE7FAd0c22813e51746E7e8f13a20bAa9411/info.json @@ -0,0 +1,11 @@ +{ + "name": "REBITCOIN", + "website": "https://rebitcoin.com", + "description": "REBITCOIN", + "explorer": "https://etherscan.io/token/0x7f65BE7FAd0c22813e51746E7e8f13a20bAa9411", + "type": "ERC20", + "symbol": "RBTC", + "decimals": 8, + "status": "abandoned", + "id": "0x7f65BE7FAd0c22813e51746E7e8f13a20bAa9411" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7f65BE7FAd0c22813e51746E7e8f13a20bAa9411/logo.png b/blockchains/ethereum/assets/0x7f65BE7FAd0c22813e51746E7e8f13a20bAa9411/logo.png new file mode 100644 index 00000000..5183329e Binary files /dev/null and b/blockchains/ethereum/assets/0x7f65BE7FAd0c22813e51746E7e8f13a20bAa9411/logo.png differ diff --git a/blockchains/ethereum/assets/0x7f6715c3FC4740A02F70De85B9FD50ac6001fEd9/info.json b/blockchains/ethereum/assets/0x7f6715c3FC4740A02F70De85B9FD50ac6001fEd9/info.json new file mode 100644 index 00000000..010b3c3a --- /dev/null +++ b/blockchains/ethereum/assets/0x7f6715c3FC4740A02F70De85B9FD50ac6001fEd9/info.json @@ -0,0 +1,11 @@ +{ + "name": "FANX Token", + "symbol": "FANX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7f6715c3FC4740A02F70De85B9FD50ac6001fEd9", + "status": "abandoned", + "id": "0x7f6715c3FC4740A02F70De85B9FD50ac6001fEd9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7f6715c3FC4740A02F70De85B9FD50ac6001fEd9/logo.png b/blockchains/ethereum/assets/0x7f6715c3FC4740A02F70De85B9FD50ac6001fEd9/logo.png new file mode 100755 index 00000000..68f2fc8b Binary files /dev/null and b/blockchains/ethereum/assets/0x7f6715c3FC4740A02F70De85B9FD50ac6001fEd9/logo.png differ diff --git a/blockchains/ethereum/assets/0x7f791C8B4Fd1AA6EF52157Cca3436f7cE9844058/info.json b/blockchains/ethereum/assets/0x7f791C8B4Fd1AA6EF52157Cca3436f7cE9844058/info.json new file mode 100644 index 00000000..9588deff --- /dev/null +++ b/blockchains/ethereum/assets/0x7f791C8B4Fd1AA6EF52157Cca3436f7cE9844058/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vikas Kalwani", + "symbol": "VK", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7f791C8B4Fd1AA6EF52157Cca3436f7cE9844058", + "status": "abandoned", + "id": "0x7f791C8B4Fd1AA6EF52157Cca3436f7cE9844058" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7f791C8B4Fd1AA6EF52157Cca3436f7cE9844058/logo.png b/blockchains/ethereum/assets/0x7f791C8B4Fd1AA6EF52157Cca3436f7cE9844058/logo.png new file mode 100644 index 00000000..4d0536de Binary files /dev/null and b/blockchains/ethereum/assets/0x7f791C8B4Fd1AA6EF52157Cca3436f7cE9844058/logo.png differ diff --git a/blockchains/ethereum/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json b/blockchains/ethereum/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json new file mode 100644 index 00000000..988c114d --- /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/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/logo.png b/blockchains/ethereum/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/logo.png new file mode 100644 index 00000000..295e34ea Binary files /dev/null and b/blockchains/ethereum/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/logo.png differ diff --git a/blockchains/ethereum/assets/0x7f7Cac26A300Cb2E911B0241F71A5C18f6481C9D/info.json b/blockchains/ethereum/assets/0x7f7Cac26A300Cb2E911B0241F71A5C18f6481C9D/info.json new file mode 100644 index 00000000..7283bb81 --- /dev/null +++ b/blockchains/ethereum/assets/0x7f7Cac26A300Cb2E911B0241F71A5C18f6481C9D/info.json @@ -0,0 +1,11 @@ +{ + "name": "OYO", + "symbol": "OYO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7f7Cac26A300Cb2E911B0241F71A5C18f6481C9D", + "status": "abandoned", + "id": "0x7f7Cac26A300Cb2E911B0241F71A5C18f6481C9D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7f7Cac26A300Cb2E911B0241F71A5C18f6481C9D/logo.png b/blockchains/ethereum/assets/0x7f7Cac26A300Cb2E911B0241F71A5C18f6481C9D/logo.png new file mode 100644 index 00000000..420f4603 Binary files /dev/null and b/blockchains/ethereum/assets/0x7f7Cac26A300Cb2E911B0241F71A5C18f6481C9D/logo.png differ diff --git a/blockchains/ethereum/assets/0x7f9A00E03c2E53A3aF6031C17A150DBeDaAab3dC/info.json b/blockchains/ethereum/assets/0x7f9A00E03c2E53A3aF6031C17A150DBeDaAab3dC/info.json new file mode 100644 index 00000000..7935a057 --- /dev/null +++ b/blockchains/ethereum/assets/0x7f9A00E03c2E53A3aF6031C17A150DBeDaAab3dC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Read This Contract", + "website": "https://etherscan.io/address/0x7f9A00E03c2E53A3aF6031C17A150DBeDaAab3dC#code", + "description": "Utility token promoting the Read This Contract (RTC) initiative and ecosystem.", + "explorer": "https://etherscan.io/token/0x7f9A00E03c2E53A3aF6031C17A150DBeDaAab3dC", + "type": "ERC20", + "symbol": "RTC", + "decimals": 18, + "status": "active", + "id": "0x7f9A00E03c2E53A3aF6031C17A150DBeDaAab3dC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7f9A00E03c2E53A3aF6031C17A150DBeDaAab3dC/logo.png b/blockchains/ethereum/assets/0x7f9A00E03c2E53A3aF6031C17A150DBeDaAab3dC/logo.png new file mode 100755 index 00000000..e92cdd98 Binary files /dev/null and b/blockchains/ethereum/assets/0x7f9A00E03c2E53A3aF6031C17A150DBeDaAab3dC/logo.png differ diff --git a/blockchains/ethereum/assets/0x7fD483c9F72cf1Bf9BE2852810E50DeF29Ff2f7f/info.json b/blockchains/ethereum/assets/0x7fD483c9F72cf1Bf9BE2852810E50DeF29Ff2f7f/info.json new file mode 100644 index 00000000..b1f1d776 --- /dev/null +++ b/blockchains/ethereum/assets/0x7fD483c9F72cf1Bf9BE2852810E50DeF29Ff2f7f/info.json @@ -0,0 +1,11 @@ +{ + "name": "CotteToken", + "symbol": "CTO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7fD483c9F72cf1Bf9BE2852810E50DeF29Ff2f7f", + "status": "abandoned", + "id": "0x7fD483c9F72cf1Bf9BE2852810E50DeF29Ff2f7f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7fD483c9F72cf1Bf9BE2852810E50DeF29Ff2f7f/logo.png b/blockchains/ethereum/assets/0x7fD483c9F72cf1Bf9BE2852810E50DeF29Ff2f7f/logo.png new file mode 100644 index 00000000..19059afd Binary files /dev/null and b/blockchains/ethereum/assets/0x7fD483c9F72cf1Bf9BE2852810E50DeF29Ff2f7f/logo.png differ diff --git a/blockchains/ethereum/assets/0x7fDbd45a8fd1530995b4D9701E1cC1e71Ad12955/info.json b/blockchains/ethereum/assets/0x7fDbd45a8fd1530995b4D9701E1cC1e71Ad12955/info.json new file mode 100644 index 00000000..fe36c11a --- /dev/null +++ b/blockchains/ethereum/assets/0x7fDbd45a8fd1530995b4D9701E1cC1e71Ad12955/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C361427", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7fDbd45a8fd1530995b4D9701E1cC1e71Ad12955", + "status": "abandoned", + "id": "0x7fDbd45a8fd1530995b4D9701E1cC1e71Ad12955" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7fDbd45a8fd1530995b4D9701E1cC1e71Ad12955/logo.png b/blockchains/ethereum/assets/0x7fDbd45a8fd1530995b4D9701E1cC1e71Ad12955/logo.png new file mode 100644 index 00000000..8dbe252b Binary files /dev/null and b/blockchains/ethereum/assets/0x7fDbd45a8fd1530995b4D9701E1cC1e71Ad12955/logo.png differ diff --git a/blockchains/ethereum/assets/0x7fa149D89B96F50B3AE6A2554a4Ffe022575B1bf/info.json b/blockchains/ethereum/assets/0x7fa149D89B96F50B3AE6A2554a4Ffe022575B1bf/info.json new file mode 100644 index 00000000..0ef78f01 --- /dev/null +++ b/blockchains/ethereum/assets/0x7fa149D89B96F50B3AE6A2554a4Ffe022575B1bf/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-5/30M5", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x7fa149D89B96F50B3AE6A2554a4Ffe022575B1bf", + "status": "abandoned", + "id": "0x7fa149D89B96F50B3AE6A2554a4Ffe022575B1bf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7fa149D89B96F50B3AE6A2554a4Ffe022575B1bf/logo.png b/blockchains/ethereum/assets/0x7fa149D89B96F50B3AE6A2554a4Ffe022575B1bf/logo.png new file mode 100644 index 00000000..74a561d9 Binary files /dev/null and b/blockchains/ethereum/assets/0x7fa149D89B96F50B3AE6A2554a4Ffe022575B1bf/logo.png differ diff --git a/blockchains/ethereum/assets/0x8003C49f6ebACDdC493EA47CAB45e892d1B638a1/info.json b/blockchains/ethereum/assets/0x8003C49f6ebACDdC493EA47CAB45e892d1B638a1/info.json new file mode 100644 index 00000000..22cdf92e --- /dev/null +++ b/blockchains/ethereum/assets/0x8003C49f6ebACDdC493EA47CAB45e892d1B638a1/info.json @@ -0,0 +1,11 @@ +{ + "name": "AmpleGold", + "website": "https://amplegold.io/", + "description": "Ample Gold ($AMPLG) is worlds first and only goldpegged elastic tokensupply defi-protocol. $AMPLG is a decentralized ERC20 token which reaches supply-price equilibrium by increasing and decreasing the totalsupply. This is done by Rebasing events which trigger at random time intervals.", + "explorer": "https://etherscan.io/token/0x8003C49f6ebACDdC493EA47CAB45e892d1B638a1", + "type": "ERC20", + "symbol": "AMPLG", + "decimals": 9, + "status": "active", + "id": "0x8003C49f6ebACDdC493EA47CAB45e892d1B638a1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8003C49f6ebACDdC493EA47CAB45e892d1B638a1/logo.png b/blockchains/ethereum/assets/0x8003C49f6ebACDdC493EA47CAB45e892d1B638a1/logo.png new file mode 100644 index 00000000..7966a5b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x8003C49f6ebACDdC493EA47CAB45e892d1B638a1/logo.png differ diff --git a/blockchains/ethereum/assets/0x800c9882C0bF3E7908c0De8Da940Ab1d4F4458ee/info.json b/blockchains/ethereum/assets/0x800c9882C0bF3E7908c0De8Da940Ab1d4F4458ee/info.json new file mode 100644 index 00000000..29d11466 --- /dev/null +++ b/blockchains/ethereum/assets/0x800c9882C0bF3E7908c0De8Da940Ab1d4F4458ee/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R810805", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x800c9882C0bF3E7908c0De8Da940Ab1d4F4458ee", + "status": "abandoned", + "id": "0x800c9882C0bF3E7908c0De8Da940Ab1d4F4458ee" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x800c9882C0bF3E7908c0De8Da940Ab1d4F4458ee/logo.png b/blockchains/ethereum/assets/0x800c9882C0bF3E7908c0De8Da940Ab1d4F4458ee/logo.png new file mode 100755 index 00000000..1c028cd3 Binary files /dev/null and b/blockchains/ethereum/assets/0x800c9882C0bF3E7908c0De8Da940Ab1d4F4458ee/logo.png differ diff --git a/blockchains/ethereum/assets/0x80122c6a83C8202Ea365233363d3f4837D13e888/info.json b/blockchains/ethereum/assets/0x80122c6a83C8202Ea365233363d3f4837D13e888/info.json new file mode 100644 index 00000000..e609c0c4 --- /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 00000000..88651119 Binary files /dev/null and b/blockchains/ethereum/assets/0x80122c6a83C8202Ea365233363d3f4837D13e888/logo.png differ diff --git a/blockchains/ethereum/assets/0x8013D06A86F341afAB95F82f6487e44c4Dc0C655/info.json b/blockchains/ethereum/assets/0x8013D06A86F341afAB95F82f6487e44c4Dc0C655/info.json new file mode 100644 index 00000000..aab337e3 --- /dev/null +++ b/blockchains/ethereum/assets/0x8013D06A86F341afAB95F82f6487e44c4Dc0C655/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITCOIN SVGOLD", + "symbol": "BSVG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.bitcoinsvgold.org/", + "explorer": "https://etherscan.io/token/0x8013D06A86F341afAB95F82f6487e44c4Dc0C655", + "status": "abandoned", + "id": "0x8013D06A86F341afAB95F82f6487e44c4Dc0C655" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8013D06A86F341afAB95F82f6487e44c4Dc0C655/logo.png b/blockchains/ethereum/assets/0x8013D06A86F341afAB95F82f6487e44c4Dc0C655/logo.png new file mode 100644 index 00000000..602f1cfb Binary files /dev/null and b/blockchains/ethereum/assets/0x8013D06A86F341afAB95F82f6487e44c4Dc0C655/logo.png differ diff --git a/blockchains/ethereum/assets/0x801Af47bA35316B7DA5EAe0a08904B014E7eC696/info.json b/blockchains/ethereum/assets/0x801Af47bA35316B7DA5EAe0a08904B014E7eC696/info.json new file mode 100644 index 00000000..808d65c6 --- /dev/null +++ b/blockchains/ethereum/assets/0x801Af47bA35316B7DA5EAe0a08904B014E7eC696/info.json @@ -0,0 +1,11 @@ +{ + "name": "IPP COIN", + "symbol": "IPP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x801Af47bA35316B7DA5EAe0a08904B014E7eC696", + "status": "abandoned", + "id": "0x801Af47bA35316B7DA5EAe0a08904B014E7eC696" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x801Af47bA35316B7DA5EAe0a08904B014E7eC696/logo.png b/blockchains/ethereum/assets/0x801Af47bA35316B7DA5EAe0a08904B014E7eC696/logo.png new file mode 100755 index 00000000..d19f3af9 Binary files /dev/null and b/blockchains/ethereum/assets/0x801Af47bA35316B7DA5EAe0a08904B014E7eC696/logo.png differ diff --git a/blockchains/ethereum/assets/0x8040d35ED6c82f75b1078Cf5Eb93A2cFd34b2Bd8/info.json b/blockchains/ethereum/assets/0x8040d35ED6c82f75b1078Cf5Eb93A2cFd34b2Bd8/info.json new file mode 100644 index 00000000..2e4d9cbf --- /dev/null +++ b/blockchains/ethereum/assets/0x8040d35ED6c82f75b1078Cf5Eb93A2cFd34b2Bd8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitreal", + "symbol": "BTR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8040d35ED6c82f75b1078Cf5Eb93A2cFd34b2Bd8", + "status": "abandoned", + "id": "0x8040d35ED6c82f75b1078Cf5Eb93A2cFd34b2Bd8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8040d35ED6c82f75b1078Cf5Eb93A2cFd34b2Bd8/logo.png b/blockchains/ethereum/assets/0x8040d35ED6c82f75b1078Cf5Eb93A2cFd34b2Bd8/logo.png new file mode 100755 index 00000000..3a2e03fd Binary files /dev/null and b/blockchains/ethereum/assets/0x8040d35ED6c82f75b1078Cf5Eb93A2cFd34b2Bd8/logo.png differ diff --git a/blockchains/ethereum/assets/0x80640db285Cc63496bdd8c1980A7f4526A4D477F/info.json b/blockchains/ethereum/assets/0x80640db285Cc63496bdd8c1980A7f4526A4D477F/info.json new file mode 100644 index 00000000..66be95e0 --- /dev/null +++ b/blockchains/ethereum/assets/0x80640db285Cc63496bdd8c1980A7f4526A4D477F/info.json @@ -0,0 +1,11 @@ +{ + "name": "BeatzCoin", + "symbol": "BTZC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x80640db285Cc63496bdd8c1980A7f4526A4D477F", + "status": "abandoned", + "id": "0x80640db285Cc63496bdd8c1980A7f4526A4D477F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80640db285Cc63496bdd8c1980A7f4526A4D477F/logo.png b/blockchains/ethereum/assets/0x80640db285Cc63496bdd8c1980A7f4526A4D477F/logo.png new file mode 100644 index 00000000..d6c6f212 Binary files /dev/null and b/blockchains/ethereum/assets/0x80640db285Cc63496bdd8c1980A7f4526A4D477F/logo.png differ diff --git a/blockchains/ethereum/assets/0x8069080a922834460C3A092FB2c1510224dc066b/info.json b/blockchains/ethereum/assets/0x8069080a922834460C3A092FB2c1510224dc066b/info.json new file mode 100644 index 00000000..9a61cc7b --- /dev/null +++ b/blockchains/ethereum/assets/0x8069080a922834460C3A092FB2c1510224dc066b/info.json @@ -0,0 +1,11 @@ +{ + "name": "SpaceChain", + "symbol": "SPC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://spacechain.com/", + "explorer": "https://etherscan.io/token/0x8069080a922834460C3A092FB2c1510224dc066b", + "status": "abandoned", + "id": "0x8069080a922834460C3A092FB2c1510224dc066b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8069080a922834460C3A092FB2c1510224dc066b/logo.png b/blockchains/ethereum/assets/0x8069080a922834460C3A092FB2c1510224dc066b/logo.png new file mode 100644 index 00000000..770232c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x8069080a922834460C3A092FB2c1510224dc066b/logo.png differ diff --git a/blockchains/ethereum/assets/0x8081749f7F049d0B7E32BB33DEcaD9eeD96693D5/info.json b/blockchains/ethereum/assets/0x8081749f7F049d0B7E32BB33DEcaD9eeD96693D5/info.json new file mode 100644 index 00000000..79561c47 --- /dev/null +++ b/blockchains/ethereum/assets/0x8081749f7F049d0B7E32BB33DEcaD9eeD96693D5/info.json @@ -0,0 +1,11 @@ +{ + "name": "International Financial Asset", + "symbol": "IFA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8081749f7F049d0B7E32BB33DEcaD9eeD96693D5", + "status": "abandoned", + "id": "0x8081749f7F049d0B7E32BB33DEcaD9eeD96693D5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8081749f7F049d0B7E32BB33DEcaD9eeD96693D5/logo.png b/blockchains/ethereum/assets/0x8081749f7F049d0B7E32BB33DEcaD9eeD96693D5/logo.png new file mode 100644 index 00000000..b1dda626 Binary files /dev/null and b/blockchains/ethereum/assets/0x8081749f7F049d0B7E32BB33DEcaD9eeD96693D5/logo.png differ diff --git a/blockchains/ethereum/assets/0x8082938646A474cf08f2107791bc9F644D9DAd75/info.json b/blockchains/ethereum/assets/0x8082938646A474cf08f2107791bc9F644D9DAd75/info.json new file mode 100644 index 00000000..bfe6afeb --- /dev/null +++ b/blockchains/ethereum/assets/0x8082938646A474cf08f2107791bc9F644D9DAd75/info.json @@ -0,0 +1,11 @@ +{ + "name": "DD Platinum", + "symbol": "DDP", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8082938646A474cf08f2107791bc9F644D9DAd75", + "status": "abandoned", + "id": "0x8082938646A474cf08f2107791bc9F644D9DAd75" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8082938646A474cf08f2107791bc9F644D9DAd75/logo.png b/blockchains/ethereum/assets/0x8082938646A474cf08f2107791bc9F644D9DAd75/logo.png new file mode 100644 index 00000000..22a8411c Binary files /dev/null and b/blockchains/ethereum/assets/0x8082938646A474cf08f2107791bc9F644D9DAd75/logo.png differ diff --git a/blockchains/ethereum/assets/0x808470d3C22263bca54d2634BCA479bF05d36E93/info.json b/blockchains/ethereum/assets/0x808470d3C22263bca54d2634BCA479bF05d36E93/info.json new file mode 100644 index 00000000..331afd74 --- /dev/null +++ b/blockchains/ethereum/assets/0x808470d3C22263bca54d2634BCA479bF05d36E93/info.json @@ -0,0 +1,11 @@ +{ + "name": "Quantum Generation", + "symbol": "QUBIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x808470d3C22263bca54d2634BCA479bF05d36E93", + "status": "abandoned", + "id": "0x808470d3C22263bca54d2634BCA479bF05d36E93" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x808470d3C22263bca54d2634BCA479bF05d36E93/logo.png b/blockchains/ethereum/assets/0x808470d3C22263bca54d2634BCA479bF05d36E93/logo.png new file mode 100644 index 00000000..0ab224b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x808470d3C22263bca54d2634BCA479bF05d36E93/logo.png differ diff --git a/blockchains/ethereum/assets/0x808507121B80c02388fAd14726482e061B8da827/info.json b/blockchains/ethereum/assets/0x808507121B80c02388fAd14726482e061B8da827/info.json new file mode 100644 index 00000000..abf9df2f --- /dev/null +++ b/blockchains/ethereum/assets/0x808507121B80c02388fAd14726482e061B8da827/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://etherscan.io/token/0x808507121b80c02388fad14726482e061b8da827", + "type": "ERC20", + "symbol": "PENDLE", + "decimals": 18, + "status": "active", + "id": "0x808507121B80c02388fAd14726482e061B8da827", + "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/ethereum/assets/0x808507121B80c02388fAd14726482e061B8da827/logo.png b/blockchains/ethereum/assets/0x808507121B80c02388fAd14726482e061B8da827/logo.png new file mode 100644 index 00000000..20b9f447 Binary files /dev/null and b/blockchains/ethereum/assets/0x808507121B80c02388fAd14726482e061B8da827/logo.png differ diff --git a/blockchains/ethereum/assets/0x809826cceAb68c387726af962713b64Cb5Cb3CCA/info.json b/blockchains/ethereum/assets/0x809826cceAb68c387726af962713b64Cb5Cb3CCA/info.json new file mode 100644 index 00000000..a75fa5f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x809826cceAb68c387726af962713b64Cb5Cb3CCA/info.json @@ -0,0 +1,11 @@ +{ + "name": "NucleusVision", + "symbol": "nCash", + "type": "ERC20", + "decimals": 18, + "description": "Our mission is to connect the unconnected, so brick and mortar stores business can access previously unavailable insights.", + "website": "https://nucleus.vision", + "explorer": "https://etherscan.io/token/0x809826cceAb68c387726af962713b64Cb5Cb3CCA", + "status": "active", + "id": "0x809826cceAb68c387726af962713b64Cb5Cb3CCA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x809826cceAb68c387726af962713b64Cb5Cb3CCA/logo.png b/blockchains/ethereum/assets/0x809826cceAb68c387726af962713b64Cb5Cb3CCA/logo.png new file mode 100755 index 00000000..20a9cc28 Binary files /dev/null and b/blockchains/ethereum/assets/0x809826cceAb68c387726af962713b64Cb5Cb3CCA/logo.png differ diff --git a/blockchains/ethereum/assets/0x809FAaF63eE61B9133102b4Fbe560219b534b6e4/info.json b/blockchains/ethereum/assets/0x809FAaF63eE61B9133102b4Fbe560219b534b6e4/info.json new file mode 100644 index 00000000..6138d00e --- /dev/null +++ b/blockchains/ethereum/assets/0x809FAaF63eE61B9133102b4Fbe560219b534b6e4/info.json @@ -0,0 +1,11 @@ +{ + "name": "PurpleCoin", + "symbol": "PPC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x809FAaF63eE61B9133102b4Fbe560219b534b6e4", + "status": "abandoned", + "id": "0x809FAaF63eE61B9133102b4Fbe560219b534b6e4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x809FAaF63eE61B9133102b4Fbe560219b534b6e4/logo.png b/blockchains/ethereum/assets/0x809FAaF63eE61B9133102b4Fbe560219b534b6e4/logo.png new file mode 100755 index 00000000..ead1d5a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x809FAaF63eE61B9133102b4Fbe560219b534b6e4/logo.png differ diff --git a/blockchains/ethereum/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/info.json b/blockchains/ethereum/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/info.json new file mode 100644 index 00000000..e7a1a44e --- /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 00000000..a3cdfb7f Binary files /dev/null and b/blockchains/ethereum/assets/0x80A77a372c1e12AcCdA84299492f404902E2DA67/logo.png differ diff --git a/blockchains/ethereum/assets/0x80BC5512561c7f85A3A9508c7df7901b370Fa1DF/info.json b/blockchains/ethereum/assets/0x80BC5512561c7f85A3A9508c7df7901b370Fa1DF/info.json new file mode 100644 index 00000000..9f1aa4dc --- /dev/null +++ b/blockchains/ethereum/assets/0x80BC5512561c7f85A3A9508c7df7901b370Fa1DF/info.json @@ -0,0 +1,11 @@ +{ + "name": "TradeToken", + "symbol": "TIO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x80BC5512561c7f85A3A9508c7df7901b370Fa1DF", + "status": "abandoned", + "id": "0x80BC5512561c7f85A3A9508c7df7901b370Fa1DF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80BC5512561c7f85A3A9508c7df7901b370Fa1DF/logo.png b/blockchains/ethereum/assets/0x80BC5512561c7f85A3A9508c7df7901b370Fa1DF/logo.png new file mode 100644 index 00000000..33522d85 Binary files /dev/null and b/blockchains/ethereum/assets/0x80BC5512561c7f85A3A9508c7df7901b370Fa1DF/logo.png differ diff --git a/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json b/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json new file mode 100644 index 00000000..d3f68c85 --- /dev/null +++ b/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json @@ -0,0 +1,25 @@ +{ + "name": "CLV", + "website": "https://clv.org/", + "description": "Clover is the native token of CLV M-Chain, and is used for staking to take part in network consensus, transaction fees, platform rewards, and network governance.", + "explorer": "https://etherscan.io/token/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52", + "symbol": "CLV", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0x80C62FE4487E1351b47Ba49809EBD60ED085bf52", + "links": [ + { + "name": "github", + "url": "https://github.com/clover-network" + }, + { + "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/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/logo.png b/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/logo.png new file mode 100644 index 00000000..3765491c Binary files /dev/null and b/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/logo.png differ diff --git a/blockchains/ethereum/assets/0x80CE3027a70e0A928d9268994e9B85d03Bd4CDcf/info.json b/blockchains/ethereum/assets/0x80CE3027a70e0A928d9268994e9B85d03Bd4CDcf/info.json new file mode 100644 index 00000000..3ebb1b45 --- /dev/null +++ b/blockchains/ethereum/assets/0x80CE3027a70e0A928d9268994e9B85d03Bd4CDcf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Polkalokr", + "symbol": "LKR", + "type": "ERC20", + "decimals": 18, + "description": "Polkalokr is restoring trust & simplicity to complex token ecosystems.", + "website": "https://polkalokr.com", + "explorer": "https://etherscan.io/token/0x80CE3027a70e0A928d9268994e9B85d03Bd4CDcf", + "status": "active", + "id": "0x80CE3027a70e0A928d9268994e9B85d03Bd4CDcf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80CE3027a70e0A928d9268994e9B85d03Bd4CDcf/logo.png b/blockchains/ethereum/assets/0x80CE3027a70e0A928d9268994e9B85d03Bd4CDcf/logo.png new file mode 100644 index 00000000..4942cda9 Binary files /dev/null and b/blockchains/ethereum/assets/0x80CE3027a70e0A928d9268994e9B85d03Bd4CDcf/logo.png differ diff --git a/blockchains/ethereum/assets/0x80D09dA032F4293b1f1295274509Cb76C2A5DC42/info.json b/blockchains/ethereum/assets/0x80D09dA032F4293b1f1295274509Cb76C2A5DC42/info.json new file mode 100644 index 00000000..65e4d507 --- /dev/null +++ b/blockchains/ethereum/assets/0x80D09dA032F4293b1f1295274509Cb76C2A5DC42/info.json @@ -0,0 +1,11 @@ +{ + "name": "Visa Application Chain", + "symbol": "VAAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x80D09dA032F4293b1f1295274509Cb76C2A5DC42", + "status": "abandoned", + "id": "0x80D09dA032F4293b1f1295274509Cb76C2A5DC42" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80D09dA032F4293b1f1295274509Cb76C2A5DC42/logo.png b/blockchains/ethereum/assets/0x80D09dA032F4293b1f1295274509Cb76C2A5DC42/logo.png new file mode 100644 index 00000000..87623c28 Binary files /dev/null and b/blockchains/ethereum/assets/0x80D09dA032F4293b1f1295274509Cb76C2A5DC42/logo.png differ diff --git a/blockchains/ethereum/assets/0x80D55c03180349Fff4a229102F62328220A96444/info.json b/blockchains/ethereum/assets/0x80D55c03180349Fff4a229102F62328220A96444/info.json new file mode 100644 index 00000000..07a50ece --- /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 00000000..afa7fedd Binary files /dev/null and b/blockchains/ethereum/assets/0x80D55c03180349Fff4a229102F62328220A96444/logo.png differ diff --git a/blockchains/ethereum/assets/0x80E7a4d750aDe616Da896C49049B7EdE9e04C191/info.json b/blockchains/ethereum/assets/0x80E7a4d750aDe616Da896C49049B7EdE9e04C191/info.json new file mode 100644 index 00000000..519e4e88 --- /dev/null +++ b/blockchains/ethereum/assets/0x80E7a4d750aDe616Da896C49049B7EdE9e04C191/info.json @@ -0,0 +1,11 @@ +{ + "name": "AstrCoin", + "symbol": "ASTR", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x80E7a4d750aDe616Da896C49049B7EdE9e04C191", + "status": "spam", + "id": "0x80E7a4d750aDe616Da896C49049B7EdE9e04C191" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80E7a4d750aDe616Da896C49049B7EdE9e04C191/logo.png b/blockchains/ethereum/assets/0x80E7a4d750aDe616Da896C49049B7EdE9e04C191/logo.png new file mode 100644 index 00000000..e15ec34d Binary files /dev/null and b/blockchains/ethereum/assets/0x80E7a4d750aDe616Da896C49049B7EdE9e04C191/logo.png differ diff --git a/blockchains/ethereum/assets/0x80aB141F324C3d6F2b18b030f1C4E95d4d658778/info.json b/blockchains/ethereum/assets/0x80aB141F324C3d6F2b18b030f1C4E95d4d658778/info.json new file mode 100644 index 00000000..33c65fac --- /dev/null +++ b/blockchains/ethereum/assets/0x80aB141F324C3d6F2b18b030f1C4E95d4d658778/info.json @@ -0,0 +1,21 @@ +{ + "name": "DEA", + "type": "ERC20", + "symbol": "DEA", + "decimals": 18, + "website": "https://deus.finance/", + "description": "DEA is the female part of DEUS. She will become the voice of the unheard & the balance of the rough forces.", + "explorer": "https://etherscan.io/token/0x80aB141F324C3d6F2b18b030f1C4E95d4d658778", + "status": "abandoned", + "id": "0x80aB141F324C3d6F2b18b030f1C4E95d4d658778", + "links": [ + { + "name": "github", + "url": "https://github.com/deusfinance" + }, + { + "name": "whitepaper", + "url": "https://medium.com/@deusfinance/deus-dea-unveiling-the-governance-token-of-the-deus-ecosystem-part-1-26d6433aac13" + } + ] +} diff --git a/blockchains/ethereum/assets/0x80aCB802869F7B825cdBdaCb504cF95b595BB930/info.json b/blockchains/ethereum/assets/0x80aCB802869F7B825cdBdaCb504cF95b595BB930/info.json new file mode 100644 index 00000000..42d9ca7d --- /dev/null +++ b/blockchains/ethereum/assets/0x80aCB802869F7B825cdBdaCb504cF95b595BB930/info.json @@ -0,0 +1,11 @@ +{ + "name": "Core", + "symbol": "CRX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x80aCB802869F7B825cdBdaCb504cF95b595BB930", + "status": "abandoned", + "id": "0x80aCB802869F7B825cdBdaCb504cF95b595BB930" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80aCB802869F7B825cdBdaCb504cF95b595BB930/logo.png b/blockchains/ethereum/assets/0x80aCB802869F7B825cdBdaCb504cF95b595BB930/logo.png new file mode 100644 index 00000000..17111efa Binary files /dev/null and b/blockchains/ethereum/assets/0x80aCB802869F7B825cdBdaCb504cF95b595BB930/logo.png differ diff --git a/blockchains/ethereum/assets/0x80bD0cc689c206e3F642919244c4251c7Ef19852/info.json b/blockchains/ethereum/assets/0x80bD0cc689c206e3F642919244c4251c7Ef19852/info.json new file mode 100644 index 00000000..ea481fbe --- /dev/null +++ b/blockchains/ethereum/assets/0x80bD0cc689c206e3F642919244c4251c7Ef19852/info.json @@ -0,0 +1,11 @@ +{ + "name": "SudanGoldCoin", + "symbol": "SGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://sudangoldcoin.com/", + "explorer": "https://etherscan.io/token/0x80bD0cc689c206e3F642919244c4251c7Ef19852", + "status": "abandoned", + "id": "0x80bD0cc689c206e3F642919244c4251c7Ef19852" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80bD0cc689c206e3F642919244c4251c7Ef19852/logo.png b/blockchains/ethereum/assets/0x80bD0cc689c206e3F642919244c4251c7Ef19852/logo.png new file mode 100644 index 00000000..051abd5b Binary files /dev/null and b/blockchains/ethereum/assets/0x80bD0cc689c206e3F642919244c4251c7Ef19852/logo.png differ diff --git a/blockchains/ethereum/assets/0x80bb277f4355A43CDbB86a82F9876C946476d9Eb/info.json b/blockchains/ethereum/assets/0x80bb277f4355A43CDbB86a82F9876C946476d9Eb/info.json new file mode 100644 index 00000000..beab4ae6 --- /dev/null +++ b/blockchains/ethereum/assets/0x80bb277f4355A43CDbB86a82F9876C946476d9Eb/info.json @@ -0,0 +1,17 @@ +{ + "name": "DogDefiCoin", + "website": "https://dogdeficoin.com", + "description": "DogDefi offers liquidity mining and earn DogDeFiCoin as reward.", + "explorer": "https://etherscan.io/token/0x80bb277f4355a43cdbb86a82f9876c946476d9eb", + "type": "ERC20", + "symbol": "DOGDEFI", + "decimals": 18, + "status": "active", + "id": "0x80bb277f4355A43CDbB86a82F9876C946476d9Eb", + "links": [ + { + "name": "x", + "url": "https://x.com/DogDeFiCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80bb277f4355A43CDbB86a82F9876C946476d9Eb/logo.png b/blockchains/ethereum/assets/0x80bb277f4355A43CDbB86a82F9876C946476d9Eb/logo.png new file mode 100644 index 00000000..6a2d40ca Binary files /dev/null and b/blockchains/ethereum/assets/0x80bb277f4355A43CDbB86a82F9876C946476d9Eb/logo.png differ diff --git a/blockchains/ethereum/assets/0x80bf9169f4c7bc84344FbC75B026dd57252D9a0C/info.json b/blockchains/ethereum/assets/0x80bf9169f4c7bc84344FbC75B026dd57252D9a0C/info.json new file mode 100644 index 00000000..e6fc8986 --- /dev/null +++ b/blockchains/ethereum/assets/0x80bf9169f4c7bc84344FbC75B026dd57252D9a0C/info.json @@ -0,0 +1,11 @@ +{ + "name": "USDNT", + "symbol": "USDNT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x80bf9169f4c7bc84344FbC75B026dd57252D9a0C", + "status": "abandoned", + "id": "0x80bf9169f4c7bc84344FbC75B026dd57252D9a0C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80bf9169f4c7bc84344FbC75B026dd57252D9a0C/logo.png b/blockchains/ethereum/assets/0x80bf9169f4c7bc84344FbC75B026dd57252D9a0C/logo.png new file mode 100644 index 00000000..f38b6664 Binary files /dev/null and b/blockchains/ethereum/assets/0x80bf9169f4c7bc84344FbC75B026dd57252D9a0C/logo.png differ diff --git a/blockchains/ethereum/assets/0x80c8C3dCfB854f9542567c8Dac3f44D709eBc1de/info.json b/blockchains/ethereum/assets/0x80c8C3dCfB854f9542567c8Dac3f44D709eBc1de/info.json new file mode 100644 index 00000000..19ef981a --- /dev/null +++ b/blockchains/ethereum/assets/0x80c8C3dCfB854f9542567c8Dac3f44D709eBc1de/info.json @@ -0,0 +1,29 @@ +{ + "name": "MilkyWayToken", + "website": "https://spaceswap.app/", + "description": "The SpaceSwap project aims to become the first and only one-stop-station for major DeFi protocols. It will provide users with a fair and profitable earnings sharing system, topped by MilkyWay (MILK2) coin rewards and MilkShake (SHAKE), to boost your earnings.", + "explorer": "https://etherscan.io/token/0x80c8C3dCfB854f9542567c8Dac3f44D709eBc1de", + "type": "ERC20", + "symbol": "MILK2", + "decimals": 18, + "status": "active", + "id": "0x80c8C3dCfB854f9542567c8Dac3f44D709eBc1de", + "links": [ + { + "name": "github", + "url": "https://github.com/spaceswap/spaceswap" + }, + { + "name": "x", + "url": "https://x.com/spaceswapdefi" + }, + { + "name": "telegram", + "url": "https://t.me/spaceswap" + }, + { + "name": "discord", + "url": "https://discord.com/invite/r6RymJj" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80c8C3dCfB854f9542567c8Dac3f44D709eBc1de/logo.png b/blockchains/ethereum/assets/0x80c8C3dCfB854f9542567c8Dac3f44D709eBc1de/logo.png new file mode 100644 index 00000000..94b6dc84 Binary files /dev/null and b/blockchains/ethereum/assets/0x80c8C3dCfB854f9542567c8Dac3f44D709eBc1de/logo.png differ diff --git a/blockchains/ethereum/assets/0x80d211718f9B9Ba31959a14328Acd8D8c9d5382f/info.json b/blockchains/ethereum/assets/0x80d211718f9B9Ba31959a14328Acd8D8c9d5382f/info.json new file mode 100644 index 00000000..0ae2540a --- /dev/null +++ b/blockchains/ethereum/assets/0x80d211718f9B9Ba31959a14328Acd8D8c9d5382f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Palmes", + "website": "https://palmestoken.com/", + "description": "Palmes: An innovative concept to generate new assets with security and blockchain technology.", + "explorer": "https://etherscan.io/token/0x80d211718f9B9Ba31959a14328Acd8D8c9d5382f", + "type": "ERC20", + "symbol": "PLM", + "decimals": 6, + "status": "active", + "id": "0x80d211718f9B9Ba31959a14328Acd8D8c9d5382f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80d211718f9B9Ba31959a14328Acd8D8c9d5382f/logo.png b/blockchains/ethereum/assets/0x80d211718f9B9Ba31959a14328Acd8D8c9d5382f/logo.png new file mode 100644 index 00000000..421b0ca5 Binary files /dev/null and b/blockchains/ethereum/assets/0x80d211718f9B9Ba31959a14328Acd8D8c9d5382f/logo.png differ diff --git a/blockchains/ethereum/assets/0x80e82Dd8707a68D9f26a3035c1bBF2b704549801/info.json b/blockchains/ethereum/assets/0x80e82Dd8707a68D9f26a3035c1bBF2b704549801/info.json new file mode 100644 index 00000000..192d7d94 --- /dev/null +++ b/blockchains/ethereum/assets/0x80e82Dd8707a68D9f26a3035c1bBF2b704549801/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trendercoin", + "symbol": "TDC", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x80e82Dd8707a68D9f26a3035c1bBF2b704549801", + "status": "abandoned", + "id": "0x80e82Dd8707a68D9f26a3035c1bBF2b704549801" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80e82Dd8707a68D9f26a3035c1bBF2b704549801/logo.png b/blockchains/ethereum/assets/0x80e82Dd8707a68D9f26a3035c1bBF2b704549801/logo.png new file mode 100644 index 00000000..3d5d2624 Binary files /dev/null and b/blockchains/ethereum/assets/0x80e82Dd8707a68D9f26a3035c1bBF2b704549801/logo.png differ diff --git a/blockchains/ethereum/assets/0x80f222a749a2e18Eb7f676D371F19ad7EFEEe3b7/info.json b/blockchains/ethereum/assets/0x80f222a749a2e18Eb7f676D371F19ad7EFEEe3b7/info.json new file mode 100644 index 00000000..dd1c4f56 --- /dev/null +++ b/blockchains/ethereum/assets/0x80f222a749a2e18Eb7f676D371F19ad7EFEEe3b7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Magnolia Token", + "symbol": "MGN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x80f222a749a2e18Eb7f676D371F19ad7EFEEe3b7", + "status": "abandoned", + "id": "0x80f222a749a2e18Eb7f676D371F19ad7EFEEe3b7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80f222a749a2e18Eb7f676D371F19ad7EFEEe3b7/logo.png b/blockchains/ethereum/assets/0x80f222a749a2e18Eb7f676D371F19ad7EFEEe3b7/logo.png new file mode 100644 index 00000000..1a1b7fd0 Binary files /dev/null and b/blockchains/ethereum/assets/0x80f222a749a2e18Eb7f676D371F19ad7EFEEe3b7/logo.png differ diff --git a/blockchains/ethereum/assets/0x80fB784B7eD66730e8b1DBd9820aFD29931aab03/info.json b/blockchains/ethereum/assets/0x80fB784B7eD66730e8b1DBd9820aFD29931aab03/info.json new file mode 100644 index 00000000..b21e28aa --- /dev/null +++ b/blockchains/ethereum/assets/0x80fB784B7eD66730e8b1DBd9820aFD29931aab03/info.json @@ -0,0 +1,12 @@ +{ + "name": "Aave", + "website": "https://aave.com", + "description": "Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets.", + "explorer": "https://etherscan.io/token/0x80fB784B7eD66730e8b1DBd9820aFD29931aab03", + "research": "https://research.binance.com/en/projects/aave-protocol", + "type": "ERC20", + "symbol": "LEND", + "decimals": 18, + "status": "abandoned", + "id": "0x80fB784B7eD66730e8b1DBd9820aFD29931aab03" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x810908B285f85Af668F6348cD8B26D76B3EC12e1/info.json b/blockchains/ethereum/assets/0x810908B285f85Af668F6348cD8B26D76B3EC12e1/info.json new file mode 100644 index 00000000..d2b85654 --- /dev/null +++ b/blockchains/ethereum/assets/0x810908B285f85Af668F6348cD8B26D76B3EC12e1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Swapcoinz", + "symbol": "SPAZ", + "type": "ERC20", + "decimals": 8, + "description": "Swapcoinz The #1 Blockchain Innovative Playground Solution For African Kids With our sole Mission to be a bridge between Families and Businesses.", + "website": "https://swapcoinz.io/", + "explorer": "https://etherscan.io/token/0x810908B285f85Af668F6348cD8B26D76B3EC12e1", + "status": "active", + "id": "0x810908B285f85Af668F6348cD8B26D76B3EC12e1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x810908B285f85Af668F6348cD8B26D76B3EC12e1/logo.png b/blockchains/ethereum/assets/0x810908B285f85Af668F6348cD8B26D76B3EC12e1/logo.png new file mode 100644 index 00000000..d9216936 Binary files /dev/null and b/blockchains/ethereum/assets/0x810908B285f85Af668F6348cD8B26D76B3EC12e1/logo.png differ diff --git a/blockchains/ethereum/assets/0x812456F20215B291fd1246a4A63065E38961949f/info.json b/blockchains/ethereum/assets/0x812456F20215B291fd1246a4A63065E38961949f/info.json new file mode 100644 index 00000000..8e6bb087 --- /dev/null +++ b/blockchains/ethereum/assets/0x812456F20215B291fd1246a4A63065E38961949f/info.json @@ -0,0 +1,11 @@ +{ + "name": "halo", + "symbol": "halo", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x812456F20215B291fd1246a4A63065E38961949f", + "status": "abandoned", + "id": "0x812456F20215B291fd1246a4A63065E38961949f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x812456F20215B291fd1246a4A63065E38961949f/logo.png b/blockchains/ethereum/assets/0x812456F20215B291fd1246a4A63065E38961949f/logo.png new file mode 100644 index 00000000..09f92576 Binary files /dev/null and b/blockchains/ethereum/assets/0x812456F20215B291fd1246a4A63065E38961949f/logo.png differ diff --git a/blockchains/ethereum/assets/0x81246a3F5fab7Aa9f4F625866105F3CAfFc67686/info.json b/blockchains/ethereum/assets/0x81246a3F5fab7Aa9f4F625866105F3CAfFc67686/info.json new file mode 100644 index 00000000..ec340ad3 --- /dev/null +++ b/blockchains/ethereum/assets/0x81246a3F5fab7Aa9f4F625866105F3CAfFc67686/info.json @@ -0,0 +1,11 @@ +{ + "name": "DIM Token", + "website": "https://dim.chat", + "description": "An open source project that provides both a decentralized instant messaging protocol and the system architecture that makes it work.", + "explorer": "https://etherscan.io/token/0x81246a3F5fab7Aa9f4F625866105F3CAfFc67686", + "type": "ERC20", + "symbol": "DIMT", + "decimals": 18, + "status": "active", + "id": "0x81246a3F5fab7Aa9f4F625866105F3CAfFc67686" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81246a3F5fab7Aa9f4F625866105F3CAfFc67686/logo.png b/blockchains/ethereum/assets/0x81246a3F5fab7Aa9f4F625866105F3CAfFc67686/logo.png new file mode 100644 index 00000000..2b243a70 Binary files /dev/null and b/blockchains/ethereum/assets/0x81246a3F5fab7Aa9f4F625866105F3CAfFc67686/logo.png differ diff --git a/blockchains/ethereum/assets/0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee/info.json b/blockchains/ethereum/assets/0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee/info.json new file mode 100644 index 00000000..e0eaa517 --- /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 00000000..32a2e6ef Binary files /dev/null and b/blockchains/ethereum/assets/0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee/logo.png differ diff --git a/blockchains/ethereum/assets/0x81311Be50efd05ee4501d884F0152f942015508b/info.json b/blockchains/ethereum/assets/0x81311Be50efd05ee4501d884F0152f942015508b/info.json new file mode 100644 index 00000000..2f06e5e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x81311Be50efd05ee4501d884F0152f942015508b/info.json @@ -0,0 +1,11 @@ +{ + "name": "World Wide Trade Coin", + "symbol": "WWTC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x81311Be50efd05ee4501d884F0152f942015508b", + "status": "abandoned", + "id": "0x81311Be50efd05ee4501d884F0152f942015508b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81311Be50efd05ee4501d884F0152f942015508b/logo.png b/blockchains/ethereum/assets/0x81311Be50efd05ee4501d884F0152f942015508b/logo.png new file mode 100644 index 00000000..90d68adc Binary files /dev/null and b/blockchains/ethereum/assets/0x81311Be50efd05ee4501d884F0152f942015508b/logo.png differ diff --git a/blockchains/ethereum/assets/0x813b428aF3920226E059B68A62e4c04933D4eA7a/info.json b/blockchains/ethereum/assets/0x813b428aF3920226E059B68A62e4c04933D4eA7a/info.json new file mode 100644 index 00000000..c89c0f85 --- /dev/null +++ b/blockchains/ethereum/assets/0x813b428aF3920226E059B68A62e4c04933D4eA7a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decentralized Asset Trading Platform", + "symbol": "DATP", + "type": "ERC20", + "decimals": 8, + "description": "The Decentralized Trading Asset Platform is a DAPP opensource toolkit built for transactions using third parties with decentralized P2P networks.", + "website": "https://datp.market/", + "explorer": "https://etherscan.io/token/0x813b428aF3920226E059B68A62e4c04933D4eA7a", + "status": "active", + "id": "0x813b428aF3920226E059B68A62e4c04933D4eA7a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x813b428aF3920226E059B68A62e4c04933D4eA7a/logo.png b/blockchains/ethereum/assets/0x813b428aF3920226E059B68A62e4c04933D4eA7a/logo.png new file mode 100644 index 00000000..4e96930e Binary files /dev/null and b/blockchains/ethereum/assets/0x813b428aF3920226E059B68A62e4c04933D4eA7a/logo.png differ diff --git a/blockchains/ethereum/assets/0x814964b1bceAf24e26296D031EaDf134a2Ca4105/info.json b/blockchains/ethereum/assets/0x814964b1bceAf24e26296D031EaDf134a2Ca4105/info.json new file mode 100644 index 00000000..b01c76c7 --- /dev/null +++ b/blockchains/ethereum/assets/0x814964b1bceAf24e26296D031EaDf134a2Ca4105/info.json @@ -0,0 +1,11 @@ +{ + "name": "Newbium", + "symbol": "NEWB", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x814964b1bceAf24e26296D031EaDf134a2Ca4105", + "status": "abandoned", + "id": "0x814964b1bceAf24e26296D031EaDf134a2Ca4105" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x814964b1bceAf24e26296D031EaDf134a2Ca4105/logo.png b/blockchains/ethereum/assets/0x814964b1bceAf24e26296D031EaDf134a2Ca4105/logo.png new file mode 100644 index 00000000..e1b034a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x814964b1bceAf24e26296D031EaDf134a2Ca4105/logo.png differ diff --git a/blockchains/ethereum/assets/0x814F67fA286f7572B041D041b1D99b432c9155Ee/info.json b/blockchains/ethereum/assets/0x814F67fA286f7572B041D041b1D99b432c9155Ee/info.json new file mode 100644 index 00000000..5770ef17 --- /dev/null +++ b/blockchains/ethereum/assets/0x814F67fA286f7572B041D041b1D99b432c9155Ee/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dragon Coins", + "website": "https://drgtoken.io", + "description": "Dragon Corp. is a dedicated FinTech company that is fully committed to presenting a state of the art Blockchain payment solution.", + "explorer": "https://etherscan.io/token/0x814F67fA286f7572B041D041b1D99b432c9155Ee", + "type": "ERC20", + "symbol": "DRG", + "decimals": 8, + "status": "active", + "id": "0x814F67fA286f7572B041D041b1D99b432c9155Ee" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x814F67fA286f7572B041D041b1D99b432c9155Ee/logo.png b/blockchains/ethereum/assets/0x814F67fA286f7572B041D041b1D99b432c9155Ee/logo.png new file mode 100644 index 00000000..f356be69 Binary files /dev/null and b/blockchains/ethereum/assets/0x814F67fA286f7572B041D041b1D99b432c9155Ee/logo.png differ diff --git a/blockchains/ethereum/assets/0x814e0908b12A99FeCf5BC101bB5d0b8B5cDf7d26/info.json b/blockchains/ethereum/assets/0x814e0908b12A99FeCf5BC101bB5d0b8B5cDf7d26/info.json new file mode 100644 index 00000000..e688dd2d --- /dev/null +++ b/blockchains/ethereum/assets/0x814e0908b12A99FeCf5BC101bB5d0b8B5cDf7d26/info.json @@ -0,0 +1,12 @@ +{ + "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://etherscan.io/token/0x814e0908b12A99FeCf5BC101bB5d0b8B5cDf7d26", + "research": "https://research.binance.com/en/projects/measurable-data-token", + "type": "ERC20", + "symbol": "MDT", + "decimals": 18, + "status": "active", + "id": "0x814e0908b12A99FeCf5BC101bB5d0b8B5cDf7d26" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x814e0908b12A99FeCf5BC101bB5d0b8B5cDf7d26/logo.png b/blockchains/ethereum/assets/0x814e0908b12A99FeCf5BC101bB5d0b8B5cDf7d26/logo.png new file mode 100644 index 00000000..90bacfc6 Binary files /dev/null and b/blockchains/ethereum/assets/0x814e0908b12A99FeCf5BC101bB5d0b8B5cDf7d26/logo.png differ diff --git a/blockchains/ethereum/assets/0x8156C0DCfC78308A12A38CcdE1825c0b4A78d77f/info.json b/blockchains/ethereum/assets/0x8156C0DCfC78308A12A38CcdE1825c0b4A78d77f/info.json new file mode 100644 index 00000000..0a7da7e9 --- /dev/null +++ b/blockchains/ethereum/assets/0x8156C0DCfC78308A12A38CcdE1825c0b4A78d77f/info.json @@ -0,0 +1,11 @@ +{ + "name": "FUNCOINIO", + "symbol": "FUNC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8156C0DCfC78308A12A38CcdE1825c0b4A78d77f", + "status": "abandoned", + "id": "0x8156C0DCfC78308A12A38CcdE1825c0b4A78d77f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8156C0DCfC78308A12A38CcdE1825c0b4A78d77f/logo.png b/blockchains/ethereum/assets/0x8156C0DCfC78308A12A38CcdE1825c0b4A78d77f/logo.png new file mode 100644 index 00000000..372340aa Binary files /dev/null and b/blockchains/ethereum/assets/0x8156C0DCfC78308A12A38CcdE1825c0b4A78d77f/logo.png differ diff --git a/blockchains/ethereum/assets/0x816051E2203Ca534c4336d8d6Df71987fA3Ae0BD/info.json b/blockchains/ethereum/assets/0x816051E2203Ca534c4336d8d6Df71987fA3Ae0BD/info.json new file mode 100644 index 00000000..d4551b03 --- /dev/null +++ b/blockchains/ethereum/assets/0x816051E2203Ca534c4336d8d6Df71987fA3Ae0BD/info.json @@ -0,0 +1,11 @@ +{ + "name": "FunKoin", + "symbol": "FNK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x816051E2203Ca534c4336d8d6Df71987fA3Ae0BD", + "status": "abandoned", + "id": "0x816051E2203Ca534c4336d8d6Df71987fA3Ae0BD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x816051E2203Ca534c4336d8d6Df71987fA3Ae0BD/logo.png b/blockchains/ethereum/assets/0x816051E2203Ca534c4336d8d6Df71987fA3Ae0BD/logo.png new file mode 100755 index 00000000..0618e52c Binary files /dev/null and b/blockchains/ethereum/assets/0x816051E2203Ca534c4336d8d6Df71987fA3Ae0BD/logo.png differ diff --git a/blockchains/ethereum/assets/0x81611aCD4460Fd996Aa657835aF044644Fa8ae29/info.json b/blockchains/ethereum/assets/0x81611aCD4460Fd996Aa657835aF044644Fa8ae29/info.json new file mode 100644 index 00000000..ebc9e128 --- /dev/null +++ b/blockchains/ethereum/assets/0x81611aCD4460Fd996Aa657835aF044644Fa8ae29/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yangue", + "symbol": "YANG", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x81611aCD4460Fd996Aa657835aF044644Fa8ae29", + "status": "abandoned", + "id": "0x81611aCD4460Fd996Aa657835aF044644Fa8ae29" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81611aCD4460Fd996Aa657835aF044644Fa8ae29/logo.png b/blockchains/ethereum/assets/0x81611aCD4460Fd996Aa657835aF044644Fa8ae29/logo.png new file mode 100644 index 00000000..3a5b1110 Binary files /dev/null and b/blockchains/ethereum/assets/0x81611aCD4460Fd996Aa657835aF044644Fa8ae29/logo.png differ diff --git a/blockchains/ethereum/assets/0x8167D3B1024cB51A2DD1B4d889ddf7023420796a/info.json b/blockchains/ethereum/assets/0x8167D3B1024cB51A2DD1B4d889ddf7023420796a/info.json new file mode 100644 index 00000000..4b69db4e --- /dev/null +++ b/blockchains/ethereum/assets/0x8167D3B1024cB51A2DD1B4d889ddf7023420796a/info.json @@ -0,0 +1,45 @@ +{ + "name": "NOKU v2", + "type": "ERC20", + "symbol": "NOKU", + "decimals": 18, + "website": "https://www.noku.io/", + "description": "Noku develops blockchain platforms. Noku has released Nokuchain: a blockchain designed to raise up the NFTs performance for gaming applications.", + "explorer": "https://etherscan.io/token/0x8167d3b1024cb51a2dd1b4d889ddf7023420796a", + "status": "active", + "id": "0x8167D3B1024cB51A2DD1B4d889ddf7023420796a", + "links": [ + { + "name": "x", + "url": "https://x.com/nokuofficial" + }, + { + "name": "github", + "url": "https://github.com/noku-team" + }, + { + "name": "telegram", + "url": "https://t.me/nokuofficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/nokunews" + }, + { + "name": "facebook", + "url": "https://facebook.com/Noku-317917408638309" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC2Ru2OagHzkuETQLDvy4FuA" + }, + { + "name": "medium", + "url": "https://nokuteam.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/noku/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8167D3B1024cB51A2DD1B4d889ddf7023420796a/logo.png b/blockchains/ethereum/assets/0x8167D3B1024cB51A2DD1B4d889ddf7023420796a/logo.png new file mode 100644 index 00000000..d6331bbc Binary files /dev/null and b/blockchains/ethereum/assets/0x8167D3B1024cB51A2DD1B4d889ddf7023420796a/logo.png differ diff --git a/blockchains/ethereum/assets/0x81705082eF9f0D660f07BE80093D46d826d48b25/info.json b/blockchains/ethereum/assets/0x81705082eF9f0D660f07BE80093D46d826d48b25/info.json new file mode 100644 index 00000000..64620d5c --- /dev/null +++ b/blockchains/ethereum/assets/0x81705082eF9f0D660f07BE80093D46d826d48b25/info.json @@ -0,0 +1,11 @@ +{ + "name": "Globalvillage ecosystem", + "symbol": "GVE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://gve.io/", + "explorer": "https://etherscan.io/token/0x81705082eF9f0D660f07BE80093D46d826d48b25", + "status": "abandoned", + "id": "0x81705082eF9f0D660f07BE80093D46d826d48b25" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81705082eF9f0D660f07BE80093D46d826d48b25/logo.png b/blockchains/ethereum/assets/0x81705082eF9f0D660f07BE80093D46d826d48b25/logo.png new file mode 100644 index 00000000..8980e1ef Binary files /dev/null and b/blockchains/ethereum/assets/0x81705082eF9f0D660f07BE80093D46d826d48b25/logo.png differ diff --git a/blockchains/ethereum/assets/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35/info.json b/blockchains/ethereum/assets/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35/info.json new file mode 100644 index 00000000..135832e8 --- /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 00000000..c2434e2e 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 00000000..05b6e407 --- /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 00000000..13f4d282 Binary files /dev/null and b/blockchains/ethereum/assets/0x818234860A647D480b9BBCC9a47A23889f2Ec900/logo.png differ diff --git a/blockchains/ethereum/assets/0x8185Bc4757572Da2a610f887561c32298f1A5748/info.json b/blockchains/ethereum/assets/0x8185Bc4757572Da2a610f887561c32298f1A5748/info.json new file mode 100644 index 00000000..0ef0ab45 --- /dev/null +++ b/blockchains/ethereum/assets/0x8185Bc4757572Da2a610f887561c32298f1A5748/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://etherscan.io/token/0x8185Bc4757572Da2a610f887561c32298f1A5748", + "type": "ERC20", + "symbol": "ALN", + "decimals": 18, + "status": "active", + "id": "0x8185Bc4757572Da2a610f887561c32298f1A5748" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8185Bc4757572Da2a610f887561c32298f1A5748/logo.png b/blockchains/ethereum/assets/0x8185Bc4757572Da2a610f887561c32298f1A5748/logo.png new file mode 100644 index 00000000..d1cb8531 Binary files /dev/null and b/blockchains/ethereum/assets/0x8185Bc4757572Da2a610f887561c32298f1A5748/logo.png differ diff --git a/blockchains/ethereum/assets/0x8188e51Bc678F0070531f0e782718Df0027452De/info.json b/blockchains/ethereum/assets/0x8188e51Bc678F0070531f0e782718Df0027452De/info.json new file mode 100644 index 00000000..10bb8c63 --- /dev/null +++ b/blockchains/ethereum/assets/0x8188e51Bc678F0070531f0e782718Df0027452De/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZERACOIN", + "symbol": "ZERA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8188e51Bc678F0070531f0e782718Df0027452De", + "status": "abandoned", + "id": "0x8188e51Bc678F0070531f0e782718Df0027452De" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8188e51Bc678F0070531f0e782718Df0027452De/logo.png b/blockchains/ethereum/assets/0x8188e51Bc678F0070531f0e782718Df0027452De/logo.png new file mode 100644 index 00000000..8554b411 Binary files /dev/null and b/blockchains/ethereum/assets/0x8188e51Bc678F0070531f0e782718Df0027452De/logo.png differ diff --git a/blockchains/ethereum/assets/0x818Fc6C2Ec5986bc6E2CBf00939d90556aB12ce5/info.json b/blockchains/ethereum/assets/0x818Fc6C2Ec5986bc6E2CBf00939d90556aB12ce5/info.json new file mode 100644 index 00000000..c8d365e1 --- /dev/null +++ b/blockchains/ethereum/assets/0x818Fc6C2Ec5986bc6E2CBf00939d90556aB12ce5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kin", + "symbol": "KIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x818Fc6C2Ec5986bc6E2CBf00939d90556aB12ce5", + "status": "abandoned", + "id": "0x818Fc6C2Ec5986bc6E2CBf00939d90556aB12ce5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x818Fc6C2Ec5986bc6E2CBf00939d90556aB12ce5/logo.png b/blockchains/ethereum/assets/0x818Fc6C2Ec5986bc6E2CBf00939d90556aB12ce5/logo.png new file mode 100644 index 00000000..b0167857 Binary files /dev/null and b/blockchains/ethereum/assets/0x818Fc6C2Ec5986bc6E2CBf00939d90556aB12ce5/logo.png differ diff --git a/blockchains/ethereum/assets/0x8196cdd6e17991b22816bb9cdD31FAcEeCf2F816/info.json b/blockchains/ethereum/assets/0x8196cdd6e17991b22816bb9cdD31FAcEeCf2F816/info.json new file mode 100644 index 00000000..33e73742 --- /dev/null +++ b/blockchains/ethereum/assets/0x8196cdd6e17991b22816bb9cdD31FAcEeCf2F816/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "NTV-e", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8196cdd6e17991b22816bb9cdD31FAcEeCf2F816", + "status": "abandoned", + "id": "0x8196cdd6e17991b22816bb9cdD31FAcEeCf2F816" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8196cdd6e17991b22816bb9cdD31FAcEeCf2F816/logo.png b/blockchains/ethereum/assets/0x8196cdd6e17991b22816bb9cdD31FAcEeCf2F816/logo.png new file mode 100644 index 00000000..7c46919a Binary files /dev/null and b/blockchains/ethereum/assets/0x8196cdd6e17991b22816bb9cdD31FAcEeCf2F816/logo.png differ diff --git a/blockchains/ethereum/assets/0x81AADA684F4Bd51252c8184148A78e7E4B44dc2c/info.json b/blockchains/ethereum/assets/0x81AADA684F4Bd51252c8184148A78e7E4B44dc2c/info.json new file mode 100644 index 00000000..c3a5f6ff --- /dev/null +++ b/blockchains/ethereum/assets/0x81AADA684F4Bd51252c8184148A78e7E4B44dc2c/info.json @@ -0,0 +1,11 @@ +{ + "name": "ARUKU COIN", + "symbol": "ARUK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x81AADA684F4Bd51252c8184148A78e7E4B44dc2c", + "status": "active", + "id": "0x81AADA684F4Bd51252c8184148A78e7E4B44dc2c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81AADA684F4Bd51252c8184148A78e7E4B44dc2c/logo.png b/blockchains/ethereum/assets/0x81AADA684F4Bd51252c8184148A78e7E4B44dc2c/logo.png new file mode 100644 index 00000000..178d266e Binary files /dev/null and b/blockchains/ethereum/assets/0x81AADA684F4Bd51252c8184148A78e7E4B44dc2c/logo.png differ diff --git a/blockchains/ethereum/assets/0x81AcB5e13e9846c8a1DBC82d947b901B78aB1A5D/info.json b/blockchains/ethereum/assets/0x81AcB5e13e9846c8a1DBC82d947b901B78aB1A5D/info.json new file mode 100644 index 00000000..ed60a945 --- /dev/null +++ b/blockchains/ethereum/assets/0x81AcB5e13e9846c8a1DBC82d947b901B78aB1A5D/info.json @@ -0,0 +1,11 @@ +{ + "name": "HXT", + "symbol": "HXT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x81AcB5e13e9846c8a1DBC82d947b901B78aB1A5D", + "status": "abandoned", + "id": "0x81AcB5e13e9846c8a1DBC82d947b901B78aB1A5D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81AcB5e13e9846c8a1DBC82d947b901B78aB1A5D/logo.png b/blockchains/ethereum/assets/0x81AcB5e13e9846c8a1DBC82d947b901B78aB1A5D/logo.png new file mode 100644 index 00000000..16f09a32 Binary files /dev/null and b/blockchains/ethereum/assets/0x81AcB5e13e9846c8a1DBC82d947b901B78aB1A5D/logo.png differ diff --git a/blockchains/ethereum/assets/0x81Af4CB0A608839557834c1C275DD74BdEfb7Ec8/info.json b/blockchains/ethereum/assets/0x81Af4CB0A608839557834c1C275DD74BdEfb7Ec8/info.json new file mode 100644 index 00000000..ad895bb5 --- /dev/null +++ b/blockchains/ethereum/assets/0x81Af4CB0A608839557834c1C275DD74BdEfb7Ec8/info.json @@ -0,0 +1,11 @@ +{ + "name": "NERBIO", + "symbol": "NRB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://nerbio.com", + "explorer": "https://etherscan.io/token/0x81Af4CB0A608839557834c1C275DD74BdEfb7Ec8", + "status": "abandoned", + "id": "0x81Af4CB0A608839557834c1C275DD74BdEfb7Ec8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81Af4CB0A608839557834c1C275DD74BdEfb7Ec8/logo.png b/blockchains/ethereum/assets/0x81Af4CB0A608839557834c1C275DD74BdEfb7Ec8/logo.png new file mode 100644 index 00000000..df20661d Binary files /dev/null and b/blockchains/ethereum/assets/0x81Af4CB0A608839557834c1C275DD74BdEfb7Ec8/logo.png differ diff --git a/blockchains/ethereum/assets/0x81B1bFD6CB9Ad42DB395c2a27F73D4DCf5777e2D/info.json b/blockchains/ethereum/assets/0x81B1bFD6CB9Ad42DB395c2a27F73D4DCf5777e2D/info.json new file mode 100644 index 00000000..1096f29b --- /dev/null +++ b/blockchains/ethereum/assets/0x81B1bFD6CB9Ad42DB395c2a27F73D4DCf5777e2D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rare", + "symbol": "RARE", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x81B1bFD6CB9Ad42DB395c2a27F73D4DCf5777e2D", + "status": "active", + "id": "0x81B1bFD6CB9Ad42DB395c2a27F73D4DCf5777e2D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81B1bFD6CB9Ad42DB395c2a27F73D4DCf5777e2D/logo.png b/blockchains/ethereum/assets/0x81B1bFD6CB9Ad42DB395c2a27F73D4DCf5777e2D/logo.png new file mode 100644 index 00000000..771f0392 Binary files /dev/null and b/blockchains/ethereum/assets/0x81B1bFD6CB9Ad42DB395c2a27F73D4DCf5777e2D/logo.png differ diff --git a/blockchains/ethereum/assets/0x81DDbc1394c02D15946D76C16485b829Aa5CCc43/info.json b/blockchains/ethereum/assets/0x81DDbc1394c02D15946D76C16485b829Aa5CCc43/info.json new file mode 100644 index 00000000..030a8f10 --- /dev/null +++ b/blockchains/ethereum/assets/0x81DDbc1394c02D15946D76C16485b829Aa5CCc43/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blackcard Exchange", + "symbol": "BEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x81DDbc1394c02D15946D76C16485b829Aa5CCc43", + "status": "abandoned", + "id": "0x81DDbc1394c02D15946D76C16485b829Aa5CCc43" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81DDbc1394c02D15946D76C16485b829Aa5CCc43/logo.png b/blockchains/ethereum/assets/0x81DDbc1394c02D15946D76C16485b829Aa5CCc43/logo.png new file mode 100644 index 00000000..93ac8c93 Binary files /dev/null and b/blockchains/ethereum/assets/0x81DDbc1394c02D15946D76C16485b829Aa5CCc43/logo.png differ diff --git a/blockchains/ethereum/assets/0x81E74a3eA4BaB2277aA3b941E9D9F37B08Ac5374/info.json b/blockchains/ethereum/assets/0x81E74a3eA4BaB2277aA3b941E9D9F37B08Ac5374/info.json new file mode 100644 index 00000000..ab4eeaed --- /dev/null +++ b/blockchains/ethereum/assets/0x81E74a3eA4BaB2277aA3b941E9D9F37B08Ac5374/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ifoods Token", + "symbol": "IFOOD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.ifoodschain.io/#/", + "explorer": "https://etherscan.io/token/0x81E74a3eA4BaB2277aA3b941E9D9F37B08Ac5374", + "status": "abandoned", + "id": "0x81E74a3eA4BaB2277aA3b941E9D9F37B08Ac5374" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81E74a3eA4BaB2277aA3b941E9D9F37B08Ac5374/logo.png b/blockchains/ethereum/assets/0x81E74a3eA4BaB2277aA3b941E9D9F37B08Ac5374/logo.png new file mode 100644 index 00000000..8919e8a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x81E74a3eA4BaB2277aA3b941E9D9F37B08Ac5374/logo.png differ diff --git a/blockchains/ethereum/assets/0x81Eb954936A7062d1758Fc0E6E3b88d42D9C361c/info.json b/blockchains/ethereum/assets/0x81Eb954936A7062d1758Fc0E6E3b88d42D9C361c/info.json new file mode 100644 index 00000000..0656b0e9 --- /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 00000000..54ad30b9 Binary files /dev/null and b/blockchains/ethereum/assets/0x81Eb954936A7062d1758Fc0E6E3b88d42D9C361c/logo.png differ diff --git a/blockchains/ethereum/assets/0x81Fe677CB2Cb26abF471f40Cd8256cE9d07FeD3a/info.json b/blockchains/ethereum/assets/0x81Fe677CB2Cb26abF471f40Cd8256cE9d07FeD3a/info.json new file mode 100644 index 00000000..a8cec540 --- /dev/null +++ b/blockchains/ethereum/assets/0x81Fe677CB2Cb26abF471f40Cd8256cE9d07FeD3a/info.json @@ -0,0 +1,11 @@ +{ + "name": "MagicCoin", + "symbol": "MCC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x81Fe677CB2Cb26abF471f40Cd8256cE9d07FeD3a", + "status": "abandoned", + "id": "0x81Fe677CB2Cb26abF471f40Cd8256cE9d07FeD3a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81Fe677CB2Cb26abF471f40Cd8256cE9d07FeD3a/logo.png b/blockchains/ethereum/assets/0x81Fe677CB2Cb26abF471f40Cd8256cE9d07FeD3a/logo.png new file mode 100755 index 00000000..61194bce Binary files /dev/null and b/blockchains/ethereum/assets/0x81Fe677CB2Cb26abF471f40Cd8256cE9d07FeD3a/logo.png differ diff --git a/blockchains/ethereum/assets/0x81b4D08645DA11374a03749AB170836E4e539767/info.json b/blockchains/ethereum/assets/0x81b4D08645DA11374a03749AB170836E4e539767/info.json new file mode 100644 index 00000000..09832fa1 --- /dev/null +++ b/blockchains/ethereum/assets/0x81b4D08645DA11374a03749AB170836E4e539767/info.json @@ -0,0 +1,11 @@ +{ + "name": "Paymon Token", + "symbol": "PMNT", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x81b4D08645DA11374a03749AB170836E4e539767", + "status": "abandoned", + "id": "0x81b4D08645DA11374a03749AB170836E4e539767" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81b4D08645DA11374a03749AB170836E4e539767/logo.png b/blockchains/ethereum/assets/0x81b4D08645DA11374a03749AB170836E4e539767/logo.png new file mode 100755 index 00000000..df8b8923 Binary files /dev/null and b/blockchains/ethereum/assets/0x81b4D08645DA11374a03749AB170836E4e539767/logo.png differ diff --git a/blockchains/ethereum/assets/0x81c55017F7Ce6E72451cEd49FF7bAB1e3DF64d0C/info.json b/blockchains/ethereum/assets/0x81c55017F7Ce6E72451cEd49FF7bAB1e3DF64d0C/info.json new file mode 100644 index 00000000..da65f897 --- /dev/null +++ b/blockchains/ethereum/assets/0x81c55017F7Ce6E72451cEd49FF7bAB1e3DF64d0C/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTC Min Volatility Set", + "symbol": "BTCMINVOL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.tokensets.com/set/btcminvol", + "explorer": "https://etherscan.io/token/0x81c55017F7Ce6E72451cEd49FF7bAB1e3DF64d0C", + "status": "abandoned", + "id": "0x81c55017F7Ce6E72451cEd49FF7bAB1e3DF64d0C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81c55017F7Ce6E72451cEd49FF7bAB1e3DF64d0C/logo.png b/blockchains/ethereum/assets/0x81c55017F7Ce6E72451cEd49FF7bAB1e3DF64d0C/logo.png new file mode 100644 index 00000000..3359c7aa Binary files /dev/null and b/blockchains/ethereum/assets/0x81c55017F7Ce6E72451cEd49FF7bAB1e3DF64d0C/logo.png differ diff --git a/blockchains/ethereum/assets/0x81c9151de0C8bafCd325a57E3dB5a5dF1CEBf79c/info.json b/blockchains/ethereum/assets/0x81c9151de0C8bafCd325a57E3dB5a5dF1CEBf79c/info.json new file mode 100644 index 00000000..76bbaaeb --- /dev/null +++ b/blockchains/ethereum/assets/0x81c9151de0C8bafCd325a57E3dB5a5dF1CEBf79c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Datum Token", + "symbol": "DAT", + "type": "ERC20", + "decimals": 18, + "description": "Datum is a decentralized and distributed high performance NoSQL database backed by a blockchain ledger. This technology allows anyone to securely and anonymously backup structured data from social networks, wearables, smart homes, and other IoT devices. Datum provides a marketplace where users can share or sell data on their own terms.", + "website": "https://datum.org/", + "explorer": "https://etherscan.io/token/0x81c9151de0C8bafCd325a57E3dB5a5dF1CEBf79c", + "status": "active", + "id": "0x81c9151de0C8bafCd325a57E3dB5a5dF1CEBf79c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81c9151de0C8bafCd325a57E3dB5a5dF1CEBf79c/logo.png b/blockchains/ethereum/assets/0x81c9151de0C8bafCd325a57E3dB5a5dF1CEBf79c/logo.png new file mode 100755 index 00000000..1062ae92 Binary files /dev/null and b/blockchains/ethereum/assets/0x81c9151de0C8bafCd325a57E3dB5a5dF1CEBf79c/logo.png differ diff --git a/blockchains/ethereum/assets/0x81e091299D14024956723aEf6681F3B39692746c/info.json b/blockchains/ethereum/assets/0x81e091299D14024956723aEf6681F3B39692746c/info.json new file mode 100644 index 00000000..9264adff --- /dev/null +++ b/blockchains/ethereum/assets/0x81e091299D14024956723aEf6681F3B39692746c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jicoin", + "symbol": "JIH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x81e091299D14024956723aEf6681F3B39692746c", + "status": "abandoned", + "id": "0x81e091299D14024956723aEf6681F3B39692746c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81e091299D14024956723aEf6681F3B39692746c/logo.png b/blockchains/ethereum/assets/0x81e091299D14024956723aEf6681F3B39692746c/logo.png new file mode 100644 index 00000000..39695e1d Binary files /dev/null and b/blockchains/ethereum/assets/0x81e091299D14024956723aEf6681F3B39692746c/logo.png differ diff --git a/blockchains/ethereum/assets/0x81e70eA3d76D713Ea1F501f89417aF9BCc2A5f9F/info.json b/blockchains/ethereum/assets/0x81e70eA3d76D713Ea1F501f89417aF9BCc2A5f9F/info.json new file mode 100644 index 00000000..12c632c0 --- /dev/null +++ b/blockchains/ethereum/assets/0x81e70eA3d76D713Ea1F501f89417aF9BCc2A5f9F/info.json @@ -0,0 +1,11 @@ +{ + "name": "AutoKen", + "symbol": "AU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x81e70eA3d76D713Ea1F501f89417aF9BCc2A5f9F", + "status": "abandoned", + "id": "0x81e70eA3d76D713Ea1F501f89417aF9BCc2A5f9F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81e70eA3d76D713Ea1F501f89417aF9BCc2A5f9F/logo.png b/blockchains/ethereum/assets/0x81e70eA3d76D713Ea1F501f89417aF9BCc2A5f9F/logo.png new file mode 100644 index 00000000..4e35868d Binary files /dev/null and b/blockchains/ethereum/assets/0x81e70eA3d76D713Ea1F501f89417aF9BCc2A5f9F/logo.png differ diff --git a/blockchains/ethereum/assets/0x81f8f0bb1cB2A06649E51913A151F0E7Ef6FA321/info.json b/blockchains/ethereum/assets/0x81f8f0bb1cB2A06649E51913A151F0E7Ef6FA321/info.json new file mode 100644 index 00000000..1445fe86 --- /dev/null +++ b/blockchains/ethereum/assets/0x81f8f0bb1cB2A06649E51913A151F0E7Ef6FA321/info.json @@ -0,0 +1,57 @@ +{ + "name": "VitaDAO", + "type": "ERC20", + "symbol": "VITA", + "decimals": 18, + "website": "https://www.vitadao.com", + "description": "The governance token for VitaDAO, a decentralized collective funding early stage longevity research.", + "explorer": "https://etherscan.io/token/0x81f8f0bb1cB2A06649E51913A151F0E7Ef6FA321", + "status": "active", + "id": "0x81f8f0bb1cB2A06649E51913A151F0E7Ef6FA321", + "links": [ + { + "name": "x", + "url": "https://x.com/vita_dao" + }, + { + "name": "github", + "url": "https://github.com/VitaDAO" + }, + { + "name": "telegram", + "url": "https://t.me/vitadao" + }, + { + "name": "telegram_news", + "url": "https://t.me/vitadaonews" + }, + { + "name": "blog", + "url": "https://www.vitadao.com/" + }, + { + "name": "discord", + "url": "https://discord.com/channels/810893413880561704/880806340837118022" + }, + { + "name": "whitepaper", + "url": "https://github.com/VitaDAO/whitepaper/raw/master/VitaDAO_Whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://vitadao.medium.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/VitaDAO/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vitadao" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/vitadao" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x81f8f0bb1cB2A06649E51913A151F0E7Ef6FA321/logo.png b/blockchains/ethereum/assets/0x81f8f0bb1cB2A06649E51913A151F0E7Ef6FA321/logo.png new file mode 100644 index 00000000..44e154b2 Binary files /dev/null and b/blockchains/ethereum/assets/0x81f8f0bb1cB2A06649E51913A151F0E7Ef6FA321/logo.png differ diff --git a/blockchains/ethereum/assets/0x820618367fB401310502760462FbA400a32C1D69/info.json b/blockchains/ethereum/assets/0x820618367fB401310502760462FbA400a32C1D69/info.json new file mode 100644 index 00000000..c4960c21 --- /dev/null +++ b/blockchains/ethereum/assets/0x820618367fB401310502760462FbA400a32C1D69/info.json @@ -0,0 +1,11 @@ +{ + "name": "CorelFX Token", + "symbol": "XCO", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x820618367fB401310502760462FbA400a32C1D69", + "status": "abandoned", + "id": "0x820618367fB401310502760462FbA400a32C1D69" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x820618367fB401310502760462FbA400a32C1D69/logo.png b/blockchains/ethereum/assets/0x820618367fB401310502760462FbA400a32C1D69/logo.png new file mode 100644 index 00000000..fd7acfdd Binary files /dev/null and b/blockchains/ethereum/assets/0x820618367fB401310502760462FbA400a32C1D69/logo.png differ diff --git a/blockchains/ethereum/assets/0x8207c1FfC5B6804F6024322CcF34F29c3541Ae26/info.json b/blockchains/ethereum/assets/0x8207c1FfC5B6804F6024322CcF34F29c3541Ae26/info.json new file mode 100644 index 00000000..605c7c59 --- /dev/null +++ b/blockchains/ethereum/assets/0x8207c1FfC5B6804F6024322CcF34F29c3541Ae26/info.json @@ -0,0 +1,20 @@ +{ + "name": "Origin Protocol", + "website": "https://originprotocol.com", + "description": "Enabling peer-to-peer commerce", + "explorer": "https://etherscan.io/token/0x8207c1ffc5b6804f6024322ccf34f29c3541ae26", + "type": "ERC20", + "symbol": "OGN", + "decimals": 18, + "status": "active", + "id": "0x8207c1FfC5B6804F6024322CcF34F29c3541Ae26", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/originprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8207c1FfC5B6804F6024322CcF34F29c3541Ae26/logo.png b/blockchains/ethereum/assets/0x8207c1FfC5B6804F6024322CcF34F29c3541Ae26/logo.png new file mode 100644 index 00000000..3b088d8c Binary files /dev/null and b/blockchains/ethereum/assets/0x8207c1FfC5B6804F6024322CcF34F29c3541Ae26/logo.png differ diff --git a/blockchains/ethereum/assets/0x82106347dDbB23cE44Cf4cE4053Ef1adf8b9323B/info.json b/blockchains/ethereum/assets/0x82106347dDbB23cE44Cf4cE4053Ef1adf8b9323B/info.json new file mode 100644 index 00000000..21d9640c --- /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 00000000..410dd779 Binary files /dev/null and b/blockchains/ethereum/assets/0x82106347dDbB23cE44Cf4cE4053Ef1adf8b9323B/logo.png differ diff --git a/blockchains/ethereum/assets/0x821144518dfE9e7b44fCF4d0824e15e8390d4637/info.json b/blockchains/ethereum/assets/0x821144518dfE9e7b44fCF4d0824e15e8390d4637/info.json new file mode 100644 index 00000000..99bf289e --- /dev/null +++ b/blockchains/ethereum/assets/0x821144518dfE9e7b44fCF4d0824e15e8390d4637/info.json @@ -0,0 +1,11 @@ +{ + "name": "ATIS Token", + "symbol": "ATIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x821144518dfE9e7b44fCF4d0824e15e8390d4637", + "status": "abandoned", + "id": "0x821144518dfE9e7b44fCF4d0824e15e8390d4637" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x821144518dfE9e7b44fCF4d0824e15e8390d4637/logo.png b/blockchains/ethereum/assets/0x821144518dfE9e7b44fCF4d0824e15e8390d4637/logo.png new file mode 100644 index 00000000..bffadf20 Binary files /dev/null and b/blockchains/ethereum/assets/0x821144518dfE9e7b44fCF4d0824e15e8390d4637/logo.png differ diff --git a/blockchains/ethereum/assets/0x82125AFe01819Dff1535D0D6276d57045291B6c0/info.json b/blockchains/ethereum/assets/0x82125AFe01819Dff1535D0D6276d57045291B6c0/info.json new file mode 100644 index 00000000..1edac63f --- /dev/null +++ b/blockchains/ethereum/assets/0x82125AFe01819Dff1535D0D6276d57045291B6c0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Marcelo", + "symbol": "MRL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.marcelo-mrl.com", + "explorer": "https://etherscan.io/token/0x82125AFe01819Dff1535D0D6276d57045291B6c0", + "status": "abandoned", + "id": "0x82125AFe01819Dff1535D0D6276d57045291B6c0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x82125AFe01819Dff1535D0D6276d57045291B6c0/logo.png b/blockchains/ethereum/assets/0x82125AFe01819Dff1535D0D6276d57045291B6c0/logo.png new file mode 100755 index 00000000..69eccca0 Binary files /dev/null and b/blockchains/ethereum/assets/0x82125AFe01819Dff1535D0D6276d57045291B6c0/logo.png differ diff --git a/blockchains/ethereum/assets/0x82248D53De2B7608cAF53978A8E8C238DC42403a/info.json b/blockchains/ethereum/assets/0x82248D53De2B7608cAF53978A8E8C238DC42403a/info.json new file mode 100644 index 00000000..8728dac3 --- /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 00000000..a116db52 --- /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 00000000..b338a948 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 00000000..cb4eb981 --- /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 00000000..dd84efef Binary files /dev/null and b/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/logo.png differ diff --git a/blockchains/ethereum/assets/0x825130Aa1bEeF07BdF4f389705321816D05b0d0f/info.json b/blockchains/ethereum/assets/0x825130Aa1bEeF07BdF4f389705321816D05b0d0f/info.json new file mode 100644 index 00000000..74e98159 --- /dev/null +++ b/blockchains/ethereum/assets/0x825130Aa1bEeF07BdF4f389705321816D05b0d0f/info.json @@ -0,0 +1,11 @@ +{ + "name": "UNII", + "symbol": "UNII", + "type": "ERC20", + "decimals": 18, + "description": "Unii.finance is a project whereby a group of Uniswap users are trying to unite the many small UNI token holders (to get 10M UNI staked in order to be eligible to vote on Uniswap's proposal) or deal with potential problems in the automated market maker's (AMM) governance.", + "website": "https://unii.finance/", + "explorer": "https://etherscan.io/token/0x825130Aa1bEeF07BdF4f389705321816D05b0d0f", + "status": "active", + "id": "0x825130Aa1bEeF07BdF4f389705321816D05b0d0f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x825130Aa1bEeF07BdF4f389705321816D05b0d0f/logo.png b/blockchains/ethereum/assets/0x825130Aa1bEeF07BdF4f389705321816D05b0d0f/logo.png new file mode 100644 index 00000000..34706e42 Binary files /dev/null and b/blockchains/ethereum/assets/0x825130Aa1bEeF07BdF4f389705321816D05b0d0f/logo.png differ diff --git a/blockchains/ethereum/assets/0x825459139C897D769339f295E962396C4F9E4A4D/info.json b/blockchains/ethereum/assets/0x825459139C897D769339f295E962396C4F9E4A4D/info.json new file mode 100644 index 00000000..eac040f2 --- /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 00000000..b19ce5f6 Binary files /dev/null and b/blockchains/ethereum/assets/0x825459139C897D769339f295E962396C4F9E4A4D/logo.png differ diff --git a/blockchains/ethereum/assets/0x825fA76e912B3Ffd272DFDcEe1bc74c3eB79534F/info.json b/blockchains/ethereum/assets/0x825fA76e912B3Ffd272DFDcEe1bc74c3eB79534F/info.json new file mode 100644 index 00000000..0988d951 --- /dev/null +++ b/blockchains/ethereum/assets/0x825fA76e912B3Ffd272DFDcEe1bc74c3eB79534F/info.json @@ -0,0 +1,11 @@ +{ + "name": "TradeMyCoin", + "symbol": "TMYC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x825fA76e912B3Ffd272DFDcEe1bc74c3eB79534F", + "status": "abandoned", + "id": "0x825fA76e912B3Ffd272DFDcEe1bc74c3eB79534F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x825fA76e912B3Ffd272DFDcEe1bc74c3eB79534F/logo.png b/blockchains/ethereum/assets/0x825fA76e912B3Ffd272DFDcEe1bc74c3eB79534F/logo.png new file mode 100755 index 00000000..5ead815e Binary files /dev/null and b/blockchains/ethereum/assets/0x825fA76e912B3Ffd272DFDcEe1bc74c3eB79534F/logo.png differ diff --git a/blockchains/ethereum/assets/0x826180541412D574cf1336d22c0C0a287822678A/info.json b/blockchains/ethereum/assets/0x826180541412D574cf1336d22c0C0a287822678A/info.json new file mode 100644 index 00000000..5cbf4b90 --- /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 00000000..d7d745ca Binary files /dev/null and b/blockchains/ethereum/assets/0x826180541412D574cf1336d22c0C0a287822678A/logo.png differ diff --git a/blockchains/ethereum/assets/0x82622209cEf6EBf4b8BDB353a8FC7e0b8655D0b0/info.json b/blockchains/ethereum/assets/0x82622209cEf6EBf4b8BDB353a8FC7e0b8655D0b0/info.json new file mode 100644 index 00000000..81016314 --- /dev/null +++ b/blockchains/ethereum/assets/0x82622209cEf6EBf4b8BDB353a8FC7e0b8655D0b0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nuclear Bomb", + "symbol": "NB", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://nuclearbomb.io/", + "explorer": "https://etherscan.io/token/0x82622209cEf6EBf4b8BDB353a8FC7e0b8655D0b0", + "status": "abandoned", + "id": "0x82622209cEf6EBf4b8BDB353a8FC7e0b8655D0b0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x82622209cEf6EBf4b8BDB353a8FC7e0b8655D0b0/logo.png b/blockchains/ethereum/assets/0x82622209cEf6EBf4b8BDB353a8FC7e0b8655D0b0/logo.png new file mode 100644 index 00000000..226c7ae5 Binary files /dev/null and b/blockchains/ethereum/assets/0x82622209cEf6EBf4b8BDB353a8FC7e0b8655D0b0/logo.png differ diff --git a/blockchains/ethereum/assets/0x8266897D3044A030f1FCa81F18c9Ad2DaF9e5f09/info.json b/blockchains/ethereum/assets/0x8266897D3044A030f1FCa81F18c9Ad2DaF9e5f09/info.json new file mode 100644 index 00000000..cbecb48a --- /dev/null +++ b/blockchains/ethereum/assets/0x8266897D3044A030f1FCa81F18c9Ad2DaF9e5f09/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETHEREUMtoken", + "symbol": "ETHt", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8266897D3044A030f1FCa81F18c9Ad2DaF9e5f09", + "status": "abandoned", + "id": "0x8266897D3044A030f1FCa81F18c9Ad2DaF9e5f09" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8266897D3044A030f1FCa81F18c9Ad2DaF9e5f09/logo.png b/blockchains/ethereum/assets/0x8266897D3044A030f1FCa81F18c9Ad2DaF9e5f09/logo.png new file mode 100644 index 00000000..4ec57e1a Binary files /dev/null and b/blockchains/ethereum/assets/0x8266897D3044A030f1FCa81F18c9Ad2DaF9e5f09/logo.png differ diff --git a/blockchains/ethereum/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/info.json b/blockchains/ethereum/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/info.json new file mode 100644 index 00000000..19908c0e --- /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 00000000..6eaf751e Binary files /dev/null and b/blockchains/ethereum/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/logo.png differ diff --git a/blockchains/ethereum/assets/0x8275eBF521Dc217aa79C88132017A5BCEf001dd9/info.json b/blockchains/ethereum/assets/0x8275eBF521Dc217aa79C88132017A5BCEf001dd9/info.json new file mode 100644 index 00000000..938d6e59 --- /dev/null +++ b/blockchains/ethereum/assets/0x8275eBF521Dc217aa79C88132017A5BCEf001dd9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jewel", + "symbol": "JWL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://jewelpay.org/", + "explorer": "https://etherscan.io/token/0x8275eBF521Dc217aa79C88132017A5BCEf001dd9", + "status": "abandoned", + "id": "0x8275eBF521Dc217aa79C88132017A5BCEf001dd9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8275eBF521Dc217aa79C88132017A5BCEf001dd9/logo.png b/blockchains/ethereum/assets/0x8275eBF521Dc217aa79C88132017A5BCEf001dd9/logo.png new file mode 100644 index 00000000..f7a29ea7 Binary files /dev/null and b/blockchains/ethereum/assets/0x8275eBF521Dc217aa79C88132017A5BCEf001dd9/logo.png differ diff --git a/blockchains/ethereum/assets/0x8276ad69acdAacB17f981B780FDEF80b95f7e764/info.json b/blockchains/ethereum/assets/0x8276ad69acdAacB17f981B780FDEF80b95f7e764/info.json new file mode 100644 index 00000000..c7c0518d --- /dev/null +++ b/blockchains/ethereum/assets/0x8276ad69acdAacB17f981B780FDEF80b95f7e764/info.json @@ -0,0 +1,11 @@ +{ + "name": "PROMETEO", + "symbol": "PPT7", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8276ad69acdAacB17f981B780FDEF80b95f7e764", + "status": "abandoned", + "id": "0x8276ad69acdAacB17f981B780FDEF80b95f7e764" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8276ad69acdAacB17f981B780FDEF80b95f7e764/logo.png b/blockchains/ethereum/assets/0x8276ad69acdAacB17f981B780FDEF80b95f7e764/logo.png new file mode 100644 index 00000000..34481e8a Binary files /dev/null and b/blockchains/ethereum/assets/0x8276ad69acdAacB17f981B780FDEF80b95f7e764/logo.png differ diff --git a/blockchains/ethereum/assets/0x827D53c8170aF52625f414bde00326Fc8A085E86/info.json b/blockchains/ethereum/assets/0x827D53c8170aF52625f414bde00326Fc8A085E86/info.json new file mode 100644 index 00000000..d7f72f7e --- /dev/null +++ b/blockchains/ethereum/assets/0x827D53c8170aF52625f414bde00326Fc8A085E86/info.json @@ -0,0 +1,11 @@ +{ + "name": "Beaxy Token", + "symbol": "BXY", + "type": "ERC20", + "decimals": 18, + "description": "BXY is an exchange utility token that powers the Beaxy Exchange platform. It can be used to increase user levels, reduce fees, and access new tools & features.", + "website": "https://beaxy.com/", + "explorer": "https://etherscan.io/token/0x827D53c8170aF52625f414bde00326Fc8A085E86", + "status": "active", + "id": "0x827D53c8170aF52625f414bde00326Fc8A085E86" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x827D53c8170aF52625f414bde00326Fc8A085E86/logo.png b/blockchains/ethereum/assets/0x827D53c8170aF52625f414bde00326Fc8A085E86/logo.png new file mode 100644 index 00000000..359f5d41 Binary files /dev/null and b/blockchains/ethereum/assets/0x827D53c8170aF52625f414bde00326Fc8A085E86/logo.png differ diff --git a/blockchains/ethereum/assets/0x827Fe1736CEe36F7737Be6cF502434aF294Cf137/info.json b/blockchains/ethereum/assets/0x827Fe1736CEe36F7737Be6cF502434aF294Cf137/info.json new file mode 100644 index 00000000..51e106be --- /dev/null +++ b/blockchains/ethereum/assets/0x827Fe1736CEe36F7737Be6cF502434aF294Cf137/info.json @@ -0,0 +1,11 @@ +{ + "name": "Africa Digital Coin", + "symbol": "ADC$", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x827Fe1736CEe36F7737Be6cF502434aF294Cf137", + "status": "abandoned", + "id": "0x827Fe1736CEe36F7737Be6cF502434aF294Cf137" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x827Fe1736CEe36F7737Be6cF502434aF294Cf137/logo.png b/blockchains/ethereum/assets/0x827Fe1736CEe36F7737Be6cF502434aF294Cf137/logo.png new file mode 100644 index 00000000..af33013a Binary files /dev/null and b/blockchains/ethereum/assets/0x827Fe1736CEe36F7737Be6cF502434aF294Cf137/logo.png differ diff --git a/blockchains/ethereum/assets/0x82866b4A71BA9d930Fe338C386B6A45a7133eb36/info.json b/blockchains/ethereum/assets/0x82866b4A71BA9d930Fe338C386B6A45a7133eb36/info.json new file mode 100644 index 00000000..a2695744 --- /dev/null +++ b/blockchains/ethereum/assets/0x82866b4A71BA9d930Fe338C386B6A45a7133eb36/info.json @@ -0,0 +1,25 @@ +{ + "name": "QCORE.FINANCE", + "website": "https://qcore.finance/", + "description": "QCORE.FINANCE controlled and rewarded with QCORE governance tokens.", + "explorer": "https://etherscan.io/token/0x82866b4A71BA9d930Fe338C386B6A45a7133eb36", + "type": "ERC20", + "symbol": "QCORE", + "decimals": 9, + "status": "active", + "id": "0x82866b4A71BA9d930Fe338C386B6A45a7133eb36", + "links": [ + { + "name": "github", + "url": "https://github.com/qcore-finance" + }, + { + "name": "x", + "url": "https://x.com/qcore_finance" + }, + { + "name": "telegram", + "url": "https://t.me/qcore_finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x82866b4A71BA9d930Fe338C386B6A45a7133eb36/logo.png b/blockchains/ethereum/assets/0x82866b4A71BA9d930Fe338C386B6A45a7133eb36/logo.png new file mode 100644 index 00000000..b6757722 Binary files /dev/null and b/blockchains/ethereum/assets/0x82866b4A71BA9d930Fe338C386B6A45a7133eb36/logo.png differ diff --git a/blockchains/ethereum/assets/0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4/info.json b/blockchains/ethereum/assets/0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4/info.json new file mode 100644 index 00000000..2c2e6bcd --- /dev/null +++ b/blockchains/ethereum/assets/0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4/info.json @@ -0,0 +1,33 @@ +{ + "name": "Ankr", + "website": "https://ankr.com", + "description": "Ankr is building an infrastructure platform and marketplace for Web3-stack deployment.", + "explorer": "https://etherscan.io/token/0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4", + "research": "https://research.binance.com/en/projects/ankr-network", + "type": "ERC20", + "symbol": "ANKR", + "decimals": 18, + "status": "active", + "id": "0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4", + "tags": [ + "defi" + ], + "links": [ + { + "name": "blog", + "url": "https://medium.com/ankr-network" + }, + { + "name": "x", + "url": "https://x.com/ankrnetwork?lang=en" + }, + { + "name": "telegram", + "url": "https://t.me/ankrnetwork" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ankr/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4/logo.png b/blockchains/ethereum/assets/0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4/logo.png new file mode 100644 index 00000000..0dc71392 Binary files /dev/null and b/blockchains/ethereum/assets/0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4/logo.png differ diff --git a/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/info.json b/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/info.json new file mode 100644 index 00000000..1f9e4e84 --- /dev/null +++ b/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/info.json @@ -0,0 +1,40 @@ +{ + "name": "Stable UNI", + "website": "app.ichi.org", + "description": "oneUNI is an ICHI-created stablecoin for Uniswap.", + "explorer": "https://etherscan.io/token/0x8290d7a64f25e6b5002d98367e8367c1b532b534", + "type": "ERC20", + "symbol": "oneUNI", + "decimals": 18, + "status": "active", + "id": "0x8290D7a64F25e6b5002d98367E8367c1b532b534", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm/ichi-oneToken" + }, + { + "name": "x", + "url": "https://x.com/ichifarm" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + }, + { + "name": "discord", + "url": "https://discord.com/invite/DvsYCfK8" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/stable-uni" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/logo.png b/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/logo.png new file mode 100644 index 00000000..d5720aa5 Binary files /dev/null and b/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/logo.png differ diff --git a/blockchains/ethereum/assets/0x8293bBd92C42608B20af588620a76128A33e4De9/info.json b/blockchains/ethereum/assets/0x8293bBd92C42608B20af588620a76128A33e4De9/info.json new file mode 100644 index 00000000..99ec6ad5 --- /dev/null +++ b/blockchains/ethereum/assets/0x8293bBd92C42608B20af588620a76128A33e4De9/info.json @@ -0,0 +1,11 @@ +{ + "name": "CATCOIN", + "symbol": "CATS", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8293bBd92C42608B20af588620a76128A33e4De9", + "status": "abandoned", + "id": "0x8293bBd92C42608B20af588620a76128A33e4De9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8293bBd92C42608B20af588620a76128A33e4De9/logo.png b/blockchains/ethereum/assets/0x8293bBd92C42608B20af588620a76128A33e4De9/logo.png new file mode 100644 index 00000000..02c0efb9 Binary files /dev/null and b/blockchains/ethereum/assets/0x8293bBd92C42608B20af588620a76128A33e4De9/logo.png differ diff --git a/blockchains/ethereum/assets/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/info.json b/blockchains/ethereum/assets/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/info.json new file mode 100644 index 00000000..9e1695b5 --- /dev/null +++ b/blockchains/ethereum/assets/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/info.json @@ -0,0 +1,32 @@ +{ + "name": "Mine Network", + "type": "ERC20", + "symbol": "MNET", + "decimals": 18, + "website": "https://mine.network/", + "description": "MINE Network is an innovative cross-chain mining Metaverse solution that seamlessly connects the worlds of DeFi, GameFi and NFT's into one consolidated, easy-to-use open-source protocol.", + "explorer": "https://etherscan.io/token/0x829c97092c0cc92efe7397dd3ddb831cc5835bae", + "status": "active", + "id": "0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae", + "links": [ + { + "name": "x", + "url": "https://x.com/mine_blockchain" + }, + { + "name": "github", + "url": "https://github.com/Mine-Blockchain" + }, + { + "name": "telegram", + "url": "https://t.me/mine_blockchain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mine-network/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/logo.png b/blockchains/ethereum/assets/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/logo.png new file mode 100644 index 00000000..1805ec23 Binary files /dev/null and b/blockchains/ethereum/assets/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/logo.png differ diff --git a/blockchains/ethereum/assets/0x829FC6B9CCEC9FBd5534E40B2181556C2a791896/info.json b/blockchains/ethereum/assets/0x829FC6B9CCEC9FBd5534E40B2181556C2a791896/info.json new file mode 100644 index 00000000..a3c6b556 --- /dev/null +++ b/blockchains/ethereum/assets/0x829FC6B9CCEC9FBd5534E40B2181556C2a791896/info.json @@ -0,0 +1,11 @@ +{ + "name": "GEO Rewards", + "symbol": "GEO", + "type": "ERC20", + "decimals": 7, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x829FC6B9CCEC9FBd5534E40B2181556C2a791896", + "status": "abandoned", + "id": "0x829FC6B9CCEC9FBd5534E40B2181556C2a791896" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x829FC6B9CCEC9FBd5534E40B2181556C2a791896/logo.png b/blockchains/ethereum/assets/0x829FC6B9CCEC9FBd5534E40B2181556C2a791896/logo.png new file mode 100644 index 00000000..d17dd477 Binary files /dev/null and b/blockchains/ethereum/assets/0x829FC6B9CCEC9FBd5534E40B2181556C2a791896/logo.png differ diff --git a/blockchains/ethereum/assets/0x82Cf44bE0768A3600c4BDeA58607783A3A7c51AE/info.json b/blockchains/ethereum/assets/0x82Cf44bE0768A3600c4BDeA58607783A3A7c51AE/info.json new file mode 100644 index 00000000..3010e779 --- /dev/null +++ b/blockchains/ethereum/assets/0x82Cf44bE0768A3600c4BDeA58607783A3A7c51AE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fountain", + "symbol": "FTN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x82Cf44bE0768A3600c4BDeA58607783A3A7c51AE", + "status": "abandoned", + "id": "0x82Cf44bE0768A3600c4BDeA58607783A3A7c51AE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x82Cf44bE0768A3600c4BDeA58607783A3A7c51AE/logo.png b/blockchains/ethereum/assets/0x82Cf44bE0768A3600c4BDeA58607783A3A7c51AE/logo.png new file mode 100644 index 00000000..46feac3b Binary files /dev/null and b/blockchains/ethereum/assets/0x82Cf44bE0768A3600c4BDeA58607783A3A7c51AE/logo.png differ diff --git a/blockchains/ethereum/assets/0x82D5683F6d32D19B3b34FCfBC7041f43a3Faf228/info.json b/blockchains/ethereum/assets/0x82D5683F6d32D19B3b34FCfBC7041f43a3Faf228/info.json new file mode 100644 index 00000000..e744cd1e --- /dev/null +++ b/blockchains/ethereum/assets/0x82D5683F6d32D19B3b34FCfBC7041f43a3Faf228/info.json @@ -0,0 +1,11 @@ +{ + "name": "Catnero", + "symbol": "CTO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x82D5683F6d32D19B3b34FCfBC7041f43a3Faf228", + "status": "abandoned", + "id": "0x82D5683F6d32D19B3b34FCfBC7041f43a3Faf228" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x82D5683F6d32D19B3b34FCfBC7041f43a3Faf228/logo.png b/blockchains/ethereum/assets/0x82D5683F6d32D19B3b34FCfBC7041f43a3Faf228/logo.png new file mode 100644 index 00000000..3bfda545 Binary files /dev/null and b/blockchains/ethereum/assets/0x82D5683F6d32D19B3b34FCfBC7041f43a3Faf228/logo.png differ diff --git a/blockchains/ethereum/assets/0x82E5aeC4e37b37FCA34925C13429506209A98536/info.json b/blockchains/ethereum/assets/0x82E5aeC4e37b37FCA34925C13429506209A98536/info.json new file mode 100644 index 00000000..7b5d9f98 --- /dev/null +++ b/blockchains/ethereum/assets/0x82E5aeC4e37b37FCA34925C13429506209A98536/info.json @@ -0,0 +1,11 @@ +{ + "name": "Taconomics Liquidity", + "symbol": "SALSA", + "type": "ERC20", + "decimals": 18, + "description": "SALSA is the liquidity pool token for the Taconomics platform and the TACO token. Taconomics claims to be an NFT plaform for aspiring latino artists creating Taco related art.", + "website": "https://www.taconomics.io", + "explorer": "https://etherscan.io/token/0x82E5aeC4e37b37FCA34925C13429506209A98536", + "status": "abandoned", + "id": "0x82E5aeC4e37b37FCA34925C13429506209A98536" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x82Ef11f04Bc3cb863373aDdf5558dbc01d8F9b9b/info.json b/blockchains/ethereum/assets/0x82Ef11f04Bc3cb863373aDdf5558dbc01d8F9b9b/info.json new file mode 100644 index 00000000..cac3b4be --- /dev/null +++ b/blockchains/ethereum/assets/0x82Ef11f04Bc3cb863373aDdf5558dbc01d8F9b9b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Halloween", + "website": "https://halloween.airsite.co", + "description": "Halloween token was meant to store and tokenize every horrible event ever documented on the interne. 60% of all annual sales Will be donatated to peoples and countries living in fear through charity ororganizations.", + "explorer": "https://etherscan.io/token/0x82Ef11f04Bc3cb863373aDdf5558dbc01d8F9b9b", + "type": "ERC20", + "symbol": "horor", + "decimals": 18, + "status": "active", + "id": "0x82Ef11f04Bc3cb863373aDdf5558dbc01d8F9b9b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x82Ef11f04Bc3cb863373aDdf5558dbc01d8F9b9b/logo.png b/blockchains/ethereum/assets/0x82Ef11f04Bc3cb863373aDdf5558dbc01d8F9b9b/logo.png new file mode 100644 index 00000000..7f1b3e80 Binary files /dev/null and b/blockchains/ethereum/assets/0x82Ef11f04Bc3cb863373aDdf5558dbc01d8F9b9b/logo.png differ diff --git a/blockchains/ethereum/assets/0x82b0E50478eeaFde392D45D1259Ed1071B6fDa81/info.json b/blockchains/ethereum/assets/0x82b0E50478eeaFde392D45D1259Ed1071B6fDa81/info.json new file mode 100644 index 00000000..eb0a0510 --- /dev/null +++ b/blockchains/ethereum/assets/0x82b0E50478eeaFde392D45D1259Ed1071B6fDa81/info.json @@ -0,0 +1,11 @@ +{ + "name": "EncrypGen (old)", + "symbol": "DNA2017", + "type": "ERC20", + "decimals": 18, + "description": "This token has been deprecated and replaced with contract address 0xef6344de1fcfC5F48c30234C16c1389e8CdC572C", + "website": "https://encrypgen.com", + "explorer": "https://etherscan.io/token/0x82b0E50478eeaFde392D45D1259Ed1071B6fDa81", + "status": "abandoned", + "id": "0x82b0E50478eeaFde392D45D1259Ed1071B6fDa81" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x82b0E50478eeaFde392D45D1259Ed1071B6fDa81/logo.png b/blockchains/ethereum/assets/0x82b0E50478eeaFde392D45D1259Ed1071B6fDa81/logo.png new file mode 100644 index 00000000..d445ca0a Binary files /dev/null and b/blockchains/ethereum/assets/0x82b0E50478eeaFde392D45D1259Ed1071B6fDa81/logo.png differ diff --git a/blockchains/ethereum/assets/0x82b5B44Ed4f9A9f846F204a9ABed058D3D796B5B/info.json b/blockchains/ethereum/assets/0x82b5B44Ed4f9A9f846F204a9ABed058D3D796B5B/info.json new file mode 100644 index 00000000..e68587b9 --- /dev/null +++ b/blockchains/ethereum/assets/0x82b5B44Ed4f9A9f846F204a9ABed058D3D796B5B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planetagro-Exchange", + "symbol": "TOMATOE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x82b5B44Ed4f9A9f846F204a9ABed058D3D796B5B", + "status": "abandoned", + "id": "0x82b5B44Ed4f9A9f846F204a9ABed058D3D796B5B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x82b5B44Ed4f9A9f846F204a9ABed058D3D796B5B/logo.png b/blockchains/ethereum/assets/0x82b5B44Ed4f9A9f846F204a9ABed058D3D796B5B/logo.png new file mode 100755 index 00000000..4e77b9cb Binary files /dev/null and b/blockchains/ethereum/assets/0x82b5B44Ed4f9A9f846F204a9ABed058D3D796B5B/logo.png differ diff --git a/blockchains/ethereum/assets/0x82b9eB75D6E8E6b4A296cF8FDE9A7c23Ee4B89eC/info.json b/blockchains/ethereum/assets/0x82b9eB75D6E8E6b4A296cF8FDE9A7c23Ee4B89eC/info.json new file mode 100644 index 00000000..32b3d0f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x82b9eB75D6E8E6b4A296cF8FDE9A7c23Ee4B89eC/info.json @@ -0,0 +1,11 @@ +{ + "name": "OMNIS-BIT", + "symbol": "OMNIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x82b9eB75D6E8E6b4A296cF8FDE9A7c23Ee4B89eC", + "status": "abandoned", + "id": "0x82b9eB75D6E8E6b4A296cF8FDE9A7c23Ee4B89eC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x82b9eB75D6E8E6b4A296cF8FDE9A7c23Ee4B89eC/logo.png b/blockchains/ethereum/assets/0x82b9eB75D6E8E6b4A296cF8FDE9A7c23Ee4B89eC/logo.png new file mode 100755 index 00000000..2d3dc7d5 Binary files /dev/null and b/blockchains/ethereum/assets/0x82b9eB75D6E8E6b4A296cF8FDE9A7c23Ee4B89eC/logo.png differ diff --git a/blockchains/ethereum/assets/0x82bdfb4C6F488fC47700ceF12C448a2F13F8fF4F/info.json b/blockchains/ethereum/assets/0x82bdfb4C6F488fC47700ceF12C448a2F13F8fF4F/info.json new file mode 100644 index 00000000..62b915fc --- /dev/null +++ b/blockchains/ethereum/assets/0x82bdfb4C6F488fC47700ceF12C448a2F13F8fF4F/info.json @@ -0,0 +1,11 @@ +{ + "name": "SealBlock Token", + "symbol": "SKT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://sealblock.io/", + "explorer": "https://etherscan.io/token/0x82bdfb4C6F488fC47700ceF12C448a2F13F8fF4F", + "status": "abandoned", + "id": "0x82bdfb4C6F488fC47700ceF12C448a2F13F8fF4F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x82bdfb4C6F488fC47700ceF12C448a2F13F8fF4F/logo.png b/blockchains/ethereum/assets/0x82bdfb4C6F488fC47700ceF12C448a2F13F8fF4F/logo.png new file mode 100644 index 00000000..851e802d Binary files /dev/null and b/blockchains/ethereum/assets/0x82bdfb4C6F488fC47700ceF12C448a2F13F8fF4F/logo.png differ diff --git a/blockchains/ethereum/assets/0x82e5497347eC3d9a98632b7d5A844b645F0bA8c6/info.json b/blockchains/ethereum/assets/0x82e5497347eC3d9a98632b7d5A844b645F0bA8c6/info.json new file mode 100644 index 00000000..9385af96 --- /dev/null +++ b/blockchains/ethereum/assets/0x82e5497347eC3d9a98632b7d5A844b645F0bA8c6/info.json @@ -0,0 +1,11 @@ +{ + "name": "RESCALTA", + "symbol": "RES", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x82e5497347eC3d9a98632b7d5A844b645F0bA8c6", + "status": "abandoned", + "id": "0x82e5497347eC3d9a98632b7d5A844b645F0bA8c6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x82e5497347eC3d9a98632b7d5A844b645F0bA8c6/logo.png b/blockchains/ethereum/assets/0x82e5497347eC3d9a98632b7d5A844b645F0bA8c6/logo.png new file mode 100644 index 00000000..261b50f4 Binary files /dev/null and b/blockchains/ethereum/assets/0x82e5497347eC3d9a98632b7d5A844b645F0bA8c6/logo.png differ diff --git a/blockchains/ethereum/assets/0x82f4dED9Cec9B5750FBFf5C2185AEe35AfC16587/info.json b/blockchains/ethereum/assets/0x82f4dED9Cec9B5750FBFf5C2185AEe35AfC16587/info.json new file mode 100644 index 00000000..6cfd50e6 --- /dev/null +++ b/blockchains/ethereum/assets/0x82f4dED9Cec9B5750FBFf5C2185AEe35AfC16587/info.json @@ -0,0 +1,11 @@ +{ + "name": "DreamTeam Token", + "symbol": "DREAM", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://token.dreamteam.gg", + "explorer": "https://etherscan.io/token/0x82f4dED9Cec9B5750FBFf5C2185AEe35AfC16587", + "status": "abandoned", + "id": "0x82f4dED9Cec9B5750FBFf5C2185AEe35AfC16587" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x82f4dED9Cec9B5750FBFf5C2185AEe35AfC16587/logo.png b/blockchains/ethereum/assets/0x82f4dED9Cec9B5750FBFf5C2185AEe35AfC16587/logo.png new file mode 100644 index 00000000..64da8542 Binary files /dev/null and b/blockchains/ethereum/assets/0x82f4dED9Cec9B5750FBFf5C2185AEe35AfC16587/logo.png differ diff --git a/blockchains/ethereum/assets/0x82fdedfB7635441aA5A92791D001fA7388da8025/info.json b/blockchains/ethereum/assets/0x82fdedfB7635441aA5A92791D001fA7388da8025/info.json new file mode 100644 index 00000000..718c0614 --- /dev/null +++ b/blockchains/ethereum/assets/0x82fdedfB7635441aA5A92791D001fA7388da8025/info.json @@ -0,0 +1,11 @@ +{ + "name": "DigitalTicks", + "symbol": "DTX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.digitalticks.com/", + "explorer": "https://etherscan.io/token/0x82fdedfB7635441aA5A92791D001fA7388da8025", + "status": "abandoned", + "id": "0x82fdedfB7635441aA5A92791D001fA7388da8025" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x82fdedfB7635441aA5A92791D001fA7388da8025/logo.png b/blockchains/ethereum/assets/0x82fdedfB7635441aA5A92791D001fA7388da8025/logo.png new file mode 100755 index 00000000..ac10d7b2 Binary files /dev/null and b/blockchains/ethereum/assets/0x82fdedfB7635441aA5A92791D001fA7388da8025/logo.png differ diff --git a/blockchains/ethereum/assets/0x8317b216D7c3F9a5B8401E4b6814D13A7BE390ec/info.json b/blockchains/ethereum/assets/0x8317b216D7c3F9a5B8401E4b6814D13A7BE390ec/info.json new file mode 100644 index 00000000..06ded496 --- /dev/null +++ b/blockchains/ethereum/assets/0x8317b216D7c3F9a5B8401E4b6814D13A7BE390ec/info.json @@ -0,0 +1,11 @@ +{ + "name": "EXNCE", + "symbol": "XNC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.exnce.com/", + "explorer": "https://etherscan.io/token/0x8317b216D7c3F9a5B8401E4b6814D13A7BE390ec", + "status": "abandoned", + "id": "0x8317b216D7c3F9a5B8401E4b6814D13A7BE390ec" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8317b216D7c3F9a5B8401E4b6814D13A7BE390ec/logo.png b/blockchains/ethereum/assets/0x8317b216D7c3F9a5B8401E4b6814D13A7BE390ec/logo.png new file mode 100644 index 00000000..2cf328dc Binary files /dev/null and b/blockchains/ethereum/assets/0x8317b216D7c3F9a5B8401E4b6814D13A7BE390ec/logo.png differ diff --git a/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/info.json b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/info.json new file mode 100644 index 00000000..00b4c559 --- /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 00000000..2f9cdfc5 Binary files /dev/null and b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/logo.png differ diff --git a/blockchains/ethereum/assets/0x832904863978b94802123106e6eB491BDF0Df928/info.json b/blockchains/ethereum/assets/0x832904863978b94802123106e6eB491BDF0Df928/info.json new file mode 100644 index 00000000..b750b80f --- /dev/null +++ b/blockchains/ethereum/assets/0x832904863978b94802123106e6eB491BDF0Df928/info.json @@ -0,0 +1,11 @@ +{ + "name": "OptiToken", + "symbol": "OPTI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://optitoken.io/", + "explorer": "https://etherscan.io/token/0x832904863978b94802123106e6eB491BDF0Df928", + "status": "abandoned", + "id": "0x832904863978b94802123106e6eB491BDF0Df928" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x832904863978b94802123106e6eB491BDF0Df928/logo.png b/blockchains/ethereum/assets/0x832904863978b94802123106e6eB491BDF0Df928/logo.png new file mode 100644 index 00000000..96fffbf9 Binary files /dev/null and b/blockchains/ethereum/assets/0x832904863978b94802123106e6eB491BDF0Df928/logo.png differ diff --git a/blockchains/ethereum/assets/0x832eC40433B457028A1D27434f3B9FdF81aaecbE/info.json b/blockchains/ethereum/assets/0x832eC40433B457028A1D27434f3B9FdF81aaecbE/info.json new file mode 100644 index 00000000..444a37ba --- /dev/null +++ b/blockchains/ethereum/assets/0x832eC40433B457028A1D27434f3B9FdF81aaecbE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Grow Token", + "symbol": "GRWT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x832eC40433B457028A1D27434f3B9FdF81aaecbE", + "status": "abandoned", + "id": "0x832eC40433B457028A1D27434f3B9FdF81aaecbE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x832eC40433B457028A1D27434f3B9FdF81aaecbE/logo.png b/blockchains/ethereum/assets/0x832eC40433B457028A1D27434f3B9FdF81aaecbE/logo.png new file mode 100755 index 00000000..37bfb7f5 Binary files /dev/null and b/blockchains/ethereum/assets/0x832eC40433B457028A1D27434f3B9FdF81aaecbE/logo.png differ diff --git a/blockchains/ethereum/assets/0x833E4c02c47B7e38f5b9A80b26eb07D23d1961f4/info.json b/blockchains/ethereum/assets/0x833E4c02c47B7e38f5b9A80b26eb07D23d1961f4/info.json new file mode 100644 index 00000000..f65fd775 --- /dev/null +++ b/blockchains/ethereum/assets/0x833E4c02c47B7e38f5b9A80b26eb07D23d1961f4/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Bitcoin Family", + "symbol": "FAMILY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x833E4c02c47B7e38f5b9A80b26eb07D23d1961f4", + "status": "abandoned", + "id": "0x833E4c02c47B7e38f5b9A80b26eb07D23d1961f4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x833E4c02c47B7e38f5b9A80b26eb07D23d1961f4/logo.png b/blockchains/ethereum/assets/0x833E4c02c47B7e38f5b9A80b26eb07D23d1961f4/logo.png new file mode 100644 index 00000000..f510f535 Binary files /dev/null and b/blockchains/ethereum/assets/0x833E4c02c47B7e38f5b9A80b26eb07D23d1961f4/logo.png differ diff --git a/blockchains/ethereum/assets/0x834625F5D8B006D70a6CaAEeF73C29442F156dAF/info.json b/blockchains/ethereum/assets/0x834625F5D8B006D70a6CaAEeF73C29442F156dAF/info.json new file mode 100644 index 00000000..517061dd --- /dev/null +++ b/blockchains/ethereum/assets/0x834625F5D8B006D70a6CaAEeF73C29442F156dAF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Instantily", + "symbol": "TILY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://instantily.com/", + "explorer": "https://etherscan.io/token/0x834625F5D8B006D70a6CaAEeF73C29442F156dAF", + "status": "abandoned", + "id": "0x834625F5D8B006D70a6CaAEeF73C29442F156dAF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x834625F5D8B006D70a6CaAEeF73C29442F156dAF/logo.png b/blockchains/ethereum/assets/0x834625F5D8B006D70a6CaAEeF73C29442F156dAF/logo.png new file mode 100644 index 00000000..cee9a3ea Binary files /dev/null and b/blockchains/ethereum/assets/0x834625F5D8B006D70a6CaAEeF73C29442F156dAF/logo.png differ diff --git a/blockchains/ethereum/assets/0x834Ae750d5E8119e6C60FB5F1D784f696517001b/info.json b/blockchains/ethereum/assets/0x834Ae750d5E8119e6C60FB5F1D784f696517001b/info.json new file mode 100644 index 00000000..d7037501 --- /dev/null +++ b/blockchains/ethereum/assets/0x834Ae750d5E8119e6C60FB5F1D784f696517001b/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C554790", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x834Ae750d5E8119e6C60FB5F1D784f696517001b", + "status": "abandoned", + "id": "0x834Ae750d5E8119e6C60FB5F1D784f696517001b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x834Ae750d5E8119e6C60FB5F1D784f696517001b/logo.png b/blockchains/ethereum/assets/0x834Ae750d5E8119e6C60FB5F1D784f696517001b/logo.png new file mode 100644 index 00000000..8132b131 Binary files /dev/null and b/blockchains/ethereum/assets/0x834Ae750d5E8119e6C60FB5F1D784f696517001b/logo.png differ diff --git a/blockchains/ethereum/assets/0x83519EC12329FC296573b8e95E62F01313D63cA4/info.json b/blockchains/ethereum/assets/0x83519EC12329FC296573b8e95E62F01313D63cA4/info.json new file mode 100644 index 00000000..e40e78d3 --- /dev/null +++ b/blockchains/ethereum/assets/0x83519EC12329FC296573b8e95E62F01313D63cA4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitchainnet", + "symbol": "BNCT", + "type": "ERC20", + "decimals": 16, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x83519EC12329FC296573b8e95E62F01313D63cA4", + "status": "abandoned", + "id": "0x83519EC12329FC296573b8e95E62F01313D63cA4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83519EC12329FC296573b8e95E62F01313D63cA4/logo.png b/blockchains/ethereum/assets/0x83519EC12329FC296573b8e95E62F01313D63cA4/logo.png new file mode 100644 index 00000000..123bb243 Binary files /dev/null and b/blockchains/ethereum/assets/0x83519EC12329FC296573b8e95E62F01313D63cA4/logo.png differ diff --git a/blockchains/ethereum/assets/0x835fb9077C2EEEB044E55725Cc4c6c00c4FF88E3/info.json b/blockchains/ethereum/assets/0x835fb9077C2EEEB044E55725Cc4c6c00c4FF88E3/info.json new file mode 100644 index 00000000..07b6d52c --- /dev/null +++ b/blockchains/ethereum/assets/0x835fb9077C2EEEB044E55725Cc4c6c00c4FF88E3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Whisky", + "symbol": "WHISKY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x835fb9077C2EEEB044E55725Cc4c6c00c4FF88E3", + "status": "abandoned", + "id": "0x835fb9077C2EEEB044E55725Cc4c6c00c4FF88E3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x835fb9077C2EEEB044E55725Cc4c6c00c4FF88E3/logo.png b/blockchains/ethereum/assets/0x835fb9077C2EEEB044E55725Cc4c6c00c4FF88E3/logo.png new file mode 100644 index 00000000..159967b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x835fb9077C2EEEB044E55725Cc4c6c00c4FF88E3/logo.png differ diff --git a/blockchains/ethereum/assets/0x8361C75a2A6e6Ec681F7e41BA9baf21396A1A3Bf/info.json b/blockchains/ethereum/assets/0x8361C75a2A6e6Ec681F7e41BA9baf21396A1A3Bf/info.json new file mode 100644 index 00000000..344abb3b --- /dev/null +++ b/blockchains/ethereum/assets/0x8361C75a2A6e6Ec681F7e41BA9baf21396A1A3Bf/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-1/30M61", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8361C75a2A6e6Ec681F7e41BA9baf21396A1A3Bf", + "status": "abandoned", + "id": "0x8361C75a2A6e6Ec681F7e41BA9baf21396A1A3Bf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8361C75a2A6e6Ec681F7e41BA9baf21396A1A3Bf/logo.png b/blockchains/ethereum/assets/0x8361C75a2A6e6Ec681F7e41BA9baf21396A1A3Bf/logo.png new file mode 100644 index 00000000..d1c3d77f Binary files /dev/null and b/blockchains/ethereum/assets/0x8361C75a2A6e6Ec681F7e41BA9baf21396A1A3Bf/logo.png differ diff --git a/blockchains/ethereum/assets/0x8377ee6d3545Bc6ff1425ee3015DC648B149C7B2/info.json b/blockchains/ethereum/assets/0x8377ee6d3545Bc6ff1425ee3015DC648B149C7B2/info.json new file mode 100644 index 00000000..dec75c22 --- /dev/null +++ b/blockchains/ethereum/assets/0x8377ee6d3545Bc6ff1425ee3015DC648B149C7B2/info.json @@ -0,0 +1,11 @@ +{ + "name": "ProChain", + "symbol": "PRO", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8377ee6d3545Bc6ff1425ee3015DC648B149C7B2", + "status": "abandoned", + "id": "0x8377ee6d3545Bc6ff1425ee3015DC648B149C7B2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8377ee6d3545Bc6ff1425ee3015DC648B149C7B2/logo.png b/blockchains/ethereum/assets/0x8377ee6d3545Bc6ff1425ee3015DC648B149C7B2/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x8377ee6d3545Bc6ff1425ee3015DC648B149C7B2/logo.png differ diff --git a/blockchains/ethereum/assets/0x83869DE76B9Ad8125e22b857f519F001588c0f62/info.json b/blockchains/ethereum/assets/0x83869DE76B9Ad8125e22b857f519F001588c0f62/info.json new file mode 100644 index 00000000..d407e9f5 --- /dev/null +++ b/blockchains/ethereum/assets/0x83869DE76B9Ad8125e22b857f519F001588c0f62/info.json @@ -0,0 +1,11 @@ +{ + "name": "EXMOCoin", + "symbol": "EXM", + "type": "ERC20", + "decimals": 8, + "description": "EXMO Coin is a utility token for the EXMO exchange's internal ecosystem.", + "website": "https://exmo.money", + "explorer": "https://etherscan.io/token/0x83869DE76B9Ad8125e22b857f519F001588c0f62", + "status": "active", + "id": "0x83869DE76B9Ad8125e22b857f519F001588c0f62" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83869DE76B9Ad8125e22b857f519F001588c0f62/logo.png b/blockchains/ethereum/assets/0x83869DE76B9Ad8125e22b857f519F001588c0f62/logo.png new file mode 100644 index 00000000..caa9c35b Binary files /dev/null and b/blockchains/ethereum/assets/0x83869DE76B9Ad8125e22b857f519F001588c0f62/logo.png differ diff --git a/blockchains/ethereum/assets/0x8387fE93abecaB50Cdf5be79A5f5BfcBAc90A2BE/info.json b/blockchains/ethereum/assets/0x8387fE93abecaB50Cdf5be79A5f5BfcBAc90A2BE/info.json new file mode 100644 index 00000000..e8c29bc8 --- /dev/null +++ b/blockchains/ethereum/assets/0x8387fE93abecaB50Cdf5be79A5f5BfcBAc90A2BE/info.json @@ -0,0 +1,11 @@ +{ + "name": "PACT Gold", + "symbol": "PACT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8387fE93abecaB50Cdf5be79A5f5BfcBAc90A2BE", + "status": "abandoned", + "id": "0x8387fE93abecaB50Cdf5be79A5f5BfcBAc90A2BE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8387fE93abecaB50Cdf5be79A5f5BfcBAc90A2BE/logo.png b/blockchains/ethereum/assets/0x8387fE93abecaB50Cdf5be79A5f5BfcBAc90A2BE/logo.png new file mode 100644 index 00000000..198094f8 Binary files /dev/null and b/blockchains/ethereum/assets/0x8387fE93abecaB50Cdf5be79A5f5BfcBAc90A2BE/logo.png differ diff --git a/blockchains/ethereum/assets/0x838d8e11B160deC88Fe62BF0f743FB7000941e13/info.json b/blockchains/ethereum/assets/0x838d8e11B160deC88Fe62BF0f743FB7000941e13/info.json new file mode 100644 index 00000000..860921d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x838d8e11B160deC88Fe62BF0f743FB7000941e13/info.json @@ -0,0 +1,33 @@ +{ + "name": "Krios/GIG", + "website": "https://krios.io/", + "description": "Krios is a platform that connects employers and freelancers in the next hire share economy. Many skilled individuals are turning to freelancing as a result of the freedom and flexibility that it brings. Krios enables employers looking to hire and freelancers searching for jobs to connect with one another. Sign up now to search for job opportunities and showcase your skills.", + "explorer": "https://etherscan.io/token/0x838d8e11B160deC88Fe62BF0f743FB7000941e13", + "type": "ERC20", + "symbol": "GIG", + "decimals": 18, + "status": "active", + "id": "0x838d8e11B160deC88Fe62BF0f743FB7000941e13", + "links": [ + { + "name": "github", + "url": "https://github.com/ethereum" + }, + { + "name": "x", + "url": "https://x.com/Krios" + }, + { + "name": "telegram", + "url": "https://t.me/KriosToken" + }, + { + "name": "facebook", + "url": "https://facebook.com/krios.io/" + }, + { + "name": "whitepaper", + "url": "https://krios-test.s3.amazonaws.com/image_1565724128958.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x838d8e11B160deC88Fe62BF0f743FB7000941e13/logo.png b/blockchains/ethereum/assets/0x838d8e11B160deC88Fe62BF0f743FB7000941e13/logo.png new file mode 100644 index 00000000..0396e691 Binary files /dev/null and b/blockchains/ethereum/assets/0x838d8e11B160deC88Fe62BF0f743FB7000941e13/logo.png differ diff --git a/blockchains/ethereum/assets/0x839078adA638AF8306c039221E408eE7bc4E3F7F/info.json b/blockchains/ethereum/assets/0x839078adA638AF8306c039221E408eE7bc4E3F7F/info.json new file mode 100644 index 00000000..f023f20b --- /dev/null +++ b/blockchains/ethereum/assets/0x839078adA638AF8306c039221E408eE7bc4E3F7F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Thursday Ninja", + "symbol": "THUR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x839078adA638AF8306c039221E408eE7bc4E3F7F", + "status": "abandoned", + "id": "0x839078adA638AF8306c039221E408eE7bc4E3F7F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x839078adA638AF8306c039221E408eE7bc4E3F7F/logo.png b/blockchains/ethereum/assets/0x839078adA638AF8306c039221E408eE7bc4E3F7F/logo.png new file mode 100644 index 00000000..844ebbd9 Binary files /dev/null and b/blockchains/ethereum/assets/0x839078adA638AF8306c039221E408eE7bc4E3F7F/logo.png differ diff --git a/blockchains/ethereum/assets/0x8390a1DA07E376ef7aDd4Be859BA74Fb83aA02D5/info.json b/blockchains/ethereum/assets/0x8390a1DA07E376ef7aDd4Be859BA74Fb83aA02D5/info.json new file mode 100644 index 00000000..a6315dc7 --- /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 00000000..c9abade5 Binary files /dev/null and b/blockchains/ethereum/assets/0x8390a1DA07E376ef7aDd4Be859BA74Fb83aA02D5/logo.png differ diff --git a/blockchains/ethereum/assets/0x83984d6142934bb535793A82ADB0a46EF0F66B6d/info.json b/blockchains/ethereum/assets/0x83984d6142934bb535793A82ADB0a46EF0F66B6d/info.json new file mode 100644 index 00000000..30b616ea --- /dev/null +++ b/blockchains/ethereum/assets/0x83984d6142934bb535793A82ADB0a46EF0F66B6d/info.json @@ -0,0 +1,11 @@ +{ + "name": "REMME token", + "symbol": "REM", + "type": "ERC20", + "decimals": 4, + "description": "Distributed Public Key Infrastructure protocol and PKI-enabled apps for the modern web.", + "website": "https://remme.io", + "explorer": "https://etherscan.io/token/0x83984d6142934bb535793A82ADB0a46EF0F66B6d", + "status": "active", + "id": "0x83984d6142934bb535793A82ADB0a46EF0F66B6d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83984d6142934bb535793A82ADB0a46EF0F66B6d/logo.png b/blockchains/ethereum/assets/0x83984d6142934bb535793A82ADB0a46EF0F66B6d/logo.png new file mode 100644 index 00000000..9c2cc252 Binary files /dev/null and b/blockchains/ethereum/assets/0x83984d6142934bb535793A82ADB0a46EF0F66B6d/logo.png differ diff --git a/blockchains/ethereum/assets/0x839961692c56270b73538F9906f8736fC1DA4fA6/info.json b/blockchains/ethereum/assets/0x839961692c56270b73538F9906f8736fC1DA4fA6/info.json new file mode 100644 index 00000000..36f202f9 --- /dev/null +++ b/blockchains/ethereum/assets/0x839961692c56270b73538F9906f8736fC1DA4fA6/info.json @@ -0,0 +1,11 @@ +{ + "name": "CHALLENGE", + "symbol": "CLG", + "type": "ERC20", + "decimals": 18, + "description": "Challenge is a community driven DeFi-project by the people and for the people, the decisions and actions of CLG (governance token) are made by its community through voting to assure equity and fairness for all.", + "website": "https://www.challengeclg.com/", + "explorer": "https://etherscan.io/token/0x839961692c56270b73538F9906f8736fC1DA4fA6", + "status": "active", + "id": "0x839961692c56270b73538F9906f8736fC1DA4fA6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x839961692c56270b73538F9906f8736fC1DA4fA6/logo.png b/blockchains/ethereum/assets/0x839961692c56270b73538F9906f8736fC1DA4fA6/logo.png new file mode 100644 index 00000000..4538255b Binary files /dev/null and b/blockchains/ethereum/assets/0x839961692c56270b73538F9906f8736fC1DA4fA6/logo.png differ diff --git a/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/info.json b/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/info.json new file mode 100644 index 00000000..8988722d --- /dev/null +++ b/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/info.json @@ -0,0 +1,32 @@ +{ + "name": "VVS Finance", + "type": "ERC20", + "symbol": "VVS", + "decimals": 18, + "website": "https://vvs.finance/", + "description": "A utility, governance, and reward token with applications throughout the VVS platform.", + "explorer": "https://etherscan.io/token/0x839e71613f9aA06E5701CF6de63E303616B0DDE3", + "status": "active", + "id": "0x839e71613f9aA06E5701CF6de63E303616B0DDE3", + "links": [ + { + "name": "x", + "url": "https://x.com/VVS_finance" + }, + { + "name": "telegram", + "url": "https://t.me/VVSFinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vvs-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vvs-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/logo.png b/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/logo.png new file mode 100644 index 00000000..46fe17fb Binary files /dev/null and b/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/logo.png differ diff --git a/blockchains/ethereum/assets/0x83A668a8a9b6A2171466Ce09BB023DbE0BAd1b3E/info.json b/blockchains/ethereum/assets/0x83A668a8a9b6A2171466Ce09BB023DbE0BAd1b3E/info.json new file mode 100644 index 00000000..3aba417a --- /dev/null +++ b/blockchains/ethereum/assets/0x83A668a8a9b6A2171466Ce09BB023DbE0BAd1b3E/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg15500", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x83A668a8a9b6A2171466Ce09BB023DbE0BAd1b3E", + "status": "abandoned", + "id": "0x83A668a8a9b6A2171466Ce09BB023DbE0BAd1b3E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83A668a8a9b6A2171466Ce09BB023DbE0BAd1b3E/logo.png b/blockchains/ethereum/assets/0x83A668a8a9b6A2171466Ce09BB023DbE0BAd1b3E/logo.png new file mode 100644 index 00000000..6b6141a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x83A668a8a9b6A2171466Ce09BB023DbE0BAd1b3E/logo.png differ diff --git a/blockchains/ethereum/assets/0x83C017A3FcD81E2d3ed00D8941f1c861587ceba2/info.json b/blockchains/ethereum/assets/0x83C017A3FcD81E2d3ed00D8941f1c861587ceba2/info.json new file mode 100644 index 00000000..bb401e33 --- /dev/null +++ b/blockchains/ethereum/assets/0x83C017A3FcD81E2d3ed00D8941f1c861587ceba2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mi Token", + "symbol": "MIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x83C017A3FcD81E2d3ed00D8941f1c861587ceba2", + "status": "abandoned", + "id": "0x83C017A3FcD81E2d3ed00D8941f1c861587ceba2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83C017A3FcD81E2d3ed00D8941f1c861587ceba2/logo.png b/blockchains/ethereum/assets/0x83C017A3FcD81E2d3ed00D8941f1c861587ceba2/logo.png new file mode 100644 index 00000000..a0aa20a3 Binary files /dev/null and b/blockchains/ethereum/assets/0x83C017A3FcD81E2d3ed00D8941f1c861587ceba2/logo.png differ diff --git a/blockchains/ethereum/assets/0x83D6a2171F78e8fFE4dfE7680983efFC49cff7a0/info.json b/blockchains/ethereum/assets/0x83D6a2171F78e8fFE4dfE7680983efFC49cff7a0/info.json new file mode 100644 index 00000000..c6faa878 --- /dev/null +++ b/blockchains/ethereum/assets/0x83D6a2171F78e8fFE4dfE7680983efFC49cff7a0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bet Chips", + "symbol": "BetC", + "type": "ERC20", + "decimals": 4, + "description": "BETCHIPS (BETC) is a utility token based on ERC 20 for iGaming platform. The token is in use on www.betclotto.com as a transaction protocol for the gaming world.", + "website": "https://betc.ltd/", + "explorer": "https://etherscan.io/token/0x83D6a2171F78e8fFE4dfE7680983efFC49cff7a0", + "status": "active", + "id": "0x83D6a2171F78e8fFE4dfE7680983efFC49cff7a0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83D6a2171F78e8fFE4dfE7680983efFC49cff7a0/logo.png b/blockchains/ethereum/assets/0x83D6a2171F78e8fFE4dfE7680983efFC49cff7a0/logo.png new file mode 100644 index 00000000..048814ea Binary files /dev/null and b/blockchains/ethereum/assets/0x83D6a2171F78e8fFE4dfE7680983efFC49cff7a0/logo.png differ diff --git a/blockchains/ethereum/assets/0x83F20F44975D03b1b09e64809B757c47f942BEeA/info.json b/blockchains/ethereum/assets/0x83F20F44975D03b1b09e64809B757c47f942BEeA/info.json new file mode 100644 index 00000000..fffec0e4 --- /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 00000000..656812ea Binary files /dev/null and b/blockchains/ethereum/assets/0x83F20F44975D03b1b09e64809B757c47f942BEeA/logo.png differ diff --git a/blockchains/ethereum/assets/0x83c1eb6C7F1c787B0D74d39Da8022b47DFe4971B/info.json b/blockchains/ethereum/assets/0x83c1eb6C7F1c787B0D74d39Da8022b47DFe4971B/info.json new file mode 100644 index 00000000..ebdd8a0c --- /dev/null +++ b/blockchains/ethereum/assets/0x83c1eb6C7F1c787B0D74d39Da8022b47DFe4971B/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQUOPAY", + "symbol": "EQY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x83c1eb6C7F1c787B0D74d39Da8022b47DFe4971B", + "status": "abandoned", + "id": "0x83c1eb6C7F1c787B0D74d39Da8022b47DFe4971B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83c1eb6C7F1c787B0D74d39Da8022b47DFe4971B/logo.png b/blockchains/ethereum/assets/0x83c1eb6C7F1c787B0D74d39Da8022b47DFe4971B/logo.png new file mode 100644 index 00000000..3cac8829 Binary files /dev/null and b/blockchains/ethereum/assets/0x83c1eb6C7F1c787B0D74d39Da8022b47DFe4971B/logo.png differ diff --git a/blockchains/ethereum/assets/0x83c88dBd0059EdB45A3e57B9Cc50E9Ee0fdA7191/info.json b/blockchains/ethereum/assets/0x83c88dBd0059EdB45A3e57B9Cc50E9Ee0fdA7191/info.json new file mode 100644 index 00000000..c8afe1fa --- /dev/null +++ b/blockchains/ethereum/assets/0x83c88dBd0059EdB45A3e57B9Cc50E9Ee0fdA7191/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planet BlockChain", + "symbol": "PBC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://planetblockchain.io", + "explorer": "https://etherscan.io/token/0x83c88dBd0059EdB45A3e57B9Cc50E9Ee0fdA7191", + "status": "abandoned", + "id": "0x83c88dBd0059EdB45A3e57B9Cc50E9Ee0fdA7191" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83c88dBd0059EdB45A3e57B9Cc50E9Ee0fdA7191/logo.png b/blockchains/ethereum/assets/0x83c88dBd0059EdB45A3e57B9Cc50E9Ee0fdA7191/logo.png new file mode 100755 index 00000000..cf0c7447 Binary files /dev/null and b/blockchains/ethereum/assets/0x83c88dBd0059EdB45A3e57B9Cc50E9Ee0fdA7191/logo.png differ diff --git a/blockchains/ethereum/assets/0x83cAEECace9Ec5c322c93743B2B370ED58951F5c/info.json b/blockchains/ethereum/assets/0x83cAEECace9Ec5c322c93743B2B370ED58951F5c/info.json new file mode 100644 index 00000000..5ca5ae3b --- /dev/null +++ b/blockchains/ethereum/assets/0x83cAEECace9Ec5c322c93743B2B370ED58951F5c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bazooka Token", + "symbol": "BAZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x83cAEECace9Ec5c322c93743B2B370ED58951F5c", + "status": "abandoned", + "id": "0x83cAEECace9Ec5c322c93743B2B370ED58951F5c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83cAEECace9Ec5c322c93743B2B370ED58951F5c/logo.png b/blockchains/ethereum/assets/0x83cAEECace9Ec5c322c93743B2B370ED58951F5c/logo.png new file mode 100644 index 00000000..b586821b Binary files /dev/null and b/blockchains/ethereum/assets/0x83cAEECace9Ec5c322c93743B2B370ED58951F5c/logo.png differ diff --git a/blockchains/ethereum/assets/0x83cee9e086A77e492eE0bB93C2B0437aD6fdECCc/info.json b/blockchains/ethereum/assets/0x83cee9e086A77e492eE0bB93C2B0437aD6fdECCc/info.json new file mode 100644 index 00000000..d23690e8 --- /dev/null +++ b/blockchains/ethereum/assets/0x83cee9e086A77e492eE0bB93C2B0437aD6fdECCc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Goldmint MNT Prelaunch Token", + "symbol": "MNTP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.goldmint.io/", + "explorer": "https://etherscan.io/token/0x83cee9e086A77e492eE0bB93C2B0437aD6fdECCc", + "status": "abandoned", + "id": "0x83cee9e086A77e492eE0bB93C2B0437aD6fdECCc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83cee9e086A77e492eE0bB93C2B0437aD6fdECCc/logo.png b/blockchains/ethereum/assets/0x83cee9e086A77e492eE0bB93C2B0437aD6fdECCc/logo.png new file mode 100644 index 00000000..37f24749 Binary files /dev/null and b/blockchains/ethereum/assets/0x83cee9e086A77e492eE0bB93C2B0437aD6fdECCc/logo.png differ diff --git a/blockchains/ethereum/assets/0x83e11a3b34D2330AdF67a3B1032172A7Bc408e17/info.json b/blockchains/ethereum/assets/0x83e11a3b34D2330AdF67a3B1032172A7Bc408e17/info.json new file mode 100644 index 00000000..ab44cb50 --- /dev/null +++ b/blockchains/ethereum/assets/0x83e11a3b34D2330AdF67a3B1032172A7Bc408e17/info.json @@ -0,0 +1,11 @@ +{ + "name": "Deluxo", + "symbol": "DLUX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x83e11a3b34D2330AdF67a3B1032172A7Bc408e17", + "status": "abandoned", + "id": "0x83e11a3b34D2330AdF67a3B1032172A7Bc408e17" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83e11a3b34D2330AdF67a3B1032172A7Bc408e17/logo.png b/blockchains/ethereum/assets/0x83e11a3b34D2330AdF67a3B1032172A7Bc408e17/logo.png new file mode 100644 index 00000000..43f82d43 Binary files /dev/null and b/blockchains/ethereum/assets/0x83e11a3b34D2330AdF67a3B1032172A7Bc408e17/logo.png differ diff --git a/blockchains/ethereum/assets/0x83e2BE8d114F9661221384B3a50d24B96a5653F5/info.json b/blockchains/ethereum/assets/0x83e2BE8d114F9661221384B3a50d24B96a5653F5/info.json new file mode 100644 index 00000000..c2dd18bb --- /dev/null +++ b/blockchains/ethereum/assets/0x83e2BE8d114F9661221384B3a50d24B96a5653F5/info.json @@ -0,0 +1,11 @@ +{ + "name": "0xcert Protocol Token", + "symbol": "ZXC", + "type": "ERC20", + "decimals": 18, + "description": "0xcert provides the open-source 0xcert Framework for building powerful decentralized applications (dapps) combined with non-fungible tokens (NFTs). The Framework is a JavaScript library that reduces the time, resources, and issues of developing a dapp.", + "website": "https://0xcert.org/", + "explorer": "https://etherscan.io/token/0x83e2BE8d114F9661221384B3a50d24B96a5653F5", + "status": "active", + "id": "0x83e2BE8d114F9661221384B3a50d24B96a5653F5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83e2BE8d114F9661221384B3a50d24B96a5653F5/logo.png b/blockchains/ethereum/assets/0x83e2BE8d114F9661221384B3a50d24B96a5653F5/logo.png new file mode 100755 index 00000000..2294205f Binary files /dev/null and b/blockchains/ethereum/assets/0x83e2BE8d114F9661221384B3a50d24B96a5653F5/logo.png differ diff --git a/blockchains/ethereum/assets/0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa/info.json b/blockchains/ethereum/assets/0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa/info.json new file mode 100644 index 00000000..e53ec79b --- /dev/null +++ b/blockchains/ethereum/assets/0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa/info.json @@ -0,0 +1,24 @@ +{ + "name": "Polkastarter", + "website": "https://polkastarter.com/", + "description": "Polkastarter is a DEX built for cross-chain token pools and auctions, enabling projects to raise capital on a decentralized, permissionless and interoperable environment based on Polkadot.", + "explorer": "https://etherscan.io/token/0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa", + "type": "ERC20", + "symbol": "POLS", + "decimals": 18, + "status": "active", + "id": "0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/polkastarter" + }, + { + "name": "whitepaper", + "url": "https://docs.google.com/presentation/d/1HkdL6XZfbl4mYgNo_8xZsZU0m8QOKusjgi0vBT9nvvY/edit" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa/logo.png b/blockchains/ethereum/assets/0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa/logo.png new file mode 100644 index 00000000..c65267fb Binary files /dev/null and b/blockchains/ethereum/assets/0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa/logo.png differ diff --git a/blockchains/ethereum/assets/0x83eEA00D838f92dEC4D1475697B9f4D3537b56E3/info.json b/blockchains/ethereum/assets/0x83eEA00D838f92dEC4D1475697B9f4D3537b56E3/info.json new file mode 100644 index 00000000..0acb9dee --- /dev/null +++ b/blockchains/ethereum/assets/0x83eEA00D838f92dEC4D1475697B9f4D3537b56E3/info.json @@ -0,0 +1,11 @@ +{ + "name": "VOISE", + "symbol": "VOISE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.voise.com/", + "explorer": "https://etherscan.io/token/0x83eEA00D838f92dEC4D1475697B9f4D3537b56E3", + "status": "abandoned", + "id": "0x83eEA00D838f92dEC4D1475697B9f4D3537b56E3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83eEA00D838f92dEC4D1475697B9f4D3537b56E3/logo.png b/blockchains/ethereum/assets/0x83eEA00D838f92dEC4D1475697B9f4D3537b56E3/logo.png new file mode 100755 index 00000000..3d3a57cd Binary files /dev/null and b/blockchains/ethereum/assets/0x83eEA00D838f92dEC4D1475697B9f4D3537b56E3/logo.png differ diff --git a/blockchains/ethereum/assets/0x83f798e925BcD4017Eb265844FDDAbb448f1707D/info.json b/blockchains/ethereum/assets/0x83f798e925BcD4017Eb265844FDDAbb448f1707D/info.json new file mode 100644 index 00000000..50a284f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x83f798e925BcD4017Eb265844FDDAbb448f1707D/info.json @@ -0,0 +1,11 @@ +{ + "name": "iearn USDT", + "symbol": "yUSDT", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x83f798e925BcD4017Eb265844FDDAbb448f1707D", + "status": "abandoned", + "id": "0x83f798e925BcD4017Eb265844FDDAbb448f1707D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83f798e925BcD4017Eb265844FDDAbb448f1707D/logo.png b/blockchains/ethereum/assets/0x83f798e925BcD4017Eb265844FDDAbb448f1707D/logo.png new file mode 100644 index 00000000..9aa9d5c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x83f798e925BcD4017Eb265844FDDAbb448f1707D/logo.png differ diff --git a/blockchains/ethereum/assets/0x8400363706E3850E2BFfc612F9ADb38567e3B6AC/info.json b/blockchains/ethereum/assets/0x8400363706E3850E2BFfc612F9ADb38567e3B6AC/info.json new file mode 100644 index 00000000..e58f6513 --- /dev/null +++ b/blockchains/ethereum/assets/0x8400363706E3850E2BFfc612F9ADb38567e3B6AC/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 276-CN11", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8400363706E3850E2BFfc612F9ADb38567e3B6AC", + "status": "abandoned", + "id": "0x8400363706E3850E2BFfc612F9ADb38567e3B6AC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8400363706E3850E2BFfc612F9ADb38567e3B6AC/logo.png b/blockchains/ethereum/assets/0x8400363706E3850E2BFfc612F9ADb38567e3B6AC/logo.png new file mode 100644 index 00000000..cab71eef Binary files /dev/null and b/blockchains/ethereum/assets/0x8400363706E3850E2BFfc612F9ADb38567e3B6AC/logo.png differ diff --git a/blockchains/ethereum/assets/0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e/info.json b/blockchains/ethereum/assets/0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e/info.json new file mode 100644 index 00000000..c25d1a89 --- /dev/null +++ b/blockchains/ethereum/assets/0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e/info.json @@ -0,0 +1,11 @@ +{ + "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://etherscan.io/token/0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e", + "type": "ERC20", + "symbol": "UBT", + "decimals": 8, + "status": "active", + "id": "0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e/logo.png b/blockchains/ethereum/assets/0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e/logo.png new file mode 100644 index 00000000..e9c9f22a Binary files /dev/null and b/blockchains/ethereum/assets/0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e/logo.png differ diff --git a/blockchains/ethereum/assets/0x840fe75ABfaDc0F2d54037829571B2782e919ce4/info.json b/blockchains/ethereum/assets/0x840fe75ABfaDc0F2d54037829571B2782e919ce4/info.json new file mode 100644 index 00000000..89d4dca4 --- /dev/null +++ b/blockchains/ethereum/assets/0x840fe75ABfaDc0F2d54037829571B2782e919ce4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Webcoin", + "symbol": "WEB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://webcoin.today/#/", + "explorer": "https://etherscan.io/token/0x840fe75ABfaDc0F2d54037829571B2782e919ce4", + "status": "abandoned", + "id": "0x840fe75ABfaDc0F2d54037829571B2782e919ce4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x840fe75ABfaDc0F2d54037829571B2782e919ce4/logo.png b/blockchains/ethereum/assets/0x840fe75ABfaDc0F2d54037829571B2782e919ce4/logo.png new file mode 100644 index 00000000..03fa9e9e Binary files /dev/null and b/blockchains/ethereum/assets/0x840fe75ABfaDc0F2d54037829571B2782e919ce4/logo.png differ diff --git a/blockchains/ethereum/assets/0x84119cb33E8F590D75c2D6Ea4e6B0741a7494EDA/info.json b/blockchains/ethereum/assets/0x84119cb33E8F590D75c2D6Ea4e6B0741a7494EDA/info.json new file mode 100644 index 00000000..fa9e28c2 --- /dev/null +++ b/blockchains/ethereum/assets/0x84119cb33E8F590D75c2D6Ea4e6B0741a7494EDA/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "\"\"", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://cryptonomos.com/wtt/", + "explorer": "https://etherscan.io/token/0x84119cb33E8F590D75c2D6Ea4e6B0741a7494EDA", + "status": "abandoned", + "id": "0x84119cb33E8F590D75c2D6Ea4e6B0741a7494EDA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84119cb33E8F590D75c2D6Ea4e6B0741a7494EDA/logo.png b/blockchains/ethereum/assets/0x84119cb33E8F590D75c2D6Ea4e6B0741a7494EDA/logo.png new file mode 100644 index 00000000..d5add88a Binary files /dev/null and b/blockchains/ethereum/assets/0x84119cb33E8F590D75c2D6Ea4e6B0741a7494EDA/logo.png differ diff --git a/blockchains/ethereum/assets/0x841FB148863454A3b3570f515414759BE9091465/info.json b/blockchains/ethereum/assets/0x841FB148863454A3b3570f515414759BE9091465/info.json new file mode 100644 index 00000000..81cfe53a --- /dev/null +++ b/blockchains/ethereum/assets/0x841FB148863454A3b3570f515414759BE9091465/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shih Tzu", + "type": "ERC20", + "symbol": "SHIH", + "decimals": 18, + "description": "SHIH TZU project is a meme based token that has determined to pursue NFT artwork", + "website": "https://www.shih-tzu.org/", + "explorer": "https://etherscan.io/token/0x841FB148863454A3b3570f515414759BE9091465", + "status": "active", + "id": "0x841FB148863454A3b3570f515414759BE9091465" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x841FB148863454A3b3570f515414759BE9091465/logo.png b/blockchains/ethereum/assets/0x841FB148863454A3b3570f515414759BE9091465/logo.png new file mode 100644 index 00000000..55b6bdcb Binary files /dev/null and b/blockchains/ethereum/assets/0x841FB148863454A3b3570f515414759BE9091465/logo.png differ diff --git a/blockchains/ethereum/assets/0x841d6e848fe163BE5712F1A4f85F11a48A3b47F5/info.json b/blockchains/ethereum/assets/0x841d6e848fe163BE5712F1A4f85F11a48A3b47F5/info.json new file mode 100644 index 00000000..69cc3ef1 --- /dev/null +++ b/blockchains/ethereum/assets/0x841d6e848fe163BE5712F1A4f85F11a48A3b47F5/info.json @@ -0,0 +1,11 @@ +{ + "name": "CarBlock.io", + "symbol": "CAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x841d6e848fe163BE5712F1A4f85F11a48A3b47F5", + "status": "abandoned", + "id": "0x841d6e848fe163BE5712F1A4f85F11a48A3b47F5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x841d6e848fe163BE5712F1A4f85F11a48A3b47F5/logo.png b/blockchains/ethereum/assets/0x841d6e848fe163BE5712F1A4f85F11a48A3b47F5/logo.png new file mode 100644 index 00000000..a600a225 Binary files /dev/null and b/blockchains/ethereum/assets/0x841d6e848fe163BE5712F1A4f85F11a48A3b47F5/logo.png differ diff --git a/blockchains/ethereum/assets/0x84294FC9710e1252d407d3D80A84bC39001bd4A8/info.json b/blockchains/ethereum/assets/0x84294FC9710e1252d407d3D80A84bC39001bd4A8/info.json new file mode 100644 index 00000000..03004c92 --- /dev/null +++ b/blockchains/ethereum/assets/0x84294FC9710e1252d407d3D80A84bC39001bd4A8/info.json @@ -0,0 +1,11 @@ +{ + "name": "(Old) NUTS", + "website": "https://squirrel.finance", + "description": "NUTS is an upcoming ecosystem to empower simple & secure DeFi. The first product Stash is live in beta with second product Insure coming shortly.", + "explorer": "https://etherscan.io/token/0x84294FC9710e1252d407d3D80A84bC39001bd4A8", + "type": "ERC20", + "symbol": "NUTS", + "decimals": 18, + "status": "abandoned", + "id": "0x84294FC9710e1252d407d3D80A84bC39001bd4A8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84294FC9710e1252d407d3D80A84bC39001bd4A8/logo.png b/blockchains/ethereum/assets/0x84294FC9710e1252d407d3D80A84bC39001bd4A8/logo.png new file mode 100644 index 00000000..ea2a3c6c Binary files /dev/null and b/blockchains/ethereum/assets/0x84294FC9710e1252d407d3D80A84bC39001bd4A8/logo.png differ diff --git a/blockchains/ethereum/assets/0x843131b15F2Ec5BeA850aC5164D2e4a3749ad87f/info.json b/blockchains/ethereum/assets/0x843131b15F2Ec5BeA850aC5164D2e4a3749ad87f/info.json new file mode 100644 index 00000000..451fe2dc --- /dev/null +++ b/blockchains/ethereum/assets/0x843131b15F2Ec5BeA850aC5164D2e4a3749ad87f/info.json @@ -0,0 +1,11 @@ +{ + "name": "WOWcoin", + "symbol": "WOW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x843131b15F2Ec5BeA850aC5164D2e4a3749ad87f", + "status": "abandoned", + "id": "0x843131b15F2Ec5BeA850aC5164D2e4a3749ad87f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x843131b15F2Ec5BeA850aC5164D2e4a3749ad87f/logo.png b/blockchains/ethereum/assets/0x843131b15F2Ec5BeA850aC5164D2e4a3749ad87f/logo.png new file mode 100644 index 00000000..2d48bc4a Binary files /dev/null and b/blockchains/ethereum/assets/0x843131b15F2Ec5BeA850aC5164D2e4a3749ad87f/logo.png differ diff --git a/blockchains/ethereum/assets/0x84328D8B85019FdCeCf4c82FBE076Bf350FC0cab/info.json b/blockchains/ethereum/assets/0x84328D8B85019FdCeCf4c82FBE076Bf350FC0cab/info.json new file mode 100644 index 00000000..35627b2e --- /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 00000000..925f4676 Binary files /dev/null and b/blockchains/ethereum/assets/0x84328D8B85019FdCeCf4c82FBE076Bf350FC0cab/logo.png differ diff --git a/blockchains/ethereum/assets/0x843c0b086ecbb640b07f63AfD566A17a934051C2/info.json b/blockchains/ethereum/assets/0x843c0b086ecbb640b07f63AfD566A17a934051C2/info.json new file mode 100644 index 00000000..0ba4405b --- /dev/null +++ b/blockchains/ethereum/assets/0x843c0b086ecbb640b07f63AfD566A17a934051C2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Axtra", + "symbol": "AXT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x843c0b086ecbb640b07f63AfD566A17a934051C2", + "status": "abandoned", + "id": "0x843c0b086ecbb640b07f63AfD566A17a934051C2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x843c0b086ecbb640b07f63AfD566A17a934051C2/logo.png b/blockchains/ethereum/assets/0x843c0b086ecbb640b07f63AfD566A17a934051C2/logo.png new file mode 100644 index 00000000..493ad06e Binary files /dev/null and b/blockchains/ethereum/assets/0x843c0b086ecbb640b07f63AfD566A17a934051C2/logo.png differ diff --git a/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/info.json b/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/info.json new file mode 100644 index 00000000..927952b6 --- /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 00000000..55ecb67c Binary files /dev/null and b/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/logo.png differ diff --git a/blockchains/ethereum/assets/0x84675a35c00e824F99Ec147ea6518D98f988DA32/info.json b/blockchains/ethereum/assets/0x84675a35c00e824F99Ec147ea6518D98f988DA32/info.json new file mode 100644 index 00000000..6aa83751 --- /dev/null +++ b/blockchains/ethereum/assets/0x84675a35c00e824F99Ec147ea6518D98f988DA32/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shuern Coin", + "symbol": "SHUERN", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x84675a35c00e824F99Ec147ea6518D98f988DA32", + "status": "abandoned", + "id": "0x84675a35c00e824F99Ec147ea6518D98f988DA32" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84675a35c00e824F99Ec147ea6518D98f988DA32/logo.png b/blockchains/ethereum/assets/0x84675a35c00e824F99Ec147ea6518D98f988DA32/logo.png new file mode 100644 index 00000000..a0393ad5 Binary files /dev/null and b/blockchains/ethereum/assets/0x84675a35c00e824F99Ec147ea6518D98f988DA32/logo.png differ diff --git a/blockchains/ethereum/assets/0x84679bc467DC6c2c40ab04538813AfF3796351f1/info.json b/blockchains/ethereum/assets/0x84679bc467DC6c2c40ab04538813AfF3796351f1/info.json new file mode 100644 index 00000000..5e39a0df --- /dev/null +++ b/blockchains/ethereum/assets/0x84679bc467DC6c2c40ab04538813AfF3796351f1/info.json @@ -0,0 +1,17 @@ +{ + "name": "CHONK", + "website": "https://chonker.finance/", + "description": "Inspired by $MEME. Fish with fat chonkers and get rewarded with NFT cards. DEFI + NFT + FAT CATS.", + "explorer": "https://etherscan.io/token/0x84679bc467DC6c2c40ab04538813AfF3796351f1", + "type": "ERC20", + "symbol": "CHONK", + "decimals": 18, + "status": "active", + "id": "0x84679bc467DC6c2c40ab04538813AfF3796351f1", + "links": [ + { + "name": "github", + "url": "https://github.com/ChonkerFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84679bc467DC6c2c40ab04538813AfF3796351f1/logo.png b/blockchains/ethereum/assets/0x84679bc467DC6c2c40ab04538813AfF3796351f1/logo.png new file mode 100644 index 00000000..18f76a3e Binary files /dev/null and b/blockchains/ethereum/assets/0x84679bc467DC6c2c40ab04538813AfF3796351f1/logo.png differ diff --git a/blockchains/ethereum/assets/0x846C66cf71C43f80403B51fE3906B3599D63336f/info.json b/blockchains/ethereum/assets/0x846C66cf71C43f80403B51fE3906B3599D63336f/info.json new file mode 100644 index 00000000..e803c024 --- /dev/null +++ b/blockchains/ethereum/assets/0x846C66cf71C43f80403B51fE3906B3599D63336f/info.json @@ -0,0 +1,11 @@ +{ + "name": "PumaPay", + "symbol": "PMA", + "type": "ERC20", + "decimals": 18, + "description": "PumaPay was built on top of the Ethereum blockchain.", + "website": "https://pumapay.io", + "explorer": "https://etherscan.io/token/0x846C66cf71C43f80403B51fE3906B3599D63336f", + "status": "active", + "id": "0x846C66cf71C43f80403B51fE3906B3599D63336f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x846C66cf71C43f80403B51fE3906B3599D63336f/logo.png b/blockchains/ethereum/assets/0x846C66cf71C43f80403B51fE3906B3599D63336f/logo.png new file mode 100644 index 00000000..8cdecb7f Binary files /dev/null and b/blockchains/ethereum/assets/0x846C66cf71C43f80403B51fE3906B3599D63336f/logo.png differ diff --git a/blockchains/ethereum/assets/0x847c1C902F773e27A9CCad509817571C5Bf1b687/info.json b/blockchains/ethereum/assets/0x847c1C902F773e27A9CCad509817571C5Bf1b687/info.json new file mode 100644 index 00000000..96b0af11 --- /dev/null +++ b/blockchains/ethereum/assets/0x847c1C902F773e27A9CCad509817571C5Bf1b687/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R878618", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x847c1C902F773e27A9CCad509817571C5Bf1b687", + "status": "abandoned", + "id": "0x847c1C902F773e27A9CCad509817571C5Bf1b687" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x847c1C902F773e27A9CCad509817571C5Bf1b687/logo.png b/blockchains/ethereum/assets/0x847c1C902F773e27A9CCad509817571C5Bf1b687/logo.png new file mode 100644 index 00000000..c238bd8f Binary files /dev/null and b/blockchains/ethereum/assets/0x847c1C902F773e27A9CCad509817571C5Bf1b687/logo.png differ diff --git a/blockchains/ethereum/assets/0x84810bcF08744d5862B8181f12d17bfd57d3b078/info.json b/blockchains/ethereum/assets/0x84810bcF08744d5862B8181f12d17bfd57d3b078/info.json new file mode 100644 index 00000000..ae744563 --- /dev/null +++ b/blockchains/ethereum/assets/0x84810bcF08744d5862B8181f12d17bfd57d3b078/info.json @@ -0,0 +1,17 @@ +{ + "name": "SharedStake Governance Token", + "website": "https://www.sharedstake.org", + "symbol": "SGT", + "type": "ERC20", + "decimals": 18, + "description": "Easy to use Decentralized Open Source Protocol that allows users to stake any amount of Ether to Ethereum-2 while keeping their staked amount valuable and liquid.", + "explorer": "https://etherscan.io/token/0x84810bcF08744d5862B8181f12d17bfd57d3b078", + "status": "active", + "id": "0x84810bcF08744d5862B8181f12d17bfd57d3b078", + "links": [ + { + "name": "github", + "url": "https://github.com/SharedStake" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84810bcF08744d5862B8181f12d17bfd57d3b078/logo.png b/blockchains/ethereum/assets/0x84810bcF08744d5862B8181f12d17bfd57d3b078/logo.png new file mode 100644 index 00000000..3e348309 Binary files /dev/null and b/blockchains/ethereum/assets/0x84810bcF08744d5862B8181f12d17bfd57d3b078/logo.png differ diff --git a/blockchains/ethereum/assets/0x8499e759C3a624a90db184503c5dc74F5040fFE2/info.json b/blockchains/ethereum/assets/0x8499e759C3a624a90db184503c5dc74F5040fFE2/info.json new file mode 100644 index 00000000..c3412eb8 --- /dev/null +++ b/blockchains/ethereum/assets/0x8499e759C3a624a90db184503c5dc74F5040fFE2/info.json @@ -0,0 +1,11 @@ +{ + "name": "code1 coin", + "symbol": "CODE", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8499e759C3a624a90db184503c5dc74F5040fFE2", + "status": "abandoned", + "id": "0x8499e759C3a624a90db184503c5dc74F5040fFE2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8499e759C3a624a90db184503c5dc74F5040fFE2/logo.png b/blockchains/ethereum/assets/0x8499e759C3a624a90db184503c5dc74F5040fFE2/logo.png new file mode 100644 index 00000000..5e5fb92d Binary files /dev/null and b/blockchains/ethereum/assets/0x8499e759C3a624a90db184503c5dc74F5040fFE2/logo.png differ diff --git a/blockchains/ethereum/assets/0x84A2d83b9eF6474A085834e8CF00C5b4d7b99440/info.json b/blockchains/ethereum/assets/0x84A2d83b9eF6474A085834e8CF00C5b4d7b99440/info.json new file mode 100644 index 00000000..5aacce97 --- /dev/null +++ b/blockchains/ethereum/assets/0x84A2d83b9eF6474A085834e8CF00C5b4d7b99440/info.json @@ -0,0 +1,11 @@ +{ + "name": "MannyBUX", + "symbol": "BUX", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x84A2d83b9eF6474A085834e8CF00C5b4d7b99440", + "status": "abandoned", + "id": "0x84A2d83b9eF6474A085834e8CF00C5b4d7b99440" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84A2d83b9eF6474A085834e8CF00C5b4d7b99440/logo.png b/blockchains/ethereum/assets/0x84A2d83b9eF6474A085834e8CF00C5b4d7b99440/logo.png new file mode 100755 index 00000000..baa107dd Binary files /dev/null and b/blockchains/ethereum/assets/0x84A2d83b9eF6474A085834e8CF00C5b4d7b99440/logo.png differ diff --git a/blockchains/ethereum/assets/0x84BBcaB430717ff832c3904fa6515f97fc63C76F/info.json b/blockchains/ethereum/assets/0x84BBcaB430717ff832c3904fa6515f97fc63C76F/info.json new file mode 100644 index 00000000..a05096c7 --- /dev/null +++ b/blockchains/ethereum/assets/0x84BBcaB430717ff832c3904fa6515f97fc63C76F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave aUniSETHETH", + "website": "https://aave.com", + "description": "Aave UniSETHETH is an interest bearing token pegged 1:1 to the underlying SETH and ETH deposited in the Uniswap Market of Aave Protocol.", + "explorer": "https://etherscan.io/token/0x84BBcaB430717ff832c3904fa6515f97fc63C76F", + "type": "ERC20", + "symbol": "aUniSETHETH", + "decimals": 18, + "status": "active", + "id": "0x84BBcaB430717ff832c3904fa6515f97fc63C76F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84BBcaB430717ff832c3904fa6515f97fc63C76F/logo.png b/blockchains/ethereum/assets/0x84BBcaB430717ff832c3904fa6515f97fc63C76F/logo.png new file mode 100644 index 00000000..99e871d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x84BBcaB430717ff832c3904fa6515f97fc63C76F/logo.png differ diff --git a/blockchains/ethereum/assets/0x84E8f1b9b40DD1832925702459D12FFb14d97bF3/info.json b/blockchains/ethereum/assets/0x84E8f1b9b40DD1832925702459D12FFb14d97bF3/info.json new file mode 100644 index 00000000..fe2ef6cd --- /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 00000000..c8b7fdf9 Binary files /dev/null and b/blockchains/ethereum/assets/0x84E8f1b9b40DD1832925702459D12FFb14d97bF3/logo.png differ diff --git a/blockchains/ethereum/assets/0x84F7c44B6Fed1080f647E354D552595be2Cc602F/info.json b/blockchains/ethereum/assets/0x84F7c44B6Fed1080f647E354D552595be2Cc602F/info.json new file mode 100644 index 00000000..fd7973bf --- /dev/null +++ b/blockchains/ethereum/assets/0x84F7c44B6Fed1080f647E354D552595be2Cc602F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bigbom", + "symbol": "BBO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bigbom.com", + "explorer": "https://etherscan.io/token/0x84F7c44B6Fed1080f647E354D552595be2Cc602F", + "status": "abandoned", + "id": "0x84F7c44B6Fed1080f647E354D552595be2Cc602F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84F7c44B6Fed1080f647E354D552595be2Cc602F/logo.png b/blockchains/ethereum/assets/0x84F7c44B6Fed1080f647E354D552595be2Cc602F/logo.png new file mode 100755 index 00000000..95658a0f Binary files /dev/null and b/blockchains/ethereum/assets/0x84F7c44B6Fed1080f647E354D552595be2Cc602F/logo.png differ diff --git a/blockchains/ethereum/assets/0x84FA8f52E437Ac04107EC1768764B2b39287CB3e/info.json b/blockchains/ethereum/assets/0x84FA8f52E437Ac04107EC1768764B2b39287CB3e/info.json new file mode 100644 index 00000000..47eecb9a --- /dev/null +++ b/blockchains/ethereum/assets/0x84FA8f52E437Ac04107EC1768764B2b39287CB3e/info.json @@ -0,0 +1,36 @@ +{ + "name": "Grove Token", + "type": "ERC20", + "symbol": "GVR", + "decimals": 18, + "website": "https://grovetoken.com/", + "description": "Our mission is to create wealth, for all Grovers, by harnessing the opportunities of a secure, decentralized digital currency in an environmentally conscious way. By compensating nature for years of abuse, Grove will create a healthier, wealthier future for all.", + "explorer": "https://etherscan.io/token/0x84FA8f52E437Ac04107EC1768764B2b39287CB3e", + "status": "abandoned", + "id": "0x84FA8f52E437Ac04107EC1768764B2b39287CB3e", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Grovetoken" + }, + { + "name": "x", + "url": "https://x.com/GroveToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grove/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/grove" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB#code#L1" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/info.json b/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/info.json new file mode 100644 index 00000000..811a1923 --- /dev/null +++ b/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/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://etherscan.io/token/0x84ca8bc7997272c7cfb4d0cd3d55cd942b3c9419", + "research": "https://research.binance.com/en/projects/dia", + "symbol": "DIA", + "type": "ERC20", + "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": "0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/logo.png b/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/logo.png new file mode 100644 index 00000000..8fd8d3e7 Binary files /dev/null and b/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/logo.png differ diff --git a/blockchains/ethereum/assets/0x85089389C14Bd9c77FC2b8F0c3d1dC3363Bf06Ef/info.json b/blockchains/ethereum/assets/0x85089389C14Bd9c77FC2b8F0c3d1dC3363Bf06Ef/info.json new file mode 100644 index 00000000..3c252e4d --- /dev/null +++ b/blockchains/ethereum/assets/0x85089389C14Bd9c77FC2b8F0c3d1dC3363Bf06Ef/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPFToken", + "symbol": "SPF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://sportyco.io/", + "explorer": "https://etherscan.io/token/0x85089389C14Bd9c77FC2b8F0c3d1dC3363Bf06Ef", + "status": "abandoned", + "id": "0x85089389C14Bd9c77FC2b8F0c3d1dC3363Bf06Ef" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x85089389C14Bd9c77FC2b8F0c3d1dC3363Bf06Ef/logo.png b/blockchains/ethereum/assets/0x85089389C14Bd9c77FC2b8F0c3d1dC3363Bf06Ef/logo.png new file mode 100755 index 00000000..4d0ce3ba Binary files /dev/null and b/blockchains/ethereum/assets/0x85089389C14Bd9c77FC2b8F0c3d1dC3363Bf06Ef/logo.png differ diff --git a/blockchains/ethereum/assets/0x850aAB69f0e0171A9a49dB8BE3E71351c8247Df4/info.json b/blockchains/ethereum/assets/0x850aAB69f0e0171A9a49dB8BE3E71351c8247Df4/info.json new file mode 100644 index 00000000..b1e61bd1 --- /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 00000000..e6c860a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x850aAB69f0e0171A9a49dB8BE3E71351c8247Df4/logo.png differ diff --git a/blockchains/ethereum/assets/0x851017523AE205adc9195e7F97D029f4Cfe7794c/info.json b/blockchains/ethereum/assets/0x851017523AE205adc9195e7F97D029f4Cfe7794c/info.json new file mode 100644 index 00000000..ed3166f6 --- /dev/null +++ b/blockchains/ethereum/assets/0x851017523AE205adc9195e7F97D029f4Cfe7794c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Social Lending Token", + "symbol": "SLT", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "https://sociallending.io/", + "explorer": "https://etherscan.io/token/0x851017523AE205adc9195e7F97D029f4Cfe7794c", + "status": "abandoned", + "id": "0x851017523AE205adc9195e7F97D029f4Cfe7794c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x851017523AE205adc9195e7F97D029f4Cfe7794c/logo.png b/blockchains/ethereum/assets/0x851017523AE205adc9195e7F97D029f4Cfe7794c/logo.png new file mode 100644 index 00000000..9bec2fc0 Binary files /dev/null and b/blockchains/ethereum/assets/0x851017523AE205adc9195e7F97D029f4Cfe7794c/logo.png differ diff --git a/blockchains/ethereum/assets/0x8515cD0f00aD81996d24b9A9C35121a3b759D6Cd/info.json b/blockchains/ethereum/assets/0x8515cD0f00aD81996d24b9A9C35121a3b759D6Cd/info.json new file mode 100644 index 00000000..c7b578f3 --- /dev/null +++ b/blockchains/ethereum/assets/0x8515cD0f00aD81996d24b9A9C35121a3b759D6Cd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockburn", + "symbol": "BURN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://blockburn.io/", + "explorer": "https://etherscan.io/token/0x8515cD0f00aD81996d24b9A9C35121a3b759D6Cd", + "status": "active", + "id": "0x8515cD0f00aD81996d24b9A9C35121a3b759D6Cd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8515cD0f00aD81996d24b9A9C35121a3b759D6Cd/logo.png b/blockchains/ethereum/assets/0x8515cD0f00aD81996d24b9A9C35121a3b759D6Cd/logo.png new file mode 100644 index 00000000..f12767a5 Binary files /dev/null and b/blockchains/ethereum/assets/0x8515cD0f00aD81996d24b9A9C35121a3b759D6Cd/logo.png differ diff --git a/blockchains/ethereum/assets/0x85332b222787EacAb0fFf68cf3b884798823528C/info.json b/blockchains/ethereum/assets/0x85332b222787EacAb0fFf68cf3b884798823528C/info.json new file mode 100644 index 00000000..b69973a3 --- /dev/null +++ b/blockchains/ethereum/assets/0x85332b222787EacAb0fFf68cf3b884798823528C/info.json @@ -0,0 +1,11 @@ +{ + "name": "WinETHFree", + "symbol": "winethfree.com (Win ETH Free)", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x85332b222787EacAb0fFf68cf3b884798823528C", + "status": "spam", + "id": "0x85332b222787EacAb0fFf68cf3b884798823528C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x85332b222787EacAb0fFf68cf3b884798823528C/logo.png b/blockchains/ethereum/assets/0x85332b222787EacAb0fFf68cf3b884798823528C/logo.png new file mode 100644 index 00000000..3cfeb869 Binary files /dev/null and b/blockchains/ethereum/assets/0x85332b222787EacAb0fFf68cf3b884798823528C/logo.png differ diff --git a/blockchains/ethereum/assets/0x853Bb55c1f469902F088A629db8C8803A9BE3857/info.json b/blockchains/ethereum/assets/0x853Bb55c1f469902F088A629db8C8803A9BE3857/info.json new file mode 100644 index 00000000..2ab4e6c3 --- /dev/null +++ b/blockchains/ethereum/assets/0x853Bb55c1f469902F088A629db8C8803A9BE3857/info.json @@ -0,0 +1,41 @@ +{ + "name": "Stable 1inch", + "website": "https://ichi.org", + "description": "Stable 1inch is the stablecoin created for the 1inch community. Backed by both a treasury of 1inch and collateral of USDC this ERC20 token can be redeemed for USDC at anytime and also provides a vote for governance of the 1inch treasury.", + "explorer": "https://etherscan.io/token/0x853Bb55c1f469902F088A629db8C8803A9BE3857", + "type": "ERC20", + "symbol": "one1inch", + "decimals": 18, + "status": "active", + "id": "0x853Bb55c1f469902F088A629db8C8803A9BE3857", + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm/ichi-oneToken" + }, + { + "name": "x", + "url": "https://x.com/ichifarm" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Bm6pUHjHUC" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/stable-1inch" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stable-1inch/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x853Bb55c1f469902F088A629db8C8803A9BE3857/logo.png b/blockchains/ethereum/assets/0x853Bb55c1f469902F088A629db8C8803A9BE3857/logo.png new file mode 100644 index 00000000..8edcbc9c Binary files /dev/null and b/blockchains/ethereum/assets/0x853Bb55c1f469902F088A629db8C8803A9BE3857/logo.png differ diff --git a/blockchains/ethereum/assets/0x853d955aCEf822Db058eb8505911ED77F175b99e/info.json b/blockchains/ethereum/assets/0x853d955aCEf822Db058eb8505911ED77F175b99e/info.json new file mode 100644 index 00000000..444942b6 --- /dev/null +++ b/blockchains/ethereum/assets/0x853d955aCEf822Db058eb8505911ED77F175b99e/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://etherscan.io/token/0x853d955aCEf822Db058eb8505911ED77F175b99e", + "type": "ERC20", + "symbol": "FRAX", + "decimals": 18, + "status": "active", + "id": "0x853d955aCEf822Db058eb8505911ED77F175b99e", + "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/ethereum/assets/0x853d955aCEf822Db058eb8505911ED77F175b99e/logo.png b/blockchains/ethereum/assets/0x853d955aCEf822Db058eb8505911ED77F175b99e/logo.png new file mode 100644 index 00000000..762d2dd3 Binary files /dev/null and b/blockchains/ethereum/assets/0x853d955aCEf822Db058eb8505911ED77F175b99e/logo.png differ diff --git a/blockchains/ethereum/assets/0x8542325B72C6D9fC0aD2Ca965A78435413a915A0/info.json b/blockchains/ethereum/assets/0x8542325B72C6D9fC0aD2Ca965A78435413a915A0/info.json new file mode 100644 index 00000000..0c79695c --- /dev/null +++ b/blockchains/ethereum/assets/0x8542325B72C6D9fC0aD2Ca965A78435413a915A0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Oyster Shell", + "symbol": "SHL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8542325B72C6D9fC0aD2Ca965A78435413a915A0", + "status": "abandoned", + "id": "0x8542325B72C6D9fC0aD2Ca965A78435413a915A0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8542325B72C6D9fC0aD2Ca965A78435413a915A0/logo.png b/blockchains/ethereum/assets/0x8542325B72C6D9fC0aD2Ca965A78435413a915A0/logo.png new file mode 100644 index 00000000..0bd7f114 Binary files /dev/null and b/blockchains/ethereum/assets/0x8542325B72C6D9fC0aD2Ca965A78435413a915A0/logo.png differ diff --git a/blockchains/ethereum/assets/0x8578530205CEcbe5DB83F7F29EcfEEC860C297C2/info.json b/blockchains/ethereum/assets/0x8578530205CEcbe5DB83F7F29EcfEEC860C297C2/info.json new file mode 100644 index 00000000..006d76be --- /dev/null +++ b/blockchains/ethereum/assets/0x8578530205CEcbe5DB83F7F29EcfEEC860C297C2/info.json @@ -0,0 +1,11 @@ +{ + "name": "AOG", + "symbol": "AOG", + "type": "ERC20", + "decimals": 18, + "description": "smART OF GIVING (AOG) is an idea-turned-reality that envisioned a unique model to generate funds for charities without asking for monetary donation.", + "website": "https://www.smartofgiving.com", + "explorer": "https://etherscan.io/token/0x8578530205CEcbe5DB83F7F29EcfEEC860C297C2", + "status": "active", + "id": "0x8578530205CEcbe5DB83F7F29EcfEEC860C297C2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8578530205CEcbe5DB83F7F29EcfEEC860C297C2/logo.png b/blockchains/ethereum/assets/0x8578530205CEcbe5DB83F7F29EcfEEC860C297C2/logo.png new file mode 100644 index 00000000..defd27ee Binary files /dev/null and b/blockchains/ethereum/assets/0x8578530205CEcbe5DB83F7F29EcfEEC860C297C2/logo.png differ diff --git a/blockchains/ethereum/assets/0x858e985126543b5a066C4E8a5DAB0249C1d683f7/info.json b/blockchains/ethereum/assets/0x858e985126543b5a066C4E8a5DAB0249C1d683f7/info.json new file mode 100644 index 00000000..94669305 --- /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 00000000..b4095558 Binary files /dev/null and b/blockchains/ethereum/assets/0x858e985126543b5a066C4E8a5DAB0249C1d683f7/logo.png differ diff --git a/blockchains/ethereum/assets/0x8599112EC500eeb267e0141D3A5ee40316400913/info.json b/blockchains/ethereum/assets/0x8599112EC500eeb267e0141D3A5ee40316400913/info.json new file mode 100644 index 00000000..a373715f --- /dev/null +++ b/blockchains/ethereum/assets/0x8599112EC500eeb267e0141D3A5ee40316400913/info.json @@ -0,0 +1,11 @@ +{ + "name": "HOLLYWOODCOIN", + "symbol": "HLWD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8599112EC500eeb267e0141D3A5ee40316400913", + "status": "abandoned", + "id": "0x8599112EC500eeb267e0141D3A5ee40316400913" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8599112EC500eeb267e0141D3A5ee40316400913/logo.png b/blockchains/ethereum/assets/0x8599112EC500eeb267e0141D3A5ee40316400913/logo.png new file mode 100755 index 00000000..37bf8229 Binary files /dev/null and b/blockchains/ethereum/assets/0x8599112EC500eeb267e0141D3A5ee40316400913/logo.png differ diff --git a/blockchains/ethereum/assets/0x85993bE4EF5BEc00B62BA7e46a8a70f353182b3e/info.json b/blockchains/ethereum/assets/0x85993bE4EF5BEc00B62BA7e46a8a70f353182b3e/info.json new file mode 100644 index 00000000..c6d473e9 --- /dev/null +++ b/blockchains/ethereum/assets/0x85993bE4EF5BEc00B62BA7e46a8a70f353182b3e/info.json @@ -0,0 +1,11 @@ +{ + "name": "YiYouBao", + "symbol": "YYB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x85993bE4EF5BEc00B62BA7e46a8a70f353182b3e", + "status": "abandoned", + "id": "0x85993bE4EF5BEc00B62BA7e46a8a70f353182b3e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x85993bE4EF5BEc00B62BA7e46a8a70f353182b3e/logo.png b/blockchains/ethereum/assets/0x85993bE4EF5BEc00B62BA7e46a8a70f353182b3e/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x85993bE4EF5BEc00B62BA7e46a8a70f353182b3e/logo.png differ diff --git a/blockchains/ethereum/assets/0x859a9C0b44cb7066D956a958B0b82e54C9e44b4B/info.json b/blockchains/ethereum/assets/0x859a9C0b44cb7066D956a958B0b82e54C9e44b4B/info.json new file mode 100644 index 00000000..ffd9944d --- /dev/null +++ b/blockchains/ethereum/assets/0x859a9C0b44cb7066D956a958B0b82e54C9e44b4B/info.json @@ -0,0 +1,11 @@ +{ + "name": "iEthereum", + "symbol": "iETH", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x859a9C0b44cb7066D956a958B0b82e54C9e44b4B", + "status": "abandoned", + "id": "0x859a9C0b44cb7066D956a958B0b82e54C9e44b4B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x859a9C0b44cb7066D956a958B0b82e54C9e44b4B/logo.png b/blockchains/ethereum/assets/0x859a9C0b44cb7066D956a958B0b82e54C9e44b4B/logo.png new file mode 100644 index 00000000..6f63f562 Binary files /dev/null and b/blockchains/ethereum/assets/0x859a9C0b44cb7066D956a958B0b82e54C9e44b4B/logo.png differ diff --git a/blockchains/ethereum/assets/0x85D7d752C380F7B2BF61878386474778782207FB/info.json b/blockchains/ethereum/assets/0x85D7d752C380F7B2BF61878386474778782207FB/info.json new file mode 100644 index 00000000..64aed91a --- /dev/null +++ b/blockchains/ethereum/assets/0x85D7d752C380F7B2BF61878386474778782207FB/info.json @@ -0,0 +1,11 @@ +{ + "name": "CasualGames Token", + "symbol": "CaGa", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x85D7d752C380F7B2BF61878386474778782207FB", + "status": "abandoned", + "id": "0x85D7d752C380F7B2BF61878386474778782207FB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x85D7d752C380F7B2BF61878386474778782207FB/logo.png b/blockchains/ethereum/assets/0x85D7d752C380F7B2BF61878386474778782207FB/logo.png new file mode 100644 index 00000000..54277b1d Binary files /dev/null and b/blockchains/ethereum/assets/0x85D7d752C380F7B2BF61878386474778782207FB/logo.png differ diff --git a/blockchains/ethereum/assets/0x85Dd50BB40b7770564d35D71B0C6EAf3ec1d9603/info.json b/blockchains/ethereum/assets/0x85Dd50BB40b7770564d35D71B0C6EAf3ec1d9603/info.json new file mode 100644 index 00000000..27c3afae --- /dev/null +++ b/blockchains/ethereum/assets/0x85Dd50BB40b7770564d35D71B0C6EAf3ec1d9603/info.json @@ -0,0 +1,11 @@ +{ + "name": "Founder Chibi Fighters", + "symbol": "FCF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x85Dd50BB40b7770564d35D71B0C6EAf3ec1d9603", + "status": "abandoned", + "id": "0x85Dd50BB40b7770564d35D71B0C6EAf3ec1d9603" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x85Dd50BB40b7770564d35D71B0C6EAf3ec1d9603/logo.png b/blockchains/ethereum/assets/0x85Dd50BB40b7770564d35D71B0C6EAf3ec1d9603/logo.png new file mode 100755 index 00000000..b599f580 Binary files /dev/null and b/blockchains/ethereum/assets/0x85Dd50BB40b7770564d35D71B0C6EAf3ec1d9603/logo.png differ diff --git a/blockchains/ethereum/assets/0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC/info.json b/blockchains/ethereum/assets/0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC/info.json new file mode 100644 index 00000000..81625caf --- /dev/null +++ b/blockchains/ethereum/assets/0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC/info.json @@ -0,0 +1,36 @@ +{ + "name": "KEEP Token", + "symbol": "KEEP", + "type": "ERC20", + "decimals": 18, + "description": "Keep technology is what sets tBTC apart as the only decentralized solution for Bitcoin on Ethereum.", + "website": "https://keep.network", + "explorer": "https://etherscan.io/token/0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC", + "status": "active", + "id": "0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/keep-network/keep-core" + }, + { + "name": "x", + "url": "https://x.com/keep_project" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/KeepNetwork" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/keep-network/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/keep-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC/logo.png b/blockchains/ethereum/assets/0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC/logo.png new file mode 100644 index 00000000..b665014a Binary files /dev/null and b/blockchains/ethereum/assets/0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC/logo.png differ diff --git a/blockchains/ethereum/assets/0x85FCfD9438E4c071fcba6cf415c5FFef276d5064/info.json b/blockchains/ethereum/assets/0x85FCfD9438E4c071fcba6cf415c5FFef276d5064/info.json new file mode 100644 index 00000000..1492c108 --- /dev/null +++ b/blockchains/ethereum/assets/0x85FCfD9438E4c071fcba6cf415c5FFef276d5064/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoPro", + "symbol": "CPP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x85FCfD9438E4c071fcba6cf415c5FFef276d5064", + "status": "abandoned", + "id": "0x85FCfD9438E4c071fcba6cf415c5FFef276d5064" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x85FCfD9438E4c071fcba6cf415c5FFef276d5064/logo.png b/blockchains/ethereum/assets/0x85FCfD9438E4c071fcba6cf415c5FFef276d5064/logo.png new file mode 100644 index 00000000..eb264ae7 Binary files /dev/null and b/blockchains/ethereum/assets/0x85FCfD9438E4c071fcba6cf415c5FFef276d5064/logo.png differ diff --git a/blockchains/ethereum/assets/0x85Fc58443F809bEA3e1fb70A84F582FE84d624Ce/info.json b/blockchains/ethereum/assets/0x85Fc58443F809bEA3e1fb70A84F582FE84d624Ce/info.json new file mode 100644 index 00000000..33a6e9e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x85Fc58443F809bEA3e1fb70A84F582FE84d624Ce/info.json @@ -0,0 +1,11 @@ +{ + "name": " Economic​ Zone", + "symbol": "ECON", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x85Fc58443F809bEA3e1fb70A84F582FE84d624Ce", + "status": "abandoned", + "id": "0x85Fc58443F809bEA3e1fb70A84F582FE84d624Ce" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x85Fc58443F809bEA3e1fb70A84F582FE84d624Ce/logo.png b/blockchains/ethereum/assets/0x85Fc58443F809bEA3e1fb70A84F582FE84d624Ce/logo.png new file mode 100644 index 00000000..c78e7f34 Binary files /dev/null and b/blockchains/ethereum/assets/0x85Fc58443F809bEA3e1fb70A84F582FE84d624Ce/logo.png differ diff --git a/blockchains/ethereum/assets/0x85ca6710D0F1D511d130f6935eDDA88ACBD921bD/info.json b/blockchains/ethereum/assets/0x85ca6710D0F1D511d130f6935eDDA88ACBD921bD/info.json new file mode 100644 index 00000000..a2788087 --- /dev/null +++ b/blockchains/ethereum/assets/0x85ca6710D0F1D511d130f6935eDDA88ACBD921bD/info.json @@ -0,0 +1,11 @@ +{ + "name": "PLGToken", + "symbol": "PLG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://pledgecamp.com/", + "explorer": "https://etherscan.io/token/0x85ca6710D0F1D511d130f6935eDDA88ACBD921bD", + "status": "abandoned", + "id": "0x85ca6710D0F1D511d130f6935eDDA88ACBD921bD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x85ca6710D0F1D511d130f6935eDDA88ACBD921bD/logo.png b/blockchains/ethereum/assets/0x85ca6710D0F1D511d130f6935eDDA88ACBD921bD/logo.png new file mode 100644 index 00000000..333a43a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x85ca6710D0F1D511d130f6935eDDA88ACBD921bD/logo.png differ diff --git a/blockchains/ethereum/assets/0x85ccda048E7C23bB40bEe51cB9E166058350774d/info.json b/blockchains/ethereum/assets/0x85ccda048E7C23bB40bEe51cB9E166058350774d/info.json new file mode 100644 index 00000000..737863d6 --- /dev/null +++ b/blockchains/ethereum/assets/0x85ccda048E7C23bB40bEe51cB9E166058350774d/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C565903", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x85ccda048E7C23bB40bEe51cB9E166058350774d", + "status": "abandoned", + "id": "0x85ccda048E7C23bB40bEe51cB9E166058350774d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x85ccda048E7C23bB40bEe51cB9E166058350774d/logo.png b/blockchains/ethereum/assets/0x85ccda048E7C23bB40bEe51cB9E166058350774d/logo.png new file mode 100644 index 00000000..35523e0e Binary files /dev/null and b/blockchains/ethereum/assets/0x85ccda048E7C23bB40bEe51cB9E166058350774d/logo.png differ diff --git a/blockchains/ethereum/assets/0x85df09a6aAE0337d10A70CC3f079E9Eb9b66ef10/info.json b/blockchains/ethereum/assets/0x85df09a6aAE0337d10A70CC3f079E9Eb9b66ef10/info.json new file mode 100644 index 00000000..114b257c --- /dev/null +++ b/blockchains/ethereum/assets/0x85df09a6aAE0337d10A70CC3f079E9Eb9b66ef10/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R916558", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x85df09a6aAE0337d10A70CC3f079E9Eb9b66ef10", + "status": "abandoned", + "id": "0x85df09a6aAE0337d10A70CC3f079E9Eb9b66ef10" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x85df09a6aAE0337d10A70CC3f079E9Eb9b66ef10/logo.png b/blockchains/ethereum/assets/0x85df09a6aAE0337d10A70CC3f079E9Eb9b66ef10/logo.png new file mode 100644 index 00000000..127c5f5e Binary files /dev/null and b/blockchains/ethereum/assets/0x85df09a6aAE0337d10A70CC3f079E9Eb9b66ef10/logo.png differ diff --git a/blockchains/ethereum/assets/0x85eBa557C06c348395fD49e35d860F58a4F7c95a/info.json b/blockchains/ethereum/assets/0x85eBa557C06c348395fD49e35d860F58a4F7c95a/info.json new file mode 100644 index 00000000..b53a541f --- /dev/null +++ b/blockchains/ethereum/assets/0x85eBa557C06c348395fD49e35d860F58a4F7c95a/info.json @@ -0,0 +1,11 @@ +{ + "name": "H3X", + "symbol": "H3X", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://h3x.exchange/", + "explorer": "https://etherscan.io/token/0x85eBa557C06c348395fD49e35d860F58a4F7c95a", + "status": "abandoned", + "id": "0x85eBa557C06c348395fD49e35d860F58a4F7c95a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x85eBa557C06c348395fD49e35d860F58a4F7c95a/logo.png b/blockchains/ethereum/assets/0x85eBa557C06c348395fD49e35d860F58a4F7c95a/logo.png new file mode 100644 index 00000000..de118cd2 Binary files /dev/null and b/blockchains/ethereum/assets/0x85eBa557C06c348395fD49e35d860F58a4F7c95a/logo.png differ diff --git a/blockchains/ethereum/assets/0x85eF130106f3e3BE4D9F53eDd2E6ff713272e7dc/info.json b/blockchains/ethereum/assets/0x85eF130106f3e3BE4D9F53eDd2E6ff713272e7dc/info.json new file mode 100644 index 00000000..d699a0d6 --- /dev/null +++ b/blockchains/ethereum/assets/0x85eF130106f3e3BE4D9F53eDd2E6ff713272e7dc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coin: by Insomnia", + "symbol": "CBI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x85eF130106f3e3BE4D9F53eDd2E6ff713272e7dc", + "status": "abandoned", + "id": "0x85eF130106f3e3BE4D9F53eDd2E6ff713272e7dc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x85eF130106f3e3BE4D9F53eDd2E6ff713272e7dc/logo.png b/blockchains/ethereum/assets/0x85eF130106f3e3BE4D9F53eDd2E6ff713272e7dc/logo.png new file mode 100755 index 00000000..6bf81bbf Binary files /dev/null and b/blockchains/ethereum/assets/0x85eF130106f3e3BE4D9F53eDd2E6ff713272e7dc/logo.png differ diff --git a/blockchains/ethereum/assets/0x85f138bfEE4ef8e540890CFb48F620571d67Eda3/info.json b/blockchains/ethereum/assets/0x85f138bfEE4ef8e540890CFb48F620571d67Eda3/info.json new file mode 100644 index 00000000..477bdb71 --- /dev/null +++ b/blockchains/ethereum/assets/0x85f138bfEE4ef8e540890CFb48F620571d67Eda3/info.json @@ -0,0 +1,14 @@ +{ + "name": "AVAX (Portal)", + "type": "ERC20", + "symbol": "AVAX", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.avax.network/", + "explorer": "https://etherscan.io/token/0x85f138bfEE4ef8e540890CFb48F620571d67Eda3", + "status": "active", + "id": "0x85f138bfEE4ef8e540890CFb48F620571d67Eda3", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x85f138bfEE4ef8e540890CFb48F620571d67Eda3/logo.png b/blockchains/ethereum/assets/0x85f138bfEE4ef8e540890CFb48F620571d67Eda3/logo.png new file mode 100644 index 00000000..5cfbd9ab Binary files /dev/null and b/blockchains/ethereum/assets/0x85f138bfEE4ef8e540890CFb48F620571d67Eda3/logo.png differ diff --git a/blockchains/ethereum/assets/0x85f6eB2BD5a062f5F8560BE93FB7147e16c81472/info.json b/blockchains/ethereum/assets/0x85f6eB2BD5a062f5F8560BE93FB7147e16c81472/info.json new file mode 100644 index 00000000..59576044 --- /dev/null +++ b/blockchains/ethereum/assets/0x85f6eB2BD5a062f5F8560BE93FB7147e16c81472/info.json @@ -0,0 +1,11 @@ +{ + "name": "Franklin", + "type": "ERC20", + "symbol": "FLy", + "decimals": 4, + "website": "https://tokenfly.co/", + "description": "The FLy token was designed to provide customers with an opportunity of getting discounts and additional benefits from VRM and its eco-system. The token should support company development by involving people in long-term relationships and building a strong society of institutional and retail partners around the company. FLy is an ERC20 token, but the company will reserve the right to move a part of the token supply to different blockchain networks in the future.", + "explorer": "https://etherscan.io/token/0x85f6eB2BD5a062f5F8560BE93FB7147e16c81472", + "status": "active", + "id": "0x85f6eB2BD5a062f5F8560BE93FB7147e16c81472" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x85f6eB2BD5a062f5F8560BE93FB7147e16c81472/logo.png b/blockchains/ethereum/assets/0x85f6eB2BD5a062f5F8560BE93FB7147e16c81472/logo.png new file mode 100644 index 00000000..88bfa4bd Binary files /dev/null and b/blockchains/ethereum/assets/0x85f6eB2BD5a062f5F8560BE93FB7147e16c81472/logo.png differ diff --git a/blockchains/ethereum/assets/0x8606a8F28e1e2FD50B9074d65C01548B1F040B32/info.json b/blockchains/ethereum/assets/0x8606a8F28e1e2FD50B9074d65C01548B1F040B32/info.json new file mode 100644 index 00000000..f39294d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x8606a8F28e1e2FD50B9074d65C01548B1F040B32/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptrust", + "symbol": "CTRT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://cryptrust.io/platform", + "explorer": "https://etherscan.io/token/0x8606a8F28e1e2FD50B9074d65C01548B1F040B32", + "status": "abandoned", + "id": "0x8606a8F28e1e2FD50B9074d65C01548B1F040B32" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8606a8F28e1e2FD50B9074d65C01548B1F040B32/logo.png b/blockchains/ethereum/assets/0x8606a8F28e1e2FD50B9074d65C01548B1F040B32/logo.png new file mode 100644 index 00000000..e4ab01e0 Binary files /dev/null and b/blockchains/ethereum/assets/0x8606a8F28e1e2FD50B9074d65C01548B1F040B32/logo.png differ diff --git a/blockchains/ethereum/assets/0x86149C67e57c749d0A12e6D6c2Bf1b616619BB29/info.json b/blockchains/ethereum/assets/0x86149C67e57c749d0A12e6D6c2Bf1b616619BB29/info.json new file mode 100644 index 00000000..fdbbcb84 --- /dev/null +++ b/blockchains/ethereum/assets/0x86149C67e57c749d0A12e6D6c2Bf1b616619BB29/info.json @@ -0,0 +1,11 @@ +{ + "name": "BANCACY", + "symbol": "BNY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bancacy.com", + "explorer": "https://etherscan.io/token/0x86149C67e57c749d0A12e6D6c2Bf1b616619BB29", + "status": "abandoned", + "id": "0x86149C67e57c749d0A12e6D6c2Bf1b616619BB29" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86149C67e57c749d0A12e6D6c2Bf1b616619BB29/logo.png b/blockchains/ethereum/assets/0x86149C67e57c749d0A12e6D6c2Bf1b616619BB29/logo.png new file mode 100644 index 00000000..b889b85b Binary files /dev/null and b/blockchains/ethereum/assets/0x86149C67e57c749d0A12e6D6c2Bf1b616619BB29/logo.png differ diff --git a/blockchains/ethereum/assets/0x861d899E74eC0e84fa8A15Ba58088Bb3BACcb6FA/info.json b/blockchains/ethereum/assets/0x861d899E74eC0e84fa8A15Ba58088Bb3BACcb6FA/info.json new file mode 100644 index 00000000..d752fdd9 --- /dev/null +++ b/blockchains/ethereum/assets/0x861d899E74eC0e84fa8A15Ba58088Bb3BACcb6FA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tether DeFi (USDD)", + "website": "https://tetherdefi.com", + "description": "Tether DeFi (USDD) is called a stablecoin because it was originally designed to always be worth $1.00, maintaining $1.00 in reserves for each tether issued. Nevertheless, Tether DeFi (USDD) Limited states that owners of tethers have no contractual right, other legal claims, or guarantee that tethers will be redeemed or exchanged for dollars.", + "explorer": "https://etherscan.io/token/0x861d899E74eC0e84fa8A15Ba58088Bb3BACcb6FA", + "type": "ERC20", + "symbol": "USDD", + "decimals": 10, + "status": "active", + "id": "0x861d899E74eC0e84fa8A15Ba58088Bb3BACcb6FA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x861d899E74eC0e84fa8A15Ba58088Bb3BACcb6FA/logo.png b/blockchains/ethereum/assets/0x861d899E74eC0e84fa8A15Ba58088Bb3BACcb6FA/logo.png new file mode 100644 index 00000000..cde69eed Binary files /dev/null and b/blockchains/ethereum/assets/0x861d899E74eC0e84fa8A15Ba58088Bb3BACcb6FA/logo.png differ diff --git a/blockchains/ethereum/assets/0x8627ffCaDADe9C0c4dab4A82C73Ceae10C2B401D/info.json b/blockchains/ethereum/assets/0x8627ffCaDADe9C0c4dab4A82C73Ceae10C2B401D/info.json new file mode 100644 index 00000000..bd76cd2a --- /dev/null +++ b/blockchains/ethereum/assets/0x8627ffCaDADe9C0c4dab4A82C73Ceae10C2B401D/info.json @@ -0,0 +1,11 @@ +{ + "name": "FiberToken", + "symbol": "FBTK", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8627ffCaDADe9C0c4dab4A82C73Ceae10C2B401D", + "status": "abandoned", + "id": "0x8627ffCaDADe9C0c4dab4A82C73Ceae10C2B401D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8627ffCaDADe9C0c4dab4A82C73Ceae10C2B401D/logo.png b/blockchains/ethereum/assets/0x8627ffCaDADe9C0c4dab4A82C73Ceae10C2B401D/logo.png new file mode 100755 index 00000000..0049f851 Binary files /dev/null and b/blockchains/ethereum/assets/0x8627ffCaDADe9C0c4dab4A82C73Ceae10C2B401D/logo.png differ diff --git a/blockchains/ethereum/assets/0x862Da0A691bb0b74038377295f8fF523D0493eB4/info.json b/blockchains/ethereum/assets/0x862Da0A691bb0b74038377295f8fF523D0493eB4/info.json new file mode 100644 index 00000000..bee6f0e0 --- /dev/null +++ b/blockchains/ethereum/assets/0x862Da0A691bb0b74038377295f8fF523D0493eB4/info.json @@ -0,0 +1,11 @@ +{ + "name": "MINDOL", + "symbol": "MIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x862Da0A691bb0b74038377295f8fF523D0493eB4", + "status": "abandoned", + "id": "0x862Da0A691bb0b74038377295f8fF523D0493eB4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x862Da0A691bb0b74038377295f8fF523D0493eB4/logo.png b/blockchains/ethereum/assets/0x862Da0A691bb0b74038377295f8fF523D0493eB4/logo.png new file mode 100644 index 00000000..c227c2d8 Binary files /dev/null and b/blockchains/ethereum/assets/0x862Da0A691bb0b74038377295f8fF523D0493eB4/logo.png differ diff --git a/blockchains/ethereum/assets/0x862caA11AbE48c945D5361E80EaF19348C479240/info.json b/blockchains/ethereum/assets/0x862caA11AbE48c945D5361E80EaF19348C479240/info.json new file mode 100644 index 00000000..ccba5854 --- /dev/null +++ b/blockchains/ethereum/assets/0x862caA11AbE48c945D5361E80EaF19348C479240/info.json @@ -0,0 +1,32 @@ +{ + "name": "Hero", + "symbol": "HERO", + "type": "ERC20", + "decimals": 4, + "description": "The official token of all things in The Bad Crypto Podcast universe, including the show itself, Blockchain Heroes digital trading cards, The Nifty Show, The Nifty Box and more!", + "website": "https://bcheroes.com/", + "explorer": "https://etherscan.io/token/0x862caA11AbE48c945D5361E80EaF19348C479240", + "status": "active", + "id": "0x862caA11AbE48c945D5361E80EaF19348C479240", + "links": [ + { + "name": "telegram", + "url": "https://t.me/bcheroes" + }, + { + "name": "x", + "url": "https://x.com/badcrypto" + }, + { + "name": "discord", + "url": "https://discord.com/invite/NAWZfZBPm7" + }, + { + "name": "youtube", + "url": "https://youtube.com/badcryptopodcast" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x862caA11AbE48c945D5361E80EaF19348C479240/logo.png b/blockchains/ethereum/assets/0x862caA11AbE48c945D5361E80EaF19348C479240/logo.png new file mode 100644 index 00000000..f76b3feb Binary files /dev/null and b/blockchains/ethereum/assets/0x862caA11AbE48c945D5361E80EaF19348C479240/logo.png differ diff --git a/blockchains/ethereum/assets/0x8632F0Cec0Ca0C428Da7A31e758D65A92b06dF47/info.json b/blockchains/ethereum/assets/0x8632F0Cec0Ca0C428Da7A31e758D65A92b06dF47/info.json new file mode 100644 index 00000000..c0225091 --- /dev/null +++ b/blockchains/ethereum/assets/0x8632F0Cec0Ca0C428Da7A31e758D65A92b06dF47/info.json @@ -0,0 +1,11 @@ +{ + "name": "Banx coin", + "symbol": "BXN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8632F0Cec0Ca0C428Da7A31e758D65A92b06dF47", + "status": "abandoned", + "id": "0x8632F0Cec0Ca0C428Da7A31e758D65A92b06dF47" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8632F0Cec0Ca0C428Da7A31e758D65A92b06dF47/logo.png b/blockchains/ethereum/assets/0x8632F0Cec0Ca0C428Da7A31e758D65A92b06dF47/logo.png new file mode 100644 index 00000000..3d369cdd Binary files /dev/null and b/blockchains/ethereum/assets/0x8632F0Cec0Ca0C428Da7A31e758D65A92b06dF47/logo.png differ diff --git a/blockchains/ethereum/assets/0x8634F0689a502B3659f2b3c9E5650d365067B48A/info.json b/blockchains/ethereum/assets/0x8634F0689a502B3659f2b3c9E5650d365067B48A/info.json new file mode 100644 index 00000000..27306dcf --- /dev/null +++ b/blockchains/ethereum/assets/0x8634F0689a502B3659f2b3c9E5650d365067B48A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Motion", + "symbol": "MOTION", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8634F0689a502B3659f2b3c9E5650d365067B48A", + "status": "abandoned", + "id": "0x8634F0689a502B3659f2b3c9E5650d365067B48A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8634F0689a502B3659f2b3c9E5650d365067B48A/logo.png b/blockchains/ethereum/assets/0x8634F0689a502B3659f2b3c9E5650d365067B48A/logo.png new file mode 100644 index 00000000..3920d603 Binary files /dev/null and b/blockchains/ethereum/assets/0x8634F0689a502B3659f2b3c9E5650d365067B48A/logo.png differ diff --git a/blockchains/ethereum/assets/0x86367c0e517622DAcdab379f2de389c3C9524345/info.json b/blockchains/ethereum/assets/0x86367c0e517622DAcdab379f2de389c3C9524345/info.json new file mode 100644 index 00000000..ac61bc30 --- /dev/null +++ b/blockchains/ethereum/assets/0x86367c0e517622DAcdab379f2de389c3C9524345/info.json @@ -0,0 +1,33 @@ +{ + "name": "Universal US Dollar", + "website": "https://universalprotocol.io/", + "description": "The UPUSD is a fully-transparent, digital asset that is collateralized 1-to-1 with U.S. dollars to be held at U.S. domiciled, FDIC-insured banks.", + "explorer": "https://etherscan.io/token/0x86367c0e517622dacdab379f2de389c3c9524345", + "type": "ERC20", + "symbol": "UPUSD", + "decimals": 2, + "status": "active", + "id": "0x86367c0e517622DAcdab379f2de389c3C9524345", + "links": [ + { + "name": "reddit", + "url": "https://reddit.com/r/universalprotocol/" + }, + { + "name": "x", + "url": "https://x.com/UPPlatform" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/universal-us-dollar/" + }, + { + "name": "medium", + "url": "https://medium.com/universalprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/universalprotocolplatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86367c0e517622DAcdab379f2de389c3C9524345/logo.png b/blockchains/ethereum/assets/0x86367c0e517622DAcdab379f2de389c3C9524345/logo.png new file mode 100644 index 00000000..06906625 Binary files /dev/null and b/blockchains/ethereum/assets/0x86367c0e517622DAcdab379f2de389c3C9524345/logo.png differ diff --git a/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/info.json b/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/info.json new file mode 100644 index 00000000..04bc0775 --- /dev/null +++ b/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/info.json @@ -0,0 +1,38 @@ +{ + "name": "Prosper", + "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": "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 new file mode 100644 index 00000000..a42ef003 Binary files /dev/null and b/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/logo.png differ diff --git a/blockchains/ethereum/assets/0x865D176351f287fE1B0010805b110d08699C200A/info.json b/blockchains/ethereum/assets/0x865D176351f287fE1B0010805b110d08699C200A/info.json new file mode 100644 index 00000000..06908232 --- /dev/null +++ b/blockchains/ethereum/assets/0x865D176351f287fE1B0010805b110d08699C200A/info.json @@ -0,0 +1,11 @@ +{ + "name": "BananaCoin Extended", + "symbol": "BCO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x865D176351f287fE1B0010805b110d08699C200A", + "status": "abandoned", + "id": "0x865D176351f287fE1B0010805b110d08699C200A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x865D176351f287fE1B0010805b110d08699C200A/logo.png b/blockchains/ethereum/assets/0x865D176351f287fE1B0010805b110d08699C200A/logo.png new file mode 100755 index 00000000..8431b4f6 Binary files /dev/null and b/blockchains/ethereum/assets/0x865D176351f287fE1B0010805b110d08699C200A/logo.png differ diff --git a/blockchains/ethereum/assets/0x865bfD8232778F00CAe81315bf75ef1Fe6E30CDD/info.json b/blockchains/ethereum/assets/0x865bfD8232778F00CAe81315bf75ef1Fe6E30CDD/info.json new file mode 100644 index 00000000..6959a42c --- /dev/null +++ b/blockchains/ethereum/assets/0x865bfD8232778F00CAe81315bf75ef1Fe6E30CDD/info.json @@ -0,0 +1,11 @@ +{ + "name": "ABLE X Token", + "symbol": "ABLX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.able-project.io/en/index.php", + "explorer": "https://etherscan.io/token/0x865bfD8232778F00CAe81315bf75ef1Fe6E30CDD", + "status": "abandoned", + "id": "0x865bfD8232778F00CAe81315bf75ef1Fe6E30CDD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x865bfD8232778F00CAe81315bf75ef1Fe6E30CDD/logo.png b/blockchains/ethereum/assets/0x865bfD8232778F00CAe81315bf75ef1Fe6E30CDD/logo.png new file mode 100644 index 00000000..fb89f9a7 Binary files /dev/null and b/blockchains/ethereum/assets/0x865bfD8232778F00CAe81315bf75ef1Fe6E30CDD/logo.png differ diff --git a/blockchains/ethereum/assets/0x865e3707a580F9db89304005CddD050Ade8873eB/info.json b/blockchains/ethereum/assets/0x865e3707a580F9db89304005CddD050Ade8873eB/info.json new file mode 100644 index 00000000..c12d9800 --- /dev/null +++ b/blockchains/ethereum/assets/0x865e3707a580F9db89304005CddD050Ade8873eB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hire", + "symbol": "HIRE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x865e3707a580F9db89304005CddD050Ade8873eB", + "status": "abandoned", + "id": "0x865e3707a580F9db89304005CddD050Ade8873eB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x865e3707a580F9db89304005CddD050Ade8873eB/logo.png b/blockchains/ethereum/assets/0x865e3707a580F9db89304005CddD050Ade8873eB/logo.png new file mode 100644 index 00000000..1f362d6b Binary files /dev/null and b/blockchains/ethereum/assets/0x865e3707a580F9db89304005CddD050Ade8873eB/logo.png differ diff --git a/blockchains/ethereum/assets/0x865ec58b06bF6305B886793AA20A2da31D034E68/info.json b/blockchains/ethereum/assets/0x865ec58b06bF6305B886793AA20A2da31D034E68/info.json new file mode 100644 index 00000000..b02da3a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x865ec58b06bF6305B886793AA20A2da31D034E68/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moss Coin", + "symbol": "MOC", + "type": "ERC20", + "decimals": 18, + "description": "Moss Coin (MOC) is a cryptocurrency and operates on the Ethereum platform.", + "website": "http://moss.land", + "explorer": "https://etherscan.io/token/0x865ec58b06bF6305B886793AA20A2da31D034E68", + "status": "active", + "id": "0x865ec58b06bF6305B886793AA20A2da31D034E68" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x865ec58b06bF6305B886793AA20A2da31D034E68/logo.png b/blockchains/ethereum/assets/0x865ec58b06bF6305B886793AA20A2da31D034E68/logo.png new file mode 100755 index 00000000..75099539 Binary files /dev/null and b/blockchains/ethereum/assets/0x865ec58b06bF6305B886793AA20A2da31D034E68/logo.png differ diff --git a/blockchains/ethereum/assets/0x86772b1409b61c639EaAc9Ba0AcfBb6E238e5F83/info.json b/blockchains/ethereum/assets/0x86772b1409b61c639EaAc9Ba0AcfBb6E238e5F83/info.json new file mode 100644 index 00000000..39f8b193 --- /dev/null +++ b/blockchains/ethereum/assets/0x86772b1409b61c639EaAc9Ba0AcfBb6E238e5F83/info.json @@ -0,0 +1,12 @@ +{ + "name": "Indexed Finance", + "website": "https://indexed.finance", + "description": "Indexed Finance is a project focused on the development of passive portfolio management strategies for the Ethereum network.", + "explorer": "https://etherscan.io/token/0x86772b1409b61c639eaac9ba0acfbb6e238e5f83", + "research": "https://ndxfi.medium.com/introducing-indexed-finance-ndx-5d91137bde29", + "type": "ERC20", + "symbol": "NDX", + "decimals": 18, + "status": "active", + "id": "0x86772b1409b61c639EaAc9Ba0AcfBb6E238e5F83" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86772b1409b61c639EaAc9Ba0AcfBb6E238e5F83/logo.png b/blockchains/ethereum/assets/0x86772b1409b61c639EaAc9Ba0AcfBb6E238e5F83/logo.png new file mode 100644 index 00000000..008c7ef4 Binary files /dev/null and b/blockchains/ethereum/assets/0x86772b1409b61c639EaAc9Ba0AcfBb6E238e5F83/logo.png differ diff --git a/blockchains/ethereum/assets/0x86807Da5B92d31F67E128771CAcb85F3579646eA/info.json b/blockchains/ethereum/assets/0x86807Da5B92d31F67E128771CAcb85F3579646eA/info.json new file mode 100644 index 00000000..7688f673 --- /dev/null +++ b/blockchains/ethereum/assets/0x86807Da5B92d31F67E128771CAcb85F3579646eA/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Short TRX Token", + "symbol": "TRXBEAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ftx.com/tokens/TRXBEAR", + "explorer": "https://etherscan.io/token/0x86807Da5B92d31F67E128771CAcb85F3579646eA", + "status": "abandoned", + "id": "0x86807Da5B92d31F67E128771CAcb85F3579646eA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86807Da5B92d31F67E128771CAcb85F3579646eA/logo.png b/blockchains/ethereum/assets/0x86807Da5B92d31F67E128771CAcb85F3579646eA/logo.png new file mode 100644 index 00000000..a8cc1f57 Binary files /dev/null and b/blockchains/ethereum/assets/0x86807Da5B92d31F67E128771CAcb85F3579646eA/logo.png differ diff --git a/blockchains/ethereum/assets/0x86876a5fCAcb52a197f194A2c8b2166Af327a6da/info.json b/blockchains/ethereum/assets/0x86876a5fCAcb52a197f194A2c8b2166Af327a6da/info.json new file mode 100644 index 00000000..de231977 --- /dev/null +++ b/blockchains/ethereum/assets/0x86876a5fCAcb52a197f194A2c8b2166Af327a6da/info.json @@ -0,0 +1,11 @@ +{ + "name": "FabulousFunds", + "symbol": "FAB", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x86876a5fCAcb52a197f194A2c8b2166Af327a6da", + "status": "abandoned", + "id": "0x86876a5fCAcb52a197f194A2c8b2166Af327a6da" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86876a5fCAcb52a197f194A2c8b2166Af327a6da/logo.png b/blockchains/ethereum/assets/0x86876a5fCAcb52a197f194A2c8b2166Af327a6da/logo.png new file mode 100644 index 00000000..4147e7a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x86876a5fCAcb52a197f194A2c8b2166Af327a6da/logo.png differ diff --git a/blockchains/ethereum/assets/0x86949Dc8043A5fD7619A1289d65964aD5ec3D25c/info.json b/blockchains/ethereum/assets/0x86949Dc8043A5fD7619A1289d65964aD5ec3D25c/info.json new file mode 100644 index 00000000..5ae0b396 --- /dev/null +++ b/blockchains/ethereum/assets/0x86949Dc8043A5fD7619A1289d65964aD5ec3D25c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gamechain System", + "symbol": "GCS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x86949Dc8043A5fD7619A1289d65964aD5ec3D25c", + "status": "abandoned", + "id": "0x86949Dc8043A5fD7619A1289d65964aD5ec3D25c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86949Dc8043A5fD7619A1289d65964aD5ec3D25c/logo.png b/blockchains/ethereum/assets/0x86949Dc8043A5fD7619A1289d65964aD5ec3D25c/logo.png new file mode 100644 index 00000000..76968f4e Binary files /dev/null and b/blockchains/ethereum/assets/0x86949Dc8043A5fD7619A1289d65964aD5ec3D25c/logo.png differ diff --git a/blockchains/ethereum/assets/0x869b1F57380aE501d387b19262EFD3C0Eb7501b0/info.json b/blockchains/ethereum/assets/0x869b1F57380aE501d387b19262EFD3C0Eb7501b0/info.json new file mode 100644 index 00000000..97212a46 --- /dev/null +++ b/blockchains/ethereum/assets/0x869b1F57380aE501d387b19262EFD3C0Eb7501b0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Oxycoin", + "symbol": "OXY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://oxycoin.io/", + "explorer": "https://etherscan.io/token/0x869b1F57380aE501d387b19262EFD3C0Eb7501b0", + "status": "abandoned", + "id": "0x869b1F57380aE501d387b19262EFD3C0Eb7501b0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x869b1F57380aE501d387b19262EFD3C0Eb7501b0/logo.png b/blockchains/ethereum/assets/0x869b1F57380aE501d387b19262EFD3C0Eb7501b0/logo.png new file mode 100644 index 00000000..f3af0dd8 Binary files /dev/null and b/blockchains/ethereum/assets/0x869b1F57380aE501d387b19262EFD3C0Eb7501b0/logo.png differ diff --git a/blockchains/ethereum/assets/0x86A635EccEFFfA70Ff8A6DB29DA9C8DB288E40D0/info.json b/blockchains/ethereum/assets/0x86A635EccEFFfA70Ff8A6DB29DA9C8DB288E40D0/info.json new file mode 100644 index 00000000..bd716f24 --- /dev/null +++ b/blockchains/ethereum/assets/0x86A635EccEFFfA70Ff8A6DB29DA9C8DB288E40D0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Augmint Crypto Euro", + "symbol": "AEUR", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x86A635EccEFFfA70Ff8A6DB29DA9C8DB288E40D0", + "status": "abandoned", + "id": "0x86A635EccEFFfA70Ff8A6DB29DA9C8DB288E40D0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86A635EccEFFfA70Ff8A6DB29DA9C8DB288E40D0/logo.png b/blockchains/ethereum/assets/0x86A635EccEFFfA70Ff8A6DB29DA9C8DB288E40D0/logo.png new file mode 100644 index 00000000..d1619db8 Binary files /dev/null and b/blockchains/ethereum/assets/0x86A635EccEFFfA70Ff8A6DB29DA9C8DB288E40D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x86C31E6da2190a1FFd39A36990a44174D0A8be15/info.json b/blockchains/ethereum/assets/0x86C31E6da2190a1FFd39A36990a44174D0A8be15/info.json new file mode 100644 index 00000000..57803ce6 --- /dev/null +++ b/blockchains/ethereum/assets/0x86C31E6da2190a1FFd39A36990a44174D0A8be15/info.json @@ -0,0 +1,11 @@ +{ + "name": "VianeX", + "symbol": "VIX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x86C31E6da2190a1FFd39A36990a44174D0A8be15", + "status": "abandoned", + "id": "0x86C31E6da2190a1FFd39A36990a44174D0A8be15" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86C31E6da2190a1FFd39A36990a44174D0A8be15/logo.png b/blockchains/ethereum/assets/0x86C31E6da2190a1FFd39A36990a44174D0A8be15/logo.png new file mode 100644 index 00000000..1da849cd Binary files /dev/null and b/blockchains/ethereum/assets/0x86C31E6da2190a1FFd39A36990a44174D0A8be15/logo.png differ diff --git a/blockchains/ethereum/assets/0x86E288793B6B9eb05f38758D166c44bF3d643Bcf/info.json b/blockchains/ethereum/assets/0x86E288793B6B9eb05f38758D166c44bF3d643Bcf/info.json new file mode 100644 index 00000000..9accaecc --- /dev/null +++ b/blockchains/ethereum/assets/0x86E288793B6B9eb05f38758D166c44bF3d643Bcf/info.json @@ -0,0 +1,33 @@ +{ + "name": "CreditDefi", + "website": "https://creditdefi.org/", + "description": "Collection of digital currency services Pay, exchange, collect, send, earn and receive money. Superfast and easy", + "explorer": "https://etherscan.io/token/0x86E288793B6B9eb05f38758D166c44bF3d643Bcf", + "type": "ERC20", + "symbol": "CRD", + "decimals": 18, + "status": "active", + "id": "0x86E288793B6B9eb05f38758D166c44bF3d643Bcf", + "links": [ + { + "name": "github", + "url": "https://github.com/Creditdefi/CRD" + }, + { + "name": "x", + "url": "https://x.com/credit_defi" + }, + { + "name": "facebook", + "url": "https://facebook.com/CreditDefi-100459715148303" + }, + { + "name": "medium", + "url": "https://medium.com/@Creditdefi6" + }, + { + "name": "whitepaper", + "url": "https://office.creditdefi.org/docs/crd-whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86E288793B6B9eb05f38758D166c44bF3d643Bcf/logo.png b/blockchains/ethereum/assets/0x86E288793B6B9eb05f38758D166c44bF3d643Bcf/logo.png new file mode 100644 index 00000000..e468e778 Binary files /dev/null and b/blockchains/ethereum/assets/0x86E288793B6B9eb05f38758D166c44bF3d643Bcf/logo.png differ diff --git a/blockchains/ethereum/assets/0x86E44543164D9b97B14ef7f6f3aB7bA670CAB346/info.json b/blockchains/ethereum/assets/0x86E44543164D9b97B14ef7f6f3aB7bA670CAB346/info.json new file mode 100644 index 00000000..5a8eae1f --- /dev/null +++ b/blockchains/ethereum/assets/0x86E44543164D9b97B14ef7f6f3aB7bA670CAB346/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "\"\"", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://quinads.com/", + "explorer": "https://etherscan.io/token/0x86E44543164D9b97B14ef7f6f3aB7bA670CAB346", + "status": "abandoned", + "id": "0x86E44543164D9b97B14ef7f6f3aB7bA670CAB346" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86E44543164D9b97B14ef7f6f3aB7bA670CAB346/logo.png b/blockchains/ethereum/assets/0x86E44543164D9b97B14ef7f6f3aB7bA670CAB346/logo.png new file mode 100644 index 00000000..4957a0c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x86E44543164D9b97B14ef7f6f3aB7bA670CAB346/logo.png differ diff --git a/blockchains/ethereum/assets/0x86E56f3c89a14528858e58B3De48c074538BAf2c/info.json b/blockchains/ethereum/assets/0x86E56f3c89a14528858e58B3De48c074538BAf2c/info.json new file mode 100644 index 00000000..3a1f34e5 --- /dev/null +++ b/blockchains/ethereum/assets/0x86E56f3c89a14528858e58B3De48c074538BAf2c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Evolution Land Global Token", + "symbol": "RING", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.evolution.land", + "explorer": "https://etherscan.io/token/0x86E56f3c89a14528858e58B3De48c074538BAf2c", + "status": "abandoned", + "id": "0x86E56f3c89a14528858e58B3De48c074538BAf2c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86E56f3c89a14528858e58B3De48c074538BAf2c/logo.png b/blockchains/ethereum/assets/0x86E56f3c89a14528858e58B3De48c074538BAf2c/logo.png new file mode 100755 index 00000000..77133e55 Binary files /dev/null and b/blockchains/ethereum/assets/0x86E56f3c89a14528858e58B3De48c074538BAf2c/logo.png differ diff --git a/blockchains/ethereum/assets/0x86F2E94D5886f005fa47F7c804C75Eb4427144b5/info.json b/blockchains/ethereum/assets/0x86F2E94D5886f005fa47F7c804C75Eb4427144b5/info.json new file mode 100644 index 00000000..2267070e --- /dev/null +++ b/blockchains/ethereum/assets/0x86F2E94D5886f005fa47F7c804C75Eb4427144b5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Benex", + "symbol": "BNX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x86F2E94D5886f005fa47F7c804C75Eb4427144b5", + "status": "abandoned", + "id": "0x86F2E94D5886f005fa47F7c804C75Eb4427144b5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86F2E94D5886f005fa47F7c804C75Eb4427144b5/logo.png b/blockchains/ethereum/assets/0x86F2E94D5886f005fa47F7c804C75Eb4427144b5/logo.png new file mode 100644 index 00000000..95e607f8 Binary files /dev/null and b/blockchains/ethereum/assets/0x86F2E94D5886f005fa47F7c804C75Eb4427144b5/logo.png differ diff --git a/blockchains/ethereum/assets/0x86FADb80d8D2cff3C3680819E4da99C10232Ba0F/info.json b/blockchains/ethereum/assets/0x86FADb80d8D2cff3C3680819E4da99C10232Ba0F/info.json new file mode 100644 index 00000000..7c9b81d2 --- /dev/null +++ b/blockchains/ethereum/assets/0x86FADb80d8D2cff3C3680819E4da99C10232Ba0F/info.json @@ -0,0 +1,11 @@ +{ + "name": "EURBASE Stablecoin", + "symbol": "EBASE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x86FADb80d8D2cff3C3680819E4da99C10232Ba0F", + "status": "abandoned", + "id": "0x86FADb80d8D2cff3C3680819E4da99C10232Ba0F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86FADb80d8D2cff3C3680819E4da99C10232Ba0F/logo.png b/blockchains/ethereum/assets/0x86FADb80d8D2cff3C3680819E4da99C10232Ba0F/logo.png new file mode 100644 index 00000000..d13d83fb Binary files /dev/null and b/blockchains/ethereum/assets/0x86FADb80d8D2cff3C3680819E4da99C10232Ba0F/logo.png differ diff --git a/blockchains/ethereum/assets/0x86Fa049857E0209aa7D9e616F7eb3b3B78ECfdb0/info.json b/blockchains/ethereum/assets/0x86Fa049857E0209aa7D9e616F7eb3b3B78ECfdb0/info.json new file mode 100644 index 00000000..07b24fd8 --- /dev/null +++ b/blockchains/ethereum/assets/0x86Fa049857E0209aa7D9e616F7eb3b3B78ECfdb0/info.json @@ -0,0 +1,11 @@ +{ + "name": "EOS", + "type": "ERC20", + "symbol": "EOS", + "decimals": 18, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0x86fa049857e0209aa7d9e616f7eb3b3b78ecfdb0", + "status": "active", + "id": "0x86Fa049857E0209aa7D9e616F7eb3b3B78ECfdb0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86Fa049857E0209aa7D9e616F7eb3b3B78ECfdb0/logo.png b/blockchains/ethereum/assets/0x86Fa049857E0209aa7D9e616F7eb3b3B78ECfdb0/logo.png new file mode 100644 index 00000000..1cc7334b Binary files /dev/null and b/blockchains/ethereum/assets/0x86Fa049857E0209aa7D9e616F7eb3b3B78ECfdb0/logo.png differ diff --git a/blockchains/ethereum/assets/0x86Faa4988E3F3fd862f0f794F1F25270f6038cE9/info.json b/blockchains/ethereum/assets/0x86Faa4988E3F3fd862f0f794F1F25270f6038cE9/info.json new file mode 100644 index 00000000..ec356480 --- /dev/null +++ b/blockchains/ethereum/assets/0x86Faa4988E3F3fd862f0f794F1F25270f6038cE9/info.json @@ -0,0 +1,11 @@ +{ + "name": "GlobalCitizenCoin", + "symbol": "GCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x86Faa4988E3F3fd862f0f794F1F25270f6038cE9", + "status": "abandoned", + "id": "0x86Faa4988E3F3fd862f0f794F1F25270f6038cE9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86Faa4988E3F3fd862f0f794F1F25270f6038cE9/logo.png b/blockchains/ethereum/assets/0x86Faa4988E3F3fd862f0f794F1F25270f6038cE9/logo.png new file mode 100755 index 00000000..8e5eadd5 Binary files /dev/null and b/blockchains/ethereum/assets/0x86Faa4988E3F3fd862f0f794F1F25270f6038cE9/logo.png differ diff --git a/blockchains/ethereum/assets/0x86aF39a0e3B774d03ff7b57ab91018A62776F1CA/info.json b/blockchains/ethereum/assets/0x86aF39a0e3B774d03ff7b57ab91018A62776F1CA/info.json new file mode 100644 index 00000000..e2c37e9b --- /dev/null +++ b/blockchains/ethereum/assets/0x86aF39a0e3B774d03ff7b57ab91018A62776F1CA/info.json @@ -0,0 +1,11 @@ +{ + "name": "BBF15ChallengeCoin", + "symbol": "BBF15", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x86aF39a0e3B774d03ff7b57ab91018A62776F1CA", + "status": "abandoned", + "id": "0x86aF39a0e3B774d03ff7b57ab91018A62776F1CA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86aF39a0e3B774d03ff7b57ab91018A62776F1CA/logo.png b/blockchains/ethereum/assets/0x86aF39a0e3B774d03ff7b57ab91018A62776F1CA/logo.png new file mode 100755 index 00000000..a7d947ac Binary files /dev/null and b/blockchains/ethereum/assets/0x86aF39a0e3B774d03ff7b57ab91018A62776F1CA/logo.png differ diff --git a/blockchains/ethereum/assets/0x86e6A4F512b1290c043970B04E0b570D4FC98291/info.json b/blockchains/ethereum/assets/0x86e6A4F512b1290c043970B04E0b570D4FC98291/info.json new file mode 100644 index 00000000..75ad3b8b --- /dev/null +++ b/blockchains/ethereum/assets/0x86e6A4F512b1290c043970B04E0b570D4FC98291/info.json @@ -0,0 +1,11 @@ +{ + "name": "IntelliShare Token", + "symbol": "INE", + "type": "ERC20", + "decimals": 18, + "description": "IntelliShare describes itself as a distributed network based on mesh technology. It reportedly customizes private networks for communities and provides network support for commercial uses.", + "website": "http://ine.io", + "explorer": "https://etherscan.io/token/0x86e6A4F512b1290c043970B04E0b570D4FC98291", + "status": "active", + "id": "0x86e6A4F512b1290c043970B04E0b570D4FC98291" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86e6A4F512b1290c043970B04E0b570D4FC98291/logo.png b/blockchains/ethereum/assets/0x86e6A4F512b1290c043970B04E0b570D4FC98291/logo.png new file mode 100644 index 00000000..46855bee Binary files /dev/null and b/blockchains/ethereum/assets/0x86e6A4F512b1290c043970B04E0b570D4FC98291/logo.png differ diff --git a/blockchains/ethereum/assets/0x86e92C595De61FD22C0f0A0458C6EaA63d0B06EF/info.json b/blockchains/ethereum/assets/0x86e92C595De61FD22C0f0A0458C6EaA63d0B06EF/info.json new file mode 100644 index 00000000..2105aed3 --- /dev/null +++ b/blockchains/ethereum/assets/0x86e92C595De61FD22C0f0A0458C6EaA63d0B06EF/info.json @@ -0,0 +1,11 @@ +{ + "name": "ChainBow.io", + "symbol": "CBB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x86e92C595De61FD22C0f0A0458C6EaA63d0B06EF", + "status": "abandoned", + "id": "0x86e92C595De61FD22C0f0A0458C6EaA63d0B06EF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86e92C595De61FD22C0f0A0458C6EaA63d0B06EF/logo.png b/blockchains/ethereum/assets/0x86e92C595De61FD22C0f0A0458C6EaA63d0B06EF/logo.png new file mode 100755 index 00000000..e2e06af1 Binary files /dev/null and b/blockchains/ethereum/assets/0x86e92C595De61FD22C0f0A0458C6EaA63d0B06EF/logo.png differ diff --git a/blockchains/ethereum/assets/0x86eCAA22459BCc7c356765f65e05Afd456eC51F9/info.json b/blockchains/ethereum/assets/0x86eCAA22459BCc7c356765f65e05Afd456eC51F9/info.json new file mode 100644 index 00000000..b5013bef --- /dev/null +++ b/blockchains/ethereum/assets/0x86eCAA22459BCc7c356765f65e05Afd456eC51F9/info.json @@ -0,0 +1,11 @@ +{ + "name": "PazCoin", + "symbol": "PAZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x86eCAA22459BCc7c356765f65e05Afd456eC51F9", + "status": "abandoned", + "id": "0x86eCAA22459BCc7c356765f65e05Afd456eC51F9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86eCAA22459BCc7c356765f65e05Afd456eC51F9/logo.png b/blockchains/ethereum/assets/0x86eCAA22459BCc7c356765f65e05Afd456eC51F9/logo.png new file mode 100644 index 00000000..e97bcd30 Binary files /dev/null and b/blockchains/ethereum/assets/0x86eCAA22459BCc7c356765f65e05Afd456eC51F9/logo.png differ diff --git a/blockchains/ethereum/assets/0x86f6D5d86b8cC5105A6Ccef741db02fa4Eb48415/info.json b/blockchains/ethereum/assets/0x86f6D5d86b8cC5105A6Ccef741db02fa4Eb48415/info.json new file mode 100644 index 00000000..1270c014 --- /dev/null +++ b/blockchains/ethereum/assets/0x86f6D5d86b8cC5105A6Ccef741db02fa4Eb48415/info.json @@ -0,0 +1,11 @@ +{ + "name": "LONDONCOIN", + "symbol": "LONDON", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x86f6D5d86b8cC5105A6Ccef741db02fa4Eb48415", + "status": "abandoned", + "id": "0x86f6D5d86b8cC5105A6Ccef741db02fa4Eb48415" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x86f6D5d86b8cC5105A6Ccef741db02fa4Eb48415/logo.png b/blockchains/ethereum/assets/0x86f6D5d86b8cC5105A6Ccef741db02fa4Eb48415/logo.png new file mode 100644 index 00000000..9bd9caab Binary files /dev/null and b/blockchains/ethereum/assets/0x86f6D5d86b8cC5105A6Ccef741db02fa4Eb48415/logo.png differ diff --git a/blockchains/ethereum/assets/0x87026F792D09960232CA406E80C89BD35BAfE566/info.json b/blockchains/ethereum/assets/0x87026F792D09960232CA406E80C89BD35BAfE566/info.json new file mode 100644 index 00000000..f2845452 --- /dev/null +++ b/blockchains/ethereum/assets/0x87026F792D09960232CA406E80C89BD35BAfE566/info.json @@ -0,0 +1,11 @@ +{ + "name": "CDCToken", + "symbol": "CDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.cdc.tech/", + "explorer": "https://etherscan.io/token/0x87026F792D09960232CA406E80C89BD35BAfE566", + "status": "abandoned", + "id": "0x87026F792D09960232CA406E80C89BD35BAfE566" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x87026F792D09960232CA406E80C89BD35BAfE566/logo.png b/blockchains/ethereum/assets/0x87026F792D09960232CA406E80C89BD35BAfE566/logo.png new file mode 100644 index 00000000..383a2d2a Binary files /dev/null and b/blockchains/ethereum/assets/0x87026F792D09960232CA406E80C89BD35BAfE566/logo.png differ diff --git a/blockchains/ethereum/assets/0x870bb7A60eb21f69077D2c38d3dE0542a5298E09/info.json b/blockchains/ethereum/assets/0x870bb7A60eb21f69077D2c38d3dE0542a5298E09/info.json new file mode 100644 index 00000000..3a8ff746 --- /dev/null +++ b/blockchains/ethereum/assets/0x870bb7A60eb21f69077D2c38d3dE0542a5298E09/info.json @@ -0,0 +1,11 @@ +{ + "name": "Global Finance Token", + "symbol": "GFT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x870bb7A60eb21f69077D2c38d3dE0542a5298E09", + "status": "abandoned", + "id": "0x870bb7A60eb21f69077D2c38d3dE0542a5298E09" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x870bb7A60eb21f69077D2c38d3dE0542a5298E09/logo.png b/blockchains/ethereum/assets/0x870bb7A60eb21f69077D2c38d3dE0542a5298E09/logo.png new file mode 100755 index 00000000..b072195c Binary files /dev/null and b/blockchains/ethereum/assets/0x870bb7A60eb21f69077D2c38d3dE0542a5298E09/logo.png differ diff --git a/blockchains/ethereum/assets/0x8711CF7764d23D32092C0DCEdfDAc63eCe1E6cF3/info.json b/blockchains/ethereum/assets/0x8711CF7764d23D32092C0DCEdfDAc63eCe1E6cF3/info.json new file mode 100644 index 00000000..e90dbb7c --- /dev/null +++ b/blockchains/ethereum/assets/0x8711CF7764d23D32092C0DCEdfDAc63eCe1E6cF3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Textil", + "symbol": "TXL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8711CF7764d23D32092C0DCEdfDAc63eCe1E6cF3", + "status": "abandoned", + "id": "0x8711CF7764d23D32092C0DCEdfDAc63eCe1E6cF3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8711CF7764d23D32092C0DCEdfDAc63eCe1E6cF3/logo.png b/blockchains/ethereum/assets/0x8711CF7764d23D32092C0DCEdfDAc63eCe1E6cF3/logo.png new file mode 100644 index 00000000..3ac05db2 Binary files /dev/null and b/blockchains/ethereum/assets/0x8711CF7764d23D32092C0DCEdfDAc63eCe1E6cF3/logo.png differ diff --git a/blockchains/ethereum/assets/0x8713d26637CF49e1b6B4a7Ce57106AaBc9325343/info.json b/blockchains/ethereum/assets/0x8713d26637CF49e1b6B4a7Ce57106AaBc9325343/info.json new file mode 100644 index 00000000..a9986e7a --- /dev/null +++ b/blockchains/ethereum/assets/0x8713d26637CF49e1b6B4a7Ce57106AaBc9325343/info.json @@ -0,0 +1,11 @@ +{ + "name": "CNN Token", + "symbol": "CNN", + "type": "ERC20", + "decimals": 18, + "description": "Content Neutrality Network (CNN) Platform introduces several mechanisms/protocols related to content creation, distribution, circulation and revenue share. CNN Platform combines personalized recommendation with the community votes to distribute the most relevant content to each user.", + "website": "http://www.cnntoken.io/", + "explorer": "https://etherscan.io/token/0x8713d26637CF49e1b6B4a7Ce57106AaBc9325343", + "status": "active", + "id": "0x8713d26637CF49e1b6B4a7Ce57106AaBc9325343" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8713d26637CF49e1b6B4a7Ce57106AaBc9325343/logo.png b/blockchains/ethereum/assets/0x8713d26637CF49e1b6B4a7Ce57106AaBc9325343/logo.png new file mode 100755 index 00000000..1f631e4e Binary files /dev/null and b/blockchains/ethereum/assets/0x8713d26637CF49e1b6B4a7Ce57106AaBc9325343/logo.png differ diff --git a/blockchains/ethereum/assets/0x8716Fc5Da009D3A208f0178b637a50F4ef42400F/info.json b/blockchains/ethereum/assets/0x8716Fc5Da009D3A208f0178b637a50F4ef42400F/info.json new file mode 100644 index 00000000..2c85ec33 --- /dev/null +++ b/blockchains/ethereum/assets/0x8716Fc5Da009D3A208f0178b637a50F4ef42400F/info.json @@ -0,0 +1,11 @@ +{ + "name": "UltrainGas", + "symbol": "UGAS", + "type": "ERC20", + "decimals": 18, + "description": "UltrainGas (UGAS) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.ultrain.io", + "explorer": "https://etherscan.io/token/0x8716Fc5Da009D3A208f0178b637a50F4ef42400F", + "status": "active", + "id": "0x8716Fc5Da009D3A208f0178b637a50F4ef42400F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8716Fc5Da009D3A208f0178b637a50F4ef42400F/logo.png b/blockchains/ethereum/assets/0x8716Fc5Da009D3A208f0178b637a50F4ef42400F/logo.png new file mode 100644 index 00000000..46658121 Binary files /dev/null and b/blockchains/ethereum/assets/0x8716Fc5Da009D3A208f0178b637a50F4ef42400F/logo.png differ diff --git a/blockchains/ethereum/assets/0x871baeD4088b863fd6407159f3672D70CD34837d/info.json b/blockchains/ethereum/assets/0x871baeD4088b863fd6407159f3672D70CD34837d/info.json new file mode 100644 index 00000000..53b3ba08 --- /dev/null +++ b/blockchains/ethereum/assets/0x871baeD4088b863fd6407159f3672D70CD34837d/info.json @@ -0,0 +1,11 @@ +{ + "name": " 3X Long Ethereum Token", + "symbol": "ETHBULL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ftx.com/tokens/ETHBULL", + "explorer": "https://etherscan.io/token/0x871baeD4088b863fd6407159f3672D70CD34837d", + "status": "abandoned", + "id": "0x871baeD4088b863fd6407159f3672D70CD34837d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x871baeD4088b863fd6407159f3672D70CD34837d/logo.png b/blockchains/ethereum/assets/0x871baeD4088b863fd6407159f3672D70CD34837d/logo.png new file mode 100644 index 00000000..4d1fbe0a Binary files /dev/null and b/blockchains/ethereum/assets/0x871baeD4088b863fd6407159f3672D70CD34837d/logo.png differ diff --git a/blockchains/ethereum/assets/0x87210f1D3422BA75B6C40C63C78d79324daBcd55/info.json b/blockchains/ethereum/assets/0x87210f1D3422BA75B6C40C63C78d79324daBcd55/info.json new file mode 100644 index 00000000..7f6998db --- /dev/null +++ b/blockchains/ethereum/assets/0x87210f1D3422BA75B6C40C63C78d79324daBcd55/info.json @@ -0,0 +1,11 @@ +{ + "name": "EOS TRUST", + "symbol": "EOST", + "type": "ERC20", + "decimals": 18, + "description": "Eost is introduced as a platform for easy, fast, affordable and efficient use of Eos. The solution is centered around giving people (EOST community) the ability to comfortably use EOS through a more scalable alias – EOST.", + "website": "https://eostrustlink.io", + "explorer": "https://etherscan.io/token/0x87210f1D3422BA75B6C40C63C78d79324daBcd55", + "status": "active", + "id": "0x87210f1D3422BA75B6C40C63C78d79324daBcd55" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x87210f1D3422BA75B6C40C63C78d79324daBcd55/logo.png b/blockchains/ethereum/assets/0x87210f1D3422BA75B6C40C63C78d79324daBcd55/logo.png new file mode 100644 index 00000000..b355ee1a Binary files /dev/null and b/blockchains/ethereum/assets/0x87210f1D3422BA75B6C40C63C78d79324daBcd55/logo.png differ diff --git a/blockchains/ethereum/assets/0x8727c112C712c4a03371AC87a74dD6aB104Af768/info.json b/blockchains/ethereum/assets/0x8727c112C712c4a03371AC87a74dD6aB104Af768/info.json new file mode 100644 index 00000000..6f11a532 --- /dev/null +++ b/blockchains/ethereum/assets/0x8727c112C712c4a03371AC87a74dD6aB104Af768/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jetcoin", + "symbol": "JET", + "type": "ERC20", + "decimals": 18, + "description": "Jetcoin (JET) is a cryptocurrency and operates on the Ethereum platform.", + "website": "http://www.jetcoininstitute.com", + "explorer": "https://etherscan.io/token/0x8727c112C712c4a03371AC87a74dD6aB104Af768", + "status": "active", + "id": "0x8727c112C712c4a03371AC87a74dD6aB104Af768" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8727c112C712c4a03371AC87a74dD6aB104Af768/logo.png b/blockchains/ethereum/assets/0x8727c112C712c4a03371AC87a74dD6aB104Af768/logo.png new file mode 100755 index 00000000..8ac16fde Binary files /dev/null and b/blockchains/ethereum/assets/0x8727c112C712c4a03371AC87a74dD6aB104Af768/logo.png differ diff --git a/blockchains/ethereum/assets/0x8734afDaEDf4e490bf92a22BBFD3eA2d8Eb2E86c/info.json b/blockchains/ethereum/assets/0x8734afDaEDf4e490bf92a22BBFD3eA2d8Eb2E86c/info.json new file mode 100644 index 00000000..981e126a --- /dev/null +++ b/blockchains/ethereum/assets/0x8734afDaEDf4e490bf92a22BBFD3eA2d8Eb2E86c/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-27/30M27", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8734afDaEDf4e490bf92a22BBFD3eA2d8Eb2E86c", + "status": "abandoned", + "id": "0x8734afDaEDf4e490bf92a22BBFD3eA2d8Eb2E86c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8734afDaEDf4e490bf92a22BBFD3eA2d8Eb2E86c/logo.png b/blockchains/ethereum/assets/0x8734afDaEDf4e490bf92a22BBFD3eA2d8Eb2E86c/logo.png new file mode 100644 index 00000000..04d4bebe Binary files /dev/null and b/blockchains/ethereum/assets/0x8734afDaEDf4e490bf92a22BBFD3eA2d8Eb2E86c/logo.png differ diff --git a/blockchains/ethereum/assets/0x8743DF749cb06C91445267D1fef1Cf1CBafB49F2/info.json b/blockchains/ethereum/assets/0x8743DF749cb06C91445267D1fef1Cf1CBafB49F2/info.json new file mode 100644 index 00000000..f1088c1f --- /dev/null +++ b/blockchains/ethereum/assets/0x8743DF749cb06C91445267D1fef1Cf1CBafB49F2/info.json @@ -0,0 +1,11 @@ +{ + "name": "AVA ADVISORY", + "symbol": "AVA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8743DF749cb06C91445267D1fef1Cf1CBafB49F2", + "status": "abandoned", + "id": "0x8743DF749cb06C91445267D1fef1Cf1CBafB49F2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8743DF749cb06C91445267D1fef1Cf1CBafB49F2/logo.png b/blockchains/ethereum/assets/0x8743DF749cb06C91445267D1fef1Cf1CBafB49F2/logo.png new file mode 100644 index 00000000..1a88ba95 Binary files /dev/null and b/blockchains/ethereum/assets/0x8743DF749cb06C91445267D1fef1Cf1CBafB49F2/logo.png differ diff --git a/blockchains/ethereum/assets/0x874D4C9B980f1a13dD44CBcDB912e24Ef0671eD0/info.json b/blockchains/ethereum/assets/0x874D4C9B980f1a13dD44CBcDB912e24Ef0671eD0/info.json new file mode 100644 index 00000000..3394939e --- /dev/null +++ b/blockchains/ethereum/assets/0x874D4C9B980f1a13dD44CBcDB912e24Ef0671eD0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Guider", + "symbol": "GDR", + "type": "ERC20", + "decimals": 18, + "description": "The Guider platform aims to facilitate and expedite the search for a suitable guide for travelers.", + "website": "https://guider.travel", + "explorer": "https://etherscan.io/token/0x874D4C9B980f1a13dD44CBcDB912e24Ef0671eD0", + "status": "abandoned", + "id": "0x874D4C9B980f1a13dD44CBcDB912e24Ef0671eD0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x874D4C9B980f1a13dD44CBcDB912e24Ef0671eD0/logo.png b/blockchains/ethereum/assets/0x874D4C9B980f1a13dD44CBcDB912e24Ef0671eD0/logo.png new file mode 100644 index 00000000..74bfa967 Binary files /dev/null and b/blockchains/ethereum/assets/0x874D4C9B980f1a13dD44CBcDB912e24Ef0671eD0/logo.png differ diff --git a/blockchains/ethereum/assets/0x875089A734213cA39f0d93c2BbB8209827ec5e9f/info.json b/blockchains/ethereum/assets/0x875089A734213cA39f0d93c2BbB8209827ec5e9f/info.json new file mode 100644 index 00000000..b1767733 --- /dev/null +++ b/blockchains/ethereum/assets/0x875089A734213cA39f0d93c2BbB8209827ec5e9f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Euphoria", + "symbol": "EPH", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.euphoriastore.io", + "explorer": "https://etherscan.io/token/0x875089A734213cA39f0d93c2BbB8209827ec5e9f", + "status": "abandoned", + "id": "0x875089A734213cA39f0d93c2BbB8209827ec5e9f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x875089A734213cA39f0d93c2BbB8209827ec5e9f/logo.png b/blockchains/ethereum/assets/0x875089A734213cA39f0d93c2BbB8209827ec5e9f/logo.png new file mode 100644 index 00000000..415deb7a Binary files /dev/null and b/blockchains/ethereum/assets/0x875089A734213cA39f0d93c2BbB8209827ec5e9f/logo.png differ diff --git a/blockchains/ethereum/assets/0x8762db106B2c2A0bccB3A80d1Ed41273552616E8/info.json b/blockchains/ethereum/assets/0x8762db106B2c2A0bccB3A80d1Ed41273552616E8/info.json new file mode 100644 index 00000000..7b9be55c --- /dev/null +++ b/blockchains/ethereum/assets/0x8762db106B2c2A0bccB3A80d1Ed41273552616E8/info.json @@ -0,0 +1,38 @@ +{ + "name": "Reserve Rights", + "website": "https://reserve.org", + "description": "The Reserve team's goal is to make the most accessible, economically strongest, and most robust-to-attack currency.", + "explorer": "https://etherscan.io/token/0x8762db106B2c2A0bccB3A80d1Ed41273552616E8", + "research": "https://research.binance.com/en/projects/reserve-rights", + "type": "ERC20", + "symbol": "RSR", + "decimals": 18, + "status": "abandoned", + "id": "0x8762db106B2c2A0bccB3A80d1Ed41273552616E8", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/reserve-protocol/rsr" + }, + { + "name": "x", + "url": "https://x.com/reserveprotocol" + }, + { + "name": "blog", + "url": "https://medium.com/reserve-currency" + }, + { + "name": "telegram", + "url": "https://t.me/reservecurrency" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/reserve-rights-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x877391140c33B93a913478a6A1DF5157edC08320/info.json b/blockchains/ethereum/assets/0x877391140c33B93a913478a6A1DF5157edC08320/info.json new file mode 100644 index 00000000..97fe8b97 --- /dev/null +++ b/blockchains/ethereum/assets/0x877391140c33B93a913478a6A1DF5157edC08320/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTCERC-20", + "website": "http://www.btceinfo.com", + "description": "BTCE is a borderless remittance platform enabling peer to peer transactions in the cheapest, fastest and easiest way.", + "explorer": "https://etherscan.io/token/0x877391140c33B93a913478a6A1DF5157edC08320", + "type": "ERC20", + "symbol": "BTCE", + "decimals": 8, + "status": "active", + "id": "0x877391140c33B93a913478a6A1DF5157edC08320" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x877391140c33B93a913478a6A1DF5157edC08320/logo.png b/blockchains/ethereum/assets/0x877391140c33B93a913478a6A1DF5157edC08320/logo.png new file mode 100644 index 00000000..03217e2f Binary files /dev/null and b/blockchains/ethereum/assets/0x877391140c33B93a913478a6A1DF5157edC08320/logo.png differ diff --git a/blockchains/ethereum/assets/0x877f035c83df617B6C901891F90EEBc78f8CE050/info.json b/blockchains/ethereum/assets/0x877f035c83df617B6C901891F90EEBc78f8CE050/info.json new file mode 100644 index 00000000..07c08dad --- /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 00000000..49e2b4fe Binary files /dev/null and b/blockchains/ethereum/assets/0x877f035c83df617B6C901891F90EEBc78f8CE050/logo.png differ diff --git a/blockchains/ethereum/assets/0x87897374EA98260343d8d3E5076b12dD0d09956a/info.json b/blockchains/ethereum/assets/0x87897374EA98260343d8d3E5076b12dD0d09956a/info.json new file mode 100644 index 00000000..363d2570 --- /dev/null +++ b/blockchains/ethereum/assets/0x87897374EA98260343d8d3E5076b12dD0d09956a/info.json @@ -0,0 +1,11 @@ +{ + "name": "QOP云配送", + "symbol": "QOP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x87897374EA98260343d8d3E5076b12dD0d09956a", + "status": "abandoned", + "id": "0x87897374EA98260343d8d3E5076b12dD0d09956a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x87897374EA98260343d8d3E5076b12dD0d09956a/logo.png b/blockchains/ethereum/assets/0x87897374EA98260343d8d3E5076b12dD0d09956a/logo.png new file mode 100644 index 00000000..552748f5 Binary files /dev/null and b/blockchains/ethereum/assets/0x87897374EA98260343d8d3E5076b12dD0d09956a/logo.png differ diff --git a/blockchains/ethereum/assets/0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272/info.json b/blockchains/ethereum/assets/0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272/info.json new file mode 100644 index 00000000..974964fd --- /dev/null +++ b/blockchains/ethereum/assets/0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272/info.json @@ -0,0 +1,28 @@ +{ + "name": "SushiBar", + "website": "https://sushiswap.fi", + "description": "xSUSHI is a trading fee accruing token. 0.05% of the exchange trade fees on SushiSwap are awarded to holders of the xSUSHI token", + "explorer": "https://etherscan.io/token/0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272", + "type": "ERC20", + "symbol": "xSUSHI", + "decimals": 18, + "status": "active", + "id": "0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272", + "tags": [ + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/sushiswap" + }, + { + "name": "x", + "url": "https://x.com/SushiSwap" + }, + { + "name": "discord", + "url": "https://discord.com/invite/sqhXAqc" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272/logo.png b/blockchains/ethereum/assets/0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272/logo.png new file mode 100644 index 00000000..9b75aefb Binary files /dev/null and b/blockchains/ethereum/assets/0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272/logo.png differ diff --git a/blockchains/ethereum/assets/0x87AB739464881af0011052D4Ca0B0d657e8c3B48/info.json b/blockchains/ethereum/assets/0x87AB739464881af0011052D4Ca0B0d657e8c3B48/info.json new file mode 100644 index 00000000..10343312 --- /dev/null +++ b/blockchains/ethereum/assets/0x87AB739464881af0011052D4Ca0B0d657e8c3B48/info.json @@ -0,0 +1,11 @@ +{ + "name": "MikeTangoBravo19", + "symbol": "MTB19", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x87AB739464881af0011052D4Ca0B0d657e8c3B48", + "status": "abandoned", + "id": "0x87AB739464881af0011052D4Ca0B0d657e8c3B48" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x87AB739464881af0011052D4Ca0B0d657e8c3B48/logo.png b/blockchains/ethereum/assets/0x87AB739464881af0011052D4Ca0B0d657e8c3B48/logo.png new file mode 100644 index 00000000..3447582a Binary files /dev/null and b/blockchains/ethereum/assets/0x87AB739464881af0011052D4Ca0B0d657e8c3B48/logo.png differ diff --git a/blockchains/ethereum/assets/0x87C00817ABe35eD4C093e59043fae488238d2F74/info.json b/blockchains/ethereum/assets/0x87C00817ABe35eD4C093e59043fae488238d2F74/info.json new file mode 100644 index 00000000..01b869a9 --- /dev/null +++ b/blockchains/ethereum/assets/0x87C00817ABe35eD4C093e59043fae488238d2F74/info.json @@ -0,0 +1,21 @@ +{ + "name": "YOINK", + "website": "https://yoink.rocks/", + "description": "YOINK is a simple yet elegant protocol encompassing deflationary characteristics with a sneaky little twist.", + "explorer": "https://etherscan.io/token/0x87C00817ABe35eD4C093e59043fae488238d2F74", + "type": "ERC20", + "symbol": "YNK", + "decimals": 18, + "status": "active", + "id": "0x87C00817ABe35eD4C093e59043fae488238d2F74", + "links": [ + { + "name": "x", + "url": "https://x.com/yoinknetwork" + }, + { + "name": "telegram", + "url": "https://t.me/yoinkofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x87C00817ABe35eD4C093e59043fae488238d2F74/logo.png b/blockchains/ethereum/assets/0x87C00817ABe35eD4C093e59043fae488238d2F74/logo.png new file mode 100644 index 00000000..1c1127ea Binary files /dev/null and b/blockchains/ethereum/assets/0x87C00817ABe35eD4C093e59043fae488238d2F74/logo.png differ diff --git a/blockchains/ethereum/assets/0x87F14E9460ceCb789F1B125b2E3e353Ff8ed6fcd/info.json b/blockchains/ethereum/assets/0x87F14E9460ceCb789F1B125b2E3e353Ff8ed6fcd/info.json new file mode 100644 index 00000000..287a3e23 --- /dev/null +++ b/blockchains/ethereum/assets/0x87F14E9460ceCb789F1B125b2E3e353Ff8ed6fcd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bytus", + "symbol": "BYTS", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "http://bytus.io", + "explorer": "https://etherscan.io/token/0x87F14E9460ceCb789F1B125b2E3e353Ff8ed6fcd", + "status": "abandoned", + "id": "0x87F14E9460ceCb789F1B125b2E3e353Ff8ed6fcd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x87F14E9460ceCb789F1B125b2E3e353Ff8ed6fcd/logo.png b/blockchains/ethereum/assets/0x87F14E9460ceCb789F1B125b2E3e353Ff8ed6fcd/logo.png new file mode 100755 index 00000000..5cab6de3 Binary files /dev/null and b/blockchains/ethereum/assets/0x87F14E9460ceCb789F1B125b2E3e353Ff8ed6fcd/logo.png differ diff --git a/blockchains/ethereum/assets/0x87F5F9eBE40786D49D35E1B5997b07cCAA8ADbFF/info.json b/blockchains/ethereum/assets/0x87F5F9eBE40786D49D35E1B5997b07cCAA8ADbFF/info.json new file mode 100644 index 00000000..09f8f8e3 --- /dev/null +++ b/blockchains/ethereum/assets/0x87F5F9eBE40786D49D35E1B5997b07cCAA8ADbFF/info.json @@ -0,0 +1,25 @@ +{ + "name": "Rebased", + "website": "https://rebased.fi/", + "description": "Elastic supply | Publicly callable rebase mechanism every 12h.", + "explorer": "https://etherscan.io/token/0x87F5F9eBE40786D49D35E1B5997b07cCAA8ADbFF", + "type": "ERC20", + "symbol": "REB2", + "decimals": 9, + "status": "active", + "id": "0x87F5F9eBE40786D49D35E1B5997b07cCAA8ADbFF", + "links": [ + { + "name": "github", + "url": "https://github.com/RebasedToken/Rebased2" + }, + { + "name": "x", + "url": "https://x.com/Rebased_" + }, + { + "name": "telegram", + "url": "https://t.me/rebasedTG" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x87F5F9eBE40786D49D35E1B5997b07cCAA8ADbFF/logo.png b/blockchains/ethereum/assets/0x87F5F9eBE40786D49D35E1B5997b07cCAA8ADbFF/logo.png new file mode 100644 index 00000000..b18d09c7 Binary files /dev/null and b/blockchains/ethereum/assets/0x87F5F9eBE40786D49D35E1B5997b07cCAA8ADbFF/logo.png differ diff --git a/blockchains/ethereum/assets/0x87b008E57F640D94Ee44Fd893F0323AF933F9195/info.json b/blockchains/ethereum/assets/0x87b008E57F640D94Ee44Fd893F0323AF933F9195/info.json new file mode 100644 index 00000000..5ab61718 --- /dev/null +++ b/blockchains/ethereum/assets/0x87b008E57F640D94Ee44Fd893F0323AF933F9195/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coin Artist", + "website": "https://medium.com/@coin_artist_17801", + "description": "COIN is a social token created by Coin Artist, a collaborative governance token for the Coin Artist ecosystem.", + "explorer": "https://etherscan.io/token/0x87b008E57F640D94Ee44Fd893F0323AF933F9195", + "type": "ERC20", + "symbol": "COIN", + "decimals": 18, + "status": "active", + "id": "0x87b008E57F640D94Ee44Fd893F0323AF933F9195" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x87b008E57F640D94Ee44Fd893F0323AF933F9195/logo.png b/blockchains/ethereum/assets/0x87b008E57F640D94Ee44Fd893F0323AF933F9195/logo.png new file mode 100644 index 00000000..613253ce Binary files /dev/null and b/blockchains/ethereum/assets/0x87b008E57F640D94Ee44Fd893F0323AF933F9195/logo.png differ diff --git a/blockchains/ethereum/assets/0x87cc79C77a760464d18990b485C914bFD6806F1C/info.json b/blockchains/ethereum/assets/0x87cc79C77a760464d18990b485C914bFD6806F1C/info.json new file mode 100644 index 00000000..ffc4574c --- /dev/null +++ b/blockchains/ethereum/assets/0x87cc79C77a760464d18990b485C914bFD6806F1C/info.json @@ -0,0 +1,11 @@ +{ + "name": "JSW", + "symbol": "JSW", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x87cc79C77a760464d18990b485C914bFD6806F1C", + "status": "abandoned", + "id": "0x87cc79C77a760464d18990b485C914bFD6806F1C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x87cc79C77a760464d18990b485C914bFD6806F1C/logo.png b/blockchains/ethereum/assets/0x87cc79C77a760464d18990b485C914bFD6806F1C/logo.png new file mode 100644 index 00000000..1033c374 Binary files /dev/null and b/blockchains/ethereum/assets/0x87cc79C77a760464d18990b485C914bFD6806F1C/logo.png differ diff --git a/blockchains/ethereum/assets/0x87d9bF506B434e9973cb0e6183DA7A50A16796b2/info.json b/blockchains/ethereum/assets/0x87d9bF506B434e9973cb0e6183DA7A50A16796b2/info.json new file mode 100644 index 00000000..ed67ff08 --- /dev/null +++ b/blockchains/ethereum/assets/0x87d9bF506B434e9973cb0e6183DA7A50A16796b2/info.json @@ -0,0 +1,11 @@ +{ + "name": "888", + "symbol": "888", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x87d9bF506B434e9973cb0e6183DA7A50A16796b2", + "status": "abandoned", + "id": "0x87d9bF506B434e9973cb0e6183DA7A50A16796b2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x87d9bF506B434e9973cb0e6183DA7A50A16796b2/logo.png b/blockchains/ethereum/assets/0x87d9bF506B434e9973cb0e6183DA7A50A16796b2/logo.png new file mode 100644 index 00000000..1e471d5e Binary files /dev/null and b/blockchains/ethereum/assets/0x87d9bF506B434e9973cb0e6183DA7A50A16796b2/logo.png differ diff --git a/blockchains/ethereum/assets/0x87e20a1C261d5DDC4B4250DC9197102f52010aE7/info.json b/blockchains/ethereum/assets/0x87e20a1C261d5DDC4B4250DC9197102f52010aE7/info.json new file mode 100644 index 00000000..78ddbb42 --- /dev/null +++ b/blockchains/ethereum/assets/0x87e20a1C261d5DDC4B4250DC9197102f52010aE7/info.json @@ -0,0 +1,11 @@ +{ + "name": "two", + "symbol": "TWO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x87e20a1C261d5DDC4B4250DC9197102f52010aE7", + "status": "abandoned", + "id": "0x87e20a1C261d5DDC4B4250DC9197102f52010aE7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x87e20a1C261d5DDC4B4250DC9197102f52010aE7/logo.png b/blockchains/ethereum/assets/0x87e20a1C261d5DDC4B4250DC9197102f52010aE7/logo.png new file mode 100644 index 00000000..75ce38d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x87e20a1C261d5DDC4B4250DC9197102f52010aE7/logo.png differ diff --git a/blockchains/ethereum/assets/0x87eDfFDe3E14c7a66c9b9724747a1C5696b742e6/info.json b/blockchains/ethereum/assets/0x87eDfFDe3E14c7a66c9b9724747a1C5696b742e6/info.json new file mode 100644 index 00000000..944c9993 --- /dev/null +++ b/blockchains/ethereum/assets/0x87eDfFDe3E14c7a66c9b9724747a1C5696b742e6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Swag Token", + "website": "https://swag.finance", + "description": "Decentralizing the Global Adult Entertainment Industry", + "explorer": "https://etherscan.io/token/0x87eDfFDe3E14c7a66c9b9724747a1C5696b742e6", + "type": "ERC20", + "symbol": "SWAG", + "decimals": 18, + "status": "active", + "id": "0x87eDfFDe3E14c7a66c9b9724747a1C5696b742e6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x87eDfFDe3E14c7a66c9b9724747a1C5696b742e6/logo.png b/blockchains/ethereum/assets/0x87eDfFDe3E14c7a66c9b9724747a1C5696b742e6/logo.png new file mode 100644 index 00000000..8407a4e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x87eDfFDe3E14c7a66c9b9724747a1C5696b742e6/logo.png differ diff --git a/blockchains/ethereum/assets/0x87f5E8c3425218837f3CB67dB941aF0C01323E56/info.json b/blockchains/ethereum/assets/0x87f5E8c3425218837f3CB67dB941aF0C01323E56/info.json new file mode 100644 index 00000000..be5d6c3f --- /dev/null +++ b/blockchains/ethereum/assets/0x87f5E8c3425218837f3CB67dB941aF0C01323E56/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitCoin ONE", + "symbol": "BTCONE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.bitcoinone.io/", + "explorer": "https://etherscan.io/token/0x87f5E8c3425218837f3CB67dB941aF0C01323E56", + "status": "abandoned", + "id": "0x87f5E8c3425218837f3CB67dB941aF0C01323E56" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x87f5E8c3425218837f3CB67dB941aF0C01323E56/logo.png b/blockchains/ethereum/assets/0x87f5E8c3425218837f3CB67dB941aF0C01323E56/logo.png new file mode 100644 index 00000000..baaae236 Binary files /dev/null and b/blockchains/ethereum/assets/0x87f5E8c3425218837f3CB67dB941aF0C01323E56/logo.png differ diff --git a/blockchains/ethereum/assets/0x8806926Ab68EB5a7b909DcAf6FdBe5d93271D6e2/info.json b/blockchains/ethereum/assets/0x8806926Ab68EB5a7b909DcAf6FdBe5d93271D6e2/info.json new file mode 100644 index 00000000..bdd2120b --- /dev/null +++ b/blockchains/ethereum/assets/0x8806926Ab68EB5a7b909DcAf6FdBe5d93271D6e2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Uquid Coin", + "website": "https://uquidcoin.com/", + "description": "UQC is a decentralized virtual currency based on the ERC20 token - one of Ethereum Technological trends. The goal of this blockchain asset is to supplement the development of UQUID Ecosystem. In this virtual revolution, coin holders will have the benefit of instantly and effortlessly cashing out their coins.", + "explorer": "https://etherscan.io/token/0x8806926Ab68EB5a7b909DcAf6FdBe5d93271D6e2", + "type": "ERC20", + "symbol": "UQC", + "decimals": 18, + "status": "active", + "id": "0x8806926Ab68EB5a7b909DcAf6FdBe5d93271D6e2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8806926Ab68EB5a7b909DcAf6FdBe5d93271D6e2/logo.png b/blockchains/ethereum/assets/0x8806926Ab68EB5a7b909DcAf6FdBe5d93271D6e2/logo.png new file mode 100644 index 00000000..a2f37fa2 Binary files /dev/null and b/blockchains/ethereum/assets/0x8806926Ab68EB5a7b909DcAf6FdBe5d93271D6e2/logo.png differ diff --git a/blockchains/ethereum/assets/0x8810C63470d38639954c6B41AaC545848C46484a/info.json b/blockchains/ethereum/assets/0x8810C63470d38639954c6B41AaC545848C46484a/info.json new file mode 100644 index 00000000..0c901fa7 --- /dev/null +++ b/blockchains/ethereum/assets/0x8810C63470d38639954c6B41AaC545848C46484a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aditus", + "symbol": "ADI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.aditus.net/", + "explorer": "https://etherscan.io/token/0x8810C63470d38639954c6B41AaC545848C46484a", + "status": "abandoned", + "id": "0x8810C63470d38639954c6B41AaC545848C46484a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8810C63470d38639954c6B41AaC545848C46484a/logo.png b/blockchains/ethereum/assets/0x8810C63470d38639954c6B41AaC545848C46484a/logo.png new file mode 100644 index 00000000..7a05b31e Binary files /dev/null and b/blockchains/ethereum/assets/0x8810C63470d38639954c6B41AaC545848C46484a/logo.png differ diff --git a/blockchains/ethereum/assets/0x881Ef48211982D01E2CB7092C915E647Cd40D85C/info.json b/blockchains/ethereum/assets/0x881Ef48211982D01E2CB7092C915E647Cd40D85C/info.json new file mode 100644 index 00000000..cd44cc01 --- /dev/null +++ b/blockchains/ethereum/assets/0x881Ef48211982D01E2CB7092C915E647Cd40D85C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Open Trading Network", + "symbol": "OTN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x881Ef48211982D01E2CB7092C915E647Cd40D85C", + "status": "abandoned", + "id": "0x881Ef48211982D01E2CB7092C915E647Cd40D85C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x881Ef48211982D01E2CB7092C915E647Cd40D85C/logo.png b/blockchains/ethereum/assets/0x881Ef48211982D01E2CB7092C915E647Cd40D85C/logo.png new file mode 100644 index 00000000..7c0eb246 Binary files /dev/null and b/blockchains/ethereum/assets/0x881Ef48211982D01E2CB7092C915E647Cd40D85C/logo.png differ diff --git a/blockchains/ethereum/assets/0x881d4C8618D68872fA404518B2460eA839A02a6a/info.json b/blockchains/ethereum/assets/0x881d4C8618D68872fA404518B2460eA839A02a6a/info.json new file mode 100644 index 00000000..a75cf3a6 --- /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 00000000..ba2d9537 Binary files /dev/null and b/blockchains/ethereum/assets/0x881d4C8618D68872fA404518B2460eA839A02a6a/logo.png differ diff --git a/blockchains/ethereum/assets/0x88277055dF2EE38dA159863dA2F56ee0A6909D62/info.json b/blockchains/ethereum/assets/0x88277055dF2EE38dA159863dA2F56ee0A6909D62/info.json new file mode 100644 index 00000000..27cd0a14 --- /dev/null +++ b/blockchains/ethereum/assets/0x88277055dF2EE38dA159863dA2F56ee0A6909D62/info.json @@ -0,0 +1,11 @@ +{ + "name": "ANALYSX", + "symbol": "XYS", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x88277055dF2EE38dA159863dA2F56ee0A6909D62", + "status": "abandoned", + "id": "0x88277055dF2EE38dA159863dA2F56ee0A6909D62" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88277055dF2EE38dA159863dA2F56ee0A6909D62/logo.png b/blockchains/ethereum/assets/0x88277055dF2EE38dA159863dA2F56ee0A6909D62/logo.png new file mode 100644 index 00000000..fdfa3c04 Binary files /dev/null and b/blockchains/ethereum/assets/0x88277055dF2EE38dA159863dA2F56ee0A6909D62/logo.png differ diff --git a/blockchains/ethereum/assets/0x8832E23B1135f78aD08a044c2550489eEA1E1098/info.json b/blockchains/ethereum/assets/0x8832E23B1135f78aD08a044c2550489eEA1E1098/info.json new file mode 100644 index 00000000..5dedf1cb --- /dev/null +++ b/blockchains/ethereum/assets/0x8832E23B1135f78aD08a044c2550489eEA1E1098/info.json @@ -0,0 +1,11 @@ +{ + "name": "2+2=4+4=8", + "symbol": "2248", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.2248.io/", + "explorer": "https://etherscan.io/token/0x8832E23B1135f78aD08a044c2550489eEA1E1098", + "status": "abandoned", + "id": "0x8832E23B1135f78aD08a044c2550489eEA1E1098" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8832E23B1135f78aD08a044c2550489eEA1E1098/logo.png b/blockchains/ethereum/assets/0x8832E23B1135f78aD08a044c2550489eEA1E1098/logo.png new file mode 100644 index 00000000..8ab31e38 Binary files /dev/null and b/blockchains/ethereum/assets/0x8832E23B1135f78aD08a044c2550489eEA1E1098/logo.png differ diff --git a/blockchains/ethereum/assets/0x884181554dfA9e578d36379919C05C25dC4a15bB/info.json b/blockchains/ethereum/assets/0x884181554dfA9e578d36379919C05C25dC4a15bB/info.json new file mode 100644 index 00000000..704fa799 --- /dev/null +++ b/blockchains/ethereum/assets/0x884181554dfA9e578d36379919C05C25dC4a15bB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gene Source Code Chain", + "symbol": "Gene", + "type": "ERC20", + "decimals": 18, + "description": "The Gene Source Code Foundation is building the world's largest distributed genomic and healthcare data storage system based on blockchain technology.", + "website": "http://www.gscchain.org", + "explorer": "https://etherscan.io/token/0x884181554dfA9e578d36379919C05C25dC4a15bB", + "status": "active", + "id": "0x884181554dfA9e578d36379919C05C25dC4a15bB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x884181554dfA9e578d36379919C05C25dC4a15bB/logo.png b/blockchains/ethereum/assets/0x884181554dfA9e578d36379919C05C25dC4a15bB/logo.png new file mode 100644 index 00000000..430507bc Binary files /dev/null and b/blockchains/ethereum/assets/0x884181554dfA9e578d36379919C05C25dC4a15bB/logo.png differ diff --git a/blockchains/ethereum/assets/0x8846c5cAD73fF19007367C1366b85E75c1885165/info.json b/blockchains/ethereum/assets/0x8846c5cAD73fF19007367C1366b85E75c1885165/info.json new file mode 100644 index 00000000..e16b7785 --- /dev/null +++ b/blockchains/ethereum/assets/0x8846c5cAD73fF19007367C1366b85E75c1885165/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long KNC-DAI 4x v2", + "symbol": "dLKNC4x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8846c5cAD73fF19007367C1366b85E75c1885165", + "status": "abandoned", + "id": "0x8846c5cAD73fF19007367C1366b85E75c1885165" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8846c5cAD73fF19007367C1366b85E75c1885165/logo.png b/blockchains/ethereum/assets/0x8846c5cAD73fF19007367C1366b85E75c1885165/logo.png new file mode 100644 index 00000000..3a0d6b7a Binary files /dev/null and b/blockchains/ethereum/assets/0x8846c5cAD73fF19007367C1366b85E75c1885165/logo.png differ diff --git a/blockchains/ethereum/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json b/blockchains/ethereum/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json new file mode 100644 index 00000000..50f67573 --- /dev/null +++ b/blockchains/ethereum/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json @@ -0,0 +1,32 @@ +{ + "name": "SquidGrow", + "type": "ERC20", + "symbol": "SquidGrow", + "decimals": 19, + "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/0x88479186BAC914E4313389a64881F5ed0153C765", + "status": "abandoned", + "id": "0x88479186BAC914E4313389a64881F5ed0153C765", + "links": [ + { + "name": "x", + "url": "https://x.com/squid_grow" + }, + { + "name": "telegram", + "url": "https://t.me/SquidGrowPortalEntry" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x884E84264d540485fAd815e7b3e5d8413CF76bD9/info.json b/blockchains/ethereum/assets/0x884E84264d540485fAd815e7b3e5d8413CF76bD9/info.json new file mode 100644 index 00000000..686b495d --- /dev/null +++ b/blockchains/ethereum/assets/0x884E84264d540485fAd815e7b3e5d8413CF76bD9/info.json @@ -0,0 +1,11 @@ +{ + "name": "MBT Chain", + "symbol": "MBTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x884E84264d540485fAd815e7b3e5d8413CF76bD9", + "status": "abandoned", + "id": "0x884E84264d540485fAd815e7b3e5d8413CF76bD9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x884E84264d540485fAd815e7b3e5d8413CF76bD9/logo.png b/blockchains/ethereum/assets/0x884E84264d540485fAd815e7b3e5d8413CF76bD9/logo.png new file mode 100644 index 00000000..0710b80d Binary files /dev/null and b/blockchains/ethereum/assets/0x884E84264d540485fAd815e7b3e5d8413CF76bD9/logo.png differ diff --git a/blockchains/ethereum/assets/0x8851B3DDA4F8A0a231FF45e8871b7003142d83DC/info.json b/blockchains/ethereum/assets/0x8851B3DDA4F8A0a231FF45e8871b7003142d83DC/info.json new file mode 100644 index 00000000..c5061369 --- /dev/null +++ b/blockchains/ethereum/assets/0x8851B3DDA4F8A0a231FF45e8871b7003142d83DC/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZIM GOLD TOKEN", + "symbol": "ZAGO", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8851B3DDA4F8A0a231FF45e8871b7003142d83DC", + "status": "abandoned", + "id": "0x8851B3DDA4F8A0a231FF45e8871b7003142d83DC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8851B3DDA4F8A0a231FF45e8871b7003142d83DC/logo.png b/blockchains/ethereum/assets/0x8851B3DDA4F8A0a231FF45e8871b7003142d83DC/logo.png new file mode 100644 index 00000000..35a77ac6 Binary files /dev/null and b/blockchains/ethereum/assets/0x8851B3DDA4F8A0a231FF45e8871b7003142d83DC/logo.png differ diff --git a/blockchains/ethereum/assets/0x8856a941149a9A2110b0bF58A1Fc97d34ffa60Fe/info.json b/blockchains/ethereum/assets/0x8856a941149a9A2110b0bF58A1Fc97d34ffa60Fe/info.json new file mode 100644 index 00000000..f0f11d34 --- /dev/null +++ b/blockchains/ethereum/assets/0x8856a941149a9A2110b0bF58A1Fc97d34ffa60Fe/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R914437", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8856a941149a9A2110b0bF58A1Fc97d34ffa60Fe", + "status": "abandoned", + "id": "0x8856a941149a9A2110b0bF58A1Fc97d34ffa60Fe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8856a941149a9A2110b0bF58A1Fc97d34ffa60Fe/logo.png b/blockchains/ethereum/assets/0x8856a941149a9A2110b0bF58A1Fc97d34ffa60Fe/logo.png new file mode 100755 index 00000000..fbdc5fd2 Binary files /dev/null and b/blockchains/ethereum/assets/0x8856a941149a9A2110b0bF58A1Fc97d34ffa60Fe/logo.png differ diff --git a/blockchains/ethereum/assets/0x88703C1E71f44a2D329C99e8E112F7a4E7dD6312/info.json b/blockchains/ethereum/assets/0x88703C1E71f44a2D329C99e8E112F7a4E7dD6312/info.json new file mode 100644 index 00000000..34df2bbd --- /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 00000000..8c3d69ff Binary files /dev/null and b/blockchains/ethereum/assets/0x88703C1E71f44a2D329C99e8E112F7a4E7dD6312/logo.png differ diff --git a/blockchains/ethereum/assets/0x887168120cb89Fb06F3E74Dc4AF20D67dF0977f6/info.json b/blockchains/ethereum/assets/0x887168120cb89Fb06F3E74Dc4AF20D67dF0977f6/info.json new file mode 100644 index 00000000..ccd67779 --- /dev/null +++ b/blockchains/ethereum/assets/0x887168120cb89Fb06F3E74Dc4AF20D67dF0977f6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sekuritance", + "symbol": "SKRT", + "type": "ERC20", + "decimals": 18, + "description": "A CeFi and DeFi RegTech ecosystem delivering top compliance, regulatory, transaction monitoring and identity management.", + "website": "https://www.sekuritance.com/", + "explorer": "https://etherscan.io/token/0x887168120cb89fb06f3e74dc4af20d67df0977f6", + "status": "active", + "id": "0x887168120cb89Fb06F3E74Dc4AF20D67dF0977f6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x887168120cb89Fb06F3E74Dc4AF20D67dF0977f6/logo.png b/blockchains/ethereum/assets/0x887168120cb89Fb06F3E74Dc4AF20D67dF0977f6/logo.png new file mode 100644 index 00000000..8354e528 Binary files /dev/null and b/blockchains/ethereum/assets/0x887168120cb89Fb06F3E74Dc4AF20D67dF0977f6/logo.png differ diff --git a/blockchains/ethereum/assets/0x8871690d148a2c3BE909B6DA330A9a12C7164234/info.json b/blockchains/ethereum/assets/0x8871690d148a2c3BE909B6DA330A9a12C7164234/info.json new file mode 100644 index 00000000..b7ce8bd2 --- /dev/null +++ b/blockchains/ethereum/assets/0x8871690d148a2c3BE909B6DA330A9a12C7164234/info.json @@ -0,0 +1,11 @@ +{ + "name": "PatientsCoin", + "symbol": "FAM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8871690d148a2c3BE909B6DA330A9a12C7164234", + "status": "abandoned", + "id": "0x8871690d148a2c3BE909B6DA330A9a12C7164234" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8871690d148a2c3BE909B6DA330A9a12C7164234/logo.png b/blockchains/ethereum/assets/0x8871690d148a2c3BE909B6DA330A9a12C7164234/logo.png new file mode 100644 index 00000000..0c1ad914 Binary files /dev/null and b/blockchains/ethereum/assets/0x8871690d148a2c3BE909B6DA330A9a12C7164234/logo.png differ diff --git a/blockchains/ethereum/assets/0x887834D3b8D450B6bAB109c252Df3DA286d73CE4/info.json b/blockchains/ethereum/assets/0x887834D3b8D450B6bAB109c252Df3DA286d73CE4/info.json new file mode 100644 index 00000000..f4c04b42 --- /dev/null +++ b/blockchains/ethereum/assets/0x887834D3b8D450B6bAB109c252Df3DA286d73CE4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Atmatrix Token", + "symbol": "ATT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x887834D3b8D450B6bAB109c252Df3DA286d73CE4", + "status": "abandoned", + "id": "0x887834D3b8D450B6bAB109c252Df3DA286d73CE4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x887834D3b8D450B6bAB109c252Df3DA286d73CE4/logo.png b/blockchains/ethereum/assets/0x887834D3b8D450B6bAB109c252Df3DA286d73CE4/logo.png new file mode 100644 index 00000000..d460b071 Binary files /dev/null and b/blockchains/ethereum/assets/0x887834D3b8D450B6bAB109c252Df3DA286d73CE4/logo.png differ diff --git a/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/info.json b/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/info.json new file mode 100644 index 00000000..170ecef3 --- /dev/null +++ b/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/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://etherscan.io/token/0x88800092fF476844f74dC2FC427974BBee2794Ae", + "type": "ERC20", + "symbol": "WALLET", + "status": "active", + "decimals": 18, + "id": "0x88800092fF476844f74dC2FC427974BBee2794Ae", + "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/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/logo.png b/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/logo.png new file mode 100644 index 00000000..2c33c7b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/logo.png differ diff --git a/blockchains/ethereum/assets/0x8881562783028F5c1BCB985d2283D5E170D88888/info.json b/blockchains/ethereum/assets/0x8881562783028F5c1BCB985d2283D5E170D88888/info.json new file mode 100644 index 00000000..21a6b878 --- /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 00000000..a1968774 Binary files /dev/null and b/blockchains/ethereum/assets/0x8881562783028F5c1BCB985d2283D5E170D88888/logo.png differ diff --git a/blockchains/ethereum/assets/0x888666CA69E0f178DED6D75b5726Cee99A87D698/info.json b/blockchains/ethereum/assets/0x888666CA69E0f178DED6D75b5726Cee99A87D698/info.json new file mode 100644 index 00000000..8e4f2dcb --- /dev/null +++ b/blockchains/ethereum/assets/0x888666CA69E0f178DED6D75b5726Cee99A87D698/info.json @@ -0,0 +1,11 @@ +{ + "name": "ICONOMI", + "symbol": "ICN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x888666CA69E0f178DED6D75b5726Cee99A87D698", + "status": "abandoned", + "id": "0x888666CA69E0f178DED6D75b5726Cee99A87D698" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x888666CA69E0f178DED6D75b5726Cee99A87D698/logo.png b/blockchains/ethereum/assets/0x888666CA69E0f178DED6D75b5726Cee99A87D698/logo.png new file mode 100644 index 00000000..10a6a18c Binary files /dev/null and b/blockchains/ethereum/assets/0x888666CA69E0f178DED6D75b5726Cee99A87D698/logo.png differ diff --git a/blockchains/ethereum/assets/0x8888801aF4d980682e47f1A9036e589479e835C5/info.json b/blockchains/ethereum/assets/0x8888801aF4d980682e47f1A9036e589479e835C5/info.json new file mode 100644 index 00000000..96985457 --- /dev/null +++ b/blockchains/ethereum/assets/0x8888801aF4d980682e47f1A9036e589479e835C5/info.json @@ -0,0 +1,11 @@ +{ + "name": "88mph.app", + "symbol": "MPH", + "type": "ERC20", + "decimals": 18, + "description": "MPH is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://88mph.app", + "explorer": "https://etherscan.io/token/0x8888801aF4d980682e47f1A9036e589479e835C5", + "status": "active", + "id": "0x8888801aF4d980682e47f1A9036e589479e835C5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8888801aF4d980682e47f1A9036e589479e835C5/logo.png b/blockchains/ethereum/assets/0x8888801aF4d980682e47f1A9036e589479e835C5/logo.png new file mode 100644 index 00000000..63da7540 Binary files /dev/null and b/blockchains/ethereum/assets/0x8888801aF4d980682e47f1A9036e589479e835C5/logo.png differ diff --git a/blockchains/ethereum/assets/0x888888848B652B3E3a0f34c96E00EEC0F3a23F72/info.json b/blockchains/ethereum/assets/0x888888848B652B3E3a0f34c96E00EEC0F3a23F72/info.json new file mode 100644 index 00000000..2f7e3dba --- /dev/null +++ b/blockchains/ethereum/assets/0x888888848B652B3E3a0f34c96E00EEC0F3a23F72/info.json @@ -0,0 +1,29 @@ +{ + "name": "Alien Worlds Trilium", + "symbol": "TLM", + "type": "ERC20", + "decimals": 4, + "description": "Trilium (TLM) is the native utility token of the Alien Worlds metaverse", + "website": "https://alienworlds.io", + "explorer": "https://etherscan.io/token/0x888888848B652B3E3a0f34c96E00EEC0F3a23F72", + "status": "active", + "id": "0x888888848B652B3E3a0f34c96E00EEC0F3a23F72", + "links": [ + { + "name": "telegram", + "url": "https://t.me/AlienWorldsOffical" + }, + { + "name": "x", + "url": "https://x.com/alienworlds" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alien-worlds/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/alien-worlds/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x888888848B652B3E3a0f34c96E00EEC0F3a23F72/logo.png b/blockchains/ethereum/assets/0x888888848B652B3E3a0f34c96E00EEC0F3a23F72/logo.png new file mode 100644 index 00000000..ac988ef8 Binary files /dev/null and b/blockchains/ethereum/assets/0x888888848B652B3E3a0f34c96E00EEC0F3a23F72/logo.png differ diff --git a/blockchains/ethereum/assets/0x8888889213DD4dA823EbDD1e235b09590633C150/info.json b/blockchains/ethereum/assets/0x8888889213DD4dA823EbDD1e235b09590633C150/info.json new file mode 100644 index 00000000..b8e91fe2 --- /dev/null +++ b/blockchains/ethereum/assets/0x8888889213DD4dA823EbDD1e235b09590633C150/info.json @@ -0,0 +1,11 @@ +{ + "name": "Marblecoin", + "symbol": "MBC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://marble.cards/", + "explorer": "https://etherscan.io/token/0x8888889213DD4dA823EbDD1e235b09590633C150", + "status": "abandoned", + "id": "0x8888889213DD4dA823EbDD1e235b09590633C150" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8888889213DD4dA823EbDD1e235b09590633C150/logo.png b/blockchains/ethereum/assets/0x8888889213DD4dA823EbDD1e235b09590633C150/logo.png new file mode 100644 index 00000000..858cbdb4 Binary files /dev/null and b/blockchains/ethereum/assets/0x8888889213DD4dA823EbDD1e235b09590633C150/logo.png differ diff --git a/blockchains/ethereum/assets/0x889badfa1aFAfb0E783B9f91626d71aeB1a3B113/info.json b/blockchains/ethereum/assets/0x889badfa1aFAfb0E783B9f91626d71aeB1a3B113/info.json new file mode 100644 index 00000000..e2517172 --- /dev/null +++ b/blockchains/ethereum/assets/0x889badfa1aFAfb0E783B9f91626d71aeB1a3B113/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short ZRX-DAI 3x v2", + "symbol": "dsZRX3x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x889badfa1aFAfb0E783B9f91626d71aeB1a3B113", + "status": "abandoned", + "id": "0x889badfa1aFAfb0E783B9f91626d71aeB1a3B113" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x889badfa1aFAfb0E783B9f91626d71aeB1a3B113/logo.png b/blockchains/ethereum/assets/0x889badfa1aFAfb0E783B9f91626d71aeB1a3B113/logo.png new file mode 100644 index 00000000..2ee8e126 Binary files /dev/null and b/blockchains/ethereum/assets/0x889badfa1aFAfb0E783B9f91626d71aeB1a3B113/logo.png differ diff --git a/blockchains/ethereum/assets/0x889eFB523cc39590B8483EB9491890AC71407f64/info.json b/blockchains/ethereum/assets/0x889eFB523cc39590B8483EB9491890AC71407f64/info.json new file mode 100644 index 00000000..002627fb --- /dev/null +++ b/blockchains/ethereum/assets/0x889eFB523cc39590B8483EB9491890AC71407f64/info.json @@ -0,0 +1,17 @@ +{ + "name": "Moon Juice (JUICE)", + "website": "https://moonjuice.xyz/", + "description": "Moon Juice is a experiment in farming, deflation, and programmable money.", + "explorer": "https://etherscan.io/token/0x889eFB523cc39590B8483EB9491890AC71407f64", + "type": "ERC20", + "symbol": "JUICE", + "decimals": 18, + "status": "active", + "id": "0x889eFB523cc39590B8483EB9491890AC71407f64", + "links": [ + { + "name": "x", + "url": "https://x.com/MoonJuice_xyz" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x889eFB523cc39590B8483EB9491890AC71407f64/logo.png b/blockchains/ethereum/assets/0x889eFB523cc39590B8483EB9491890AC71407f64/logo.png new file mode 100644 index 00000000..48b9e4ca Binary files /dev/null and b/blockchains/ethereum/assets/0x889eFB523cc39590B8483EB9491890AC71407f64/logo.png differ diff --git a/blockchains/ethereum/assets/0x88A9A52F944315D5B4e917b9689e65445C401E83/info.json b/blockchains/ethereum/assets/0x88A9A52F944315D5B4e917b9689e65445C401E83/info.json new file mode 100644 index 00000000..3d487fa9 --- /dev/null +++ b/blockchains/ethereum/assets/0x88A9A52F944315D5B4e917b9689e65445C401E83/info.json @@ -0,0 +1,41 @@ +{ + "name": "Fear", + "type": "ERC20", + "symbol": "FEAR", + "decimals": 18, + "website": "https://www.fearnft.games/", + "description": "Fear is a blockchain horror gaming and NFT project from the creators of the famous Whack It games.", + "explorer": "https://etherscan.io/token/0x88a9a52f944315d5b4e917b9689e65445c401e83", + "status": "active", + "id": "0x88A9A52F944315D5B4e917b9689e65445C401E83", + "links": [ + { + "name": "whitepaper", + "url": "https://fearnft.games/docs/fear-nfts-whitepaper.pdf" + }, + { + "name": "x", + "url": "https://x.com/fearnfts" + }, + { + "name": "telegram", + "url": "https://t.me/fearcoin" + }, + { + "name": "telegram_news", + "url": "https://t.me/fearnftsannouncement" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fear-nfts/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fear" + }, + { + "name": "facebook", + "url": "https://facebook.com/FEAR-109921091272605" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88A9A52F944315D5B4e917b9689e65445C401E83/logo.png b/blockchains/ethereum/assets/0x88A9A52F944315D5B4e917b9689e65445C401E83/logo.png new file mode 100644 index 00000000..9c94c2c3 Binary files /dev/null and b/blockchains/ethereum/assets/0x88A9A52F944315D5B4e917b9689e65445C401E83/logo.png differ diff --git a/blockchains/ethereum/assets/0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB/info.json b/blockchains/ethereum/assets/0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB/info.json new file mode 100644 index 00000000..30522296 --- /dev/null +++ b/blockchains/ethereum/assets/0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alchemist", + "type": "ERC20", + "symbol": "⚗️", + "decimals": 18, + "website": "https://alchemist.farm/", + "description": "Alchemist's one and only purpose is to find the philosopher's stone and use it to explore the galaxy.", + "explorer": "https://etherscan.io/token/0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab", + "status": "active", + "id": "0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB/logo.png b/blockchains/ethereum/assets/0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB/logo.png new file mode 100644 index 00000000..58a468d8 Binary files /dev/null and b/blockchains/ethereum/assets/0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB/logo.png differ diff --git a/blockchains/ethereum/assets/0x88Ce174C655B6d11210A069B2c106632DaBDB068/info.json b/blockchains/ethereum/assets/0x88Ce174C655B6d11210A069B2c106632DaBDB068/info.json new file mode 100644 index 00000000..b1924d43 --- /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 00000000..8a4c7022 Binary files /dev/null and b/blockchains/ethereum/assets/0x88Ce174C655B6d11210A069B2c106632DaBDB068/logo.png differ diff --git a/blockchains/ethereum/assets/0x88D59Ba796fDf639dEd3b5E720988D59fDb71Eb8/info.json b/blockchains/ethereum/assets/0x88D59Ba796fDf639dEd3b5E720988D59fDb71Eb8/info.json new file mode 100644 index 00000000..1b6b522f --- /dev/null +++ b/blockchains/ethereum/assets/0x88D59Ba796fDf639dEd3b5E720988D59fDb71Eb8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Payship.org", + "symbol": "PSHP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x88D59Ba796fDf639dEd3b5E720988D59fDb71Eb8", + "status": "abandoned", + "id": "0x88D59Ba796fDf639dEd3b5E720988D59fDb71Eb8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88D59Ba796fDf639dEd3b5E720988D59fDb71Eb8/logo.png b/blockchains/ethereum/assets/0x88D59Ba796fDf639dEd3b5E720988D59fDb71Eb8/logo.png new file mode 100644 index 00000000..584893d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x88D59Ba796fDf639dEd3b5E720988D59fDb71Eb8/logo.png differ diff --git a/blockchains/ethereum/assets/0x88EF27e69108B2633F8E1C184CC37940A075cC02/info.json b/blockchains/ethereum/assets/0x88EF27e69108B2633F8E1C184CC37940A075cC02/info.json new file mode 100644 index 00000000..afbad7ab --- /dev/null +++ b/blockchains/ethereum/assets/0x88EF27e69108B2633F8E1C184CC37940A075cC02/info.json @@ -0,0 +1,15 @@ +{ + "name": "Dego Finance", + "website": "https://dego.finance", + "description": "DEGO claims to be a brand new idea towards a sustainable Decentralized Finance (DeFi) ecosystem.", + "explorer": "https://etherscan.io/token/0x88EF27e69108B2633F8E1C184CC37940A075cC02", + "type": "ERC20", + "symbol": "DEGO", + "decimals": 18, + "status": "abandoned", + "id": "0x88EF27e69108B2633F8E1C184CC37940A075cC02", + "tags": [ + "governance", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88F12E1B380aad1D21c80aC48A0A87a02Ccc0DE9/info.json b/blockchains/ethereum/assets/0x88F12E1B380aad1D21c80aC48A0A87a02Ccc0DE9/info.json new file mode 100644 index 00000000..5ab8b596 --- /dev/null +++ b/blockchains/ethereum/assets/0x88F12E1B380aad1D21c80aC48A0A87a02Ccc0DE9/info.json @@ -0,0 +1,11 @@ +{ + "name": "KLICKZIE TOKEN", + "symbol": "KLK20", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x88F12E1B380aad1D21c80aC48A0A87a02Ccc0DE9", + "status": "abandoned", + "id": "0x88F12E1B380aad1D21c80aC48A0A87a02Ccc0DE9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88F12E1B380aad1D21c80aC48A0A87a02Ccc0DE9/logo.png b/blockchains/ethereum/assets/0x88F12E1B380aad1D21c80aC48A0A87a02Ccc0DE9/logo.png new file mode 100644 index 00000000..bc3bca1e Binary files /dev/null and b/blockchains/ethereum/assets/0x88F12E1B380aad1D21c80aC48A0A87a02Ccc0DE9/logo.png differ diff --git a/blockchains/ethereum/assets/0x88FA37fcEF9B2EE0DdC18Acda2044b54f400F58e/info.json b/blockchains/ethereum/assets/0x88FA37fcEF9B2EE0DdC18Acda2044b54f400F58e/info.json new file mode 100644 index 00000000..46fae819 --- /dev/null +++ b/blockchains/ethereum/assets/0x88FA37fcEF9B2EE0DdC18Acda2044b54f400F58e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nsah", + "symbol": "NSAH", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x88FA37fcEF9B2EE0DdC18Acda2044b54f400F58e", + "status": "abandoned", + "id": "0x88FA37fcEF9B2EE0DdC18Acda2044b54f400F58e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88FA37fcEF9B2EE0DdC18Acda2044b54f400F58e/logo.png b/blockchains/ethereum/assets/0x88FA37fcEF9B2EE0DdC18Acda2044b54f400F58e/logo.png new file mode 100644 index 00000000..17b7f769 Binary files /dev/null and b/blockchains/ethereum/assets/0x88FA37fcEF9B2EE0DdC18Acda2044b54f400F58e/logo.png differ diff --git a/blockchains/ethereum/assets/0x88FCFBc22C6d3dBaa25aF478C578978339BDe77a/info.json b/blockchains/ethereum/assets/0x88FCFBc22C6d3dBaa25aF478C578978339BDe77a/info.json new file mode 100644 index 00000000..b6ac2728 --- /dev/null +++ b/blockchains/ethereum/assets/0x88FCFBc22C6d3dBaa25aF478C578978339BDe77a/info.json @@ -0,0 +1,11 @@ +{ + "name": "FundYourselfNow Token", + "symbol": "FYN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x88FCFBc22C6d3dBaa25aF478C578978339BDe77a", + "status": "abandoned", + "id": "0x88FCFBc22C6d3dBaa25aF478C578978339BDe77a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88FCFBc22C6d3dBaa25aF478C578978339BDe77a/logo.png b/blockchains/ethereum/assets/0x88FCFBc22C6d3dBaa25aF478C578978339BDe77a/logo.png new file mode 100644 index 00000000..8dae526d Binary files /dev/null and b/blockchains/ethereum/assets/0x88FCFBc22C6d3dBaa25aF478C578978339BDe77a/logo.png differ diff --git a/blockchains/ethereum/assets/0x88bCB069C9141aa6a466c17C0a90F736df33FD85/info.json b/blockchains/ethereum/assets/0x88bCB069C9141aa6a466c17C0a90F736df33FD85/info.json new file mode 100644 index 00000000..4e25d06f --- /dev/null +++ b/blockchains/ethereum/assets/0x88bCB069C9141aa6a466c17C0a90F736df33FD85/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dafco Token", + "symbol": "DAFCO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x88bCB069C9141aa6a466c17C0a90F736df33FD85", + "status": "abandoned", + "id": "0x88bCB069C9141aa6a466c17C0a90F736df33FD85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88bCB069C9141aa6a466c17C0a90F736df33FD85/logo.png b/blockchains/ethereum/assets/0x88bCB069C9141aa6a466c17C0a90F736df33FD85/logo.png new file mode 100644 index 00000000..b742f508 Binary files /dev/null and b/blockchains/ethereum/assets/0x88bCB069C9141aa6a466c17C0a90F736df33FD85/logo.png differ diff --git a/blockchains/ethereum/assets/0x88cDF00f95d31904600b2cd8110b95ac970E0E2F/info.json b/blockchains/ethereum/assets/0x88cDF00f95d31904600b2cd8110b95ac970E0E2F/info.json new file mode 100644 index 00000000..40dacd2b --- /dev/null +++ b/blockchains/ethereum/assets/0x88cDF00f95d31904600b2cd8110b95ac970E0E2F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Petro.Global", + "symbol": "PTG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x88cDF00f95d31904600b2cd8110b95ac970E0E2F", + "status": "abandoned", + "id": "0x88cDF00f95d31904600b2cd8110b95ac970E0E2F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88cDF00f95d31904600b2cd8110b95ac970E0E2F/logo.png b/blockchains/ethereum/assets/0x88cDF00f95d31904600b2cd8110b95ac970E0E2F/logo.png new file mode 100644 index 00000000..5eb874b8 Binary files /dev/null and b/blockchains/ethereum/assets/0x88cDF00f95d31904600b2cd8110b95ac970E0E2F/logo.png differ diff --git a/blockchains/ethereum/assets/0x88d50B466BE55222019D71F9E8fAe17f5f45FCA1/info.json b/blockchains/ethereum/assets/0x88d50B466BE55222019D71F9E8fAe17f5f45FCA1/info.json new file mode 100644 index 00000000..f5ec3f2d --- /dev/null +++ b/blockchains/ethereum/assets/0x88d50B466BE55222019D71F9E8fAe17f5f45FCA1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptaur", + "symbol": "CPT", + "type": "ERC20", + "decimals": 8, + "description": "Cryptaur (CPT) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://cryptaur.com", + "explorer": "https://etherscan.io/token/0x88d50B466BE55222019D71F9E8fAe17f5f45FCA1", + "status": "active", + "id": "0x88d50B466BE55222019D71F9E8fAe17f5f45FCA1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88d50B466BE55222019D71F9E8fAe17f5f45FCA1/logo.png b/blockchains/ethereum/assets/0x88d50B466BE55222019D71F9E8fAe17f5f45FCA1/logo.png new file mode 100644 index 00000000..27dda968 Binary files /dev/null and b/blockchains/ethereum/assets/0x88d50B466BE55222019D71F9E8fAe17f5f45FCA1/logo.png differ diff --git a/blockchains/ethereum/assets/0x88d60255F917e3eb94eaE199d827DAd837fac4cB/info.json b/blockchains/ethereum/assets/0x88d60255F917e3eb94eaE199d827DAd837fac4cB/info.json new file mode 100644 index 00000000..41ceb352 --- /dev/null +++ b/blockchains/ethereum/assets/0x88d60255F917e3eb94eaE199d827DAd837fac4cB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gastoken.io", + "type": "ERC20", + "symbol": "GST1", + "decimals": 2, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0x88d60255f917e3eb94eae199d827dad837fac4cb", + "status": "abandoned", + "id": "0x88d60255F917e3eb94eaE199d827DAd837fac4cB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0/info.json b/blockchains/ethereum/assets/0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0/info.json new file mode 100644 index 00000000..89f25dcd --- /dev/null +++ b/blockchains/ethereum/assets/0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tellor", + "website": "https://tellor.io", + "description": "Tellor (a decentralized oracle) aims to address the Oracle problem on Ethereum.", + "explorer": "https://etherscan.io/token/0x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0", + "type": "ERC20", + "symbol": "TRB", + "decimals": 18, + "status": "active", + "id": "0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0/logo.png b/blockchains/ethereum/assets/0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0/logo.png new file mode 100644 index 00000000..ec5a4360 Binary files /dev/null and b/blockchains/ethereum/assets/0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0/logo.png differ diff --git a/blockchains/ethereum/assets/0x88f400F6a26465c9ac6AE5c1C8C14Cf12B515C96/info.json b/blockchains/ethereum/assets/0x88f400F6a26465c9ac6AE5c1C8C14Cf12B515C96/info.json new file mode 100644 index 00000000..7268396b --- /dev/null +++ b/blockchains/ethereum/assets/0x88f400F6a26465c9ac6AE5c1C8C14Cf12B515C96/info.json @@ -0,0 +1,11 @@ +{ + "name": "Virus Token", + "symbol": "VIRUS", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "https://virustoken.xyz/", + "explorer": "https://etherscan.io/token/0x88f400F6a26465c9ac6AE5c1C8C14Cf12B515C96", + "status": "abandoned", + "id": "0x88f400F6a26465c9ac6AE5c1C8C14Cf12B515C96" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88f400F6a26465c9ac6AE5c1C8C14Cf12B515C96/logo.png b/blockchains/ethereum/assets/0x88f400F6a26465c9ac6AE5c1C8C14Cf12B515C96/logo.png new file mode 100644 index 00000000..e01d6563 Binary files /dev/null and b/blockchains/ethereum/assets/0x88f400F6a26465c9ac6AE5c1C8C14Cf12B515C96/logo.png differ diff --git a/blockchains/ethereum/assets/0x8902f3Ab9E14183c9a7EC1463ecd7F61046BA965/info.json b/blockchains/ethereum/assets/0x8902f3Ab9E14183c9a7EC1463ecd7F61046BA965/info.json new file mode 100644 index 00000000..f79a8fa9 --- /dev/null +++ b/blockchains/ethereum/assets/0x8902f3Ab9E14183c9a7EC1463ecd7F61046BA965/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITNEXX", + "symbol": "BTNX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8902f3Ab9E14183c9a7EC1463ecd7F61046BA965", + "status": "abandoned", + "id": "0x8902f3Ab9E14183c9a7EC1463ecd7F61046BA965" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8902f3Ab9E14183c9a7EC1463ecd7F61046BA965/logo.png b/blockchains/ethereum/assets/0x8902f3Ab9E14183c9a7EC1463ecd7F61046BA965/logo.png new file mode 100755 index 00000000..f7504534 Binary files /dev/null and b/blockchains/ethereum/assets/0x8902f3Ab9E14183c9a7EC1463ecd7F61046BA965/logo.png differ diff --git a/blockchains/ethereum/assets/0x8912358D977e123b51EcAd1fFA0cC4A7e32FF774/info.json b/blockchains/ethereum/assets/0x8912358D977e123b51EcAd1fFA0cC4A7e32FF774/info.json new file mode 100644 index 00000000..675ca4e9 --- /dev/null +++ b/blockchains/ethereum/assets/0x8912358D977e123b51EcAd1fFA0cC4A7e32FF774/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wisdom chain", + "symbol": "Wdc", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8912358D977e123b51EcAd1fFA0cC4A7e32FF774", + "status": "abandoned", + "id": "0x8912358D977e123b51EcAd1fFA0cC4A7e32FF774" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8912358D977e123b51EcAd1fFA0cC4A7e32FF774/logo.png b/blockchains/ethereum/assets/0x8912358D977e123b51EcAd1fFA0cC4A7e32FF774/logo.png new file mode 100644 index 00000000..5db9d1a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x8912358D977e123b51EcAd1fFA0cC4A7e32FF774/logo.png differ diff --git a/blockchains/ethereum/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json b/blockchains/ethereum/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json new file mode 100644 index 00000000..755fff17 --- /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 00000000..c82cd60e Binary files /dev/null and b/blockchains/ethereum/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/logo.png differ diff --git a/blockchains/ethereum/assets/0x892F5A0B08BB7B1eeCCCC63EF3916fF201c93664/info.json b/blockchains/ethereum/assets/0x892F5A0B08BB7B1eeCCCC63EF3916fF201c93664/info.json new file mode 100644 index 00000000..2b7f763c --- /dev/null +++ b/blockchains/ethereum/assets/0x892F5A0B08BB7B1eeCCCC63EF3916fF201c93664/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bloody", + "website": "https://bloodyfi.org/", + "description": "Bloody is a deflationary farming token that also periodically rebases like Ampleforth.", + "explorer": "https://etherscan.io/token/0x892F5A0B08BB7B1eeCCCC63EF3916fF201c93664", + "type": "ERC20", + "symbol": "BLOODY", + "decimals": 18, + "status": "active", + "id": "0x892F5A0B08BB7B1eeCCCC63EF3916fF201c93664" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x892F5A0B08BB7B1eeCCCC63EF3916fF201c93664/logo.png b/blockchains/ethereum/assets/0x892F5A0B08BB7B1eeCCCC63EF3916fF201c93664/logo.png new file mode 100644 index 00000000..3a4c4eda Binary files /dev/null and b/blockchains/ethereum/assets/0x892F5A0B08BB7B1eeCCCC63EF3916fF201c93664/logo.png differ diff --git a/blockchains/ethereum/assets/0x89303500a7Abfb178B274FD89F2469C264951e1f/info.json b/blockchains/ethereum/assets/0x89303500a7Abfb178B274FD89F2469C264951e1f/info.json new file mode 100644 index 00000000..5a293335 --- /dev/null +++ b/blockchains/ethereum/assets/0x89303500a7Abfb178B274FD89F2469C264951e1f/info.json @@ -0,0 +1,11 @@ +{ + "name": "RefToken", + "symbol": "REF", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x89303500a7Abfb178B274FD89F2469C264951e1f", + "status": "abandoned", + "id": "0x89303500a7Abfb178B274FD89F2469C264951e1f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89303500a7Abfb178B274FD89F2469C264951e1f/logo.png b/blockchains/ethereum/assets/0x89303500a7Abfb178B274FD89F2469C264951e1f/logo.png new file mode 100644 index 00000000..2e87ef00 Binary files /dev/null and b/blockchains/ethereum/assets/0x89303500a7Abfb178B274FD89F2469C264951e1f/logo.png differ diff --git a/blockchains/ethereum/assets/0x89332542B57621dBee1e305b30b0e02F86283100/info.json b/blockchains/ethereum/assets/0x89332542B57621dBee1e305b30b0e02F86283100/info.json new file mode 100644 index 00000000..680cbfdb --- /dev/null +++ b/blockchains/ethereum/assets/0x89332542B57621dBee1e305b30b0e02F86283100/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kryptonium", + "symbol": "KRYP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x89332542B57621dBee1e305b30b0e02F86283100", + "status": "abandoned", + "id": "0x89332542B57621dBee1e305b30b0e02F86283100" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89332542B57621dBee1e305b30b0e02F86283100/logo.png b/blockchains/ethereum/assets/0x89332542B57621dBee1e305b30b0e02F86283100/logo.png new file mode 100755 index 00000000..235d8f87 Binary files /dev/null and b/blockchains/ethereum/assets/0x89332542B57621dBee1e305b30b0e02F86283100/logo.png differ diff --git a/blockchains/ethereum/assets/0x896a07e3788983ec52eaf0F9C6F6E031464Ee2CC/info.json b/blockchains/ethereum/assets/0x896a07e3788983ec52eaf0F9C6F6E031464Ee2CC/info.json new file mode 100644 index 00000000..b437484f --- /dev/null +++ b/blockchains/ethereum/assets/0x896a07e3788983ec52eaf0F9C6F6E031464Ee2CC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Meridian Network", + "symbol": "MRDN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x896a07e3788983ec52eaf0F9C6F6E031464Ee2CC", + "status": "abandoned", + "id": "0x896a07e3788983ec52eaf0F9C6F6E031464Ee2CC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x896a07e3788983ec52eaf0F9C6F6E031464Ee2CC/logo.png b/blockchains/ethereum/assets/0x896a07e3788983ec52eaf0F9C6F6E031464Ee2CC/logo.png new file mode 100644 index 00000000..2bf09aed Binary files /dev/null and b/blockchains/ethereum/assets/0x896a07e3788983ec52eaf0F9C6F6E031464Ee2CC/logo.png differ diff --git a/blockchains/ethereum/assets/0x896fdE45EbD168034fa1438BF754e5eDeAEf6232/info.json b/blockchains/ethereum/assets/0x896fdE45EbD168034fa1438BF754e5eDeAEf6232/info.json new file mode 100644 index 00000000..f2b2c87e --- /dev/null +++ b/blockchains/ethereum/assets/0x896fdE45EbD168034fa1438BF754e5eDeAEf6232/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg10500", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x896fdE45EbD168034fa1438BF754e5eDeAEf6232", + "status": "abandoned", + "id": "0x896fdE45EbD168034fa1438BF754e5eDeAEf6232" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x896fdE45EbD168034fa1438BF754e5eDeAEf6232/logo.png b/blockchains/ethereum/assets/0x896fdE45EbD168034fa1438BF754e5eDeAEf6232/logo.png new file mode 100644 index 00000000..5a97c3c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x896fdE45EbD168034fa1438BF754e5eDeAEf6232/logo.png differ diff --git a/blockchains/ethereum/assets/0x897036A41d787BC4a52F8617A5AF820188386f3F/info.json b/blockchains/ethereum/assets/0x897036A41d787BC4a52F8617A5AF820188386f3F/info.json new file mode 100644 index 00000000..20fdc2ee --- /dev/null +++ b/blockchains/ethereum/assets/0x897036A41d787BC4a52F8617A5AF820188386f3F/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C547986", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x897036A41d787BC4a52F8617A5AF820188386f3F", + "status": "abandoned", + "id": "0x897036A41d787BC4a52F8617A5AF820188386f3F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x897036A41d787BC4a52F8617A5AF820188386f3F/logo.png b/blockchains/ethereum/assets/0x897036A41d787BC4a52F8617A5AF820188386f3F/logo.png new file mode 100644 index 00000000..ba132b08 Binary files /dev/null and b/blockchains/ethereum/assets/0x897036A41d787BC4a52F8617A5AF820188386f3F/logo.png differ diff --git a/blockchains/ethereum/assets/0x8971f9fd7196e5cEE2C1032B50F656855af7Dd26/info.json b/blockchains/ethereum/assets/0x8971f9fd7196e5cEE2C1032B50F656855af7Dd26/info.json new file mode 100644 index 00000000..6cccedb4 --- /dev/null +++ b/blockchains/ethereum/assets/0x8971f9fd7196e5cEE2C1032B50F656855af7Dd26/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lambda", + "symbol": "LAMB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.lambdastorage.com/en", + "explorer": "https://etherscan.io/token/0x8971f9fd7196e5cEE2C1032B50F656855af7Dd26", + "status": "abandoned", + "id": "0x8971f9fd7196e5cEE2C1032B50F656855af7Dd26" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8971f9fd7196e5cEE2C1032B50F656855af7Dd26/logo.png b/blockchains/ethereum/assets/0x8971f9fd7196e5cEE2C1032B50F656855af7Dd26/logo.png new file mode 100644 index 00000000..8fa81fce Binary files /dev/null and b/blockchains/ethereum/assets/0x8971f9fd7196e5cEE2C1032B50F656855af7Dd26/logo.png differ diff --git a/blockchains/ethereum/assets/0x897d549EF2f848DE133Ba88F1983F0ec0C3222a7/info.json b/blockchains/ethereum/assets/0x897d549EF2f848DE133Ba88F1983F0ec0C3222a7/info.json new file mode 100644 index 00000000..a17fa910 --- /dev/null +++ b/blockchains/ethereum/assets/0x897d549EF2f848DE133Ba88F1983F0ec0C3222a7/info.json @@ -0,0 +1,11 @@ +{ + "name": "FFKDemoCoin", + "symbol": "FFKD", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x897d549EF2f848DE133Ba88F1983F0ec0C3222a7", + "status": "abandoned", + "id": "0x897d549EF2f848DE133Ba88F1983F0ec0C3222a7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x897d549EF2f848DE133Ba88F1983F0ec0C3222a7/logo.png b/blockchains/ethereum/assets/0x897d549EF2f848DE133Ba88F1983F0ec0C3222a7/logo.png new file mode 100644 index 00000000..6758dca4 Binary files /dev/null and b/blockchains/ethereum/assets/0x897d549EF2f848DE133Ba88F1983F0ec0C3222a7/logo.png differ diff --git a/blockchains/ethereum/assets/0x89885FC1F76C3f4cc719640E33c315227Da7003a/info.json b/blockchains/ethereum/assets/0x89885FC1F76C3f4cc719640E33c315227Da7003a/info.json new file mode 100644 index 00000000..606aea25 --- /dev/null +++ b/blockchains/ethereum/assets/0x89885FC1F76C3f4cc719640E33c315227Da7003a/info.json @@ -0,0 +1,11 @@ +{ + "name": "OASES", + "symbol": "OAS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x89885FC1F76C3f4cc719640E33c315227Da7003a", + "status": "abandoned", + "id": "0x89885FC1F76C3f4cc719640E33c315227Da7003a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89885FC1F76C3f4cc719640E33c315227Da7003a/logo.png b/blockchains/ethereum/assets/0x89885FC1F76C3f4cc719640E33c315227Da7003a/logo.png new file mode 100644 index 00000000..033a00a7 Binary files /dev/null and b/blockchains/ethereum/assets/0x89885FC1F76C3f4cc719640E33c315227Da7003a/logo.png differ diff --git a/blockchains/ethereum/assets/0x898BAD2774EB97cF6b94605677F43b41871410B1/info.json b/blockchains/ethereum/assets/0x898BAD2774EB97cF6b94605677F43b41871410B1/info.json new file mode 100644 index 00000000..2f9b5cdc --- /dev/null +++ b/blockchains/ethereum/assets/0x898BAD2774EB97cF6b94605677F43b41871410B1/info.json @@ -0,0 +1,17 @@ +{ + "name": "vEth2", + "website": "https://www.sharedstake.org", + "symbol": "vETH2", + "type": "ERC20", + "decimals": 18, + "description": "vEth2 is the liquid representation of underlying staked Ether on SharedStake, which provides an additional yield on top traditional Eth2 staking.", + "explorer": "https://etherscan.io/token/0x898BAD2774EB97cF6b94605677F43b41871410B1", + "status": "active", + "id": "0x898BAD2774EB97cF6b94605677F43b41871410B1", + "links": [ + { + "name": "github", + "url": "https://github.com/SharedStake" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x898BAD2774EB97cF6b94605677F43b41871410B1/logo.png b/blockchains/ethereum/assets/0x898BAD2774EB97cF6b94605677F43b41871410B1/logo.png new file mode 100644 index 00000000..64a113d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x898BAD2774EB97cF6b94605677F43b41871410B1/logo.png differ diff --git a/blockchains/ethereum/assets/0x898F198a0138A51a357De0694948Ea8E4E808507/info.json b/blockchains/ethereum/assets/0x898F198a0138A51a357De0694948Ea8E4E808507/info.json new file mode 100644 index 00000000..890bba18 --- /dev/null +++ b/blockchains/ethereum/assets/0x898F198a0138A51a357De0694948Ea8E4E808507/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mint Token", + "symbol": "MINT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x898F198a0138A51a357De0694948Ea8E4E808507", + "status": "abandoned", + "id": "0x898F198a0138A51a357De0694948Ea8E4E808507" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x898F198a0138A51a357De0694948Ea8E4E808507/logo.png b/blockchains/ethereum/assets/0x898F198a0138A51a357De0694948Ea8E4E808507/logo.png new file mode 100644 index 00000000..69371469 Binary files /dev/null and b/blockchains/ethereum/assets/0x898F198a0138A51a357De0694948Ea8E4E808507/logo.png differ diff --git a/blockchains/ethereum/assets/0x899338b84D25aC505a332aDCE7402d697D947494/info.json b/blockchains/ethereum/assets/0x899338b84D25aC505a332aDCE7402d697D947494/info.json new file mode 100644 index 00000000..a1ffa39c --- /dev/null +++ b/blockchains/ethereum/assets/0x899338b84D25aC505a332aDCE7402d697D947494/info.json @@ -0,0 +1,11 @@ +{ + "name": "WCOIN", + "symbol": "WIN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x899338b84D25aC505a332aDCE7402d697D947494", + "status": "abandoned", + "id": "0x899338b84D25aC505a332aDCE7402d697D947494" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x899338b84D25aC505a332aDCE7402d697D947494/logo.png b/blockchains/ethereum/assets/0x899338b84D25aC505a332aDCE7402d697D947494/logo.png new file mode 100644 index 00000000..f5470c90 Binary files /dev/null and b/blockchains/ethereum/assets/0x899338b84D25aC505a332aDCE7402d697D947494/logo.png differ diff --git a/blockchains/ethereum/assets/0x8993F76e40ED605f930b13B860BFAbDEe0756858/info.json b/blockchains/ethereum/assets/0x8993F76e40ED605f930b13B860BFAbDEe0756858/info.json new file mode 100644 index 00000000..88b9679f --- /dev/null +++ b/blockchains/ethereum/assets/0x8993F76e40ED605f930b13B860BFAbDEe0756858/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bank Future Exchange", + "symbol": "BFEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8993F76e40ED605f930b13B860BFAbDEe0756858", + "status": "abandoned", + "id": "0x8993F76e40ED605f930b13B860BFAbDEe0756858" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8993F76e40ED605f930b13B860BFAbDEe0756858/logo.png b/blockchains/ethereum/assets/0x8993F76e40ED605f930b13B860BFAbDEe0756858/logo.png new file mode 100644 index 00000000..ba2f6ffe Binary files /dev/null and b/blockchains/ethereum/assets/0x8993F76e40ED605f930b13B860BFAbDEe0756858/logo.png differ diff --git a/blockchains/ethereum/assets/0x89A8c847f41C0dfA6c8B88638bACca8a0b777Da7/info.json b/blockchains/ethereum/assets/0x89A8c847f41C0dfA6c8B88638bACca8a0b777Da7/info.json new file mode 100644 index 00000000..fe653172 --- /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 00000000..77d66236 Binary files /dev/null and b/blockchains/ethereum/assets/0x89A8c847f41C0dfA6c8B88638bACca8a0b777Da7/logo.png differ diff --git a/blockchains/ethereum/assets/0x89Ab32156e46F46D02ade3FEcbe5Fc4243B9AAeD/info.json b/blockchains/ethereum/assets/0x89Ab32156e46F46D02ade3FEcbe5Fc4243B9AAeD/info.json new file mode 100644 index 00000000..a7381e64 --- /dev/null +++ b/blockchains/ethereum/assets/0x89Ab32156e46F46D02ade3FEcbe5Fc4243B9AAeD/info.json @@ -0,0 +1,15 @@ +{ + "name": "pNetwork", + "website": "https://p.network", + "description": "The heartbeat of cross-chain composability.", + "explorer": "https://etherscan.io/token/0x89Ab32156e46F46D02ade3FEcbe5Fc4243B9AAeD", + "research": "https://research.binance.com/en/projects/pnetwork", + "type": "ERC20", + "symbol": "PNT", + "decimals": 18, + "status": "active", + "id": "0x89Ab32156e46F46D02ade3FEcbe5Fc4243B9AAeD", + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89Ab32156e46F46D02ade3FEcbe5Fc4243B9AAeD/logo.png b/blockchains/ethereum/assets/0x89Ab32156e46F46D02ade3FEcbe5Fc4243B9AAeD/logo.png new file mode 100644 index 00000000..a97a32e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x89Ab32156e46F46D02ade3FEcbe5Fc4243B9AAeD/logo.png differ diff --git a/blockchains/ethereum/assets/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697/info.json b/blockchains/ethereum/assets/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697/info.json new file mode 100644 index 00000000..cc28e8e6 --- /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 00000000..40be38ed Binary files /dev/null and b/blockchains/ethereum/assets/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697/logo.png differ diff --git a/blockchains/ethereum/assets/0x89B6A8Ca0001948d33F5807Bc3aB65D541641e27/info.json b/blockchains/ethereum/assets/0x89B6A8Ca0001948d33F5807Bc3aB65D541641e27/info.json new file mode 100644 index 00000000..4ba4bc49 --- /dev/null +++ b/blockchains/ethereum/assets/0x89B6A8Ca0001948d33F5807Bc3aB65D541641e27/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yasmine Coin", + "symbol": "YAS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x89B6A8Ca0001948d33F5807Bc3aB65D541641e27", + "status": "abandoned", + "id": "0x89B6A8Ca0001948d33F5807Bc3aB65D541641e27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89B6A8Ca0001948d33F5807Bc3aB65D541641e27/logo.png b/blockchains/ethereum/assets/0x89B6A8Ca0001948d33F5807Bc3aB65D541641e27/logo.png new file mode 100644 index 00000000..d65acafa Binary files /dev/null and b/blockchains/ethereum/assets/0x89B6A8Ca0001948d33F5807Bc3aB65D541641e27/logo.png differ diff --git a/blockchains/ethereum/assets/0x89C041a9007Bf6D7E334F1C0cF09c49886F39391/info.json b/blockchains/ethereum/assets/0x89C041a9007Bf6D7E334F1C0cF09c49886F39391/info.json new file mode 100644 index 00000000..011a65a3 --- /dev/null +++ b/blockchains/ethereum/assets/0x89C041a9007Bf6D7E334F1C0cF09c49886F39391/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-6/30M6", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x89C041a9007Bf6D7E334F1C0cF09c49886F39391", + "status": "abandoned", + "id": "0x89C041a9007Bf6D7E334F1C0cF09c49886F39391" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89C041a9007Bf6D7E334F1C0cF09c49886F39391/logo.png b/blockchains/ethereum/assets/0x89C041a9007Bf6D7E334F1C0cF09c49886F39391/logo.png new file mode 100644 index 00000000..2338b0c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x89C041a9007Bf6D7E334F1C0cF09c49886F39391/logo.png differ diff --git a/blockchains/ethereum/assets/0x89C33Ed4C7f780691444C172eAE9E6F1803be2C7/info.json b/blockchains/ethereum/assets/0x89C33Ed4C7f780691444C172eAE9E6F1803be2C7/info.json new file mode 100644 index 00000000..02fd9b99 --- /dev/null +++ b/blockchains/ethereum/assets/0x89C33Ed4C7f780691444C172eAE9E6F1803be2C7/info.json @@ -0,0 +1,11 @@ +{ + "name": "BRAAI", + "symbol": "BRAAI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x89C33Ed4C7f780691444C172eAE9E6F1803be2C7", + "status": "abandoned", + "id": "0x89C33Ed4C7f780691444C172eAE9E6F1803be2C7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89C33Ed4C7f780691444C172eAE9E6F1803be2C7/logo.png b/blockchains/ethereum/assets/0x89C33Ed4C7f780691444C172eAE9E6F1803be2C7/logo.png new file mode 100644 index 00000000..f69e7e26 Binary files /dev/null and b/blockchains/ethereum/assets/0x89C33Ed4C7f780691444C172eAE9E6F1803be2C7/logo.png differ diff --git a/blockchains/ethereum/assets/0x89C98F4529A41c7eE25d730d29Bc39170ED11C60/info.json b/blockchains/ethereum/assets/0x89C98F4529A41c7eE25d730d29Bc39170ED11C60/info.json new file mode 100644 index 00000000..66df67d1 --- /dev/null +++ b/blockchains/ethereum/assets/0x89C98F4529A41c7eE25d730d29Bc39170ED11C60/info.json @@ -0,0 +1,11 @@ +{ + "name": "Astro", + "symbol": "ASR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x89C98F4529A41c7eE25d730d29Bc39170ED11C60", + "status": "abandoned", + "id": "0x89C98F4529A41c7eE25d730d29Bc39170ED11C60" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89C98F4529A41c7eE25d730d29Bc39170ED11C60/logo.png b/blockchains/ethereum/assets/0x89C98F4529A41c7eE25d730d29Bc39170ED11C60/logo.png new file mode 100644 index 00000000..136329d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x89C98F4529A41c7eE25d730d29Bc39170ED11C60/logo.png differ diff --git a/blockchains/ethereum/assets/0x89b4d5f2cBA55D08a8c31eD7c1FB4b0a882B16B8/info.json b/blockchains/ethereum/assets/0x89b4d5f2cBA55D08a8c31eD7c1FB4b0a882B16B8/info.json new file mode 100644 index 00000000..4d103939 --- /dev/null +++ b/blockchains/ethereum/assets/0x89b4d5f2cBA55D08a8c31eD7c1FB4b0a882B16B8/info.json @@ -0,0 +1,11 @@ +{ + "name": "GameMax", + "symbol": "GM", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x89b4d5f2cBA55D08a8c31eD7c1FB4b0a882B16B8", + "status": "abandoned", + "id": "0x89b4d5f2cBA55D08a8c31eD7c1FB4b0a882B16B8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89b4d5f2cBA55D08a8c31eD7c1FB4b0a882B16B8/logo.png b/blockchains/ethereum/assets/0x89b4d5f2cBA55D08a8c31eD7c1FB4b0a882B16B8/logo.png new file mode 100644 index 00000000..2c3ec81b Binary files /dev/null and b/blockchains/ethereum/assets/0x89b4d5f2cBA55D08a8c31eD7c1FB4b0a882B16B8/logo.png differ diff --git a/blockchains/ethereum/assets/0x89c0086e809Bbb5D054A9D0ef56412B2898928b1/info.json b/blockchains/ethereum/assets/0x89c0086e809Bbb5D054A9D0ef56412B2898928b1/info.json new file mode 100644 index 00000000..d2b614af --- /dev/null +++ b/blockchains/ethereum/assets/0x89c0086e809Bbb5D054A9D0ef56412B2898928b1/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C559019", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x89c0086e809Bbb5D054A9D0ef56412B2898928b1", + "status": "abandoned", + "id": "0x89c0086e809Bbb5D054A9D0ef56412B2898928b1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89c0086e809Bbb5D054A9D0ef56412B2898928b1/logo.png b/blockchains/ethereum/assets/0x89c0086e809Bbb5D054A9D0ef56412B2898928b1/logo.png new file mode 100644 index 00000000..296294b9 Binary files /dev/null and b/blockchains/ethereum/assets/0x89c0086e809Bbb5D054A9D0ef56412B2898928b1/logo.png differ diff --git a/blockchains/ethereum/assets/0x89c6c856a6db3e46107163D0cDa7A7FF211BD655/info.json b/blockchains/ethereum/assets/0x89c6c856a6db3e46107163D0cDa7A7FF211BD655/info.json new file mode 100644 index 00000000..a43a5a53 --- /dev/null +++ b/blockchains/ethereum/assets/0x89c6c856a6db3e46107163D0cDa7A7FF211BD655/info.json @@ -0,0 +1,11 @@ +{ + "name": "Darico Ecosystem Coin", + "symbol": "DEC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://darico.io", + "explorer": "https://etherscan.io/token/0x89c6c856a6db3e46107163D0cDa7A7FF211BD655", + "status": "abandoned", + "id": "0x89c6c856a6db3e46107163D0cDa7A7FF211BD655" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89c6c856a6db3e46107163D0cDa7A7FF211BD655/logo.png b/blockchains/ethereum/assets/0x89c6c856a6db3e46107163D0cDa7A7FF211BD655/logo.png new file mode 100644 index 00000000..a2f6bdc3 Binary files /dev/null and b/blockchains/ethereum/assets/0x89c6c856a6db3e46107163D0cDa7A7FF211BD655/logo.png differ diff --git a/blockchains/ethereum/assets/0x89c7C3F672754409171297c56Dcb81A9dbB1F7A7/info.json b/blockchains/ethereum/assets/0x89c7C3F672754409171297c56Dcb81A9dbB1F7A7/info.json new file mode 100644 index 00000000..d0e10acb --- /dev/null +++ b/blockchains/ethereum/assets/0x89c7C3F672754409171297c56Dcb81A9dbB1F7A7/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R891511", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x89c7C3F672754409171297c56Dcb81A9dbB1F7A7", + "status": "abandoned", + "id": "0x89c7C3F672754409171297c56Dcb81A9dbB1F7A7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89c7C3F672754409171297c56Dcb81A9dbB1F7A7/logo.png b/blockchains/ethereum/assets/0x89c7C3F672754409171297c56Dcb81A9dbB1F7A7/logo.png new file mode 100644 index 00000000..d2c9a38d Binary files /dev/null and b/blockchains/ethereum/assets/0x89c7C3F672754409171297c56Dcb81A9dbB1F7A7/logo.png differ diff --git a/blockchains/ethereum/assets/0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359/info.json b/blockchains/ethereum/assets/0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359/info.json new file mode 100644 index 00000000..47c28828 --- /dev/null +++ b/blockchains/ethereum/assets/0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359/info.json @@ -0,0 +1,11 @@ +{ + "name": "Single Collateral DAI", + "website": "http://makerdao.com", + "description": "Dai is a USD-pegged stablecoin built on the Ethereum blockchain, and has no centralized authority. ", + "explorer": "https://etherscan.io/token/0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359", + "type": "ERC20", + "symbol": "SAI", + "decimals": 18, + "status": "active", + "id": "0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359/logo.png b/blockchains/ethereum/assets/0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359/logo.png new file mode 100644 index 00000000..944633a3 Binary files /dev/null and b/blockchains/ethereum/assets/0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359/logo.png differ diff --git a/blockchains/ethereum/assets/0x89eE58Af4871b474c30001982c3D7439C933c838/info.json b/blockchains/ethereum/assets/0x89eE58Af4871b474c30001982c3D7439C933c838/info.json new file mode 100644 index 00000000..74bef8e0 --- /dev/null +++ b/blockchains/ethereum/assets/0x89eE58Af4871b474c30001982c3D7439C933c838/info.json @@ -0,0 +1,11 @@ +{ + "name": "yfBETA", + "website": "https://yfbeta.finance/", + "description": "yfBETA restructures the DeFi narrative to reward tokenholders. yfBETA uses yields generated from farming other protocols.", + "explorer": "https://etherscan.io/token/0x89eE58Af4871b474c30001982c3D7439C933c838", + "type": "ERC20", + "symbol": "YFBETA", + "decimals": 18, + "status": "active", + "id": "0x89eE58Af4871b474c30001982c3D7439C933c838" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89eE58Af4871b474c30001982c3D7439C933c838/logo.png b/blockchains/ethereum/assets/0x89eE58Af4871b474c30001982c3D7439C933c838/logo.png new file mode 100644 index 00000000..35c5e086 Binary files /dev/null and b/blockchains/ethereum/assets/0x89eE58Af4871b474c30001982c3D7439C933c838/logo.png differ diff --git a/blockchains/ethereum/assets/0x8A1E3930FDe1f151471c368fDBb39F3F63A65B55/info.json b/blockchains/ethereum/assets/0x8A1E3930FDe1f151471c368fDBb39F3F63A65B55/info.json new file mode 100644 index 00000000..1700e55c --- /dev/null +++ b/blockchains/ethereum/assets/0x8A1E3930FDe1f151471c368fDBb39F3F63A65B55/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bezop", + "symbol": "Bez", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8A1E3930FDe1f151471c368fDBb39F3F63A65B55", + "status": "abandoned", + "id": "0x8A1E3930FDe1f151471c368fDBb39F3F63A65B55" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8A1E3930FDe1f151471c368fDBb39F3F63A65B55/logo.png b/blockchains/ethereum/assets/0x8A1E3930FDe1f151471c368fDBb39F3F63A65B55/logo.png new file mode 100644 index 00000000..e28f639d Binary files /dev/null and b/blockchains/ethereum/assets/0x8A1E3930FDe1f151471c368fDBb39F3F63A65B55/logo.png differ diff --git a/blockchains/ethereum/assets/0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2/info.json b/blockchains/ethereum/assets/0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2/info.json new file mode 100644 index 00000000..79375f91 --- /dev/null +++ b/blockchains/ethereum/assets/0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2/info.json @@ -0,0 +1,14 @@ +{ + "name": "Chromia", + "symbol": "CHR", + "type": "ERC20", + "decimals": 6, + "description": "Chromia is a relational blockchain designed to make it much easier to make complex and scalable dapps.", + "website": "https://chromia.com/", + "explorer": "https://etherscan.io/token/0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2", + "status": "active", + "id": "0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2/logo.png b/blockchains/ethereum/assets/0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2/logo.png new file mode 100644 index 00000000..e1e8641a Binary files /dev/null and b/blockchains/ethereum/assets/0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2/logo.png differ diff --git a/blockchains/ethereum/assets/0x8A42c37558967dA1fd2fF57969946320e61E9aAB/info.json b/blockchains/ethereum/assets/0x8A42c37558967dA1fd2fF57969946320e61E9aAB/info.json new file mode 100644 index 00000000..f9ed460b --- /dev/null +++ b/blockchains/ethereum/assets/0x8A42c37558967dA1fd2fF57969946320e61E9aAB/info.json @@ -0,0 +1,11 @@ +{ + "name": "CloudWalkCoin", + "symbol": "CWC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8A42c37558967dA1fd2fF57969946320e61E9aAB", + "status": "abandoned", + "id": "0x8A42c37558967dA1fd2fF57969946320e61E9aAB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8A42c37558967dA1fd2fF57969946320e61E9aAB/logo.png b/blockchains/ethereum/assets/0x8A42c37558967dA1fd2fF57969946320e61E9aAB/logo.png new file mode 100755 index 00000000..23bdcfb6 Binary files /dev/null and b/blockchains/ethereum/assets/0x8A42c37558967dA1fd2fF57969946320e61E9aAB/logo.png differ diff --git a/blockchains/ethereum/assets/0x8A5aD873A1A615001aCc1757214F67E1Ba145cC9/info.json b/blockchains/ethereum/assets/0x8A5aD873A1A615001aCc1757214F67E1Ba145cC9/info.json new file mode 100644 index 00000000..6a81b6ae --- /dev/null +++ b/blockchains/ethereum/assets/0x8A5aD873A1A615001aCc1757214F67E1Ba145cC9/info.json @@ -0,0 +1,11 @@ +{ + "name": "HEARTBEAT", + "symbol": "HBIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8A5aD873A1A615001aCc1757214F67E1Ba145cC9", + "status": "abandoned", + "id": "0x8A5aD873A1A615001aCc1757214F67E1Ba145cC9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8A5aD873A1A615001aCc1757214F67E1Ba145cC9/logo.png b/blockchains/ethereum/assets/0x8A5aD873A1A615001aCc1757214F67E1Ba145cC9/logo.png new file mode 100644 index 00000000..fdb8e0a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x8A5aD873A1A615001aCc1757214F67E1Ba145cC9/logo.png differ diff --git a/blockchains/ethereum/assets/0x8A732BC91c33c167F868E0af7e6f31e0776d0f71/info.json b/blockchains/ethereum/assets/0x8A732BC91c33c167F868E0af7e6f31e0776d0f71/info.json new file mode 100644 index 00000000..f7fb1a00 --- /dev/null +++ b/blockchains/ethereum/assets/0x8A732BC91c33c167F868E0af7e6f31e0776d0f71/info.json @@ -0,0 +1,11 @@ +{ + "name": "Litecoin Token", + "symbol": "LTK", + "type": "ERC20", + "decimals": 18, + "description": "Litecoin Token (LTC) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://ltk.community", + "explorer": "https://etherscan.io/token/0x8A732BC91c33c167F868E0af7e6f31e0776d0f71", + "status": "abandoned", + "id": "0x8A732BC91c33c167F868E0af7e6f31e0776d0f71" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8A732BC91c33c167F868E0af7e6f31e0776d0f71/logo.png b/blockchains/ethereum/assets/0x8A732BC91c33c167F868E0af7e6f31e0776d0f71/logo.png new file mode 100755 index 00000000..02623b38 Binary files /dev/null and b/blockchains/ethereum/assets/0x8A732BC91c33c167F868E0af7e6f31e0776d0f71/logo.png differ diff --git a/blockchains/ethereum/assets/0x8A79DD3b266F681211a7bB0a4c5345A4Cc90F413/info.json b/blockchains/ethereum/assets/0x8A79DD3b266F681211a7bB0a4c5345A4Cc90F413/info.json new file mode 100644 index 00000000..37eb21f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x8A79DD3b266F681211a7bB0a4c5345A4Cc90F413/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lord Coin", + "symbol": "LRD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8A79DD3b266F681211a7bB0a4c5345A4Cc90F413", + "status": "abandoned", + "id": "0x8A79DD3b266F681211a7bB0a4c5345A4Cc90F413" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8A79DD3b266F681211a7bB0a4c5345A4Cc90F413/logo.png b/blockchains/ethereum/assets/0x8A79DD3b266F681211a7bB0a4c5345A4Cc90F413/logo.png new file mode 100644 index 00000000..4f952ff0 Binary files /dev/null and b/blockchains/ethereum/assets/0x8A79DD3b266F681211a7bB0a4c5345A4Cc90F413/logo.png differ diff --git a/blockchains/ethereum/assets/0x8A8b5318d3A59fa6D1d0A83A1B0506f2796b5670/info.json b/blockchains/ethereum/assets/0x8A8b5318d3A59fa6D1d0A83A1B0506f2796b5670/info.json new file mode 100644 index 00000000..227b8e61 --- /dev/null +++ b/blockchains/ethereum/assets/0x8A8b5318d3A59fa6D1d0A83A1B0506f2796b5670/info.json @@ -0,0 +1,11 @@ +{ + "name": "Denarii", + "website": "https://ari.finance", + "description": "Denarii (ARI) is an ERC20 token with staking and liquidity pool staking", + "explorer": "https://etherscan.io/token/0x8A8b5318d3A59fa6D1d0A83A1B0506f2796b5670", + "type": "ERC20", + "symbol": "ARI", + "decimals": 8, + "status": "active", + "id": "0x8A8b5318d3A59fa6D1d0A83A1B0506f2796b5670" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8A8b5318d3A59fa6D1d0A83A1B0506f2796b5670/logo.png b/blockchains/ethereum/assets/0x8A8b5318d3A59fa6D1d0A83A1B0506f2796b5670/logo.png new file mode 100644 index 00000000..af8e52a7 Binary files /dev/null and b/blockchains/ethereum/assets/0x8A8b5318d3A59fa6D1d0A83A1B0506f2796b5670/logo.png differ diff --git a/blockchains/ethereum/assets/0x8A99ED8a1b204903Ee46e733f2c1286F6d20b177/info.json b/blockchains/ethereum/assets/0x8A99ED8a1b204903Ee46e733f2c1286F6d20b177/info.json new file mode 100644 index 00000000..5eb3ff82 --- /dev/null +++ b/blockchains/ethereum/assets/0x8A99ED8a1b204903Ee46e733f2c1286F6d20b177/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fujinto", + "symbol": "NTO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8A99ED8a1b204903Ee46e733f2c1286F6d20b177", + "status": "abandoned", + "id": "0x8A99ED8a1b204903Ee46e733f2c1286F6d20b177" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8A99ED8a1b204903Ee46e733f2c1286F6d20b177/logo.png b/blockchains/ethereum/assets/0x8A99ED8a1b204903Ee46e733f2c1286F6d20b177/logo.png new file mode 100644 index 00000000..e101a5b1 Binary files /dev/null and b/blockchains/ethereum/assets/0x8A99ED8a1b204903Ee46e733f2c1286F6d20b177/logo.png differ diff --git a/blockchains/ethereum/assets/0x8A9C67fee641579dEbA04928c4BC45F66e26343A/info.json b/blockchains/ethereum/assets/0x8A9C67fee641579dEbA04928c4BC45F66e26343A/info.json new file mode 100644 index 00000000..e26568be --- /dev/null +++ b/blockchains/ethereum/assets/0x8A9C67fee641579dEbA04928c4BC45F66e26343A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jarvis Network", + "website": "https://jarvis.network", + "description": "Jarvis Network is a set of protocols on Ethereum allowing anyone to become a broker by funding and maintaining liquidity pools.", + "explorer": "https://etherscan.io/token/0x8A9C67fee641579dEbA04928c4BC45F66e26343A", + "type": "ERC20", + "symbol": "JRT", + "decimals": 18, + "status": "active", + "id": "0x8A9C67fee641579dEbA04928c4BC45F66e26343A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8A9C67fee641579dEbA04928c4BC45F66e26343A/logo.png b/blockchains/ethereum/assets/0x8A9C67fee641579dEbA04928c4BC45F66e26343A/logo.png new file mode 100644 index 00000000..e0906993 Binary files /dev/null and b/blockchains/ethereum/assets/0x8A9C67fee641579dEbA04928c4BC45F66e26343A/logo.png differ diff --git a/blockchains/ethereum/assets/0x8AAA0D43cc86ed98b7aA9c8e1f87A319Cd873DC4/info.json b/blockchains/ethereum/assets/0x8AAA0D43cc86ed98b7aA9c8e1f87A319Cd873DC4/info.json new file mode 100644 index 00000000..5daa24ad --- /dev/null +++ b/blockchains/ethereum/assets/0x8AAA0D43cc86ed98b7aA9c8e1f87A319Cd873DC4/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCB", + "symbol": "SCB", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8AAA0D43cc86ed98b7aA9c8e1f87A319Cd873DC4", + "status": "abandoned", + "id": "0x8AAA0D43cc86ed98b7aA9c8e1f87A319Cd873DC4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8AAA0D43cc86ed98b7aA9c8e1f87A319Cd873DC4/logo.png b/blockchains/ethereum/assets/0x8AAA0D43cc86ed98b7aA9c8e1f87A319Cd873DC4/logo.png new file mode 100644 index 00000000..3b878eaf Binary files /dev/null and b/blockchains/ethereum/assets/0x8AAA0D43cc86ed98b7aA9c8e1f87A319Cd873DC4/logo.png differ diff --git a/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/info.json b/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/info.json new file mode 100644 index 00000000..540eaf2e --- /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 00000000..6003c9af Binary files /dev/null and b/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/logo.png differ diff --git a/blockchains/ethereum/assets/0x8ABAF9a8ae10Cd4AF52C1B336cC5Bd4eaF6C5A7B/info.json b/blockchains/ethereum/assets/0x8ABAF9a8ae10Cd4AF52C1B336cC5Bd4eaF6C5A7B/info.json new file mode 100644 index 00000000..b80e5d96 --- /dev/null +++ b/blockchains/ethereum/assets/0x8ABAF9a8ae10Cd4AF52C1B336cC5Bd4eaF6C5A7B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Qubix Credit", + "symbol": "QBX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8ABAF9a8ae10Cd4AF52C1B336cC5Bd4eaF6C5A7B", + "status": "abandoned", + "id": "0x8ABAF9a8ae10Cd4AF52C1B336cC5Bd4eaF6C5A7B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8ABAF9a8ae10Cd4AF52C1B336cC5Bd4eaF6C5A7B/logo.png b/blockchains/ethereum/assets/0x8ABAF9a8ae10Cd4AF52C1B336cC5Bd4eaF6C5A7B/logo.png new file mode 100644 index 00000000..920891bc Binary files /dev/null and b/blockchains/ethereum/assets/0x8ABAF9a8ae10Cd4AF52C1B336cC5Bd4eaF6C5A7B/logo.png differ diff --git a/blockchains/ethereum/assets/0x8AC6AD49b3344024834f373f3CA491f22ceb952e/info.json b/blockchains/ethereum/assets/0x8AC6AD49b3344024834f373f3CA491f22ceb952e/info.json new file mode 100644 index 00000000..642eb64b --- /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 00000000..c5348399 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 00000000..dd53d11b --- /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 00000000..bfc1ab0e Binary files /dev/null and b/blockchains/ethereum/assets/0x8AFE4055Ebc86Bd2AFB3940c0095C9aca511d852/logo.png differ diff --git a/blockchains/ethereum/assets/0x8Ab7404063Ec4DBcfd4598215992DC3F8EC853d7/info.json b/blockchains/ethereum/assets/0x8Ab7404063Ec4DBcfd4598215992DC3F8EC853d7/info.json new file mode 100644 index 00000000..18c49105 --- /dev/null +++ b/blockchains/ethereum/assets/0x8Ab7404063Ec4DBcfd4598215992DC3F8EC853d7/info.json @@ -0,0 +1,12 @@ +{ + "name": "Akropolis", + "website": "https://akropolis.io", + "description": "Akropolis describes itself as a domain-specific financial protocol dedicated to the needs of the informal economy.", + "explorer": "https://etherscan.io/token/0x8Ab7404063Ec4DBcfd4598215992DC3F8EC853d7", + "research": "https://research.binance.com/en/projects/akropolis", + "type": "ERC20", + "symbol": "AKRO", + "decimals": 18, + "status": "active", + "id": "0x8Ab7404063Ec4DBcfd4598215992DC3F8EC853d7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8Ab7404063Ec4DBcfd4598215992DC3F8EC853d7/logo.png b/blockchains/ethereum/assets/0x8Ab7404063Ec4DBcfd4598215992DC3F8EC853d7/logo.png new file mode 100644 index 00000000..6c0d53fd Binary files /dev/null and b/blockchains/ethereum/assets/0x8Ab7404063Ec4DBcfd4598215992DC3F8EC853d7/logo.png differ diff --git a/blockchains/ethereum/assets/0x8Ae4BF2C33a8e667de34B54938B0ccD03Eb8CC06/info.json b/blockchains/ethereum/assets/0x8Ae4BF2C33a8e667de34B54938B0ccD03Eb8CC06/info.json new file mode 100644 index 00000000..203ccdc0 --- /dev/null +++ b/blockchains/ethereum/assets/0x8Ae4BF2C33a8e667de34B54938B0ccD03Eb8CC06/info.json @@ -0,0 +1,11 @@ +{ + "name": "Patientory", + "symbol": "PTOY", + "type": "ERC20", + "decimals": 8, + "description": "PTOY is the native token of PTOYMatrix, the HIPAA compliant blockchain enabled Health Information Exchange and Storage System. The token provides unit economics for health data auditability and access to the PTOYMatrix which aims to ensure access to healthcare information is secure and encrypted.", + "website": "https://ptoy.org", + "explorer": "https://etherscan.io/token/0x8Ae4BF2C33a8e667de34B54938B0ccD03Eb8CC06", + "status": "active", + "id": "0x8Ae4BF2C33a8e667de34B54938B0ccD03Eb8CC06" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8Ae4BF2C33a8e667de34B54938B0ccD03Eb8CC06/logo.png b/blockchains/ethereum/assets/0x8Ae4BF2C33a8e667de34B54938B0ccD03Eb8CC06/logo.png new file mode 100644 index 00000000..ee4dfdaf Binary files /dev/null and b/blockchains/ethereum/assets/0x8Ae4BF2C33a8e667de34B54938B0ccD03Eb8CC06/logo.png differ diff --git a/blockchains/ethereum/assets/0x8Ae6AE8F172d7fc103CCfa5890883d6fE46038C9/info.json b/blockchains/ethereum/assets/0x8Ae6AE8F172d7fc103CCfa5890883d6fE46038C9/info.json new file mode 100644 index 00000000..a620827c --- /dev/null +++ b/blockchains/ethereum/assets/0x8Ae6AE8F172d7fc103CCfa5890883d6fE46038C9/info.json @@ -0,0 +1,17 @@ +{ + "name": "EOG Eye of God", + "website": "https://helixnebula.help", + "description": "When people help each other, the system in uinswap donates tokens from the pool to the helper; this means that when we help each other, the value of the EOG token increases. The EOG token is only minted when the pool inventory in uinswap reaches less than one token.", + "explorer": "https://etherscan.io/token/0x8Ae6AE8F172d7fc103CCfa5890883d6fE46038C9", + "type": "ERC20", + "symbol": "EOG", + "decimals": 18, + "status": "active", + "id": "0x8Ae6AE8F172d7fc103CCfa5890883d6fE46038C9", + "links": [ + { + "name": "x", + "url": "https://x.com/HelixNebulahelp" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8Ae6AE8F172d7fc103CCfa5890883d6fE46038C9/logo.png b/blockchains/ethereum/assets/0x8Ae6AE8F172d7fc103CCfa5890883d6fE46038C9/logo.png new file mode 100644 index 00000000..cf0310d5 Binary files /dev/null and b/blockchains/ethereum/assets/0x8Ae6AE8F172d7fc103CCfa5890883d6fE46038C9/logo.png differ diff --git a/blockchains/ethereum/assets/0x8AedB297FED4b6884b808ee61fAf0837713670d0/info.json b/blockchains/ethereum/assets/0x8AedB297FED4b6884b808ee61fAf0837713670d0/info.json new file mode 100644 index 00000000..5455aa3f --- /dev/null +++ b/blockchains/ethereum/assets/0x8AedB297FED4b6884b808ee61fAf0837713670d0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped MarbleCards", + "symbol": "WMC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://wrappedmarble.cards", + "explorer": "https://etherscan.io/token/0x8AedB297FED4b6884b808ee61fAf0837713670d0", + "status": "abandoned", + "id": "0x8AedB297FED4b6884b808ee61fAf0837713670d0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8AedB297FED4b6884b808ee61fAf0837713670d0/logo.png b/blockchains/ethereum/assets/0x8AedB297FED4b6884b808ee61fAf0837713670d0/logo.png new file mode 100644 index 00000000..1cc73813 Binary files /dev/null and b/blockchains/ethereum/assets/0x8AedB297FED4b6884b808ee61fAf0837713670d0/logo.png differ diff --git a/blockchains/ethereum/assets/0x8B1F49491477e0fB46a29fef53F1EA320D13c349/info.json b/blockchains/ethereum/assets/0x8B1F49491477e0fB46a29fef53F1EA320D13c349/info.json new file mode 100644 index 00000000..190bfefa --- /dev/null +++ b/blockchains/ethereum/assets/0x8B1F49491477e0fB46a29fef53F1EA320D13c349/info.json @@ -0,0 +1,11 @@ +{ + "name": "MicroMoney", + "symbol": "AMM", + "type": "ERC20", + "decimals": 6, + "description": "Micromoney is an Open Source Credit & Big Data Bureau.", + "website": "https://www.micromoney.io", + "explorer": "https://etherscan.io/token/0x8B1F49491477e0fB46a29fef53F1EA320D13c349", + "status": "active", + "id": "0x8B1F49491477e0fB46a29fef53F1EA320D13c349" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8B1F49491477e0fB46a29fef53F1EA320D13c349/logo.png b/blockchains/ethereum/assets/0x8B1F49491477e0fB46a29fef53F1EA320D13c349/logo.png new file mode 100644 index 00000000..afac7291 Binary files /dev/null and b/blockchains/ethereum/assets/0x8B1F49491477e0fB46a29fef53F1EA320D13c349/logo.png differ diff --git a/blockchains/ethereum/assets/0x8B29b70b2cd8fdD891C1d0cd5808fb92781ba90B/info.json b/blockchains/ethereum/assets/0x8B29b70b2cd8fdD891C1d0cd5808fb92781ba90B/info.json new file mode 100644 index 00000000..60de01ee --- /dev/null +++ b/blockchains/ethereum/assets/0x8B29b70b2cd8fdD891C1d0cd5808fb92781ba90B/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Jigsaw Games", + "symbol": "Jiggs3D", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8B29b70b2cd8fdD891C1d0cd5808fb92781ba90B", + "status": "abandoned", + "id": "0x8B29b70b2cd8fdD891C1d0cd5808fb92781ba90B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8B29b70b2cd8fdD891C1d0cd5808fb92781ba90B/logo.png b/blockchains/ethereum/assets/0x8B29b70b2cd8fdD891C1d0cd5808fb92781ba90B/logo.png new file mode 100755 index 00000000..db2e11a3 Binary files /dev/null and b/blockchains/ethereum/assets/0x8B29b70b2cd8fdD891C1d0cd5808fb92781ba90B/logo.png differ diff --git a/blockchains/ethereum/assets/0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F/info.json b/blockchains/ethereum/assets/0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F/info.json new file mode 100644 index 00000000..5c645fc5 --- /dev/null +++ b/blockchains/ethereum/assets/0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Saitama Inu", + "type": "ERC20", + "symbol": "SAITAMA", + "decimals": 9, + "website": "https://saitamatoken.com", + "description": "Community Owned Decentralised Token", + "explorer": "https://etherscan.io/token/0x8b3192f5eebd8579568a2ed41e6feb402f93f73f", + "status": "abandoned", + "id": "0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F/logo.png b/blockchains/ethereum/assets/0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F/logo.png new file mode 100644 index 00000000..3c5fa55a Binary files /dev/null and b/blockchains/ethereum/assets/0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F/logo.png differ diff --git a/blockchains/ethereum/assets/0x8B334C54997BC6c1c347d19cac73e015E3DDdf40/info.json b/blockchains/ethereum/assets/0x8B334C54997BC6c1c347d19cac73e015E3DDdf40/info.json new file mode 100644 index 00000000..912d4a88 --- /dev/null +++ b/blockchains/ethereum/assets/0x8B334C54997BC6c1c347d19cac73e015E3DDdf40/info.json @@ -0,0 +1,11 @@ +{ + "name": "Credit", + "symbol": "EMEX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8B334C54997BC6c1c347d19cac73e015E3DDdf40", + "status": "abandoned", + "id": "0x8B334C54997BC6c1c347d19cac73e015E3DDdf40" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8B334C54997BC6c1c347d19cac73e015E3DDdf40/logo.png b/blockchains/ethereum/assets/0x8B334C54997BC6c1c347d19cac73e015E3DDdf40/logo.png new file mode 100644 index 00000000..ad7fe039 Binary files /dev/null and b/blockchains/ethereum/assets/0x8B334C54997BC6c1c347d19cac73e015E3DDdf40/logo.png differ diff --git a/blockchains/ethereum/assets/0x8B39B70E39Aa811b69365398e0aACe9bee238AEb/info.json b/blockchains/ethereum/assets/0x8B39B70E39Aa811b69365398e0aACe9bee238AEb/info.json new file mode 100644 index 00000000..5f3546a9 --- /dev/null +++ b/blockchains/ethereum/assets/0x8B39B70E39Aa811b69365398e0aACe9bee238AEb/info.json @@ -0,0 +1,25 @@ +{ + "name": "PolkaFoundry", + "symbol": "PKF", + "type": "ERC20", + "decimals": 18, + "description": "PolkaFoundry is a platform for creating borderless and frictionless DeFi apps. It is designed to unleash developers to explore new horizons of the DeFi landscape.", + "website": "https://polkafoundry.com", + "explorer": "https://etherscan.io/token/0x8B39B70E39Aa811b69365398e0aACe9bee238AEb", + "status": "active", + "id": "0x8B39B70E39Aa811b69365398e0aACe9bee238AEb", + "links": [ + { + "name": "x", + "url": "https://x.com/polkafoundry" + }, + { + "name": "telegram", + "url": "https://t.me/polkafoundry" + }, + { + "name": "medium", + "url": "https://medium.com/polkafoundry" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8B39B70E39Aa811b69365398e0aACe9bee238AEb/logo.png b/blockchains/ethereum/assets/0x8B39B70E39Aa811b69365398e0aACe9bee238AEb/logo.png new file mode 100644 index 00000000..dba9d876 Binary files /dev/null and b/blockchains/ethereum/assets/0x8B39B70E39Aa811b69365398e0aACe9bee238AEb/logo.png differ diff --git a/blockchains/ethereum/assets/0x8B40761142B9aa6dc8964e61D0585995425C3D94/info.json b/blockchains/ethereum/assets/0x8B40761142B9aa6dc8964e61D0585995425C3D94/info.json new file mode 100644 index 00000000..ddb3027e --- /dev/null +++ b/blockchains/ethereum/assets/0x8B40761142B9aa6dc8964e61D0585995425C3D94/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tripio Token", + "symbol": "TRIO", + "type": "ERC20", + "decimals": 18, + "description": "Tripio describes itself as a blockchain-based travel marketplace and protocols.", + "website": "https://trip.io", + "explorer": "https://etherscan.io/token/0x8B40761142B9aa6dc8964e61D0585995425C3D94", + "status": "active", + "id": "0x8B40761142B9aa6dc8964e61D0585995425C3D94" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8B40761142B9aa6dc8964e61D0585995425C3D94/logo.png b/blockchains/ethereum/assets/0x8B40761142B9aa6dc8964e61D0585995425C3D94/logo.png new file mode 100755 index 00000000..eadb1f3a Binary files /dev/null and b/blockchains/ethereum/assets/0x8B40761142B9aa6dc8964e61D0585995425C3D94/logo.png differ diff --git a/blockchains/ethereum/assets/0x8B554bF7304065e60F89915a4eb1aBa7E7EB301c/info.json b/blockchains/ethereum/assets/0x8B554bF7304065e60F89915a4eb1aBa7E7EB301c/info.json new file mode 100644 index 00000000..9a4d7f6e --- /dev/null +++ b/blockchains/ethereum/assets/0x8B554bF7304065e60F89915a4eb1aBa7E7EB301c/info.json @@ -0,0 +1,11 @@ +{ + "name": "PazCoin", + "symbol": "PAZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8B554bF7304065e60F89915a4eb1aBa7E7EB301c", + "status": "abandoned", + "id": "0x8B554bF7304065e60F89915a4eb1aBa7E7EB301c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8B554bF7304065e60F89915a4eb1aBa7E7EB301c/logo.png b/blockchains/ethereum/assets/0x8B554bF7304065e60F89915a4eb1aBa7E7EB301c/logo.png new file mode 100644 index 00000000..ee8986a9 Binary files /dev/null and b/blockchains/ethereum/assets/0x8B554bF7304065e60F89915a4eb1aBa7E7EB301c/logo.png differ diff --git a/blockchains/ethereum/assets/0x8B7ddE91e299e5c48128E388D7e3320E3839320D/info.json b/blockchains/ethereum/assets/0x8B7ddE91e299e5c48128E388D7e3320E3839320D/info.json new file mode 100644 index 00000000..341297df --- /dev/null +++ b/blockchains/ethereum/assets/0x8B7ddE91e299e5c48128E388D7e3320E3839320D/info.json @@ -0,0 +1,11 @@ +{ + "name": "ABC.Chain", + "symbol": "ABCchain", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8B7ddE91e299e5c48128E388D7e3320E3839320D", + "status": "abandoned", + "id": "0x8B7ddE91e299e5c48128E388D7e3320E3839320D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8B7ddE91e299e5c48128E388D7e3320E3839320D/logo.png b/blockchains/ethereum/assets/0x8B7ddE91e299e5c48128E388D7e3320E3839320D/logo.png new file mode 100644 index 00000000..5c95a829 Binary files /dev/null and b/blockchains/ethereum/assets/0x8B7ddE91e299e5c48128E388D7e3320E3839320D/logo.png differ diff --git a/blockchains/ethereum/assets/0x8B8E088c7aD40D70d0A8183a399c8f9c24b5c8d8/info.json b/blockchains/ethereum/assets/0x8B8E088c7aD40D70d0A8183a399c8f9c24b5c8d8/info.json new file mode 100644 index 00000000..bffc4130 --- /dev/null +++ b/blockchains/ethereum/assets/0x8B8E088c7aD40D70d0A8183a399c8f9c24b5c8d8/info.json @@ -0,0 +1,11 @@ +{ + "name": "ChelleCoin", + "symbol": "CHL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8B8E088c7aD40D70d0A8183a399c8f9c24b5c8d8", + "status": "abandoned", + "id": "0x8B8E088c7aD40D70d0A8183a399c8f9c24b5c8d8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8B8E088c7aD40D70d0A8183a399c8f9c24b5c8d8/logo.png b/blockchains/ethereum/assets/0x8B8E088c7aD40D70d0A8183a399c8f9c24b5c8d8/logo.png new file mode 100644 index 00000000..b24704e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x8B8E088c7aD40D70d0A8183a399c8f9c24b5c8d8/logo.png differ diff --git a/blockchains/ethereum/assets/0x8B9b98feeC18b390cb82c33A55A78e81151Cc6eD/info.json b/blockchains/ethereum/assets/0x8B9b98feeC18b390cb82c33A55A78e81151Cc6eD/info.json new file mode 100644 index 00000000..83c6d04a --- /dev/null +++ b/blockchains/ethereum/assets/0x8B9b98feeC18b390cb82c33A55A78e81151Cc6eD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short ZRX-DAI 2x v2", + "symbol": "dsZRX2x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8B9b98feeC18b390cb82c33A55A78e81151Cc6eD", + "status": "abandoned", + "id": "0x8B9b98feeC18b390cb82c33A55A78e81151Cc6eD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8B9b98feeC18b390cb82c33A55A78e81151Cc6eD/logo.png b/blockchains/ethereum/assets/0x8B9b98feeC18b390cb82c33A55A78e81151Cc6eD/logo.png new file mode 100644 index 00000000..ddf7bf29 Binary files /dev/null and b/blockchains/ethereum/assets/0x8B9b98feeC18b390cb82c33A55A78e81151Cc6eD/logo.png differ diff --git a/blockchains/ethereum/assets/0x8BA6DcC667d3FF64C1A2123cE72FF5F0199E5315/info.json b/blockchains/ethereum/assets/0x8BA6DcC667d3FF64C1A2123cE72FF5F0199E5315/info.json new file mode 100644 index 00000000..a431a3f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x8BA6DcC667d3FF64C1A2123cE72FF5F0199E5315/info.json @@ -0,0 +1,11 @@ +{ + "name": "AlexMasmej", + "symbol": "ALEX", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://app.tryroll.com/rewards/ALEX", + "explorer": "https://etherscan.io/token/0x8BA6DcC667d3FF64C1A2123cE72FF5F0199E5315", + "status": "abandoned", + "id": "0x8BA6DcC667d3FF64C1A2123cE72FF5F0199E5315" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8BA6DcC667d3FF64C1A2123cE72FF5F0199E5315/logo.png b/blockchains/ethereum/assets/0x8BA6DcC667d3FF64C1A2123cE72FF5F0199E5315/logo.png new file mode 100644 index 00000000..f2649ddc Binary files /dev/null and b/blockchains/ethereum/assets/0x8BA6DcC667d3FF64C1A2123cE72FF5F0199E5315/logo.png differ diff --git a/blockchains/ethereum/assets/0x8BcB64bfDA77905398b67aF0Af084c744e777A20/info.json b/blockchains/ethereum/assets/0x8BcB64bfDA77905398b67aF0Af084c744e777A20/info.json new file mode 100644 index 00000000..0088b671 --- /dev/null +++ b/blockchains/ethereum/assets/0x8BcB64bfDA77905398b67aF0Af084c744e777A20/info.json @@ -0,0 +1,11 @@ +{ + "name": "GameCell", + "symbol": "GCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8BcB64bfDA77905398b67aF0Af084c744e777A20", + "status": "abandoned", + "id": "0x8BcB64bfDA77905398b67aF0Af084c744e777A20" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8BcB64bfDA77905398b67aF0Af084c744e777A20/logo.png b/blockchains/ethereum/assets/0x8BcB64bfDA77905398b67aF0Af084c744e777A20/logo.png new file mode 100644 index 00000000..c5bae51f Binary files /dev/null and b/blockchains/ethereum/assets/0x8BcB64bfDA77905398b67aF0Af084c744e777A20/logo.png differ diff --git a/blockchains/ethereum/assets/0x8Be191b2E888342b0392e093320A0d1D56c9fe1E/info.json b/blockchains/ethereum/assets/0x8Be191b2E888342b0392e093320A0d1D56c9fe1E/info.json new file mode 100644 index 00000000..767dd423 --- /dev/null +++ b/blockchains/ethereum/assets/0x8Be191b2E888342b0392e093320A0d1D56c9fe1E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Losscoin", + "symbol": "LOSS", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8Be191b2E888342b0392e093320A0d1D56c9fe1E", + "status": "abandoned", + "id": "0x8Be191b2E888342b0392e093320A0d1D56c9fe1E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8Be191b2E888342b0392e093320A0d1D56c9fe1E/logo.png b/blockchains/ethereum/assets/0x8Be191b2E888342b0392e093320A0d1D56c9fe1E/logo.png new file mode 100755 index 00000000..860aa31b Binary files /dev/null and b/blockchains/ethereum/assets/0x8Be191b2E888342b0392e093320A0d1D56c9fe1E/logo.png differ diff --git a/blockchains/ethereum/assets/0x8Bedb57393F24FbdDf36A76881E21Ed5037d00a4/info.json b/blockchains/ethereum/assets/0x8Bedb57393F24FbdDf36A76881E21Ed5037d00a4/info.json new file mode 100644 index 00000000..7956a7b0 --- /dev/null +++ b/blockchains/ethereum/assets/0x8Bedb57393F24FbdDf36A76881E21Ed5037d00a4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decentralized Finance Application", + "symbol": "DFA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8Bedb57393F24FbdDf36A76881E21Ed5037d00a4", + "status": "abandoned", + "id": "0x8Bedb57393F24FbdDf36A76881E21Ed5037d00a4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8Bedb57393F24FbdDf36A76881E21Ed5037d00a4/logo.png b/blockchains/ethereum/assets/0x8Bedb57393F24FbdDf36A76881E21Ed5037d00a4/logo.png new file mode 100644 index 00000000..c8aa92eb Binary files /dev/null and b/blockchains/ethereum/assets/0x8Bedb57393F24FbdDf36A76881E21Ed5037d00a4/logo.png differ diff --git a/blockchains/ethereum/assets/0x8C60423251C62f653855777C476d76280b853960/info.json b/blockchains/ethereum/assets/0x8C60423251C62f653855777C476d76280b853960/info.json new file mode 100644 index 00000000..b5b6b6a6 --- /dev/null +++ b/blockchains/ethereum/assets/0x8C60423251C62f653855777C476d76280b853960/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chaz", + "symbol": "CHOP", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8C60423251C62f653855777C476d76280b853960", + "status": "abandoned", + "id": "0x8C60423251C62f653855777C476d76280b853960" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8C60423251C62f653855777C476d76280b853960/logo.png b/blockchains/ethereum/assets/0x8C60423251C62f653855777C476d76280b853960/logo.png new file mode 100644 index 00000000..81364b61 Binary files /dev/null and b/blockchains/ethereum/assets/0x8C60423251C62f653855777C476d76280b853960/logo.png differ diff --git a/blockchains/ethereum/assets/0x8C8cCB81D436B0f3017664441C39cbeFbD64650F/info.json b/blockchains/ethereum/assets/0x8C8cCB81D436B0f3017664441C39cbeFbD64650F/info.json new file mode 100644 index 00000000..28e0fef1 --- /dev/null +++ b/blockchains/ethereum/assets/0x8C8cCB81D436B0f3017664441C39cbeFbD64650F/info.json @@ -0,0 +1,11 @@ +{ + "name": "ThaneCoin", + "symbol": "TPI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8C8cCB81D436B0f3017664441C39cbeFbD64650F", + "status": "abandoned", + "id": "0x8C8cCB81D436B0f3017664441C39cbeFbD64650F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8C8cCB81D436B0f3017664441C39cbeFbD64650F/logo.png b/blockchains/ethereum/assets/0x8C8cCB81D436B0f3017664441C39cbeFbD64650F/logo.png new file mode 100644 index 00000000..00a34ed7 Binary files /dev/null and b/blockchains/ethereum/assets/0x8C8cCB81D436B0f3017664441C39cbeFbD64650F/logo.png differ diff --git a/blockchains/ethereum/assets/0x8CBC6d8E11a9cb59922278321E0E61Dfabc0D9F4/info.json b/blockchains/ethereum/assets/0x8CBC6d8E11a9cb59922278321E0E61Dfabc0D9F4/info.json new file mode 100644 index 00000000..a20ad6a3 --- /dev/null +++ b/blockchains/ethereum/assets/0x8CBC6d8E11a9cb59922278321E0E61Dfabc0D9F4/info.json @@ -0,0 +1,11 @@ +{ + "name": "KOPI", + "website": "https://kopiblockchain.io", + "description": "KOPI BLOCKCHAIN is the digitalization of commodity coffee using blockchain technology. It will allow tracing of transactions on Waves Explorer. KOPI uses ERC20 & Waves Platform - decentralize exchange (DEX) to facilitate transaction and transfer.", + "explorer": "https://etherscan.io/token/0x8CBC6d8E11a9cb59922278321E0E61Dfabc0D9F4", + "type": "ERC20", + "symbol": "KOPI", + "decimals": 2, + "status": "active", + "id": "0x8CBC6d8E11a9cb59922278321E0E61Dfabc0D9F4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8CBC6d8E11a9cb59922278321E0E61Dfabc0D9F4/logo.png b/blockchains/ethereum/assets/0x8CBC6d8E11a9cb59922278321E0E61Dfabc0D9F4/logo.png new file mode 100644 index 00000000..dec6b8cd Binary files /dev/null and b/blockchains/ethereum/assets/0x8CBC6d8E11a9cb59922278321E0E61Dfabc0D9F4/logo.png differ diff --git a/blockchains/ethereum/assets/0x8CD6e29d3686d24d3C2018CEe54621eA0f89313B/info.json b/blockchains/ethereum/assets/0x8CD6e29d3686d24d3C2018CEe54621eA0f89313B/info.json new file mode 100644 index 00000000..355f47ec --- /dev/null +++ b/blockchains/ethereum/assets/0x8CD6e29d3686d24d3C2018CEe54621eA0f89313B/info.json @@ -0,0 +1,11 @@ +{ + "name": "NerveNetwork", + "symbol": "ENVT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8CD6e29d3686d24d3C2018CEe54621eA0f89313B", + "status": "abandoned", + "id": "0x8CD6e29d3686d24d3C2018CEe54621eA0f89313B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8CD6e29d3686d24d3C2018CEe54621eA0f89313B/logo.png b/blockchains/ethereum/assets/0x8CD6e29d3686d24d3C2018CEe54621eA0f89313B/logo.png new file mode 100644 index 00000000..603077f5 Binary files /dev/null and b/blockchains/ethereum/assets/0x8CD6e29d3686d24d3C2018CEe54621eA0f89313B/logo.png differ diff --git a/blockchains/ethereum/assets/0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9/info.json b/blockchains/ethereum/assets/0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9/info.json new file mode 100644 index 00000000..04b1d7e3 --- /dev/null +++ b/blockchains/ethereum/assets/0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9/info.json @@ -0,0 +1,15 @@ +{ + "name": "Swipe", + "website": "https://swipe.io/token", + "description": "Swipe Token is a utility token designed to be the gas and fuel of the Swipe Wallet and Swipe Card.", + "explorer": "https://etherscan.io/token/0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9", + "research": "https://research.binance.com/en/projects/swipe", + "type": "ERC20", + "symbol": "SXP", + "decimals": 18, + "status": "active", + "id": "0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9/logo.png b/blockchains/ethereum/assets/0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9/logo.png new file mode 100644 index 00000000..d3c9933a Binary files /dev/null and b/blockchains/ethereum/assets/0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9/logo.png differ diff --git a/blockchains/ethereum/assets/0x8Ce34F749796F82A6990fFa2d80622ef75CA7aD5/info.json b/blockchains/ethereum/assets/0x8Ce34F749796F82A6990fFa2d80622ef75CA7aD5/info.json new file mode 100644 index 00000000..d0a2e3e0 --- /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 00000000..0ad397a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x8Ce34F749796F82A6990fFa2d80622ef75CA7aD5/logo.png differ diff --git a/blockchains/ethereum/assets/0x8D0e3f8b0E1CD67629a05d529F7e036D86794293/info.json b/blockchains/ethereum/assets/0x8D0e3f8b0E1CD67629a05d529F7e036D86794293/info.json new file mode 100644 index 00000000..a02e91bd --- /dev/null +++ b/blockchains/ethereum/assets/0x8D0e3f8b0E1CD67629a05d529F7e036D86794293/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 220-CN10", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8D0e3f8b0E1CD67629a05d529F7e036D86794293", + "status": "abandoned", + "id": "0x8D0e3f8b0E1CD67629a05d529F7e036D86794293" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8D0e3f8b0E1CD67629a05d529F7e036D86794293/logo.png b/blockchains/ethereum/assets/0x8D0e3f8b0E1CD67629a05d529F7e036D86794293/logo.png new file mode 100644 index 00000000..adfd8031 Binary files /dev/null and b/blockchains/ethereum/assets/0x8D0e3f8b0E1CD67629a05d529F7e036D86794293/logo.png differ diff --git a/blockchains/ethereum/assets/0x8D122b36b992AE6da171aC396479208f3B4174a5/info.json b/blockchains/ethereum/assets/0x8D122b36b992AE6da171aC396479208f3B4174a5/info.json new file mode 100644 index 00000000..55c7dd66 --- /dev/null +++ b/blockchains/ethereum/assets/0x8D122b36b992AE6da171aC396479208f3B4174a5/info.json @@ -0,0 +1,11 @@ +{ + "name": "LOOT", + "symbol": "LOOT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8D122b36b992AE6da171aC396479208f3B4174a5", + "status": "abandoned", + "id": "0x8D122b36b992AE6da171aC396479208f3B4174a5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8D122b36b992AE6da171aC396479208f3B4174a5/logo.png b/blockchains/ethereum/assets/0x8D122b36b992AE6da171aC396479208f3B4174a5/logo.png new file mode 100644 index 00000000..11f923c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x8D122b36b992AE6da171aC396479208f3B4174a5/logo.png differ diff --git a/blockchains/ethereum/assets/0x8D5682941cE456900b12d47ac06a88b47C764CE1/info.json b/blockchains/ethereum/assets/0x8D5682941cE456900b12d47ac06a88b47C764CE1/info.json new file mode 100644 index 00000000..230787f1 --- /dev/null +++ b/blockchains/ethereum/assets/0x8D5682941cE456900b12d47ac06a88b47C764CE1/info.json @@ -0,0 +1,11 @@ +{ + "name": "RightMesh Token", + "symbol": "RMESH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8D5682941cE456900b12d47ac06a88b47C764CE1", + "status": "abandoned", + "id": "0x8D5682941cE456900b12d47ac06a88b47C764CE1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8D5682941cE456900b12d47ac06a88b47C764CE1/logo.png b/blockchains/ethereum/assets/0x8D5682941cE456900b12d47ac06a88b47C764CE1/logo.png new file mode 100644 index 00000000..2f21971e Binary files /dev/null and b/blockchains/ethereum/assets/0x8D5682941cE456900b12d47ac06a88b47C764CE1/logo.png differ diff --git a/blockchains/ethereum/assets/0x8D75959f1E61EC2571aa72798237101F084DE63a/info.json b/blockchains/ethereum/assets/0x8D75959f1E61EC2571aa72798237101F084DE63a/info.json new file mode 100644 index 00000000..b239f6d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x8D75959f1E61EC2571aa72798237101F084DE63a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Substratum", + "symbol": "SUB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://substratum.net/", + "explorer": "https://etherscan.io/token/0x8D75959f1E61EC2571aa72798237101F084DE63a", + "status": "abandoned", + "id": "0x8D75959f1E61EC2571aa72798237101F084DE63a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8D75959f1E61EC2571aa72798237101F084DE63a/logo.png b/blockchains/ethereum/assets/0x8D75959f1E61EC2571aa72798237101F084DE63a/logo.png new file mode 100755 index 00000000..49bc5182 Binary files /dev/null and b/blockchains/ethereum/assets/0x8D75959f1E61EC2571aa72798237101F084DE63a/logo.png differ diff --git a/blockchains/ethereum/assets/0x8D8129963291740dDDd917ab01af18c7aed4BA58/info.json b/blockchains/ethereum/assets/0x8D8129963291740dDDd917ab01af18c7aed4BA58/info.json new file mode 100644 index 00000000..3d0d2c29 --- /dev/null +++ b/blockchains/ethereum/assets/0x8D8129963291740dDDd917ab01af18c7aed4BA58/info.json @@ -0,0 +1,11 @@ +{ + "name": "MineBee", + "symbol": "MB", + "type": "ERC20", + "decimals": 18, + "description": "MineBee is developing a turnkey solution that will address the mining industries multi-faceted problems through MineBee solution, MineBee contract, and MineBee open market.", + "website": "https://minebee.io/", + "explorer": "https://etherscan.io/token/0x8D8129963291740dDDd917ab01af18c7aed4BA58", + "status": "active", + "id": "0x8D8129963291740dDDd917ab01af18c7aed4BA58" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8D8129963291740dDDd917ab01af18c7aed4BA58/logo.png b/blockchains/ethereum/assets/0x8D8129963291740dDDd917ab01af18c7aed4BA58/logo.png new file mode 100644 index 00000000..60ee1418 Binary files /dev/null and b/blockchains/ethereum/assets/0x8D8129963291740dDDd917ab01af18c7aed4BA58/logo.png differ diff --git a/blockchains/ethereum/assets/0x8D983cb9388EaC77af0474fA441C4815500Cb7BB/info.json b/blockchains/ethereum/assets/0x8D983cb9388EaC77af0474fA441C4815500Cb7BB/info.json new file mode 100644 index 00000000..ac1bc35d --- /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 00000000..a15a339a Binary files /dev/null and b/blockchains/ethereum/assets/0x8D983cb9388EaC77af0474fA441C4815500Cb7BB/logo.png differ diff --git a/blockchains/ethereum/assets/0x8DA087b4C36D0804E766c3a6b1c1AdAccc8490c0/info.json b/blockchains/ethereum/assets/0x8DA087b4C36D0804E766c3a6b1c1AdAccc8490c0/info.json new file mode 100644 index 00000000..8a218409 --- /dev/null +++ b/blockchains/ethereum/assets/0x8DA087b4C36D0804E766c3a6b1c1AdAccc8490c0/info.json @@ -0,0 +1,11 @@ +{ + "name": "CrystalCoin", + "symbol": "CRYSTAL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8DA087b4C36D0804E766c3a6b1c1AdAccc8490c0", + "status": "abandoned", + "id": "0x8DA087b4C36D0804E766c3a6b1c1AdAccc8490c0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8DA087b4C36D0804E766c3a6b1c1AdAccc8490c0/logo.png b/blockchains/ethereum/assets/0x8DA087b4C36D0804E766c3a6b1c1AdAccc8490c0/logo.png new file mode 100644 index 00000000..9e1cc98e Binary files /dev/null and b/blockchains/ethereum/assets/0x8DA087b4C36D0804E766c3a6b1c1AdAccc8490c0/logo.png differ diff --git a/blockchains/ethereum/assets/0x8DAFa2546A8dDfa4299Ff31a1997A2D2C8197a7C/info.json b/blockchains/ethereum/assets/0x8DAFa2546A8dDfa4299Ff31a1997A2D2C8197a7C/info.json new file mode 100644 index 00000000..d4ed7bb0 --- /dev/null +++ b/blockchains/ethereum/assets/0x8DAFa2546A8dDfa4299Ff31a1997A2D2C8197a7C/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-25/30M85", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8DAFa2546A8dDfa4299Ff31a1997A2D2C8197a7C", + "status": "abandoned", + "id": "0x8DAFa2546A8dDfa4299Ff31a1997A2D2C8197a7C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8DAFa2546A8dDfa4299Ff31a1997A2D2C8197a7C/logo.png b/blockchains/ethereum/assets/0x8DAFa2546A8dDfa4299Ff31a1997A2D2C8197a7C/logo.png new file mode 100644 index 00000000..46eb0b6a Binary files /dev/null and b/blockchains/ethereum/assets/0x8DAFa2546A8dDfa4299Ff31a1997A2D2C8197a7C/logo.png differ diff --git a/blockchains/ethereum/assets/0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73/info.json b/blockchains/ethereum/assets/0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73/info.json new file mode 100644 index 00000000..ca6246d6 --- /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 00000000..343c6e1f Binary files /dev/null and b/blockchains/ethereum/assets/0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73/logo.png differ diff --git a/blockchains/ethereum/assets/0x8DE0f21eaa95f589A8a2fE69c5752fFdADA83EaD/info.json b/blockchains/ethereum/assets/0x8DE0f21eaa95f589A8a2fE69c5752fFdADA83EaD/info.json new file mode 100644 index 00000000..521cb0ef --- /dev/null +++ b/blockchains/ethereum/assets/0x8DE0f21eaa95f589A8a2fE69c5752fFdADA83EaD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cybitex", + "website": "http://cybitex.co", + "description": "Cybitex is based on Ethereum Erc20 Network as a network that promotes the digital assets in settled markets.", + "explorer": "https://etherscan.io/token/0x8DE0f21eaa95f589A8a2fE69c5752fFdADA83EaD", + "type": "ERC20", + "symbol": "CBX", + "decimals": 18, + "status": "active", + "id": "0x8DE0f21eaa95f589A8a2fE69c5752fFdADA83EaD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8DE0f21eaa95f589A8a2fE69c5752fFdADA83EaD/logo.png b/blockchains/ethereum/assets/0x8DE0f21eaa95f589A8a2fE69c5752fFdADA83EaD/logo.png new file mode 100644 index 00000000..be02ab7f Binary files /dev/null and b/blockchains/ethereum/assets/0x8DE0f21eaa95f589A8a2fE69c5752fFdADA83EaD/logo.png differ diff --git a/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json b/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json new file mode 100644 index 00000000..94a2cd7e --- /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 00000000..3bc1cf77 Binary files /dev/null and b/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/logo.png differ diff --git a/blockchains/ethereum/assets/0x8DadC1061b421BF96bcfC9dEf8f5C5a9D7E19B46/info.json b/blockchains/ethereum/assets/0x8DadC1061b421BF96bcfC9dEf8f5C5a9D7E19B46/info.json new file mode 100644 index 00000000..a2c51d39 --- /dev/null +++ b/blockchains/ethereum/assets/0x8DadC1061b421BF96bcfC9dEf8f5C5a9D7E19B46/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 139-CN26", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8DadC1061b421BF96bcfC9dEf8f5C5a9D7E19B46", + "status": "abandoned", + "id": "0x8DadC1061b421BF96bcfC9dEf8f5C5a9D7E19B46" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8DadC1061b421BF96bcfC9dEf8f5C5a9D7E19B46/logo.png b/blockchains/ethereum/assets/0x8DadC1061b421BF96bcfC9dEf8f5C5a9D7E19B46/logo.png new file mode 100644 index 00000000..2a2359b7 Binary files /dev/null and b/blockchains/ethereum/assets/0x8DadC1061b421BF96bcfC9dEf8f5C5a9D7E19B46/logo.png differ diff --git a/blockchains/ethereum/assets/0x8DbF4D457929F339D4742DD45de28BEd97b7d635/info.json b/blockchains/ethereum/assets/0x8DbF4D457929F339D4742DD45de28BEd97b7d635/info.json new file mode 100644 index 00000000..6b734b57 --- /dev/null +++ b/blockchains/ethereum/assets/0x8DbF4D457929F339D4742DD45de28BEd97b7d635/info.json @@ -0,0 +1,11 @@ +{ + "name": "DIYChain Token", + "symbol": "DIY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.diychain.com/", + "explorer": "https://etherscan.io/token/0x8DbF4D457929F339D4742DD45de28BEd97b7d635", + "status": "abandoned", + "id": "0x8DbF4D457929F339D4742DD45de28BEd97b7d635" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8DbF4D457929F339D4742DD45de28BEd97b7d635/logo.png b/blockchains/ethereum/assets/0x8DbF4D457929F339D4742DD45de28BEd97b7d635/logo.png new file mode 100644 index 00000000..5b1fe585 Binary files /dev/null and b/blockchains/ethereum/assets/0x8DbF4D457929F339D4742DD45de28BEd97b7d635/logo.png differ diff --git a/blockchains/ethereum/assets/0x8Dc53eC99Ec97bf098eC3777C9DdCeF935DF49d4/info.json b/blockchains/ethereum/assets/0x8Dc53eC99Ec97bf098eC3777C9DdCeF935DF49d4/info.json new file mode 100644 index 00000000..5378c1b9 --- /dev/null +++ b/blockchains/ethereum/assets/0x8Dc53eC99Ec97bf098eC3777C9DdCeF935DF49d4/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRADECOIN", + "symbol": "TRDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8Dc53eC99Ec97bf098eC3777C9DdCeF935DF49d4", + "status": "abandoned", + "id": "0x8Dc53eC99Ec97bf098eC3777C9DdCeF935DF49d4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8Dc53eC99Ec97bf098eC3777C9DdCeF935DF49d4/logo.png b/blockchains/ethereum/assets/0x8Dc53eC99Ec97bf098eC3777C9DdCeF935DF49d4/logo.png new file mode 100755 index 00000000..e10e24e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x8Dc53eC99Ec97bf098eC3777C9DdCeF935DF49d4/logo.png differ diff --git a/blockchains/ethereum/assets/0x8Ddc86DbA7ad728012eFc460b8A168Aba60B403B/info.json b/blockchains/ethereum/assets/0x8Ddc86DbA7ad728012eFc460b8A168Aba60B403B/info.json new file mode 100644 index 00000000..748a5711 --- /dev/null +++ b/blockchains/ethereum/assets/0x8Ddc86DbA7ad728012eFc460b8A168Aba60B403B/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETHDaiRebalancingSetToken", + "symbol": "ETHDai", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.tokensets.com/set/ethhivol", + "explorer": "https://etherscan.io/token/0x8Ddc86DbA7ad728012eFc460b8A168Aba60B403B", + "status": "abandoned", + "id": "0x8Ddc86DbA7ad728012eFc460b8A168Aba60B403B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8Ddc86DbA7ad728012eFc460b8A168Aba60B403B/logo.png b/blockchains/ethereum/assets/0x8Ddc86DbA7ad728012eFc460b8A168Aba60B403B/logo.png new file mode 100644 index 00000000..c1d5e522 Binary files /dev/null and b/blockchains/ethereum/assets/0x8Ddc86DbA7ad728012eFc460b8A168Aba60B403B/logo.png differ diff --git a/blockchains/ethereum/assets/0x8De5D49725550f7b318b2FA0f1B1F118E98E8D0F/info.json b/blockchains/ethereum/assets/0x8De5D49725550f7b318b2FA0f1B1F118E98E8D0F/info.json new file mode 100644 index 00000000..0fc7aee7 --- /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 00000000..5fd5a776 Binary files /dev/null and b/blockchains/ethereum/assets/0x8De5D49725550f7b318b2FA0f1B1F118E98E8D0F/logo.png differ diff --git a/blockchains/ethereum/assets/0x8De67D55C58540807601dBf1259537BC2DFfc84D/info.json b/blockchains/ethereum/assets/0x8De67D55C58540807601dBf1259537BC2DFfc84D/info.json new file mode 100644 index 00000000..1a6efac3 --- /dev/null +++ b/blockchains/ethereum/assets/0x8De67D55C58540807601dBf1259537BC2DFfc84D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Almeela", + "symbol": "KZE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8De67D55C58540807601dBf1259537BC2DFfc84D", + "status": "abandoned", + "id": "0x8De67D55C58540807601dBf1259537BC2DFfc84D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8De67D55C58540807601dBf1259537BC2DFfc84D/logo.png b/blockchains/ethereum/assets/0x8De67D55C58540807601dBf1259537BC2DFfc84D/logo.png new file mode 100755 index 00000000..834a87ba Binary files /dev/null and b/blockchains/ethereum/assets/0x8De67D55C58540807601dBf1259537BC2DFfc84D/logo.png differ diff --git a/blockchains/ethereum/assets/0x8DebC1A98a3acafc7C23195e55a7682cE49DaD28/info.json b/blockchains/ethereum/assets/0x8DebC1A98a3acafc7C23195e55a7682cE49DaD28/info.json new file mode 100644 index 00000000..9cd84b98 --- /dev/null +++ b/blockchains/ethereum/assets/0x8DebC1A98a3acafc7C23195e55a7682cE49DaD28/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 225-CN14", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8DebC1A98a3acafc7C23195e55a7682cE49DaD28", + "status": "abandoned", + "id": "0x8DebC1A98a3acafc7C23195e55a7682cE49DaD28" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8DebC1A98a3acafc7C23195e55a7682cE49DaD28/logo.png b/blockchains/ethereum/assets/0x8DebC1A98a3acafc7C23195e55a7682cE49DaD28/logo.png new file mode 100644 index 00000000..b65bb848 Binary files /dev/null and b/blockchains/ethereum/assets/0x8DebC1A98a3acafc7C23195e55a7682cE49DaD28/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E16bf47065Fe843A82f4399bAF5aBac4E0822B7/info.json b/blockchains/ethereum/assets/0x8E16bf47065Fe843A82f4399bAF5aBac4E0822B7/info.json new file mode 100644 index 00000000..e12c5452 --- /dev/null +++ b/blockchains/ethereum/assets/0x8E16bf47065Fe843A82f4399bAF5aBac4E0822B7/info.json @@ -0,0 +1,12 @@ +{ + "name": "Binance Wrapped FIL", + "website": "https://binance.org", + "description": "BFIL tokens are ERC20 tokens on the Ethereum network created via the Binance Token Canal program, where the price is pegged to FIL at a rate of 1 BFIL = 1 FIL.", + "explorer": "https://etherscan.io/token/0x8e16bf47065fe843a82f4399baf5abac4e0822b7", + "research": "https://research.binance.com/en/projects/filecoin", + "type": "ERC20", + "symbol": "BFIL", + "decimals": 18, + "status": "active", + "id": "0x8E16bf47065Fe843A82f4399bAF5aBac4E0822B7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8E16bf47065Fe843A82f4399bAF5aBac4E0822B7/logo.png b/blockchains/ethereum/assets/0x8E16bf47065Fe843A82f4399bAF5aBac4E0822B7/logo.png new file mode 100644 index 00000000..a3f86803 Binary files /dev/null and b/blockchains/ethereum/assets/0x8E16bf47065Fe843A82f4399bAF5aBac4E0822B7/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E30ea2329D95802Fd804f4291220b0e2F579812/info.json b/blockchains/ethereum/assets/0x8E30ea2329D95802Fd804f4291220b0e2F579812/info.json new file mode 100644 index 00000000..a2e1e793 --- /dev/null +++ b/blockchains/ethereum/assets/0x8E30ea2329D95802Fd804f4291220b0e2F579812/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decentralized Vulnerability Platform", + "symbol": "DVP", + "type": "ERC20", + "decimals": 18, + "description": "DVP (Decentralized Vulnerability Platform) is an international community of information security professionals (White Hats). The platform endeavors to build, leveraging on Blockchain technologies and utilizing Blockchain-based token as a key incentive, a technology driven global community and ecosystem that brings organizations, Blockchain projects and White Hats together, creating a sustainable secure environment for the Blockchain industry as a whole.", + "website": "https://dvpnet.io/", + "explorer": "https://etherscan.io/token/0x8E30ea2329D95802Fd804f4291220b0e2F579812", + "status": "active", + "id": "0x8E30ea2329D95802Fd804f4291220b0e2F579812" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8E30ea2329D95802Fd804f4291220b0e2F579812/logo.png b/blockchains/ethereum/assets/0x8E30ea2329D95802Fd804f4291220b0e2F579812/logo.png new file mode 100644 index 00000000..12bb150c Binary files /dev/null and b/blockchains/ethereum/assets/0x8E30ea2329D95802Fd804f4291220b0e2F579812/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E4B1E38c082C7cEb638c084C102352421FE607F/info.json b/blockchains/ethereum/assets/0x8E4B1E38c082C7cEb638c084C102352421FE607F/info.json new file mode 100644 index 00000000..11ec16ae --- /dev/null +++ b/blockchains/ethereum/assets/0x8E4B1E38c082C7cEb638c084C102352421FE607F/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEG Wrapped SHIB", + "website": "https://fegtoken.com", + "description": "FEG Wrapped SHIB", + "explorer": "https://etherscan.io/token/0x8e4b1e38c082c7ceb638c084c102352421fe607f", + "type": "ERC20", + "symbol": "fSHIB", + "decimals": 18, + "status": "active", + "id": "0x8E4B1E38c082C7cEb638c084C102352421FE607F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8E4B1E38c082C7cEb638c084C102352421FE607F/logo.png b/blockchains/ethereum/assets/0x8E4B1E38c082C7cEb638c084C102352421FE607F/logo.png new file mode 100644 index 00000000..33332ddd Binary files /dev/null and b/blockchains/ethereum/assets/0x8E4B1E38c082C7cEb638c084C102352421FE607F/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886/info.json b/blockchains/ethereum/assets/0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886/info.json new file mode 100644 index 00000000..40693785 --- /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 00000000..ec37396b Binary files /dev/null and b/blockchains/ethereum/assets/0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E5610ab5E39d26828167640EA29823fe1dD5843/info.json b/blockchains/ethereum/assets/0x8E5610ab5E39d26828167640EA29823fe1dD5843/info.json new file mode 100644 index 00000000..bfdfd6a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x8E5610ab5E39d26828167640EA29823fe1dD5843/info.json @@ -0,0 +1,11 @@ +{ + "name": "KanadeCoin", + "symbol": "KNDC", + "type": "ERC20", + "decimals": 8, + "description": "KanadeCoin (KNDC) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://kanadecoin.com", + "explorer": "https://etherscan.io/token/0x8E5610ab5E39d26828167640EA29823fe1dD5843", + "status": "active", + "id": "0x8E5610ab5E39d26828167640EA29823fe1dD5843" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8E5610ab5E39d26828167640EA29823fe1dD5843/logo.png b/blockchains/ethereum/assets/0x8E5610ab5E39d26828167640EA29823fe1dD5843/logo.png new file mode 100644 index 00000000..f0e393df Binary files /dev/null and b/blockchains/ethereum/assets/0x8E5610ab5E39d26828167640EA29823fe1dD5843/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E6A5338eaC4B6fE8D51a7653Fad3B9DA755Eea6/info.json b/blockchains/ethereum/assets/0x8E6A5338eaC4B6fE8D51a7653Fad3B9DA755Eea6/info.json new file mode 100644 index 00000000..586684fc --- /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 00000000..95d8e653 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 new file mode 100644 index 00000000..061ccbc9 --- /dev/null +++ b/blockchains/ethereum/assets/0x8E6cd950Ad6ba651F6DD608Dc70e5886B1AA6B24/info.json @@ -0,0 +1,65 @@ +{ + "name": "StarLink $STARL", + "type": "ERC20", + "symbol": "STARL", + "decimals": 18, + "website": "https://www.starltoken.com", + "description": "Starlink Metaverse is a 3D video game featuring NFT collectible virtual real-estate powered by blockchain technology. ", + "explorer": "https://etherscan.io/token/0x8e6cd950ad6ba651f6dd608dc70e5886b1aa6b24", + "status": "active", + "id": "0x8E6cd950Ad6ba651F6DD608Dc70e5886B1AA6B24", + "links": [ + { + "name": "x", + "url": "https://x.com/starlinketh" + }, + { + "name": "github", + "url": "https://github.com/StarlinkMeta" + }, + { + "name": "telegram", + "url": "https://t.me/starlinkofficial" + }, + { + "name": "whitepaper", + "url": "https://starlinkmeta.medium.com/starlink-whitepaper-v1-26f5264b65f9" + }, + { + "name": "telegram_news", + "url": "https://t.me/starlinkann" + }, + { + "name": "facebook", + "url": "https://facebook.com/groups/starlinkmetaverse" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Starlink_Metaverse/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/N9sG4Dgy" + }, + { + "name": "source_code", + "url": "https://etherscan.io/address/0x8e6cd950ad6ba651f6dd608dc70e5886b1aa6b24#events" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/star-link/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/starlink" + }, + { + "name": "blog", + "url": "https://starlinkmetaverse.fandom.com/" + }, + { + "name": "medium", + "url": "https://starlinkmeta.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8E6cd950Ad6ba651F6DD608Dc70e5886B1AA6B24/logo.png b/blockchains/ethereum/assets/0x8E6cd950Ad6ba651F6DD608Dc70e5886B1AA6B24/logo.png new file mode 100644 index 00000000..27776d2c Binary files /dev/null and b/blockchains/ethereum/assets/0x8E6cd950Ad6ba651F6DD608Dc70e5886B1AA6B24/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E766F57F7d16Ca50B4A0b90b88f6468A09b0439/info.json b/blockchains/ethereum/assets/0x8E766F57F7d16Ca50B4A0b90b88f6468A09b0439/info.json new file mode 100644 index 00000000..1a3edbb3 --- /dev/null +++ b/blockchains/ethereum/assets/0x8E766F57F7d16Ca50B4A0b90b88f6468A09b0439/info.json @@ -0,0 +1,11 @@ +{ + "name": "Maximine Coin", + "symbol": "MXM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://maximine.io/", + "explorer": "https://etherscan.io/token/0x8E766F57F7d16Ca50B4A0b90b88f6468A09b0439", + "status": "abandoned", + "id": "0x8E766F57F7d16Ca50B4A0b90b88f6468A09b0439" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8E766F57F7d16Ca50B4A0b90b88f6468A09b0439/logo.png b/blockchains/ethereum/assets/0x8E766F57F7d16Ca50B4A0b90b88f6468A09b0439/logo.png new file mode 100644 index 00000000..aeaf1ebe Binary files /dev/null and b/blockchains/ethereum/assets/0x8E766F57F7d16Ca50B4A0b90b88f6468A09b0439/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E802E72A96F560b607E7CA2D59fF62bA222257b/info.json b/blockchains/ethereum/assets/0x8E802E72A96F560b607E7CA2D59fF62bA222257b/info.json new file mode 100644 index 00000000..02d4449e --- /dev/null +++ b/blockchains/ethereum/assets/0x8E802E72A96F560b607E7CA2D59fF62bA222257b/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-27/30M57", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8E802E72A96F560b607E7CA2D59fF62bA222257b", + "status": "abandoned", + "id": "0x8E802E72A96F560b607E7CA2D59fF62bA222257b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8E802E72A96F560b607E7CA2D59fF62bA222257b/logo.png b/blockchains/ethereum/assets/0x8E802E72A96F560b607E7CA2D59fF62bA222257b/logo.png new file mode 100644 index 00000000..dcba88ce Binary files /dev/null and b/blockchains/ethereum/assets/0x8E802E72A96F560b607E7CA2D59fF62bA222257b/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E822B60b3a262d34dF59A4Ddd02383deF599B94/info.json b/blockchains/ethereum/assets/0x8E822B60b3a262d34dF59A4Ddd02383deF599B94/info.json new file mode 100644 index 00000000..e2dea9cb --- /dev/null +++ b/blockchains/ethereum/assets/0x8E822B60b3a262d34dF59A4Ddd02383deF599B94/info.json @@ -0,0 +1,11 @@ +{ + "name": "USDCI", + "symbol": "USDCI", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8E822B60b3a262d34dF59A4Ddd02383deF599B94", + "status": "abandoned", + "id": "0x8E822B60b3a262d34dF59A4Ddd02383deF599B94" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8E822B60b3a262d34dF59A4Ddd02383deF599B94/logo.png b/blockchains/ethereum/assets/0x8E822B60b3a262d34dF59A4Ddd02383deF599B94/logo.png new file mode 100644 index 00000000..8fa22125 Binary files /dev/null and b/blockchains/ethereum/assets/0x8E822B60b3a262d34dF59A4Ddd02383deF599B94/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E82a0d7347329703FB6c6A745B1C2b3aBB1658c/info.json b/blockchains/ethereum/assets/0x8E82a0d7347329703FB6c6A745B1C2b3aBB1658c/info.json new file mode 100644 index 00000000..a5b59691 --- /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 00000000..b251792a Binary files /dev/null and b/blockchains/ethereum/assets/0x8E82a0d7347329703FB6c6A745B1C2b3aBB1658c/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E853c3aB40Bd80412bb5F40Eadfed4Fb1cDC7d0/info.json b/blockchains/ethereum/assets/0x8E853c3aB40Bd80412bb5F40Eadfed4Fb1cDC7d0/info.json new file mode 100644 index 00000000..b0ed511d --- /dev/null +++ b/blockchains/ethereum/assets/0x8E853c3aB40Bd80412bb5F40Eadfed4Fb1cDC7d0/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C559025", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8E853c3aB40Bd80412bb5F40Eadfed4Fb1cDC7d0", + "status": "abandoned", + "id": "0x8E853c3aB40Bd80412bb5F40Eadfed4Fb1cDC7d0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8E853c3aB40Bd80412bb5F40Eadfed4Fb1cDC7d0/logo.png b/blockchains/ethereum/assets/0x8E853c3aB40Bd80412bb5F40Eadfed4Fb1cDC7d0/logo.png new file mode 100644 index 00000000..89eb1431 Binary files /dev/null and b/blockchains/ethereum/assets/0x8E853c3aB40Bd80412bb5F40Eadfed4Fb1cDC7d0/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E870D67F660D95d5be530380D0eC0bd388289E1/info.json b/blockchains/ethereum/assets/0x8E870D67F660D95d5be530380D0eC0bd388289E1/info.json new file mode 100644 index 00000000..7a94f710 --- /dev/null +++ b/blockchains/ethereum/assets/0x8E870D67F660D95d5be530380D0eC0bd388289E1/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://etherscan.io/token/0x8E870D67F660D95d5be530380D0eC0bd388289E1", + "research": "https://research.binance.com/en/projects/paxos-standard", + "type": "ERC20", + "symbol": "USDP", + "decimals": 18, + "status": "active", + "id": "0x8E870D67F660D95d5be530380D0eC0bd388289E1", + "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/ethereum/assets/0x8E870D67F660D95d5be530380D0eC0bd388289E1/logo.png b/blockchains/ethereum/assets/0x8E870D67F660D95d5be530380D0eC0bd388289E1/logo.png new file mode 100644 index 00000000..d813568c Binary files /dev/null and b/blockchains/ethereum/assets/0x8E870D67F660D95d5be530380D0eC0bd388289E1/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E964e35A76103Af4C7D7318e1B1a82c682ae296/info.json b/blockchains/ethereum/assets/0x8E964e35A76103Af4C7D7318e1B1a82c682ae296/info.json new file mode 100644 index 00000000..1a9946a1 --- /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 00000000..4a51ed69 Binary files /dev/null and b/blockchains/ethereum/assets/0x8E964e35A76103Af4C7D7318e1B1a82c682ae296/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E9F8B93D049CbfeB37e0337b2d581ac6D0c3808/info.json b/blockchains/ethereum/assets/0x8E9F8B93D049CbfeB37e0337b2d581ac6D0c3808/info.json new file mode 100644 index 00000000..76c05667 --- /dev/null +++ b/blockchains/ethereum/assets/0x8E9F8B93D049CbfeB37e0337b2d581ac6D0c3808/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 009-CN44", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8E9F8B93D049CbfeB37e0337b2d581ac6D0c3808", + "status": "abandoned", + "id": "0x8E9F8B93D049CbfeB37e0337b2d581ac6D0c3808" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8E9F8B93D049CbfeB37e0337b2d581ac6D0c3808/logo.png b/blockchains/ethereum/assets/0x8E9F8B93D049CbfeB37e0337b2d581ac6D0c3808/logo.png new file mode 100644 index 00000000..b8559a63 Binary files /dev/null and b/blockchains/ethereum/assets/0x8E9F8B93D049CbfeB37e0337b2d581ac6D0c3808/logo.png differ diff --git a/blockchains/ethereum/assets/0x8EA6cCBB95efAd9Ff6dF3721b6B9738Cac255d59/info.json b/blockchains/ethereum/assets/0x8EA6cCBB95efAd9Ff6dF3721b6B9738Cac255d59/info.json new file mode 100644 index 00000000..c088ef0c --- /dev/null +++ b/blockchains/ethereum/assets/0x8EA6cCBB95efAd9Ff6dF3721b6B9738Cac255d59/info.json @@ -0,0 +1,11 @@ +{ + "name": "Squirrelcoin", + "symbol": "NTS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8EA6cCBB95efAd9Ff6dF3721b6B9738Cac255d59", + "status": "abandoned", + "id": "0x8EA6cCBB95efAd9Ff6dF3721b6B9738Cac255d59" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8EA6cCBB95efAd9Ff6dF3721b6B9738Cac255d59/logo.png b/blockchains/ethereum/assets/0x8EA6cCBB95efAd9Ff6dF3721b6B9738Cac255d59/logo.png new file mode 100755 index 00000000..50e1590d Binary files /dev/null and b/blockchains/ethereum/assets/0x8EA6cCBB95efAd9Ff6dF3721b6B9738Cac255d59/logo.png differ diff --git a/blockchains/ethereum/assets/0x8EE22C31531956A921425c6aFcB3E5742E775f12/info.json b/blockchains/ethereum/assets/0x8EE22C31531956A921425c6aFcB3E5742E775f12/info.json new file mode 100644 index 00000000..2e8ca3f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x8EE22C31531956A921425c6aFcB3E5742E775f12/info.json @@ -0,0 +1,11 @@ +{ + "name": "Volley", + "symbol": "VOLLEY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8EE22C31531956A921425c6aFcB3E5742E775f12", + "status": "abandoned", + "id": "0x8EE22C31531956A921425c6aFcB3E5742E775f12" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8EE22C31531956A921425c6aFcB3E5742E775f12/logo.png b/blockchains/ethereum/assets/0x8EE22C31531956A921425c6aFcB3E5742E775f12/logo.png new file mode 100644 index 00000000..50ecdddd Binary files /dev/null and b/blockchains/ethereum/assets/0x8EE22C31531956A921425c6aFcB3E5742E775f12/logo.png differ diff --git a/blockchains/ethereum/assets/0x8EF47555856f6Ce2E0cd7C36AeF4FAb317d2e2E2/info.json b/blockchains/ethereum/assets/0x8EF47555856f6Ce2E0cd7C36AeF4FAb317d2e2E2/info.json new file mode 100644 index 00000000..7fdda440 --- /dev/null +++ b/blockchains/ethereum/assets/0x8EF47555856f6Ce2E0cd7C36AeF4FAb317d2e2E2/info.json @@ -0,0 +1,11 @@ +{ + "name": "PayAccept", + "website": "https://payaccept.net", + "description": "PayAccept is revolutionizing the way you manage payments. We combine traditional and Decentralized Finance (DeFi) to offer access to fiat, cryptocurrency, lending, card issuance, payment solutions, and risk management services.", + "explorer": "https://etherscan.io/token/0x8EF47555856f6Ce2E0cd7C36AeF4FAb317d2e2E2", + "type": "ERC20", + "symbol": "PAYT", + "decimals": 18, + "status": "active", + "id": "0x8EF47555856f6Ce2E0cd7C36AeF4FAb317d2e2E2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8EF47555856f6Ce2E0cd7C36AeF4FAb317d2e2E2/logo.png b/blockchains/ethereum/assets/0x8EF47555856f6Ce2E0cd7C36AeF4FAb317d2e2E2/logo.png new file mode 100644 index 00000000..b58517a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x8EF47555856f6Ce2E0cd7C36AeF4FAb317d2e2E2/logo.png differ diff --git a/blockchains/ethereum/assets/0x8Eb38715604b938812DEC25A0A1bc05B4becB9ca/info.json b/blockchains/ethereum/assets/0x8Eb38715604b938812DEC25A0A1bc05B4becB9ca/info.json new file mode 100644 index 00000000..1439c5ef --- /dev/null +++ b/blockchains/ethereum/assets/0x8Eb38715604b938812DEC25A0A1bc05B4becB9ca/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gric Coin", + "symbol": "GC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8Eb38715604b938812DEC25A0A1bc05B4becB9ca", + "status": "abandoned", + "id": "0x8Eb38715604b938812DEC25A0A1bc05B4becB9ca" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8Eb38715604b938812DEC25A0A1bc05B4becB9ca/logo.png b/blockchains/ethereum/assets/0x8Eb38715604b938812DEC25A0A1bc05B4becB9ca/logo.png new file mode 100644 index 00000000..7d020e5c Binary files /dev/null and b/blockchains/ethereum/assets/0x8Eb38715604b938812DEC25A0A1bc05B4becB9ca/logo.png differ diff --git a/blockchains/ethereum/assets/0x8Ed793D7D5715258aa1B7320770D603517EE66E6/info.json b/blockchains/ethereum/assets/0x8Ed793D7D5715258aa1B7320770D603517EE66E6/info.json new file mode 100644 index 00000000..0bd15e3d --- /dev/null +++ b/blockchains/ethereum/assets/0x8Ed793D7D5715258aa1B7320770D603517EE66E6/info.json @@ -0,0 +1,11 @@ +{ + "name": "KimchiSoxchain", + "symbol": "KSOX", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8Ed793D7D5715258aa1B7320770D603517EE66E6", + "status": "abandoned", + "id": "0x8Ed793D7D5715258aa1B7320770D603517EE66E6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8Ed793D7D5715258aa1B7320770D603517EE66E6/logo.png b/blockchains/ethereum/assets/0x8Ed793D7D5715258aa1B7320770D603517EE66E6/logo.png new file mode 100644 index 00000000..d30b126a Binary files /dev/null and b/blockchains/ethereum/assets/0x8Ed793D7D5715258aa1B7320770D603517EE66E6/logo.png differ diff --git a/blockchains/ethereum/assets/0x8F041A3940a5e6FB580075C3774E15FcFA0E1618/info.json b/blockchains/ethereum/assets/0x8F041A3940a5e6FB580075C3774E15FcFA0E1618/info.json new file mode 100644 index 00000000..32625b72 --- /dev/null +++ b/blockchains/ethereum/assets/0x8F041A3940a5e6FB580075C3774E15FcFA0E1618/info.json @@ -0,0 +1,11 @@ +{ + "name": "oneWING", + "website": "https://ichi.org", + "description": "oneWING is the stablecoin created for the Wing Finance community. Backed by both a treasury of WING and collateral of USDC this ERC20 token can be redeemed for USDC at anytime and also provides a vote for governance of the WING treasury.", + "explorer": "https://etherscan.io/token/0x8F041A3940a5e6FB580075C3774E15FcFA0E1618", + "type": "ERC20", + "symbol": "oneWING", + "decimals": 9, + "status": "active", + "id": "0x8F041A3940a5e6FB580075C3774E15FcFA0E1618" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8F041A3940a5e6FB580075C3774E15FcFA0E1618/logo.png b/blockchains/ethereum/assets/0x8F041A3940a5e6FB580075C3774E15FcFA0E1618/logo.png new file mode 100644 index 00000000..e970feb0 Binary files /dev/null and b/blockchains/ethereum/assets/0x8F041A3940a5e6FB580075C3774E15FcFA0E1618/logo.png differ diff --git a/blockchains/ethereum/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/info.json b/blockchains/ethereum/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/info.json new file mode 100644 index 00000000..ba56c46b --- /dev/null +++ b/blockchains/ethereum/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/info.json @@ -0,0 +1,49 @@ +{ + "name": "Restore Truth Token", + "type": "ERC20", + "symbol": "RTT", + "decimals": 18, + "website": "https://restoretruthtoken.com/", + "description": "Using the power of crypto, RTT puts American values at the forefront of its decision making, and you can play your part by using the RTT ecosystem to help fix issues important to you.", + "explorer": "https://etherscan.io/token/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6", + "status": "active", + "id": "0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6", + "links": [ + { + "name": "github", + "url": "https://github.com/restoretruthtoken/restoretruthtoken" + }, + { + "name": "x", + "url": "https://x.com/restoretruthRTT" + }, + { + "name": "telegram", + "url": "https://t.me/RestoreTruthTokenChat" + }, + { + "name": "whitepaper", + "url": "https://restoretruthtoken.com/rtt-business-plan/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/R7G7YMXYjt" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/RestoreTruthToken/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/restoretruthtoken/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/restore-truth-token" + } + ], + "tags": [ + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/logo.png b/blockchains/ethereum/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/logo.png new file mode 100644 index 00000000..808a7642 Binary files /dev/null and b/blockchains/ethereum/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/logo.png differ diff --git a/blockchains/ethereum/assets/0x8F0921f30555624143d427b340b1156914882C10/info.json b/blockchains/ethereum/assets/0x8F0921f30555624143d427b340b1156914882C10/info.json new file mode 100644 index 00000000..94e3154e --- /dev/null +++ b/blockchains/ethereum/assets/0x8F0921f30555624143d427b340b1156914882C10/info.json @@ -0,0 +1,11 @@ +{ + "name": "Flyp.me Token", + "symbol": "FYP", + "type": "ERC20", + "decimals": 18, + "description": "Accountless Crypto Exchanger.", + "website": "https://flyp.me", + "explorer": "https://etherscan.io/token/0x8F0921f30555624143d427b340b1156914882C10", + "status": "active", + "id": "0x8F0921f30555624143d427b340b1156914882C10" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8F0921f30555624143d427b340b1156914882C10/logo.png b/blockchains/ethereum/assets/0x8F0921f30555624143d427b340b1156914882C10/logo.png new file mode 100644 index 00000000..cdd87e68 Binary files /dev/null and b/blockchains/ethereum/assets/0x8F0921f30555624143d427b340b1156914882C10/logo.png differ diff --git a/blockchains/ethereum/assets/0x8F2C01B50A16482Efd29560Ecb2B4E6016CC3886/info.json b/blockchains/ethereum/assets/0x8F2C01B50A16482Efd29560Ecb2B4E6016CC3886/info.json new file mode 100644 index 00000000..5096aa1e --- /dev/null +++ b/blockchains/ethereum/assets/0x8F2C01B50A16482Efd29560Ecb2B4E6016CC3886/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ambazonia Coin", + "symbol": "AMBA", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8F2C01B50A16482Efd29560Ecb2B4E6016CC3886", + "status": "abandoned", + "id": "0x8F2C01B50A16482Efd29560Ecb2B4E6016CC3886" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8F2C01B50A16482Efd29560Ecb2B4E6016CC3886/logo.png b/blockchains/ethereum/assets/0x8F2C01B50A16482Efd29560Ecb2B4E6016CC3886/logo.png new file mode 100644 index 00000000..c6904fef Binary files /dev/null and b/blockchains/ethereum/assets/0x8F2C01B50A16482Efd29560Ecb2B4E6016CC3886/logo.png differ diff --git a/blockchains/ethereum/assets/0x8F2Fc2ab67d61d30eB3478A4F9396AB1ca90bA21/info.json b/blockchains/ethereum/assets/0x8F2Fc2ab67d61d30eB3478A4F9396AB1ca90bA21/info.json new file mode 100644 index 00000000..f022a059 --- /dev/null +++ b/blockchains/ethereum/assets/0x8F2Fc2ab67d61d30eB3478A4F9396AB1ca90bA21/info.json @@ -0,0 +1,11 @@ +{ + "name": "Global Healthcare Token", + "symbol": "XHQ", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8F2Fc2ab67d61d30eB3478A4F9396AB1ca90bA21", + "status": "abandoned", + "id": "0x8F2Fc2ab67d61d30eB3478A4F9396AB1ca90bA21" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8F2Fc2ab67d61d30eB3478A4F9396AB1ca90bA21/logo.png b/blockchains/ethereum/assets/0x8F2Fc2ab67d61d30eB3478A4F9396AB1ca90bA21/logo.png new file mode 100644 index 00000000..61007520 Binary files /dev/null and b/blockchains/ethereum/assets/0x8F2Fc2ab67d61d30eB3478A4F9396AB1ca90bA21/logo.png differ diff --git a/blockchains/ethereum/assets/0x8F3E41b378ae010c46d255F36bFC1D303b52dceb/info.json b/blockchains/ethereum/assets/0x8F3E41b378ae010c46d255F36bFC1D303b52dceb/info.json new file mode 100644 index 00000000..474da574 --- /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 00000000..37a5ada8 Binary files /dev/null and b/blockchains/ethereum/assets/0x8F3E41b378ae010c46d255F36bFC1D303b52dceb/logo.png differ diff --git a/blockchains/ethereum/assets/0x8F564dc862FfE7EC0436C3717EC7ED06150144E2/info.json b/blockchains/ethereum/assets/0x8F564dc862FfE7EC0436C3717EC7ED06150144E2/info.json new file mode 100644 index 00000000..9ee4fcee --- /dev/null +++ b/blockchains/ethereum/assets/0x8F564dc862FfE7EC0436C3717EC7ED06150144E2/info.json @@ -0,0 +1,11 @@ +{ + "name": "NiMA", + "symbol": "NIMA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8F564dc862FfE7EC0436C3717EC7ED06150144E2", + "status": "abandoned", + "id": "0x8F564dc862FfE7EC0436C3717EC7ED06150144E2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8F564dc862FfE7EC0436C3717EC7ED06150144E2/logo.png b/blockchains/ethereum/assets/0x8F564dc862FfE7EC0436C3717EC7ED06150144E2/logo.png new file mode 100644 index 00000000..22c9a46d Binary files /dev/null and b/blockchains/ethereum/assets/0x8F564dc862FfE7EC0436C3717EC7ED06150144E2/logo.png differ diff --git a/blockchains/ethereum/assets/0x8F5d19F2136dF211e8340Dc118221444c6c869Fb/info.json b/blockchains/ethereum/assets/0x8F5d19F2136dF211e8340Dc118221444c6c869Fb/info.json new file mode 100644 index 00000000..fe155a7d --- /dev/null +++ b/blockchains/ethereum/assets/0x8F5d19F2136dF211e8340Dc118221444c6c869Fb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Skrepit", + "symbol": "SKRT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8F5d19F2136dF211e8340Dc118221444c6c869Fb", + "status": "abandoned", + "id": "0x8F5d19F2136dF211e8340Dc118221444c6c869Fb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8F5d19F2136dF211e8340Dc118221444c6c869Fb/logo.png b/blockchains/ethereum/assets/0x8F5d19F2136dF211e8340Dc118221444c6c869Fb/logo.png new file mode 100644 index 00000000..46c98825 Binary files /dev/null and b/blockchains/ethereum/assets/0x8F5d19F2136dF211e8340Dc118221444c6c869Fb/logo.png differ diff --git a/blockchains/ethereum/assets/0x8F8e787989BC652eeA01A6C88a19f0f379BDF4FD/info.json b/blockchains/ethereum/assets/0x8F8e787989BC652eeA01A6C88a19f0f379BDF4FD/info.json new file mode 100644 index 00000000..d750bf99 --- /dev/null +++ b/blockchains/ethereum/assets/0x8F8e787989BC652eeA01A6C88a19f0f379BDF4FD/info.json @@ -0,0 +1,11 @@ +{ + "name": "HELEX", + "symbol": "HLX", + "type": "ERC20", + "decimals": 5, + "description": "HELEX (HLX) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://helex.world", + "explorer": "https://etherscan.io/token/0x8F8e787989BC652eeA01A6C88a19f0f379BDF4FD", + "status": "active", + "id": "0x8F8e787989BC652eeA01A6C88a19f0f379BDF4FD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8F8e787989BC652eeA01A6C88a19f0f379BDF4FD/logo.png b/blockchains/ethereum/assets/0x8F8e787989BC652eeA01A6C88a19f0f379BDF4FD/logo.png new file mode 100644 index 00000000..dddcadb9 Binary files /dev/null and b/blockchains/ethereum/assets/0x8F8e787989BC652eeA01A6C88a19f0f379BDF4FD/logo.png differ diff --git a/blockchains/ethereum/assets/0x8FAF0be1465B9bE70eE73d9123B2A1fDD9F2AAe4/info.json b/blockchains/ethereum/assets/0x8FAF0be1465B9bE70eE73d9123B2A1fDD9F2AAe4/info.json new file mode 100644 index 00000000..5faf7236 --- /dev/null +++ b/blockchains/ethereum/assets/0x8FAF0be1465B9bE70eE73d9123B2A1fDD9F2AAe4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Lite Cash", + "symbol": "XLC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8FAF0be1465B9bE70eE73d9123B2A1fDD9F2AAe4", + "status": "abandoned", + "id": "0x8FAF0be1465B9bE70eE73d9123B2A1fDD9F2AAe4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8FAF0be1465B9bE70eE73d9123B2A1fDD9F2AAe4/logo.png b/blockchains/ethereum/assets/0x8FAF0be1465B9bE70eE73d9123B2A1fDD9F2AAe4/logo.png new file mode 100644 index 00000000..2da27423 Binary files /dev/null and b/blockchains/ethereum/assets/0x8FAF0be1465B9bE70eE73d9123B2A1fDD9F2AAe4/logo.png differ diff --git a/blockchains/ethereum/assets/0x8FAc8031e079F409135766C7d5De29cf22EF897C/info.json b/blockchains/ethereum/assets/0x8FAc8031e079F409135766C7d5De29cf22EF897C/info.json new file mode 100644 index 00000000..53b23aa7 --- /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 00000000..4a74c8b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x8FAc8031e079F409135766C7d5De29cf22EF897C/logo.png differ diff --git a/blockchains/ethereum/assets/0x8FD709Fc68886Bb522b32b9E70203D6001A2d1b2/info.json b/blockchains/ethereum/assets/0x8FD709Fc68886Bb522b32b9E70203D6001A2d1b2/info.json new file mode 100644 index 00000000..175372c0 --- /dev/null +++ b/blockchains/ethereum/assets/0x8FD709Fc68886Bb522b32b9E70203D6001A2d1b2/info.json @@ -0,0 +1,11 @@ +{ + "name": "ComeAndPay", + "symbol": "CNA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8FD709Fc68886Bb522b32b9E70203D6001A2d1b2", + "status": "abandoned", + "id": "0x8FD709Fc68886Bb522b32b9E70203D6001A2d1b2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8FD709Fc68886Bb522b32b9E70203D6001A2d1b2/logo.png b/blockchains/ethereum/assets/0x8FD709Fc68886Bb522b32b9E70203D6001A2d1b2/logo.png new file mode 100644 index 00000000..f0a4e574 Binary files /dev/null and b/blockchains/ethereum/assets/0x8FD709Fc68886Bb522b32b9E70203D6001A2d1b2/logo.png differ diff --git a/blockchains/ethereum/assets/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/info.json b/blockchains/ethereum/assets/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/info.json new file mode 100644 index 00000000..c32bffbf --- /dev/null +++ b/blockchains/ethereum/assets/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/info.json @@ -0,0 +1,28 @@ +{ + "name": "DeFiChain", + "website": "https://defichain.com/", + "description": "DeFiChain (DFI) is a blockchain platform built with the mission of maximizing the full potential of DeFi within the Bitcoin (BTC) ecosystem.", + "explorer": "https://etherscan.io/token/0x8fc8f8269ebca376d046ce292dc7eac40c8d358a", + "type": "ERC20", + "symbol": "DFI", + "decimals": 8, + "status": "active", + "id": "0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/DeFiCh/ain" + }, + { + "name": "x", + "url": "https://x.com/defichain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defichain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/logo.png b/blockchains/ethereum/assets/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/logo.png new file mode 100644 index 00000000..ee8b25ed Binary files /dev/null and b/blockchains/ethereum/assets/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/logo.png differ diff --git a/blockchains/ethereum/assets/0x8a0ba07B4358dE33eFecff2f09f55c85CDa14670/info.json b/blockchains/ethereum/assets/0x8a0ba07B4358dE33eFecff2f09f55c85CDa14670/info.json new file mode 100644 index 00000000..ecf48fe9 --- /dev/null +++ b/blockchains/ethereum/assets/0x8a0ba07B4358dE33eFecff2f09f55c85CDa14670/info.json @@ -0,0 +1,11 @@ +{ + "name": "DriverToken", + "symbol": "Driver", + "type": "ERC20", + "decimals": 18, + "description": "Chromia (CHR) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://chromia.com", + "explorer": "https://etherscan.io/token/0x8a0ba07B4358dE33eFecff2f09f55c85CDa14670", + "status": "abandoned", + "id": "0x8a0ba07B4358dE33eFecff2f09f55c85CDa14670" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8a0ba07B4358dE33eFecff2f09f55c85CDa14670/logo.png b/blockchains/ethereum/assets/0x8a0ba07B4358dE33eFecff2f09f55c85CDa14670/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x8a0ba07B4358dE33eFecff2f09f55c85CDa14670/logo.png differ diff --git a/blockchains/ethereum/assets/0x8a187D5285d316bcBC9ADafc08b51d70a0d8e000/info.json b/blockchains/ethereum/assets/0x8a187D5285d316bcBC9ADafc08b51d70a0d8e000/info.json new file mode 100644 index 00000000..412d84db --- /dev/null +++ b/blockchains/ethereum/assets/0x8a187D5285d316bcBC9ADafc08b51d70a0d8e000/info.json @@ -0,0 +1,11 @@ +{ + "name": "Smart Investment Fund Token", + "symbol": "SIFT", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8a187D5285d316bcBC9ADafc08b51d70a0d8e000", + "status": "abandoned", + "id": "0x8a187D5285d316bcBC9ADafc08b51d70a0d8e000" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8a187D5285d316bcBC9ADafc08b51d70a0d8e000/logo.png b/blockchains/ethereum/assets/0x8a187D5285d316bcBC9ADafc08b51d70a0d8e000/logo.png new file mode 100644 index 00000000..4294d75e Binary files /dev/null and b/blockchains/ethereum/assets/0x8a187D5285d316bcBC9ADafc08b51d70a0d8e000/logo.png differ diff --git a/blockchains/ethereum/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json b/blockchains/ethereum/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json new file mode 100644 index 00000000..6488b9d1 --- /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 00000000..c7f511bb 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 00000000..16a6ab22 --- /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 00000000..599c7394 Binary files /dev/null and b/blockchains/ethereum/assets/0x8a23C6BaadB88512b30475C83Df6A63881e33e1E/logo.png differ diff --git a/blockchains/ethereum/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/info.json b/blockchains/ethereum/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/info.json new file mode 100644 index 00000000..07f2ef97 --- /dev/null +++ b/blockchains/ethereum/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/info.json @@ -0,0 +1,11 @@ +{ + "name": "Finxflo", + "website": "https://www.finxflo.com/", + "description": "Finxflo is the world's first hybrid liquidity aggregator designed to offer the best rates and prices from the world’s leading CeFi and DeFi protocols through one connection, one account and one KYC process.", + "explorer": "https://etherscan.io/token/0x8a40c222996f9F3431f63Bf80244C36822060f12", + "type": "ERC20", + "symbol": "FXF", + "decimals": 18, + "status": "active", + "id": "0x8a40c222996f9F3431f63Bf80244C36822060f12" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/logo.png b/blockchains/ethereum/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/logo.png new file mode 100644 index 00000000..8989b459 Binary files /dev/null and b/blockchains/ethereum/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/logo.png differ diff --git a/blockchains/ethereum/assets/0x8a48dfb33b8D6140C59f0a454c1D055d392Af66C/info.json b/blockchains/ethereum/assets/0x8a48dfb33b8D6140C59f0a454c1D055d392Af66C/info.json new file mode 100644 index 00000000..a5bb29dc --- /dev/null +++ b/blockchains/ethereum/assets/0x8a48dfb33b8D6140C59f0a454c1D055d392Af66C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vbitcoin", + "symbol": "VBTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8a48dfb33b8D6140C59f0a454c1D055d392Af66C", + "status": "abandoned", + "id": "0x8a48dfb33b8D6140C59f0a454c1D055d392Af66C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8a48dfb33b8D6140C59f0a454c1D055d392Af66C/logo.png b/blockchains/ethereum/assets/0x8a48dfb33b8D6140C59f0a454c1D055d392Af66C/logo.png new file mode 100644 index 00000000..26a93d3d Binary files /dev/null and b/blockchains/ethereum/assets/0x8a48dfb33b8D6140C59f0a454c1D055d392Af66C/logo.png differ diff --git a/blockchains/ethereum/assets/0x8a64c0Bd7146710Aa5C2773365Bb620FaF11BEd4/info.json b/blockchains/ethereum/assets/0x8a64c0Bd7146710Aa5C2773365Bb620FaF11BEd4/info.json new file mode 100644 index 00000000..f451a3e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x8a64c0Bd7146710Aa5C2773365Bb620FaF11BEd4/info.json @@ -0,0 +1,11 @@ +{ + "name": "PHTTOKENX", + "symbol": "PHTTX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8a64c0Bd7146710Aa5C2773365Bb620FaF11BEd4", + "status": "abandoned", + "id": "0x8a64c0Bd7146710Aa5C2773365Bb620FaF11BEd4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8a64c0Bd7146710Aa5C2773365Bb620FaF11BEd4/logo.png b/blockchains/ethereum/assets/0x8a64c0Bd7146710Aa5C2773365Bb620FaF11BEd4/logo.png new file mode 100755 index 00000000..18bd18b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x8a64c0Bd7146710Aa5C2773365Bb620FaF11BEd4/logo.png differ diff --git a/blockchains/ethereum/assets/0x8a65ab17324c155fAc3e46aD33e9553d9165a252/info.json b/blockchains/ethereum/assets/0x8a65ab17324c155fAc3e46aD33e9553d9165a252/info.json new file mode 100644 index 00000000..484133b1 --- /dev/null +++ b/blockchains/ethereum/assets/0x8a65ab17324c155fAc3e46aD33e9553d9165a252/info.json @@ -0,0 +1,11 @@ +{ + "name": "Silver Coin", + "symbol": "SCN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://silvercoin.asia/", + "explorer": "https://etherscan.io/token/0x8a65ab17324c155fAc3e46aD33e9553d9165a252", + "status": "abandoned", + "id": "0x8a65ab17324c155fAc3e46aD33e9553d9165a252" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8a65ab17324c155fAc3e46aD33e9553d9165a252/logo.png b/blockchains/ethereum/assets/0x8a65ab17324c155fAc3e46aD33e9553d9165a252/logo.png new file mode 100644 index 00000000..e8c73022 Binary files /dev/null and b/blockchains/ethereum/assets/0x8a65ab17324c155fAc3e46aD33e9553d9165a252/logo.png differ diff --git a/blockchains/ethereum/assets/0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018/info.json b/blockchains/ethereum/assets/0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018/info.json new file mode 100644 index 00000000..960b7154 --- /dev/null +++ b/blockchains/ethereum/assets/0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018/info.json @@ -0,0 +1,25 @@ +{ + "name": "Multiplier Token", + "website": "https://multiplier.finance", + "description": "Multiplier is a suite of DeFi protocols that leverages a native governance token - MXX - that can only be minted. The first protocol, Simplified Stable Bonds (SSB) enables holders to earn stable yield on their collateral. The second protocol, TakoSwap is a set of computer programs that run on the Ethereum blockchain and allows for decentralized token swaps. In the near future, more DeFi protocols will be built that focuses on creating value and utility for the community.", + "explorer": "https://etherscan.io/token/0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018", + "type": "ERC20", + "symbol": "MXX", + "decimals": 8, + "status": "active", + "id": "0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018", + "links": [ + { + "name": "github", + "url": "https://github.com/Multiplier-Finance" + }, + { + "name": "x", + "url": "https://x.com/MultiplierMXX" + }, + { + "name": "telegram", + "url": "https://t.me/themultiplierio" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018/logo.png b/blockchains/ethereum/assets/0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018/logo.png new file mode 100644 index 00000000..de6a0624 Binary files /dev/null and b/blockchains/ethereum/assets/0x8a6f3BF52A26a21531514E23016eEAe8Ba7e7018/logo.png differ diff --git a/blockchains/ethereum/assets/0x8a77e40936BbC27e80E9a3F526368C967869c86D/info.json b/blockchains/ethereum/assets/0x8a77e40936BbC27e80E9a3F526368C967869c86D/info.json new file mode 100644 index 00000000..8382b405 --- /dev/null +++ b/blockchains/ethereum/assets/0x8a77e40936BbC27e80E9a3F526368C967869c86D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Merculet", + "symbol": "MVP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://merculet.io/", + "explorer": "https://etherscan.io/token/0x8a77e40936BbC27e80E9a3F526368C967869c86D", + "status": "abandoned", + "id": "0x8a77e40936BbC27e80E9a3F526368C967869c86D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8a77e40936BbC27e80E9a3F526368C967869c86D/logo.png b/blockchains/ethereum/assets/0x8a77e40936BbC27e80E9a3F526368C967869c86D/logo.png new file mode 100644 index 00000000..b98050a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x8a77e40936BbC27e80E9a3F526368C967869c86D/logo.png differ diff --git a/blockchains/ethereum/assets/0x8a7b7B9B2f7d0c63F66171721339705A6188a7D5/info.json b/blockchains/ethereum/assets/0x8a7b7B9B2f7d0c63F66171721339705A6188a7D5/info.json new file mode 100644 index 00000000..1d12e732 --- /dev/null +++ b/blockchains/ethereum/assets/0x8a7b7B9B2f7d0c63F66171721339705A6188a7D5/info.json @@ -0,0 +1,11 @@ +{ + "name": "EtherDoge", + "symbol": "EDOGE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://etherdoge.org/", + "explorer": "https://etherscan.io/token/0x8a7b7B9B2f7d0c63F66171721339705A6188a7D5", + "status": "abandoned", + "id": "0x8a7b7B9B2f7d0c63F66171721339705A6188a7D5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8a7b7B9B2f7d0c63F66171721339705A6188a7D5/logo.png b/blockchains/ethereum/assets/0x8a7b7B9B2f7d0c63F66171721339705A6188a7D5/logo.png new file mode 100644 index 00000000..b12ae3d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x8a7b7B9B2f7d0c63F66171721339705A6188a7D5/logo.png differ diff --git a/blockchains/ethereum/assets/0x8a854288a5976036A725879164Ca3e91d30c6A1B/info.json b/blockchains/ethereum/assets/0x8a854288a5976036A725879164Ca3e91d30c6A1B/info.json new file mode 100644 index 00000000..e7950957 --- /dev/null +++ b/blockchains/ethereum/assets/0x8a854288a5976036A725879164Ca3e91d30c6A1B/info.json @@ -0,0 +1,11 @@ +{ + "name": "GET", + "symbol": "GET", + "type": "ERC20", + "decimals": 18, + "description": "The GET Protocol offers a blockchain-based smart ticketing solution that can be used by everybody who needs to issue tickets(NFTs) in an honest and transparent way.", + "website": "https://get-protocol.io", + "explorer": "https://etherscan.io/token/0x8a854288a5976036A725879164Ca3e91d30c6A1B", + "status": "active", + "id": "0x8a854288a5976036A725879164Ca3e91d30c6A1B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8a854288a5976036A725879164Ca3e91d30c6A1B/logo.png b/blockchains/ethereum/assets/0x8a854288a5976036A725879164Ca3e91d30c6A1B/logo.png new file mode 100644 index 00000000..6a5fbdf6 Binary files /dev/null and b/blockchains/ethereum/assets/0x8a854288a5976036A725879164Ca3e91d30c6A1B/logo.png differ diff --git a/blockchains/ethereum/assets/0x8a88f04e0c905054D2F33b26BB3A46D7091A039A/info.json b/blockchains/ethereum/assets/0x8a88f04e0c905054D2F33b26BB3A46D7091A039A/info.json new file mode 100644 index 00000000..e66433e1 --- /dev/null +++ b/blockchains/ethereum/assets/0x8a88f04e0c905054D2F33b26BB3A46D7091A039A/info.json @@ -0,0 +1,11 @@ +{ + "name": "IG", + "symbol": "IG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://igtoken.net/", + "explorer": "https://etherscan.io/token/0x8a88f04e0c905054D2F33b26BB3A46D7091A039A", + "status": "abandoned", + "id": "0x8a88f04e0c905054D2F33b26BB3A46D7091A039A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8a88f04e0c905054D2F33b26BB3A46D7091A039A/logo.png b/blockchains/ethereum/assets/0x8a88f04e0c905054D2F33b26BB3A46D7091A039A/logo.png new file mode 100644 index 00000000..aa1eb72f Binary files /dev/null and b/blockchains/ethereum/assets/0x8a88f04e0c905054D2F33b26BB3A46D7091A039A/logo.png differ diff --git a/blockchains/ethereum/assets/0x8a99E2dAE13e4df4A6aA2A9Db2d6A7901eD0107D/info.json b/blockchains/ethereum/assets/0x8a99E2dAE13e4df4A6aA2A9Db2d6A7901eD0107D/info.json new file mode 100644 index 00000000..e62e1cfc --- /dev/null +++ b/blockchains/ethereum/assets/0x8a99E2dAE13e4df4A6aA2A9Db2d6A7901eD0107D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vibrant Finance", + "symbol": "ViFi", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8a99E2dAE13e4df4A6aA2A9Db2d6A7901eD0107D", + "status": "abandoned", + "id": "0x8a99E2dAE13e4df4A6aA2A9Db2d6A7901eD0107D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8a99E2dAE13e4df4A6aA2A9Db2d6A7901eD0107D/logo.png b/blockchains/ethereum/assets/0x8a99E2dAE13e4df4A6aA2A9Db2d6A7901eD0107D/logo.png new file mode 100644 index 00000000..c0d03b67 Binary files /dev/null and b/blockchains/ethereum/assets/0x8a99E2dAE13e4df4A6aA2A9Db2d6A7901eD0107D/logo.png differ diff --git a/blockchains/ethereum/assets/0x8aA33A7899FCC8eA5fBe6A608A109c3893A1B8b2/info.json b/blockchains/ethereum/assets/0x8aA33A7899FCC8eA5fBe6A608A109c3893A1B8b2/info.json new file mode 100644 index 00000000..02c1193d --- /dev/null +++ b/blockchains/ethereum/assets/0x8aA33A7899FCC8eA5fBe6A608A109c3893A1B8b2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dao.Casino", + "symbol": "BET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://daobet.org/", + "explorer": "https://etherscan.io/token/0x8aA33A7899FCC8eA5fBe6A608A109c3893A1B8b2", + "status": "abandoned", + "id": "0x8aA33A7899FCC8eA5fBe6A608A109c3893A1B8b2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8aA33A7899FCC8eA5fBe6A608A109c3893A1B8b2/logo.png b/blockchains/ethereum/assets/0x8aA33A7899FCC8eA5fBe6A608A109c3893A1B8b2/logo.png new file mode 100755 index 00000000..c1152d0e Binary files /dev/null and b/blockchains/ethereum/assets/0x8aA33A7899FCC8eA5fBe6A608A109c3893A1B8b2/logo.png differ diff --git a/blockchains/ethereum/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json b/blockchains/ethereum/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json new file mode 100644 index 00000000..fe7cd6d2 --- /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 00000000..63973551 Binary files /dev/null and b/blockchains/ethereum/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/logo.png differ diff --git a/blockchains/ethereum/assets/0x8aD6739649f1fbF079882C14D27862d5c2206660/info.json b/blockchains/ethereum/assets/0x8aD6739649f1fbF079882C14D27862d5c2206660/info.json new file mode 100644 index 00000000..819e17b1 --- /dev/null +++ b/blockchains/ethereum/assets/0x8aD6739649f1fbF079882C14D27862d5c2206660/info.json @@ -0,0 +1,11 @@ +{ + "name": "IOU Loyalty Exchange Token", + "symbol": "IOUX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://iou.io/", + "explorer": "https://etherscan.io/token/0x8aD6739649f1fbF079882C14D27862d5c2206660", + "status": "abandoned", + "id": "0x8aD6739649f1fbF079882C14D27862d5c2206660" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8aD6739649f1fbF079882C14D27862d5c2206660/logo.png b/blockchains/ethereum/assets/0x8aD6739649f1fbF079882C14D27862d5c2206660/logo.png new file mode 100644 index 00000000..0ed7aba0 Binary files /dev/null and b/blockchains/ethereum/assets/0x8aD6739649f1fbF079882C14D27862d5c2206660/logo.png differ diff --git a/blockchains/ethereum/assets/0x8aF1ED18AF94CBC846991731702111AfbF904b45/info.json b/blockchains/ethereum/assets/0x8aF1ED18AF94CBC846991731702111AfbF904b45/info.json new file mode 100644 index 00000000..0d603f07 --- /dev/null +++ b/blockchains/ethereum/assets/0x8aF1ED18AF94CBC846991731702111AfbF904b45/info.json @@ -0,0 +1,11 @@ +{ + "name": "Injective Protocol", + "symbol": "IPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8aF1ED18AF94CBC846991731702111AfbF904b45", + "status": "abandoned", + "id": "0x8aF1ED18AF94CBC846991731702111AfbF904b45" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8aF1ED18AF94CBC846991731702111AfbF904b45/logo.png b/blockchains/ethereum/assets/0x8aF1ED18AF94CBC846991731702111AfbF904b45/logo.png new file mode 100644 index 00000000..c300874a Binary files /dev/null and b/blockchains/ethereum/assets/0x8aF1ED18AF94CBC846991731702111AfbF904b45/logo.png differ diff --git a/blockchains/ethereum/assets/0x8aF5648EC4ACa18484a2718c6f7672e51DC152BF/info.json b/blockchains/ethereum/assets/0x8aF5648EC4ACa18484a2718c6f7672e51DC152BF/info.json new file mode 100644 index 00000000..112a71cd --- /dev/null +++ b/blockchains/ethereum/assets/0x8aF5648EC4ACa18484a2718c6f7672e51DC152BF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Payeer KRW", + "symbol": "PKRW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8aF5648EC4ACa18484a2718c6f7672e51DC152BF", + "status": "abandoned", + "id": "0x8aF5648EC4ACa18484a2718c6f7672e51DC152BF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8aF5648EC4ACa18484a2718c6f7672e51DC152BF/logo.png b/blockchains/ethereum/assets/0x8aF5648EC4ACa18484a2718c6f7672e51DC152BF/logo.png new file mode 100644 index 00000000..ed2699d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x8aF5648EC4ACa18484a2718c6f7672e51DC152BF/logo.png differ diff --git a/blockchains/ethereum/assets/0x8aa688AB789d1848d131C65D98CEAA8875D97eF1/info.json b/blockchains/ethereum/assets/0x8aa688AB789d1848d131C65D98CEAA8875D97eF1/info.json new file mode 100644 index 00000000..2f247e97 --- /dev/null +++ b/blockchains/ethereum/assets/0x8aa688AB789d1848d131C65D98CEAA8875D97eF1/info.json @@ -0,0 +1,11 @@ +{ + "name": "MultiVAC", + "symbol": "MTV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.mtv.ac", + "explorer": "https://etherscan.io/token/0x8aa688AB789d1848d131C65D98CEAA8875D97eF1", + "status": "abandoned", + "id": "0x8aa688AB789d1848d131C65D98CEAA8875D97eF1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8aa688AB789d1848d131C65D98CEAA8875D97eF1/logo.png b/blockchains/ethereum/assets/0x8aa688AB789d1848d131C65D98CEAA8875D97eF1/logo.png new file mode 100644 index 00000000..7a3b3c81 Binary files /dev/null and b/blockchains/ethereum/assets/0x8aa688AB789d1848d131C65D98CEAA8875D97eF1/logo.png differ diff --git a/blockchains/ethereum/assets/0x8aaFB952f6F3BE554aca3aC2Ba0506e20F2bDCD6/info.json b/blockchains/ethereum/assets/0x8aaFB952f6F3BE554aca3aC2Ba0506e20F2bDCD6/info.json new file mode 100644 index 00000000..60d30b1b --- /dev/null +++ b/blockchains/ethereum/assets/0x8aaFB952f6F3BE554aca3aC2Ba0506e20F2bDCD6/info.json @@ -0,0 +1,11 @@ +{ + "name": "cgturbo", + "symbol": "BCG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8aaFB952f6F3BE554aca3aC2Ba0506e20F2bDCD6", + "status": "abandoned", + "id": "0x8aaFB952f6F3BE554aca3aC2Ba0506e20F2bDCD6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8aaFB952f6F3BE554aca3aC2Ba0506e20F2bDCD6/logo.png b/blockchains/ethereum/assets/0x8aaFB952f6F3BE554aca3aC2Ba0506e20F2bDCD6/logo.png new file mode 100644 index 00000000..aa07077f Binary files /dev/null and b/blockchains/ethereum/assets/0x8aaFB952f6F3BE554aca3aC2Ba0506e20F2bDCD6/logo.png differ diff --git a/blockchains/ethereum/assets/0x8ab0565dFE65BF9BE754D7b0Dadbb42c4eCaEC01/info.json b/blockchains/ethereum/assets/0x8ab0565dFE65BF9BE754D7b0Dadbb42c4eCaEC01/info.json new file mode 100644 index 00000000..28d55518 --- /dev/null +++ b/blockchains/ethereum/assets/0x8ab0565dFE65BF9BE754D7b0Dadbb42c4eCaEC01/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Luxury Coin", + "symbol": "TLB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8ab0565dFE65BF9BE754D7b0Dadbb42c4eCaEC01", + "status": "abandoned", + "id": "0x8ab0565dFE65BF9BE754D7b0Dadbb42c4eCaEC01" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8ab0565dFE65BF9BE754D7b0Dadbb42c4eCaEC01/logo.png b/blockchains/ethereum/assets/0x8ab0565dFE65BF9BE754D7b0Dadbb42c4eCaEC01/logo.png new file mode 100644 index 00000000..f10ea3aa Binary files /dev/null and b/blockchains/ethereum/assets/0x8ab0565dFE65BF9BE754D7b0Dadbb42c4eCaEC01/logo.png differ diff --git a/blockchains/ethereum/assets/0x8aeD3f09FFaA1e6246E3b4b5790F13E1976f6055/info.json b/blockchains/ethereum/assets/0x8aeD3f09FFaA1e6246E3b4b5790F13E1976f6055/info.json new file mode 100644 index 00000000..ed276997 --- /dev/null +++ b/blockchains/ethereum/assets/0x8aeD3f09FFaA1e6246E3b4b5790F13E1976f6055/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZONTO Token", + "symbol": "ZONTO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8aeD3f09FFaA1e6246E3b4b5790F13E1976f6055", + "status": "abandoned", + "id": "0x8aeD3f09FFaA1e6246E3b4b5790F13E1976f6055" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8aeD3f09FFaA1e6246E3b4b5790F13E1976f6055/logo.png b/blockchains/ethereum/assets/0x8aeD3f09FFaA1e6246E3b4b5790F13E1976f6055/logo.png new file mode 100644 index 00000000..d47796d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x8aeD3f09FFaA1e6246E3b4b5790F13E1976f6055/logo.png differ diff --git a/blockchains/ethereum/assets/0x8b0E42F366bA502d787BB134478aDfAE966C8798/info.json b/blockchains/ethereum/assets/0x8b0E42F366bA502d787BB134478aDfAE966C8798/info.json new file mode 100644 index 00000000..851805c4 --- /dev/null +++ b/blockchains/ethereum/assets/0x8b0E42F366bA502d787BB134478aDfAE966C8798/info.json @@ -0,0 +1,37 @@ +{ + "name": "LABS Group ", + "type": "ERC20", + "symbol": "LABS", + "decimals": 18, + "website": "https://labsgroup.io", + "description": "LABS is disrupting real estate investments in the largest asset class through the world's first end to end real estate investment ecosystem by fractionalizing real estate investments. Powered by the LABS ecosystem token through decentralized finance (DeFi) and governance.\\n\\nLABS tokens are utility tokens with the G.A.I.N.S. model, namely governance, access (to projects), Incentives, nomination (rights) and staking (for rewards).", + "explorer": "https://etherscan.io/token/0x8b0E42F366bA502d787BB134478aDfAE966C8798", + "status": "active", + "id": "0x8b0E42F366bA502d787BB134478aDfAE966C8798", + "links": [ + { + "name": "telegram", + "url": "https://t.me/labsgroupio" + }, + { + "name": "x", + "url": "https://x.com/labsgroupio" + }, + { + "name": "medium", + "url": "https://labsgroupio.medium.com" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCFE1WiuctumRk9CRNRjJoWA" + }, + { + "name": "whitepaper", + "url": "https://labsgroup.io/wp-content/LABS_Whitepaper_en.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/LabsGroupio/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8b0E42F366bA502d787BB134478aDfAE966C8798/logo.png b/blockchains/ethereum/assets/0x8b0E42F366bA502d787BB134478aDfAE966C8798/logo.png new file mode 100644 index 00000000..2dd362d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x8b0E42F366bA502d787BB134478aDfAE966C8798/logo.png differ diff --git a/blockchains/ethereum/assets/0x8b12739dF8760a67e79afbE0Cd8cF113c009F411/info.json b/blockchains/ethereum/assets/0x8b12739dF8760a67e79afbE0Cd8cF113c009F411/info.json new file mode 100644 index 00000000..383bcb4f --- /dev/null +++ b/blockchains/ethereum/assets/0x8b12739dF8760a67e79afbE0Cd8cF113c009F411/info.json @@ -0,0 +1,11 @@ +{ + "name": "Infinity", + "symbol": "WJL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8b12739dF8760a67e79afbE0Cd8cF113c009F411", + "status": "abandoned", + "id": "0x8b12739dF8760a67e79afbE0Cd8cF113c009F411" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8b12739dF8760a67e79afbE0Cd8cF113c009F411/logo.png b/blockchains/ethereum/assets/0x8b12739dF8760a67e79afbE0Cd8cF113c009F411/logo.png new file mode 100644 index 00000000..5a161f73 Binary files /dev/null and b/blockchains/ethereum/assets/0x8b12739dF8760a67e79afbE0Cd8cF113c009F411/logo.png differ diff --git a/blockchains/ethereum/assets/0x8b353021189375591723E7384262F45709A3C3dC/info.json b/blockchains/ethereum/assets/0x8b353021189375591723E7384262F45709A3C3dC/info.json new file mode 100644 index 00000000..6d8fdebb --- /dev/null +++ b/blockchains/ethereum/assets/0x8b353021189375591723E7384262F45709A3C3dC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tomocoin", + "type": "ERC20", + "symbol": "TOMO", + "decimals": 18, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0x8b353021189375591723e7384262f45709a3c3dc", + "status": "active", + "id": "0x8b353021189375591723E7384262F45709A3C3dC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8b353021189375591723E7384262F45709A3C3dC/logo.png b/blockchains/ethereum/assets/0x8b353021189375591723E7384262F45709A3C3dC/logo.png new file mode 100755 index 00000000..6028ff2e Binary files /dev/null and b/blockchains/ethereum/assets/0x8b353021189375591723E7384262F45709A3C3dC/logo.png differ diff --git a/blockchains/ethereum/assets/0x8b385Ca3592A5EFc34E0C9fE663de56897F1751F/info.json b/blockchains/ethereum/assets/0x8b385Ca3592A5EFc34E0C9fE663de56897F1751F/info.json new file mode 100644 index 00000000..a221a31b --- /dev/null +++ b/blockchains/ethereum/assets/0x8b385Ca3592A5EFc34E0C9fE663de56897F1751F/info.json @@ -0,0 +1,25 @@ +{ + "name": "INFibit", + "type": "ERC20", + "symbol": "IBIT", + "decimals": 18, + "website": "https://infibit.org/", + "description": "INFibit is a decentralized blockchain-powered platform that uses $IBIT as a governance layer blockchain for other platforms as a DAO", + "explorer": "https://etherscan.io/token/0x8b385ca3592a5efc34e0c9fe663de56897f1751f", + "status": "active", + "id": "0x8b385Ca3592A5EFc34E0C9fE663de56897F1751F", + "links": [ + { + "name": "x", + "url": "https://x.com/infibit" + }, + { + "name": "telegram", + "url": "https://t.me/infibit/1" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bens-finale/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8b385Ca3592A5EFc34E0C9fE663de56897F1751F/logo.png b/blockchains/ethereum/assets/0x8b385Ca3592A5EFc34E0C9fE663de56897F1751F/logo.png new file mode 100644 index 00000000..d1e3a04a Binary files /dev/null and b/blockchains/ethereum/assets/0x8b385Ca3592A5EFc34E0C9fE663de56897F1751F/logo.png differ diff --git a/blockchains/ethereum/assets/0x8b42663186E45EFE5352B8366EB94b8EeF5AFe2e/info.json b/blockchains/ethereum/assets/0x8b42663186E45EFE5352B8366EB94b8EeF5AFe2e/info.json new file mode 100644 index 00000000..32c1aa12 --- /dev/null +++ b/blockchains/ethereum/assets/0x8b42663186E45EFE5352B8366EB94b8EeF5AFe2e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Distribute Token", + "symbol": "DIST", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8b42663186E45EFE5352B8366EB94b8EeF5AFe2e", + "status": "abandoned", + "id": "0x8b42663186E45EFE5352B8366EB94b8EeF5AFe2e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8b42663186E45EFE5352B8366EB94b8EeF5AFe2e/logo.png b/blockchains/ethereum/assets/0x8b42663186E45EFE5352B8366EB94b8EeF5AFe2e/logo.png new file mode 100644 index 00000000..bdc6c983 Binary files /dev/null and b/blockchains/ethereum/assets/0x8b42663186E45EFE5352B8366EB94b8EeF5AFe2e/logo.png differ diff --git a/blockchains/ethereum/assets/0x8b69f58BE5D02Ddc832384Ef930bfAD2F9223719/info.json b/blockchains/ethereum/assets/0x8b69f58BE5D02Ddc832384Ef930bfAD2F9223719/info.json new file mode 100644 index 00000000..5114c216 --- /dev/null +++ b/blockchains/ethereum/assets/0x8b69f58BE5D02Ddc832384Ef930bfAD2F9223719/info.json @@ -0,0 +1,11 @@ +{ + "name": "N2Chain", + "symbol": "N2C", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8b69f58BE5D02Ddc832384Ef930bfAD2F9223719", + "status": "abandoned", + "id": "0x8b69f58BE5D02Ddc832384Ef930bfAD2F9223719" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8b69f58BE5D02Ddc832384Ef930bfAD2F9223719/logo.png b/blockchains/ethereum/assets/0x8b69f58BE5D02Ddc832384Ef930bfAD2F9223719/logo.png new file mode 100644 index 00000000..a3fb846e Binary files /dev/null and b/blockchains/ethereum/assets/0x8b69f58BE5D02Ddc832384Ef930bfAD2F9223719/logo.png differ diff --git a/blockchains/ethereum/assets/0x8b6CdA5CC518c904e8844f445E1A7C7d2DB0fF16/info.json b/blockchains/ethereum/assets/0x8b6CdA5CC518c904e8844f445E1A7C7d2DB0fF16/info.json new file mode 100644 index 00000000..088ca1fe --- /dev/null +++ b/blockchains/ethereum/assets/0x8b6CdA5CC518c904e8844f445E1A7C7d2DB0fF16/info.json @@ -0,0 +1,11 @@ +{ + "name": "SF Capital", + "symbol": "SFCP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.sfcapital.io/", + "explorer": "https://etherscan.io/token/0x8b6CdA5CC518c904e8844f445E1A7C7d2DB0fF16", + "status": "abandoned", + "id": "0x8b6CdA5CC518c904e8844f445E1A7C7d2DB0fF16" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8b6CdA5CC518c904e8844f445E1A7C7d2DB0fF16/logo.png b/blockchains/ethereum/assets/0x8b6CdA5CC518c904e8844f445E1A7C7d2DB0fF16/logo.png new file mode 100644 index 00000000..e932132f Binary files /dev/null and b/blockchains/ethereum/assets/0x8b6CdA5CC518c904e8844f445E1A7C7d2DB0fF16/logo.png differ diff --git a/blockchains/ethereum/assets/0x8b6c3b7C01D9dB4393f9aa734750F36df1543E9A/info.json b/blockchains/ethereum/assets/0x8b6c3b7C01D9dB4393f9aa734750F36df1543E9A/info.json new file mode 100644 index 00000000..cb6421d7 --- /dev/null +++ b/blockchains/ethereum/assets/0x8b6c3b7C01D9dB4393f9aa734750F36df1543E9A/info.json @@ -0,0 +1,17 @@ +{ + "name": "VI", + "website": "https://vid.camera/", + "description": "VI is the native token used in the Vid app. Vid is a social media platform that pays you for the value you provide to the platform.", + "explorer": "https://etherscan.io/token/0x8b6c3b7C01D9dB4393f9aa734750F36df1543E9A", + "type": "ERC20", + "symbol": "VI", + "decimals": 18, + "status": "active", + "id": "0x8b6c3b7C01D9dB4393f9aa734750F36df1543E9A", + "links": [ + { + "name": "whitepaper", + "url": "https://vid.camera/files/Vi-UBI.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8b6c3b7C01D9dB4393f9aa734750F36df1543E9A/logo.png b/blockchains/ethereum/assets/0x8b6c3b7C01D9dB4393f9aa734750F36df1543E9A/logo.png new file mode 100644 index 00000000..f33f9df4 Binary files /dev/null and b/blockchains/ethereum/assets/0x8b6c3b7C01D9dB4393f9aa734750F36df1543E9A/logo.png differ diff --git a/blockchains/ethereum/assets/0x8b79656FC38a04044E495e22fAD747126ca305C4/info.json b/blockchains/ethereum/assets/0x8b79656FC38a04044E495e22fAD747126ca305C4/info.json new file mode 100644 index 00000000..98957c2a --- /dev/null +++ b/blockchains/ethereum/assets/0x8b79656FC38a04044E495e22fAD747126ca305C4/info.json @@ -0,0 +1,11 @@ +{ + "name": "AgaveCoin", + "symbol": "AGVC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://agavecoin.io/", + "explorer": "https://etherscan.io/token/0x8b79656FC38a04044E495e22fAD747126ca305C4", + "status": "abandoned", + "id": "0x8b79656FC38a04044E495e22fAD747126ca305C4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8b79656FC38a04044E495e22fAD747126ca305C4/logo.png b/blockchains/ethereum/assets/0x8b79656FC38a04044E495e22fAD747126ca305C4/logo.png new file mode 100755 index 00000000..89fb6c1c Binary files /dev/null and b/blockchains/ethereum/assets/0x8b79656FC38a04044E495e22fAD747126ca305C4/logo.png differ diff --git a/blockchains/ethereum/assets/0x8bC2922d8544fE6e58Bb57a2D2566f0bc17FFfDD/info.json b/blockchains/ethereum/assets/0x8bC2922d8544fE6e58Bb57a2D2566f0bc17FFfDD/info.json new file mode 100644 index 00000000..c8f23fde --- /dev/null +++ b/blockchains/ethereum/assets/0x8bC2922d8544fE6e58Bb57a2D2566f0bc17FFfDD/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C548645", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8bC2922d8544fE6e58Bb57a2D2566f0bc17FFfDD", + "status": "abandoned", + "id": "0x8bC2922d8544fE6e58Bb57a2D2566f0bc17FFfDD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8bC2922d8544fE6e58Bb57a2D2566f0bc17FFfDD/logo.png b/blockchains/ethereum/assets/0x8bC2922d8544fE6e58Bb57a2D2566f0bc17FFfDD/logo.png new file mode 100644 index 00000000..02906baf Binary files /dev/null and b/blockchains/ethereum/assets/0x8bC2922d8544fE6e58Bb57a2D2566f0bc17FFfDD/logo.png differ diff --git a/blockchains/ethereum/assets/0x8bCF9012f4b0c1C3D359eDb7133C294f82f80790/info.json b/blockchains/ethereum/assets/0x8bCF9012f4b0c1C3D359eDb7133C294f82f80790/info.json new file mode 100644 index 00000000..8608620a --- /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 00000000..1ff72bcf Binary files /dev/null and b/blockchains/ethereum/assets/0x8bCF9012f4b0c1C3D359eDb7133C294f82f80790/logo.png differ diff --git a/blockchains/ethereum/assets/0x8bc41a9ABb969a9F8F4fdb33e566B09938d1D658/info.json b/blockchains/ethereum/assets/0x8bc41a9ABb969a9F8F4fdb33e566B09938d1D658/info.json new file mode 100644 index 00000000..7b26a4b0 --- /dev/null +++ b/blockchains/ethereum/assets/0x8bc41a9ABb969a9F8F4fdb33e566B09938d1D658/info.json @@ -0,0 +1,11 @@ +{ + "name": "ArcadiumToken", + "symbol": "ARCD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8bc41a9ABb969a9F8F4fdb33e566B09938d1D658", + "status": "abandoned", + "id": "0x8bc41a9ABb969a9F8F4fdb33e566B09938d1D658" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8bc41a9ABb969a9F8F4fdb33e566B09938d1D658/logo.png b/blockchains/ethereum/assets/0x8bc41a9ABb969a9F8F4fdb33e566B09938d1D658/logo.png new file mode 100644 index 00000000..0e268309 Binary files /dev/null and b/blockchains/ethereum/assets/0x8bc41a9ABb969a9F8F4fdb33e566B09938d1D658/logo.png differ diff --git a/blockchains/ethereum/assets/0x8c15Ef5b4B21951d50E53E4fbdA8298FFAD25057/info.json b/blockchains/ethereum/assets/0x8c15Ef5b4B21951d50E53E4fbdA8298FFAD25057/info.json new file mode 100644 index 00000000..9bc865c7 --- /dev/null +++ b/blockchains/ethereum/assets/0x8c15Ef5b4B21951d50E53E4fbdA8298FFAD25057/info.json @@ -0,0 +1,11 @@ +{ + "name": "Function X", + "symbol": "FX", + "type": "ERC20", + "decimals": 18, + "description": "A scalable, open, decentralized Function X Blockchain is now in the works. We are in the stage of testnet 3.0 which is a continuous fixing and testing process.", + "website": "https://functionx.io/#/", + "explorer": "https://etherscan.io/token/0x8c15Ef5b4B21951d50E53E4fbdA8298FFAD25057", + "status": "active", + "id": "0x8c15Ef5b4B21951d50E53E4fbdA8298FFAD25057" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8c15Ef5b4B21951d50E53E4fbdA8298FFAD25057/logo.png b/blockchains/ethereum/assets/0x8c15Ef5b4B21951d50E53E4fbdA8298FFAD25057/logo.png new file mode 100644 index 00000000..767cd6c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x8c15Ef5b4B21951d50E53E4fbdA8298FFAD25057/logo.png differ diff --git a/blockchains/ethereum/assets/0x8c20D8D54771DF6Ed6728CA7413aE95e2E5F14Ee/info.json b/blockchains/ethereum/assets/0x8c20D8D54771DF6Ed6728CA7413aE95e2E5F14Ee/info.json new file mode 100644 index 00000000..15e05506 --- /dev/null +++ b/blockchains/ethereum/assets/0x8c20D8D54771DF6Ed6728CA7413aE95e2E5F14Ee/info.json @@ -0,0 +1,11 @@ +{ + "name": "Garrys", + "symbol": "GAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8c20D8D54771DF6Ed6728CA7413aE95e2E5F14Ee", + "status": "abandoned", + "id": "0x8c20D8D54771DF6Ed6728CA7413aE95e2E5F14Ee" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8c20D8D54771DF6Ed6728CA7413aE95e2E5F14Ee/logo.png b/blockchains/ethereum/assets/0x8c20D8D54771DF6Ed6728CA7413aE95e2E5F14Ee/logo.png new file mode 100755 index 00000000..3d2d13ee Binary files /dev/null and b/blockchains/ethereum/assets/0x8c20D8D54771DF6Ed6728CA7413aE95e2E5F14Ee/logo.png differ diff --git a/blockchains/ethereum/assets/0x8c3eE4F778E282B59D42d693A97b80b1ed80f4Ee/info.json b/blockchains/ethereum/assets/0x8c3eE4F778E282B59D42d693A97b80b1ed80f4Ee/info.json new file mode 100644 index 00000000..c4b6c9bd --- /dev/null +++ b/blockchains/ethereum/assets/0x8c3eE4F778E282B59D42d693A97b80b1ed80f4Ee/info.json @@ -0,0 +1,17 @@ +{ + "name": "SatoPay", + "website": "https://satopay.network/", + "description": "Crypto Payment Gateway", + "explorer": "https://etherscan.io/token/0x8c3eE4F778E282B59D42d693A97b80b1ed80f4Ee", + "type": "ERC20", + "symbol": "STOP", + "decimals": 18, + "status": "active", + "id": "0x8c3eE4F778E282B59D42d693A97b80b1ed80f4Ee", + "links": [ + { + "name": "whitepaper", + "url": "https://satopay.network/whitepapper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8c3eE4F778E282B59D42d693A97b80b1ed80f4Ee/logo.png b/blockchains/ethereum/assets/0x8c3eE4F778E282B59D42d693A97b80b1ed80f4Ee/logo.png new file mode 100644 index 00000000..6c2df96d Binary files /dev/null and b/blockchains/ethereum/assets/0x8c3eE4F778E282B59D42d693A97b80b1ed80f4Ee/logo.png differ diff --git a/blockchains/ethereum/assets/0x8c4E7f814d40f8929F9112C5D09016F923d34472/info.json b/blockchains/ethereum/assets/0x8c4E7f814d40f8929F9112C5D09016F923d34472/info.json new file mode 100644 index 00000000..30afb311 --- /dev/null +++ b/blockchains/ethereum/assets/0x8c4E7f814d40f8929F9112C5D09016F923d34472/info.json @@ -0,0 +1,11 @@ +{ + "name": "XCELTOKEN PLUS", + "symbol": "XLAB", + "type": "ERC20", + "decimals": 18, + "description": "XCELTOKEN PLUS (XLAB) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.xceltrip.com", + "explorer": "https://etherscan.io/token/0x8c4E7f814d40f8929F9112C5D09016F923d34472", + "status": "active", + "id": "0x8c4E7f814d40f8929F9112C5D09016F923d34472" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8c4E7f814d40f8929F9112C5D09016F923d34472/logo.png b/blockchains/ethereum/assets/0x8c4E7f814d40f8929F9112C5D09016F923d34472/logo.png new file mode 100644 index 00000000..8d01b3d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x8c4E7f814d40f8929F9112C5D09016F923d34472/logo.png differ diff --git a/blockchains/ethereum/assets/0x8c69f7A4C9B38F1b48005D216c398Efb2F1Ce3e4/info.json b/blockchains/ethereum/assets/0x8c69f7A4C9B38F1b48005D216c398Efb2F1Ce3e4/info.json new file mode 100644 index 00000000..3d21fb39 --- /dev/null +++ b/blockchains/ethereum/assets/0x8c69f7A4C9B38F1b48005D216c398Efb2F1Ce3e4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave aUniMKRETH", + "website": "https://aave.com", + "description": "Aave UniMKRETH is an interest bearing token pegged 1:1 to the underlying MKR and ETH deposited in the Uniswap Market of Aave Protocol.", + "explorer": "https://etherscan.io/token/0x8c69f7A4C9B38F1b48005D216c398Efb2F1Ce3e4", + "type": "ERC20", + "symbol": "aUniMKRETH", + "decimals": 18, + "status": "active", + "id": "0x8c69f7A4C9B38F1b48005D216c398Efb2F1Ce3e4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8c69f7A4C9B38F1b48005D216c398Efb2F1Ce3e4/logo.png b/blockchains/ethereum/assets/0x8c69f7A4C9B38F1b48005D216c398Efb2F1Ce3e4/logo.png new file mode 100644 index 00000000..daf7e7b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x8c69f7A4C9B38F1b48005D216c398Efb2F1Ce3e4/logo.png differ diff --git a/blockchains/ethereum/assets/0x8c9E4CF756b9d01D791b95bc2D0913EF2Bf03784/info.json b/blockchains/ethereum/assets/0x8c9E4CF756b9d01D791b95bc2D0913EF2Bf03784/info.json new file mode 100644 index 00000000..06455f4e --- /dev/null +++ b/blockchains/ethereum/assets/0x8c9E4CF756b9d01D791b95bc2D0913EF2Bf03784/info.json @@ -0,0 +1,11 @@ +{ + "name": "AeroToken", + "symbol": "AET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.aerotoken.org", + "explorer": "https://etherscan.io/token/0x8c9E4CF756b9d01D791b95bc2D0913EF2Bf03784", + "status": "abandoned", + "id": "0x8c9E4CF756b9d01D791b95bc2D0913EF2Bf03784" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8c9E4CF756b9d01D791b95bc2D0913EF2Bf03784/logo.png b/blockchains/ethereum/assets/0x8c9E4CF756b9d01D791b95bc2D0913EF2Bf03784/logo.png new file mode 100644 index 00000000..8ceb39f2 Binary files /dev/null and b/blockchains/ethereum/assets/0x8c9E4CF756b9d01D791b95bc2D0913EF2Bf03784/logo.png differ diff --git a/blockchains/ethereum/assets/0x8c9d8f5CC3427F460e20F63b36992f74AA19e27d/info.json b/blockchains/ethereum/assets/0x8c9d8f5CC3427F460e20F63b36992f74AA19e27d/info.json new file mode 100644 index 00000000..61dca269 --- /dev/null +++ b/blockchains/ethereum/assets/0x8c9d8f5CC3427F460e20F63b36992f74AA19e27d/info.json @@ -0,0 +1,11 @@ +{ + "name": "DeFiat Points", + "website": "https://defiat.net/", + "description": "DeFiat Points is the secondary, inflationary asset of the DeFiat ecosystem, granted for network participation.", + "explorer": "https://etherscan.io/token/0x8c9d8f5CC3427F460e20F63b36992f74AA19e27d", + "type": "ERC20", + "symbol": "DFTP", + "decimals": 18, + "status": "active", + "id": "0x8c9d8f5CC3427F460e20F63b36992f74AA19e27d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8c9d8f5CC3427F460e20F63b36992f74AA19e27d/logo.png b/blockchains/ethereum/assets/0x8c9d8f5CC3427F460e20F63b36992f74AA19e27d/logo.png new file mode 100644 index 00000000..8206ee6c Binary files /dev/null and b/blockchains/ethereum/assets/0x8c9d8f5CC3427F460e20F63b36992f74AA19e27d/logo.png differ diff --git a/blockchains/ethereum/assets/0x8cACd0Fa3b9A4B0A8734f0F1c1da162690a50Ab1/info.json b/blockchains/ethereum/assets/0x8cACd0Fa3b9A4B0A8734f0F1c1da162690a50Ab1/info.json new file mode 100644 index 00000000..acd0612c --- /dev/null +++ b/blockchains/ethereum/assets/0x8cACd0Fa3b9A4B0A8734f0F1c1da162690a50Ab1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Barthor", + "symbol": "BRC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8cACd0Fa3b9A4B0A8734f0F1c1da162690a50Ab1", + "status": "abandoned", + "id": "0x8cACd0Fa3b9A4B0A8734f0F1c1da162690a50Ab1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8cACd0Fa3b9A4B0A8734f0F1c1da162690a50Ab1/logo.png b/blockchains/ethereum/assets/0x8cACd0Fa3b9A4B0A8734f0F1c1da162690a50Ab1/logo.png new file mode 100644 index 00000000..a296d465 Binary files /dev/null and b/blockchains/ethereum/assets/0x8cACd0Fa3b9A4B0A8734f0F1c1da162690a50Ab1/logo.png differ diff --git a/blockchains/ethereum/assets/0x8cBD4D5FBeE7C99Cb2704e7c0031733A72834ff8/info.json b/blockchains/ethereum/assets/0x8cBD4D5FBeE7C99Cb2704e7c0031733A72834ff8/info.json new file mode 100644 index 00000000..8ac309ed --- /dev/null +++ b/blockchains/ethereum/assets/0x8cBD4D5FBeE7C99Cb2704e7c0031733A72834ff8/info.json @@ -0,0 +1,11 @@ +{ + "name": "UTOPIA CITIZEN", + "symbol": "UTOC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8cBD4D5FBeE7C99Cb2704e7c0031733A72834ff8", + "status": "abandoned", + "id": "0x8cBD4D5FBeE7C99Cb2704e7c0031733A72834ff8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8cBD4D5FBeE7C99Cb2704e7c0031733A72834ff8/logo.png b/blockchains/ethereum/assets/0x8cBD4D5FBeE7C99Cb2704e7c0031733A72834ff8/logo.png new file mode 100644 index 00000000..a3570a70 Binary files /dev/null and b/blockchains/ethereum/assets/0x8cBD4D5FBeE7C99Cb2704e7c0031733A72834ff8/logo.png differ diff --git a/blockchains/ethereum/assets/0x8cEFd49b703dE9C0486d9bf6Cb559F0895268Ee8/info.json b/blockchains/ethereum/assets/0x8cEFd49b703dE9C0486d9bf6Cb559F0895268Ee8/info.json new file mode 100644 index 00000000..801221b0 --- /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 00000000..8c3d69ff Binary files /dev/null and b/blockchains/ethereum/assets/0x8cEFd49b703dE9C0486d9bf6Cb559F0895268Ee8/logo.png differ diff --git a/blockchains/ethereum/assets/0x8cb1d155a5a1d5d667611b7710920fD9D1CD727F/info.json b/blockchains/ethereum/assets/0x8cb1d155a5a1d5d667611b7710920fD9D1CD727F/info.json new file mode 100644 index 00000000..acbdf3dd --- /dev/null +++ b/blockchains/ethereum/assets/0x8cb1d155a5a1d5d667611b7710920fD9D1CD727F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aircoins", + "symbol": "AIRx", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://aircoins.io/", + "explorer": "https://etherscan.io/token/0x8cb1d155a5a1d5d667611b7710920fD9D1CD727F", + "status": "abandoned", + "id": "0x8cb1d155a5a1d5d667611b7710920fD9D1CD727F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8cb1d155a5a1d5d667611b7710920fD9D1CD727F/logo.png b/blockchains/ethereum/assets/0x8cb1d155a5a1d5d667611b7710920fD9D1CD727F/logo.png new file mode 100644 index 00000000..8c485255 Binary files /dev/null and b/blockchains/ethereum/assets/0x8cb1d155a5a1d5d667611b7710920fD9D1CD727F/logo.png differ diff --git a/blockchains/ethereum/assets/0x8d05432C2786e3F93f1a9A62b9572DBf54f3ea06/info.json b/blockchains/ethereum/assets/0x8d05432C2786e3F93f1a9A62b9572DBf54f3ea06/info.json new file mode 100644 index 00000000..2c96f5e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x8d05432C2786e3F93f1a9A62b9572DBf54f3ea06/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Russell 1000 Growth ETF (Ondo Tokenized)", + "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 00000000..8adf5788 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 00000000..d90e2845 --- /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 US 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 00000000..444ccb65 Binary files /dev/null and b/blockchains/ethereum/assets/0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d/logo.png differ diff --git a/blockchains/ethereum/assets/0x8d284499fC4cD9B5415FeaFe1DFf26586be717B9/info.json b/blockchains/ethereum/assets/0x8d284499fC4cD9B5415FeaFe1DFf26586be717B9/info.json new file mode 100644 index 00000000..e454e280 --- /dev/null +++ b/blockchains/ethereum/assets/0x8d284499fC4cD9B5415FeaFe1DFf26586be717B9/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRP Token published by Soompay Korea", + "symbol": "CRP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8d284499fC4cD9B5415FeaFe1DFf26586be717B9", + "status": "abandoned", + "id": "0x8d284499fC4cD9B5415FeaFe1DFf26586be717B9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8d284499fC4cD9B5415FeaFe1DFf26586be717B9/logo.png b/blockchains/ethereum/assets/0x8d284499fC4cD9B5415FeaFe1DFf26586be717B9/logo.png new file mode 100644 index 00000000..99fcdf78 Binary files /dev/null and b/blockchains/ethereum/assets/0x8d284499fC4cD9B5415FeaFe1DFf26586be717B9/logo.png differ diff --git a/blockchains/ethereum/assets/0x8d5A69dc82a47594881256F2eef81770274fA30f/info.json b/blockchains/ethereum/assets/0x8d5A69dc82a47594881256F2eef81770274fA30f/info.json new file mode 100644 index 00000000..df4de9ba --- /dev/null +++ b/blockchains/ethereum/assets/0x8d5A69dc82a47594881256F2eef81770274fA30f/info.json @@ -0,0 +1,11 @@ +{ + "name": "NATCOIN", + "symbol": "NTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8d5A69dc82a47594881256F2eef81770274fA30f", + "status": "abandoned", + "id": "0x8d5A69dc82a47594881256F2eef81770274fA30f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8d5A69dc82a47594881256F2eef81770274fA30f/logo.png b/blockchains/ethereum/assets/0x8d5A69dc82a47594881256F2eef81770274fA30f/logo.png new file mode 100644 index 00000000..3e76ee99 Binary files /dev/null and b/blockchains/ethereum/assets/0x8d5A69dc82a47594881256F2eef81770274fA30f/logo.png differ diff --git a/blockchains/ethereum/assets/0x8d80de8A78198396329dfA769aD54d24bF90E7aa/info.json b/blockchains/ethereum/assets/0x8d80de8A78198396329dfA769aD54d24bF90E7aa/info.json new file mode 100644 index 00000000..4f6ad76a --- /dev/null +++ b/blockchains/ethereum/assets/0x8d80de8A78198396329dfA769aD54d24bF90E7aa/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nami ICO", + "symbol": "NAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://nami.trade/", + "explorer": "https://etherscan.io/token/0x8d80de8A78198396329dfA769aD54d24bF90E7aa", + "status": "abandoned", + "id": "0x8d80de8A78198396329dfA769aD54d24bF90E7aa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8d80de8A78198396329dfA769aD54d24bF90E7aa/logo.png b/blockchains/ethereum/assets/0x8d80de8A78198396329dfA769aD54d24bF90E7aa/logo.png new file mode 100755 index 00000000..0ab51d9e Binary files /dev/null and b/blockchains/ethereum/assets/0x8d80de8A78198396329dfA769aD54d24bF90E7aa/logo.png differ diff --git a/blockchains/ethereum/assets/0x8d94296e7E171A98b199eca7F511311DDE6A8DB6/info.json b/blockchains/ethereum/assets/0x8d94296e7E171A98b199eca7F511311DDE6A8DB6/info.json new file mode 100644 index 00000000..b57cab16 --- /dev/null +++ b/blockchains/ethereum/assets/0x8d94296e7E171A98b199eca7F511311DDE6A8DB6/info.json @@ -0,0 +1,11 @@ +{ + "name": "SquareX", + "symbol": "SQX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8d94296e7E171A98b199eca7F511311DDE6A8DB6", + "status": "abandoned", + "id": "0x8d94296e7E171A98b199eca7F511311DDE6A8DB6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8d94296e7E171A98b199eca7F511311DDE6A8DB6/logo.png b/blockchains/ethereum/assets/0x8d94296e7E171A98b199eca7F511311DDE6A8DB6/logo.png new file mode 100644 index 00000000..fadc2843 Binary files /dev/null and b/blockchains/ethereum/assets/0x8d94296e7E171A98b199eca7F511311DDE6A8DB6/logo.png differ diff --git a/blockchains/ethereum/assets/0x8d9626315e8025B81c3BDb926Db4C51DDE237f52/info.json b/blockchains/ethereum/assets/0x8d9626315e8025B81c3BDb926Db4C51DDE237f52/info.json new file mode 100644 index 00000000..b25de49c --- /dev/null +++ b/blockchains/ethereum/assets/0x8d9626315e8025B81c3BDb926Db4C51DDE237f52/info.json @@ -0,0 +1,11 @@ +{ + "name": "PLAAS", + "symbol": "PLS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8d9626315e8025B81c3BDb926Db4C51DDE237f52", + "status": "abandoned", + "id": "0x8d9626315e8025B81c3BDb926Db4C51DDE237f52" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8d9626315e8025B81c3BDb926Db4C51DDE237f52/logo.png b/blockchains/ethereum/assets/0x8d9626315e8025B81c3BDb926Db4C51DDE237f52/logo.png new file mode 100755 index 00000000..f731b795 Binary files /dev/null and b/blockchains/ethereum/assets/0x8d9626315e8025B81c3BDb926Db4C51DDE237f52/logo.png differ diff --git a/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/info.json b/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/info.json new file mode 100644 index 00000000..c887af52 --- /dev/null +++ b/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/info.json @@ -0,0 +1,28 @@ +{ + "name": "Bazaars", + "type": "ERC20", + "symbol": "BZR", + "decimals": 18, + "website": "https://bazaars.io", + "description": "Adding BZR Token Logo to Trust Wallet Assets Repo", + "explorer": "https://etherscan.io/token/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F", + "status": "active", + "id": "0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F", + "links": [ + { + "name": "x", + "url": "https://x.com/Bazaars_project" + }, + { + "name": "github", + "url": "https://github.com/Bazaars-project" + }, + { + "name": "telegram", + "url": "https://t.me/+47OlE7imAd8yNjQ0" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/logo.png b/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/logo.png new file mode 100644 index 00000000..55d19d6f Binary files /dev/null and b/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/logo.png differ diff --git a/blockchains/ethereum/assets/0x8d9AB766cC475AA16AEF6529Fe5D4cd2c7ccFc98/info.json b/blockchains/ethereum/assets/0x8d9AB766cC475AA16AEF6529Fe5D4cd2c7ccFc98/info.json new file mode 100644 index 00000000..194b938d --- /dev/null +++ b/blockchains/ethereum/assets/0x8d9AB766cC475AA16AEF6529Fe5D4cd2c7ccFc98/info.json @@ -0,0 +1,11 @@ +{ + "name": "WAM", + "symbol": "WAM", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8d9AB766cC475AA16AEF6529Fe5D4cd2c7ccFc98", + "status": "abandoned", + "id": "0x8d9AB766cC475AA16AEF6529Fe5D4cd2c7ccFc98" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8d9AB766cC475AA16AEF6529Fe5D4cd2c7ccFc98/logo.png b/blockchains/ethereum/assets/0x8d9AB766cC475AA16AEF6529Fe5D4cd2c7ccFc98/logo.png new file mode 100644 index 00000000..b86aa7db Binary files /dev/null and b/blockchains/ethereum/assets/0x8d9AB766cC475AA16AEF6529Fe5D4cd2c7ccFc98/logo.png differ diff --git a/blockchains/ethereum/assets/0x8dA18119eF2A42b2eb3A93707cFD0107fC2A0eaC/info.json b/blockchains/ethereum/assets/0x8dA18119eF2A42b2eb3A93707cFD0107fC2A0eaC/info.json new file mode 100644 index 00000000..58b43523 --- /dev/null +++ b/blockchains/ethereum/assets/0x8dA18119eF2A42b2eb3A93707cFD0107fC2A0eaC/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-23/30M83", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8dA18119eF2A42b2eb3A93707cFD0107fC2A0eaC", + "status": "abandoned", + "id": "0x8dA18119eF2A42b2eb3A93707cFD0107fC2A0eaC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8dA18119eF2A42b2eb3A93707cFD0107fC2A0eaC/logo.png b/blockchains/ethereum/assets/0x8dA18119eF2A42b2eb3A93707cFD0107fC2A0eaC/logo.png new file mode 100644 index 00000000..229b8127 Binary files /dev/null and b/blockchains/ethereum/assets/0x8dA18119eF2A42b2eb3A93707cFD0107fC2A0eaC/logo.png differ diff --git a/blockchains/ethereum/assets/0x8dAE6Cb04688C62d939ed9B68d32Bc62e49970b1/info.json b/blockchains/ethereum/assets/0x8dAE6Cb04688C62d939ed9B68d32Bc62e49970b1/info.json new file mode 100644 index 00000000..da8d2aba --- /dev/null +++ b/blockchains/ethereum/assets/0x8dAE6Cb04688C62d939ed9B68d32Bc62e49970b1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave CRV", + "symbol": "aCRV", + "type": "ERC20", + "decimals": 18, + "description": "Aave CRV is an interest bearing token pegged 1:1 to the underlying CRV deposited in Aave. aCRV accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x8dAE6Cb04688C62d939ed9B68d32Bc62e49970b1", + "status": "active", + "id": "0x8dAE6Cb04688C62d939ed9B68d32Bc62e49970b1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8dAE6Cb04688C62d939ed9B68d32Bc62e49970b1/logo.png b/blockchains/ethereum/assets/0x8dAE6Cb04688C62d939ed9B68d32Bc62e49970b1/logo.png new file mode 100644 index 00000000..9f6f6f6a Binary files /dev/null and b/blockchains/ethereum/assets/0x8dAE6Cb04688C62d939ed9B68d32Bc62e49970b1/logo.png differ diff --git a/blockchains/ethereum/assets/0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa/info.json b/blockchains/ethereum/assets/0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa/info.json new file mode 100644 index 00000000..f6b59148 --- /dev/null +++ b/blockchains/ethereum/assets/0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa/info.json @@ -0,0 +1,25 @@ +{ + "name": "tBTC", + "website": "https://tbtc.network/", + "description": "tBTC is a trustlessly Bitcoin-backed ERC-20 token.", + "explorer": "https://etherscan.io/token/0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa", + "type": "ERC20", + "symbol": "TBTC", + "decimals": 18, + "status": "active", + "id": "0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa", + "links": [ + { + "name": "github", + "url": "https://github.com/keep-network/tbtc" + }, + { + "name": "x", + "url": "https://x.com/tBTC_project" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/KeepNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa/logo.png b/blockchains/ethereum/assets/0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa/logo.png new file mode 100644 index 00000000..25d19249 Binary files /dev/null and b/blockchains/ethereum/assets/0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa/logo.png differ diff --git a/blockchains/ethereum/assets/0x8dB54ca569D3019A2ba126D03C37c44b5eF81EF6/info.json b/blockchains/ethereum/assets/0x8dB54ca569D3019A2ba126D03C37c44b5eF81EF6/info.json new file mode 100644 index 00000000..b2795ce6 --- /dev/null +++ b/blockchains/ethereum/assets/0x8dB54ca569D3019A2ba126D03C37c44b5eF81EF6/info.json @@ -0,0 +1,11 @@ +{ + "name": "DataWallet Token", + "symbol": "DXT", + "type": "ERC20", + "decimals": 8, + "description": "DXT is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://datawallet.com", + "explorer": "https://etherscan.io/token/0x8dB54ca569D3019A2ba126D03C37c44b5eF81EF6", + "status": "active", + "id": "0x8dB54ca569D3019A2ba126D03C37c44b5eF81EF6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8dB54ca569D3019A2ba126D03C37c44b5eF81EF6/logo.png b/blockchains/ethereum/assets/0x8dB54ca569D3019A2ba126D03C37c44b5eF81EF6/logo.png new file mode 100644 index 00000000..c5203663 Binary files /dev/null and b/blockchains/ethereum/assets/0x8dB54ca569D3019A2ba126D03C37c44b5eF81EF6/logo.png differ diff --git a/blockchains/ethereum/assets/0x8db6Da2120b346FAa7f206841f2FB005BBE0DFD8/info.json b/blockchains/ethereum/assets/0x8db6Da2120b346FAa7f206841f2FB005BBE0DFD8/info.json new file mode 100644 index 00000000..8223dfbe --- /dev/null +++ b/blockchains/ethereum/assets/0x8db6Da2120b346FAa7f206841f2FB005BBE0DFD8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Paul Razvan Berg", + "symbol": "PAUL", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8db6Da2120b346FAa7f206841f2FB005BBE0DFD8", + "status": "abandoned", + "id": "0x8db6Da2120b346FAa7f206841f2FB005BBE0DFD8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8db6Da2120b346FAa7f206841f2FB005BBE0DFD8/logo.png b/blockchains/ethereum/assets/0x8db6Da2120b346FAa7f206841f2FB005BBE0DFD8/logo.png new file mode 100644 index 00000000..5ac53382 Binary files /dev/null and b/blockchains/ethereum/assets/0x8db6Da2120b346FAa7f206841f2FB005BBE0DFD8/logo.png differ diff --git a/blockchains/ethereum/assets/0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf/info.json b/blockchains/ethereum/assets/0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf/info.json new file mode 100644 index 00000000..4608ce73 --- /dev/null +++ b/blockchains/ethereum/assets/0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf/info.json @@ -0,0 +1,40 @@ +{ + "name": "Galaxy Villains", + "type": "ERC20", + "symbol": "GVC", + "decimals": 18, + "website": "https://galaxyvillains.com", + "description": "Galaxy Villains is a community driven token under the Galaxy Heroes ecosystem. GVC is your gateway to a decentralized galaxy where holders can take leadership of their finances and earn sparkly rewards.", + "explorer": "https://etherscan.io/token/0x8dc89f4716e027394bba225b82328c1ea2ea58bf", + "status": "active", + "id": "0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf", + "links": [ + { + "name": "x", + "url": "https://x.com/villainsgvc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/galaxy-villans/" + }, + { + "name": "github", + "url": "https://github.com/sumner770/GalaxyVillains" + }, + { + "name": "telegram", + "url": "https://t.me/galaxyvillains" + }, + { + "name": "discord", + "url": "https://discord.com/galaxycoins" + }, + { + "name": "whitepaper", + "url": "https://www.galaxyvillains.com/_files/ugd/834baa_0f0fbd0ed2644f17b7d9add713eb73c9.pdf" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf/logo.png b/blockchains/ethereum/assets/0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf/logo.png new file mode 100644 index 00000000..ac257801 Binary files /dev/null and b/blockchains/ethereum/assets/0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf/logo.png differ diff --git a/blockchains/ethereum/assets/0x8dd5fbCe2F6a956C3022bA3663759011Dd51e73E/info.json b/blockchains/ethereum/assets/0x8dd5fbCe2F6a956C3022bA3663759011Dd51e73E/info.json new file mode 100644 index 00000000..ddd4e635 --- /dev/null +++ b/blockchains/ethereum/assets/0x8dd5fbCe2F6a956C3022bA3663759011Dd51e73E/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueUSD (OLD)", + "type": "ERC20", + "symbol": "TUSD", + "decimals": 18, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0x8dd5fbce2f6a956c3022ba3663759011dd51e73e", + "status": "active", + "id": "0x8dd5fbCe2F6a956C3022bA3663759011Dd51e73E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8dd5fbCe2F6a956C3022bA3663759011Dd51e73E/logo.png b/blockchains/ethereum/assets/0x8dd5fbCe2F6a956C3022bA3663759011Dd51e73E/logo.png new file mode 100644 index 00000000..76e0bf62 Binary files /dev/null and b/blockchains/ethereum/assets/0x8dd5fbCe2F6a956C3022bA3663759011Dd51e73E/logo.png differ diff --git a/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/info.json b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/info.json new file mode 100644 index 00000000..2a769e9e --- /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 00000000..c5a86e41 Binary files /dev/null and b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/logo.png differ diff --git a/blockchains/ethereum/assets/0x8e09FE761f4Eee5DAC56024cC5eF9174231e5F1b/info.json b/blockchains/ethereum/assets/0x8e09FE761f4Eee5DAC56024cC5eF9174231e5F1b/info.json new file mode 100644 index 00000000..56523c85 --- /dev/null +++ b/blockchains/ethereum/assets/0x8e09FE761f4Eee5DAC56024cC5eF9174231e5F1b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Indoaset", + "symbol": "1ai", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8e09FE761f4Eee5DAC56024cC5eF9174231e5F1b", + "status": "abandoned", + "id": "0x8e09FE761f4Eee5DAC56024cC5eF9174231e5F1b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8e09FE761f4Eee5DAC56024cC5eF9174231e5F1b/logo.png b/blockchains/ethereum/assets/0x8e09FE761f4Eee5DAC56024cC5eF9174231e5F1b/logo.png new file mode 100644 index 00000000..acda539b Binary files /dev/null and b/blockchains/ethereum/assets/0x8e09FE761f4Eee5DAC56024cC5eF9174231e5F1b/logo.png differ diff --git a/blockchains/ethereum/assets/0x8e1b448EC7aDFc7Fa35FC2e885678bD323176E34/info.json b/blockchains/ethereum/assets/0x8e1b448EC7aDFc7Fa35FC2e885678bD323176E34/info.json new file mode 100644 index 00000000..bfc1a115 --- /dev/null +++ b/blockchains/ethereum/assets/0x8e1b448EC7aDFc7Fa35FC2e885678bD323176E34/info.json @@ -0,0 +1,11 @@ +{ + "name": "Egretia", + "symbol": "EGT", + "type": "ERC20", + "decimals": 18, + "description": "Egretia (EGT) is a cryptocurrency and operates on the Ethereum platform.", + "website": "http://egretia.io", + "explorer": "https://etherscan.io/token/0x8e1b448EC7aDFc7Fa35FC2e885678bD323176E34", + "status": "active", + "id": "0x8e1b448EC7aDFc7Fa35FC2e885678bD323176E34" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8e1b448EC7aDFc7Fa35FC2e885678bD323176E34/logo.png b/blockchains/ethereum/assets/0x8e1b448EC7aDFc7Fa35FC2e885678bD323176E34/logo.png new file mode 100644 index 00000000..2f0f6013 Binary files /dev/null and b/blockchains/ethereum/assets/0x8e1b448EC7aDFc7Fa35FC2e885678bD323176E34/logo.png differ diff --git a/blockchains/ethereum/assets/0x8e57c27761EBBd381b0f9d09Bb92CeB51a358AbB/info.json b/blockchains/ethereum/assets/0x8e57c27761EBBd381b0f9d09Bb92CeB51a358AbB/info.json new file mode 100644 index 00000000..a0d68433 --- /dev/null +++ b/blockchains/ethereum/assets/0x8e57c27761EBBd381b0f9d09Bb92CeB51a358AbB/info.json @@ -0,0 +1,11 @@ +{ + "name": "extraDNA", + "symbol": "xDNA", + "type": "ERC20", + "decimals": 18, + "description": "Adaptive Social Media System.", + "website": "https://xhumanity.org", + "explorer": "https://etherscan.io/token/0x8e57c27761EBBd381b0f9d09Bb92CeB51a358AbB", + "status": "active", + "id": "0x8e57c27761EBBd381b0f9d09Bb92CeB51a358AbB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8e57c27761EBBd381b0f9d09Bb92CeB51a358AbB/logo.png b/blockchains/ethereum/assets/0x8e57c27761EBBd381b0f9d09Bb92CeB51a358AbB/logo.png new file mode 100644 index 00000000..8cf99c9b Binary files /dev/null and b/blockchains/ethereum/assets/0x8e57c27761EBBd381b0f9d09Bb92CeB51a358AbB/logo.png differ diff --git a/blockchains/ethereum/assets/0x8e9934b2F0EA602cA5Be89e9274669E896C05Ac3/info.json b/blockchains/ethereum/assets/0x8e9934b2F0EA602cA5Be89e9274669E896C05Ac3/info.json new file mode 100644 index 00000000..14f07d7f --- /dev/null +++ b/blockchains/ethereum/assets/0x8e9934b2F0EA602cA5Be89e9274669E896C05Ac3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digital Australian Dollar", + "symbol": "DAUD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8e9934b2F0EA602cA5Be89e9274669E896C05Ac3", + "status": "abandoned", + "id": "0x8e9934b2F0EA602cA5Be89e9274669E896C05Ac3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8e9934b2F0EA602cA5Be89e9274669E896C05Ac3/logo.png b/blockchains/ethereum/assets/0x8e9934b2F0EA602cA5Be89e9274669E896C05Ac3/logo.png new file mode 100644 index 00000000..fdb85b51 Binary files /dev/null and b/blockchains/ethereum/assets/0x8e9934b2F0EA602cA5Be89e9274669E896C05Ac3/logo.png differ diff --git a/blockchains/ethereum/assets/0x8eB24319393716668D768dCEC29356ae9CfFe285/info.json b/blockchains/ethereum/assets/0x8eB24319393716668D768dCEC29356ae9CfFe285/info.json new file mode 100644 index 00000000..8e13e795 --- /dev/null +++ b/blockchains/ethereum/assets/0x8eB24319393716668D768dCEC29356ae9CfFe285/info.json @@ -0,0 +1,11 @@ +{ + "name": "SingularityNET Token", + "symbol": "AGI", + "type": "ERC20", + "decimals": 8, + "description": "SingularityNET is a blockchain-powered platform that allows anybody to easily create, share, and monetize AI services, thanks to its globally-accessible AI marketplace.", + "website": "https://singularitynet.io", + "explorer": "https://etherscan.io/token/0x8eB24319393716668D768dCEC29356ae9CfFe285", + "status": "abandoned", + "id": "0x8eB24319393716668D768dCEC29356ae9CfFe285" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8eD955a2b7d2C3a17a9d05dACa95E01818f8C11e/info.json b/blockchains/ethereum/assets/0x8eD955a2b7d2C3a17a9d05dACa95E01818f8C11e/info.json new file mode 100644 index 00000000..b4c6233b --- /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 00000000..b35d6206 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 00000000..7efb5ca9 --- /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 00000000..4f52059c Binary files /dev/null and b/blockchains/ethereum/assets/0x8eD97a637A790Be1feff5e888d43629dc05408F6/logo.png differ diff --git a/blockchains/ethereum/assets/0x8eEF5a82E6Aa222a60F009ac18c24EE12dBf4b41/info.json b/blockchains/ethereum/assets/0x8eEF5a82E6Aa222a60F009ac18c24EE12dBf4b41/info.json new file mode 100644 index 00000000..edea0144 --- /dev/null +++ b/blockchains/ethereum/assets/0x8eEF5a82E6Aa222a60F009ac18c24EE12dBf4b41/info.json @@ -0,0 +1,12 @@ +{ + "name": "Tixl", + "website": "https://tixl.org", + "description": "Interoperable Smart Contracts & dApps Network", + "explorer": "https://etherscan.io/token/0x8eEF5a82E6Aa222a60F009ac18c24EE12dBf4b41", + "research": "", + "type": "ERC20", + "symbol": "TXL", + "decimals": 18, + "status": "active", + "id": "0x8eEF5a82E6Aa222a60F009ac18c24EE12dBf4b41" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8eEF5a82E6Aa222a60F009ac18c24EE12dBf4b41/logo.png b/blockchains/ethereum/assets/0x8eEF5a82E6Aa222a60F009ac18c24EE12dBf4b41/logo.png new file mode 100644 index 00000000..7e522001 Binary files /dev/null and b/blockchains/ethereum/assets/0x8eEF5a82E6Aa222a60F009ac18c24EE12dBf4b41/logo.png differ diff --git a/blockchains/ethereum/assets/0x8eFFd494eB698cc399AF6231fCcd39E08fd20B15/info.json b/blockchains/ethereum/assets/0x8eFFd494eB698cc399AF6231fCcd39E08fd20B15/info.json new file mode 100644 index 00000000..3cef4954 --- /dev/null +++ b/blockchains/ethereum/assets/0x8eFFd494eB698cc399AF6231fCcd39E08fd20B15/info.json @@ -0,0 +1,11 @@ +{ + "name": "PIX Token", + "symbol": "PIX", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8eFFd494eB698cc399AF6231fCcd39E08fd20B15", + "status": "abandoned", + "id": "0x8eFFd494eB698cc399AF6231fCcd39E08fd20B15" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8eFFd494eB698cc399AF6231fCcd39E08fd20B15/logo.png b/blockchains/ethereum/assets/0x8eFFd494eB698cc399AF6231fCcd39E08fd20B15/logo.png new file mode 100755 index 00000000..b9787d56 Binary files /dev/null and b/blockchains/ethereum/assets/0x8eFFd494eB698cc399AF6231fCcd39E08fd20B15/logo.png differ diff --git a/blockchains/ethereum/assets/0x8ee38cd3d0Ce2620d94Ad7DF54ac5B85d7d28935/info.json b/blockchains/ethereum/assets/0x8ee38cd3d0Ce2620d94Ad7DF54ac5B85d7d28935/info.json new file mode 100644 index 00000000..1c0fc88c --- /dev/null +++ b/blockchains/ethereum/assets/0x8ee38cd3d0Ce2620d94Ad7DF54ac5B85d7d28935/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rudem00se", + "symbol": "MOOSE", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8ee38cd3d0Ce2620d94Ad7DF54ac5B85d7d28935", + "status": "abandoned", + "id": "0x8ee38cd3d0Ce2620d94Ad7DF54ac5B85d7d28935" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8ee38cd3d0Ce2620d94Ad7DF54ac5B85d7d28935/logo.png b/blockchains/ethereum/assets/0x8ee38cd3d0Ce2620d94Ad7DF54ac5B85d7d28935/logo.png new file mode 100644 index 00000000..965a2e68 Binary files /dev/null and b/blockchains/ethereum/assets/0x8ee38cd3d0Ce2620d94Ad7DF54ac5B85d7d28935/logo.png differ diff --git a/blockchains/ethereum/assets/0x8efBADD950AC0910d92FCaE60cFD69D15e573Da0/info.json b/blockchains/ethereum/assets/0x8efBADD950AC0910d92FCaE60cFD69D15e573Da0/info.json new file mode 100644 index 00000000..bf877f28 --- /dev/null +++ b/blockchains/ethereum/assets/0x8efBADD950AC0910d92FCaE60cFD69D15e573Da0/info.json @@ -0,0 +1,11 @@ +{ + "name": "CICBanking", + "symbol": "CIC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8efBADD950AC0910d92FCaE60cFD69D15e573Da0", + "status": "abandoned", + "id": "0x8efBADD950AC0910d92FCaE60cFD69D15e573Da0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8efBADD950AC0910d92FCaE60cFD69D15e573Da0/logo.png b/blockchains/ethereum/assets/0x8efBADD950AC0910d92FCaE60cFD69D15e573Da0/logo.png new file mode 100644 index 00000000..ad52937e Binary files /dev/null and b/blockchains/ethereum/assets/0x8efBADD950AC0910d92FCaE60cFD69D15e573Da0/logo.png differ diff --git a/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json b/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json new file mode 100644 index 00000000..a4c45fa0 --- /dev/null +++ b/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json @@ -0,0 +1,36 @@ +{ + "name": "Pleasure Coin", + "website": "https://pleasurecoin.com/", + "description": "Pleasure Coin (NSFW) is an ERC-20 token on Ethereum and the Polygon chain that will be utilized within the Pleasure Network, an adult industry ecosystem that empowers individuals and businesses.", + "explorer": "https://etherscan.io/token/0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19", + "type": "ERC20", + "symbol": "NSFW", + "decimals": 18, + "status": "active", + "tags": [ + "wrapped" + ], + "id": "0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19", + "links": [ + { + "name": "telegram", + "url": "https://t.me/pleasurecoin_crypto" + }, + { + "name": "discord", + "url": "https://discord.com/invite/GCHkdY6fnF" + }, + { + "name": "x", + "url": "https://x.com/Pleasure_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pleasure-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/pleasure-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/logo.png b/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/logo.png new file mode 100644 index 00000000..2592a2e3 Binary files /dev/null and b/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/logo.png differ diff --git a/blockchains/ethereum/assets/0x8f136Cc8bEf1fEA4A7b71aa2301ff1A52F084384/info.json b/blockchains/ethereum/assets/0x8f136Cc8bEf1fEA4A7b71aa2301ff1A52F084384/info.json new file mode 100644 index 00000000..934f47ca --- /dev/null +++ b/blockchains/ethereum/assets/0x8f136Cc8bEf1fEA4A7b71aa2301ff1A52F084384/info.json @@ -0,0 +1,11 @@ +{ + "name": "StarChainToken", + "symbol": "STC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8f136Cc8bEf1fEA4A7b71aa2301ff1A52F084384", + "status": "abandoned", + "id": "0x8f136Cc8bEf1fEA4A7b71aa2301ff1A52F084384" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8f136Cc8bEf1fEA4A7b71aa2301ff1A52F084384/logo.png b/blockchains/ethereum/assets/0x8f136Cc8bEf1fEA4A7b71aa2301ff1A52F084384/logo.png new file mode 100644 index 00000000..9f80eea6 Binary files /dev/null and b/blockchains/ethereum/assets/0x8f136Cc8bEf1fEA4A7b71aa2301ff1A52F084384/logo.png differ diff --git a/blockchains/ethereum/assets/0x8f1459743dF07b81aE11A58C5ac6f2fB5fC8F095/info.json b/blockchains/ethereum/assets/0x8f1459743dF07b81aE11A58C5ac6f2fB5fC8F095/info.json new file mode 100644 index 00000000..431844cf --- /dev/null +++ b/blockchains/ethereum/assets/0x8f1459743dF07b81aE11A58C5ac6f2fB5fC8F095/info.json @@ -0,0 +1,11 @@ +{ + "name": "Littrade", + "symbol": "LTE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8f1459743dF07b81aE11A58C5ac6f2fB5fC8F095", + "status": "abandoned", + "id": "0x8f1459743dF07b81aE11A58C5ac6f2fB5fC8F095" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8f1459743dF07b81aE11A58C5ac6f2fB5fC8F095/logo.png b/blockchains/ethereum/assets/0x8f1459743dF07b81aE11A58C5ac6f2fB5fC8F095/logo.png new file mode 100644 index 00000000..7e40fa08 Binary files /dev/null and b/blockchains/ethereum/assets/0x8f1459743dF07b81aE11A58C5ac6f2fB5fC8F095/logo.png differ diff --git a/blockchains/ethereum/assets/0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374/info.json b/blockchains/ethereum/assets/0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374/info.json new file mode 100644 index 00000000..f0454e55 --- /dev/null +++ b/blockchains/ethereum/assets/0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374/info.json @@ -0,0 +1,11 @@ +{ + "name": "Veritaseum", + "symbol": "VERI", + "type": "ERC20", + "decimals": 18, + "description": "Veritaseum is a smart contracts-based, peer-to-peer wallet interface (in beta) that currently interacts with Bitcoin blockchain (to be ported to Ethereum).", + "website": "https://singularitynet.io", + "explorer": "https://etherscan.io/token/0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374", + "status": "active", + "id": "0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374/logo.png b/blockchains/ethereum/assets/0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374/logo.png new file mode 100644 index 00000000..07813932 Binary files /dev/null and b/blockchains/ethereum/assets/0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374/logo.png differ diff --git a/blockchains/ethereum/assets/0x8f464bfe2292748A0FED58Bb53D3838B4CE018b0/info.json b/blockchains/ethereum/assets/0x8f464bfe2292748A0FED58Bb53D3838B4CE018b0/info.json new file mode 100644 index 00000000..26edee68 --- /dev/null +++ b/blockchains/ethereum/assets/0x8f464bfe2292748A0FED58Bb53D3838B4CE018b0/info.json @@ -0,0 +1,11 @@ +{ + "name": "KEVIN", + "symbol": "KEVIN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8f464bfe2292748A0FED58Bb53D3838B4CE018b0", + "status": "abandoned", + "id": "0x8f464bfe2292748A0FED58Bb53D3838B4CE018b0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8f464bfe2292748A0FED58Bb53D3838B4CE018b0/logo.png b/blockchains/ethereum/assets/0x8f464bfe2292748A0FED58Bb53D3838B4CE018b0/logo.png new file mode 100644 index 00000000..e77dabcd Binary files /dev/null and b/blockchains/ethereum/assets/0x8f464bfe2292748A0FED58Bb53D3838B4CE018b0/logo.png differ diff --git a/blockchains/ethereum/assets/0x8f66A173696502A0aD280781C3e55928A06c1312/info.json b/blockchains/ethereum/assets/0x8f66A173696502A0aD280781C3e55928A06c1312/info.json new file mode 100644 index 00000000..30bfaa23 --- /dev/null +++ b/blockchains/ethereum/assets/0x8f66A173696502A0aD280781C3e55928A06c1312/info.json @@ -0,0 +1,11 @@ +{ + "name": "Peoplewave Token", + "symbol": "PWV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8f66A173696502A0aD280781C3e55928A06c1312", + "status": "abandoned", + "id": "0x8f66A173696502A0aD280781C3e55928A06c1312" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8f66A173696502A0aD280781C3e55928A06c1312/logo.png b/blockchains/ethereum/assets/0x8f66A173696502A0aD280781C3e55928A06c1312/logo.png new file mode 100644 index 00000000..0bd174e3 Binary files /dev/null and b/blockchains/ethereum/assets/0x8f66A173696502A0aD280781C3e55928A06c1312/logo.png differ diff --git a/blockchains/ethereum/assets/0x8f693ca8D21b157107184d29D398A8D082b38b76/info.json b/blockchains/ethereum/assets/0x8f693ca8D21b157107184d29D398A8D082b38b76/info.json new file mode 100644 index 00000000..5383f8e7 --- /dev/null +++ b/blockchains/ethereum/assets/0x8f693ca8D21b157107184d29D398A8D082b38b76/info.json @@ -0,0 +1,41 @@ +{ + "name": "Streamr", + "type": "ERC20", + "symbol": "DATA", + "decimals": 18, + "website": "https://streamr.network", + "description": "Streamr is a decentralized real‑time data network for web3. Create, share and consume data streams on an open, scalable P2P protocol with powerful tools for monetization. As a layer zero protocol, it provides a publish/subscribe messaging framework for decentralized applications built on top.", + "explorer": "https://etherscan.io/token/0x8f693ca8D21b157107184d29D398A8D082b38b76", + "status": "active", + "id": "0x8f693ca8D21b157107184d29D398A8D082b38b76", + "links": [ + { + "name": "x", + "url": "https://x.com/streamr" + }, + { + "name": "github", + "url": "https://github.com/streamr-dev" + }, + { + "name": "whitepaper", + "url": "https://streamr.network/network-whitepaper" + }, + { + "name": "docs", + "url": "https://streamr.network/docs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/streamr" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/streamr" + }, + { + "name": "blog", + "url": "https://blog.streamr.network" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8f693ca8D21b157107184d29D398A8D082b38b76/logo.png b/blockchains/ethereum/assets/0x8f693ca8D21b157107184d29D398A8D082b38b76/logo.png new file mode 100644 index 00000000..9fc79a79 Binary files /dev/null and b/blockchains/ethereum/assets/0x8f693ca8D21b157107184d29D398A8D082b38b76/logo.png differ diff --git a/blockchains/ethereum/assets/0x8f7b0B40E27E357540F90f187d90CE06366aC5A5/info.json b/blockchains/ethereum/assets/0x8f7b0B40E27E357540F90f187d90CE06366aC5A5/info.json new file mode 100644 index 00000000..c766e73d --- /dev/null +++ b/blockchains/ethereum/assets/0x8f7b0B40E27E357540F90f187d90CE06366aC5A5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Value Chain", + "symbol": "VLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://valuechain.biz/", + "explorer": "https://etherscan.io/token/0x8f7b0B40E27E357540F90f187d90CE06366aC5A5", + "status": "abandoned", + "id": "0x8f7b0B40E27E357540F90f187d90CE06366aC5A5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8f7b0B40E27E357540F90f187d90CE06366aC5A5/logo.png b/blockchains/ethereum/assets/0x8f7b0B40E27E357540F90f187d90CE06366aC5A5/logo.png new file mode 100644 index 00000000..bcb46e88 Binary files /dev/null and b/blockchains/ethereum/assets/0x8f7b0B40E27E357540F90f187d90CE06366aC5A5/logo.png differ diff --git a/blockchains/ethereum/assets/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/info.json b/blockchains/ethereum/assets/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/info.json new file mode 100644 index 00000000..0d5f82e8 --- /dev/null +++ b/blockchains/ethereum/assets/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/info.json @@ -0,0 +1,14 @@ +{ + "name": "Request Token", + "symbol": "REQ", + "type": "ERC20", + "decimals": 18, + "description": "The Request Network itself is an Ethereum-based decentralized payment system where anyone can request a payment and receive money through secure means.", + "website": "https://request.network", + "explorer": "https://etherscan.io/token/0x8f8221aFbB33998d8584A2B05749bA73c37a938a", + "status": "active", + "id": "0x8f8221aFbB33998d8584A2B05749bA73c37a938a", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/logo.png b/blockchains/ethereum/assets/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/logo.png new file mode 100644 index 00000000..01bd8547 Binary files /dev/null and b/blockchains/ethereum/assets/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/logo.png differ diff --git a/blockchains/ethereum/assets/0x8fC01E6CbDfFaf09B54F423f9Bb1F856b22e47b2/info.json b/blockchains/ethereum/assets/0x8fC01E6CbDfFaf09B54F423f9Bb1F856b22e47b2/info.json new file mode 100644 index 00000000..75e99aa8 --- /dev/null +++ b/blockchains/ethereum/assets/0x8fC01E6CbDfFaf09B54F423f9Bb1F856b22e47b2/info.json @@ -0,0 +1,11 @@ +{ + "name": "ObitanChain", + "symbol": "OBTC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.obitanchain.org", + "explorer": "https://etherscan.io/token/0x8fC01E6CbDfFaf09B54F423f9Bb1F856b22e47b2", + "status": "abandoned", + "id": "0x8fC01E6CbDfFaf09B54F423f9Bb1F856b22e47b2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8fC01E6CbDfFaf09B54F423f9Bb1F856b22e47b2/logo.png b/blockchains/ethereum/assets/0x8fC01E6CbDfFaf09B54F423f9Bb1F856b22e47b2/logo.png new file mode 100644 index 00000000..22b0c744 Binary files /dev/null and b/blockchains/ethereum/assets/0x8fC01E6CbDfFaf09B54F423f9Bb1F856b22e47b2/logo.png differ diff --git a/blockchains/ethereum/assets/0x8fEEf860E9fA9326ff9d7E0058F637bE8579Cc29/info.json b/blockchains/ethereum/assets/0x8fEEf860E9fA9326ff9d7E0058F637bE8579Cc29/info.json new file mode 100644 index 00000000..027dc939 --- /dev/null +++ b/blockchains/ethereum/assets/0x8fEEf860E9fA9326ff9d7E0058F637bE8579Cc29/info.json @@ -0,0 +1,17 @@ +{ + "name": "TIMERS", + "website": "https://timers.network", + "description": "The TIMERS token is a representation of a humans intrinsic time value. The abbreviation IPM stands for Income/Per/Minute.", + "explorer": "https://etherscan.io/token/0x8fEEf860E9fA9326ff9d7E0058F637bE8579Cc29", + "type": "ERC20", + "symbol": "IPM", + "decimals": 18, + "status": "active", + "id": "0x8fEEf860E9fA9326ff9d7E0058F637bE8579Cc29", + "links": [ + { + "name": "whitepaper", + "url": "https://timers.network/synopsis/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8fEEf860E9fA9326ff9d7E0058F637bE8579Cc29/logo.png b/blockchains/ethereum/assets/0x8fEEf860E9fA9326ff9d7E0058F637bE8579Cc29/logo.png new file mode 100644 index 00000000..5a80b6d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x8fEEf860E9fA9326ff9d7E0058F637bE8579Cc29/logo.png differ diff --git a/blockchains/ethereum/assets/0x8fa1323590032461997eEb4E1b3F918C186b7843/info.json b/blockchains/ethereum/assets/0x8fa1323590032461997eEb4E1b3F918C186b7843/info.json new file mode 100644 index 00000000..00c8ad1d --- /dev/null +++ b/blockchains/ethereum/assets/0x8fa1323590032461997eEb4E1b3F918C186b7843/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 177-CN02", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8fa1323590032461997eEb4E1b3F918C186b7843", + "status": "abandoned", + "id": "0x8fa1323590032461997eEb4E1b3F918C186b7843" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8fa1323590032461997eEb4E1b3F918C186b7843/logo.png b/blockchains/ethereum/assets/0x8fa1323590032461997eEb4E1b3F918C186b7843/logo.png new file mode 100644 index 00000000..b8b06a6e Binary files /dev/null and b/blockchains/ethereum/assets/0x8fa1323590032461997eEb4E1b3F918C186b7843/logo.png differ diff --git a/blockchains/ethereum/assets/0x8fa1a491f55D93bD40ff023956261f2fB5047297/info.json b/blockchains/ethereum/assets/0x8fa1a491f55D93bD40ff023956261f2fB5047297/info.json new file mode 100644 index 00000000..a24c6014 --- /dev/null +++ b/blockchains/ethereum/assets/0x8fa1a491f55D93bD40ff023956261f2fB5047297/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short ETH-DAI 2x v2", + "symbol": "dsETH2x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8fa1a491f55D93bD40ff023956261f2fB5047297", + "status": "abandoned", + "id": "0x8fa1a491f55D93bD40ff023956261f2fB5047297" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8fa1a491f55D93bD40ff023956261f2fB5047297/logo.png b/blockchains/ethereum/assets/0x8fa1a491f55D93bD40ff023956261f2fB5047297/logo.png new file mode 100644 index 00000000..31d9a8e3 Binary files /dev/null and b/blockchains/ethereum/assets/0x8fa1a491f55D93bD40ff023956261f2fB5047297/logo.png differ diff --git a/blockchains/ethereum/assets/0x8fbcB3f7a4C48dD9500BA20b5254C08D75403ba1/info.json b/blockchains/ethereum/assets/0x8fbcB3f7a4C48dD9500BA20b5254C08D75403ba1/info.json new file mode 100644 index 00000000..81a827fd --- /dev/null +++ b/blockchains/ethereum/assets/0x8fbcB3f7a4C48dD9500BA20b5254C08D75403ba1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mobilink", + "symbol": "MOBL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8fbcB3f7a4C48dD9500BA20b5254C08D75403ba1", + "status": "abandoned", + "id": "0x8fbcB3f7a4C48dD9500BA20b5254C08D75403ba1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8fbcB3f7a4C48dD9500BA20b5254C08D75403ba1/logo.png b/blockchains/ethereum/assets/0x8fbcB3f7a4C48dD9500BA20b5254C08D75403ba1/logo.png new file mode 100755 index 00000000..7545a2bd Binary files /dev/null and b/blockchains/ethereum/assets/0x8fbcB3f7a4C48dD9500BA20b5254C08D75403ba1/logo.png differ diff --git a/blockchains/ethereum/assets/0x8fc9b6354E839AB1c8B31F4afa53607092B8C2e5/info.json b/blockchains/ethereum/assets/0x8fc9b6354E839AB1c8B31F4afa53607092B8C2e5/info.json new file mode 100644 index 00000000..3e3ebbbd --- /dev/null +++ b/blockchains/ethereum/assets/0x8fc9b6354E839AB1c8B31F4afa53607092B8C2e5/info.json @@ -0,0 +1,11 @@ +{ + "name": "ECOSCU", + "symbol": "ECU", + "type": "ERC20", + "decimals": 18, + "description": "ECOSCU (ECU) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.ecosc.io", + "explorer": "https://etherscan.io/token/0x8fc9b6354E839AB1c8B31F4afa53607092B8C2e5", + "status": "active", + "id": "0x8fc9b6354E839AB1c8B31F4afa53607092B8C2e5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8fc9b6354E839AB1c8B31F4afa53607092B8C2e5/logo.png b/blockchains/ethereum/assets/0x8fc9b6354E839AB1c8B31F4afa53607092B8C2e5/logo.png new file mode 100644 index 00000000..ac34fad5 Binary files /dev/null and b/blockchains/ethereum/assets/0x8fc9b6354E839AB1c8B31F4afa53607092B8C2e5/logo.png differ diff --git a/blockchains/ethereum/assets/0x8fe19C447821B4cdCdd5012BCa1B5469cA96d80D/info.json b/blockchains/ethereum/assets/0x8fe19C447821B4cdCdd5012BCa1B5469cA96d80D/info.json new file mode 100644 index 00000000..1afca9da --- /dev/null +++ b/blockchains/ethereum/assets/0x8fe19C447821B4cdCdd5012BCa1B5469cA96d80D/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETH.TOWN Token", + "symbol": "ETIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x8fe19C447821B4cdCdd5012BCa1B5469cA96d80D", + "status": "abandoned", + "id": "0x8fe19C447821B4cdCdd5012BCa1B5469cA96d80D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8fe19C447821B4cdCdd5012BCa1B5469cA96d80D/logo.png b/blockchains/ethereum/assets/0x8fe19C447821B4cdCdd5012BCa1B5469cA96d80D/logo.png new file mode 100755 index 00000000..fdd6d32c Binary files /dev/null and b/blockchains/ethereum/assets/0x8fe19C447821B4cdCdd5012BCa1B5469cA96d80D/logo.png differ diff --git a/blockchains/ethereum/assets/0x9002D4485b7594e3E850F0a206713B305113f69e/info.json b/blockchains/ethereum/assets/0x9002D4485b7594e3E850F0a206713B305113f69e/info.json new file mode 100644 index 00000000..ad4814bc --- /dev/null +++ b/blockchains/ethereum/assets/0x9002D4485b7594e3E850F0a206713B305113f69e/info.json @@ -0,0 +1,11 @@ +{ + "name": "HawalaToken", + "symbol": "HAT", + "type": "ERC20", + "decimals": 12, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9002D4485b7594e3E850F0a206713B305113f69e", + "status": "abandoned", + "id": "0x9002D4485b7594e3E850F0a206713B305113f69e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9002D4485b7594e3E850F0a206713B305113f69e/logo.png b/blockchains/ethereum/assets/0x9002D4485b7594e3E850F0a206713B305113f69e/logo.png new file mode 100755 index 00000000..16e7c0f4 Binary files /dev/null and b/blockchains/ethereum/assets/0x9002D4485b7594e3E850F0a206713B305113f69e/logo.png differ diff --git a/blockchains/ethereum/assets/0x900b4449236a7bb26b286601dD14d2bDe7a6aC6c/info.json b/blockchains/ethereum/assets/0x900b4449236a7bb26b286601dD14d2bDe7a6aC6c/info.json new file mode 100644 index 00000000..83992887 --- /dev/null +++ b/blockchains/ethereum/assets/0x900b4449236a7bb26b286601dD14d2bDe7a6aC6c/info.json @@ -0,0 +1,11 @@ +{ + "name": "EARTH Token", + "symbol": "EARTH", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://earth-token.com", + "explorer": "https://etherscan.io/token/0x900b4449236a7bb26b286601dD14d2bDe7a6aC6c", + "status": "abandoned", + "id": "0x900b4449236a7bb26b286601dD14d2bDe7a6aC6c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x900b4449236a7bb26b286601dD14d2bDe7a6aC6c/logo.png b/blockchains/ethereum/assets/0x900b4449236a7bb26b286601dD14d2bDe7a6aC6c/logo.png new file mode 100755 index 00000000..0be7466a Binary files /dev/null and b/blockchains/ethereum/assets/0x900b4449236a7bb26b286601dD14d2bDe7a6aC6c/logo.png differ diff --git a/blockchains/ethereum/assets/0x90162f41886c0946D09999736f1C15c8a105A421/info.json b/blockchains/ethereum/assets/0x90162f41886c0946D09999736f1C15c8a105A421/info.json new file mode 100644 index 00000000..5cfa5040 --- /dev/null +++ b/blockchains/ethereum/assets/0x90162f41886c0946D09999736f1C15c8a105A421/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fan Token", + "symbol": "FAN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://tokensale.fanfare.global", + "explorer": "https://etherscan.io/token/0x90162f41886c0946D09999736f1C15c8a105A421", + "status": "abandoned", + "id": "0x90162f41886c0946D09999736f1C15c8a105A421" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x90162f41886c0946D09999736f1C15c8a105A421/logo.png b/blockchains/ethereum/assets/0x90162f41886c0946D09999736f1C15c8a105A421/logo.png new file mode 100644 index 00000000..372134e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x90162f41886c0946D09999736f1C15c8a105A421/logo.png differ diff --git a/blockchains/ethereum/assets/0x9025f9A59694dd939739e05beB2502a567e8326f/info.json b/blockchains/ethereum/assets/0x9025f9A59694dd939739e05beB2502a567e8326f/info.json new file mode 100644 index 00000000..15c95b04 --- /dev/null +++ b/blockchains/ethereum/assets/0x9025f9A59694dd939739e05beB2502a567e8326f/info.json @@ -0,0 +1,11 @@ +{ + "name": "NamTanToken", + "symbol": "NAMTT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://namtancoin.cash", + "explorer": "https://etherscan.io/token/0x9025f9A59694dd939739e05beB2502a567e8326f", + "status": "abandoned", + "id": "0x9025f9A59694dd939739e05beB2502a567e8326f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9025f9A59694dd939739e05beB2502a567e8326f/logo.png b/blockchains/ethereum/assets/0x9025f9A59694dd939739e05beB2502a567e8326f/logo.png new file mode 100644 index 00000000..f34e7a9c Binary files /dev/null and b/blockchains/ethereum/assets/0x9025f9A59694dd939739e05beB2502a567e8326f/logo.png differ diff --git a/blockchains/ethereum/assets/0x9032c02AC84A347ECF0b31e1cE5EEd5462294A99/info.json b/blockchains/ethereum/assets/0x9032c02AC84A347ECF0b31e1cE5EEd5462294A99/info.json new file mode 100644 index 00000000..f8c6f7a2 --- /dev/null +++ b/blockchains/ethereum/assets/0x9032c02AC84A347ECF0b31e1cE5EEd5462294A99/info.json @@ -0,0 +1,11 @@ +{ + "name": "FMP", + "website": "https://famacoins.com/", + "description": "The Famacoin sidechain Famapay, referred to as FMP. The issuance of the sidechain is the project's exploration of the Fama mainnet model. Build fast, easy-to-use, low-cost and secure blockchain applications on the Internet scale through off-chain expansion technology and incentive encryption economics. It is reported that there are 10 million FMPs in total, of which 50% are used for free airdrops and event rewards. 50% of FMP is used for FamaPay application development incentives.", + "explorer": "https://etherscan.io/token/0x9032c02AC84A347ECF0b31e1cE5EEd5462294A99", + "type": "ERC20", + "symbol": "FMP", + "decimals": 18, + "status": "active", + "id": "0x9032c02AC84A347ECF0b31e1cE5EEd5462294A99" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9032c02AC84A347ECF0b31e1cE5EEd5462294A99/logo.png b/blockchains/ethereum/assets/0x9032c02AC84A347ECF0b31e1cE5EEd5462294A99/logo.png new file mode 100644 index 00000000..1538f8a6 Binary files /dev/null and b/blockchains/ethereum/assets/0x9032c02AC84A347ECF0b31e1cE5EEd5462294A99/logo.png differ diff --git a/blockchains/ethereum/assets/0x90335e6F8cf5b4b3cC28217B6b2eCe290439E492/info.json b/blockchains/ethereum/assets/0x90335e6F8cf5b4b3cC28217B6b2eCe290439E492/info.json new file mode 100644 index 00000000..44f2ed8e --- /dev/null +++ b/blockchains/ethereum/assets/0x90335e6F8cf5b4b3cC28217B6b2eCe290439E492/info.json @@ -0,0 +1,11 @@ +{ + "name": "DragonGameCoin", + "symbol": "DGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x90335e6F8cf5b4b3cC28217B6b2eCe290439E492", + "status": "abandoned", + "id": "0x90335e6F8cf5b4b3cC28217B6b2eCe290439E492" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x90335e6F8cf5b4b3cC28217B6b2eCe290439E492/logo.png b/blockchains/ethereum/assets/0x90335e6F8cf5b4b3cC28217B6b2eCe290439E492/logo.png new file mode 100644 index 00000000..22cfa91a Binary files /dev/null and b/blockchains/ethereum/assets/0x90335e6F8cf5b4b3cC28217B6b2eCe290439E492/logo.png differ diff --git a/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/info.json b/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/info.json new file mode 100644 index 00000000..87794817 --- /dev/null +++ b/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/info.json @@ -0,0 +1,32 @@ +{ + "name": "Legacy ICHI", + "website": "app.ichi.org", + "description": "Legacy ICHI is a token deprecated by the ICHI DAO, you can swap it 1-1 for ICHI at app.ichi.org.", + "explorer": "https://etherscan.io/token/0x903bEF1736CDdf2A537176cf3C64579C3867A881", + "type": "ERC20", + "symbol": "ICHI", + "decimals": 9, + "status": "active", + "id": "0x903bEF1736CDdf2A537176cf3C64579C3867A881", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm" + }, + { + "name": "x", + "url": "https://x.com/ichifoundation" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/logo.png b/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/logo.png new file mode 100644 index 00000000..96a6993b Binary files /dev/null and b/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/logo.png differ diff --git a/blockchains/ethereum/assets/0x9041Fe5B3FDEA0f5e4afDC17e75180738D877A01/info.json b/blockchains/ethereum/assets/0x9041Fe5B3FDEA0f5e4afDC17e75180738D877A01/info.json new file mode 100644 index 00000000..370bd3d6 --- /dev/null +++ b/blockchains/ethereum/assets/0x9041Fe5B3FDEA0f5e4afDC17e75180738D877A01/info.json @@ -0,0 +1,11 @@ +{ + "name": "ProToken", + "symbol": "PRO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://chain.pro/", + "explorer": "https://etherscan.io/token/0x9041Fe5B3FDEA0f5e4afDC17e75180738D877A01", + "status": "abandoned", + "id": "0x9041Fe5B3FDEA0f5e4afDC17e75180738D877A01" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9041Fe5B3FDEA0f5e4afDC17e75180738D877A01/logo.png b/blockchains/ethereum/assets/0x9041Fe5B3FDEA0f5e4afDC17e75180738D877A01/logo.png new file mode 100644 index 00000000..22998a4e Binary files /dev/null and b/blockchains/ethereum/assets/0x9041Fe5B3FDEA0f5e4afDC17e75180738D877A01/logo.png differ diff --git a/blockchains/ethereum/assets/0x9043d4d51C9d2e31e3F169de4551E416970c27Ef/info.json b/blockchains/ethereum/assets/0x9043d4d51C9d2e31e3F169de4551E416970c27Ef/info.json new file mode 100644 index 00000000..036a7d1c --- /dev/null +++ b/blockchains/ethereum/assets/0x9043d4d51C9d2e31e3F169de4551E416970c27Ef/info.json @@ -0,0 +1,11 @@ +{ + "name": "Prime DAI", + "website": "https://omgswap.in/", + "description": "pDAI is a stable assets for OMGSwap & O-DEX", + "explorer": "https://etherscan.io/token/0x9043d4d51C9d2e31e3F169de4551E416970c27Ef", + "type": "ERC20", + "symbol": "pDAI", + "decimals": 18, + "status": "active", + "id": "0x9043d4d51C9d2e31e3F169de4551E416970c27Ef" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9043d4d51C9d2e31e3F169de4551E416970c27Ef/logo.png b/blockchains/ethereum/assets/0x9043d4d51C9d2e31e3F169de4551E416970c27Ef/logo.png new file mode 100644 index 00000000..8739c42d Binary files /dev/null and b/blockchains/ethereum/assets/0x9043d4d51C9d2e31e3F169de4551E416970c27Ef/logo.png differ diff --git a/blockchains/ethereum/assets/0x904da022AbCF44EbA68d4255914141298a7F7307/info.json b/blockchains/ethereum/assets/0x904da022AbCF44EbA68d4255914141298a7F7307/info.json new file mode 100644 index 00000000..b8b7f978 --- /dev/null +++ b/blockchains/ethereum/assets/0x904da022AbCF44EbA68d4255914141298a7F7307/info.json @@ -0,0 +1,11 @@ +{ + "name": "Validity", + "symbol": "VLDY", + "type": "ERC20", + "decimals": 18, + "description": "A self-governing cryptocurrency evaluation platform achieved by utilising on-chain governance, peer reviews and voting.", + "website": "https://vldy.org/", + "explorer": "https://etherscan.io/token/0x904da022AbCF44EbA68d4255914141298a7F7307", + "status": "active", + "id": "0x904da022AbCF44EbA68d4255914141298a7F7307" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x904da022AbCF44EbA68d4255914141298a7F7307/logo.png b/blockchains/ethereum/assets/0x904da022AbCF44EbA68d4255914141298a7F7307/logo.png new file mode 100644 index 00000000..56c719a5 Binary files /dev/null and b/blockchains/ethereum/assets/0x904da022AbCF44EbA68d4255914141298a7F7307/logo.png differ diff --git a/blockchains/ethereum/assets/0x90528aeb3a2B736B780fD1B6C478bB7E1d643170/info.json b/blockchains/ethereum/assets/0x90528aeb3a2B736B780fD1B6C478bB7E1d643170/info.json new file mode 100644 index 00000000..0bb9d177 --- /dev/null +++ b/blockchains/ethereum/assets/0x90528aeb3a2B736B780fD1B6C478bB7E1d643170/info.json @@ -0,0 +1,11 @@ +{ + "name": "XPlay Token", + "symbol": "XPA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://xpa.io", + "explorer": "https://etherscan.io/token/0x90528aeb3a2B736B780fD1B6C478bB7E1d643170", + "status": "abandoned", + "id": "0x90528aeb3a2B736B780fD1B6C478bB7E1d643170" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x90528aeb3a2B736B780fD1B6C478bB7E1d643170/logo.png b/blockchains/ethereum/assets/0x90528aeb3a2B736B780fD1B6C478bB7E1d643170/logo.png new file mode 100644 index 00000000..2b8e9e1d Binary files /dev/null and b/blockchains/ethereum/assets/0x90528aeb3a2B736B780fD1B6C478bB7E1d643170/logo.png differ diff --git a/blockchains/ethereum/assets/0x905E337c6c8645263D3521205Aa37bf4d034e745/info.json b/blockchains/ethereum/assets/0x905E337c6c8645263D3521205Aa37bf4d034e745/info.json new file mode 100644 index 00000000..dbad874e --- /dev/null +++ b/blockchains/ethereum/assets/0x905E337c6c8645263D3521205Aa37bf4d034e745/info.json @@ -0,0 +1,11 @@ +{ + "name": "Medical Token Currency", + "symbol": "MTC", + "type": "ERC20", + "decimals": 18, + "description": "Doc.com began with the mission to provide accessible basic healthcare to the world, and to create a new paradigm in primary care globally.", + "website": "https://doc.com", + "explorer": "https://etherscan.io/token/0x905E337c6c8645263D3521205Aa37bf4d034e745", + "status": "active", + "id": "0x905E337c6c8645263D3521205Aa37bf4d034e745" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x905E337c6c8645263D3521205Aa37bf4d034e745/logo.png b/blockchains/ethereum/assets/0x905E337c6c8645263D3521205Aa37bf4d034e745/logo.png new file mode 100755 index 00000000..af5c5c34 Binary files /dev/null and b/blockchains/ethereum/assets/0x905E337c6c8645263D3521205Aa37bf4d034e745/logo.png differ diff --git a/blockchains/ethereum/assets/0x905e3D31209dac40b875a7024B836a2297913388/info.json b/blockchains/ethereum/assets/0x905e3D31209dac40b875a7024B836a2297913388/info.json new file mode 100644 index 00000000..0b0ad58a --- /dev/null +++ b/blockchains/ethereum/assets/0x905e3D31209dac40b875a7024B836a2297913388/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crypto Code", + "symbol": "CODE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x905e3D31209dac40b875a7024B836a2297913388", + "status": "abandoned", + "id": "0x905e3D31209dac40b875a7024B836a2297913388" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x905e3D31209dac40b875a7024B836a2297913388/logo.png b/blockchains/ethereum/assets/0x905e3D31209dac40b875a7024B836a2297913388/logo.png new file mode 100644 index 00000000..99f3a01b Binary files /dev/null and b/blockchains/ethereum/assets/0x905e3D31209dac40b875a7024B836a2297913388/logo.png differ diff --git a/blockchains/ethereum/assets/0x906318370BBAF0659F65eD6B298e95E0A288c990/info.json b/blockchains/ethereum/assets/0x906318370BBAF0659F65eD6B298e95E0A288c990/info.json new file mode 100644 index 00000000..eb0677f3 --- /dev/null +++ b/blockchains/ethereum/assets/0x906318370BBAF0659F65eD6B298e95E0A288c990/info.json @@ -0,0 +1,11 @@ +{ + "name": "ADCC", + "symbol": "ADCC", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x906318370BBAF0659F65eD6B298e95E0A288c990", + "status": "abandoned", + "id": "0x906318370BBAF0659F65eD6B298e95E0A288c990" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x906318370BBAF0659F65eD6B298e95E0A288c990/logo.png b/blockchains/ethereum/assets/0x906318370BBAF0659F65eD6B298e95E0A288c990/logo.png new file mode 100644 index 00000000..2a177388 Binary files /dev/null and b/blockchains/ethereum/assets/0x906318370BBAF0659F65eD6B298e95E0A288c990/logo.png differ diff --git a/blockchains/ethereum/assets/0x9064c91e51d7021A85AD96817e1432aBf6624470/info.json b/blockchains/ethereum/assets/0x9064c91e51d7021A85AD96817e1432aBf6624470/info.json new file mode 100644 index 00000000..a5e44140 --- /dev/null +++ b/blockchains/ethereum/assets/0x9064c91e51d7021A85AD96817e1432aBf6624470/info.json @@ -0,0 +1,11 @@ +{ + "name": "shinechain", + "symbol": "SHE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.shinechain.org/", + "explorer": "https://etherscan.io/token/0x9064c91e51d7021A85AD96817e1432aBf6624470", + "status": "abandoned", + "id": "0x9064c91e51d7021A85AD96817e1432aBf6624470" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9064c91e51d7021A85AD96817e1432aBf6624470/logo.png b/blockchains/ethereum/assets/0x9064c91e51d7021A85AD96817e1432aBf6624470/logo.png new file mode 100644 index 00000000..7bebd4bb Binary files /dev/null and b/blockchains/ethereum/assets/0x9064c91e51d7021A85AD96817e1432aBf6624470/logo.png differ diff --git a/blockchains/ethereum/assets/0x906b3f8b7845840188Eab53c3f5AD348A787752f/info.json b/blockchains/ethereum/assets/0x906b3f8b7845840188Eab53c3f5AD348A787752f/info.json new file mode 100644 index 00000000..ccebeb83 --- /dev/null +++ b/blockchains/ethereum/assets/0x906b3f8b7845840188Eab53c3f5AD348A787752f/info.json @@ -0,0 +1,11 @@ +{ + "name": "DoradoToken", + "symbol": "DOR", + "type": "ERC20", + "decimals": 15, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x906b3f8b7845840188Eab53c3f5AD348A787752f", + "status": "abandoned", + "id": "0x906b3f8b7845840188Eab53c3f5AD348A787752f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x906b3f8b7845840188Eab53c3f5AD348A787752f/logo.png b/blockchains/ethereum/assets/0x906b3f8b7845840188Eab53c3f5AD348A787752f/logo.png new file mode 100644 index 00000000..6353f86f Binary files /dev/null and b/blockchains/ethereum/assets/0x906b3f8b7845840188Eab53c3f5AD348A787752f/logo.png differ diff --git a/blockchains/ethereum/assets/0x9073Ee83b6CE96C444547DdCAf777b9352163581/info.json b/blockchains/ethereum/assets/0x9073Ee83b6CE96C444547DdCAf777b9352163581/info.json new file mode 100644 index 00000000..629ef2b0 --- /dev/null +++ b/blockchains/ethereum/assets/0x9073Ee83b6CE96C444547DdCAf777b9352163581/info.json @@ -0,0 +1,11 @@ +{ + "name": "Synth sBTC", + "symbol": "sBTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9073Ee83b6CE96C444547DdCAf777b9352163581", + "status": "abandoned", + "id": "0x9073Ee83b6CE96C444547DdCAf777b9352163581" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9073Ee83b6CE96C444547DdCAf777b9352163581/logo.png b/blockchains/ethereum/assets/0x9073Ee83b6CE96C444547DdCAf777b9352163581/logo.png new file mode 100644 index 00000000..e0ceb770 Binary files /dev/null and b/blockchains/ethereum/assets/0x9073Ee83b6CE96C444547DdCAf777b9352163581/logo.png differ diff --git a/blockchains/ethereum/assets/0x90774A6B6a4950D867A16D85F77546961d9aFccb/info.json b/blockchains/ethereum/assets/0x90774A6B6a4950D867A16D85F77546961d9aFccb/info.json new file mode 100644 index 00000000..83c8d90d --- /dev/null +++ b/blockchains/ethereum/assets/0x90774A6B6a4950D867A16D85F77546961d9aFccb/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C548594", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x90774A6B6a4950D867A16D85F77546961d9aFccb", + "status": "abandoned", + "id": "0x90774A6B6a4950D867A16D85F77546961d9aFccb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x90774A6B6a4950D867A16D85F77546961d9aFccb/logo.png b/blockchains/ethereum/assets/0x90774A6B6a4950D867A16D85F77546961d9aFccb/logo.png new file mode 100644 index 00000000..4bc946ef Binary files /dev/null and b/blockchains/ethereum/assets/0x90774A6B6a4950D867A16D85F77546961d9aFccb/logo.png differ diff --git a/blockchains/ethereum/assets/0x907cb97615b7cD7320Bc89bb7CDB46e37432eBe7/info.json b/blockchains/ethereum/assets/0x907cb97615b7cD7320Bc89bb7CDB46e37432eBe7/info.json new file mode 100644 index 00000000..9c4e6a60 --- /dev/null +++ b/blockchains/ethereum/assets/0x907cb97615b7cD7320Bc89bb7CDB46e37432eBe7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fren.community", + "symbol": "Frens", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://frens.link/", + "explorer": "https://etherscan.io/token/0x907cb97615b7cD7320Bc89bb7CDB46e37432eBe7", + "status": "abandoned", + "id": "0x907cb97615b7cD7320Bc89bb7CDB46e37432eBe7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x907cb97615b7cD7320Bc89bb7CDB46e37432eBe7/logo.png b/blockchains/ethereum/assets/0x907cb97615b7cD7320Bc89bb7CDB46e37432eBe7/logo.png new file mode 100644 index 00000000..891680cb Binary files /dev/null and b/blockchains/ethereum/assets/0x907cb97615b7cD7320Bc89bb7CDB46e37432eBe7/logo.png differ diff --git a/blockchains/ethereum/assets/0x908266C1192628371Cff7AD2F5Eba4dE061a0ac5/info.json b/blockchains/ethereum/assets/0x908266C1192628371Cff7AD2F5Eba4dE061a0ac5/info.json new file mode 100644 index 00000000..32fc0711 --- /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 00000000..558374fa Binary files /dev/null and b/blockchains/ethereum/assets/0x908266C1192628371Cff7AD2F5Eba4dE061a0ac5/logo.png differ diff --git a/blockchains/ethereum/assets/0x908C44D44334a9c70e28f3a15A737B550Ca34aBe/info.json b/blockchains/ethereum/assets/0x908C44D44334a9c70e28f3a15A737B550Ca34aBe/info.json new file mode 100644 index 00000000..16cbd05d --- /dev/null +++ b/blockchains/ethereum/assets/0x908C44D44334a9c70e28f3a15A737B550Ca34aBe/info.json @@ -0,0 +1,11 @@ +{ + "name": "BEE CASHBACK HOME", + "symbol": "BCH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x908C44D44334a9c70e28f3a15A737B550Ca34aBe", + "status": "abandoned", + "id": "0x908C44D44334a9c70e28f3a15A737B550Ca34aBe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x908C44D44334a9c70e28f3a15A737B550Ca34aBe/logo.png b/blockchains/ethereum/assets/0x908C44D44334a9c70e28f3a15A737B550Ca34aBe/logo.png new file mode 100644 index 00000000..963209e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x908C44D44334a9c70e28f3a15A737B550Ca34aBe/logo.png differ diff --git a/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/info.json b/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/info.json new file mode 100644 index 00000000..f197d71e --- /dev/null +++ b/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/info.json @@ -0,0 +1,73 @@ +{ + "name": "$ZKP Token", + "symbol": "$ZKP", + "type": "ERC20", + "decimals": 18, + "description": "Panther Protocol Token", + "website": "https://pantherprotocol.io", + "explorer": "https://etherscan.io/token/0x909E34d3f6124C324ac83DccA84b74398a6fa173", + "status": "active", + "id": "0x909E34d3f6124C324ac83DccA84b74398a6fa173", + "links": [ + { + "name": "blog", + "url": "https://blog.pantherprotocol.io" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/panther-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/panther-protocol/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/WZuRnMCZ4c" + }, + { + "name": "docs", + "url": "https://docs.pantherprotocol.io/" + }, + { + "name": "facebook", + "url": "https://facebook.com/Panther-Protocol-102781158610564/" + }, + { + "name": "github", + "url": "https://github.com/pantherprotocol" + }, + { + "name": "medium", + "url": "https://medium.com/@panther-protocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/PantherProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/pantherprotocol" + }, + { + "name": "telegram_news", + "url": "https://t.me/pantherprotocolann" + }, + { + "name": "x", + "url": "https://x.com/ZkPanther" + }, + { + "name": "whitepaper", + "url": "https://pantherprotocol.io/resources/panther-protocol-v-1-0-1.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/PantherProtocol" + } + ], + "tags": [ + "privacy", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/logo.png b/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/logo.png new file mode 100644 index 00000000..a1a26fbc Binary files /dev/null and b/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/logo.png differ diff --git a/blockchains/ethereum/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json b/blockchains/ethereum/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json new file mode 100644 index 00000000..401be355 --- /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 00000000..c4ee269a Binary files /dev/null and b/blockchains/ethereum/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/logo.png differ diff --git a/blockchains/ethereum/assets/0x90B831fa3Bebf58E9744A14D638E25B4eE06f9Bc/info.json b/blockchains/ethereum/assets/0x90B831fa3Bebf58E9744A14D638E25B4eE06f9Bc/info.json new file mode 100644 index 00000000..22377c1a --- /dev/null +++ b/blockchains/ethereum/assets/0x90B831fa3Bebf58E9744A14D638E25B4eE06f9Bc/info.json @@ -0,0 +1,11 @@ +{ + "name": "MIMO Parallel Governance Token (MIMO)", + "type": "ERC20", + "symbol": "MIMO", + "decimals": 18, + "website": "https://mimo.capital/", + "description": "MIMO token is the Governance Token of PAR Token", + "explorer": "https://etherscan.io/token/0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc", + "status": "active", + "id": "0x90B831fa3Bebf58E9744A14D638E25B4eE06f9Bc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x90B831fa3Bebf58E9744A14D638E25B4eE06f9Bc/logo.png b/blockchains/ethereum/assets/0x90B831fa3Bebf58E9744A14D638E25B4eE06f9Bc/logo.png new file mode 100644 index 00000000..516b3472 Binary files /dev/null and b/blockchains/ethereum/assets/0x90B831fa3Bebf58E9744A14D638E25B4eE06f9Bc/logo.png differ diff --git a/blockchains/ethereum/assets/0x90D46A9636B973f18186541d1B04ed3621a49Cb0/info.json b/blockchains/ethereum/assets/0x90D46A9636B973f18186541d1B04ed3621a49Cb0/info.json new file mode 100644 index 00000000..39c7e4b4 --- /dev/null +++ b/blockchains/ethereum/assets/0x90D46A9636B973f18186541d1B04ed3621a49Cb0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Natmin", + "symbol": "NAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.natmin.io/", + "explorer": "https://etherscan.io/token/0x90D46A9636B973f18186541d1B04ed3621a49Cb0", + "status": "abandoned", + "id": "0x90D46A9636B973f18186541d1B04ed3621a49Cb0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x90D46A9636B973f18186541d1B04ed3621a49Cb0/logo.png b/blockchains/ethereum/assets/0x90D46A9636B973f18186541d1B04ed3621a49Cb0/logo.png new file mode 100644 index 00000000..bc4ef596 Binary files /dev/null and b/blockchains/ethereum/assets/0x90D46A9636B973f18186541d1B04ed3621a49Cb0/logo.png differ diff --git a/blockchains/ethereum/assets/0x90D702f071d2af33032943137AD0aB4280705817/info.json b/blockchains/ethereum/assets/0x90D702f071d2af33032943137AD0aB4280705817/info.json new file mode 100644 index 00000000..06f8d70d --- /dev/null +++ b/blockchains/ethereum/assets/0x90D702f071d2af33032943137AD0aB4280705817/info.json @@ -0,0 +1,29 @@ +{ + "name": "yffs.finance", + "website": "https://yffs.finance/", + "description": "YFFS adopts a modular design. Modularity refers to the combination of various elements of the product to form a subsystem with specific functions. We combine these subsystem as a universal module with other modules to create a new system with multiple functions and performance.", + "explorer": "https://etherscan.io/token/0x90D702f071d2af33032943137AD0aB4280705817", + "type": "ERC20", + "symbol": "YFFS", + "decimals": 18, + "status": "active", + "id": "0x90D702f071d2af33032943137AD0aB4280705817", + "links": [ + { + "name": "github", + "url": "https://github.com/yffsfinance" + }, + { + "name": "x", + "url": "https://x.com/yffsfinance" + }, + { + "name": "telegram", + "url": "https://t.me/yffsfinance" + }, + { + "name": "medium", + "url": "https://medium.com/@yffs.finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x90D702f071d2af33032943137AD0aB4280705817/logo.png b/blockchains/ethereum/assets/0x90D702f071d2af33032943137AD0aB4280705817/logo.png new file mode 100644 index 00000000..6f16808a Binary files /dev/null and b/blockchains/ethereum/assets/0x90D702f071d2af33032943137AD0aB4280705817/logo.png differ diff --git a/blockchains/ethereum/assets/0x90DE74265a416e1393A450752175AED98fe11517/info.json b/blockchains/ethereum/assets/0x90DE74265a416e1393A450752175AED98fe11517/info.json new file mode 100644 index 00000000..3c1fe526 --- /dev/null +++ b/blockchains/ethereum/assets/0x90DE74265a416e1393A450752175AED98fe11517/info.json @@ -0,0 +1,21 @@ +{ + "name": "Unlock Protocol", + "symbol": "UDT", + "type": "ERC20", + "decimals": 18, + "description": "Unlock lets you easily lock and manage access to your content, apps, community and even real life events and spaces.", + "website": "https://unlock-protocol.com/", + "explorer": "https://etherscan.io/token/0x90de74265a416e1393a450752175aed98fe11517", + "status": "active", + "id": "0x90DE74265a416e1393A450752175AED98fe11517", + "links": [ + { + "name": "x", + "url": "https://x.com/Unlock Protocol" + }, + { + "name": "telegram", + "url": "https://t.me/unlockprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x90DE74265a416e1393A450752175AED98fe11517/logo.png b/blockchains/ethereum/assets/0x90DE74265a416e1393A450752175AED98fe11517/logo.png new file mode 100644 index 00000000..583d7245 Binary files /dev/null and b/blockchains/ethereum/assets/0x90DE74265a416e1393A450752175AED98fe11517/logo.png differ diff --git a/blockchains/ethereum/assets/0x90F08Cc8ddc43f5C01224F67fDf4640995139e8F/info.json b/blockchains/ethereum/assets/0x90F08Cc8ddc43f5C01224F67fDf4640995139e8F/info.json new file mode 100644 index 00000000..b1e5da72 --- /dev/null +++ b/blockchains/ethereum/assets/0x90F08Cc8ddc43f5C01224F67fDf4640995139e8F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethash", + "symbol": "HETH", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x90F08Cc8ddc43f5C01224F67fDf4640995139e8F", + "status": "abandoned", + "id": "0x90F08Cc8ddc43f5C01224F67fDf4640995139e8F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x90F08Cc8ddc43f5C01224F67fDf4640995139e8F/logo.png b/blockchains/ethereum/assets/0x90F08Cc8ddc43f5C01224F67fDf4640995139e8F/logo.png new file mode 100644 index 00000000..b5122488 Binary files /dev/null and b/blockchains/ethereum/assets/0x90F08Cc8ddc43f5C01224F67fDf4640995139e8F/logo.png differ diff --git a/blockchains/ethereum/assets/0x90F7079D35A3e35503d83323027d28fE6bd1780D/info.json b/blockchains/ethereum/assets/0x90F7079D35A3e35503d83323027d28fE6bd1780D/info.json new file mode 100644 index 00000000..f598fae7 --- /dev/null +++ b/blockchains/ethereum/assets/0x90F7079D35A3e35503d83323027d28fE6bd1780D/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-10/30M10", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x90F7079D35A3e35503d83323027d28fE6bd1780D", + "status": "abandoned", + "id": "0x90F7079D35A3e35503d83323027d28fE6bd1780D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x90F7079D35A3e35503d83323027d28fE6bd1780D/logo.png b/blockchains/ethereum/assets/0x90F7079D35A3e35503d83323027d28fE6bd1780D/logo.png new file mode 100644 index 00000000..cb63e080 Binary files /dev/null and b/blockchains/ethereum/assets/0x90F7079D35A3e35503d83323027d28fE6bd1780D/logo.png differ diff --git a/blockchains/ethereum/assets/0x90aBeB53701C89e8d7Aca6A03d105576Ccd6386E/info.json b/blockchains/ethereum/assets/0x90aBeB53701C89e8d7Aca6A03d105576Ccd6386E/info.json new file mode 100644 index 00000000..5e543597 --- /dev/null +++ b/blockchains/ethereum/assets/0x90aBeB53701C89e8d7Aca6A03d105576Ccd6386E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vaunker", + "symbol": "VAN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x90aBeB53701C89e8d7Aca6A03d105576Ccd6386E", + "status": "abandoned", + "id": "0x90aBeB53701C89e8d7Aca6A03d105576Ccd6386E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x90aBeB53701C89e8d7Aca6A03d105576Ccd6386E/logo.png b/blockchains/ethereum/assets/0x90aBeB53701C89e8d7Aca6A03d105576Ccd6386E/logo.png new file mode 100644 index 00000000..777c6524 Binary files /dev/null and b/blockchains/ethereum/assets/0x90aBeB53701C89e8d7Aca6A03d105576Ccd6386E/logo.png differ diff --git a/blockchains/ethereum/assets/0x90cCc1097A9646E8B12B51C52B4Fd298f014cD0C/info.json b/blockchains/ethereum/assets/0x90cCc1097A9646E8B12B51C52B4Fd298f014cD0C/info.json new file mode 100644 index 00000000..bb29079d --- /dev/null +++ b/blockchains/ethereum/assets/0x90cCc1097A9646E8B12B51C52B4Fd298f014cD0C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Demintiger", + "symbol": "DEMIN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x90cCc1097A9646E8B12B51C52B4Fd298f014cD0C", + "status": "abandoned", + "id": "0x90cCc1097A9646E8B12B51C52B4Fd298f014cD0C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x90cCc1097A9646E8B12B51C52B4Fd298f014cD0C/logo.png b/blockchains/ethereum/assets/0x90cCc1097A9646E8B12B51C52B4Fd298f014cD0C/logo.png new file mode 100644 index 00000000..842c0b2e Binary files /dev/null and b/blockchains/ethereum/assets/0x90cCc1097A9646E8B12B51C52B4Fd298f014cD0C/logo.png differ diff --git a/blockchains/ethereum/assets/0x90f10470a7E90d9cB74Ceb57cC7AF22a8c4994FF/info.json b/blockchains/ethereum/assets/0x90f10470a7E90d9cB74Ceb57cC7AF22a8c4994FF/info.json new file mode 100644 index 00000000..b27ee81e --- /dev/null +++ b/blockchains/ethereum/assets/0x90f10470a7E90d9cB74Ceb57cC7AF22a8c4994FF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Union Finance", + "symbol": "UFT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x90f10470a7E90d9cB74Ceb57cC7AF22a8c4994FF", + "status": "abandoned", + "id": "0x90f10470a7E90d9cB74Ceb57cC7AF22a8c4994FF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x90f10470a7E90d9cB74Ceb57cC7AF22a8c4994FF/logo.png b/blockchains/ethereum/assets/0x90f10470a7E90d9cB74Ceb57cC7AF22a8c4994FF/logo.png new file mode 100644 index 00000000..9269bcca Binary files /dev/null and b/blockchains/ethereum/assets/0x90f10470a7E90d9cB74Ceb57cC7AF22a8c4994FF/logo.png differ diff --git a/blockchains/ethereum/assets/0x9108cbDb89017221EE6eA7eE48EaE4a06842c75f/info.json b/blockchains/ethereum/assets/0x9108cbDb89017221EE6eA7eE48EaE4a06842c75f/info.json new file mode 100644 index 00000000..d68c5e3b --- /dev/null +++ b/blockchains/ethereum/assets/0x9108cbDb89017221EE6eA7eE48EaE4a06842c75f/info.json @@ -0,0 +1,11 @@ +{ + "name": "LmexToken", + "symbol": "LMT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9108cbDb89017221EE6eA7eE48EaE4a06842c75f", + "status": "abandoned", + "id": "0x9108cbDb89017221EE6eA7eE48EaE4a06842c75f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9108cbDb89017221EE6eA7eE48EaE4a06842c75f/logo.png b/blockchains/ethereum/assets/0x9108cbDb89017221EE6eA7eE48EaE4a06842c75f/logo.png new file mode 100644 index 00000000..61ab0aeb Binary files /dev/null and b/blockchains/ethereum/assets/0x9108cbDb89017221EE6eA7eE48EaE4a06842c75f/logo.png differ diff --git a/blockchains/ethereum/assets/0x910Dfc18D6EA3D6a7124A6F8B5458F281060fa4c/info.json b/blockchains/ethereum/assets/0x910Dfc18D6EA3D6a7124A6F8B5458F281060fa4c/info.json new file mode 100644 index 00000000..c3476ec2 --- /dev/null +++ b/blockchains/ethereum/assets/0x910Dfc18D6EA3D6a7124A6F8B5458F281060fa4c/info.json @@ -0,0 +1,11 @@ +{ + "name": "X8XToken", + "symbol": "X8X", + "type": "ERC20", + "decimals": 18, + "description": "X8Currency is the only digital currency that offers an alternative to value preservation assets. An AI trades 8 currencies in its basket to fight inflation whilst remaining fully liquid and cash backed.", + "website": "https://x8currency.com/", + "explorer": "https://etherscan.io/token/0x910Dfc18D6EA3D6a7124A6F8B5458F281060fa4c", + "status": "active", + "id": "0x910Dfc18D6EA3D6a7124A6F8B5458F281060fa4c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x910Dfc18D6EA3D6a7124A6F8B5458F281060fa4c/logo.png b/blockchains/ethereum/assets/0x910Dfc18D6EA3D6a7124A6F8B5458F281060fa4c/logo.png new file mode 100755 index 00000000..936a6b1e Binary files /dev/null and b/blockchains/ethereum/assets/0x910Dfc18D6EA3D6a7124A6F8B5458F281060fa4c/logo.png differ diff --git a/blockchains/ethereum/assets/0x9138E38a0316E25459b376e987Dd270B626709B8/info.json b/blockchains/ethereum/assets/0x9138E38a0316E25459b376e987Dd270B626709B8/info.json new file mode 100644 index 00000000..fa13d694 --- /dev/null +++ b/blockchains/ethereum/assets/0x9138E38a0316E25459b376e987Dd270B626709B8/info.json @@ -0,0 +1,11 @@ +{ + "name": "数码链", + "symbol": "SML", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9138E38a0316E25459b376e987Dd270B626709B8", + "status": "abandoned", + "id": "0x9138E38a0316E25459b376e987Dd270B626709B8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9138E38a0316E25459b376e987Dd270B626709B8/logo.png b/blockchains/ethereum/assets/0x9138E38a0316E25459b376e987Dd270B626709B8/logo.png new file mode 100755 index 00000000..f5e11214 Binary files /dev/null and b/blockchains/ethereum/assets/0x9138E38a0316E25459b376e987Dd270B626709B8/logo.png differ diff --git a/blockchains/ethereum/assets/0x915570538A5A5802351Fd18963f2552Fb2862CdC/info.json b/blockchains/ethereum/assets/0x915570538A5A5802351Fd18963f2552Fb2862CdC/info.json new file mode 100644 index 00000000..399e2b9c --- /dev/null +++ b/blockchains/ethereum/assets/0x915570538A5A5802351Fd18963f2552Fb2862CdC/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 223-CN15", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x915570538A5A5802351Fd18963f2552Fb2862CdC", + "status": "abandoned", + "id": "0x915570538A5A5802351Fd18963f2552Fb2862CdC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x915570538A5A5802351Fd18963f2552Fb2862CdC/logo.png b/blockchains/ethereum/assets/0x915570538A5A5802351Fd18963f2552Fb2862CdC/logo.png new file mode 100644 index 00000000..9e3ec3cf Binary files /dev/null and b/blockchains/ethereum/assets/0x915570538A5A5802351Fd18963f2552Fb2862CdC/logo.png differ diff --git a/blockchains/ethereum/assets/0x91600b412A68F2CB7c0FeD48A70127CC75341DBa/info.json b/blockchains/ethereum/assets/0x91600b412A68F2CB7c0FeD48A70127CC75341DBa/info.json new file mode 100644 index 00000000..8df5980f --- /dev/null +++ b/blockchains/ethereum/assets/0x91600b412A68F2CB7c0FeD48A70127CC75341DBa/info.json @@ -0,0 +1,11 @@ +{ + "name": "WrapOMC", + "website": "https://ecocelium.io", + "description": "Wrapped version of Ormeus Cash (OMC)", + "explorer": "https://etherscan.io/token/0x91600b412A68F2CB7c0FeD48A70127CC75341DBa", + "type": "ERC20", + "symbol": "eOMC", + "decimals": 18, + "status": "active", + "id": "0x91600b412A68F2CB7c0FeD48A70127CC75341DBa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x91600b412A68F2CB7c0FeD48A70127CC75341DBa/logo.png b/blockchains/ethereum/assets/0x91600b412A68F2CB7c0FeD48A70127CC75341DBa/logo.png new file mode 100644 index 00000000..a25ea1c6 Binary files /dev/null and b/blockchains/ethereum/assets/0x91600b412A68F2CB7c0FeD48A70127CC75341DBa/logo.png differ diff --git a/blockchains/ethereum/assets/0x91654eAf7828E7e05d2847Aa27405D9925C3dc0d/info.json b/blockchains/ethereum/assets/0x91654eAf7828E7e05d2847Aa27405D9925C3dc0d/info.json new file mode 100644 index 00000000..ded0f9ab --- /dev/null +++ b/blockchains/ethereum/assets/0x91654eAf7828E7e05d2847Aa27405D9925C3dc0d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ubiquitous Business Credit 2.0", + "symbol": "UBC", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x91654eAf7828E7e05d2847Aa27405D9925C3dc0d", + "status": "abandoned", + "id": "0x91654eAf7828E7e05d2847Aa27405D9925C3dc0d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x91654eAf7828E7e05d2847Aa27405D9925C3dc0d/logo.png b/blockchains/ethereum/assets/0x91654eAf7828E7e05d2847Aa27405D9925C3dc0d/logo.png new file mode 100644 index 00000000..5cca3104 Binary files /dev/null and b/blockchains/ethereum/assets/0x91654eAf7828E7e05d2847Aa27405D9925C3dc0d/logo.png differ diff --git a/blockchains/ethereum/assets/0x916885426255235DA7a0BD90447986c00675f9EC/info.json b/blockchains/ethereum/assets/0x916885426255235DA7a0BD90447986c00675f9EC/info.json new file mode 100644 index 00000000..fa97d26b --- /dev/null +++ b/blockchains/ethereum/assets/0x916885426255235DA7a0BD90447986c00675f9EC/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoalTime N", + "symbol": "GTX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://goaltimen.com/", + "explorer": "https://etherscan.io/token/0x916885426255235DA7a0BD90447986c00675f9EC", + "status": "abandoned", + "id": "0x916885426255235DA7a0BD90447986c00675f9EC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x916885426255235DA7a0BD90447986c00675f9EC/logo.png b/blockchains/ethereum/assets/0x916885426255235DA7a0BD90447986c00675f9EC/logo.png new file mode 100644 index 00000000..f30e5f4b Binary files /dev/null and b/blockchains/ethereum/assets/0x916885426255235DA7a0BD90447986c00675f9EC/logo.png differ diff --git a/blockchains/ethereum/assets/0x916c5DE09cF63f6602d1e1793FB41F6437814A62/info.json b/blockchains/ethereum/assets/0x916c5DE09cF63f6602d1e1793FB41F6437814A62/info.json new file mode 100644 index 00000000..dad730c1 --- /dev/null +++ b/blockchains/ethereum/assets/0x916c5DE09cF63f6602d1e1793FB41F6437814A62/info.json @@ -0,0 +1,44 @@ +{ + "name": "JACY", + "type": "ERC20", + "symbol": "JACY", + "decimals": 9, + "website": "https://jacytoken.io", + "description": "We are a community run crypto currency that thrives on your involvement. We look forward to talking with you and having you join us on this adventure.", + "explorer": "https://etherscan.io/token/0x916c5de09cf63f6602d1e1793fb41f6437814a62", + "status": "active", + "id": "0x916c5DE09cF63f6602d1e1793FB41F6437814A62", + "links": [ + { + "name": "x", + "url": "https://x.com/JacyToken" + }, + { + "name": "telegram", + "url": "https://t.me/JACYWAYA" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/JacyToken/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCpD42f4Z29c4KD6gUgfJt0A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jacy/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/jacy" + }, + { + "name": "whitepaper", + "url": "https://jacytoken.io/Jacy-Token-WP.pdf" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x916c5DE09cF63f6602d1e1793FB41F6437814A62/logo.png b/blockchains/ethereum/assets/0x916c5DE09cF63f6602d1e1793FB41F6437814A62/logo.png new file mode 100644 index 00000000..9500eb08 Binary files /dev/null and b/blockchains/ethereum/assets/0x916c5DE09cF63f6602d1e1793FB41F6437814A62/logo.png differ diff --git a/blockchains/ethereum/assets/0x9195E00402abe385f2D00A32Af40b271F2e87925/info.json b/blockchains/ethereum/assets/0x9195E00402abe385f2D00A32Af40b271F2e87925/info.json new file mode 100644 index 00000000..ceaea841 --- /dev/null +++ b/blockchains/ethereum/assets/0x9195E00402abe385f2D00A32Af40b271F2e87925/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETHEERA", + "symbol": "ETA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.etheera.com/", + "explorer": "https://etherscan.io/token/0x9195E00402abe385f2D00A32Af40b271F2e87925", + "status": "abandoned", + "id": "0x9195E00402abe385f2D00A32Af40b271F2e87925" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9195E00402abe385f2D00A32Af40b271F2e87925/logo.png b/blockchains/ethereum/assets/0x9195E00402abe385f2D00A32Af40b271F2e87925/logo.png new file mode 100644 index 00000000..b307d350 Binary files /dev/null and b/blockchains/ethereum/assets/0x9195E00402abe385f2D00A32Af40b271F2e87925/logo.png differ diff --git a/blockchains/ethereum/assets/0x9196E18Bc349B1F64Bc08784eaE259525329a1ad/info.json b/blockchains/ethereum/assets/0x9196E18Bc349B1F64Bc08784eaE259525329a1ad/info.json new file mode 100644 index 00000000..f6f42bcd --- /dev/null +++ b/blockchains/ethereum/assets/0x9196E18Bc349B1F64Bc08784eaE259525329a1ad/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pussy Token", + "website": "https://pussy.financial/", + "description": "PUSSY is an ERC20 token built on the Ethereum blockchain. The project is found on the idea that strong community foundation and goals are the fundamental building blocks of any token. PUSSY has built its foundation as a meme coin to rival the likes of DOGE and SHIB, but also plans it one step further by creating future utility for the token and DAPPs built on the ecosystem.", + "explorer": "https://etherscan.io/token/0x9196e18bc349b1f64bc08784eae259525329a1ad", + "type": "ERC20", + "symbol": "PUSSY", + "decimals": 18, + "status": "active", + "id": "0x9196E18Bc349B1F64Bc08784eaE259525329a1ad" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9196E18Bc349B1F64Bc08784eaE259525329a1ad/logo.png b/blockchains/ethereum/assets/0x9196E18Bc349B1F64Bc08784eaE259525329a1ad/logo.png new file mode 100644 index 00000000..809b3262 Binary files /dev/null and b/blockchains/ethereum/assets/0x9196E18Bc349B1F64Bc08784eaE259525329a1ad/logo.png differ diff --git a/blockchains/ethereum/assets/0x919D0131fA5F77D99FBBBBaCe50bCb6E62332bf2/info.json b/blockchains/ethereum/assets/0x919D0131fA5F77D99FBBBBaCe50bCb6E62332bf2/info.json new file mode 100644 index 00000000..c6713e40 --- /dev/null +++ b/blockchains/ethereum/assets/0x919D0131fA5F77D99FBBBBaCe50bCb6E62332bf2/info.json @@ -0,0 +1,11 @@ +{ + "name": "BorisCoin", + "symbol": "BORIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x919D0131fA5F77D99FBBBBaCe50bCb6E62332bf2", + "status": "abandoned", + "id": "0x919D0131fA5F77D99FBBBBaCe50bCb6E62332bf2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x919D0131fA5F77D99FBBBBaCe50bCb6E62332bf2/logo.png b/blockchains/ethereum/assets/0x919D0131fA5F77D99FBBBBaCe50bCb6E62332bf2/logo.png new file mode 100755 index 00000000..34451127 Binary files /dev/null and b/blockchains/ethereum/assets/0x919D0131fA5F77D99FBBBBaCe50bCb6E62332bf2/logo.png differ diff --git a/blockchains/ethereum/assets/0x919D3a363776B1ceec9352610c82dfaf80Edc32d/info.json b/blockchains/ethereum/assets/0x919D3a363776B1ceec9352610c82dfaf80Edc32d/info.json new file mode 100644 index 00000000..359b640c --- /dev/null +++ b/blockchains/ethereum/assets/0x919D3a363776B1ceec9352610c82dfaf80Edc32d/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoldFund", + "symbol": "GFUN", + "type": "ERC20", + "decimals": 18, + "description": " is a cryptocurrency and operates on the Ethereum platform.", + "website": "http://www.goldfund.io/", + "explorer": "https://etherscan.io/token/0x919D3a363776B1ceec9352610c82dfaf80Edc32d", + "status": "abandoned", + "id": "0x919D3a363776B1ceec9352610c82dfaf80Edc32d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x919D3a363776B1ceec9352610c82dfaf80Edc32d/logo.png b/blockchains/ethereum/assets/0x919D3a363776B1ceec9352610c82dfaf80Edc32d/logo.png new file mode 100755 index 00000000..bbf4e5ac Binary files /dev/null and b/blockchains/ethereum/assets/0x919D3a363776B1ceec9352610c82dfaf80Edc32d/logo.png differ diff --git a/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/info.json b/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/info.json new file mode 100644 index 00000000..88cd1cd3 --- /dev/null +++ b/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/info.json @@ -0,0 +1,26 @@ +{ + "name": "Aergo", + "website": "https://aergo.io", + "description": "Aergo describes itself as an open-source enterprise blockchain platform optimized for hybrid deployments, which consist of both permissioned and permissionless blockchain architectures.", + "explorer": "https://etherscan.io/token/0x91af0fbb28aba7e31403cb457106ce79397fd4e6", + "research": "https://research.binance.com/en/projects/aergo", + "type": "ERC20", + "symbol": "AERGO", + "decimals": 18, + "status": "active", + "id": "0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6", + "links": [ + { + "name": "github", + "url": "https://github.com/aergoio" + }, + { + "name": "telegram", + "url": "https://t.me/aergoannouncements" + }, + { + "name": "x", + "url": "https://x.com/AERGO_IO" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/logo.png b/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/logo.png new file mode 100644 index 00000000..bf6158f0 Binary files /dev/null and b/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/logo.png differ diff --git a/blockchains/ethereum/assets/0x91B9C68D3dad6Ae215b9c2cE65dAf9beF875E514/info.json b/blockchains/ethereum/assets/0x91B9C68D3dad6Ae215b9c2cE65dAf9beF875E514/info.json new file mode 100644 index 00000000..902e64cf --- /dev/null +++ b/blockchains/ethereum/assets/0x91B9C68D3dad6Ae215b9c2cE65dAf9beF875E514/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "DXTR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x91B9C68D3dad6Ae215b9c2cE65dAf9beF875E514", + "status": "abandoned", + "id": "0x91B9C68D3dad6Ae215b9c2cE65dAf9beF875E514" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x91B9C68D3dad6Ae215b9c2cE65dAf9beF875E514/logo.png b/blockchains/ethereum/assets/0x91B9C68D3dad6Ae215b9c2cE65dAf9beF875E514/logo.png new file mode 100644 index 00000000..e269223f Binary files /dev/null and b/blockchains/ethereum/assets/0x91B9C68D3dad6Ae215b9c2cE65dAf9beF875E514/logo.png differ diff --git a/blockchains/ethereum/assets/0x91BB2E3aa91d807c72363F9027EA58625cfa0056/info.json b/blockchains/ethereum/assets/0x91BB2E3aa91d807c72363F9027EA58625cfa0056/info.json new file mode 100644 index 00000000..eba04978 --- /dev/null +++ b/blockchains/ethereum/assets/0x91BB2E3aa91d807c72363F9027EA58625cfa0056/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mine Coin", + "symbol": "MIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x91BB2E3aa91d807c72363F9027EA58625cfa0056", + "status": "abandoned", + "id": "0x91BB2E3aa91d807c72363F9027EA58625cfa0056" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x91BB2E3aa91d807c72363F9027EA58625cfa0056/logo.png b/blockchains/ethereum/assets/0x91BB2E3aa91d807c72363F9027EA58625cfa0056/logo.png new file mode 100755 index 00000000..184de498 Binary files /dev/null and b/blockchains/ethereum/assets/0x91BB2E3aa91d807c72363F9027EA58625cfa0056/logo.png differ diff --git a/blockchains/ethereum/assets/0x91E84EC6101547C1FA39Dd565dd8b020E3c20CF2/info.json b/blockchains/ethereum/assets/0x91E84EC6101547C1FA39Dd565dd8b020E3c20CF2/info.json new file mode 100644 index 00000000..72fc4aac --- /dev/null +++ b/blockchains/ethereum/assets/0x91E84EC6101547C1FA39Dd565dd8b020E3c20CF2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cannadrix", + "symbol": "CND", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://cannadrix.com/", + "explorer": "https://etherscan.io/token/0x91E84EC6101547C1FA39Dd565dd8b020E3c20CF2", + "status": "abandoned", + "id": "0x91E84EC6101547C1FA39Dd565dd8b020E3c20CF2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x91E84EC6101547C1FA39Dd565dd8b020E3c20CF2/logo.png b/blockchains/ethereum/assets/0x91E84EC6101547C1FA39Dd565dd8b020E3c20CF2/logo.png new file mode 100644 index 00000000..5d5cd010 Binary files /dev/null and b/blockchains/ethereum/assets/0x91E84EC6101547C1FA39Dd565dd8b020E3c20CF2/logo.png differ diff --git a/blockchains/ethereum/assets/0x91Ee7472540CeF675EbC11e3fac69dE24C38495E/info.json b/blockchains/ethereum/assets/0x91Ee7472540CeF675EbC11e3fac69dE24C38495E/info.json new file mode 100644 index 00000000..26f83cd2 --- /dev/null +++ b/blockchains/ethereum/assets/0x91Ee7472540CeF675EbC11e3fac69dE24C38495E/info.json @@ -0,0 +1,11 @@ +{ + "name": "XAVIA", + "symbol": "XVA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x91Ee7472540CeF675EbC11e3fac69dE24C38495E", + "status": "abandoned", + "id": "0x91Ee7472540CeF675EbC11e3fac69dE24C38495E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x91Ee7472540CeF675EbC11e3fac69dE24C38495E/logo.png b/blockchains/ethereum/assets/0x91Ee7472540CeF675EbC11e3fac69dE24C38495E/logo.png new file mode 100644 index 00000000..11d62d58 Binary files /dev/null and b/blockchains/ethereum/assets/0x91Ee7472540CeF675EbC11e3fac69dE24C38495E/logo.png differ diff --git a/blockchains/ethereum/assets/0x91F46Dd6EE5f3F8CE83287897938f7858f5761e4/info.json b/blockchains/ethereum/assets/0x91F46Dd6EE5f3F8CE83287897938f7858f5761e4/info.json new file mode 100644 index 00000000..ee203792 --- /dev/null +++ b/blockchains/ethereum/assets/0x91F46Dd6EE5f3F8CE83287897938f7858f5761e4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long LINK-DAI 2x v2", + "symbol": "dLLINK2x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x91F46Dd6EE5f3F8CE83287897938f7858f5761e4", + "status": "abandoned", + "id": "0x91F46Dd6EE5f3F8CE83287897938f7858f5761e4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x91F46Dd6EE5f3F8CE83287897938f7858f5761e4/logo.png b/blockchains/ethereum/assets/0x91F46Dd6EE5f3F8CE83287897938f7858f5761e4/logo.png new file mode 100644 index 00000000..0f86adcd Binary files /dev/null and b/blockchains/ethereum/assets/0x91F46Dd6EE5f3F8CE83287897938f7858f5761e4/logo.png differ diff --git a/blockchains/ethereum/assets/0x91d6f6e9026E43240ce6F06Af6a4b33129EBdE94/info.json b/blockchains/ethereum/assets/0x91d6f6e9026E43240ce6F06Af6a4b33129EBdE94/info.json new file mode 100644 index 00000000..74befbe5 --- /dev/null +++ b/blockchains/ethereum/assets/0x91d6f6e9026E43240ce6F06Af6a4b33129EBdE94/info.json @@ -0,0 +1,11 @@ +{ + "name": "RiveX", + "website": "https://rivex.io", + "description": "RiveX is a chain agnostic interoperable layer-2 solution across different blockchain protocols. RiveX aims to empower the next generation of decentralized applications, decentralized finance and enterprise solutions.", + "explorer": "https://etherscan.io/token/0x91d6f6e9026E43240ce6F06Af6a4b33129EBdE94", + "type": "ERC20", + "symbol": "RVX", + "decimals": 18, + "status": "active", + "id": "0x91d6f6e9026E43240ce6F06Af6a4b33129EBdE94" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x91d6f6e9026E43240ce6F06Af6a4b33129EBdE94/logo.png b/blockchains/ethereum/assets/0x91d6f6e9026E43240ce6F06Af6a4b33129EBdE94/logo.png new file mode 100644 index 00000000..f6c79ae7 Binary files /dev/null and b/blockchains/ethereum/assets/0x91d6f6e9026E43240ce6F06Af6a4b33129EBdE94/logo.png differ diff --git a/blockchains/ethereum/assets/0x91dFbEE3965baAEE32784c2d546B7a0C62F268c9/info.json b/blockchains/ethereum/assets/0x91dFbEE3965baAEE32784c2d546B7a0C62F268c9/info.json new file mode 100644 index 00000000..8402d628 --- /dev/null +++ b/blockchains/ethereum/assets/0x91dFbEE3965baAEE32784c2d546B7a0C62F268c9/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bondly", + "website": "https://www.bondly.finance", + "description": "Bondly is an interoperable, transparent and portable swap protocol designed to revolutionize traditional escrow methods and make everyone into their own digital marketplace.", + "explorer": "https://etherscan.io/token/0x91dfbee3965baaee32784c2d546b7a0c62f268c9", + "type": "ERC20", + "symbol": "BONDLY", + "decimals": 18, + "status": "active", + "id": "0x91dFbEE3965baAEE32784c2d546B7a0C62F268c9", + "links": [ + { + "name": "x", + "url": "https://x.com/BondlyFinance" + }, + { + "name": "telegram", + "url": "https://t.me/bondlyfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x91dFbEE3965baAEE32784c2d546B7a0C62F268c9/logo.png b/blockchains/ethereum/assets/0x91dFbEE3965baAEE32784c2d546B7a0C62F268c9/logo.png new file mode 100644 index 00000000..dc99d127 Binary files /dev/null and b/blockchains/ethereum/assets/0x91dFbEE3965baAEE32784c2d546B7a0C62F268c9/logo.png differ diff --git a/blockchains/ethereum/assets/0x91e64F39C1FE14492e8FDf5A8B0f305BD218C8A1/info.json b/blockchains/ethereum/assets/0x91e64F39C1FE14492e8FDf5A8B0f305BD218C8A1/info.json new file mode 100644 index 00000000..5c2414f7 --- /dev/null +++ b/blockchains/ethereum/assets/0x91e64F39C1FE14492e8FDf5A8B0f305BD218C8A1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vodi X", + "symbol": "VDX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://vodix.io/", + "explorer": "https://etherscan.io/token/0x91e64F39C1FE14492e8FDf5A8B0f305BD218C8A1", + "status": "abandoned", + "id": "0x91e64F39C1FE14492e8FDf5A8B0f305BD218C8A1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x91e64F39C1FE14492e8FDf5A8B0f305BD218C8A1/logo.png b/blockchains/ethereum/assets/0x91e64F39C1FE14492e8FDf5A8B0f305BD218C8A1/logo.png new file mode 100644 index 00000000..847b482e Binary files /dev/null and b/blockchains/ethereum/assets/0x91e64F39C1FE14492e8FDf5A8B0f305BD218C8A1/logo.png differ diff --git a/blockchains/ethereum/assets/0x91fbB2503AC69702061f1AC6885759Fc853e6EaE/info.json b/blockchains/ethereum/assets/0x91fbB2503AC69702061f1AC6885759Fc853e6EaE/info.json new file mode 100644 index 00000000..29ef2bbe --- /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 00000000..b271f10d Binary files /dev/null and b/blockchains/ethereum/assets/0x91fbB2503AC69702061f1AC6885759Fc853e6EaE/logo.png differ diff --git a/blockchains/ethereum/assets/0x9214eC02CB71CbA0ADA6896b8dA260736a67ab10/info.json b/blockchains/ethereum/assets/0x9214eC02CB71CbA0ADA6896b8dA260736a67ab10/info.json new file mode 100644 index 00000000..50f50fd1 --- /dev/null +++ b/blockchains/ethereum/assets/0x9214eC02CB71CbA0ADA6896b8dA260736a67ab10/info.json @@ -0,0 +1,11 @@ +{ + "name": "Real Estate Asset Ledger", + "symbol": "REAL", + "type": "ERC20", + "decimals": 18, + "description": "Token Real Estate Asset Ledger.", + "website": "https://www.real.markets", + "explorer": "https://etherscan.io/token/0x9214eC02CB71CbA0ADA6896b8dA260736a67ab10", + "status": "active", + "id": "0x9214eC02CB71CbA0ADA6896b8dA260736a67ab10" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9214eC02CB71CbA0ADA6896b8dA260736a67ab10/logo.png b/blockchains/ethereum/assets/0x9214eC02CB71CbA0ADA6896b8dA260736a67ab10/logo.png new file mode 100644 index 00000000..361ee954 Binary files /dev/null and b/blockchains/ethereum/assets/0x9214eC02CB71CbA0ADA6896b8dA260736a67ab10/logo.png differ diff --git a/blockchains/ethereum/assets/0x9216707C81438d9593c4e215BCBb0E7bB10d07F5/info.json b/blockchains/ethereum/assets/0x9216707C81438d9593c4e215BCBb0E7bB10d07F5/info.json new file mode 100644 index 00000000..20d5ba4c --- /dev/null +++ b/blockchains/ethereum/assets/0x9216707C81438d9593c4e215BCBb0E7bB10d07F5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Real Estate Coupon Token", + "symbol": "RECT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9216707C81438d9593c4e215BCBb0E7bB10d07F5", + "status": "abandoned", + "id": "0x9216707C81438d9593c4e215BCBb0E7bB10d07F5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9216707C81438d9593c4e215BCBb0E7bB10d07F5/logo.png b/blockchains/ethereum/assets/0x9216707C81438d9593c4e215BCBb0E7bB10d07F5/logo.png new file mode 100644 index 00000000..93ce50fd Binary files /dev/null and b/blockchains/ethereum/assets/0x9216707C81438d9593c4e215BCBb0E7bB10d07F5/logo.png differ diff --git a/blockchains/ethereum/assets/0x921D555a9258C3092C605708A153798EA094d41A/info.json b/blockchains/ethereum/assets/0x921D555a9258C3092C605708A153798EA094d41A/info.json new file mode 100644 index 00000000..bd221f0f --- /dev/null +++ b/blockchains/ethereum/assets/0x921D555a9258C3092C605708A153798EA094d41A/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C492982", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x921D555a9258C3092C605708A153798EA094d41A", + "status": "abandoned", + "id": "0x921D555a9258C3092C605708A153798EA094d41A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x921D555a9258C3092C605708A153798EA094d41A/logo.png b/blockchains/ethereum/assets/0x921D555a9258C3092C605708A153798EA094d41A/logo.png new file mode 100644 index 00000000..523656a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x921D555a9258C3092C605708A153798EA094d41A/logo.png differ diff --git a/blockchains/ethereum/assets/0x922105fAd8153F516bCfB829f56DC097a0E1D705/info.json b/blockchains/ethereum/assets/0x922105fAd8153F516bCfB829f56DC097a0E1D705/info.json new file mode 100644 index 00000000..a8d36559 --- /dev/null +++ b/blockchains/ethereum/assets/0x922105fAd8153F516bCfB829f56DC097a0E1D705/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yee - A Blockchain-powered & Cloud-based Social Ecosystem", + "symbol": "YEE", + "type": "ERC20", + "decimals": 18, + "description": "Next Generation Blockchain For a Trustful 5G World", + "website": "https://yeeco.io", + "explorer": "https://etherscan.io/token/0x922105fAd8153F516bCfB829f56DC097a0E1D705", + "status": "active", + "id": "0x922105fAd8153F516bCfB829f56DC097a0E1D705" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x922105fAd8153F516bCfB829f56DC097a0E1D705/logo.png b/blockchains/ethereum/assets/0x922105fAd8153F516bCfB829f56DC097a0E1D705/logo.png new file mode 100644 index 00000000..cc8b60df Binary files /dev/null and b/blockchains/ethereum/assets/0x922105fAd8153F516bCfB829f56DC097a0E1D705/logo.png differ diff --git a/blockchains/ethereum/assets/0x92298Fa0647b5dcFf6eEaBAb97c9Bd81b5c30D06/info.json b/blockchains/ethereum/assets/0x92298Fa0647b5dcFf6eEaBAb97c9Bd81b5c30D06/info.json new file mode 100644 index 00000000..7595aa86 --- /dev/null +++ b/blockchains/ethereum/assets/0x92298Fa0647b5dcFf6eEaBAb97c9Bd81b5c30D06/info.json @@ -0,0 +1,17 @@ +{ + "name": "LikeApp", + "description": "popular global platform for creating and sharing original videos.", + "website": "-", + "explorer": "https://etherscan.io/token/0x92298Fa0647b5dcFf6eEaBAb97c9Bd81b5c30D06", + "type": "ERC20", + "symbol": "LIKE", + "decimals": 0, + "status": "active", + "id": "0x92298Fa0647b5dcFf6eEaBAb97c9Bd81b5c30D06", + "links": [ + { + "name": "telegram", + "url": "https://t.me/likeapptoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x92298Fa0647b5dcFf6eEaBAb97c9Bd81b5c30D06/logo.png b/blockchains/ethereum/assets/0x92298Fa0647b5dcFf6eEaBAb97c9Bd81b5c30D06/logo.png new file mode 100644 index 00000000..ca0b8991 Binary files /dev/null and b/blockchains/ethereum/assets/0x92298Fa0647b5dcFf6eEaBAb97c9Bd81b5c30D06/logo.png differ diff --git a/blockchains/ethereum/assets/0x922aC473A3cC241fD3a0049Ed14536452D58D73c/info.json b/blockchains/ethereum/assets/0x922aC473A3cC241fD3a0049Ed14536452D58D73c/info.json new file mode 100644 index 00000000..dbab171c --- /dev/null +++ b/blockchains/ethereum/assets/0x922aC473A3cC241fD3a0049Ed14536452D58D73c/info.json @@ -0,0 +1,11 @@ +{ + "name": "VALID", + "symbol": "VLD", + "type": "ERC20", + "decimals": 18, + "description": "Authenticate online using your self-sovereign eID and start monetizing your anonymized personal data.", + "website": "https://vetri.global/", + "explorer": "https://etherscan.io/token/0x922aC473A3cC241fD3a0049Ed14536452D58D73c", + "status": "active", + "id": "0x922aC473A3cC241fD3a0049Ed14536452D58D73c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x922aC473A3cC241fD3a0049Ed14536452D58D73c/logo.png b/blockchains/ethereum/assets/0x922aC473A3cC241fD3a0049Ed14536452D58D73c/logo.png new file mode 100644 index 00000000..e0adf750 Binary files /dev/null and b/blockchains/ethereum/assets/0x922aC473A3cC241fD3a0049Ed14536452D58D73c/logo.png differ diff --git a/blockchains/ethereum/assets/0x923108a439C4e8C2315c4f6521E5cE95B44e9B4c/info.json b/blockchains/ethereum/assets/0x923108a439C4e8C2315c4f6521E5cE95B44e9B4c/info.json new file mode 100644 index 00000000..3e920641 --- /dev/null +++ b/blockchains/ethereum/assets/0x923108a439C4e8C2315c4f6521E5cE95B44e9B4c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Devery.io", + "symbol": "EVE", + "type": "ERC20", + "decimals": 18, + "description": "Devery (EVE) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://devery.io", + "explorer": "https://etherscan.io/token/0x923108a439C4e8C2315c4f6521E5cE95B44e9B4c", + "status": "abandoned", + "id": "0x923108a439C4e8C2315c4f6521E5cE95B44e9B4c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9235bDA06B8807161b8FBB1e102CB654555b212F/info.json b/blockchains/ethereum/assets/0x9235bDA06B8807161b8FBB1e102CB654555b212F/info.json new file mode 100644 index 00000000..0dfd4ffd --- /dev/null +++ b/blockchains/ethereum/assets/0x9235bDA06B8807161b8FBB1e102CB654555b212F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Feellike", + "symbol": "FLL", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "https://feelliketimetraveler.com/", + "explorer": "https://etherscan.io/token/0x9235bDA06B8807161b8FBB1e102CB654555b212F", + "status": "abandoned", + "id": "0x9235bDA06B8807161b8FBB1e102CB654555b212F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9235bDA06B8807161b8FBB1e102CB654555b212F/logo.png b/blockchains/ethereum/assets/0x9235bDA06B8807161b8FBB1e102CB654555b212F/logo.png new file mode 100644 index 00000000..3b40709c Binary files /dev/null and b/blockchains/ethereum/assets/0x9235bDA06B8807161b8FBB1e102CB654555b212F/logo.png differ diff --git a/blockchains/ethereum/assets/0x9248c485b0B80f76DA451f167A8db30F33C70907/info.json b/blockchains/ethereum/assets/0x9248c485b0B80f76DA451f167A8db30F33C70907/info.json new file mode 100644 index 00000000..fe86a2f8 --- /dev/null +++ b/blockchains/ethereum/assets/0x9248c485b0B80f76DA451f167A8db30F33C70907/info.json @@ -0,0 +1,11 @@ +{ + "name": "Debase", + "symbol": "DEBASE", + "type": "ERC20", + "decimals": 18, + "description": "Debaseonomics is a decentralized meta algorithmic stable coin protocol on top of which capital efficient stable-coins can be built. DEBASE is the reserve asset that accrues value from the stabilization mechanisms.", + "website": "https://debaseonomics.io", + "explorer": "https://etherscan.io/token/0x9248c485b0B80f76DA451f167A8db30F33C70907", + "status": "active", + "id": "0x9248c485b0B80f76DA451f167A8db30F33C70907" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9248c485b0B80f76DA451f167A8db30F33C70907/logo.png b/blockchains/ethereum/assets/0x9248c485b0B80f76DA451f167A8db30F33C70907/logo.png new file mode 100644 index 00000000..b591be48 Binary files /dev/null and b/blockchains/ethereum/assets/0x9248c485b0B80f76DA451f167A8db30F33C70907/logo.png differ diff --git a/blockchains/ethereum/assets/0x925044C51dB653459a23DCD7aC3E30AfEA51e54a/info.json b/blockchains/ethereum/assets/0x925044C51dB653459a23DCD7aC3E30AfEA51e54a/info.json new file mode 100644 index 00000000..fb1b0163 --- /dev/null +++ b/blockchains/ethereum/assets/0x925044C51dB653459a23DCD7aC3E30AfEA51e54a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bravenge", + "symbol": "BNG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x925044C51dB653459a23DCD7aC3E30AfEA51e54a", + "status": "abandoned", + "id": "0x925044C51dB653459a23DCD7aC3E30AfEA51e54a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x925044C51dB653459a23DCD7aC3E30AfEA51e54a/logo.png b/blockchains/ethereum/assets/0x925044C51dB653459a23DCD7aC3E30AfEA51e54a/logo.png new file mode 100644 index 00000000..3127ddf2 Binary files /dev/null and b/blockchains/ethereum/assets/0x925044C51dB653459a23DCD7aC3E30AfEA51e54a/logo.png differ diff --git a/blockchains/ethereum/assets/0x929E1Bd67410b8673377B33CD4a17567207733D7/info.json b/blockchains/ethereum/assets/0x929E1Bd67410b8673377B33CD4a17567207733D7/info.json new file mode 100644 index 00000000..948e625e --- /dev/null +++ b/blockchains/ethereum/assets/0x929E1Bd67410b8673377B33CD4a17567207733D7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Lite", + "symbol": "ETL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x929E1Bd67410b8673377B33CD4a17567207733D7", + "status": "abandoned", + "id": "0x929E1Bd67410b8673377B33CD4a17567207733D7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x929E1Bd67410b8673377B33CD4a17567207733D7/logo.png b/blockchains/ethereum/assets/0x929E1Bd67410b8673377B33CD4a17567207733D7/logo.png new file mode 100644 index 00000000..6a07d75b Binary files /dev/null and b/blockchains/ethereum/assets/0x929E1Bd67410b8673377B33CD4a17567207733D7/logo.png differ diff --git a/blockchains/ethereum/assets/0x92A5B04D0ED5D94D7a193d1d334D3D16996f4E13/info.json b/blockchains/ethereum/assets/0x92A5B04D0ED5D94D7a193d1d334D3D16996f4E13/info.json new file mode 100644 index 00000000..b0083662 --- /dev/null +++ b/blockchains/ethereum/assets/0x92A5B04D0ED5D94D7a193d1d334D3D16996f4E13/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eristica TOKEN", + "symbol": "ERT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://eristica.com/", + "explorer": "https://etherscan.io/token/0x92A5B04D0ED5D94D7a193d1d334D3D16996f4E13", + "status": "abandoned", + "id": "0x92A5B04D0ED5D94D7a193d1d334D3D16996f4E13" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x92A5B04D0ED5D94D7a193d1d334D3D16996f4E13/logo.png b/blockchains/ethereum/assets/0x92A5B04D0ED5D94D7a193d1d334D3D16996f4E13/logo.png new file mode 100644 index 00000000..deb411a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x92A5B04D0ED5D94D7a193d1d334D3D16996f4E13/logo.png differ diff --git a/blockchains/ethereum/assets/0x92AAdc367fEB0cad3Cc52BB19721bE3aAd95953c/info.json b/blockchains/ethereum/assets/0x92AAdc367fEB0cad3Cc52BB19721bE3aAd95953c/info.json new file mode 100644 index 00000000..544ae5bf --- /dev/null +++ b/blockchains/ethereum/assets/0x92AAdc367fEB0cad3Cc52BB19721bE3aAd95953c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Piti", + "symbol": "PITI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x92AAdc367fEB0cad3Cc52BB19721bE3aAd95953c", + "status": "abandoned", + "id": "0x92AAdc367fEB0cad3Cc52BB19721bE3aAd95953c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x92AAdc367fEB0cad3Cc52BB19721bE3aAd95953c/logo.png b/blockchains/ethereum/assets/0x92AAdc367fEB0cad3Cc52BB19721bE3aAd95953c/logo.png new file mode 100644 index 00000000..219d08d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x92AAdc367fEB0cad3Cc52BB19721bE3aAd95953c/logo.png differ diff --git a/blockchains/ethereum/assets/0x92B7e4409dCf8C439f313eD1f05fdC0550d18DDd/info.json b/blockchains/ethereum/assets/0x92B7e4409dCf8C439f313eD1f05fdC0550d18DDd/info.json new file mode 100644 index 00000000..bad2bdbc --- /dev/null +++ b/blockchains/ethereum/assets/0x92B7e4409dCf8C439f313eD1f05fdC0550d18DDd/info.json @@ -0,0 +1,11 @@ +{ + "name": "MYDAS", + "symbol": "MDS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x92B7e4409dCf8C439f313eD1f05fdC0550d18DDd", + "status": "abandoned", + "id": "0x92B7e4409dCf8C439f313eD1f05fdC0550d18DDd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x92B7e4409dCf8C439f313eD1f05fdC0550d18DDd/logo.png b/blockchains/ethereum/assets/0x92B7e4409dCf8C439f313eD1f05fdC0550d18DDd/logo.png new file mode 100644 index 00000000..e2b83ac6 Binary files /dev/null and b/blockchains/ethereum/assets/0x92B7e4409dCf8C439f313eD1f05fdC0550d18DDd/logo.png differ diff --git a/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/info.json b/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/info.json new file mode 100644 index 00000000..e48c312b --- /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 00000000..c43b8397 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 new file mode 100644 index 00000000..af8dd53a --- /dev/null +++ b/blockchains/ethereum/assets/0x92D6C1e31e14520e676a687F0a93788B716BEff5/info.json @@ -0,0 +1,24 @@ +{ + "name": "dYdX", + "type": "ERC20", + "symbol": "DYDX", + "decimals": 18, + "website": "https://dydx.foundation", + "description": "Trade & stake to earn rewards. Vote on the future of your exchange. Take control of the most powerful decentralized derivatives protocol.", + "explorer": "https://etherscan.io/token/0x92D6C1e31e14520e676a687F0a93788B716BEff5", + "status": "active", + "id": "0x92D6C1e31e14520e676a687F0a93788B716BEff5", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/dydxfoundation" + }, + { + "name": "github", + "url": "https://github.com/dydxfoundation" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x92D6C1e31e14520e676a687F0a93788B716BEff5/logo.png b/blockchains/ethereum/assets/0x92D6C1e31e14520e676a687F0a93788B716BEff5/logo.png new file mode 100644 index 00000000..3a8d0395 Binary files /dev/null and b/blockchains/ethereum/assets/0x92D6C1e31e14520e676a687F0a93788B716BEff5/logo.png differ diff --git a/blockchains/ethereum/assets/0x92Df9fFf2303E5aa603DAc2b5B603608855dC690/info.json b/blockchains/ethereum/assets/0x92Df9fFf2303E5aa603DAc2b5B603608855dC690/info.json new file mode 100644 index 00000000..273d3e70 --- /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/0x92a06F3Ed11aF181D832bB474d017906AcB8c299/info.json b/blockchains/ethereum/assets/0x92a06F3Ed11aF181D832bB474d017906AcB8c299/info.json new file mode 100644 index 00000000..7df2ab77 --- /dev/null +++ b/blockchains/ethereum/assets/0x92a06F3Ed11aF181D832bB474d017906AcB8c299/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZeePin Token", + "symbol": "ZPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x92a06F3Ed11aF181D832bB474d017906AcB8c299", + "status": "abandoned", + "id": "0x92a06F3Ed11aF181D832bB474d017906AcB8c299" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x92a06F3Ed11aF181D832bB474d017906AcB8c299/logo.png b/blockchains/ethereum/assets/0x92a06F3Ed11aF181D832bB474d017906AcB8c299/logo.png new file mode 100644 index 00000000..69ae4fc6 Binary files /dev/null and b/blockchains/ethereum/assets/0x92a06F3Ed11aF181D832bB474d017906AcB8c299/logo.png differ diff --git a/blockchains/ethereum/assets/0x92a42Db88Ed0F02c71D439e55962Ca7CAB0168b5/info.json b/blockchains/ethereum/assets/0x92a42Db88Ed0F02c71D439e55962Ca7CAB0168b5/info.json new file mode 100644 index 00000000..8b3711da --- /dev/null +++ b/blockchains/ethereum/assets/0x92a42Db88Ed0F02c71D439e55962Ca7CAB0168b5/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tardigrades.Finance", + "type": "ERC20", + "symbol": "TRDG", + "decimals": 9, + "website": "https://www.tardigrades.finance/", + "description": "Tardigrades Finance offers frictionless rewards 5% Tax with 2.5% Burn / and 2.5% back to Holders for each transaction.", + "explorer": "https://etherscan.io/token/0x92a42db88ed0f02c71d439e55962ca7cab0168b5", + "status": "active", + "id": "0x92a42Db88Ed0F02c71D439e55962Ca7CAB0168b5", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x92a42Db88Ed0F02c71D439e55962Ca7CAB0168b5/logo.png b/blockchains/ethereum/assets/0x92a42Db88Ed0F02c71D439e55962Ca7CAB0168b5/logo.png new file mode 100644 index 00000000..1379c198 Binary files /dev/null and b/blockchains/ethereum/assets/0x92a42Db88Ed0F02c71D439e55962Ca7CAB0168b5/logo.png differ diff --git a/blockchains/ethereum/assets/0x92bfBcFDc25Dd7a235de50291e2EafB12d4901F8/info.json b/blockchains/ethereum/assets/0x92bfBcFDc25Dd7a235de50291e2EafB12d4901F8/info.json new file mode 100644 index 00000000..9ddf30b2 --- /dev/null +++ b/blockchains/ethereum/assets/0x92bfBcFDc25Dd7a235de50291e2EafB12d4901F8/info.json @@ -0,0 +1,11 @@ +{ + "name": "DevilCoin", + "symbol": "DEVIL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x92bfBcFDc25Dd7a235de50291e2EafB12d4901F8", + "status": "abandoned", + "id": "0x92bfBcFDc25Dd7a235de50291e2EafB12d4901F8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x92bfBcFDc25Dd7a235de50291e2EafB12d4901F8/logo.png b/blockchains/ethereum/assets/0x92bfBcFDc25Dd7a235de50291e2EafB12d4901F8/logo.png new file mode 100644 index 00000000..84fe8de8 Binary files /dev/null and b/blockchains/ethereum/assets/0x92bfBcFDc25Dd7a235de50291e2EafB12d4901F8/logo.png differ diff --git a/blockchains/ethereum/assets/0x92c4f18c851592B4a2AB9BcD22D308F0E1c94399/info.json b/blockchains/ethereum/assets/0x92c4f18c851592B4a2AB9BcD22D308F0E1c94399/info.json new file mode 100644 index 00000000..075c76a6 --- /dev/null +++ b/blockchains/ethereum/assets/0x92c4f18c851592B4a2AB9BcD22D308F0E1c94399/info.json @@ -0,0 +1,11 @@ +{ + "name": "CEXDollar", + "symbol": "CEXD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x92c4f18c851592B4a2AB9BcD22D308F0E1c94399", + "status": "abandoned", + "id": "0x92c4f18c851592B4a2AB9BcD22D308F0E1c94399" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x92c4f18c851592B4a2AB9BcD22D308F0E1c94399/logo.png b/blockchains/ethereum/assets/0x92c4f18c851592B4a2AB9BcD22D308F0E1c94399/logo.png new file mode 100644 index 00000000..574b1785 Binary files /dev/null and b/blockchains/ethereum/assets/0x92c4f18c851592B4a2AB9BcD22D308F0E1c94399/logo.png differ diff --git a/blockchains/ethereum/assets/0x92d7A89405Ea3cC605A467E834236e09DF60bf16/info.json b/blockchains/ethereum/assets/0x92d7A89405Ea3cC605A467E834236e09DF60bf16/info.json new file mode 100644 index 00000000..7d7f5627 --- /dev/null +++ b/blockchains/ethereum/assets/0x92d7A89405Ea3cC605A467E834236e09DF60bf16/info.json @@ -0,0 +1,11 @@ +{ + "name": "Spirit", + "symbol": "SPIRIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x92d7A89405Ea3cC605A467E834236e09DF60bf16", + "status": "abandoned", + "id": "0x92d7A89405Ea3cC605A467E834236e09DF60bf16" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x92d7A89405Ea3cC605A467E834236e09DF60bf16/logo.png b/blockchains/ethereum/assets/0x92d7A89405Ea3cC605A467E834236e09DF60bf16/logo.png new file mode 100755 index 00000000..2013641c Binary files /dev/null and b/blockchains/ethereum/assets/0x92d7A89405Ea3cC605A467E834236e09DF60bf16/logo.png differ diff --git a/blockchains/ethereum/assets/0x92e52a1A235d9A103D970901066CE910AAceFD37/info.json b/blockchains/ethereum/assets/0x92e52a1A235d9A103D970901066CE910AAceFD37/info.json new file mode 100644 index 00000000..f6557a4c --- /dev/null +++ b/blockchains/ethereum/assets/0x92e52a1A235d9A103D970901066CE910AAceFD37/info.json @@ -0,0 +1,11 @@ +{ + "name": "UCASH", + "symbol": "UCASH", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://u.cash", + "explorer": "https://etherscan.io/token/0x92e52a1A235d9A103D970901066CE910AAceFD37", + "status": "abandoned", + "id": "0x92e52a1A235d9A103D970901066CE910AAceFD37" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x92e52a1A235d9A103D970901066CE910AAceFD37/logo.png b/blockchains/ethereum/assets/0x92e52a1A235d9A103D970901066CE910AAceFD37/logo.png new file mode 100755 index 00000000..47cd6db2 Binary files /dev/null and b/blockchains/ethereum/assets/0x92e52a1A235d9A103D970901066CE910AAceFD37/logo.png differ diff --git a/blockchains/ethereum/assets/0x92eF4FFBfe0Df030837b65d7FcCFE1ABd6549579/info.json b/blockchains/ethereum/assets/0x92eF4FFBfe0Df030837b65d7FcCFE1ABd6549579/info.json new file mode 100644 index 00000000..c4221ba7 --- /dev/null +++ b/blockchains/ethereum/assets/0x92eF4FFBfe0Df030837b65d7FcCFE1ABd6549579/info.json @@ -0,0 +1,18 @@ +{ + "name": "Swirge coin", + "website": "https://swirgepay.com", + "description": "Swirge is an ecosystem that embodies a decentralized social media, a decentralized financial system, and a marketplace built on the blockchain technology.", + "explorer": "https://etherscan.io/token/0x92ef4ffbfe0df030837b65d7fccfe1abd6549579", + "research": "https://swirgepay.com", + "type": "ERC20", + "symbol": "SWG", + "decimals": 18, + "status": "active", + "id": "0x92eF4FFBfe0Df030837b65d7FcCFE1ABd6549579", + "links": [ + { + "name": "whitepaper", + "url": "https://swirgepay.com/docs/not-so-whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x92eF4FFBfe0Df030837b65d7FcCFE1ABd6549579/logo.png b/blockchains/ethereum/assets/0x92eF4FFBfe0Df030837b65d7FcCFE1ABd6549579/logo.png new file mode 100644 index 00000000..296901e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x92eF4FFBfe0Df030837b65d7FcCFE1ABd6549579/logo.png differ diff --git a/blockchains/ethereum/assets/0x9305a9b8789abC44dC8641606534665516b1FaB0/info.json b/blockchains/ethereum/assets/0x9305a9b8789abC44dC8641606534665516b1FaB0/info.json new file mode 100644 index 00000000..0dbb03f4 --- /dev/null +++ b/blockchains/ethereum/assets/0x9305a9b8789abC44dC8641606534665516b1FaB0/info.json @@ -0,0 +1,11 @@ +{ + "name": "JAW", + "symbol": "JAW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9305a9b8789abC44dC8641606534665516b1FaB0", + "status": "abandoned", + "id": "0x9305a9b8789abC44dC8641606534665516b1FaB0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9305a9b8789abC44dC8641606534665516b1FaB0/logo.png b/blockchains/ethereum/assets/0x9305a9b8789abC44dC8641606534665516b1FaB0/logo.png new file mode 100644 index 00000000..5195f2e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x9305a9b8789abC44dC8641606534665516b1FaB0/logo.png differ diff --git a/blockchains/ethereum/assets/0x93065b5C7Eb63333b8E57a73012D25f687895785/info.json b/blockchains/ethereum/assets/0x93065b5C7Eb63333b8E57a73012D25f687895785/info.json new file mode 100644 index 00000000..f59a5d47 --- /dev/null +++ b/blockchains/ethereum/assets/0x93065b5C7Eb63333b8E57a73012D25f687895785/info.json @@ -0,0 +1,11 @@ +{ + "name": "ColletrixToken", + "symbol": "CIPX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x93065b5C7Eb63333b8E57a73012D25f687895785", + "status": "abandoned", + "id": "0x93065b5C7Eb63333b8E57a73012D25f687895785" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x93065b5C7Eb63333b8E57a73012D25f687895785/logo.png b/blockchains/ethereum/assets/0x93065b5C7Eb63333b8E57a73012D25f687895785/logo.png new file mode 100644 index 00000000..739618b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x93065b5C7Eb63333b8E57a73012D25f687895785/logo.png differ diff --git a/blockchains/ethereum/assets/0x93190DbCE9b9BD4Aa546270a8D1D65905B5fDd28/info.json b/blockchains/ethereum/assets/0x93190DbCE9b9BD4Aa546270a8D1D65905B5fDd28/info.json new file mode 100644 index 00000000..55ee971a --- /dev/null +++ b/blockchains/ethereum/assets/0x93190DbCE9b9BD4Aa546270a8D1D65905B5fDd28/info.json @@ -0,0 +1,11 @@ +{ + "name": "DAPSTOKEN", + "symbol": "DAPS", + "type": "ERC20", + "decimals": 18, + "description": "DAPS is a privacy coin that aims to be the most private and secure privacy coin on the market in a hybrid chain of PoW, PoSv3 and PoA. We aim to set our protocol to become the new standard of privacy coins.", + "website": "https://dapscoin.com/", + "explorer": "https://etherscan.io/token/0x93190DbCE9b9BD4Aa546270a8D1D65905B5fDd28", + "status": "active", + "id": "0x93190DbCE9b9BD4Aa546270a8D1D65905B5fDd28" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x93190DbCE9b9BD4Aa546270a8D1D65905B5fDd28/logo.png b/blockchains/ethereum/assets/0x93190DbCE9b9BD4Aa546270a8D1D65905B5fDd28/logo.png new file mode 100755 index 00000000..644c7d25 Binary files /dev/null and b/blockchains/ethereum/assets/0x93190DbCE9b9BD4Aa546270a8D1D65905B5fDd28/logo.png differ diff --git a/blockchains/ethereum/assets/0x931A7ca74e35f35a46881A4f968d5fBD095a0279/info.json b/blockchains/ethereum/assets/0x931A7ca74e35f35a46881A4f968d5fBD095a0279/info.json new file mode 100644 index 00000000..1313b7f3 --- /dev/null +++ b/blockchains/ethereum/assets/0x931A7ca74e35f35a46881A4f968d5fBD095a0279/info.json @@ -0,0 +1,11 @@ +{ + "name": "FailToken", + "symbol": "FAIL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x931A7ca74e35f35a46881A4f968d5fBD095a0279", + "status": "abandoned", + "id": "0x931A7ca74e35f35a46881A4f968d5fBD095a0279" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x931A7ca74e35f35a46881A4f968d5fBD095a0279/logo.png b/blockchains/ethereum/assets/0x931A7ca74e35f35a46881A4f968d5fBD095a0279/logo.png new file mode 100755 index 00000000..48de2691 Binary files /dev/null and b/blockchains/ethereum/assets/0x931A7ca74e35f35a46881A4f968d5fBD095a0279/logo.png differ diff --git a/blockchains/ethereum/assets/0x933DFC5622792b41245aB8313416cAF0ba885aE7/info.json b/blockchains/ethereum/assets/0x933DFC5622792b41245aB8313416cAF0ba885aE7/info.json new file mode 100644 index 00000000..fd880819 --- /dev/null +++ b/blockchains/ethereum/assets/0x933DFC5622792b41245aB8313416cAF0ba885aE7/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinBroker", + "symbol": "COBR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x933DFC5622792b41245aB8313416cAF0ba885aE7", + "status": "abandoned", + "id": "0x933DFC5622792b41245aB8313416cAF0ba885aE7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x933DFC5622792b41245aB8313416cAF0ba885aE7/logo.png b/blockchains/ethereum/assets/0x933DFC5622792b41245aB8313416cAF0ba885aE7/logo.png new file mode 100644 index 00000000..f0892731 Binary files /dev/null and b/blockchains/ethereum/assets/0x933DFC5622792b41245aB8313416cAF0ba885aE7/logo.png differ diff --git a/blockchains/ethereum/assets/0x9344b383b1D59b5ce3468B234DAB43C7190ba735/info.json b/blockchains/ethereum/assets/0x9344b383b1D59b5ce3468B234DAB43C7190ba735/info.json new file mode 100644 index 00000000..05597c81 --- /dev/null +++ b/blockchains/ethereum/assets/0x9344b383b1D59b5ce3468B234DAB43C7190ba735/info.json @@ -0,0 +1,11 @@ +{ + "name": "NeedsCoin", + "symbol": "NCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9344b383b1D59b5ce3468B234DAB43C7190ba735", + "status": "abandoned", + "id": "0x9344b383b1D59b5ce3468B234DAB43C7190ba735" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9344b383b1D59b5ce3468B234DAB43C7190ba735/logo.png b/blockchains/ethereum/assets/0x9344b383b1D59b5ce3468B234DAB43C7190ba735/logo.png new file mode 100755 index 00000000..9ad76a3f Binary files /dev/null and b/blockchains/ethereum/assets/0x9344b383b1D59b5ce3468B234DAB43C7190ba735/logo.png differ diff --git a/blockchains/ethereum/assets/0x93453fbCf7fD8CcF9F3740af2fb9D14960a23b39/info.json b/blockchains/ethereum/assets/0x93453fbCf7fD8CcF9F3740af2fb9D14960a23b39/info.json new file mode 100644 index 00000000..176419e3 --- /dev/null +++ b/blockchains/ethereum/assets/0x93453fbCf7fD8CcF9F3740af2fb9D14960a23b39/info.json @@ -0,0 +1,11 @@ +{ + "name": "HaloCoin", + "symbol": "HALO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x93453fbCf7fD8CcF9F3740af2fb9D14960a23b39", + "status": "abandoned", + "id": "0x93453fbCf7fD8CcF9F3740af2fb9D14960a23b39" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x93453fbCf7fD8CcF9F3740af2fb9D14960a23b39/logo.png b/blockchains/ethereum/assets/0x93453fbCf7fD8CcF9F3740af2fb9D14960a23b39/logo.png new file mode 100644 index 00000000..7f562c38 Binary files /dev/null and b/blockchains/ethereum/assets/0x93453fbCf7fD8CcF9F3740af2fb9D14960a23b39/logo.png differ diff --git a/blockchains/ethereum/assets/0x9355372396e3F6daF13359B7b607a3374cc638e0/info.json b/blockchains/ethereum/assets/0x9355372396e3F6daF13359B7b607a3374cc638e0/info.json new file mode 100644 index 00000000..bbcc7869 --- /dev/null +++ b/blockchains/ethereum/assets/0x9355372396e3F6daF13359B7b607a3374cc638e0/info.json @@ -0,0 +1,11 @@ +{ + "name": "WHALE", + "symbol": "WHALE", + "type": "ERC20", + "decimals": 4, + "description": "WHALE claims to be the first social token backed by the best NFT collection around.", + "website": "https://whale.me", + "explorer": "https://etherscan.io/token/0x9355372396e3F6daF13359B7b607a3374cc638e0", + "status": "active", + "id": "0x9355372396e3F6daF13359B7b607a3374cc638e0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9355372396e3F6daF13359B7b607a3374cc638e0/logo.png b/blockchains/ethereum/assets/0x9355372396e3F6daF13359B7b607a3374cc638e0/logo.png new file mode 100644 index 00000000..91aecca6 Binary files /dev/null and b/blockchains/ethereum/assets/0x9355372396e3F6daF13359B7b607a3374cc638e0/logo.png differ diff --git a/blockchains/ethereum/assets/0x9363E6eaDF5e307b96f26DFd94F355b95A0e2498/info.json b/blockchains/ethereum/assets/0x9363E6eaDF5e307b96f26DFd94F355b95A0e2498/info.json new file mode 100644 index 00000000..6bd78651 --- /dev/null +++ b/blockchains/ethereum/assets/0x9363E6eaDF5e307b96f26DFd94F355b95A0e2498/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vestoria", + "symbol": "VSTR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://vestoria.org/", + "explorer": "https://etherscan.io/token/0x9363E6eaDF5e307b96f26DFd94F355b95A0e2498", + "status": "abandoned", + "id": "0x9363E6eaDF5e307b96f26DFd94F355b95A0e2498" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9363E6eaDF5e307b96f26DFd94F355b95A0e2498/logo.png b/blockchains/ethereum/assets/0x9363E6eaDF5e307b96f26DFd94F355b95A0e2498/logo.png new file mode 100644 index 00000000..08c05d55 Binary files /dev/null and b/blockchains/ethereum/assets/0x9363E6eaDF5e307b96f26DFd94F355b95A0e2498/logo.png differ diff --git a/blockchains/ethereum/assets/0x936B36109951601471D2AC9b7e6ddED94AEB4701/info.json b/blockchains/ethereum/assets/0x936B36109951601471D2AC9b7e6ddED94AEB4701/info.json new file mode 100644 index 00000000..23c3e5b8 --- /dev/null +++ b/blockchains/ethereum/assets/0x936B36109951601471D2AC9b7e6ddED94AEB4701/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-12/30M72", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x936B36109951601471D2AC9b7e6ddED94AEB4701", + "status": "abandoned", + "id": "0x936B36109951601471D2AC9b7e6ddED94AEB4701" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x936B36109951601471D2AC9b7e6ddED94AEB4701/logo.png b/blockchains/ethereum/assets/0x936B36109951601471D2AC9b7e6ddED94AEB4701/logo.png new file mode 100644 index 00000000..404a2ef4 Binary files /dev/null and b/blockchains/ethereum/assets/0x936B36109951601471D2AC9b7e6ddED94AEB4701/logo.png differ diff --git a/blockchains/ethereum/assets/0x936faCdf10c8c36294e7b9d28345255539d81bc7/info.json b/blockchains/ethereum/assets/0x936faCdf10c8c36294e7b9d28345255539d81bc7/info.json new file mode 100644 index 00000000..ba9031b2 --- /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 00000000..ae06ab8c Binary files /dev/null and b/blockchains/ethereum/assets/0x936faCdf10c8c36294e7b9d28345255539d81bc7/logo.png differ diff --git a/blockchains/ethereum/assets/0x9388F54FA978Aa9e24395a8b69033304ECcea4df/info.json b/blockchains/ethereum/assets/0x9388F54FA978Aa9e24395a8b69033304ECcea4df/info.json new file mode 100644 index 00000000..03d45182 --- /dev/null +++ b/blockchains/ethereum/assets/0x9388F54FA978Aa9e24395a8b69033304ECcea4df/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitscoin", + "symbol": "BTCX", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "http://bitscointoken.com/", + "explorer": "https://etherscan.io/token/0x9388F54FA978Aa9e24395a8b69033304ECcea4df", + "status": "abandoned", + "id": "0x9388F54FA978Aa9e24395a8b69033304ECcea4df" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9388F54FA978Aa9e24395a8b69033304ECcea4df/logo.png b/blockchains/ethereum/assets/0x9388F54FA978Aa9e24395a8b69033304ECcea4df/logo.png new file mode 100644 index 00000000..4005ff9f Binary files /dev/null and b/blockchains/ethereum/assets/0x9388F54FA978Aa9e24395a8b69033304ECcea4df/logo.png differ diff --git a/blockchains/ethereum/assets/0x9389434852b94bbaD4c8AfEd5B7BDBc5Ff0c2275/info.json b/blockchains/ethereum/assets/0x9389434852b94bbaD4c8AfEd5B7BDBc5Ff0c2275/info.json new file mode 100644 index 00000000..df50f463 --- /dev/null +++ b/blockchains/ethereum/assets/0x9389434852b94bbaD4c8AfEd5B7BDBc5Ff0c2275/info.json @@ -0,0 +1,11 @@ +{ + "name": "TTC", + "symbol": "TTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.ttc.eco/", + "explorer": "https://etherscan.io/token/0x9389434852b94bbaD4c8AfEd5B7BDBc5Ff0c2275", + "status": "abandoned", + "id": "0x9389434852b94bbaD4c8AfEd5B7BDBc5Ff0c2275" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9389434852b94bbaD4c8AfEd5B7BDBc5Ff0c2275/logo.png b/blockchains/ethereum/assets/0x9389434852b94bbaD4c8AfEd5B7BDBc5Ff0c2275/logo.png new file mode 100644 index 00000000..efb7d288 Binary files /dev/null and b/blockchains/ethereum/assets/0x9389434852b94bbaD4c8AfEd5B7BDBc5Ff0c2275/logo.png differ diff --git a/blockchains/ethereum/assets/0x9399ac26D6586Beb8F25c8f2EEe33B1E2d00e472/info.json b/blockchains/ethereum/assets/0x9399ac26D6586Beb8F25c8f2EEe33B1E2d00e472/info.json new file mode 100644 index 00000000..b8285eae --- /dev/null +++ b/blockchains/ethereum/assets/0x9399ac26D6586Beb8F25c8f2EEe33B1E2d00e472/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLike", + "symbol": "BLIKE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9399ac26D6586Beb8F25c8f2EEe33B1E2d00e472", + "status": "abandoned", + "id": "0x9399ac26D6586Beb8F25c8f2EEe33B1E2d00e472" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9399ac26D6586Beb8F25c8f2EEe33B1E2d00e472/logo.png b/blockchains/ethereum/assets/0x9399ac26D6586Beb8F25c8f2EEe33B1E2d00e472/logo.png new file mode 100644 index 00000000..a8f5e118 Binary files /dev/null and b/blockchains/ethereum/assets/0x9399ac26D6586Beb8F25c8f2EEe33B1E2d00e472/logo.png differ diff --git a/blockchains/ethereum/assets/0x93A62Ccfcf1EfCB5f60317981F71ed6Fb39F4BA2/info.json b/blockchains/ethereum/assets/0x93A62Ccfcf1EfCB5f60317981F71ed6Fb39F4BA2/info.json new file mode 100644 index 00000000..fec527ab --- /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 00000000..f68aa41d Binary files /dev/null and b/blockchains/ethereum/assets/0x93A62Ccfcf1EfCB5f60317981F71ed6Fb39F4BA2/logo.png differ diff --git a/blockchains/ethereum/assets/0x93B2FfF814FCaEFFB01406e80B4Ecd89Ca6A021b/info.json b/blockchains/ethereum/assets/0x93B2FfF814FCaEFFB01406e80B4Ecd89Ca6A021b/info.json new file mode 100644 index 00000000..e969a58d --- /dev/null +++ b/blockchains/ethereum/assets/0x93B2FfF814FCaEFFB01406e80B4Ecd89Ca6A021b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Grumpy Finance", + "website": "https://grumpy.finance", + "description": "Official $GRUMPY, a community focused Defi project with the aim to help animals in need. Donations are funded by our community.", + "explorer": "https://etherscan.io/token/0x93B2FfF814FCaEFFB01406e80B4Ecd89Ca6A021b", + "type": "ERC20", + "symbol": "GRUMPY", + "decimals": 9, + "status": "active", + "id": "0x93B2FfF814FCaEFFB01406e80B4Ecd89Ca6A021b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x93B2FfF814FCaEFFB01406e80B4Ecd89Ca6A021b/logo.png b/blockchains/ethereum/assets/0x93B2FfF814FCaEFFB01406e80B4Ecd89Ca6A021b/logo.png new file mode 100644 index 00000000..14a10624 Binary files /dev/null and b/blockchains/ethereum/assets/0x93B2FfF814FCaEFFB01406e80B4Ecd89Ca6A021b/logo.png differ diff --git a/blockchains/ethereum/assets/0x93B99A13B81dfd5Fa9B2D875acF8C600047b193A/info.json b/blockchains/ethereum/assets/0x93B99A13B81dfd5Fa9B2D875acF8C600047b193A/info.json new file mode 100644 index 00000000..911485fc --- /dev/null +++ b/blockchains/ethereum/assets/0x93B99A13B81dfd5Fa9B2D875acF8C600047b193A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Forta Token", + "symbol": "FRT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x93B99A13B81dfd5Fa9B2D875acF8C600047b193A", + "status": "abandoned", + "id": "0x93B99A13B81dfd5Fa9B2D875acF8C600047b193A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x93B99A13B81dfd5Fa9B2D875acF8C600047b193A/logo.png b/blockchains/ethereum/assets/0x93B99A13B81dfd5Fa9B2D875acF8C600047b193A/logo.png new file mode 100644 index 00000000..43df9f45 Binary files /dev/null and b/blockchains/ethereum/assets/0x93B99A13B81dfd5Fa9B2D875acF8C600047b193A/logo.png differ diff --git a/blockchains/ethereum/assets/0x93C1119a6a7bf9CD207DbC72e8614A5D82Ff427b/info.json b/blockchains/ethereum/assets/0x93C1119a6a7bf9CD207DbC72e8614A5D82Ff427b/info.json new file mode 100644 index 00000000..16acdde5 --- /dev/null +++ b/blockchains/ethereum/assets/0x93C1119a6a7bf9CD207DbC72e8614A5D82Ff427b/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniBet", + "symbol": "UBET", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x93C1119a6a7bf9CD207DbC72e8614A5D82Ff427b", + "status": "abandoned", + "id": "0x93C1119a6a7bf9CD207DbC72e8614A5D82Ff427b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x93C1119a6a7bf9CD207DbC72e8614A5D82Ff427b/logo.png b/blockchains/ethereum/assets/0x93C1119a6a7bf9CD207DbC72e8614A5D82Ff427b/logo.png new file mode 100644 index 00000000..3e336694 Binary files /dev/null and b/blockchains/ethereum/assets/0x93C1119a6a7bf9CD207DbC72e8614A5D82Ff427b/logo.png differ diff --git a/blockchains/ethereum/assets/0x93E682107d1E9defB0b5ee701C71707a4B2E46Bc/info.json b/blockchains/ethereum/assets/0x93E682107d1E9defB0b5ee701C71707a4B2E46Bc/info.json new file mode 100644 index 00000000..331b6e4d --- /dev/null +++ b/blockchains/ethereum/assets/0x93E682107d1E9defB0b5ee701C71707a4B2E46Bc/info.json @@ -0,0 +1,11 @@ +{ + "name": "MCAP", + "symbol": "MCAP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x93E682107d1E9defB0b5ee701C71707a4B2E46Bc", + "status": "abandoned", + "id": "0x93E682107d1E9defB0b5ee701C71707a4B2E46Bc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x93E682107d1E9defB0b5ee701C71707a4B2E46Bc/logo.png b/blockchains/ethereum/assets/0x93E682107d1E9defB0b5ee701C71707a4B2E46Bc/logo.png new file mode 100644 index 00000000..0a8a4987 Binary files /dev/null and b/blockchains/ethereum/assets/0x93E682107d1E9defB0b5ee701C71707a4B2E46Bc/logo.png differ diff --git a/blockchains/ethereum/assets/0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d/info.json b/blockchains/ethereum/assets/0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d/info.json new file mode 100644 index 00000000..e2aecf59 --- /dev/null +++ b/blockchains/ethereum/assets/0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pinakion", + "symbol": "PNK", + "type": "ERC20", + "decimals": 18, + "description": "Kleros is a decentralized arbitration service for the disputes of the new economy.", + "website": "https://kleros.io", + "explorer": "https://etherscan.io/token/0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d", + "status": "active", + "id": "0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d/logo.png b/blockchains/ethereum/assets/0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d/logo.png new file mode 100644 index 00000000..d73e4f5b Binary files /dev/null and b/blockchains/ethereum/assets/0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d/logo.png differ diff --git a/blockchains/ethereum/assets/0x93Ec2b9D85a7F4b0Abc66abf4CA8d5E50C355516/info.json b/blockchains/ethereum/assets/0x93Ec2b9D85a7F4b0Abc66abf4CA8d5E50C355516/info.json new file mode 100644 index 00000000..f2ea6e61 --- /dev/null +++ b/blockchains/ethereum/assets/0x93Ec2b9D85a7F4b0Abc66abf4CA8d5E50C355516/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nixma Coin", + "symbol": "NXC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x93Ec2b9D85a7F4b0Abc66abf4CA8d5E50C355516", + "status": "abandoned", + "id": "0x93Ec2b9D85a7F4b0Abc66abf4CA8d5E50C355516" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x93Ec2b9D85a7F4b0Abc66abf4CA8d5E50C355516/logo.png b/blockchains/ethereum/assets/0x93Ec2b9D85a7F4b0Abc66abf4CA8d5E50C355516/logo.png new file mode 100644 index 00000000..ba06fe37 Binary files /dev/null and b/blockchains/ethereum/assets/0x93Ec2b9D85a7F4b0Abc66abf4CA8d5E50C355516/logo.png differ diff --git a/blockchains/ethereum/assets/0x93a7174dafd31d13400cD9fa01f4e5B5BAa00D39/info.json b/blockchains/ethereum/assets/0x93a7174dafd31d13400cD9fa01f4e5B5BAa00D39/info.json new file mode 100644 index 00000000..be9e63d2 --- /dev/null +++ b/blockchains/ethereum/assets/0x93a7174dafd31d13400cD9fa01f4e5B5BAa00D39/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shaka", + "website": "https://friendsfingers.com", + "description": "Shaka (HAK) is an ERC20 Token issued by FriendsFingers that will give holders rights to be active part of the platform like in a Decentralized Autonomous Organization (DAO).", + "explorer": "https://etherscan.io/token/0x93a7174dafd31d13400cD9fa01f4e5B5BAa00D39", + "type": "ERC20", + "symbol": "HAK", + "decimals": 18, + "status": "active", + "id": "0x93a7174dafd31d13400cD9fa01f4e5B5BAa00D39" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x93a7174dafd31d13400cD9fa01f4e5B5BAa00D39/logo.png b/blockchains/ethereum/assets/0x93a7174dafd31d13400cD9fa01f4e5B5BAa00D39/logo.png new file mode 100644 index 00000000..80d48995 Binary files /dev/null and b/blockchains/ethereum/assets/0x93a7174dafd31d13400cD9fa01f4e5B5BAa00D39/logo.png differ diff --git a/blockchains/ethereum/assets/0x93c9291523cb95c0eB0bC379b0483F4D7fC05072/info.json b/blockchains/ethereum/assets/0x93c9291523cb95c0eB0bC379b0483F4D7fC05072/info.json new file mode 100644 index 00000000..b5fdc360 --- /dev/null +++ b/blockchains/ethereum/assets/0x93c9291523cb95c0eB0bC379b0483F4D7fC05072/info.json @@ -0,0 +1,11 @@ +{ + "name": "LED Token", + "symbol": "LED", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x93c9291523cb95c0eB0bC379b0483F4D7fC05072", + "status": "abandoned", + "id": "0x93c9291523cb95c0eB0bC379b0483F4D7fC05072" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x93c9291523cb95c0eB0bC379b0483F4D7fC05072/logo.png b/blockchains/ethereum/assets/0x93c9291523cb95c0eB0bC379b0483F4D7fC05072/logo.png new file mode 100644 index 00000000..076f68ad Binary files /dev/null and b/blockchains/ethereum/assets/0x93c9291523cb95c0eB0bC379b0483F4D7fC05072/logo.png differ diff --git a/blockchains/ethereum/assets/0x93d3296cac208422BF587c3597D116e809870f2b/info.json b/blockchains/ethereum/assets/0x93d3296cac208422BF587c3597D116e809870f2b/info.json new file mode 100644 index 00000000..958ab0b5 --- /dev/null +++ b/blockchains/ethereum/assets/0x93d3296cac208422BF587c3597D116e809870f2b/info.json @@ -0,0 +1,11 @@ +{ + "name": "pUSD", + "website": "https://pegnet.org/", + "description": "pUSD is a USD-pegged stablecoin asset in the PegNet network.", + "explorer": "https://etherscan.io/token/0x93d3296cac208422BF587c3597D116e809870f2b", + "type": "ERC20", + "symbol": "pUSD", + "decimals": 8, + "status": "active", + "id": "0x93d3296cac208422BF587c3597D116e809870f2b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x93d3296cac208422BF587c3597D116e809870f2b/logo.png b/blockchains/ethereum/assets/0x93d3296cac208422BF587c3597D116e809870f2b/logo.png new file mode 100644 index 00000000..01471424 Binary files /dev/null and b/blockchains/ethereum/assets/0x93d3296cac208422BF587c3597D116e809870f2b/logo.png differ diff --git a/blockchains/ethereum/assets/0x93eCD2ecDFb91aB2fEe28A8779A6adfe2851cda6/info.json b/blockchains/ethereum/assets/0x93eCD2ecDFb91aB2fEe28A8779A6adfe2851cda6/info.json new file mode 100644 index 00000000..8eefb8bd --- /dev/null +++ b/blockchains/ethereum/assets/0x93eCD2ecDFb91aB2fEe28A8779A6adfe2851cda6/info.json @@ -0,0 +1,11 @@ +{ + "name": "LoanBurst", + "symbol": "LBurst", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://loanburst.co", + "explorer": "https://etherscan.io/token/0x93eCD2ecDFb91aB2fEe28A8779A6adfe2851cda6", + "status": "abandoned", + "id": "0x93eCD2ecDFb91aB2fEe28A8779A6adfe2851cda6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x93eCD2ecDFb91aB2fEe28A8779A6adfe2851cda6/logo.png b/blockchains/ethereum/assets/0x93eCD2ecDFb91aB2fEe28A8779A6adfe2851cda6/logo.png new file mode 100644 index 00000000..6288e916 Binary files /dev/null and b/blockchains/ethereum/assets/0x93eCD2ecDFb91aB2fEe28A8779A6adfe2851cda6/logo.png differ diff --git a/blockchains/ethereum/assets/0x93effD08e3E5A4B1b40C26137e63876B2501ffA4/info.json b/blockchains/ethereum/assets/0x93effD08e3E5A4B1b40C26137e63876B2501ffA4/info.json new file mode 100755 index 00000000..e23c284d --- /dev/null +++ b/blockchains/ethereum/assets/0x93effD08e3E5A4B1b40C26137e63876B2501ffA4/info.json @@ -0,0 +1,17 @@ +{ + "name": "JulSwap", + "website": "https://julswap.com", + "description": "The JulSwap Token on ETH .", + "explorer": "https://etherscan.io/token/0x93effD08e3E5A4B1b40C26137e63876B2501ffA4", + "type": "ERC20", + "symbol": "JulD", + "decimals": 18, + "status": "active", + "id": "0x93effD08e3E5A4B1b40C26137e63876B2501ffA4", + "links": [ + { + "name": "github", + "url": "https://github.com/JustLiquidity" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x93effD08e3E5A4B1b40C26137e63876B2501ffA4/logo.png b/blockchains/ethereum/assets/0x93effD08e3E5A4B1b40C26137e63876B2501ffA4/logo.png new file mode 100644 index 00000000..3f3fb6fb Binary files /dev/null and b/blockchains/ethereum/assets/0x93effD08e3E5A4B1b40C26137e63876B2501ffA4/logo.png differ diff --git a/blockchains/ethereum/assets/0x9401d929B299e634b34b66BbE24BFB4568553e7F/info.json b/blockchains/ethereum/assets/0x9401d929B299e634b34b66BbE24BFB4568553e7F/info.json new file mode 100644 index 00000000..64c3d30e --- /dev/null +++ b/blockchains/ethereum/assets/0x9401d929B299e634b34b66BbE24BFB4568553e7F/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTCSAPIENS", + "symbol": "BSAP", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9401d929B299e634b34b66BbE24BFB4568553e7F", + "status": "abandoned", + "id": "0x9401d929B299e634b34b66BbE24BFB4568553e7F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9401d929B299e634b34b66BbE24BFB4568553e7F/logo.png b/blockchains/ethereum/assets/0x9401d929B299e634b34b66BbE24BFB4568553e7F/logo.png new file mode 100644 index 00000000..6d8d90e5 Binary files /dev/null and b/blockchains/ethereum/assets/0x9401d929B299e634b34b66BbE24BFB4568553e7F/logo.png differ diff --git a/blockchains/ethereum/assets/0x94056dc6d570fD9132b028Bb3F3064AD141cF5D0/info.json b/blockchains/ethereum/assets/0x94056dc6d570fD9132b028Bb3F3064AD141cF5D0/info.json new file mode 100644 index 00000000..4aecfe2a --- /dev/null +++ b/blockchains/ethereum/assets/0x94056dc6d570fD9132b028Bb3F3064AD141cF5D0/info.json @@ -0,0 +1,11 @@ +{ + "name": "THE GLOBAL CHAIN", + "symbol": "AGP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x94056dc6d570fD9132b028Bb3F3064AD141cF5D0", + "status": "abandoned", + "id": "0x94056dc6d570fD9132b028Bb3F3064AD141cF5D0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94056dc6d570fD9132b028Bb3F3064AD141cF5D0/logo.png b/blockchains/ethereum/assets/0x94056dc6d570fD9132b028Bb3F3064AD141cF5D0/logo.png new file mode 100644 index 00000000..e67f7ae4 Binary files /dev/null and b/blockchains/ethereum/assets/0x94056dc6d570fD9132b028Bb3F3064AD141cF5D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x940BdCb99A0Ee5Fb008A606778AE87Ed9789F257/info.json b/blockchains/ethereum/assets/0x940BdCb99A0Ee5Fb008A606778AE87Ed9789F257/info.json new file mode 100644 index 00000000..3fdb4c7f --- /dev/null +++ b/blockchains/ethereum/assets/0x940BdCb99A0Ee5Fb008A606778AE87Ed9789F257/info.json @@ -0,0 +1,11 @@ +{ + "name": "JFIN Coin", + "symbol": "JFIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x940BdCb99A0Ee5Fb008A606778AE87Ed9789F257", + "status": "abandoned", + "id": "0x940BdCb99A0Ee5Fb008A606778AE87Ed9789F257" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x940BdCb99A0Ee5Fb008A606778AE87Ed9789F257/logo.png b/blockchains/ethereum/assets/0x940BdCb99A0Ee5Fb008A606778AE87Ed9789F257/logo.png new file mode 100644 index 00000000..85ad2774 Binary files /dev/null and b/blockchains/ethereum/assets/0x940BdCb99A0Ee5Fb008A606778AE87Ed9789F257/logo.png differ diff --git a/blockchains/ethereum/assets/0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551/info.json b/blockchains/ethereum/assets/0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551/info.json new file mode 100644 index 00000000..639e1146 --- /dev/null +++ b/blockchains/ethereum/assets/0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dusk Network", + "symbol": "DUSK", + "type": "ERC20", + "decimals": 18, + "description": "Dusk Network is technology for securities. An open source and secure blockchain (DLT) infrastructure that businesses use to tokenize financial instruments and automate costly processes.", + "website": "https://dusk.network/", + "explorer": "https://etherscan.io/token/0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551", + "status": "active", + "id": "0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551/logo.png b/blockchains/ethereum/assets/0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551/logo.png new file mode 100644 index 00000000..e59c692b Binary files /dev/null and b/blockchains/ethereum/assets/0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551/logo.png differ diff --git a/blockchains/ethereum/assets/0x94236591125E935F5ac128Bb3d5062944C24958c/info.json b/blockchains/ethereum/assets/0x94236591125E935F5ac128Bb3d5062944C24958c/info.json new file mode 100644 index 00000000..7ceba72a --- /dev/null +++ b/blockchains/ethereum/assets/0x94236591125E935F5ac128Bb3d5062944C24958c/info.json @@ -0,0 +1,11 @@ +{ + "name": "VegaWallet", + "symbol": "VGW", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "https://vegawallet.com/", + "explorer": "https://etherscan.io/token/0x94236591125E935F5ac128Bb3d5062944C24958c", + "status": "active", + "id": "0x94236591125E935F5ac128Bb3d5062944C24958c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94236591125E935F5ac128Bb3d5062944C24958c/logo.png b/blockchains/ethereum/assets/0x94236591125E935F5ac128Bb3d5062944C24958c/logo.png new file mode 100644 index 00000000..510f9114 Binary files /dev/null and b/blockchains/ethereum/assets/0x94236591125E935F5ac128Bb3d5062944C24958c/logo.png differ diff --git a/blockchains/ethereum/assets/0x94298F1e0Ab2DFaD6eEFfB1426846a3c29D98090/info.json b/blockchains/ethereum/assets/0x94298F1e0Ab2DFaD6eEFfB1426846a3c29D98090/info.json new file mode 100644 index 00000000..8a7dfb71 --- /dev/null +++ b/blockchains/ethereum/assets/0x94298F1e0Ab2DFaD6eEFfB1426846a3c29D98090/info.json @@ -0,0 +1,11 @@ +{ + "name": "MyBit Token", + "symbol": "MyB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x94298F1e0Ab2DFaD6eEFfB1426846a3c29D98090", + "status": "abandoned", + "id": "0x94298F1e0Ab2DFaD6eEFfB1426846a3c29D98090" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94298F1e0Ab2DFaD6eEFfB1426846a3c29D98090/logo.png b/blockchains/ethereum/assets/0x94298F1e0Ab2DFaD6eEFfB1426846a3c29D98090/logo.png new file mode 100644 index 00000000..d2dae7ff Binary files /dev/null and b/blockchains/ethereum/assets/0x94298F1e0Ab2DFaD6eEFfB1426846a3c29D98090/logo.png differ diff --git a/blockchains/ethereum/assets/0x943ACa8ed65FBf188A7D369Cfc2BeE0aE435ee1B/info.json b/blockchains/ethereum/assets/0x943ACa8ed65FBf188A7D369Cfc2BeE0aE435ee1B/info.json new file mode 100644 index 00000000..4e82eaba --- /dev/null +++ b/blockchains/ethereum/assets/0x943ACa8ed65FBf188A7D369Cfc2BeE0aE435ee1B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Contractium", + "symbol": "CTU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x943ACa8ed65FBf188A7D369Cfc2BeE0aE435ee1B", + "status": "abandoned", + "id": "0x943ACa8ed65FBf188A7D369Cfc2BeE0aE435ee1B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x943ACa8ed65FBf188A7D369Cfc2BeE0aE435ee1B/logo.png b/blockchains/ethereum/assets/0x943ACa8ed65FBf188A7D369Cfc2BeE0aE435ee1B/logo.png new file mode 100644 index 00000000..a2aacc59 Binary files /dev/null and b/blockchains/ethereum/assets/0x943ACa8ed65FBf188A7D369Cfc2BeE0aE435ee1B/logo.png differ diff --git a/blockchains/ethereum/assets/0x943ED852DadB5C3938ECdC6883718df8142DE4C8/info.json b/blockchains/ethereum/assets/0x943ED852DadB5C3938ECdC6883718df8142DE4C8/info.json new file mode 100644 index 00000000..fede78d7 --- /dev/null +++ b/blockchains/ethereum/assets/0x943ED852DadB5C3938ECdC6883718df8142DE4C8/info.json @@ -0,0 +1,11 @@ +{ + "name": "FTI", + "symbol": "FTI", + "type": "ERC20", + "decimals": 18, + "description": "FansTime (FTI) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.fanstime.org/english.html", + "explorer": "https://etherscan.io/token/0x943ED852DadB5C3938ECdC6883718df8142DE4C8", + "status": "active", + "id": "0x943ED852DadB5C3938ECdC6883718df8142DE4C8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x943ED852DadB5C3938ECdC6883718df8142DE4C8/logo.png b/blockchains/ethereum/assets/0x943ED852DadB5C3938ECdC6883718df8142DE4C8/logo.png new file mode 100755 index 00000000..8ca2c133 Binary files /dev/null and b/blockchains/ethereum/assets/0x943ED852DadB5C3938ECdC6883718df8142DE4C8/logo.png differ diff --git a/blockchains/ethereum/assets/0x9443528Ec80759098287A01C0856eB2Cddbd19C2/info.json b/blockchains/ethereum/assets/0x9443528Ec80759098287A01C0856eB2Cddbd19C2/info.json new file mode 100644 index 00000000..a9c68337 --- /dev/null +++ b/blockchains/ethereum/assets/0x9443528Ec80759098287A01C0856eB2Cddbd19C2/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZBCoin", + "symbol": "ZBC", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9443528Ec80759098287A01C0856eB2Cddbd19C2", + "status": "abandoned", + "id": "0x9443528Ec80759098287A01C0856eB2Cddbd19C2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9443528Ec80759098287A01C0856eB2Cddbd19C2/logo.png b/blockchains/ethereum/assets/0x9443528Ec80759098287A01C0856eB2Cddbd19C2/logo.png new file mode 100644 index 00000000..ec7f0a22 Binary files /dev/null and b/blockchains/ethereum/assets/0x9443528Ec80759098287A01C0856eB2Cddbd19C2/logo.png differ diff --git a/blockchains/ethereum/assets/0x944824290CC12F31ae18Ef51216A223Ba4063092/info.json b/blockchains/ethereum/assets/0x944824290CC12F31ae18Ef51216A223Ba4063092/info.json new file mode 100644 index 00000000..6847da4e --- /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 00000000..c822013e Binary files /dev/null and b/blockchains/ethereum/assets/0x944824290CC12F31ae18Ef51216A223Ba4063092/logo.png differ diff --git a/blockchains/ethereum/assets/0x944eeE930933BE5E23b690c8589021Ec8619a301/info.json b/blockchains/ethereum/assets/0x944eeE930933BE5E23b690c8589021Ec8619a301/info.json new file mode 100644 index 00000000..49514ea8 --- /dev/null +++ b/blockchains/ethereum/assets/0x944eeE930933BE5E23b690c8589021Ec8619a301/info.json @@ -0,0 +1,11 @@ +{ + "name": "MUNCH Token", + "symbol": "MUNCH", + "type": "ERC20", + "decimals": 9, + "description": "Munch is a fully decentralized, community-built project to help charities. We are very active in our community and strive to develop trust by being transparent in our mission and our goals.", + "website": "https://munchtoken.com/", + "explorer": "https://etherscan.io/token/0x944eeE930933BE5E23b690c8589021Ec8619a301", + "status": "active", + "id": "0x944eeE930933BE5E23b690c8589021Ec8619a301" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x944eeE930933BE5E23b690c8589021Ec8619a301/logo.png b/blockchains/ethereum/assets/0x944eeE930933BE5E23b690c8589021Ec8619a301/logo.png new file mode 100644 index 00000000..09a51ef2 Binary files /dev/null and b/blockchains/ethereum/assets/0x944eeE930933BE5E23b690c8589021Ec8619a301/logo.png differ diff --git a/blockchains/ethereum/assets/0x945192524C6605D20be6C529Dd318666B74078BC/info.json b/blockchains/ethereum/assets/0x945192524C6605D20be6C529Dd318666B74078BC/info.json new file mode 100644 index 00000000..5dfa48da --- /dev/null +++ b/blockchains/ethereum/assets/0x945192524C6605D20be6C529Dd318666B74078BC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitsrent", + "symbol": "BTR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x945192524C6605D20be6C529Dd318666B74078BC", + "status": "abandoned", + "id": "0x945192524C6605D20be6C529Dd318666B74078BC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x945192524C6605D20be6C529Dd318666B74078BC/logo.png b/blockchains/ethereum/assets/0x945192524C6605D20be6C529Dd318666B74078BC/logo.png new file mode 100644 index 00000000..54051fd1 Binary files /dev/null and b/blockchains/ethereum/assets/0x945192524C6605D20be6C529Dd318666B74078BC/logo.png differ diff --git a/blockchains/ethereum/assets/0x946112efaB61C3636CBD52DE2E1392D7A75A6f01/info.json b/blockchains/ethereum/assets/0x946112efaB61C3636CBD52DE2E1392D7A75A6f01/info.json new file mode 100644 index 00000000..860761d0 --- /dev/null +++ b/blockchains/ethereum/assets/0x946112efaB61C3636CBD52DE2E1392D7A75A6f01/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hydro Token", + "symbol": "HYDRO", + "type": "ERC20", + "decimals": 18, + "description": "Hydro is a decentralized ecosystem using cutting-edge cryptography to secure user accounts, identities, and transactions.", + "website": "https://www.projecthydro.org", + "explorer": "https://etherscan.io/token/0x946112efab61c3636cbd52de2e1392d7a75a6f01", + "status": "active", + "id": "0x946112efaB61C3636CBD52DE2E1392D7A75A6f01" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x946112efaB61C3636CBD52DE2E1392D7A75A6f01/logo.png b/blockchains/ethereum/assets/0x946112efaB61C3636CBD52DE2E1392D7A75A6f01/logo.png new file mode 100644 index 00000000..64d8db5a Binary files /dev/null and b/blockchains/ethereum/assets/0x946112efaB61C3636CBD52DE2E1392D7A75A6f01/logo.png differ diff --git a/blockchains/ethereum/assets/0x9469D013805bFfB7D3DEBe5E7839237e535ec483/info.json b/blockchains/ethereum/assets/0x9469D013805bFfB7D3DEBe5E7839237e535ec483/info.json new file mode 100644 index 00000000..b70cacf7 --- /dev/null +++ b/blockchains/ethereum/assets/0x9469D013805bFfB7D3DEBe5E7839237e535ec483/info.json @@ -0,0 +1,11 @@ +{ + "name": "Evolution Land Global Token", + "symbol": "RING", + "type": "ERC20", + "decimals": 18, + "description": "RING is the native token of Darwinia Network. It's used to pay for the GAS fee of the on-chain transactions and cross-chain services. RING can be staked for staking rewards and obtaining voting power to participate in the governance.", + "website": "https://darwinia.network", + "explorer": "https://etherscan.io/token/0x9469D013805bFfB7D3DEBe5E7839237e535ec483", + "status": "active", + "id": "0x9469D013805bFfB7D3DEBe5E7839237e535ec483" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9469D013805bFfB7D3DEBe5E7839237e535ec483/logo.png b/blockchains/ethereum/assets/0x9469D013805bFfB7D3DEBe5E7839237e535ec483/logo.png new file mode 100644 index 00000000..50be36d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x9469D013805bFfB7D3DEBe5E7839237e535ec483/logo.png differ diff --git a/blockchains/ethereum/assets/0x946eA588417fFa565976EFdA354d82c01719a2EA/info.json b/blockchains/ethereum/assets/0x946eA588417fFa565976EFdA354d82c01719a2EA/info.json new file mode 100644 index 00000000..78da7f53 --- /dev/null +++ b/blockchains/ethereum/assets/0x946eA588417fFa565976EFdA354d82c01719a2EA/info.json @@ -0,0 +1,11 @@ +{ + "name": "SWZL", + "symbol": "SWZL", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://www.swapzilla.co/", + "explorer": "https://etherscan.io/token/0x946eA588417fFa565976EFdA354d82c01719a2EA", + "status": "abandoned", + "id": "0x946eA588417fFa565976EFdA354d82c01719a2EA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x946eA588417fFa565976EFdA354d82c01719a2EA/logo.png b/blockchains/ethereum/assets/0x946eA588417fFa565976EFdA354d82c01719a2EA/logo.png new file mode 100644 index 00000000..55c06452 Binary files /dev/null and b/blockchains/ethereum/assets/0x946eA588417fFa565976EFdA354d82c01719a2EA/logo.png differ diff --git a/blockchains/ethereum/assets/0x947AEb02304391f8fbE5B25D7D98D649b57b1788/info.json b/blockchains/ethereum/assets/0x947AEb02304391f8fbE5B25D7D98D649b57b1788/info.json new file mode 100644 index 00000000..75cb1f5d --- /dev/null +++ b/blockchains/ethereum/assets/0x947AEb02304391f8fbE5B25D7D98D649b57b1788/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mandala Exchange Token", + "website": "https://www.mandala.exchange", + "description": "Mandala Exchange users can unlock platform enhancements and receive trading fee rebates by locking MDX on the platform.", + "explorer": "https://etherscan.io/token/0x947aeb02304391f8fbe5b25d7d98d649b57b1788", + "type": "ERC20", + "symbol": "MDX", + "decimals": 18, + "status": "active", + "id": "0x947AEb02304391f8fbE5B25D7D98D649b57b1788" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x947AEb02304391f8fbE5B25D7D98D649b57b1788/logo.png b/blockchains/ethereum/assets/0x947AEb02304391f8fbE5B25D7D98D649b57b1788/logo.png new file mode 100644 index 00000000..65be3f71 Binary files /dev/null and b/blockchains/ethereum/assets/0x947AEb02304391f8fbE5B25D7D98D649b57b1788/logo.png differ diff --git a/blockchains/ethereum/assets/0x9484451e0D1c3364aC50AE77ec72300a3dd896b5/info.json b/blockchains/ethereum/assets/0x9484451e0D1c3364aC50AE77ec72300a3dd896b5/info.json new file mode 100644 index 00000000..57dfb17d --- /dev/null +++ b/blockchains/ethereum/assets/0x9484451e0D1c3364aC50AE77ec72300a3dd896b5/info.json @@ -0,0 +1,11 @@ +{ + "name": "StonieCoin BETA", + "symbol": "STC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9484451e0D1c3364aC50AE77ec72300a3dd896b5", + "status": "abandoned", + "id": "0x9484451e0D1c3364aC50AE77ec72300a3dd896b5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9484451e0D1c3364aC50AE77ec72300a3dd896b5/logo.png b/blockchains/ethereum/assets/0x9484451e0D1c3364aC50AE77ec72300a3dd896b5/logo.png new file mode 100644 index 00000000..aec8a42b Binary files /dev/null and b/blockchains/ethereum/assets/0x9484451e0D1c3364aC50AE77ec72300a3dd896b5/logo.png differ diff --git a/blockchains/ethereum/assets/0x94933770344a66687523C5d24ECD43FE305094d8/info.json b/blockchains/ethereum/assets/0x94933770344a66687523C5d24ECD43FE305094d8/info.json new file mode 100644 index 00000000..7a497dfd --- /dev/null +++ b/blockchains/ethereum/assets/0x94933770344a66687523C5d24ECD43FE305094d8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hydrogen", + "symbol": "HYD", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x94933770344a66687523C5d24ECD43FE305094d8", + "status": "abandoned", + "id": "0x94933770344a66687523C5d24ECD43FE305094d8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94933770344a66687523C5d24ECD43FE305094d8/logo.png b/blockchains/ethereum/assets/0x94933770344a66687523C5d24ECD43FE305094d8/logo.png new file mode 100644 index 00000000..2c080e53 Binary files /dev/null and b/blockchains/ethereum/assets/0x94933770344a66687523C5d24ECD43FE305094d8/logo.png differ diff --git a/blockchains/ethereum/assets/0x9496b91175490C26887DBD18cc423AD40CcD274E/info.json b/blockchains/ethereum/assets/0x9496b91175490C26887DBD18cc423AD40CcD274E/info.json new file mode 100644 index 00000000..ee85f95e --- /dev/null +++ b/blockchains/ethereum/assets/0x9496b91175490C26887DBD18cc423AD40CcD274E/info.json @@ -0,0 +1,11 @@ +{ + "name": "future modern builderbucks", + "symbol": "BUILD", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9496b91175490C26887DBD18cc423AD40CcD274E", + "status": "abandoned", + "id": "0x9496b91175490C26887DBD18cc423AD40CcD274E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9496b91175490C26887DBD18cc423AD40CcD274E/logo.png b/blockchains/ethereum/assets/0x9496b91175490C26887DBD18cc423AD40CcD274E/logo.png new file mode 100644 index 00000000..a5b26e40 Binary files /dev/null and b/blockchains/ethereum/assets/0x9496b91175490C26887DBD18cc423AD40CcD274E/logo.png differ diff --git a/blockchains/ethereum/assets/0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6/info.json b/blockchains/ethereum/assets/0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6/info.json new file mode 100644 index 00000000..76b75aec --- /dev/null +++ b/blockchains/ethereum/assets/0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6/info.json @@ -0,0 +1,49 @@ +{ + "name": "Merit Circle", + "type": "ERC20", + "symbol": "MC", + "decimals": 18, + "website": "https://www.meritcircle.io", + "description": "Merit Circle is a game guild DAO focusing on maximizing yield across play to earn (p2e) games and the metaverse. The DAO will manage capital which will be allocated among managers and players in order to earn yield by playing games.", + "explorer": "https://etherscan.io/token/0x949d48eca67b17269629c7194f4b727d4ef9e5d6", + "status": "active", + "id": "0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6", + "links": [ + { + "name": "x", + "url": "https://x.com/meritcircle_io" + }, + { + "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": "blog", + "url": "https://medium.com/@meritcircle" + }, + { + "name": "docs", + "url": "https://meritcircle.gitbook.io/" + }, + { + "name": "facebook", + "url": "https://facebook.com/meritcircleIO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/merit-circle/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/merit-circle" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6/logo.png b/blockchains/ethereum/assets/0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6/logo.png new file mode 100644 index 00000000..f448c3a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6/logo.png differ diff --git a/blockchains/ethereum/assets/0x949bEd886c739f1A3273629b3320db0C5024c719/info.json b/blockchains/ethereum/assets/0x949bEd886c739f1A3273629b3320db0C5024c719/info.json new file mode 100644 index 00000000..16719fb7 --- /dev/null +++ b/blockchains/ethereum/assets/0x949bEd886c739f1A3273629b3320db0C5024c719/info.json @@ -0,0 +1,11 @@ +{ + "name": "AMIS", + "symbol": "AMIS", + "type": "ERC20", + "decimals": 9, + "description": "The AMIS designate Asset Management Instruments acting as one-stop shop Multi-dimensional, multi-purposes fast moving, versatile transactional vehicles running on the ethereum blockchain natively but also on Saturn, BitShares and Waves cascaded blockchains.", + "website": "http://erc20-amis.amisolution.net/", + "explorer": "https://etherscan.io/token/0x949bEd886c739f1A3273629b3320db0C5024c719", + "status": "active", + "id": "0x949bEd886c739f1A3273629b3320db0C5024c719" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x949bEd886c739f1A3273629b3320db0C5024c719/logo.png b/blockchains/ethereum/assets/0x949bEd886c739f1A3273629b3320db0C5024c719/logo.png new file mode 100755 index 00000000..17917cf2 Binary files /dev/null and b/blockchains/ethereum/assets/0x949bEd886c739f1A3273629b3320db0C5024c719/logo.png differ diff --git a/blockchains/ethereum/assets/0x94Cb815F4b601B00b363B3177B4D8ed8e0EB7cF2/info.json b/blockchains/ethereum/assets/0x94Cb815F4b601B00b363B3177B4D8ed8e0EB7cF2/info.json new file mode 100644 index 00000000..74d3f6da --- /dev/null +++ b/blockchains/ethereum/assets/0x94Cb815F4b601B00b363B3177B4D8ed8e0EB7cF2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coin Controller Cash", + "symbol": "CCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.coindom.com/", + "explorer": "https://etherscan.io/token/0x94Cb815F4b601B00b363B3177B4D8ed8e0EB7cF2", + "status": "abandoned", + "id": "0x94Cb815F4b601B00b363B3177B4D8ed8e0EB7cF2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94Cb815F4b601B00b363B3177B4D8ed8e0EB7cF2/logo.png b/blockchains/ethereum/assets/0x94Cb815F4b601B00b363B3177B4D8ed8e0EB7cF2/logo.png new file mode 100644 index 00000000..4945b177 Binary files /dev/null and b/blockchains/ethereum/assets/0x94Cb815F4b601B00b363B3177B4D8ed8e0EB7cF2/logo.png differ diff --git a/blockchains/ethereum/assets/0x94D08EDdD9b41B486E3e5DBe500c2cCf165A22Bc/info.json b/blockchains/ethereum/assets/0x94D08EDdD9b41B486E3e5DBe500c2cCf165A22Bc/info.json new file mode 100644 index 00000000..19c8ab46 --- /dev/null +++ b/blockchains/ethereum/assets/0x94D08EDdD9b41B486E3e5DBe500c2cCf165A22Bc/info.json @@ -0,0 +1,11 @@ +{ + "name": "BIOX", + "symbol": "BIOX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x94D08EDdD9b41B486E3e5DBe500c2cCf165A22Bc", + "status": "abandoned", + "id": "0x94D08EDdD9b41B486E3e5DBe500c2cCf165A22Bc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94D08EDdD9b41B486E3e5DBe500c2cCf165A22Bc/logo.png b/blockchains/ethereum/assets/0x94D08EDdD9b41B486E3e5DBe500c2cCf165A22Bc/logo.png new file mode 100755 index 00000000..b60dce3a Binary files /dev/null and b/blockchains/ethereum/assets/0x94D08EDdD9b41B486E3e5DBe500c2cCf165A22Bc/logo.png differ diff --git a/blockchains/ethereum/assets/0x94DFd4E2210Fa5B752c3CD0f381edad9dA6640f8/info.json b/blockchains/ethereum/assets/0x94DFd4E2210Fa5B752c3CD0f381edad9dA6640f8/info.json new file mode 100644 index 00000000..42f5e663 --- /dev/null +++ b/blockchains/ethereum/assets/0x94DFd4E2210Fa5B752c3CD0f381edad9dA6640f8/info.json @@ -0,0 +1,40 @@ +{ + "name": "Sphynx ETH", + "type": "ERC20", + "symbol": "SPHYNX", + "decimals": 18, + "website": "https://sphynxlabs.co", + "description": "At Sphynx we aim to provide an AIO(All-In-One) solution for trading, farming, staking and holding. The amount of trading, staking and farming platforms out there can be overwhelming and difficult to navigate. This creates a massive barrier to entry for those new to the world of crypto trading.", + "explorer": "https://etherscan.io/token/0x94dfd4e2210fa5b752c3cd0f381edad9da6640f8", + "status": "active", + "id": "0x94DFd4E2210Fa5B752c3CD0f381edad9dA6640f8", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sphynx-eth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sphynx-eth" + }, + { + "name": "telegram", + "url": "https://t.me/sphynxswapETH" + }, + { + "name": "medium", + "url": "https://medium.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/0x94DFd4E2210Fa5B752c3CD0f381edad9dA6640f8/logo.png b/blockchains/ethereum/assets/0x94DFd4E2210Fa5B752c3CD0f381edad9dA6640f8/logo.png new file mode 100644 index 00000000..65c01c79 Binary files /dev/null and b/blockchains/ethereum/assets/0x94DFd4E2210Fa5B752c3CD0f381edad9dA6640f8/logo.png differ diff --git a/blockchains/ethereum/assets/0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5/info.json b/blockchains/ethereum/assets/0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5/info.json new file mode 100644 index 00000000..5faecc09 --- /dev/null +++ b/blockchains/ethereum/assets/0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5/info.json @@ -0,0 +1,28 @@ +{ + "name": "UNIC", + "type": "ERC20", + "symbol": "UNIC", + "decimals": 18, + "website": "https://www.unic.ly/", + "description": "Unicly is a permissionless, community-governed protocol to combine, fractionalize, and trade NFTs. Built by NFT collectors and DeFi enthusiasts, the protocol incentivizes NFT liquidity and provides a seamless trading experience for fractionalized NFTs.", + "explorer": "https://etherscan.io/token/0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5", + "status": "active", + "id": "0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5", + "links": [ + { + "name": "x", + "url": "https://x.com/uniclyNFT" + }, + { + "name": "medium", + "url": "https://medium.com/unicly" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unicly/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5/logo.png b/blockchains/ethereum/assets/0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5/logo.png new file mode 100644 index 00000000..0acb5901 Binary files /dev/null and b/blockchains/ethereum/assets/0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5/logo.png differ diff --git a/blockchains/ethereum/assets/0x94Ec918ddEEcFDfCBf8C8d3E848B7c3E8D8CeAa1/info.json b/blockchains/ethereum/assets/0x94Ec918ddEEcFDfCBf8C8d3E848B7c3E8D8CeAa1/info.json new file mode 100644 index 00000000..3807aa81 --- /dev/null +++ b/blockchains/ethereum/assets/0x94Ec918ddEEcFDfCBf8C8d3E848B7c3E8D8CeAa1/info.json @@ -0,0 +1,26 @@ +{ + "name": "Wrapped Zynecoin", + "type": "ERC20", + "symbol": "WYZN", + "decimals": 18, + "website": "https://bridge.wethio.io/", + "short_description": "Wrapped Zynecoin on the Ethereum blockchain.", + "description": "Wrapped Zynecoin is a Wrapped version of Zynecoin its purpose is to provide interoperability between the Wethio blockchain and Ethereum blockchain.", + "explorer": "https://etherscan.io/token/0x94ec918ddeecfdfcbf8c8d3e848b7c3e8d8ceaa1", + "status": "active", + "id": "0x94Ec918ddEEcFDfCBf8C8d3E848B7c3E8D8CeAa1", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Zynecoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/zynecoin/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCiZ-xova4unF-3HI04ZFOIw" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94Ec918ddEEcFDfCBf8C8d3E848B7c3E8D8CeAa1/logo.png b/blockchains/ethereum/assets/0x94Ec918ddEEcFDfCBf8C8d3E848B7c3E8D8CeAa1/logo.png new file mode 100644 index 00000000..2e1a0cef Binary files /dev/null and b/blockchains/ethereum/assets/0x94Ec918ddEEcFDfCBf8C8d3E848B7c3E8D8CeAa1/logo.png differ diff --git a/blockchains/ethereum/assets/0x94Ede7A8AE3dE41469474A1Aa710838F5cDC6369/info.json b/blockchains/ethereum/assets/0x94Ede7A8AE3dE41469474A1Aa710838F5cDC6369/info.json new file mode 100644 index 00000000..68964bca --- /dev/null +++ b/blockchains/ethereum/assets/0x94Ede7A8AE3dE41469474A1Aa710838F5cDC6369/info.json @@ -0,0 +1,11 @@ +{ + "name": "EtherCenter", + "symbol": "ECT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x94Ede7A8AE3dE41469474A1Aa710838F5cDC6369", + "status": "abandoned", + "id": "0x94Ede7A8AE3dE41469474A1Aa710838F5cDC6369" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94Ede7A8AE3dE41469474A1Aa710838F5cDC6369/logo.png b/blockchains/ethereum/assets/0x94Ede7A8AE3dE41469474A1Aa710838F5cDC6369/logo.png new file mode 100644 index 00000000..577457cd Binary files /dev/null and b/blockchains/ethereum/assets/0x94Ede7A8AE3dE41469474A1Aa710838F5cDC6369/logo.png differ diff --git a/blockchains/ethereum/assets/0x94F31aC896c9823D81cf9C2C93feCEeD4923218f/info.json b/blockchains/ethereum/assets/0x94F31aC896c9823D81cf9C2C93feCEeD4923218f/info.json new file mode 100644 index 00000000..590f57a5 --- /dev/null +++ b/blockchains/ethereum/assets/0x94F31aC896c9823D81cf9C2C93feCEeD4923218f/info.json @@ -0,0 +1,33 @@ +{ + "name": "Yftether.io", + "website": "https://yftether.io", + "description": "YFTether aims to expand the utilization of blockchain from elementary value transfer to further complex financial use cases.", + "explorer": "https://etherscan.io/token/0x94f31ac896c9823d81cf9c2c93feceed4923218f", + "type": "ERC20", + "symbol": "YFTE", + "decimals": 18, + "status": "active", + "id": "0x94F31aC896c9823D81cf9C2C93feCEeD4923218f", + "links": [ + { + "name": "github", + "url": "https://github.com/yftether" + }, + { + "name": "x", + "url": "https://x.com/yftether" + }, + { + "name": "telegram", + "url": "https://t.me/YfTether" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/yftether/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/yftether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94F31aC896c9823D81cf9C2C93feCEeD4923218f/logo.png b/blockchains/ethereum/assets/0x94F31aC896c9823D81cf9C2C93feCEeD4923218f/logo.png new file mode 100644 index 00000000..2b18c2a8 Binary files /dev/null and b/blockchains/ethereum/assets/0x94F31aC896c9823D81cf9C2C93feCEeD4923218f/logo.png differ diff --git a/blockchains/ethereum/assets/0x94a7f270cd12545A277E656266Aef5e27dF3Eb28/info.json b/blockchains/ethereum/assets/0x94a7f270cd12545A277E656266Aef5e27dF3Eb28/info.json new file mode 100644 index 00000000..b522cc7a --- /dev/null +++ b/blockchains/ethereum/assets/0x94a7f270cd12545A277E656266Aef5e27dF3Eb28/info.json @@ -0,0 +1,28 @@ +{ + "name": "Wrapped Stream", + "website": "https://stream-coin.com/", + "description": "All-in-one Live Streaming on a blockchain-based platform.", + "explorer": "https://etherscan.io/token/0x94a7f270cd12545a277e656266aef5e27df3eb28", + "type": "ERC20", + "symbol": "MSTRM", + "decimals": 18, + "status": "active", + "id": "0x94a7f270cd12545A277E656266Aef5e27dF3Eb28", + "links": [ + { + "name": "x", + "url": "https://x.com/streamcoin_strm" + }, + { + "name": "github", + "url": "https://github.com/stream-coin-tech" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stream-coin/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94a7f270cd12545A277E656266Aef5e27dF3Eb28/logo.png b/blockchains/ethereum/assets/0x94a7f270cd12545A277E656266Aef5e27dF3Eb28/logo.png new file mode 100644 index 00000000..3e041120 Binary files /dev/null and b/blockchains/ethereum/assets/0x94a7f270cd12545A277E656266Aef5e27dF3Eb28/logo.png differ diff --git a/blockchains/ethereum/assets/0x94a8b4EE5CD64C79D0Ee816f467EA73009f51aA0/info.json b/blockchains/ethereum/assets/0x94a8b4EE5CD64C79D0Ee816f467EA73009f51aA0/info.json new file mode 100644 index 00000000..8eff8f9c --- /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 00000000..63038715 Binary files /dev/null and b/blockchains/ethereum/assets/0x94a8b4EE5CD64C79D0Ee816f467EA73009f51aA0/logo.png differ diff --git a/blockchains/ethereum/assets/0x94b86C1F3682D6e87a84bCD9E2d281286CB7A904/info.json b/blockchains/ethereum/assets/0x94b86C1F3682D6e87a84bCD9E2d281286CB7A904/info.json new file mode 100644 index 00000000..c3b4a45c --- /dev/null +++ b/blockchains/ethereum/assets/0x94b86C1F3682D6e87a84bCD9E2d281286CB7A904/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoonCoin V1", + "symbol": "MOON", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x94b86C1F3682D6e87a84bCD9E2d281286CB7A904", + "status": "abandoned", + "id": "0x94b86C1F3682D6e87a84bCD9E2d281286CB7A904" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94b86C1F3682D6e87a84bCD9E2d281286CB7A904/logo.png b/blockchains/ethereum/assets/0x94b86C1F3682D6e87a84bCD9E2d281286CB7A904/logo.png new file mode 100644 index 00000000..fa678dff Binary files /dev/null and b/blockchains/ethereum/assets/0x94b86C1F3682D6e87a84bCD9E2d281286CB7A904/logo.png differ diff --git a/blockchains/ethereum/assets/0x94d6b4fB35fB08Cb34Aa716ab40049Ec88002079/info.json b/blockchains/ethereum/assets/0x94d6b4fB35fB08Cb34Aa716ab40049Ec88002079/info.json new file mode 100644 index 00000000..3c033ccf --- /dev/null +++ b/blockchains/ethereum/assets/0x94d6b4fB35fB08Cb34Aa716ab40049Ec88002079/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptonex (CNX) - Global Blockchain Acquiring", + "symbol": "CNX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x94d6b4fB35fB08Cb34Aa716ab40049Ec88002079", + "status": "abandoned", + "id": "0x94d6b4fB35fB08Cb34Aa716ab40049Ec88002079" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94d6b4fB35fB08Cb34Aa716ab40049Ec88002079/logo.png b/blockchains/ethereum/assets/0x94d6b4fB35fB08Cb34Aa716ab40049Ec88002079/logo.png new file mode 100644 index 00000000..2555614e Binary files /dev/null and b/blockchains/ethereum/assets/0x94d6b4fB35fB08Cb34Aa716ab40049Ec88002079/logo.png differ diff --git a/blockchains/ethereum/assets/0x94e94d695e4Edb8aeF055Fd075C5a3C1cBE39263/info.json b/blockchains/ethereum/assets/0x94e94d695e4Edb8aeF055Fd075C5a3C1cBE39263/info.json new file mode 100644 index 00000000..76296e0f --- /dev/null +++ b/blockchains/ethereum/assets/0x94e94d695e4Edb8aeF055Fd075C5a3C1cBE39263/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg8000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x94e94d695e4Edb8aeF055Fd075C5a3C1cBE39263", + "status": "abandoned", + "id": "0x94e94d695e4Edb8aeF055Fd075C5a3C1cBE39263" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94e94d695e4Edb8aeF055Fd075C5a3C1cBE39263/logo.png b/blockchains/ethereum/assets/0x94e94d695e4Edb8aeF055Fd075C5a3C1cBE39263/logo.png new file mode 100644 index 00000000..ef90afeb Binary files /dev/null and b/blockchains/ethereum/assets/0x94e94d695e4Edb8aeF055Fd075C5a3C1cBE39263/logo.png differ diff --git a/blockchains/ethereum/assets/0x94eea9a484F0BaE03D19623cfe389E2CBA56B72F/info.json b/blockchains/ethereum/assets/0x94eea9a484F0BaE03D19623cfe389E2CBA56B72F/info.json new file mode 100644 index 00000000..ce0f7723 --- /dev/null +++ b/blockchains/ethereum/assets/0x94eea9a484F0BaE03D19623cfe389E2CBA56B72F/info.json @@ -0,0 +1,11 @@ +{ + "name": "ENZO", + "symbol": "NZO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.alfaenzo.org/", + "explorer": "https://etherscan.io/token/0x94eea9a484F0BaE03D19623cfe389E2CBA56B72F", + "status": "abandoned", + "id": "0x94eea9a484F0BaE03D19623cfe389E2CBA56B72F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x94eea9a484F0BaE03D19623cfe389E2CBA56B72F/logo.png b/blockchains/ethereum/assets/0x94eea9a484F0BaE03D19623cfe389E2CBA56B72F/logo.png new file mode 100644 index 00000000..cac488c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x94eea9a484F0BaE03D19623cfe389E2CBA56B72F/logo.png differ diff --git a/blockchains/ethereum/assets/0x9501BFc48897DCEEadf73113EF635d2fF7ee4B97/info.json b/blockchains/ethereum/assets/0x9501BFc48897DCEEadf73113EF635d2fF7ee4B97/info.json new file mode 100644 index 00000000..1a256c5c --- /dev/null +++ b/blockchains/ethereum/assets/0x9501BFc48897DCEEadf73113EF635d2fF7ee4B97/info.json @@ -0,0 +1,11 @@ +{ + "name": "easyMINE Token", + "symbol": "EMT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://easymine.io/", + "explorer": "https://etherscan.io/token/0x9501BFc48897DCEEadf73113EF635d2fF7ee4B97", + "status": "abandoned", + "id": "0x9501BFc48897DCEEadf73113EF635d2fF7ee4B97" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9501BFc48897DCEEadf73113EF635d2fF7ee4B97/logo.png b/blockchains/ethereum/assets/0x9501BFc48897DCEEadf73113EF635d2fF7ee4B97/logo.png new file mode 100644 index 00000000..cf3dc2ed Binary files /dev/null and b/blockchains/ethereum/assets/0x9501BFc48897DCEEadf73113EF635d2fF7ee4B97/logo.png differ diff --git a/blockchains/ethereum/assets/0x9506d37f70eB4C3d79C398d326C871aBBf10521d/info.json b/blockchains/ethereum/assets/0x9506d37f70eB4C3d79C398d326C871aBBf10521d/info.json new file mode 100644 index 00000000..9036082f --- /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 00000000..a92c4598 Binary files /dev/null and b/blockchains/ethereum/assets/0x9506d37f70eB4C3d79C398d326C871aBBf10521d/logo.png differ diff --git a/blockchains/ethereum/assets/0x9509AB39e86b0c369Bc09e6F67C7585eFcBD58D9/info.json b/blockchains/ethereum/assets/0x9509AB39e86b0c369Bc09e6F67C7585eFcBD58D9/info.json new file mode 100644 index 00000000..db6621d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x9509AB39e86b0c369Bc09e6F67C7585eFcBD58D9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coindy", + "symbol": "CODY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.coindy.com/", + "explorer": "https://etherscan.io/token/0x9509AB39e86b0c369Bc09e6F67C7585eFcBD58D9", + "status": "abandoned", + "id": "0x9509AB39e86b0c369Bc09e6F67C7585eFcBD58D9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9509AB39e86b0c369Bc09e6F67C7585eFcBD58D9/logo.png b/blockchains/ethereum/assets/0x9509AB39e86b0c369Bc09e6F67C7585eFcBD58D9/logo.png new file mode 100644 index 00000000..c4383419 Binary files /dev/null and b/blockchains/ethereum/assets/0x9509AB39e86b0c369Bc09e6F67C7585eFcBD58D9/logo.png differ diff --git a/blockchains/ethereum/assets/0x9513d8679677Be3D57c7cDD30561105ee1452d69/info.json b/blockchains/ethereum/assets/0x9513d8679677Be3D57c7cDD30561105ee1452d69/info.json new file mode 100644 index 00000000..937b4ba3 --- /dev/null +++ b/blockchains/ethereum/assets/0x9513d8679677Be3D57c7cDD30561105ee1452d69/info.json @@ -0,0 +1,11 @@ +{ + "name": "Python", + "symbol": "ptn", + "type": "ERC20", + "decimals": 1, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9513d8679677Be3D57c7cDD30561105ee1452d69", + "status": "abandoned", + "id": "0x9513d8679677Be3D57c7cDD30561105ee1452d69" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9513d8679677Be3D57c7cDD30561105ee1452d69/logo.png b/blockchains/ethereum/assets/0x9513d8679677Be3D57c7cDD30561105ee1452d69/logo.png new file mode 100644 index 00000000..429d8aaa Binary files /dev/null and b/blockchains/ethereum/assets/0x9513d8679677Be3D57c7cDD30561105ee1452d69/logo.png differ diff --git a/blockchains/ethereum/assets/0x95172ccBe8344fecD73D0a30F54123652981BD6F/info.json b/blockchains/ethereum/assets/0x95172ccBe8344fecD73D0a30F54123652981BD6F/info.json new file mode 100644 index 00000000..0c8818fa --- /dev/null +++ b/blockchains/ethereum/assets/0x95172ccBe8344fecD73D0a30F54123652981BD6F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Meridian Network", + "symbol": "LOCK", + "type": "ERC20", + "decimals": 18, + "description": "Enabling DeFi through community governance.", + "website": "https://meridian-network.co", + "explorer": "https://etherscan.io/token/0x95172ccBe8344fecD73D0a30F54123652981BD6F", + "status": "active", + "id": "0x95172ccBe8344fecD73D0a30F54123652981BD6F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x95172ccBe8344fecD73D0a30F54123652981BD6F/logo.png b/blockchains/ethereum/assets/0x95172ccBe8344fecD73D0a30F54123652981BD6F/logo.png new file mode 100644 index 00000000..2c411aeb Binary files /dev/null and b/blockchains/ethereum/assets/0x95172ccBe8344fecD73D0a30F54123652981BD6F/logo.png differ diff --git a/blockchains/ethereum/assets/0x951cCd8bEA9Aca1Fd913DB3376Cf1B63aFa67cDD/info.json b/blockchains/ethereum/assets/0x951cCd8bEA9Aca1Fd913DB3376Cf1B63aFa67cDD/info.json new file mode 100644 index 00000000..f7477c2b --- /dev/null +++ b/blockchains/ethereum/assets/0x951cCd8bEA9Aca1Fd913DB3376Cf1B63aFa67cDD/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR 900", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x951cCd8bEA9Aca1Fd913DB3376Cf1B63aFa67cDD", + "status": "abandoned", + "id": "0x951cCd8bEA9Aca1Fd913DB3376Cf1B63aFa67cDD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x951cCd8bEA9Aca1Fd913DB3376Cf1B63aFa67cDD/logo.png b/blockchains/ethereum/assets/0x951cCd8bEA9Aca1Fd913DB3376Cf1B63aFa67cDD/logo.png new file mode 100644 index 00000000..f61d1588 Binary files /dev/null and b/blockchains/ethereum/assets/0x951cCd8bEA9Aca1Fd913DB3376Cf1B63aFa67cDD/logo.png differ diff --git a/blockchains/ethereum/assets/0x95382Ac82E886A367bAc9E1e23beAbe569bCfeD8/info.json b/blockchains/ethereum/assets/0x95382Ac82E886A367bAc9E1e23beAbe569bCfeD8/info.json new file mode 100644 index 00000000..78179b33 --- /dev/null +++ b/blockchains/ethereum/assets/0x95382Ac82E886A367bAc9E1e23beAbe569bCfeD8/info.json @@ -0,0 +1,11 @@ +{ + "name": "SURETY Token", + "symbol": "SURE", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x95382Ac82E886A367bAc9E1e23beAbe569bCfeD8", + "status": "abandoned", + "id": "0x95382Ac82E886A367bAc9E1e23beAbe569bCfeD8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x95382Ac82E886A367bAc9E1e23beAbe569bCfeD8/logo.png b/blockchains/ethereum/assets/0x95382Ac82E886A367bAc9E1e23beAbe569bCfeD8/logo.png new file mode 100644 index 00000000..5768f3be Binary files /dev/null and b/blockchains/ethereum/assets/0x95382Ac82E886A367bAc9E1e23beAbe569bCfeD8/logo.png differ diff --git a/blockchains/ethereum/assets/0x95426eD1ef0BF4AC3C006Bbd7E94F46A672dA95a/info.json b/blockchains/ethereum/assets/0x95426eD1ef0BF4AC3C006Bbd7E94F46A672dA95a/info.json new file mode 100644 index 00000000..56b6f883 --- /dev/null +++ b/blockchains/ethereum/assets/0x95426eD1ef0BF4AC3C006Bbd7E94F46A672dA95a/info.json @@ -0,0 +1,11 @@ +{ + "name": "FLY CODING COIN", + "symbol": "FLYC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x95426eD1ef0BF4AC3C006Bbd7E94F46A672dA95a", + "status": "abandoned", + "id": "0x95426eD1ef0BF4AC3C006Bbd7E94F46A672dA95a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x95426eD1ef0BF4AC3C006Bbd7E94F46A672dA95a/logo.png b/blockchains/ethereum/assets/0x95426eD1ef0BF4AC3C006Bbd7E94F46A672dA95a/logo.png new file mode 100644 index 00000000..75157983 Binary files /dev/null and b/blockchains/ethereum/assets/0x95426eD1ef0BF4AC3C006Bbd7E94F46A672dA95a/logo.png differ diff --git a/blockchains/ethereum/assets/0x9548DB8b1cA9b6c757485e7861918b640390169c/info.json b/blockchains/ethereum/assets/0x9548DB8b1cA9b6c757485e7861918b640390169c/info.json new file mode 100644 index 00000000..a9859a30 --- /dev/null +++ b/blockchains/ethereum/assets/0x9548DB8b1cA9b6c757485e7861918b640390169c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave UniLINKETH", + "website": "https://aave.com", + "description": "Aave UniLINKETH is an interest bearing token pegged 1:1 to the underlying LINK and ETH deposited in the Uniswap Market of Aave Protocol.", + "explorer": "https://etherscan.io/token/0x9548DB8b1cA9b6c757485e7861918b640390169c", + "type": "ERC20", + "symbol": "aUniLINKETH", + "decimals": 18, + "status": "active", + "id": "0x9548DB8b1cA9b6c757485e7861918b640390169c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9548DB8b1cA9b6c757485e7861918b640390169c/logo.png b/blockchains/ethereum/assets/0x9548DB8b1cA9b6c757485e7861918b640390169c/logo.png new file mode 100644 index 00000000..a4df32f4 Binary files /dev/null and b/blockchains/ethereum/assets/0x9548DB8b1cA9b6c757485e7861918b640390169c/logo.png differ diff --git a/blockchains/ethereum/assets/0x954b5De09A55e59755aCBda29e1Eb74A45D30175/info.json b/blockchains/ethereum/assets/0x954b5De09A55e59755aCBda29e1Eb74A45D30175/info.json new file mode 100644 index 00000000..21743db4 --- /dev/null +++ b/blockchains/ethereum/assets/0x954b5De09A55e59755aCBda29e1Eb74A45D30175/info.json @@ -0,0 +1,11 @@ +{ + "name": "FluzFluz", + "symbol": "FLUZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x954b5De09A55e59755aCBda29e1Eb74A45D30175", + "status": "abandoned", + "id": "0x954b5De09A55e59755aCBda29e1Eb74A45D30175" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x954b5De09A55e59755aCBda29e1Eb74A45D30175/logo.png b/blockchains/ethereum/assets/0x954b5De09A55e59755aCBda29e1Eb74A45D30175/logo.png new file mode 100644 index 00000000..41634903 Binary files /dev/null and b/blockchains/ethereum/assets/0x954b5De09A55e59755aCBda29e1Eb74A45D30175/logo.png differ diff --git a/blockchains/ethereum/assets/0x954b890704693af242613edEf1B603825afcD708/info.json b/blockchains/ethereum/assets/0x954b890704693af242613edEf1B603825afcD708/info.json new file mode 100644 index 00000000..9a6d11e4 --- /dev/null +++ b/blockchains/ethereum/assets/0x954b890704693af242613edEf1B603825afcD708/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cardstack", + "symbol": "CARD", + "type": "ERC20", + "decimals": 18, + "description": "Cardstack (CARD) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://cardstack.com", + "explorer": "https://etherscan.io/token/0x954b890704693af242613edEf1B603825afcD708", + "status": "active", + "id": "0x954b890704693af242613edEf1B603825afcD708" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x954b890704693af242613edEf1B603825afcD708/logo.png b/blockchains/ethereum/assets/0x954b890704693af242613edEf1B603825afcD708/logo.png new file mode 100644 index 00000000..6d429aa4 Binary files /dev/null and b/blockchains/ethereum/assets/0x954b890704693af242613edEf1B603825afcD708/logo.png differ diff --git a/blockchains/ethereum/assets/0x9556f8ee795D991fF371F547162D5efB2769425F/info.json b/blockchains/ethereum/assets/0x9556f8ee795D991fF371F547162D5efB2769425F/info.json new file mode 100644 index 00000000..d1c88344 --- /dev/null +++ b/blockchains/ethereum/assets/0x9556f8ee795D991fF371F547162D5efB2769425F/info.json @@ -0,0 +1,11 @@ +{ + "name": "DMME", + "symbol": "DMME", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://dmme.app/", + "explorer": "https://etherscan.io/token/0x9556f8ee795D991fF371F547162D5efB2769425F", + "status": "abandoned", + "id": "0x9556f8ee795D991fF371F547162D5efB2769425F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9556f8ee795D991fF371F547162D5efB2769425F/logo.png b/blockchains/ethereum/assets/0x9556f8ee795D991fF371F547162D5efB2769425F/logo.png new file mode 100644 index 00000000..438a2c8c Binary files /dev/null and b/blockchains/ethereum/assets/0x9556f8ee795D991fF371F547162D5efB2769425F/logo.png differ diff --git a/blockchains/ethereum/assets/0x955b2AD292e8FbF7ACf9D029a211c3de56364b0a/info.json b/blockchains/ethereum/assets/0x955b2AD292e8FbF7ACf9D029a211c3de56364b0a/info.json new file mode 100644 index 00000000..529b949a --- /dev/null +++ b/blockchains/ethereum/assets/0x955b2AD292e8FbF7ACf9D029a211c3de56364b0a/info.json @@ -0,0 +1,11 @@ +{ + "name": "TeleCoin X", + "symbol": "TELEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x955b2AD292e8FbF7ACf9D029a211c3de56364b0a", + "status": "abandoned", + "id": "0x955b2AD292e8FbF7ACf9D029a211c3de56364b0a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x955b2AD292e8FbF7ACf9D029a211c3de56364b0a/logo.png b/blockchains/ethereum/assets/0x955b2AD292e8FbF7ACf9D029a211c3de56364b0a/logo.png new file mode 100644 index 00000000..754a3991 Binary files /dev/null and b/blockchains/ethereum/assets/0x955b2AD292e8FbF7ACf9D029a211c3de56364b0a/logo.png differ diff --git a/blockchains/ethereum/assets/0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1/info.json b/blockchains/ethereum/assets/0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1/info.json new file mode 100644 index 00000000..22836e0e --- /dev/null +++ b/blockchains/ethereum/assets/0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1/info.json @@ -0,0 +1,28 @@ +{ + "name": "RefundCoin", + "website": "https://refundcoin.org/", + "description": "$RFD was created by Blurr, a mysterious 2017 OG whale. The purpose of the project remains open to speculation. The community has taken it upon themselves to run the project while Blurr largely remains in the background, sending cryptic messages on the blockchain. Making it a true DeFi project.", + "explorer": "https://etherscan.io/token/0x955d5c14c8d4944da1ea7836bd44d54a8ec35ba1", + "type": "ERC20", + "symbol": "RFD", + "decimals": 18, + "status": "active", + "id": "0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1", + "links": [ + { + "name": "x", + "url": "https://x.com/RefundCoinETH" + }, + { + "name": "telegram", + "url": "https://t.me/RFDPortal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/refund/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1/logo.png b/blockchains/ethereum/assets/0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1/logo.png new file mode 100644 index 00000000..97fa01b1 Binary files /dev/null and b/blockchains/ethereum/assets/0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1/logo.png differ diff --git a/blockchains/ethereum/assets/0x9565B60C81CDFAe61ec0AFd0d2469b01aC45Ca49/info.json b/blockchains/ethereum/assets/0x9565B60C81CDFAe61ec0AFd0d2469b01aC45Ca49/info.json new file mode 100644 index 00000000..dc2ead1d --- /dev/null +++ b/blockchains/ethereum/assets/0x9565B60C81CDFAe61ec0AFd0d2469b01aC45Ca49/info.json @@ -0,0 +1,11 @@ +{ + "name": "OMNET", + "symbol": "OMNET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9565B60C81CDFAe61ec0AFd0d2469b01aC45Ca49", + "status": "abandoned", + "id": "0x9565B60C81CDFAe61ec0AFd0d2469b01aC45Ca49" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9565B60C81CDFAe61ec0AFd0d2469b01aC45Ca49/logo.png b/blockchains/ethereum/assets/0x9565B60C81CDFAe61ec0AFd0d2469b01aC45Ca49/logo.png new file mode 100644 index 00000000..c02084df Binary files /dev/null and b/blockchains/ethereum/assets/0x9565B60C81CDFAe61ec0AFd0d2469b01aC45Ca49/logo.png differ diff --git a/blockchains/ethereum/assets/0x956F47F50A910163D8BF957Cf5846D573E7f87CA/info.json b/blockchains/ethereum/assets/0x956F47F50A910163D8BF957Cf5846D573E7f87CA/info.json new file mode 100644 index 00000000..b112cefb --- /dev/null +++ b/blockchains/ethereum/assets/0x956F47F50A910163D8BF957Cf5846D573E7f87CA/info.json @@ -0,0 +1,15 @@ +{ + "name": "Fei USD", + "type": "ERC20", + "symbol": "FEI", + "decimals": 18, + "website": "https://fei.money", + "description": "The stablecoin created by Fei Protocol", + "explorer": "https://etherscan.io/token/0x956F47F50A910163D8BF957Cf5846D573E7f87CA", + "status": "active", + "id": "0x956F47F50A910163D8BF957Cf5846D573E7f87CA", + "tags": [ + "defi", + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x956F47F50A910163D8BF957Cf5846D573E7f87CA/logo.png b/blockchains/ethereum/assets/0x956F47F50A910163D8BF957Cf5846D573E7f87CA/logo.png new file mode 100644 index 00000000..5034b517 Binary files /dev/null and b/blockchains/ethereum/assets/0x956F47F50A910163D8BF957Cf5846D573E7f87CA/logo.png differ diff --git a/blockchains/ethereum/assets/0x9577Daade444cE9b53026ABbFD4aA45bD4a7fDEc/info.json b/blockchains/ethereum/assets/0x9577Daade444cE9b53026ABbFD4aA45bD4a7fDEc/info.json new file mode 100644 index 00000000..a5d9f336 --- /dev/null +++ b/blockchains/ethereum/assets/0x9577Daade444cE9b53026ABbFD4aA45bD4a7fDEc/info.json @@ -0,0 +1,11 @@ +{ + "name": "EASTERN LIGHT CAPITAL", + "symbol": "ELC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9577Daade444cE9b53026ABbFD4aA45bD4a7fDEc", + "status": "abandoned", + "id": "0x9577Daade444cE9b53026ABbFD4aA45bD4a7fDEc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9577Daade444cE9b53026ABbFD4aA45bD4a7fDEc/logo.png b/blockchains/ethereum/assets/0x9577Daade444cE9b53026ABbFD4aA45bD4a7fDEc/logo.png new file mode 100644 index 00000000..1a1f75b7 Binary files /dev/null and b/blockchains/ethereum/assets/0x9577Daade444cE9b53026ABbFD4aA45bD4a7fDEc/logo.png differ diff --git a/blockchains/ethereum/assets/0x957C7090C1e2bBAAE73780d657df8132D6f3dA9D/info.json b/blockchains/ethereum/assets/0x957C7090C1e2bBAAE73780d657df8132D6f3dA9D/info.json new file mode 100644 index 00000000..046e4479 --- /dev/null +++ b/blockchains/ethereum/assets/0x957C7090C1e2bBAAE73780d657df8132D6f3dA9D/info.json @@ -0,0 +1,11 @@ +{ + "name": "ADPOWER", + "symbol": "ADP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x957C7090C1e2bBAAE73780d657df8132D6f3dA9D", + "status": "abandoned", + "id": "0x957C7090C1e2bBAAE73780d657df8132D6f3dA9D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x957C7090C1e2bBAAE73780d657df8132D6f3dA9D/logo.png b/blockchains/ethereum/assets/0x957C7090C1e2bBAAE73780d657df8132D6f3dA9D/logo.png new file mode 100644 index 00000000..07132d87 Binary files /dev/null and b/blockchains/ethereum/assets/0x957C7090C1e2bBAAE73780d657df8132D6f3dA9D/logo.png differ diff --git a/blockchains/ethereum/assets/0x957c30aB0426e0C93CD8241E2c60392d08c6aC8e/info.json b/blockchains/ethereum/assets/0x957c30aB0426e0C93CD8241E2c60392d08c6aC8e/info.json new file mode 100644 index 00000000..ff6ccfd4 --- /dev/null +++ b/blockchains/ethereum/assets/0x957c30aB0426e0C93CD8241E2c60392d08c6aC8e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Modum Token", + "symbol": "MOD", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://modum.io/", + "explorer": "https://etherscan.io/token/0x957c30aB0426e0C93CD8241E2c60392d08c6aC8e", + "status": "abandoned", + "id": "0x957c30aB0426e0C93CD8241E2c60392d08c6aC8e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x957c30aB0426e0C93CD8241E2c60392d08c6aC8e/logo.png b/blockchains/ethereum/assets/0x957c30aB0426e0C93CD8241E2c60392d08c6aC8e/logo.png new file mode 100644 index 00000000..a898561d Binary files /dev/null and b/blockchains/ethereum/assets/0x957c30aB0426e0C93CD8241E2c60392d08c6aC8e/logo.png differ diff --git a/blockchains/ethereum/assets/0x957c7fA189a408E78543113412f6Ae1a9b4022C4/info.json b/blockchains/ethereum/assets/0x957c7fA189a408E78543113412f6Ae1a9b4022C4/info.json new file mode 100644 index 00000000..0ea02db4 --- /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 00000000..14edaf8b Binary files /dev/null and b/blockchains/ethereum/assets/0x957c7fA189a408E78543113412f6Ae1a9b4022C4/logo.png differ diff --git a/blockchains/ethereum/assets/0x95C9bD1f81CEe7391dA3EaC81693E60F3292c1E0/info.json b/blockchains/ethereum/assets/0x95C9bD1f81CEe7391dA3EaC81693E60F3292c1E0/info.json new file mode 100644 index 00000000..57107891 --- /dev/null +++ b/blockchains/ethereum/assets/0x95C9bD1f81CEe7391dA3EaC81693E60F3292c1E0/info.json @@ -0,0 +1,11 @@ +{ + "name": "LinfinityCoin", + "symbol": "LFC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x95C9bD1f81CEe7391dA3EaC81693E60F3292c1E0", + "status": "abandoned", + "id": "0x95C9bD1f81CEe7391dA3EaC81693E60F3292c1E0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x95C9bD1f81CEe7391dA3EaC81693E60F3292c1E0/logo.png b/blockchains/ethereum/assets/0x95C9bD1f81CEe7391dA3EaC81693E60F3292c1E0/logo.png new file mode 100644 index 00000000..19f0307e Binary files /dev/null and b/blockchains/ethereum/assets/0x95C9bD1f81CEe7391dA3EaC81693E60F3292c1E0/logo.png differ diff --git a/blockchains/ethereum/assets/0x95D82bA91256DB995C80BEd690D0A779191aF62b/info.json b/blockchains/ethereum/assets/0x95D82bA91256DB995C80BEd690D0A779191aF62b/info.json new file mode 100644 index 00000000..0a126310 --- /dev/null +++ b/blockchains/ethereum/assets/0x95D82bA91256DB995C80BEd690D0A779191aF62b/info.json @@ -0,0 +1,11 @@ +{ + "name": "AlrightCoin", + "symbol": "ALC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://alrightcoin.com/", + "explorer": "https://etherscan.io/token/0x95D82bA91256DB995C80BEd690D0A779191aF62b", + "status": "abandoned", + "id": "0x95D82bA91256DB995C80BEd690D0A779191aF62b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x95D82bA91256DB995C80BEd690D0A779191aF62b/logo.png b/blockchains/ethereum/assets/0x95D82bA91256DB995C80BEd690D0A779191aF62b/logo.png new file mode 100644 index 00000000..7cd71bab Binary files /dev/null and b/blockchains/ethereum/assets/0x95D82bA91256DB995C80BEd690D0A779191aF62b/logo.png differ diff --git a/blockchains/ethereum/assets/0x95a41fB80ca70306e9Ecf4e51ceA31bD18379C18/info.json b/blockchains/ethereum/assets/0x95a41fB80ca70306e9Ecf4e51ceA31bD18379C18/info.json new file mode 100644 index 00000000..952dc080 --- /dev/null +++ b/blockchains/ethereum/assets/0x95a41fB80ca70306e9Ecf4e51ceA31bD18379C18/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aladdin", + "symbol": "ADN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://adncoin.com/", + "explorer": "https://etherscan.io/token/0x95a41fB80ca70306e9Ecf4e51ceA31bD18379C18", + "status": "active", + "id": "0x95a41fB80ca70306e9Ecf4e51ceA31bD18379C18" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x95a41fB80ca70306e9Ecf4e51ceA31bD18379C18/logo.png b/blockchains/ethereum/assets/0x95a41fB80ca70306e9Ecf4e51ceA31bD18379C18/logo.png new file mode 100644 index 00000000..9cc89444 Binary files /dev/null and b/blockchains/ethereum/assets/0x95a41fB80ca70306e9Ecf4e51ceA31bD18379C18/logo.png differ diff --git a/blockchains/ethereum/assets/0x95a4492F028aa1fd432Ea71146b433E7B4446611/info.json b/blockchains/ethereum/assets/0x95a4492F028aa1fd432Ea71146b433E7B4446611/info.json new file mode 100644 index 00000000..c4c6a9a5 --- /dev/null +++ b/blockchains/ethereum/assets/0x95a4492F028aa1fd432Ea71146b433E7B4446611/info.json @@ -0,0 +1,21 @@ +{ + "name": "APY.Finance", + "website": "https://apy.finance", + "description": "Yield Farming Robo-Advisor", + "explorer": "https://etherscan.io/token/0x95a4492F028aa1fd432Ea71146b433E7B4446611", + "type": "ERC20", + "symbol": "APY", + "decimals": 18, + "status": "active", + "id": "0x95a4492F028aa1fd432Ea71146b433E7B4446611", + "links": [ + { + "name": "github", + "url": "https://github.com/apy-finance" + }, + { + "name": "whitepaper", + "url": "https://docs.apy.finance/whitepaper/litepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x95a4492F028aa1fd432Ea71146b433E7B4446611/logo.png b/blockchains/ethereum/assets/0x95a4492F028aa1fd432Ea71146b433E7B4446611/logo.png new file mode 100644 index 00000000..86365454 Binary files /dev/null and b/blockchains/ethereum/assets/0x95a4492F028aa1fd432Ea71146b433E7B4446611/logo.png differ diff --git a/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/info.json b/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/info.json new file mode 100644 index 00000000..f3ffceb7 --- /dev/null +++ b/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/info.json @@ -0,0 +1,36 @@ +{ + "name": " PointPay Crypto Banking Token V2", + "type": "ERC20", + "symbol": "PXP", + "decimals": 18, + "website": "https://pointpay.io/", + "description": "PXP is a native utility token of the PointPay ecosystem. It lies at the heart of our platform, acting as a means of exchange.", + "explorer": "https://etherscan.io/token/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f", + "status": "active", + "id": "0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f", + "links": [ + { + "name": "x", + "url": "https://x.com/PointPay1" + }, + { + "name": "blog", + "url": "https://blog.pointpay.io/" + }, + { + "name": "telegram", + "url": "https://t.me/pointpay_eng" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/PointPay1" + }, + { + "name": "medium", + "url": "https://pointpay.medium.com/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/logo.png b/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/logo.png new file mode 100644 index 00000000..044ef07d Binary files /dev/null and b/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/logo.png differ diff --git a/blockchains/ethereum/assets/0x95aBb152ed410cc4b6DffB3eD41D01015bdbb5D2/info.json b/blockchains/ethereum/assets/0x95aBb152ed410cc4b6DffB3eD41D01015bdbb5D2/info.json new file mode 100644 index 00000000..8af0c35c --- /dev/null +++ b/blockchains/ethereum/assets/0x95aBb152ed410cc4b6DffB3eD41D01015bdbb5D2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mankind", + "symbol": "MK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x95aBb152ed410cc4b6DffB3eD41D01015bdbb5D2", + "status": "abandoned", + "id": "0x95aBb152ed410cc4b6DffB3eD41D01015bdbb5D2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x95aBb152ed410cc4b6DffB3eD41D01015bdbb5D2/logo.png b/blockchains/ethereum/assets/0x95aBb152ed410cc4b6DffB3eD41D01015bdbb5D2/logo.png new file mode 100755 index 00000000..32ae6f9b Binary files /dev/null and b/blockchains/ethereum/assets/0x95aBb152ed410cc4b6DffB3eD41D01015bdbb5D2/logo.png differ diff --git a/blockchains/ethereum/assets/0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE/info.json b/blockchains/ethereum/assets/0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE/info.json new file mode 100644 index 00000000..3592f6fc --- /dev/null +++ b/blockchains/ethereum/assets/0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE/info.json @@ -0,0 +1,29 @@ +{ + "name": "SHIBA INU", + "website": "https://shibatoken.com/", + "description": "According to SHIBA INU, the reasoning behind the creation of SHIBA is that Shibas constantly forget where they bury their treasure. The website proclaims \"Many doggie wars have been waged over precious treasure and delicious goodies.\"", + "explorer": "https://etherscan.io/token/0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE", + "type": "ERC20", + "symbol": "SHIB", + "decimals": 18, + "status": "active", + "id": "0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE", + "tags": [ + "deflationary", + "memes" + ], + "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/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE/logo.png b/blockchains/ethereum/assets/0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE/logo.png new file mode 100644 index 00000000..7e933da7 Binary files /dev/null and b/blockchains/ethereum/assets/0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE/logo.png differ diff --git a/blockchains/ethereum/assets/0x95bA34760ac3D7fBE98ee8b2AB33b4F1a6D18878/info.json b/blockchains/ethereum/assets/0x95bA34760ac3D7fBE98ee8b2AB33b4F1a6D18878/info.json new file mode 100644 index 00000000..69361aa1 --- /dev/null +++ b/blockchains/ethereum/assets/0x95bA34760ac3D7fBE98ee8b2AB33b4F1a6D18878/info.json @@ -0,0 +1,11 @@ +{ + "name": "DeCash", + "symbol": "DESH", + "type": "ERC20", + "decimals": 18, + "description": "Decash is the first and only cryptocurrency to capture the performance of multiple financial assets simultaneously by means of a mechanism known as HedgeTech.", + "website": "https://www.decash.co/", + "explorer": "https://etherscan.io/token/0x95bA34760ac3D7fBE98ee8b2AB33b4F1a6D18878", + "status": "active", + "id": "0x95bA34760ac3D7fBE98ee8b2AB33b4F1a6D18878" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x95bA34760ac3D7fBE98ee8b2AB33b4F1a6D18878/logo.png b/blockchains/ethereum/assets/0x95bA34760ac3D7fBE98ee8b2AB33b4F1a6D18878/logo.png new file mode 100644 index 00000000..8ab243aa Binary files /dev/null and b/blockchains/ethereum/assets/0x95bA34760ac3D7fBE98ee8b2AB33b4F1a6D18878/logo.png differ diff --git a/blockchains/ethereum/assets/0x95dAaaB98046846bF4B2853e23cba236fa394A31/info.json b/blockchains/ethereum/assets/0x95dAaaB98046846bF4B2853e23cba236fa394A31/info.json new file mode 100644 index 00000000..f087143c --- /dev/null +++ b/blockchains/ethereum/assets/0x95dAaaB98046846bF4B2853e23cba236fa394A31/info.json @@ -0,0 +1,11 @@ +{ + "name": "EtheremonToken", + "symbol": "EMONT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://ethermon.io/", + "explorer": "https://etherscan.io/token/0x95dAaaB98046846bF4B2853e23cba236fa394A31", + "status": "abandoned", + "id": "0x95dAaaB98046846bF4B2853e23cba236fa394A31" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x95dAaaB98046846bF4B2853e23cba236fa394A31/logo.png b/blockchains/ethereum/assets/0x95dAaaB98046846bF4B2853e23cba236fa394A31/logo.png new file mode 100755 index 00000000..1ca617e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x95dAaaB98046846bF4B2853e23cba236fa394A31/logo.png differ diff --git a/blockchains/ethereum/assets/0x95eFD1Fe6099F65a7ED524DEF487483221094947/info.json b/blockchains/ethereum/assets/0x95eFD1Fe6099F65a7ED524DEF487483221094947/info.json new file mode 100644 index 00000000..0d9c9fe4 --- /dev/null +++ b/blockchains/ethereum/assets/0x95eFD1Fe6099F65a7ED524DEF487483221094947/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoBonusMiles", + "symbol": "CBM", + "type": "ERC20", + "decimals": 18, + "description": "CryptoBonusMiles helps to save on travelling even more, by adding CBM reward points to standard airline loyalty programs. CryptoBonusMiles expands Aeron solution to the mass market for millions of people who have ever flown, bringing convenience to the air travelers.", + "website": "https://cryptobonusmiles.com/", + "explorer": "https://etherscan.io/token/0x95eFD1Fe6099F65a7ED524DEF487483221094947", + "status": "active", + "id": "0x95eFD1Fe6099F65a7ED524DEF487483221094947" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x95eFD1Fe6099F65a7ED524DEF487483221094947/logo.png b/blockchains/ethereum/assets/0x95eFD1Fe6099F65a7ED524DEF487483221094947/logo.png new file mode 100644 index 00000000..cdc7ca7e Binary files /dev/null and b/blockchains/ethereum/assets/0x95eFD1Fe6099F65a7ED524DEF487483221094947/logo.png differ diff --git a/blockchains/ethereum/assets/0x9607AE1C1ce8c0817d6b5Acad0D4C2CC40F75161/info.json b/blockchains/ethereum/assets/0x9607AE1C1ce8c0817d6b5Acad0D4C2CC40F75161/info.json new file mode 100644 index 00000000..4775ecc4 --- /dev/null +++ b/blockchains/ethereum/assets/0x9607AE1C1ce8c0817d6b5Acad0D4C2CC40F75161/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg3500", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9607AE1C1ce8c0817d6b5Acad0D4C2CC40F75161", + "status": "abandoned", + "id": "0x9607AE1C1ce8c0817d6b5Acad0D4C2CC40F75161" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9607AE1C1ce8c0817d6b5Acad0D4C2CC40F75161/logo.png b/blockchains/ethereum/assets/0x9607AE1C1ce8c0817d6b5Acad0D4C2CC40F75161/logo.png new file mode 100644 index 00000000..8762af14 Binary files /dev/null and b/blockchains/ethereum/assets/0x9607AE1C1ce8c0817d6b5Acad0D4C2CC40F75161/logo.png differ diff --git a/blockchains/ethereum/assets/0x960b236A07cf122663c4303350609A66A7B288C0/info.json b/blockchains/ethereum/assets/0x960b236A07cf122663c4303350609A66A7B288C0/info.json new file mode 100644 index 00000000..ea2811d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x960b236A07cf122663c4303350609A66A7B288C0/info.json @@ -0,0 +1,26 @@ +{ + "name": "Aragon (old)", + "website": "https://aragon.org", + "description": "Aragon (ANT) is a decentralized platform built on the Ethereum network that offers a modularized way to create and manage dApps, cryptoprotocols, and decentralized autonomous organizations (DAO).", + "explorer": "https://etherscan.io/token/0x960b236A07cf122663c4303350609A66A7B288C0", + "research": "https://research.binance.com/en/projects/aragon", + "type": "ERC20", + "symbol": "ANT", + "decimals": 18, + "status": "active", + "id": "0x960b236A07cf122663c4303350609A66A7B288C0", + "links": [ + { + "name": "x", + "url": "https://x.com/aragonproject?lang=es" + }, + { + "name": "telegram", + "url": "https://t.me/AragonProject" + }, + { + "name": "github", + "url": "https://github.com/aragon" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x960b236A07cf122663c4303350609A66A7B288C0/logo.png b/blockchains/ethereum/assets/0x960b236A07cf122663c4303350609A66A7B288C0/logo.png new file mode 100644 index 00000000..565ebbcc Binary files /dev/null and b/blockchains/ethereum/assets/0x960b236A07cf122663c4303350609A66A7B288C0/logo.png differ diff --git a/blockchains/ethereum/assets/0x960fCE8724aA127184B6d13Af41a711755236c77/info.json b/blockchains/ethereum/assets/0x960fCE8724aA127184B6d13Af41a711755236c77/info.json new file mode 100644 index 00000000..1f9839a9 --- /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 00000000..24925a05 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 new file mode 100644 index 00000000..a00ff02d --- /dev/null +++ b/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/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/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", + "status": "abandoned", + "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", + "links": [ + { + "name": "x", + "url": "https://x.com/dypfinance" + }, + { + "name": "github", + "url": "https://github.com/dypfinance/" + }, + { + "name": "medium", + "url": "https://dypfinance.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defi-yield-protocol/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dypius" + }, + { + "name": "discord", + "url": "https://discord.com/invite/dypcaws" + }, + { + "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/0x9621bad6E7E2b9758349DdCb308df7F63Fd46668/info.json b/blockchains/ethereum/assets/0x9621bad6E7E2b9758349DdCb308df7F63Fd46668/info.json new file mode 100644 index 00000000..365fda11 --- /dev/null +++ b/blockchains/ethereum/assets/0x9621bad6E7E2b9758349DdCb308df7F63Fd46668/info.json @@ -0,0 +1,11 @@ +{ + "name": "CloudClout", + "symbol": "CLOUDT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9621bad6E7E2b9758349DdCb308df7F63Fd46668", + "status": "abandoned", + "id": "0x9621bad6E7E2b9758349DdCb308df7F63Fd46668" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9621bad6E7E2b9758349DdCb308df7F63Fd46668/logo.png b/blockchains/ethereum/assets/0x9621bad6E7E2b9758349DdCb308df7F63Fd46668/logo.png new file mode 100644 index 00000000..83144e01 Binary files /dev/null and b/blockchains/ethereum/assets/0x9621bad6E7E2b9758349DdCb308df7F63Fd46668/logo.png differ diff --git a/blockchains/ethereum/assets/0x962E5A8F6Ad82C0F70aAD527f353A340048f8CbB/info.json b/blockchains/ethereum/assets/0x962E5A8F6Ad82C0F70aAD527f353A340048f8CbB/info.json new file mode 100644 index 00000000..be257236 --- /dev/null +++ b/blockchains/ethereum/assets/0x962E5A8F6Ad82C0F70aAD527f353A340048f8CbB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fipercash", + "symbol": "FPC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x962E5A8F6Ad82C0F70aAD527f353A340048f8CbB", + "status": "abandoned", + "id": "0x962E5A8F6Ad82C0F70aAD527f353A340048f8CbB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x962E5A8F6Ad82C0F70aAD527f353A340048f8CbB/logo.png b/blockchains/ethereum/assets/0x962E5A8F6Ad82C0F70aAD527f353A340048f8CbB/logo.png new file mode 100644 index 00000000..a14799b9 Binary files /dev/null and b/blockchains/ethereum/assets/0x962E5A8F6Ad82C0F70aAD527f353A340048f8CbB/logo.png differ diff --git a/blockchains/ethereum/assets/0x9653cFd0865ad8313BEA2f0C2EC0584BFd05115B/info.json b/blockchains/ethereum/assets/0x9653cFd0865ad8313BEA2f0C2EC0584BFd05115B/info.json new file mode 100644 index 00000000..dcc9265e --- /dev/null +++ b/blockchains/ethereum/assets/0x9653cFd0865ad8313BEA2f0C2EC0584BFd05115B/info.json @@ -0,0 +1,11 @@ +{ + "name": "FuturXE", + "symbol": "FXE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9653cFd0865ad8313BEA2f0C2EC0584BFd05115B", + "status": "abandoned", + "id": "0x9653cFd0865ad8313BEA2f0C2EC0584BFd05115B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9653cFd0865ad8313BEA2f0C2EC0584BFd05115B/logo.png b/blockchains/ethereum/assets/0x9653cFd0865ad8313BEA2f0C2EC0584BFd05115B/logo.png new file mode 100644 index 00000000..6b11706e Binary files /dev/null and b/blockchains/ethereum/assets/0x9653cFd0865ad8313BEA2f0C2EC0584BFd05115B/logo.png differ diff --git a/blockchains/ethereum/assets/0x9656d60bfcD8199E83621E0Ff24CD37f19AB9F57/info.json b/blockchains/ethereum/assets/0x9656d60bfcD8199E83621E0Ff24CD37f19AB9F57/info.json new file mode 100644 index 00000000..de59cd4a --- /dev/null +++ b/blockchains/ethereum/assets/0x9656d60bfcD8199E83621E0Ff24CD37f19AB9F57/info.json @@ -0,0 +1,11 @@ +{ + "name": "CHOCH", + "symbol": "CHCH", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9656d60bfcD8199E83621E0Ff24CD37f19AB9F57", + "status": "abandoned", + "id": "0x9656d60bfcD8199E83621E0Ff24CD37f19AB9F57" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9656d60bfcD8199E83621E0Ff24CD37f19AB9F57/logo.png b/blockchains/ethereum/assets/0x9656d60bfcD8199E83621E0Ff24CD37f19AB9F57/logo.png new file mode 100644 index 00000000..b4add755 Binary files /dev/null and b/blockchains/ethereum/assets/0x9656d60bfcD8199E83621E0Ff24CD37f19AB9F57/logo.png differ diff --git a/blockchains/ethereum/assets/0x965F109d31CCb77005858DEfaE0Ebaf7B4381652/info.json b/blockchains/ethereum/assets/0x965F109d31CCb77005858DEfaE0Ebaf7B4381652/info.json new file mode 100644 index 00000000..12be611e --- /dev/null +++ b/blockchains/ethereum/assets/0x965F109d31CCb77005858DEfaE0Ebaf7B4381652/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitStash", + "symbol": "STASH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bitstash.co/", + "explorer": "https://etherscan.io/token/0x965F109d31CCb77005858DEfaE0Ebaf7B4381652", + "status": "abandoned", + "id": "0x965F109d31CCb77005858DEfaE0Ebaf7B4381652" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x965F109d31CCb77005858DEfaE0Ebaf7B4381652/logo.png b/blockchains/ethereum/assets/0x965F109d31CCb77005858DEfaE0Ebaf7B4381652/logo.png new file mode 100644 index 00000000..cab5a31d Binary files /dev/null and b/blockchains/ethereum/assets/0x965F109d31CCb77005858DEfaE0Ebaf7B4381652/logo.png differ diff --git a/blockchains/ethereum/assets/0x96610186F3ab8d73EBEe1CF950C750f3B1Fb79C2/info.json b/blockchains/ethereum/assets/0x96610186F3ab8d73EBEe1CF950C750f3B1Fb79C2/info.json new file mode 100644 index 00000000..69451b03 --- /dev/null +++ b/blockchains/ethereum/assets/0x96610186F3ab8d73EBEe1CF950C750f3B1Fb79C2/info.json @@ -0,0 +1,41 @@ +{ + "name": "Enjinstarter", + "website": "https://enjinstarter.com/", + "description": "The Next-Generation Launchpad for Blockchain Games and the Metaverse", + "explorer": "https://etherscan.io/token/0x96610186F3ab8d73EBEe1CF950C750f3B1Fb79C2", + "symbol": "EJS", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0x96610186F3ab8d73EBEe1CF950C750f3B1Fb79C2", + "links": [ + { + "name": "github", + "url": "https://github.com/enjinstarter/enjinstarter-tge-contracts" + }, + { + "name": "x", + "url": "https://x.com/enjinstarter" + }, + { + "name": "telegram", + "url": "https://t.me/ENJINSTARTER" + }, + { + "name": "facebook", + "url": "https://facebook.com/enjinstarter" + }, + { + "name": "medium", + "url": "https://medium.com/enjinstarter" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCWzOp5iZ8B3vONrxlarIXbg" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x96610186F3ab8d73EBEe1CF950C750f3B1Fb79C2/logo.png b/blockchains/ethereum/assets/0x96610186F3ab8d73EBEe1CF950C750f3B1Fb79C2/logo.png new file mode 100644 index 00000000..bf337e8e Binary files /dev/null and b/blockchains/ethereum/assets/0x96610186F3ab8d73EBEe1CF950C750f3B1Fb79C2/logo.png differ diff --git a/blockchains/ethereum/assets/0x9669CA82Bac26fc762011C59cC0Dd41A665e861B/info.json b/blockchains/ethereum/assets/0x9669CA82Bac26fc762011C59cC0Dd41A665e861B/info.json new file mode 100644 index 00000000..bf13ee1a --- /dev/null +++ b/blockchains/ethereum/assets/0x9669CA82Bac26fc762011C59cC0Dd41A665e861B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cminers", + "symbol": "BTOB", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9669CA82Bac26fc762011C59cC0Dd41A665e861B", + "status": "abandoned", + "id": "0x9669CA82Bac26fc762011C59cC0Dd41A665e861B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9669CA82Bac26fc762011C59cC0Dd41A665e861B/logo.png b/blockchains/ethereum/assets/0x9669CA82Bac26fc762011C59cC0Dd41A665e861B/logo.png new file mode 100644 index 00000000..9905b2f7 Binary files /dev/null and b/blockchains/ethereum/assets/0x9669CA82Bac26fc762011C59cC0Dd41A665e861B/logo.png differ diff --git a/blockchains/ethereum/assets/0x966dB065199A3edEa2228C6E5Eb6Ac49FF251AcC/info.json b/blockchains/ethereum/assets/0x966dB065199A3edEa2228C6E5Eb6Ac49FF251AcC/info.json new file mode 100644 index 00000000..444fcc81 --- /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 00000000..0ce518ad Binary files /dev/null and b/blockchains/ethereum/assets/0x966dB065199A3edEa2228C6E5Eb6Ac49FF251AcC/logo.png differ diff --git a/blockchains/ethereum/assets/0x966fFc36048670Fee053E0eFd3D55C9346cbcae6/info.json b/blockchains/ethereum/assets/0x966fFc36048670Fee053E0eFd3D55C9346cbcae6/info.json new file mode 100644 index 00000000..77e93e2d --- /dev/null +++ b/blockchains/ethereum/assets/0x966fFc36048670Fee053E0eFd3D55C9346cbcae6/info.json @@ -0,0 +1,11 @@ +{ + "name": "USD Satoshi Vision Token", + "symbol": "USDSV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x966fFc36048670Fee053E0eFd3D55C9346cbcae6", + "status": "abandoned", + "id": "0x966fFc36048670Fee053E0eFd3D55C9346cbcae6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x966fFc36048670Fee053E0eFd3D55C9346cbcae6/logo.png b/blockchains/ethereum/assets/0x966fFc36048670Fee053E0eFd3D55C9346cbcae6/logo.png new file mode 100644 index 00000000..102583a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x966fFc36048670Fee053E0eFd3D55C9346cbcae6/logo.png differ diff --git a/blockchains/ethereum/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/info.json b/blockchains/ethereum/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/info.json new file mode 100644 index 00000000..bfac2c7d --- /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 00000000..bce8b3c7 Binary files /dev/null and b/blockchains/ethereum/assets/0x96702be57Cd9777f835117a809C7124fe4ec989A/logo.png differ diff --git a/blockchains/ethereum/assets/0x96780fA228A5F6f6C3F5A8C10b637D6407A4aCb7/info.json b/blockchains/ethereum/assets/0x96780fA228A5F6f6C3F5A8C10b637D6407A4aCb7/info.json new file mode 100644 index 00000000..058cee87 --- /dev/null +++ b/blockchains/ethereum/assets/0x96780fA228A5F6f6C3F5A8C10b637D6407A4aCb7/info.json @@ -0,0 +1,11 @@ +{ + "name": "POSH", + "symbol": "POSH", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x96780fA228A5F6f6C3F5A8C10b637D6407A4aCb7", + "status": "abandoned", + "id": "0x96780fA228A5F6f6C3F5A8C10b637D6407A4aCb7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x96780fA228A5F6f6C3F5A8C10b637D6407A4aCb7/logo.png b/blockchains/ethereum/assets/0x96780fA228A5F6f6C3F5A8C10b637D6407A4aCb7/logo.png new file mode 100644 index 00000000..3b40c927 Binary files /dev/null and b/blockchains/ethereum/assets/0x96780fA228A5F6f6C3F5A8C10b637D6407A4aCb7/logo.png differ diff --git a/blockchains/ethereum/assets/0x967da4048cD07aB37855c090aAF366e4ce1b9F48/info.json b/blockchains/ethereum/assets/0x967da4048cD07aB37855c090aAF366e4ce1b9F48/info.json new file mode 100644 index 00000000..ac5f1cf1 --- /dev/null +++ b/blockchains/ethereum/assets/0x967da4048cD07aB37855c090aAF366e4ce1b9F48/info.json @@ -0,0 +1,41 @@ +{ + "name": "Ocean Protocol", + "website": "https://oceanprotocol.com", + "description": "Ocean Protocol describes itself as a decentralized data exchange protocol that lets people share and monetize data while providing control, auditability, transparency, and compliance to all actors involved.", + "explorer": "https://etherscan.io/token/0x967da4048cD07aB37855c090aAF366e4ce1b9F48", + "research": "https://research.binance.com/en/projects/ocean-protocol", + "type": "ERC20", + "symbol": "OCEAN", + "decimals": 18, + "status": "active", + "id": "0x967da4048cD07aB37855c090aAF366e4ce1b9F48", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/oceanprotocol" + }, + { + "name": "x", + "url": "https://x.com/oceanprotocol" + }, + { + "name": "blog", + "url": "https://blog.oceanprotocol.com/" + }, + { + "name": "telegram", + "url": "https://t.me/OceanProtocol_Community" + }, + { + "name": "whitepaper", + "url": "https://oceanprotocol.com/tech-whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ocean-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x967da4048cD07aB37855c090aAF366e4ce1b9F48/logo.png b/blockchains/ethereum/assets/0x967da4048cD07aB37855c090aAF366e4ce1b9F48/logo.png new file mode 100644 index 00000000..621e8163 Binary files /dev/null and b/blockchains/ethereum/assets/0x967da4048cD07aB37855c090aAF366e4ce1b9F48/logo.png differ diff --git a/blockchains/ethereum/assets/0x968347a7D9dDF46d6BA44DFC1F251204826bf80E/info.json b/blockchains/ethereum/assets/0x968347a7D9dDF46d6BA44DFC1F251204826bf80E/info.json new file mode 100644 index 00000000..ae9358af --- /dev/null +++ b/blockchains/ethereum/assets/0x968347a7D9dDF46d6BA44DFC1F251204826bf80E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hiway Token", + "symbol": "WAY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x968347a7D9dDF46d6BA44DFC1F251204826bf80E", + "status": "abandoned", + "id": "0x968347a7D9dDF46d6BA44DFC1F251204826bf80E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x968347a7D9dDF46d6BA44DFC1F251204826bf80E/logo.png b/blockchains/ethereum/assets/0x968347a7D9dDF46d6BA44DFC1F251204826bf80E/logo.png new file mode 100644 index 00000000..58f2ddd0 Binary files /dev/null and b/blockchains/ethereum/assets/0x968347a7D9dDF46d6BA44DFC1F251204826bf80E/logo.png differ diff --git a/blockchains/ethereum/assets/0x9687F9dbEBb76a2A469925CCE797F3015d2C68fd/info.json b/blockchains/ethereum/assets/0x9687F9dbEBb76a2A469925CCE797F3015d2C68fd/info.json new file mode 100644 index 00000000..6cc4d00d --- /dev/null +++ b/blockchains/ethereum/assets/0x9687F9dbEBb76a2A469925CCE797F3015d2C68fd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ternio", + "symbol": "TERN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9687F9dbEBb76a2A469925CCE797F3015d2C68fd", + "status": "abandoned", + "id": "0x9687F9dbEBb76a2A469925CCE797F3015d2C68fd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9687F9dbEBb76a2A469925CCE797F3015d2C68fd/logo.png b/blockchains/ethereum/assets/0x9687F9dbEBb76a2A469925CCE797F3015d2C68fd/logo.png new file mode 100644 index 00000000..eb7b179d Binary files /dev/null and b/blockchains/ethereum/assets/0x9687F9dbEBb76a2A469925CCE797F3015d2C68fd/logo.png differ diff --git a/blockchains/ethereum/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/info.json b/blockchains/ethereum/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/info.json new file mode 100644 index 00000000..4db24f22 --- /dev/null +++ b/blockchains/ethereum/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/info.json @@ -0,0 +1,30 @@ +{ + "name": "Newscrypto", + "website": "https://newscrypto.io/", + "short_description": "Newscrypto is a project that brings together education, information and trading tools for traders in the crypto markets.", + "description": "Newscrypto is a project that brings together education, information and trading tools for traders in the crypto markets.", + "explorer": "https://etherscan.io/token/0x968f6f898a6df937fc1859b323ac2f14643e3fed", + "type": "ERC20", + "symbol": "NWC", + "decimals": 18, + "status": "active", + "id": "0x968F6f898a6Df937fC1859b323aC2F14643e3fED", + "links": [ + { + "name": "x", + "url": "https://x.com/NwcPublic" + }, + { + "name": "telegram", + "url": "https://t.me/nwc_public" + }, + { + "name": "facebook", + "url": "https://facebook.com/Newscrypto.io" + }, + { + "name": "whitepaper", + "url": "https://newscrypto.io/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/logo.png b/blockchains/ethereum/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/logo.png new file mode 100644 index 00000000..38003083 Binary files /dev/null and b/blockchains/ethereum/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/logo.png differ diff --git a/blockchains/ethereum/assets/0x96973492a4Bb1C68Fbe8221b53FA75502b46B239/info.json b/blockchains/ethereum/assets/0x96973492a4Bb1C68Fbe8221b53FA75502b46B239/info.json new file mode 100644 index 00000000..0f5049ad --- /dev/null +++ b/blockchains/ethereum/assets/0x96973492a4Bb1C68Fbe8221b53FA75502b46B239/info.json @@ -0,0 +1,11 @@ +{ + "name": "V-PALADINI TEST 3", + "symbol": "V", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x96973492a4Bb1C68Fbe8221b53FA75502b46B239", + "status": "abandoned", + "id": "0x96973492a4Bb1C68Fbe8221b53FA75502b46B239" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x96973492a4Bb1C68Fbe8221b53FA75502b46B239/logo.png b/blockchains/ethereum/assets/0x96973492a4Bb1C68Fbe8221b53FA75502b46B239/logo.png new file mode 100644 index 00000000..0ff69c69 Binary files /dev/null and b/blockchains/ethereum/assets/0x96973492a4Bb1C68Fbe8221b53FA75502b46B239/logo.png differ diff --git a/blockchains/ethereum/assets/0x96A65609a7B84E8842732DEB08f56C3E21aC6f8a/info.json b/blockchains/ethereum/assets/0x96A65609a7B84E8842732DEB08f56C3E21aC6f8a/info.json new file mode 100644 index 00000000..1f2f171a --- /dev/null +++ b/blockchains/ethereum/assets/0x96A65609a7B84E8842732DEB08f56C3E21aC6f8a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Centra token", + "symbol": "Centra", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x96A65609a7B84E8842732DEB08f56C3E21aC6f8a", + "status": "abandoned", + "id": "0x96A65609a7B84E8842732DEB08f56C3E21aC6f8a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x96A65609a7B84E8842732DEB08f56C3E21aC6f8a/logo.png b/blockchains/ethereum/assets/0x96A65609a7B84E8842732DEB08f56C3E21aC6f8a/logo.png new file mode 100755 index 00000000..32ea68be Binary files /dev/null and b/blockchains/ethereum/assets/0x96A65609a7B84E8842732DEB08f56C3E21aC6f8a/logo.png differ diff --git a/blockchains/ethereum/assets/0x96B0bF939D9460095C15251F71Fda11e41DcBddB/info.json b/blockchains/ethereum/assets/0x96B0bF939D9460095C15251F71Fda11e41DcBddB/info.json new file mode 100644 index 00000000..a6c03cb1 --- /dev/null +++ b/blockchains/ethereum/assets/0x96B0bF939D9460095C15251F71Fda11e41DcBddB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sharpay", + "symbol": "S", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://sharpay.io", + "explorer": "https://etherscan.io/token/0x96B0bF939D9460095C15251F71Fda11e41DcBddB", + "status": "abandoned", + "id": "0x96B0bF939D9460095C15251F71Fda11e41DcBddB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x96B0bF939D9460095C15251F71Fda11e41DcBddB/logo.png b/blockchains/ethereum/assets/0x96B0bF939D9460095C15251F71Fda11e41DcBddB/logo.png new file mode 100644 index 00000000..ad8edeb6 Binary files /dev/null and b/blockchains/ethereum/assets/0x96B0bF939D9460095C15251F71Fda11e41DcBddB/logo.png differ diff --git a/blockchains/ethereum/assets/0x96C5EafFE9950eA7432E202cF79c2ae738503D69/info.json b/blockchains/ethereum/assets/0x96C5EafFE9950eA7432E202cF79c2ae738503D69/info.json new file mode 100644 index 00000000..4016107c --- /dev/null +++ b/blockchains/ethereum/assets/0x96C5EafFE9950eA7432E202cF79c2ae738503D69/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nitrogen", + "symbol": "NITRO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x96C5EafFE9950eA7432E202cF79c2ae738503D69", + "status": "abandoned", + "id": "0x96C5EafFE9950eA7432E202cF79c2ae738503D69" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x96C5EafFE9950eA7432E202cF79c2ae738503D69/logo.png b/blockchains/ethereum/assets/0x96C5EafFE9950eA7432E202cF79c2ae738503D69/logo.png new file mode 100755 index 00000000..fa33a55c Binary files /dev/null and b/blockchains/ethereum/assets/0x96C5EafFE9950eA7432E202cF79c2ae738503D69/logo.png differ diff --git a/blockchains/ethereum/assets/0x96F6eF951840721AdBF46Ac996b59E0235CB985C/info.json b/blockchains/ethereum/assets/0x96F6eF951840721AdBF46Ac996b59E0235CB985C/info.json new file mode 100644 index 00000000..91e24ac5 --- /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 00000000..18f94a8e Binary files /dev/null and b/blockchains/ethereum/assets/0x96F6eF951840721AdBF46Ac996b59E0235CB985C/logo.png differ diff --git a/blockchains/ethereum/assets/0x96c30D5499EF6eA96A9c221Bc18BC39D29c97F27/info.json b/blockchains/ethereum/assets/0x96c30D5499EF6eA96A9c221Bc18BC39D29c97F27/info.json new file mode 100644 index 00000000..ced1f0e4 --- /dev/null +++ b/blockchains/ethereum/assets/0x96c30D5499EF6eA96A9c221Bc18BC39D29c97F27/info.json @@ -0,0 +1,11 @@ +{ + "name": "Thar token", + "symbol": "Thar", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x96c30D5499EF6eA96A9c221Bc18BC39D29c97F27", + "status": "active", + "id": "0x96c30D5499EF6eA96A9c221Bc18BC39D29c97F27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x96c30D5499EF6eA96A9c221Bc18BC39D29c97F27/logo.png b/blockchains/ethereum/assets/0x96c30D5499EF6eA96A9c221Bc18BC39D29c97F27/logo.png new file mode 100755 index 00000000..3dc2b0d7 Binary files /dev/null and b/blockchains/ethereum/assets/0x96c30D5499EF6eA96A9c221Bc18BC39D29c97F27/logo.png differ diff --git a/blockchains/ethereum/assets/0x96c645D3D3706f793Ef52C19bBACe441900eD47D/info.json b/blockchains/ethereum/assets/0x96c645D3D3706f793Ef52C19bBACe441900eD47D/info.json new file mode 100644 index 00000000..e26cc40b --- /dev/null +++ b/blockchains/ethereum/assets/0x96c645D3D3706f793Ef52C19bBACe441900eD47D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mt Pelerin Shares", + "website": "https://mtpelerin.com", + "description": "Mt Pelerin company shares issued on blockchain and recognized as shares providing the same level of protection conferred by Swiss law", + "explorer": "https://etherscan.io/token/0x96c645D3D3706f793Ef52C19bBACe441900eD47D", + "type": "ERC20", + "symbol": "MPS", + "decimals": 0, + "status": "active", + "id": "0x96c645D3D3706f793Ef52C19bBACe441900eD47D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x96c645D3D3706f793Ef52C19bBACe441900eD47D/logo.png b/blockchains/ethereum/assets/0x96c645D3D3706f793Ef52C19bBACe441900eD47D/logo.png new file mode 100644 index 00000000..43ac6ba5 Binary files /dev/null and b/blockchains/ethereum/assets/0x96c645D3D3706f793Ef52C19bBACe441900eD47D/logo.png differ diff --git a/blockchains/ethereum/assets/0x96e6002A97Cd804aDA9E4864AC306CaDDBfeB73B/info.json b/blockchains/ethereum/assets/0x96e6002A97Cd804aDA9E4864AC306CaDDBfeB73B/info.json new file mode 100644 index 00000000..de3eaa8a --- /dev/null +++ b/blockchains/ethereum/assets/0x96e6002A97Cd804aDA9E4864AC306CaDDBfeB73B/info.json @@ -0,0 +1,11 @@ +{ + "name": "YokiCoin", + "symbol": "YKI", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x96e6002A97Cd804aDA9E4864AC306CaDDBfeB73B", + "status": "abandoned", + "id": "0x96e6002A97Cd804aDA9E4864AC306CaDDBfeB73B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x96e6002A97Cd804aDA9E4864AC306CaDDBfeB73B/logo.png b/blockchains/ethereum/assets/0x96e6002A97Cd804aDA9E4864AC306CaDDBfeB73B/logo.png new file mode 100644 index 00000000..5afc0d3b Binary files /dev/null and b/blockchains/ethereum/assets/0x96e6002A97Cd804aDA9E4864AC306CaDDBfeB73B/logo.png differ diff --git a/blockchains/ethereum/assets/0x9709De8A7d96BB7469F5ecE75aA5264540502470/info.json b/blockchains/ethereum/assets/0x9709De8A7d96BB7469F5ecE75aA5264540502470/info.json new file mode 100644 index 00000000..a6983c11 --- /dev/null +++ b/blockchains/ethereum/assets/0x9709De8A7d96BB7469F5ecE75aA5264540502470/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C559010", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9709De8A7d96BB7469F5ecE75aA5264540502470", + "status": "abandoned", + "id": "0x9709De8A7d96BB7469F5ecE75aA5264540502470" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9709De8A7d96BB7469F5ecE75aA5264540502470/logo.png b/blockchains/ethereum/assets/0x9709De8A7d96BB7469F5ecE75aA5264540502470/logo.png new file mode 100644 index 00000000..f951f45f Binary files /dev/null and b/blockchains/ethereum/assets/0x9709De8A7d96BB7469F5ecE75aA5264540502470/logo.png differ diff --git a/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/info.json b/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/info.json new file mode 100644 index 00000000..d32ed4a9 --- /dev/null +++ b/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/info.json @@ -0,0 +1,40 @@ +{ + "name": "Fuse Token", + "type": "ERC20", + "symbol": "FUSE", + "decimals": 18, + "website": "https://fuse.io/", + "description": "Fuse is a no-code smart contract platform for entrepreneurs that allows entrepreneurs to integrate everyday payments into their business.", + "explorer": "https://etherscan.io/token/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d", + "status": "active", + "id": "0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fuse" + }, + { + "name": "discord", + "url": "https://discord.com/invite/jpPMeSZ" + }, + { + "name": "docs", + "url": "https://docs.fuse.io/" + }, + { + "name": "github", + "url": "https://github.com/fuseio" + }, + { + "name": "x", + "url": "https://x.com/Fuse_network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fuse-network/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/logo.png b/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/logo.png new file mode 100644 index 00000000..db59eecd Binary files /dev/null and b/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/logo.png differ diff --git a/blockchains/ethereum/assets/0x970E035E2a013cf4bECD67E300d65BC32A56D826/info.json b/blockchains/ethereum/assets/0x970E035E2a013cf4bECD67E300d65BC32A56D826/info.json new file mode 100644 index 00000000..a33d48cd --- /dev/null +++ b/blockchains/ethereum/assets/0x970E035E2a013cf4bECD67E300d65BC32A56D826/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bodhi Ethereum", + "symbol": "BOE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x970E035E2a013cf4bECD67E300d65BC32A56D826", + "status": "abandoned", + "id": "0x970E035E2a013cf4bECD67E300d65BC32A56D826" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x970E035E2a013cf4bECD67E300d65BC32A56D826/logo.png b/blockchains/ethereum/assets/0x970E035E2a013cf4bECD67E300d65BC32A56D826/logo.png new file mode 100755 index 00000000..331b3875 Binary files /dev/null and b/blockchains/ethereum/assets/0x970E035E2a013cf4bECD67E300d65BC32A56D826/logo.png differ diff --git a/blockchains/ethereum/assets/0x9715f0e15Eafd789647827218E0263EbDB11d54A/info.json b/blockchains/ethereum/assets/0x9715f0e15Eafd789647827218E0263EbDB11d54A/info.json new file mode 100644 index 00000000..2339c456 --- /dev/null +++ b/blockchains/ethereum/assets/0x9715f0e15Eafd789647827218E0263EbDB11d54A/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRYPTOMAGZ", + "symbol": "CMZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9715f0e15Eafd789647827218E0263EbDB11d54A", + "status": "abandoned", + "id": "0x9715f0e15Eafd789647827218E0263EbDB11d54A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9715f0e15Eafd789647827218E0263EbDB11d54A/logo.png b/blockchains/ethereum/assets/0x9715f0e15Eafd789647827218E0263EbDB11d54A/logo.png new file mode 100755 index 00000000..830a96cc Binary files /dev/null and b/blockchains/ethereum/assets/0x9715f0e15Eafd789647827218E0263EbDB11d54A/logo.png differ diff --git a/blockchains/ethereum/assets/0x971d048E737619884f2df75e31c7Eb6412392328/info.json b/blockchains/ethereum/assets/0x971d048E737619884f2df75e31c7Eb6412392328/info.json new file mode 100644 index 00000000..1cc5c537 --- /dev/null +++ b/blockchains/ethereum/assets/0x971d048E737619884f2df75e31c7Eb6412392328/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sparkster", + "symbol": "SPRK", + "type": "ERC20", + "decimals": 18, + "description": "Sparkster aims to become the world's most powerful decentralized cloud. It aims to enable users to build software without any knowledge of programming or blockchain architecture.", + "website": "https://sparkster.me/", + "explorer": "https://etherscan.io/token/0x971d048E737619884f2df75e31c7Eb6412392328", + "status": "active", + "id": "0x971d048E737619884f2df75e31c7Eb6412392328" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x971d048E737619884f2df75e31c7Eb6412392328/logo.png b/blockchains/ethereum/assets/0x971d048E737619884f2df75e31c7Eb6412392328/logo.png new file mode 100644 index 00000000..730c8f62 Binary files /dev/null and b/blockchains/ethereum/assets/0x971d048E737619884f2df75e31c7Eb6412392328/logo.png differ diff --git a/blockchains/ethereum/assets/0x9720b467a710382A232a32F540bDCed7d662a10B/info.json b/blockchains/ethereum/assets/0x9720b467a710382A232a32F540bDCed7d662a10B/info.json new file mode 100644 index 00000000..a00816e4 --- /dev/null +++ b/blockchains/ethereum/assets/0x9720b467a710382A232a32F540bDCed7d662a10B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vezt", + "symbol": "VZT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9720b467a710382A232a32F540bDCed7d662a10B", + "status": "abandoned", + "id": "0x9720b467a710382A232a32F540bDCed7d662a10B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9720b467a710382A232a32F540bDCed7d662a10B/logo.png b/blockchains/ethereum/assets/0x9720b467a710382A232a32F540bDCed7d662a10B/logo.png new file mode 100644 index 00000000..334d3c24 Binary files /dev/null and b/blockchains/ethereum/assets/0x9720b467a710382A232a32F540bDCed7d662a10B/logo.png differ diff --git a/blockchains/ethereum/assets/0x9731E223A99F9992107ac83A896914A8e6f871bD/info.json b/blockchains/ethereum/assets/0x9731E223A99F9992107ac83A896914A8e6f871bD/info.json new file mode 100644 index 00000000..e9afa022 --- /dev/null +++ b/blockchains/ethereum/assets/0x9731E223A99F9992107ac83A896914A8e6f871bD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lucid Ganoderma chain", + "symbol": "LGC", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9731E223A99F9992107ac83A896914A8e6f871bD", + "status": "abandoned", + "id": "0x9731E223A99F9992107ac83A896914A8e6f871bD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9731E223A99F9992107ac83A896914A8e6f871bD/logo.png b/blockchains/ethereum/assets/0x9731E223A99F9992107ac83A896914A8e6f871bD/logo.png new file mode 100644 index 00000000..46fc6074 Binary files /dev/null and b/blockchains/ethereum/assets/0x9731E223A99F9992107ac83A896914A8e6f871bD/logo.png differ diff --git a/blockchains/ethereum/assets/0x973b569b1d025C41cD9c19cbf8f931175e874DD0/info.json b/blockchains/ethereum/assets/0x973b569b1d025C41cD9c19cbf8f931175e874DD0/info.json new file mode 100644 index 00000000..f084e5ee --- /dev/null +++ b/blockchains/ethereum/assets/0x973b569b1d025C41cD9c19cbf8f931175e874DD0/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOOM", + "symbol": "BOOM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x973b569b1d025C41cD9c19cbf8f931175e874DD0", + "status": "abandoned", + "id": "0x973b569b1d025C41cD9c19cbf8f931175e874DD0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x973b569b1d025C41cD9c19cbf8f931175e874DD0/logo.png b/blockchains/ethereum/assets/0x973b569b1d025C41cD9c19cbf8f931175e874DD0/logo.png new file mode 100644 index 00000000..394f1adf Binary files /dev/null and b/blockchains/ethereum/assets/0x973b569b1d025C41cD9c19cbf8f931175e874DD0/logo.png differ diff --git a/blockchains/ethereum/assets/0x973e52691176d36453868D9d86572788d27041A9/info.json b/blockchains/ethereum/assets/0x973e52691176d36453868D9d86572788d27041A9/info.json new file mode 100644 index 00000000..0e401eab --- /dev/null +++ b/blockchains/ethereum/assets/0x973e52691176d36453868D9d86572788d27041A9/info.json @@ -0,0 +1,11 @@ +{ + "name": "DxChain Token", + "website": "https://dxchain.com", + "description": "DxChain is the world’s first decentralized big data and machine learning network powered by a computing-centric blockchain.", + "explorer": "https://etherscan.io/token/0x973e52691176d36453868D9d86572788d27041A9", + "type": "ERC20", + "symbol": "DX", + "decimals": 18, + "status": "active", + "id": "0x973e52691176d36453868D9d86572788d27041A9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x973e52691176d36453868D9d86572788d27041A9/logo.png b/blockchains/ethereum/assets/0x973e52691176d36453868D9d86572788d27041A9/logo.png new file mode 100644 index 00000000..13cba15b Binary files /dev/null and b/blockchains/ethereum/assets/0x973e52691176d36453868D9d86572788d27041A9/logo.png differ diff --git a/blockchains/ethereum/assets/0x9746953F5b1324a78132895cfD263F417B0faAE3/info.json b/blockchains/ethereum/assets/0x9746953F5b1324a78132895cfD263F417B0faAE3/info.json new file mode 100644 index 00000000..8d108c7f --- /dev/null +++ b/blockchains/ethereum/assets/0x9746953F5b1324a78132895cfD263F417B0faAE3/info.json @@ -0,0 +1,11 @@ +{ + "name": "ValueCyberToken", + "symbol": "VCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.valuecyber.org/", + "explorer": "https://etherscan.io/token/0x9746953F5b1324a78132895cfD263F417B0faAE3", + "status": "abandoned", + "id": "0x9746953F5b1324a78132895cfD263F417B0faAE3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9746953F5b1324a78132895cfD263F417B0faAE3/logo.png b/blockchains/ethereum/assets/0x9746953F5b1324a78132895cfD263F417B0faAE3/logo.png new file mode 100644 index 00000000..bd6023b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x9746953F5b1324a78132895cfD263F417B0faAE3/logo.png differ diff --git a/blockchains/ethereum/assets/0x974C718665C1545D20136879fa37755aCDf38a4B/info.json b/blockchains/ethereum/assets/0x974C718665C1545D20136879fa37755aCDf38a4B/info.json new file mode 100644 index 00000000..0ded7604 --- /dev/null +++ b/blockchains/ethereum/assets/0x974C718665C1545D20136879fa37755aCDf38a4B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coin Cab", + "symbol": "CCAB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x974C718665C1545D20136879fa37755aCDf38a4B", + "status": "abandoned", + "id": "0x974C718665C1545D20136879fa37755aCDf38a4B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x974C718665C1545D20136879fa37755aCDf38a4B/logo.png b/blockchains/ethereum/assets/0x974C718665C1545D20136879fa37755aCDf38a4B/logo.png new file mode 100755 index 00000000..7303bde6 Binary files /dev/null and b/blockchains/ethereum/assets/0x974C718665C1545D20136879fa37755aCDf38a4B/logo.png differ diff --git a/blockchains/ethereum/assets/0x974c312D85684AEdc6F04fB065078491E1b3fd03/info.json b/blockchains/ethereum/assets/0x974c312D85684AEdc6F04fB065078491E1b3fd03/info.json new file mode 100644 index 00000000..ba32962b --- /dev/null +++ b/blockchains/ethereum/assets/0x974c312D85684AEdc6F04fB065078491E1b3fd03/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vietnam Gold Token", + "symbol": "CHI", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x974c312D85684AEdc6F04fB065078491E1b3fd03", + "status": "abandoned", + "id": "0x974c312D85684AEdc6F04fB065078491E1b3fd03" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x974c312D85684AEdc6F04fB065078491E1b3fd03/logo.png b/blockchains/ethereum/assets/0x974c312D85684AEdc6F04fB065078491E1b3fd03/logo.png new file mode 100644 index 00000000..8b257386 Binary files /dev/null and b/blockchains/ethereum/assets/0x974c312D85684AEdc6F04fB065078491E1b3fd03/logo.png differ diff --git a/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/info.json b/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/info.json new file mode 100644 index 00000000..c0e7f359 --- /dev/null +++ b/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/info.json @@ -0,0 +1,56 @@ +{ + "name": "DynDYDX DynaSet", + "type": "ERC20", + "symbol": "dynDYDX", + "decimals": 18, + "website": "https://singularitydao.ai/dynalab/dynDYDX", + "description": "Thanks to this innovative DynaSet, the DAM can use dYdX derivative solutions to hedge, short and apply leverage to the market. Powered by SingularityDAO.ai.", + "explorer": "https://etherscan.io/token/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2", + "status": "active", + "id": "0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2", + "links": [ + { + "name": "x", + "url": "https://x.com/SingularityDao" + }, + { + "name": "telegram", + "url": "https://t.me/chatsight_bot?start=dmVyaWZ5OjotMTAwMTI4NzAxNjEzNw==" + }, + { + "name": "telegram_news", + "url": "https://t.me/sdaoann" + }, + { + "name": "discord", + "url": "https://discord.com/invite/singularitydao" + }, + { + "name": "github", + "url": "https://github.com/Singularity-DAO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/singularitydao" + }, + { + "name": "youtube", + "url": "https://youtube.com/@SingularityDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/singularitydao/" + }, + { + "name": "medium", + "url": "https://medium.com/singularitydao" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SingularityDAO/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/logo.png b/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/logo.png new file mode 100644 index 00000000..2ef0532b Binary files /dev/null and b/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/logo.png differ diff --git a/blockchains/ethereum/assets/0x977e5f1Bc595Db78DcC0E78A6fDFa08E988ca264/info.json b/blockchains/ethereum/assets/0x977e5f1Bc595Db78DcC0E78A6fDFa08E988ca264/info.json new file mode 100644 index 00000000..75870e89 --- /dev/null +++ b/blockchains/ethereum/assets/0x977e5f1Bc595Db78DcC0E78A6fDFa08E988ca264/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nicash", + "symbol": "NICASH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x977e5f1Bc595Db78DcC0E78A6fDFa08E988ca264", + "status": "abandoned", + "id": "0x977e5f1Bc595Db78DcC0E78A6fDFa08E988ca264" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x977e5f1Bc595Db78DcC0E78A6fDFa08E988ca264/logo.png b/blockchains/ethereum/assets/0x977e5f1Bc595Db78DcC0E78A6fDFa08E988ca264/logo.png new file mode 100644 index 00000000..53ccc4c9 Binary files /dev/null and b/blockchains/ethereum/assets/0x977e5f1Bc595Db78DcC0E78A6fDFa08E988ca264/logo.png differ diff --git a/blockchains/ethereum/assets/0x9787875E6a528E97D4Beb1fA13c01084231C820B/info.json b/blockchains/ethereum/assets/0x9787875E6a528E97D4Beb1fA13c01084231C820B/info.json new file mode 100644 index 00000000..237044b9 --- /dev/null +++ b/blockchains/ethereum/assets/0x9787875E6a528E97D4Beb1fA13c01084231C820B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cancer Realtime Check", + "symbol": "CHECK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9787875E6a528E97D4Beb1fA13c01084231C820B", + "status": "abandoned", + "id": "0x9787875E6a528E97D4Beb1fA13c01084231C820B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9787875E6a528E97D4Beb1fA13c01084231C820B/logo.png b/blockchains/ethereum/assets/0x9787875E6a528E97D4Beb1fA13c01084231C820B/logo.png new file mode 100644 index 00000000..6ddfc51e Binary files /dev/null and b/blockchains/ethereum/assets/0x9787875E6a528E97D4Beb1fA13c01084231C820B/logo.png differ diff --git a/blockchains/ethereum/assets/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1/info.json b/blockchains/ethereum/assets/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1/info.json new file mode 100644 index 00000000..395bfa2d --- /dev/null +++ b/blockchains/ethereum/assets/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1/info.json @@ -0,0 +1,11 @@ +{ + "name": "TeraBlock Token", + "website": "https://terablock.ai", + "description": "Machine Learning driven, personalised cryptocurrency trade automation to help you easily manage your assets.", + "explorer": "https://etherscan.io/token/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1", + "symbol": "TBC", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1/logo.png b/blockchains/ethereum/assets/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1/logo.png new file mode 100644 index 00000000..21d22c61 Binary files /dev/null and b/blockchains/ethereum/assets/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1/logo.png differ diff --git a/blockchains/ethereum/assets/0x979EBc09e55EA0ab563CF7175e4c4b1a03AFc19a/info.json b/blockchains/ethereum/assets/0x979EBc09e55EA0ab563CF7175e4c4b1a03AFc19a/info.json new file mode 100644 index 00000000..64616867 --- /dev/null +++ b/blockchains/ethereum/assets/0x979EBc09e55EA0ab563CF7175e4c4b1a03AFc19a/info.json @@ -0,0 +1,11 @@ +{ + "name": "UTEMIS", + "symbol": "UTS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x979EBc09e55EA0ab563CF7175e4c4b1a03AFc19a", + "status": "abandoned", + "id": "0x979EBc09e55EA0ab563CF7175e4c4b1a03AFc19a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x979EBc09e55EA0ab563CF7175e4c4b1a03AFc19a/logo.png b/blockchains/ethereum/assets/0x979EBc09e55EA0ab563CF7175e4c4b1a03AFc19a/logo.png new file mode 100644 index 00000000..460fc92c Binary files /dev/null and b/blockchains/ethereum/assets/0x979EBc09e55EA0ab563CF7175e4c4b1a03AFc19a/logo.png differ diff --git a/blockchains/ethereum/assets/0x97AEB5066E1A590e868b511457BEb6FE99d329F5/info.json b/blockchains/ethereum/assets/0x97AEB5066E1A590e868b511457BEb6FE99d329F5/info.json new file mode 100644 index 00000000..ba612914 --- /dev/null +++ b/blockchains/ethereum/assets/0x97AEB5066E1A590e868b511457BEb6FE99d329F5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Atonomi", + "symbol": "ATMI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://atonomi.io/", + "explorer": "https://etherscan.io/token/0x97AEB5066E1A590e868b511457BEb6FE99d329F5", + "status": "abandoned", + "id": "0x97AEB5066E1A590e868b511457BEb6FE99d329F5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x97AEB5066E1A590e868b511457BEb6FE99d329F5/logo.png b/blockchains/ethereum/assets/0x97AEB5066E1A590e868b511457BEb6FE99d329F5/logo.png new file mode 100644 index 00000000..baaf69e7 Binary files /dev/null and b/blockchains/ethereum/assets/0x97AEB5066E1A590e868b511457BEb6FE99d329F5/logo.png differ diff --git a/blockchains/ethereum/assets/0x97BDda66586C828c1d6da94e3d8fca616e8081f0/info.json b/blockchains/ethereum/assets/0x97BDda66586C828c1d6da94e3d8fca616e8081f0/info.json new file mode 100644 index 00000000..b28b9e1b --- /dev/null +++ b/blockchains/ethereum/assets/0x97BDda66586C828c1d6da94e3d8fca616e8081f0/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R908635", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x97BDda66586C828c1d6da94e3d8fca616e8081f0", + "status": "abandoned", + "id": "0x97BDda66586C828c1d6da94e3d8fca616e8081f0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x97BDda66586C828c1d6da94e3d8fca616e8081f0/logo.png b/blockchains/ethereum/assets/0x97BDda66586C828c1d6da94e3d8fca616e8081f0/logo.png new file mode 100755 index 00000000..aff7022d Binary files /dev/null and b/blockchains/ethereum/assets/0x97BDda66586C828c1d6da94e3d8fca616e8081f0/logo.png differ diff --git a/blockchains/ethereum/assets/0x97Cb5Cc1b2e10cC56DC16ab9179f06dfEDBe41A2/info.json b/blockchains/ethereum/assets/0x97Cb5Cc1b2e10cC56DC16ab9179f06dfEDBe41A2/info.json new file mode 100644 index 00000000..ef3c2303 --- /dev/null +++ b/blockchains/ethereum/assets/0x97Cb5Cc1b2e10cC56DC16ab9179f06dfEDBe41A2/info.json @@ -0,0 +1,11 @@ +{ + "name": "MobilinkToken", + "symbol": "MOLK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://mobilink.io/", + "explorer": "https://etherscan.io/token/0x97Cb5Cc1b2e10cC56DC16ab9179f06dfEDBe41A2", + "status": "abandoned", + "id": "0x97Cb5Cc1b2e10cC56DC16ab9179f06dfEDBe41A2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x97Cb5Cc1b2e10cC56DC16ab9179f06dfEDBe41A2/logo.png b/blockchains/ethereum/assets/0x97Cb5Cc1b2e10cC56DC16ab9179f06dfEDBe41A2/logo.png new file mode 100644 index 00000000..cc9b9433 Binary files /dev/null and b/blockchains/ethereum/assets/0x97Cb5Cc1b2e10cC56DC16ab9179f06dfEDBe41A2/logo.png differ diff --git a/blockchains/ethereum/assets/0x97E0d16620A781b5FBd51054c67E955AB5D51A34/info.json b/blockchains/ethereum/assets/0x97E0d16620A781b5FBd51054c67E955AB5D51A34/info.json new file mode 100644 index 00000000..382a92fa --- /dev/null +++ b/blockchains/ethereum/assets/0x97E0d16620A781b5FBd51054c67E955AB5D51A34/info.json @@ -0,0 +1,11 @@ +{ + "name": "NG COIN", + "symbol": "NGC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x97E0d16620A781b5FBd51054c67E955AB5D51A34", + "status": "abandoned", + "id": "0x97E0d16620A781b5FBd51054c67E955AB5D51A34" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x97E0d16620A781b5FBd51054c67E955AB5D51A34/logo.png b/blockchains/ethereum/assets/0x97E0d16620A781b5FBd51054c67E955AB5D51A34/logo.png new file mode 100755 index 00000000..f107fbfd Binary files /dev/null and b/blockchains/ethereum/assets/0x97E0d16620A781b5FBd51054c67E955AB5D51A34/logo.png differ diff --git a/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/info.json b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/info.json new file mode 100644 index 00000000..fc777da4 --- /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 00000000..2f1a0daf Binary files /dev/null and b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/logo.png differ diff --git a/blockchains/ethereum/assets/0x97f78F697E9b8233CC93729ACE5fbF3Ef26897EE/info.json b/blockchains/ethereum/assets/0x97f78F697E9b8233CC93729ACE5fbF3Ef26897EE/info.json new file mode 100644 index 00000000..25aa5549 --- /dev/null +++ b/blockchains/ethereum/assets/0x97f78F697E9b8233CC93729ACE5fbF3Ef26897EE/info.json @@ -0,0 +1,11 @@ +{ + "name": "PrimeMax", + "symbol": "PMC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x97f78F697E9b8233CC93729ACE5fbF3Ef26897EE", + "status": "abandoned", + "id": "0x97f78F697E9b8233CC93729ACE5fbF3Ef26897EE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x97f78F697E9b8233CC93729ACE5fbF3Ef26897EE/logo.png b/blockchains/ethereum/assets/0x97f78F697E9b8233CC93729ACE5fbF3Ef26897EE/logo.png new file mode 100644 index 00000000..1ddbb6a3 Binary files /dev/null and b/blockchains/ethereum/assets/0x97f78F697E9b8233CC93729ACE5fbF3Ef26897EE/logo.png differ diff --git a/blockchains/ethereum/assets/0x97fB6Fc2AD532033Af97043B563131C5204F8A35/info.json b/blockchains/ethereum/assets/0x97fB6Fc2AD532033Af97043B563131C5204F8A35/info.json new file mode 100644 index 00000000..c44252d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x97fB6Fc2AD532033Af97043B563131C5204F8A35/info.json @@ -0,0 +1,11 @@ +{ + "name": "PlusCoin", + "symbol": "NPLC", + "type": "ERC20", + "decimals": 18, + "description": "PlusCoin has been developed to connect cryptocurrency and the real economy. PlusCoin also serves as exchange token of Korean exchange UpXide.", + "website": "http://plus-coin.com/en/", + "explorer": "https://etherscan.io/token/0x97fB6Fc2AD532033Af97043B563131C5204F8A35", + "status": "active", + "id": "0x97fB6Fc2AD532033Af97043B563131C5204F8A35" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x97fB6Fc2AD532033Af97043B563131C5204F8A35/logo.png b/blockchains/ethereum/assets/0x97fB6Fc2AD532033Af97043B563131C5204F8A35/logo.png new file mode 100644 index 00000000..93149ea3 Binary files /dev/null and b/blockchains/ethereum/assets/0x97fB6Fc2AD532033Af97043B563131C5204F8A35/logo.png differ diff --git a/blockchains/ethereum/assets/0x97fa8C5349c5Edf44FfE861297c602D13c662C00/info.json b/blockchains/ethereum/assets/0x97fa8C5349c5Edf44FfE861297c602D13c662C00/info.json new file mode 100644 index 00000000..f1303987 --- /dev/null +++ b/blockchains/ethereum/assets/0x97fa8C5349c5Edf44FfE861297c602D13c662C00/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Lending Coin", + "symbol": "TLC", + "type": "ERC20", + "decimals": 17, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x97fa8C5349c5Edf44FfE861297c602D13c662C00", + "status": "abandoned", + "id": "0x97fa8C5349c5Edf44FfE861297c602D13c662C00" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x97fa8C5349c5Edf44FfE861297c602D13c662C00/logo.png b/blockchains/ethereum/assets/0x97fa8C5349c5Edf44FfE861297c602D13c662C00/logo.png new file mode 100644 index 00000000..56fd5e6e Binary files /dev/null and b/blockchains/ethereum/assets/0x97fa8C5349c5Edf44FfE861297c602D13c662C00/logo.png differ diff --git a/blockchains/ethereum/assets/0x98033a0BE912B04842c8D4e1de8d794Ef0253321/info.json b/blockchains/ethereum/assets/0x98033a0BE912B04842c8D4e1de8d794Ef0253321/info.json new file mode 100644 index 00000000..0c01fc8f --- /dev/null +++ b/blockchains/ethereum/assets/0x98033a0BE912B04842c8D4e1de8d794Ef0253321/info.json @@ -0,0 +1,11 @@ +{ + "name": "AskToken", + "symbol": "ASK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x98033a0BE912B04842c8D4e1de8d794Ef0253321", + "status": "abandoned", + "id": "0x98033a0BE912B04842c8D4e1de8d794Ef0253321" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x98033a0BE912B04842c8D4e1de8d794Ef0253321/logo.png b/blockchains/ethereum/assets/0x98033a0BE912B04842c8D4e1de8d794Ef0253321/logo.png new file mode 100644 index 00000000..f6be5f5e Binary files /dev/null and b/blockchains/ethereum/assets/0x98033a0BE912B04842c8D4e1de8d794Ef0253321/logo.png differ diff --git a/blockchains/ethereum/assets/0x980E45AB37c6bcAF93Fe911b3e207e08a3a60B5E/info.json b/blockchains/ethereum/assets/0x980E45AB37c6bcAF93Fe911b3e207e08a3a60B5E/info.json new file mode 100644 index 00000000..a1b29b41 --- /dev/null +++ b/blockchains/ethereum/assets/0x980E45AB37c6bcAF93Fe911b3e207e08a3a60B5E/info.json @@ -0,0 +1,11 @@ +{ + "name": "SIBU", + "symbol": "SIBU", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x980E45AB37c6bcAF93Fe911b3e207e08a3a60B5E", + "status": "abandoned", + "id": "0x980E45AB37c6bcAF93Fe911b3e207e08a3a60B5E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x980E45AB37c6bcAF93Fe911b3e207e08a3a60B5E/logo.png b/blockchains/ethereum/assets/0x980E45AB37c6bcAF93Fe911b3e207e08a3a60B5E/logo.png new file mode 100755 index 00000000..02810e5e Binary files /dev/null and b/blockchains/ethereum/assets/0x980E45AB37c6bcAF93Fe911b3e207e08a3a60B5E/logo.png differ diff --git a/blockchains/ethereum/assets/0x980a1001ee94e54142b231f44C7CA7c9DF71FBe1/info.json b/blockchains/ethereum/assets/0x980a1001ee94e54142b231f44C7CA7c9DF71FBe1/info.json new file mode 100644 index 00000000..32487b42 --- /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 00000000..3be5c655 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 new file mode 100644 index 00000000..130a6db8 --- /dev/null +++ b/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/info.json @@ -0,0 +1,32 @@ +{ + "name": "BONE SHIBASWAP", + "type": "ERC20", + "symbol": "BONE", + "decimals": 18, + "website": "https://shibaswap.com/", + "description": "Bone is a governance token of Shibaswap ecosystem which will allow the #ShibArmy to vote on upcoming proposals. The more BONE the user holds, the more weight of their vote carries in these future endeavors.", + "explorer": "https://etherscan.io/token/0x9813037ee2218799597d83D4a5B6F3b6778218d9", + "status": "active", + "id": "0x9813037ee2218799597d83D4a5B6F3b6778218d9", + "links": [ + { + "name": "x", + "url": "https://x.com/shibtoken" + }, + { + "name": "telegram", + "url": "https://t.me/bonedogekiller" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bone-shibaswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bone-shibaswap/" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/logo.png b/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/logo.png new file mode 100644 index 00000000..74b84c85 Binary files /dev/null and b/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/logo.png differ diff --git a/blockchains/ethereum/assets/0x9826299A4DF8bF3A38452f8fE1a75B660EC7cbB3/info.json b/blockchains/ethereum/assets/0x9826299A4DF8bF3A38452f8fE1a75B660EC7cbB3/info.json new file mode 100644 index 00000000..ecaceacd --- /dev/null +++ b/blockchains/ethereum/assets/0x9826299A4DF8bF3A38452f8fE1a75B660EC7cbB3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fazliq Iirfan", + "symbol": "FQN", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9826299A4DF8bF3A38452f8fE1a75B660EC7cbB3", + "status": "abandoned", + "id": "0x9826299A4DF8bF3A38452f8fE1a75B660EC7cbB3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9826299A4DF8bF3A38452f8fE1a75B660EC7cbB3/logo.png b/blockchains/ethereum/assets/0x9826299A4DF8bF3A38452f8fE1a75B660EC7cbB3/logo.png new file mode 100755 index 00000000..a7d21f61 Binary files /dev/null and b/blockchains/ethereum/assets/0x9826299A4DF8bF3A38452f8fE1a75B660EC7cbB3/logo.png differ diff --git a/blockchains/ethereum/assets/0x98284FbC11eDD7540E29b896a49817Bbe52DdCBd/info.json b/blockchains/ethereum/assets/0x98284FbC11eDD7540E29b896a49817Bbe52DdCBd/info.json new file mode 100644 index 00000000..035a4818 --- /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 00000000..d163a75f Binary files /dev/null and b/blockchains/ethereum/assets/0x98284FbC11eDD7540E29b896a49817Bbe52DdCBd/logo.png differ diff --git a/blockchains/ethereum/assets/0x983F6d60db79ea8cA4eB9968C6aFf8cfA04B3c63/info.json b/blockchains/ethereum/assets/0x983F6d60db79ea8cA4eB9968C6aFf8cfA04B3c63/info.json new file mode 100644 index 00000000..29b8bc64 --- /dev/null +++ b/blockchains/ethereum/assets/0x983F6d60db79ea8cA4eB9968C6aFf8cfA04B3c63/info.json @@ -0,0 +1,11 @@ +{ + "name": "SONM Token", + "symbol": "SNM", + "type": "ERC20", + "decimals": 18, + "description": "Decentralized Fog Computing Platform.", + "website": "https://sonm.io", + "explorer": "https://etherscan.io/token/0x983F6d60db79ea8cA4eB9968C6aFf8cfA04B3c63", + "status": "active", + "id": "0x983F6d60db79ea8cA4eB9968C6aFf8cfA04B3c63" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x983F6d60db79ea8cA4eB9968C6aFf8cfA04B3c63/logo.png b/blockchains/ethereum/assets/0x983F6d60db79ea8cA4eB9968C6aFf8cfA04B3c63/logo.png new file mode 100755 index 00000000..00c6d552 Binary files /dev/null and b/blockchains/ethereum/assets/0x983F6d60db79ea8cA4eB9968C6aFf8cfA04B3c63/logo.png differ diff --git a/blockchains/ethereum/assets/0x984C134A8809571993Fd1573fB99F06Dc61E216f/info.json b/blockchains/ethereum/assets/0x984C134A8809571993Fd1573fB99F06Dc61E216f/info.json new file mode 100644 index 00000000..f4f8c071 --- /dev/null +++ b/blockchains/ethereum/assets/0x984C134A8809571993Fd1573fB99F06Dc61E216f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Artchain Global Token", + "symbol": "ACG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x984C134A8809571993Fd1573fB99F06Dc61E216f", + "status": "abandoned", + "id": "0x984C134A8809571993Fd1573fB99F06Dc61E216f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x984C134A8809571993Fd1573fB99F06Dc61E216f/logo.png b/blockchains/ethereum/assets/0x984C134A8809571993Fd1573fB99F06Dc61E216f/logo.png new file mode 100644 index 00000000..784ef8eb Binary files /dev/null and b/blockchains/ethereum/assets/0x984C134A8809571993Fd1573fB99F06Dc61E216f/logo.png differ diff --git a/blockchains/ethereum/assets/0x985db5e4DD183d2C8f72dB113B8e022a3D059516/info.json b/blockchains/ethereum/assets/0x985db5e4DD183d2C8f72dB113B8e022a3D059516/info.json new file mode 100644 index 00000000..bd8c6420 --- /dev/null +++ b/blockchains/ethereum/assets/0x985db5e4DD183d2C8f72dB113B8e022a3D059516/info.json @@ -0,0 +1,11 @@ +{ + "name": "PesaChain", + "symbol": "PESA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x985db5e4DD183d2C8f72dB113B8e022a3D059516", + "status": "abandoned", + "id": "0x985db5e4DD183d2C8f72dB113B8e022a3D059516" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x985db5e4DD183d2C8f72dB113B8e022a3D059516/logo.png b/blockchains/ethereum/assets/0x985db5e4DD183d2C8f72dB113B8e022a3D059516/logo.png new file mode 100644 index 00000000..83b9750b Binary files /dev/null and b/blockchains/ethereum/assets/0x985db5e4DD183d2C8f72dB113B8e022a3D059516/logo.png differ diff --git a/blockchains/ethereum/assets/0x98626E2C9231f03504273d55f397409deFD4a093/info.json b/blockchains/ethereum/assets/0x98626E2C9231f03504273d55f397409deFD4a093/info.json new file mode 100644 index 00000000..1f371ba9 --- /dev/null +++ b/blockchains/ethereum/assets/0x98626E2C9231f03504273d55f397409deFD4a093/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dev", + "symbol": "DEV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x98626E2C9231f03504273d55f397409deFD4a093", + "status": "abandoned", + "id": "0x98626E2C9231f03504273d55f397409deFD4a093" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x98626E2C9231f03504273d55f397409deFD4a093/logo.png b/blockchains/ethereum/assets/0x98626E2C9231f03504273d55f397409deFD4a093/logo.png new file mode 100755 index 00000000..aac6a2b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x98626E2C9231f03504273d55f397409deFD4a093/logo.png differ diff --git a/blockchains/ethereum/assets/0x986EE2B944c42D017F52Af21c4c69B84DBeA35d8/info.json b/blockchains/ethereum/assets/0x986EE2B944c42D017F52Af21c4c69B84DBeA35d8/info.json new file mode 100644 index 00000000..cc71e3e7 --- /dev/null +++ b/blockchains/ethereum/assets/0x986EE2B944c42D017F52Af21c4c69B84DBeA35d8/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitMartToken", + "symbol": "BMX", + "type": "ERC20", + "decimals": 18, + "description": "BitMart is a globally integrated trading platform founded by a group of cryptocurrency enthusiasts. BMX is an ERC20 based token issued by BitMart Exchange.", + "website": "https://www.bitmart.com/", + "explorer": "https://etherscan.io/token/0x986EE2B944c42D017F52Af21c4c69B84DBeA35d8", + "status": "active", + "id": "0x986EE2B944c42D017F52Af21c4c69B84DBeA35d8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x986EE2B944c42D017F52Af21c4c69B84DBeA35d8/logo.png b/blockchains/ethereum/assets/0x986EE2B944c42D017F52Af21c4c69B84DBeA35d8/logo.png new file mode 100644 index 00000000..572e217d Binary files /dev/null and b/blockchains/ethereum/assets/0x986EE2B944c42D017F52Af21c4c69B84DBeA35d8/logo.png differ diff --git a/blockchains/ethereum/assets/0x9888E6f8fCF52A21d3D78f66Cc20AF5d046d83d7/info.json b/blockchains/ethereum/assets/0x9888E6f8fCF52A21d3D78f66Cc20AF5d046d83d7/info.json new file mode 100644 index 00000000..67f1ce0a --- /dev/null +++ b/blockchains/ethereum/assets/0x9888E6f8fCF52A21d3D78f66Cc20AF5d046d83d7/info.json @@ -0,0 +1,11 @@ +{ + "name": "HEX", + "symbol": "HX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9888E6f8fCF52A21d3D78f66Cc20AF5d046d83d7", + "status": "abandoned", + "id": "0x9888E6f8fCF52A21d3D78f66Cc20AF5d046d83d7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9888E6f8fCF52A21d3D78f66Cc20AF5d046d83d7/logo.png b/blockchains/ethereum/assets/0x9888E6f8fCF52A21d3D78f66Cc20AF5d046d83d7/logo.png new file mode 100644 index 00000000..f4d72fcc Binary files /dev/null and b/blockchains/ethereum/assets/0x9888E6f8fCF52A21d3D78f66Cc20AF5d046d83d7/logo.png differ diff --git a/blockchains/ethereum/assets/0x989c8b9953035C036B46690A28DB5E5e2d538C4A/info.json b/blockchains/ethereum/assets/0x989c8b9953035C036B46690A28DB5E5e2d538C4A/info.json new file mode 100644 index 00000000..28abe564 --- /dev/null +++ b/blockchains/ethereum/assets/0x989c8b9953035C036B46690A28DB5E5e2d538C4A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Guru", + "symbol": "Guru", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x989c8b9953035C036B46690A28DB5E5e2d538C4A", + "status": "abandoned", + "id": "0x989c8b9953035C036B46690A28DB5E5e2d538C4A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x989c8b9953035C036B46690A28DB5E5e2d538C4A/logo.png b/blockchains/ethereum/assets/0x989c8b9953035C036B46690A28DB5E5e2d538C4A/logo.png new file mode 100755 index 00000000..ddae5482 Binary files /dev/null and b/blockchains/ethereum/assets/0x989c8b9953035C036B46690A28DB5E5e2d538C4A/logo.png differ diff --git a/blockchains/ethereum/assets/0x98D3335f207d211C6C44AdF0De667356c9C5078c/info.json b/blockchains/ethereum/assets/0x98D3335f207d211C6C44AdF0De667356c9C5078c/info.json new file mode 100644 index 00000000..0005d4e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x98D3335f207d211C6C44AdF0De667356c9C5078c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bancambios X1", + "symbol": "BAFT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x98D3335f207d211C6C44AdF0De667356c9C5078c", + "status": "abandoned", + "id": "0x98D3335f207d211C6C44AdF0De667356c9C5078c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x98D3335f207d211C6C44AdF0De667356c9C5078c/logo.png b/blockchains/ethereum/assets/0x98D3335f207d211C6C44AdF0De667356c9C5078c/logo.png new file mode 100644 index 00000000..fc7cacff Binary files /dev/null and b/blockchains/ethereum/assets/0x98D3335f207d211C6C44AdF0De667356c9C5078c/logo.png differ diff --git a/blockchains/ethereum/assets/0x98F6b2C5BCc88629cF10F2effaa2Df0Ebc16E92D/info.json b/blockchains/ethereum/assets/0x98F6b2C5BCc88629cF10F2effaa2Df0Ebc16E92D/info.json new file mode 100644 index 00000000..2e3a55a9 --- /dev/null +++ b/blockchains/ethereum/assets/0x98F6b2C5BCc88629cF10F2effaa2Df0Ebc16E92D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Saiful", + "symbol": "SFL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x98F6b2C5BCc88629cF10F2effaa2Df0Ebc16E92D", + "status": "abandoned", + "id": "0x98F6b2C5BCc88629cF10F2effaa2Df0Ebc16E92D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x98F6b2C5BCc88629cF10F2effaa2Df0Ebc16E92D/logo.png b/blockchains/ethereum/assets/0x98F6b2C5BCc88629cF10F2effaa2Df0Ebc16E92D/logo.png new file mode 100644 index 00000000..0c075a83 Binary files /dev/null and b/blockchains/ethereum/assets/0x98F6b2C5BCc88629cF10F2effaa2Df0Ebc16E92D/logo.png differ diff --git a/blockchains/ethereum/assets/0x98b04997C2F9cf6a7E5Bd13B22D1Fa5bD1080CA8/info.json b/blockchains/ethereum/assets/0x98b04997C2F9cf6a7E5Bd13B22D1Fa5bD1080CA8/info.json new file mode 100644 index 00000000..0e978b8b --- /dev/null +++ b/blockchains/ethereum/assets/0x98b04997C2F9cf6a7E5Bd13B22D1Fa5bD1080CA8/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C573717", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x98b04997C2F9cf6a7E5Bd13B22D1Fa5bD1080CA8", + "status": "abandoned", + "id": "0x98b04997C2F9cf6a7E5Bd13B22D1Fa5bD1080CA8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x98b04997C2F9cf6a7E5Bd13B22D1Fa5bD1080CA8/logo.png b/blockchains/ethereum/assets/0x98b04997C2F9cf6a7E5Bd13B22D1Fa5bD1080CA8/logo.png new file mode 100644 index 00000000..bba4c429 Binary files /dev/null and b/blockchains/ethereum/assets/0x98b04997C2F9cf6a7E5Bd13B22D1Fa5bD1080CA8/logo.png differ diff --git a/blockchains/ethereum/assets/0x98b2dE885E916b598f65DeD2fDbb63187EAEf184/info.json b/blockchains/ethereum/assets/0x98b2dE885E916b598f65DeD2fDbb63187EAEf184/info.json new file mode 100644 index 00000000..474da1cf --- /dev/null +++ b/blockchains/ethereum/assets/0x98b2dE885E916b598f65DeD2fDbb63187EAEf184/info.json @@ -0,0 +1,11 @@ +{ + "name": "Defi", + "symbol": "DEFI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x98b2dE885E916b598f65DeD2fDbb63187EAEf184", + "status": "abandoned", + "id": "0x98b2dE885E916b598f65DeD2fDbb63187EAEf184" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x98b2dE885E916b598f65DeD2fDbb63187EAEf184/logo.png b/blockchains/ethereum/assets/0x98b2dE885E916b598f65DeD2fDbb63187EAEf184/logo.png new file mode 100644 index 00000000..a256faa4 Binary files /dev/null and b/blockchains/ethereum/assets/0x98b2dE885E916b598f65DeD2fDbb63187EAEf184/logo.png differ diff --git a/blockchains/ethereum/assets/0x98d0cDe5c3d79531613e18f0912127BF172bd7AA/info.json b/blockchains/ethereum/assets/0x98d0cDe5c3d79531613e18f0912127BF172bd7AA/info.json new file mode 100644 index 00000000..131d3775 --- /dev/null +++ b/blockchains/ethereum/assets/0x98d0cDe5c3d79531613e18f0912127BF172bd7AA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Biotech Token", + "symbol": "ATG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x98d0cDe5c3d79531613e18f0912127BF172bd7AA", + "status": "active", + "id": "0x98d0cDe5c3d79531613e18f0912127BF172bd7AA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x98d0cDe5c3d79531613e18f0912127BF172bd7AA/logo.png b/blockchains/ethereum/assets/0x98d0cDe5c3d79531613e18f0912127BF172bd7AA/logo.png new file mode 100644 index 00000000..af89e399 Binary files /dev/null and b/blockchains/ethereum/assets/0x98d0cDe5c3d79531613e18f0912127BF172bd7AA/logo.png differ diff --git a/blockchains/ethereum/assets/0x98eb850a587D908980328ED3Fde3e335C0cc4426/info.json b/blockchains/ethereum/assets/0x98eb850a587D908980328ED3Fde3e335C0cc4426/info.json new file mode 100644 index 00000000..e6535bd2 --- /dev/null +++ b/blockchains/ethereum/assets/0x98eb850a587D908980328ED3Fde3e335C0cc4426/info.json @@ -0,0 +1,11 @@ +{ + "name": "Market Return", + "symbol": "MARE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x98eb850a587D908980328ED3Fde3e335C0cc4426", + "status": "abandoned", + "id": "0x98eb850a587D908980328ED3Fde3e335C0cc4426" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x98eb850a587D908980328ED3Fde3e335C0cc4426/logo.png b/blockchains/ethereum/assets/0x98eb850a587D908980328ED3Fde3e335C0cc4426/logo.png new file mode 100644 index 00000000..94dbbcc6 Binary files /dev/null and b/blockchains/ethereum/assets/0x98eb850a587D908980328ED3Fde3e335C0cc4426/logo.png differ diff --git a/blockchains/ethereum/assets/0x9903A4Cd589DA8e434f264deAFc406836418578E/info.json b/blockchains/ethereum/assets/0x9903A4Cd589DA8e434f264deAFc406836418578E/info.json new file mode 100644 index 00000000..c2ce49d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x9903A4Cd589DA8e434f264deAFc406836418578E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Harrison First", + "symbol": "FIRST", + "type": "ERC20", + "decimals": 4, + "description": "$FIRST is a community of creators and innovators founded by music artist Harrison First. $FIRST is powered by unique NFTs and $FIRST AUDIO. $FIRST AUDIO is a way for digital artists and nft creators to tap into the audio nft space by having fully produced music by Harrison First in their next collection. All instrumentals are produced by Harrison First, and you are only required to hold 1,000 $FIRST to have access.", + "website": "https://app.tryroll.com/token/FIRST", + "explorer": "https://etherscan.io/token/0x9903A4Cd589DA8e434f264deAFc406836418578E", + "status": "active", + "id": "0x9903A4Cd589DA8e434f264deAFc406836418578E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9903A4Cd589DA8e434f264deAFc406836418578E/logo.png b/blockchains/ethereum/assets/0x9903A4Cd589DA8e434f264deAFc406836418578E/logo.png new file mode 100644 index 00000000..d463f627 Binary files /dev/null and b/blockchains/ethereum/assets/0x9903A4Cd589DA8e434f264deAFc406836418578E/logo.png differ diff --git a/blockchains/ethereum/assets/0x99043bB680Ab9262c7b2aC524E00b215Efb7db9b/info.json b/blockchains/ethereum/assets/0x99043bB680Ab9262c7b2aC524E00b215Efb7db9b/info.json new file mode 100644 index 00000000..ec7ddf7a --- /dev/null +++ b/blockchains/ethereum/assets/0x99043bB680Ab9262c7b2aC524E00b215Efb7db9b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Black Kishu Inu", + "website": "https://bishu.finance/", + "description": "Bishu is a community driven ERC20 token that gives back to charities", + "explorer": "https://etherscan.io/token/0x99043bb680ab9262c7b2ac524e00b215efb7db9b", + "type": "ERC20", + "symbol": "BISHU", + "decimals": 9, + "status": "active", + "id": "0x99043bB680Ab9262c7b2aC524E00b215Efb7db9b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x99043bB680Ab9262c7b2aC524E00b215Efb7db9b/logo.png b/blockchains/ethereum/assets/0x99043bB680Ab9262c7b2aC524E00b215Efb7db9b/logo.png new file mode 100644 index 00000000..81e81446 Binary files /dev/null and b/blockchains/ethereum/assets/0x99043bB680Ab9262c7b2aC524E00b215Efb7db9b/logo.png differ diff --git a/blockchains/ethereum/assets/0x990f341946A3fdB507aE7e52d17851B87168017c/info.json b/blockchains/ethereum/assets/0x990f341946A3fdB507aE7e52d17851B87168017c/info.json new file mode 100644 index 00000000..9750e336 --- /dev/null +++ b/blockchains/ethereum/assets/0x990f341946A3fdB507aE7e52d17851B87168017c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Strong", + "symbol": "STRONG", + "type": "ERC20", + "decimals": 18, + "description": "Strong (STRONG) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://strongblock.io", + "explorer": "https://etherscan.io/token/0x990f341946A3fdB507aE7e52d17851B87168017c", + "status": "active", + "id": "0x990f341946A3fdB507aE7e52d17851B87168017c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x990f341946A3fdB507aE7e52d17851B87168017c/logo.png b/blockchains/ethereum/assets/0x990f341946A3fdB507aE7e52d17851B87168017c/logo.png new file mode 100644 index 00000000..83cd8dda Binary files /dev/null and b/blockchains/ethereum/assets/0x990f341946A3fdB507aE7e52d17851B87168017c/logo.png differ diff --git a/blockchains/ethereum/assets/0x99176B8b915016c80098a9D98CAEa9E52FC30134/info.json b/blockchains/ethereum/assets/0x99176B8b915016c80098a9D98CAEa9E52FC30134/info.json new file mode 100644 index 00000000..66e5d0f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x99176B8b915016c80098a9D98CAEa9E52FC30134/info.json @@ -0,0 +1,11 @@ +{ + "name": "Intelligent Travel Ecosystem Chain", + "symbol": "ITEC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x99176B8b915016c80098a9D98CAEa9E52FC30134", + "status": "abandoned", + "id": "0x99176B8b915016c80098a9D98CAEa9E52FC30134" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x99176B8b915016c80098a9D98CAEa9E52FC30134/logo.png b/blockchains/ethereum/assets/0x99176B8b915016c80098a9D98CAEa9E52FC30134/logo.png new file mode 100644 index 00000000..7a494c72 Binary files /dev/null and b/blockchains/ethereum/assets/0x99176B8b915016c80098a9D98CAEa9E52FC30134/logo.png differ diff --git a/blockchains/ethereum/assets/0x991bd92D0dc8Af7bCc597AF1B0014a3CEc9f2460/info.json b/blockchains/ethereum/assets/0x991bd92D0dc8Af7bCc597AF1B0014a3CEc9f2460/info.json new file mode 100644 index 00000000..41afabc9 --- /dev/null +++ b/blockchains/ethereum/assets/0x991bd92D0dc8Af7bCc597AF1B0014a3CEc9f2460/info.json @@ -0,0 +1,11 @@ +{ + "name": "UBIpromoter", + "symbol": "UBIPRO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x991bd92D0dc8Af7bCc597AF1B0014a3CEc9f2460", + "status": "abandoned", + "id": "0x991bd92D0dc8Af7bCc597AF1B0014a3CEc9f2460" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x991bd92D0dc8Af7bCc597AF1B0014a3CEc9f2460/logo.png b/blockchains/ethereum/assets/0x991bd92D0dc8Af7bCc597AF1B0014a3CEc9f2460/logo.png new file mode 100644 index 00000000..4a31ffec Binary files /dev/null and b/blockchains/ethereum/assets/0x991bd92D0dc8Af7bCc597AF1B0014a3CEc9f2460/logo.png differ diff --git a/blockchains/ethereum/assets/0x992291429EdC6A9abD297ef08Ce1B97830Bba448/info.json b/blockchains/ethereum/assets/0x992291429EdC6A9abD297ef08Ce1B97830Bba448/info.json new file mode 100644 index 00000000..f6ed7b26 --- /dev/null +++ b/blockchains/ethereum/assets/0x992291429EdC6A9abD297ef08Ce1B97830Bba448/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R803896", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x992291429EdC6A9abD297ef08Ce1B97830Bba448", + "status": "abandoned", + "id": "0x992291429EdC6A9abD297ef08Ce1B97830Bba448" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x992291429EdC6A9abD297ef08Ce1B97830Bba448/logo.png b/blockchains/ethereum/assets/0x992291429EdC6A9abD297ef08Ce1B97830Bba448/logo.png new file mode 100644 index 00000000..f51ba33d Binary files /dev/null and b/blockchains/ethereum/assets/0x992291429EdC6A9abD297ef08Ce1B97830Bba448/logo.png differ diff --git a/blockchains/ethereum/assets/0x992651BFeB9A0DCC4457610E284ba66D86489d4d/info.json b/blockchains/ethereum/assets/0x992651BFeB9A0DCC4457610E284ba66D86489d4d/info.json new file mode 100644 index 00000000..da3cd6ca --- /dev/null +++ b/blockchains/ethereum/assets/0x992651BFeB9A0DCC4457610E284ba66D86489d4d/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)", + "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 00000000..731ceba6 Binary files /dev/null and b/blockchains/ethereum/assets/0x992651BFeB9A0DCC4457610E284ba66D86489d4d/logo.png differ diff --git a/blockchains/ethereum/assets/0x993628A05907c12B56b55Aa95Dd47EC46d9CDBB7/info.json b/blockchains/ethereum/assets/0x993628A05907c12B56b55Aa95Dd47EC46d9CDBB7/info.json new file mode 100644 index 00000000..fb3b6e8e --- /dev/null +++ b/blockchains/ethereum/assets/0x993628A05907c12B56b55Aa95Dd47EC46d9CDBB7/info.json @@ -0,0 +1,11 @@ +{ + "name": "10xTraders", + "symbol": "10x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x993628A05907c12B56b55Aa95Dd47EC46d9CDBB7", + "status": "abandoned", + "id": "0x993628A05907c12B56b55Aa95Dd47EC46d9CDBB7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x993628A05907c12B56b55Aa95Dd47EC46d9CDBB7/logo.png b/blockchains/ethereum/assets/0x993628A05907c12B56b55Aa95Dd47EC46d9CDBB7/logo.png new file mode 100644 index 00000000..326f7099 Binary files /dev/null and b/blockchains/ethereum/assets/0x993628A05907c12B56b55Aa95Dd47EC46d9CDBB7/logo.png differ diff --git a/blockchains/ethereum/assets/0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F/info.json b/blockchains/ethereum/assets/0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F/info.json new file mode 100644 index 00000000..8c846986 --- /dev/null +++ b/blockchains/ethereum/assets/0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F/info.json @@ -0,0 +1,56 @@ +{ + "name": "SingularityDAO", + "type": "ERC20", + "symbol": "SDAO", + "decimals": 18, + "website": "https://www.singularitydao.ai", + "description": "SingularityDAO is a decentralised Portfolio Management Protocol designed to enable anybody to safely and easily manage crypto assets, supported by superior risk management and analytics tools; smart money, on-chain. A non-custodial protocol built to foster a new ecosystem of Digital Asset Managers to offer automated trading strategies leveraging AI-enhanced data analytics services.", + "explorer": "https://etherscan.io/token/0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F", + "status": "active", + "id": "0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F", + "links": [ + { + "name": "x", + "url": "https://x.com/SingularityDao" + }, + { + "name": "telegram", + "url": "https://t.me/chatsight_bot?start=dmVyaWZ5OjotMTAwMTI4NzAxNjEzNw==" + }, + { + "name": "telegram_news", + "url": "https://t.me/sdaoann" + }, + { + "name": "discord", + "url": "https://discord.com/invite/singularitydao" + }, + { + "name": "github", + "url": "https://github.com/Singularity-DAO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/singularitydao" + }, + { + "name": "youtube", + "url": "https://youtube.com/@SingularityDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/singularitydao/" + }, + { + "name": "medium", + "url": "https://medium.com/singularitydao" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SingularityDAO/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F/logo.png b/blockchains/ethereum/assets/0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F/logo.png new file mode 100644 index 00000000..fa9315e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F/logo.png differ diff --git a/blockchains/ethereum/assets/0x994f0DffdbaE0BbF09b652D6f11A493fd33F42B9/info.json b/blockchains/ethereum/assets/0x994f0DffdbaE0BbF09b652D6f11A493fd33F42B9/info.json new file mode 100644 index 00000000..5bb3927e --- /dev/null +++ b/blockchains/ethereum/assets/0x994f0DffdbaE0BbF09b652D6f11A493fd33F42B9/info.json @@ -0,0 +1,11 @@ +{ + "name": "EagleCoin", + "symbol": "EAGLE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x994f0DffdbaE0BbF09b652D6f11A493fd33F42B9", + "status": "abandoned", + "id": "0x994f0DffdbaE0BbF09b652D6f11A493fd33F42B9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x994f0DffdbaE0BbF09b652D6f11A493fd33F42B9/logo.png b/blockchains/ethereum/assets/0x994f0DffdbaE0BbF09b652D6f11A493fd33F42B9/logo.png new file mode 100644 index 00000000..3bd81a09 Binary files /dev/null and b/blockchains/ethereum/assets/0x994f0DffdbaE0BbF09b652D6f11A493fd33F42B9/logo.png differ diff --git a/blockchains/ethereum/assets/0x995Ff3562692349e78001C9e37414919E65Ff04B/info.json b/blockchains/ethereum/assets/0x995Ff3562692349e78001C9e37414919E65Ff04B/info.json new file mode 100644 index 00000000..1e118526 --- /dev/null +++ b/blockchains/ethereum/assets/0x995Ff3562692349e78001C9e37414919E65Ff04B/info.json @@ -0,0 +1,11 @@ +{ + "name": "bitbeb", + "symbol": " BEB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x995Ff3562692349e78001C9e37414919E65Ff04B", + "status": "abandoned", + "id": "0x995Ff3562692349e78001C9e37414919E65Ff04B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x995Ff3562692349e78001C9e37414919E65Ff04B/logo.png b/blockchains/ethereum/assets/0x995Ff3562692349e78001C9e37414919E65Ff04B/logo.png new file mode 100644 index 00000000..221c6bb3 Binary files /dev/null and b/blockchains/ethereum/assets/0x995Ff3562692349e78001C9e37414919E65Ff04B/logo.png differ diff --git a/blockchains/ethereum/assets/0x996229D0c6a485c7F4B52E092EAa907cB2def5C6/info.json b/blockchains/ethereum/assets/0x996229D0c6a485c7F4B52E092EAa907cB2def5C6/info.json new file mode 100644 index 00000000..ddf7a9e5 --- /dev/null +++ b/blockchains/ethereum/assets/0x996229D0c6a485c7F4B52E092EAa907cB2def5C6/info.json @@ -0,0 +1,11 @@ +{ + "name": "BuckHathToken", + "symbol": "BHIG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.bhigtoken.com/", + "explorer": "https://etherscan.io/token/0x996229D0c6a485c7F4B52E092EAa907cB2def5C6", + "status": "abandoned", + "id": "0x996229D0c6a485c7F4B52E092EAa907cB2def5C6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x996229D0c6a485c7F4B52E092EAa907cB2def5C6/logo.png b/blockchains/ethereum/assets/0x996229D0c6a485c7F4B52E092EAa907cB2def5C6/logo.png new file mode 100644 index 00000000..efd9a256 Binary files /dev/null and b/blockchains/ethereum/assets/0x996229D0c6a485c7F4B52E092EAa907cB2def5C6/logo.png differ diff --git a/blockchains/ethereum/assets/0x9972A0F24194447E73a7e8b6CD26a52e02DDfAD5/info.json b/blockchains/ethereum/assets/0x9972A0F24194447E73a7e8b6CD26a52e02DDfAD5/info.json new file mode 100644 index 00000000..bfa73105 --- /dev/null +++ b/blockchains/ethereum/assets/0x9972A0F24194447E73a7e8b6CD26a52e02DDfAD5/info.json @@ -0,0 +1,11 @@ +{ + "name": "ThoreCash", + "symbol": "TCH", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://www.thorecash.com/", + "explorer": "https://etherscan.io/token/0x9972A0F24194447E73a7e8b6CD26a52e02DDfAD5", + "status": "abandoned", + "id": "0x9972A0F24194447E73a7e8b6CD26a52e02DDfAD5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9972A0F24194447E73a7e8b6CD26a52e02DDfAD5/logo.png b/blockchains/ethereum/assets/0x9972A0F24194447E73a7e8b6CD26a52e02DDfAD5/logo.png new file mode 100755 index 00000000..c40d35a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x9972A0F24194447E73a7e8b6CD26a52e02DDfAD5/logo.png differ diff --git a/blockchains/ethereum/assets/0x997DD3880C08d55B3551232Fb8f666975fDbBf58/info.json b/blockchains/ethereum/assets/0x997DD3880C08d55B3551232Fb8f666975fDbBf58/info.json new file mode 100644 index 00000000..df6d1a66 --- /dev/null +++ b/blockchains/ethereum/assets/0x997DD3880C08d55B3551232Fb8f666975fDbBf58/info.json @@ -0,0 +1,11 @@ +{ + "name": "PrivToken", + "symbol": "PRIV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x997DD3880C08d55B3551232Fb8f666975fDbBf58", + "status": "abandoned", + "id": "0x997DD3880C08d55B3551232Fb8f666975fDbBf58" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x997DD3880C08d55B3551232Fb8f666975fDbBf58/logo.png b/blockchains/ethereum/assets/0x997DD3880C08d55B3551232Fb8f666975fDbBf58/logo.png new file mode 100644 index 00000000..e53e5807 Binary files /dev/null and b/blockchains/ethereum/assets/0x997DD3880C08d55B3551232Fb8f666975fDbBf58/logo.png differ diff --git a/blockchains/ethereum/assets/0x998FFE1E43fAcffb941dc337dD0468d52bA5b48A/info.json b/blockchains/ethereum/assets/0x998FFE1E43fAcffb941dc337dD0468d52bA5b48A/info.json new file mode 100644 index 00000000..76f92db5 --- /dev/null +++ b/blockchains/ethereum/assets/0x998FFE1E43fAcffb941dc337dD0468d52bA5b48A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rupiah Token", + "symbol": "IDRT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "https://rupiahtoken.com", + "explorer": "https://etherscan.io/token/0x998FFE1E43fAcffb941dc337dD0468d52bA5b48A", + "status": "abandoned", + "id": "0x998FFE1E43fAcffb941dc337dD0468d52bA5b48A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x998FFE1E43fAcffb941dc337dD0468d52bA5b48A/logo.png b/blockchains/ethereum/assets/0x998FFE1E43fAcffb941dc337dD0468d52bA5b48A/logo.png new file mode 100644 index 00000000..a588d46b Binary files /dev/null and b/blockchains/ethereum/assets/0x998FFE1E43fAcffb941dc337dD0468d52bA5b48A/logo.png differ diff --git a/blockchains/ethereum/assets/0x998b3B82bC9dBA173990Be7afb772788B5aCB8Bd/info.json b/blockchains/ethereum/assets/0x998b3B82bC9dBA173990Be7afb772788B5aCB8Bd/info.json new file mode 100644 index 00000000..cd59fbec --- /dev/null +++ b/blockchains/ethereum/assets/0x998b3B82bC9dBA173990Be7afb772788B5aCB8Bd/info.json @@ -0,0 +1,11 @@ +{ + "name": "BANCA Token", + "symbol": "BANCA", + "type": "ERC20", + "decimals": 18, + "description": "Banca is a type of an investment bank community which uses AI and expert system to achieve the dynamics of Banca's eco-chain and the automatic management.", + "website": "https://www.banca.world/", + "explorer": "https://etherscan.io/token/0x998b3B82bC9dBA173990Be7afb772788B5aCB8Bd", + "status": "active", + "id": "0x998b3B82bC9dBA173990Be7afb772788B5aCB8Bd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x998b3B82bC9dBA173990Be7afb772788B5aCB8Bd/logo.png b/blockchains/ethereum/assets/0x998b3B82bC9dBA173990Be7afb772788B5aCB8Bd/logo.png new file mode 100644 index 00000000..f45a9fb5 Binary files /dev/null and b/blockchains/ethereum/assets/0x998b3B82bC9dBA173990Be7afb772788B5aCB8Bd/logo.png differ diff --git a/blockchains/ethereum/assets/0x998f02A9E343EF6E3E6f28700d5A20F839fD74E6/info.json b/blockchains/ethereum/assets/0x998f02A9E343EF6E3E6f28700d5A20F839fD74E6/info.json new file mode 100644 index 00000000..213cf09d --- /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 00000000..e09da245 Binary files /dev/null and b/blockchains/ethereum/assets/0x998f02A9E343EF6E3E6f28700d5A20F839fD74E6/logo.png differ diff --git a/blockchains/ethereum/assets/0x9992eC3cF6A55b00978cdDF2b27BC6882d88D1eC/info.json b/blockchains/ethereum/assets/0x9992eC3cF6A55b00978cdDF2b27BC6882d88D1eC/info.json new file mode 100644 index 00000000..20f89c0b --- /dev/null +++ b/blockchains/ethereum/assets/0x9992eC3cF6A55b00978cdDF2b27BC6882d88D1eC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Polymath", + "website": "https://polymath.network", + "description": "Polymath is creating a global platform for issuing and investing in securities tokens.", + "explorer": "https://etherscan.io/token/0x9992eC3cF6A55b00978cdDF2b27BC6882d88D1eC", + "type": "ERC20", + "symbol": "POLY", + "decimals": 18, + "status": "active", + "id": "0x9992eC3cF6A55b00978cdDF2b27BC6882d88D1eC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9992eC3cF6A55b00978cdDF2b27BC6882d88D1eC/logo.png b/blockchains/ethereum/assets/0x9992eC3cF6A55b00978cdDF2b27BC6882d88D1eC/logo.png new file mode 100644 index 00000000..9045c83d Binary files /dev/null and b/blockchains/ethereum/assets/0x9992eC3cF6A55b00978cdDF2b27BC6882d88D1eC/logo.png differ diff --git a/blockchains/ethereum/assets/0x9996a0b4d0D7ed1B7e41Ad08bDc4acb198e232a9/info.json b/blockchains/ethereum/assets/0x9996a0b4d0D7ed1B7e41Ad08bDc4acb198e232a9/info.json new file mode 100644 index 00000000..78a1cf10 --- /dev/null +++ b/blockchains/ethereum/assets/0x9996a0b4d0D7ed1B7e41Ad08bDc4acb198e232a9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Regium", + "symbol": "REGI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://regium.xyz", + "explorer": "https://etherscan.io/token/0x9996a0b4d0D7ed1B7e41Ad08bDc4acb198e232a9", + "status": "abandoned", + "id": "0x9996a0b4d0D7ed1B7e41Ad08bDc4acb198e232a9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9996a0b4d0D7ed1B7e41Ad08bDc4acb198e232a9/logo.png b/blockchains/ethereum/assets/0x9996a0b4d0D7ed1B7e41Ad08bDc4acb198e232a9/logo.png new file mode 100644 index 00000000..52650a58 Binary files /dev/null and b/blockchains/ethereum/assets/0x9996a0b4d0D7ed1B7e41Ad08bDc4acb198e232a9/logo.png differ diff --git a/blockchains/ethereum/assets/0x999967E2Ec8A74B7c8E9dB19E039d920B31d39D0/info.json b/blockchains/ethereum/assets/0x999967E2Ec8A74B7c8E9dB19E039d920B31d39D0/info.json new file mode 100644 index 00000000..8edce7c7 --- /dev/null +++ b/blockchains/ethereum/assets/0x999967E2Ec8A74B7c8E9dB19E039d920B31d39D0/info.json @@ -0,0 +1,11 @@ +{ + "name": "TieToken", + "symbol": "TIE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://tiesdb.com/", + "explorer": "https://etherscan.io/token/0x999967E2Ec8A74B7c8E9dB19E039d920B31d39D0", + "status": "abandoned", + "id": "0x999967E2Ec8A74B7c8E9dB19E039d920B31d39D0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x999967E2Ec8A74B7c8E9dB19E039d920B31d39D0/logo.png b/blockchains/ethereum/assets/0x999967E2Ec8A74B7c8E9dB19E039d920B31d39D0/logo.png new file mode 100644 index 00000000..ef605a2d Binary files /dev/null and b/blockchains/ethereum/assets/0x999967E2Ec8A74B7c8E9dB19E039d920B31d39D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x99CD4Ec3f88A45940936F469E4bB72A2A701EEB9/info.json b/blockchains/ethereum/assets/0x99CD4Ec3f88A45940936F469E4bB72A2A701EEB9/info.json new file mode 100644 index 00000000..e2689ba3 --- /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 00000000..180f8268 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 new file mode 100644 index 00000000..87226c79 --- /dev/null +++ b/blockchains/ethereum/assets/0x99D8a9C45b2ecA8864373A26D1459e3Dff1e17F3/info.json @@ -0,0 +1,28 @@ +{ + "name": "Magic Internet Money", + "website": "https://abracadabra.money/", + "description": "MIM is a stablecoin backed by interest bearing collateral", + "explorer": "https://etherscan.io/token/0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3", + "type": "ERC20", + "symbol": "MIM", + "decimals": 18, + "status": "active", + "id": "0x99D8a9C45b2ecA8864373A26D1459e3Dff1e17F3", + "tags": [ + "defi" + ], + "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/ethereum/assets/0x99D8a9C45b2ecA8864373A26D1459e3Dff1e17F3/logo.png b/blockchains/ethereum/assets/0x99D8a9C45b2ecA8864373A26D1459e3Dff1e17F3/logo.png new file mode 100644 index 00000000..41018132 Binary files /dev/null and b/blockchains/ethereum/assets/0x99D8a9C45b2ecA8864373A26D1459e3Dff1e17F3/logo.png differ diff --git a/blockchains/ethereum/assets/0x99EcF934F7BcC0a457cb65dF431C9B17Da58DA50/info.json b/blockchains/ethereum/assets/0x99EcF934F7BcC0a457cb65dF431C9B17Da58DA50/info.json new file mode 100644 index 00000000..540a9f3a --- /dev/null +++ b/blockchains/ethereum/assets/0x99EcF934F7BcC0a457cb65dF431C9B17Da58DA50/info.json @@ -0,0 +1,11 @@ +{ + "name": "DACC Token", + "symbol": "DACC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x99EcF934F7BcC0a457cb65dF431C9B17Da58DA50", + "status": "abandoned", + "id": "0x99EcF934F7BcC0a457cb65dF431C9B17Da58DA50" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x99EcF934F7BcC0a457cb65dF431C9B17Da58DA50/logo.png b/blockchains/ethereum/assets/0x99EcF934F7BcC0a457cb65dF431C9B17Da58DA50/logo.png new file mode 100644 index 00000000..d343fda0 Binary files /dev/null and b/blockchains/ethereum/assets/0x99EcF934F7BcC0a457cb65dF431C9B17Da58DA50/logo.png differ diff --git a/blockchains/ethereum/assets/0x99a3a5333b4Eb80192149F9eDd42d1D57AC591ee/info.json b/blockchains/ethereum/assets/0x99a3a5333b4Eb80192149F9eDd42d1D57AC591ee/info.json new file mode 100644 index 00000000..9f195096 --- /dev/null +++ b/blockchains/ethereum/assets/0x99a3a5333b4Eb80192149F9eDd42d1D57AC591ee/info.json @@ -0,0 +1,11 @@ +{ + "name": "COSS Exchange Liquidity Token", + "symbol": "CELT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x99a3a5333b4Eb80192149F9eDd42d1D57AC591ee", + "status": "abandoned", + "id": "0x99a3a5333b4Eb80192149F9eDd42d1D57AC591ee" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x99a3a5333b4Eb80192149F9eDd42d1D57AC591ee/logo.png b/blockchains/ethereum/assets/0x99a3a5333b4Eb80192149F9eDd42d1D57AC591ee/logo.png new file mode 100644 index 00000000..7a366bbd Binary files /dev/null and b/blockchains/ethereum/assets/0x99a3a5333b4Eb80192149F9eDd42d1D57AC591ee/logo.png differ diff --git a/blockchains/ethereum/assets/0x99aA107e55250a9fE52bB4b5541A59239EB6D974/info.json b/blockchains/ethereum/assets/0x99aA107e55250a9fE52bB4b5541A59239EB6D974/info.json new file mode 100644 index 00000000..07d8d580 --- /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 00000000..5fb20048 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 new file mode 100644 index 00000000..97d0e04d --- /dev/null +++ b/blockchains/ethereum/assets/0x99cFB8cBA9c821B4a343c6a1Fc630465C9708DF5/info.json @@ -0,0 +1,28 @@ +{ + "name": "Pepe Inu", + "symbol": "PEPEINU", + "type": "ERC20", + "decimals": 18, + "description": "Pepe Inu is tired of watching everyone play hot potato with the endless derivative PepeShibaPepeGirlCumGMElonKishuTurboAssFlokiMoon coins. The big ballers have had their day. It’s time for the most recognizable meme in the world to take his reign as king of memes.", + "website": "https://pepeinu.xyz/", + "explorer": "https://etherscan.io/token/0x99cfb8cba9c821b4a343c6a1fc630465c9708df5", + "status": "active", + "id": "0x99cFB8cBA9c821B4a343c6a1Fc630465C9708DF5", + "links": [ + { + "name": "x", + "url": "https://x.com/pepeinueth" + }, + { + "name": "telegram", + "url": "https://t.me/PepeInuETHPortal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepe-inu/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x99cFB8cBA9c821B4a343c6a1Fc630465C9708DF5/logo.png b/blockchains/ethereum/assets/0x99cFB8cBA9c821B4a343c6a1Fc630465C9708DF5/logo.png new file mode 100644 index 00000000..16117ff7 Binary files /dev/null and b/blockchains/ethereum/assets/0x99cFB8cBA9c821B4a343c6a1Fc630465C9708DF5/logo.png differ diff --git a/blockchains/ethereum/assets/0x99ea4dB9EE77ACD40B119BD1dC4E33e1C070b80d/info.json b/blockchains/ethereum/assets/0x99ea4dB9EE77ACD40B119BD1dC4E33e1C070b80d/info.json new file mode 100644 index 00000000..8bc56083 --- /dev/null +++ b/blockchains/ethereum/assets/0x99ea4dB9EE77ACD40B119BD1dC4E33e1C070b80d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Quantstamp Token", + "symbol": "QSP", + "type": "ERC20", + "decimals": 18, + "description": "Quantstamp’s mission is to secure the decentralized internet, and has protected over $45B in digital asset risk from hackers.", + "website": "https://quantstamp.com", + "explorer": "https://etherscan.io/token/0x99ea4dB9EE77ACD40B119BD1dC4E33e1C070b80d", + "status": "active", + "id": "0x99ea4dB9EE77ACD40B119BD1dC4E33e1C070b80d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x99ea4dB9EE77ACD40B119BD1dC4E33e1C070b80d/logo.png b/blockchains/ethereum/assets/0x99ea4dB9EE77ACD40B119BD1dC4E33e1C070b80d/logo.png new file mode 100644 index 00000000..420944be Binary files /dev/null and b/blockchains/ethereum/assets/0x99ea4dB9EE77ACD40B119BD1dC4E33e1C070b80d/logo.png differ diff --git a/blockchains/ethereum/assets/0x9A2681935C2775b7ABF0649ec5c306EEA7561930/info.json b/blockchains/ethereum/assets/0x9A2681935C2775b7ABF0649ec5c306EEA7561930/info.json new file mode 100644 index 00000000..9243792c --- /dev/null +++ b/blockchains/ethereum/assets/0x9A2681935C2775b7ABF0649ec5c306EEA7561930/info.json @@ -0,0 +1,11 @@ +{ + "name": "EasyOption.io Token", + "symbol": "EOPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9A2681935C2775b7ABF0649ec5c306EEA7561930", + "status": "abandoned", + "id": "0x9A2681935C2775b7ABF0649ec5c306EEA7561930" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9A2681935C2775b7ABF0649ec5c306EEA7561930/logo.png b/blockchains/ethereum/assets/0x9A2681935C2775b7ABF0649ec5c306EEA7561930/logo.png new file mode 100644 index 00000000..4e705e72 Binary files /dev/null and b/blockchains/ethereum/assets/0x9A2681935C2775b7ABF0649ec5c306EEA7561930/logo.png differ diff --git a/blockchains/ethereum/assets/0x9A3619499825fbAe63329Aa8bCb3f10CD5958E1c/info.json b/blockchains/ethereum/assets/0x9A3619499825fbAe63329Aa8bCb3f10CD5958E1c/info.json new file mode 100644 index 00000000..6883ef7a --- /dev/null +++ b/blockchains/ethereum/assets/0x9A3619499825fbAe63329Aa8bCb3f10CD5958E1c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jubilee Dollar", + "symbol": "JBD", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9A3619499825fbAe63329Aa8bCb3f10CD5958E1c", + "status": "abandoned", + "id": "0x9A3619499825fbAe63329Aa8bCb3f10CD5958E1c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9A3619499825fbAe63329Aa8bCb3f10CD5958E1c/logo.png b/blockchains/ethereum/assets/0x9A3619499825fbAe63329Aa8bCb3f10CD5958E1c/logo.png new file mode 100644 index 00000000..ceaa4590 Binary files /dev/null and b/blockchains/ethereum/assets/0x9A3619499825fbAe63329Aa8bCb3f10CD5958E1c/logo.png differ diff --git a/blockchains/ethereum/assets/0x9A38B9c36Ad9b959120B63deF830566F31d08752/info.json b/blockchains/ethereum/assets/0x9A38B9c36Ad9b959120B63deF830566F31d08752/info.json new file mode 100644 index 00000000..4807d6fe --- /dev/null +++ b/blockchains/ethereum/assets/0x9A38B9c36Ad9b959120B63deF830566F31d08752/info.json @@ -0,0 +1,11 @@ +{ + "name": "BDA", + "symbol": "BDA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9A38B9c36Ad9b959120B63deF830566F31d08752", + "status": "abandoned", + "id": "0x9A38B9c36Ad9b959120B63deF830566F31d08752" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9A38B9c36Ad9b959120B63deF830566F31d08752/logo.png b/blockchains/ethereum/assets/0x9A38B9c36Ad9b959120B63deF830566F31d08752/logo.png new file mode 100644 index 00000000..efa1fe72 Binary files /dev/null and b/blockchains/ethereum/assets/0x9A38B9c36Ad9b959120B63deF830566F31d08752/logo.png differ diff --git a/blockchains/ethereum/assets/0x9A48BD0EC040ea4f1D3147C025cd4076A2e71e3e/info.json b/blockchains/ethereum/assets/0x9A48BD0EC040ea4f1D3147C025cd4076A2e71e3e/info.json new file mode 100644 index 00000000..dddb8751 --- /dev/null +++ b/blockchains/ethereum/assets/0x9A48BD0EC040ea4f1D3147C025cd4076A2e71e3e/info.json @@ -0,0 +1,21 @@ +{ + "name": "PieDAO USD++", + "website": "https://usd.piedao.org", + "description": "USD++ is a weighed allocation between the different representations of USD on Ethereum. USD, for DeFi, diversified.", + "explorer": "https://etherscan.io/token/0x9A48BD0EC040ea4f1D3147C025cd4076A2e71e3e", + "type": "ERC20", + "symbol": "USD++", + "decimals": 18, + "status": "active", + "id": "0x9A48BD0EC040ea4f1D3147C025cd4076A2e71e3e", + "links": [ + { + "name": "github", + "url": "https://github.com/pie-dao/pie-smart-pools" + }, + { + "name": "x", + "url": "https://x.com/PieDAO_DeFi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9A48BD0EC040ea4f1D3147C025cd4076A2e71e3e/logo.png b/blockchains/ethereum/assets/0x9A48BD0EC040ea4f1D3147C025cd4076A2e71e3e/logo.png new file mode 100644 index 00000000..4247a16e Binary files /dev/null and b/blockchains/ethereum/assets/0x9A48BD0EC040ea4f1D3147C025cd4076A2e71e3e/logo.png differ diff --git a/blockchains/ethereum/assets/0x9AA9F330aB322e8a6F044C46a109B5910fa373CE/info.json b/blockchains/ethereum/assets/0x9AA9F330aB322e8a6F044C46a109B5910fa373CE/info.json new file mode 100644 index 00000000..cd7ef88b --- /dev/null +++ b/blockchains/ethereum/assets/0x9AA9F330aB322e8a6F044C46a109B5910fa373CE/info.json @@ -0,0 +1,11 @@ +{ + "name": "IgnisLite", + "symbol": "IgnisLite", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9AA9F330aB322e8a6F044C46a109B5910fa373CE", + "status": "abandoned", + "id": "0x9AA9F330aB322e8a6F044C46a109B5910fa373CE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9AA9F330aB322e8a6F044C46a109B5910fa373CE/logo.png b/blockchains/ethereum/assets/0x9AA9F330aB322e8a6F044C46a109B5910fa373CE/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0x9AA9F330aB322e8a6F044C46a109B5910fa373CE/logo.png differ diff --git a/blockchains/ethereum/assets/0x9AAb071B4129B083B01cB5A0Cb513Ce7ecA26fa5/info.json b/blockchains/ethereum/assets/0x9AAb071B4129B083B01cB5A0Cb513Ce7ecA26fa5/info.json new file mode 100644 index 00000000..62f5078e --- /dev/null +++ b/blockchains/ethereum/assets/0x9AAb071B4129B083B01cB5A0Cb513Ce7ecA26fa5/info.json @@ -0,0 +1,11 @@ +{ + "name": "HuntToken", + "symbol": "HUNT", + "type": "ERC20", + "decimals": 18, + "description": "HuntToken (HUNT) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://token.hunt.town", + "explorer": "https://etherscan.io/token/0x9AAb071B4129B083B01cB5A0Cb513Ce7ecA26fa5", + "status": "active", + "id": "0x9AAb071B4129B083B01cB5A0Cb513Ce7ecA26fa5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9AAb071B4129B083B01cB5A0Cb513Ce7ecA26fa5/logo.png b/blockchains/ethereum/assets/0x9AAb071B4129B083B01cB5A0Cb513Ce7ecA26fa5/logo.png new file mode 100644 index 00000000..2a7bd7fe Binary files /dev/null and b/blockchains/ethereum/assets/0x9AAb071B4129B083B01cB5A0Cb513Ce7ecA26fa5/logo.png differ diff --git a/blockchains/ethereum/assets/0x9AB7bb7FdC60f4357ECFef43986818A2A3569c62/info.json b/blockchains/ethereum/assets/0x9AB7bb7FdC60f4357ECFef43986818A2A3569c62/info.json new file mode 100644 index 00000000..2e22a86c --- /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 00000000..46f20b0b Binary files /dev/null and b/blockchains/ethereum/assets/0x9AB7bb7FdC60f4357ECFef43986818A2A3569c62/logo.png differ diff --git a/blockchains/ethereum/assets/0x9AD685A3eAa6b0a1Ea601f48b7797A12011fDeb0/info.json b/blockchains/ethereum/assets/0x9AD685A3eAa6b0a1Ea601f48b7797A12011fDeb0/info.json new file mode 100644 index 00000000..3b66867e --- /dev/null +++ b/blockchains/ethereum/assets/0x9AD685A3eAa6b0a1Ea601f48b7797A12011fDeb0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Traders Token", + "symbol": "TRDS", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "https://traderstoken.org/", + "explorer": "https://etherscan.io/token/0x9AD685A3eAa6b0a1Ea601f48b7797A12011fDeb0", + "status": "abandoned", + "id": "0x9AD685A3eAa6b0a1Ea601f48b7797A12011fDeb0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9AD685A3eAa6b0a1Ea601f48b7797A12011fDeb0/logo.png b/blockchains/ethereum/assets/0x9AD685A3eAa6b0a1Ea601f48b7797A12011fDeb0/logo.png new file mode 100644 index 00000000..d0311c36 Binary files /dev/null and b/blockchains/ethereum/assets/0x9AD685A3eAa6b0a1Ea601f48b7797A12011fDeb0/logo.png differ diff --git a/blockchains/ethereum/assets/0x9AF4f26941677C706cfEcf6D3379FF01bB85D5Ab/info.json b/blockchains/ethereum/assets/0x9AF4f26941677C706cfEcf6D3379FF01bB85D5Ab/info.json new file mode 100644 index 00000000..fd77a465 --- /dev/null +++ b/blockchains/ethereum/assets/0x9AF4f26941677C706cfEcf6D3379FF01bB85D5Ab/info.json @@ -0,0 +1,11 @@ +{ + "name": "DomRaiderToken", + "symbol": "DRT", + "type": "ERC20", + "decimals": 8, + "description": "DomRaider network is an open-source blockchain dedicated to the decentralization of auctions in real time. It will be transparent, reliable, adaptable and interoperable, without compromising on speed.", + "website": "https://www.domraider.io/en/", + "explorer": "https://etherscan.io/token/0x9AF4f26941677C706cfEcf6D3379FF01bB85D5Ab", + "status": "active", + "id": "0x9AF4f26941677C706cfEcf6D3379FF01bB85D5Ab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9AF4f26941677C706cfEcf6D3379FF01bB85D5Ab/logo.png b/blockchains/ethereum/assets/0x9AF4f26941677C706cfEcf6D3379FF01bB85D5Ab/logo.png new file mode 100755 index 00000000..b7245027 Binary files /dev/null and b/blockchains/ethereum/assets/0x9AF4f26941677C706cfEcf6D3379FF01bB85D5Ab/logo.png differ diff --git a/blockchains/ethereum/assets/0x9AF839687F6C94542ac5ece2e317dAAE355493A1/info.json b/blockchains/ethereum/assets/0x9AF839687F6C94542ac5ece2e317dAAE355493A1/info.json new file mode 100644 index 00000000..e1ad46e6 --- /dev/null +++ b/blockchains/ethereum/assets/0x9AF839687F6C94542ac5ece2e317dAAE355493A1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hydro Protocol", + "website": "https://hydroprotocol.io", + "description": "Hydro empowers DeFi developers to create dynamic marketplaces for decentralized assets.", + "explorer": "https://etherscan.io/token/0x9AF839687F6C94542ac5ece2e317dAAE355493A1", + "type": "ERC20", + "symbol": "HOT", + "decimals": 18, + "status": "active", + "id": "0x9AF839687F6C94542ac5ece2e317dAAE355493A1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9AF839687F6C94542ac5ece2e317dAAE355493A1/logo.png b/blockchains/ethereum/assets/0x9AF839687F6C94542ac5ece2e317dAAE355493A1/logo.png new file mode 100644 index 00000000..04f45e7e Binary files /dev/null and b/blockchains/ethereum/assets/0x9AF839687F6C94542ac5ece2e317dAAE355493A1/logo.png differ diff --git a/blockchains/ethereum/assets/0x9Aa7d119bdf77F65A7284581A211D8c44ffb04b4/info.json b/blockchains/ethereum/assets/0x9Aa7d119bdf77F65A7284581A211D8c44ffb04b4/info.json new file mode 100644 index 00000000..15181556 --- /dev/null +++ b/blockchains/ethereum/assets/0x9Aa7d119bdf77F65A7284581A211D8c44ffb04b4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Girl Coin", + "symbol": "GIRL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9Aa7d119bdf77F65A7284581A211D8c44ffb04b4", + "status": "abandoned", + "id": "0x9Aa7d119bdf77F65A7284581A211D8c44ffb04b4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9Aa7d119bdf77F65A7284581A211D8c44ffb04b4/logo.png b/blockchains/ethereum/assets/0x9Aa7d119bdf77F65A7284581A211D8c44ffb04b4/logo.png new file mode 100644 index 00000000..bf510b73 Binary files /dev/null and b/blockchains/ethereum/assets/0x9Aa7d119bdf77F65A7284581A211D8c44ffb04b4/logo.png differ diff --git a/blockchains/ethereum/assets/0x9Af5A20AaC8D83230ba68542Ba29d132d50cbe08/info.json b/blockchains/ethereum/assets/0x9Af5A20AaC8D83230ba68542Ba29d132d50cbe08/info.json new file mode 100644 index 00000000..e8877543 --- /dev/null +++ b/blockchains/ethereum/assets/0x9Af5A20AaC8D83230ba68542Ba29d132d50cbe08/info.json @@ -0,0 +1,11 @@ +{ + "name": "Marsan Exchange Token", + "type": "ERC20", + "symbol": "MRS", + "decimals": 18, + "website": "https://marsanexchange.com/", + "description": "MRS, Marsan Exchange, aims to become the leading Canadian Cryptoassets exchange.The initial product is MRS Terminal, a multi-platform crypto trading desk.", + "explorer": "https://etherscan.io/token/0x9Af5A20AaC8D83230ba68542Ba29d132d50cbe08", + "status": "active", + "id": "0x9Af5A20AaC8D83230ba68542Ba29d132d50cbe08" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9Af5A20AaC8D83230ba68542Ba29d132d50cbe08/logo.png b/blockchains/ethereum/assets/0x9Af5A20AaC8D83230ba68542Ba29d132d50cbe08/logo.png new file mode 100644 index 00000000..6c0341ed Binary files /dev/null and b/blockchains/ethereum/assets/0x9Af5A20AaC8D83230ba68542Ba29d132d50cbe08/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B024630da7052Dd5F209BFAa1b167f410d87BD4/info.json b/blockchains/ethereum/assets/0x9B024630da7052Dd5F209BFAa1b167f410d87BD4/info.json new file mode 100644 index 00000000..a666944f --- /dev/null +++ b/blockchains/ethereum/assets/0x9B024630da7052Dd5F209BFAa1b167f410d87BD4/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-18/30M78", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9B024630da7052Dd5F209BFAa1b167f410d87BD4", + "status": "abandoned", + "id": "0x9B024630da7052Dd5F209BFAa1b167f410d87BD4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B024630da7052Dd5F209BFAa1b167f410d87BD4/logo.png b/blockchains/ethereum/assets/0x9B024630da7052Dd5F209BFAa1b167f410d87BD4/logo.png new file mode 100644 index 00000000..7c9182a3 Binary files /dev/null and b/blockchains/ethereum/assets/0x9B024630da7052Dd5F209BFAa1b167f410d87BD4/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7/info.json b/blockchains/ethereum/assets/0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7/info.json new file mode 100755 index 00000000..6decffa6 --- /dev/null +++ b/blockchains/ethereum/assets/0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shopping.io", + "website": "https://shopping.io", + "description": "Order from major hubs of commerce such as Amazon, Walmart, and eBay using your favorite cryptocurrency.", + "explorer": "https://etherscan.io/token/0x9b02dd390a603add5c07f9fd9175b7dabe8d63b7", + "type": "ERC20", + "symbol": "SPI", + "decimals": 18, + "status": "active", + "id": "0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7", + "links": [ + { + "name": "x", + "url": "https://x.com/Shoppin.io" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/F8pi_g-SvCtqaLq7hOr2yw" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7/logo.png b/blockchains/ethereum/assets/0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7/logo.png new file mode 100755 index 00000000..d216a8ee Binary files /dev/null and b/blockchains/ethereum/assets/0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B02fcEbe7dc5E4653c56F8a4901e522dEf2f63a/info.json b/blockchains/ethereum/assets/0x9B02fcEbe7dc5E4653c56F8a4901e522dEf2f63a/info.json new file mode 100644 index 00000000..b99576f5 --- /dev/null +++ b/blockchains/ethereum/assets/0x9B02fcEbe7dc5E4653c56F8a4901e522dEf2f63a/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-18/30M18", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9B02fcEbe7dc5E4653c56F8a4901e522dEf2f63a", + "status": "abandoned", + "id": "0x9B02fcEbe7dc5E4653c56F8a4901e522dEf2f63a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B02fcEbe7dc5E4653c56F8a4901e522dEf2f63a/logo.png b/blockchains/ethereum/assets/0x9B02fcEbe7dc5E4653c56F8a4901e522dEf2f63a/logo.png new file mode 100644 index 00000000..2b7bc59a Binary files /dev/null and b/blockchains/ethereum/assets/0x9B02fcEbe7dc5E4653c56F8a4901e522dEf2f63a/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B11EFcAAA1890f6eE52C6bB7CF8153aC5d74139/info.json b/blockchains/ethereum/assets/0x9B11EFcAAA1890f6eE52C6bB7CF8153aC5d74139/info.json new file mode 100644 index 00000000..84feb0e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x9B11EFcAAA1890f6eE52C6bB7CF8153aC5d74139/info.json @@ -0,0 +1,11 @@ +{ + "name": "Attention Token of Media", + "symbol": "ATM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://atmchain.io/en.html", + "explorer": "https://etherscan.io/token/0x9B11EFcAAA1890f6eE52C6bB7CF8153aC5d74139", + "status": "abandoned", + "id": "0x9B11EFcAAA1890f6eE52C6bB7CF8153aC5d74139" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B11EFcAAA1890f6eE52C6bB7CF8153aC5d74139/logo.png b/blockchains/ethereum/assets/0x9B11EFcAAA1890f6eE52C6bB7CF8153aC5d74139/logo.png new file mode 100755 index 00000000..9ae8bc3d Binary files /dev/null and b/blockchains/ethereum/assets/0x9B11EFcAAA1890f6eE52C6bB7CF8153aC5d74139/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B11b1B271A224A271619f3419B1b080fdeC5B4A/info.json b/blockchains/ethereum/assets/0x9B11b1B271A224A271619f3419B1b080fdeC5B4A/info.json new file mode 100644 index 00000000..b86b1da6 --- /dev/null +++ b/blockchains/ethereum/assets/0x9B11b1B271A224A271619f3419B1b080fdeC5B4A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bilibit", + "symbol": "BLB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9B11b1B271A224A271619f3419B1b080fdeC5B4A", + "status": "abandoned", + "id": "0x9B11b1B271A224A271619f3419B1b080fdeC5B4A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B11b1B271A224A271619f3419B1b080fdeC5B4A/logo.png b/blockchains/ethereum/assets/0x9B11b1B271A224A271619f3419B1b080fdeC5B4A/logo.png new file mode 100755 index 00000000..99b33f5a Binary files /dev/null and b/blockchains/ethereum/assets/0x9B11b1B271A224A271619f3419B1b080fdeC5B4A/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B1E1FC958B83e801d1342F9f9BA7dA3A55bA1eF/info.json b/blockchains/ethereum/assets/0x9B1E1FC958B83e801d1342F9f9BA7dA3A55bA1eF/info.json new file mode 100644 index 00000000..e47768a5 --- /dev/null +++ b/blockchains/ethereum/assets/0x9B1E1FC958B83e801d1342F9f9BA7dA3A55bA1eF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tronipay", + "symbol": "TRP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.tronipaycard.com", + "explorer": "https://etherscan.io/token/0x9B1E1FC958B83e801d1342F9f9BA7dA3A55bA1eF", + "status": "abandoned", + "id": "0x9B1E1FC958B83e801d1342F9f9BA7dA3A55bA1eF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B1E1FC958B83e801d1342F9f9BA7dA3A55bA1eF/logo.png b/blockchains/ethereum/assets/0x9B1E1FC958B83e801d1342F9f9BA7dA3A55bA1eF/logo.png new file mode 100644 index 00000000..abe83f70 Binary files /dev/null and b/blockchains/ethereum/assets/0x9B1E1FC958B83e801d1342F9f9BA7dA3A55bA1eF/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B20DaBcec77f6289113E61893F7BEeFAEB1990a/info.json b/blockchains/ethereum/assets/0x9B20DaBcec77f6289113E61893F7BEeFAEB1990a/info.json new file mode 100644 index 00000000..f1c839b3 --- /dev/null +++ b/blockchains/ethereum/assets/0x9B20DaBcec77f6289113E61893F7BEeFAEB1990a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fair Token", + "symbol": "FAIR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://fair.game/#/", + "explorer": "https://etherscan.io/token/0x9B20DaBcec77f6289113E61893F7BEeFAEB1990a", + "status": "active", + "id": "0x9B20DaBcec77f6289113E61893F7BEeFAEB1990a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B20DaBcec77f6289113E61893F7BEeFAEB1990a/logo.png b/blockchains/ethereum/assets/0x9B20DaBcec77f6289113E61893F7BEeFAEB1990a/logo.png new file mode 100644 index 00000000..222790ed Binary files /dev/null and b/blockchains/ethereum/assets/0x9B20DaBcec77f6289113E61893F7BEeFAEB1990a/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B39A0B97319a9bd5fed217c1dB7b030453bac91/info.json b/blockchains/ethereum/assets/0x9B39A0B97319a9bd5fed217c1dB7b030453bac91/info.json new file mode 100644 index 00000000..49179b7a --- /dev/null +++ b/blockchains/ethereum/assets/0x9B39A0B97319a9bd5fed217c1dB7b030453bac91/info.json @@ -0,0 +1,11 @@ +{ + "name": "TigerCash", + "symbol": "TCH", + "type": "ERC20", + "decimals": 18, + "description": "Trustable One-Stop Crypto-Currency Trading Platform.", + "website": "https://www.cointiger.com/en-us/#/index", + "explorer": "https://etherscan.io/token/0x9B39A0B97319a9bd5fed217c1dB7b030453bac91", + "status": "active", + "id": "0x9B39A0B97319a9bd5fed217c1dB7b030453bac91" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B39A0B97319a9bd5fed217c1dB7b030453bac91/logo.png b/blockchains/ethereum/assets/0x9B39A0B97319a9bd5fed217c1dB7b030453bac91/logo.png new file mode 100644 index 00000000..6f66d9ed Binary files /dev/null and b/blockchains/ethereum/assets/0x9B39A0B97319a9bd5fed217c1dB7b030453bac91/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/info.json b/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/info.json new file mode 100644 index 00000000..403f23f9 --- /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 00000000..1035dc9a Binary files /dev/null and b/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B3a0aB8a2A1cfED0e1edEc1745077B7C3838AE4/info.json b/blockchains/ethereum/assets/0x9B3a0aB8a2A1cfED0e1edEc1745077B7C3838AE4/info.json new file mode 100644 index 00000000..3534f6c8 --- /dev/null +++ b/blockchains/ethereum/assets/0x9B3a0aB8a2A1cfED0e1edEc1745077B7C3838AE4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Black Sun Token", + "symbol": "BST", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9B3a0aB8a2A1cfED0e1edEc1745077B7C3838AE4", + "status": "abandoned", + "id": "0x9B3a0aB8a2A1cfED0e1edEc1745077B7C3838AE4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B3a0aB8a2A1cfED0e1edEc1745077B7C3838AE4/logo.png b/blockchains/ethereum/assets/0x9B3a0aB8a2A1cfED0e1edEc1745077B7C3838AE4/logo.png new file mode 100644 index 00000000..e3ffb0a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x9B3a0aB8a2A1cfED0e1edEc1745077B7C3838AE4/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B62513c8a27290CF6A7A9e29386e600245EA819/info.json b/blockchains/ethereum/assets/0x9B62513c8a27290CF6A7A9e29386e600245EA819/info.json new file mode 100644 index 00000000..ae22971a --- /dev/null +++ b/blockchains/ethereum/assets/0x9B62513c8a27290CF6A7A9e29386e600245EA819/info.json @@ -0,0 +1,11 @@ +{ + "name": "Contents Protocol Token", + "symbol": "CPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9B62513c8a27290CF6A7A9e29386e600245EA819", + "status": "abandoned", + "id": "0x9B62513c8a27290CF6A7A9e29386e600245EA819" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B62513c8a27290CF6A7A9e29386e600245EA819/logo.png b/blockchains/ethereum/assets/0x9B62513c8a27290CF6A7A9e29386e600245EA819/logo.png new file mode 100644 index 00000000..476acbc1 Binary files /dev/null and b/blockchains/ethereum/assets/0x9B62513c8a27290CF6A7A9e29386e600245EA819/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B70740e708a083C6fF38Df52297020f5DfAa5EE/info.json b/blockchains/ethereum/assets/0x9B70740e708a083C6fF38Df52297020f5DfAa5EE/info.json new file mode 100644 index 00000000..96ad47a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x9B70740e708a083C6fF38Df52297020f5DfAa5EE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Daneel", + "symbol": "DAN", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "https://daneel.io/", + "explorer": "https://etherscan.io/token/0x9B70740e708a083C6fF38Df52297020f5DfAa5EE", + "status": "abandoned", + "id": "0x9B70740e708a083C6fF38Df52297020f5DfAa5EE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B70740e708a083C6fF38Df52297020f5DfAa5EE/logo.png b/blockchains/ethereum/assets/0x9B70740e708a083C6fF38Df52297020f5DfAa5EE/logo.png new file mode 100644 index 00000000..cb2ece8a Binary files /dev/null and b/blockchains/ethereum/assets/0x9B70740e708a083C6fF38Df52297020f5DfAa5EE/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B85babc0cc89899cCd47e9226A0b1FaE577B19E/info.json b/blockchains/ethereum/assets/0x9B85babc0cc89899cCd47e9226A0b1FaE577B19E/info.json new file mode 100644 index 00000000..0affef4f --- /dev/null +++ b/blockchains/ethereum/assets/0x9B85babc0cc89899cCd47e9226A0b1FaE577B19E/info.json @@ -0,0 +1,25 @@ +{ + "name": "PPBToken", + "website": "https://ppbank.eth.link", + "description": "A stablecoin to bank the unbanked", + "explorer": "https://etherscan.io/token/0x9B85babc0cc89899cCd47e9226A0b1FaE577B19E", + "type": "ERC20", + "symbol": "PPB", + "decimals": 18, + "status": "active", + "id": "0x9B85babc0cc89899cCd47e9226A0b1FaE577B19E", + "links": [ + { + "name": "x", + "url": "https://x.com/PPBank_Official" + }, + { + "name": "telegram", + "url": "https://t.me/PPBcommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/EwpWyGu" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B85babc0cc89899cCd47e9226A0b1FaE577B19E/logo.png b/blockchains/ethereum/assets/0x9B85babc0cc89899cCd47e9226A0b1FaE577B19E/logo.png new file mode 100644 index 00000000..46b5df07 Binary files /dev/null and b/blockchains/ethereum/assets/0x9B85babc0cc89899cCd47e9226A0b1FaE577B19E/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B8D5f3402F74C7a61d9f09c32D3cA07b45c1466/info.json b/blockchains/ethereum/assets/0x9B8D5f3402F74C7a61d9f09c32D3cA07b45c1466/info.json new file mode 100644 index 00000000..759860cc --- /dev/null +++ b/blockchains/ethereum/assets/0x9B8D5f3402F74C7a61d9f09c32D3cA07b45c1466/info.json @@ -0,0 +1,11 @@ +{ + "name": "GimmerToken", + "symbol": "GMR", + "type": "ERC20", + "decimals": 18, + "description": "Gimmer offers easy-to-use advanced algorithmic trading bots that require no programming skills, no previous trading experience and no in-depth knowledge of cryptocurrencies.", + "website": "https://gimmer.net/", + "explorer": "https://etherscan.io/token/0x9B8D5f3402F74C7a61d9f09c32D3cA07b45c1466", + "status": "active", + "id": "0x9B8D5f3402F74C7a61d9f09c32D3cA07b45c1466" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B8D5f3402F74C7a61d9f09c32D3cA07b45c1466/logo.png b/blockchains/ethereum/assets/0x9B8D5f3402F74C7a61d9f09c32D3cA07b45c1466/logo.png new file mode 100644 index 00000000..ac36a46f Binary files /dev/null and b/blockchains/ethereum/assets/0x9B8D5f3402F74C7a61d9f09c32D3cA07b45c1466/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B9087756eCa997C5D595C840263001c9a26646D/info.json b/blockchains/ethereum/assets/0x9B9087756eCa997C5D595C840263001c9a26646D/info.json new file mode 100644 index 00000000..bafd83ef --- /dev/null +++ b/blockchains/ethereum/assets/0x9B9087756eCa997C5D595C840263001c9a26646D/info.json @@ -0,0 +1,11 @@ +{ + "name": "DOGEFI Token", + "website": "https://dogefi.army", + "description": "Utility token to increase adoption of cryptocurrency.", + "explorer": "https://etherscan.io/token/0x9B9087756eCa997C5D595C840263001c9a26646D", + "type": "ERC20", + "symbol": "DOGEFI", + "decimals": 18, + "status": "active", + "id": "0x9B9087756eCa997C5D595C840263001c9a26646D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B9087756eCa997C5D595C840263001c9a26646D/logo.png b/blockchains/ethereum/assets/0x9B9087756eCa997C5D595C840263001c9a26646D/logo.png new file mode 100644 index 00000000..c1d761bc Binary files /dev/null and b/blockchains/ethereum/assets/0x9B9087756eCa997C5D595C840263001c9a26646D/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B9647431632AF44be02ddd22477Ed94d14AacAa/info.json b/blockchains/ethereum/assets/0x9B9647431632AF44be02ddd22477Ed94d14AacAa/info.json new file mode 100644 index 00000000..30ac31d4 --- /dev/null +++ b/blockchains/ethereum/assets/0x9B9647431632AF44be02ddd22477Ed94d14AacAa/info.json @@ -0,0 +1,32 @@ +{ + "name": "KOK Coin", + "type": "ERC20", + "symbol": "KOK", + "decimals": 18, + "website": "https://kok-chain.io/", + "description": "OK is a next-generation digital content platform that combines AI and blockchain, the core of Industry 4.0.", + "explorer": "https://etherscan.io/token/0x9b9647431632af44be02ddd22477ed94d14aacaa", + "status": "active", + "id": "0x9B9647431632AF44be02ddd22477Ed94d14AacAa", + "links": [ + { + "name": "x", + "url": "https://x.com/KOK_CHAIN" + }, + { + "name": "facebook", + "url": "https://facebook.com/KOKFOUNDATION/" + }, + { + "name": "telegram", + "url": "https://t.me/kokworld" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/keystone-of-opportunity-knowledge/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B9647431632AF44be02ddd22477Ed94d14AacAa/logo.png b/blockchains/ethereum/assets/0x9B9647431632AF44be02ddd22477Ed94d14AacAa/logo.png new file mode 100644 index 00000000..82f4e57e Binary files /dev/null and b/blockchains/ethereum/assets/0x9B9647431632AF44be02ddd22477Ed94d14AacAa/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B99CcA871Be05119B2012fd4474731dd653FEBe/info.json b/blockchains/ethereum/assets/0x9B99CcA871Be05119B2012fd4474731dd653FEBe/info.json new file mode 100644 index 00000000..e5f64bad --- /dev/null +++ b/blockchains/ethereum/assets/0x9B99CcA871Be05119B2012fd4474731dd653FEBe/info.json @@ -0,0 +1,25 @@ +{ + "name": "Antimatter.Finance Governance Token", + "website": "https://antimatter.finance/", + "description": "AntiMatter is a lightweight on-chain DeFi perpetual derivative protocol based on a polarized token model.", + "explorer": "https://etherscan.io/token/0x9B99CcA871Be05119B2012fd4474731dd653FEBe", + "type": "ERC20", + "symbol": "MATTER", + "decimals": 18, + "status": "active", + "id": "0x9B99CcA871Be05119B2012fd4474731dd653FEBe", + "links": [ + { + "name": "x", + "url": "https://x.com/antimatterdefi" + }, + { + "name": "telegram", + "url": "https://t.me/antimatterchat" + }, + { + "name": "github", + "url": "https://github.com/antimatter-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B99CcA871Be05119B2012fd4474731dd653FEBe/logo.png b/blockchains/ethereum/assets/0x9B99CcA871Be05119B2012fd4474731dd653FEBe/logo.png new file mode 100644 index 00000000..b125cf11 Binary files /dev/null and b/blockchains/ethereum/assets/0x9B99CcA871Be05119B2012fd4474731dd653FEBe/logo.png differ diff --git a/blockchains/ethereum/assets/0x9BB6fd000109E24Eb38B0Deb806382fF9247E478/info.json b/blockchains/ethereum/assets/0x9BB6fd000109E24Eb38B0Deb806382fF9247E478/info.json new file mode 100644 index 00000000..6da501dd --- /dev/null +++ b/blockchains/ethereum/assets/0x9BB6fd000109E24Eb38B0Deb806382fF9247E478/info.json @@ -0,0 +1,11 @@ +{ + "name": "hex.bet", + "symbol": "HXB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9BB6fd000109E24Eb38B0Deb806382fF9247E478", + "status": "abandoned", + "id": "0x9BB6fd000109E24Eb38B0Deb806382fF9247E478" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9BB6fd000109E24Eb38B0Deb806382fF9247E478/logo.png b/blockchains/ethereum/assets/0x9BB6fd000109E24Eb38B0Deb806382fF9247E478/logo.png new file mode 100644 index 00000000..c4897f5d Binary files /dev/null and b/blockchains/ethereum/assets/0x9BB6fd000109E24Eb38B0Deb806382fF9247E478/logo.png differ diff --git a/blockchains/ethereum/assets/0x9BE89D2a4cd102D8Fecc6BF9dA793be995C22541/info.json b/blockchains/ethereum/assets/0x9BE89D2a4cd102D8Fecc6BF9dA793be995C22541/info.json new file mode 100644 index 00000000..f97f37d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x9BE89D2a4cd102D8Fecc6BF9dA793be995C22541/info.json @@ -0,0 +1,12 @@ +{ + "name": "Binance Wrapped BTC", + "website": "https://binance.org", + "description": "BBTC tokens are ERC20 tokens on the Ethereum network created via the Binance Token Canal program, where the price is pegged to BTC at a rate of 1 BBTC = 1 BTC.", + "explorer": "https://etherscan.io/token/0x9be89d2a4cd102d8fecc6bf9da793be995c22541", + "research": "https://research.binance.com/en/projects/bitcoin", + "type": "ERC20", + "symbol": "BBTC", + "decimals": 8, + "status": "active", + "id": "0x9BE89D2a4cd102D8Fecc6BF9dA793be995C22541" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9BE89D2a4cd102D8Fecc6BF9dA793be995C22541/logo.png b/blockchains/ethereum/assets/0x9BE89D2a4cd102D8Fecc6BF9dA793be995C22541/logo.png new file mode 100644 index 00000000..f26deab0 Binary files /dev/null and b/blockchains/ethereum/assets/0x9BE89D2a4cd102D8Fecc6BF9dA793be995C22541/logo.png differ diff --git a/blockchains/ethereum/assets/0x9BF4b9b7A871fa7250df994bD704a9788502D2E0/info.json b/blockchains/ethereum/assets/0x9BF4b9b7A871fa7250df994bD704a9788502D2E0/info.json new file mode 100644 index 00000000..cb1e35a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x9BF4b9b7A871fa7250df994bD704a9788502D2E0/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C572386", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9BF4b9b7A871fa7250df994bD704a9788502D2E0", + "status": "abandoned", + "id": "0x9BF4b9b7A871fa7250df994bD704a9788502D2E0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9BF4b9b7A871fa7250df994bD704a9788502D2E0/logo.png b/blockchains/ethereum/assets/0x9BF4b9b7A871fa7250df994bD704a9788502D2E0/logo.png new file mode 100644 index 00000000..852731a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x9BF4b9b7A871fa7250df994bD704a9788502D2E0/logo.png differ diff --git a/blockchains/ethereum/assets/0x9BdE098Be22658d057C3F1F185e3Fd4653E2fbD1/info.json b/blockchains/ethereum/assets/0x9BdE098Be22658d057C3F1F185e3Fd4653E2fbD1/info.json new file mode 100644 index 00000000..8970ebd9 --- /dev/null +++ b/blockchains/ethereum/assets/0x9BdE098Be22658d057C3F1F185e3Fd4653E2fbD1/info.json @@ -0,0 +1,21 @@ +{ + "name": "KP2R.Network", + "website": "https://kp2r.network", + "description": "An Advanced & Incentive Enabled Decentralize Financial System", + "explorer": "https://etherscan.io/token/0x9bde098be22658d057c3f1f185e3fd4653e2fbd1", + "type": "ERC20", + "symbol": "KP2R", + "decimals": 18, + "status": "active", + "id": "0x9BdE098Be22658d057C3F1F185e3Fd4653E2fbD1", + "links": [ + { + "name": "github", + "url": "https://github.com/kp2r-network" + }, + { + "name": "whitepaper", + "url": "https://docs.kp2r.network" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9BdE098Be22658d057C3F1F185e3Fd4653E2fbD1/logo.png b/blockchains/ethereum/assets/0x9BdE098Be22658d057C3F1F185e3Fd4653E2fbD1/logo.png new file mode 100644 index 00000000..610aac7c Binary files /dev/null and b/blockchains/ethereum/assets/0x9BdE098Be22658d057C3F1F185e3Fd4653E2fbD1/logo.png differ diff --git a/blockchains/ethereum/assets/0x9Bdd3ccBd7C385EDA2113581D47136B752b78248/info.json b/blockchains/ethereum/assets/0x9Bdd3ccBd7C385EDA2113581D47136B752b78248/info.json new file mode 100644 index 00000000..cf400898 --- /dev/null +++ b/blockchains/ethereum/assets/0x9Bdd3ccBd7C385EDA2113581D47136B752b78248/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R746676 ", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9Bdd3ccBd7C385EDA2113581D47136B752b78248", + "status": "abandoned", + "id": "0x9Bdd3ccBd7C385EDA2113581D47136B752b78248" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9Bdd3ccBd7C385EDA2113581D47136B752b78248/logo.png b/blockchains/ethereum/assets/0x9Bdd3ccBd7C385EDA2113581D47136B752b78248/logo.png new file mode 100755 index 00000000..36da17ce Binary files /dev/null and b/blockchains/ethereum/assets/0x9Bdd3ccBd7C385EDA2113581D47136B752b78248/logo.png differ diff --git a/blockchains/ethereum/assets/0x9Bfb088C9f311415E3F9B507DA73081c52a49d8c/info.json b/blockchains/ethereum/assets/0x9Bfb088C9f311415E3F9B507DA73081c52a49d8c/info.json new file mode 100644 index 00000000..8dd3da72 --- /dev/null +++ b/blockchains/ethereum/assets/0x9Bfb088C9f311415E3F9B507DA73081c52a49d8c/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOY Cassette Tape by RAC", + "symbol": "TAPE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ourzora.com/rac/tape", + "explorer": "https://etherscan.io/token/0x9Bfb088C9f311415E3F9B507DA73081c52a49d8c", + "status": "abandoned", + "id": "0x9Bfb088C9f311415E3F9B507DA73081c52a49d8c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9Bfb088C9f311415E3F9B507DA73081c52a49d8c/logo.png b/blockchains/ethereum/assets/0x9Bfb088C9f311415E3F9B507DA73081c52a49d8c/logo.png new file mode 100644 index 00000000..bdb28a74 Binary files /dev/null and b/blockchains/ethereum/assets/0x9Bfb088C9f311415E3F9B507DA73081c52a49d8c/logo.png differ diff --git a/blockchains/ethereum/assets/0x9C2dc0c3CC2BADdE84B0025Cf4df1c5aF288D835/info.json b/blockchains/ethereum/assets/0x9C2dc0c3CC2BADdE84B0025Cf4df1c5aF288D835/info.json new file mode 100644 index 00000000..9df67185 --- /dev/null +++ b/blockchains/ethereum/assets/0x9C2dc0c3CC2BADdE84B0025Cf4df1c5aF288D835/info.json @@ -0,0 +1,30 @@ +{ + "name": "Coreto", + "website": "https://coreto.io", + "light_paper": "https://coreto.io/Coreto_Lightpaper_1.2-B.pdf", + "description": "A reputation based, tokenized social platform orientated towards the crypto communities needs, educating retail investors about blockchain based projects.", + "explorer": "https://etherscan.io/token/0x9c2dc0c3cc2badde84b0025cf4df1c5af288d835", + "type": "ERC20", + "symbol": "COR", + "decimals": 18, + "status": "active", + "id": "0x9C2dc0c3CC2BADdE84B0025Cf4df1c5aF288D835", + "links": [ + { + "name": "github", + "url": "https://github.com/coreto-io" + }, + { + "name": "x", + "url": "https://x.com/Coretoio" + }, + { + "name": "telegram", + "url": "https://t.me/Coreto" + }, + { + "name": "medium", + "url": "https://medium.com/coreto" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9C2dc0c3CC2BADdE84B0025Cf4df1c5aF288D835/logo.png b/blockchains/ethereum/assets/0x9C2dc0c3CC2BADdE84B0025Cf4df1c5aF288D835/logo.png new file mode 100644 index 00000000..cc5a1921 Binary files /dev/null and b/blockchains/ethereum/assets/0x9C2dc0c3CC2BADdE84B0025Cf4df1c5aF288D835/logo.png differ diff --git a/blockchains/ethereum/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/info.json b/blockchains/ethereum/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/info.json new file mode 100644 index 00000000..ab678239 --- /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 00000000..53857d38 Binary files /dev/null and b/blockchains/ethereum/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/logo.png differ diff --git a/blockchains/ethereum/assets/0x9CCbd05d4d25c745d49F5e6BF17e09113Eb4c769/info.json b/blockchains/ethereum/assets/0x9CCbd05d4d25c745d49F5e6BF17e09113Eb4c769/info.json new file mode 100644 index 00000000..f0ebe64c --- /dev/null +++ b/blockchains/ethereum/assets/0x9CCbd05d4d25c745d49F5e6BF17e09113Eb4c769/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decentralized Crypto Token", + "symbol": "DCTO", + "type": "ERC20", + "decimals": 18, + "description": "DCTO Project Cryptocurrency Latest News", + "website": "https://dctoproject.org", + "explorer": "https://etherscan.io/token/0x9CCbd05d4d25c745d49F5e6BF17e09113Eb4c769", + "status": "active", + "id": "0x9CCbd05d4d25c745d49F5e6BF17e09113Eb4c769" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9CCbd05d4d25c745d49F5e6BF17e09113Eb4c769/logo.png b/blockchains/ethereum/assets/0x9CCbd05d4d25c745d49F5e6BF17e09113Eb4c769/logo.png new file mode 100644 index 00000000..05fcee84 Binary files /dev/null and b/blockchains/ethereum/assets/0x9CCbd05d4d25c745d49F5e6BF17e09113Eb4c769/logo.png differ diff --git a/blockchains/ethereum/assets/0x9CDa8A60dd5AfA156c95Bd974428d91a0812e054/info.json b/blockchains/ethereum/assets/0x9CDa8A60dd5AfA156c95Bd974428d91a0812e054/info.json new file mode 100644 index 00000000..91bfcccc --- /dev/null +++ b/blockchains/ethereum/assets/0x9CDa8A60dd5AfA156c95Bd974428d91a0812e054/info.json @@ -0,0 +1,11 @@ +{ + "name": "TaTaTu", + "symbol": "TTU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9CDa8A60dd5AfA156c95Bd974428d91a0812e054", + "status": "abandoned", + "id": "0x9CDa8A60dd5AfA156c95Bd974428d91a0812e054" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9CDa8A60dd5AfA156c95Bd974428d91a0812e054/logo.png b/blockchains/ethereum/assets/0x9CDa8A60dd5AfA156c95Bd974428d91a0812e054/logo.png new file mode 100644 index 00000000..acc11adf Binary files /dev/null and b/blockchains/ethereum/assets/0x9CDa8A60dd5AfA156c95Bd974428d91a0812e054/logo.png differ diff --git a/blockchains/ethereum/assets/0x9CF140FEB1109dd6E5a602C17a7A5aEd9a9b1DdC/info.json b/blockchains/ethereum/assets/0x9CF140FEB1109dd6E5a602C17a7A5aEd9a9b1DdC/info.json new file mode 100644 index 00000000..b4cf7fc8 --- /dev/null +++ b/blockchains/ethereum/assets/0x9CF140FEB1109dd6E5a602C17a7A5aEd9a9b1DdC/info.json @@ -0,0 +1,11 @@ +{ + "name": "GREEN", + "symbol": "GREEN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9CF140FEB1109dd6E5a602C17a7A5aEd9a9b1DdC", + "status": "abandoned", + "id": "0x9CF140FEB1109dd6E5a602C17a7A5aEd9a9b1DdC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9CF140FEB1109dd6E5a602C17a7A5aEd9a9b1DdC/logo.png b/blockchains/ethereum/assets/0x9CF140FEB1109dd6E5a602C17a7A5aEd9a9b1DdC/logo.png new file mode 100644 index 00000000..a0bbee9a Binary files /dev/null and b/blockchains/ethereum/assets/0x9CF140FEB1109dd6E5a602C17a7A5aEd9a9b1DdC/logo.png differ diff --git a/blockchains/ethereum/assets/0x9Cb2f26A23b8d89973F08c957C4d7cdf75CD341c/info.json b/blockchains/ethereum/assets/0x9Cb2f26A23b8d89973F08c957C4d7cdf75CD341c/info.json new file mode 100644 index 00000000..96b3770c --- /dev/null +++ b/blockchains/ethereum/assets/0x9Cb2f26A23b8d89973F08c957C4d7cdf75CD341c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digital Rand", + "symbol": "DZAR", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://digitalrand.co.za/", + "explorer": "https://etherscan.io/token/0x9Cb2f26A23b8d89973F08c957C4d7cdf75CD341c", + "status": "abandoned", + "id": "0x9Cb2f26A23b8d89973F08c957C4d7cdf75CD341c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9Cb2f26A23b8d89973F08c957C4d7cdf75CD341c/logo.png b/blockchains/ethereum/assets/0x9Cb2f26A23b8d89973F08c957C4d7cdf75CD341c/logo.png new file mode 100644 index 00000000..33976599 Binary files /dev/null and b/blockchains/ethereum/assets/0x9Cb2f26A23b8d89973F08c957C4d7cdf75CD341c/logo.png differ diff --git a/blockchains/ethereum/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/info.json b/blockchains/ethereum/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/info.json new file mode 100644 index 00000000..eba3be23 --- /dev/null +++ b/blockchains/ethereum/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/info.json @@ -0,0 +1,29 @@ +{ + "name": "Chintai Exchange Token", + "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 00000000..5e203047 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 00000000..be7c5d1a --- /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 00000000..dc0fed10 Binary files /dev/null and b/blockchains/ethereum/assets/0x9Cf0ED013e67DB12cA3AF8e7506fE401aA14dAd6/logo.png differ diff --git a/blockchains/ethereum/assets/0x9Cf9eB6650fa6CD1d8F6f7949aB4Dc24589D45B8/info.json b/blockchains/ethereum/assets/0x9Cf9eB6650fa6CD1d8F6f7949aB4Dc24589D45B8/info.json new file mode 100644 index 00000000..414336bc --- /dev/null +++ b/blockchains/ethereum/assets/0x9Cf9eB6650fa6CD1d8F6f7949aB4Dc24589D45B8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long KNC-DAI 3x v2", + "symbol": "dLKNC3x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9Cf9eB6650fa6CD1d8F6f7949aB4Dc24589D45B8", + "status": "abandoned", + "id": "0x9Cf9eB6650fa6CD1d8F6f7949aB4Dc24589D45B8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9Cf9eB6650fa6CD1d8F6f7949aB4Dc24589D45B8/logo.png b/blockchains/ethereum/assets/0x9Cf9eB6650fa6CD1d8F6f7949aB4Dc24589D45B8/logo.png new file mode 100644 index 00000000..ed914197 Binary files /dev/null and b/blockchains/ethereum/assets/0x9Cf9eB6650fa6CD1d8F6f7949aB4Dc24589D45B8/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D0B65C60b3FBe3aA296799d45E7497944C12FAC/info.json b/blockchains/ethereum/assets/0x9D0B65C60b3FBe3aA296799d45E7497944C12FAC/info.json new file mode 100644 index 00000000..f25e9f5f --- /dev/null +++ b/blockchains/ethereum/assets/0x9D0B65C60b3FBe3aA296799d45E7497944C12FAC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Underground Dollar Bill", + "symbol": "UGDB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9D0B65C60b3FBe3aA296799d45E7497944C12FAC", + "status": "abandoned", + "id": "0x9D0B65C60b3FBe3aA296799d45E7497944C12FAC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D0B65C60b3FBe3aA296799d45E7497944C12FAC/logo.png b/blockchains/ethereum/assets/0x9D0B65C60b3FBe3aA296799d45E7497944C12FAC/logo.png new file mode 100755 index 00000000..3e9ad346 Binary files /dev/null and b/blockchains/ethereum/assets/0x9D0B65C60b3FBe3aA296799d45E7497944C12FAC/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D1a62c2AD99019768b9126fdA004a9952853F6E/info.json b/blockchains/ethereum/assets/0x9D1a62c2AD99019768b9126fdA004a9952853F6E/info.json new file mode 100644 index 00000000..fa200e2d --- /dev/null +++ b/blockchains/ethereum/assets/0x9D1a62c2AD99019768b9126fdA004a9952853F6E/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Long BNB Token", + "symbol": "BNBBULL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ftx.com/tokens/BNBBULL", + "explorer": "https://etherscan.io/token/0x9D1a62c2AD99019768b9126fdA004a9952853F6E", + "status": "abandoned", + "id": "0x9D1a62c2AD99019768b9126fdA004a9952853F6E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D1a62c2AD99019768b9126fdA004a9952853F6E/logo.png b/blockchains/ethereum/assets/0x9D1a62c2AD99019768b9126fdA004a9952853F6E/logo.png new file mode 100644 index 00000000..a8cc1f57 Binary files /dev/null and b/blockchains/ethereum/assets/0x9D1a62c2AD99019768b9126fdA004a9952853F6E/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D1cBF4eF833340120e721E5028C326Ec1066c7e/info.json b/blockchains/ethereum/assets/0x9D1cBF4eF833340120e721E5028C326Ec1066c7e/info.json new file mode 100644 index 00000000..42e97b40 --- /dev/null +++ b/blockchains/ethereum/assets/0x9D1cBF4eF833340120e721E5028C326Ec1066c7e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Double Ether", + "symbol": "DET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9D1cBF4eF833340120e721E5028C326Ec1066c7e", + "status": "abandoned", + "id": "0x9D1cBF4eF833340120e721E5028C326Ec1066c7e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D1cBF4eF833340120e721E5028C326Ec1066c7e/logo.png b/blockchains/ethereum/assets/0x9D1cBF4eF833340120e721E5028C326Ec1066c7e/logo.png new file mode 100755 index 00000000..9e6add93 Binary files /dev/null and b/blockchains/ethereum/assets/0x9D1cBF4eF833340120e721E5028C326Ec1066c7e/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D39A5DE30e57443BfF2A8307A4256c8797A3497/info.json b/blockchains/ethereum/assets/0x9D39A5DE30e57443BfF2A8307A4256c8797A3497/info.json new file mode 100644 index 00000000..43e84493 --- /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 00000000..e1b7f5c1 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 new file mode 100644 index 00000000..7d893216 --- /dev/null +++ b/blockchains/ethereum/assets/0x9D47894f8BECB68B9cF3428d256311Affe8B068B/info.json @@ -0,0 +1,26 @@ +{ + "name": "ROPE", + "website": "https://rope.lol", + "short_description": "powered by anons", + "description": "Fair launch NFT and yield bearing asset platform.", + "explorer": "https://etherscan.io/token/0x9d47894f8becb68b9cf3428d256311affe8b068b", + "type": "ERC20", + "symbol": "$ROPE", + "decimals": 18, + "status": "active", + "id": "0x9D47894f8BECB68B9cF3428d256311Affe8B068B", + "links": [ + { + "name": "github", + "url": "https://github.com/dontbuyrope/" + }, + { + "name": "x", + "url": "https://x.com/dontbuyrope" + }, + { + "name": "medium", + "url": "https://dontbuyrope.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D47894f8BECB68B9cF3428d256311Affe8B068B/logo.png b/blockchains/ethereum/assets/0x9D47894f8BECB68B9cF3428d256311Affe8B068B/logo.png new file mode 100644 index 00000000..a20bec84 Binary files /dev/null and b/blockchains/ethereum/assets/0x9D47894f8BECB68B9cF3428d256311Affe8B068B/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D57aEEAFB19f606A42d29FdbFEd0FE3D61a0E69/info.json b/blockchains/ethereum/assets/0x9D57aEEAFB19f606A42d29FdbFEd0FE3D61a0E69/info.json new file mode 100644 index 00000000..7a20e5be --- /dev/null +++ b/blockchains/ethereum/assets/0x9D57aEEAFB19f606A42d29FdbFEd0FE3D61a0E69/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wincoin", + "symbol": "BNT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9D57aEEAFB19f606A42d29FdbFEd0FE3D61a0E69", + "status": "abandoned", + "id": "0x9D57aEEAFB19f606A42d29FdbFEd0FE3D61a0E69" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D57aEEAFB19f606A42d29FdbFEd0FE3D61a0E69/logo.png b/blockchains/ethereum/assets/0x9D57aEEAFB19f606A42d29FdbFEd0FE3D61a0E69/logo.png new file mode 100644 index 00000000..d107f621 Binary files /dev/null and b/blockchains/ethereum/assets/0x9D57aEEAFB19f606A42d29FdbFEd0FE3D61a0E69/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/info.json b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/info.json new file mode 100644 index 00000000..3137e7ea --- /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 00000000..429bf6b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D86b1B2554ec410ecCFfBf111A6994910111340/info.json b/blockchains/ethereum/assets/0x9D86b1B2554ec410ecCFfBf111A6994910111340/info.json new file mode 100644 index 00000000..2c9a4abd --- /dev/null +++ b/blockchains/ethereum/assets/0x9D86b1B2554ec410ecCFfBf111A6994910111340/info.json @@ -0,0 +1,11 @@ +{ + "name": "OPEN Chain", + "symbol": "OPENC", + "type": "ERC20", + "decimals": 8, + "description": "Build using the most advanced ecosystem of developer tools for decentralized technologies.", + "website": "https://www.openfuture.io", + "explorer": "https://etherscan.io/token/0x9D86b1B2554ec410ecCFfBf111A6994910111340", + "status": "active", + "id": "0x9D86b1B2554ec410ecCFfBf111A6994910111340" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D86b1B2554ec410ecCFfBf111A6994910111340/logo.png b/blockchains/ethereum/assets/0x9D86b1B2554ec410ecCFfBf111A6994910111340/logo.png new file mode 100644 index 00000000..03a2c3c5 Binary files /dev/null and b/blockchains/ethereum/assets/0x9D86b1B2554ec410ecCFfBf111A6994910111340/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D8bE94D0612170cE533AC4d7B43cc3cd91E5a1A/info.json b/blockchains/ethereum/assets/0x9D8bE94D0612170cE533AC4d7B43cc3cd91E5a1A/info.json new file mode 100644 index 00000000..a8156c65 --- /dev/null +++ b/blockchains/ethereum/assets/0x9D8bE94D0612170cE533AC4d7B43cc3cd91E5a1A/info.json @@ -0,0 +1,11 @@ +{ + "name": "BqtX Token", + "symbol": "BQTX", + "type": "ERC20", + "decimals": 18, + "description": "SOCIAL P2P CRYPTO EXCHANGE AND HEDGE TRADING PLATFORM. BQT Hedge Trade is a flexible method for Traders to acquire Crypto Assets for a short-term period leveraging their existing Crypto holdings.", + "website": "https://bqt.io/", + "explorer": "https://etherscan.io/token/0x9D8bE94D0612170cE533AC4d7B43cc3cd91E5a1A", + "status": "active", + "id": "0x9D8bE94D0612170cE533AC4d7B43cc3cd91E5a1A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D8bE94D0612170cE533AC4d7B43cc3cd91E5a1A/logo.png b/blockchains/ethereum/assets/0x9D8bE94D0612170cE533AC4d7B43cc3cd91E5a1A/logo.png new file mode 100644 index 00000000..a36d1267 Binary files /dev/null and b/blockchains/ethereum/assets/0x9D8bE94D0612170cE533AC4d7B43cc3cd91E5a1A/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D91BE44C06d373a8a226E1f3b146956083803eB/info.json b/blockchains/ethereum/assets/0x9D91BE44C06d373a8a226E1f3b146956083803eB/info.json new file mode 100644 index 00000000..8ac76da4 --- /dev/null +++ b/blockchains/ethereum/assets/0x9D91BE44C06d373a8a226E1f3b146956083803eB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave KNC V1", + "symbol": "aKNC V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave KNC V1 is an interest bearing token pegged 1:1 to the underlying KNC deposited in Aave V1. aKNC V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x9D91BE44C06d373a8a226E1f3b146956083803eB", + "status": "abandoned", + "id": "0x9D91BE44C06d373a8a226E1f3b146956083803eB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D91BE44C06d373a8a226E1f3b146956083803eB/logo.png b/blockchains/ethereum/assets/0x9D91BE44C06d373a8a226E1f3b146956083803eB/logo.png new file mode 100644 index 00000000..bfc22dfc Binary files /dev/null and b/blockchains/ethereum/assets/0x9D91BE44C06d373a8a226E1f3b146956083803eB/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/info.json b/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/info.json new file mode 100644 index 00000000..08490fc8 --- /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 00000000..ffba09e3 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 00000000..93d6c791 --- /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 00000000..f786e048 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 00000000..d66a6c5b --- /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 00000000..8adf5788 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 00000000..c8ba506c --- /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 00000000..c54aa8d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x9DFAD1b7102D46b1b197b90095B5c4E9f5845BBA/logo.png differ diff --git a/blockchains/ethereum/assets/0x9DccA72F52B965dB62e4Cd575C2a88718c6893E3/info.json b/blockchains/ethereum/assets/0x9DccA72F52B965dB62e4Cd575C2a88718c6893E3/info.json new file mode 100644 index 00000000..7174a869 --- /dev/null +++ b/blockchains/ethereum/assets/0x9DccA72F52B965dB62e4Cd575C2a88718c6893E3/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST 9", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9DccA72F52B965dB62e4Cd575C2a88718c6893E3", + "status": "abandoned", + "id": "0x9DccA72F52B965dB62e4Cd575C2a88718c6893E3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9DccA72F52B965dB62e4Cd575C2a88718c6893E3/logo.png b/blockchains/ethereum/assets/0x9DccA72F52B965dB62e4Cd575C2a88718c6893E3/logo.png new file mode 100644 index 00000000..4d0b7c68 Binary files /dev/null and b/blockchains/ethereum/assets/0x9DccA72F52B965dB62e4Cd575C2a88718c6893E3/logo.png differ diff --git a/blockchains/ethereum/assets/0x9Dfc4B433D359024Eb3E810d77d60fbE8B0d9B82/info.json b/blockchains/ethereum/assets/0x9Dfc4B433D359024Eb3E810d77d60fbE8B0d9B82/info.json new file mode 100644 index 00000000..39ecc40a --- /dev/null +++ b/blockchains/ethereum/assets/0x9Dfc4B433D359024Eb3E810d77d60fbE8B0d9B82/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dandy Dego", + "website": "https://dego.finance", + "description": "DEGO claims to be a brand new idea towards a sustainable Decentralized Finance (DeFi) ecosystem.", + "explorer": "https://etherscan.io/token/0x9Dfc4B433D359024Eb3E810d77d60fbE8B0d9B82", + "type": "ERC20", + "symbol": "DANDY", + "decimals": 18, + "status": "active", + "id": "0x9Dfc4B433D359024Eb3E810d77d60fbE8B0d9B82" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9Dfc4B433D359024Eb3E810d77d60fbE8B0d9B82/logo.png b/blockchains/ethereum/assets/0x9Dfc4B433D359024Eb3E810d77d60fbE8B0d9B82/logo.png new file mode 100644 index 00000000..8f1f43a3 Binary files /dev/null and b/blockchains/ethereum/assets/0x9Dfc4B433D359024Eb3E810d77d60fbE8B0d9B82/logo.png differ diff --git a/blockchains/ethereum/assets/0x9E1cB748161146797062fF441d6e604C5Eaf8690/info.json b/blockchains/ethereum/assets/0x9E1cB748161146797062fF441d6e604C5Eaf8690/info.json new file mode 100644 index 00000000..bfd6c221 --- /dev/null +++ b/blockchains/ethereum/assets/0x9E1cB748161146797062fF441d6e604C5Eaf8690/info.json @@ -0,0 +1,11 @@ +{ + "name": "ILC", + "symbol": "ILC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9E1cB748161146797062fF441d6e604C5Eaf8690", + "status": "abandoned", + "id": "0x9E1cB748161146797062fF441d6e604C5Eaf8690" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9E1cB748161146797062fF441d6e604C5Eaf8690/logo.png b/blockchains/ethereum/assets/0x9E1cB748161146797062fF441d6e604C5Eaf8690/logo.png new file mode 100644 index 00000000..974ffc39 Binary files /dev/null and b/blockchains/ethereum/assets/0x9E1cB748161146797062fF441d6e604C5Eaf8690/logo.png differ diff --git a/blockchains/ethereum/assets/0x9E21945aA07b68Bcaf3c6e026CB281F1B7aC6a8A/info.json b/blockchains/ethereum/assets/0x9E21945aA07b68Bcaf3c6e026CB281F1B7aC6a8A/info.json new file mode 100644 index 00000000..985e6745 --- /dev/null +++ b/blockchains/ethereum/assets/0x9E21945aA07b68Bcaf3c6e026CB281F1B7aC6a8A/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C507214", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9E21945aA07b68Bcaf3c6e026CB281F1B7aC6a8A", + "status": "abandoned", + "id": "0x9E21945aA07b68Bcaf3c6e026CB281F1B7aC6a8A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9E21945aA07b68Bcaf3c6e026CB281F1B7aC6a8A/logo.png b/blockchains/ethereum/assets/0x9E21945aA07b68Bcaf3c6e026CB281F1B7aC6a8A/logo.png new file mode 100644 index 00000000..b287ffe9 Binary files /dev/null and b/blockchains/ethereum/assets/0x9E21945aA07b68Bcaf3c6e026CB281F1B7aC6a8A/logo.png differ diff --git a/blockchains/ethereum/assets/0x9E283fE046118c0942aC2135B9C8e02547b20991/info.json b/blockchains/ethereum/assets/0x9E283fE046118c0942aC2135B9C8e02547b20991/info.json new file mode 100644 index 00000000..2f84fac0 --- /dev/null +++ b/blockchains/ethereum/assets/0x9E283fE046118c0942aC2135B9C8e02547b20991/info.json @@ -0,0 +1,11 @@ +{ + "name": "Qwartz", + "symbol": "QWRTZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9E283fE046118c0942aC2135B9C8e02547b20991", + "status": "abandoned", + "id": "0x9E283fE046118c0942aC2135B9C8e02547b20991" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9E283fE046118c0942aC2135B9C8e02547b20991/logo.png b/blockchains/ethereum/assets/0x9E283fE046118c0942aC2135B9C8e02547b20991/logo.png new file mode 100644 index 00000000..8e58bd0e Binary files /dev/null and b/blockchains/ethereum/assets/0x9E283fE046118c0942aC2135B9C8e02547b20991/logo.png differ diff --git a/blockchains/ethereum/assets/0x9E29136AEEF07CF839C48b9bc6D6629cEDA966e9/info.json b/blockchains/ethereum/assets/0x9E29136AEEF07CF839C48b9bc6D6629cEDA966e9/info.json new file mode 100644 index 00000000..64a89e31 --- /dev/null +++ b/blockchains/ethereum/assets/0x9E29136AEEF07CF839C48b9bc6D6629cEDA966e9/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 146-CN08", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9E29136AEEF07CF839C48b9bc6D6629cEDA966e9", + "status": "abandoned", + "id": "0x9E29136AEEF07CF839C48b9bc6D6629cEDA966e9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9E29136AEEF07CF839C48b9bc6D6629cEDA966e9/logo.png b/blockchains/ethereum/assets/0x9E29136AEEF07CF839C48b9bc6D6629cEDA966e9/logo.png new file mode 100644 index 00000000..17d166b7 Binary files /dev/null and b/blockchains/ethereum/assets/0x9E29136AEEF07CF839C48b9bc6D6629cEDA966e9/logo.png differ diff --git a/blockchains/ethereum/assets/0x9E2A88e12eE0e7fA15e3aA46190fb564220fB337/info.json b/blockchains/ethereum/assets/0x9E2A88e12eE0e7fA15e3aA46190fb564220fB337/info.json new file mode 100644 index 00000000..bcf934b9 --- /dev/null +++ b/blockchains/ethereum/assets/0x9E2A88e12eE0e7fA15e3aA46190fb564220fB337/info.json @@ -0,0 +1,11 @@ +{ + "name": "ElastoChain", + "symbol": "EC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9E2A88e12eE0e7fA15e3aA46190fb564220fB337", + "status": "abandoned", + "id": "0x9E2A88e12eE0e7fA15e3aA46190fb564220fB337" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9E2A88e12eE0e7fA15e3aA46190fb564220fB337/logo.png b/blockchains/ethereum/assets/0x9E2A88e12eE0e7fA15e3aA46190fb564220fB337/logo.png new file mode 100755 index 00000000..0d63dbe8 Binary files /dev/null and b/blockchains/ethereum/assets/0x9E2A88e12eE0e7fA15e3aA46190fb564220fB337/logo.png differ diff --git a/blockchains/ethereum/assets/0x9E2cF95Ab33AdC202BfDF13136cA19A5226aE5Ba/info.json b/blockchains/ethereum/assets/0x9E2cF95Ab33AdC202BfDF13136cA19A5226aE5Ba/info.json new file mode 100644 index 00000000..95296847 --- /dev/null +++ b/blockchains/ethereum/assets/0x9E2cF95Ab33AdC202BfDF13136cA19A5226aE5Ba/info.json @@ -0,0 +1,11 @@ +{ + "name": "STOCKSD", + "website": "https://stocksd.app", + "description": "Stocks on Ethereum", + "explorer": "https://etherscan.io/token/0x9E2cF95Ab33AdC202BfDF13136cA19A5226aE5Ba", + "type": "ERC20", + "symbol": "STOCKSD", + "decimals": 18, + "status": "active", + "id": "0x9E2cF95Ab33AdC202BfDF13136cA19A5226aE5Ba" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9E2cF95Ab33AdC202BfDF13136cA19A5226aE5Ba/logo.png b/blockchains/ethereum/assets/0x9E2cF95Ab33AdC202BfDF13136cA19A5226aE5Ba/logo.png new file mode 100644 index 00000000..a5ac769a Binary files /dev/null and b/blockchains/ethereum/assets/0x9E2cF95Ab33AdC202BfDF13136cA19A5226aE5Ba/logo.png differ diff --git a/blockchains/ethereum/assets/0x9E32b13ce7f2E80A01932B42553652E053D6ed8e/info.json b/blockchains/ethereum/assets/0x9E32b13ce7f2E80A01932B42553652E053D6ed8e/info.json new file mode 100644 index 00000000..bcdd0fcd --- /dev/null +++ b/blockchains/ethereum/assets/0x9E32b13ce7f2E80A01932B42553652E053D6ed8e/info.json @@ -0,0 +1,11 @@ +{ + "id": "0x9E32b13ce7f2E80A01932B42553652E053D6ed8e", + "name": "MetisDAO", + "website": "https://metis.io", + "description": "Metis Token", + "explorer": "https://etherscan.io/token/0x9E32b13ce7f2E80A01932B42553652E053D6ed8e", + "type": "ERC20", + "symbol": "Metis", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9E32b13ce7f2E80A01932B42553652E053D6ed8e/logo.png b/blockchains/ethereum/assets/0x9E32b13ce7f2E80A01932B42553652E053D6ed8e/logo.png new file mode 100644 index 00000000..616f1a66 Binary files /dev/null and b/blockchains/ethereum/assets/0x9E32b13ce7f2E80A01932B42553652E053D6ed8e/logo.png differ diff --git a/blockchains/ethereum/assets/0x9E46A38F5DaaBe8683E10793b06749EEF7D733d1/info.json b/blockchains/ethereum/assets/0x9E46A38F5DaaBe8683E10793b06749EEF7D733d1/info.json new file mode 100644 index 00000000..1c1b4a30 --- /dev/null +++ b/blockchains/ethereum/assets/0x9E46A38F5DaaBe8683E10793b06749EEF7D733d1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nectar", + "symbol": "NCT", + "type": "ERC20", + "decimals": 18, + "description": "PolySwarm is a more effective way to detect, analyze and respond to the latest threats, the ones more likely to go undetected by existing solutions.", + "website": "https://polyswarm.io", + "explorer": "https://etherscan.io/token/0x9E46A38F5DaaBe8683E10793b06749EEF7D733d1", + "status": "active", + "id": "0x9E46A38F5DaaBe8683E10793b06749EEF7D733d1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9E46A38F5DaaBe8683E10793b06749EEF7D733d1/logo.png b/blockchains/ethereum/assets/0x9E46A38F5DaaBe8683E10793b06749EEF7D733d1/logo.png new file mode 100644 index 00000000..406788e0 Binary files /dev/null and b/blockchains/ethereum/assets/0x9E46A38F5DaaBe8683E10793b06749EEF7D733d1/logo.png differ diff --git a/blockchains/ethereum/assets/0x9E77D5a1251b6F7D456722A6eaC6D2d5980bd891/info.json b/blockchains/ethereum/assets/0x9E77D5a1251b6F7D456722A6eaC6D2d5980bd891/info.json new file mode 100644 index 00000000..cc6749de --- /dev/null +++ b/blockchains/ethereum/assets/0x9E77D5a1251b6F7D456722A6eaC6D2d5980bd891/info.json @@ -0,0 +1,11 @@ +{ + "name": "BRAT RED", + "symbol": "BRAT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://bro-consortium.io/", + "explorer": "https://etherscan.io/token/0x9E77D5a1251b6F7D456722A6eaC6D2d5980bd891", + "status": "abandoned", + "id": "0x9E77D5a1251b6F7D456722A6eaC6D2d5980bd891" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9E77D5a1251b6F7D456722A6eaC6D2d5980bd891/logo.png b/blockchains/ethereum/assets/0x9E77D5a1251b6F7D456722A6eaC6D2d5980bd891/logo.png new file mode 100644 index 00000000..83e889a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x9E77D5a1251b6F7D456722A6eaC6D2d5980bd891/logo.png differ diff --git a/blockchains/ethereum/assets/0x9E78b8274e1D6a76a0dBbf90418894DF27cBCEb5/info.json b/blockchains/ethereum/assets/0x9E78b8274e1D6a76a0dBbf90418894DF27cBCEb5/info.json new file mode 100644 index 00000000..f8462386 --- /dev/null +++ b/blockchains/ethereum/assets/0x9E78b8274e1D6a76a0dBbf90418894DF27cBCEb5/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniFi", + "symbol": "UniFi", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.unifihub.com/", + "explorer": "https://etherscan.io/token/0x9E78b8274e1D6a76a0dBbf90418894DF27cBCEb5", + "status": "abandoned", + "id": "0x9E78b8274e1D6a76a0dBbf90418894DF27cBCEb5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9E78b8274e1D6a76a0dBbf90418894DF27cBCEb5/logo.png b/blockchains/ethereum/assets/0x9E78b8274e1D6a76a0dBbf90418894DF27cBCEb5/logo.png new file mode 100644 index 00000000..a18eb808 Binary files /dev/null and b/blockchains/ethereum/assets/0x9E78b8274e1D6a76a0dBbf90418894DF27cBCEb5/logo.png differ diff --git a/blockchains/ethereum/assets/0x9E8bfE46f9Af27c5Ea5C9C72b86D71bb86953A0c/info.json b/blockchains/ethereum/assets/0x9E8bfE46f9Af27c5Ea5C9C72b86D71bb86953A0c/info.json new file mode 100644 index 00000000..ab29e3b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x9E8bfE46f9Af27c5Ea5C9C72b86D71bb86953A0c/info.json @@ -0,0 +1,41 @@ +{ + "name": "EZDEX", + "website": "https://ezdex.market", + "description": "EZDex development team united with community development forces to deeply cultivate the underlying technology, and through the value transfer protocol, proposed and implemented a series of technological upgrades and innovative solutions. Build a sustainable public blockchain blockchain.", + "explorer": "https://etherscan.io/token/0x9E8bfE46f9Af27c5Ea5C9C72b86D71bb86953A0c", + "type": "ERC20", + "symbol": "EZX", + "decimals": 18, + "status": "active", + "id": "0x9E8bfE46f9Af27c5Ea5C9C72b86D71bb86953A0c", + "links": [ + { + "name": "github", + "url": "https://github.com/ezdex-service" + }, + { + "name": "x", + "url": "https://x.com/ExchangeEzdex" + }, + { + "name": "facebook", + "url": "https://facebook.com/EZDexExchange/" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/EZDexExchage" + }, + { + "name": "medium", + "url": "https://medium.com/@EZDex" + }, + { + "name": "telegram", + "url": "https://t.me/EZX_Exchange" + }, + { + "name": "whitepaper", + "url": "https://mp.weixin.qq.com/s/NkrME0YfeiaPcsYReWZn7A" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9E8bfE46f9Af27c5Ea5C9C72b86D71bb86953A0c/logo.png b/blockchains/ethereum/assets/0x9E8bfE46f9Af27c5Ea5C9C72b86D71bb86953A0c/logo.png new file mode 100644 index 00000000..88a15ba8 Binary files /dev/null and b/blockchains/ethereum/assets/0x9E8bfE46f9Af27c5Ea5C9C72b86D71bb86953A0c/logo.png differ diff --git a/blockchains/ethereum/assets/0x9E9FbDE7C7a83c43913BddC8779158F1368F0413/info.json b/blockchains/ethereum/assets/0x9E9FbDE7C7a83c43913BddC8779158F1368F0413/info.json new file mode 100644 index 00000000..287c53d9 --- /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/0x9EA085bc45639372e7389e5C5069a86cAC5a03bF/info.json b/blockchains/ethereum/assets/0x9EA085bc45639372e7389e5C5069a86cAC5a03bF/info.json new file mode 100644 index 00000000..719116d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x9EA085bc45639372e7389e5C5069a86cAC5a03bF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vaporware", + "symbol": "VAP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9EA085bc45639372e7389e5C5069a86cAC5a03bF", + "status": "abandoned", + "id": "0x9EA085bc45639372e7389e5C5069a86cAC5a03bF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9EA085bc45639372e7389e5C5069a86cAC5a03bF/logo.png b/blockchains/ethereum/assets/0x9EA085bc45639372e7389e5C5069a86cAC5a03bF/logo.png new file mode 100644 index 00000000..93f34ad1 Binary files /dev/null and b/blockchains/ethereum/assets/0x9EA085bc45639372e7389e5C5069a86cAC5a03bF/logo.png differ diff --git a/blockchains/ethereum/assets/0x9EA3b5b4EC044b70375236A281986106457b20EF/info.json b/blockchains/ethereum/assets/0x9EA3b5b4EC044b70375236A281986106457b20EF/info.json new file mode 100644 index 00000000..60fb6fc4 --- /dev/null +++ b/blockchains/ethereum/assets/0x9EA3b5b4EC044b70375236A281986106457b20EF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Delta Financial", + "symbol": "DELTA", + "type": "ERC20", + "decimals": 18, + "description": "Delta is an on-chain options layer which utilizes a combination of liquidity standards to reduce premiums and offer competitive options prices. It uses novel systems such as a unique vesting schedule to generate a new form of liquidity.", + "website": "https://delta.financial", + "explorer": "https://etherscan.io/token/0x9EA3b5b4EC044b70375236A281986106457b20EF", + "status": "active", + "id": "0x9EA3b5b4EC044b70375236A281986106457b20EF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9EA3b5b4EC044b70375236A281986106457b20EF/logo.png b/blockchains/ethereum/assets/0x9EA3b5b4EC044b70375236A281986106457b20EF/logo.png new file mode 100644 index 00000000..f8545ed2 Binary files /dev/null and b/blockchains/ethereum/assets/0x9EA3b5b4EC044b70375236A281986106457b20EF/logo.png differ diff --git a/blockchains/ethereum/assets/0x9EC749faa086BB604B96bfE02Bd49c53CEF47Ea5/info.json b/blockchains/ethereum/assets/0x9EC749faa086BB604B96bfE02Bd49c53CEF47Ea5/info.json new file mode 100644 index 00000000..0a466096 --- /dev/null +++ b/blockchains/ethereum/assets/0x9EC749faa086BB604B96bfE02Bd49c53CEF47Ea5/info.json @@ -0,0 +1,11 @@ +{ + "name": "e-Money NOK stablecoin", + "website": "https://e-money.com", + "description": "ERC20 version of the e-Money NOK stablecoin", + "explorer": "https://etherscan.io/token/0x9EC749faa086BB604B96bfE02Bd49c53CEF47Ea5", + "type": "ERC20", + "symbol": "ENOK", + "decimals": 6, + "status": "active", + "id": "0x9EC749faa086BB604B96bfE02Bd49c53CEF47Ea5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9EC749faa086BB604B96bfE02Bd49c53CEF47Ea5/logo.png b/blockchains/ethereum/assets/0x9EC749faa086BB604B96bfE02Bd49c53CEF47Ea5/logo.png new file mode 100644 index 00000000..dc81836d Binary files /dev/null and b/blockchains/ethereum/assets/0x9EC749faa086BB604B96bfE02Bd49c53CEF47Ea5/logo.png differ diff --git a/blockchains/ethereum/assets/0x9ED740100f4BE1Bc6559a662c6131362FbF19a1F/info.json b/blockchains/ethereum/assets/0x9ED740100f4BE1Bc6559a662c6131362FbF19a1F/info.json new file mode 100644 index 00000000..2ce173e5 --- /dev/null +++ b/blockchains/ethereum/assets/0x9ED740100f4BE1Bc6559a662c6131362FbF19a1F/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R910597", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9ED740100f4BE1Bc6559a662c6131362FbF19a1F", + "status": "abandoned", + "id": "0x9ED740100f4BE1Bc6559a662c6131362FbF19a1F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9ED740100f4BE1Bc6559a662c6131362FbF19a1F/logo.png b/blockchains/ethereum/assets/0x9ED740100f4BE1Bc6559a662c6131362FbF19a1F/logo.png new file mode 100644 index 00000000..c15df8b9 Binary files /dev/null and b/blockchains/ethereum/assets/0x9ED740100f4BE1Bc6559a662c6131362FbF19a1F/logo.png differ diff --git a/blockchains/ethereum/assets/0x9EE4F2f8a4eE74A982d2CCB2bbA962E572f39679/info.json b/blockchains/ethereum/assets/0x9EE4F2f8a4eE74A982d2CCB2bbA962E572f39679/info.json new file mode 100644 index 00000000..83262dff --- /dev/null +++ b/blockchains/ethereum/assets/0x9EE4F2f8a4eE74A982d2CCB2bbA962E572f39679/info.json @@ -0,0 +1,11 @@ +{ + "name": "Toilet Paper Token", + "symbol": "TPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9EE4F2f8a4eE74A982d2CCB2bbA962E572f39679", + "status": "abandoned", + "id": "0x9EE4F2f8a4eE74A982d2CCB2bbA962E572f39679" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9EE4F2f8a4eE74A982d2CCB2bbA962E572f39679/logo.png b/blockchains/ethereum/assets/0x9EE4F2f8a4eE74A982d2CCB2bbA962E572f39679/logo.png new file mode 100644 index 00000000..d7730aa3 Binary files /dev/null and b/blockchains/ethereum/assets/0x9EE4F2f8a4eE74A982d2CCB2bbA962E572f39679/logo.png differ diff --git a/blockchains/ethereum/assets/0x9EEAb220E44410C16aC80C12830bC11AF7dD5C6E/info.json b/blockchains/ethereum/assets/0x9EEAb220E44410C16aC80C12830bC11AF7dD5C6E/info.json new file mode 100644 index 00000000..0e28bf8c --- /dev/null +++ b/blockchains/ethereum/assets/0x9EEAb220E44410C16aC80C12830bC11AF7dD5C6E/info.json @@ -0,0 +1,11 @@ +{ + "name": "ThunderStoneToken", + "symbol": "TST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9EEAb220E44410C16aC80C12830bC11AF7dD5C6E", + "status": "abandoned", + "id": "0x9EEAb220E44410C16aC80C12830bC11AF7dD5C6E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9EEAb220E44410C16aC80C12830bC11AF7dD5C6E/logo.png b/blockchains/ethereum/assets/0x9EEAb220E44410C16aC80C12830bC11AF7dD5C6E/logo.png new file mode 100644 index 00000000..585d6e18 Binary files /dev/null and b/blockchains/ethereum/assets/0x9EEAb220E44410C16aC80C12830bC11AF7dD5C6E/logo.png differ diff --git a/blockchains/ethereum/assets/0x9EF24790B4DdD63C48CDe21370f3838acD75B727/info.json b/blockchains/ethereum/assets/0x9EF24790B4DdD63C48CDe21370f3838acD75B727/info.json new file mode 100644 index 00000000..b0f71f81 --- /dev/null +++ b/blockchains/ethereum/assets/0x9EF24790B4DdD63C48CDe21370f3838acD75B727/info.json @@ -0,0 +1,11 @@ +{ + "name": "DragonBorns", + "symbol": "DBS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9EF24790B4DdD63C48CDe21370f3838acD75B727", + "status": "abandoned", + "id": "0x9EF24790B4DdD63C48CDe21370f3838acD75B727" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9EF24790B4DdD63C48CDe21370f3838acD75B727/logo.png b/blockchains/ethereum/assets/0x9EF24790B4DdD63C48CDe21370f3838acD75B727/logo.png new file mode 100644 index 00000000..4ff373a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x9EF24790B4DdD63C48CDe21370f3838acD75B727/logo.png differ diff --git a/blockchains/ethereum/assets/0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E/info.json b/blockchains/ethereum/assets/0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E/info.json new file mode 100644 index 00000000..d23f1cf0 --- /dev/null +++ b/blockchains/ethereum/assets/0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unistake", + "website": "https://unistake.finance", + "description": "Unistake empowers DeFi projects in their quest for liquidity by providing new incentives for their supporters to create Uniswap liquidity pools. Communities can contribute to token liquidity easier than ever before and make additional passive income streams through staking and profit sharing.", + "explorer": "https://etherscan.io/token/0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E", + "type": "ERC20", + "symbol": "UNISTAKE", + "decimals": 18, + "status": "active", + "id": "0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E/logo.png b/blockchains/ethereum/assets/0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E/logo.png new file mode 100644 index 00000000..c71ee00e Binary files /dev/null and b/blockchains/ethereum/assets/0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E/logo.png differ diff --git a/blockchains/ethereum/assets/0x9F195617fA8fbAD9540C5D113A99A0a0172aaEDC/info.json b/blockchains/ethereum/assets/0x9F195617fA8fbAD9540C5D113A99A0a0172aaEDC/info.json new file mode 100644 index 00000000..e134fd2d --- /dev/null +++ b/blockchains/ethereum/assets/0x9F195617fA8fbAD9540C5D113A99A0a0172aaEDC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Niobium", + "symbol": "NBC", + "type": "ERC20", + "decimals": 18, + "description": "Niobium Coin (NBC) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://niobiumcoin.io", + "explorer": "https://etherscan.io/token/0x9F195617fA8fbAD9540C5D113A99A0a0172aaEDC", + "status": "active", + "id": "0x9F195617fA8fbAD9540C5D113A99A0a0172aaEDC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9F195617fA8fbAD9540C5D113A99A0a0172aaEDC/logo.png b/blockchains/ethereum/assets/0x9F195617fA8fbAD9540C5D113A99A0a0172aaEDC/logo.png new file mode 100755 index 00000000..c0875408 Binary files /dev/null and b/blockchains/ethereum/assets/0x9F195617fA8fbAD9540C5D113A99A0a0172aaEDC/logo.png differ diff --git a/blockchains/ethereum/assets/0x9F284E1337A815fe77D2Ff4aE46544645B20c5ff/info.json b/blockchains/ethereum/assets/0x9F284E1337A815fe77D2Ff4aE46544645B20c5ff/info.json new file mode 100644 index 00000000..9cec606e --- /dev/null +++ b/blockchains/ethereum/assets/0x9F284E1337A815fe77D2Ff4aE46544645B20c5ff/info.json @@ -0,0 +1,25 @@ +{ + "name": "Darwinia Commitment Token", + "website": "https://darwinia.network/", + "description": "Darwinia Network is a decentralized heterogeneous cross-chain bridge protocol built on Substrate, focusing on decentralized cross-chain token swap, exchange and market. Darwinia also serves as critical infrastructure for single-chain application upgrade to cross-chain version, including Defi, Game, DEX, NFT market, etc. Our vision is to build future Internet of Tokens.", + "explorer": "https://etherscan.io/token/0x9F284E1337A815fe77D2Ff4aE46544645B20c5ff", + "type": "ERC20", + "symbol": "KTON", + "decimals": 18, + "status": "active", + "id": "0x9F284E1337A815fe77D2Ff4aE46544645B20c5ff", + "links": [ + { + "name": "github", + "url": "https://github.com/darwinia-network" + }, + { + "name": "x", + "url": "https://x.com/DarwiniaNetwork" + }, + { + "name": "telegram", + "url": "https://t.me/DarwiniaNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9F284E1337A815fe77D2Ff4aE46544645B20c5ff/logo.png b/blockchains/ethereum/assets/0x9F284E1337A815fe77D2Ff4aE46544645B20c5ff/logo.png new file mode 100644 index 00000000..0529f45b Binary files /dev/null and b/blockchains/ethereum/assets/0x9F284E1337A815fe77D2Ff4aE46544645B20c5ff/logo.png differ diff --git a/blockchains/ethereum/assets/0x9F452E458B024e82d6e3fF50A07b8DE74c988523/info.json b/blockchains/ethereum/assets/0x9F452E458B024e82d6e3fF50A07b8DE74c988523/info.json new file mode 100644 index 00000000..4f105914 --- /dev/null +++ b/blockchains/ethereum/assets/0x9F452E458B024e82d6e3fF50A07b8DE74c988523/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoatCash", + "symbol": "GOAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://goat.cash", + "explorer": "https://etherscan.io/token/0x9F452E458B024e82d6e3fF50A07b8DE74c988523", + "status": "abandoned", + "id": "0x9F452E458B024e82d6e3fF50A07b8DE74c988523" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9F452E458B024e82d6e3fF50A07b8DE74c988523/logo.png b/blockchains/ethereum/assets/0x9F452E458B024e82d6e3fF50A07b8DE74c988523/logo.png new file mode 100644 index 00000000..fc430ccd Binary files /dev/null and b/blockchains/ethereum/assets/0x9F452E458B024e82d6e3fF50A07b8DE74c988523/logo.png differ diff --git a/blockchains/ethereum/assets/0x9F51D91AF1eb10B3f59CdFc3c192bF8EFfacF25d/info.json b/blockchains/ethereum/assets/0x9F51D91AF1eb10B3f59CdFc3c192bF8EFfacF25d/info.json new file mode 100644 index 00000000..2c94ce3b --- /dev/null +++ b/blockchains/ethereum/assets/0x9F51D91AF1eb10B3f59CdFc3c192bF8EFfacF25d/info.json @@ -0,0 +1,11 @@ +{ + "name": "LYB", + "symbol": "LYB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9F51D91AF1eb10B3f59CdFc3c192bF8EFfacF25d", + "status": "abandoned", + "id": "0x9F51D91AF1eb10B3f59CdFc3c192bF8EFfacF25d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9F51D91AF1eb10B3f59CdFc3c192bF8EFfacF25d/logo.png b/blockchains/ethereum/assets/0x9F51D91AF1eb10B3f59CdFc3c192bF8EFfacF25d/logo.png new file mode 100644 index 00000000..aad478c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x9F51D91AF1eb10B3f59CdFc3c192bF8EFfacF25d/logo.png differ diff --git a/blockchains/ethereum/assets/0x9F54a5ec929dec40E600f76252e68595Fe91ed20/info.json b/blockchains/ethereum/assets/0x9F54a5ec929dec40E600f76252e68595Fe91ed20/info.json new file mode 100644 index 00000000..6d83abad --- /dev/null +++ b/blockchains/ethereum/assets/0x9F54a5ec929dec40E600f76252e68595Fe91ed20/info.json @@ -0,0 +1,11 @@ +{ + "name": "Simplify", + "symbol": "SIMP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9F54a5ec929dec40E600f76252e68595Fe91ed20", + "status": "abandoned", + "id": "0x9F54a5ec929dec40E600f76252e68595Fe91ed20" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9F54a5ec929dec40E600f76252e68595Fe91ed20/logo.png b/blockchains/ethereum/assets/0x9F54a5ec929dec40E600f76252e68595Fe91ed20/logo.png new file mode 100644 index 00000000..34396ca9 Binary files /dev/null and b/blockchains/ethereum/assets/0x9F54a5ec929dec40E600f76252e68595Fe91ed20/logo.png differ diff --git a/blockchains/ethereum/assets/0x9F599410D207f3D2828a8712e5e543AC2E040382/info.json b/blockchains/ethereum/assets/0x9F599410D207f3D2828a8712e5e543AC2E040382/info.json new file mode 100644 index 00000000..a4d6ecdd --- /dev/null +++ b/blockchains/ethereum/assets/0x9F599410D207f3D2828a8712e5e543AC2E040382/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tapcoin", + "website": "https://tapproject.net", + "description": "Tapcoin (TTT) is a revolutionary token that decentralizes the gaming industry by providing gamers and developers with in-game virtual currencies.", + "explorer": "https://etherscan.io/token/0x9F599410D207f3D2828a8712e5e543AC2E040382", + "type": "ERC20", + "symbol": "TTT", + "decimals": 18, + "status": "active", + "id": "0x9F599410D207f3D2828a8712e5e543AC2E040382" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9F599410D207f3D2828a8712e5e543AC2E040382/logo.png b/blockchains/ethereum/assets/0x9F599410D207f3D2828a8712e5e543AC2E040382/logo.png new file mode 100644 index 00000000..fea96ab4 Binary files /dev/null and b/blockchains/ethereum/assets/0x9F599410D207f3D2828a8712e5e543AC2E040382/logo.png differ diff --git a/blockchains/ethereum/assets/0x9F5F3CFD7a32700C93F971637407ff17b91c7342/info.json b/blockchains/ethereum/assets/0x9F5F3CFD7a32700C93F971637407ff17b91c7342/info.json new file mode 100644 index 00000000..d0fb392d --- /dev/null +++ b/blockchains/ethereum/assets/0x9F5F3CFD7a32700C93F971637407ff17b91c7342/info.json @@ -0,0 +1,11 @@ +{ + "name": "ScryDddToken", + "symbol": "DDD", + "type": "ERC20", + "decimals": 18, + "description": "SCRY.INFO is an open source blockchain data protocol layer, oracle of the blockchain world, cornerstone of data smart contract applications.", + "website": "https://home.scry.info", + "explorer": "https://etherscan.io/token/0x9F5F3CFD7a32700C93F971637407ff17b91c7342", + "status": "active", + "id": "0x9F5F3CFD7a32700C93F971637407ff17b91c7342" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9F5F3CFD7a32700C93F971637407ff17b91c7342/logo.png b/blockchains/ethereum/assets/0x9F5F3CFD7a32700C93F971637407ff17b91c7342/logo.png new file mode 100644 index 00000000..45a3dc6d Binary files /dev/null and b/blockchains/ethereum/assets/0x9F5F3CFD7a32700C93F971637407ff17b91c7342/logo.png differ diff --git a/blockchains/ethereum/assets/0x9F6b043aEBf45C3BEF56900ED96CB5191A68998D/info.json b/blockchains/ethereum/assets/0x9F6b043aEBf45C3BEF56900ED96CB5191A68998D/info.json new file mode 100644 index 00000000..dc2d37bc --- /dev/null +++ b/blockchains/ethereum/assets/0x9F6b043aEBf45C3BEF56900ED96CB5191A68998D/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTCC Pool Coin", + "symbol": "BPC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9F6b043aEBf45C3BEF56900ED96CB5191A68998D", + "status": "abandoned", + "id": "0x9F6b043aEBf45C3BEF56900ED96CB5191A68998D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9F6b043aEBf45C3BEF56900ED96CB5191A68998D/logo.png b/blockchains/ethereum/assets/0x9F6b043aEBf45C3BEF56900ED96CB5191A68998D/logo.png new file mode 100644 index 00000000..353a6552 Binary files /dev/null and b/blockchains/ethereum/assets/0x9F6b043aEBf45C3BEF56900ED96CB5191A68998D/logo.png differ diff --git a/blockchains/ethereum/assets/0x9F76Ff3336597FeAB30f5A66a053ae4A4a7eBe13/info.json b/blockchains/ethereum/assets/0x9F76Ff3336597FeAB30f5A66a053ae4A4a7eBe13/info.json new file mode 100644 index 00000000..ad2eff36 --- /dev/null +++ b/blockchains/ethereum/assets/0x9F76Ff3336597FeAB30f5A66a053ae4A4a7eBe13/info.json @@ -0,0 +1,11 @@ +{ + "name": "Token Play", + "symbol": "TP3", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9F76Ff3336597FeAB30f5A66a053ae4A4a7eBe13", + "status": "abandoned", + "id": "0x9F76Ff3336597FeAB30f5A66a053ae4A4a7eBe13" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9F76Ff3336597FeAB30f5A66a053ae4A4a7eBe13/logo.png b/blockchains/ethereum/assets/0x9F76Ff3336597FeAB30f5A66a053ae4A4a7eBe13/logo.png new file mode 100644 index 00000000..706db41c Binary files /dev/null and b/blockchains/ethereum/assets/0x9F76Ff3336597FeAB30f5A66a053ae4A4a7eBe13/logo.png differ diff --git a/blockchains/ethereum/assets/0x9F8297fc6E2224f5900c3442ABA4425A3e3d94ec/info.json b/blockchains/ethereum/assets/0x9F8297fc6E2224f5900c3442ABA4425A3e3d94ec/info.json new file mode 100644 index 00000000..cfe96b02 --- /dev/null +++ b/blockchains/ethereum/assets/0x9F8297fc6E2224f5900c3442ABA4425A3e3d94ec/info.json @@ -0,0 +1,11 @@ +{ + "name": "MineBlock", + "symbol": "MB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9F8297fc6E2224f5900c3442ABA4425A3e3d94ec", + "status": "abandoned", + "id": "0x9F8297fc6E2224f5900c3442ABA4425A3e3d94ec" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9F8297fc6E2224f5900c3442ABA4425A3e3d94ec/logo.png b/blockchains/ethereum/assets/0x9F8297fc6E2224f5900c3442ABA4425A3e3d94ec/logo.png new file mode 100644 index 00000000..05103972 Binary files /dev/null and b/blockchains/ethereum/assets/0x9F8297fc6E2224f5900c3442ABA4425A3e3d94ec/logo.png differ diff --git a/blockchains/ethereum/assets/0x9F9A0E0747A18426fd29F4A76820C808dA3B140b/info.json b/blockchains/ethereum/assets/0x9F9A0E0747A18426fd29F4A76820C808dA3B140b/info.json new file mode 100644 index 00000000..efcb1989 --- /dev/null +++ b/blockchains/ethereum/assets/0x9F9A0E0747A18426fd29F4A76820C808dA3B140b/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETHBOLD", + "symbol": "ETBOLD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ethbold.org/", + "explorer": "https://etherscan.io/token/0x9F9A0E0747A18426fd29F4A76820C808dA3B140b", + "status": "abandoned", + "id": "0x9F9A0E0747A18426fd29F4A76820C808dA3B140b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9F9A0E0747A18426fd29F4A76820C808dA3B140b/logo.png b/blockchains/ethereum/assets/0x9F9A0E0747A18426fd29F4A76820C808dA3B140b/logo.png new file mode 100644 index 00000000..a6b4300b Binary files /dev/null and b/blockchains/ethereum/assets/0x9F9A0E0747A18426fd29F4A76820C808dA3B140b/logo.png differ diff --git a/blockchains/ethereum/assets/0x9F9c8ec3534c3cE16F928381372BfbFBFb9F4D24/info.json b/blockchains/ethereum/assets/0x9F9c8ec3534c3cE16F928381372BfbFBFb9F4D24/info.json new file mode 100644 index 00000000..b39c8dc0 --- /dev/null +++ b/blockchains/ethereum/assets/0x9F9c8ec3534c3cE16F928381372BfbFBFb9F4D24/info.json @@ -0,0 +1,11 @@ +{ + "name": "GraphLinq", + "symbol": "GLQ", + "type": "ERC20", + "decimals": 18, + "description": "The automation of decentralized DeFi data monitorization and external executions over multi-chain applications.", + "website": "https://graphlinq.io/", + "explorer": "https://etherscan.io/token/0x9f9c8ec3534c3ce16f928381372bfbfbfb9f4d24", + "status": "active", + "id": "0x9F9c8ec3534c3cE16F928381372BfbFBFb9F4D24" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9F9c8ec3534c3cE16F928381372BfbFBFb9F4D24/logo.png b/blockchains/ethereum/assets/0x9F9c8ec3534c3cE16F928381372BfbFBFb9F4D24/logo.png new file mode 100644 index 00000000..65f79b0b Binary files /dev/null and b/blockchains/ethereum/assets/0x9F9c8ec3534c3cE16F928381372BfbFBFb9F4D24/logo.png differ diff --git a/blockchains/ethereum/assets/0x9FE166aa9cF5BbFDBAf31e429E9923D994dB5199/info.json b/blockchains/ethereum/assets/0x9FE166aa9cF5BbFDBAf31e429E9923D994dB5199/info.json new file mode 100644 index 00000000..42fbc923 --- /dev/null +++ b/blockchains/ethereum/assets/0x9FE166aa9cF5BbFDBAf31e429E9923D994dB5199/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITARK Token", + "symbol": "BARK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9FE166aa9cF5BbFDBAf31e429E9923D994dB5199", + "status": "abandoned", + "id": "0x9FE166aa9cF5BbFDBAf31e429E9923D994dB5199" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9FE166aa9cF5BbFDBAf31e429E9923D994dB5199/logo.png b/blockchains/ethereum/assets/0x9FE166aa9cF5BbFDBAf31e429E9923D994dB5199/logo.png new file mode 100644 index 00000000..8151cb08 Binary files /dev/null and b/blockchains/ethereum/assets/0x9FE166aa9cF5BbFDBAf31e429E9923D994dB5199/logo.png differ diff --git a/blockchains/ethereum/assets/0x9FadeA1aFF842D407893e21DBD0E2017b4C287b6/info.json b/blockchains/ethereum/assets/0x9FadeA1aFF842D407893e21DBD0E2017b4C287b6/info.json new file mode 100644 index 00000000..fba1f58e --- /dev/null +++ b/blockchains/ethereum/assets/0x9FadeA1aFF842D407893e21DBD0E2017b4C287b6/info.json @@ -0,0 +1,11 @@ +{ + "name": "PGF500 Token", + "symbol": "PGF7T", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.pgf500.com/", + "explorer": "https://etherscan.io/token/0x9FadeA1aFF842D407893e21DBD0E2017b4C287b6", + "status": "abandoned", + "id": "0x9FadeA1aFF842D407893e21DBD0E2017b4C287b6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9FadeA1aFF842D407893e21DBD0E2017b4C287b6/logo.png b/blockchains/ethereum/assets/0x9FadeA1aFF842D407893e21DBD0E2017b4C287b6/logo.png new file mode 100644 index 00000000..49e63e9d Binary files /dev/null and b/blockchains/ethereum/assets/0x9FadeA1aFF842D407893e21DBD0E2017b4C287b6/logo.png differ diff --git a/blockchains/ethereum/assets/0x9FbA684D77D2d6A1408C24b60A1f5534e71f5b75/info.json b/blockchains/ethereum/assets/0x9FbA684D77D2d6A1408C24b60A1f5534e71f5b75/info.json new file mode 100644 index 00000000..ec40efa7 --- /dev/null +++ b/blockchains/ethereum/assets/0x9FbA684D77D2d6A1408C24b60A1f5534e71f5b75/info.json @@ -0,0 +1,11 @@ +{ + "name": "PATRIOT", + "symbol": "PATR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9FbA684D77D2d6A1408C24b60A1f5534e71f5b75", + "status": "abandoned", + "id": "0x9FbA684D77D2d6A1408C24b60A1f5534e71f5b75" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9FbA684D77D2d6A1408C24b60A1f5534e71f5b75/logo.png b/blockchains/ethereum/assets/0x9FbA684D77D2d6A1408C24b60A1f5534e71f5b75/logo.png new file mode 100755 index 00000000..a696403d Binary files /dev/null and b/blockchains/ethereum/assets/0x9FbA684D77D2d6A1408C24b60A1f5534e71f5b75/logo.png differ diff --git a/blockchains/ethereum/assets/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08/info.json b/blockchains/ethereum/assets/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08/info.json new file mode 100644 index 00000000..8791e09f --- /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 00000000..96147ad9 Binary files /dev/null and b/blockchains/ethereum/assets/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08/logo.png differ diff --git a/blockchains/ethereum/assets/0x9a005c9a89BD72a4Bd27721E7a09A3c11D2b03C4/info.json b/blockchains/ethereum/assets/0x9a005c9a89BD72a4Bd27721E7a09A3c11D2b03C4/info.json new file mode 100644 index 00000000..c4d9c036 --- /dev/null +++ b/blockchains/ethereum/assets/0x9a005c9a89BD72a4Bd27721E7a09A3c11D2b03C4/info.json @@ -0,0 +1,11 @@ +{ + "name": "StarterCoin", + "symbol": "STAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://coinstarter.com/", + "explorer": "https://etherscan.io/token/0x9a005c9a89BD72a4Bd27721E7a09A3c11D2b03C4", + "status": "abandoned", + "id": "0x9a005c9a89BD72a4Bd27721E7a09A3c11D2b03C4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9a005c9a89BD72a4Bd27721E7a09A3c11D2b03C4/logo.png b/blockchains/ethereum/assets/0x9a005c9a89BD72a4Bd27721E7a09A3c11D2b03C4/logo.png new file mode 100644 index 00000000..897fde86 Binary files /dev/null and b/blockchains/ethereum/assets/0x9a005c9a89BD72a4Bd27721E7a09A3c11D2b03C4/logo.png differ diff --git a/blockchains/ethereum/assets/0x9a0242b7a33DAcbe40eDb927834F96eB39f8fBCB/info.json b/blockchains/ethereum/assets/0x9a0242b7a33DAcbe40eDb927834F96eB39f8fBCB/info.json new file mode 100644 index 00000000..df2b2e55 --- /dev/null +++ b/blockchains/ethereum/assets/0x9a0242b7a33DAcbe40eDb927834F96eB39f8fBCB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bax", + "website": "https://getbabb.com", + "description": "A decentralised banking platform that leverages blockchain and biometrics to offer anyone in the world access to a UK bank account for peer-to-peer financial services.", + "explorer": "https://etherscan.io/token/0x9a0242b7a33DAcbe40eDb927834F96eB39f8fBCB", + "type": "ERC20", + "symbol": "BAX", + "decimals": 18, + "status": "abandoned", + "id": "0x9a0242b7a33DAcbe40eDb927834F96eB39f8fBCB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9a0242b7a33DAcbe40eDb927834F96eB39f8fBCB/logo.png b/blockchains/ethereum/assets/0x9a0242b7a33DAcbe40eDb927834F96eB39f8fBCB/logo.png new file mode 100644 index 00000000..1de309ed Binary files /dev/null and b/blockchains/ethereum/assets/0x9a0242b7a33DAcbe40eDb927834F96eB39f8fBCB/logo.png differ diff --git a/blockchains/ethereum/assets/0x9a0587EaE7eF64b2B38A10442a44CfA43EDd7D2A/info.json b/blockchains/ethereum/assets/0x9a0587EaE7eF64b2B38A10442a44CfA43EDd7D2A/info.json new file mode 100644 index 00000000..b8e495c2 --- /dev/null +++ b/blockchains/ethereum/assets/0x9a0587EaE7eF64b2B38A10442a44CfA43EDd7D2A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Welltrado token", + "symbol": "WTL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://welltrado.io/", + "explorer": "https://etherscan.io/token/0x9a0587EaE7eF64b2B38A10442a44CfA43EDd7D2A", + "status": "abandoned", + "id": "0x9a0587EaE7eF64b2B38A10442a44CfA43EDd7D2A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9a0587EaE7eF64b2B38A10442a44CfA43EDd7D2A/logo.png b/blockchains/ethereum/assets/0x9a0587EaE7eF64b2B38A10442a44CfA43EDd7D2A/logo.png new file mode 100644 index 00000000..6374d696 Binary files /dev/null and b/blockchains/ethereum/assets/0x9a0587EaE7eF64b2B38A10442a44CfA43EDd7D2A/logo.png differ diff --git a/blockchains/ethereum/assets/0x9a05f21d2F89837Ebd94E92084fd0Edb407f67C4/info.json b/blockchains/ethereum/assets/0x9a05f21d2F89837Ebd94E92084fd0Edb407f67C4/info.json new file mode 100644 index 00000000..0fda1fd5 --- /dev/null +++ b/blockchains/ethereum/assets/0x9a05f21d2F89837Ebd94E92084fd0Edb407f67C4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nomics.com", + "symbol": "NOM", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9a05f21d2F89837Ebd94E92084fd0Edb407f67C4", + "status": "abandoned", + "id": "0x9a05f21d2F89837Ebd94E92084fd0Edb407f67C4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9a05f21d2F89837Ebd94E92084fd0Edb407f67C4/logo.png b/blockchains/ethereum/assets/0x9a05f21d2F89837Ebd94E92084fd0Edb407f67C4/logo.png new file mode 100644 index 00000000..bf78e2aa Binary files /dev/null and b/blockchains/ethereum/assets/0x9a05f21d2F89837Ebd94E92084fd0Edb407f67C4/logo.png differ diff --git a/blockchains/ethereum/assets/0x9a110A9F9b555625D002e5710E4b3455653a3e85/info.json b/blockchains/ethereum/assets/0x9a110A9F9b555625D002e5710E4b3455653a3e85/info.json new file mode 100644 index 00000000..5319cb5d --- /dev/null +++ b/blockchains/ethereum/assets/0x9a110A9F9b555625D002e5710E4b3455653a3e85/info.json @@ -0,0 +1,11 @@ +{ + "name": "GUUZZ Token", + "symbol": "GUUZZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9a110A9F9b555625D002e5710E4b3455653a3e85", + "status": "abandoned", + "id": "0x9a110A9F9b555625D002e5710E4b3455653a3e85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9a110A9F9b555625D002e5710E4b3455653a3e85/logo.png b/blockchains/ethereum/assets/0x9a110A9F9b555625D002e5710E4b3455653a3e85/logo.png new file mode 100644 index 00000000..57d49a88 Binary files /dev/null and b/blockchains/ethereum/assets/0x9a110A9F9b555625D002e5710E4b3455653a3e85/logo.png differ diff --git a/blockchains/ethereum/assets/0x9a49f02e128a8E989b443a8f94843C0918BF45E7/info.json b/blockchains/ethereum/assets/0x9a49f02e128a8E989b443a8f94843C0918BF45E7/info.json new file mode 100644 index 00000000..45d019a4 --- /dev/null +++ b/blockchains/ethereum/assets/0x9a49f02e128a8E989b443a8f94843C0918BF45E7/info.json @@ -0,0 +1,11 @@ +{ + "name": "TOKOK", + "symbol": "TOK", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://www.tokok.com", + "explorer": "https://etherscan.io/token/0x9a49f02e128a8E989b443a8f94843C0918BF45E7", + "status": "abandoned", + "id": "0x9a49f02e128a8E989b443a8f94843C0918BF45E7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9a49f02e128a8E989b443a8f94843C0918BF45E7/logo.png b/blockchains/ethereum/assets/0x9a49f02e128a8E989b443a8f94843C0918BF45E7/logo.png new file mode 100644 index 00000000..a5c69737 Binary files /dev/null and b/blockchains/ethereum/assets/0x9a49f02e128a8E989b443a8f94843C0918BF45E7/logo.png differ diff --git a/blockchains/ethereum/assets/0x9a794Dc1939F1d78fa48613b89B8f9d0A20dA00E/info.json b/blockchains/ethereum/assets/0x9a794Dc1939F1d78fa48613b89B8f9d0A20dA00E/info.json new file mode 100644 index 00000000..13dff7af --- /dev/null +++ b/blockchains/ethereum/assets/0x9a794Dc1939F1d78fa48613b89B8f9d0A20dA00E/info.json @@ -0,0 +1,11 @@ +{ + "name": "ABX Token", + "symbol": "ABX", + "type": "ERC20", + "decimals": 18, + "description": "A blockchain powered trading platform that integrates crypto assets from multiple exchanges.", + "website": "https://www.arbidex.uk.com/", + "explorer": "https://etherscan.io/token/0x9a794Dc1939F1d78fa48613b89B8f9d0A20dA00E", + "status": "active", + "id": "0x9a794Dc1939F1d78fa48613b89B8f9d0A20dA00E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9a794Dc1939F1d78fa48613b89B8f9d0A20dA00E/logo.png b/blockchains/ethereum/assets/0x9a794Dc1939F1d78fa48613b89B8f9d0A20dA00E/logo.png new file mode 100644 index 00000000..69b2c418 Binary files /dev/null and b/blockchains/ethereum/assets/0x9a794Dc1939F1d78fa48613b89B8f9d0A20dA00E/logo.png differ diff --git a/blockchains/ethereum/assets/0x9a988812d9e215c3D40D34328aD62AEa32B45F48/info.json b/blockchains/ethereum/assets/0x9a988812d9e215c3D40D34328aD62AEa32B45F48/info.json new file mode 100644 index 00000000..b1743746 --- /dev/null +++ b/blockchains/ethereum/assets/0x9a988812d9e215c3D40D34328aD62AEa32B45F48/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-29/30M89", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9a988812d9e215c3D40D34328aD62AEa32B45F48", + "status": "abandoned", + "id": "0x9a988812d9e215c3D40D34328aD62AEa32B45F48" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9a988812d9e215c3D40D34328aD62AEa32B45F48/logo.png b/blockchains/ethereum/assets/0x9a988812d9e215c3D40D34328aD62AEa32B45F48/logo.png new file mode 100644 index 00000000..db42a5c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x9a988812d9e215c3D40D34328aD62AEa32B45F48/logo.png differ diff --git a/blockchains/ethereum/assets/0x9a9bB9b4b11BF8eccff84B58a6CCCCD4058A7f0D/info.json b/blockchains/ethereum/assets/0x9a9bB9b4b11BF8eccff84B58a6CCCCD4058A7f0D/info.json new file mode 100644 index 00000000..2b1445d6 --- /dev/null +++ b/blockchains/ethereum/assets/0x9a9bB9b4b11BF8eccff84B58a6CCCCD4058A7f0D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Card", + "symbol": "VD", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9a9bB9b4b11BF8eccff84B58a6CCCCD4058A7f0D", + "status": "abandoned", + "id": "0x9a9bB9b4b11BF8eccff84B58a6CCCCD4058A7f0D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9a9bB9b4b11BF8eccff84B58a6CCCCD4058A7f0D/logo.png b/blockchains/ethereum/assets/0x9a9bB9b4b11BF8eccff84B58a6CCCCD4058A7f0D/logo.png new file mode 100644 index 00000000..63363d32 Binary files /dev/null and b/blockchains/ethereum/assets/0x9a9bB9b4b11BF8eccff84B58a6CCCCD4058A7f0D/logo.png differ diff --git a/blockchains/ethereum/assets/0x9aF7c46A4ebdfB1e11B5F94196C288c885F37bCD/info.json b/blockchains/ethereum/assets/0x9aF7c46A4ebdfB1e11B5F94196C288c885F37bCD/info.json new file mode 100644 index 00000000..f3fd81af --- /dev/null +++ b/blockchains/ethereum/assets/0x9aF7c46A4ebdfB1e11B5F94196C288c885F37bCD/info.json @@ -0,0 +1,11 @@ +{ + "name": "BakerKingSwap", + "website": "https://bakerkingswap.com/", + "description": "Bakerking is fork from bakeryswap to make more secured, low fees, faster, easily earn from farming.", + "explorer": "https://etherscan.io/token/0x9aF7c46A4ebdfB1e11B5F94196C288c885F37bCD", + "type": "ERC20", + "symbol": "BAKER", + "decimals": 18, + "status": "active", + "id": "0x9aF7c46A4ebdfB1e11B5F94196C288c885F37bCD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9aF7c46A4ebdfB1e11B5F94196C288c885F37bCD/logo.png b/blockchains/ethereum/assets/0x9aF7c46A4ebdfB1e11B5F94196C288c885F37bCD/logo.png new file mode 100644 index 00000000..2daf7c27 Binary files /dev/null and b/blockchains/ethereum/assets/0x9aF7c46A4ebdfB1e11B5F94196C288c885F37bCD/logo.png differ diff --git a/blockchains/ethereum/assets/0x9ab165D795019b6d8B3e971DdA91071421305e5a/info.json b/blockchains/ethereum/assets/0x9ab165D795019b6d8B3e971DdA91071421305e5a/info.json new file mode 100644 index 00000000..406c1d4c --- /dev/null +++ b/blockchains/ethereum/assets/0x9ab165D795019b6d8B3e971DdA91071421305e5a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aurora", + "symbol": "AOA", + "type": "ERC20", + "decimals": 18, + "description": "Auroracoin is a decentralised, peer-to-peer, and secure cryptocurrency released as an alternative to the Icelandic Króna to bypass governmental restrictions associated with the national fiat currency. Aurora Chain offers intelligent application isolation and enables multi-chain parallel expansion to create an extremely high TPS with security maintain.", + "website": "https://www.aurorachain.io/", + "explorer": "https://etherscan.io/token/0x9ab165D795019b6d8B3e971DdA91071421305e5a", + "status": "active", + "id": "0x9ab165D795019b6d8B3e971DdA91071421305e5a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9ab165D795019b6d8B3e971DdA91071421305e5a/logo.png b/blockchains/ethereum/assets/0x9ab165D795019b6d8B3e971DdA91071421305e5a/logo.png new file mode 100755 index 00000000..0db6ffd2 Binary files /dev/null and b/blockchains/ethereum/assets/0x9ab165D795019b6d8B3e971DdA91071421305e5a/logo.png differ diff --git a/blockchains/ethereum/assets/0x9af2c6B1A28D3d6BC084bd267F70e90d49741D5B/info.json b/blockchains/ethereum/assets/0x9af2c6B1A28D3d6BC084bd267F70e90d49741D5B/info.json new file mode 100644 index 00000000..f48c1119 --- /dev/null +++ b/blockchains/ethereum/assets/0x9af2c6B1A28D3d6BC084bd267F70e90d49741D5B/info.json @@ -0,0 +1,11 @@ +{ + "name": "aXpire Token", + "symbol": "AXP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9af2c6B1A28D3d6BC084bd267F70e90d49741D5B", + "status": "abandoned", + "id": "0x9af2c6B1A28D3d6BC084bd267F70e90d49741D5B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9af2c6B1A28D3d6BC084bd267F70e90d49741D5B/logo.png b/blockchains/ethereum/assets/0x9af2c6B1A28D3d6BC084bd267F70e90d49741D5B/logo.png new file mode 100755 index 00000000..7600fcfb Binary files /dev/null and b/blockchains/ethereum/assets/0x9af2c6B1A28D3d6BC084bd267F70e90d49741D5B/logo.png differ diff --git a/blockchains/ethereum/assets/0x9b06D48E0529ecF05905fF52DD426ebEc0EA3011/info.json b/blockchains/ethereum/assets/0x9b06D48E0529ecF05905fF52DD426ebEc0EA3011/info.json new file mode 100644 index 00000000..4f6b8fe4 --- /dev/null +++ b/blockchains/ethereum/assets/0x9b06D48E0529ecF05905fF52DD426ebEc0EA3011/info.json @@ -0,0 +1,11 @@ +{ + "name": "XSwap Token", + "website": "https://xswap.app", + "description": "This is Fair Version, 100% distributed to the community, with No team shares, No Pre-mine.", + "explorer": "https://etherscan.io/token/0x9b06D48E0529ecF05905fF52DD426ebEc0EA3011", + "type": "ERC20", + "symbol": "XSP", + "decimals": 18, + "status": "active", + "id": "0x9b06D48E0529ecF05905fF52DD426ebEc0EA3011" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9b06D48E0529ecF05905fF52DD426ebEc0EA3011/logo.png b/blockchains/ethereum/assets/0x9b06D48E0529ecF05905fF52DD426ebEc0EA3011/logo.png new file mode 100644 index 00000000..06ce43cc Binary files /dev/null and b/blockchains/ethereum/assets/0x9b06D48E0529ecF05905fF52DD426ebEc0EA3011/logo.png differ diff --git a/blockchains/ethereum/assets/0x9b12B29399e0797b48822F6857fA2CeccF5d9f2f/info.json b/blockchains/ethereum/assets/0x9b12B29399e0797b48822F6857fA2CeccF5d9f2f/info.json new file mode 100644 index 00000000..235e77ab --- /dev/null +++ b/blockchains/ethereum/assets/0x9b12B29399e0797b48822F6857fA2CeccF5d9f2f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tripxchain", + "symbol": "TXC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9b12B29399e0797b48822F6857fA2CeccF5d9f2f", + "status": "abandoned", + "id": "0x9b12B29399e0797b48822F6857fA2CeccF5d9f2f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9b12B29399e0797b48822F6857fA2CeccF5d9f2f/logo.png b/blockchains/ethereum/assets/0x9b12B29399e0797b48822F6857fA2CeccF5d9f2f/logo.png new file mode 100644 index 00000000..33eeeb10 Binary files /dev/null and b/blockchains/ethereum/assets/0x9b12B29399e0797b48822F6857fA2CeccF5d9f2f/logo.png differ diff --git a/blockchains/ethereum/assets/0x9b13ef21B4cD039C250D5694cEdfEE699478F978/info.json b/blockchains/ethereum/assets/0x9b13ef21B4cD039C250D5694cEdfEE699478F978/info.json new file mode 100644 index 00000000..ba51bd94 --- /dev/null +++ b/blockchains/ethereum/assets/0x9b13ef21B4cD039C250D5694cEdfEE699478F978/info.json @@ -0,0 +1,11 @@ +{ + "name": "Motioncoin", + "symbol": "MTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9b13ef21B4cD039C250D5694cEdfEE699478F978", + "status": "abandoned", + "id": "0x9b13ef21B4cD039C250D5694cEdfEE699478F978" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9b13ef21B4cD039C250D5694cEdfEE699478F978/logo.png b/blockchains/ethereum/assets/0x9b13ef21B4cD039C250D5694cEdfEE699478F978/logo.png new file mode 100644 index 00000000..6c41e826 Binary files /dev/null and b/blockchains/ethereum/assets/0x9b13ef21B4cD039C250D5694cEdfEE699478F978/logo.png differ diff --git a/blockchains/ethereum/assets/0x9b3E946E1a8ea0112b147aF4E6e020752F2446BC/info.json b/blockchains/ethereum/assets/0x9b3E946E1a8ea0112b147aF4E6e020752F2446BC/info.json new file mode 100644 index 00000000..41e0b31b --- /dev/null +++ b/blockchains/ethereum/assets/0x9b3E946E1a8ea0112b147aF4E6e020752F2446BC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Puregold Token", + "symbol": "PGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9b3E946E1a8ea0112b147aF4E6e020752F2446BC", + "status": "abandoned", + "id": "0x9b3E946E1a8ea0112b147aF4E6e020752F2446BC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9b3E946E1a8ea0112b147aF4E6e020752F2446BC/logo.png b/blockchains/ethereum/assets/0x9b3E946E1a8ea0112b147aF4E6e020752F2446BC/logo.png new file mode 100644 index 00000000..85aa4419 Binary files /dev/null and b/blockchains/ethereum/assets/0x9b3E946E1a8ea0112b147aF4E6e020752F2446BC/logo.png differ diff --git a/blockchains/ethereum/assets/0x9b4e2B4B13d125238Aa0480dD42B4f6fC71b37CC/info.json b/blockchains/ethereum/assets/0x9b4e2B4B13d125238Aa0480dD42B4f6fC71b37CC/info.json new file mode 100644 index 00000000..ea5452d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x9b4e2B4B13d125238Aa0480dD42B4f6fC71b37CC/info.json @@ -0,0 +1,11 @@ +{ + "name": "MT Token", + "symbol": "MT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://mytoken.io/en/", + "explorer": "https://etherscan.io/token/0x9b4e2B4B13d125238Aa0480dD42B4f6fC71b37CC", + "status": "abandoned", + "id": "0x9b4e2B4B13d125238Aa0480dD42B4f6fC71b37CC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9b4e2B4B13d125238Aa0480dD42B4f6fC71b37CC/logo.png b/blockchains/ethereum/assets/0x9b4e2B4B13d125238Aa0480dD42B4f6fC71b37CC/logo.png new file mode 100644 index 00000000..94b566e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x9b4e2B4B13d125238Aa0480dD42B4f6fC71b37CC/logo.png differ diff --git a/blockchains/ethereum/assets/0x9b53E429B0baDd98ef7F01F03702986c516a5715/info.json b/blockchains/ethereum/assets/0x9b53E429B0baDd98ef7F01F03702986c516a5715/info.json new file mode 100644 index 00000000..c2e85feb --- /dev/null +++ b/blockchains/ethereum/assets/0x9b53E429B0baDd98ef7F01F03702986c516a5715/info.json @@ -0,0 +1,34 @@ +{ + "name": "hybrix", + "website": "https://hybrix.io", + "description": "Every distributed ledger and blockchain has its own strengths. The hybrix token gives access to all these benefits as it exists on top of all distributed ledger systems. The open hybrix protocol enables free transport of value between all distributed ledgers. A welcoming addition next to the possibilities of atomic swaps and decentralized exchanges.", + "explorer": "https://etherscan.io/token/0x9b53E429B0baDd98ef7F01F03702986c516a5715", + "research": "https://api.hybrix.io", + "type": "ERC20", + "symbol": "HY", + "decimals": 18, + "status": "active", + "id": "0x9b53E429B0baDd98ef7F01F03702986c516a5715", + "links": [ + { + "name": "github", + "url": "https://github.com/hybrix-io" + }, + { + "name": "x", + "url": "https://x.com/@hybrix_io" + }, + { + "name": "telegram", + "url": "https://t.me/hybrixgroup" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCGosRXmL1w7nG4TOUUFghTw" + }, + { + "name": "whitepaper", + "url": "https://hybrix.io/en/docs/papers" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9b53E429B0baDd98ef7F01F03702986c516a5715/logo.png b/blockchains/ethereum/assets/0x9b53E429B0baDd98ef7F01F03702986c516a5715/logo.png new file mode 100644 index 00000000..a5167e37 Binary files /dev/null and b/blockchains/ethereum/assets/0x9b53E429B0baDd98ef7F01F03702986c516a5715/logo.png differ diff --git a/blockchains/ethereum/assets/0x9b56f5ED5A94Ae3266b7FF21953e6626F94008F1/info.json b/blockchains/ethereum/assets/0x9b56f5ED5A94Ae3266b7FF21953e6626F94008F1/info.json new file mode 100644 index 00000000..33520b10 --- /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 00000000..8439cf72 Binary files /dev/null and b/blockchains/ethereum/assets/0x9b56f5ED5A94Ae3266b7FF21953e6626F94008F1/logo.png differ diff --git a/blockchains/ethereum/assets/0x9b6443b0fB9C241A7fdAC375595cEa13e6B7807A/info.json b/blockchains/ethereum/assets/0x9b6443b0fB9C241A7fdAC375595cEa13e6B7807A/info.json new file mode 100644 index 00000000..948f1c81 --- /dev/null +++ b/blockchains/ethereum/assets/0x9b6443b0fB9C241A7fdAC375595cEa13e6B7807A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Reality Clash Coin", + "symbol": "RCC", + "type": "ERC20", + "decimals": 18, + "description": "Reality Clash is an Augmented Reality FPS combat game set in an underground world of cryptocurrency and hackers.", + "website": "http://reality-clash.com/", + "explorer": "https://etherscan.io/token/0x9b6443b0fB9C241A7fdAC375595cEa13e6B7807A", + "status": "active", + "id": "0x9b6443b0fB9C241A7fdAC375595cEa13e6B7807A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9b6443b0fB9C241A7fdAC375595cEa13e6B7807A/logo.png b/blockchains/ethereum/assets/0x9b6443b0fB9C241A7fdAC375595cEa13e6B7807A/logo.png new file mode 100644 index 00000000..adbb8f85 Binary files /dev/null and b/blockchains/ethereum/assets/0x9b6443b0fB9C241A7fdAC375595cEa13e6B7807A/logo.png differ diff --git a/blockchains/ethereum/assets/0x9bA00D6856a4eDF4665BcA2C2309936572473B7E/info.json b/blockchains/ethereum/assets/0x9bA00D6856a4eDF4665BcA2C2309936572473B7E/info.json new file mode 100644 index 00000000..e0cd6bac --- /dev/null +++ b/blockchains/ethereum/assets/0x9bA00D6856a4eDF4665BcA2C2309936572473B7E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave USDC V1", + "symbol": "aUSDC V1", + "type": "ERC20", + "decimals": 6, + "description": "Aave USDC V1 is an interest bearing token pegged 1:1 to the underlying USDC deposited in Aave V1. aUSDC V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x9bA00D6856a4eDF4665BcA2C2309936572473B7E", + "status": "abandoned", + "id": "0x9bA00D6856a4eDF4665BcA2C2309936572473B7E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9bA00D6856a4eDF4665BcA2C2309936572473B7E/logo.png b/blockchains/ethereum/assets/0x9bA00D6856a4eDF4665BcA2C2309936572473B7E/logo.png new file mode 100644 index 00000000..5563d296 Binary files /dev/null and b/blockchains/ethereum/assets/0x9bA00D6856a4eDF4665BcA2C2309936572473B7E/logo.png differ diff --git a/blockchains/ethereum/assets/0x9bBC245ccd40E046ccCADA849891B88c06b1626e/info.json b/blockchains/ethereum/assets/0x9bBC245ccd40E046ccCADA849891B88c06b1626e/info.json new file mode 100644 index 00000000..0cc3ff29 --- /dev/null +++ b/blockchains/ethereum/assets/0x9bBC245ccd40E046ccCADA849891B88c06b1626e/info.json @@ -0,0 +1,11 @@ +{ + "name": "STAKEBIT", + "symbol": "SBIT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9bBC245ccd40E046ccCADA849891B88c06b1626e", + "status": "abandoned", + "id": "0x9bBC245ccd40E046ccCADA849891B88c06b1626e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9bBC245ccd40E046ccCADA849891B88c06b1626e/logo.png b/blockchains/ethereum/assets/0x9bBC245ccd40E046ccCADA849891B88c06b1626e/logo.png new file mode 100644 index 00000000..22bdf1d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x9bBC245ccd40E046ccCADA849891B88c06b1626e/logo.png differ diff --git a/blockchains/ethereum/assets/0x9bBc9286cdF6eeFEBF21DF19Bac71c6Bdd7759D4/info.json b/blockchains/ethereum/assets/0x9bBc9286cdF6eeFEBF21DF19Bac71c6Bdd7759D4/info.json new file mode 100644 index 00000000..98fca12b --- /dev/null +++ b/blockchains/ethereum/assets/0x9bBc9286cdF6eeFEBF21DF19Bac71c6Bdd7759D4/info.json @@ -0,0 +1,11 @@ +{ + "name": "QBEE", + "symbol": "QBZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.queenbeecompany.io/", + "explorer": "https://etherscan.io/token/0x9bBc9286cdF6eeFEBF21DF19Bac71c6Bdd7759D4", + "status": "abandoned", + "id": "0x9bBc9286cdF6eeFEBF21DF19Bac71c6Bdd7759D4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9bBc9286cdF6eeFEBF21DF19Bac71c6Bdd7759D4/logo.png b/blockchains/ethereum/assets/0x9bBc9286cdF6eeFEBF21DF19Bac71c6Bdd7759D4/logo.png new file mode 100644 index 00000000..3f695d6d Binary files /dev/null and b/blockchains/ethereum/assets/0x9bBc9286cdF6eeFEBF21DF19Bac71c6Bdd7759D4/logo.png differ diff --git a/blockchains/ethereum/assets/0x9bd8eD9585Ab6B51eAC59E254317D6a7beDe6feB/info.json b/blockchains/ethereum/assets/0x9bd8eD9585Ab6B51eAC59E254317D6a7beDe6feB/info.json new file mode 100644 index 00000000..50c52c1a --- /dev/null +++ b/blockchains/ethereum/assets/0x9bd8eD9585Ab6B51eAC59E254317D6a7beDe6feB/info.json @@ -0,0 +1,11 @@ +{ + "name": "IRCMTOKEN.COM", + "symbol": "IRCM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9bd8eD9585Ab6B51eAC59E254317D6a7beDe6feB", + "status": "abandoned", + "id": "0x9bd8eD9585Ab6B51eAC59E254317D6a7beDe6feB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9bd8eD9585Ab6B51eAC59E254317D6a7beDe6feB/logo.png b/blockchains/ethereum/assets/0x9bd8eD9585Ab6B51eAC59E254317D6a7beDe6feB/logo.png new file mode 100644 index 00000000..6d3c450e Binary files /dev/null and b/blockchains/ethereum/assets/0x9bd8eD9585Ab6B51eAC59E254317D6a7beDe6feB/logo.png differ diff --git a/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/info.json b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/info.json new file mode 100644 index 00000000..2bcbbcd1 --- /dev/null +++ b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/info.json @@ -0,0 +1,37 @@ +{ + "name": "Ben", + "type": "ERC20", + "symbol": "BEN", + "decimals": 18, + "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": "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/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ben-2/" + } + ], + "tags": [ + "governance", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/logo.png b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/logo.png new file mode 100644 index 00000000..665e2966 Binary files /dev/null and b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/logo.png differ diff --git a/blockchains/ethereum/assets/0x9c12d9b1223130B641154d8d3DB35F91D81c8dfd/info.json b/blockchains/ethereum/assets/0x9c12d9b1223130B641154d8d3DB35F91D81c8dfd/info.json new file mode 100644 index 00000000..59d1faf7 --- /dev/null +++ b/blockchains/ethereum/assets/0x9c12d9b1223130B641154d8d3DB35F91D81c8dfd/info.json @@ -0,0 +1,11 @@ +{ + "name": "INBIT", + "website": "https://prepayway.com/", + "description": "PrepayWay InBit Token", + "explorer": "https://etherscan.io/token/0x9c12d9b1223130B641154d8d3DB35F91D81c8dfd", + "type": "ERC20", + "symbol": "InBit", + "decimals": 18, + "status": "active", + "id": "0x9c12d9b1223130B641154d8d3DB35F91D81c8dfd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9c12d9b1223130B641154d8d3DB35F91D81c8dfd/logo.png b/blockchains/ethereum/assets/0x9c12d9b1223130B641154d8d3DB35F91D81c8dfd/logo.png new file mode 100644 index 00000000..0c0b019a Binary files /dev/null and b/blockchains/ethereum/assets/0x9c12d9b1223130B641154d8d3DB35F91D81c8dfd/logo.png differ diff --git a/blockchains/ethereum/assets/0x9c197c4b58527fAAAb67CB35E3145166B23D242e/info.json b/blockchains/ethereum/assets/0x9c197c4b58527fAAAb67CB35E3145166B23D242e/info.json new file mode 100644 index 00000000..ae3a698e --- /dev/null +++ b/blockchains/ethereum/assets/0x9c197c4b58527fAAAb67CB35E3145166B23D242e/info.json @@ -0,0 +1,11 @@ +{ + "name": "HashNet BitEco", + "symbol": "HNB", + "type": "ERC20", + "decimals": 18, + "description": "HNB aims to build a decentralized blockchain network where individuals and enterprises can exchange products and services with trust and security.", + "website": "https://hnb.eco", + "explorer": "https://etherscan.io/token/0x9c197c4b58527fAAAb67CB35E3145166B23D242e", + "status": "abandoned", + "id": "0x9c197c4b58527fAAAb67CB35E3145166B23D242e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9c197c4b58527fAAAb67CB35E3145166B23D242e/logo.png b/blockchains/ethereum/assets/0x9c197c4b58527fAAAb67CB35E3145166B23D242e/logo.png new file mode 100644 index 00000000..3076fff8 Binary files /dev/null and b/blockchains/ethereum/assets/0x9c197c4b58527fAAAb67CB35E3145166B23D242e/logo.png differ diff --git a/blockchains/ethereum/assets/0x9c23D67AEA7B95D80942e3836BCDF7E708A747C2/info.json b/blockchains/ethereum/assets/0x9c23D67AEA7B95D80942e3836BCDF7E708A747C2/info.json new file mode 100644 index 00000000..5d6c6fba --- /dev/null +++ b/blockchains/ethereum/assets/0x9c23D67AEA7B95D80942e3836BCDF7E708A747C2/info.json @@ -0,0 +1,11 @@ +{ + "name": "LOCIcoin", + "symbol": "LOCI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.loci.io/", + "explorer": "https://etherscan.io/token/0x9c23D67AEA7B95D80942e3836BCDF7E708A747C2", + "status": "abandoned", + "id": "0x9c23D67AEA7B95D80942e3836BCDF7E708A747C2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9c23D67AEA7B95D80942e3836BCDF7E708A747C2/logo.png b/blockchains/ethereum/assets/0x9c23D67AEA7B95D80942e3836BCDF7E708A747C2/logo.png new file mode 100755 index 00000000..4e9511a7 Binary files /dev/null and b/blockchains/ethereum/assets/0x9c23D67AEA7B95D80942e3836BCDF7E708A747C2/logo.png differ diff --git a/blockchains/ethereum/assets/0x9c405acf8688AfB61B3197421cDeeC1A266c6839/info.json b/blockchains/ethereum/assets/0x9c405acf8688AfB61B3197421cDeeC1A266c6839/info.json new file mode 100644 index 00000000..20e88566 --- /dev/null +++ b/blockchains/ethereum/assets/0x9c405acf8688AfB61B3197421cDeeC1A266c6839/info.json @@ -0,0 +1,11 @@ +{ + "name": "DogeYield", + "website": "https://dogeyield.com", + "description": "DogeYield is Yield Farming Paltform with dogecoin rewards for DOGY holders and Stakers. Dogeyield provides the users with hold system without making deposits to join the yield farming.", + "explorer": "https://etherscan.io/token/0x9c405acf8688AfB61B3197421cDeeC1A266c6839", + "type": "ERC20", + "symbol": "DOGY", + "decimals": 18, + "status": "active", + "id": "0x9c405acf8688AfB61B3197421cDeeC1A266c6839" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9c405acf8688AfB61B3197421cDeeC1A266c6839/logo.png b/blockchains/ethereum/assets/0x9c405acf8688AfB61B3197421cDeeC1A266c6839/logo.png new file mode 100644 index 00000000..fbbea361 Binary files /dev/null and b/blockchains/ethereum/assets/0x9c405acf8688AfB61B3197421cDeeC1A266c6839/logo.png differ diff --git a/blockchains/ethereum/assets/0x9c45BcE7c51d3900d6cb7025EeA9c3B0675C65c4/info.json b/blockchains/ethereum/assets/0x9c45BcE7c51d3900d6cb7025EeA9c3B0675C65c4/info.json new file mode 100644 index 00000000..ecde5864 --- /dev/null +++ b/blockchains/ethereum/assets/0x9c45BcE7c51d3900d6cb7025EeA9c3B0675C65c4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planetagro-Exchange", + "symbol": "ONION", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9c45BcE7c51d3900d6cb7025EeA9c3B0675C65c4", + "status": "abandoned", + "id": "0x9c45BcE7c51d3900d6cb7025EeA9c3B0675C65c4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9c45BcE7c51d3900d6cb7025EeA9c3B0675C65c4/logo.png b/blockchains/ethereum/assets/0x9c45BcE7c51d3900d6cb7025EeA9c3B0675C65c4/logo.png new file mode 100644 index 00000000..99fe1f0c Binary files /dev/null and b/blockchains/ethereum/assets/0x9c45BcE7c51d3900d6cb7025EeA9c3B0675C65c4/logo.png differ diff --git a/blockchains/ethereum/assets/0x9c4c000ECD08a7C798f320F75e252A78CD1E6189/info.json b/blockchains/ethereum/assets/0x9c4c000ECD08a7C798f320F75e252A78CD1E6189/info.json new file mode 100644 index 00000000..7671c7b4 --- /dev/null +++ b/blockchains/ethereum/assets/0x9c4c000ECD08a7C798f320F75e252A78CD1E6189/info.json @@ -0,0 +1,11 @@ +{ + "name": "DD Copper", + "symbol": "DDC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9c4c000ECD08a7C798f320F75e252A78CD1E6189", + "status": "active", + "id": "0x9c4c000ECD08a7C798f320F75e252A78CD1E6189" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9c4c000ECD08a7C798f320F75e252A78CD1E6189/logo.png b/blockchains/ethereum/assets/0x9c4c000ECD08a7C798f320F75e252A78CD1E6189/logo.png new file mode 100644 index 00000000..845cb806 Binary files /dev/null and b/blockchains/ethereum/assets/0x9c4c000ECD08a7C798f320F75e252A78CD1E6189/logo.png differ diff --git a/blockchains/ethereum/assets/0x9c6Fa42209169bCeA032e401188a6fc3e9C9f59c/info.json b/blockchains/ethereum/assets/0x9c6Fa42209169bCeA032e401188a6fc3e9C9f59c/info.json new file mode 100644 index 00000000..9a2ff38a --- /dev/null +++ b/blockchains/ethereum/assets/0x9c6Fa42209169bCeA032e401188a6fc3e9C9f59c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decentralized Universal Basic Income", + "symbol": "DUBI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9c6Fa42209169bCeA032e401188a6fc3e9C9f59c", + "status": "abandoned", + "id": "0x9c6Fa42209169bCeA032e401188a6fc3e9C9f59c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9c6Fa42209169bCeA032e401188a6fc3e9C9f59c/logo.png b/blockchains/ethereum/assets/0x9c6Fa42209169bCeA032e401188a6fc3e9C9f59c/logo.png new file mode 100755 index 00000000..99860879 Binary files /dev/null and b/blockchains/ethereum/assets/0x9c6Fa42209169bCeA032e401188a6fc3e9C9f59c/logo.png differ diff --git a/blockchains/ethereum/assets/0x9c794f933b4DD8B49031A79b0f924D68BEF43992/info.json b/blockchains/ethereum/assets/0x9c794f933b4DD8B49031A79b0f924D68BEF43992/info.json new file mode 100644 index 00000000..66501e6e --- /dev/null +++ b/blockchains/ethereum/assets/0x9c794f933b4DD8B49031A79b0f924D68BEF43992/info.json @@ -0,0 +1,11 @@ +{ + "name": "XTRD", + "symbol": "XTRD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://xtrd.io/", + "explorer": "https://etherscan.io/token/0x9c794f933b4DD8B49031A79b0f924D68BEF43992", + "status": "abandoned", + "id": "0x9c794f933b4DD8B49031A79b0f924D68BEF43992" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9c794f933b4DD8B49031A79b0f924D68BEF43992/logo.png b/blockchains/ethereum/assets/0x9c794f933b4DD8B49031A79b0f924D68BEF43992/logo.png new file mode 100644 index 00000000..d9deb91c Binary files /dev/null and b/blockchains/ethereum/assets/0x9c794f933b4DD8B49031A79b0f924D68BEF43992/logo.png differ diff --git a/blockchains/ethereum/assets/0x9cAAA528c4F8adcFfFc8063c736C05f211908e0D/info.json b/blockchains/ethereum/assets/0x9cAAA528c4F8adcFfFc8063c736C05f211908e0D/info.json new file mode 100644 index 00000000..da76aac9 --- /dev/null +++ b/blockchains/ethereum/assets/0x9cAAA528c4F8adcFfFc8063c736C05f211908e0D/info.json @@ -0,0 +1,11 @@ +{ + "name": "WpayCoin", + "symbol": "WPAY", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9cAAA528c4F8adcFfFc8063c736C05f211908e0D", + "status": "abandoned", + "id": "0x9cAAA528c4F8adcFfFc8063c736C05f211908e0D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9cAAA528c4F8adcFfFc8063c736C05f211908e0D/logo.png b/blockchains/ethereum/assets/0x9cAAA528c4F8adcFfFc8063c736C05f211908e0D/logo.png new file mode 100644 index 00000000..8d6b6f30 Binary files /dev/null and b/blockchains/ethereum/assets/0x9cAAA528c4F8adcFfFc8063c736C05f211908e0D/logo.png differ diff --git a/blockchains/ethereum/assets/0x9cB1AEaFcc8A9406632C5B084246Ea72f62d37b6/info.json b/blockchains/ethereum/assets/0x9cB1AEaFcc8A9406632C5B084246Ea72f62d37b6/info.json new file mode 100644 index 00000000..60e21d6e --- /dev/null +++ b/blockchains/ethereum/assets/0x9cB1AEaFcc8A9406632C5B084246Ea72f62d37b6/info.json @@ -0,0 +1,11 @@ +{ + "name": "LBK", + "symbol": "LBK", + "type": "ERC20", + "decimals": 8, + "description": "LBank releases its own exchange token 'LBK'. LBK will benefit from the blockchain technology and digital financial operation capabilities of LBank, and combined with the community-self-governance concept.", + "website": "https://www.lbank.info/", + "explorer": "https://etherscan.io/token/0x9cB1AEaFcc8A9406632C5B084246Ea72f62d37b6", + "status": "active", + "id": "0x9cB1AEaFcc8A9406632C5B084246Ea72f62d37b6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9cB1AEaFcc8A9406632C5B084246Ea72f62d37b6/logo.png b/blockchains/ethereum/assets/0x9cB1AEaFcc8A9406632C5B084246Ea72f62d37b6/logo.png new file mode 100644 index 00000000..1d78ed11 Binary files /dev/null and b/blockchains/ethereum/assets/0x9cB1AEaFcc8A9406632C5B084246Ea72f62d37b6/logo.png differ diff --git a/blockchains/ethereum/assets/0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544/info.json b/blockchains/ethereum/assets/0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544/info.json new file mode 100644 index 00000000..64424858 --- /dev/null +++ b/blockchains/ethereum/assets/0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544/info.json @@ -0,0 +1,25 @@ +{ + "name": "Doki Doki Finance", + "website": "https://dokidoki.finance", + "description": "Experience DeFi in Retro Japan", + "explorer": "https://etherscan.io/token/0x9ceb84f92a0561fa3cc4132ab9c0b76a59787544", + "type": "ERC20", + "symbol": "DOKI", + "decimals": 18, + "status": "active", + "id": "0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544", + "links": [ + { + "name": "github", + "url": "https://github.com/dokidokidefi" + }, + { + "name": "x", + "url": "https://x.com/dokidokifinance" + }, + { + "name": "medium", + "url": "https://medium.com/@dokidoki.finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544/logo.png b/blockchains/ethereum/assets/0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544/logo.png new file mode 100644 index 00000000..65a9caad Binary files /dev/null and b/blockchains/ethereum/assets/0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544/logo.png differ diff --git a/blockchains/ethereum/assets/0x9cFA08002d606e638Fe91941bE725e1b970B84a6/info.json b/blockchains/ethereum/assets/0x9cFA08002d606e638Fe91941bE725e1b970B84a6/info.json new file mode 100644 index 00000000..22e3e666 --- /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 00000000..275ec766 Binary files /dev/null and b/blockchains/ethereum/assets/0x9cFA08002d606e638Fe91941bE725e1b970B84a6/logo.png differ diff --git a/blockchains/ethereum/assets/0x9cc9658382483ECd0f2117DE6B7656AA4013fa07/info.json b/blockchains/ethereum/assets/0x9cc9658382483ECd0f2117DE6B7656AA4013fa07/info.json new file mode 100644 index 00000000..1a2592db --- /dev/null +++ b/blockchains/ethereum/assets/0x9cc9658382483ECd0f2117DE6B7656AA4013fa07/info.json @@ -0,0 +1,11 @@ +{ + "name": "REDFM (Rediscover Fund Management by Blockchain)", + "symbol": "REDFM", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9cc9658382483ECd0f2117DE6B7656AA4013fa07", + "status": "abandoned", + "id": "0x9cc9658382483ECd0f2117DE6B7656AA4013fa07" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9cc9658382483ECd0f2117DE6B7656AA4013fa07/logo.png b/blockchains/ethereum/assets/0x9cc9658382483ECd0f2117DE6B7656AA4013fa07/logo.png new file mode 100755 index 00000000..424162f3 Binary files /dev/null and b/blockchains/ethereum/assets/0x9cc9658382483ECd0f2117DE6B7656AA4013fa07/logo.png differ diff --git a/blockchains/ethereum/assets/0x9cdf242Ef7975D8c68D5C1F5B6905801699b1940/info.json b/blockchains/ethereum/assets/0x9cdf242Ef7975D8c68D5C1F5B6905801699b1940/info.json new file mode 100644 index 00000000..93f36327 --- /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 00000000..c7c91dda Binary files /dev/null and b/blockchains/ethereum/assets/0x9cdf242Ef7975D8c68D5C1F5B6905801699b1940/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d0A4859Aa6a2909E7421b09F701f677F27f1aB4/info.json b/blockchains/ethereum/assets/0x9d0A4859Aa6a2909E7421b09F701f677F27f1aB4/info.json new file mode 100644 index 00000000..ca54d88a --- /dev/null +++ b/blockchains/ethereum/assets/0x9d0A4859Aa6a2909E7421b09F701f677F27f1aB4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wallstreetbets", + "symbol": "WSB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9d0A4859Aa6a2909E7421b09F701f677F27f1aB4", + "status": "abandoned", + "id": "0x9d0A4859Aa6a2909E7421b09F701f677F27f1aB4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9d0A4859Aa6a2909E7421b09F701f677F27f1aB4/logo.png b/blockchains/ethereum/assets/0x9d0A4859Aa6a2909E7421b09F701f677F27f1aB4/logo.png new file mode 100644 index 00000000..dcce9b66 Binary files /dev/null and b/blockchains/ethereum/assets/0x9d0A4859Aa6a2909E7421b09F701f677F27f1aB4/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d1555d8cB3C846Bb4f7D5B1B1080872c3166676/info.json b/blockchains/ethereum/assets/0x9d1555d8cB3C846Bb4f7D5B1B1080872c3166676/info.json new file mode 100644 index 00000000..f69605ff --- /dev/null +++ b/blockchains/ethereum/assets/0x9d1555d8cB3C846Bb4f7D5B1B1080872c3166676/info.json @@ -0,0 +1,32 @@ +{ + "name": "mSLV Token", + "website": "https://mirror.finance", + "description": "Wrapped Mirror SLV Token.", + "explorer": "https://etherscan.io/token/0x9d1555d8cB3C846Bb4f7D5B1B1080872c3166676", + "type": "ERC20", + "symbol": "mSLV", + "decimals": 18, + "status": "active", + "id": "0x9d1555d8cB3C846Bb4f7D5B1B1080872c3166676", + "tags": [ + "wrapped" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MirrorProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/mirror_protocol" + }, + { + "name": "discord", + "url": "https://discord.com/MirrorProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/@mirror-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9d1555d8cB3C846Bb4f7D5B1B1080872c3166676/logo.png b/blockchains/ethereum/assets/0x9d1555d8cB3C846Bb4f7D5B1B1080872c3166676/logo.png new file mode 100644 index 00000000..82a94b70 Binary files /dev/null and b/blockchains/ethereum/assets/0x9d1555d8cB3C846Bb4f7D5B1B1080872c3166676/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d1A7A3191102e9F900Faa10540837ba84dCBAE7/info.json b/blockchains/ethereum/assets/0x9d1A7A3191102e9F900Faa10540837ba84dCBAE7/info.json new file mode 100644 index 00000000..3eed519f --- /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 00000000..aa298592 Binary files /dev/null and b/blockchains/ethereum/assets/0x9d1A7A3191102e9F900Faa10540837ba84dCBAE7/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d1C2A187cf908aEd8CFAe2353Ef72F06223d54D/info.json b/blockchains/ethereum/assets/0x9d1C2A187cf908aEd8CFAe2353Ef72F06223d54D/info.json new file mode 100644 index 00000000..7875b65f --- /dev/null +++ b/blockchains/ethereum/assets/0x9d1C2A187cf908aEd8CFAe2353Ef72F06223d54D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Strike WBTC", + "symbol": "sWBTC", + "type": "ERC20", + "decimals": 18, + "description": "Strike Finance collateral cryptocurrency", + "explorer": "https://etherscan.io/token/0x9d1C2A187cf908aEd8CFAe2353Ef72F06223d54D", + "status": "active", + "id": "0x9d1C2A187cf908aEd8CFAe2353Ef72F06223d54D", + "website": "https://strike.org" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9d1C2A187cf908aEd8CFAe2353Ef72F06223d54D/logo.png b/blockchains/ethereum/assets/0x9d1C2A187cf908aEd8CFAe2353Ef72F06223d54D/logo.png new file mode 100644 index 00000000..b39e3454 Binary files /dev/null and b/blockchains/ethereum/assets/0x9d1C2A187cf908aEd8CFAe2353Ef72F06223d54D/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json b/blockchains/ethereum/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json new file mode 100644 index 00000000..0f0b30c5 --- /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 00000000..2af9425e Binary files /dev/null and b/blockchains/ethereum/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d28AFED23F02Ba3646f85766484BF576f6918A8/info.json b/blockchains/ethereum/assets/0x9d28AFED23F02Ba3646f85766484BF576f6918A8/info.json new file mode 100644 index 00000000..7e480c53 --- /dev/null +++ b/blockchains/ethereum/assets/0x9d28AFED23F02Ba3646f85766484BF576f6918A8/info.json @@ -0,0 +1,11 @@ +{ + "name": "GRAND", + "symbol": "G", + "type": "ERC20", + "decimals": 15, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9d28AFED23F02Ba3646f85766484BF576f6918A8", + "status": "abandoned", + "id": "0x9d28AFED23F02Ba3646f85766484BF576f6918A8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9d28AFED23F02Ba3646f85766484BF576f6918A8/logo.png b/blockchains/ethereum/assets/0x9d28AFED23F02Ba3646f85766484BF576f6918A8/logo.png new file mode 100755 index 00000000..b340fb45 Binary files /dev/null and b/blockchains/ethereum/assets/0x9d28AFED23F02Ba3646f85766484BF576f6918A8/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d2FEE79BB1661e0Ba407A178CBF070561Fd5296/info.json b/blockchains/ethereum/assets/0x9d2FEE79BB1661e0Ba407A178CBF070561Fd5296/info.json new file mode 100644 index 00000000..7f4a10cc --- /dev/null +++ b/blockchains/ethereum/assets/0x9d2FEE79BB1661e0Ba407A178CBF070561Fd5296/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cannabit", + "symbol": "CBT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9d2FEE79BB1661e0Ba407A178CBF070561Fd5296", + "status": "abandoned", + "id": "0x9d2FEE79BB1661e0Ba407A178CBF070561Fd5296" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9d2FEE79BB1661e0Ba407A178CBF070561Fd5296/logo.png b/blockchains/ethereum/assets/0x9d2FEE79BB1661e0Ba407A178CBF070561Fd5296/logo.png new file mode 100644 index 00000000..06be2654 Binary files /dev/null and b/blockchains/ethereum/assets/0x9d2FEE79BB1661e0Ba407A178CBF070561Fd5296/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d4C6AD12B55E4645b585209F90Cc26614061E91/info.json b/blockchains/ethereum/assets/0x9d4C6AD12B55E4645b585209F90Cc26614061E91/info.json new file mode 100644 index 00000000..21bf5f35 --- /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 00000000..c6fbb570 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 new file mode 100644 index 00000000..92817204 --- /dev/null +++ b/blockchains/ethereum/assets/0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804/info.json @@ -0,0 +1,58 @@ +{ + "name": "NVIR Token", + "website": "https://nvirworld-nft.com/", + "description": "NvirWorld is a new concept blockchain which aims to create a new digital world where everything users enjoy becomes profitable.", + "explorer": "https://etherscan.io/token/0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804", + "type": "ERC20", + "symbol": "NVIR", + "decimals": 18, + "status": "active", + "id": "0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804", + "links": [ + { + "name": "github", + "url": "https://github.com/nvirworld/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nvirworld/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nvirworld" + }, + { + "name": "whitepaper", + "url": "https://nvirworld.io/" + }, + { + "name": "x", + "url": "https://x.com/NvirWorld" + }, + { + "name": "telegram", + "url": "https://t.me/NvirWorldEN" + }, + { + "name": "discord", + "url": "https://discord.com/invite/nvirworld" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/nvirworld/" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/nvirworld" + }, + { + "name": "facebook", + "url": "https://facebook.com/NvirworldOfficial" + } + ], + "tags": [ + "governance", + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804/logo.png b/blockchains/ethereum/assets/0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804/logo.png new file mode 100644 index 00000000..44090a3d Binary files /dev/null and b/blockchains/ethereum/assets/0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d7630aDF7ab0b0CB00Af747Db76864df0EC82E4/info.json b/blockchains/ethereum/assets/0x9d7630aDF7ab0b0CB00Af747Db76864df0EC82E4/info.json new file mode 100644 index 00000000..174c1ae6 --- /dev/null +++ b/blockchains/ethereum/assets/0x9d7630aDF7ab0b0CB00Af747Db76864df0EC82E4/info.json @@ -0,0 +1,17 @@ +{ + "id": "0x9d7630aDF7ab0b0CB00Af747Db76864df0EC82E4", + "name": "GATENet", + "website": "https://gatetoken.io/", + "description": "GATENet is building on-chain regulated securities settlement and registry solutions to reduce costs and increase efficiencies for issuers, investors and market participants.", + "explorer": "https://etherscan.io/token/0x9d7630aDF7ab0b0CB00Af747Db76864df0EC82E4", + "symbol": "GATE", + "type": "ERC20", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "telegram", + "url": "https://t.me/GSXGATECommunity" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9d7630aDF7ab0b0CB00Af747Db76864df0EC82E4/logo.png b/blockchains/ethereum/assets/0x9d7630aDF7ab0b0CB00Af747Db76864df0EC82E4/logo.png new file mode 100644 index 00000000..a01a134f Binary files /dev/null and b/blockchains/ethereum/assets/0x9d7630aDF7ab0b0CB00Af747Db76864df0EC82E4/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d89202Bb44AbBad28FEfD71774995b356f62906/info.json b/blockchains/ethereum/assets/0x9d89202Bb44AbBad28FEfD71774995b356f62906/info.json new file mode 100644 index 00000000..e8cd35e1 --- /dev/null +++ b/blockchains/ethereum/assets/0x9d89202Bb44AbBad28FEfD71774995b356f62906/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-8/30M68", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9d89202Bb44AbBad28FEfD71774995b356f62906", + "status": "abandoned", + "id": "0x9d89202Bb44AbBad28FEfD71774995b356f62906" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9d89202Bb44AbBad28FEfD71774995b356f62906/logo.png b/blockchains/ethereum/assets/0x9d89202Bb44AbBad28FEfD71774995b356f62906/logo.png new file mode 100644 index 00000000..e3717074 Binary files /dev/null and b/blockchains/ethereum/assets/0x9d89202Bb44AbBad28FEfD71774995b356f62906/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d9223436dDD466FC247e9dbbD20207e640fEf58/info.json b/blockchains/ethereum/assets/0x9d9223436dDD466FC247e9dbbD20207e640fEf58/info.json new file mode 100644 index 00000000..c36f28df --- /dev/null +++ b/blockchains/ethereum/assets/0x9d9223436dDD466FC247e9dbbD20207e640fEf58/info.json @@ -0,0 +1,11 @@ +{ + "name": "Olive", + "symbol": "OLE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9d9223436dDD466FC247e9dbbD20207e640fEf58", + "status": "abandoned", + "id": "0x9d9223436dDD466FC247e9dbbD20207e640fEf58" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9d9223436dDD466FC247e9dbbD20207e640fEf58/logo.png b/blockchains/ethereum/assets/0x9d9223436dDD466FC247e9dbbD20207e640fEf58/logo.png new file mode 100755 index 00000000..a522ed7e Binary files /dev/null and b/blockchains/ethereum/assets/0x9d9223436dDD466FC247e9dbbD20207e640fEf58/logo.png differ diff --git a/blockchains/ethereum/assets/0x9dBBCE383808b1981441dAa62989Ef584274AB2f/info.json b/blockchains/ethereum/assets/0x9dBBCE383808b1981441dAa62989Ef584274AB2f/info.json new file mode 100644 index 00000000..ea4ad642 --- /dev/null +++ b/blockchains/ethereum/assets/0x9dBBCE383808b1981441dAa62989Ef584274AB2f/info.json @@ -0,0 +1,11 @@ +{ + "name": "TAM", + "symbol": "TAM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9dBBCE383808b1981441dAa62989Ef584274AB2f", + "status": "abandoned", + "id": "0x9dBBCE383808b1981441dAa62989Ef584274AB2f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9dBBCE383808b1981441dAa62989Ef584274AB2f/logo.png b/blockchains/ethereum/assets/0x9dBBCE383808b1981441dAa62989Ef584274AB2f/logo.png new file mode 100644 index 00000000..27008f13 Binary files /dev/null and b/blockchains/ethereum/assets/0x9dBBCE383808b1981441dAa62989Ef584274AB2f/logo.png differ diff --git a/blockchains/ethereum/assets/0x9dBa10eE88D89c5849ae4100517165698fBdb411/info.json b/blockchains/ethereum/assets/0x9dBa10eE88D89c5849ae4100517165698fBdb411/info.json new file mode 100644 index 00000000..8d3a8a0d --- /dev/null +++ b/blockchains/ethereum/assets/0x9dBa10eE88D89c5849ae4100517165698fBdb411/info.json @@ -0,0 +1,11 @@ +{ + "name": "dmb.top", + "symbol": "dmb", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9dBa10eE88D89c5849ae4100517165698fBdb411", + "status": "abandoned", + "id": "0x9dBa10eE88D89c5849ae4100517165698fBdb411" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9dBa10eE88D89c5849ae4100517165698fBdb411/logo.png b/blockchains/ethereum/assets/0x9dBa10eE88D89c5849ae4100517165698fBdb411/logo.png new file mode 100644 index 00000000..f3398a7b Binary files /dev/null and b/blockchains/ethereum/assets/0x9dBa10eE88D89c5849ae4100517165698fBdb411/logo.png differ diff --git a/blockchains/ethereum/assets/0x9dD04fC27eDAF636F1a07D2Ada8770c42d2f52Ff/info.json b/blockchains/ethereum/assets/0x9dD04fC27eDAF636F1a07D2Ada8770c42d2f52Ff/info.json new file mode 100644 index 00000000..7fc7802f --- /dev/null +++ b/blockchains/ethereum/assets/0x9dD04fC27eDAF636F1a07D2Ada8770c42d2f52Ff/info.json @@ -0,0 +1,11 @@ +{ + "name": "DIAMOND", + "symbol": "DMND", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9dD04fC27eDAF636F1a07D2Ada8770c42d2f52Ff", + "status": "abandoned", + "id": "0x9dD04fC27eDAF636F1a07D2Ada8770c42d2f52Ff" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9dD04fC27eDAF636F1a07D2Ada8770c42d2f52Ff/logo.png b/blockchains/ethereum/assets/0x9dD04fC27eDAF636F1a07D2Ada8770c42d2f52Ff/logo.png new file mode 100755 index 00000000..105fe1ba Binary files /dev/null and b/blockchains/ethereum/assets/0x9dD04fC27eDAF636F1a07D2Ada8770c42d2f52Ff/logo.png differ diff --git a/blockchains/ethereum/assets/0x9da4Cc37379F48960Bf946E6a8329df5C2dC2bC8/info.json b/blockchains/ethereum/assets/0x9da4Cc37379F48960Bf946E6a8329df5C2dC2bC8/info.json new file mode 100644 index 00000000..95824aa0 --- /dev/null +++ b/blockchains/ethereum/assets/0x9da4Cc37379F48960Bf946E6a8329df5C2dC2bC8/info.json @@ -0,0 +1,11 @@ +{ + "name": "DD Silver", + "symbol": "DDS", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9da4Cc37379F48960Bf946E6a8329df5C2dC2bC8", + "status": "abandoned", + "id": "0x9da4Cc37379F48960Bf946E6a8329df5C2dC2bC8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9da4Cc37379F48960Bf946E6a8329df5C2dC2bC8/logo.png b/blockchains/ethereum/assets/0x9da4Cc37379F48960Bf946E6a8329df5C2dC2bC8/logo.png new file mode 100644 index 00000000..2a0778fb Binary files /dev/null and b/blockchains/ethereum/assets/0x9da4Cc37379F48960Bf946E6a8329df5C2dC2bC8/logo.png differ diff --git a/blockchains/ethereum/assets/0x9da66Fe42480141b4b238e9573a0F83880D83a51/info.json b/blockchains/ethereum/assets/0x9da66Fe42480141b4b238e9573a0F83880D83a51/info.json new file mode 100644 index 00000000..7a6dcc86 --- /dev/null +++ b/blockchains/ethereum/assets/0x9da66Fe42480141b4b238e9573a0F83880D83a51/info.json @@ -0,0 +1,11 @@ +{ + "name": "baarbird", + "symbol": "baar", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9da66Fe42480141b4b238e9573a0F83880D83a51", + "status": "abandoned", + "id": "0x9da66Fe42480141b4b238e9573a0F83880D83a51" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9da66Fe42480141b4b238e9573a0F83880D83a51/logo.png b/blockchains/ethereum/assets/0x9da66Fe42480141b4b238e9573a0F83880D83a51/logo.png new file mode 100644 index 00000000..3d303255 Binary files /dev/null and b/blockchains/ethereum/assets/0x9da66Fe42480141b4b238e9573a0F83880D83a51/logo.png differ diff --git a/blockchains/ethereum/assets/0x9ddb2524782684942FAD28b44E76552cB7f3F548/info.json b/blockchains/ethereum/assets/0x9ddb2524782684942FAD28b44E76552cB7f3F548/info.json new file mode 100644 index 00000000..88a76fc0 --- /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 00000000..12335ab8 Binary files /dev/null and b/blockchains/ethereum/assets/0x9ddb2524782684942FAD28b44E76552cB7f3F548/logo.png differ diff --git a/blockchains/ethereum/assets/0x9e0aC56cbC1B247Cac5bE03d1ee757aB88E0771c/info.json b/blockchains/ethereum/assets/0x9e0aC56cbC1B247Cac5bE03d1ee757aB88E0771c/info.json new file mode 100644 index 00000000..c48cd123 --- /dev/null +++ b/blockchains/ethereum/assets/0x9e0aC56cbC1B247Cac5bE03d1ee757aB88E0771c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digital Florin", + "symbol": "CDF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9e0aC56cbC1B247Cac5bE03d1ee757aB88E0771c", + "status": "abandoned", + "id": "0x9e0aC56cbC1B247Cac5bE03d1ee757aB88E0771c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9e0aC56cbC1B247Cac5bE03d1ee757aB88E0771c/logo.png b/blockchains/ethereum/assets/0x9e0aC56cbC1B247Cac5bE03d1ee757aB88E0771c/logo.png new file mode 100644 index 00000000..e07f9304 Binary files /dev/null and b/blockchains/ethereum/assets/0x9e0aC56cbC1B247Cac5bE03d1ee757aB88E0771c/logo.png differ diff --git a/blockchains/ethereum/assets/0x9e18d5BAB2FA94a6A95F509Ecb38F8F68322AbD3/info.json b/blockchains/ethereum/assets/0x9e18d5BAB2FA94a6A95F509Ecb38F8F68322AbD3/info.json new file mode 100644 index 00000000..d57b38d1 --- /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 00000000..7bb1769e Binary files /dev/null and b/blockchains/ethereum/assets/0x9e18d5BAB2FA94a6A95F509Ecb38F8F68322AbD3/logo.png differ diff --git a/blockchains/ethereum/assets/0x9e2754c2410620d8148E382E8feb7EF30dFa5b4C/info.json b/blockchains/ethereum/assets/0x9e2754c2410620d8148E382E8feb7EF30dFa5b4C/info.json new file mode 100644 index 00000000..13ceed2c --- /dev/null +++ b/blockchains/ethereum/assets/0x9e2754c2410620d8148E382E8feb7EF30dFa5b4C/info.json @@ -0,0 +1,11 @@ +{ + "name": "OKStamp", + "symbol": "STAMP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9e2754c2410620d8148E382E8feb7EF30dFa5b4C", + "status": "abandoned", + "id": "0x9e2754c2410620d8148E382E8feb7EF30dFa5b4C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9e2754c2410620d8148E382E8feb7EF30dFa5b4C/logo.png b/blockchains/ethereum/assets/0x9e2754c2410620d8148E382E8feb7EF30dFa5b4C/logo.png new file mode 100644 index 00000000..feaa311b Binary files /dev/null and b/blockchains/ethereum/assets/0x9e2754c2410620d8148E382E8feb7EF30dFa5b4C/logo.png differ diff --git a/blockchains/ethereum/assets/0x9e3319636e2126e3c0bc9e3134AEC5e1508A46c7/info.json b/blockchains/ethereum/assets/0x9e3319636e2126e3c0bc9e3134AEC5e1508A46c7/info.json new file mode 100644 index 00000000..4b227ff7 --- /dev/null +++ b/blockchains/ethereum/assets/0x9e3319636e2126e3c0bc9e3134AEC5e1508A46c7/info.json @@ -0,0 +1,11 @@ +{ + "name": "UTN-P: Universa Token", + "symbol": "UTNP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://universablockchain.com/", + "explorer": "https://etherscan.io/token/0x9e3319636e2126e3c0bc9e3134AEC5e1508A46c7", + "status": "abandoned", + "id": "0x9e3319636e2126e3c0bc9e3134AEC5e1508A46c7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9e3319636e2126e3c0bc9e3134AEC5e1508A46c7/logo.png b/blockchains/ethereum/assets/0x9e3319636e2126e3c0bc9e3134AEC5e1508A46c7/logo.png new file mode 100755 index 00000000..26105b42 Binary files /dev/null and b/blockchains/ethereum/assets/0x9e3319636e2126e3c0bc9e3134AEC5e1508A46c7/logo.png differ diff --git a/blockchains/ethereum/assets/0x9e4C143Bfe35f855624B3F84465AB7401A17A120/info.json b/blockchains/ethereum/assets/0x9e4C143Bfe35f855624B3F84465AB7401A17A120/info.json new file mode 100644 index 00000000..fc660f71 --- /dev/null +++ b/blockchains/ethereum/assets/0x9e4C143Bfe35f855624B3F84465AB7401A17A120/info.json @@ -0,0 +1,11 @@ +{ + "name": "EXCOIN CASH", + "symbol": "EXC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9e4C143Bfe35f855624B3F84465AB7401A17A120", + "status": "abandoned", + "id": "0x9e4C143Bfe35f855624B3F84465AB7401A17A120" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9e4C143Bfe35f855624B3F84465AB7401A17A120/logo.png b/blockchains/ethereum/assets/0x9e4C143Bfe35f855624B3F84465AB7401A17A120/logo.png new file mode 100755 index 00000000..4907380c Binary files /dev/null and b/blockchains/ethereum/assets/0x9e4C143Bfe35f855624B3F84465AB7401A17A120/logo.png differ diff --git a/blockchains/ethereum/assets/0x9e5BD9D9fAd182ff0A93bA8085b664bcab00fA68/info.json b/blockchains/ethereum/assets/0x9e5BD9D9fAd182ff0A93bA8085b664bcab00fA68/info.json new file mode 100644 index 00000000..c9a36210 --- /dev/null +++ b/blockchains/ethereum/assets/0x9e5BD9D9fAd182ff0A93bA8085b664bcab00fA68/info.json @@ -0,0 +1,41 @@ +{ + "name": "Dinger Token", + "website": "https://www.schrodingertoken.com", + "description": "Schrodinger token is a community-driven project that hopes to provide the kind of purr-fectly amazing, enthusiastic joy that DOGE, SHIB and others have for crypto investors.", + "explorer": "https://etherscan.io/token/0x9e5BD9D9fAd182ff0A93bA8085b664bcab00fA68", + "type": "ERC20", + "symbol": "DINGER", + "decimals": 9, + "status": "active", + "id": "0x9e5BD9D9fAd182ff0A93bA8085b664bcab00fA68", + "links": [ + { + "name": "github", + "url": "https://github.com/SchrodingerToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dinger-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dinger-token" + }, + { + "name": "x", + "url": "https://x.com/dingertoken" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/schrodinger/" + }, + { + "name": "telegram", + "url": "https://t.me/dingertoken" + }, + { + "name": "whitepaper", + "url": "https://518c9b86-70e1-4684-a158-a6ac5cc28fdd.filesusr.com/ugd/4f7660_9c16e33add7a4e2f872af0e00ff2d848.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9e5BD9D9fAd182ff0A93bA8085b664bcab00fA68/logo.png b/blockchains/ethereum/assets/0x9e5BD9D9fAd182ff0A93bA8085b664bcab00fA68/logo.png new file mode 100644 index 00000000..416b859b Binary files /dev/null and b/blockchains/ethereum/assets/0x9e5BD9D9fAd182ff0A93bA8085b664bcab00fA68/logo.png differ diff --git a/blockchains/ethereum/assets/0x9e6B2B11542f2BC52f3029077acE37E8fD838D7F/info.json b/blockchains/ethereum/assets/0x9e6B2B11542f2BC52f3029077acE37E8fD838D7F/info.json new file mode 100644 index 00000000..c27a4c64 --- /dev/null +++ b/blockchains/ethereum/assets/0x9e6B2B11542f2BC52f3029077acE37E8fD838D7F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hacken", + "symbol": "HKN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9e6B2B11542f2BC52f3029077acE37E8fD838D7F", + "status": "abandoned", + "id": "0x9e6B2B11542f2BC52f3029077acE37E8fD838D7F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9e6B2B11542f2BC52f3029077acE37E8fD838D7F/logo.png b/blockchains/ethereum/assets/0x9e6B2B11542f2BC52f3029077acE37E8fD838D7F/logo.png new file mode 100644 index 00000000..dd949e9c Binary files /dev/null and b/blockchains/ethereum/assets/0x9e6B2B11542f2BC52f3029077acE37E8fD838D7F/logo.png differ diff --git a/blockchains/ethereum/assets/0x9e88613418cF03dCa54D6a2cf6Ad934A78C7A17A/info.json b/blockchains/ethereum/assets/0x9e88613418cF03dCa54D6a2cf6Ad934A78C7A17A/info.json new file mode 100644 index 00000000..9a59fe47 --- /dev/null +++ b/blockchains/ethereum/assets/0x9e88613418cF03dCa54D6a2cf6Ad934A78C7A17A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Swarm Fund Token", + "symbol": "SWM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9e88613418cF03dCa54D6a2cf6Ad934A78C7A17A", + "status": "abandoned", + "id": "0x9e88613418cF03dCa54D6a2cf6Ad934A78C7A17A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9e88613418cF03dCa54D6a2cf6Ad934A78C7A17A/logo.png b/blockchains/ethereum/assets/0x9e88613418cF03dCa54D6a2cf6Ad934A78C7A17A/logo.png new file mode 100644 index 00000000..4fa04983 Binary files /dev/null and b/blockchains/ethereum/assets/0x9e88613418cF03dCa54D6a2cf6Ad934A78C7A17A/logo.png differ diff --git a/blockchains/ethereum/assets/0x9e96604445Ec19fFed9a5e8dd7B50a29C899A10C/info.json b/blockchains/ethereum/assets/0x9e96604445Ec19fFed9a5e8dd7B50a29C899A10C/info.json new file mode 100644 index 00000000..084eb1cc --- /dev/null +++ b/blockchains/ethereum/assets/0x9e96604445Ec19fFed9a5e8dd7B50a29C899A10C/info.json @@ -0,0 +1,11 @@ +{ + "name": "COSS", + "symbol": "COSS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9e96604445Ec19fFed9a5e8dd7B50a29C899A10C", + "status": "abandoned", + "id": "0x9e96604445Ec19fFed9a5e8dd7B50a29C899A10C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9e96604445Ec19fFed9a5e8dd7B50a29C899A10C/logo.png b/blockchains/ethereum/assets/0x9e96604445Ec19fFed9a5e8dd7B50a29C899A10C/logo.png new file mode 100755 index 00000000..f29a5274 Binary files /dev/null and b/blockchains/ethereum/assets/0x9e96604445Ec19fFed9a5e8dd7B50a29C899A10C/logo.png differ diff --git a/blockchains/ethereum/assets/0x9e984f28257Ae9c57918515627B078DEab4e11FE/info.json b/blockchains/ethereum/assets/0x9e984f28257Ae9c57918515627B078DEab4e11FE/info.json new file mode 100644 index 00000000..40adb6a9 --- /dev/null +++ b/blockchains/ethereum/assets/0x9e984f28257Ae9c57918515627B078DEab4e11FE/info.json @@ -0,0 +1,11 @@ +{ + "name": "AVXChange Token", + "symbol": "AVX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9e984f28257Ae9c57918515627B078DEab4e11FE", + "status": "abandoned", + "id": "0x9e984f28257Ae9c57918515627B078DEab4e11FE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9e984f28257Ae9c57918515627B078DEab4e11FE/logo.png b/blockchains/ethereum/assets/0x9e984f28257Ae9c57918515627B078DEab4e11FE/logo.png new file mode 100644 index 00000000..2375aa04 Binary files /dev/null and b/blockchains/ethereum/assets/0x9e984f28257Ae9c57918515627B078DEab4e11FE/logo.png differ diff --git a/blockchains/ethereum/assets/0x9eA724DeC925e87f79e77E39edb52cC23EaF57Cf/info.json b/blockchains/ethereum/assets/0x9eA724DeC925e87f79e77E39edb52cC23EaF57Cf/info.json new file mode 100644 index 00000000..4b2992bd --- /dev/null +++ b/blockchains/ethereum/assets/0x9eA724DeC925e87f79e77E39edb52cC23EaF57Cf/info.json @@ -0,0 +1,11 @@ +{ + "name": "GREATBEAR", + "symbol": "GTB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9eA724DeC925e87f79e77E39edb52cC23EaF57Cf", + "status": "abandoned", + "id": "0x9eA724DeC925e87f79e77E39edb52cC23EaF57Cf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9eA724DeC925e87f79e77E39edb52cC23EaF57Cf/logo.png b/blockchains/ethereum/assets/0x9eA724DeC925e87f79e77E39edb52cC23EaF57Cf/logo.png new file mode 100644 index 00000000..d1f55ae6 Binary files /dev/null and b/blockchains/ethereum/assets/0x9eA724DeC925e87f79e77E39edb52cC23EaF57Cf/logo.png differ diff --git a/blockchains/ethereum/assets/0x9eC58861641BC805564bbC0c5FB4a856516238E7/info.json b/blockchains/ethereum/assets/0x9eC58861641BC805564bbC0c5FB4a856516238E7/info.json new file mode 100644 index 00000000..3f9725c4 --- /dev/null +++ b/blockchains/ethereum/assets/0x9eC58861641BC805564bbC0c5FB4a856516238E7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Appics", + "symbol": "XAP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9eC58861641BC805564bbC0c5FB4a856516238E7", + "status": "abandoned", + "id": "0x9eC58861641BC805564bbC0c5FB4a856516238E7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9eC58861641BC805564bbC0c5FB4a856516238E7/logo.png b/blockchains/ethereum/assets/0x9eC58861641BC805564bbC0c5FB4a856516238E7/logo.png new file mode 100755 index 00000000..7fe00c85 Binary files /dev/null and b/blockchains/ethereum/assets/0x9eC58861641BC805564bbC0c5FB4a856516238E7/logo.png differ diff --git a/blockchains/ethereum/assets/0x9eD68f8e328b03a1dC82e97Ca7c785252659a681/info.json b/blockchains/ethereum/assets/0x9eD68f8e328b03a1dC82e97Ca7c785252659a681/info.json new file mode 100644 index 00000000..0270187f --- /dev/null +++ b/blockchains/ethereum/assets/0x9eD68f8e328b03a1dC82e97Ca7c785252659a681/info.json @@ -0,0 +1,11 @@ +{ + "name": "Justswap", + "symbol": "JUST", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9eD68f8e328b03a1dC82e97Ca7c785252659a681", + "status": "abandoned", + "id": "0x9eD68f8e328b03a1dC82e97Ca7c785252659a681" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9eD68f8e328b03a1dC82e97Ca7c785252659a681/logo.png b/blockchains/ethereum/assets/0x9eD68f8e328b03a1dC82e97Ca7c785252659a681/logo.png new file mode 100644 index 00000000..bd01ffa9 Binary files /dev/null and b/blockchains/ethereum/assets/0x9eD68f8e328b03a1dC82e97Ca7c785252659a681/logo.png differ diff --git a/blockchains/ethereum/assets/0x9ea463Ec4cE9E9E5bc9cFd0187C4Ac3a70DD951D/info.json b/blockchains/ethereum/assets/0x9ea463Ec4cE9E9E5bc9cFd0187C4Ac3a70DD951D/info.json new file mode 100644 index 00000000..baa03436 --- /dev/null +++ b/blockchains/ethereum/assets/0x9ea463Ec4cE9E9E5bc9cFd0187C4Ac3a70DD951D/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETH 20 SMA Crossover Set", + "symbol": "ETH20SMACO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.tokensets.com/set/eth20smaco", + "explorer": "https://etherscan.io/token/0x9ea463Ec4cE9E9E5bc9cFd0187C4Ac3a70DD951D", + "status": "abandoned", + "id": "0x9ea463Ec4cE9E9E5bc9cFd0187C4Ac3a70DD951D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9ea463Ec4cE9E9E5bc9cFd0187C4Ac3a70DD951D/logo.png b/blockchains/ethereum/assets/0x9ea463Ec4cE9E9E5bc9cFd0187C4Ac3a70DD951D/logo.png new file mode 100644 index 00000000..e5a498a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x9ea463Ec4cE9E9E5bc9cFd0187C4Ac3a70DD951D/logo.png differ diff --git a/blockchains/ethereum/assets/0x9ebd34d99Cc3a45B39CAFc14Ad7994263fa2Be56/info.json b/blockchains/ethereum/assets/0x9ebd34d99Cc3a45B39CAFc14Ad7994263fa2Be56/info.json new file mode 100644 index 00000000..1707fac4 --- /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 00000000..d28deab3 Binary files /dev/null and b/blockchains/ethereum/assets/0x9ebd34d99Cc3a45B39CAFc14Ad7994263fa2Be56/logo.png differ diff --git a/blockchains/ethereum/assets/0x9eeC65E5b998dB6845321BaA915eC3338B1a469B/info.json b/blockchains/ethereum/assets/0x9eeC65E5b998dB6845321BaA915eC3338B1a469B/info.json new file mode 100644 index 00000000..1e0de46b --- /dev/null +++ b/blockchains/ethereum/assets/0x9eeC65E5b998dB6845321BaA915eC3338B1a469B/info.json @@ -0,0 +1,11 @@ +{ + "name": "OnlyChain", + "symbol": "Only", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9eeC65E5b998dB6845321BaA915eC3338B1a469B", + "status": "abandoned", + "id": "0x9eeC65E5b998dB6845321BaA915eC3338B1a469B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9eeC65E5b998dB6845321BaA915eC3338B1a469B/logo.png b/blockchains/ethereum/assets/0x9eeC65E5b998dB6845321BaA915eC3338B1a469B/logo.png new file mode 100644 index 00000000..27c953d7 Binary files /dev/null and b/blockchains/ethereum/assets/0x9eeC65E5b998dB6845321BaA915eC3338B1a469B/logo.png differ diff --git a/blockchains/ethereum/assets/0x9eecec130fb665d03a37289ee34C818Ee7F79926/info.json b/blockchains/ethereum/assets/0x9eecec130fb665d03a37289ee34C818Ee7F79926/info.json new file mode 100644 index 00000000..092cd38e --- /dev/null +++ b/blockchains/ethereum/assets/0x9eecec130fb665d03a37289ee34C818Ee7F79926/info.json @@ -0,0 +1,11 @@ +{ + "name": "BETTY", + "symbol": "BTY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9eecec130fb665d03a37289ee34C818Ee7F79926", + "status": "abandoned", + "id": "0x9eecec130fb665d03a37289ee34C818Ee7F79926" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9eecec130fb665d03a37289ee34C818Ee7F79926/logo.png b/blockchains/ethereum/assets/0x9eecec130fb665d03a37289ee34C818Ee7F79926/logo.png new file mode 100644 index 00000000..185517bd Binary files /dev/null and b/blockchains/ethereum/assets/0x9eecec130fb665d03a37289ee34C818Ee7F79926/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f0f1Be08591AB7d990faf910B38ed5D60e4D5Bf/info.json b/blockchains/ethereum/assets/0x9f0f1Be08591AB7d990faf910B38ed5D60e4D5Bf/info.json new file mode 100644 index 00000000..346dbc3a --- /dev/null +++ b/blockchains/ethereum/assets/0x9f0f1Be08591AB7d990faf910B38ed5D60e4D5Bf/info.json @@ -0,0 +1,11 @@ +{ + "name": "MainCoin", + "symbol": "MNC", + "type": "ERC20", + "decimals": 18, + "description": "MainCoin is secure, open source software powered by Ethereum.", + "website": "https://maincoin.money", + "explorer": "https://etherscan.io/token/0x9f0f1Be08591AB7d990faf910B38ed5D60e4D5Bf", + "status": "active", + "id": "0x9f0f1Be08591AB7d990faf910B38ed5D60e4D5Bf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9f0f1Be08591AB7d990faf910B38ed5D60e4D5Bf/logo.png b/blockchains/ethereum/assets/0x9f0f1Be08591AB7d990faf910B38ed5D60e4D5Bf/logo.png new file mode 100644 index 00000000..070b1d3e Binary files /dev/null and b/blockchains/ethereum/assets/0x9f0f1Be08591AB7d990faf910B38ed5D60e4D5Bf/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f1cF4b26211406e0cf1bbF0e3fCC8031c3B9f0A/info.json b/blockchains/ethereum/assets/0x9f1cF4b26211406e0cf1bbF0e3fCC8031c3B9f0A/info.json new file mode 100644 index 00000000..e4061320 --- /dev/null +++ b/blockchains/ethereum/assets/0x9f1cF4b26211406e0cf1bbF0e3fCC8031c3B9f0A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Synthetic YBDAO", + "symbol": "YBREE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9f1cF4b26211406e0cf1bbF0e3fCC8031c3B9f0A", + "status": "abandoned", + "id": "0x9f1cF4b26211406e0cf1bbF0e3fCC8031c3B9f0A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9f1cF4b26211406e0cf1bbF0e3fCC8031c3B9f0A/logo.png b/blockchains/ethereum/assets/0x9f1cF4b26211406e0cf1bbF0e3fCC8031c3B9f0A/logo.png new file mode 100644 index 00000000..65452f3a Binary files /dev/null and b/blockchains/ethereum/assets/0x9f1cF4b26211406e0cf1bbF0e3fCC8031c3B9f0A/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f2e3EB0160117c56b07652Fe66a08a48b5bD7B5/info.json b/blockchains/ethereum/assets/0x9f2e3EB0160117c56b07652Fe66a08a48b5bD7B5/info.json new file mode 100644 index 00000000..9a7c86bd --- /dev/null +++ b/blockchains/ethereum/assets/0x9f2e3EB0160117c56b07652Fe66a08a48b5bD7B5/info.json @@ -0,0 +1,28 @@ +{ + "name": "SoFi Technologies (Ondo Tokenized)", + "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 00000000..dcd5cc8d Binary files /dev/null and b/blockchains/ethereum/assets/0x9f2e3EB0160117c56b07652Fe66a08a48b5bD7B5/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f41Ef77551Be3713df2407e9788b3C5880b06Df/info.json b/blockchains/ethereum/assets/0x9f41Ef77551Be3713df2407e9788b3C5880b06Df/info.json new file mode 100644 index 00000000..c4b6ddfb --- /dev/null +++ b/blockchains/ethereum/assets/0x9f41Ef77551Be3713df2407e9788b3C5880b06Df/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 205-CN38", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9f41Ef77551Be3713df2407e9788b3C5880b06Df", + "status": "abandoned", + "id": "0x9f41Ef77551Be3713df2407e9788b3C5880b06Df" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9f41Ef77551Be3713df2407e9788b3C5880b06Df/logo.png b/blockchains/ethereum/assets/0x9f41Ef77551Be3713df2407e9788b3C5880b06Df/logo.png new file mode 100644 index 00000000..fbe7c8fd Binary files /dev/null and b/blockchains/ethereum/assets/0x9f41Ef77551Be3713df2407e9788b3C5880b06Df/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f4AfFB8652D3AAC1F36431191a8bF0B48dab332/info.json b/blockchains/ethereum/assets/0x9f4AfFB8652D3AAC1F36431191a8bF0B48dab332/info.json new file mode 100644 index 00000000..29a1c535 --- /dev/null +++ b/blockchains/ethereum/assets/0x9f4AfFB8652D3AAC1F36431191a8bF0B48dab332/info.json @@ -0,0 +1,11 @@ +{ + "name": "Duma", + "symbol": "DUMA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9f4AfFB8652D3AAC1F36431191a8bF0B48dab332", + "status": "abandoned", + "id": "0x9f4AfFB8652D3AAC1F36431191a8bF0B48dab332" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9f4AfFB8652D3AAC1F36431191a8bF0B48dab332/logo.png b/blockchains/ethereum/assets/0x9f4AfFB8652D3AAC1F36431191a8bF0B48dab332/logo.png new file mode 100644 index 00000000..31b9d8fd Binary files /dev/null and b/blockchains/ethereum/assets/0x9f4AfFB8652D3AAC1F36431191a8bF0B48dab332/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f55dEb6f98D27e6eBff8CFcE9826CE2610AaE5B/info.json b/blockchains/ethereum/assets/0x9f55dEb6f98D27e6eBff8CFcE9826CE2610AaE5B/info.json new file mode 100644 index 00000000..4578f2bf --- /dev/null +++ b/blockchains/ethereum/assets/0x9f55dEb6f98D27e6eBff8CFcE9826CE2610AaE5B/info.json @@ -0,0 +1,11 @@ +{ + "name": "FASToken", + "symbol": "FAST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9f55dEb6f98D27e6eBff8CFcE9826CE2610AaE5B", + "status": "abandoned", + "id": "0x9f55dEb6f98D27e6eBff8CFcE9826CE2610AaE5B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9f55dEb6f98D27e6eBff8CFcE9826CE2610AaE5B/logo.png b/blockchains/ethereum/assets/0x9f55dEb6f98D27e6eBff8CFcE9826CE2610AaE5B/logo.png new file mode 100644 index 00000000..98f5f491 Binary files /dev/null and b/blockchains/ethereum/assets/0x9f55dEb6f98D27e6eBff8CFcE9826CE2610AaE5B/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f6513ED2b0DE89218E97DB4A5115ba04Be449f1/info.json b/blockchains/ethereum/assets/0x9f6513ED2b0DE89218E97DB4A5115ba04Be449f1/info.json new file mode 100644 index 00000000..03052a0e --- /dev/null +++ b/blockchains/ethereum/assets/0x9f6513ED2b0DE89218E97DB4A5115ba04Be449f1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wak Coin", + "symbol": "WAK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9f6513ED2b0DE89218E97DB4A5115ba04Be449f1", + "status": "abandoned", + "id": "0x9f6513ED2b0DE89218E97DB4A5115ba04Be449f1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9f6513ED2b0DE89218E97DB4A5115ba04Be449f1/logo.png b/blockchains/ethereum/assets/0x9f6513ED2b0DE89218E97DB4A5115ba04Be449f1/logo.png new file mode 100644 index 00000000..da77c50e Binary files /dev/null and b/blockchains/ethereum/assets/0x9f6513ED2b0DE89218E97DB4A5115ba04Be449f1/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f7229aF0c4b9740e207Ea283b9094983f78ba04/info.json b/blockchains/ethereum/assets/0x9f7229aF0c4b9740e207Ea283b9094983f78ba04/info.json new file mode 100644 index 00000000..d5cd5aaf --- /dev/null +++ b/blockchains/ethereum/assets/0x9f7229aF0c4b9740e207Ea283b9094983f78ba04/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tadpole", + "website": "https://tadpole.finance", + "description": "Tadpole Finance is an experimental DeFi project to create a more open lending markets, where users can make deposits and loans with any ERC20 tokens on the Ethereum network.", + "explorer": "https://etherscan.io/token/0x9f7229aF0c4b9740e207Ea283b9094983f78ba04", + "type": "ERC20", + "symbol": "TAD", + "decimals": 18, + "status": "active", + "id": "0x9f7229aF0c4b9740e207Ea283b9094983f78ba04" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9f7229aF0c4b9740e207Ea283b9094983f78ba04/logo.png b/blockchains/ethereum/assets/0x9f7229aF0c4b9740e207Ea283b9094983f78ba04/logo.png new file mode 100644 index 00000000..64fe3470 Binary files /dev/null and b/blockchains/ethereum/assets/0x9f7229aF0c4b9740e207Ea283b9094983f78ba04/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f7c6A7C5af0a354761f98cb11A32471f3B94451/info.json b/blockchains/ethereum/assets/0x9f7c6A7C5af0a354761f98cb11A32471f3B94451/info.json new file mode 100644 index 00000000..2f92916b --- /dev/null +++ b/blockchains/ethereum/assets/0x9f7c6A7C5af0a354761f98cb11A32471f3B94451/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C551552", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9f7c6A7C5af0a354761f98cb11A32471f3B94451", + "status": "abandoned", + "id": "0x9f7c6A7C5af0a354761f98cb11A32471f3B94451" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9f7c6A7C5af0a354761f98cb11A32471f3B94451/logo.png b/blockchains/ethereum/assets/0x9f7c6A7C5af0a354761f98cb11A32471f3B94451/logo.png new file mode 100644 index 00000000..a811c43a Binary files /dev/null and b/blockchains/ethereum/assets/0x9f7c6A7C5af0a354761f98cb11A32471f3B94451/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/info.json b/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/info.json new file mode 100644 index 00000000..a35bd718 --- /dev/null +++ b/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/info.json @@ -0,0 +1,32 @@ +{ + "name": "milkAI", + "type": "ERC20", + "symbol": "milkAI", + "decimals": 8, + "website": "https://milkai.com/", + "description": "Visual creation platform that utilizes artificial intelligence powered by blockchain technology. This platform generates images and videos through the use of advanced AI algorithms. By utilizing milkAI, users are able to transform their creative concepts into visual outputs.", + "explorer": "https://etherscan.io/token/0x9f826324bb9bdcf7e7eb274bedc417bd45d74f39", + "status": "active", + "id": "0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39", + "links": [ + { + "name": "x", + "url": "https://x.com/MilkAI_com" + }, + { + "name": "telegram", + "url": "https://t.me/milkai_com" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/milkai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/milkai/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/logo.png b/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/logo.png new file mode 100644 index 00000000..8eaad5d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2/info.json b/blockchains/ethereum/assets/0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2/info.json new file mode 100644 index 00000000..81b10852 --- /dev/null +++ b/blockchains/ethereum/assets/0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2/info.json @@ -0,0 +1,34 @@ +{ + "name": "Maker", + "website": "https://makerdao.com", + "description": "Maker (MKR) is a utility token, governance token and recapitalization resource of the Maker system.", + "explorer": "https://etherscan.io/token/0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2", + "research": "https://research.binance.com/en/projects/maker", + "type": "ERC20", + "symbol": "MKR", + "decimals": 18, + "status": "active", + "id": "0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "blog", + "url": "https://blog.makerdao.com/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/assets/documents/purple.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MakerDAO/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/maker/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2/logo.png b/blockchains/ethereum/assets/0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2/logo.png new file mode 100644 index 00000000..7b7d27e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f8F7EA504588a58B8b24b832B5d25a4Aeb4706F/info.json b/blockchains/ethereum/assets/0x9f8F7EA504588a58B8b24b832B5d25a4Aeb4706F/info.json new file mode 100644 index 00000000..a01405d6 --- /dev/null +++ b/blockchains/ethereum/assets/0x9f8F7EA504588a58B8b24b832B5d25a4Aeb4706F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Celeum", + "symbol": "CLX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://celeum.tk/", + "explorer": "https://etherscan.io/token/0x9f8F7EA504588a58B8b24b832B5d25a4Aeb4706F", + "status": "abandoned", + "id": "0x9f8F7EA504588a58B8b24b832B5d25a4Aeb4706F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9f8F7EA504588a58B8b24b832B5d25a4Aeb4706F/logo.png b/blockchains/ethereum/assets/0x9f8F7EA504588a58B8b24b832B5d25a4Aeb4706F/logo.png new file mode 100644 index 00000000..20b66969 Binary files /dev/null and b/blockchains/ethereum/assets/0x9f8F7EA504588a58B8b24b832B5d25a4Aeb4706F/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f949124e2A23492005A9BB937aCb29BDa2CaB9E/info.json b/blockchains/ethereum/assets/0x9f949124e2A23492005A9BB937aCb29BDa2CaB9E/info.json new file mode 100644 index 00000000..7acca028 --- /dev/null +++ b/blockchains/ethereum/assets/0x9f949124e2A23492005A9BB937aCb29BDa2CaB9E/info.json @@ -0,0 +1,11 @@ +{ + "name": "CMMEToken", + "symbol": "CMME", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9f949124e2A23492005A9BB937aCb29BDa2CaB9E", + "status": "abandoned", + "id": "0x9f949124e2A23492005A9BB937aCb29BDa2CaB9E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9f949124e2A23492005A9BB937aCb29BDa2CaB9E/logo.png b/blockchains/ethereum/assets/0x9f949124e2A23492005A9BB937aCb29BDa2CaB9E/logo.png new file mode 100644 index 00000000..b89123b3 Binary files /dev/null and b/blockchains/ethereum/assets/0x9f949124e2A23492005A9BB937aCb29BDa2CaB9E/logo.png differ diff --git a/blockchains/ethereum/assets/0x9fBFed658919A896B5Dc7b00456Ce22D780f9B65/info.json b/blockchains/ethereum/assets/0x9fBFed658919A896B5Dc7b00456Ce22D780f9B65/info.json new file mode 100644 index 00000000..50ed9755 --- /dev/null +++ b/blockchains/ethereum/assets/0x9fBFed658919A896B5Dc7b00456Ce22D780f9B65/info.json @@ -0,0 +1,11 @@ +{ + "name": "PlutusDeFi", + "symbol": "PLT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9fBFed658919A896B5Dc7b00456Ce22D780f9B65", + "status": "abandoned", + "id": "0x9fBFed658919A896B5Dc7b00456Ce22D780f9B65" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9fBFed658919A896B5Dc7b00456Ce22D780f9B65/logo.png b/blockchains/ethereum/assets/0x9fBFed658919A896B5Dc7b00456Ce22D780f9B65/logo.png new file mode 100644 index 00000000..eef65796 Binary files /dev/null and b/blockchains/ethereum/assets/0x9fBFed658919A896B5Dc7b00456Ce22D780f9B65/logo.png differ diff --git a/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/info.json b/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/info.json new file mode 100644 index 00000000..65fd9689 --- /dev/null +++ b/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/info.json @@ -0,0 +1,33 @@ +{ + "name": "DeRace Token", + "website": "https://derace.com", + "description": "DeRace 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/0x9fa69536d1cda4A04cFB50688294de75B505a9aE", + "type": "ERC20", + "symbol": "DERC", + "decimals": 18, + "status": "active", + "id": "0x9fa69536d1cda4A04cFB50688294de75B505a9aE", + "links": [ + { + "name": "blog", + "url": "https://derace.com" + }, + { + "name": "x", + "url": "https://x.com/deracenft" + }, + { + "name": "telegram", + "url": "https://t.me/DeRaceNFT" + }, + { + "name": "medium", + "url": "https://deracenft.medium.com/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/67M9ckF3q3" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/logo.png b/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/logo.png new file mode 100644 index 00000000..e428af92 Binary files /dev/null and b/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/logo.png differ diff --git a/blockchains/ethereum/assets/0x9fa98F4DA0faba79a928Ea785b2F94ae8d82631D/info.json b/blockchains/ethereum/assets/0x9fa98F4DA0faba79a928Ea785b2F94ae8d82631D/info.json new file mode 100644 index 00000000..801d2107 --- /dev/null +++ b/blockchains/ethereum/assets/0x9fa98F4DA0faba79a928Ea785b2F94ae8d82631D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Block Genesis Token", + "symbol": "BGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9fa98F4DA0faba79a928Ea785b2F94ae8d82631D", + "status": "abandoned", + "id": "0x9fa98F4DA0faba79a928Ea785b2F94ae8d82631D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9fa98F4DA0faba79a928Ea785b2F94ae8d82631D/logo.png b/blockchains/ethereum/assets/0x9fa98F4DA0faba79a928Ea785b2F94ae8d82631D/logo.png new file mode 100644 index 00000000..3719327f Binary files /dev/null and b/blockchains/ethereum/assets/0x9fa98F4DA0faba79a928Ea785b2F94ae8d82631D/logo.png differ diff --git a/blockchains/ethereum/assets/0x9faCccc33adD9257F3BD30F8569B8845A8932A70/info.json b/blockchains/ethereum/assets/0x9faCccc33adD9257F3BD30F8569B8845A8932A70/info.json new file mode 100644 index 00000000..96f53abe --- /dev/null +++ b/blockchains/ethereum/assets/0x9faCccc33adD9257F3BD30F8569B8845A8932A70/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZIVIO", + "symbol": "ZIO", + "type": "ERC20", + "decimals": 16, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0x9faCccc33adD9257F3BD30F8569B8845A8932A70", + "status": "abandoned", + "id": "0x9faCccc33adD9257F3BD30F8569B8845A8932A70" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9faCccc33adD9257F3BD30F8569B8845A8932A70/logo.png b/blockchains/ethereum/assets/0x9faCccc33adD9257F3BD30F8569B8845A8932A70/logo.png new file mode 100644 index 00000000..966d82d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x9faCccc33adD9257F3BD30F8569B8845A8932A70/logo.png differ diff --git a/blockchains/ethereum/assets/0x9ff58067Bd8D239000010c154C6983A325Df138E/info.json b/blockchains/ethereum/assets/0x9ff58067Bd8D239000010c154C6983A325Df138E/info.json new file mode 100644 index 00000000..40f9f3df --- /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 00000000..41fc24e1 Binary files /dev/null and b/blockchains/ethereum/assets/0x9ff58067Bd8D239000010c154C6983A325Df138E/logo.png differ diff --git a/blockchains/ethereum/assets/0x9ff58f4fFB29fA2266Ab25e75e2A8b3503311656/info.json b/blockchains/ethereum/assets/0x9ff58f4fFB29fA2266Ab25e75e2A8b3503311656/info.json new file mode 100644 index 00000000..6330c61e --- /dev/null +++ b/blockchains/ethereum/assets/0x9ff58f4fFB29fA2266Ab25e75e2A8b3503311656/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave WBTC", + "symbol": "aWBTC", + "type": "ERC20", + "decimals": 8, + "description": "Aave WBTC is an interest bearing token pegged 1:1 to the underlying WBTC deposited in Aave. aWBTC accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0x9ff58f4fFB29fA2266Ab25e75e2A8b3503311656", + "status": "active", + "id": "0x9ff58f4fFB29fA2266Ab25e75e2A8b3503311656" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9ff58f4fFB29fA2266Ab25e75e2A8b3503311656/logo.png b/blockchains/ethereum/assets/0x9ff58f4fFB29fA2266Ab25e75e2A8b3503311656/logo.png new file mode 100644 index 00000000..7ff1fc88 Binary files /dev/null and b/blockchains/ethereum/assets/0x9ff58f4fFB29fA2266Ab25e75e2A8b3503311656/logo.png differ diff --git a/blockchains/ethereum/assets/0xA0008F510fE9eE696E7E320C9e5cbf61E27791Ee/info.json b/blockchains/ethereum/assets/0xA0008F510fE9eE696E7E320C9e5cbf61E27791Ee/info.json new file mode 100644 index 00000000..e0e6a702 --- /dev/null +++ b/blockchains/ethereum/assets/0xA0008F510fE9eE696E7E320C9e5cbf61E27791Ee/info.json @@ -0,0 +1,11 @@ +{ + "name": "GMB", + "symbol": "GMB", + "type": "ERC20", + "decimals": 18, + "description": "GAMB is the decentralized marketplace of the future with no decision making unit other than the owners of the marketplace themselves.", + "website": "https://gamb.io", + "explorer": "https://etherscan.io/token/0xA0008F510fE9eE696E7E320C9e5cbf61E27791Ee", + "status": "active", + "id": "0xA0008F510fE9eE696E7E320C9e5cbf61E27791Ee" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA0008F510fE9eE696E7E320C9e5cbf61E27791Ee/logo.png b/blockchains/ethereum/assets/0xA0008F510fE9eE696E7E320C9e5cbf61E27791Ee/logo.png new file mode 100644 index 00000000..318492de Binary files /dev/null and b/blockchains/ethereum/assets/0xA0008F510fE9eE696E7E320C9e5cbf61E27791Ee/logo.png differ diff --git a/blockchains/ethereum/assets/0xA00425D3e2D3E9FF74F3e112B4D3A7978d7D88c2/info.json b/blockchains/ethereum/assets/0xA00425D3e2D3E9FF74F3e112B4D3A7978d7D88c2/info.json new file mode 100644 index 00000000..ba2f6ead --- /dev/null +++ b/blockchains/ethereum/assets/0xA00425D3e2D3E9FF74F3e112B4D3A7978d7D88c2/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoPower Token", + "symbol": "GPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://tokengoplatform.com/", + "explorer": "https://etherscan.io/token/0xA00425D3e2D3E9FF74F3e112B4D3A7978d7D88c2", + "status": "abandoned", + "id": "0xA00425D3e2D3E9FF74F3e112B4D3A7978d7D88c2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA00425D3e2D3E9FF74F3e112B4D3A7978d7D88c2/logo.png b/blockchains/ethereum/assets/0xA00425D3e2D3E9FF74F3e112B4D3A7978d7D88c2/logo.png new file mode 100644 index 00000000..555a35bf Binary files /dev/null and b/blockchains/ethereum/assets/0xA00425D3e2D3E9FF74F3e112B4D3A7978d7D88c2/logo.png differ diff --git a/blockchains/ethereum/assets/0xA01199c61841Fce3b3daFB83FeFC1899715c8756/info.json b/blockchains/ethereum/assets/0xA01199c61841Fce3b3daFB83FeFC1899715c8756/info.json new file mode 100644 index 00000000..69280d6e --- /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 00000000..c471fa52 Binary files /dev/null and b/blockchains/ethereum/assets/0xA01199c61841Fce3b3daFB83FeFC1899715c8756/logo.png differ diff --git a/blockchains/ethereum/assets/0xA017ac5faC5941f95010b12570B812C974469c2C/info.json b/blockchains/ethereum/assets/0xA017ac5faC5941f95010b12570B812C974469c2C/info.json new file mode 100644 index 00000000..a873e56b --- /dev/null +++ b/blockchains/ethereum/assets/0xA017ac5faC5941f95010b12570B812C974469c2C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Proxeus", + "symbol": "XES", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://proxeus.com/", + "explorer": "https://etherscan.io/token/0xA017ac5faC5941f95010b12570B812C974469c2C", + "status": "abandoned", + "id": "0xA017ac5faC5941f95010b12570B812C974469c2C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA017ac5faC5941f95010b12570B812C974469c2C/logo.png b/blockchains/ethereum/assets/0xA017ac5faC5941f95010b12570B812C974469c2C/logo.png new file mode 100644 index 00000000..b4245026 Binary files /dev/null and b/blockchains/ethereum/assets/0xA017ac5faC5941f95010b12570B812C974469c2C/logo.png differ diff --git a/blockchains/ethereum/assets/0xA02d0b6bfcE1dBd02b9cBB70e6b480333E8A86eC/info.json b/blockchains/ethereum/assets/0xA02d0b6bfcE1dBd02b9cBB70e6b480333E8A86eC/info.json new file mode 100644 index 00000000..a3881505 --- /dev/null +++ b/blockchains/ethereum/assets/0xA02d0b6bfcE1dBd02b9cBB70e6b480333E8A86eC/info.json @@ -0,0 +1,11 @@ +{ + "name": "IPWT", + "website": "https://ipweb.top", + "description": "IPWeb: A high-performance public chain based on P2P distributed storage. P2P distributed storage not only provides a secure, reliable, and low-cost storage platform, but anyone can freely use the distributed storage provided by IPWeb while defining smart contracts.", + "explorer": "https://etherscan.io/token/0xA02d0b6bfcE1dBd02b9cBB70e6b480333E8A86eC", + "type": "ERC20", + "symbol": "IPWT", + "decimals": 18, + "status": "active", + "id": "0xA02d0b6bfcE1dBd02b9cBB70e6b480333E8A86eC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA02d0b6bfcE1dBd02b9cBB70e6b480333E8A86eC/logo.png b/blockchains/ethereum/assets/0xA02d0b6bfcE1dBd02b9cBB70e6b480333E8A86eC/logo.png new file mode 100644 index 00000000..8a6b6d32 Binary files /dev/null and b/blockchains/ethereum/assets/0xA02d0b6bfcE1dBd02b9cBB70e6b480333E8A86eC/logo.png differ diff --git a/blockchains/ethereum/assets/0xA043FDc5A6E2E381e3532d5A97404b82fb7A0af8/info.json b/blockchains/ethereum/assets/0xA043FDc5A6E2E381e3532d5A97404b82fb7A0af8/info.json new file mode 100644 index 00000000..ff515a6a --- /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 00000000..abf2400a Binary files /dev/null and b/blockchains/ethereum/assets/0xA043FDc5A6E2E381e3532d5A97404b82fb7A0af8/logo.png differ diff --git a/blockchains/ethereum/assets/0xA0471cdd5c0dc2614535fD7505b17A651a8F0DAB/info.json b/blockchains/ethereum/assets/0xA0471cdd5c0dc2614535fD7505b17A651a8F0DAB/info.json new file mode 100644 index 00000000..9b43bdf1 --- /dev/null +++ b/blockchains/ethereum/assets/0xA0471cdd5c0dc2614535fD7505b17A651a8F0DAB/info.json @@ -0,0 +1,11 @@ +{ + "name": "EasySwap", + "website": "https://easyswap.trade", + "description": "EasySwap makes trading seamless and protects your portfolio from the high volatility of crypto markets, shielding it from turbulences and ensuring you remain profitable on the long run.", + "explorer": "https://etherscan.io/token/0xA0471cdd5c0dc2614535fD7505b17A651a8F0DAB", + "type": "ERC20", + "symbol": "ESWA", + "decimals": 8, + "status": "active", + "id": "0xA0471cdd5c0dc2614535fD7505b17A651a8F0DAB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA0471cdd5c0dc2614535fD7505b17A651a8F0DAB/logo.png b/blockchains/ethereum/assets/0xA0471cdd5c0dc2614535fD7505b17A651a8F0DAB/logo.png new file mode 100644 index 00000000..2fb30d1d Binary files /dev/null and b/blockchains/ethereum/assets/0xA0471cdd5c0dc2614535fD7505b17A651a8F0DAB/logo.png differ diff --git a/blockchains/ethereum/assets/0xA0637d954dA80323876dEfE1eb48B75BC33953e5/info.json b/blockchains/ethereum/assets/0xA0637d954dA80323876dEfE1eb48B75BC33953e5/info.json new file mode 100644 index 00000000..a403d313 --- /dev/null +++ b/blockchains/ethereum/assets/0xA0637d954dA80323876dEfE1eb48B75BC33953e5/info.json @@ -0,0 +1,11 @@ +{ + "name": "GlobalCitizenPay", + "symbol": "GCP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA0637d954dA80323876dEfE1eb48B75BC33953e5", + "status": "abandoned", + "id": "0xA0637d954dA80323876dEfE1eb48B75BC33953e5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA0637d954dA80323876dEfE1eb48B75BC33953e5/logo.png b/blockchains/ethereum/assets/0xA0637d954dA80323876dEfE1eb48B75BC33953e5/logo.png new file mode 100644 index 00000000..2c04623e Binary files /dev/null and b/blockchains/ethereum/assets/0xA0637d954dA80323876dEfE1eb48B75BC33953e5/logo.png differ diff --git a/blockchains/ethereum/assets/0xA08F11E2920FF9ae6299F508921a47FcfE623a57/info.json b/blockchains/ethereum/assets/0xA08F11E2920FF9ae6299F508921a47FcfE623a57/info.json new file mode 100644 index 00000000..bd75af03 --- /dev/null +++ b/blockchains/ethereum/assets/0xA08F11E2920FF9ae6299F508921a47FcfE623a57/info.json @@ -0,0 +1,11 @@ +{ + "name": "Andrew Cecil Funderburk 3rd", + "symbol": "ACF3", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA08F11E2920FF9ae6299F508921a47FcfE623a57", + "status": "abandoned", + "id": "0xA08F11E2920FF9ae6299F508921a47FcfE623a57" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA08F11E2920FF9ae6299F508921a47FcfE623a57/logo.png b/blockchains/ethereum/assets/0xA08F11E2920FF9ae6299F508921a47FcfE623a57/logo.png new file mode 100644 index 00000000..655f5ac2 Binary files /dev/null and b/blockchains/ethereum/assets/0xA08F11E2920FF9ae6299F508921a47FcfE623a57/logo.png differ diff --git a/blockchains/ethereum/assets/0xA099759772491738B18AE99F169157E60d16fbF7/info.json b/blockchains/ethereum/assets/0xA099759772491738B18AE99F169157E60d16fbF7/info.json new file mode 100644 index 00000000..4374649b --- /dev/null +++ b/blockchains/ethereum/assets/0xA099759772491738B18AE99F169157E60d16fbF7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Americoin", + "website": "https://ameriethe.com", + "description": "Americoin is one of the most transformative technologies since the invention of the Internet. Americoin stands firmly in support of financial freedom and the liberty that Americoin provides globally for anyone to voluntarily participate in a permissionless and decentralized network.", + "explorer": "https://etherscan.io/token/0xA099759772491738B18AE99F169157E60d16fbF7", + "type": "ERC20", + "symbol": "AME", + "decimals": 8, + "status": "active", + "id": "0xA099759772491738B18AE99F169157E60d16fbF7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA099759772491738B18AE99F169157E60d16fbF7/logo.png b/blockchains/ethereum/assets/0xA099759772491738B18AE99F169157E60d16fbF7/logo.png new file mode 100644 index 00000000..e0921d0d Binary files /dev/null and b/blockchains/ethereum/assets/0xA099759772491738B18AE99F169157E60d16fbF7/logo.png differ diff --git a/blockchains/ethereum/assets/0xA0CF46eb152656C7090e769916eb44a138aaa406/info.json b/blockchains/ethereum/assets/0xA0CF46eb152656C7090e769916eb44a138aaa406/info.json new file mode 100644 index 00000000..8ad16c9c --- /dev/null +++ b/blockchains/ethereum/assets/0xA0CF46eb152656C7090e769916eb44a138aaa406/info.json @@ -0,0 +1,11 @@ +{ + "name": "Spheroid", + "symbol": "SPH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.spheroiduniverse.io/", + "explorer": "https://etherscan.io/token/0xA0CF46eb152656C7090e769916eb44a138aaa406", + "status": "abandoned", + "id": "0xA0CF46eb152656C7090e769916eb44a138aaa406" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA0CF46eb152656C7090e769916eb44a138aaa406/logo.png b/blockchains/ethereum/assets/0xA0CF46eb152656C7090e769916eb44a138aaa406/logo.png new file mode 100644 index 00000000..179fb9ba Binary files /dev/null and b/blockchains/ethereum/assets/0xA0CF46eb152656C7090e769916eb44a138aaa406/logo.png differ diff --git a/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/info.json b/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/info.json new file mode 100644 index 00000000..214ab311 --- /dev/null +++ b/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/info.json @@ -0,0 +1,25 @@ +{ + "name": "Myria", + "website": "https://myria.com/", + "description": "The MYRIA token is officially live, bringing Myria a step closer to building the ultimate Web3 gaming ecosystem.", + "explorer": "https://etherscan.io/token/0xa0ef786bf476fe0810408caba05e536ac800ff86", + "type": "ERC20", + "symbol": "MYRIA", + "decimals": 18, + "status": "active", + "id": "0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86", + "links": [ + { + "name": "discord", + "url": "https://discord.com/myria" + }, + { + "name": "telegram", + "url": "https://t.me/myriaofficialgroup" + }, + { + "name": "x", + "url": "https://x.com/myria" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/logo.png b/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/logo.png new file mode 100644 index 00000000..75650993 Binary files /dev/null and b/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/logo.png differ diff --git a/blockchains/ethereum/assets/0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b/info.json b/blockchains/ethereum/assets/0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b/info.json new file mode 100644 index 00000000..bd54d375 --- /dev/null +++ b/blockchains/ethereum/assets/0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b/info.json @@ -0,0 +1,41 @@ +{ + "name": "Crypto.com Coin", + "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", + "type": "ERC20", + "symbol": "CRO", + "decimals": 8, + "status": "active", + "id": "0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b", + "links": [ + { + "name": "blog", + "url": "https://medium.com/@crypto.com" + }, + { + "name": "x", + "url": "https://x.com/cryptocom" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Crypto_com/" + }, + { + "name": "facebook", + "url": "https://facebook.com/CryptoComOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoComOfficial" + }, + { + "name": "whitepaper", + "url": "https://crypto.com/images/chain_whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/crypto-com-chain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b/logo.png b/blockchains/ethereum/assets/0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b/logo.png new file mode 100644 index 00000000..f65a8814 Binary files /dev/null and b/blockchains/ethereum/assets/0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b/logo.png differ diff --git a/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/info.json b/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/info.json new file mode 100644 index 00000000..b310c04d --- /dev/null +++ b/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/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://etherscan.io/token/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "type": "ERC20", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "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/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png b/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png new file mode 100644 index 00000000..eafbaac1 Binary files /dev/null and b/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png differ diff --git a/blockchains/ethereum/assets/0xA0c0eD2A0CeACFa8bF1528073e57ddB0E7e17cE7/info.json b/blockchains/ethereum/assets/0xA0c0eD2A0CeACFa8bF1528073e57ddB0E7e17cE7/info.json new file mode 100644 index 00000000..0e07c645 --- /dev/null +++ b/blockchains/ethereum/assets/0xA0c0eD2A0CeACFa8bF1528073e57ddB0E7e17cE7/info.json @@ -0,0 +1,11 @@ +{ + "name": "AfricOil Coin", + "symbol": "AfriCo", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA0c0eD2A0CeACFa8bF1528073e57ddB0E7e17cE7", + "status": "abandoned", + "id": "0xA0c0eD2A0CeACFa8bF1528073e57ddB0E7e17cE7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA0c0eD2A0CeACFa8bF1528073e57ddB0E7e17cE7/logo.png b/blockchains/ethereum/assets/0xA0c0eD2A0CeACFa8bF1528073e57ddB0E7e17cE7/logo.png new file mode 100644 index 00000000..ceadf285 Binary files /dev/null and b/blockchains/ethereum/assets/0xA0c0eD2A0CeACFa8bF1528073e57ddB0E7e17cE7/logo.png differ diff --git a/blockchains/ethereum/assets/0xA0cCa3Cf5c64152883f4c947c404E46996593fA7/info.json b/blockchains/ethereum/assets/0xA0cCa3Cf5c64152883f4c947c404E46996593fA7/info.json new file mode 100644 index 00000000..bed943b7 --- /dev/null +++ b/blockchains/ethereum/assets/0xA0cCa3Cf5c64152883f4c947c404E46996593fA7/info.json @@ -0,0 +1,11 @@ +{ + "name": "BRAPPER", + "symbol": "BRAP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://brappertoken.com/", + "explorer": "https://etherscan.io/token/0xA0cCa3Cf5c64152883f4c947c404E46996593fA7", + "status": "abandoned", + "id": "0xA0cCa3Cf5c64152883f4c947c404E46996593fA7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA0cCa3Cf5c64152883f4c947c404E46996593fA7/logo.png b/blockchains/ethereum/assets/0xA0cCa3Cf5c64152883f4c947c404E46996593fA7/logo.png new file mode 100644 index 00000000..18d42d2e Binary files /dev/null and b/blockchains/ethereum/assets/0xA0cCa3Cf5c64152883f4c947c404E46996593fA7/logo.png differ diff --git a/blockchains/ethereum/assets/0xA110eeebc0751407bDCAeA4CD230F04A2b82a33a/info.json b/blockchains/ethereum/assets/0xA110eeebc0751407bDCAeA4CD230F04A2b82a33a/info.json new file mode 100644 index 00000000..73af3cf9 --- /dev/null +++ b/blockchains/ethereum/assets/0xA110eeebc0751407bDCAeA4CD230F04A2b82a33a/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoWithMi", + "website": "https://gowithmi.com", + "description": "GoWithMi aims to map the world on the blockchain by building a global decentralized location-based services infrastructure for applications.", + "explorer": "https://etherscan.io/token/0xA110eeebc0751407bDCAeA4CD230F04A2b82a33a", + "type": "ERC20", + "symbol": "GMAT", + "decimals": 18, + "status": "active", + "id": "0xA110eeebc0751407bDCAeA4CD230F04A2b82a33a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA110eeebc0751407bDCAeA4CD230F04A2b82a33a/logo.png b/blockchains/ethereum/assets/0xA110eeebc0751407bDCAeA4CD230F04A2b82a33a/logo.png new file mode 100644 index 00000000..969ad64c Binary files /dev/null and b/blockchains/ethereum/assets/0xA110eeebc0751407bDCAeA4CD230F04A2b82a33a/logo.png differ diff --git a/blockchains/ethereum/assets/0xA1248c718d52752b2cC257eeb0eBa900408dAeB8/info.json b/blockchains/ethereum/assets/0xA1248c718d52752b2cC257eeb0eBa900408dAeB8/info.json new file mode 100644 index 00000000..a17b2792 --- /dev/null +++ b/blockchains/ethereum/assets/0xA1248c718d52752b2cC257eeb0eBa900408dAeB8/info.json @@ -0,0 +1,11 @@ +{ + "name": "SWYFT Token", + "symbol": "SWYFTT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://swyft.network/", + "explorer": "https://etherscan.io/token/0xA1248c718d52752b2cC257eeb0eBa900408dAeB8", + "status": "abandoned", + "id": "0xA1248c718d52752b2cC257eeb0eBa900408dAeB8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA1248c718d52752b2cC257eeb0eBa900408dAeB8/logo.png b/blockchains/ethereum/assets/0xA1248c718d52752b2cC257eeb0eBa900408dAeB8/logo.png new file mode 100644 index 00000000..b608db45 Binary files /dev/null and b/blockchains/ethereum/assets/0xA1248c718d52752b2cC257eeb0eBa900408dAeB8/logo.png differ diff --git a/blockchains/ethereum/assets/0xA12D6e782e67fC4aF136098324ab2658b2734BD0/info.json b/blockchains/ethereum/assets/0xA12D6e782e67fC4aF136098324ab2658b2734BD0/info.json new file mode 100644 index 00000000..eef02def --- /dev/null +++ b/blockchains/ethereum/assets/0xA12D6e782e67fC4aF136098324ab2658b2734BD0/info.json @@ -0,0 +1,11 @@ +{ + "name": "MAZO", + "symbol": "MAZO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA12D6e782e67fC4aF136098324ab2658b2734BD0", + "status": "abandoned", + "id": "0xA12D6e782e67fC4aF136098324ab2658b2734BD0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA12D6e782e67fC4aF136098324ab2658b2734BD0/logo.png b/blockchains/ethereum/assets/0xA12D6e782e67fC4aF136098324ab2658b2734BD0/logo.png new file mode 100644 index 00000000..406d8cb4 Binary files /dev/null and b/blockchains/ethereum/assets/0xA12D6e782e67fC4aF136098324ab2658b2734BD0/logo.png differ diff --git a/blockchains/ethereum/assets/0xA13d570cea90D9Ae0AAe2C2BbA975645BC82ae85/info.json b/blockchains/ethereum/assets/0xA13d570cea90D9Ae0AAe2C2BbA975645BC82ae85/info.json new file mode 100644 index 00000000..e889ded0 --- /dev/null +++ b/blockchains/ethereum/assets/0xA13d570cea90D9Ae0AAe2C2BbA975645BC82ae85/info.json @@ -0,0 +1,11 @@ +{ + "name": "RIZIN", + "symbol": "RZN", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA13d570cea90D9Ae0AAe2C2BbA975645BC82ae85", + "status": "abandoned", + "id": "0xA13d570cea90D9Ae0AAe2C2BbA975645BC82ae85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA13d570cea90D9Ae0AAe2C2BbA975645BC82ae85/logo.png b/blockchains/ethereum/assets/0xA13d570cea90D9Ae0AAe2C2BbA975645BC82ae85/logo.png new file mode 100644 index 00000000..080c7a27 Binary files /dev/null and b/blockchains/ethereum/assets/0xA13d570cea90D9Ae0AAe2C2BbA975645BC82ae85/logo.png differ diff --git a/blockchains/ethereum/assets/0xA13f0743951B4f6E3e3AA039f682E17279f52bc3/info.json b/blockchains/ethereum/assets/0xA13f0743951B4f6E3e3AA039f682E17279f52bc3/info.json new file mode 100644 index 00000000..54365dce --- /dev/null +++ b/blockchains/ethereum/assets/0xA13f0743951B4f6E3e3AA039f682E17279f52bc3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sentinel Chain Token", + "symbol": "SENC", + "type": "ERC20", + "decimals": 18, + "description": "Sentinel Chain (SENC) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://sentinel-chain.org", + "explorer": "https://etherscan.io/token/0xA13f0743951B4f6E3e3AA039f682E17279f52bc3", + "status": "active", + "id": "0xA13f0743951B4f6E3e3AA039f682E17279f52bc3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA13f0743951B4f6E3e3AA039f682E17279f52bc3/logo.png b/blockchains/ethereum/assets/0xA13f0743951B4f6E3e3AA039f682E17279f52bc3/logo.png new file mode 100644 index 00000000..20d04f3b Binary files /dev/null and b/blockchains/ethereum/assets/0xA13f0743951B4f6E3e3AA039f682E17279f52bc3/logo.png differ diff --git a/blockchains/ethereum/assets/0xA15C7Ebe1f07CaF6bFF097D8a589fb8AC49Ae5B3/info.json b/blockchains/ethereum/assets/0xA15C7Ebe1f07CaF6bFF097D8a589fb8AC49Ae5B3/info.json new file mode 100644 index 00000000..7d9c0070 --- /dev/null +++ b/blockchains/ethereum/assets/0xA15C7Ebe1f07CaF6bFF097D8a589fb8AC49Ae5B3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pundi X (Old)", + "website": "https://pundix.com", + "description": "Pundi X (NPXS) aims to make the use of cryptocurrency as a form of payment into a reality for retailers and consumers alike.", + "explorer": "https://etherscan.io/token/0xA15C7Ebe1f07CaF6bFF097D8a589fb8AC49Ae5B3", + "type": "ERC20", + "symbol": "NPXS", + "decimals": 18, + "status": "abandoned", + "id": "0xA15C7Ebe1f07CaF6bFF097D8a589fb8AC49Ae5B3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA15C7Ebe1f07CaF6bFF097D8a589fb8AC49Ae5B3/logo.png b/blockchains/ethereum/assets/0xA15C7Ebe1f07CaF6bFF097D8a589fb8AC49Ae5B3/logo.png new file mode 100644 index 00000000..fbf12a55 Binary files /dev/null and b/blockchains/ethereum/assets/0xA15C7Ebe1f07CaF6bFF097D8a589fb8AC49Ae5B3/logo.png differ diff --git a/blockchains/ethereum/assets/0xA1AFFfE3F4D611d252010E3EAf6f4D77088b0cd7/info.json b/blockchains/ethereum/assets/0xA1AFFfE3F4D611d252010E3EAf6f4D77088b0cd7/info.json new file mode 100644 index 00000000..f5707e7a --- /dev/null +++ b/blockchains/ethereum/assets/0xA1AFFfE3F4D611d252010E3EAf6f4D77088b0cd7/info.json @@ -0,0 +1,11 @@ +{ + "name": "reflect.finance", + "website": "https://reflect.finance", + "description": "Frictionless Yield Generation. Hold and Earn.", + "explorer": "https://etherscan.io/token/0xa1afffe3f4d611d252010e3eaf6f4d77088b0cd7", + "type": "ERC20", + "symbol": "RFI", + "decimals": 9, + "status": "active", + "id": "0xA1AFFfE3F4D611d252010E3EAf6f4D77088b0cd7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA1AFFfE3F4D611d252010E3EAf6f4D77088b0cd7/logo.png b/blockchains/ethereum/assets/0xA1AFFfE3F4D611d252010E3EAf6f4D77088b0cd7/logo.png new file mode 100644 index 00000000..792f74bf Binary files /dev/null and b/blockchains/ethereum/assets/0xA1AFFfE3F4D611d252010E3EAf6f4D77088b0cd7/logo.png differ diff --git a/blockchains/ethereum/assets/0xA1BA7186eeC1Be5114b0Cf49b95B23aDC4131B51/info.json b/blockchains/ethereum/assets/0xA1BA7186eeC1Be5114b0Cf49b95B23aDC4131B51/info.json new file mode 100644 index 00000000..1e22e67a --- /dev/null +++ b/blockchains/ethereum/assets/0xA1BA7186eeC1Be5114b0Cf49b95B23aDC4131B51/info.json @@ -0,0 +1,11 @@ +{ + "name": "FTI NEWS Token", + "symbol": "TECH", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA1BA7186eeC1Be5114b0Cf49b95B23aDC4131B51", + "status": "abandoned", + "id": "0xA1BA7186eeC1Be5114b0Cf49b95B23aDC4131B51" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA1BA7186eeC1Be5114b0Cf49b95B23aDC4131B51/logo.png b/blockchains/ethereum/assets/0xA1BA7186eeC1Be5114b0Cf49b95B23aDC4131B51/logo.png new file mode 100644 index 00000000..61139e3a Binary files /dev/null and b/blockchains/ethereum/assets/0xA1BA7186eeC1Be5114b0Cf49b95B23aDC4131B51/logo.png differ diff --git a/blockchains/ethereum/assets/0xA1Dfe596add9585CB5c5b9569AEdef837e7Dfe3E/info.json b/blockchains/ethereum/assets/0xA1Dfe596add9585CB5c5b9569AEdef837e7Dfe3E/info.json new file mode 100644 index 00000000..43a44c50 --- /dev/null +++ b/blockchains/ethereum/assets/0xA1Dfe596add9585CB5c5b9569AEdef837e7Dfe3E/info.json @@ -0,0 +1,11 @@ +{ + "name": "TEOGLOBAL", + "symbol": "TGR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA1Dfe596add9585CB5c5b9569AEdef837e7Dfe3E", + "status": "abandoned", + "id": "0xA1Dfe596add9585CB5c5b9569AEdef837e7Dfe3E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA1Dfe596add9585CB5c5b9569AEdef837e7Dfe3E/logo.png b/blockchains/ethereum/assets/0xA1Dfe596add9585CB5c5b9569AEdef837e7Dfe3E/logo.png new file mode 100644 index 00000000..cc835983 Binary files /dev/null and b/blockchains/ethereum/assets/0xA1Dfe596add9585CB5c5b9569AEdef837e7Dfe3E/logo.png differ diff --git a/blockchains/ethereum/assets/0xA1F18BA7a1FA1F2c15EAE5C42e722278F1235b7a/info.json b/blockchains/ethereum/assets/0xA1F18BA7a1FA1F2c15EAE5C42e722278F1235b7a/info.json new file mode 100644 index 00000000..f1d75795 --- /dev/null +++ b/blockchains/ethereum/assets/0xA1F18BA7a1FA1F2c15EAE5C42e722278F1235b7a/info.json @@ -0,0 +1,11 @@ +{ + "name": "ESCX Token", + "symbol": "ESCX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA1F18BA7a1FA1F2c15EAE5C42e722278F1235b7a", + "status": "abandoned", + "id": "0xA1F18BA7a1FA1F2c15EAE5C42e722278F1235b7a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA1F18BA7a1FA1F2c15EAE5C42e722278F1235b7a/logo.png b/blockchains/ethereum/assets/0xA1F18BA7a1FA1F2c15EAE5C42e722278F1235b7a/logo.png new file mode 100644 index 00000000..d8cf2574 Binary files /dev/null and b/blockchains/ethereum/assets/0xA1F18BA7a1FA1F2c15EAE5C42e722278F1235b7a/logo.png differ diff --git a/blockchains/ethereum/assets/0xA1c8031EF18272d8BfeD22E1b61319D6d9d2881B/info.json b/blockchains/ethereum/assets/0xA1c8031EF18272d8BfeD22E1b61319D6d9d2881B/info.json new file mode 100644 index 00000000..740cd387 --- /dev/null +++ b/blockchains/ethereum/assets/0xA1c8031EF18272d8BfeD22E1b61319D6d9d2881B/info.json @@ -0,0 +1,11 @@ +{ + "name": "PlanetCoin", + "symbol": "PLT", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA1c8031EF18272d8BfeD22E1b61319D6d9d2881B", + "status": "abandoned", + "id": "0xA1c8031EF18272d8BfeD22E1b61319D6d9d2881B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA1c8031EF18272d8BfeD22E1b61319D6d9d2881B/logo.png b/blockchains/ethereum/assets/0xA1c8031EF18272d8BfeD22E1b61319D6d9d2881B/logo.png new file mode 100644 index 00000000..8d0b4f45 Binary files /dev/null and b/blockchains/ethereum/assets/0xA1c8031EF18272d8BfeD22E1b61319D6d9d2881B/logo.png differ diff --git a/blockchains/ethereum/assets/0xA1d38Ef843553322a338CdD7d6134565ffbA97ab/info.json b/blockchains/ethereum/assets/0xA1d38Ef843553322a338CdD7d6134565ffbA97ab/info.json new file mode 100644 index 00000000..c58f0f4a --- /dev/null +++ b/blockchains/ethereum/assets/0xA1d38Ef843553322a338CdD7d6134565ffbA97ab/info.json @@ -0,0 +1,11 @@ +{ + "name": "Levyte Token", + "symbol": "LEVT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA1d38Ef843553322a338CdD7d6134565ffbA97ab", + "status": "abandoned", + "id": "0xA1d38Ef843553322a338CdD7d6134565ffbA97ab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA1d38Ef843553322a338CdD7d6134565ffbA97ab/logo.png b/blockchains/ethereum/assets/0xA1d38Ef843553322a338CdD7d6134565ffbA97ab/logo.png new file mode 100644 index 00000000..6a9ab20b Binary files /dev/null and b/blockchains/ethereum/assets/0xA1d38Ef843553322a338CdD7d6134565ffbA97ab/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2085073878152aC3090eA13D1e41bD69e60Dc99/info.json b/blockchains/ethereum/assets/0xA2085073878152aC3090eA13D1e41bD69e60Dc99/info.json new file mode 100644 index 00000000..92865c30 --- /dev/null +++ b/blockchains/ethereum/assets/0xA2085073878152aC3090eA13D1e41bD69e60Dc99/info.json @@ -0,0 +1,11 @@ +{ + "name": "Escoin", + "website": "https://escoin.ee/", + "description": "The purpose of Escoin includes providing clients and law firms establish mutual cooperation in the digital environment in accordance with common interests by eliminating the country’s borders and providing the entire infrastructure they need.", + "explorer": "https://etherscan.io/token/0xa2085073878152ac3090ea13d1e41bd69e60dc99", + "type": "ERC20", + "symbol": "ELG", + "decimals": 18, + "status": "active", + "id": "0xA2085073878152aC3090eA13D1e41bD69e60Dc99" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA2085073878152aC3090eA13D1e41bD69e60Dc99/logo.png b/blockchains/ethereum/assets/0xA2085073878152aC3090eA13D1e41bD69e60Dc99/logo.png new file mode 100644 index 00000000..cbdd56bb Binary files /dev/null and b/blockchains/ethereum/assets/0xA2085073878152aC3090eA13D1e41bD69e60Dc99/logo.png differ diff --git a/blockchains/ethereum/assets/0xA20f024FCDb5dc72d067a3dFa6c3eCE338A04344/info.json b/blockchains/ethereum/assets/0xA20f024FCDb5dc72d067a3dFa6c3eCE338A04344/info.json new file mode 100644 index 00000000..771052ed --- /dev/null +++ b/blockchains/ethereum/assets/0xA20f024FCDb5dc72d067a3dFa6c3eCE338A04344/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Titan", + "symbol": "ETT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA20f024FCDb5dc72d067a3dFa6c3eCE338A04344", + "status": "abandoned", + "id": "0xA20f024FCDb5dc72d067a3dFa6c3eCE338A04344" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA20f024FCDb5dc72d067a3dFa6c3eCE338A04344/logo.png b/blockchains/ethereum/assets/0xA20f024FCDb5dc72d067a3dFa6c3eCE338A04344/logo.png new file mode 100644 index 00000000..6e8fd372 Binary files /dev/null and b/blockchains/ethereum/assets/0xA20f024FCDb5dc72d067a3dFa6c3eCE338A04344/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/info.json b/blockchains/ethereum/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/info.json new file mode 100644 index 00000000..50358730 --- /dev/null +++ b/blockchains/ethereum/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/info.json @@ -0,0 +1,33 @@ +{ + "name": "Automata", + "website": "https://www.ata.network", + "description": "Automata Network is a decentralized service protocol that provides a privacy middleware layer for dApps across multiple blockchains.", + "explorer": "https://etherscan.io/token/0xA2120b9e674d3fC3875f415A7DF52e382F141225", + "type": "ERC20", + "symbol": "ATA", + "decimals": 18, + "status": "active", + "id": "0xA2120b9e674d3fC3875f415A7DF52e382F141225", + "links": [ + { + "name": "github", + "url": "https://github.com/automata-network" + }, + { + "name": "x", + "url": "https://x.com/automatanetwork" + }, + { + "name": "telegram", + "url": "https://t.me/ata_network" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/automata/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/automata-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/logo.png b/blockchains/ethereum/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/logo.png new file mode 100644 index 00000000..0184935a Binary files /dev/null and b/blockchains/ethereum/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/logo.png differ diff --git a/blockchains/ethereum/assets/0xA240EE926a32E5FD0b5fbfbF6ef1bc2E365D0F90/info.json b/blockchains/ethereum/assets/0xA240EE926a32E5FD0b5fbfbF6ef1bc2E365D0F90/info.json new file mode 100644 index 00000000..25faf1da --- /dev/null +++ b/blockchains/ethereum/assets/0xA240EE926a32E5FD0b5fbfbF6ef1bc2E365D0F90/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 192-CN18", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA240EE926a32E5FD0b5fbfbF6ef1bc2E365D0F90", + "status": "abandoned", + "id": "0xA240EE926a32E5FD0b5fbfbF6ef1bc2E365D0F90" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA240EE926a32E5FD0b5fbfbF6ef1bc2E365D0F90/logo.png b/blockchains/ethereum/assets/0xA240EE926a32E5FD0b5fbfbF6ef1bc2E365D0F90/logo.png new file mode 100644 index 00000000..d5b6d735 Binary files /dev/null and b/blockchains/ethereum/assets/0xA240EE926a32E5FD0b5fbfbF6ef1bc2E365D0F90/logo.png differ diff --git a/blockchains/ethereum/assets/0xA26C4caaaEa8b88ef49Bf8c380488f66C2d807Ae/info.json b/blockchains/ethereum/assets/0xA26C4caaaEa8b88ef49Bf8c380488f66C2d807Ae/info.json new file mode 100644 index 00000000..3e4bd88d --- /dev/null +++ b/blockchains/ethereum/assets/0xA26C4caaaEa8b88ef49Bf8c380488f66C2d807Ae/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eviff", + "symbol": "EVF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA26C4caaaEa8b88ef49Bf8c380488f66C2d807Ae", + "status": "abandoned", + "id": "0xA26C4caaaEa8b88ef49Bf8c380488f66C2d807Ae" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA26C4caaaEa8b88ef49Bf8c380488f66C2d807Ae/logo.png b/blockchains/ethereum/assets/0xA26C4caaaEa8b88ef49Bf8c380488f66C2d807Ae/logo.png new file mode 100644 index 00000000..fc0df934 Binary files /dev/null and b/blockchains/ethereum/assets/0xA26C4caaaEa8b88ef49Bf8c380488f66C2d807Ae/logo.png differ diff --git a/blockchains/ethereum/assets/0xA28d2EC98C6bb076A2e152dC9e0d94C8C01e36B0/info.json b/blockchains/ethereum/assets/0xA28d2EC98C6bb076A2e152dC9e0d94C8C01e36B0/info.json new file mode 100644 index 00000000..ee092c87 --- /dev/null +++ b/blockchains/ethereum/assets/0xA28d2EC98C6bb076A2e152dC9e0d94C8C01e36B0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Strike COMP", + "symbol": "sCOMP", + "type": "ERC20", + "decimals": 18, + "description": "Strike Finance collateral cryptocurrency", + "explorer": "https://etherscan.io/token/0xA28d2EC98C6bb076A2e152dC9e0d94C8C01e36B0", + "status": "active", + "id": "0xA28d2EC98C6bb076A2e152dC9e0d94C8C01e36B0", + "website": "https://strike.org" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA28d2EC98C6bb076A2e152dC9e0d94C8C01e36B0/logo.png b/blockchains/ethereum/assets/0xA28d2EC98C6bb076A2e152dC9e0d94C8C01e36B0/logo.png new file mode 100644 index 00000000..fd74c6c0 Binary files /dev/null and b/blockchains/ethereum/assets/0xA28d2EC98C6bb076A2e152dC9e0d94C8C01e36B0/logo.png differ diff --git a/blockchains/ethereum/assets/0xA29dC2102dfc2a0A4A5dCb84Af984315567c9858/info.json b/blockchains/ethereum/assets/0xA29dC2102dfc2a0A4A5dCb84Af984315567c9858/info.json new file mode 100644 index 00000000..30700dac --- /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 00000000..87120d13 Binary files /dev/null and b/blockchains/ethereum/assets/0xA29dC2102dfc2a0A4A5dCb84Af984315567c9858/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2A19165C17B36a5C753A246c1e188489754A693/info.json b/blockchains/ethereum/assets/0xA2A19165C17B36a5C753A246c1e188489754A693/info.json new file mode 100644 index 00000000..e05696e8 --- /dev/null +++ b/blockchains/ethereum/assets/0xA2A19165C17B36a5C753A246c1e188489754A693/info.json @@ -0,0 +1,11 @@ +{ + "name": "P2PG", + "symbol": "P2PGO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA2A19165C17B36a5C753A246c1e188489754A693", + "status": "abandoned", + "id": "0xA2A19165C17B36a5C753A246c1e188489754A693" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA2A19165C17B36a5C753A246c1e188489754A693/logo.png b/blockchains/ethereum/assets/0xA2A19165C17B36a5C753A246c1e188489754A693/logo.png new file mode 100644 index 00000000..44accf30 Binary files /dev/null and b/blockchains/ethereum/assets/0xA2A19165C17B36a5C753A246c1e188489754A693/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2A54f1Ec1f09316eF12c1770D32ed8F21B1Fb6A/info.json b/blockchains/ethereum/assets/0xA2A54f1Ec1f09316eF12c1770D32ed8F21B1Fb6A/info.json new file mode 100644 index 00000000..b7ae446d --- /dev/null +++ b/blockchains/ethereum/assets/0xA2A54f1Ec1f09316eF12c1770D32ed8F21B1Fb6A/info.json @@ -0,0 +1,11 @@ +{ + "name": "DFT", + "symbol": "DFT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.digifinex.com/", + "explorer": "https://etherscan.io/token/0xA2A54f1Ec1f09316eF12c1770D32ed8F21B1Fb6A", + "status": "abandoned", + "id": "0xA2A54f1Ec1f09316eF12c1770D32ed8F21B1Fb6A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA2A54f1Ec1f09316eF12c1770D32ed8F21B1Fb6A/logo.png b/blockchains/ethereum/assets/0xA2A54f1Ec1f09316eF12c1770D32ed8F21B1Fb6A/logo.png new file mode 100755 index 00000000..9b3fb92e Binary files /dev/null and b/blockchains/ethereum/assets/0xA2A54f1Ec1f09316eF12c1770D32ed8F21B1Fb6A/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2A8Dec9d963e2fE7a5aB8469586B07eF53bb505/info.json b/blockchains/ethereum/assets/0xA2A8Dec9d963e2fE7a5aB8469586B07eF53bb505/info.json new file mode 100644 index 00000000..ee5f1a79 --- /dev/null +++ b/blockchains/ethereum/assets/0xA2A8Dec9d963e2fE7a5aB8469586B07eF53bb505/info.json @@ -0,0 +1,11 @@ +{ + "name": "Peak Token", + "symbol": "PEAK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA2A8Dec9d963e2fE7a5aB8469586B07eF53bb505", + "status": "abandoned", + "id": "0xA2A8Dec9d963e2fE7a5aB8469586B07eF53bb505" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA2A8Dec9d963e2fE7a5aB8469586B07eF53bb505/logo.png b/blockchains/ethereum/assets/0xA2A8Dec9d963e2fE7a5aB8469586B07eF53bb505/logo.png new file mode 100644 index 00000000..93f8f597 Binary files /dev/null and b/blockchains/ethereum/assets/0xA2A8Dec9d963e2fE7a5aB8469586B07eF53bb505/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2B14f0E0986d2733B01808491536F923554c903/info.json b/blockchains/ethereum/assets/0xA2B14f0E0986d2733B01808491536F923554c903/info.json new file mode 100644 index 00000000..1779c85c --- /dev/null +++ b/blockchains/ethereum/assets/0xA2B14f0E0986d2733B01808491536F923554c903/info.json @@ -0,0 +1,11 @@ +{ + "name": "ALMEEGRAM", + "symbol": "ALMG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA2B14f0E0986d2733B01808491536F923554c903", + "status": "abandoned", + "id": "0xA2B14f0E0986d2733B01808491536F923554c903" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA2B14f0E0986d2733B01808491536F923554c903/logo.png b/blockchains/ethereum/assets/0xA2B14f0E0986d2733B01808491536F923554c903/logo.png new file mode 100644 index 00000000..dc38b0f0 Binary files /dev/null and b/blockchains/ethereum/assets/0xA2B14f0E0986d2733B01808491536F923554c903/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2C1c0b4683a871187d4565Eb63ABF9AEF5947Ee/info.json b/blockchains/ethereum/assets/0xA2C1c0b4683a871187d4565Eb63ABF9AEF5947Ee/info.json new file mode 100644 index 00000000..f6b3439a --- /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 00000000..1286f93f Binary files /dev/null and b/blockchains/ethereum/assets/0xA2C1c0b4683a871187d4565Eb63ABF9AEF5947Ee/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2DCA432DCe9c67Bfa31B29A8af0c7852cFf4713/info.json b/blockchains/ethereum/assets/0xA2DCA432DCe9c67Bfa31B29A8af0c7852cFf4713/info.json new file mode 100644 index 00000000..04809958 --- /dev/null +++ b/blockchains/ethereum/assets/0xA2DCA432DCe9c67Bfa31B29A8af0c7852cFf4713/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trust Block", + "symbol": "TB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA2DCA432DCe9c67Bfa31B29A8af0c7852cFf4713", + "status": "abandoned", + "id": "0xA2DCA432DCe9c67Bfa31B29A8af0c7852cFf4713" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA2DCA432DCe9c67Bfa31B29A8af0c7852cFf4713/logo.png b/blockchains/ethereum/assets/0xA2DCA432DCe9c67Bfa31B29A8af0c7852cFf4713/logo.png new file mode 100644 index 00000000..49e915d8 Binary files /dev/null and b/blockchains/ethereum/assets/0xA2DCA432DCe9c67Bfa31B29A8af0c7852cFf4713/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2a0bC3CEcF38AD9A2f8e18D27083215c1fB2706/info.json b/blockchains/ethereum/assets/0xA2a0bC3CEcF38AD9A2f8e18D27083215c1fB2706/info.json new file mode 100644 index 00000000..4ae591df --- /dev/null +++ b/blockchains/ethereum/assets/0xA2a0bC3CEcF38AD9A2f8e18D27083215c1fB2706/info.json @@ -0,0 +1,11 @@ +{ + "name": "MATCoin", + "symbol": "MAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA2a0bC3CEcF38AD9A2f8e18D27083215c1fB2706", + "status": "abandoned", + "id": "0xA2a0bC3CEcF38AD9A2f8e18D27083215c1fB2706" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA2a0bC3CEcF38AD9A2f8e18D27083215c1fB2706/logo.png b/blockchains/ethereum/assets/0xA2a0bC3CEcF38AD9A2f8e18D27083215c1fB2706/logo.png new file mode 100755 index 00000000..43943d74 Binary files /dev/null and b/blockchains/ethereum/assets/0xA2a0bC3CEcF38AD9A2f8e18D27083215c1fB2706/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2b4C0Af19cC16a6CfAcCe81F192B024d625817D/info.json b/blockchains/ethereum/assets/0xA2b4C0Af19cC16a6CfAcCe81F192B024d625817D/info.json new file mode 100644 index 00000000..1613e908 --- /dev/null +++ b/blockchains/ethereum/assets/0xA2b4C0Af19cC16a6CfAcCe81F192B024d625817D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kishu Inu", + "type": "ERC20", + "symbol": "KISHU", + "decimals": 9, + "website": "https://kishu.finance/", + "description": "Kishu Inu ($KISHU) is a community-focused, decentralized cryptocurrency with instant rewards for holders. Join the moon mission.", + "explorer": "https://etherscan.io/token/0xa2b4c0af19cc16a6cfacce81f192b024d625817d", + "status": "active", + "id": "0xA2b4C0Af19cC16a6CfAcCe81F192B024d625817D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA2b4C0Af19cC16a6CfAcCe81F192B024d625817D/logo.png b/blockchains/ethereum/assets/0xA2b4C0Af19cC16a6CfAcCe81F192B024d625817D/logo.png new file mode 100644 index 00000000..8923338c Binary files /dev/null and b/blockchains/ethereum/assets/0xA2b4C0Af19cC16a6CfAcCe81F192B024d625817D/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/info.json b/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/info.json new file mode 100644 index 00000000..cbd65285 --- /dev/null +++ b/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/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://etherscan.io/token/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18", + "type": "ERC20", + "symbol": "XCN", + "decimals": 18, + "status": "active", + "id": "0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18", + "links": [ + { + "name": "github", + "url": "https://github.com/Onyx-Protocol" + }, + { + "name": "x", + "url": "https://x.com/OnyxProtocol" + }, + { + "name": "blog", + "url": "https://blog.chain.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chain/" + }, + { + "name": "telegram", + "url": "https://t.me/onyx" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/logo.png b/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/logo.png new file mode 100644 index 00000000..18629f0e Binary files /dev/null and b/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2eC76139028F279A1C790d323c57Cc4158098d6/info.json b/blockchains/ethereum/assets/0xA2eC76139028F279A1C790d323c57Cc4158098d6/info.json new file mode 100644 index 00000000..18d3bf58 --- /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 00000000..6c932394 Binary files /dev/null and b/blockchains/ethereum/assets/0xA2eC76139028F279A1C790d323c57Cc4158098d6/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2fEf2Ce4A51033C6506A336963D59338b55F155/info.json b/blockchains/ethereum/assets/0xA2fEf2Ce4A51033C6506A336963D59338b55F155/info.json new file mode 100644 index 00000000..c40dac9b --- /dev/null +++ b/blockchains/ethereum/assets/0xA2fEf2Ce4A51033C6506A336963D59338b55F155/info.json @@ -0,0 +1,11 @@ +{ + "name": "Atalira", + "symbol": "ATL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA2fEf2Ce4A51033C6506A336963D59338b55F155", + "status": "abandoned", + "id": "0xA2fEf2Ce4A51033C6506A336963D59338b55F155" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA2fEf2Ce4A51033C6506A336963D59338b55F155/logo.png b/blockchains/ethereum/assets/0xA2fEf2Ce4A51033C6506A336963D59338b55F155/logo.png new file mode 100755 index 00000000..f8936411 Binary files /dev/null and b/blockchains/ethereum/assets/0xA2fEf2Ce4A51033C6506A336963D59338b55F155/logo.png differ diff --git a/blockchains/ethereum/assets/0xA3018c4edd941c2B87B4180e1E37029a55199108/info.json b/blockchains/ethereum/assets/0xA3018c4edd941c2B87B4180e1E37029a55199108/info.json new file mode 100644 index 00000000..e3c71973 --- /dev/null +++ b/blockchains/ethereum/assets/0xA3018c4edd941c2B87B4180e1E37029a55199108/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-20/30M50", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA3018c4edd941c2B87B4180e1E37029a55199108", + "status": "abandoned", + "id": "0xA3018c4edd941c2B87B4180e1E37029a55199108" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA3018c4edd941c2B87B4180e1E37029a55199108/logo.png b/blockchains/ethereum/assets/0xA3018c4edd941c2B87B4180e1E37029a55199108/logo.png new file mode 100644 index 00000000..0d4f1c38 Binary files /dev/null and b/blockchains/ethereum/assets/0xA3018c4edd941c2B87B4180e1E37029a55199108/logo.png differ diff --git a/blockchains/ethereum/assets/0xA3091381eB7e7c3c2cee5cb1578ADeBD3b7645EF/info.json b/blockchains/ethereum/assets/0xA3091381eB7e7c3c2cee5cb1578ADeBD3b7645EF/info.json new file mode 100644 index 00000000..1e9bd433 --- /dev/null +++ b/blockchains/ethereum/assets/0xA3091381eB7e7c3c2cee5cb1578ADeBD3b7645EF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digital Thai Baht", + "symbol": "THB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA3091381eB7e7c3c2cee5cb1578ADeBD3b7645EF", + "status": "abandoned", + "id": "0xA3091381eB7e7c3c2cee5cb1578ADeBD3b7645EF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA3091381eB7e7c3c2cee5cb1578ADeBD3b7645EF/logo.png b/blockchains/ethereum/assets/0xA3091381eB7e7c3c2cee5cb1578ADeBD3b7645EF/logo.png new file mode 100644 index 00000000..5a566fc7 Binary files /dev/null and b/blockchains/ethereum/assets/0xA3091381eB7e7c3c2cee5cb1578ADeBD3b7645EF/logo.png differ diff --git a/blockchains/ethereum/assets/0xA31108E5BAB5494560Db34c95492658AF239357C/info.json b/blockchains/ethereum/assets/0xA31108E5BAB5494560Db34c95492658AF239357C/info.json new file mode 100644 index 00000000..fbd1eaed --- /dev/null +++ b/blockchains/ethereum/assets/0xA31108E5BAB5494560Db34c95492658AF239357C/info.json @@ -0,0 +1,11 @@ +{ + "name": "DACSEE", + "symbol": "DACS", + "type": "ERC20", + "decimals": 18, + "description": "DACSEE (DACS) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://dacsee.io/#/", + "explorer": "https://etherscan.io/token/0xA31108E5BAB5494560Db34c95492658AF239357C", + "status": "active", + "id": "0xA31108E5BAB5494560Db34c95492658AF239357C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA31108E5BAB5494560Db34c95492658AF239357C/logo.png b/blockchains/ethereum/assets/0xA31108E5BAB5494560Db34c95492658AF239357C/logo.png new file mode 100644 index 00000000..1d88a100 Binary files /dev/null and b/blockchains/ethereum/assets/0xA31108E5BAB5494560Db34c95492658AF239357C/logo.png differ diff --git a/blockchains/ethereum/assets/0xA31B1767e09f842ECFd4bc471Fe44F830E3891AA/info.json b/blockchains/ethereum/assets/0xA31B1767e09f842ECFd4bc471Fe44F830E3891AA/info.json new file mode 100644 index 00000000..944026a8 --- /dev/null +++ b/blockchains/ethereum/assets/0xA31B1767e09f842ECFd4bc471Fe44F830E3891AA/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://etherscan.io/token/0xA31B1767e09f842ECFd4bc471Fe44F830E3891AA", + "type": "ERC20", + "symbol": "ROOBEE", + "decimals": 18, + "status": "active", + "id": "0xA31B1767e09f842ECFd4bc471Fe44F830E3891AA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA31B1767e09f842ECFd4bc471Fe44F830E3891AA/logo.png b/blockchains/ethereum/assets/0xA31B1767e09f842ECFd4bc471Fe44F830E3891AA/logo.png new file mode 100644 index 00000000..44c060c1 Binary files /dev/null and b/blockchains/ethereum/assets/0xA31B1767e09f842ECFd4bc471Fe44F830E3891AA/logo.png differ diff --git a/blockchains/ethereum/assets/0xA35923162C49cF95e6BF26623385eb431ad920D3/info.json b/blockchains/ethereum/assets/0xA35923162C49cF95e6BF26623385eb431ad920D3/info.json new file mode 100644 index 00000000..0532e399 --- /dev/null +++ b/blockchains/ethereum/assets/0xA35923162C49cF95e6BF26623385eb431ad920D3/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://etherscan.io/token/0xa35923162c49cf95e6bf26623385eb431ad920d3", + "type": "ERC20", + "symbol": "TURBO", + "decimals": 18, + "status": "active", + "id": "0xA35923162C49cF95e6BF26623385eb431ad920D3", + "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/ethereum/assets/0xA35923162C49cF95e6BF26623385eb431ad920D3/logo.png b/blockchains/ethereum/assets/0xA35923162C49cF95e6BF26623385eb431ad920D3/logo.png new file mode 100644 index 00000000..7bbf06f2 Binary files /dev/null and b/blockchains/ethereum/assets/0xA35923162C49cF95e6BF26623385eb431ad920D3/logo.png differ diff --git a/blockchains/ethereum/assets/0xA35Fc5019C4dc509394Bd4d74591a0bF8852c195/info.json b/blockchains/ethereum/assets/0xA35Fc5019C4dc509394Bd4d74591a0bF8852c195/info.json new file mode 100644 index 00000000..c3c4063b --- /dev/null +++ b/blockchains/ethereum/assets/0xA35Fc5019C4dc509394Bd4d74591a0bF8852c195/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitEth7525RebalancingSetToken", + "symbol": "BTCETH7525", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.tokensets.com/set/btceth7525", + "explorer": "https://etherscan.io/token/0xA35Fc5019C4dc509394Bd4d74591a0bF8852c195", + "status": "abandoned", + "id": "0xA35Fc5019C4dc509394Bd4d74591a0bF8852c195" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA35Fc5019C4dc509394Bd4d74591a0bF8852c195/logo.png b/blockchains/ethereum/assets/0xA35Fc5019C4dc509394Bd4d74591a0bF8852c195/logo.png new file mode 100644 index 00000000..6dfc18e6 Binary files /dev/null and b/blockchains/ethereum/assets/0xA35Fc5019C4dc509394Bd4d74591a0bF8852c195/logo.png differ diff --git a/blockchains/ethereum/assets/0xA361718326c15715591c299427c62086F69923D9/info.json b/blockchains/ethereum/assets/0xA361718326c15715591c299427c62086F69923D9/info.json new file mode 100644 index 00000000..dd1d4212 --- /dev/null +++ b/blockchains/ethereum/assets/0xA361718326c15715591c299427c62086F69923D9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave BUSD", + "symbol": "aBUSD", + "type": "ERC20", + "decimals": 18, + "description": "Aave BUSD is an interest bearing token pegged 1:1 to the underlying BUSD deposited in Aave. aBUSD accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xA361718326c15715591c299427c62086F69923D9", + "status": "active", + "id": "0xA361718326c15715591c299427c62086F69923D9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA361718326c15715591c299427c62086F69923D9/logo.png b/blockchains/ethereum/assets/0xA361718326c15715591c299427c62086F69923D9/logo.png new file mode 100644 index 00000000..d358ca8c Binary files /dev/null and b/blockchains/ethereum/assets/0xA361718326c15715591c299427c62086F69923D9/logo.png differ diff --git a/blockchains/ethereum/assets/0xA3865E64121537b5b59B5e239Db4aCBe6F36aa74/info.json b/blockchains/ethereum/assets/0xA3865E64121537b5b59B5e239Db4aCBe6F36aa74/info.json new file mode 100644 index 00000000..58cb124c --- /dev/null +++ b/blockchains/ethereum/assets/0xA3865E64121537b5b59B5e239Db4aCBe6F36aa74/info.json @@ -0,0 +1,11 @@ +{ + "name": "WXTZ", + "website": "https://www.wrapped.com", + "description": "Wrapped Tezos is a 1:1 equivalent of Tezos on the Ethereum network", + "explorer": "https://etherscan.io/token/0xA3865E64121537b5b59B5e239Db4aCBe6F36aa74", + "type": "ERC20", + "symbol": "WXTZ", + "decimals": 18, + "status": "active", + "id": "0xA3865E64121537b5b59B5e239Db4aCBe6F36aa74" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA3865E64121537b5b59B5e239Db4aCBe6F36aa74/logo.png b/blockchains/ethereum/assets/0xA3865E64121537b5b59B5e239Db4aCBe6F36aa74/logo.png new file mode 100644 index 00000000..578ec042 Binary files /dev/null and b/blockchains/ethereum/assets/0xA3865E64121537b5b59B5e239Db4aCBe6F36aa74/logo.png differ diff --git a/blockchains/ethereum/assets/0xA392c35EC6900346aDEc720Abe50413F48Ee5143/info.json b/blockchains/ethereum/assets/0xA392c35EC6900346aDEc720Abe50413F48Ee5143/info.json new file mode 100644 index 00000000..954a59f9 --- /dev/null +++ b/blockchains/ethereum/assets/0xA392c35EC6900346aDEc720Abe50413F48Ee5143/info.json @@ -0,0 +1,24 @@ +{ + "name": "GENRE", + "symbol": "GENRE", + "type": "ERC20", + "decimals": 4, + "description": "$GENRE is the Leaving Records and GenreDAO community token. $GENRE will serve as an important part of our evolving cooperative label model with the intention to activate our artist & fan community equitably. $GENRE can be utilized in a multitude of ways across our community: access to token-gated experiences, currency for purchasing NFTs, and a governance token for the GenreDAO are some of the use cases for our token as new utility opportunities continue to emerge.", + "website": "http://leavingrecords.com/", + "explorer": "https://etherscan.io/token/0xA392c35EC6900346aDEc720Abe50413F48Ee5143", + "status": "active", + "id": "0xA392c35EC6900346aDEc720Abe50413F48Ee5143", + "links": [ + { + "name": "x", + "url": "https://x.com/LEAVINGRECORDS/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/2EmZsrf" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA392c35EC6900346aDEc720Abe50413F48Ee5143/logo.png b/blockchains/ethereum/assets/0xA392c35EC6900346aDEc720Abe50413F48Ee5143/logo.png new file mode 100644 index 00000000..f686b98f Binary files /dev/null and b/blockchains/ethereum/assets/0xA392c35EC6900346aDEc720Abe50413F48Ee5143/logo.png differ diff --git a/blockchains/ethereum/assets/0xA3AC41Fde5f3a569fa79E81fFe6734ee8097Ce9d/info.json b/blockchains/ethereum/assets/0xA3AC41Fde5f3a569fa79E81fFe6734ee8097Ce9d/info.json new file mode 100644 index 00000000..59a3d60e --- /dev/null +++ b/blockchains/ethereum/assets/0xA3AC41Fde5f3a569fa79E81fFe6734ee8097Ce9d/info.json @@ -0,0 +1,11 @@ +{ + "name": "4xBit", + "symbol": "4XB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.mybtcfx.com", + "explorer": "https://etherscan.io/token/0xA3AC41Fde5f3a569fa79E81fFe6734ee8097Ce9d", + "status": "abandoned", + "id": "0xA3AC41Fde5f3a569fa79E81fFe6734ee8097Ce9d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA3AC41Fde5f3a569fa79E81fFe6734ee8097Ce9d/logo.png b/blockchains/ethereum/assets/0xA3AC41Fde5f3a569fa79E81fFe6734ee8097Ce9d/logo.png new file mode 100644 index 00000000..cd8028f0 Binary files /dev/null and b/blockchains/ethereum/assets/0xA3AC41Fde5f3a569fa79E81fFe6734ee8097Ce9d/logo.png differ diff --git a/blockchains/ethereum/assets/0xA3BC616F38Cb7342ee2453C7D41294B5B7dCf486/info.json b/blockchains/ethereum/assets/0xA3BC616F38Cb7342ee2453C7D41294B5B7dCf486/info.json new file mode 100644 index 00000000..0fd41b10 --- /dev/null +++ b/blockchains/ethereum/assets/0xA3BC616F38Cb7342ee2453C7D41294B5B7dCf486/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cosmethyst", + "symbol": "CSC-CS", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA3BC616F38Cb7342ee2453C7D41294B5B7dCf486", + "status": "abandoned", + "id": "0xA3BC616F38Cb7342ee2453C7D41294B5B7dCf486" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA3BC616F38Cb7342ee2453C7D41294B5B7dCf486/logo.png b/blockchains/ethereum/assets/0xA3BC616F38Cb7342ee2453C7D41294B5B7dCf486/logo.png new file mode 100755 index 00000000..62d29c41 Binary files /dev/null and b/blockchains/ethereum/assets/0xA3BC616F38Cb7342ee2453C7D41294B5B7dCf486/logo.png differ diff --git a/blockchains/ethereum/assets/0xA3E059c0b01F07F211c85bF7b4f1d907AfB011df/info.json b/blockchains/ethereum/assets/0xA3E059c0b01F07F211c85bF7b4f1d907AfB011df/info.json new file mode 100644 index 00000000..b24f01f5 --- /dev/null +++ b/blockchains/ethereum/assets/0xA3E059c0b01F07F211c85bF7b4f1d907AfB011df/info.json @@ -0,0 +1,11 @@ +{ + "name": "EthereumMax (Deprecated)", + "website": "https://www.ethereummax.org/", + "description": "Deprecated, do not use! See 0x15874d65e649880c2614e7a480cb7c9A55787FF6 instead.", + "explorer": "https://etherscan.io/token/0xA3E059c0b01F07F211c85bF7b4f1d907AfB011df", + "type": "ERC20", + "symbol": "eMax", + "decimals": 18, + "status": "active", + "id": "0xA3E059c0b01F07F211c85bF7b4f1d907AfB011df" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA3E059c0b01F07F211c85bF7b4f1d907AfB011df/logo.png b/blockchains/ethereum/assets/0xA3E059c0b01F07F211c85bF7b4f1d907AfB011df/logo.png new file mode 100644 index 00000000..7f27ea08 Binary files /dev/null and b/blockchains/ethereum/assets/0xA3E059c0b01F07F211c85bF7b4f1d907AfB011df/logo.png differ diff --git a/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/info.json b/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/info.json new file mode 100644 index 00000000..a687aa02 --- /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 00000000..f668e19d Binary files /dev/null and b/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/logo.png differ diff --git a/blockchains/ethereum/assets/0xA44Fb3AA5c8465512B806145a8f9b60e74f3f851/info.json b/blockchains/ethereum/assets/0xA44Fb3AA5c8465512B806145a8f9b60e74f3f851/info.json new file mode 100644 index 00000000..3882df68 --- /dev/null +++ b/blockchains/ethereum/assets/0xA44Fb3AA5c8465512B806145a8f9b60e74f3f851/info.json @@ -0,0 +1,11 @@ +{ + "name": "PITSTOP", + "symbol": "PIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA44Fb3AA5c8465512B806145a8f9b60e74f3f851", + "status": "abandoned", + "id": "0xA44Fb3AA5c8465512B806145a8f9b60e74f3f851" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA44Fb3AA5c8465512B806145a8f9b60e74f3f851/logo.png b/blockchains/ethereum/assets/0xA44Fb3AA5c8465512B806145a8f9b60e74f3f851/logo.png new file mode 100644 index 00000000..eaad32c6 Binary files /dev/null and b/blockchains/ethereum/assets/0xA44Fb3AA5c8465512B806145a8f9b60e74f3f851/logo.png differ diff --git a/blockchains/ethereum/assets/0xA4668631110C31d30F0C48A63D65f422e25af58C/info.json b/blockchains/ethereum/assets/0xA4668631110C31d30F0C48A63D65f422e25af58C/info.json new file mode 100644 index 00000000..e5e4cbfb --- /dev/null +++ b/blockchains/ethereum/assets/0xA4668631110C31d30F0C48A63D65f422e25af58C/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitcoinKrypt", + "symbol": "BTKT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA4668631110C31d30F0C48A63D65f422e25af58C", + "status": "abandoned", + "id": "0xA4668631110C31d30F0C48A63D65f422e25af58C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA4668631110C31d30F0C48A63D65f422e25af58C/logo.png b/blockchains/ethereum/assets/0xA4668631110C31d30F0C48A63D65f422e25af58C/logo.png new file mode 100644 index 00000000..158c44c1 Binary files /dev/null and b/blockchains/ethereum/assets/0xA4668631110C31d30F0C48A63D65f422e25af58C/logo.png differ diff --git a/blockchains/ethereum/assets/0xA492AAd9e2250132693BF9084687B14BAA4434F7/info.json b/blockchains/ethereum/assets/0xA492AAd9e2250132693BF9084687B14BAA4434F7/info.json new file mode 100644 index 00000000..d067a220 --- /dev/null +++ b/blockchains/ethereum/assets/0xA492AAd9e2250132693BF9084687B14BAA4434F7/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 231-CN19", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA492AAd9e2250132693BF9084687B14BAA4434F7", + "status": "abandoned", + "id": "0xA492AAd9e2250132693BF9084687B14BAA4434F7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA492AAd9e2250132693BF9084687B14BAA4434F7/logo.png b/blockchains/ethereum/assets/0xA492AAd9e2250132693BF9084687B14BAA4434F7/logo.png new file mode 100644 index 00000000..5ad29dc3 Binary files /dev/null and b/blockchains/ethereum/assets/0xA492AAd9e2250132693BF9084687B14BAA4434F7/logo.png differ diff --git a/blockchains/ethereum/assets/0xA4B4ce78A05f1e5250B1174F056ee64Db2dab38C/info.json b/blockchains/ethereum/assets/0xA4B4ce78A05f1e5250B1174F056ee64Db2dab38C/info.json new file mode 100644 index 00000000..a7511e12 --- /dev/null +++ b/blockchains/ethereum/assets/0xA4B4ce78A05f1e5250B1174F056ee64Db2dab38C/info.json @@ -0,0 +1,11 @@ +{ + "name": "YOGI", + "symbol": "YGI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA4B4ce78A05f1e5250B1174F056ee64Db2dab38C", + "status": "abandoned", + "id": "0xA4B4ce78A05f1e5250B1174F056ee64Db2dab38C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA4B4ce78A05f1e5250B1174F056ee64Db2dab38C/logo.png b/blockchains/ethereum/assets/0xA4B4ce78A05f1e5250B1174F056ee64Db2dab38C/logo.png new file mode 100644 index 00000000..c744b6ea Binary files /dev/null and b/blockchains/ethereum/assets/0xA4B4ce78A05f1e5250B1174F056ee64Db2dab38C/logo.png differ diff --git a/blockchains/ethereum/assets/0xA4Bdb11dc0a2bEC88d24A3aa1E6Bb17201112eBe/info.json b/blockchains/ethereum/assets/0xA4Bdb11dc0a2bEC88d24A3aa1E6Bb17201112eBe/info.json new file mode 100644 index 00000000..ae1e3708 --- /dev/null +++ b/blockchains/ethereum/assets/0xA4Bdb11dc0a2bEC88d24A3aa1E6Bb17201112eBe/info.json @@ -0,0 +1,14 @@ +{ + "name": "StableUSD", + "symbol": "USDS", + "type": "ERC20", + "decimals": 6, + "description": "Stably Dollar (USDS) is a fiat-collateralized stablecoin created by Stably, Inc. Each Stably Dollar token is legally backed and redeemable for a US Dollar held in FDIC-insured escrow accounts managed by our fiduciary custodians, such as Prime Trust.", + "website": "https://www.stably.io/", + "explorer": "https://etherscan.io/token/0xA4Bdb11dc0a2bEC88d24A3aa1E6Bb17201112eBe", + "status": "active", + "id": "0xA4Bdb11dc0a2bEC88d24A3aa1E6Bb17201112eBe", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA4Bdb11dc0a2bEC88d24A3aa1E6Bb17201112eBe/logo.png b/blockchains/ethereum/assets/0xA4Bdb11dc0a2bEC88d24A3aa1E6Bb17201112eBe/logo.png new file mode 100644 index 00000000..1f467d29 Binary files /dev/null and b/blockchains/ethereum/assets/0xA4Bdb11dc0a2bEC88d24A3aa1E6Bb17201112eBe/logo.png differ diff --git a/blockchains/ethereum/assets/0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3/info.json b/blockchains/ethereum/assets/0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3/info.json new file mode 100644 index 00000000..868dc9ba --- /dev/null +++ b/blockchains/ethereum/assets/0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3/info.json @@ -0,0 +1,37 @@ +{ + "name": "Rubic", + "website": "https://rubic.exchange", + "description": "Rubic is a multichain DeFi ecosystem, which features cross-chain, P2P, and instant swaps across multiple blockchains, aiming to deliver a complete ONE-STOP decentralized platform. For the moment, Rubic supports trades on Ethereum, Matic, and Binance Smart Chain networks.", + "explorer": "https://etherscan.io/token/0xa4eed63db85311e22df4473f87ccfc3dadcfa3e3", + "type": "ERC20", + "symbol": "RBC", + "decimals": 18, + "status": "active", + "id": "0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3", + "links": [ + { + "name": "github", + "url": "https://github.com/Cryptorubic/rubic_frontend" + }, + { + "name": "x", + "url": "https://x.com/Rubic" + }, + { + "name": "telegram", + "url": "https://t.me/cryptorubic_chat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/dZuxJZXGPa" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Rubic/new/" + }, + { + "name": "medium", + "url": "https://cryptorubic.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3/logo.png b/blockchains/ethereum/assets/0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3/logo.png new file mode 100644 index 00000000..eac60032 Binary files /dev/null and b/blockchains/ethereum/assets/0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3/logo.png differ diff --git a/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/info.json b/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/info.json new file mode 100644 index 00000000..c8a7a00f --- /dev/null +++ b/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/info.json @@ -0,0 +1,32 @@ +{ + "name": "Stablz", + "type": "ERC20", + "symbol": "STABLZ", + "decimals": 18, + "website": "https://stablz.one", + "description": "Stablz is a stablecoin yield aggregator that converts yield to the same type as deposits. Deposit USDT, and earn your yield in USDT in a truly set-and-forget manner.", + "explorer": "https://etherscan.io/token/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd", + "status": "active", + "id": "0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd", + "links": [ + { + "name": "x", + "url": "https://x.com/Stablzone" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stablz/" + }, + { + "name": "telegram", + "url": "https://t.me/stablzone" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/stablz/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/logo.png b/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/logo.png new file mode 100644 index 00000000..5badff4b Binary files /dev/null and b/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/logo.png differ diff --git a/blockchains/ethereum/assets/0xA4F9CEC920cA520a7FEB2c3A63050e08967bc111/info.json b/blockchains/ethereum/assets/0xA4F9CEC920cA520a7FEB2c3A63050e08967bc111/info.json new file mode 100644 index 00000000..b7a02be6 --- /dev/null +++ b/blockchains/ethereum/assets/0xA4F9CEC920cA520a7FEB2c3A63050e08967bc111/info.json @@ -0,0 +1,11 @@ +{ + "name": "Doom", + "symbol": "DOOM", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA4F9CEC920cA520a7FEB2c3A63050e08967bc111", + "status": "abandoned", + "id": "0xA4F9CEC920cA520a7FEB2c3A63050e08967bc111" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA4F9CEC920cA520a7FEB2c3A63050e08967bc111/logo.png b/blockchains/ethereum/assets/0xA4F9CEC920cA520a7FEB2c3A63050e08967bc111/logo.png new file mode 100644 index 00000000..ed6fde53 Binary files /dev/null and b/blockchains/ethereum/assets/0xA4F9CEC920cA520a7FEB2c3A63050e08967bc111/logo.png differ diff --git a/blockchains/ethereum/assets/0xA4FF5CE0556f9fF0797Ae525ec5bA9B723878A3E/info.json b/blockchains/ethereum/assets/0xA4FF5CE0556f9fF0797Ae525ec5bA9B723878A3E/info.json new file mode 100644 index 00000000..c0f32476 --- /dev/null +++ b/blockchains/ethereum/assets/0xA4FF5CE0556f9fF0797Ae525ec5bA9B723878A3E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ciphs", + "symbol": "CIPHS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA4FF5CE0556f9fF0797Ae525ec5bA9B723878A3E", + "status": "abandoned", + "id": "0xA4FF5CE0556f9fF0797Ae525ec5bA9B723878A3E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA4FF5CE0556f9fF0797Ae525ec5bA9B723878A3E/logo.png b/blockchains/ethereum/assets/0xA4FF5CE0556f9fF0797Ae525ec5bA9B723878A3E/logo.png new file mode 100755 index 00000000..3e124d8e Binary files /dev/null and b/blockchains/ethereum/assets/0xA4FF5CE0556f9fF0797Ae525ec5bA9B723878A3E/logo.png differ diff --git a/blockchains/ethereum/assets/0xA4d17AB1eE0efDD23edc2869E7BA96B89eEcf9AB/info.json b/blockchains/ethereum/assets/0xA4d17AB1eE0efDD23edc2869E7BA96B89eEcf9AB/info.json new file mode 100644 index 00000000..e559b886 --- /dev/null +++ b/blockchains/ethereum/assets/0xA4d17AB1eE0efDD23edc2869E7BA96B89eEcf9AB/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRUE Token", + "symbol": "TRUE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA4d17AB1eE0efDD23edc2869E7BA96B89eEcf9AB", + "status": "abandoned", + "id": "0xA4d17AB1eE0efDD23edc2869E7BA96B89eEcf9AB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA4d17AB1eE0efDD23edc2869E7BA96B89eEcf9AB/logo.png b/blockchains/ethereum/assets/0xA4d17AB1eE0efDD23edc2869E7BA96B89eEcf9AB/logo.png new file mode 100644 index 00000000..81fb24af Binary files /dev/null and b/blockchains/ethereum/assets/0xA4d17AB1eE0efDD23edc2869E7BA96B89eEcf9AB/logo.png differ diff --git a/blockchains/ethereum/assets/0xA4e8C3Ec456107eA67d3075bF9e3DF3A75823DB0/info.json b/blockchains/ethereum/assets/0xA4e8C3Ec456107eA67d3075bF9e3DF3A75823DB0/info.json new file mode 100644 index 00000000..4c64a8bf --- /dev/null +++ b/blockchains/ethereum/assets/0xA4e8C3Ec456107eA67d3075bF9e3DF3A75823DB0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Loom Network", + "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://etherscan.io/token/0xA4e8C3Ec456107eA67d3075bF9e3DF3A75823DB0", + "type": "ERC20", + "symbol": "LOOM", + "decimals": 18, + "status": "abandoned", + "id": "0xA4e8C3Ec456107eA67d3075bF9e3DF3A75823DB0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA4e8C3Ec456107eA67d3075bF9e3DF3A75823DB0/logo.png b/blockchains/ethereum/assets/0xA4e8C3Ec456107eA67d3075bF9e3DF3A75823DB0/logo.png new file mode 100644 index 00000000..6363f415 Binary files /dev/null and b/blockchains/ethereum/assets/0xA4e8C3Ec456107eA67d3075bF9e3DF3A75823DB0/logo.png differ diff --git a/blockchains/ethereum/assets/0xA4eA687A2A7F29cF2dc66B39c68e4411C0D00C49/info.json b/blockchains/ethereum/assets/0xA4eA687A2A7F29cF2dc66B39c68e4411C0D00C49/info.json new file mode 100644 index 00000000..b0d29d94 --- /dev/null +++ b/blockchains/ethereum/assets/0xA4eA687A2A7F29cF2dc66B39c68e4411C0D00C49/info.json @@ -0,0 +1,11 @@ +{ + "name": "IvyKoin Public Network Tokens", + "symbol": "IVY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.ivykoin.com", + "explorer": "https://etherscan.io/token/0xA4eA687A2A7F29cF2dc66B39c68e4411C0D00C49", + "status": "abandoned", + "id": "0xA4eA687A2A7F29cF2dc66B39c68e4411C0D00C49" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA4eA687A2A7F29cF2dc66B39c68e4411C0D00C49/logo.png b/blockchains/ethereum/assets/0xA4eA687A2A7F29cF2dc66B39c68e4411C0D00C49/logo.png new file mode 100755 index 00000000..2b1c5928 Binary files /dev/null and b/blockchains/ethereum/assets/0xA4eA687A2A7F29cF2dc66B39c68e4411C0D00C49/logo.png differ diff --git a/blockchains/ethereum/assets/0xA4eB64a59AdCb1628FeDFCf08BB2ccED149F8b9b/info.json b/blockchains/ethereum/assets/0xA4eB64a59AdCb1628FeDFCf08BB2ccED149F8b9b/info.json new file mode 100644 index 00000000..1f987e09 --- /dev/null +++ b/blockchains/ethereum/assets/0xA4eB64a59AdCb1628FeDFCf08BB2ccED149F8b9b/info.json @@ -0,0 +1,11 @@ +{ + "name": "SEXYCOIN", + "symbol": "SXY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA4eB64a59AdCb1628FeDFCf08BB2ccED149F8b9b", + "status": "abandoned", + "id": "0xA4eB64a59AdCb1628FeDFCf08BB2ccED149F8b9b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA4eB64a59AdCb1628FeDFCf08BB2ccED149F8b9b/logo.png b/blockchains/ethereum/assets/0xA4eB64a59AdCb1628FeDFCf08BB2ccED149F8b9b/logo.png new file mode 100644 index 00000000..a0e63db3 Binary files /dev/null and b/blockchains/ethereum/assets/0xA4eB64a59AdCb1628FeDFCf08BB2ccED149F8b9b/logo.png differ diff --git a/blockchains/ethereum/assets/0xA52383B665b91DCe42dD4b6d1E0Fb37d3EFFe489/info.json b/blockchains/ethereum/assets/0xA52383B665b91DCe42dD4b6d1E0Fb37d3EFFe489/info.json new file mode 100644 index 00000000..00c1b672 --- /dev/null +++ b/blockchains/ethereum/assets/0xA52383B665b91DCe42dD4b6d1E0Fb37d3EFFe489/info.json @@ -0,0 +1,11 @@ +{ + "name": "MASTER USD", + "symbol": "MUSD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://master-usd.org/", + "explorer": "https://etherscan.io/token/0xA52383B665b91DCe42dD4b6d1E0Fb37d3EFFe489", + "status": "abandoned", + "id": "0xA52383B665b91DCe42dD4b6d1E0Fb37d3EFFe489" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA52383B665b91DCe42dD4b6d1E0Fb37d3EFFe489/logo.png b/blockchains/ethereum/assets/0xA52383B665b91DCe42dD4b6d1E0Fb37d3EFFe489/logo.png new file mode 100755 index 00000000..b6191ab8 Binary files /dev/null and b/blockchains/ethereum/assets/0xA52383B665b91DCe42dD4b6d1E0Fb37d3EFFe489/logo.png differ diff --git a/blockchains/ethereum/assets/0xA54C67bd320Da4F9725a6f585b7635a0c09B122e/info.json b/blockchains/ethereum/assets/0xA54C67bd320Da4F9725a6f585b7635a0c09B122e/info.json new file mode 100644 index 00000000..a98ea4a0 --- /dev/null +++ b/blockchains/ethereum/assets/0xA54C67bd320Da4F9725a6f585b7635a0c09B122e/info.json @@ -0,0 +1,25 @@ +{ + "name": "TimeMiner", + "website": "https://TimeMiner.site", + "description": "A new project seeking to change how tokens are generated utilizing Proof of Time. Only one new coin is minted every hour.", + "explorer": "https://etherscan.io/token/0xA54C67bd320Da4F9725a6f585b7635a0c09B122e", + "type": "ERC20", + "symbol": "TIME", + "decimals": 6, + "status": "active", + "id": "0xA54C67bd320Da4F9725a6f585b7635a0c09B122e", + "links": [ + { + "name": "x", + "url": "https://x.com/TimeMiner" + }, + { + "name": "telegram", + "url": "https://t.me/timeminer" + }, + { + "name": "whitepaper", + "url": "https://www.TimeMiner.site/TimeMiner.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA54C67bd320Da4F9725a6f585b7635a0c09B122e/logo.png b/blockchains/ethereum/assets/0xA54C67bd320Da4F9725a6f585b7635a0c09B122e/logo.png new file mode 100644 index 00000000..46d62279 Binary files /dev/null and b/blockchains/ethereum/assets/0xA54C67bd320Da4F9725a6f585b7635a0c09B122e/logo.png differ diff --git a/blockchains/ethereum/assets/0xA54ddC7B3CcE7FC8b1E3Fa0256D0DB80D2c10970/info.json b/blockchains/ethereum/assets/0xA54ddC7B3CcE7FC8b1E3Fa0256D0DB80D2c10970/info.json new file mode 100644 index 00000000..cda5c16d --- /dev/null +++ b/blockchains/ethereum/assets/0xA54ddC7B3CcE7FC8b1E3Fa0256D0DB80D2c10970/info.json @@ -0,0 +1,11 @@ +{ + "name": "NEVERDIE", + "symbol": "NDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA54ddC7B3CcE7FC8b1E3Fa0256D0DB80D2c10970", + "status": "abandoned", + "id": "0xA54ddC7B3CcE7FC8b1E3Fa0256D0DB80D2c10970" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA54ddC7B3CcE7FC8b1E3Fa0256D0DB80D2c10970/logo.png b/blockchains/ethereum/assets/0xA54ddC7B3CcE7FC8b1E3Fa0256D0DB80D2c10970/logo.png new file mode 100755 index 00000000..c9a2643d Binary files /dev/null and b/blockchains/ethereum/assets/0xA54ddC7B3CcE7FC8b1E3Fa0256D0DB80D2c10970/logo.png differ diff --git a/blockchains/ethereum/assets/0xA5513928CD21090193C1c3E586D59f130f035c92/info.json b/blockchains/ethereum/assets/0xA5513928CD21090193C1c3E586D59f130f035c92/info.json new file mode 100644 index 00000000..53273b26 --- /dev/null +++ b/blockchains/ethereum/assets/0xA5513928CD21090193C1c3E586D59f130f035c92/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cascadium", + "symbol": "CDM", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA5513928CD21090193C1c3E586D59f130f035c92", + "status": "abandoned", + "id": "0xA5513928CD21090193C1c3E586D59f130f035c92" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA5513928CD21090193C1c3E586D59f130f035c92/logo.png b/blockchains/ethereum/assets/0xA5513928CD21090193C1c3E586D59f130f035c92/logo.png new file mode 100644 index 00000000..58759368 Binary files /dev/null and b/blockchains/ethereum/assets/0xA5513928CD21090193C1c3E586D59f130f035c92/logo.png differ diff --git a/blockchains/ethereum/assets/0xA57392548087453deC6106e670bBFB849276b358/info.json b/blockchains/ethereum/assets/0xA57392548087453deC6106e670bBFB849276b358/info.json new file mode 100644 index 00000000..8f71a0c1 --- /dev/null +++ b/blockchains/ethereum/assets/0xA57392548087453deC6106e670bBFB849276b358/info.json @@ -0,0 +1,11 @@ +{ + "name": "GemVault Coin", + "symbol": "GVC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.gemvault.io", + "explorer": "https://etherscan.io/token/0xA57392548087453deC6106e670bBFB849276b358", + "status": "abandoned", + "id": "0xA57392548087453deC6106e670bBFB849276b358" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA57392548087453deC6106e670bBFB849276b358/logo.png b/blockchains/ethereum/assets/0xA57392548087453deC6106e670bBFB849276b358/logo.png new file mode 100644 index 00000000..61dfd6d4 Binary files /dev/null and b/blockchains/ethereum/assets/0xA57392548087453deC6106e670bBFB849276b358/logo.png differ diff --git a/blockchains/ethereum/assets/0xA57795054a1bd9DFB2Bb0c98eb75e23441d13427/info.json b/blockchains/ethereum/assets/0xA57795054a1bd9DFB2Bb0c98eb75e23441d13427/info.json new file mode 100644 index 00000000..190aeb40 --- /dev/null +++ b/blockchains/ethereum/assets/0xA57795054a1bd9DFB2Bb0c98eb75e23441d13427/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 256-CN23", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA57795054a1bd9DFB2Bb0c98eb75e23441d13427", + "status": "abandoned", + "id": "0xA57795054a1bd9DFB2Bb0c98eb75e23441d13427" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA57795054a1bd9DFB2Bb0c98eb75e23441d13427/logo.png b/blockchains/ethereum/assets/0xA57795054a1bd9DFB2Bb0c98eb75e23441d13427/logo.png new file mode 100644 index 00000000..2bbc36d7 Binary files /dev/null and b/blockchains/ethereum/assets/0xA57795054a1bd9DFB2Bb0c98eb75e23441d13427/logo.png differ diff --git a/blockchains/ethereum/assets/0xA5996f6b731B349E25d7d5F4Dd93A5CE9947841F/info.json b/blockchains/ethereum/assets/0xA5996f6b731B349E25d7d5F4Dd93A5CE9947841F/info.json new file mode 100644 index 00000000..a368e124 --- /dev/null +++ b/blockchains/ethereum/assets/0xA5996f6b731B349E25d7d5F4Dd93A5CE9947841F/info.json @@ -0,0 +1,11 @@ +{ + "name": "GIFTTOKEN", + "symbol": "GIFT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA5996f6b731B349E25d7d5F4Dd93A5CE9947841F", + "status": "abandoned", + "id": "0xA5996f6b731B349E25d7d5F4Dd93A5CE9947841F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA5996f6b731B349E25d7d5F4Dd93A5CE9947841F/logo.png b/blockchains/ethereum/assets/0xA5996f6b731B349E25d7d5F4Dd93A5CE9947841F/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0xA5996f6b731B349E25d7d5F4Dd93A5CE9947841F/logo.png differ diff --git a/blockchains/ethereum/assets/0xA5B399a76bbAbEf93D70255525C1d2BCC3701d0b/info.json b/blockchains/ethereum/assets/0xA5B399a76bbAbEf93D70255525C1d2BCC3701d0b/info.json new file mode 100644 index 00000000..5183a640 --- /dev/null +++ b/blockchains/ethereum/assets/0xA5B399a76bbAbEf93D70255525C1d2BCC3701d0b/info.json @@ -0,0 +1,11 @@ +{ + "name": "GLOSMATIN", + "symbol": "GL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA5B399a76bbAbEf93D70255525C1d2BCC3701d0b", + "status": "abandoned", + "id": "0xA5B399a76bbAbEf93D70255525C1d2BCC3701d0b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA5B399a76bbAbEf93D70255525C1d2BCC3701d0b/logo.png b/blockchains/ethereum/assets/0xA5B399a76bbAbEf93D70255525C1d2BCC3701d0b/logo.png new file mode 100644 index 00000000..741b13a8 Binary files /dev/null and b/blockchains/ethereum/assets/0xA5B399a76bbAbEf93D70255525C1d2BCC3701d0b/logo.png differ diff --git a/blockchains/ethereum/assets/0xA5Da771D81BE428cccFB94a7922E9A9095080952/info.json b/blockchains/ethereum/assets/0xA5Da771D81BE428cccFB94a7922E9A9095080952/info.json new file mode 100644 index 00000000..5824732e --- /dev/null +++ b/blockchains/ethereum/assets/0xA5Da771D81BE428cccFB94a7922E9A9095080952/info.json @@ -0,0 +1,11 @@ +{ + "name": "Satanic", + "symbol": "Sat", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA5Da771D81BE428cccFB94a7922E9A9095080952", + "status": "abandoned", + "id": "0xA5Da771D81BE428cccFB94a7922E9A9095080952" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA5Da771D81BE428cccFB94a7922E9A9095080952/logo.png b/blockchains/ethereum/assets/0xA5Da771D81BE428cccFB94a7922E9A9095080952/logo.png new file mode 100644 index 00000000..30df87ea Binary files /dev/null and b/blockchains/ethereum/assets/0xA5Da771D81BE428cccFB94a7922E9A9095080952/logo.png differ diff --git a/blockchains/ethereum/assets/0xA5a2892d3FbB46d461D990469d5b797A1E6655cc/info.json b/blockchains/ethereum/assets/0xA5a2892d3FbB46d461D990469d5b797A1E6655cc/info.json new file mode 100644 index 00000000..4ac452c4 --- /dev/null +++ b/blockchains/ethereum/assets/0xA5a2892d3FbB46d461D990469d5b797A1E6655cc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bichoncoin", + "symbol": "BICH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA5a2892d3FbB46d461D990469d5b797A1E6655cc", + "status": "abandoned", + "id": "0xA5a2892d3FbB46d461D990469d5b797A1E6655cc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA5a2892d3FbB46d461D990469d5b797A1E6655cc/logo.png b/blockchains/ethereum/assets/0xA5a2892d3FbB46d461D990469d5b797A1E6655cc/logo.png new file mode 100644 index 00000000..e9494ee0 Binary files /dev/null and b/blockchains/ethereum/assets/0xA5a2892d3FbB46d461D990469d5b797A1E6655cc/logo.png differ diff --git a/blockchains/ethereum/assets/0xA5b2dBBA9a3c04Ec4F56cBe16520dEBecbF35545/info.json b/blockchains/ethereum/assets/0xA5b2dBBA9a3c04Ec4F56cBe16520dEBecbF35545/info.json new file mode 100644 index 00000000..8a062129 --- /dev/null +++ b/blockchains/ethereum/assets/0xA5b2dBBA9a3c04Ec4F56cBe16520dEBecbF35545/info.json @@ -0,0 +1,11 @@ +{ + "name": "Reakoin", + "symbol": "REAK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA5b2dBBA9a3c04Ec4F56cBe16520dEBecbF35545", + "status": "abandoned", + "id": "0xA5b2dBBA9a3c04Ec4F56cBe16520dEBecbF35545" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA5b2dBBA9a3c04Ec4F56cBe16520dEBecbF35545/logo.png b/blockchains/ethereum/assets/0xA5b2dBBA9a3c04Ec4F56cBe16520dEBecbF35545/logo.png new file mode 100644 index 00000000..75c26a08 Binary files /dev/null and b/blockchains/ethereum/assets/0xA5b2dBBA9a3c04Ec4F56cBe16520dEBecbF35545/logo.png differ diff --git a/blockchains/ethereum/assets/0xA5b46FF9a887180C8FB2d97146398Ddfc5FEF1Cd/info.json b/blockchains/ethereum/assets/0xA5b46FF9a887180C8FB2d97146398Ddfc5FEF1Cd/info.json new file mode 100644 index 00000000..5c4393c6 --- /dev/null +++ b/blockchains/ethereum/assets/0xA5b46FF9a887180C8FB2d97146398Ddfc5FEF1Cd/info.json @@ -0,0 +1,11 @@ +{ + "name": "SuperSkyNet", + "symbol": "SSN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://tnb.fund/", + "explorer": "https://etherscan.io/token/0xA5b46FF9a887180C8FB2d97146398Ddfc5FEF1Cd", + "status": "abandoned", + "id": "0xA5b46FF9a887180C8FB2d97146398Ddfc5FEF1Cd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA5b46FF9a887180C8FB2d97146398Ddfc5FEF1Cd/logo.png b/blockchains/ethereum/assets/0xA5b46FF9a887180C8FB2d97146398Ddfc5FEF1Cd/logo.png new file mode 100644 index 00000000..8fc6718a Binary files /dev/null and b/blockchains/ethereum/assets/0xA5b46FF9a887180C8FB2d97146398Ddfc5FEF1Cd/logo.png differ diff --git a/blockchains/ethereum/assets/0xA5e83C9A22FA75BA20aeBa4a4E734C91E8f1D356/info.json b/blockchains/ethereum/assets/0xA5e83C9A22FA75BA20aeBa4a4E734C91E8f1D356/info.json new file mode 100644 index 00000000..51b33052 --- /dev/null +++ b/blockchains/ethereum/assets/0xA5e83C9A22FA75BA20aeBa4a4E734C91E8f1D356/info.json @@ -0,0 +1,11 @@ +{ + "name": "VisualFodderCoin", + "symbol": "VFC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA5e83C9A22FA75BA20aeBa4a4E734C91E8f1D356", + "status": "abandoned", + "id": "0xA5e83C9A22FA75BA20aeBa4a4E734C91E8f1D356" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA5e83C9A22FA75BA20aeBa4a4E734C91E8f1D356/logo.png b/blockchains/ethereum/assets/0xA5e83C9A22FA75BA20aeBa4a4E734C91E8f1D356/logo.png new file mode 100644 index 00000000..7a35188d Binary files /dev/null and b/blockchains/ethereum/assets/0xA5e83C9A22FA75BA20aeBa4a4E734C91E8f1D356/logo.png differ diff --git a/blockchains/ethereum/assets/0xA5e99ad202bDd71D3518306Cf4dD163261981af1/info.json b/blockchains/ethereum/assets/0xA5e99ad202bDd71D3518306Cf4dD163261981af1/info.json new file mode 100644 index 00000000..514e8aca --- /dev/null +++ b/blockchains/ethereum/assets/0xA5e99ad202bDd71D3518306Cf4dD163261981af1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Community Chain", + "symbol": "COMC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.comc.io/", + "explorer": "https://etherscan.io/token/0xA5e99ad202bDd71D3518306Cf4dD163261981af1", + "status": "spam", + "id": "0xA5e99ad202bDd71D3518306Cf4dD163261981af1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA5e99ad202bDd71D3518306Cf4dD163261981af1/logo.png b/blockchains/ethereum/assets/0xA5e99ad202bDd71D3518306Cf4dD163261981af1/logo.png new file mode 100644 index 00000000..85361787 Binary files /dev/null and b/blockchains/ethereum/assets/0xA5e99ad202bDd71D3518306Cf4dD163261981af1/logo.png differ diff --git a/blockchains/ethereum/assets/0xA6121F235E68fCfb55eF1fC2DE88B60f6dfc2699/info.json b/blockchains/ethereum/assets/0xA6121F235E68fCfb55eF1fC2DE88B60f6dfc2699/info.json new file mode 100644 index 00000000..739b9e32 --- /dev/null +++ b/blockchains/ethereum/assets/0xA6121F235E68fCfb55eF1fC2DE88B60f6dfc2699/info.json @@ -0,0 +1,11 @@ +{ + "name": "UNIT", + "symbol": "UNIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA6121F235E68fCfb55eF1fC2DE88B60f6dfc2699", + "status": "abandoned", + "id": "0xA6121F235E68fCfb55eF1fC2DE88B60f6dfc2699" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA6121F235E68fCfb55eF1fC2DE88B60f6dfc2699/logo.png b/blockchains/ethereum/assets/0xA6121F235E68fCfb55eF1fC2DE88B60f6dfc2699/logo.png new file mode 100644 index 00000000..23ac51d1 Binary files /dev/null and b/blockchains/ethereum/assets/0xA6121F235E68fCfb55eF1fC2DE88B60f6dfc2699/logo.png differ diff --git a/blockchains/ethereum/assets/0xA6281838f4A9c5736b2aa1cba9260D3F879623cA/info.json b/blockchains/ethereum/assets/0xA6281838f4A9c5736b2aa1cba9260D3F879623cA/info.json new file mode 100644 index 00000000..1efbe385 --- /dev/null +++ b/blockchains/ethereum/assets/0xA6281838f4A9c5736b2aa1cba9260D3F879623cA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decentralize Currency Assets", + "symbol": "DCA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://decentralizecurrency.net", + "explorer": "https://etherscan.io/token/0xA6281838f4A9c5736b2aa1cba9260D3F879623cA", + "status": "abandoned", + "id": "0xA6281838f4A9c5736b2aa1cba9260D3F879623cA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA6281838f4A9c5736b2aa1cba9260D3F879623cA/logo.png b/blockchains/ethereum/assets/0xA6281838f4A9c5736b2aa1cba9260D3F879623cA/logo.png new file mode 100644 index 00000000..d040ee1d Binary files /dev/null and b/blockchains/ethereum/assets/0xA6281838f4A9c5736b2aa1cba9260D3F879623cA/logo.png differ diff --git a/blockchains/ethereum/assets/0xA6446D655a0c34bC4F05042EE88170D056CBAf45/info.json b/blockchains/ethereum/assets/0xA6446D655a0c34bC4F05042EE88170D056CBAf45/info.json new file mode 100644 index 00000000..0ddaa9c6 --- /dev/null +++ b/blockchains/ethereum/assets/0xA6446D655a0c34bC4F05042EE88170D056CBAf45/info.json @@ -0,0 +1,11 @@ +{ + "name": "Caspian Token", + "symbol": "CSP", + "type": "ERC20", + "decimals": 18, + "description": "Caspian is the company to provide institutional and experienced investors with a full-stack crypto trading and risk management platform.", + "website": "https://caspian.tech/", + "explorer": "https://etherscan.io/token/0xA6446D655a0c34bC4F05042EE88170D056CBAf45", + "status": "active", + "id": "0xA6446D655a0c34bC4F05042EE88170D056CBAf45" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA6446D655a0c34bC4F05042EE88170D056CBAf45/logo.png b/blockchains/ethereum/assets/0xA6446D655a0c34bC4F05042EE88170D056CBAf45/logo.png new file mode 100755 index 00000000..517e8129 Binary files /dev/null and b/blockchains/ethereum/assets/0xA6446D655a0c34bC4F05042EE88170D056CBAf45/logo.png differ diff --git a/blockchains/ethereum/assets/0xA64BD6C70Cb9051F6A9ba1F163Fdc07E0DfB5F84/info.json b/blockchains/ethereum/assets/0xA64BD6C70Cb9051F6A9ba1F163Fdc07E0DfB5F84/info.json new file mode 100644 index 00000000..d3594e55 --- /dev/null +++ b/blockchains/ethereum/assets/0xA64BD6C70Cb9051F6A9ba1F163Fdc07E0DfB5F84/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave LINK V1", + "symbol": "aLINK V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave LINK V1 is an interest bearing token pegged 1:1 to the underlying LINK deposited in Aave V1. aLINK V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xA64BD6C70Cb9051F6A9ba1F163Fdc07E0DfB5F84", + "status": "abandoned", + "id": "0xA64BD6C70Cb9051F6A9ba1F163Fdc07E0DfB5F84" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA64BD6C70Cb9051F6A9ba1F163Fdc07E0DfB5F84/logo.png b/blockchains/ethereum/assets/0xA64BD6C70Cb9051F6A9ba1F163Fdc07E0DfB5F84/logo.png new file mode 100644 index 00000000..c318313e Binary files /dev/null and b/blockchains/ethereum/assets/0xA64BD6C70Cb9051F6A9ba1F163Fdc07E0DfB5F84/logo.png differ diff --git a/blockchains/ethereum/assets/0xA64E816F4eB895533f93e0aecb79468Ab57D00ff/info.json b/blockchains/ethereum/assets/0xA64E816F4eB895533f93e0aecb79468Ab57D00ff/info.json new file mode 100644 index 00000000..d22ef73e --- /dev/null +++ b/blockchains/ethereum/assets/0xA64E816F4eB895533f93e0aecb79468Ab57D00ff/info.json @@ -0,0 +1,11 @@ +{ + "name": "VARO", + "symbol": "VARO", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA64E816F4eB895533f93e0aecb79468Ab57D00ff", + "status": "abandoned", + "id": "0xA64E816F4eB895533f93e0aecb79468Ab57D00ff" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA64E816F4eB895533f93e0aecb79468Ab57D00ff/logo.png b/blockchains/ethereum/assets/0xA64E816F4eB895533f93e0aecb79468Ab57D00ff/logo.png new file mode 100755 index 00000000..ea5861bc Binary files /dev/null and b/blockchains/ethereum/assets/0xA64E816F4eB895533f93e0aecb79468Ab57D00ff/logo.png differ diff --git a/blockchains/ethereum/assets/0xA64eA8089a4b0253eDCAE9C71ffcDb576988044A/info.json b/blockchains/ethereum/assets/0xA64eA8089a4b0253eDCAE9C71ffcDb576988044A/info.json new file mode 100644 index 00000000..f29aee33 --- /dev/null +++ b/blockchains/ethereum/assets/0xA64eA8089a4b0253eDCAE9C71ffcDb576988044A/info.json @@ -0,0 +1,11 @@ +{ + "name": "BoxTrade", + "symbol": "BOXY", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA64eA8089a4b0253eDCAE9C71ffcDb576988044A", + "status": "abandoned", + "id": "0xA64eA8089a4b0253eDCAE9C71ffcDb576988044A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA64eA8089a4b0253eDCAE9C71ffcDb576988044A/logo.png b/blockchains/ethereum/assets/0xA64eA8089a4b0253eDCAE9C71ffcDb576988044A/logo.png new file mode 100644 index 00000000..8be0131c Binary files /dev/null and b/blockchains/ethereum/assets/0xA64eA8089a4b0253eDCAE9C71ffcDb576988044A/logo.png differ diff --git a/blockchains/ethereum/assets/0xA663121582725aA0eb8BF20B0F56F1917762e873/info.json b/blockchains/ethereum/assets/0xA663121582725aA0eb8BF20B0F56F1917762e873/info.json new file mode 100644 index 00000000..07f744da --- /dev/null +++ b/blockchains/ethereum/assets/0xA663121582725aA0eb8BF20B0F56F1917762e873/info.json @@ -0,0 +1,11 @@ +{ + "name": "MUTANT", + "website": "https://ymen.finance", + "description": "MUTANT token is the governance token for YMEN.finance project. It's farmed with YMEN token and can be sold into YMEN/MUTANT pool.", + "explorer": "https://etherscan.io/token/0xA663121582725aA0eb8BF20B0F56F1917762e873", + "type": "ERC20", + "symbol": "MUTANT", + "decimals": 18, + "status": "active", + "id": "0xA663121582725aA0eb8BF20B0F56F1917762e873" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA663121582725aA0eb8BF20B0F56F1917762e873/logo.png b/blockchains/ethereum/assets/0xA663121582725aA0eb8BF20B0F56F1917762e873/logo.png new file mode 100644 index 00000000..874b2d90 Binary files /dev/null and b/blockchains/ethereum/assets/0xA663121582725aA0eb8BF20B0F56F1917762e873/logo.png differ diff --git a/blockchains/ethereum/assets/0xA66a5F51667da71179C23Db79a58C16193dD84a1/info.json b/blockchains/ethereum/assets/0xA66a5F51667da71179C23Db79a58C16193dD84a1/info.json new file mode 100644 index 00000000..3db58ed0 --- /dev/null +++ b/blockchains/ethereum/assets/0xA66a5F51667da71179C23Db79a58C16193dD84a1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Libfx", + "symbol": "Libfx", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA66a5F51667da71179C23Db79a58C16193dD84a1", + "status": "abandoned", + "id": "0xA66a5F51667da71179C23Db79a58C16193dD84a1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA66a5F51667da71179C23Db79a58C16193dD84a1/logo.png b/blockchains/ethereum/assets/0xA66a5F51667da71179C23Db79a58C16193dD84a1/logo.png new file mode 100644 index 00000000..db1e31d3 Binary files /dev/null and b/blockchains/ethereum/assets/0xA66a5F51667da71179C23Db79a58C16193dD84a1/logo.png differ diff --git a/blockchains/ethereum/assets/0xA67C912303b5227D6D4Dc7d16088342718a05bdf/info.json b/blockchains/ethereum/assets/0xA67C912303b5227D6D4Dc7d16088342718a05bdf/info.json new file mode 100644 index 00000000..192d6b9d --- /dev/null +++ b/blockchains/ethereum/assets/0xA67C912303b5227D6D4Dc7d16088342718a05bdf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gemx", + "symbol": "GMX", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA67C912303b5227D6D4Dc7d16088342718a05bdf", + "status": "abandoned", + "id": "0xA67C912303b5227D6D4Dc7d16088342718a05bdf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA67C912303b5227D6D4Dc7d16088342718a05bdf/logo.png b/blockchains/ethereum/assets/0xA67C912303b5227D6D4Dc7d16088342718a05bdf/logo.png new file mode 100644 index 00000000..32df05d8 Binary files /dev/null and b/blockchains/ethereum/assets/0xA67C912303b5227D6D4Dc7d16088342718a05bdf/logo.png differ diff --git a/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/info.json b/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/info.json new file mode 100644 index 00000000..03874b50 --- /dev/null +++ b/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/info.json @@ -0,0 +1,36 @@ +{ + "name": "KleeKai", + "type": "ERC20", + "symbol": "KLEE", + "decimals": 9, + "website": "https://kleerun.game", + "description": "This token sports a Play-2-Earn Cryptocurrency game namely called KleeRun. This game is an addictive, fast paced running game and fun for all ages! Available on Google Play, PC & Apple IOS devices.", + "explorer": "https://etherscan.io/token/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71", + "status": "active", + "id": "0xA67E9F021B9d208F7e3365B2A155E3C55B27de71", + "links": [ + { + "name": "x", + "url": "https://x.com/KleeKaiETH" + }, + { + "name": "telegram", + "url": "https://t.me/kleeentryportal" + }, + { + "name": "discord", + "url": "https://discord.com/invite/kleekai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kleekai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/kleekai" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/logo.png b/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/logo.png new file mode 100644 index 00000000..d3d0ec65 Binary files /dev/null and b/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/logo.png differ diff --git a/blockchains/ethereum/assets/0xA6858b98E5c14db67eC22C668701B1D33A3De1F7/info.json b/blockchains/ethereum/assets/0xA6858b98E5c14db67eC22C668701B1D33A3De1F7/info.json new file mode 100644 index 00000000..7bc58722 --- /dev/null +++ b/blockchains/ethereum/assets/0xA6858b98E5c14db67eC22C668701B1D33A3De1F7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Time Asset Chain Token", + "symbol": "TMAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA6858b98E5c14db67eC22C668701B1D33A3De1F7", + "status": "abandoned", + "id": "0xA6858b98E5c14db67eC22C668701B1D33A3De1F7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA6858b98E5c14db67eC22C668701B1D33A3De1F7/logo.png b/blockchains/ethereum/assets/0xA6858b98E5c14db67eC22C668701B1D33A3De1F7/logo.png new file mode 100644 index 00000000..421b4537 Binary files /dev/null and b/blockchains/ethereum/assets/0xA6858b98E5c14db67eC22C668701B1D33A3De1F7/logo.png differ diff --git a/blockchains/ethereum/assets/0xA685D6f87E3bE27D72Ce216842147c4149e0Ce9a/info.json b/blockchains/ethereum/assets/0xA685D6f87E3bE27D72Ce216842147c4149e0Ce9a/info.json new file mode 100644 index 00000000..e9bfc381 --- /dev/null +++ b/blockchains/ethereum/assets/0xA685D6f87E3bE27D72Ce216842147c4149e0Ce9a/info.json @@ -0,0 +1,11 @@ +{ + "name": "RODZ", + "symbol": "RODZ", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA685D6f87E3bE27D72Ce216842147c4149e0Ce9a", + "status": "abandoned", + "id": "0xA685D6f87E3bE27D72Ce216842147c4149e0Ce9a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA685D6f87E3bE27D72Ce216842147c4149e0Ce9a/logo.png b/blockchains/ethereum/assets/0xA685D6f87E3bE27D72Ce216842147c4149e0Ce9a/logo.png new file mode 100644 index 00000000..59565972 Binary files /dev/null and b/blockchains/ethereum/assets/0xA685D6f87E3bE27D72Ce216842147c4149e0Ce9a/logo.png differ diff --git a/blockchains/ethereum/assets/0xA68Dd8cB83097765263AdAD881Af6eeD479c4a33/info.json b/blockchains/ethereum/assets/0xA68Dd8cB83097765263AdAD881Af6eeD479c4a33/info.json new file mode 100644 index 00000000..1e7dfbc0 --- /dev/null +++ b/blockchains/ethereum/assets/0xA68Dd8cB83097765263AdAD881Af6eeD479c4a33/info.json @@ -0,0 +1,24 @@ +{ + "name": "fees.wtf", + "symbol": "WTF", + "type": "ERC20", + "decimals": 18, + "description": "WTF token is fees.wtf's token. It is airdropped to all users who have spent gas in the Ethereum ecosystem.", + "website": "https://fees.wtf", + "explorer": "https://etherscan.io/token/0xA68Dd8cB83097765263AdAD881Af6eeD479c4a33", + "status": "active", + "id": "0xA68Dd8cB83097765263AdAD881Af6eeD479c4a33", + "tags": [ + "nft" + ], + "links": [ + { + "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/0xA68Dd8cB83097765263AdAD881Af6eeD479c4a33/logo.png b/blockchains/ethereum/assets/0xA68Dd8cB83097765263AdAD881Af6eeD479c4a33/logo.png new file mode 100644 index 00000000..bb7315a9 Binary files /dev/null and b/blockchains/ethereum/assets/0xA68Dd8cB83097765263AdAD881Af6eeD479c4a33/logo.png differ diff --git a/blockchains/ethereum/assets/0xA6FA6531acDf1f9F96EDdD66a0F9481E35c2e42A/info.json b/blockchains/ethereum/assets/0xA6FA6531acDf1f9F96EDdD66a0F9481E35c2e42A/info.json new file mode 100644 index 00000000..78e7ba75 --- /dev/null +++ b/blockchains/ethereum/assets/0xA6FA6531acDf1f9F96EDdD66a0F9481E35c2e42A/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoBRL", + "website": "https://cryptobrl.com", + "description": "The CryptoBRL is a stablecoin pegged one for one to the Brazilian Real. It's supported and adopted by a consortium with several companies from Brazilian cryptocurrency market. Every token is backed by traditional currency, the reserve holdings are published and subject to 'distributed audits', from the companies in the consortium and other important players from the crypto-market.", + "explorer": "https://etherscan.io/token/0xA6FA6531acDf1f9F96EDdD66a0F9481E35c2e42A", + "type": "ERC20", + "symbol": "CBRL", + "decimals": 6, + "status": "active", + "id": "0xA6FA6531acDf1f9F96EDdD66a0F9481E35c2e42A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA6FA6531acDf1f9F96EDdD66a0F9481E35c2e42A/logo.png b/blockchains/ethereum/assets/0xA6FA6531acDf1f9F96EDdD66a0F9481E35c2e42A/logo.png new file mode 100644 index 00000000..3418a6b1 Binary files /dev/null and b/blockchains/ethereum/assets/0xA6FA6531acDf1f9F96EDdD66a0F9481E35c2e42A/logo.png differ diff --git a/blockchains/ethereum/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json b/blockchains/ethereum/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json new file mode 100644 index 00000000..c8fe22a0 --- /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 00000000..7cb316a4 Binary files /dev/null and b/blockchains/ethereum/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/logo.png differ diff --git a/blockchains/ethereum/assets/0xA6ba0AA61ccD254fD92d548dfE87d06533649c12/info.json b/blockchains/ethereum/assets/0xA6ba0AA61ccD254fD92d548dfE87d06533649c12/info.json new file mode 100644 index 00000000..ebfeea3b --- /dev/null +++ b/blockchains/ethereum/assets/0xA6ba0AA61ccD254fD92d548dfE87d06533649c12/info.json @@ -0,0 +1,11 @@ +{ + "name": "Career Trust Ecosystem", + "symbol": "CTE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA6ba0AA61ccD254fD92d548dfE87d06533649c12", + "status": "abandoned", + "id": "0xA6ba0AA61ccD254fD92d548dfE87d06533649c12" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA6ba0AA61ccD254fD92d548dfE87d06533649c12/logo.png b/blockchains/ethereum/assets/0xA6ba0AA61ccD254fD92d548dfE87d06533649c12/logo.png new file mode 100644 index 00000000..04bbba8a Binary files /dev/null and b/blockchains/ethereum/assets/0xA6ba0AA61ccD254fD92d548dfE87d06533649c12/logo.png differ diff --git a/blockchains/ethereum/assets/0xA6c040045d962e4B8eFa00954c7d23CCd0a2b8AD/info.json b/blockchains/ethereum/assets/0xA6c040045d962e4B8eFa00954c7d23CCd0a2b8AD/info.json new file mode 100644 index 00000000..4165b039 --- /dev/null +++ b/blockchains/ethereum/assets/0xA6c040045d962e4B8eFa00954c7d23CCd0a2b8AD/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitEth2575RebalancingSetToken", + "symbol": "BTCETH2575", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.tokensets.com/set/ethbtc7525", + "explorer": "https://etherscan.io/token/0xA6c040045d962e4B8eFa00954c7d23CCd0a2b8AD", + "status": "abandoned", + "id": "0xA6c040045d962e4B8eFa00954c7d23CCd0a2b8AD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA6c040045d962e4B8eFa00954c7d23CCd0a2b8AD/logo.png b/blockchains/ethereum/assets/0xA6c040045d962e4B8eFa00954c7d23CCd0a2b8AD/logo.png new file mode 100644 index 00000000..8ae45984 Binary files /dev/null and b/blockchains/ethereum/assets/0xA6c040045d962e4B8eFa00954c7d23CCd0a2b8AD/logo.png differ diff --git a/blockchains/ethereum/assets/0xA6fBE7781932a28eeAE7c9cACF939b73d721081e/info.json b/blockchains/ethereum/assets/0xA6fBE7781932a28eeAE7c9cACF939b73d721081e/info.json new file mode 100644 index 00000000..6e79086f --- /dev/null +++ b/blockchains/ethereum/assets/0xA6fBE7781932a28eeAE7c9cACF939b73d721081e/info.json @@ -0,0 +1,11 @@ +{ + "name": "WANGTOKEN", + "symbol": "WANGTOKEN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA6fBE7781932a28eeAE7c9cACF939b73d721081e", + "status": "abandoned", + "id": "0xA6fBE7781932a28eeAE7c9cACF939b73d721081e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA6fBE7781932a28eeAE7c9cACF939b73d721081e/logo.png b/blockchains/ethereum/assets/0xA6fBE7781932a28eeAE7c9cACF939b73d721081e/logo.png new file mode 100755 index 00000000..de26a8ab Binary files /dev/null and b/blockchains/ethereum/assets/0xA6fBE7781932a28eeAE7c9cACF939b73d721081e/logo.png differ diff --git a/blockchains/ethereum/assets/0xA70f08F058617A2f07B6A8cf568198f3ddc996fa/info.json b/blockchains/ethereum/assets/0xA70f08F058617A2f07B6A8cf568198f3ddc996fa/info.json new file mode 100644 index 00000000..11b1e68c --- /dev/null +++ b/blockchains/ethereum/assets/0xA70f08F058617A2f07B6A8cf568198f3ddc996fa/info.json @@ -0,0 +1,11 @@ +{ + "name": "HUGS", + "symbol": "HUGS", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA70f08F058617A2f07B6A8cf568198f3ddc996fa", + "status": "abandoned", + "id": "0xA70f08F058617A2f07B6A8cf568198f3ddc996fa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA70f08F058617A2f07B6A8cf568198f3ddc996fa/logo.png b/blockchains/ethereum/assets/0xA70f08F058617A2f07B6A8cf568198f3ddc996fa/logo.png new file mode 100755 index 00000000..8bd3ad54 Binary files /dev/null and b/blockchains/ethereum/assets/0xA70f08F058617A2f07B6A8cf568198f3ddc996fa/logo.png differ diff --git a/blockchains/ethereum/assets/0xA735A3AF76CC30791C61c10d585833829d36CBe0/info.json b/blockchains/ethereum/assets/0xA735A3AF76CC30791C61c10d585833829d36CBe0/info.json new file mode 100644 index 00000000..d2e46f18 --- /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 00000000..f772ec23 Binary files /dev/null and b/blockchains/ethereum/assets/0xA735A3AF76CC30791C61c10d585833829d36CBe0/logo.png differ diff --git a/blockchains/ethereum/assets/0xA740684C9022dc07540031b10dD57984640bAbef/info.json b/blockchains/ethereum/assets/0xA740684C9022dc07540031b10dD57984640bAbef/info.json new file mode 100644 index 00000000..ac812f82 --- /dev/null +++ b/blockchains/ethereum/assets/0xA740684C9022dc07540031b10dD57984640bAbef/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decash", + "symbol": "DECH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA740684C9022dc07540031b10dD57984640bAbef", + "status": "abandoned", + "id": "0xA740684C9022dc07540031b10dD57984640bAbef" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA740684C9022dc07540031b10dD57984640bAbef/logo.png b/blockchains/ethereum/assets/0xA740684C9022dc07540031b10dD57984640bAbef/logo.png new file mode 100644 index 00000000..4df12b9e Binary files /dev/null and b/blockchains/ethereum/assets/0xA740684C9022dc07540031b10dD57984640bAbef/logo.png differ diff --git a/blockchains/ethereum/assets/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24/info.json b/blockchains/ethereum/assets/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24/info.json new file mode 100644 index 00000000..235ca430 --- /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 00000000..9cb9dacc 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 00000000..60b20f49 --- /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 00000000..402acb7f Binary files /dev/null and b/blockchains/ethereum/assets/0xA75AD62a1b6b78eEA6c54C22Eb697Ca0b125f97a/logo.png differ diff --git a/blockchains/ethereum/assets/0xA7925aA2A6e4575ab0C74D169f3BC3e03D4C319A/info.json b/blockchains/ethereum/assets/0xA7925aA2A6e4575ab0C74D169f3BC3e03D4C319A/info.json new file mode 100644 index 00000000..92b32835 --- /dev/null +++ b/blockchains/ethereum/assets/0xA7925aA2A6e4575ab0C74D169f3BC3e03D4C319A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Better Money", + "symbol": "BETTER", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA7925aA2A6e4575ab0C74D169f3BC3e03D4C319A", + "status": "abandoned", + "id": "0xA7925aA2A6e4575ab0C74D169f3BC3e03D4C319A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA7925aA2A6e4575ab0C74D169f3BC3e03D4C319A/logo.png b/blockchains/ethereum/assets/0xA7925aA2A6e4575ab0C74D169f3BC3e03D4C319A/logo.png new file mode 100644 index 00000000..46ad5d61 Binary files /dev/null and b/blockchains/ethereum/assets/0xA7925aA2A6e4575ab0C74D169f3BC3e03D4C319A/logo.png differ diff --git a/blockchains/ethereum/assets/0xA79e0012bb3379f8509a5ab49caB7e6Abb49701D/info.json b/blockchains/ethereum/assets/0xA79e0012bb3379f8509a5ab49caB7e6Abb49701D/info.json new file mode 100644 index 00000000..be8e7950 --- /dev/null +++ b/blockchains/ethereum/assets/0xA79e0012bb3379f8509a5ab49caB7e6Abb49701D/info.json @@ -0,0 +1,11 @@ +{ + "name": "NAMTANCOIN", + "symbol": "NAMTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA79e0012bb3379f8509a5ab49caB7e6Abb49701D", + "status": "abandoned", + "id": "0xA79e0012bb3379f8509a5ab49caB7e6Abb49701D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA79e0012bb3379f8509a5ab49caB7e6Abb49701D/logo.png b/blockchains/ethereum/assets/0xA79e0012bb3379f8509a5ab49caB7e6Abb49701D/logo.png new file mode 100644 index 00000000..97b3380f Binary files /dev/null and b/blockchains/ethereum/assets/0xA79e0012bb3379f8509a5ab49caB7e6Abb49701D/logo.png differ diff --git a/blockchains/ethereum/assets/0xA7ADC14fc624617a18E5A476d80A7FeFE90A11B7/info.json b/blockchains/ethereum/assets/0xA7ADC14fc624617a18E5A476d80A7FeFE90A11B7/info.json new file mode 100644 index 00000000..c058ae70 --- /dev/null +++ b/blockchains/ethereum/assets/0xA7ADC14fc624617a18E5A476d80A7FeFE90A11B7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Edustars Lite", + "symbol": "EDSLTE", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA7ADC14fc624617a18E5A476d80A7FeFE90A11B7", + "status": "abandoned", + "id": "0xA7ADC14fc624617a18E5A476d80A7FeFE90A11B7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA7ADC14fc624617a18E5A476d80A7FeFE90A11B7/logo.png b/blockchains/ethereum/assets/0xA7ADC14fc624617a18E5A476d80A7FeFE90A11B7/logo.png new file mode 100755 index 00000000..3b4f7b16 Binary files /dev/null and b/blockchains/ethereum/assets/0xA7ADC14fc624617a18E5A476d80A7FeFE90A11B7/logo.png differ diff --git a/blockchains/ethereum/assets/0xA7E26d3455629a01d9136BF4F9a1644634934773/info.json b/blockchains/ethereum/assets/0xA7E26d3455629a01d9136BF4F9a1644634934773/info.json new file mode 100644 index 00000000..84e9849e --- /dev/null +++ b/blockchains/ethereum/assets/0xA7E26d3455629a01d9136BF4F9a1644634934773/info.json @@ -0,0 +1,11 @@ +{ + "name": "UAH", + "symbol": "UAH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA7E26d3455629a01d9136BF4F9a1644634934773", + "status": "abandoned", + "id": "0xA7E26d3455629a01d9136BF4F9a1644634934773" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA7E26d3455629a01d9136BF4F9a1644634934773/logo.png b/blockchains/ethereum/assets/0xA7E26d3455629a01d9136BF4F9a1644634934773/logo.png new file mode 100644 index 00000000..59e10889 Binary files /dev/null and b/blockchains/ethereum/assets/0xA7E26d3455629a01d9136BF4F9a1644634934773/logo.png differ diff --git a/blockchains/ethereum/assets/0xA7E9854AA83964A8E4664D0C1A4748aa5eAcB58b/info.json b/blockchains/ethereum/assets/0xA7E9854AA83964A8E4664D0C1A4748aa5eAcB58b/info.json new file mode 100644 index 00000000..684ca5f7 --- /dev/null +++ b/blockchains/ethereum/assets/0xA7E9854AA83964A8E4664D0C1A4748aa5eAcB58b/info.json @@ -0,0 +1,11 @@ +{ + "name": "CandyToken", + "symbol": "CT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA7E9854AA83964A8E4664D0C1A4748aa5eAcB58b", + "status": "abandoned", + "id": "0xA7E9854AA83964A8E4664D0C1A4748aa5eAcB58b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA7E9854AA83964A8E4664D0C1A4748aa5eAcB58b/logo.png b/blockchains/ethereum/assets/0xA7E9854AA83964A8E4664D0C1A4748aa5eAcB58b/logo.png new file mode 100644 index 00000000..41f3e422 Binary files /dev/null and b/blockchains/ethereum/assets/0xA7E9854AA83964A8E4664D0C1A4748aa5eAcB58b/logo.png differ diff --git a/blockchains/ethereum/assets/0xA7Eb2bc82df18013ecC2A6C533fc29446442EDEe/info.json b/blockchains/ethereum/assets/0xA7Eb2bc82df18013ecC2A6C533fc29446442EDEe/info.json new file mode 100644 index 00000000..edeff70e --- /dev/null +++ b/blockchains/ethereum/assets/0xA7Eb2bc82df18013ecC2A6C533fc29446442EDEe/info.json @@ -0,0 +1,11 @@ +{ + "name": "bZx ZRX iToken", + "symbol": "iZRX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA7Eb2bc82df18013ecC2A6C533fc29446442EDEe", + "status": "abandoned", + "id": "0xA7Eb2bc82df18013ecC2A6C533fc29446442EDEe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA7Eb2bc82df18013ecC2A6C533fc29446442EDEe/logo.png b/blockchains/ethereum/assets/0xA7Eb2bc82df18013ecC2A6C533fc29446442EDEe/logo.png new file mode 100644 index 00000000..7059f575 Binary files /dev/null and b/blockchains/ethereum/assets/0xA7Eb2bc82df18013ecC2A6C533fc29446442EDEe/logo.png differ diff --git a/blockchains/ethereum/assets/0xA7aB21CA0a11d63369de020601b1342baA71144E/info.json b/blockchains/ethereum/assets/0xA7aB21CA0a11d63369de020601b1342baA71144E/info.json new file mode 100644 index 00000000..015a670e --- /dev/null +++ b/blockchains/ethereum/assets/0xA7aB21CA0a11d63369de020601b1342baA71144E/info.json @@ -0,0 +1,11 @@ +{ + "name": "BVA", + "symbol": "BVA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA7aB21CA0a11d63369de020601b1342baA71144E", + "status": "abandoned", + "id": "0xA7aB21CA0a11d63369de020601b1342baA71144E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA7aB21CA0a11d63369de020601b1342baA71144E/logo.png b/blockchains/ethereum/assets/0xA7aB21CA0a11d63369de020601b1342baA71144E/logo.png new file mode 100644 index 00000000..052098f7 Binary files /dev/null and b/blockchains/ethereum/assets/0xA7aB21CA0a11d63369de020601b1342baA71144E/logo.png differ diff --git a/blockchains/ethereum/assets/0xA7c8d7a1C894E51dbB7c680B5B1dBdc845BFbDAB/info.json b/blockchains/ethereum/assets/0xA7c8d7a1C894E51dbB7c680B5B1dBdc845BFbDAB/info.json new file mode 100644 index 00000000..04b94149 --- /dev/null +++ b/blockchains/ethereum/assets/0xA7c8d7a1C894E51dbB7c680B5B1dBdc845BFbDAB/info.json @@ -0,0 +1,11 @@ +{ + "name": "SpeedKingToken", + "symbol": "SKT", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA7c8d7a1C894E51dbB7c680B5B1dBdc845BFbDAB", + "status": "abandoned", + "id": "0xA7c8d7a1C894E51dbB7c680B5B1dBdc845BFbDAB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA7c8d7a1C894E51dbB7c680B5B1dBdc845BFbDAB/logo.png b/blockchains/ethereum/assets/0xA7c8d7a1C894E51dbB7c680B5B1dBdc845BFbDAB/logo.png new file mode 100644 index 00000000..31bf1acd Binary files /dev/null and b/blockchains/ethereum/assets/0xA7c8d7a1C894E51dbB7c680B5B1dBdc845BFbDAB/logo.png differ diff --git a/blockchains/ethereum/assets/0xA7fC5D2453E3F68aF0cc1B78bcFEe94A1B293650/info.json b/blockchains/ethereum/assets/0xA7fC5D2453E3F68aF0cc1B78bcFEe94A1B293650/info.json new file mode 100644 index 00000000..24496cac --- /dev/null +++ b/blockchains/ethereum/assets/0xA7fC5D2453E3F68aF0cc1B78bcFEe94A1B293650/info.json @@ -0,0 +1,11 @@ +{ + "name": "Spiking", + "symbol": "SPIKE", + "type": "ERC20", + "decimals": 10, + "description": "The Spiking Platform aims to allow its users to mirror the trading activity of any whale and control their own segregated trading accounts directly. SPIKE will be the token that fuels the Spiking Platform (gas). For new traders, Spiking will offer the assistance of RoboBull, a proprietary AI Robot that is able to create a portfolio of different whales based on the trader’s risk/reward ratio.", + "website": "https://spiking.com/", + "explorer": "https://etherscan.io/token/0xA7fC5D2453E3F68aF0cc1B78bcFEe94A1B293650", + "status": "active", + "id": "0xA7fC5D2453E3F68aF0cc1B78bcFEe94A1B293650" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA7fC5D2453E3F68aF0cc1B78bcFEe94A1B293650/logo.png b/blockchains/ethereum/assets/0xA7fC5D2453E3F68aF0cc1B78bcFEe94A1B293650/logo.png new file mode 100644 index 00000000..0d713356 Binary files /dev/null and b/blockchains/ethereum/assets/0xA7fC5D2453E3F68aF0cc1B78bcFEe94A1B293650/logo.png differ diff --git a/blockchains/ethereum/assets/0xA806B3FEd6891136940cF81c4085661500aa2709/info.json b/blockchains/ethereum/assets/0xA806B3FEd6891136940cF81c4085661500aa2709/info.json new file mode 100644 index 00000000..27962030 --- /dev/null +++ b/blockchains/ethereum/assets/0xA806B3FEd6891136940cF81c4085661500aa2709/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sport AND Leisure", + "symbol": "SnL", + "type": "ERC20", + "decimals": 6, + "description": "SnL token describes itself as a stable, Ethereum-backed asset that aims to eliminate counterparty, market, or security risks.", + "website": "https://www.snltoken.io", + "explorer": "https://etherscan.io/token/0xA806B3FEd6891136940cF81c4085661500aa2709", + "status": "active", + "id": "0xA806B3FEd6891136940cF81c4085661500aa2709" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA806B3FEd6891136940cF81c4085661500aa2709/logo.png b/blockchains/ethereum/assets/0xA806B3FEd6891136940cF81c4085661500aa2709/logo.png new file mode 100644 index 00000000..4c4c1342 Binary files /dev/null and b/blockchains/ethereum/assets/0xA806B3FEd6891136940cF81c4085661500aa2709/logo.png differ diff --git a/blockchains/ethereum/assets/0xA809CeDeE9B61956c768EAa10272dd5E0FD1A985/info.json b/blockchains/ethereum/assets/0xA809CeDeE9B61956c768EAa10272dd5E0FD1A985/info.json new file mode 100644 index 00000000..27eb4f07 --- /dev/null +++ b/blockchains/ethereum/assets/0xA809CeDeE9B61956c768EAa10272dd5E0FD1A985/info.json @@ -0,0 +1,11 @@ +{ + "name": "CAMI", + "symbol": "CAMI", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA809CeDeE9B61956c768EAa10272dd5E0FD1A985", + "status": "abandoned", + "id": "0xA809CeDeE9B61956c768EAa10272dd5E0FD1A985" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA809CeDeE9B61956c768EAa10272dd5E0FD1A985/logo.png b/blockchains/ethereum/assets/0xA809CeDeE9B61956c768EAa10272dd5E0FD1A985/logo.png new file mode 100644 index 00000000..bc8d6795 Binary files /dev/null and b/blockchains/ethereum/assets/0xA809CeDeE9B61956c768EAa10272dd5E0FD1A985/logo.png differ diff --git a/blockchains/ethereum/assets/0xA809d363A66c576A2a814CDBfEFC107C600A55f0/info.json b/blockchains/ethereum/assets/0xA809d363A66c576A2a814CDBfEFC107C600A55f0/info.json new file mode 100644 index 00000000..905371e5 --- /dev/null +++ b/blockchains/ethereum/assets/0xA809d363A66c576A2a814CDBfEFC107C600A55f0/info.json @@ -0,0 +1,11 @@ +{ + "name": "HyperLoot", + "symbol": "HLT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA809d363A66c576A2a814CDBfEFC107C600A55f0", + "status": "abandoned", + "id": "0xA809d363A66c576A2a814CDBfEFC107C600A55f0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA809d363A66c576A2a814CDBfEFC107C600A55f0/logo.png b/blockchains/ethereum/assets/0xA809d363A66c576A2a814CDBfEFC107C600A55f0/logo.png new file mode 100755 index 00000000..f73e8cb2 Binary files /dev/null and b/blockchains/ethereum/assets/0xA809d363A66c576A2a814CDBfEFC107C600A55f0/logo.png differ diff --git a/blockchains/ethereum/assets/0xA823E6722006afe99E91c30FF5295052fe6b8E32/info.json b/blockchains/ethereum/assets/0xA823E6722006afe99E91c30FF5295052fe6b8E32/info.json new file mode 100644 index 00000000..8a4bc1b2 --- /dev/null +++ b/blockchains/ethereum/assets/0xA823E6722006afe99E91c30FF5295052fe6b8E32/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neumark", + "symbol": "NEU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://neufund.org/", + "explorer": "https://etherscan.io/token/0xA823E6722006afe99E91c30FF5295052fe6b8E32", + "status": "abandoned", + "id": "0xA823E6722006afe99E91c30FF5295052fe6b8E32" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA823E6722006afe99E91c30FF5295052fe6b8E32/logo.png b/blockchains/ethereum/assets/0xA823E6722006afe99E91c30FF5295052fe6b8E32/logo.png new file mode 100755 index 00000000..46d96b16 Binary files /dev/null and b/blockchains/ethereum/assets/0xA823E6722006afe99E91c30FF5295052fe6b8E32/logo.png differ diff --git a/blockchains/ethereum/assets/0xA824caa1Daf7e88A6650630CC8b23FF90946D329/info.json b/blockchains/ethereum/assets/0xA824caa1Daf7e88A6650630CC8b23FF90946D329/info.json new file mode 100644 index 00000000..8e137713 --- /dev/null +++ b/blockchains/ethereum/assets/0xA824caa1Daf7e88A6650630CC8b23FF90946D329/info.json @@ -0,0 +1,11 @@ +{ + "name": "DigiPeso", + "symbol": "DPC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA824caa1Daf7e88A6650630CC8b23FF90946D329", + "status": "abandoned", + "id": "0xA824caa1Daf7e88A6650630CC8b23FF90946D329" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA824caa1Daf7e88A6650630CC8b23FF90946D329/logo.png b/blockchains/ethereum/assets/0xA824caa1Daf7e88A6650630CC8b23FF90946D329/logo.png new file mode 100755 index 00000000..2412259f Binary files /dev/null and b/blockchains/ethereum/assets/0xA824caa1Daf7e88A6650630CC8b23FF90946D329/logo.png differ diff --git a/blockchains/ethereum/assets/0xA8258AbC8f2811dd48EccD209db68F25E3E34667/info.json b/blockchains/ethereum/assets/0xA8258AbC8f2811dd48EccD209db68F25E3E34667/info.json new file mode 100644 index 00000000..9d718fc7 --- /dev/null +++ b/blockchains/ethereum/assets/0xA8258AbC8f2811dd48EccD209db68F25E3E34667/info.json @@ -0,0 +1,11 @@ +{ + "name": "Constellation", + "symbol": "DAG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA8258AbC8f2811dd48EccD209db68F25E3E34667", + "status": "abandoned", + "id": "0xA8258AbC8f2811dd48EccD209db68F25E3E34667" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA8258AbC8f2811dd48EccD209db68F25E3E34667/logo.png b/blockchains/ethereum/assets/0xA8258AbC8f2811dd48EccD209db68F25E3E34667/logo.png new file mode 100755 index 00000000..110a0a0e Binary files /dev/null and b/blockchains/ethereum/assets/0xA8258AbC8f2811dd48EccD209db68F25E3E34667/logo.png differ diff --git a/blockchains/ethereum/assets/0xA829F97373069ee5d23175e4105dF8fD49238Be7/info.json b/blockchains/ethereum/assets/0xA829F97373069ee5d23175e4105dF8fD49238Be7/info.json new file mode 100644 index 00000000..44e58432 --- /dev/null +++ b/blockchains/ethereum/assets/0xA829F97373069ee5d23175e4105dF8fD49238Be7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Opennity Token", + "symbol": "OPNN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.opennity.com/", + "explorer": "https://etherscan.io/token/0xA829F97373069ee5d23175e4105dF8fD49238Be7", + "status": "abandoned", + "id": "0xA829F97373069ee5d23175e4105dF8fD49238Be7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA829F97373069ee5d23175e4105dF8fD49238Be7/logo.png b/blockchains/ethereum/assets/0xA829F97373069ee5d23175e4105dF8fD49238Be7/logo.png new file mode 100644 index 00000000..5271e87c Binary files /dev/null and b/blockchains/ethereum/assets/0xA829F97373069ee5d23175e4105dF8fD49238Be7/logo.png differ diff --git a/blockchains/ethereum/assets/0xA83f603a762bcE955c6D1Aa8666A0f85FEEdeeDD/info.json b/blockchains/ethereum/assets/0xA83f603a762bcE955c6D1Aa8666A0f85FEEdeeDD/info.json new file mode 100644 index 00000000..7b66fd4c --- /dev/null +++ b/blockchains/ethereum/assets/0xA83f603a762bcE955c6D1Aa8666A0f85FEEdeeDD/info.json @@ -0,0 +1,11 @@ +{ + "name": "FIC", + "website": "http://www.filecash.info/store.html", + "description": "FIC is the aggregation token of the IPFS network. The two major landing ecosystems of FIC include KT80s++ mining machine and KLUUK browser.", + "explorer": "https://etherscan.io/token/0xa83f603a762bce955c6d1aa8666a0f85feedeedd", + "type": "ERC20", + "symbol": "FIC", + "decimals": 18, + "status": "active", + "id": "0xA83f603a762bcE955c6D1Aa8666A0f85FEEdeeDD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA83f603a762bcE955c6D1Aa8666A0f85FEEdeeDD/logo.png b/blockchains/ethereum/assets/0xA83f603a762bcE955c6D1Aa8666A0f85FEEdeeDD/logo.png new file mode 100644 index 00000000..b60ae23d Binary files /dev/null and b/blockchains/ethereum/assets/0xA83f603a762bcE955c6D1Aa8666A0f85FEEdeeDD/logo.png differ diff --git a/blockchains/ethereum/assets/0xA849EaaE994fb86Afa73382e9Bd88c2B6b18Dc71/info.json b/blockchains/ethereum/assets/0xA849EaaE994fb86Afa73382e9Bd88c2B6b18Dc71/info.json new file mode 100644 index 00000000..8a92be43 --- /dev/null +++ b/blockchains/ethereum/assets/0xA849EaaE994fb86Afa73382e9Bd88c2B6b18Dc71/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mass Vehicle Ledger Token", + "symbol": "MVL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://mvlchain.io/", + "explorer": "https://etherscan.io/token/0xA849EaaE994fb86Afa73382e9Bd88c2B6b18Dc71", + "status": "abandoned", + "id": "0xA849EaaE994fb86Afa73382e9Bd88c2B6b18Dc71" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA849EaaE994fb86Afa73382e9Bd88c2B6b18Dc71/logo.png b/blockchains/ethereum/assets/0xA849EaaE994fb86Afa73382e9Bd88c2B6b18Dc71/logo.png new file mode 100644 index 00000000..e2cb1b9c Binary files /dev/null and b/blockchains/ethereum/assets/0xA849EaaE994fb86Afa73382e9Bd88c2B6b18Dc71/logo.png differ diff --git a/blockchains/ethereum/assets/0xA8580F3363684d76055bdC6660CaeFe8709744e1/info.json b/blockchains/ethereum/assets/0xA8580F3363684d76055bdC6660CaeFe8709744e1/info.json new file mode 100644 index 00000000..9ceaeec3 --- /dev/null +++ b/blockchains/ethereum/assets/0xA8580F3363684d76055bdC6660CaeFe8709744e1/info.json @@ -0,0 +1,29 @@ +{ + "name": "Folder Protocol Token", + "website": "https://folderlabs.io/", + "description": "Folder Protocol provides a blockchain-based second layer technologies and marketplace that aims to revolutionize the global storage economy for highly scalable, faster retrieval, and wider distribution.", + "explorer": "https://etherscan.io/token/0xA8580F3363684d76055bdC6660CaeFe8709744e1", + "type": "ERC20", + "symbol": "FOL", + "decimals": 18, + "status": "active", + "id": "0xA8580F3363684d76055bdC6660CaeFe8709744e1", + "links": [ + { + "name": "x", + "url": "https://x.com/folderlabs" + }, + { + "name": "telegram", + "url": "https://t.me/folderlabs" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/folderlabs" + }, + { + "name": "medium", + "url": "https://folderlabs.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA8580F3363684d76055bdC6660CaeFe8709744e1/logo.png b/blockchains/ethereum/assets/0xA8580F3363684d76055bdC6660CaeFe8709744e1/logo.png new file mode 100644 index 00000000..95853b7d Binary files /dev/null and b/blockchains/ethereum/assets/0xA8580F3363684d76055bdC6660CaeFe8709744e1/logo.png differ diff --git a/blockchains/ethereum/assets/0xA858bC1b71a895Ee83B92F149616F9B3F6Afa0FB/info.json b/blockchains/ethereum/assets/0xA858bC1b71a895Ee83B92F149616F9B3F6Afa0FB/info.json new file mode 100644 index 00000000..e9de236b --- /dev/null +++ b/blockchains/ethereum/assets/0xA858bC1b71a895Ee83B92F149616F9B3F6Afa0FB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kambria Token", + "symbol": "KAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://kambria.io/", + "explorer": "https://etherscan.io/token/0xA858bC1b71a895Ee83B92F149616F9B3F6Afa0FB", + "status": "abandoned", + "id": "0xA858bC1b71a895Ee83B92F149616F9B3F6Afa0FB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA858bC1b71a895Ee83B92F149616F9B3F6Afa0FB/logo.png b/blockchains/ethereum/assets/0xA858bC1b71a895Ee83B92F149616F9B3F6Afa0FB/logo.png new file mode 100644 index 00000000..6e00d9d0 Binary files /dev/null and b/blockchains/ethereum/assets/0xA858bC1b71a895Ee83B92F149616F9B3F6Afa0FB/logo.png differ diff --git a/blockchains/ethereum/assets/0xA866F0198208Eb07c83081d5136BE7f775c2399e/info.json b/blockchains/ethereum/assets/0xA866F0198208Eb07c83081d5136BE7f775c2399e/info.json new file mode 100644 index 00000000..effa92cd --- /dev/null +++ b/blockchains/ethereum/assets/0xA866F0198208Eb07c83081d5136BE7f775c2399e/info.json @@ -0,0 +1,25 @@ +{ + "name": "KORE Vault", + "website": "https://kVault.finance", + "description": "KORE is the first deflationary farming token with autonomous profit generation strategies", + "explorer": "https://etherscan.io/token/0xA866F0198208Eb07c83081d5136BE7f775c2399e", + "type": "ERC20", + "symbol": "KORE", + "decimals": 18, + "status": "active", + "id": "0xA866F0198208Eb07c83081d5136BE7f775c2399e", + "links": [ + { + "name": "github", + "url": "https://github.com/KORE-Vault" + }, + { + "name": "x", + "url": "https://x.com/kvault_finance" + }, + { + "name": "telegram", + "url": "https://t.me/kore_vault" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA866F0198208Eb07c83081d5136BE7f775c2399e/logo.png b/blockchains/ethereum/assets/0xA866F0198208Eb07c83081d5136BE7f775c2399e/logo.png new file mode 100644 index 00000000..cebfe144 Binary files /dev/null and b/blockchains/ethereum/assets/0xA866F0198208Eb07c83081d5136BE7f775c2399e/logo.png differ diff --git a/blockchains/ethereum/assets/0xA86a0Da9D05d0771955DF05B44Ca120661aF16DE/info.json b/blockchains/ethereum/assets/0xA86a0Da9D05d0771955DF05B44Ca120661aF16DE/info.json new file mode 100644 index 00000000..e32d1daa --- /dev/null +++ b/blockchains/ethereum/assets/0xA86a0Da9D05d0771955DF05B44Ca120661aF16DE/info.json @@ -0,0 +1,11 @@ +{ + "name": "OTCBTC Token", + "symbol": "OTB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://otcbtc.com/", + "explorer": "https://etherscan.io/token/0xA86a0Da9D05d0771955DF05B44Ca120661aF16DE", + "status": "abandoned", + "id": "0xA86a0Da9D05d0771955DF05B44Ca120661aF16DE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA86a0Da9D05d0771955DF05B44Ca120661aF16DE/logo.png b/blockchains/ethereum/assets/0xA86a0Da9D05d0771955DF05B44Ca120661aF16DE/logo.png new file mode 100755 index 00000000..47832672 Binary files /dev/null and b/blockchains/ethereum/assets/0xA86a0Da9D05d0771955DF05B44Ca120661aF16DE/logo.png differ diff --git a/blockchains/ethereum/assets/0xA891CF72AEDa692570928eFe1A832342e9783CDC/info.json b/blockchains/ethereum/assets/0xA891CF72AEDa692570928eFe1A832342e9783CDC/info.json new file mode 100644 index 00000000..428b8198 --- /dev/null +++ b/blockchains/ethereum/assets/0xA891CF72AEDa692570928eFe1A832342e9783CDC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Interfinex Bills", + "symbol": "IFEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA891CF72AEDa692570928eFe1A832342e9783CDC", + "status": "abandoned", + "id": "0xA891CF72AEDa692570928eFe1A832342e9783CDC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA891CF72AEDa692570928eFe1A832342e9783CDC/logo.png b/blockchains/ethereum/assets/0xA891CF72AEDa692570928eFe1A832342e9783CDC/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0xA891CF72AEDa692570928eFe1A832342e9783CDC/logo.png differ diff --git a/blockchains/ethereum/assets/0xA89FD5459C67AfC8727C07333ED830643Cf898B6/info.json b/blockchains/ethereum/assets/0xA89FD5459C67AfC8727C07333ED830643Cf898B6/info.json new file mode 100644 index 00000000..b7b1c61e --- /dev/null +++ b/blockchains/ethereum/assets/0xA89FD5459C67AfC8727C07333ED830643Cf898B6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dice Coin", + "symbol": "DICO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA89FD5459C67AfC8727C07333ED830643Cf898B6", + "status": "abandoned", + "id": "0xA89FD5459C67AfC8727C07333ED830643Cf898B6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA89FD5459C67AfC8727C07333ED830643Cf898B6/logo.png b/blockchains/ethereum/assets/0xA89FD5459C67AfC8727C07333ED830643Cf898B6/logo.png new file mode 100644 index 00000000..a9ec6e85 Binary files /dev/null and b/blockchains/ethereum/assets/0xA89FD5459C67AfC8727C07333ED830643Cf898B6/logo.png differ diff --git a/blockchains/ethereum/assets/0xA89ac6e529aCf391CfbBD377F3aC9D93eae9664e/info.json b/blockchains/ethereum/assets/0xA89ac6e529aCf391CfbBD377F3aC9D93eae9664e/info.json new file mode 100644 index 00000000..afb2d0ca --- /dev/null +++ b/blockchains/ethereum/assets/0xA89ac6e529aCf391CfbBD377F3aC9D93eae9664e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Keep4r", + "website": "https://kp4r.network", + "description": "Keep4r Network is an improved fork of the keep3r network!", + "explorer": "https://etherscan.io/token/0xa89ac6e529acf391cfbbd377f3ac9d93eae9664e", + "type": "ERC20", + "symbol": "KP4R", + "decimals": 18, + "status": "active", + "id": "0xA89ac6e529aCf391CfbBD377F3aC9D93eae9664e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA89ac6e529aCf391CfbBD377F3aC9D93eae9664e/logo.png b/blockchains/ethereum/assets/0xA89ac6e529aCf391CfbBD377F3aC9D93eae9664e/logo.png new file mode 100644 index 00000000..05c5faa8 Binary files /dev/null and b/blockchains/ethereum/assets/0xA89ac6e529aCf391CfbBD377F3aC9D93eae9664e/logo.png differ diff --git a/blockchains/ethereum/assets/0xA8DaA52DEd91F7C82b4BB02B4b87c6a841Db1fD5/info.json b/blockchains/ethereum/assets/0xA8DaA52DEd91F7C82b4BB02B4b87c6a841Db1fD5/info.json new file mode 100644 index 00000000..f15a9819 --- /dev/null +++ b/blockchains/ethereum/assets/0xA8DaA52DEd91F7C82b4BB02B4b87c6a841Db1fD5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Biograffi", + "symbol": "BGF", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA8DaA52DEd91F7C82b4BB02B4b87c6a841Db1fD5", + "status": "abandoned", + "id": "0xA8DaA52DEd91F7C82b4BB02B4b87c6a841Db1fD5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA8DaA52DEd91F7C82b4BB02B4b87c6a841Db1fD5/logo.png b/blockchains/ethereum/assets/0xA8DaA52DEd91F7C82b4BB02B4b87c6a841Db1fD5/logo.png new file mode 100644 index 00000000..e770f6c7 Binary files /dev/null and b/blockchains/ethereum/assets/0xA8DaA52DEd91F7C82b4BB02B4b87c6a841Db1fD5/logo.png differ diff --git a/blockchains/ethereum/assets/0xA8b65249DE7f85494BC1fe75F525f568aa7dfa39/info.json b/blockchains/ethereum/assets/0xA8b65249DE7f85494BC1fe75F525f568aa7dfa39/info.json new file mode 100644 index 00000000..7b1a0d69 --- /dev/null +++ b/blockchains/ethereum/assets/0xA8b65249DE7f85494BC1fe75F525f568aa7dfa39/info.json @@ -0,0 +1,11 @@ +{ + "name": "bZx BAT iToken", + "symbol": "iBAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA8b65249DE7f85494BC1fe75F525f568aa7dfa39", + "status": "abandoned", + "id": "0xA8b65249DE7f85494BC1fe75F525f568aa7dfa39" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA8b65249DE7f85494BC1fe75F525f568aa7dfa39/logo.png b/blockchains/ethereum/assets/0xA8b65249DE7f85494BC1fe75F525f568aa7dfa39/logo.png new file mode 100644 index 00000000..08a62832 Binary files /dev/null and b/blockchains/ethereum/assets/0xA8b65249DE7f85494BC1fe75F525f568aa7dfa39/logo.png differ diff --git a/blockchains/ethereum/assets/0xA8b919680258d369114910511cc87595aec0be6D/info.json b/blockchains/ethereum/assets/0xA8b919680258d369114910511cc87595aec0be6D/info.json new file mode 100644 index 00000000..b38d3f93 --- /dev/null +++ b/blockchains/ethereum/assets/0xA8b919680258d369114910511cc87595aec0be6D/info.json @@ -0,0 +1,25 @@ +{ + "name": "LUKSO", + "website": "https://lukso.network", + "description": "LUKSO is the Blockchain for the new digital lifestyle.", + "explorer": "https://etherscan.io/token/0xA8b919680258d369114910511cc87595aec0be6D", + "type": "ERC20", + "symbol": "LYXe", + "decimals": 18, + "status": "active", + "id": "0xA8b919680258d369114910511cc87595aec0be6D", + "links": [ + { + "name": "x", + "url": "https://x.com/lukso_io" + }, + { + "name": "telegram", + "url": "https://t.me/LUKSO" + }, + { + "name": "medium", + "url": "https://medium.com/lukso" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA8b919680258d369114910511cc87595aec0be6D/logo.png b/blockchains/ethereum/assets/0xA8b919680258d369114910511cc87595aec0be6D/logo.png new file mode 100644 index 00000000..211f0cca Binary files /dev/null and b/blockchains/ethereum/assets/0xA8b919680258d369114910511cc87595aec0be6D/logo.png differ diff --git a/blockchains/ethereum/assets/0xA8eBb13B9895E52Ab7d815CE7F63591402581624/info.json b/blockchains/ethereum/assets/0xA8eBb13B9895E52Ab7d815CE7F63591402581624/info.json new file mode 100644 index 00000000..a534f86f --- /dev/null +++ b/blockchains/ethereum/assets/0xA8eBb13B9895E52Ab7d815CE7F63591402581624/info.json @@ -0,0 +1,11 @@ +{ + "name": "ESCX Token", + "symbol": "ESCX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://token.escx.co.id", + "explorer": "https://etherscan.io/token/0xA8eBb13B9895E52Ab7d815CE7F63591402581624", + "status": "abandoned", + "id": "0xA8eBb13B9895E52Ab7d815CE7F63591402581624" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA8eBb13B9895E52Ab7d815CE7F63591402581624/logo.png b/blockchains/ethereum/assets/0xA8eBb13B9895E52Ab7d815CE7F63591402581624/logo.png new file mode 100644 index 00000000..458f4c22 Binary files /dev/null and b/blockchains/ethereum/assets/0xA8eBb13B9895E52Ab7d815CE7F63591402581624/logo.png differ diff --git a/blockchains/ethereum/assets/0xA8eC2B2F021B55d7d594c8d12Bbd6d23C05245D7/info.json b/blockchains/ethereum/assets/0xA8eC2B2F021B55d7d594c8d12Bbd6d23C05245D7/info.json new file mode 100644 index 00000000..569fd14c --- /dev/null +++ b/blockchains/ethereum/assets/0xA8eC2B2F021B55d7d594c8d12Bbd6d23C05245D7/info.json @@ -0,0 +1,11 @@ +{ + "name": "CASHBACK Token", + "website": "https://cashback.so", + "description": "Cashback E-commerce Exchange was born from new ideas based on great start-up technologies and has had certain achievements in the market.", + "explorer": "https://etherscan.io/token/0xA8eC2B2F021B55d7d594c8d12Bbd6d23C05245D7", + "type": "ERC20", + "symbol": "CASHBACK", + "decimals": 18, + "status": "active", + "id": "0xA8eC2B2F021B55d7d594c8d12Bbd6d23C05245D7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA8eC2B2F021B55d7d594c8d12Bbd6d23C05245D7/logo.png b/blockchains/ethereum/assets/0xA8eC2B2F021B55d7d594c8d12Bbd6d23C05245D7/logo.png new file mode 100644 index 00000000..208877b0 Binary files /dev/null and b/blockchains/ethereum/assets/0xA8eC2B2F021B55d7d594c8d12Bbd6d23C05245D7/logo.png differ diff --git a/blockchains/ethereum/assets/0xA91ac63D040dEB1b7A5E4d4134aD23eb0ba07e14/info.json b/blockchains/ethereum/assets/0xA91ac63D040dEB1b7A5E4d4134aD23eb0ba07e14/info.json new file mode 100644 index 00000000..e076d708 --- /dev/null +++ b/blockchains/ethereum/assets/0xA91ac63D040dEB1b7A5E4d4134aD23eb0ba07e14/info.json @@ -0,0 +1,12 @@ +{ + "name": "Bella Protocol", + "website": "https://bella.fi", + "description": "Bella Protocol is described to be a set of DeFi products for one-click crypto banking.", + "explorer": "https://etherscan.io/token/0xA91ac63D040dEB1b7A5E4d4134aD23eb0ba07e14", + "research": "https://research.binance.com/en/projects/bella", + "type": "ERC20", + "symbol": "BEL", + "decimals": 18, + "status": "active", + "id": "0xA91ac63D040dEB1b7A5E4d4134aD23eb0ba07e14" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA91ac63D040dEB1b7A5E4d4134aD23eb0ba07e14/logo.png b/blockchains/ethereum/assets/0xA91ac63D040dEB1b7A5E4d4134aD23eb0ba07e14/logo.png new file mode 100644 index 00000000..e60767da Binary files /dev/null and b/blockchains/ethereum/assets/0xA91ac63D040dEB1b7A5E4d4134aD23eb0ba07e14/logo.png differ diff --git a/blockchains/ethereum/assets/0xA9431d354cFAD3c6B76E50f0e73b43D48Be80CD0/info.json b/blockchains/ethereum/assets/0xA9431d354cFAD3c6B76E50f0e73b43D48Be80CD0/info.json new file mode 100644 index 00000000..fcb2fdf5 --- /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 00000000..dc50857f 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 new file mode 100644 index 00000000..a25a5a07 --- /dev/null +++ b/blockchains/ethereum/assets/0xA974c709cFb4566686553a20790685A47acEAA33/info.json @@ -0,0 +1,36 @@ +{ + "name": "Mixin", + "symbol": "XIN", + "type": "ERC20", + "decimals": 18, + "description": "Mixin Network is a privacy layer for other blockchains.", + "website": "https://mixin.one", + "explorer": "https://etherscan.io/token/0xA974c709cFb4566686553a20790685A47acEAA33", + "status": "active", + "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 new file mode 100644 index 00000000..89ef6d36 Binary files /dev/null and b/blockchains/ethereum/assets/0xA974c709cFb4566686553a20790685A47acEAA33/logo.png differ diff --git a/blockchains/ethereum/assets/0xA97ab0dd4542E4D5a4c92a39a63c7ec474043d1D/info.json b/blockchains/ethereum/assets/0xA97ab0dd4542E4D5a4c92a39a63c7ec474043d1D/info.json new file mode 100644 index 00000000..56fadf46 --- /dev/null +++ b/blockchains/ethereum/assets/0xA97ab0dd4542E4D5a4c92a39a63c7ec474043d1D/info.json @@ -0,0 +1,11 @@ +{ + "name": "boletoken", + "symbol": "BLC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA97ab0dd4542E4D5a4c92a39a63c7ec474043d1D", + "status": "abandoned", + "id": "0xA97ab0dd4542E4D5a4c92a39a63c7ec474043d1D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA97ab0dd4542E4D5a4c92a39a63c7ec474043d1D/logo.png b/blockchains/ethereum/assets/0xA97ab0dd4542E4D5a4c92a39a63c7ec474043d1D/logo.png new file mode 100644 index 00000000..aed0ed7e Binary files /dev/null and b/blockchains/ethereum/assets/0xA97ab0dd4542E4D5a4c92a39a63c7ec474043d1D/logo.png differ diff --git a/blockchains/ethereum/assets/0xA984A92731C088F1eA4D53b71A2565a399F7D8D5/info.json b/blockchains/ethereum/assets/0xA984A92731C088F1eA4D53b71A2565a399F7D8D5/info.json new file mode 100644 index 00000000..014dab7e --- /dev/null +++ b/blockchains/ethereum/assets/0xA984A92731C088F1eA4D53b71A2565a399F7D8D5/info.json @@ -0,0 +1,11 @@ +{ + "name": "INCX Coin", + "symbol": "INCX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://internationalcryptox.io/", + "explorer": "https://etherscan.io/token/0xA984A92731C088F1eA4D53b71A2565a399F7D8D5", + "status": "abandoned", + "id": "0xA984A92731C088F1eA4D53b71A2565a399F7D8D5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA984A92731C088F1eA4D53b71A2565a399F7D8D5/logo.png b/blockchains/ethereum/assets/0xA984A92731C088F1eA4D53b71A2565a399F7D8D5/logo.png new file mode 100644 index 00000000..923332b1 Binary files /dev/null and b/blockchains/ethereum/assets/0xA984A92731C088F1eA4D53b71A2565a399F7D8D5/logo.png differ diff --git a/blockchains/ethereum/assets/0xA9877b1e05D035899131DBd1e403825166D09f92/info.json b/blockchains/ethereum/assets/0xA9877b1e05D035899131DBd1e403825166D09f92/info.json new file mode 100644 index 00000000..679ac793 --- /dev/null +++ b/blockchains/ethereum/assets/0xA9877b1e05D035899131DBd1e403825166D09f92/info.json @@ -0,0 +1,11 @@ +{ + "name": "Media Network Token", + "symbol": "MNT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA9877b1e05D035899131DBd1e403825166D09f92", + "status": "abandoned", + "id": "0xA9877b1e05D035899131DBd1e403825166D09f92" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA9877b1e05D035899131DBd1e403825166D09f92/logo.png b/blockchains/ethereum/assets/0xA9877b1e05D035899131DBd1e403825166D09f92/logo.png new file mode 100644 index 00000000..37f24749 Binary files /dev/null and b/blockchains/ethereum/assets/0xA9877b1e05D035899131DBd1e403825166D09f92/logo.png differ diff --git a/blockchains/ethereum/assets/0xA9Aad2dC3a8315caeee5F458B1d8EDc31D8467BD/info.json b/blockchains/ethereum/assets/0xA9Aad2dC3a8315caeee5F458B1d8EDc31D8467BD/info.json new file mode 100644 index 00000000..c74f8631 --- /dev/null +++ b/blockchains/ethereum/assets/0xA9Aad2dC3a8315caeee5F458B1d8EDc31D8467BD/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTCMoon", + "symbol": "BTCM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://btcmoon.info/", + "explorer": "https://etherscan.io/token/0xA9Aad2dC3a8315caeee5F458B1d8EDc31D8467BD", + "status": "abandoned", + "id": "0xA9Aad2dC3a8315caeee5F458B1d8EDc31D8467BD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA9Aad2dC3a8315caeee5F458B1d8EDc31D8467BD/logo.png b/blockchains/ethereum/assets/0xA9Aad2dC3a8315caeee5F458B1d8EDc31D8467BD/logo.png new file mode 100644 index 00000000..dc1d5392 Binary files /dev/null and b/blockchains/ethereum/assets/0xA9Aad2dC3a8315caeee5F458B1d8EDc31D8467BD/logo.png differ diff --git a/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json new file mode 100644 index 00000000..8fa8f8c4 --- /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 00000000..c05d45d4 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 00000000..8bd2766a --- /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 00000000..61184c3a Binary files /dev/null and b/blockchains/ethereum/assets/0xA9E8aCf069C58aEc8825542845Fd754e41a9489A/logo.png differ diff --git a/blockchains/ethereum/assets/0xA9d2927d3a04309E008B6af6E2e282AE2952e7fD/info.json b/blockchains/ethereum/assets/0xA9d2927d3a04309E008B6af6E2e282AE2952e7fD/info.json new file mode 100644 index 00000000..c42473a6 --- /dev/null +++ b/blockchains/ethereum/assets/0xA9d2927d3a04309E008B6af6E2e282AE2952e7fD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zipper", + "symbol": "ZIP", + "type": "ERC20", + "decimals": 18, + "description": "Zipper is a decentralized value transfer network that enables point to point Message communication, Transaction Transfer and Transaction Settlement across multiple blockchain networks among different financial institutions. Zipper enables and empowers rich and comprehensive blockchain-based services for global financial institutions.", + "website": "http://zipper.io/", + "explorer": "https://etherscan.io/token/0xA9d2927d3a04309E008B6af6E2e282AE2952e7fD", + "status": "active", + "id": "0xA9d2927d3a04309E008B6af6E2e282AE2952e7fD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA9d2927d3a04309E008B6af6E2e282AE2952e7fD/logo.png b/blockchains/ethereum/assets/0xA9d2927d3a04309E008B6af6E2e282AE2952e7fD/logo.png new file mode 100755 index 00000000..1b66d93a Binary files /dev/null and b/blockchains/ethereum/assets/0xA9d2927d3a04309E008B6af6E2e282AE2952e7fD/logo.png differ diff --git a/blockchains/ethereum/assets/0xA9f80A3C8258c42964Fac6263B8BAA648156b85D/info.json b/blockchains/ethereum/assets/0xA9f80A3C8258c42964Fac6263B8BAA648156b85D/info.json new file mode 100644 index 00000000..11a66e2a --- /dev/null +++ b/blockchains/ethereum/assets/0xA9f80A3C8258c42964Fac6263B8BAA648156b85D/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R807401", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xA9f80A3C8258c42964Fac6263B8BAA648156b85D", + "status": "abandoned", + "id": "0xA9f80A3C8258c42964Fac6263B8BAA648156b85D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA9f80A3C8258c42964Fac6263B8BAA648156b85D/logo.png b/blockchains/ethereum/assets/0xA9f80A3C8258c42964Fac6263B8BAA648156b85D/logo.png new file mode 100644 index 00000000..b506a087 Binary files /dev/null and b/blockchains/ethereum/assets/0xA9f80A3C8258c42964Fac6263B8BAA648156b85D/logo.png differ diff --git a/blockchains/ethereum/assets/0xAA19961b6B858D9F18a115f25aa1D98ABc1fdBA8/info.json b/blockchains/ethereum/assets/0xAA19961b6B858D9F18a115f25aa1D98ABc1fdBA8/info.json new file mode 100644 index 00000000..05a6c566 --- /dev/null +++ b/blockchains/ethereum/assets/0xAA19961b6B858D9F18a115f25aa1D98ABc1fdBA8/info.json @@ -0,0 +1,11 @@ +{ + "name": "LocalCoinSwap (LCS)", + "website": "https://localcoinswap.com", + "description": "LocalCoinSwap (LCS) is the underlying token of the LocalCoinSwap P2P trading platform. This token is regularly repurchased and burned using revenue from the exchange, and allows holders to participate in governance.", + "explorer": "https://etherscan.io/token/0xAA19961b6B858D9F18a115f25aa1D98ABc1fdBA8", + "type": "ERC20", + "symbol": "LCS", + "decimals": 18, + "status": "active", + "id": "0xAA19961b6B858D9F18a115f25aa1D98ABc1fdBA8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAA19961b6B858D9F18a115f25aa1D98ABc1fdBA8/logo.png b/blockchains/ethereum/assets/0xAA19961b6B858D9F18a115f25aa1D98ABc1fdBA8/logo.png new file mode 100644 index 00000000..79e6b098 Binary files /dev/null and b/blockchains/ethereum/assets/0xAA19961b6B858D9F18a115f25aa1D98ABc1fdBA8/logo.png differ diff --git a/blockchains/ethereum/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/info.json b/blockchains/ethereum/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/info.json new file mode 100644 index 00000000..31063de5 --- /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 00000000..d5c48229 Binary files /dev/null and b/blockchains/ethereum/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/logo.png differ diff --git a/blockchains/ethereum/assets/0xAA34bF1fD22a8537eCF3dec57C8a63B1E7385e82/info.json b/blockchains/ethereum/assets/0xAA34bF1fD22a8537eCF3dec57C8a63B1E7385e82/info.json new file mode 100644 index 00000000..6b3f62fd --- /dev/null +++ b/blockchains/ethereum/assets/0xAA34bF1fD22a8537eCF3dec57C8a63B1E7385e82/info.json @@ -0,0 +1,11 @@ +{ + "name": "Roganzola", + "symbol": "ROGUE", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAA34bF1fD22a8537eCF3dec57C8a63B1E7385e82", + "status": "abandoned", + "id": "0xAA34bF1fD22a8537eCF3dec57C8a63B1E7385e82" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAA34bF1fD22a8537eCF3dec57C8a63B1E7385e82/logo.png b/blockchains/ethereum/assets/0xAA34bF1fD22a8537eCF3dec57C8a63B1E7385e82/logo.png new file mode 100644 index 00000000..d384b3f7 Binary files /dev/null and b/blockchains/ethereum/assets/0xAA34bF1fD22a8537eCF3dec57C8a63B1E7385e82/logo.png differ diff --git a/blockchains/ethereum/assets/0xAA3F8E382cB01cae98A7f37A170F3D218c38E3EC/info.json b/blockchains/ethereum/assets/0xAA3F8E382cB01cae98A7f37A170F3D218c38E3EC/info.json new file mode 100644 index 00000000..96b363fd --- /dev/null +++ b/blockchains/ethereum/assets/0xAA3F8E382cB01cae98A7f37A170F3D218c38E3EC/info.json @@ -0,0 +1,11 @@ +{ + "name": "FENNIECOIN", + "symbol": "FIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAA3F8E382cB01cae98A7f37A170F3D218c38E3EC", + "status": "abandoned", + "id": "0xAA3F8E382cB01cae98A7f37A170F3D218c38E3EC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAA3F8E382cB01cae98A7f37A170F3D218c38E3EC/logo.png b/blockchains/ethereum/assets/0xAA3F8E382cB01cae98A7f37A170F3D218c38E3EC/logo.png new file mode 100644 index 00000000..b17828af Binary files /dev/null and b/blockchains/ethereum/assets/0xAA3F8E382cB01cae98A7f37A170F3D218c38E3EC/logo.png differ diff --git a/blockchains/ethereum/assets/0xAA46973900eB6B99Ce0bd6e5f804217dBD192Dfb/info.json b/blockchains/ethereum/assets/0xAA46973900eB6B99Ce0bd6e5f804217dBD192Dfb/info.json new file mode 100644 index 00000000..9ec4a5c0 --- /dev/null +++ b/blockchains/ethereum/assets/0xAA46973900eB6B99Ce0bd6e5f804217dBD192Dfb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short KNC-DAI 4x v2", + "symbol": "dsKNC4x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAA46973900eB6B99Ce0bd6e5f804217dBD192Dfb", + "status": "abandoned", + "id": "0xAA46973900eB6B99Ce0bd6e5f804217dBD192Dfb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAA46973900eB6B99Ce0bd6e5f804217dBD192Dfb/logo.png b/blockchains/ethereum/assets/0xAA46973900eB6B99Ce0bd6e5f804217dBD192Dfb/logo.png new file mode 100644 index 00000000..2943b1c2 Binary files /dev/null and b/blockchains/ethereum/assets/0xAA46973900eB6B99Ce0bd6e5f804217dBD192Dfb/logo.png differ diff --git a/blockchains/ethereum/assets/0xAA855D6ECf41dd5cF29DAd369fB9400231979Af8/info.json b/blockchains/ethereum/assets/0xAA855D6ECf41dd5cF29DAd369fB9400231979Af8/info.json new file mode 100644 index 00000000..d74a0538 --- /dev/null +++ b/blockchains/ethereum/assets/0xAA855D6ECf41dd5cF29DAd369fB9400231979Af8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sakuya Coin", + "symbol": "SC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAA855D6ECf41dd5cF29DAd369fB9400231979Af8", + "status": "abandoned", + "id": "0xAA855D6ECf41dd5cF29DAd369fB9400231979Af8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAA855D6ECf41dd5cF29DAd369fB9400231979Af8/logo.png b/blockchains/ethereum/assets/0xAA855D6ECf41dd5cF29DAd369fB9400231979Af8/logo.png new file mode 100644 index 00000000..95566c31 Binary files /dev/null and b/blockchains/ethereum/assets/0xAA855D6ECf41dd5cF29DAd369fB9400231979Af8/logo.png differ diff --git a/blockchains/ethereum/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json b/blockchains/ethereum/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json new file mode 100644 index 00000000..eba26ec2 --- /dev/null +++ b/blockchains/ethereum/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json @@ -0,0 +1,57 @@ +{ + "name": "QANX Token", + "website": "https://qanplatform.com", + "description": "QANX is the utility token of QAN Platform.", + "explorer": "https://etherscan.io/token/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa", + "type": "ERC20", + "symbol": "QANX", + "decimals": 18, + "status": "abandoned", + "id": "0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa", + "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/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json b/blockchains/ethereum/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json new file mode 100644 index 00000000..60c3bdb2 --- /dev/null +++ b/blockchains/ethereum/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json @@ -0,0 +1,57 @@ +{ + "name": "QANX Token", + "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/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png b/blockchains/ethereum/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png new file mode 100644 index 00000000..7f5462e0 Binary files /dev/null and b/blockchains/ethereum/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png differ diff --git a/blockchains/ethereum/assets/0xAAAaaaaBA2ea3daAB0A6c05F1b962c78c9836d99/info.json b/blockchains/ethereum/assets/0xAAAaaaaBA2ea3daAB0A6c05F1b962c78c9836d99/info.json new file mode 100644 index 00000000..2346ae8a --- /dev/null +++ b/blockchains/ethereum/assets/0xAAAaaaaBA2ea3daAB0A6c05F1b962c78c9836d99/info.json @@ -0,0 +1,11 @@ +{ + "name": "Azbit", + "symbol": "AZ", + "type": "ERC20", + "decimals": 18, + "description": "Azbit Global Ltd Is a blockchain-based banking platform for crypto traders and crypto investors. Building a bridge between the world of traditional finance and cryptocurrencies.", + "website": "https://azbit.com", + "explorer": "https://etherscan.io/token/0xAAAaaaaBA2ea3daAB0A6c05F1b962c78c9836d99", + "status": "active", + "id": "0xAAAaaaaBA2ea3daAB0A6c05F1b962c78c9836d99" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAAAaaaaBA2ea3daAB0A6c05F1b962c78c9836d99/logo.png b/blockchains/ethereum/assets/0xAAAaaaaBA2ea3daAB0A6c05F1b962c78c9836d99/logo.png new file mode 100644 index 00000000..4dbda251 Binary files /dev/null and b/blockchains/ethereum/assets/0xAAAaaaaBA2ea3daAB0A6c05F1b962c78c9836d99/logo.png differ diff --git a/blockchains/ethereum/assets/0xAAB29eCC3783aCB436A6679919F22D30932E93F2/info.json b/blockchains/ethereum/assets/0xAAB29eCC3783aCB436A6679919F22D30932E93F2/info.json new file mode 100644 index 00000000..d80b6f40 --- /dev/null +++ b/blockchains/ethereum/assets/0xAAB29eCC3783aCB436A6679919F22D30932E93F2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Internet FinTech Coin", + "symbol": "IFTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAAB29eCC3783aCB436A6679919F22D30932E93F2", + "status": "abandoned", + "id": "0xAAB29eCC3783aCB436A6679919F22D30932E93F2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAAB29eCC3783aCB436A6679919F22D30932E93F2/logo.png b/blockchains/ethereum/assets/0xAAB29eCC3783aCB436A6679919F22D30932E93F2/logo.png new file mode 100755 index 00000000..47a4bb37 Binary files /dev/null and b/blockchains/ethereum/assets/0xAAB29eCC3783aCB436A6679919F22D30932E93F2/logo.png differ diff --git a/blockchains/ethereum/assets/0xAACa86B876ca011844b5798ECA7a67591A9743C8/info.json b/blockchains/ethereum/assets/0xAACa86B876ca011844b5798ECA7a67591A9743C8/info.json new file mode 100644 index 00000000..ffd8c008 --- /dev/null +++ b/blockchains/ethereum/assets/0xAACa86B876ca011844b5798ECA7a67591A9743C8/info.json @@ -0,0 +1,11 @@ +{ + "name": "BIOS", + "type": "ERC20", + "symbol": "BIOS", + "decimals": 18, + "website": "https://www.0xnodes.io", + "description": "The utility token in the 0x_nodes ecosystem.", + "explorer": "https://etherscan.io/token/0xAACa86B876ca011844b5798ECA7a67591A9743C8", + "status": "active", + "id": "0xAACa86B876ca011844b5798ECA7a67591A9743C8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAACa86B876ca011844b5798ECA7a67591A9743C8/logo.png b/blockchains/ethereum/assets/0xAACa86B876ca011844b5798ECA7a67591A9743C8/logo.png new file mode 100644 index 00000000..9fa46a14 Binary files /dev/null and b/blockchains/ethereum/assets/0xAACa86B876ca011844b5798ECA7a67591A9743C8/logo.png differ diff --git a/blockchains/ethereum/assets/0xAAD54C9f27B876D2538455DdA69207279fF673a5/info.json b/blockchains/ethereum/assets/0xAAD54C9f27B876D2538455DdA69207279fF673a5/info.json new file mode 100644 index 00000000..94b760da --- /dev/null +++ b/blockchains/ethereum/assets/0xAAD54C9f27B876D2538455DdA69207279fF673a5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Davinci coin", + "symbol": "DAC", + "type": "ERC20", + "decimals": 18, + "description": "Davinci Coin (DAC) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.davinci.vision", + "explorer": "https://etherscan.io/token/0xAAD54C9f27B876D2538455DdA69207279fF673a5", + "status": "active", + "id": "0xAAD54C9f27B876D2538455DdA69207279fF673a5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAAD54C9f27B876D2538455DdA69207279fF673a5/logo.png b/blockchains/ethereum/assets/0xAAD54C9f27B876D2538455DdA69207279fF673a5/logo.png new file mode 100644 index 00000000..8ec716ad Binary files /dev/null and b/blockchains/ethereum/assets/0xAAD54C9f27B876D2538455DdA69207279fF673a5/logo.png differ diff --git a/blockchains/ethereum/assets/0xAAE81c0194D6459F320b70CA0CEdf88e11a242CE/info.json b/blockchains/ethereum/assets/0xAAE81c0194D6459F320b70CA0CEdf88e11a242CE/info.json new file mode 100644 index 00000000..dc6c74f3 --- /dev/null +++ b/blockchains/ethereum/assets/0xAAE81c0194D6459F320b70CA0CEdf88e11a242CE/info.json @@ -0,0 +1,11 @@ +{ + "name": "WeToken", + "symbol": "WT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAAE81c0194D6459F320b70CA0CEdf88e11a242CE", + "status": "abandoned", + "id": "0xAAE81c0194D6459F320b70CA0CEdf88e11a242CE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAAE81c0194D6459F320b70CA0CEdf88e11a242CE/logo.png b/blockchains/ethereum/assets/0xAAE81c0194D6459F320b70CA0CEdf88e11a242CE/logo.png new file mode 100644 index 00000000..ccaac81d Binary files /dev/null and b/blockchains/ethereum/assets/0xAAE81c0194D6459F320b70CA0CEdf88e11a242CE/logo.png differ diff --git a/blockchains/ethereum/assets/0xAAf37055188Feee4869dE63464937e683d61b2a1/info.json b/blockchains/ethereum/assets/0xAAf37055188Feee4869dE63464937e683d61b2a1/info.json new file mode 100644 index 00000000..97b703bb --- /dev/null +++ b/blockchains/ethereum/assets/0xAAf37055188Feee4869dE63464937e683d61b2a1/info.json @@ -0,0 +1,11 @@ +{ + "name": "UChain Token", + "symbol": "UCN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://uchain.world/", + "explorer": "https://etherscan.io/token/0xAAf37055188Feee4869dE63464937e683d61b2a1", + "status": "abandoned", + "id": "0xAAf37055188Feee4869dE63464937e683d61b2a1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAAf37055188Feee4869dE63464937e683d61b2a1/logo.png b/blockchains/ethereum/assets/0xAAf37055188Feee4869dE63464937e683d61b2a1/logo.png new file mode 100644 index 00000000..06368528 Binary files /dev/null and b/blockchains/ethereum/assets/0xAAf37055188Feee4869dE63464937e683d61b2a1/logo.png differ diff --git a/blockchains/ethereum/assets/0xAB6CF87a50F17d7F5E1FEaf81B6fE9FfBe8EBF84/info.json b/blockchains/ethereum/assets/0xAB6CF87a50F17d7F5E1FEaf81B6fE9FfBe8EBF84/info.json new file mode 100644 index 00000000..2d87b795 --- /dev/null +++ b/blockchains/ethereum/assets/0xAB6CF87a50F17d7F5E1FEaf81B6fE9FfBe8EBF84/info.json @@ -0,0 +1,11 @@ +{ + "name": "Macroverse Token", + "symbol": "MRV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAB6CF87a50F17d7F5E1FEaf81B6fE9FfBe8EBF84", + "status": "abandoned", + "id": "0xAB6CF87a50F17d7F5E1FEaf81B6fE9FfBe8EBF84" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAB6CF87a50F17d7F5E1FEaf81B6fE9FfBe8EBF84/logo.png b/blockchains/ethereum/assets/0xAB6CF87a50F17d7F5E1FEaf81B6fE9FfBe8EBF84/logo.png new file mode 100644 index 00000000..689a847c Binary files /dev/null and b/blockchains/ethereum/assets/0xAB6CF87a50F17d7F5E1FEaf81B6fE9FfBe8EBF84/logo.png differ diff --git a/blockchains/ethereum/assets/0xAB7aaf9e485a3bc885985184ABE9FC6Aba727bD6/info.json b/blockchains/ethereum/assets/0xAB7aaf9e485a3bc885985184ABE9FC6Aba727bD6/info.json new file mode 100644 index 00000000..17402511 --- /dev/null +++ b/blockchains/ethereum/assets/0xAB7aaf9e485a3bc885985184ABE9FC6Aba727bD6/info.json @@ -0,0 +1,17 @@ +{ + "name": "MANY", + "website": "https://many.global", + "description": "MANY is a community born and operated project combining YF and NFT.", + "explorer": "https://etherscan.io/token/0xAB7aaf9e485a3bc885985184ABE9FC6Aba727bD6", + "type": "ERC20", + "symbol": "MANY", + "decimals": 18, + "status": "active", + "id": "0xAB7aaf9e485a3bc885985184ABE9FC6Aba727bD6", + "links": [ + { + "name": "github", + "url": "https://github.com/MANYToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAB7aaf9e485a3bc885985184ABE9FC6Aba727bD6/logo.png b/blockchains/ethereum/assets/0xAB7aaf9e485a3bc885985184ABE9FC6Aba727bD6/logo.png new file mode 100644 index 00000000..cad33deb Binary files /dev/null and b/blockchains/ethereum/assets/0xAB7aaf9e485a3bc885985184ABE9FC6Aba727bD6/logo.png differ diff --git a/blockchains/ethereum/assets/0xABD4C63d2616A5201454168269031355f4764337/info.json b/blockchains/ethereum/assets/0xABD4C63d2616A5201454168269031355f4764337/info.json new file mode 100644 index 00000000..3833cbd8 --- /dev/null +++ b/blockchains/ethereum/assets/0xABD4C63d2616A5201454168269031355f4764337/info.json @@ -0,0 +1,14 @@ +{ + "name": "Orderly Network (ORDER)", + "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 00000000..0c4b0695 Binary files /dev/null and b/blockchains/ethereum/assets/0xABD4C63d2616A5201454168269031355f4764337/logo.png differ diff --git a/blockchains/ethereum/assets/0xABcB2372370Fa1591Ce104a03351B5B628443C2B/info.json b/blockchains/ethereum/assets/0xABcB2372370Fa1591Ce104a03351B5B628443C2B/info.json new file mode 100644 index 00000000..b88531ba --- /dev/null +++ b/blockchains/ethereum/assets/0xABcB2372370Fa1591Ce104a03351B5B628443C2B/info.json @@ -0,0 +1,11 @@ +{ + "name": "InveCoin", + "symbol": "INVE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xABcB2372370Fa1591Ce104a03351B5B628443C2B", + "status": "abandoned", + "id": "0xABcB2372370Fa1591Ce104a03351B5B628443C2B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xABcB2372370Fa1591Ce104a03351B5B628443C2B/logo.png b/blockchains/ethereum/assets/0xABcB2372370Fa1591Ce104a03351B5B628443C2B/logo.png new file mode 100755 index 00000000..94341222 Binary files /dev/null and b/blockchains/ethereum/assets/0xABcB2372370Fa1591Ce104a03351B5B628443C2B/logo.png differ diff --git a/blockchains/ethereum/assets/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be/info.json b/blockchains/ethereum/assets/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be/info.json new file mode 100644 index 00000000..769fdce3 --- /dev/null +++ b/blockchains/ethereum/assets/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be/info.json @@ -0,0 +1,11 @@ +{ + "name": "Offshift", + "symbol": "XFT", + "type": "ERC20", + "decimals": 18, + "description": "Offshift is a cryptographically private offshore storage & DeFi protocol on Ethereum.", + "website": "https://offshift.io", + "explorer": "https://etherscan.io/token/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be", + "status": "abandoned", + "id": "0xABe580E7ee158dA464b51ee1a83Ac0289622e6be" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAC4088748E1f737C82980A7f78669bE35FecD686/info.json b/blockchains/ethereum/assets/0xAC4088748E1f737C82980A7f78669bE35FecD686/info.json new file mode 100644 index 00000000..06a94c69 --- /dev/null +++ b/blockchains/ethereum/assets/0xAC4088748E1f737C82980A7f78669bE35FecD686/info.json @@ -0,0 +1,11 @@ +{ + "name": "Basecoin", + "symbol": "BAB", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAC4088748E1f737C82980A7f78669bE35FecD686", + "status": "active", + "id": "0xAC4088748E1f737C82980A7f78669bE35FecD686" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAC4088748E1f737C82980A7f78669bE35FecD686/logo.png b/blockchains/ethereum/assets/0xAC4088748E1f737C82980A7f78669bE35FecD686/logo.png new file mode 100644 index 00000000..929a66ff Binary files /dev/null and b/blockchains/ethereum/assets/0xAC4088748E1f737C82980A7f78669bE35FecD686/logo.png differ diff --git a/blockchains/ethereum/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/info.json b/blockchains/ethereum/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/info.json new file mode 100644 index 00000000..c5e958bd --- /dev/null +++ b/blockchains/ethereum/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/info.json @@ -0,0 +1,33 @@ +{ + "name": "My Neighbor Alice", + "symbol": "ALICE", + "type": "ERC20", + "decimals": 6, + "description": "A social simulation Blockchain game owned by players.", + "website": "https://www.myneighboralice.com", + "explorer": "https://etherscan.io/token/0xac51066d7bec65dc4589368da368b212745d63e8", + "status": "active", + "id": "0xAC51066d7bEC65Dc4589368da368b212745d63E8", + "links": [ + { + "name": "telegram", + "url": "https://t.me/MyNeighborAlice" + }, + { + "name": "x", + "url": "https://x.com/MyNeighborAlice/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MyNeighborAlice/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/myneighboralice/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/my-neighbor-alice/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/logo.png b/blockchains/ethereum/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/logo.png new file mode 100644 index 00000000..7b7eaca5 Binary files /dev/null and b/blockchains/ethereum/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/logo.png differ diff --git a/blockchains/ethereum/assets/0xAC57De9C1A09FeC648E93EB98875B212DB0d460B/info.json b/blockchains/ethereum/assets/0xAC57De9C1A09FeC648E93EB98875B212DB0d460B/info.json new file mode 100644 index 00000000..db814d93 --- /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 00000000..138b6528 Binary files /dev/null and b/blockchains/ethereum/assets/0xAC57De9C1A09FeC648E93EB98875B212DB0d460B/logo.png differ diff --git a/blockchains/ethereum/assets/0xAC65dc06C8444C6545A94Ce961496258Aa860Cb9/info.json b/blockchains/ethereum/assets/0xAC65dc06C8444C6545A94Ce961496258Aa860Cb9/info.json new file mode 100644 index 00000000..8104973e --- /dev/null +++ b/blockchains/ethereum/assets/0xAC65dc06C8444C6545A94Ce961496258Aa860Cb9/info.json @@ -0,0 +1,11 @@ +{ + "name": "LHO Token", + "symbol": "LHO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAC65dc06C8444C6545A94Ce961496258Aa860Cb9", + "status": "spam", + "id": "0xAC65dc06C8444C6545A94Ce961496258Aa860Cb9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAC65dc06C8444C6545A94Ce961496258Aa860Cb9/logo.png b/blockchains/ethereum/assets/0xAC65dc06C8444C6545A94Ce961496258Aa860Cb9/logo.png new file mode 100644 index 00000000..cdf9da6d Binary files /dev/null and b/blockchains/ethereum/assets/0xAC65dc06C8444C6545A94Ce961496258Aa860Cb9/logo.png differ diff --git a/blockchains/ethereum/assets/0xAC8E13ecC30Da7Ff04b842f21A62a1fb0f10eBd5/info.json b/blockchains/ethereum/assets/0xAC8E13ecC30Da7Ff04b842f21A62a1fb0f10eBd5/info.json new file mode 100644 index 00000000..336b2c4d --- /dev/null +++ b/blockchains/ethereum/assets/0xAC8E13ecC30Da7Ff04b842f21A62a1fb0f10eBd5/info.json @@ -0,0 +1,45 @@ +{ + "name": "BabyDoge ETH", + "type": "ERC20", + "symbol": "BABYDOGE", + "decimals": 9, + "website": "https://babydogecoin.gg", + "description": "BabyDoge is fully decentralized and on a mission to bring popular cryptocurrency concepts to the mainstream in one, easy to understand project.", + "explorer": "https://etherscan.io/token/0xAC8E13ecC30Da7Ff04b842f21A62a1fb0f10eBd5", + "status": "active", + "id": "0xAC8E13ecC30Da7Ff04b842f21A62a1fb0f10eBd5", + "links": [ + { + "name": "x", + "url": "https://x.com/king_bdoge" + }, + { + "name": "github", + "url": "https://github.com/babydogecoingg" + }, + { + "name": "telegram", + "url": "https://t.me/babydogecoingg" + }, + { + "name": "whitepaper", + "url": "https://babydogecoin.gg/assets/BabyDoge_WhitePaper.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@babydogecoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/babydoge-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/babydoge-eth" + }, + { + "name": "source_code", + "url": "https://etherscan.io/address/0xac8e13ecc30da7ff04b842f21a62a1fb0f10ebd5#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAC8E13ecC30Da7Ff04b842f21A62a1fb0f10eBd5/logo.png b/blockchains/ethereum/assets/0xAC8E13ecC30Da7Ff04b842f21A62a1fb0f10eBd5/logo.png new file mode 100644 index 00000000..fd9c4b99 Binary files /dev/null and b/blockchains/ethereum/assets/0xAC8E13ecC30Da7Ff04b842f21A62a1fb0f10eBd5/logo.png differ diff --git a/blockchains/ethereum/assets/0xAC9ce326e95f51B5005e9fE1DD8085a01F18450c/info.json b/blockchains/ethereum/assets/0xAC9ce326e95f51B5005e9fE1DD8085a01F18450c/info.json new file mode 100644 index 00000000..a4d67113 --- /dev/null +++ b/blockchains/ethereum/assets/0xAC9ce326e95f51B5005e9fE1DD8085a01F18450c/info.json @@ -0,0 +1,11 @@ +{ + "name": "VeriSafe", + "symbol": "VSF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.verisafe.io/", + "explorer": "https://etherscan.io/token/0xAC9ce326e95f51B5005e9fE1DD8085a01F18450c", + "status": "abandoned", + "id": "0xAC9ce326e95f51B5005e9fE1DD8085a01F18450c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAC9ce326e95f51B5005e9fE1DD8085a01F18450c/logo.png b/blockchains/ethereum/assets/0xAC9ce326e95f51B5005e9fE1DD8085a01F18450c/logo.png new file mode 100644 index 00000000..44b9d418 Binary files /dev/null and b/blockchains/ethereum/assets/0xAC9ce326e95f51B5005e9fE1DD8085a01F18450c/logo.png differ diff --git a/blockchains/ethereum/assets/0xAD0A20715a7DF7aA0922B3791702F18254B660d9/info.json b/blockchains/ethereum/assets/0xAD0A20715a7DF7aA0922B3791702F18254B660d9/info.json new file mode 100644 index 00000000..92420d36 --- /dev/null +++ b/blockchains/ethereum/assets/0xAD0A20715a7DF7aA0922B3791702F18254B660d9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crypto Energy Token CRET", + "symbol": "CRET", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAD0A20715a7DF7aA0922B3791702F18254B660d9", + "status": "abandoned", + "id": "0xAD0A20715a7DF7aA0922B3791702F18254B660d9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAD0A20715a7DF7aA0922B3791702F18254B660d9/logo.png b/blockchains/ethereum/assets/0xAD0A20715a7DF7aA0922B3791702F18254B660d9/logo.png new file mode 100644 index 00000000..fdc29112 Binary files /dev/null and b/blockchains/ethereum/assets/0xAD0A20715a7DF7aA0922B3791702F18254B660d9/logo.png differ diff --git a/blockchains/ethereum/assets/0xAD3b5c8542367ca9650437f33950b4AED067289B/info.json b/blockchains/ethereum/assets/0xAD3b5c8542367ca9650437f33950b4AED067289B/info.json new file mode 100644 index 00000000..818fadc9 --- /dev/null +++ b/blockchains/ethereum/assets/0xAD3b5c8542367ca9650437f33950b4AED067289B/info.json @@ -0,0 +1,11 @@ +{ + "name": "BIDCOIN", + "symbol": "BID", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAD3b5c8542367ca9650437f33950b4AED067289B", + "status": "abandoned", + "id": "0xAD3b5c8542367ca9650437f33950b4AED067289B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAD3b5c8542367ca9650437f33950b4AED067289B/logo.png b/blockchains/ethereum/assets/0xAD3b5c8542367ca9650437f33950b4AED067289B/logo.png new file mode 100644 index 00000000..3dbad407 Binary files /dev/null and b/blockchains/ethereum/assets/0xAD3b5c8542367ca9650437f33950b4AED067289B/logo.png differ diff --git a/blockchains/ethereum/assets/0xAD640689e6950b7453729A4686edB3FdfD754616/info.json b/blockchains/ethereum/assets/0xAD640689e6950b7453729A4686edB3FdfD754616/info.json new file mode 100644 index 00000000..d3397cae --- /dev/null +++ b/blockchains/ethereum/assets/0xAD640689e6950b7453729A4686edB3FdfD754616/info.json @@ -0,0 +1,11 @@ +{ + "name": "CIChain", + "symbol": "CIC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAD640689e6950b7453729A4686edB3FdfD754616", + "status": "abandoned", + "id": "0xAD640689e6950b7453729A4686edB3FdfD754616" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAD640689e6950b7453729A4686edB3FdfD754616/logo.png b/blockchains/ethereum/assets/0xAD640689e6950b7453729A4686edB3FdfD754616/logo.png new file mode 100644 index 00000000..5598f53b Binary files /dev/null and b/blockchains/ethereum/assets/0xAD640689e6950b7453729A4686edB3FdfD754616/logo.png differ diff --git a/blockchains/ethereum/assets/0xAD8B556174bff978c6a6Ea022871C3E26eA9dDb2/info.json b/blockchains/ethereum/assets/0xAD8B556174bff978c6a6Ea022871C3E26eA9dDb2/info.json new file mode 100644 index 00000000..177b4778 --- /dev/null +++ b/blockchains/ethereum/assets/0xAD8B556174bff978c6a6Ea022871C3E26eA9dDb2/info.json @@ -0,0 +1,11 @@ +{ + "name": "DAATTY COIN", + "symbol": "DTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://daattycoin.com/", + "explorer": "https://etherscan.io/token/0xAD8B556174bff978c6a6Ea022871C3E26eA9dDb2", + "status": "abandoned", + "id": "0xAD8B556174bff978c6a6Ea022871C3E26eA9dDb2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAD8B556174bff978c6a6Ea022871C3E26eA9dDb2/logo.png b/blockchains/ethereum/assets/0xAD8B556174bff978c6a6Ea022871C3E26eA9dDb2/logo.png new file mode 100644 index 00000000..ee1283a5 Binary files /dev/null and b/blockchains/ethereum/assets/0xAD8B556174bff978c6a6Ea022871C3E26eA9dDb2/logo.png differ diff --git a/blockchains/ethereum/assets/0xADA86b1b313D1D5267E3FC0bB303f0A2b66D0Ea7/info.json b/blockchains/ethereum/assets/0xADA86b1b313D1D5267E3FC0bB303f0A2b66D0Ea7/info.json new file mode 100644 index 00000000..80fb171f --- /dev/null +++ b/blockchains/ethereum/assets/0xADA86b1b313D1D5267E3FC0bB303f0A2b66D0Ea7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Covesting Token", + "website": "https://covesting.io", + "description": "COV is a utility token designed to be used by members within the Covesting ecosystem.", + "explorer": "https://etherscan.io/token/0xADA86b1b313D1D5267E3FC0bB303f0A2b66D0Ea7", + "type": "ERC20", + "symbol": "COV", + "decimals": 18, + "status": "active", + "id": "0xADA86b1b313D1D5267E3FC0bB303f0A2b66D0Ea7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xADA86b1b313D1D5267E3FC0bB303f0A2b66D0Ea7/logo.png b/blockchains/ethereum/assets/0xADA86b1b313D1D5267E3FC0bB303f0A2b66D0Ea7/logo.png new file mode 100644 index 00000000..47a9aba4 Binary files /dev/null and b/blockchains/ethereum/assets/0xADA86b1b313D1D5267E3FC0bB303f0A2b66D0Ea7/logo.png differ diff --git a/blockchains/ethereum/assets/0xADD9c6c4375B5afa3c952ed517a0E532E6238815/info.json b/blockchains/ethereum/assets/0xADD9c6c4375B5afa3c952ed517a0E532E6238815/info.json new file mode 100644 index 00000000..cc56993c --- /dev/null +++ b/blockchains/ethereum/assets/0xADD9c6c4375B5afa3c952ed517a0E532E6238815/info.json @@ -0,0 +1,11 @@ +{ + "name": "HCTCoin", + "symbol": "HCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xADD9c6c4375B5afa3c952ed517a0E532E6238815", + "status": "abandoned", + "id": "0xADD9c6c4375B5afa3c952ed517a0E532E6238815" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xADD9c6c4375B5afa3c952ed517a0E532E6238815/logo.png b/blockchains/ethereum/assets/0xADD9c6c4375B5afa3c952ed517a0E532E6238815/logo.png new file mode 100644 index 00000000..53895d5f Binary files /dev/null and b/blockchains/ethereum/assets/0xADD9c6c4375B5afa3c952ed517a0E532E6238815/logo.png differ diff --git a/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/info.json b/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/info.json new file mode 100644 index 00000000..c018f98e --- /dev/null +++ b/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/info.json @@ -0,0 +1,31 @@ +{ + "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", + "type": "ERC20", + "symbol": "ADX", + "decimals": 18, + "status": "active", + "id": "0xADE00C28244d5CE17D72E40330B1c318cD12B7c3", + "tags": [ + "defi" + ], + "links": [ + { + "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/" + } + ] +} diff --git a/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/logo.png b/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/logo.png new file mode 100644 index 00000000..0f6b8459 Binary files /dev/null and b/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/logo.png differ diff --git a/blockchains/ethereum/assets/0xADF8B8050639b6236915f7516d69dE714672F0bF/info.json b/blockchains/ethereum/assets/0xADF8B8050639b6236915f7516d69dE714672F0bF/info.json new file mode 100644 index 00000000..7ce541d1 --- /dev/null +++ b/blockchains/ethereum/assets/0xADF8B8050639b6236915f7516d69dE714672F0bF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Scanetchain", + "symbol": "SWC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.scanetchain.io/", + "explorer": "https://etherscan.io/token/0xADF8B8050639b6236915f7516d69dE714672F0bF", + "status": "abandoned", + "id": "0xADF8B8050639b6236915f7516d69dE714672F0bF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xADF8B8050639b6236915f7516d69dE714672F0bF/logo.png b/blockchains/ethereum/assets/0xADF8B8050639b6236915f7516d69dE714672F0bF/logo.png new file mode 100644 index 00000000..e66872c7 Binary files /dev/null and b/blockchains/ethereum/assets/0xADF8B8050639b6236915f7516d69dE714672F0bF/logo.png differ diff --git a/blockchains/ethereum/assets/0xAE12C5930881c53715B369ceC7606B70d8EB229f/info.json b/blockchains/ethereum/assets/0xAE12C5930881c53715B369ceC7606B70d8EB229f/info.json new file mode 100644 index 00000000..6ec22005 --- /dev/null +++ b/blockchains/ethereum/assets/0xAE12C5930881c53715B369ceC7606B70d8EB229f/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://etherscan.io/token/0xae12c5930881c53715b369cec7606b70d8eb229f", + "type": "ERC20", + "symbol": "C98", + "decimals": 18, + "status": "active", + "id": "0xAE12C5930881c53715B369ceC7606B70d8EB229f", + "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/ethereum/assets/0xAE12C5930881c53715B369ceC7606B70d8EB229f/logo.png b/blockchains/ethereum/assets/0xAE12C5930881c53715B369ceC7606B70d8EB229f/logo.png new file mode 100644 index 00000000..adc07976 Binary files /dev/null and b/blockchains/ethereum/assets/0xAE12C5930881c53715B369ceC7606B70d8EB229f/logo.png differ diff --git a/blockchains/ethereum/assets/0xAE1eaAE3F627AAca434127644371b67B18444051/info.json b/blockchains/ethereum/assets/0xAE1eaAE3F627AAca434127644371b67B18444051/info.json new file mode 100644 index 00000000..edac51c7 --- /dev/null +++ b/blockchains/ethereum/assets/0xAE1eaAE3F627AAca434127644371b67B18444051/info.json @@ -0,0 +1,11 @@ +{ + "name": "YOP", + "website": "https://yop.finance/", + "description": "YOP is the token for YOP finance application.", + "explorer": "https://etherscan.io/token/0xae1eaae3f627aaca434127644371b67b18444051", + "type": "ERC20", + "symbol": "YOP", + "decimals": 8, + "status": "active", + "id": "0xAE1eaAE3F627AAca434127644371b67B18444051" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAE1eaAE3F627AAca434127644371b67B18444051/logo.png b/blockchains/ethereum/assets/0xAE1eaAE3F627AAca434127644371b67B18444051/logo.png new file mode 100644 index 00000000..836785d9 Binary files /dev/null and b/blockchains/ethereum/assets/0xAE1eaAE3F627AAca434127644371b67B18444051/logo.png differ diff --git a/blockchains/ethereum/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json b/blockchains/ethereum/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json new file mode 100644 index 00000000..be3c3881 --- /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 00000000..b6fb457e Binary files /dev/null and b/blockchains/ethereum/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/logo.png differ diff --git a/blockchains/ethereum/assets/0xAE31b85Bfe62747d0836B82608B4830361a3d37a/info.json b/blockchains/ethereum/assets/0xAE31b85Bfe62747d0836B82608B4830361a3d37a/info.json new file mode 100644 index 00000000..ac9acd44 --- /dev/null +++ b/blockchains/ethereum/assets/0xAE31b85Bfe62747d0836B82608B4830361a3d37a/info.json @@ -0,0 +1,12 @@ +{ + "name": "Aergo", + "website": "https://aergo.io", + "description": "Aergo describes itself as an open-source enterprise blockchain platform optimized for hybrid deployments, which consist of both permissioned and permissionless blockchain architectures.", + "explorer": "https://etherscan.io/token/0xAE31b85Bfe62747d0836B82608B4830361a3d37a", + "research": "https://research.binance.com/en/projects/aergo", + "type": "ERC20", + "symbol": "AERGO", + "decimals": 18, + "status": "active", + "id": "0xAE31b85Bfe62747d0836B82608B4830361a3d37a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAE31b85Bfe62747d0836B82608B4830361a3d37a/logo.png b/blockchains/ethereum/assets/0xAE31b85Bfe62747d0836B82608B4830361a3d37a/logo.png new file mode 100644 index 00000000..a0a24761 Binary files /dev/null and b/blockchains/ethereum/assets/0xAE31b85Bfe62747d0836B82608B4830361a3d37a/logo.png differ diff --git a/blockchains/ethereum/assets/0xAE9CBE6eBf72A51c9Fcea3830485614486318Fd4/info.json b/blockchains/ethereum/assets/0xAE9CBE6eBf72A51c9Fcea3830485614486318Fd4/info.json new file mode 100644 index 00000000..7ebbba34 --- /dev/null +++ b/blockchains/ethereum/assets/0xAE9CBE6eBf72A51c9Fcea3830485614486318Fd4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Newtonium", + "website": "https://newtonium.org", + "description": "Newtonium is an ERC-20 token intended to make DeFi more simple and fun. People can harvest $DAI, $USDT & $USDC on newtonium platform. Simple and easy.", + "explorer": "https://etherscan.io/token/0xAE9CBE6eBf72A51c9Fcea3830485614486318Fd4", + "type": "ERC20", + "symbol": "NEWTON", + "decimals": 18, + "status": "active", + "id": "0xAE9CBE6eBf72A51c9Fcea3830485614486318Fd4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAE9CBE6eBf72A51c9Fcea3830485614486318Fd4/logo.png b/blockchains/ethereum/assets/0xAE9CBE6eBf72A51c9Fcea3830485614486318Fd4/logo.png new file mode 100644 index 00000000..1d2e5725 Binary files /dev/null and b/blockchains/ethereum/assets/0xAE9CBE6eBf72A51c9Fcea3830485614486318Fd4/logo.png differ diff --git a/blockchains/ethereum/assets/0xAEb1b41981F7Aa5740C7cc0eF5822A40149eC230/info.json b/blockchains/ethereum/assets/0xAEb1b41981F7Aa5740C7cc0eF5822A40149eC230/info.json new file mode 100644 index 00000000..4da7f544 --- /dev/null +++ b/blockchains/ethereum/assets/0xAEb1b41981F7Aa5740C7cc0eF5822A40149eC230/info.json @@ -0,0 +1,11 @@ +{ + "name": "CARE", + "symbol": "MED", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAEb1b41981F7Aa5740C7cc0eF5822A40149eC230", + "status": "abandoned", + "id": "0xAEb1b41981F7Aa5740C7cc0eF5822A40149eC230" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAEb1b41981F7Aa5740C7cc0eF5822A40149eC230/logo.png b/blockchains/ethereum/assets/0xAEb1b41981F7Aa5740C7cc0eF5822A40149eC230/logo.png new file mode 100644 index 00000000..9b0e5064 Binary files /dev/null and b/blockchains/ethereum/assets/0xAEb1b41981F7Aa5740C7cc0eF5822A40149eC230/logo.png differ diff --git a/blockchains/ethereum/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json b/blockchains/ethereum/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json new file mode 100644 index 00000000..2797b5a1 --- /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 00000000..472c951a Binary files /dev/null and b/blockchains/ethereum/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/logo.png differ diff --git a/blockchains/ethereum/assets/0xAF350211414C5DC176421Ea05423F0cC494261fB/info.json b/blockchains/ethereum/assets/0xAF350211414C5DC176421Ea05423F0cC494261fB/info.json new file mode 100644 index 00000000..ae8c69e7 --- /dev/null +++ b/blockchains/ethereum/assets/0xAF350211414C5DC176421Ea05423F0cC494261fB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Saturn DAO token (ERC20)", + "symbol": "SATURN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAF350211414C5DC176421Ea05423F0cC494261fB", + "status": "abandoned", + "id": "0xAF350211414C5DC176421Ea05423F0cC494261fB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAF350211414C5DC176421Ea05423F0cC494261fB/logo.png b/blockchains/ethereum/assets/0xAF350211414C5DC176421Ea05423F0cC494261fB/logo.png new file mode 100644 index 00000000..2221c43d Binary files /dev/null and b/blockchains/ethereum/assets/0xAF350211414C5DC176421Ea05423F0cC494261fB/logo.png differ diff --git a/blockchains/ethereum/assets/0xAF446174961CD544e51B89310581669e8FC00D16/info.json b/blockchains/ethereum/assets/0xAF446174961CD544e51B89310581669e8FC00D16/info.json new file mode 100644 index 00000000..35463b13 --- /dev/null +++ b/blockchains/ethereum/assets/0xAF446174961CD544e51B89310581669e8FC00D16/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dignity", + "symbol": "DIG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAF446174961CD544e51B89310581669e8FC00D16", + "status": "abandoned", + "id": "0xAF446174961CD544e51B89310581669e8FC00D16" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAF446174961CD544e51B89310581669e8FC00D16/logo.png b/blockchains/ethereum/assets/0xAF446174961CD544e51B89310581669e8FC00D16/logo.png new file mode 100644 index 00000000..5cafe8a7 Binary files /dev/null and b/blockchains/ethereum/assets/0xAF446174961CD544e51B89310581669e8FC00D16/logo.png differ diff --git a/blockchains/ethereum/assets/0xAFAefA2a7c7aAB9f8B047268500035514487Ef0A/info.json b/blockchains/ethereum/assets/0xAFAefA2a7c7aAB9f8B047268500035514487Ef0A/info.json new file mode 100644 index 00000000..393a90b2 --- /dev/null +++ b/blockchains/ethereum/assets/0xAFAefA2a7c7aAB9f8B047268500035514487Ef0A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coin900 Exchange Coin", + "symbol": "CXC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAFAefA2a7c7aAB9f8B047268500035514487Ef0A", + "status": "abandoned", + "id": "0xAFAefA2a7c7aAB9f8B047268500035514487Ef0A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAFAefA2a7c7aAB9f8B047268500035514487Ef0A/logo.png b/blockchains/ethereum/assets/0xAFAefA2a7c7aAB9f8B047268500035514487Ef0A/logo.png new file mode 100644 index 00000000..9cb609d7 Binary files /dev/null and b/blockchains/ethereum/assets/0xAFAefA2a7c7aAB9f8B047268500035514487Ef0A/logo.png differ diff --git a/blockchains/ethereum/assets/0xAFB559485401F81FCAb7Af7F5b5f6DD3B962C63f/info.json b/blockchains/ethereum/assets/0xAFB559485401F81FCAb7Af7F5b5f6DD3B962C63f/info.json new file mode 100644 index 00000000..cfd762f1 --- /dev/null +++ b/blockchains/ethereum/assets/0xAFB559485401F81FCAb7Af7F5b5f6DD3B962C63f/info.json @@ -0,0 +1,11 @@ +{ + "name": "LUMAX COIN", + "symbol": "LMX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAFB559485401F81FCAb7Af7F5b5f6DD3B962C63f", + "status": "abandoned", + "id": "0xAFB559485401F81FCAb7Af7F5b5f6DD3B962C63f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAFB559485401F81FCAb7Af7F5b5f6DD3B962C63f/logo.png b/blockchains/ethereum/assets/0xAFB559485401F81FCAb7Af7F5b5f6DD3B962C63f/logo.png new file mode 100644 index 00000000..8462cc48 Binary files /dev/null and b/blockchains/ethereum/assets/0xAFB559485401F81FCAb7Af7F5b5f6DD3B962C63f/logo.png differ diff --git a/blockchains/ethereum/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/info.json b/blockchains/ethereum/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/info.json new file mode 100644 index 00000000..87167195 --- /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 00000000..281119d1 Binary files /dev/null and b/blockchains/ethereum/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/logo.png differ diff --git a/blockchains/ethereum/assets/0xAFFCDd96531bCd66faED95FC61e443D08F79eFEf/info.json b/blockchains/ethereum/assets/0xAFFCDd96531bCd66faED95FC61e443D08F79eFEf/info.json new file mode 100644 index 00000000..2bc23d1f --- /dev/null +++ b/blockchains/ethereum/assets/0xAFFCDd96531bCd66faED95FC61e443D08F79eFEf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Perth Mint Gold Token", + "symbol": "PMGT", + "type": "ERC20", + "decimals": 5, + "description": "PMGT allows blockchain users to conveniently trade and hold gold stored at The Perth Mint.", + "website": "https://pmgt.io", + "explorer": "https://etherscan.io/token/0xAFFCDd96531bCd66faED95FC61e443D08F79eFEf", + "status": "active", + "id": "0xAFFCDd96531bCd66faED95FC61e443D08F79eFEf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAFFCDd96531bCd66faED95FC61e443D08F79eFEf/logo.png b/blockchains/ethereum/assets/0xAFFCDd96531bCd66faED95FC61e443D08F79eFEf/logo.png new file mode 100644 index 00000000..f09761ee Binary files /dev/null and b/blockchains/ethereum/assets/0xAFFCDd96531bCd66faED95FC61e443D08F79eFEf/logo.png differ diff --git a/blockchains/ethereum/assets/0xAFbe02AbE65aB5c0CA1AdC04848028Cc97a8Ea70/info.json b/blockchains/ethereum/assets/0xAFbe02AbE65aB5c0CA1AdC04848028Cc97a8Ea70/info.json new file mode 100644 index 00000000..1311ac91 --- /dev/null +++ b/blockchains/ethereum/assets/0xAFbe02AbE65aB5c0CA1AdC04848028Cc97a8Ea70/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bolivar Soberano", + "symbol": "EBS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAFbe02AbE65aB5c0CA1AdC04848028Cc97a8Ea70", + "status": "abandoned", + "id": "0xAFbe02AbE65aB5c0CA1AdC04848028Cc97a8Ea70" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAFbe02AbE65aB5c0CA1AdC04848028Cc97a8Ea70/logo.png b/blockchains/ethereum/assets/0xAFbe02AbE65aB5c0CA1AdC04848028Cc97a8Ea70/logo.png new file mode 100644 index 00000000..76c71861 Binary files /dev/null and b/blockchains/ethereum/assets/0xAFbe02AbE65aB5c0CA1AdC04848028Cc97a8Ea70/logo.png differ diff --git a/blockchains/ethereum/assets/0xAFe60511341a37488de25Bef351952562E31fCc1/info.json b/blockchains/ethereum/assets/0xAFe60511341a37488de25Bef351952562E31fCc1/info.json new file mode 100644 index 00000000..cf4ca45d --- /dev/null +++ b/blockchains/ethereum/assets/0xAFe60511341a37488de25Bef351952562E31fCc1/info.json @@ -0,0 +1,11 @@ +{ + "name": "TBOT", + "symbol": "TBT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAFe60511341a37488de25Bef351952562E31fCc1", + "status": "abandoned", + "id": "0xAFe60511341a37488de25Bef351952562E31fCc1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAFe60511341a37488de25Bef351952562E31fCc1/logo.png b/blockchains/ethereum/assets/0xAFe60511341a37488de25Bef351952562E31fCc1/logo.png new file mode 100644 index 00000000..28837883 Binary files /dev/null and b/blockchains/ethereum/assets/0xAFe60511341a37488de25Bef351952562E31fCc1/logo.png differ diff --git a/blockchains/ethereum/assets/0xAa0bb10CEc1fa372eb3Abc17C933FC6ba863DD9E/info.json b/blockchains/ethereum/assets/0xAa0bb10CEc1fa372eb3Abc17C933FC6ba863DD9E/info.json new file mode 100644 index 00000000..577d7b77 --- /dev/null +++ b/blockchains/ethereum/assets/0xAa0bb10CEc1fa372eb3Abc17C933FC6ba863DD9E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hms Token", + "symbol": "HMC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://hms.io/", + "explorer": "https://etherscan.io/token/0xAa0bb10CEc1fa372eb3Abc17C933FC6ba863DD9E", + "status": "abandoned", + "id": "0xAa0bb10CEc1fa372eb3Abc17C933FC6ba863DD9E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAa0bb10CEc1fa372eb3Abc17C933FC6ba863DD9E/logo.png b/blockchains/ethereum/assets/0xAa0bb10CEc1fa372eb3Abc17C933FC6ba863DD9E/logo.png new file mode 100644 index 00000000..84d5e797 Binary files /dev/null and b/blockchains/ethereum/assets/0xAa0bb10CEc1fa372eb3Abc17C933FC6ba863DD9E/logo.png differ diff --git a/blockchains/ethereum/assets/0xAa1ae5e57dc05981D83eC7FcA0b3c7ee2565B7D6/info.json b/blockchains/ethereum/assets/0xAa1ae5e57dc05981D83eC7FcA0b3c7ee2565B7D6/info.json new file mode 100644 index 00000000..2e6880d5 --- /dev/null +++ b/blockchains/ethereum/assets/0xAa1ae5e57dc05981D83eC7FcA0b3c7ee2565B7D6/info.json @@ -0,0 +1,11 @@ +{ + "name": "EtherPay", + "symbol": "EPAY", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAa1ae5e57dc05981D83eC7FcA0b3c7ee2565B7D6", + "status": "abandoned", + "id": "0xAa1ae5e57dc05981D83eC7FcA0b3c7ee2565B7D6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAa1ae5e57dc05981D83eC7FcA0b3c7ee2565B7D6/logo.png b/blockchains/ethereum/assets/0xAa1ae5e57dc05981D83eC7FcA0b3c7ee2565B7D6/logo.png new file mode 100644 index 00000000..6e7da0d4 Binary files /dev/null and b/blockchains/ethereum/assets/0xAa1ae5e57dc05981D83eC7FcA0b3c7ee2565B7D6/logo.png differ diff --git a/blockchains/ethereum/assets/0xAa412c019eEFdd12aafAd3B5051Cf579704d74a4/info.json b/blockchains/ethereum/assets/0xAa412c019eEFdd12aafAd3B5051Cf579704d74a4/info.json new file mode 100644 index 00000000..74fed880 --- /dev/null +++ b/blockchains/ethereum/assets/0xAa412c019eEFdd12aafAd3B5051Cf579704d74a4/info.json @@ -0,0 +1,11 @@ +{ + "name": "ORATIUM", + "symbol": "ORT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAa412c019eEFdd12aafAd3B5051Cf579704d74a4", + "status": "abandoned", + "id": "0xAa412c019eEFdd12aafAd3B5051Cf579704d74a4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAa412c019eEFdd12aafAd3B5051Cf579704d74a4/logo.png b/blockchains/ethereum/assets/0xAa412c019eEFdd12aafAd3B5051Cf579704d74a4/logo.png new file mode 100755 index 00000000..f683b556 Binary files /dev/null and b/blockchains/ethereum/assets/0xAa412c019eEFdd12aafAd3B5051Cf579704d74a4/logo.png differ diff --git a/blockchains/ethereum/assets/0xAa5C28be0F1173612eA3fCC9e461cCB7b9390213/info.json b/blockchains/ethereum/assets/0xAa5C28be0F1173612eA3fCC9e461cCB7b9390213/info.json new file mode 100644 index 00000000..7d4d602d --- /dev/null +++ b/blockchains/ethereum/assets/0xAa5C28be0F1173612eA3fCC9e461cCB7b9390213/info.json @@ -0,0 +1,11 @@ +{ + "name": "EVCOIN", + "symbol": "EVCO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAa5C28be0F1173612eA3fCC9e461cCB7b9390213", + "status": "abandoned", + "id": "0xAa5C28be0F1173612eA3fCC9e461cCB7b9390213" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAa5C28be0F1173612eA3fCC9e461cCB7b9390213/logo.png b/blockchains/ethereum/assets/0xAa5C28be0F1173612eA3fCC9e461cCB7b9390213/logo.png new file mode 100644 index 00000000..aee67ee9 Binary files /dev/null and b/blockchains/ethereum/assets/0xAa5C28be0F1173612eA3fCC9e461cCB7b9390213/logo.png differ diff --git a/blockchains/ethereum/assets/0xAa5d424c64De2b60800786d7Eaa7c7FEF42aB2f6/info.json b/blockchains/ethereum/assets/0xAa5d424c64De2b60800786d7Eaa7c7FEF42aB2f6/info.json new file mode 100644 index 00000000..949d17ab --- /dev/null +++ b/blockchains/ethereum/assets/0xAa5d424c64De2b60800786d7Eaa7c7FEF42aB2f6/info.json @@ -0,0 +1,11 @@ +{ + "name": "BIGTIGER", + "symbol": "BTG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAa5d424c64De2b60800786d7Eaa7c7FEF42aB2f6", + "status": "abandoned", + "id": "0xAa5d424c64De2b60800786d7Eaa7c7FEF42aB2f6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAa5d424c64De2b60800786d7Eaa7c7FEF42aB2f6/logo.png b/blockchains/ethereum/assets/0xAa5d424c64De2b60800786d7Eaa7c7FEF42aB2f6/logo.png new file mode 100644 index 00000000..bc76459f Binary files /dev/null and b/blockchains/ethereum/assets/0xAa5d424c64De2b60800786d7Eaa7c7FEF42aB2f6/logo.png differ diff --git a/blockchains/ethereum/assets/0xAa6E8127831c9DE45ae56bB1b0d4D4Da6e5665BD/info.json b/blockchains/ethereum/assets/0xAa6E8127831c9DE45ae56bB1b0d4D4Da6e5665BD/info.json new file mode 100644 index 00000000..e6601766 --- /dev/null +++ b/blockchains/ethereum/assets/0xAa6E8127831c9DE45ae56bB1b0d4D4Da6e5665BD/info.json @@ -0,0 +1,12 @@ +{ + "name": "ETH 2x Flexible Leverage Index", + "symbol": "ETH2x-FLI", + "type": "ERC20", + "decimals": 18, + "description": "Flexible Leverage token on ETH targeting 2x", + "website": "https://www.indexcoop.com/", + "research": "https://defipulse.com/", + "explorer": "https://etherscan.io/token/0xAa6E8127831c9DE45ae56bB1b0d4D4Da6e5665BD", + "status": "active", + "id": "0xAa6E8127831c9DE45ae56bB1b0d4D4Da6e5665BD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAa6E8127831c9DE45ae56bB1b0d4D4Da6e5665BD/logo.png b/blockchains/ethereum/assets/0xAa6E8127831c9DE45ae56bB1b0d4D4Da6e5665BD/logo.png new file mode 100644 index 00000000..8aa0592f Binary files /dev/null and b/blockchains/ethereum/assets/0xAa6E8127831c9DE45ae56bB1b0d4D4Da6e5665BD/logo.png differ diff --git a/blockchains/ethereum/assets/0xAa843f65872a25D6E9552eA0B360Fb1d5E333124/info.json b/blockchains/ethereum/assets/0xAa843f65872a25D6E9552eA0B360Fb1d5E333124/info.json new file mode 100644 index 00000000..62e9d0c2 --- /dev/null +++ b/blockchains/ethereum/assets/0xAa843f65872a25D6E9552eA0B360Fb1d5E333124/info.json @@ -0,0 +1,23 @@ +{ + "name": "EVC", + "coin_name": "Eco Value Coin", + "website": "https://ecovaluecoin.com", + "description": "Eco Value Coin is a Blockchain based Carbon Credit token. It will allow individuals, businesses and governments to trade and offset carbon emissions..", + "explorer": "https://etherscan.io/token/0xAa843f65872a25D6E9552eA0B360Fb1d5E333124", + "research": "https://www.ecovaluecoin.com/#ecctech", + "type": "ERC20", + "symbol": "EVC", + "decimals": 18, + "status": "active", + "id": "0xAa843f65872a25D6E9552eA0B360Fb1d5E333124", + "links": [ + { + "name": "github", + "url": "https://github.com/ecovalue/evc-contracts" + }, + { + "name": "whitepaper", + "url": "https://www.ecovaluecoin.com/wp-content/uploads/2018/07/EVC-Whitepaper-v1.0.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAa843f65872a25D6E9552eA0B360Fb1d5E333124/logo.png b/blockchains/ethereum/assets/0xAa843f65872a25D6E9552eA0B360Fb1d5E333124/logo.png new file mode 100644 index 00000000..3f5ed94e Binary files /dev/null and b/blockchains/ethereum/assets/0xAa843f65872a25D6E9552eA0B360Fb1d5E333124/logo.png differ diff --git a/blockchains/ethereum/assets/0xAaA89105dab822dBC9a6DE64A23d045D99D5Fd36/info.json b/blockchains/ethereum/assets/0xAaA89105dab822dBC9a6DE64A23d045D99D5Fd36/info.json new file mode 100644 index 00000000..bd73fe22 --- /dev/null +++ b/blockchains/ethereum/assets/0xAaA89105dab822dBC9a6DE64A23d045D99D5Fd36/info.json @@ -0,0 +1,11 @@ +{ + "name": "HireGo", + "symbol": "HGO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAaA89105dab822dBC9a6DE64A23d045D99D5Fd36", + "status": "abandoned", + "id": "0xAaA89105dab822dBC9a6DE64A23d045D99D5Fd36" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAaA89105dab822dBC9a6DE64A23d045D99D5Fd36/logo.png b/blockchains/ethereum/assets/0xAaA89105dab822dBC9a6DE64A23d045D99D5Fd36/logo.png new file mode 100644 index 00000000..6f33eb48 Binary files /dev/null and b/blockchains/ethereum/assets/0xAaA89105dab822dBC9a6DE64A23d045D99D5Fd36/logo.png differ diff --git a/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/info.json b/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/info.json new file mode 100644 index 00000000..332a03d8 --- /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 00000000..21df1e53 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 new file mode 100644 index 00000000..24accf17 --- /dev/null +++ b/blockchains/ethereum/assets/0xAaEf88cEa01475125522e117BFe45cF32044E238/info.json @@ -0,0 +1,25 @@ +{ + "name": "GuildFi", + "website": "https://guildfi.com/", + "description": "GuildFi aspires to create an interconnected ecosystem of games, NFTs, and communities, to maximize players' benefits and enable interoperability across the metaverse.", + "explorer": "https://etherscan.io/token/0xaaef88cea01475125522e117bfe45cf32044e238", + "type": "ERC20", + "symbol": "GF", + "decimals": 18, + "status": "active", + "id": "0xAaEf88cEa01475125522e117BFe45cF32044E238", + "links": [ + { + "name": "github", + "url": "https://github.com/GuildFi" + }, + { + "name": "telegram", + "url": "https://t.me/guildfi" + }, + { + "name": "x", + "url": "https://x.com/GuildFiGlobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAaEf88cEa01475125522e117BFe45cF32044E238/logo.png b/blockchains/ethereum/assets/0xAaEf88cEa01475125522e117BFe45cF32044E238/logo.png new file mode 100644 index 00000000..a912e8bc Binary files /dev/null and b/blockchains/ethereum/assets/0xAaEf88cEa01475125522e117BFe45cF32044E238/logo.png differ diff --git a/blockchains/ethereum/assets/0xAafd35ddb9189995937A2862E8Ff17519F5AAE78/info.json b/blockchains/ethereum/assets/0xAafd35ddb9189995937A2862E8Ff17519F5AAE78/info.json new file mode 100644 index 00000000..80bd71a7 --- /dev/null +++ b/blockchains/ethereum/assets/0xAafd35ddb9189995937A2862E8Ff17519F5AAE78/info.json @@ -0,0 +1,11 @@ +{ + "name": "Golden Time of Life", + "symbol": "GTL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAafd35ddb9189995937A2862E8Ff17519F5AAE78", + "status": "abandoned", + "id": "0xAafd35ddb9189995937A2862E8Ff17519F5AAE78" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAafd35ddb9189995937A2862E8Ff17519F5AAE78/logo.png b/blockchains/ethereum/assets/0xAafd35ddb9189995937A2862E8Ff17519F5AAE78/logo.png new file mode 100644 index 00000000..1ae7d153 Binary files /dev/null and b/blockchains/ethereum/assets/0xAafd35ddb9189995937A2862E8Ff17519F5AAE78/logo.png differ diff --git a/blockchains/ethereum/assets/0xAb1A348BB48fEF25179cdeaBfA2a41c394f122BB/info.json b/blockchains/ethereum/assets/0xAb1A348BB48fEF25179cdeaBfA2a41c394f122BB/info.json new file mode 100644 index 00000000..eb084d5b --- /dev/null +++ b/blockchains/ethereum/assets/0xAb1A348BB48fEF25179cdeaBfA2a41c394f122BB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Quartz", + "symbol": "CSC-QU", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAb1A348BB48fEF25179cdeaBfA2a41c394f122BB", + "status": "abandoned", + "id": "0xAb1A348BB48fEF25179cdeaBfA2a41c394f122BB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAb1A348BB48fEF25179cdeaBfA2a41c394f122BB/logo.png b/blockchains/ethereum/assets/0xAb1A348BB48fEF25179cdeaBfA2a41c394f122BB/logo.png new file mode 100755 index 00000000..a40427dd Binary files /dev/null and b/blockchains/ethereum/assets/0xAb1A348BB48fEF25179cdeaBfA2a41c394f122BB/logo.png differ diff --git a/blockchains/ethereum/assets/0xAb418c5A8a85f9cC0fbA1802a57a30Bf7dB34d7C/info.json b/blockchains/ethereum/assets/0xAb418c5A8a85f9cC0fbA1802a57a30Bf7dB34d7C/info.json new file mode 100644 index 00000000..45750d39 --- /dev/null +++ b/blockchains/ethereum/assets/0xAb418c5A8a85f9cC0fbA1802a57a30Bf7dB34d7C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Benscoin", + "symbol": "BSC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAb418c5A8a85f9cC0fbA1802a57a30Bf7dB34d7C", + "status": "abandoned", + "id": "0xAb418c5A8a85f9cC0fbA1802a57a30Bf7dB34d7C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAb418c5A8a85f9cC0fbA1802a57a30Bf7dB34d7C/logo.png b/blockchains/ethereum/assets/0xAb418c5A8a85f9cC0fbA1802a57a30Bf7dB34d7C/logo.png new file mode 100644 index 00000000..fb34a54d Binary files /dev/null and b/blockchains/ethereum/assets/0xAb418c5A8a85f9cC0fbA1802a57a30Bf7dB34d7C/logo.png differ diff --git a/blockchains/ethereum/assets/0xAb816eC4eF4b039A4DeAfF11d3D3CEE8df193438/info.json b/blockchains/ethereum/assets/0xAb816eC4eF4b039A4DeAfF11d3D3CEE8df193438/info.json new file mode 100644 index 00000000..f2d9278d --- /dev/null +++ b/blockchains/ethereum/assets/0xAb816eC4eF4b039A4DeAfF11d3D3CEE8df193438/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR 3000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAb816eC4eF4b039A4DeAfF11d3D3CEE8df193438", + "status": "abandoned", + "id": "0xAb816eC4eF4b039A4DeAfF11d3D3CEE8df193438" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAb816eC4eF4b039A4DeAfF11d3D3CEE8df193438/logo.png b/blockchains/ethereum/assets/0xAb816eC4eF4b039A4DeAfF11d3D3CEE8df193438/logo.png new file mode 100644 index 00000000..662c895c Binary files /dev/null and b/blockchains/ethereum/assets/0xAb816eC4eF4b039A4DeAfF11d3D3CEE8df193438/logo.png differ diff --git a/blockchains/ethereum/assets/0xAb85E7d4dF95Ba7570fd7817479610615C794e30/info.json b/blockchains/ethereum/assets/0xAb85E7d4dF95Ba7570fd7817479610615C794e30/info.json new file mode 100644 index 00000000..1980d583 --- /dev/null +++ b/blockchains/ethereum/assets/0xAb85E7d4dF95Ba7570fd7817479610615C794e30/info.json @@ -0,0 +1,11 @@ +{ + "name": "Grandeo", + "symbol": "GDO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAb85E7d4dF95Ba7570fd7817479610615C794e30", + "status": "abandoned", + "id": "0xAb85E7d4dF95Ba7570fd7817479610615C794e30" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAb85E7d4dF95Ba7570fd7817479610615C794e30/logo.png b/blockchains/ethereum/assets/0xAb85E7d4dF95Ba7570fd7817479610615C794e30/logo.png new file mode 100644 index 00000000..41d07e86 Binary files /dev/null and b/blockchains/ethereum/assets/0xAb85E7d4dF95Ba7570fd7817479610615C794e30/logo.png differ diff --git a/blockchains/ethereum/assets/0xAb89A337Ed77004937cB635BA5Bb5D63d5B272eA/info.json b/blockchains/ethereum/assets/0xAb89A337Ed77004937cB635BA5Bb5D63d5B272eA/info.json new file mode 100644 index 00000000..75af8c9c --- /dev/null +++ b/blockchains/ethereum/assets/0xAb89A337Ed77004937cB635BA5Bb5D63d5B272eA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Retric", + "symbol": "RTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAb89A337Ed77004937cB635BA5Bb5D63d5B272eA", + "status": "abandoned", + "id": "0xAb89A337Ed77004937cB635BA5Bb5D63d5B272eA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAb89A337Ed77004937cB635BA5Bb5D63d5B272eA/logo.png b/blockchains/ethereum/assets/0xAb89A337Ed77004937cB635BA5Bb5D63d5B272eA/logo.png new file mode 100644 index 00000000..ec8c1c99 Binary files /dev/null and b/blockchains/ethereum/assets/0xAb89A337Ed77004937cB635BA5Bb5D63d5B272eA/logo.png differ diff --git a/blockchains/ethereum/assets/0xAb8FC9E5fE627f64f8Cb43ea557d7cb5A791EF65/info.json b/blockchains/ethereum/assets/0xAb8FC9E5fE627f64f8Cb43ea557d7cb5A791EF65/info.json new file mode 100644 index 00000000..a3f30b3c --- /dev/null +++ b/blockchains/ethereum/assets/0xAb8FC9E5fE627f64f8Cb43ea557d7cb5A791EF65/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C559020", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAb8FC9E5fE627f64f8Cb43ea557d7cb5A791EF65", + "status": "abandoned", + "id": "0xAb8FC9E5fE627f64f8Cb43ea557d7cb5A791EF65" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAb8FC9E5fE627f64f8Cb43ea557d7cb5A791EF65/logo.png b/blockchains/ethereum/assets/0xAb8FC9E5fE627f64f8Cb43ea557d7cb5A791EF65/logo.png new file mode 100644 index 00000000..1b24a81f Binary files /dev/null and b/blockchains/ethereum/assets/0xAb8FC9E5fE627f64f8Cb43ea557d7cb5A791EF65/logo.png differ diff --git a/blockchains/ethereum/assets/0xAbA9Ae731Aad63335C604E5f6E6A5db2e05f549d/info.json b/blockchains/ethereum/assets/0xAbA9Ae731Aad63335C604E5f6E6A5db2e05f549d/info.json new file mode 100644 index 00000000..d0d0e666 --- /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 00000000..9497e1e5 Binary files /dev/null and b/blockchains/ethereum/assets/0xAbA9Ae731Aad63335C604E5f6E6A5db2e05f549d/logo.png differ diff --git a/blockchains/ethereum/assets/0xAbC430136A4dE71c9998242de8c1b4B97D2b9045/info.json b/blockchains/ethereum/assets/0xAbC430136A4dE71c9998242de8c1b4B97D2b9045/info.json new file mode 100644 index 00000000..da0a1f8a --- /dev/null +++ b/blockchains/ethereum/assets/0xAbC430136A4dE71c9998242de8c1b4B97D2b9045/info.json @@ -0,0 +1,11 @@ +{ + "name": "Veros", + "symbol": "VRS", + "type": "ERC20", + "decimals": 6, + "description": "VEROS Fundraising Platform is a optimized platform aimed at fundraising for direct charity, eco-high-tech projects and revolutionary innovation.", + "website": "https://vedh.io", + "explorer": "https://etherscan.io/token/0xAbC430136A4dE71c9998242de8c1b4B97D2b9045", + "status": "active", + "id": "0xAbC430136A4dE71c9998242de8c1b4B97D2b9045" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAbC430136A4dE71c9998242de8c1b4B97D2b9045/logo.png b/blockchains/ethereum/assets/0xAbC430136A4dE71c9998242de8c1b4B97D2b9045/logo.png new file mode 100644 index 00000000..db8957d7 Binary files /dev/null and b/blockchains/ethereum/assets/0xAbC430136A4dE71c9998242de8c1b4B97D2b9045/logo.png differ diff --git a/blockchains/ethereum/assets/0xAbabE8E4d8Ff9AEa1346D50E05DAeb755005C61F/info.json b/blockchains/ethereum/assets/0xAbabE8E4d8Ff9AEa1346D50E05DAeb755005C61F/info.json new file mode 100644 index 00000000..ff7a43d4 --- /dev/null +++ b/blockchains/ethereum/assets/0xAbabE8E4d8Ff9AEa1346D50E05DAeb755005C61F/info.json @@ -0,0 +1,11 @@ +{ + "name": "SECBIT", + "symbol": "SECT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAbabE8E4d8Ff9AEa1346D50E05DAeb755005C61F", + "status": "abandoned", + "id": "0xAbabE8E4d8Ff9AEa1346D50E05DAeb755005C61F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAbabE8E4d8Ff9AEa1346D50E05DAeb755005C61F/logo.png b/blockchains/ethereum/assets/0xAbabE8E4d8Ff9AEa1346D50E05DAeb755005C61F/logo.png new file mode 100644 index 00000000..f78286c1 Binary files /dev/null and b/blockchains/ethereum/assets/0xAbabE8E4d8Ff9AEa1346D50E05DAeb755005C61F/logo.png differ diff --git a/blockchains/ethereum/assets/0xAbf6B761C6D7e64FCc1794064f52449b0542Af99/info.json b/blockchains/ethereum/assets/0xAbf6B761C6D7e64FCc1794064f52449b0542Af99/info.json new file mode 100644 index 00000000..04a2b50c --- /dev/null +++ b/blockchains/ethereum/assets/0xAbf6B761C6D7e64FCc1794064f52449b0542Af99/info.json @@ -0,0 +1,11 @@ +{ + "name": "MeetOne Coin", + "symbol": "MEET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAbf6B761C6D7e64FCc1794064f52449b0542Af99", + "status": "abandoned", + "id": "0xAbf6B761C6D7e64FCc1794064f52449b0542Af99" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAbf6B761C6D7e64FCc1794064f52449b0542Af99/logo.png b/blockchains/ethereum/assets/0xAbf6B761C6D7e64FCc1794064f52449b0542Af99/logo.png new file mode 100644 index 00000000..4ef6d1d6 Binary files /dev/null and b/blockchains/ethereum/assets/0xAbf6B761C6D7e64FCc1794064f52449b0542Af99/logo.png differ diff --git a/blockchains/ethereum/assets/0xAc3A4eE4D0cA8732d5610F012B4181697802086a/info.json b/blockchains/ethereum/assets/0xAc3A4eE4D0cA8732d5610F012B4181697802086a/info.json new file mode 100644 index 00000000..1b7b9424 --- /dev/null +++ b/blockchains/ethereum/assets/0xAc3A4eE4D0cA8732d5610F012B4181697802086a/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-4/30M64", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAc3A4eE4D0cA8732d5610F012B4181697802086a", + "status": "abandoned", + "id": "0xAc3A4eE4D0cA8732d5610F012B4181697802086a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAc3A4eE4D0cA8732d5610F012B4181697802086a/logo.png b/blockchains/ethereum/assets/0xAc3A4eE4D0cA8732d5610F012B4181697802086a/logo.png new file mode 100644 index 00000000..64687b02 Binary files /dev/null and b/blockchains/ethereum/assets/0xAc3A4eE4D0cA8732d5610F012B4181697802086a/logo.png differ diff --git a/blockchains/ethereum/assets/0xAc3Da587eac229C9896D919aBC235CA4Fd7f72c1/info.json b/blockchains/ethereum/assets/0xAc3Da587eac229C9896D919aBC235CA4Fd7f72c1/info.json new file mode 100644 index 00000000..69047bf0 --- /dev/null +++ b/blockchains/ethereum/assets/0xAc3Da587eac229C9896D919aBC235CA4Fd7f72c1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Target Coin", + "symbol": "TGT", + "type": "ERC20", + "decimals": 1, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAc3Da587eac229C9896D919aBC235CA4Fd7f72c1", + "status": "abandoned", + "id": "0xAc3Da587eac229C9896D919aBC235CA4Fd7f72c1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAc3Da587eac229C9896D919aBC235CA4Fd7f72c1/logo.png b/blockchains/ethereum/assets/0xAc3Da587eac229C9896D919aBC235CA4Fd7f72c1/logo.png new file mode 100644 index 00000000..1c192da3 Binary files /dev/null and b/blockchains/ethereum/assets/0xAc3Da587eac229C9896D919aBC235CA4Fd7f72c1/logo.png differ diff --git a/blockchains/ethereum/assets/0xAc709FcB44a43c35F0DA4e3163b117A17F3770f5/info.json b/blockchains/ethereum/assets/0xAc709FcB44a43c35F0DA4e3163b117A17F3770f5/info.json new file mode 100644 index 00000000..7cddaa7c --- /dev/null +++ b/blockchains/ethereum/assets/0xAc709FcB44a43c35F0DA4e3163b117A17F3770f5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Arcade Token", + "symbol": "ARC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAc709FcB44a43c35F0DA4e3163b117A17F3770f5", + "status": "abandoned", + "id": "0xAc709FcB44a43c35F0DA4e3163b117A17F3770f5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAc709FcB44a43c35F0DA4e3163b117A17F3770f5/logo.png b/blockchains/ethereum/assets/0xAc709FcB44a43c35F0DA4e3163b117A17F3770f5/logo.png new file mode 100644 index 00000000..affed6b5 Binary files /dev/null and b/blockchains/ethereum/assets/0xAc709FcB44a43c35F0DA4e3163b117A17F3770f5/logo.png differ diff --git a/blockchains/ethereum/assets/0xAc8AD368429eDf39EE03F72824cB1B53Ee3F60c0/info.json b/blockchains/ethereum/assets/0xAc8AD368429eDf39EE03F72824cB1B53Ee3F60c0/info.json new file mode 100644 index 00000000..284bc6cb --- /dev/null +++ b/blockchains/ethereum/assets/0xAc8AD368429eDf39EE03F72824cB1B53Ee3F60c0/info.json @@ -0,0 +1,11 @@ +{ + "name": "E-INDIAN RUPEE", + "symbol": "EINR", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAc8AD368429eDf39EE03F72824cB1B53Ee3F60c0", + "status": "abandoned", + "id": "0xAc8AD368429eDf39EE03F72824cB1B53Ee3F60c0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAc8AD368429eDf39EE03F72824cB1B53Ee3F60c0/logo.png b/blockchains/ethereum/assets/0xAc8AD368429eDf39EE03F72824cB1B53Ee3F60c0/logo.png new file mode 100644 index 00000000..f6ad6e09 Binary files /dev/null and b/blockchains/ethereum/assets/0xAc8AD368429eDf39EE03F72824cB1B53Ee3F60c0/logo.png differ diff --git a/blockchains/ethereum/assets/0xAcCe88F5A63A5e65DB9AA7303720bE16b556E751/info.json b/blockchains/ethereum/assets/0xAcCe88F5A63A5e65DB9AA7303720bE16b556E751/info.json new file mode 100644 index 00000000..e61e4490 --- /dev/null +++ b/blockchains/ethereum/assets/0xAcCe88F5A63A5e65DB9AA7303720bE16b556E751/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coineal Token", + "symbol": "NEAL", + "type": "ERC20", + "decimals": 18, + "description": "Coineal aims to build an industry-leading crypto asset trading platform and provide users with a secure, professional, and convenient cryptocurrency wallet service. Coineal issued the NEAL token, NEAL's use cases include transaction fee reduction, participation in NEAL, and special rights.", + "website": "https://www.coineal.com/", + "explorer": "https://etherscan.io/token/0xAcCe88F5A63A5e65DB9AA7303720bE16b556E751", + "status": "active", + "id": "0xAcCe88F5A63A5e65DB9AA7303720bE16b556E751" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAcCe88F5A63A5e65DB9AA7303720bE16b556E751/logo.png b/blockchains/ethereum/assets/0xAcCe88F5A63A5e65DB9AA7303720bE16b556E751/logo.png new file mode 100644 index 00000000..d16a080b Binary files /dev/null and b/blockchains/ethereum/assets/0xAcCe88F5A63A5e65DB9AA7303720bE16b556E751/logo.png differ diff --git a/blockchains/ethereum/assets/0xAcD9e600Fc4e95B6AfbB4b2638CfcB5D905a7fCA/info.json b/blockchains/ethereum/assets/0xAcD9e600Fc4e95B6AfbB4b2638CfcB5D905a7fCA/info.json new file mode 100644 index 00000000..0050b40a --- /dev/null +++ b/blockchains/ethereum/assets/0xAcD9e600Fc4e95B6AfbB4b2638CfcB5D905a7fCA/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlackAdam", + "symbol": "ADAM", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAcD9e600Fc4e95B6AfbB4b2638CfcB5D905a7fCA", + "status": "abandoned", + "id": "0xAcD9e600Fc4e95B6AfbB4b2638CfcB5D905a7fCA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAcD9e600Fc4e95B6AfbB4b2638CfcB5D905a7fCA/logo.png b/blockchains/ethereum/assets/0xAcD9e600Fc4e95B6AfbB4b2638CfcB5D905a7fCA/logo.png new file mode 100644 index 00000000..a78b78bd Binary files /dev/null and b/blockchains/ethereum/assets/0xAcD9e600Fc4e95B6AfbB4b2638CfcB5D905a7fCA/logo.png differ diff --git a/blockchains/ethereum/assets/0xAcE8E719899F6E91831B18AE746C9A965c2119F1/info.json b/blockchains/ethereum/assets/0xAcE8E719899F6E91831B18AE746C9A965c2119F1/info.json new file mode 100644 index 00000000..a013e889 --- /dev/null +++ b/blockchains/ethereum/assets/0xAcE8E719899F6E91831B18AE746C9A965c2119F1/info.json @@ -0,0 +1,20 @@ +{ + "name": "Ondo U.S. Dollar Token", + "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 00000000..760bb838 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 00000000..71e21015 --- /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 00000000..10effa65 Binary files /dev/null and b/blockchains/ethereum/assets/0xAcd2c239012D17BEB128B0944D49015104113650/logo.png differ diff --git a/blockchains/ethereum/assets/0xAcfa209Fb73bF3Dd5bBfb1101B9Bc999C49062a5/info.json b/blockchains/ethereum/assets/0xAcfa209Fb73bF3Dd5bBfb1101B9Bc999C49062a5/info.json new file mode 100644 index 00000000..ece456b7 --- /dev/null +++ b/blockchains/ethereum/assets/0xAcfa209Fb73bF3Dd5bBfb1101B9Bc999C49062a5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockchain Certfied Data Token", + "website": "https://EvidenZ.io", + "description": "BCDT is the fuel of the EvidenZ ecosystem, an unique framework designed to certify informations using the blockchain technology. BCdiploma is its first use case, dedicated to the certification of academic documents.", + "explorer": "https://etherscan.io/token/0xAcfa209Fb73bF3Dd5bBfb1101B9Bc999C49062a5", + "type": "ERC20", + "symbol": "BCDT", + "decimals": 18, + "status": "active", + "id": "0xAcfa209Fb73bF3Dd5bBfb1101B9Bc999C49062a5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAcfa209Fb73bF3Dd5bBfb1101B9Bc999C49062a5/logo.png b/blockchains/ethereum/assets/0xAcfa209Fb73bF3Dd5bBfb1101B9Bc999C49062a5/logo.png new file mode 100644 index 00000000..6bd76d06 Binary files /dev/null and b/blockchains/ethereum/assets/0xAcfa209Fb73bF3Dd5bBfb1101B9Bc999C49062a5/logo.png differ diff --git a/blockchains/ethereum/assets/0xAd14E61E0C450f525429861b1E482EeDf914A541/info.json b/blockchains/ethereum/assets/0xAd14E61E0C450f525429861b1E482EeDf914A541/info.json new file mode 100644 index 00000000..b5740116 --- /dev/null +++ b/blockchains/ethereum/assets/0xAd14E61E0C450f525429861b1E482EeDf914A541/info.json @@ -0,0 +1,11 @@ +{ + "name": "EthLinkerToken", + "symbol": "ELT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAd14E61E0C450f525429861b1E482EeDf914A541", + "status": "abandoned", + "id": "0xAd14E61E0C450f525429861b1E482EeDf914A541" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAd14E61E0C450f525429861b1E482EeDf914A541/logo.png b/blockchains/ethereum/assets/0xAd14E61E0C450f525429861b1E482EeDf914A541/logo.png new file mode 100644 index 00000000..a9d33e81 Binary files /dev/null and b/blockchains/ethereum/assets/0xAd14E61E0C450f525429861b1E482EeDf914A541/logo.png differ diff --git a/blockchains/ethereum/assets/0xAd4f86a25bbc20FfB751f2FAC312A0B4d8F88c64/info.json b/blockchains/ethereum/assets/0xAd4f86a25bbc20FfB751f2FAC312A0B4d8F88c64/info.json new file mode 100644 index 00000000..8f1cedaa --- /dev/null +++ b/blockchains/ethereum/assets/0xAd4f86a25bbc20FfB751f2FAC312A0B4d8F88c64/info.json @@ -0,0 +1,11 @@ +{ + "name": "OptionRoom Token", + "symbol": "ROOM", + "type": "ERC20", + "decimals": 18, + "description": "OptionRoom is a user governed oracle and forecast protocol built on Polkadot", + "website": "https://www.optionroom.finance/", + "explorer": "https://etherscan.io/token/0xad4f86a25bbc20ffb751f2fac312a0b4d8f88c64", + "status": "active", + "id": "0xAd4f86a25bbc20FfB751f2FAC312A0B4d8F88c64" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAd4f86a25bbc20FfB751f2FAC312A0B4d8F88c64/logo.png b/blockchains/ethereum/assets/0xAd4f86a25bbc20FfB751f2FAC312A0B4d8F88c64/logo.png new file mode 100644 index 00000000..ce3cf793 Binary files /dev/null and b/blockchains/ethereum/assets/0xAd4f86a25bbc20FfB751f2FAC312A0B4d8F88c64/logo.png differ diff --git a/blockchains/ethereum/assets/0xAd966EC9087526F00019Ddc7d2e0284D72E80194/info.json b/blockchains/ethereum/assets/0xAd966EC9087526F00019Ddc7d2e0284D72E80194/info.json new file mode 100644 index 00000000..a8c2c378 --- /dev/null +++ b/blockchains/ethereum/assets/0xAd966EC9087526F00019Ddc7d2e0284D72E80194/info.json @@ -0,0 +1,11 @@ +{ + "name": "FoPay", + "symbol": "FOPAY", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "https://fpay.cash/", + "explorer": "https://etherscan.io/token/0xAd966EC9087526F00019Ddc7d2e0284D72E80194", + "status": "abandoned", + "id": "0xAd966EC9087526F00019Ddc7d2e0284D72E80194" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAd966EC9087526F00019Ddc7d2e0284D72E80194/logo.png b/blockchains/ethereum/assets/0xAd966EC9087526F00019Ddc7d2e0284D72E80194/logo.png new file mode 100644 index 00000000..a11872ad Binary files /dev/null and b/blockchains/ethereum/assets/0xAd966EC9087526F00019Ddc7d2e0284D72E80194/logo.png differ diff --git a/blockchains/ethereum/assets/0xAdA0A1202462085999652Dc5310a7A9e2BF3eD42/info.json b/blockchains/ethereum/assets/0xAdA0A1202462085999652Dc5310a7A9e2BF3eD42/info.json new file mode 100644 index 00000000..1a7a4e79 --- /dev/null +++ b/blockchains/ethereum/assets/0xAdA0A1202462085999652Dc5310a7A9e2BF3eD42/info.json @@ -0,0 +1,12 @@ +{ + "name": "CoinShares Gold and Cryptoassets Index Lite", + "website": "https://coinshares.com", + "description": "The CoinShares Gold and Cryptoassets Index Lite (CGI) employs risk control tools and a monthly rebalancing mechanism to lower volatility, while generating superior risk-adjusted returns.", + "explorer": "https://etherscan.io/token/0xAdA0A1202462085999652Dc5310a7A9e2BF3eD42", + "research": "https://www.indexcoop.com/", + "type": "ERC20", + "symbol": "CGI", + "decimals": 18, + "status": "active", + "id": "0xAdA0A1202462085999652Dc5310a7A9e2BF3eD42" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAdA0A1202462085999652Dc5310a7A9e2BF3eD42/logo.png b/blockchains/ethereum/assets/0xAdA0A1202462085999652Dc5310a7A9e2BF3eD42/logo.png new file mode 100644 index 00000000..ba531c02 Binary files /dev/null and b/blockchains/ethereum/assets/0xAdA0A1202462085999652Dc5310a7A9e2BF3eD42/logo.png differ diff --git a/blockchains/ethereum/assets/0xAdF7C35560035944e805D98fF17d58CDe2449389/info.json b/blockchains/ethereum/assets/0xAdF7C35560035944e805D98fF17d58CDe2449389/info.json new file mode 100644 index 00000000..442728f5 --- /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 00000000..32cb84e1 Binary files /dev/null and b/blockchains/ethereum/assets/0xAdF7C35560035944e805D98fF17d58CDe2449389/logo.png differ diff --git a/blockchains/ethereum/assets/0xAdae61eaAb45Ac109C068E18e723d5F0436bEea1/info.json b/blockchains/ethereum/assets/0xAdae61eaAb45Ac109C068E18e723d5F0436bEea1/info.json new file mode 100644 index 00000000..e596cb8b --- /dev/null +++ b/blockchains/ethereum/assets/0xAdae61eaAb45Ac109C068E18e723d5F0436bEea1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pisces Dollar", + "symbol": "PUSD", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAdae61eaAb45Ac109C068E18e723d5F0436bEea1", + "status": "abandoned", + "id": "0xAdae61eaAb45Ac109C068E18e723d5F0436bEea1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAdae61eaAb45Ac109C068E18e723d5F0436bEea1/logo.png b/blockchains/ethereum/assets/0xAdae61eaAb45Ac109C068E18e723d5F0436bEea1/logo.png new file mode 100644 index 00000000..abd39b75 Binary files /dev/null and b/blockchains/ethereum/assets/0xAdae61eaAb45Ac109C068E18e723d5F0436bEea1/logo.png differ diff --git a/blockchains/ethereum/assets/0xAe3274D06B7de181c4a6fBBb5f8Bb945a15B5094/info.json b/blockchains/ethereum/assets/0xAe3274D06B7de181c4a6fBBb5f8Bb945a15B5094/info.json new file mode 100644 index 00000000..df324898 --- /dev/null +++ b/blockchains/ethereum/assets/0xAe3274D06B7de181c4a6fBBb5f8Bb945a15B5094/info.json @@ -0,0 +1,11 @@ +{ + "name": "AFA Virtual Coin", + "symbol": "AFAVC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAe3274D06B7de181c4a6fBBb5f8Bb945a15B5094", + "status": "abandoned", + "id": "0xAe3274D06B7de181c4a6fBBb5f8Bb945a15B5094" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAe3274D06B7de181c4a6fBBb5f8Bb945a15B5094/logo.png b/blockchains/ethereum/assets/0xAe3274D06B7de181c4a6fBBb5f8Bb945a15B5094/logo.png new file mode 100644 index 00000000..e5afcdf6 Binary files /dev/null and b/blockchains/ethereum/assets/0xAe3274D06B7de181c4a6fBBb5f8Bb945a15B5094/logo.png differ diff --git a/blockchains/ethereum/assets/0xAe9D7C1FD1980E1Ca40AAB0b94140ca27435ea27/info.json b/blockchains/ethereum/assets/0xAe9D7C1FD1980E1Ca40AAB0b94140ca27435ea27/info.json new file mode 100644 index 00000000..0301ad81 --- /dev/null +++ b/blockchains/ethereum/assets/0xAe9D7C1FD1980E1Ca40AAB0b94140ca27435ea27/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tranquility Audit Security", + "symbol": "TRANQ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAe9D7C1FD1980E1Ca40AAB0b94140ca27435ea27", + "status": "abandoned", + "id": "0xAe9D7C1FD1980E1Ca40AAB0b94140ca27435ea27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAe9D7C1FD1980E1Ca40AAB0b94140ca27435ea27/logo.png b/blockchains/ethereum/assets/0xAe9D7C1FD1980E1Ca40AAB0b94140ca27435ea27/logo.png new file mode 100644 index 00000000..54186c1b Binary files /dev/null and b/blockchains/ethereum/assets/0xAe9D7C1FD1980E1Ca40AAB0b94140ca27435ea27/logo.png differ diff --git a/blockchains/ethereum/assets/0xAec7d1069e3a914a3EB50f0BFB1796751f2ce48a/info.json b/blockchains/ethereum/assets/0xAec7d1069e3a914a3EB50f0BFB1796751f2ce48a/info.json new file mode 100644 index 00000000..49fdc5ab --- /dev/null +++ b/blockchains/ethereum/assets/0xAec7d1069e3a914a3EB50f0BFB1796751f2ce48a/info.json @@ -0,0 +1,11 @@ +{ + "name": "S4FE", + "symbol": "S4F", + "type": "ERC20", + "decimals": 18, + "description": "S4FE (S4F) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.s4fe.io", + "explorer": "https://etherscan.io/token/0xAec7d1069e3a914a3EB50f0BFB1796751f2ce48a", + "status": "active", + "id": "0xAec7d1069e3a914a3EB50f0BFB1796751f2ce48a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAec7d1069e3a914a3EB50f0BFB1796751f2ce48a/logo.png b/blockchains/ethereum/assets/0xAec7d1069e3a914a3EB50f0BFB1796751f2ce48a/logo.png new file mode 100644 index 00000000..4e208d8e Binary files /dev/null and b/blockchains/ethereum/assets/0xAec7d1069e3a914a3EB50f0BFB1796751f2ce48a/logo.png differ diff --git a/blockchains/ethereum/assets/0xAee7474c3713eCe228Aa5Ec43C89c708f2Ec7ed2/info.json b/blockchains/ethereum/assets/0xAee7474c3713eCe228Aa5Ec43C89c708f2Ec7ed2/info.json new file mode 100644 index 00000000..bd26f8f7 --- /dev/null +++ b/blockchains/ethereum/assets/0xAee7474c3713eCe228Aa5Ec43C89c708f2Ec7ed2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alphaslot", + "symbol": "SLOT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAee7474c3713eCe228Aa5Ec43C89c708f2Ec7ed2", + "status": "abandoned", + "id": "0xAee7474c3713eCe228Aa5Ec43C89c708f2Ec7ed2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAee7474c3713eCe228Aa5Ec43C89c708f2Ec7ed2/logo.png b/blockchains/ethereum/assets/0xAee7474c3713eCe228Aa5Ec43C89c708f2Ec7ed2/logo.png new file mode 100644 index 00000000..881b1b1e Binary files /dev/null and b/blockchains/ethereum/assets/0xAee7474c3713eCe228Aa5Ec43C89c708f2Ec7ed2/logo.png differ diff --git a/blockchains/ethereum/assets/0xAef38fBFBF932D1AeF3B808Bc8fBd8Cd8E1f8BC5/info.json b/blockchains/ethereum/assets/0xAef38fBFBF932D1AeF3B808Bc8fBd8Cd8E1f8BC5/info.json new file mode 100644 index 00000000..bc678390 --- /dev/null +++ b/blockchains/ethereum/assets/0xAef38fBFBF932D1AeF3B808Bc8fBd8Cd8E1f8BC5/info.json @@ -0,0 +1,11 @@ +{ + "name": "CreditBIT", + "symbol": "CRB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.creditbit.org/", + "explorer": "https://etherscan.io/token/0xAef38fBFBF932D1AeF3B808Bc8fBd8Cd8E1f8BC5", + "status": "abandoned", + "id": "0xAef38fBFBF932D1AeF3B808Bc8fBd8Cd8E1f8BC5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAef38fBFBF932D1AeF3B808Bc8fBd8Cd8E1f8BC5/logo.png b/blockchains/ethereum/assets/0xAef38fBFBF932D1AeF3B808Bc8fBd8Cd8E1f8BC5/logo.png new file mode 100755 index 00000000..da8b3ee8 Binary files /dev/null and b/blockchains/ethereum/assets/0xAef38fBFBF932D1AeF3B808Bc8fBd8Cd8E1f8BC5/logo.png differ diff --git a/blockchains/ethereum/assets/0xAf0760a00f6C20A46cfDFfbD4d0aD610BB59ac81/info.json b/blockchains/ethereum/assets/0xAf0760a00f6C20A46cfDFfbD4d0aD610BB59ac81/info.json new file mode 100644 index 00000000..4ba7482a --- /dev/null +++ b/blockchains/ethereum/assets/0xAf0760a00f6C20A46cfDFfbD4d0aD610BB59ac81/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ether Classic", + "symbol": "ETCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAf0760a00f6C20A46cfDFfbD4d0aD610BB59ac81", + "status": "abandoned", + "id": "0xAf0760a00f6C20A46cfDFfbD4d0aD610BB59ac81" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAf0760a00f6C20A46cfDFfbD4d0aD610BB59ac81/logo.png b/blockchains/ethereum/assets/0xAf0760a00f6C20A46cfDFfbD4d0aD610BB59ac81/logo.png new file mode 100644 index 00000000..5f4193fb Binary files /dev/null and b/blockchains/ethereum/assets/0xAf0760a00f6C20A46cfDFfbD4d0aD610BB59ac81/logo.png differ diff --git a/blockchains/ethereum/assets/0xAf162491C0B21900C01F4Cc0F7110238AAcdebE7/info.json b/blockchains/ethereum/assets/0xAf162491C0B21900C01F4Cc0F7110238AAcdebE7/info.json new file mode 100644 index 00000000..10bf8242 --- /dev/null +++ b/blockchains/ethereum/assets/0xAf162491C0B21900C01F4Cc0F7110238AAcdebE7/info.json @@ -0,0 +1,11 @@ +{ + "name": "arcane bear", + "symbol": "BEAR", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAf162491C0B21900C01F4Cc0F7110238AAcdebE7", + "status": "abandoned", + "id": "0xAf162491C0B21900C01F4Cc0F7110238AAcdebE7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAf162491C0B21900C01F4Cc0F7110238AAcdebE7/logo.png b/blockchains/ethereum/assets/0xAf162491C0B21900C01F4Cc0F7110238AAcdebE7/logo.png new file mode 100644 index 00000000..e500e858 Binary files /dev/null and b/blockchains/ethereum/assets/0xAf162491C0B21900C01F4Cc0F7110238AAcdebE7/logo.png differ diff --git a/blockchains/ethereum/assets/0xAf30D2a7E90d7DC361c8C4585e9BB7D2F6f15bc7/info.json b/blockchains/ethereum/assets/0xAf30D2a7E90d7DC361c8C4585e9BB7D2F6f15bc7/info.json new file mode 100644 index 00000000..b89553ac --- /dev/null +++ b/blockchains/ethereum/assets/0xAf30D2a7E90d7DC361c8C4585e9BB7D2F6f15bc7/info.json @@ -0,0 +1,11 @@ +{ + "name": "FirstBlood Token", + "symbol": "1ST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://firstblood.io/", + "explorer": "https://etherscan.io/token/0xAf30D2a7E90d7DC361c8C4585e9BB7D2F6f15bc7", + "status": "abandoned", + "id": "0xAf30D2a7E90d7DC361c8C4585e9BB7D2F6f15bc7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAf30D2a7E90d7DC361c8C4585e9BB7D2F6f15bc7/logo.png b/blockchains/ethereum/assets/0xAf30D2a7E90d7DC361c8C4585e9BB7D2F6f15bc7/logo.png new file mode 100644 index 00000000..381b7864 Binary files /dev/null and b/blockchains/ethereum/assets/0xAf30D2a7E90d7DC361c8C4585e9BB7D2F6f15bc7/logo.png differ diff --git a/blockchains/ethereum/assets/0xAf36c01a1e8EFeE2eC26C717d3043aa4f84A3B25/info.json b/blockchains/ethereum/assets/0xAf36c01a1e8EFeE2eC26C717d3043aa4f84A3B25/info.json new file mode 100644 index 00000000..cc293dc8 --- /dev/null +++ b/blockchains/ethereum/assets/0xAf36c01a1e8EFeE2eC26C717d3043aa4f84A3B25/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R876626", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAf36c01a1e8EFeE2eC26C717d3043aa4f84A3B25", + "status": "abandoned", + "id": "0xAf36c01a1e8EFeE2eC26C717d3043aa4f84A3B25" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAf36c01a1e8EFeE2eC26C717d3043aa4f84A3B25/logo.png b/blockchains/ethereum/assets/0xAf36c01a1e8EFeE2eC26C717d3043aa4f84A3B25/logo.png new file mode 100644 index 00000000..e615ff8a Binary files /dev/null and b/blockchains/ethereum/assets/0xAf36c01a1e8EFeE2eC26C717d3043aa4f84A3B25/logo.png differ diff --git a/blockchains/ethereum/assets/0xAf40C5cC4c08a173E6FA3E43f8809794Bc38E961/info.json b/blockchains/ethereum/assets/0xAf40C5cC4c08a173E6FA3E43f8809794Bc38E961/info.json new file mode 100644 index 00000000..0c07f18b --- /dev/null +++ b/blockchains/ethereum/assets/0xAf40C5cC4c08a173E6FA3E43f8809794Bc38E961/info.json @@ -0,0 +1,11 @@ +{ + "name": "Retup DEX", + "symbol": "RDT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAf40C5cC4c08a173E6FA3E43f8809794Bc38E961", + "status": "abandoned", + "id": "0xAf40C5cC4c08a173E6FA3E43f8809794Bc38E961" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAf40C5cC4c08a173E6FA3E43f8809794Bc38E961/logo.png b/blockchains/ethereum/assets/0xAf40C5cC4c08a173E6FA3E43f8809794Bc38E961/logo.png new file mode 100644 index 00000000..44209a23 Binary files /dev/null and b/blockchains/ethereum/assets/0xAf40C5cC4c08a173E6FA3E43f8809794Bc38E961/logo.png differ diff --git a/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/info.json b/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/info.json new file mode 100644 index 00000000..9c0a82b3 --- /dev/null +++ b/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/info.json @@ -0,0 +1,11 @@ +{ + "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://etherscan.io/token/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6", + "type": "ERC20", + "symbol": "STG", + "decimals": 18, + "status": "active", + "id": "0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/logo.png b/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/logo.png new file mode 100644 index 00000000..49d61fc7 Binary files /dev/null and b/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/logo.png differ diff --git a/blockchains/ethereum/assets/0xAf55F3B7DC65c8f9577cf00C8C5CA7b6E8Cc4433/info.json b/blockchains/ethereum/assets/0xAf55F3B7DC65c8f9577cf00C8C5CA7b6E8Cc4433/info.json new file mode 100644 index 00000000..1dfe6e07 --- /dev/null +++ b/blockchains/ethereum/assets/0xAf55F3B7DC65c8f9577cf00C8C5CA7b6E8Cc4433/info.json @@ -0,0 +1,11 @@ +{ + "name": "Enter-Coin", + "symbol": "ENTRC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAf55F3B7DC65c8f9577cf00C8C5CA7b6E8Cc4433", + "status": "abandoned", + "id": "0xAf55F3B7DC65c8f9577cf00C8C5CA7b6E8Cc4433" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAf55F3B7DC65c8f9577cf00C8C5CA7b6E8Cc4433/logo.png b/blockchains/ethereum/assets/0xAf55F3B7DC65c8f9577cf00C8C5CA7b6E8Cc4433/logo.png new file mode 100644 index 00000000..84788b86 Binary files /dev/null and b/blockchains/ethereum/assets/0xAf55F3B7DC65c8f9577cf00C8C5CA7b6E8Cc4433/logo.png differ diff --git a/blockchains/ethereum/assets/0xAf8A215e81FAea7C180CE22b72483525121813BD/info.json b/blockchains/ethereum/assets/0xAf8A215e81FAea7C180CE22b72483525121813BD/info.json new file mode 100644 index 00000000..40ed6183 --- /dev/null +++ b/blockchains/ethereum/assets/0xAf8A215e81FAea7C180CE22b72483525121813BD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Engine Token", + "symbol": "EGCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.egcchain.com/", + "explorer": "https://etherscan.io/token/0xAf8A215e81FAea7C180CE22b72483525121813BD", + "status": "abandoned", + "id": "0xAf8A215e81FAea7C180CE22b72483525121813BD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAf8A215e81FAea7C180CE22b72483525121813BD/logo.png b/blockchains/ethereum/assets/0xAf8A215e81FAea7C180CE22b72483525121813BD/logo.png new file mode 100755 index 00000000..35b73329 Binary files /dev/null and b/blockchains/ethereum/assets/0xAf8A215e81FAea7C180CE22b72483525121813BD/logo.png differ diff --git a/blockchains/ethereum/assets/0xAfE8ba38ec668DB1D30c805C40983839bf8B4278/info.json b/blockchains/ethereum/assets/0xAfE8ba38ec668DB1D30c805C40983839bf8B4278/info.json new file mode 100644 index 00000000..21ed93a8 --- /dev/null +++ b/blockchains/ethereum/assets/0xAfE8ba38ec668DB1D30c805C40983839bf8B4278/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wechain Network", + "symbol": "WCN", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xAfE8ba38ec668DB1D30c805C40983839bf8B4278", + "status": "abandoned", + "id": "0xAfE8ba38ec668DB1D30c805C40983839bf8B4278" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAfE8ba38ec668DB1D30c805C40983839bf8B4278/logo.png b/blockchains/ethereum/assets/0xAfE8ba38ec668DB1D30c805C40983839bf8B4278/logo.png new file mode 100644 index 00000000..b552f530 Binary files /dev/null and b/blockchains/ethereum/assets/0xAfE8ba38ec668DB1D30c805C40983839bf8B4278/logo.png differ diff --git a/blockchains/ethereum/assets/0xAfe6851C1D9ee2E759ACDEE8cFC827E22a9eC5d7/info.json b/blockchains/ethereum/assets/0xAfe6851C1D9ee2E759ACDEE8cFC827E22a9eC5d7/info.json new file mode 100644 index 00000000..5a0d5702 --- /dev/null +++ b/blockchains/ethereum/assets/0xAfe6851C1D9ee2E759ACDEE8cFC827E22a9eC5d7/info.json @@ -0,0 +1,11 @@ +{ + "name": "DigitalCommunityShare", + "type": "ERC20", + "symbol": "DCS", + "decimals": 0, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0xafe6851c1d9ee2e759acdee8cfc827e22a9ec5d7", + "status": "active", + "id": "0xAfe6851C1D9ee2E759ACDEE8cFC827E22a9eC5d7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAfe6851C1D9ee2E759ACDEE8cFC827E22a9eC5d7/logo.png b/blockchains/ethereum/assets/0xAfe6851C1D9ee2E759ACDEE8cFC827E22a9eC5d7/logo.png new file mode 100644 index 00000000..8f31846e Binary files /dev/null and b/blockchains/ethereum/assets/0xAfe6851C1D9ee2E759ACDEE8cFC827E22a9eC5d7/logo.png differ diff --git a/blockchains/ethereum/assets/0xB00934c2694deF3f90aDb8Ce55Ca54fcF230C2D9/info.json b/blockchains/ethereum/assets/0xB00934c2694deF3f90aDb8Ce55Ca54fcF230C2D9/info.json new file mode 100644 index 00000000..b4aa90b7 --- /dev/null +++ b/blockchains/ethereum/assets/0xB00934c2694deF3f90aDb8Ce55Ca54fcF230C2D9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Slicer", + "symbol": "SLCR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://slicertoken.com", + "explorer": "https://etherscan.io/token/0xB00934c2694deF3f90aDb8Ce55Ca54fcF230C2D9", + "status": "abandoned", + "id": "0xB00934c2694deF3f90aDb8Ce55Ca54fcF230C2D9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB00934c2694deF3f90aDb8Ce55Ca54fcF230C2D9/logo.png b/blockchains/ethereum/assets/0xB00934c2694deF3f90aDb8Ce55Ca54fcF230C2D9/logo.png new file mode 100755 index 00000000..0120250d Binary files /dev/null and b/blockchains/ethereum/assets/0xB00934c2694deF3f90aDb8Ce55Ca54fcF230C2D9/logo.png differ diff --git a/blockchains/ethereum/assets/0xB026840Be538828F3a43520420e69FC8548F5EF8/info.json b/blockchains/ethereum/assets/0xB026840Be538828F3a43520420e69FC8548F5EF8/info.json new file mode 100644 index 00000000..e8033005 --- /dev/null +++ b/blockchains/ethereum/assets/0xB026840Be538828F3a43520420e69FC8548F5EF8/info.json @@ -0,0 +1,11 @@ +{ + "name": "FoodSafetyChain", + "symbol": "FSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB026840Be538828F3a43520420e69FC8548F5EF8", + "status": "abandoned", + "id": "0xB026840Be538828F3a43520420e69FC8548F5EF8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB026840Be538828F3a43520420e69FC8548F5EF8/logo.png b/blockchains/ethereum/assets/0xB026840Be538828F3a43520420e69FC8548F5EF8/logo.png new file mode 100644 index 00000000..8ccee474 Binary files /dev/null and b/blockchains/ethereum/assets/0xB026840Be538828F3a43520420e69FC8548F5EF8/logo.png differ diff --git a/blockchains/ethereum/assets/0xB02cDc19d0612b3bF355af03dB8979AB36693386/info.json b/blockchains/ethereum/assets/0xB02cDc19d0612b3bF355af03dB8979AB36693386/info.json new file mode 100644 index 00000000..555fcbb3 --- /dev/null +++ b/blockchains/ethereum/assets/0xB02cDc19d0612b3bF355af03dB8979AB36693386/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hacienda", + "symbol": "HACI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB02cDc19d0612b3bF355af03dB8979AB36693386", + "status": "abandoned", + "id": "0xB02cDc19d0612b3bF355af03dB8979AB36693386" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB02cDc19d0612b3bF355af03dB8979AB36693386/logo.png b/blockchains/ethereum/assets/0xB02cDc19d0612b3bF355af03dB8979AB36693386/logo.png new file mode 100644 index 00000000..9a45c3c5 Binary files /dev/null and b/blockchains/ethereum/assets/0xB02cDc19d0612b3bF355af03dB8979AB36693386/logo.png differ diff --git a/blockchains/ethereum/assets/0xB0514a5b4Aa58aC6E954f537598dD42a71916581/info.json b/blockchains/ethereum/assets/0xB0514a5b4Aa58aC6E954f537598dD42a71916581/info.json new file mode 100644 index 00000000..815adadf --- /dev/null +++ b/blockchains/ethereum/assets/0xB0514a5b4Aa58aC6E954f537598dD42a71916581/info.json @@ -0,0 +1,11 @@ +{ + "name": "HUMToken", + "symbol": "HUM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB0514a5b4Aa58aC6E954f537598dD42a71916581", + "status": "abandoned", + "id": "0xB0514a5b4Aa58aC6E954f537598dD42a71916581" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB0514a5b4Aa58aC6E954f537598dD42a71916581/logo.png b/blockchains/ethereum/assets/0xB0514a5b4Aa58aC6E954f537598dD42a71916581/logo.png new file mode 100644 index 00000000..552fd637 Binary files /dev/null and b/blockchains/ethereum/assets/0xB0514a5b4Aa58aC6E954f537598dD42a71916581/logo.png differ diff --git a/blockchains/ethereum/assets/0xB07ec2c28834B889b1CE527Ca0F19364cD38935c/info.json b/blockchains/ethereum/assets/0xB07ec2c28834B889b1CE527Ca0F19364cD38935c/info.json new file mode 100644 index 00000000..769bf7d6 --- /dev/null +++ b/blockchains/ethereum/assets/0xB07ec2c28834B889b1CE527Ca0F19364cD38935c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cardstack", + "type": "ERC20", + "symbol": "CARD", + "decimals": 18, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0xb07ec2c28834b889b1ce527ca0f19364cd38935c", + "status": "active", + "id": "0xB07ec2c28834B889b1CE527Ca0F19364cD38935c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB07ec2c28834B889b1CE527Ca0F19364cD38935c/logo.png b/blockchains/ethereum/assets/0xB07ec2c28834B889b1CE527Ca0F19364cD38935c/logo.png new file mode 100644 index 00000000..9b277d0e Binary files /dev/null and b/blockchains/ethereum/assets/0xB07ec2c28834B889b1CE527Ca0F19364cD38935c/logo.png differ diff --git a/blockchains/ethereum/assets/0xB08F303E5e30d8bd50cB991dB07A55C506e61F23/info.json b/blockchains/ethereum/assets/0xB08F303E5e30d8bd50cB991dB07A55C506e61F23/info.json new file mode 100644 index 00000000..08e6cc85 --- /dev/null +++ b/blockchains/ethereum/assets/0xB08F303E5e30d8bd50cB991dB07A55C506e61F23/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethwidget", + "symbol": "EWDG2", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB08F303E5e30d8bd50cB991dB07A55C506e61F23", + "status": "abandoned", + "id": "0xB08F303E5e30d8bd50cB991dB07A55C506e61F23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB08F303E5e30d8bd50cB991dB07A55C506e61F23/logo.png b/blockchains/ethereum/assets/0xB08F303E5e30d8bd50cB991dB07A55C506e61F23/logo.png new file mode 100644 index 00000000..c9868c58 Binary files /dev/null and b/blockchains/ethereum/assets/0xB08F303E5e30d8bd50cB991dB07A55C506e61F23/logo.png differ diff --git a/blockchains/ethereum/assets/0xB0BFB1E2F72511cF8b4D004852E2054d7b9a76e1/info.json b/blockchains/ethereum/assets/0xB0BFB1E2F72511cF8b4D004852E2054d7b9a76e1/info.json new file mode 100644 index 00000000..80c3826d --- /dev/null +++ b/blockchains/ethereum/assets/0xB0BFB1E2F72511cF8b4D004852E2054d7b9a76e1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Streamix", + "website": "https://streamix.io/", + "description": "Streamix (MIXS) is a combination of world s first cryptocurrency exchange and a Social Media platform which will let users socialize, post images, post and stream videos, trade crypto, play games and earn cryptocurrencies as rewards at the same time. Streamix platform utilizes Streamix (MIXS) a non security ERC20 utility crypto token. Rewarded MIXS tokens can be used on Streamix platform, or any affiliated platforms to trade, make purchases, and get discounts.", + "explorer": "https://etherscan.io/token/0xB0BFB1E2F72511cF8b4D004852E2054d7b9a76e1", + "type": "ERC20", + "symbol": "MIXS", + "decimals": 18, + "status": "active", + "id": "0xB0BFB1E2F72511cF8b4D004852E2054d7b9a76e1", + "links": [ + { + "name": "x", + "url": "https://x.com/Streamixio" + }, + { + "name": "whitepaper", + "url": "https://streamix.io/Whitepaper-MIXS-PDF.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB0BFB1E2F72511cF8b4D004852E2054d7b9a76e1/logo.png b/blockchains/ethereum/assets/0xB0BFB1E2F72511cF8b4D004852E2054d7b9a76e1/logo.png new file mode 100644 index 00000000..3515dc09 Binary files /dev/null and b/blockchains/ethereum/assets/0xB0BFB1E2F72511cF8b4D004852E2054d7b9a76e1/logo.png differ diff --git a/blockchains/ethereum/assets/0xB0DD7c86b9FB49A5a2377111d9b5EEDeF2f99880/info.json b/blockchains/ethereum/assets/0xB0DD7c86b9FB49A5a2377111d9b5EEDeF2f99880/info.json new file mode 100644 index 00000000..fb9d94ed --- /dev/null +++ b/blockchains/ethereum/assets/0xB0DD7c86b9FB49A5a2377111d9b5EEDeF2f99880/info.json @@ -0,0 +1,11 @@ +{ + "name": "NVTNetworkToken", + "symbol": "NVT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB0DD7c86b9FB49A5a2377111d9b5EEDeF2f99880", + "status": "abandoned", + "id": "0xB0DD7c86b9FB49A5a2377111d9b5EEDeF2f99880" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB0DD7c86b9FB49A5a2377111d9b5EEDeF2f99880/logo.png b/blockchains/ethereum/assets/0xB0DD7c86b9FB49A5a2377111d9b5EEDeF2f99880/logo.png new file mode 100644 index 00000000..1b75b117 Binary files /dev/null and b/blockchains/ethereum/assets/0xB0DD7c86b9FB49A5a2377111d9b5EEDeF2f99880/logo.png differ diff --git a/blockchains/ethereum/assets/0xB0F14f66caE71164D89E8a0cf0875eF2c32Fb660/info.json b/blockchains/ethereum/assets/0xB0F14f66caE71164D89E8a0cf0875eF2c32Fb660/info.json new file mode 100644 index 00000000..39007d6f --- /dev/null +++ b/blockchains/ethereum/assets/0xB0F14f66caE71164D89E8a0cf0875eF2c32Fb660/info.json @@ -0,0 +1,11 @@ +{ + "name": "CTAGToken", + "symbol": "CTAG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://ctagtoken.com/", + "explorer": "https://etherscan.io/token/0xB0F14f66caE71164D89E8a0cf0875eF2c32Fb660", + "status": "abandoned", + "id": "0xB0F14f66caE71164D89E8a0cf0875eF2c32Fb660" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB0F14f66caE71164D89E8a0cf0875eF2c32Fb660/logo.png b/blockchains/ethereum/assets/0xB0F14f66caE71164D89E8a0cf0875eF2c32Fb660/logo.png new file mode 100644 index 00000000..d1a82c73 Binary files /dev/null and b/blockchains/ethereum/assets/0xB0F14f66caE71164D89E8a0cf0875eF2c32Fb660/logo.png differ diff --git a/blockchains/ethereum/assets/0xB0F85CD17d25b6518F0Ae1A0B80ac1D7Dd3a0B23/info.json b/blockchains/ethereum/assets/0xB0F85CD17d25b6518F0Ae1A0B80ac1D7Dd3a0B23/info.json new file mode 100644 index 00000000..1b2d7b07 --- /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/0xB0b18830491097b5CFb0B6131C2eBF683FAdA891/info.json b/blockchains/ethereum/assets/0xB0b18830491097b5CFb0B6131C2eBF683FAdA891/info.json new file mode 100644 index 00000000..6df5b92b --- /dev/null +++ b/blockchains/ethereum/assets/0xB0b18830491097b5CFb0B6131C2eBF683FAdA891/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Titanium", + "symbol": "ETHT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB0b18830491097b5CFb0B6131C2eBF683FAdA891", + "status": "abandoned", + "id": "0xB0b18830491097b5CFb0B6131C2eBF683FAdA891" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB0b18830491097b5CFb0B6131C2eBF683FAdA891/logo.png b/blockchains/ethereum/assets/0xB0b18830491097b5CFb0B6131C2eBF683FAdA891/logo.png new file mode 100644 index 00000000..e469b01a Binary files /dev/null and b/blockchains/ethereum/assets/0xB0b18830491097b5CFb0B6131C2eBF683FAdA891/logo.png differ diff --git a/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/info.json b/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/info.json new file mode 100644 index 00000000..2e73b96b --- /dev/null +++ b/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/info.json @@ -0,0 +1,32 @@ +{ + "name": "MAGIC", + "type": "ERC20", + "symbol": "MAGIC", + "decimals": 18, + "website": "https://treasure.lol/", + "description": "Treasure is the decentralized gaming ecosystem bringing games and players together through MAGIC.", + "explorer": "https://etherscan.io/token/0xb0c7a3ba49c7a6eaba6cd4a96c55a1391070ac9a", + "status": "active", + "id": "0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A", + "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/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/logo.png b/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/logo.png new file mode 100644 index 00000000..eb99be64 Binary files /dev/null and b/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/logo.png differ diff --git a/blockchains/ethereum/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json b/blockchains/ethereum/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json new file mode 100644 index 00000000..0b7f6cdd --- /dev/null +++ b/blockchains/ethereum/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json @@ -0,0 +1,33 @@ +{ + "name": "Impossible Finance", + "website": "https://impossible.finance", + "description": "Impossible Finance is a builder-focused multichain ecosystem featuring decentralized incubator, launchpad, and swap. IF is the governance and fee accrual token for the swap.", + "explorer": "https://etherscan.io/token/0xb0e1fc65c1a741b4662b813eb787d369b8614af1", + "type": "ERC20", + "symbol": "IF", + "decimals": 18, + "status": "active", + "id": "0xB0e1fc65C1a741b4662B813eB787d369b8614Af1", + "links": [ + { + "name": "github", + "url": "https://github.com/impossiblefinance" + }, + { + "name": "x", + "url": "https://x.com/impossiblefi" + }, + { + "name": "blog", + "url": "https://medium.com/impossiblefinance" + }, + { + "name": "telegram", + "url": "https://t.me/ImpossibleFinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/impossible-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/logo.png b/blockchains/ethereum/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/logo.png new file mode 100644 index 00000000..320f13c6 Binary files /dev/null and b/blockchains/ethereum/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/logo.png differ diff --git a/blockchains/ethereum/assets/0xB0fFa8000886e57F86dd5264b9582b2Ad87b2b91/info.json b/blockchains/ethereum/assets/0xB0fFa8000886e57F86dd5264b9582b2Ad87b2b91/info.json new file mode 100644 index 00000000..5b844ac2 --- /dev/null +++ b/blockchains/ethereum/assets/0xB0fFa8000886e57F86dd5264b9582b2Ad87b2b91/info.json @@ -0,0 +1,25 @@ +{ + "name": "Wormhole Token", + "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 00000000..a4308957 Binary files /dev/null and b/blockchains/ethereum/assets/0xB0fFa8000886e57F86dd5264b9582b2Ad87b2b91/logo.png differ diff --git a/blockchains/ethereum/assets/0xB110eC7B1dcb8FAB8dEDbf28f53Bc63eA5BEdd84/info.json b/blockchains/ethereum/assets/0xB110eC7B1dcb8FAB8dEDbf28f53Bc63eA5BEdd84/info.json new file mode 100644 index 00000000..fb0b6ade --- /dev/null +++ b/blockchains/ethereum/assets/0xB110eC7B1dcb8FAB8dEDbf28f53Bc63eA5BEdd84/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sphre AIR", + "symbol": "XID", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB110eC7B1dcb8FAB8dEDbf28f53Bc63eA5BEdd84", + "status": "abandoned", + "id": "0xB110eC7B1dcb8FAB8dEDbf28f53Bc63eA5BEdd84" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB110eC7B1dcb8FAB8dEDbf28f53Bc63eA5BEdd84/logo.png b/blockchains/ethereum/assets/0xB110eC7B1dcb8FAB8dEDbf28f53Bc63eA5BEdd84/logo.png new file mode 100644 index 00000000..b4b450bc Binary files /dev/null and b/blockchains/ethereum/assets/0xB110eC7B1dcb8FAB8dEDbf28f53Bc63eA5BEdd84/logo.png differ diff --git a/blockchains/ethereum/assets/0xB119Ce94D098C18fe380904c24e358bd887F00BE/info.json b/blockchains/ethereum/assets/0xB119Ce94D098C18fe380904c24e358bd887F00BE/info.json new file mode 100644 index 00000000..6951afad --- /dev/null +++ b/blockchains/ethereum/assets/0xB119Ce94D098C18fe380904c24e358bd887F00BE/info.json @@ -0,0 +1,11 @@ +{ + "name": "MACH Exchange", + "symbol": "MACH", + "type": "ERC20", + "decimals": 18, + "description": "MACH aims to create a P2P asset trading platform. Users will be able to trade their assets such as online/offline goods and crypto-currencies. It is reportedly supported by an escrow system and AI-Chatbot.", + "website": "https://mymach.io/", + "explorer": "https://etherscan.io/token/0xB119Ce94D098C18fe380904c24e358bd887F00BE", + "status": "active", + "id": "0xB119Ce94D098C18fe380904c24e358bd887F00BE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB119Ce94D098C18fe380904c24e358bd887F00BE/logo.png b/blockchains/ethereum/assets/0xB119Ce94D098C18fe380904c24e358bd887F00BE/logo.png new file mode 100644 index 00000000..e4329779 Binary files /dev/null and b/blockchains/ethereum/assets/0xB119Ce94D098C18fe380904c24e358bd887F00BE/logo.png differ diff --git a/blockchains/ethereum/assets/0xB124541127A0A657f056D9Dd06188c4F1b0e5aab/info.json b/blockchains/ethereum/assets/0xB124541127A0A657f056D9Dd06188c4F1b0e5aab/info.json new file mode 100644 index 00000000..6f6c15fc --- /dev/null +++ b/blockchains/ethereum/assets/0xB124541127A0A657f056D9Dd06188c4F1b0e5aab/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave UNI V1", + "symbol": "aUNI V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave UNI V1 is an interest bearing token pegged 1:1 to the underlying UNI deposited in Aave V1. aUNI V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xB124541127A0A657f056D9Dd06188c4F1b0e5aab", + "status": "active", + "id": "0xB124541127A0A657f056D9Dd06188c4F1b0e5aab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB124541127A0A657f056D9Dd06188c4F1b0e5aab/logo.png b/blockchains/ethereum/assets/0xB124541127A0A657f056D9Dd06188c4F1b0e5aab/logo.png new file mode 100644 index 00000000..78ddfe60 Binary files /dev/null and b/blockchains/ethereum/assets/0xB124541127A0A657f056D9Dd06188c4F1b0e5aab/logo.png differ diff --git a/blockchains/ethereum/assets/0xB14cc02F02528Af4A192B7B502218C5Eaf251cf9/info.json b/blockchains/ethereum/assets/0xB14cc02F02528Af4A192B7B502218C5Eaf251cf9/info.json new file mode 100644 index 00000000..118688a0 --- /dev/null +++ b/blockchains/ethereum/assets/0xB14cc02F02528Af4A192B7B502218C5Eaf251cf9/info.json @@ -0,0 +1,11 @@ +{ + "name": "NABS", + "symbol": "NBS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB14cc02F02528Af4A192B7B502218C5Eaf251cf9", + "status": "abandoned", + "id": "0xB14cc02F02528Af4A192B7B502218C5Eaf251cf9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB14cc02F02528Af4A192B7B502218C5Eaf251cf9/logo.png b/blockchains/ethereum/assets/0xB14cc02F02528Af4A192B7B502218C5Eaf251cf9/logo.png new file mode 100644 index 00000000..cf3b1783 Binary files /dev/null and b/blockchains/ethereum/assets/0xB14cc02F02528Af4A192B7B502218C5Eaf251cf9/logo.png differ diff --git a/blockchains/ethereum/assets/0xB15fE5a123e647ba594CEa7A1E648646f95EB4AA/info.json b/blockchains/ethereum/assets/0xB15fE5a123e647ba594CEa7A1E648646f95EB4AA/info.json new file mode 100644 index 00000000..fdb182cb --- /dev/null +++ b/blockchains/ethereum/assets/0xB15fE5a123e647ba594CEa7A1E648646f95EB4AA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sharder Storage", + "symbol": "SS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://sharder.org", + "explorer": "https://etherscan.io/token/0xB15fE5a123e647ba594CEa7A1E648646f95EB4AA", + "status": "abandoned", + "id": "0xB15fE5a123e647ba594CEa7A1E648646f95EB4AA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB15fE5a123e647ba594CEa7A1E648646f95EB4AA/logo.png b/blockchains/ethereum/assets/0xB15fE5a123e647ba594CEa7A1E648646f95EB4AA/logo.png new file mode 100644 index 00000000..ce99486d Binary files /dev/null and b/blockchains/ethereum/assets/0xB15fE5a123e647ba594CEa7A1E648646f95EB4AA/logo.png differ diff --git a/blockchains/ethereum/assets/0xB16F79BbcA351D53FC91A52a70Eb9D672Aa95286/info.json b/blockchains/ethereum/assets/0xB16F79BbcA351D53FC91A52a70Eb9D672Aa95286/info.json new file mode 100644 index 00000000..5e3dd914 --- /dev/null +++ b/blockchains/ethereum/assets/0xB16F79BbcA351D53FC91A52a70Eb9D672Aa95286/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLASH", + "symbol": "BLASH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB16F79BbcA351D53FC91A52a70Eb9D672Aa95286", + "status": "abandoned", + "id": "0xB16F79BbcA351D53FC91A52a70Eb9D672Aa95286" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB16F79BbcA351D53FC91A52a70Eb9D672Aa95286/logo.png b/blockchains/ethereum/assets/0xB16F79BbcA351D53FC91A52a70Eb9D672Aa95286/logo.png new file mode 100644 index 00000000..4290e95b Binary files /dev/null and b/blockchains/ethereum/assets/0xB16F79BbcA351D53FC91A52a70Eb9D672Aa95286/logo.png differ diff --git a/blockchains/ethereum/assets/0xB16d3Ed603D62b125c6bd45519EDa40829549489/info.json b/blockchains/ethereum/assets/0xB16d3Ed603D62b125c6bd45519EDa40829549489/info.json new file mode 100644 index 00000000..4fb544ff --- /dev/null +++ b/blockchains/ethereum/assets/0xB16d3Ed603D62b125c6bd45519EDa40829549489/info.json @@ -0,0 +1,11 @@ +{ + "name": "Insureum Token", + "symbol": "ISR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://insureum.co/", + "explorer": "https://etherscan.io/token/0xB16d3Ed603D62b125c6bd45519EDa40829549489", + "status": "abandoned", + "id": "0xB16d3Ed603D62b125c6bd45519EDa40829549489" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB16d3Ed603D62b125c6bd45519EDa40829549489/logo.png b/blockchains/ethereum/assets/0xB16d3Ed603D62b125c6bd45519EDa40829549489/logo.png new file mode 100644 index 00000000..921dfb05 Binary files /dev/null and b/blockchains/ethereum/assets/0xB16d3Ed603D62b125c6bd45519EDa40829549489/logo.png differ diff --git a/blockchains/ethereum/assets/0xB16e967ff83DE3F1e9FCeAfbc2C28c1c5c56eF91/info.json b/blockchains/ethereum/assets/0xB16e967ff83DE3F1e9FCeAfbc2C28c1c5c56eF91/info.json new file mode 100644 index 00000000..b5816645 --- /dev/null +++ b/blockchains/ethereum/assets/0xB16e967ff83DE3F1e9FCeAfbc2C28c1c5c56eF91/info.json @@ -0,0 +1,11 @@ +{ + "name": "Polkadog", + "website": "https://polkadog.io", + "description": "Polkadog (PDOG) is a DeFi project that automatically provides rewards to users who hold the token via frictionless fee redistribution. Polkadog presents Polkaswap, the DEX for the interoperable future, and as a fair launch community, there are no pre-sales, no token sales, no private sales.", + "explorer": "https://etherscan.io/token/0xb16e967ff83de3f1e9fceafbc2c28c1c5c56ef91", + "type": "ERC20", + "symbol": "PDOG", + "decimals": 18, + "status": "active", + "id": "0xB16e967ff83DE3F1e9FCeAfbc2C28c1c5c56eF91" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB16e967ff83DE3F1e9FCeAfbc2C28c1c5c56eF91/logo.png b/blockchains/ethereum/assets/0xB16e967ff83DE3F1e9FCeAfbc2C28c1c5c56eF91/logo.png new file mode 100644 index 00000000..6d4ab375 Binary files /dev/null and b/blockchains/ethereum/assets/0xB16e967ff83DE3F1e9FCeAfbc2C28c1c5c56eF91/logo.png differ diff --git a/blockchains/ethereum/assets/0xB17548c7B510427baAc4e267BEa62e800b247173/info.json b/blockchains/ethereum/assets/0xB17548c7B510427baAc4e267BEa62e800b247173/info.json new file mode 100644 index 00000000..10636f74 --- /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 00000000..dbe78474 Binary files /dev/null and b/blockchains/ethereum/assets/0xB17548c7B510427baAc4e267BEa62e800b247173/logo.png differ diff --git a/blockchains/ethereum/assets/0xB17DF9a3B09583a9bDCf757d6367171476D4D8a3/info.json b/blockchains/ethereum/assets/0xB17DF9a3B09583a9bDCf757d6367171476D4D8a3/info.json new file mode 100644 index 00000000..83a5e806 --- /dev/null +++ b/blockchains/ethereum/assets/0xB17DF9a3B09583a9bDCf757d6367171476D4D8a3/info.json @@ -0,0 +1,11 @@ +{ + "name": "MaverickChain", + "symbol": "MVC", + "type": "ERC20", + "decimals": 18, + "description": "A BAAS platform serves for global blockchain financial market.", + "website": "http://www.mvchain.net", + "explorer": "https://etherscan.io/token/0xB17DF9a3B09583a9bDCf757d6367171476D4D8a3", + "status": "active", + "id": "0xB17DF9a3B09583a9bDCf757d6367171476D4D8a3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB17DF9a3B09583a9bDCf757d6367171476D4D8a3/logo.png b/blockchains/ethereum/assets/0xB17DF9a3B09583a9bDCf757d6367171476D4D8a3/logo.png new file mode 100644 index 00000000..0ad13691 Binary files /dev/null and b/blockchains/ethereum/assets/0xB17DF9a3B09583a9bDCf757d6367171476D4D8a3/logo.png differ diff --git a/blockchains/ethereum/assets/0xB19977B23b40D59254B8f5A0BdB67076B4FA0bC6/info.json b/blockchains/ethereum/assets/0xB19977B23b40D59254B8f5A0BdB67076B4FA0bC6/info.json new file mode 100644 index 00000000..2568da72 --- /dev/null +++ b/blockchains/ethereum/assets/0xB19977B23b40D59254B8f5A0BdB67076B4FA0bC6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gou", + "symbol": "GOU", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB19977B23b40D59254B8f5A0BdB67076B4FA0bC6", + "status": "abandoned", + "id": "0xB19977B23b40D59254B8f5A0BdB67076B4FA0bC6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB19977B23b40D59254B8f5A0BdB67076B4FA0bC6/logo.png b/blockchains/ethereum/assets/0xB19977B23b40D59254B8f5A0BdB67076B4FA0bC6/logo.png new file mode 100644 index 00000000..0b92c83e Binary files /dev/null and b/blockchains/ethereum/assets/0xB19977B23b40D59254B8f5A0BdB67076B4FA0bC6/logo.png differ diff --git a/blockchains/ethereum/assets/0xB1A2AA53d75c95194df1F475E16Ac421B6D9c059/info.json b/blockchains/ethereum/assets/0xB1A2AA53d75c95194df1F475E16Ac421B6D9c059/info.json new file mode 100644 index 00000000..bcb56507 --- /dev/null +++ b/blockchains/ethereum/assets/0xB1A2AA53d75c95194df1F475E16Ac421B6D9c059/info.json @@ -0,0 +1,11 @@ +{ + "name": "PanaStar", + "symbol": "PTYS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB1A2AA53d75c95194df1F475E16Ac421B6D9c059", + "status": "abandoned", + "id": "0xB1A2AA53d75c95194df1F475E16Ac421B6D9c059" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB1A2AA53d75c95194df1F475E16Ac421B6D9c059/logo.png b/blockchains/ethereum/assets/0xB1A2AA53d75c95194df1F475E16Ac421B6D9c059/logo.png new file mode 100644 index 00000000..6a9b8cff Binary files /dev/null and b/blockchains/ethereum/assets/0xB1A2AA53d75c95194df1F475E16Ac421B6D9c059/logo.png differ diff --git a/blockchains/ethereum/assets/0xB1A30851E3f7d841b231B086479608e17198363A/info.json b/blockchains/ethereum/assets/0xB1A30851E3f7d841b231B086479608e17198363A/info.json new file mode 100644 index 00000000..5930d6f7 --- /dev/null +++ b/blockchains/ethereum/assets/0xB1A30851E3f7d841b231B086479608e17198363A/info.json @@ -0,0 +1,11 @@ +{ + "name": "HOMEROS", + "symbol": "HMR", + "type": "ERC20", + "decimals": 18, + "description": "Homeros is a blockchain-based platform made exclusively for the gaming community.", + "website": "https://homerosnet.com", + "explorer": "https://etherscan.io/token/0xB1A30851E3f7d841b231B086479608e17198363A", + "status": "active", + "id": "0xB1A30851E3f7d841b231B086479608e17198363A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB1A30851E3f7d841b231B086479608e17198363A/logo.png b/blockchains/ethereum/assets/0xB1A30851E3f7d841b231B086479608e17198363A/logo.png new file mode 100644 index 00000000..271c0302 Binary files /dev/null and b/blockchains/ethereum/assets/0xB1A30851E3f7d841b231B086479608e17198363A/logo.png differ diff --git a/blockchains/ethereum/assets/0xB1F2b122139daCD2aD29840E92cbc38716568994/info.json b/blockchains/ethereum/assets/0xB1F2b122139daCD2aD29840E92cbc38716568994/info.json new file mode 100644 index 00000000..06e181a2 --- /dev/null +++ b/blockchains/ethereum/assets/0xB1F2b122139daCD2aD29840E92cbc38716568994/info.json @@ -0,0 +1,11 @@ +{ + "name": "LIBERTY", + "symbol": "LBRTY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB1F2b122139daCD2aD29840E92cbc38716568994", + "status": "abandoned", + "id": "0xB1F2b122139daCD2aD29840E92cbc38716568994" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB1F2b122139daCD2aD29840E92cbc38716568994/logo.png b/blockchains/ethereum/assets/0xB1F2b122139daCD2aD29840E92cbc38716568994/logo.png new file mode 100644 index 00000000..a009a56f Binary files /dev/null and b/blockchains/ethereum/assets/0xB1F2b122139daCD2aD29840E92cbc38716568994/logo.png differ diff --git a/blockchains/ethereum/assets/0xB1cfB2421F6F12EBdA4F9b8d0336518c82e63b2c/info.json b/blockchains/ethereum/assets/0xB1cfB2421F6F12EBdA4F9b8d0336518c82e63b2c/info.json new file mode 100644 index 00000000..b29230e0 --- /dev/null +++ b/blockchains/ethereum/assets/0xB1cfB2421F6F12EBdA4F9b8d0336518c82e63b2c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vocal Chain", + "symbol": "VOC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB1cfB2421F6F12EBdA4F9b8d0336518c82e63b2c", + "status": "abandoned", + "id": "0xB1cfB2421F6F12EBdA4F9b8d0336518c82e63b2c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB1cfB2421F6F12EBdA4F9b8d0336518c82e63b2c/logo.png b/blockchains/ethereum/assets/0xB1cfB2421F6F12EBdA4F9b8d0336518c82e63b2c/logo.png new file mode 100644 index 00000000..678f1d93 Binary files /dev/null and b/blockchains/ethereum/assets/0xB1cfB2421F6F12EBdA4F9b8d0336518c82e63b2c/logo.png differ diff --git a/blockchains/ethereum/assets/0xB1d42642C6DA784A5498180FDC64DF8f8F2bB773/info.json b/blockchains/ethereum/assets/0xB1d42642C6DA784A5498180FDC64DF8f8F2bB773/info.json new file mode 100644 index 00000000..17d99069 --- /dev/null +++ b/blockchains/ethereum/assets/0xB1d42642C6DA784A5498180FDC64DF8f8F2bB773/info.json @@ -0,0 +1,11 @@ +{ + "name": "RealToken 18483 Mansfield Street Detroit MI", + "symbol": "REALTOKEN-18483-MANSFIELD-ST-DETROIT-MI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB1d42642C6DA784A5498180FDC64DF8f8F2bB773", + "status": "abandoned", + "id": "0xB1d42642C6DA784A5498180FDC64DF8f8F2bB773" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB1d42642C6DA784A5498180FDC64DF8f8F2bB773/logo.png b/blockchains/ethereum/assets/0xB1d42642C6DA784A5498180FDC64DF8f8F2bB773/logo.png new file mode 100644 index 00000000..4617b23e Binary files /dev/null and b/blockchains/ethereum/assets/0xB1d42642C6DA784A5498180FDC64DF8f8F2bB773/logo.png differ diff --git a/blockchains/ethereum/assets/0xB1d62534F7BDD98A8DEAae9bDe8294ae3490e6f7/info.json b/blockchains/ethereum/assets/0xB1d62534F7BDD98A8DEAae9bDe8294ae3490e6f7/info.json new file mode 100644 index 00000000..4f839a32 --- /dev/null +++ b/blockchains/ethereum/assets/0xB1d62534F7BDD98A8DEAae9bDe8294ae3490e6f7/info.json @@ -0,0 +1,11 @@ +{ + "name": "FIlmNeverDie", + "symbol": "FND", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB1d62534F7BDD98A8DEAae9bDe8294ae3490e6f7", + "status": "abandoned", + "id": "0xB1d62534F7BDD98A8DEAae9bDe8294ae3490e6f7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB1d62534F7BDD98A8DEAae9bDe8294ae3490e6f7/logo.png b/blockchains/ethereum/assets/0xB1d62534F7BDD98A8DEAae9bDe8294ae3490e6f7/logo.png new file mode 100755 index 00000000..37e18cf1 Binary files /dev/null and b/blockchains/ethereum/assets/0xB1d62534F7BDD98A8DEAae9bDe8294ae3490e6f7/logo.png differ diff --git a/blockchains/ethereum/assets/0xB1e9157c2Fdcc5a856C8DA8b2d89b6C32b3c1229/info.json b/blockchains/ethereum/assets/0xB1e9157c2Fdcc5a856C8DA8b2d89b6C32b3c1229/info.json new file mode 100644 index 00000000..559564ce --- /dev/null +++ b/blockchains/ethereum/assets/0xB1e9157c2Fdcc5a856C8DA8b2d89b6C32b3c1229/info.json @@ -0,0 +1,17 @@ +{ + "name": "Zenfuse", + "website": "https://zenfuse.io", + "description": "The ultimate solution for cryptocurrency trading with built-in connectivity to major exchanges, a next-gen toolset, analytics, portfolio management, news aggregation, set within an ecosystem extensible by developers.", + "explorer": "https://etherscan.io/token/0xb1e9157c2fdcc5a856c8da8b2d89b6c32b3c1229", + "type": "ERC20", + "symbol": "ZEFU", + "decimals": 18, + "status": "active", + "id": "0xB1e9157c2Fdcc5a856C8DA8b2d89b6C32b3c1229", + "links": [ + { + "name": "whitepaper", + "url": "https://zenfuse.io/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB1e9157c2Fdcc5a856C8DA8b2d89b6C32b3c1229/logo.png b/blockchains/ethereum/assets/0xB1e9157c2Fdcc5a856C8DA8b2d89b6C32b3c1229/logo.png new file mode 100644 index 00000000..c1bc180a Binary files /dev/null and b/blockchains/ethereum/assets/0xB1e9157c2Fdcc5a856C8DA8b2d89b6C32b3c1229/logo.png differ diff --git a/blockchains/ethereum/assets/0xB1e93236ab6073fdAC58adA5564897177D4bcC43/info.json b/blockchains/ethereum/assets/0xB1e93236ab6073fdAC58adA5564897177D4bcC43/info.json new file mode 100644 index 00000000..ba76a8ff --- /dev/null +++ b/blockchains/ethereum/assets/0xB1e93236ab6073fdAC58adA5564897177D4bcC43/info.json @@ -0,0 +1,11 @@ +{ + "name": "Seele", + "website": "https://seelen.pro/index_en.html", + "description": "Seele created 'Neural Consensus Algorithm'. It transforms the consensus problem into an asynchronous request, processing and sorting data in a large-scale environment based on 'micro-real numbers'.", + "explorer": "https://etherscan.io/token/0xb1e93236ab6073fdac58ada5564897177d4bcc43", + "type": "ERC20", + "symbol": "Seele", + "decimals": 18, + "status": "active", + "id": "0xB1e93236ab6073fdAC58adA5564897177D4bcC43" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB1e93236ab6073fdAC58adA5564897177D4bcC43/logo.png b/blockchains/ethereum/assets/0xB1e93236ab6073fdAC58adA5564897177D4bcC43/logo.png new file mode 100644 index 00000000..82b69a10 Binary files /dev/null and b/blockchains/ethereum/assets/0xB1e93236ab6073fdAC58adA5564897177D4bcC43/logo.png differ diff --git a/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/info.json b/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/info.json new file mode 100644 index 00000000..a281bf24 --- /dev/null +++ b/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/info.json @@ -0,0 +1,41 @@ +{ + "name": "Flashstake", + "type": "ERC20", + "symbol": "FLASH", + "decimals": 18, + "website": "https://flashstake.io", + "description": "The Flashstake protocol is a novel financial infrastructure that allows users to receive instant yield on deposited assets by locking up principal for a chosen duration. The protocol is made possible by Flash Strategies, which utilize underlying protocols such as AAVE, Yearn, etc. to generate yield. For more information visit the documentation: https://docs.flashstake.io/", + "explorer": "https://etherscan.io/token/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8", + "status": "active", + "id": "0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8", + "links": [ + { + "name": "x", + "url": "https://x.com/Flashstake" + }, + { + "name": "docs", + "url": "https://docs.flashstake.io/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/flashstake" + }, + { + "name": "discord", + "url": "https://discord.com/flashstake" + }, + { + "name": "medium", + "url": "https://medium.com/flashstake-protocol" + }, + { + "name": "youtube", + "url": "https://youtube.com/@flashstake" + } + ], + "tags": [ + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/logo.png b/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/logo.png new file mode 100644 index 00000000..f426f46f Binary files /dev/null and b/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/logo.png differ diff --git a/blockchains/ethereum/assets/0xB1f66997A5760428D3a87D68b90BfE0aE64121cC/info.json b/blockchains/ethereum/assets/0xB1f66997A5760428D3a87D68b90BfE0aE64121cC/info.json new file mode 100644 index 00000000..c556c8a7 --- /dev/null +++ b/blockchains/ethereum/assets/0xB1f66997A5760428D3a87D68b90BfE0aE64121cC/info.json @@ -0,0 +1,11 @@ +{ + "name": "LuaToken", + "website": "https://luaswap.org/", + "description": "Multi-chain liquidity protocol for emerging token projects with no seed investment, founder’s fees, or pre-mining.", + "explorer": "https://etherscan.io/token/0xB1f66997A5760428D3a87D68b90BfE0aE64121cC", + "type": "ERC20", + "symbol": "LUA", + "decimals": 18, + "status": "active", + "id": "0xB1f66997A5760428D3a87D68b90BfE0aE64121cC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB1f66997A5760428D3a87D68b90BfE0aE64121cC/logo.png b/blockchains/ethereum/assets/0xB1f66997A5760428D3a87D68b90BfE0aE64121cC/logo.png new file mode 100644 index 00000000..eff01b25 Binary files /dev/null and b/blockchains/ethereum/assets/0xB1f66997A5760428D3a87D68b90BfE0aE64121cC/logo.png differ diff --git a/blockchains/ethereum/assets/0xB2135AB9695a7678Dd590B1A996CB0f37BCB0718/info.json b/blockchains/ethereum/assets/0xB2135AB9695a7678Dd590B1A996CB0f37BCB0718/info.json new file mode 100644 index 00000000..104c25b7 --- /dev/null +++ b/blockchains/ethereum/assets/0xB2135AB9695a7678Dd590B1A996CB0f37BCB0718/info.json @@ -0,0 +1,11 @@ +{ + "name": "Signals Network Token", + "symbol": "SGN", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "https://signals.network/", + "explorer": "https://etherscan.io/token/0xB2135AB9695a7678Dd590B1A996CB0f37BCB0718", + "status": "abandoned", + "id": "0xB2135AB9695a7678Dd590B1A996CB0f37BCB0718" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB2135AB9695a7678Dd590B1A996CB0f37BCB0718/logo.png b/blockchains/ethereum/assets/0xB2135AB9695a7678Dd590B1A996CB0f37BCB0718/logo.png new file mode 100755 index 00000000..6422c692 Binary files /dev/null and b/blockchains/ethereum/assets/0xB2135AB9695a7678Dd590B1A996CB0f37BCB0718/logo.png differ diff --git a/blockchains/ethereum/assets/0xB2279B6769CFBa691416F00609b16244c0cF4b20/info.json b/blockchains/ethereum/assets/0xB2279B6769CFBa691416F00609b16244c0cF4b20/info.json new file mode 100644 index 00000000..f62d0949 --- /dev/null +++ b/blockchains/ethereum/assets/0xB2279B6769CFBa691416F00609b16244c0cF4b20/info.json @@ -0,0 +1,11 @@ +{ + "name": "Waifu", + "symbol": "WAIF", + "type": "ERC20", + "decimals": 18, + "description": "Waifu Token claims to be a community-funded cryptocurrency that is an anime-centric ERC-20 token on the Ethereum network.", + "website": "https://waifutoken.io", + "explorer": "https://etherscan.io/token/0xB2279B6769CFBa691416F00609b16244c0cF4b20", + "status": "active", + "id": "0xB2279B6769CFBa691416F00609b16244c0cF4b20" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB2279B6769CFBa691416F00609b16244c0cF4b20/logo.png b/blockchains/ethereum/assets/0xB2279B6769CFBa691416F00609b16244c0cF4b20/logo.png new file mode 100644 index 00000000..5a3322f5 Binary files /dev/null and b/blockchains/ethereum/assets/0xB2279B6769CFBa691416F00609b16244c0cF4b20/logo.png differ diff --git a/blockchains/ethereum/assets/0xB22950854A0A443aD97CaC440aA91E28b511d53A/info.json b/blockchains/ethereum/assets/0xB22950854A0A443aD97CaC440aA91E28b511d53A/info.json new file mode 100644 index 00000000..17a7ccea --- /dev/null +++ b/blockchains/ethereum/assets/0xB22950854A0A443aD97CaC440aA91E28b511d53A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stones", + "symbol": "STONES", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB22950854A0A443aD97CaC440aA91E28b511d53A", + "status": "abandoned", + "id": "0xB22950854A0A443aD97CaC440aA91E28b511d53A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB22950854A0A443aD97CaC440aA91E28b511d53A/logo.png b/blockchains/ethereum/assets/0xB22950854A0A443aD97CaC440aA91E28b511d53A/logo.png new file mode 100644 index 00000000..869adf97 Binary files /dev/null and b/blockchains/ethereum/assets/0xB22950854A0A443aD97CaC440aA91E28b511d53A/logo.png differ diff --git a/blockchains/ethereum/assets/0xB22c2786a549B008517B67625f5296E8fAf9589e/info.json b/blockchains/ethereum/assets/0xB22c2786a549B008517B67625f5296E8fAf9589e/info.json new file mode 100644 index 00000000..4b6613bc --- /dev/null +++ b/blockchains/ethereum/assets/0xB22c2786a549B008517B67625f5296E8fAf9589e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rental Processor Token", + "symbol": "BRP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB22c2786a549B008517B67625f5296E8fAf9589e", + "status": "abandoned", + "id": "0xB22c2786a549B008517B67625f5296E8fAf9589e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB22c2786a549B008517B67625f5296E8fAf9589e/logo.png b/blockchains/ethereum/assets/0xB22c2786a549B008517B67625f5296E8fAf9589e/logo.png new file mode 100644 index 00000000..de2a5f52 Binary files /dev/null and b/blockchains/ethereum/assets/0xB22c2786a549B008517B67625f5296E8fAf9589e/logo.png differ diff --git a/blockchains/ethereum/assets/0xB22d83E228c4266075Ec75c32aCc3BC059B6f248/info.json b/blockchains/ethereum/assets/0xB22d83E228c4266075Ec75c32aCc3BC059B6f248/info.json new file mode 100644 index 00000000..a00e377d --- /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 00000000..c1a48336 Binary files /dev/null and b/blockchains/ethereum/assets/0xB22d83E228c4266075Ec75c32aCc3BC059B6f248/logo.png differ diff --git a/blockchains/ethereum/assets/0xB24754bE79281553dc1adC160ddF5Cd9b74361a4/info.json b/blockchains/ethereum/assets/0xB24754bE79281553dc1adC160ddF5Cd9b74361a4/info.json new file mode 100644 index 00000000..aa448edd --- /dev/null +++ b/blockchains/ethereum/assets/0xB24754bE79281553dc1adC160ddF5Cd9b74361a4/info.json @@ -0,0 +1,11 @@ +{ + "name": "RIALTO", + "symbol": "XRL", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB24754bE79281553dc1adC160ddF5Cd9b74361a4", + "status": "abandoned", + "id": "0xB24754bE79281553dc1adC160ddF5Cd9b74361a4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB24754bE79281553dc1adC160ddF5Cd9b74361a4/logo.png b/blockchains/ethereum/assets/0xB24754bE79281553dc1adC160ddF5Cd9b74361a4/logo.png new file mode 100644 index 00000000..a44d3044 Binary files /dev/null and b/blockchains/ethereum/assets/0xB24754bE79281553dc1adC160ddF5Cd9b74361a4/logo.png differ diff --git a/blockchains/ethereum/assets/0xB24f135C954b71B75dD413b288835b5a8d4AFa74/info.json b/blockchains/ethereum/assets/0xB24f135C954b71B75dD413b288835b5a8d4AFa74/info.json new file mode 100644 index 00000000..3fc0507b --- /dev/null +++ b/blockchains/ethereum/assets/0xB24f135C954b71B75dD413b288835b5a8d4AFa74/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZenFinance", + "website": "http://www.yearn2.finance", + "description": "$ZEN is the ERC-20 token will be used for rewards and products in Yearn2.Finance Eco-system.", + "explorer": "https://etherscan.io/token/0xB24f135C954b71B75dD413b288835b5a8d4AFa74", + "type": "ERC20", + "symbol": "ZEN", + "decimals": 18, + "status": "active", + "id": "0xB24f135C954b71B75dD413b288835b5a8d4AFa74" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB24f135C954b71B75dD413b288835b5a8d4AFa74/logo.png b/blockchains/ethereum/assets/0xB24f135C954b71B75dD413b288835b5a8d4AFa74/logo.png new file mode 100644 index 00000000..bfeaac17 Binary files /dev/null and b/blockchains/ethereum/assets/0xB24f135C954b71B75dD413b288835b5a8d4AFa74/logo.png differ diff --git a/blockchains/ethereum/assets/0xB26631c6dda06aD89B93C71400D25692de89c068/info.json b/blockchains/ethereum/assets/0xB26631c6dda06aD89B93C71400D25692de89c068/info.json new file mode 100644 index 00000000..08ff5d7e --- /dev/null +++ b/blockchains/ethereum/assets/0xB26631c6dda06aD89B93C71400D25692de89c068/info.json @@ -0,0 +1,11 @@ +{ + "name": "Minds", + "website": "https://minds.com/", + "description": "Minds Tokens are the fuel of the Minds network.", + "explorer": "https://etherscan.io/token/0xB26631c6dda06aD89B93C71400D25692de89c068", + "type": "ERC20", + "symbol": "MINDS", + "decimals": 18, + "status": "active", + "id": "0xB26631c6dda06aD89B93C71400D25692de89c068" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB26631c6dda06aD89B93C71400D25692de89c068/logo.png b/blockchains/ethereum/assets/0xB26631c6dda06aD89B93C71400D25692de89c068/logo.png new file mode 100644 index 00000000..29f1ab0f Binary files /dev/null and b/blockchains/ethereum/assets/0xB26631c6dda06aD89B93C71400D25692de89c068/logo.png differ diff --git a/blockchains/ethereum/assets/0xB26abB2928C22F3763620448FbaD913648521866/info.json b/blockchains/ethereum/assets/0xB26abB2928C22F3763620448FbaD913648521866/info.json new file mode 100644 index 00000000..ed8e81ca --- /dev/null +++ b/blockchains/ethereum/assets/0xB26abB2928C22F3763620448FbaD913648521866/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOLT", + "symbol": "BOLT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB26abB2928C22F3763620448FbaD913648521866", + "status": "abandoned", + "id": "0xB26abB2928C22F3763620448FbaD913648521866" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB26abB2928C22F3763620448FbaD913648521866/logo.png b/blockchains/ethereum/assets/0xB26abB2928C22F3763620448FbaD913648521866/logo.png new file mode 100644 index 00000000..352f6f82 Binary files /dev/null and b/blockchains/ethereum/assets/0xB26abB2928C22F3763620448FbaD913648521866/logo.png differ diff --git a/blockchains/ethereum/assets/0xB2924278cc92E60DB9b673d6A311d7a331dD703D/info.json b/blockchains/ethereum/assets/0xB2924278cc92E60DB9b673d6A311d7a331dD703D/info.json new file mode 100644 index 00000000..96f2c957 --- /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 00000000..c10c4abc Binary files /dev/null and b/blockchains/ethereum/assets/0xB2924278cc92E60DB9b673d6A311d7a331dD703D/logo.png differ diff --git a/blockchains/ethereum/assets/0xB29678a4805a7d787dc9589E179D27F7575bB9f7/info.json b/blockchains/ethereum/assets/0xB29678a4805a7d787dc9589E179D27F7575bB9f7/info.json new file mode 100644 index 00000000..8ea04b9c --- /dev/null +++ b/blockchains/ethereum/assets/0xB29678a4805a7d787dc9589E179D27F7575bB9f7/info.json @@ -0,0 +1,11 @@ +{ + "name": "ArubaCoin", + "symbol": "AUA", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB29678a4805a7d787dc9589E179D27F7575bB9f7", + "status": "abandoned", + "id": "0xB29678a4805a7d787dc9589E179D27F7575bB9f7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB29678a4805a7d787dc9589E179D27F7575bB9f7/logo.png b/blockchains/ethereum/assets/0xB29678a4805a7d787dc9589E179D27F7575bB9f7/logo.png new file mode 100644 index 00000000..02b6f98d Binary files /dev/null and b/blockchains/ethereum/assets/0xB29678a4805a7d787dc9589E179D27F7575bB9f7/logo.png differ diff --git a/blockchains/ethereum/assets/0xB2C851bb6FbFc44286BAe0f432330810Fe0911f3/info.json b/blockchains/ethereum/assets/0xB2C851bb6FbFc44286BAe0f432330810Fe0911f3/info.json new file mode 100644 index 00000000..bb6c112d --- /dev/null +++ b/blockchains/ethereum/assets/0xB2C851bb6FbFc44286BAe0f432330810Fe0911f3/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C581296", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB2C851bb6FbFc44286BAe0f432330810Fe0911f3", + "status": "abandoned", + "id": "0xB2C851bb6FbFc44286BAe0f432330810Fe0911f3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB2C851bb6FbFc44286BAe0f432330810Fe0911f3/logo.png b/blockchains/ethereum/assets/0xB2C851bb6FbFc44286BAe0f432330810Fe0911f3/logo.png new file mode 100644 index 00000000..cc8b6c34 Binary files /dev/null and b/blockchains/ethereum/assets/0xB2C851bb6FbFc44286BAe0f432330810Fe0911f3/logo.png differ diff --git a/blockchains/ethereum/assets/0xB2Cf3a438aCf46275839a38dB7594065f64151d3/info.json b/blockchains/ethereum/assets/0xB2Cf3a438aCf46275839a38dB7594065f64151d3/info.json new file mode 100644 index 00000000..df825bb1 --- /dev/null +++ b/blockchains/ethereum/assets/0xB2Cf3a438aCf46275839a38dB7594065f64151d3/info.json @@ -0,0 +1,11 @@ +{ + "name": "TheWorldsAMine", + "symbol": "WRLD", + "type": "ERC20", + "decimals": 18, + "description": "The $WRLD Token was created with the cryptocurrency social media platform community in mind. The $WRLD token project aims to allow users to be a part of a project by merely being a part of the token creator’s social network(s).", + "website": "https://themine.me", + "explorer": "https://etherscan.io/token/0xB2Cf3a438aCf46275839a38dB7594065f64151d3", + "status": "active", + "id": "0xB2Cf3a438aCf46275839a38dB7594065f64151d3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB2Cf3a438aCf46275839a38dB7594065f64151d3/logo.png b/blockchains/ethereum/assets/0xB2Cf3a438aCf46275839a38dB7594065f64151d3/logo.png new file mode 100644 index 00000000..ced46fa9 Binary files /dev/null and b/blockchains/ethereum/assets/0xB2Cf3a438aCf46275839a38dB7594065f64151d3/logo.png differ diff --git a/blockchains/ethereum/assets/0xB2D8e647EE55CC58A2B408e38f433238498853da/info.json b/blockchains/ethereum/assets/0xB2D8e647EE55CC58A2B408e38f433238498853da/info.json new file mode 100644 index 00000000..07dc2de7 --- /dev/null +++ b/blockchains/ethereum/assets/0xB2D8e647EE55CC58A2B408e38f433238498853da/info.json @@ -0,0 +1,11 @@ +{ + "name": "VITA", + "symbol": "VITA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB2D8e647EE55CC58A2B408e38f433238498853da", + "status": "abandoned", + "id": "0xB2D8e647EE55CC58A2B408e38f433238498853da" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB2D8e647EE55CC58A2B408e38f433238498853da/logo.png b/blockchains/ethereum/assets/0xB2D8e647EE55CC58A2B408e38f433238498853da/logo.png new file mode 100644 index 00000000..b632d9cb Binary files /dev/null and b/blockchains/ethereum/assets/0xB2D8e647EE55CC58A2B408e38f433238498853da/logo.png differ diff --git a/blockchains/ethereum/assets/0xB2Df3decC54EC49D47a491adc6EcD51a131d0FB8/info.json b/blockchains/ethereum/assets/0xB2Df3decC54EC49D47a491adc6EcD51a131d0FB8/info.json new file mode 100644 index 00000000..59cdc244 --- /dev/null +++ b/blockchains/ethereum/assets/0xB2Df3decC54EC49D47a491adc6EcD51a131d0FB8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sesame Token", + "symbol": "SST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB2Df3decC54EC49D47a491adc6EcD51a131d0FB8", + "status": "abandoned", + "id": "0xB2Df3decC54EC49D47a491adc6EcD51a131d0FB8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB2Df3decC54EC49D47a491adc6EcD51a131d0FB8/logo.png b/blockchains/ethereum/assets/0xB2Df3decC54EC49D47a491adc6EcD51a131d0FB8/logo.png new file mode 100644 index 00000000..e38e6dab Binary files /dev/null and b/blockchains/ethereum/assets/0xB2Df3decC54EC49D47a491adc6EcD51a131d0FB8/logo.png differ diff --git a/blockchains/ethereum/assets/0xB2E260F12406c401874EcC960893C0f74Cd6aFcd/info.json b/blockchains/ethereum/assets/0xB2E260F12406c401874EcC960893C0f74Cd6aFcd/info.json new file mode 100644 index 00000000..d2013cba --- /dev/null +++ b/blockchains/ethereum/assets/0xB2E260F12406c401874EcC960893C0f74Cd6aFcd/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitUP Token", + "symbol": "BUT", + "type": "ERC20", + "decimals": 18, + "description": "BitUP Ltd, a professional digital asset management and investment platform.", + "website": "https://bitup.com/", + "explorer": "https://etherscan.io/token/0xB2E260F12406c401874EcC960893C0f74Cd6aFcd", + "status": "active", + "id": "0xB2E260F12406c401874EcC960893C0f74Cd6aFcd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB2E260F12406c401874EcC960893C0f74Cd6aFcd/logo.png b/blockchains/ethereum/assets/0xB2E260F12406c401874EcC960893C0f74Cd6aFcd/logo.png new file mode 100644 index 00000000..0bb28811 Binary files /dev/null and b/blockchains/ethereum/assets/0xB2E260F12406c401874EcC960893C0f74Cd6aFcd/logo.png differ diff --git a/blockchains/ethereum/assets/0xB2b834900EE97E487d521FC09243f19A1a4A3099/info.json b/blockchains/ethereum/assets/0xB2b834900EE97E487d521FC09243f19A1a4A3099/info.json new file mode 100644 index 00000000..a85e349a --- /dev/null +++ b/blockchains/ethereum/assets/0xB2b834900EE97E487d521FC09243f19A1a4A3099/info.json @@ -0,0 +1,11 @@ +{ + "name": "ONE", + "symbol": "ONE", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB2b834900EE97E487d521FC09243f19A1a4A3099", + "status": "abandoned", + "id": "0xB2b834900EE97E487d521FC09243f19A1a4A3099" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB2b834900EE97E487d521FC09243f19A1a4A3099/logo.png b/blockchains/ethereum/assets/0xB2b834900EE97E487d521FC09243f19A1a4A3099/logo.png new file mode 100644 index 00000000..d5ccc421 Binary files /dev/null and b/blockchains/ethereum/assets/0xB2b834900EE97E487d521FC09243f19A1a4A3099/logo.png differ diff --git a/blockchains/ethereum/assets/0xB2eE225350337D17F5A5eA037a0F0b6172Df5A4a/info.json b/blockchains/ethereum/assets/0xB2eE225350337D17F5A5eA037a0F0b6172Df5A4a/info.json new file mode 100644 index 00000000..2ed67c87 --- /dev/null +++ b/blockchains/ethereum/assets/0xB2eE225350337D17F5A5eA037a0F0b6172Df5A4a/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRYPTOASH Token", + "website": "https://cryptoash.com", + "description": "CRYPTOASH Token (CryptASH) is an ERC20 based token, it's an open source unlicesed token created by Telegram crypto community with love on Ethereum platform.", + "explorer": "https://etherscan.io/token/0xB2eE225350337D17F5A5eA037a0F0b6172Df5A4a", + "type": "ERC20", + "symbol": "CryptASH", + "decimals": 2, + "status": "abandoned", + "id": "0xB2eE225350337D17F5A5eA037a0F0b6172Df5A4a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB2eE225350337D17F5A5eA037a0F0b6172Df5A4a/logo.png b/blockchains/ethereum/assets/0xB2eE225350337D17F5A5eA037a0F0b6172Df5A4a/logo.png new file mode 100644 index 00000000..b311fa27 Binary files /dev/null and b/blockchains/ethereum/assets/0xB2eE225350337D17F5A5eA037a0F0b6172Df5A4a/logo.png differ diff --git a/blockchains/ethereum/assets/0xB313C71b20CE054C6224d403387aC2536c0b954e/info.json b/blockchains/ethereum/assets/0xB313C71b20CE054C6224d403387aC2536c0b954e/info.json new file mode 100644 index 00000000..2db0fc1c --- /dev/null +++ b/blockchains/ethereum/assets/0xB313C71b20CE054C6224d403387aC2536c0b954e/info.json @@ -0,0 +1,11 @@ +{ + "name": "1VIBE", + "symbol": "1VIBE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB313C71b20CE054C6224d403387aC2536c0b954e", + "status": "abandoned", + "id": "0xB313C71b20CE054C6224d403387aC2536c0b954e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB313C71b20CE054C6224d403387aC2536c0b954e/logo.png b/blockchains/ethereum/assets/0xB313C71b20CE054C6224d403387aC2536c0b954e/logo.png new file mode 100755 index 00000000..8bb2c442 Binary files /dev/null and b/blockchains/ethereum/assets/0xB313C71b20CE054C6224d403387aC2536c0b954e/logo.png differ diff --git a/blockchains/ethereum/assets/0xB31C219959E06f9aFBeB36b388a4BaD13E802725/info.json b/blockchains/ethereum/assets/0xB31C219959E06f9aFBeB36b388a4BaD13E802725/info.json new file mode 100644 index 00000000..485de1b2 --- /dev/null +++ b/blockchains/ethereum/assets/0xB31C219959E06f9aFBeB36b388a4BaD13E802725/info.json @@ -0,0 +1,11 @@ +{ + "name": "ONOT", + "symbol": "ONOT", + "type": "ERC20", + "decimals": 18, + "description": "ONOChain describes itself as a public chain developed on EOS.IO software to provide infrastructure for application distribution, development environment, smart contract development, traffic distribution, and issuance.", + "website": "https://www.ono.chat/en/", + "explorer": "https://etherscan.io/token/0xB31C219959E06f9aFBeB36b388a4BaD13E802725", + "status": "active", + "id": "0xB31C219959E06f9aFBeB36b388a4BaD13E802725" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB31C219959E06f9aFBeB36b388a4BaD13E802725/logo.png b/blockchains/ethereum/assets/0xB31C219959E06f9aFBeB36b388a4BaD13E802725/logo.png new file mode 100644 index 00000000..f88ab05c Binary files /dev/null and b/blockchains/ethereum/assets/0xB31C219959E06f9aFBeB36b388a4BaD13E802725/logo.png differ diff --git a/blockchains/ethereum/assets/0xB3319f5D18Bc0D84dD1b4825Dcde5d5f7266d407/info.json b/blockchains/ethereum/assets/0xB3319f5D18Bc0D84dD1b4825Dcde5d5f7266d407/info.json new file mode 100644 index 00000000..1614dea8 --- /dev/null +++ b/blockchains/ethereum/assets/0xB3319f5D18Bc0D84dD1b4825Dcde5d5f7266d407/info.json @@ -0,0 +1,11 @@ +{ + "name": "Compound 0x", + "symbol": "cZRX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://compound.finance/", + "explorer": "https://etherscan.io/token/0xB3319f5D18Bc0D84dD1b4825Dcde5d5f7266d407", + "status": "abandoned", + "id": "0xB3319f5D18Bc0D84dD1b4825Dcde5d5f7266d407" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB3319f5D18Bc0D84dD1b4825Dcde5d5f7266d407/logo.png b/blockchains/ethereum/assets/0xB3319f5D18Bc0D84dD1b4825Dcde5d5f7266d407/logo.png new file mode 100644 index 00000000..877e5f26 Binary files /dev/null and b/blockchains/ethereum/assets/0xB3319f5D18Bc0D84dD1b4825Dcde5d5f7266d407/logo.png differ diff --git a/blockchains/ethereum/assets/0xB348cB0638b2399aE598b5575D5c12e0F15d3690/info.json b/blockchains/ethereum/assets/0xB348cB0638b2399aE598b5575D5c12e0F15d3690/info.json new file mode 100644 index 00000000..55d4d547 --- /dev/null +++ b/blockchains/ethereum/assets/0xB348cB0638b2399aE598b5575D5c12e0F15d3690/info.json @@ -0,0 +1,11 @@ +{ + "name": "allbandex", + "symbol": "ABDX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB348cB0638b2399aE598b5575D5c12e0F15d3690", + "status": "abandoned", + "id": "0xB348cB0638b2399aE598b5575D5c12e0F15d3690" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB348cB0638b2399aE598b5575D5c12e0F15d3690/logo.png b/blockchains/ethereum/assets/0xB348cB0638b2399aE598b5575D5c12e0F15d3690/logo.png new file mode 100755 index 00000000..07d26c74 Binary files /dev/null and b/blockchains/ethereum/assets/0xB348cB0638b2399aE598b5575D5c12e0F15d3690/logo.png differ diff --git a/blockchains/ethereum/assets/0xB351dA6ffEbd5DddD1dA037929FCf334d6B4A8D5/info.json b/blockchains/ethereum/assets/0xB351dA6ffEbd5DddD1dA037929FCf334d6B4A8D5/info.json new file mode 100644 index 00000000..7c1e0fe3 --- /dev/null +++ b/blockchains/ethereum/assets/0xB351dA6ffEbd5DddD1dA037929FCf334d6B4A8D5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Flit Token", + "symbol": "FLT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://flittoken.com/", + "explorer": "https://etherscan.io/token/0xB351dA6ffEbd5DddD1dA037929FCf334d6B4A8D5", + "status": "abandoned", + "id": "0xB351dA6ffEbd5DddD1dA037929FCf334d6B4A8D5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB351dA6ffEbd5DddD1dA037929FCf334d6B4A8D5/logo.png b/blockchains/ethereum/assets/0xB351dA6ffEbd5DddD1dA037929FCf334d6B4A8D5/logo.png new file mode 100644 index 00000000..98576656 Binary files /dev/null and b/blockchains/ethereum/assets/0xB351dA6ffEbd5DddD1dA037929FCf334d6B4A8D5/logo.png differ diff --git a/blockchains/ethereum/assets/0xB3673209fF0109f75432fa29FD29AE19F89Cb902/info.json b/blockchains/ethereum/assets/0xB3673209fF0109f75432fa29FD29AE19F89Cb902/info.json new file mode 100644 index 00000000..fdb1df0c --- /dev/null +++ b/blockchains/ethereum/assets/0xB3673209fF0109f75432fa29FD29AE19F89Cb902/info.json @@ -0,0 +1,11 @@ +{ + "name": "WAKBLOCK", + "symbol": "WAK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB3673209fF0109f75432fa29FD29AE19F89Cb902", + "status": "abandoned", + "id": "0xB3673209fF0109f75432fa29FD29AE19F89Cb902" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB3673209fF0109f75432fa29FD29AE19F89Cb902/logo.png b/blockchains/ethereum/assets/0xB3673209fF0109f75432fa29FD29AE19F89Cb902/logo.png new file mode 100644 index 00000000..87d20b2a Binary files /dev/null and b/blockchains/ethereum/assets/0xB3673209fF0109f75432fa29FD29AE19F89Cb902/logo.png differ diff --git a/blockchains/ethereum/assets/0xB36bCc08cc3f998Ab54ceC6D0996c3c4f6F63666/info.json b/blockchains/ethereum/assets/0xB36bCc08cc3f998Ab54ceC6D0996c3c4f6F63666/info.json new file mode 100644 index 00000000..9f1d90d3 --- /dev/null +++ b/blockchains/ethereum/assets/0xB36bCc08cc3f998Ab54ceC6D0996c3c4f6F63666/info.json @@ -0,0 +1,11 @@ +{ + "name": "XSAPPHIRE", + "symbol": "XSAP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB36bCc08cc3f998Ab54ceC6D0996c3c4f6F63666", + "status": "abandoned", + "id": "0xB36bCc08cc3f998Ab54ceC6D0996c3c4f6F63666" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB36bCc08cc3f998Ab54ceC6D0996c3c4f6F63666/logo.png b/blockchains/ethereum/assets/0xB36bCc08cc3f998Ab54ceC6D0996c3c4f6F63666/logo.png new file mode 100644 index 00000000..6eed3041 Binary files /dev/null and b/blockchains/ethereum/assets/0xB36bCc08cc3f998Ab54ceC6D0996c3c4f6F63666/logo.png differ diff --git a/blockchains/ethereum/assets/0xB3742Ca2e6E8E9F707886Fd37BB3ba8159DD85d3/info.json b/blockchains/ethereum/assets/0xB3742Ca2e6E8E9F707886Fd37BB3ba8159DD85d3/info.json new file mode 100644 index 00000000..24f10900 --- /dev/null +++ b/blockchains/ethereum/assets/0xB3742Ca2e6E8E9F707886Fd37BB3ba8159DD85d3/info.json @@ -0,0 +1,11 @@ +{ + "name": "GreatBritishPoundToken", + "symbol": "GBPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB3742Ca2e6E8E9F707886Fd37BB3ba8159DD85d3", + "status": "abandoned", + "id": "0xB3742Ca2e6E8E9F707886Fd37BB3ba8159DD85d3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB3742Ca2e6E8E9F707886Fd37BB3ba8159DD85d3/logo.png b/blockchains/ethereum/assets/0xB3742Ca2e6E8E9F707886Fd37BB3ba8159DD85d3/logo.png new file mode 100644 index 00000000..ef2f5334 Binary files /dev/null and b/blockchains/ethereum/assets/0xB3742Ca2e6E8E9F707886Fd37BB3ba8159DD85d3/logo.png differ diff --git a/blockchains/ethereum/assets/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe/info.json b/blockchains/ethereum/assets/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe/info.json new file mode 100644 index 00000000..131ea782 --- /dev/null +++ b/blockchains/ethereum/assets/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe/info.json @@ -0,0 +1,11 @@ +{ + "name": "PowH3D", + "symbol": "P3D", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe", + "status": "abandoned", + "id": "0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe/logo.png b/blockchains/ethereum/assets/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe/logo.png new file mode 100755 index 00000000..90bac3aa Binary files /dev/null and b/blockchains/ethereum/assets/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe/logo.png differ diff --git a/blockchains/ethereum/assets/0xB37a769B37224449d92AAc57dE379E1267Cd3B00/info.json b/blockchains/ethereum/assets/0xB37a769B37224449d92AAc57dE379E1267Cd3B00/info.json new file mode 100644 index 00000000..b75d0aaf --- /dev/null +++ b/blockchains/ethereum/assets/0xB37a769B37224449d92AAc57dE379E1267Cd3B00/info.json @@ -0,0 +1,11 @@ +{ + "name": "Covalent Token", + "symbol": "COVA", + "type": "ERC20", + "decimals": 18, + "description": "COVA Unity is a blockchain protocol that allows the monetization of enterprise data without compromising user data privacy.", + "website": "http://covalent.ai", + "explorer": "https://etherscan.io/token/0xB37a769B37224449d92AAc57dE379E1267Cd3B00", + "status": "active", + "id": "0xB37a769B37224449d92AAc57dE379E1267Cd3B00" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB37a769B37224449d92AAc57dE379E1267Cd3B00/logo.png b/blockchains/ethereum/assets/0xB37a769B37224449d92AAc57dE379E1267Cd3B00/logo.png new file mode 100644 index 00000000..331cdedb Binary files /dev/null and b/blockchains/ethereum/assets/0xB37a769B37224449d92AAc57dE379E1267Cd3B00/logo.png differ diff --git a/blockchains/ethereum/assets/0xB3e2Cb7CccfE139f8FF84013823Bf22dA6B6390A/info.json b/blockchains/ethereum/assets/0xB3e2Cb7CccfE139f8FF84013823Bf22dA6B6390A/info.json new file mode 100644 index 00000000..c8e303cc --- /dev/null +++ b/blockchains/ethereum/assets/0xB3e2Cb7CccfE139f8FF84013823Bf22dA6B6390A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Iconiq Lab Token", + "symbol": "ICNQ", + "type": "ERC20", + "decimals": 18, + "description": "Iconiq Lab is the world’s rst batch-driven accelerator program for prospective ICO projects. Through our own token launch, we will raise the capital necessary to provide seed funding to the best projects and management teams interested in launching an ICO.", + "website": "https://iconicholding.com/icnq-token/", + "explorer": "https://etherscan.io/token/0xB3e2Cb7CccfE139f8FF84013823Bf22dA6B6390A", + "status": "active", + "id": "0xB3e2Cb7CccfE139f8FF84013823Bf22dA6B6390A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB3e2Cb7CccfE139f8FF84013823Bf22dA6B6390A/logo.png b/blockchains/ethereum/assets/0xB3e2Cb7CccfE139f8FF84013823Bf22dA6B6390A/logo.png new file mode 100644 index 00000000..b568820d Binary files /dev/null and b/blockchains/ethereum/assets/0xB3e2Cb7CccfE139f8FF84013823Bf22dA6B6390A/logo.png differ diff --git a/blockchains/ethereum/assets/0xB40aFd1d55eA61FC1A6fBe093B817B673C8E78D7/info.json b/blockchains/ethereum/assets/0xB40aFd1d55eA61FC1A6fBe093B817B673C8E78D7/info.json new file mode 100644 index 00000000..949be802 --- /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 00000000..493195c5 Binary files /dev/null and b/blockchains/ethereum/assets/0xB40aFd1d55eA61FC1A6fBe093B817B673C8E78D7/logo.png differ diff --git a/blockchains/ethereum/assets/0xB41422D5a1d5d5C73c229686935b40F881502785/info.json b/blockchains/ethereum/assets/0xB41422D5a1d5d5C73c229686935b40F881502785/info.json new file mode 100644 index 00000000..295c8f3c --- /dev/null +++ b/blockchains/ethereum/assets/0xB41422D5a1d5d5C73c229686935b40F881502785/info.json @@ -0,0 +1,11 @@ +{ + "name": "PayFair Token", + "symbol": "PFR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB41422D5a1d5d5C73c229686935b40F881502785", + "status": "abandoned", + "id": "0xB41422D5a1d5d5C73c229686935b40F881502785" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB41422D5a1d5d5C73c229686935b40F881502785/logo.png b/blockchains/ethereum/assets/0xB41422D5a1d5d5C73c229686935b40F881502785/logo.png new file mode 100644 index 00000000..7f915221 Binary files /dev/null and b/blockchains/ethereum/assets/0xB41422D5a1d5d5C73c229686935b40F881502785/logo.png differ diff --git a/blockchains/ethereum/assets/0xB414F8Ec2D14c64f37B1559CBE43746284514596/info.json b/blockchains/ethereum/assets/0xB414F8Ec2D14c64f37B1559CBE43746284514596/info.json new file mode 100644 index 00000000..8ae1abb2 --- /dev/null +++ b/blockchains/ethereum/assets/0xB414F8Ec2D14c64f37B1559CBE43746284514596/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fitcash", + "symbol": "FTH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.fitcash.co", + "explorer": "https://etherscan.io/token/0xB414F8Ec2D14c64f37B1559CBE43746284514596", + "status": "abandoned", + "id": "0xB414F8Ec2D14c64f37B1559CBE43746284514596" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB414F8Ec2D14c64f37B1559CBE43746284514596/logo.png b/blockchains/ethereum/assets/0xB414F8Ec2D14c64f37B1559CBE43746284514596/logo.png new file mode 100644 index 00000000..4aca1d6a Binary files /dev/null and b/blockchains/ethereum/assets/0xB414F8Ec2D14c64f37B1559CBE43746284514596/logo.png differ diff --git a/blockchains/ethereum/assets/0xB417fA71A03A9bADBf962589F2478353fd5693e2/info.json b/blockchains/ethereum/assets/0xB417fA71A03A9bADBf962589F2478353fd5693e2/info.json new file mode 100644 index 00000000..768254b3 --- /dev/null +++ b/blockchains/ethereum/assets/0xB417fA71A03A9bADBf962589F2478353fd5693e2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coin Display Network", + "symbol": "CDN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB417fA71A03A9bADBf962589F2478353fd5693e2", + "status": "abandoned", + "id": "0xB417fA71A03A9bADBf962589F2478353fd5693e2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB417fA71A03A9bADBf962589F2478353fd5693e2/logo.png b/blockchains/ethereum/assets/0xB417fA71A03A9bADBf962589F2478353fd5693e2/logo.png new file mode 100644 index 00000000..6089557b Binary files /dev/null and b/blockchains/ethereum/assets/0xB417fA71A03A9bADBf962589F2478353fd5693e2/logo.png differ diff --git a/blockchains/ethereum/assets/0xB422e605fBd765B80D2C4b5d8196C2f94144438B/info.json b/blockchains/ethereum/assets/0xB422e605fBd765B80D2C4b5d8196C2f94144438B/info.json new file mode 100644 index 00000000..f4a16162 --- /dev/null +++ b/blockchains/ethereum/assets/0xB422e605fBd765B80D2C4b5d8196C2f94144438B/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Short Litecoin Token", + "symbol": "LTCBEAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ftx.com/tokens/LTCBEAR", + "explorer": "https://etherscan.io/token/0xB422e605fBd765B80D2C4b5d8196C2f94144438B", + "status": "abandoned", + "id": "0xB422e605fBd765B80D2C4b5d8196C2f94144438B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB422e605fBd765B80D2C4b5d8196C2f94144438B/logo.png b/blockchains/ethereum/assets/0xB422e605fBd765B80D2C4b5d8196C2f94144438B/logo.png new file mode 100644 index 00000000..a8cc1f57 Binary files /dev/null and b/blockchains/ethereum/assets/0xB422e605fBd765B80D2C4b5d8196C2f94144438B/logo.png differ diff --git a/blockchains/ethereum/assets/0xB4272071eCAdd69d933AdcD19cA99fe80664fc08/info.json b/blockchains/ethereum/assets/0xB4272071eCAdd69d933AdcD19cA99fe80664fc08/info.json new file mode 100644 index 00000000..36065404 --- /dev/null +++ b/blockchains/ethereum/assets/0xB4272071eCAdd69d933AdcD19cA99fe80664fc08/info.json @@ -0,0 +1,14 @@ +{ + "name": "CryptoFranc", + "symbol": "XCHF", + "type": "ERC20", + "decimals": 18, + "description": "The CryptoFranc (XCHF) is a stable coin bound to the Swiss Franc and classifies as a payment token in accordance with the FINMA ICO guidelines.", + "website": "https://www.swisscryptotokens.ch", + "explorer": "https://etherscan.io/token/0xB4272071eCAdd69d933AdcD19cA99fe80664fc08", + "status": "active", + "id": "0xB4272071eCAdd69d933AdcD19cA99fe80664fc08", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB4272071eCAdd69d933AdcD19cA99fe80664fc08/logo.png b/blockchains/ethereum/assets/0xB4272071eCAdd69d933AdcD19cA99fe80664fc08/logo.png new file mode 100644 index 00000000..5cebdc4b Binary files /dev/null and b/blockchains/ethereum/assets/0xB4272071eCAdd69d933AdcD19cA99fe80664fc08/logo.png differ diff --git a/blockchains/ethereum/assets/0xB4467E8D621105312a914F1D42f10770C0Ffe3c8/info.json b/blockchains/ethereum/assets/0xB4467E8D621105312a914F1D42f10770C0Ffe3c8/info.json new file mode 100644 index 00000000..73385e6f --- /dev/null +++ b/blockchains/ethereum/assets/0xB4467E8D621105312a914F1D42f10770C0Ffe3c8/info.json @@ -0,0 +1,17 @@ +{ + "name": "FLASH (old)", + "website": "https://flashstake.io", + "description": "FLASH - The time travel of money.", + "explorer": "https://etherscan.io/token/0xB4467E8D621105312a914F1D42f10770C0Ffe3c8", + "symbol": "FLASH", + "type": "ERC20", + "decimals": 18, + "status": "abandoned", + "id": "0xB4467E8D621105312a914F1D42f10770C0Ffe3c8", + "links": [ + { + "name": "x", + "url": "https://x.com/Flashstake" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB4467E8D621105312a914F1D42f10770C0Ffe3c8/logo.png b/blockchains/ethereum/assets/0xB4467E8D621105312a914F1D42f10770C0Ffe3c8/logo.png new file mode 100644 index 00000000..594c876e Binary files /dev/null and b/blockchains/ethereum/assets/0xB4467E8D621105312a914F1D42f10770C0Ffe3c8/logo.png differ diff --git a/blockchains/ethereum/assets/0xB45a50545bEEAB73F38F31E5973768C421805E5E/info.json b/blockchains/ethereum/assets/0xB45a50545bEEAB73F38F31E5973768C421805E5E/info.json new file mode 100644 index 00000000..11065953 --- /dev/null +++ b/blockchains/ethereum/assets/0xB45a50545bEEAB73F38F31E5973768C421805E5E/info.json @@ -0,0 +1,11 @@ +{ + "name": "TKRToken", + "symbol": "TKR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB45a50545bEEAB73F38F31E5973768C421805E5E", + "status": "abandoned", + "id": "0xB45a50545bEEAB73F38F31E5973768C421805E5E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB45a50545bEEAB73F38F31E5973768C421805E5E/logo.png b/blockchains/ethereum/assets/0xB45a50545bEEAB73F38F31E5973768C421805E5E/logo.png new file mode 100644 index 00000000..a82c62e5 Binary files /dev/null and b/blockchains/ethereum/assets/0xB45a50545bEEAB73F38F31E5973768C421805E5E/logo.png differ diff --git a/blockchains/ethereum/assets/0xB47e9b43eE0772aBaC3856a1ADF8f90C0e6c1067/info.json b/blockchains/ethereum/assets/0xB47e9b43eE0772aBaC3856a1ADF8f90C0e6c1067/info.json new file mode 100644 index 00000000..b02538ae --- /dev/null +++ b/blockchains/ethereum/assets/0xB47e9b43eE0772aBaC3856a1ADF8f90C0e6c1067/info.json @@ -0,0 +1,11 @@ +{ + "name": "Faxports Coins", + "symbol": "FAS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB47e9b43eE0772aBaC3856a1ADF8f90C0e6c1067", + "status": "abandoned", + "id": "0xB47e9b43eE0772aBaC3856a1ADF8f90C0e6c1067" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB47e9b43eE0772aBaC3856a1ADF8f90C0e6c1067/logo.png b/blockchains/ethereum/assets/0xB47e9b43eE0772aBaC3856a1ADF8f90C0e6c1067/logo.png new file mode 100644 index 00000000..cdb8640d Binary files /dev/null and b/blockchains/ethereum/assets/0xB47e9b43eE0772aBaC3856a1ADF8f90C0e6c1067/logo.png differ diff --git a/blockchains/ethereum/assets/0xB48B7E5bF6563B3e0A85055821A83Deb8CFc12f6/info.json b/blockchains/ethereum/assets/0xB48B7E5bF6563B3e0A85055821A83Deb8CFc12f6/info.json new file mode 100644 index 00000000..943ad7d3 --- /dev/null +++ b/blockchains/ethereum/assets/0xB48B7E5bF6563B3e0A85055821A83Deb8CFc12f6/info.json @@ -0,0 +1,11 @@ +{ + "name": "NOVA", + "symbol": "NOVA", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "http://www.85nova.com/", + "explorer": "https://etherscan.io/token/0xB48B7E5bF6563B3e0A85055821A83Deb8CFc12f6", + "status": "abandoned", + "id": "0xB48B7E5bF6563B3e0A85055821A83Deb8CFc12f6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB48B7E5bF6563B3e0A85055821A83Deb8CFc12f6/logo.png b/blockchains/ethereum/assets/0xB48B7E5bF6563B3e0A85055821A83Deb8CFc12f6/logo.png new file mode 100644 index 00000000..2821dac9 Binary files /dev/null and b/blockchains/ethereum/assets/0xB48B7E5bF6563B3e0A85055821A83Deb8CFc12f6/logo.png differ diff --git a/blockchains/ethereum/assets/0xB4A3B0Faf0Ab53df58001804DdA5Bfc6a3D59008/info.json b/blockchains/ethereum/assets/0xB4A3B0Faf0Ab53df58001804DdA5Bfc6a3D59008/info.json new file mode 100644 index 00000000..bf6c7366 --- /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 00000000..588d8d6a Binary files /dev/null and b/blockchains/ethereum/assets/0xB4A3B0Faf0Ab53df58001804DdA5Bfc6a3D59008/logo.png differ diff --git a/blockchains/ethereum/assets/0xB4DA9B3a8c3DA21Cd2d3D5656d12E8EB6d6934Ee/info.json b/blockchains/ethereum/assets/0xB4DA9B3a8c3DA21Cd2d3D5656d12E8EB6d6934Ee/info.json new file mode 100644 index 00000000..d0326695 --- /dev/null +++ b/blockchains/ethereum/assets/0xB4DA9B3a8c3DA21Cd2d3D5656d12E8EB6d6934Ee/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR V3/3561", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB4DA9B3a8c3DA21Cd2d3D5656d12E8EB6d6934Ee", + "status": "abandoned", + "id": "0xB4DA9B3a8c3DA21Cd2d3D5656d12E8EB6d6934Ee" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB4DA9B3a8c3DA21Cd2d3D5656d12E8EB6d6934Ee/logo.png b/blockchains/ethereum/assets/0xB4DA9B3a8c3DA21Cd2d3D5656d12E8EB6d6934Ee/logo.png new file mode 100644 index 00000000..5ccc1637 Binary files /dev/null and b/blockchains/ethereum/assets/0xB4DA9B3a8c3DA21Cd2d3D5656d12E8EB6d6934Ee/logo.png differ diff --git a/blockchains/ethereum/assets/0xB4EFd85c19999D84251304bDA99E90B92300Bd93/info.json b/blockchains/ethereum/assets/0xB4EFd85c19999D84251304bDA99E90B92300Bd93/info.json new file mode 100644 index 00000000..1fe7f99a --- /dev/null +++ b/blockchains/ethereum/assets/0xB4EFd85c19999D84251304bDA99E90B92300Bd93/info.json @@ -0,0 +1,14 @@ +{ + "name": "Rocket Pool", + "symbol": "RPL", + "type": "ERC20", + "decimals": 18, + "description": "Rocket Pool (RPL) is a cryptocurrency and operates on the Ethereum platform. Decentralised Proof of Stake Pool", + "website": "https://www.rocketpool.net", + "explorer": "https://etherscan.io/token/0xB4EFd85c19999D84251304bDA99E90B92300Bd93", + "status": "abandoned", + "id": "0xB4EFd85c19999D84251304bDA99E90B92300Bd93", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB4a677B0E363c3815d46326954a4E4d2B1ACe357/info.json b/blockchains/ethereum/assets/0xB4a677B0E363c3815d46326954a4E4d2B1ACe357/info.json new file mode 100644 index 00000000..fcfeadc6 --- /dev/null +++ b/blockchains/ethereum/assets/0xB4a677B0E363c3815d46326954a4E4d2B1ACe357/info.json @@ -0,0 +1,11 @@ +{ + "name": "THENODE", + "symbol": "THE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://the-node.foundation/", + "explorer": "https://etherscan.io/token/0xB4a677B0E363c3815d46326954a4E4d2B1ACe357", + "status": "abandoned", + "id": "0xB4a677B0E363c3815d46326954a4E4d2B1ACe357" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB4a677B0E363c3815d46326954a4E4d2B1ACe357/logo.png b/blockchains/ethereum/assets/0xB4a677B0E363c3815d46326954a4E4d2B1ACe357/logo.png new file mode 100644 index 00000000..56a25e97 Binary files /dev/null and b/blockchains/ethereum/assets/0xB4a677B0E363c3815d46326954a4E4d2B1ACe357/logo.png differ diff --git a/blockchains/ethereum/assets/0xB4ae194a0DCF1B4080b164C1d775ee06E0817305/info.json b/blockchains/ethereum/assets/0xB4ae194a0DCF1B4080b164C1d775ee06E0817305/info.json new file mode 100644 index 00000000..cb2a5d35 --- /dev/null +++ b/blockchains/ethereum/assets/0xB4ae194a0DCF1B4080b164C1d775ee06E0817305/info.json @@ -0,0 +1,17 @@ +{ + "name": "Super Saiya-jin token", + "website": "https://dapp.dfohub.com/?addr=0xd5F8E370130ebBF6dF7bF742866ff056331Fd73C", + "description": "The first ever existed -Item Token-. An experimental token acting both as ERC 20 and both as ERC 1155, also governance token of the buidlers Sandbox.", + "explorer": "https://etherscan.io/token/0xB4ae194a0DCF1B4080b164C1d775ee06E0817305", + "type": "ERC20", + "symbol": "SSJ", + "decimals": 18, + "status": "active", + "id": "0xB4ae194a0DCF1B4080b164C1d775ee06E0817305", + "links": [ + { + "name": "github", + "url": "https://github.com/b-u-i-d-l/super-saiyan-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB4ae194a0DCF1B4080b164C1d775ee06E0817305/logo.png b/blockchains/ethereum/assets/0xB4ae194a0DCF1B4080b164C1d775ee06E0817305/logo.png new file mode 100644 index 00000000..0256283d Binary files /dev/null and b/blockchains/ethereum/assets/0xB4ae194a0DCF1B4080b164C1d775ee06E0817305/logo.png differ diff --git a/blockchains/ethereum/assets/0xB4b1D2C217EC0776584CE08D3DD98F90EDedA44b/info.json b/blockchains/ethereum/assets/0xB4b1D2C217EC0776584CE08D3DD98F90EDedA44b/info.json new file mode 100644 index 00000000..90d45d2f --- /dev/null +++ b/blockchains/ethereum/assets/0xB4b1D2C217EC0776584CE08D3DD98F90EDedA44b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Climatecoin", + "symbol": "CO2", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://climatecoin.io", + "explorer": "https://etherscan.io/token/0xB4b1D2C217EC0776584CE08D3DD98F90EDedA44b", + "status": "abandoned", + "id": "0xB4b1D2C217EC0776584CE08D3DD98F90EDedA44b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB4b1D2C217EC0776584CE08D3DD98F90EDedA44b/logo.png b/blockchains/ethereum/assets/0xB4b1D2C217EC0776584CE08D3DD98F90EDedA44b/logo.png new file mode 100755 index 00000000..a6e858f1 Binary files /dev/null and b/blockchains/ethereum/assets/0xB4b1D2C217EC0776584CE08D3DD98F90EDedA44b/logo.png differ diff --git a/blockchains/ethereum/assets/0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35/info.json b/blockchains/ethereum/assets/0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35/info.json new file mode 100644 index 00000000..44c4a20a --- /dev/null +++ b/blockchains/ethereum/assets/0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35/info.json @@ -0,0 +1,32 @@ +{ + "name": "SWEAT", + "type": "ERC20", + "symbol": "SWEAT", + "decimals": 18, + "website": "https://sweateconomy.com/", + "description": "Welcome to Sweat Economy. An ecosystem designed to bring value to your movement, and inspire a healthier, wealthier planet.", + "explorer": "https://etherscan.io/token/0xb4b9dc1c77bdbb135ea907fd5a08094d98883a35", + "status": "active", + "id": "0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35", + "links": [ + { + "name": "x", + "url": "https://x.com/SweatEconomy" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1IPklRcEQvgJkCaeYvGh43yjWl-Dj5_6i/view" + }, + { + "name": "discord", + "url": "https://discord.com/sweateconomy" + }, + { + "name": "telegram", + "url": "https://t.me/sweateconomy" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35/logo.png b/blockchains/ethereum/assets/0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35/logo.png new file mode 100644 index 00000000..b071fbc3 Binary files /dev/null and b/blockchains/ethereum/assets/0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35/logo.png differ diff --git a/blockchains/ethereum/assets/0xB4d930279552397bbA2ee473229f89Ec245bc365/info.json b/blockchains/ethereum/assets/0xB4d930279552397bbA2ee473229f89Ec245bc365/info.json new file mode 100644 index 00000000..22b1e893 --- /dev/null +++ b/blockchains/ethereum/assets/0xB4d930279552397bbA2ee473229f89Ec245bc365/info.json @@ -0,0 +1,25 @@ +{ + "name": "MahaDAO", + "website": "https://mahadao.com/", + "description": "Mahadao introduces non-depreciating currency ARTH coin, a new kind of money that maintains it's buying power irrespective of which direction the market moves.", + "explorer": "https://etherscan.io/token/0xb4d930279552397bba2ee473229f89ec245bc365", + "type": "ERC20", + "symbol": "MAHA", + "decimals": 18, + "status": "abandoned", + "id": "0xB4d930279552397bbA2ee473229f89Ec245bc365", + "links": [ + { + "name": "x", + "url": "https://x.com/TheMahaDAO" + }, + { + "name": "telegram", + "url": "https://t.me/mahadao" + }, + { + "name": "medium", + "url": "https://medium.com/mahadao" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1/info.json b/blockchains/ethereum/assets/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1/info.json new file mode 100644 index 00000000..7f4517c6 --- /dev/null +++ b/blockchains/ethereum/assets/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1/info.json @@ -0,0 +1,29 @@ +{ + "name": "Arbitrum", + "type": "ERC20", + "symbol": "ARB", + "decimals": 18, + "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://etherscan.io/token/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1", + "status": "active", + "id": "0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1", + "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/ethereum/assets/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1/logo.png b/blockchains/ethereum/assets/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1/logo.png new file mode 100644 index 00000000..5402ed6b Binary files /dev/null and b/blockchains/ethereum/assets/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1/logo.png differ diff --git a/blockchains/ethereum/assets/0xB528edBef013aff855ac3c50b381f253aF13b997/info.json b/blockchains/ethereum/assets/0xB528edBef013aff855ac3c50b381f253aF13b997/info.json new file mode 100644 index 00000000..999e5612 --- /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 00000000..9fc4efab 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 00000000..0bd53d24 --- /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 00000000..3cee526c Binary files /dev/null and b/blockchains/ethereum/assets/0xB53894f82a6B2d3B7365f24932B5bDE1c5Fb51FF/logo.png differ diff --git a/blockchains/ethereum/assets/0xB53AC311087965D9e085515EfbE1380B2cA4De9a/info.json b/blockchains/ethereum/assets/0xB53AC311087965D9e085515EfbE1380B2cA4De9a/info.json new file mode 100644 index 00000000..649a92f1 --- /dev/null +++ b/blockchains/ethereum/assets/0xB53AC311087965D9e085515EfbE1380B2cA4De9a/info.json @@ -0,0 +1,11 @@ +{ + "name": "WITEE", + "symbol": "WTE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB53AC311087965D9e085515EfbE1380B2cA4De9a", + "status": "abandoned", + "id": "0xB53AC311087965D9e085515EfbE1380B2cA4De9a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB53AC311087965D9e085515EfbE1380B2cA4De9a/logo.png b/blockchains/ethereum/assets/0xB53AC311087965D9e085515EfbE1380B2cA4De9a/logo.png new file mode 100644 index 00000000..1aea45a0 Binary files /dev/null and b/blockchains/ethereum/assets/0xB53AC311087965D9e085515EfbE1380B2cA4De9a/logo.png differ diff --git a/blockchains/ethereum/assets/0xB53e08B97724126Bda6d237B94F766c0b81C90fE/info.json b/blockchains/ethereum/assets/0xB53e08B97724126Bda6d237B94F766c0b81C90fE/info.json new file mode 100644 index 00000000..02b705d9 --- /dev/null +++ b/blockchains/ethereum/assets/0xB53e08B97724126Bda6d237B94F766c0b81C90fE/info.json @@ -0,0 +1,17 @@ +{ + "name": "PIXBY", + "website": "https://pixby.io", + "description": "Designed to reward longterm PIXBY holders.", + "explorer": "https://etherscan.io/token/0xB53e08B97724126Bda6d237B94F766c0b81C90fE", + "type": "ERC20", + "symbol": "PIXBY", + "decimals": 18, + "status": "active", + "id": "0xB53e08B97724126Bda6d237B94F766c0b81C90fE", + "links": [ + { + "name": "x", + "url": "https://x.com/pixbytoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB53e08B97724126Bda6d237B94F766c0b81C90fE/logo.png b/blockchains/ethereum/assets/0xB53e08B97724126Bda6d237B94F766c0b81C90fE/logo.png new file mode 100644 index 00000000..ef513c12 Binary files /dev/null and b/blockchains/ethereum/assets/0xB53e08B97724126Bda6d237B94F766c0b81C90fE/logo.png differ diff --git a/blockchains/ethereum/assets/0xB58A2ebBB0Abe5797c78D69DBc419e98eB7A3b52/info.json b/blockchains/ethereum/assets/0xB58A2ebBB0Abe5797c78D69DBc419e98eB7A3b52/info.json new file mode 100644 index 00000000..e4c4e213 --- /dev/null +++ b/blockchains/ethereum/assets/0xB58A2ebBB0Abe5797c78D69DBc419e98eB7A3b52/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ecnar Token", + "symbol": "ECNAR", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB58A2ebBB0Abe5797c78D69DBc419e98eB7A3b52", + "status": "abandoned", + "id": "0xB58A2ebBB0Abe5797c78D69DBc419e98eB7A3b52" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB58A2ebBB0Abe5797c78D69DBc419e98eB7A3b52/logo.png b/blockchains/ethereum/assets/0xB58A2ebBB0Abe5797c78D69DBc419e98eB7A3b52/logo.png new file mode 100644 index 00000000..aebfb10e Binary files /dev/null and b/blockchains/ethereum/assets/0xB58A2ebBB0Abe5797c78D69DBc419e98eB7A3b52/logo.png differ diff --git a/blockchains/ethereum/assets/0xB58B0B858dAbD762c063Ea0F22f2FA3397474529/info.json b/blockchains/ethereum/assets/0xB58B0B858dAbD762c063Ea0F22f2FA3397474529/info.json new file mode 100644 index 00000000..f0edcb8d --- /dev/null +++ b/blockchains/ethereum/assets/0xB58B0B858dAbD762c063Ea0F22f2FA3397474529/info.json @@ -0,0 +1,11 @@ +{ + "name": "i Trade", + "symbol": "ITR", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB58B0B858dAbD762c063Ea0F22f2FA3397474529", + "status": "abandoned", + "id": "0xB58B0B858dAbD762c063Ea0F22f2FA3397474529" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB58B0B858dAbD762c063Ea0F22f2FA3397474529/logo.png b/blockchains/ethereum/assets/0xB58B0B858dAbD762c063Ea0F22f2FA3397474529/logo.png new file mode 100644 index 00000000..c24bd430 Binary files /dev/null and b/blockchains/ethereum/assets/0xB58B0B858dAbD762c063Ea0F22f2FA3397474529/logo.png differ diff --git a/blockchains/ethereum/assets/0xB58a6ab4972d6584cb6AFBA679eDb5acD8BfD1ec/info.json b/blockchains/ethereum/assets/0xB58a6ab4972d6584cb6AFBA679eDb5acD8BfD1ec/info.json new file mode 100644 index 00000000..5054a244 --- /dev/null +++ b/blockchains/ethereum/assets/0xB58a6ab4972d6584cb6AFBA679eDb5acD8BfD1ec/info.json @@ -0,0 +1,11 @@ +{ + "name": "Token Network", + "symbol": "TNX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB58a6ab4972d6584cb6AFBA679eDb5acD8BfD1ec", + "status": "abandoned", + "id": "0xB58a6ab4972d6584cb6AFBA679eDb5acD8BfD1ec" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB58a6ab4972d6584cb6AFBA679eDb5acD8BfD1ec/logo.png b/blockchains/ethereum/assets/0xB58a6ab4972d6584cb6AFBA679eDb5acD8BfD1ec/logo.png new file mode 100644 index 00000000..bca1795c Binary files /dev/null and b/blockchains/ethereum/assets/0xB58a6ab4972d6584cb6AFBA679eDb5acD8BfD1ec/logo.png differ diff --git a/blockchains/ethereum/assets/0xB5AE848EdB296C21259b7467331467d2647eEcDf/info.json b/blockchains/ethereum/assets/0xB5AE848EdB296C21259b7467331467d2647eEcDf/info.json new file mode 100644 index 00000000..2b25354b --- /dev/null +++ b/blockchains/ethereum/assets/0xB5AE848EdB296C21259b7467331467d2647eEcDf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lemo", + "symbol": "LEMO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB5AE848EdB296C21259b7467331467d2647eEcDf", + "status": "abandoned", + "id": "0xB5AE848EdB296C21259b7467331467d2647eEcDf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB5AE848EdB296C21259b7467331467d2647eEcDf/logo.png b/blockchains/ethereum/assets/0xB5AE848EdB296C21259b7467331467d2647eEcDf/logo.png new file mode 100644 index 00000000..9dd428ee Binary files /dev/null and b/blockchains/ethereum/assets/0xB5AE848EdB296C21259b7467331467d2647eEcDf/logo.png differ diff --git a/blockchains/ethereum/assets/0xB5Ca46cF1da09248126682a7bd72401fd7A6b151/info.json b/blockchains/ethereum/assets/0xB5Ca46cF1da09248126682a7bd72401fd7A6b151/info.json new file mode 100644 index 00000000..c415a551 --- /dev/null +++ b/blockchains/ethereum/assets/0xB5Ca46cF1da09248126682a7bd72401fd7A6b151/info.json @@ -0,0 +1,11 @@ +{ + "name": "Provoco Token", + "symbol": "VOCO", + "type": "ERC20", + "decimals": 18, + "description": "The Provoco social challenge network is an example of how blockchain technology offers trust, openness and security that may be beneficial for mass users, where everyone will find their own space. Monetization and gamification will give incentives to raise, accept and accomplish a wide range of private and public challenges, creating thousands of engaging activities and content.", + "website": "https://provoco.me/", + "explorer": "https://etherscan.io/token/0xB5Ca46cF1da09248126682a7bd72401fd7A6b151", + "status": "active", + "id": "0xB5Ca46cF1da09248126682a7bd72401fd7A6b151" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB5Ca46cF1da09248126682a7bd72401fd7A6b151/logo.png b/blockchains/ethereum/assets/0xB5Ca46cF1da09248126682a7bd72401fd7A6b151/logo.png new file mode 100644 index 00000000..97158e91 Binary files /dev/null and b/blockchains/ethereum/assets/0xB5Ca46cF1da09248126682a7bd72401fd7A6b151/logo.png differ diff --git a/blockchains/ethereum/assets/0xB5DBC6D3cf380079dF3b27135664b6BCF45D1869/info.json b/blockchains/ethereum/assets/0xB5DBC6D3cf380079dF3b27135664b6BCF45D1869/info.json new file mode 100644 index 00000000..282dc554 --- /dev/null +++ b/blockchains/ethereum/assets/0xB5DBC6D3cf380079dF3b27135664b6BCF45D1869/info.json @@ -0,0 +1,11 @@ +{ + "name": "Omix", + "symbol": "OMX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://shivom.io/", + "explorer": "https://etherscan.io/token/0xB5DBC6D3cf380079dF3b27135664b6BCF45D1869", + "status": "abandoned", + "id": "0xB5DBC6D3cf380079dF3b27135664b6BCF45D1869" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB5DBC6D3cf380079dF3b27135664b6BCF45D1869/logo.png b/blockchains/ethereum/assets/0xB5DBC6D3cf380079dF3b27135664b6BCF45D1869/logo.png new file mode 100755 index 00000000..61cedf11 Binary files /dev/null and b/blockchains/ethereum/assets/0xB5DBC6D3cf380079dF3b27135664b6BCF45D1869/logo.png differ diff --git a/blockchains/ethereum/assets/0xB5FE099475d3030DDe498c3BB6F3854F762A48Ad/info.json b/blockchains/ethereum/assets/0xB5FE099475d3030DDe498c3BB6F3854F762A48Ad/info.json new file mode 100644 index 00000000..dbe9951a --- /dev/null +++ b/blockchains/ethereum/assets/0xB5FE099475d3030DDe498c3BB6F3854F762A48Ad/info.json @@ -0,0 +1,25 @@ +{ + "name": "FNK", + "website": "https://fnktoken.com", + "description": "Token FNK. Ready-made solutions for maximum profit", + "explorer": "https://etherscan.io/token/0xb5fe099475d3030dde498c3bb6f3854f762a48ad", + "type": "ERC20", + "symbol": "FNK", + "decimals": 18, + "status": "active", + "id": "0xB5FE099475d3030DDe498c3BB6F3854F762A48Ad", + "links": [ + { + "name": "x", + "url": "https://x.com/ethereum" + }, + { + "name": "telegram", + "url": "https://t.me/fnktoken" + }, + { + "name": "facebook", + "url": "https://facebook.com/finiko.token" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB5FE099475d3030DDe498c3BB6F3854F762A48Ad/logo.png b/blockchains/ethereum/assets/0xB5FE099475d3030DDe498c3BB6F3854F762A48Ad/logo.png new file mode 100644 index 00000000..c545848e Binary files /dev/null and b/blockchains/ethereum/assets/0xB5FE099475d3030DDe498c3BB6F3854F762A48Ad/logo.png differ diff --git a/blockchains/ethereum/assets/0xB5cc99F4Ff0EcAA55D705e83106296E00E507f93/info.json b/blockchains/ethereum/assets/0xB5cc99F4Ff0EcAA55D705e83106296E00E507f93/info.json new file mode 100644 index 00000000..467ed7b9 --- /dev/null +++ b/blockchains/ethereum/assets/0xB5cc99F4Ff0EcAA55D705e83106296E00E507f93/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alteryx Labs", + "symbol": "ALT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB5cc99F4Ff0EcAA55D705e83106296E00E507f93", + "status": "abandoned", + "id": "0xB5cc99F4Ff0EcAA55D705e83106296E00E507f93" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB5cc99F4Ff0EcAA55D705e83106296E00E507f93/logo.png b/blockchains/ethereum/assets/0xB5cc99F4Ff0EcAA55D705e83106296E00E507f93/logo.png new file mode 100644 index 00000000..c5e47df3 Binary files /dev/null and b/blockchains/ethereum/assets/0xB5cc99F4Ff0EcAA55D705e83106296E00E507f93/logo.png differ diff --git a/blockchains/ethereum/assets/0xB5f1942b7dB0CD28dbbCEF1e5f8456cB7866B1c4/info.json b/blockchains/ethereum/assets/0xB5f1942b7dB0CD28dbbCEF1e5f8456cB7866B1c4/info.json new file mode 100644 index 00000000..60bcd524 --- /dev/null +++ b/blockchains/ethereum/assets/0xB5f1942b7dB0CD28dbbCEF1e5f8456cB7866B1c4/info.json @@ -0,0 +1,11 @@ +{ + "name": "CEXT", + "symbol": "CEXT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB5f1942b7dB0CD28dbbCEF1e5f8456cB7866B1c4", + "status": "abandoned", + "id": "0xB5f1942b7dB0CD28dbbCEF1e5f8456cB7866B1c4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB5f1942b7dB0CD28dbbCEF1e5f8456cB7866B1c4/logo.png b/blockchains/ethereum/assets/0xB5f1942b7dB0CD28dbbCEF1e5f8456cB7866B1c4/logo.png new file mode 100644 index 00000000..4c45f2da Binary files /dev/null and b/blockchains/ethereum/assets/0xB5f1942b7dB0CD28dbbCEF1e5f8456cB7866B1c4/logo.png differ diff --git a/blockchains/ethereum/assets/0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206/info.json b/blockchains/ethereum/assets/0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206/info.json new file mode 100644 index 00000000..9760ffc6 --- /dev/null +++ b/blockchains/ethereum/assets/0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206/info.json @@ -0,0 +1,41 @@ +{ + "name": "Nexo", + "website": "http://nexo.io", + "description": "NEXO (NEXO) is a compliant token that is backed by the underlying assets of Nexo’s loan portfolio.", + "explorer": "https://etherscan.io/token/0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206", + "type": "ERC20", + "symbol": "NEXO", + "decimals": 18, + "status": "active", + "id": "0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206", + "links": [ + { + "name": "github", + "url": "https://github.com/nexofinance/NEXO-Token/" + }, + { + "name": "x", + "url": "https://x.com/NexoFinance" + }, + { + "name": "blog", + "url": "https://medium.com/nexo" + }, + { + "name": "facebook", + "url": "https://facebook.com/NexoFinance" + }, + { + "name": "telegram", + "url": "https://t.me/nexofinance" + }, + { + "name": "whitepaper", + "url": "https://nexo.io/assets/downloads/Nexo-Whitepaper.pdf?=a" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nexo/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206/logo.png b/blockchains/ethereum/assets/0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206/logo.png new file mode 100755 index 00000000..94be0858 Binary files /dev/null and b/blockchains/ethereum/assets/0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206/logo.png differ diff --git a/blockchains/ethereum/assets/0xB6259685685235c1eF4B8529e7105f00BD42b9f8/info.json b/blockchains/ethereum/assets/0xB6259685685235c1eF4B8529e7105f00BD42b9f8/info.json new file mode 100644 index 00000000..02ad6d5e --- /dev/null +++ b/blockchains/ethereum/assets/0xB6259685685235c1eF4B8529e7105f00BD42b9f8/info.json @@ -0,0 +1,11 @@ +{ + "name": "RRChain", + "symbol": "RRC", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB6259685685235c1eF4B8529e7105f00BD42b9f8", + "status": "active", + "id": "0xB6259685685235c1eF4B8529e7105f00BD42b9f8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB6259685685235c1eF4B8529e7105f00BD42b9f8/logo.png b/blockchains/ethereum/assets/0xB6259685685235c1eF4B8529e7105f00BD42b9f8/logo.png new file mode 100644 index 00000000..ec775ad7 Binary files /dev/null and b/blockchains/ethereum/assets/0xB6259685685235c1eF4B8529e7105f00BD42b9f8/logo.png differ diff --git a/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/info.json b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/info.json new file mode 100644 index 00000000..e874393b --- /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 00000000..f9069e35 Binary files /dev/null and b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/logo.png differ diff --git a/blockchains/ethereum/assets/0xB63B606Ac810a52cCa15e44bB630fd42D8d1d83d/info.json b/blockchains/ethereum/assets/0xB63B606Ac810a52cCa15e44bB630fd42D8d1d83d/info.json new file mode 100644 index 00000000..d75eb5a1 --- /dev/null +++ b/blockchains/ethereum/assets/0xB63B606Ac810a52cCa15e44bB630fd42D8d1d83d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Monaco", + "website": "https://crypto.com", + "description": "Crypto.com provides a powerful alternative to traditional financial services, turning its vision of ”cryptocurrency in every wallet” into reality, one customer at a time.", + "explorer": "https://etherscan.io/token/0xB63B606Ac810a52cCa15e44bB630fd42D8d1d83d", + "type": "ERC20", + "symbol": "MCO", + "decimals": 8, + "status": "active", + "id": "0xB63B606Ac810a52cCa15e44bB630fd42D8d1d83d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB63B606Ac810a52cCa15e44bB630fd42D8d1d83d/logo.png b/blockchains/ethereum/assets/0xB63B606Ac810a52cCa15e44bB630fd42D8d1d83d/logo.png new file mode 100644 index 00000000..b4da841f Binary files /dev/null and b/blockchains/ethereum/assets/0xB63B606Ac810a52cCa15e44bB630fd42D8d1d83d/logo.png differ diff --git a/blockchains/ethereum/assets/0xB63ffE88c2903080cCf9AB14EfA56A11E3e01273/info.json b/blockchains/ethereum/assets/0xB63ffE88c2903080cCf9AB14EfA56A11E3e01273/info.json new file mode 100644 index 00000000..34ed8cbb --- /dev/null +++ b/blockchains/ethereum/assets/0xB63ffE88c2903080cCf9AB14EfA56A11E3e01273/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mobiicoin", + "symbol": "MBC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB63ffE88c2903080cCf9AB14EfA56A11E3e01273", + "status": "abandoned", + "id": "0xB63ffE88c2903080cCf9AB14EfA56A11E3e01273" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB63ffE88c2903080cCf9AB14EfA56A11E3e01273/logo.png b/blockchains/ethereum/assets/0xB63ffE88c2903080cCf9AB14EfA56A11E3e01273/logo.png new file mode 100644 index 00000000..603e5307 Binary files /dev/null and b/blockchains/ethereum/assets/0xB63ffE88c2903080cCf9AB14EfA56A11E3e01273/logo.png differ diff --git a/blockchains/ethereum/assets/0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC/info.json b/blockchains/ethereum/assets/0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC/info.json new file mode 100644 index 00000000..fefee882 --- /dev/null +++ b/blockchains/ethereum/assets/0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Storj", + "website": "https://storj.io", + "description": "Storj (STORJ) hopes to provide decentralised cloud storage to its community.", + "explorer": "https://etherscan.io/token/0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC", + "type": "ERC20", + "symbol": "STORJ", + "decimals": 8, + "status": "active", + "id": "0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC/logo.png b/blockchains/ethereum/assets/0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC/logo.png new file mode 100644 index 00000000..a43ba84f Binary files /dev/null and b/blockchains/ethereum/assets/0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC/logo.png differ diff --git a/blockchains/ethereum/assets/0xB65aA347A28d40039f62F3a488c9FD2799cB5a95/info.json b/blockchains/ethereum/assets/0xB65aA347A28d40039f62F3a488c9FD2799cB5a95/info.json new file mode 100644 index 00000000..cf87e1cd --- /dev/null +++ b/blockchains/ethereum/assets/0xB65aA347A28d40039f62F3a488c9FD2799cB5a95/info.json @@ -0,0 +1,17 @@ +{ + "name": "Void Reserve Currency", + "website": "http://vrc.surge.sh/", + "description": "Void Reserve Currency will provide staking rewards via an inverse funnel system. All transactions to the staking pool are taxed, and dividends paid to existing stakeholders.", + "explorer": "https://etherscan.io/token/0xB65aA347A28d40039f62F3a488c9FD2799cB5a95", + "type": "ERC20", + "symbol": "VRC", + "decimals": 18, + "status": "active", + "id": "0xB65aA347A28d40039f62F3a488c9FD2799cB5a95", + "links": [ + { + "name": "telegram", + "url": "https://t.me/voidreserve" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB65aA347A28d40039f62F3a488c9FD2799cB5a95/logo.png b/blockchains/ethereum/assets/0xB65aA347A28d40039f62F3a488c9FD2799cB5a95/logo.png new file mode 100644 index 00000000..d47918f5 Binary files /dev/null and b/blockchains/ethereum/assets/0xB65aA347A28d40039f62F3a488c9FD2799cB5a95/logo.png differ diff --git a/blockchains/ethereum/assets/0xB662CA3C91cb0811845f404bE7EE6dfc8E0B72e5/info.json b/blockchains/ethereum/assets/0xB662CA3C91cb0811845f404bE7EE6dfc8E0B72e5/info.json new file mode 100644 index 00000000..fd0f8ecc --- /dev/null +++ b/blockchains/ethereum/assets/0xB662CA3C91cb0811845f404bE7EE6dfc8E0B72e5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hack", + "symbol": "HACK", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB662CA3C91cb0811845f404bE7EE6dfc8E0B72e5", + "status": "abandoned", + "id": "0xB662CA3C91cb0811845f404bE7EE6dfc8E0B72e5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB662CA3C91cb0811845f404bE7EE6dfc8E0B72e5/logo.png b/blockchains/ethereum/assets/0xB662CA3C91cb0811845f404bE7EE6dfc8E0B72e5/logo.png new file mode 100644 index 00000000..c759e893 Binary files /dev/null and b/blockchains/ethereum/assets/0xB662CA3C91cb0811845f404bE7EE6dfc8E0B72e5/logo.png differ diff --git a/blockchains/ethereum/assets/0xB663DF075579FdCAA17E4335aB8E7189BdEBe69b/info.json b/blockchains/ethereum/assets/0xB663DF075579FdCAA17E4335aB8E7189BdEBe69b/info.json new file mode 100644 index 00000000..33883c5a --- /dev/null +++ b/blockchains/ethereum/assets/0xB663DF075579FdCAA17E4335aB8E7189BdEBe69b/info.json @@ -0,0 +1,11 @@ +{ + "name": "NARCO", + "symbol": "NARCO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB663DF075579FdCAA17E4335aB8E7189BdEBe69b", + "status": "abandoned", + "id": "0xB663DF075579FdCAA17E4335aB8E7189BdEBe69b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB663DF075579FdCAA17E4335aB8E7189BdEBe69b/logo.png b/blockchains/ethereum/assets/0xB663DF075579FdCAA17E4335aB8E7189BdEBe69b/logo.png new file mode 100644 index 00000000..14f2e960 Binary files /dev/null and b/blockchains/ethereum/assets/0xB663DF075579FdCAA17E4335aB8E7189BdEBe69b/logo.png differ diff --git a/blockchains/ethereum/assets/0xB66A2131A6B840dd020151f80723CAED603eFB51/info.json b/blockchains/ethereum/assets/0xB66A2131A6B840dd020151f80723CAED603eFB51/info.json new file mode 100644 index 00000000..f4bd05cc --- /dev/null +++ b/blockchains/ethereum/assets/0xB66A2131A6B840dd020151f80723CAED603eFB51/info.json @@ -0,0 +1,11 @@ +{ + "name": "NNB Token", + "symbol": "NNB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.coinbull.one/", + "explorer": "https://etherscan.io/token/0xB66A2131A6B840dd020151f80723CAED603eFB51", + "status": "abandoned", + "id": "0xB66A2131A6B840dd020151f80723CAED603eFB51" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB66A2131A6B840dd020151f80723CAED603eFB51/logo.png b/blockchains/ethereum/assets/0xB66A2131A6B840dd020151f80723CAED603eFB51/logo.png new file mode 100644 index 00000000..d5fc3f4a Binary files /dev/null and b/blockchains/ethereum/assets/0xB66A2131A6B840dd020151f80723CAED603eFB51/logo.png differ diff --git a/blockchains/ethereum/assets/0xB67718b98d52318240c52E71A898335da4A28c42/info.json b/blockchains/ethereum/assets/0xB67718b98d52318240c52E71A898335da4A28c42/info.json new file mode 100644 index 00000000..485b61ff --- /dev/null +++ b/blockchains/ethereum/assets/0xB67718b98d52318240c52E71A898335da4A28c42/info.json @@ -0,0 +1,11 @@ +{ + "name": "InnovativeBioresearchCoin", + "symbol": "INNBC", + "type": "ERC20", + "decimals": 6, + "description": "INNBC is a crypto-asset issued by Innovative Bioresearch Ltd, a biotech company performing novel biomedical research in the field of HIV, cancer, and regeneration research, as well as developing decentralized solutions for processing clinical data generated by human trials.", + "website": "https://www.innovativebioresearch.com/", + "explorer": "https://etherscan.io/token/0xB67718b98d52318240c52E71A898335da4A28c42", + "status": "active", + "id": "0xB67718b98d52318240c52E71A898335da4A28c42" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB67718b98d52318240c52E71A898335da4A28c42/logo.png b/blockchains/ethereum/assets/0xB67718b98d52318240c52E71A898335da4A28c42/logo.png new file mode 100644 index 00000000..2c56a5c2 Binary files /dev/null and b/blockchains/ethereum/assets/0xB67718b98d52318240c52E71A898335da4A28c42/logo.png differ diff --git a/blockchains/ethereum/assets/0xB68042de5B3dA08a80C20d29aEFab999D0848385/info.json b/blockchains/ethereum/assets/0xB68042de5B3dA08a80C20d29aEFab999D0848385/info.json new file mode 100644 index 00000000..53521f13 --- /dev/null +++ b/blockchains/ethereum/assets/0xB68042de5B3dA08a80C20d29aEFab999D0848385/info.json @@ -0,0 +1,11 @@ +{ + "name": "iDAG SPACE", + "symbol": "iDAG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB68042de5B3dA08a80C20d29aEFab999D0848385", + "status": "abandoned", + "id": "0xB68042de5B3dA08a80C20d29aEFab999D0848385" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB68042de5B3dA08a80C20d29aEFab999D0848385/logo.png b/blockchains/ethereum/assets/0xB68042de5B3dA08a80C20d29aEFab999D0848385/logo.png new file mode 100644 index 00000000..932811c9 Binary files /dev/null and b/blockchains/ethereum/assets/0xB68042de5B3dA08a80C20d29aEFab999D0848385/logo.png differ diff --git a/blockchains/ethereum/assets/0xB6957bf56805FaeD7f1bAe30EAEbE918B8baFF71/info.json b/blockchains/ethereum/assets/0xB6957bf56805FaeD7f1bAe30EAEbE918B8baFF71/info.json new file mode 100644 index 00000000..3e32651e --- /dev/null +++ b/blockchains/ethereum/assets/0xB6957bf56805FaeD7f1bAe30EAEbE918B8baFF71/info.json @@ -0,0 +1,11 @@ +{ + "name": "JILT ", + "symbol": "JLT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB6957bf56805FaeD7f1bAe30EAEbE918B8baFF71", + "status": "abandoned", + "id": "0xB6957bf56805FaeD7f1bAe30EAEbE918B8baFF71" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB6957bf56805FaeD7f1bAe30EAEbE918B8baFF71/logo.png b/blockchains/ethereum/assets/0xB6957bf56805FaeD7f1bAe30EAEbE918B8baFF71/logo.png new file mode 100644 index 00000000..dca4b0fc Binary files /dev/null and b/blockchains/ethereum/assets/0xB6957bf56805FaeD7f1bAe30EAEbE918B8baFF71/logo.png differ diff --git a/blockchains/ethereum/assets/0xB6D14Df0f2Cf6c9bb33F0B61b4474b0364c7440e/info.json b/blockchains/ethereum/assets/0xB6D14Df0f2Cf6c9bb33F0B61b4474b0364c7440e/info.json new file mode 100644 index 00000000..c8e2a39d --- /dev/null +++ b/blockchains/ethereum/assets/0xB6D14Df0f2Cf6c9bb33F0B61b4474b0364c7440e/info.json @@ -0,0 +1,11 @@ +{ + "name": "EGW-WISHMAX", + "symbol": "WIEG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB6D14Df0f2Cf6c9bb33F0B61b4474b0364c7440e", + "status": "abandoned", + "id": "0xB6D14Df0f2Cf6c9bb33F0B61b4474b0364c7440e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB6D14Df0f2Cf6c9bb33F0B61b4474b0364c7440e/logo.png b/blockchains/ethereum/assets/0xB6D14Df0f2Cf6c9bb33F0B61b4474b0364c7440e/logo.png new file mode 100644 index 00000000..7328b3db Binary files /dev/null and b/blockchains/ethereum/assets/0xB6D14Df0f2Cf6c9bb33F0B61b4474b0364c7440e/logo.png differ diff --git a/blockchains/ethereum/assets/0xB6d945CAc888ffC1c76FDBE28e9F50E8B3b8252a/info.json b/blockchains/ethereum/assets/0xB6d945CAc888ffC1c76FDBE28e9F50E8B3b8252a/info.json new file mode 100644 index 00000000..7625c317 --- /dev/null +++ b/blockchains/ethereum/assets/0xB6d945CAc888ffC1c76FDBE28e9F50E8B3b8252a/info.json @@ -0,0 +1,11 @@ +{ + "name": "the token", + "symbol": "XCC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB6d945CAc888ffC1c76FDBE28e9F50E8B3b8252a", + "status": "abandoned", + "id": "0xB6d945CAc888ffC1c76FDBE28e9F50E8B3b8252a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB6d945CAc888ffC1c76FDBE28e9F50E8B3b8252a/logo.png b/blockchains/ethereum/assets/0xB6d945CAc888ffC1c76FDBE28e9F50E8B3b8252a/logo.png new file mode 100644 index 00000000..bd19ca04 Binary files /dev/null and b/blockchains/ethereum/assets/0xB6d945CAc888ffC1c76FDBE28e9F50E8B3b8252a/logo.png differ diff --git a/blockchains/ethereum/assets/0xB6eC8C3a347f66a3d7C4F39D6DD68A422E69E81d/info.json b/blockchains/ethereum/assets/0xB6eC8C3a347f66a3d7C4F39D6DD68A422E69E81d/info.json new file mode 100644 index 00000000..a7de66ca --- /dev/null +++ b/blockchains/ethereum/assets/0xB6eC8C3a347f66a3d7C4F39D6DD68A422E69E81d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Catholic Coin", + "symbol": "CTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB6eC8C3a347f66a3d7C4F39D6DD68A422E69E81d", + "status": "abandoned", + "id": "0xB6eC8C3a347f66a3d7C4F39D6DD68A422E69E81d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB6eC8C3a347f66a3d7C4F39D6DD68A422E69E81d/logo.png b/blockchains/ethereum/assets/0xB6eC8C3a347f66a3d7C4F39D6DD68A422E69E81d/logo.png new file mode 100755 index 00000000..1759a985 Binary files /dev/null and b/blockchains/ethereum/assets/0xB6eC8C3a347f66a3d7C4F39D6DD68A422E69E81d/logo.png differ diff --git a/blockchains/ethereum/assets/0xB6eD7644C69416d67B522e20bC294A9a9B405B31/info.json b/blockchains/ethereum/assets/0xB6eD7644C69416d67B522e20bC294A9a9B405B31/info.json new file mode 100644 index 00000000..8548d44f --- /dev/null +++ b/blockchains/ethereum/assets/0xB6eD7644C69416d67B522e20bC294A9a9B405B31/info.json @@ -0,0 +1,11 @@ +{ + "name": "0xBitcoin Token", + "symbol": "0xBTC", + "type": "ERC20", + "decimals": 8, + "description": "0xBitcoin (0xBTC) is a mineable ERC20 token that operates on the Ethereum platform. Users are able to generate 0xBitcoin's through the process of mining. 0xBitcoin aims to be the main cryptocurrency and store of value on the Ethereum platform.", + "website": "https://0xbitcoin.org/", + "explorer": "https://etherscan.io/token/0xB6eD7644C69416d67B522e20bC294A9a9B405B31", + "status": "active", + "id": "0xB6eD7644C69416d67B522e20bC294A9a9B405B31" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB6eD7644C69416d67B522e20bC294A9a9B405B31/logo.png b/blockchains/ethereum/assets/0xB6eD7644C69416d67B522e20bC294A9a9B405B31/logo.png new file mode 100644 index 00000000..4fa18c9b Binary files /dev/null and b/blockchains/ethereum/assets/0xB6eD7644C69416d67B522e20bC294A9a9B405B31/logo.png differ diff --git a/blockchains/ethereum/assets/0xB6eE603933E024d8d53dDE3faa0bf98fE2a3d6f1/info.json b/blockchains/ethereum/assets/0xB6eE603933E024d8d53dDE3faa0bf98fE2a3d6f1/info.json new file mode 100644 index 00000000..af92aca6 --- /dev/null +++ b/blockchains/ethereum/assets/0xB6eE603933E024d8d53dDE3faa0bf98fE2a3d6f1/info.json @@ -0,0 +1,14 @@ +{ + "name": "DeFiat", + "website": "https://defiat.net", + "description": "DeFiat is the first gateway to decentralized financial services with fully-embedded governance, loyalty discounts, and deflationary mechanisms at its core.", + "explorer": "https://etherscan.io/token/0xB6eE603933E024d8d53dDE3faa0bf98fE2a3d6f1", + "type": "ERC20", + "symbol": "DFT", + "decimals": 18, + "status": "active", + "id": "0xB6eE603933E024d8d53dDE3faa0bf98fE2a3d6f1", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB6eE603933E024d8d53dDE3faa0bf98fE2a3d6f1/logo.png b/blockchains/ethereum/assets/0xB6eE603933E024d8d53dDE3faa0bf98fE2a3d6f1/logo.png new file mode 100644 index 00000000..6dc58677 Binary files /dev/null and b/blockchains/ethereum/assets/0xB6eE603933E024d8d53dDE3faa0bf98fE2a3d6f1/logo.png differ diff --git a/blockchains/ethereum/assets/0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32/info.json b/blockchains/ethereum/assets/0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32/info.json new file mode 100644 index 00000000..18c8e06f --- /dev/null +++ b/blockchains/ethereum/assets/0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32/info.json @@ -0,0 +1,21 @@ +{ + "name": "SYNC", + "website": "https://syncbond.com", + "description": "SYNC is the underlying reward token for the NFT CryptoBond DeFi protocol.", + "explorer": "https://etherscan.io/token/0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32", + "type": "ERC20", + "symbol": "SYNC", + "decimals": 18, + "status": "active", + "id": "0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32", + "links": [ + { + "name": "github", + "url": "https://github.com/C-O-F-E/CBONDS" + }, + { + "name": "whitepaper", + "url": "https://syncbond.com/sync_whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32/logo.png b/blockchains/ethereum/assets/0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32/logo.png new file mode 100644 index 00000000..396dd040 Binary files /dev/null and b/blockchains/ethereum/assets/0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32/logo.png differ diff --git a/blockchains/ethereum/assets/0xB705268213D593B8FD88d3FDEFF93AFF5CbDcfAE/info.json b/blockchains/ethereum/assets/0xB705268213D593B8FD88d3FDEFF93AFF5CbDcfAE/info.json new file mode 100644 index 00000000..b293f47a --- /dev/null +++ b/blockchains/ethereum/assets/0xB705268213D593B8FD88d3FDEFF93AFF5CbDcfAE/info.json @@ -0,0 +1,12 @@ +{ + "name": "IDEX", + "website": "https://idex.market", + "description": "The IDEX token is the primary token of IDEX, enabling users to directly contribute to and benefit from the project.", + "explorer": "https://etherscan.io/token/0xB705268213D593B8FD88d3FDEFF93AFF5CbDcfAE", + "research": "https://research.binance.com/en/projects/idex", + "type": "ERC20", + "symbol": "IDEX", + "decimals": 18, + "status": "active", + "id": "0xB705268213D593B8FD88d3FDEFF93AFF5CbDcfAE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB705268213D593B8FD88d3FDEFF93AFF5CbDcfAE/logo.png b/blockchains/ethereum/assets/0xB705268213D593B8FD88d3FDEFF93AFF5CbDcfAE/logo.png new file mode 100644 index 00000000..02e10cba Binary files /dev/null and b/blockchains/ethereum/assets/0xB705268213D593B8FD88d3FDEFF93AFF5CbDcfAE/logo.png differ diff --git a/blockchains/ethereum/assets/0xB70835D7822eBB9426B56543E391846C107bd32C/info.json b/blockchains/ethereum/assets/0xB70835D7822eBB9426B56543E391846C107bd32C/info.json new file mode 100644 index 00000000..6f445a0e --- /dev/null +++ b/blockchains/ethereum/assets/0xB70835D7822eBB9426B56543E391846C107bd32C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Game.com Token", + "symbol": "GTC", + "type": "ERC20", + "decimals": 18, + "description": "Game.com (GTC) is a cryptocurrency and operates on the Ethereum platform.", + "website": "http://www.game.com", + "explorer": "https://etherscan.io/token/0xB70835D7822eBB9426B56543E391846C107bd32C", + "status": "active", + "id": "0xB70835D7822eBB9426B56543E391846C107bd32C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB70835D7822eBB9426B56543E391846C107bd32C/logo.png b/blockchains/ethereum/assets/0xB70835D7822eBB9426B56543E391846C107bd32C/logo.png new file mode 100644 index 00000000..e6fba65d Binary files /dev/null and b/blockchains/ethereum/assets/0xB70835D7822eBB9426B56543E391846C107bd32C/logo.png differ diff --git a/blockchains/ethereum/assets/0xB72B31907C1C95F3650b64b2469e08EdACeE5e8F/info.json b/blockchains/ethereum/assets/0xB72B31907C1C95F3650b64b2469e08EdACeE5e8F/info.json new file mode 100644 index 00000000..38146f3c --- /dev/null +++ b/blockchains/ethereum/assets/0xB72B31907C1C95F3650b64b2469e08EdACeE5e8F/info.json @@ -0,0 +1,11 @@ +{ + "name": "bZx Vesting Token", + "website": "https://bzx.network", + "description": "vBZRX is a BZRX token wrapped into Vesting Contract", + "explorer": "https://etherscan.io/token/0xB72B31907C1C95F3650b64b2469e08EdACeE5e8F", + "type": "ERC20", + "symbol": "vBZRX", + "decimals": 18, + "status": "active", + "id": "0xB72B31907C1C95F3650b64b2469e08EdACeE5e8F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB72B31907C1C95F3650b64b2469e08EdACeE5e8F/logo.png b/blockchains/ethereum/assets/0xB72B31907C1C95F3650b64b2469e08EdACeE5e8F/logo.png new file mode 100644 index 00000000..4dff6fae Binary files /dev/null and b/blockchains/ethereum/assets/0xB72B31907C1C95F3650b64b2469e08EdACeE5e8F/logo.png differ diff --git a/blockchains/ethereum/assets/0xB7C638E1fD669bD5c1af1512C0fE9FDfdb031958/info.json b/blockchains/ethereum/assets/0xB7C638E1fD669bD5c1af1512C0fE9FDfdb031958/info.json new file mode 100644 index 00000000..291db93d --- /dev/null +++ b/blockchains/ethereum/assets/0xB7C638E1fD669bD5c1af1512C0fE9FDfdb031958/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ubiqwifi", + "symbol": "UBIQ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB7C638E1fD669bD5c1af1512C0fE9FDfdb031958", + "status": "abandoned", + "id": "0xB7C638E1fD669bD5c1af1512C0fE9FDfdb031958" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB7C638E1fD669bD5c1af1512C0fE9FDfdb031958/logo.png b/blockchains/ethereum/assets/0xB7C638E1fD669bD5c1af1512C0fE9FDfdb031958/logo.png new file mode 100644 index 00000000..30f7ef5a Binary files /dev/null and b/blockchains/ethereum/assets/0xB7C638E1fD669bD5c1af1512C0fE9FDfdb031958/logo.png differ diff --git a/blockchains/ethereum/assets/0xB7c4A82936194FEE52a4E3d4cEC3415f74507532/info.json b/blockchains/ethereum/assets/0xB7c4A82936194FEE52a4E3d4cEC3415f74507532/info.json new file mode 100644 index 00000000..9dcd64f8 --- /dev/null +++ b/blockchains/ethereum/assets/0xB7c4A82936194FEE52a4E3d4cEC3415f74507532/info.json @@ -0,0 +1,11 @@ +{ + "name": "IBTC", + "symbol": "IBTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB7c4A82936194FEE52a4E3d4cEC3415f74507532", + "status": "abandoned", + "id": "0xB7c4A82936194FEE52a4E3d4cEC3415f74507532" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB7c4A82936194FEE52a4E3d4cEC3415f74507532/logo.png b/blockchains/ethereum/assets/0xB7c4A82936194FEE52a4E3d4cEC3415f74507532/logo.png new file mode 100644 index 00000000..c2f58d5a Binary files /dev/null and b/blockchains/ethereum/assets/0xB7c4A82936194FEE52a4E3d4cEC3415f74507532/logo.png differ diff --git a/blockchains/ethereum/assets/0xB802b24E0637c2B87D2E8b7784C055BBE921011a/info.json b/blockchains/ethereum/assets/0xB802b24E0637c2B87D2E8b7784C055BBE921011a/info.json new file mode 100644 index 00000000..441211ac --- /dev/null +++ b/blockchains/ethereum/assets/0xB802b24E0637c2B87D2E8b7784C055BBE921011a/info.json @@ -0,0 +1,11 @@ +{ + "name": "EthereumMovieVenture", + "symbol": "EMV", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB802b24E0637c2B87D2E8b7784C055BBE921011a", + "status": "abandoned", + "id": "0xB802b24E0637c2B87D2E8b7784C055BBE921011a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB802b24E0637c2B87D2E8b7784C055BBE921011a/logo.png b/blockchains/ethereum/assets/0xB802b24E0637c2B87D2E8b7784C055BBE921011a/logo.png new file mode 100644 index 00000000..8cda935d Binary files /dev/null and b/blockchains/ethereum/assets/0xB802b24E0637c2B87D2E8b7784C055BBE921011a/logo.png differ diff --git a/blockchains/ethereum/assets/0xB805f6A1AB2Eda71B9C741D5eBD71dbd2f0959f7/info.json b/blockchains/ethereum/assets/0xB805f6A1AB2Eda71B9C741D5eBD71dbd2f0959f7/info.json new file mode 100644 index 00000000..b7116f5d --- /dev/null +++ b/blockchains/ethereum/assets/0xB805f6A1AB2Eda71B9C741D5eBD71dbd2f0959f7/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C573715", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB805f6A1AB2Eda71B9C741D5eBD71dbd2f0959f7", + "status": "abandoned", + "id": "0xB805f6A1AB2Eda71B9C741D5eBD71dbd2f0959f7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB805f6A1AB2Eda71B9C741D5eBD71dbd2f0959f7/logo.png b/blockchains/ethereum/assets/0xB805f6A1AB2Eda71B9C741D5eBD71dbd2f0959f7/logo.png new file mode 100644 index 00000000..710cb569 Binary files /dev/null and b/blockchains/ethereum/assets/0xB805f6A1AB2Eda71B9C741D5eBD71dbd2f0959f7/logo.png differ diff --git a/blockchains/ethereum/assets/0xB812837b81a3a6b81d7CD74CfB19A7f2784555E5/info.json b/blockchains/ethereum/assets/0xB812837b81a3a6b81d7CD74CfB19A7f2784555E5/info.json new file mode 100644 index 00000000..e0f908ed --- /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 00000000..660cee02 Binary files /dev/null and b/blockchains/ethereum/assets/0xB812837b81a3a6b81d7CD74CfB19A7f2784555E5/logo.png differ diff --git a/blockchains/ethereum/assets/0xB813879550B7c7B7f59F83962e86e5fAA7E763a1/info.json b/blockchains/ethereum/assets/0xB813879550B7c7B7f59F83962e86e5fAA7E763a1/info.json new file mode 100644 index 00000000..2292383c --- /dev/null +++ b/blockchains/ethereum/assets/0xB813879550B7c7B7f59F83962e86e5fAA7E763a1/info.json @@ -0,0 +1,11 @@ +{ + "name": "BuidlersVault", + "symbol": "buidler", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB813879550B7c7B7f59F83962e86e5fAA7E763a1", + "status": "abandoned", + "id": "0xB813879550B7c7B7f59F83962e86e5fAA7E763a1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB813879550B7c7B7f59F83962e86e5fAA7E763a1/logo.png b/blockchains/ethereum/assets/0xB813879550B7c7B7f59F83962e86e5fAA7E763a1/logo.png new file mode 100644 index 00000000..4b4d84b9 Binary files /dev/null and b/blockchains/ethereum/assets/0xB813879550B7c7B7f59F83962e86e5fAA7E763a1/logo.png differ diff --git a/blockchains/ethereum/assets/0xB81D70802a816B5DacBA06D708B5acF19DcD436D/info.json b/blockchains/ethereum/assets/0xB81D70802a816B5DacBA06D708B5acF19DcD436D/info.json new file mode 100644 index 00000000..23da815a --- /dev/null +++ b/blockchains/ethereum/assets/0xB81D70802a816B5DacBA06D708B5acF19DcD436D/info.json @@ -0,0 +1,22 @@ +{ + "name": "Dextoken Governance", + "website": "https://flowchain.co/", + "description": "Dextoken is a DeFi infrastructure and is managed by the Dextoken Governance (DEXG) holders. Dextoken proposed Speculative AMM, one of the simplest price conversion algorithm, to build decentralized exchanges.", + "explorer": "https://etherscan.io/token/0xB81D70802a816B5DacBA06D708B5acF19DcD436D", + "research": "", + "type": "ERC20", + "symbol": "DEXG", + "decimals": 18, + "status": "active", + "id": "0xB81D70802a816B5DacBA06D708B5acF19DcD436D", + "links": [ + { + "name": "github", + "url": "https://github.com/flowchain" + }, + { + "name": "whitepaper", + "url": "https://flowchain.co/publication.html" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB81D70802a816B5DacBA06D708B5acF19DcD436D/logo.png b/blockchains/ethereum/assets/0xB81D70802a816B5DacBA06D708B5acF19DcD436D/logo.png new file mode 100644 index 00000000..a4dbb56c Binary files /dev/null and b/blockchains/ethereum/assets/0xB81D70802a816B5DacBA06D708B5acF19DcD436D/logo.png differ diff --git a/blockchains/ethereum/assets/0xB8366948B4A3F07BcBf14EB1739daA42A26b07c4/info.json b/blockchains/ethereum/assets/0xB8366948B4A3F07BcBf14EB1739daA42A26b07c4/info.json new file mode 100644 index 00000000..ec210184 --- /dev/null +++ b/blockchains/ethereum/assets/0xB8366948B4A3F07BcBf14EB1739daA42A26b07c4/info.json @@ -0,0 +1,11 @@ +{ + "name": "VALOBIT", + "symbol": "VBIT", + "type": "ERC20", + "decimals": 18, + "description": "Valobit Technology is described to be an advanced cybersecurity solution that will proactively identify hackers and distribute their profile information to the protected community over blockchain.", + "website": "https://valobit.io", + "explorer": "https://etherscan.io/token/0xB8366948B4A3F07BcBf14EB1739daA42A26b07c4", + "status": "active", + "id": "0xB8366948B4A3F07BcBf14EB1739daA42A26b07c4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB8366948B4A3F07BcBf14EB1739daA42A26b07c4/logo.png b/blockchains/ethereum/assets/0xB8366948B4A3F07BcBf14EB1739daA42A26b07c4/logo.png new file mode 100644 index 00000000..4a0a7003 Binary files /dev/null and b/blockchains/ethereum/assets/0xB8366948B4A3F07BcBf14EB1739daA42A26b07c4/logo.png differ diff --git a/blockchains/ethereum/assets/0xB83D46598d61a98EDdADDC33ED4adAA0eD496907/info.json b/blockchains/ethereum/assets/0xB83D46598d61a98EDdADDC33ED4adAA0eD496907/info.json new file mode 100644 index 00000000..d6b228ea --- /dev/null +++ b/blockchains/ethereum/assets/0xB83D46598d61a98EDdADDC33ED4adAA0eD496907/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitelectroneum", + "symbol": "BETN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB83D46598d61a98EDdADDC33ED4adAA0eD496907", + "status": "abandoned", + "id": "0xB83D46598d61a98EDdADDC33ED4adAA0eD496907" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB83D46598d61a98EDdADDC33ED4adAA0eD496907/logo.png b/blockchains/ethereum/assets/0xB83D46598d61a98EDdADDC33ED4adAA0eD496907/logo.png new file mode 100644 index 00000000..c7c69ab3 Binary files /dev/null and b/blockchains/ethereum/assets/0xB83D46598d61a98EDdADDC33ED4adAA0eD496907/logo.png differ diff --git a/blockchains/ethereum/assets/0xB8647e90C0645152Fccf4d9AbB6B59Eb4AA99052/info.json b/blockchains/ethereum/assets/0xB8647e90C0645152Fccf4d9AbB6B59Eb4AA99052/info.json new file mode 100644 index 00000000..37479377 --- /dev/null +++ b/blockchains/ethereum/assets/0xB8647e90C0645152Fccf4d9AbB6B59Eb4AA99052/info.json @@ -0,0 +1,11 @@ +{ + "name": "KEYFI Token", + "symbol": "KEYFI", + "type": "ERC20", + "decimals": 18, + "description": "KeyFi is an all-in-one platform for tracking, swapping, and staking your tokens, and more.", + "website": "https://keyfi.com", + "explorer": "https://etherscan.io/token/0xB8647e90C0645152Fccf4d9AbB6B59Eb4AA99052", + "status": "active", + "id": "0xB8647e90C0645152Fccf4d9AbB6B59Eb4AA99052" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB8647e90C0645152Fccf4d9AbB6B59Eb4AA99052/logo.png b/blockchains/ethereum/assets/0xB8647e90C0645152Fccf4d9AbB6B59Eb4AA99052/logo.png new file mode 100644 index 00000000..168c8a43 Binary files /dev/null and b/blockchains/ethereum/assets/0xB8647e90C0645152Fccf4d9AbB6B59Eb4AA99052/logo.png differ diff --git a/blockchains/ethereum/assets/0xB868636A18c9935D9B259228851cC49245ae68A2/info.json b/blockchains/ethereum/assets/0xB868636A18c9935D9B259228851cC49245ae68A2/info.json new file mode 100644 index 00000000..e3c8b13a --- /dev/null +++ b/blockchains/ethereum/assets/0xB868636A18c9935D9B259228851cC49245ae68A2/info.json @@ -0,0 +1,11 @@ +{ + "name": "OPULENCE", + "symbol": "OPLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB868636A18c9935D9B259228851cC49245ae68A2", + "status": "abandoned", + "id": "0xB868636A18c9935D9B259228851cC49245ae68A2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB868636A18c9935D9B259228851cC49245ae68A2/logo.png b/blockchains/ethereum/assets/0xB868636A18c9935D9B259228851cC49245ae68A2/logo.png new file mode 100755 index 00000000..295a1a10 Binary files /dev/null and b/blockchains/ethereum/assets/0xB868636A18c9935D9B259228851cC49245ae68A2/logo.png differ diff --git a/blockchains/ethereum/assets/0xB868Cca38a8E6348d8D299c9b3C80e63d45Abe4c/info.json b/blockchains/ethereum/assets/0xB868Cca38a8E6348d8D299c9b3C80e63d45Abe4c/info.json new file mode 100644 index 00000000..4053c533 --- /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/0xB8742486C723793Cf5162bb5D3425ED9cD73D049/info.json b/blockchains/ethereum/assets/0xB8742486C723793Cf5162bb5D3425ED9cD73D049/info.json new file mode 100644 index 00000000..f5786890 --- /dev/null +++ b/blockchains/ethereum/assets/0xB8742486C723793Cf5162bb5D3425ED9cD73D049/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tcash", + "symbol": "TCASH", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB8742486C723793Cf5162bb5D3425ED9cD73D049", + "status": "abandoned", + "id": "0xB8742486C723793Cf5162bb5D3425ED9cD73D049" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB8742486C723793Cf5162bb5D3425ED9cD73D049/logo.png b/blockchains/ethereum/assets/0xB8742486C723793Cf5162bb5D3425ED9cD73D049/logo.png new file mode 100644 index 00000000..500c5144 Binary files /dev/null and b/blockchains/ethereum/assets/0xB8742486C723793Cf5162bb5D3425ED9cD73D049/logo.png differ diff --git a/blockchains/ethereum/assets/0xB8796542765747ed7F921FF12faff057b5D624D7/info.json b/blockchains/ethereum/assets/0xB8796542765747ed7F921FF12faff057b5D624D7/info.json new file mode 100644 index 00000000..235fb305 --- /dev/null +++ b/blockchains/ethereum/assets/0xB8796542765747ed7F921FF12faff057b5D624D7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Void Token", + "symbol": "VOID", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB8796542765747ed7F921FF12faff057b5D624D7", + "status": "abandoned", + "id": "0xB8796542765747ed7F921FF12faff057b5D624D7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB8796542765747ed7F921FF12faff057b5D624D7/logo.png b/blockchains/ethereum/assets/0xB8796542765747ed7F921FF12faff057b5D624D7/logo.png new file mode 100644 index 00000000..a74818a1 Binary files /dev/null and b/blockchains/ethereum/assets/0xB8796542765747ed7F921FF12faff057b5D624D7/logo.png differ diff --git a/blockchains/ethereum/assets/0xB879DA8b24c9b8685dE8526cF492E954f165D74b/info.json b/blockchains/ethereum/assets/0xB879DA8b24c9b8685dE8526cF492E954f165D74b/info.json new file mode 100644 index 00000000..d3ee9816 --- /dev/null +++ b/blockchains/ethereum/assets/0xB879DA8b24c9b8685dE8526cF492E954f165D74b/info.json @@ -0,0 +1,11 @@ +{ + "name": "MovieBloc", + "symbol": "MBL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://moviebloc.io/", + "explorer": "https://etherscan.io/token/0xB879DA8b24c9b8685dE8526cF492E954f165D74b", + "status": "abandoned", + "id": "0xB879DA8b24c9b8685dE8526cF492E954f165D74b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB879DA8b24c9b8685dE8526cF492E954f165D74b/logo.png b/blockchains/ethereum/assets/0xB879DA8b24c9b8685dE8526cF492E954f165D74b/logo.png new file mode 100644 index 00000000..bc54d267 Binary files /dev/null and b/blockchains/ethereum/assets/0xB879DA8b24c9b8685dE8526cF492E954f165D74b/logo.png differ diff --git a/blockchains/ethereum/assets/0xB893A8049f250b57eFA8C62D51527a22404D7c9A/info.json b/blockchains/ethereum/assets/0xB893A8049f250b57eFA8C62D51527a22404D7c9A/info.json new file mode 100644 index 00000000..f460e745 --- /dev/null +++ b/blockchains/ethereum/assets/0xB893A8049f250b57eFA8C62D51527a22404D7c9A/info.json @@ -0,0 +1,53 @@ +{ + "name": "American Shiba (USHIBA)", + "type": "ERC20", + "symbol": "USHIBA", + "decimals": 9, + "website": "https://americanshiba.info", + "description": "USHIBA is a community token built on the Ethereum blockchain. It has been adopted by a strong and active community who believes passionately in decentralization and charity causes. The core team consists of more than thirty dedicated members from diverse backgrounds, all working hard to build a strong and lasting community. As holders of the USHIBA token, you're part of a community that is at the center of the Decentralized Finance movement.", + "explorer": "https://etherscan.io/token/0xb893a8049f250b57efa8c62d51527a22404d7c9a", + "status": "active", + "id": "0xB893A8049f250b57eFA8C62D51527a22404D7c9A", + "links": [ + { + "name": "x", + "url": "https://x.com/USHIBAEcosystem?s=09" + }, + { + "name": "telegram", + "url": "https://t.me/officialushiba" + }, + { + "name": "telegram_news", + "url": "https://t.me/ushibauni" + }, + { + "name": "discord", + "url": "https://discord.com/invite/xXWv8vtDTu" + }, + { + "name": "whitepaper", + "url": "https://americanshiba.info" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AmericanShiba/" + }, + { + "name": "youtube", + "url": "https://youtube.com/watch?v=qfAcoOZj2Ew" + }, + { + "name": "facebook", + "url": "https://facebook.com/groups/4024346514274988/?ref=share" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/american-shiba/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/american-shiba" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB893A8049f250b57eFA8C62D51527a22404D7c9A/logo.png b/blockchains/ethereum/assets/0xB893A8049f250b57eFA8C62D51527a22404D7c9A/logo.png new file mode 100644 index 00000000..b4e34819 Binary files /dev/null and b/blockchains/ethereum/assets/0xB893A8049f250b57eFA8C62D51527a22404D7c9A/logo.png differ diff --git a/blockchains/ethereum/assets/0xB89656b36f8bc6Df78a1f38BF80a3d32Bf706272/info.json b/blockchains/ethereum/assets/0xB89656b36f8bc6Df78a1f38BF80a3d32Bf706272/info.json new file mode 100644 index 00000000..bf33a766 --- /dev/null +++ b/blockchains/ethereum/assets/0xB89656b36f8bc6Df78a1f38BF80a3d32Bf706272/info.json @@ -0,0 +1,11 @@ +{ + "name": "CityCashCoin", + "symbol": "CITY", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB89656b36f8bc6Df78a1f38BF80a3d32Bf706272", + "status": "abandoned", + "id": "0xB89656b36f8bc6Df78a1f38BF80a3d32Bf706272" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB89656b36f8bc6Df78a1f38BF80a3d32Bf706272/logo.png b/blockchains/ethereum/assets/0xB89656b36f8bc6Df78a1f38BF80a3d32Bf706272/logo.png new file mode 100755 index 00000000..9c575697 Binary files /dev/null and b/blockchains/ethereum/assets/0xB89656b36f8bc6Df78a1f38BF80a3d32Bf706272/logo.png differ diff --git a/blockchains/ethereum/assets/0xB8992E45a223a6841250A005B0Ed3301a1Fef9BD/info.json b/blockchains/ethereum/assets/0xB8992E45a223a6841250A005B0Ed3301a1Fef9BD/info.json new file mode 100644 index 00000000..1fc4f078 --- /dev/null +++ b/blockchains/ethereum/assets/0xB8992E45a223a6841250A005B0Ed3301a1Fef9BD/info.json @@ -0,0 +1,11 @@ +{ + "name": "DOMCoin", + "symbol": "DOMC", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB8992E45a223a6841250A005B0Ed3301a1Fef9BD", + "status": "abandoned", + "id": "0xB8992E45a223a6841250A005B0Ed3301a1Fef9BD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB8992E45a223a6841250A005B0Ed3301a1Fef9BD/logo.png b/blockchains/ethereum/assets/0xB8992E45a223a6841250A005B0Ed3301a1Fef9BD/logo.png new file mode 100644 index 00000000..b1bedb73 Binary files /dev/null and b/blockchains/ethereum/assets/0xB8992E45a223a6841250A005B0Ed3301a1Fef9BD/logo.png differ diff --git a/blockchains/ethereum/assets/0xB89D6804bEf1164C0B76B975ceF2907C606b5bBE/info.json b/blockchains/ethereum/assets/0xB89D6804bEf1164C0B76B975ceF2907C606b5bBE/info.json new file mode 100644 index 00000000..d7401129 --- /dev/null +++ b/blockchains/ethereum/assets/0xB89D6804bEf1164C0B76B975ceF2907C606b5bBE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Controlled Chaos Coin", + "symbol": "CCC", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB89D6804bEf1164C0B76B975ceF2907C606b5bBE", + "status": "abandoned", + "id": "0xB89D6804bEf1164C0B76B975ceF2907C606b5bBE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB89D6804bEf1164C0B76B975ceF2907C606b5bBE/logo.png b/blockchains/ethereum/assets/0xB89D6804bEf1164C0B76B975ceF2907C606b5bBE/logo.png new file mode 100644 index 00000000..1b587d6e Binary files /dev/null and b/blockchains/ethereum/assets/0xB89D6804bEf1164C0B76B975ceF2907C606b5bBE/logo.png differ diff --git a/blockchains/ethereum/assets/0xB8BAa0e4287890a5F79863aB62b7F175ceCbD433/info.json b/blockchains/ethereum/assets/0xB8BAa0e4287890a5F79863aB62b7F175ceCbD433/info.json new file mode 100644 index 00000000..079434ee --- /dev/null +++ b/blockchains/ethereum/assets/0xB8BAa0e4287890a5F79863aB62b7F175ceCbD433/info.json @@ -0,0 +1,15 @@ +{ + "name": "Swerve", + "website": "https://swerve.fi/", + "description": "A fork that's 100% community owned and governed.", + "explorer": "https://etherscan.io/token/0xB8BAa0e4287890a5F79863aB62b7F175ceCbD433", + "research": "https://research.binance.com/en/projects/swerve", + "type": "ERC20", + "symbol": "SWRV", + "decimals": 18, + "status": "active", + "id": "0xB8BAa0e4287890a5F79863aB62b7F175ceCbD433", + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB8BAa0e4287890a5F79863aB62b7F175ceCbD433/logo.png b/blockchains/ethereum/assets/0xB8BAa0e4287890a5F79863aB62b7F175ceCbD433/logo.png new file mode 100644 index 00000000..476cc128 Binary files /dev/null and b/blockchains/ethereum/assets/0xB8BAa0e4287890a5F79863aB62b7F175ceCbD433/logo.png differ diff --git a/blockchains/ethereum/assets/0xB8DdC930c2bAB6c71610A2BE639036E829F9C10b/info.json b/blockchains/ethereum/assets/0xB8DdC930c2bAB6c71610A2BE639036E829F9C10b/info.json new file mode 100644 index 00000000..6f9d5e8b --- /dev/null +++ b/blockchains/ethereum/assets/0xB8DdC930c2bAB6c71610A2BE639036E829F9C10b/info.json @@ -0,0 +1,11 @@ +{ + "name": "KWHCoin", + "symbol": "KWH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://kwhcoin.com", + "explorer": "https://etherscan.io/token/0xB8DdC930c2bAB6c71610A2BE639036E829F9C10b", + "status": "abandoned", + "id": "0xB8DdC930c2bAB6c71610A2BE639036E829F9C10b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB8DdC930c2bAB6c71610A2BE639036E829F9C10b/logo.png b/blockchains/ethereum/assets/0xB8DdC930c2bAB6c71610A2BE639036E829F9C10b/logo.png new file mode 100644 index 00000000..f7feddac Binary files /dev/null and b/blockchains/ethereum/assets/0xB8DdC930c2bAB6c71610A2BE639036E829F9C10b/logo.png differ diff --git a/blockchains/ethereum/assets/0xB8E2e2101eD11e9138803cd3e06e16dd19910647/info.json b/blockchains/ethereum/assets/0xB8E2e2101eD11e9138803cd3e06e16dd19910647/info.json new file mode 100644 index 00000000..5851645e --- /dev/null +++ b/blockchains/ethereum/assets/0xB8E2e2101eD11e9138803cd3e06e16dd19910647/info.json @@ -0,0 +1,49 @@ +{ + "name": "ArdCoin", + "type": "ERC20", + "symbol": "ARDX", + "decimals": 2, + "website": "https://ardcoin.com/", + "description": "ArdCoin (ARDX) - is an innovative blockchain-based loyalty token that has been integrated into a mobile super wallet which is backed by an existing financial infrastructure which includes banking services, insurance provider, stock brokerage, investment banking and a pension fund.", + "explorer": "https://etherscan.io/token/0xB8E2e2101eD11e9138803cd3e06e16dd19910647", + "status": "active", + "id": "0xB8E2e2101eD11e9138803cd3e06e16dd19910647", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ardcoin/" + }, + { + "name": "x", + "url": "https://x.com/ard_coin" + }, + { + "name": "github", + "url": "https://github.com/ArdCoin" + }, + { + "name": "whitepaper", + "url": "https://ardcoin.com/wp-content/themes/ardcoin/file/whitepaper.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/ardcoin" + }, + { + "name": "medium", + "url": "https://ardcoin.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ardcoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/ArdFinancialGroup/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ArdCoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB8E2e2101eD11e9138803cd3e06e16dd19910647/logo.png b/blockchains/ethereum/assets/0xB8E2e2101eD11e9138803cd3e06e16dd19910647/logo.png new file mode 100644 index 00000000..aae13097 Binary files /dev/null and b/blockchains/ethereum/assets/0xB8E2e2101eD11e9138803cd3e06e16dd19910647/logo.png differ diff --git a/blockchains/ethereum/assets/0xB8b8086e1C5BcBd3Ab99c1B77D5c865C80566b5a/info.json b/blockchains/ethereum/assets/0xB8b8086e1C5BcBd3Ab99c1B77D5c865C80566b5a/info.json new file mode 100644 index 00000000..2865877f --- /dev/null +++ b/blockchains/ethereum/assets/0xB8b8086e1C5BcBd3Ab99c1B77D5c865C80566b5a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum NEW GOLD", + "symbol": "EGOLD", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB8b8086e1C5BcBd3Ab99c1B77D5c865C80566b5a", + "status": "abandoned", + "id": "0xB8b8086e1C5BcBd3Ab99c1B77D5c865C80566b5a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB8b8086e1C5BcBd3Ab99c1B77D5c865C80566b5a/logo.png b/blockchains/ethereum/assets/0xB8b8086e1C5BcBd3Ab99c1B77D5c865C80566b5a/logo.png new file mode 100755 index 00000000..73b0e1f8 Binary files /dev/null and b/blockchains/ethereum/assets/0xB8b8086e1C5BcBd3Ab99c1B77D5c865C80566b5a/logo.png differ diff --git a/blockchains/ethereum/assets/0xB8c77482e45F1F44dE1745F52C74426C631bDD52/info.json b/blockchains/ethereum/assets/0xB8c77482e45F1F44dE1745F52C74426C631bDD52/info.json new file mode 100644 index 00000000..df657a11 --- /dev/null +++ b/blockchains/ethereum/assets/0xB8c77482e45F1F44dE1745F52C74426C631bDD52/info.json @@ -0,0 +1,11 @@ +{ + "name": "BNB", + "symbol": "BNB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.binance.com", + "explorer": "https://etherscan.io/token/0xB8c77482e45F1F44dE1745F52C74426C631bDD52", + "status": "active", + "id": "0xB8c77482e45F1F44dE1745F52C74426C631bDD52" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB8c77482e45F1F44dE1745F52C74426C631bDD52/logo.png b/blockchains/ethereum/assets/0xB8c77482e45F1F44dE1745F52C74426C631bDD52/logo.png new file mode 100644 index 00000000..df65de20 Binary files /dev/null and b/blockchains/ethereum/assets/0xB8c77482e45F1F44dE1745F52C74426C631bDD52/logo.png differ diff --git a/blockchains/ethereum/assets/0xB90B2A35C65dBC466b04240097Ca756ad2005295/info.json b/blockchains/ethereum/assets/0xB90B2A35C65dBC466b04240097Ca756ad2005295/info.json new file mode 100644 index 00000000..0f2ed973 --- /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 00000000..25f2ffac Binary files /dev/null and b/blockchains/ethereum/assets/0xB90B2A35C65dBC466b04240097Ca756ad2005295/logo.png differ diff --git a/blockchains/ethereum/assets/0xB92179B36794e169a2E5582ECE92936480754DA9/info.json b/blockchains/ethereum/assets/0xB92179B36794e169a2E5582ECE92936480754DA9/info.json new file mode 100644 index 00000000..2579af86 --- /dev/null +++ b/blockchains/ethereum/assets/0xB92179B36794e169a2E5582ECE92936480754DA9/info.json @@ -0,0 +1,11 @@ +{ + "name": "STRAW Coin", + "symbol": "STRAW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB92179B36794e169a2E5582ECE92936480754DA9", + "status": "abandoned", + "id": "0xB92179B36794e169a2E5582ECE92936480754DA9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB92179B36794e169a2E5582ECE92936480754DA9/logo.png b/blockchains/ethereum/assets/0xB92179B36794e169a2E5582ECE92936480754DA9/logo.png new file mode 100644 index 00000000..c9e52747 Binary files /dev/null and b/blockchains/ethereum/assets/0xB92179B36794e169a2E5582ECE92936480754DA9/logo.png differ diff --git a/blockchains/ethereum/assets/0xB92d0303640cc213C05b01E2Ad547eA1D9C3eF50/info.json b/blockchains/ethereum/assets/0xB92d0303640cc213C05b01E2Ad547eA1D9C3eF50/info.json new file mode 100644 index 00000000..6497aed5 --- /dev/null +++ b/blockchains/ethereum/assets/0xB92d0303640cc213C05b01E2Ad547eA1D9C3eF50/info.json @@ -0,0 +1,11 @@ +{ + "name": "SUREBANQA PEGGED EXCHANGE RATE TOKEN", + "symbol": "BNQA", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB92d0303640cc213C05b01E2Ad547eA1D9C3eF50", + "status": "abandoned", + "id": "0xB92d0303640cc213C05b01E2Ad547eA1D9C3eF50" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB92d0303640cc213C05b01E2Ad547eA1D9C3eF50/logo.png b/blockchains/ethereum/assets/0xB92d0303640cc213C05b01E2Ad547eA1D9C3eF50/logo.png new file mode 100755 index 00000000..45a3afdd Binary files /dev/null and b/blockchains/ethereum/assets/0xB92d0303640cc213C05b01E2Ad547eA1D9C3eF50/logo.png differ diff --git a/blockchains/ethereum/assets/0xB9464ef80880c5aeA54C7324c0b8Dd6ca6d05A90/info.json b/blockchains/ethereum/assets/0xB9464ef80880c5aeA54C7324c0b8Dd6ca6d05A90/info.json new file mode 100644 index 00000000..0322f3a2 --- /dev/null +++ b/blockchains/ethereum/assets/0xB9464ef80880c5aeA54C7324c0b8Dd6ca6d05A90/info.json @@ -0,0 +1,26 @@ +{ + "name": "LOCK", + "website": "https://sherlocksecurity.io", + "description": "Sherlock is a decentralized security service offering dapp launchpad, liquidity and team token escrow, and dapp incubator.", + "explorer": "https://etherscan.io/token/0xB9464ef80880c5aeA54C7324c0b8Dd6ca6d05A90", + "research": "https://etherscan.io/address/0xb9464ef80880c5aea54c7324c0b8dd6ca6d05a90", + "type": "ERC20", + "symbol": "LOCK", + "decimals": 18, + "status": "active", + "id": "0xB9464ef80880c5aeA54C7324c0b8Dd6ca6d05A90", + "links": [ + { + "name": "x", + "url": "https://x.com/ethereum" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ethereum" + }, + { + "name": "whitepaper", + "url": "https://sherlocksecurity.io/SherlockWhitepaperV1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB9464ef80880c5aeA54C7324c0b8Dd6ca6d05A90/logo.png b/blockchains/ethereum/assets/0xB9464ef80880c5aeA54C7324c0b8Dd6ca6d05A90/logo.png new file mode 100644 index 00000000..2ff808a8 Binary files /dev/null and b/blockchains/ethereum/assets/0xB9464ef80880c5aeA54C7324c0b8Dd6ca6d05A90/logo.png differ diff --git a/blockchains/ethereum/assets/0xB9680C592ec9306497260c4FdEab3624FE898857/info.json b/blockchains/ethereum/assets/0xB9680C592ec9306497260c4FdEab3624FE898857/info.json new file mode 100644 index 00000000..cb8357e7 --- /dev/null +++ b/blockchains/ethereum/assets/0xB9680C592ec9306497260c4FdEab3624FE898857/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R747003", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB9680C592ec9306497260c4FdEab3624FE898857", + "status": "abandoned", + "id": "0xB9680C592ec9306497260c4FdEab3624FE898857" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB9680C592ec9306497260c4FdEab3624FE898857/logo.png b/blockchains/ethereum/assets/0xB9680C592ec9306497260c4FdEab3624FE898857/logo.png new file mode 100644 index 00000000..c6f5de03 Binary files /dev/null and b/blockchains/ethereum/assets/0xB9680C592ec9306497260c4FdEab3624FE898857/logo.png differ diff --git a/blockchains/ethereum/assets/0xB96eB33E4a1a9ea3B8581aBC8185F9597E45E8AA/info.json b/blockchains/ethereum/assets/0xB96eB33E4a1a9ea3B8581aBC8185F9597E45E8AA/info.json new file mode 100644 index 00000000..4426014d --- /dev/null +++ b/blockchains/ethereum/assets/0xB96eB33E4a1a9ea3B8581aBC8185F9597E45E8AA/info.json @@ -0,0 +1,11 @@ +{ + "name": "HeroCoin", + "symbol": "HEC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB96eB33E4a1a9ea3B8581aBC8185F9597E45E8AA", + "status": "abandoned", + "id": "0xB96eB33E4a1a9ea3B8581aBC8185F9597E45E8AA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB96eB33E4a1a9ea3B8581aBC8185F9597E45E8AA/logo.png b/blockchains/ethereum/assets/0xB96eB33E4a1a9ea3B8581aBC8185F9597E45E8AA/logo.png new file mode 100644 index 00000000..c23666d0 Binary files /dev/null and b/blockchains/ethereum/assets/0xB96eB33E4a1a9ea3B8581aBC8185F9597E45E8AA/logo.png differ diff --git a/blockchains/ethereum/assets/0xB97048628DB6B661D4C2aA833e95Dbe1A905B280/info.json b/blockchains/ethereum/assets/0xB97048628DB6B661D4C2aA833e95Dbe1A905B280/info.json new file mode 100644 index 00000000..90027162 --- /dev/null +++ b/blockchains/ethereum/assets/0xB97048628DB6B661D4C2aA833e95Dbe1A905B280/info.json @@ -0,0 +1,11 @@ +{ + "name": "TenX Pay Token", + "symbol": "PAY", + "type": "ERC20", + "decimals": 18, + "description": "TenX is a payment platform that facilitates digital and physical modes of transaction for cryptocurrencies to any merchant, even if they don’t accept cryptocurrencies. Physical and digital modes of course, include bank accounts, wallets, debit cards, cash and much more.", + "website": "https://www.tenx.tech/", + "explorer": "https://etherscan.io/token/0xB97048628DB6B661D4C2aA833e95Dbe1A905B280", + "status": "active", + "id": "0xB97048628DB6B661D4C2aA833e95Dbe1A905B280" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB97048628DB6B661D4C2aA833e95Dbe1A905B280/logo.png b/blockchains/ethereum/assets/0xB97048628DB6B661D4C2aA833e95Dbe1A905B280/logo.png new file mode 100755 index 00000000..21935192 Binary files /dev/null and b/blockchains/ethereum/assets/0xB97048628DB6B661D4C2aA833e95Dbe1A905B280/logo.png differ diff --git a/blockchains/ethereum/assets/0xB9843e5dE0f37d1e22C8075e5814e13565FE7C22/info.json b/blockchains/ethereum/assets/0xB9843e5dE0f37d1e22C8075e5814e13565FE7C22/info.json new file mode 100644 index 00000000..f7ba0c4c --- /dev/null +++ b/blockchains/ethereum/assets/0xB9843e5dE0f37d1e22C8075e5814e13565FE7C22/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lucky Block Network", + "symbol": "LBN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB9843e5dE0f37d1e22C8075e5814e13565FE7C22", + "status": "abandoned", + "id": "0xB9843e5dE0f37d1e22C8075e5814e13565FE7C22" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB9843e5dE0f37d1e22C8075e5814e13565FE7C22/logo.png b/blockchains/ethereum/assets/0xB9843e5dE0f37d1e22C8075e5814e13565FE7C22/logo.png new file mode 100644 index 00000000..ffce47eb Binary files /dev/null and b/blockchains/ethereum/assets/0xB9843e5dE0f37d1e22C8075e5814e13565FE7C22/logo.png differ diff --git a/blockchains/ethereum/assets/0xB987D48Ed8f2C468D52D6405624EADBa5e76d723/info.json b/blockchains/ethereum/assets/0xB987D48Ed8f2C468D52D6405624EADBa5e76d723/info.json new file mode 100644 index 00000000..de8254da --- /dev/null +++ b/blockchains/ethereum/assets/0xB987D48Ed8f2C468D52D6405624EADBa5e76d723/info.json @@ -0,0 +1,25 @@ +{ + "name": "Stabilize Token", + "website": "https://stabilize.finance", + "description": "Stabilize Token (STBZ) is a reward token of the Stabilize Protocol", + "explorer": "https://etherscan.io/token/0xB987D48Ed8f2C468D52D6405624EADBa5e76d723", + "type": "ERC20", + "symbol": "STBZ", + "decimals": 18, + "status": "active", + "id": "0xB987D48Ed8f2C468D52D6405624EADBa5e76d723", + "links": [ + { + "name": "github", + "url": "https://github.com/stabilize-token/" + }, + { + "name": "x", + "url": "https://x.com/StabilizePro" + }, + { + "name": "telegram", + "url": "https://t.me/stabilizeprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB987D48Ed8f2C468D52D6405624EADBa5e76d723/logo.png b/blockchains/ethereum/assets/0xB987D48Ed8f2C468D52D6405624EADBa5e76d723/logo.png new file mode 100644 index 00000000..5809e5d5 Binary files /dev/null and b/blockchains/ethereum/assets/0xB987D48Ed8f2C468D52D6405624EADBa5e76d723/logo.png differ diff --git a/blockchains/ethereum/assets/0xB98d4C97425d9908E66E53A6fDf673ACcA0BE986/info.json b/blockchains/ethereum/assets/0xB98d4C97425d9908E66E53A6fDf673ACcA0BE986/info.json new file mode 100644 index 00000000..1514bebd --- /dev/null +++ b/blockchains/ethereum/assets/0xB98d4C97425d9908E66E53A6fDf673ACcA0BE986/info.json @@ -0,0 +1,11 @@ +{ + "name": "ArcBlock", + "symbol": "ABT", + "type": "ERC20", + "decimals": 18, + "description": "ArcBlock is your new decentralized developer platform that simplifies the development of DApps, DLT and Blockchains.", + "website": "https://www.arcblock.io", + "explorer": "https://etherscan.io/token/0xB98d4C97425d9908E66E53A6fDf673ACcA0BE986", + "status": "active", + "id": "0xB98d4C97425d9908E66E53A6fDf673ACcA0BE986" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB98d4C97425d9908E66E53A6fDf673ACcA0BE986/logo.png b/blockchains/ethereum/assets/0xB98d4C97425d9908E66E53A6fDf673ACcA0BE986/logo.png new file mode 100755 index 00000000..0e1bd5e9 Binary files /dev/null and b/blockchains/ethereum/assets/0xB98d4C97425d9908E66E53A6fDf673ACcA0BE986/logo.png differ diff --git a/blockchains/ethereum/assets/0xB9D7CB55f463405CDfBe4E90a6D2Df01C2B92BF1/info.json b/blockchains/ethereum/assets/0xB9D7CB55f463405CDfBe4E90a6D2Df01C2B92BF1/info.json new file mode 100644 index 00000000..1fb062dd --- /dev/null +++ b/blockchains/ethereum/assets/0xB9D7CB55f463405CDfBe4E90a6D2Df01C2B92BF1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave UNI", + "symbol": "aUNI", + "type": "ERC20", + "decimals": 18, + "description": "Aave UNI is an interest bearing token pegged 1:1 to the underlying UNI deposited in Aave. aUNI accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xB9D7CB55f463405CDfBe4E90a6D2Df01C2B92BF1", + "status": "active", + "id": "0xB9D7CB55f463405CDfBe4E90a6D2Df01C2B92BF1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB9D7CB55f463405CDfBe4E90a6D2Df01C2B92BF1/logo.png b/blockchains/ethereum/assets/0xB9D7CB55f463405CDfBe4E90a6D2Df01C2B92BF1/logo.png new file mode 100644 index 00000000..78ddfe60 Binary files /dev/null and b/blockchains/ethereum/assets/0xB9D7CB55f463405CDfBe4E90a6D2Df01C2B92BF1/logo.png differ diff --git a/blockchains/ethereum/assets/0xB9D90d2292eCAAEb616a7C709ec6D24F9FD5E286/info.json b/blockchains/ethereum/assets/0xB9D90d2292eCAAEb616a7C709ec6D24F9FD5E286/info.json new file mode 100644 index 00000000..d6d61fd0 --- /dev/null +++ b/blockchains/ethereum/assets/0xB9D90d2292eCAAEb616a7C709ec6D24F9FD5E286/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long ZRX-DAI 4x v2", + "symbol": "dLZRX4x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB9D90d2292eCAAEb616a7C709ec6D24F9FD5E286", + "status": "abandoned", + "id": "0xB9D90d2292eCAAEb616a7C709ec6D24F9FD5E286" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB9D90d2292eCAAEb616a7C709ec6D24F9FD5E286/logo.png b/blockchains/ethereum/assets/0xB9D90d2292eCAAEb616a7C709ec6D24F9FD5E286/logo.png new file mode 100644 index 00000000..71aa7664 Binary files /dev/null and b/blockchains/ethereum/assets/0xB9D90d2292eCAAEb616a7C709ec6D24F9FD5E286/logo.png differ diff --git a/blockchains/ethereum/assets/0xB9EefC4b0d472A44be93970254Df4f4016569d27/info.json b/blockchains/ethereum/assets/0xB9EefC4b0d472A44be93970254Df4f4016569d27/info.json new file mode 100644 index 00000000..999cd92f --- /dev/null +++ b/blockchains/ethereum/assets/0xB9EefC4b0d472A44be93970254Df4f4016569d27/info.json @@ -0,0 +1,11 @@ +{ + "name": "digitalbits", + "symbol": "XDB", + "type": "ERC20", + "decimals": 7, + "description": "DigitalBits is a protocol layer blockchain designed to support consumer digital assets, specifically brand currencies.", + "website": "https://www.digitalbits.io", + "explorer": "https://etherscan.io/token/0xB9EefC4b0d472A44be93970254Df4f4016569d27", + "status": "active", + "id": "0xB9EefC4b0d472A44be93970254Df4f4016569d27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB9EefC4b0d472A44be93970254Df4f4016569d27/logo.png b/blockchains/ethereum/assets/0xB9EefC4b0d472A44be93970254Df4f4016569d27/logo.png new file mode 100644 index 00000000..76c63261 Binary files /dev/null and b/blockchains/ethereum/assets/0xB9EefC4b0d472A44be93970254Df4f4016569d27/logo.png differ diff --git a/blockchains/ethereum/assets/0xB9bb08AB7E9Fa0A1356bd4A39eC0ca267E03b0b3/info.json b/blockchains/ethereum/assets/0xB9bb08AB7E9Fa0A1356bd4A39eC0ca267E03b0b3/info.json new file mode 100644 index 00000000..0ae3d9e3 --- /dev/null +++ b/blockchains/ethereum/assets/0xB9bb08AB7E9Fa0A1356bd4A39eC0ca267E03b0b3/info.json @@ -0,0 +1,11 @@ +{ + "name": "PCHAIN", + "symbol": "PI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xB9bb08AB7E9Fa0A1356bd4A39eC0ca267E03b0b3", + "status": "abandoned", + "id": "0xB9bb08AB7E9Fa0A1356bd4A39eC0ca267E03b0b3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB9bb08AB7E9Fa0A1356bd4A39eC0ca267E03b0b3/logo.png b/blockchains/ethereum/assets/0xB9bb08AB7E9Fa0A1356bd4A39eC0ca267E03b0b3/logo.png new file mode 100755 index 00000000..07ec63fd Binary files /dev/null and b/blockchains/ethereum/assets/0xB9bb08AB7E9Fa0A1356bd4A39eC0ca267E03b0b3/logo.png differ diff --git a/blockchains/ethereum/assets/0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF/info.json b/blockchains/ethereum/assets/0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF/info.json new file mode 100644 index 00000000..828ead7f --- /dev/null +++ b/blockchains/ethereum/assets/0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF/info.json @@ -0,0 +1,29 @@ +{ + "name": "K21", + "website": "https://k21.kanon.art", + "description": "K21 is a closed-end art vault that provides liquid exposure to a curated collection of 21 unique and original NFT artworks by a diverse roster of influential and pioneering contemporary, digital, and cryptonative artists. Engineered for composability, durability, and equity, K21 establishes a new protocol for art.", + "explorer": "https://etherscan.io/token/0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF", + "type": "ERC20", + "symbol": "K21", + "decimals": 18, + "status": "active", + "id": "0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF", + "links": [ + { + "name": "github", + "url": "https://github.com/kanonart" + }, + { + "name": "x", + "url": "https://x.com/KanonDotArt" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bzEqs25RKN" + }, + { + "name": "medium", + "url": "https://kanondotart.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF/logo.png b/blockchains/ethereum/assets/0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF/logo.png new file mode 100644 index 00000000..add78c4e Binary files /dev/null and b/blockchains/ethereum/assets/0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF/logo.png differ diff --git a/blockchains/ethereum/assets/0xB9daEEa12b791Da3CF3DC487C97F7b02735D1d8A/info.json b/blockchains/ethereum/assets/0xB9daEEa12b791Da3CF3DC487C97F7b02735D1d8A/info.json new file mode 100644 index 00000000..def3ec74 --- /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/0xB9e7F8568e08d5659f5D29C4997173d84CdF2607/info.json b/blockchains/ethereum/assets/0xB9e7F8568e08d5659f5D29C4997173d84CdF2607/info.json new file mode 100644 index 00000000..88d7ce1e --- /dev/null +++ b/blockchains/ethereum/assets/0xB9e7F8568e08d5659f5D29C4997173d84CdF2607/info.json @@ -0,0 +1,11 @@ +{ + "name": "Swarm City Token", + "symbol": "SWT", + "type": "ERC20", + "decimals": 18, + "description": "Swarm City allows people to communicate and transact in a decentralized way. Like other blockchain platforms, Swarm City has no middleman or trusted, centralized platform. It’s a P2P environment based on the Ethereum blockchain. One of the key features of Swarm City is the use of the Swarm City Token, or SWT.", + "website": "https://swarm.city/", + "explorer": "https://etherscan.io/token/0xB9e7F8568e08d5659f5D29C4997173d84CdF2607", + "status": "active", + "id": "0xB9e7F8568e08d5659f5D29C4997173d84CdF2607" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB9e7F8568e08d5659f5D29C4997173d84CdF2607/logo.png b/blockchains/ethereum/assets/0xB9e7F8568e08d5659f5D29C4997173d84CdF2607/logo.png new file mode 100644 index 00000000..1db6866a Binary files /dev/null and b/blockchains/ethereum/assets/0xB9e7F8568e08d5659f5D29C4997173d84CdF2607/logo.png differ diff --git a/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/info.json b/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/info.json new file mode 100644 index 00000000..e700e1c9 --- /dev/null +++ b/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/info.json @@ -0,0 +1,15 @@ +{ + "name": "Band Protocol", + "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", + "research": "https://research.binance.com/en/projects/band-protocol", + "type": "ERC20", + "symbol": "BAND", + "decimals": 18, + "status": "active", + "id": "0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png b/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png new file mode 100644 index 00000000..9db68a25 Binary files /dev/null and b/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png differ diff --git a/blockchains/ethereum/assets/0xBA14b245d449965BdBeB630ebe135B569474F5b1/info.json b/blockchains/ethereum/assets/0xBA14b245d449965BdBeB630ebe135B569474F5b1/info.json new file mode 100644 index 00000000..b2800560 --- /dev/null +++ b/blockchains/ethereum/assets/0xBA14b245d449965BdBeB630ebe135B569474F5b1/info.json @@ -0,0 +1,11 @@ +{ + "name": " EvaCash ", + "symbol": "EVC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://theevacash.com", + "explorer": "https://etherscan.io/token/0xBA14b245d449965BdBeB630ebe135B569474F5b1", + "status": "abandoned", + "id": "0xBA14b245d449965BdBeB630ebe135B569474F5b1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBA14b245d449965BdBeB630ebe135B569474F5b1/logo.png b/blockchains/ethereum/assets/0xBA14b245d449965BdBeB630ebe135B569474F5b1/logo.png new file mode 100644 index 00000000..93deac20 Binary files /dev/null and b/blockchains/ethereum/assets/0xBA14b245d449965BdBeB630ebe135B569474F5b1/logo.png differ diff --git a/blockchains/ethereum/assets/0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003/info.json b/blockchains/ethereum/assets/0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003/info.json new file mode 100644 index 00000000..d8ec18b8 --- /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 00000000..22fc2177 Binary files /dev/null and b/blockchains/ethereum/assets/0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003/logo.png differ diff --git a/blockchains/ethereum/assets/0xBA50933C268F567BDC86E1aC131BE072C6B0b71a/info.json b/blockchains/ethereum/assets/0xBA50933C268F567BDC86E1aC131BE072C6B0b71a/info.json new file mode 100644 index 00000000..887ad9ea --- /dev/null +++ b/blockchains/ethereum/assets/0xBA50933C268F567BDC86E1aC131BE072C6B0b71a/info.json @@ -0,0 +1,12 @@ +{ + "name": "ARPA Chain", + "website": "https://arpachain.io/", + "description": "Arpa envisions to be a privacy-preserving computation network by leveraging Multi-Party Computation (MPC).", + "explorer": "https://etherscan.io/token/0xBA50933C268F567BDC86E1aC131BE072C6B0b71a", + "research": "https://research.binance.com/en/projects/arpa", + "type": "ERC20", + "symbol": "ARPA", + "decimals": 18, + "status": "active", + "id": "0xBA50933C268F567BDC86E1aC131BE072C6B0b71a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBA50933C268F567BDC86E1aC131BE072C6B0b71a/logo.png b/blockchains/ethereum/assets/0xBA50933C268F567BDC86E1aC131BE072C6B0b71a/logo.png new file mode 100644 index 00000000..2b3913b1 Binary files /dev/null and b/blockchains/ethereum/assets/0xBA50933C268F567BDC86E1aC131BE072C6B0b71a/logo.png differ diff --git a/blockchains/ethereum/assets/0xBA5F11b16B155792Cf3B2E6880E8706859A8AEB6/info.json b/blockchains/ethereum/assets/0xBA5F11b16B155792Cf3B2E6880E8706859A8AEB6/info.json new file mode 100644 index 00000000..52f5f9aa --- /dev/null +++ b/blockchains/ethereum/assets/0xBA5F11b16B155792Cf3B2E6880E8706859A8AEB6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aeron", + "symbol": "ARN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://aeron.aero/", + "explorer": "https://etherscan.io/token/0xBA5F11b16B155792Cf3B2E6880E8706859A8AEB6", + "status": "abandoned", + "id": "0xBA5F11b16B155792Cf3B2E6880E8706859A8AEB6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBA5F11b16B155792Cf3B2E6880E8706859A8AEB6/logo.png b/blockchains/ethereum/assets/0xBA5F11b16B155792Cf3B2E6880E8706859A8AEB6/logo.png new file mode 100644 index 00000000..eb6704e1 Binary files /dev/null and b/blockchains/ethereum/assets/0xBA5F11b16B155792Cf3B2E6880E8706859A8AEB6/logo.png differ diff --git a/blockchains/ethereum/assets/0xBA8c0244FBDEB10f19f6738750dAeEDF7a5081eb/info.json b/blockchains/ethereum/assets/0xBA8c0244FBDEB10f19f6738750dAeEDF7a5081eb/info.json new file mode 100644 index 00000000..0e6521e3 --- /dev/null +++ b/blockchains/ethereum/assets/0xBA8c0244FBDEB10f19f6738750dAeEDF7a5081eb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Suterusu", + "symbol": "Suter", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.suterusu.io/", + "explorer": "https://etherscan.io/token/0xBA8c0244FBDEB10f19f6738750dAeEDF7a5081eb", + "status": "abandoned", + "id": "0xBA8c0244FBDEB10f19f6738750dAeEDF7a5081eb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBA8c0244FBDEB10f19f6738750dAeEDF7a5081eb/logo.png b/blockchains/ethereum/assets/0xBA8c0244FBDEB10f19f6738750dAeEDF7a5081eb/logo.png new file mode 100644 index 00000000..71e29c47 Binary files /dev/null and b/blockchains/ethereum/assets/0xBA8c0244FBDEB10f19f6738750dAeEDF7a5081eb/logo.png differ diff --git a/blockchains/ethereum/assets/0xBA9262578EFef8b3aFf7F60Cd629d6CC8859C8b5/info.json b/blockchains/ethereum/assets/0xBA9262578EFef8b3aFf7F60Cd629d6CC8859C8b5/info.json new file mode 100644 index 00000000..8134fba7 --- /dev/null +++ b/blockchains/ethereum/assets/0xBA9262578EFef8b3aFf7F60Cd629d6CC8859C8b5/info.json @@ -0,0 +1,11 @@ +{ + "name": "bZx WBTC iToken", + "symbol": "iWBTC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBA9262578EFef8b3aFf7F60Cd629d6CC8859C8b5", + "status": "abandoned", + "id": "0xBA9262578EFef8b3aFf7F60Cd629d6CC8859C8b5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBA9262578EFef8b3aFf7F60Cd629d6CC8859C8b5/logo.png b/blockchains/ethereum/assets/0xBA9262578EFef8b3aFf7F60Cd629d6CC8859C8b5/logo.png new file mode 100644 index 00000000..6a0a56e4 Binary files /dev/null and b/blockchains/ethereum/assets/0xBA9262578EFef8b3aFf7F60Cd629d6CC8859C8b5/logo.png differ diff --git a/blockchains/ethereum/assets/0xBAE235823D7255D9D48635cEd4735227244Cd583/info.json b/blockchains/ethereum/assets/0xBAE235823D7255D9D48635cEd4735227244Cd583/info.json new file mode 100644 index 00000000..7d795323 --- /dev/null +++ b/blockchains/ethereum/assets/0xBAE235823D7255D9D48635cEd4735227244Cd583/info.json @@ -0,0 +1,11 @@ +{ + "name": "Staker", + "symbol": "STR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBAE235823D7255D9D48635cEd4735227244Cd583", + "status": "abandoned", + "id": "0xBAE235823D7255D9D48635cEd4735227244Cd583" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBAE235823D7255D9D48635cEd4735227244Cd583/logo.png b/blockchains/ethereum/assets/0xBAE235823D7255D9D48635cEd4735227244Cd583/logo.png new file mode 100644 index 00000000..e6f31a2f Binary files /dev/null and b/blockchains/ethereum/assets/0xBAE235823D7255D9D48635cEd4735227244Cd583/logo.png differ diff --git a/blockchains/ethereum/assets/0xBAb165dF9455AA0F2AeD1f2565520B91DDadB4c8/info.json b/blockchains/ethereum/assets/0xBAb165dF9455AA0F2AeD1f2565520B91DDadB4c8/info.json new file mode 100644 index 00000000..27125cb0 --- /dev/null +++ b/blockchains/ethereum/assets/0xBAb165dF9455AA0F2AeD1f2565520B91DDadB4c8/info.json @@ -0,0 +1,11 @@ +{ + "name": "EDUCare", + "symbol": "EKT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://ekt8.io/", + "explorer": "https://etherscan.io/token/0xBAb165dF9455AA0F2AeD1f2565520B91DDadB4c8", + "status": "abandoned", + "id": "0xBAb165dF9455AA0F2AeD1f2565520B91DDadB4c8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBAb165dF9455AA0F2AeD1f2565520B91DDadB4c8/logo.png b/blockchains/ethereum/assets/0xBAb165dF9455AA0F2AeD1f2565520B91DDadB4c8/logo.png new file mode 100644 index 00000000..bdf4491b Binary files /dev/null and b/blockchains/ethereum/assets/0xBAb165dF9455AA0F2AeD1f2565520B91DDadB4c8/logo.png differ diff --git a/blockchains/ethereum/assets/0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b/info.json b/blockchains/ethereum/assets/0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b/info.json new file mode 100644 index 00000000..b49b9e76 --- /dev/null +++ b/blockchains/ethereum/assets/0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b/info.json @@ -0,0 +1,16 @@ +{ + "name": "Axie Infinity Shard", + "website": "https://axieinfinity.com", + "description": "Axie Infinity Shards are Axie Infinity's governance token.", + "explorer": "https://etherscan.io/token/0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b", + "research": "https://research.binance.com/en/projects/axie-infinity", + "type": "ERC20", + "symbol": "AXS", + "decimals": 18, + "status": "active", + "id": "0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b", + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b/logo.png b/blockchains/ethereum/assets/0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b/logo.png new file mode 100644 index 00000000..73d60607 Binary files /dev/null and b/blockchains/ethereum/assets/0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b/logo.png differ diff --git a/blockchains/ethereum/assets/0xBB13E608888E5D30C09b13F89d27631056161B9F/info.json b/blockchains/ethereum/assets/0xBB13E608888E5D30C09b13F89d27631056161B9F/info.json new file mode 100644 index 00000000..18423b0f --- /dev/null +++ b/blockchains/ethereum/assets/0xBB13E608888E5D30C09b13F89d27631056161B9F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Genaro Network Token", + "symbol": "GNR", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBB13E608888E5D30C09b13F89d27631056161B9F", + "status": "abandoned", + "id": "0xBB13E608888E5D30C09b13F89d27631056161B9F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBB13E608888E5D30C09b13F89d27631056161B9F/logo.png b/blockchains/ethereum/assets/0xBB13E608888E5D30C09b13F89d27631056161B9F/logo.png new file mode 100644 index 00000000..4ec3afe9 Binary files /dev/null and b/blockchains/ethereum/assets/0xBB13E608888E5D30C09b13F89d27631056161B9F/logo.png differ diff --git a/blockchains/ethereum/assets/0xBB49A51Ee5a66ca3a8CbE529379bA44Ba67E6771/info.json b/blockchains/ethereum/assets/0xBB49A51Ee5a66ca3a8CbE529379bA44Ba67E6771/info.json new file mode 100644 index 00000000..45688963 --- /dev/null +++ b/blockchains/ethereum/assets/0xBB49A51Ee5a66ca3a8CbE529379bA44Ba67E6771/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptosolartech", + "symbol": "CST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://cryptosolartech.org/", + "explorer": "https://etherscan.io/token/0xBB49A51Ee5a66ca3a8CbE529379bA44Ba67E6771", + "status": "abandoned", + "id": "0xBB49A51Ee5a66ca3a8CbE529379bA44Ba67E6771" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBB49A51Ee5a66ca3a8CbE529379bA44Ba67E6771/logo.png b/blockchains/ethereum/assets/0xBB49A51Ee5a66ca3a8CbE529379bA44Ba67E6771/logo.png new file mode 100644 index 00000000..b0ff7780 Binary files /dev/null and b/blockchains/ethereum/assets/0xBB49A51Ee5a66ca3a8CbE529379bA44Ba67E6771/logo.png differ diff --git a/blockchains/ethereum/assets/0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413/info.json b/blockchains/ethereum/assets/0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413/info.json new file mode 100644 index 00000000..886af875 --- /dev/null +++ b/blockchains/ethereum/assets/0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413/info.json @@ -0,0 +1,11 @@ +{ + "name": "TheDAO", + "symbol": "DAO", + "type": "ERC20", + "decimals": 16, + "description": "TheDAO was launched in 2016. It was the first major DAO project on Ethereum. The tokens continue to be active today", + "website": "https://en.wikipedia.org/wiki/The_DAO_(organization)", + "explorer": "https://etherscan.io/token/0xbb9bc244d798123fde783fcc1c72d3bb8c189413", + "status": "active", + "id": "0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413/logo.png b/blockchains/ethereum/assets/0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413/logo.png new file mode 100644 index 00000000..57d58b13 Binary files /dev/null and b/blockchains/ethereum/assets/0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413/logo.png differ diff --git a/blockchains/ethereum/assets/0xBBC7f7A6AADAc103769C66CBC69AB720f7F9Eae3/info.json b/blockchains/ethereum/assets/0xBBC7f7A6AADAc103769C66CBC69AB720f7F9Eae3/info.json new file mode 100644 index 00000000..8ca58e73 --- /dev/null +++ b/blockchains/ethereum/assets/0xBBC7f7A6AADAc103769C66CBC69AB720f7F9Eae3/info.json @@ -0,0 +1,11 @@ +{ + "name": "INX", + "website": "https://token.inx.co/", + "description": "INX Limited is developing a single entry-point for our customers for the trading of cryptocurrencies, security tokens, and their derivatives. Investors in the INX token are entitled to receive pro rata distributions of 40% of the Company’s cumulative adjusted operating cash flow.", + "explorer": "https://etherscan.io/token/0xBBC7f7A6AADAc103769C66CBC69AB720f7F9Eae3", + "type": "ERC20", + "symbol": "INX", + "decimals": 18, + "status": "active", + "id": "0xBBC7f7A6AADAc103769C66CBC69AB720f7F9Eae3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBBC7f7A6AADAc103769C66CBC69AB720f7F9Eae3/logo.png b/blockchains/ethereum/assets/0xBBC7f7A6AADAc103769C66CBC69AB720f7F9Eae3/logo.png new file mode 100644 index 00000000..a5e0cd81 Binary files /dev/null and b/blockchains/ethereum/assets/0xBBC7f7A6AADAc103769C66CBC69AB720f7F9Eae3/logo.png differ diff --git a/blockchains/ethereum/assets/0xBBCA7197c4BF733d8fD38751733864B70851CB87/info.json b/blockchains/ethereum/assets/0xBBCA7197c4BF733d8fD38751733864B70851CB87/info.json new file mode 100644 index 00000000..5ba15b81 --- /dev/null +++ b/blockchains/ethereum/assets/0xBBCA7197c4BF733d8fD38751733864B70851CB87/info.json @@ -0,0 +1,11 @@ +{ + "name": "CIBUS Token", + "symbol": "CBT", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBBCA7197c4BF733d8fD38751733864B70851CB87", + "status": "abandoned", + "id": "0xBBCA7197c4BF733d8fD38751733864B70851CB87" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBBCA7197c4BF733d8fD38751733864B70851CB87/logo.png b/blockchains/ethereum/assets/0xBBCA7197c4BF733d8fD38751733864B70851CB87/logo.png new file mode 100755 index 00000000..01f456cf Binary files /dev/null and b/blockchains/ethereum/assets/0xBBCA7197c4BF733d8fD38751733864B70851CB87/logo.png differ diff --git a/blockchains/ethereum/assets/0xBBF4bdeBECe7fFEc5d93225d4866CE50Ca651F6B/info.json b/blockchains/ethereum/assets/0xBBF4bdeBECe7fFEc5d93225d4866CE50Ca651F6B/info.json new file mode 100644 index 00000000..7cce2421 --- /dev/null +++ b/blockchains/ethereum/assets/0xBBF4bdeBECe7fFEc5d93225d4866CE50Ca651F6B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Piara", + "symbol": "PIARA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBBF4bdeBECe7fFEc5d93225d4866CE50Ca651F6B", + "status": "abandoned", + "id": "0xBBF4bdeBECe7fFEc5d93225d4866CE50Ca651F6B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBBF4bdeBECe7fFEc5d93225d4866CE50Ca651F6B/logo.png b/blockchains/ethereum/assets/0xBBF4bdeBECe7fFEc5d93225d4866CE50Ca651F6B/logo.png new file mode 100644 index 00000000..7b954234 Binary files /dev/null and b/blockchains/ethereum/assets/0xBBF4bdeBECe7fFEc5d93225d4866CE50Ca651F6B/logo.png differ diff --git a/blockchains/ethereum/assets/0xBBa39Fd2935d5769116ce38d46a71bde9cf03099/info.json b/blockchains/ethereum/assets/0xBBa39Fd2935d5769116ce38d46a71bde9cf03099/info.json new file mode 100644 index 00000000..5a69a689 --- /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 00000000..42317bac 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 new file mode 100644 index 00000000..3dfc2e52 --- /dev/null +++ b/blockchains/ethereum/assets/0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD/info.json @@ -0,0 +1,44 @@ +{ + "name": "Loopring", + "website": "https://loopring.org", + "description": "The Loopring protocol smart contracts and zero-knowledge proof circuits allow the building of high-performance DEXes using a zkRollup construction.", + "explorer": "https://etherscan.io/token/0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD", + "type": "ERC20", + "symbol": "LRC", + "decimals": 18, + "status": "active", + "id": "0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/Loopring" + }, + { + "name": "x", + "url": "https://x.com/loopringorg" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/loopringorg/" + }, + { + "name": "blog", + "url": "https://medium.com/loopring-protocol" + }, + { + "name": "telegram", + "url": "https://t.me/loopring_en" + }, + { + "name": "whitepaper", + "url": "https://github.com/Loopring/protocols/blob/master/packages/loopring_v3/DESIGN.md" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/loopring/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD/logo.png b/blockchains/ethereum/assets/0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD/logo.png new file mode 100644 index 00000000..7be57942 Binary files /dev/null and b/blockchains/ethereum/assets/0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD/logo.png differ diff --git a/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/info.json b/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/info.json new file mode 100644 index 00000000..534345a7 --- /dev/null +++ b/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/info.json @@ -0,0 +1,25 @@ +{ + "name": "Ethernity Chain", + "type": "ERC20", + "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://etherscan.io/token/0xbbc2ae13b23d715c30720f079fcd9b4a74093505", + "status": "active", + "id": "0xBBc2AE13b23d715c30720F079fcd9B4a74093505", + "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/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/logo.png b/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/logo.png new file mode 100644 index 00000000..0a3ef5da Binary files /dev/null and b/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/logo.png differ diff --git a/blockchains/ethereum/assets/0xBC46D9961A3932f7D6b64abfdeC80C1816C4B835/info.json b/blockchains/ethereum/assets/0xBC46D9961A3932f7D6b64abfdeC80C1816C4B835/info.json new file mode 100644 index 00000000..8f8d74de --- /dev/null +++ b/blockchains/ethereum/assets/0xBC46D9961A3932f7D6b64abfdeC80C1816C4B835/info.json @@ -0,0 +1,11 @@ +{ + "name": "LiteXToken", + "symbol": "LXT", + "type": "ERC20", + "decimals": 18, + "description": "LITEX - building the largest commercialized layer2 ecology worldwide.", + "website": "http://litex.io", + "explorer": "https://etherscan.io/token/0xBC46D9961A3932f7D6b64abfdeC80C1816C4B835", + "status": "active", + "id": "0xBC46D9961A3932f7D6b64abfdeC80C1816C4B835" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBC46D9961A3932f7D6b64abfdeC80C1816C4B835/logo.png b/blockchains/ethereum/assets/0xBC46D9961A3932f7D6b64abfdeC80C1816C4B835/logo.png new file mode 100644 index 00000000..282664c5 Binary files /dev/null and b/blockchains/ethereum/assets/0xBC46D9961A3932f7D6b64abfdeC80C1816C4B835/logo.png differ diff --git a/blockchains/ethereum/assets/0xBC4a124fAb7d1F7f3F02BA7167df9186A71F3b26/info.json b/blockchains/ethereum/assets/0xBC4a124fAb7d1F7f3F02BA7167df9186A71F3b26/info.json new file mode 100644 index 00000000..1c6d104f --- /dev/null +++ b/blockchains/ethereum/assets/0xBC4a124fAb7d1F7f3F02BA7167df9186A71F3b26/info.json @@ -0,0 +1,11 @@ +{ + "name": "TechEsportsCoin", + "symbol": "TOC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBC4a124fAb7d1F7f3F02BA7167df9186A71F3b26", + "status": "abandoned", + "id": "0xBC4a124fAb7d1F7f3F02BA7167df9186A71F3b26" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBC4a124fAb7d1F7f3F02BA7167df9186A71F3b26/logo.png b/blockchains/ethereum/assets/0xBC4a124fAb7d1F7f3F02BA7167df9186A71F3b26/logo.png new file mode 100644 index 00000000..a10a2b1e Binary files /dev/null and b/blockchains/ethereum/assets/0xBC4a124fAb7d1F7f3F02BA7167df9186A71F3b26/logo.png differ diff --git a/blockchains/ethereum/assets/0xBC6150a1197842E4E1Ecb21dEf1f4F53Da609BBb/info.json b/blockchains/ethereum/assets/0xBC6150a1197842E4E1Ecb21dEf1f4F53Da609BBb/info.json new file mode 100644 index 00000000..cbe0b91e --- /dev/null +++ b/blockchains/ethereum/assets/0xBC6150a1197842E4E1Ecb21dEf1f4F53Da609BBb/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZYJ", + "symbol": "ZYJ", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBC6150a1197842E4E1Ecb21dEf1f4F53Da609BBb", + "status": "abandoned", + "id": "0xBC6150a1197842E4E1Ecb21dEf1f4F53Da609BBb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBC6150a1197842E4E1Ecb21dEf1f4F53Da609BBb/logo.png b/blockchains/ethereum/assets/0xBC6150a1197842E4E1Ecb21dEf1f4F53Da609BBb/logo.png new file mode 100644 index 00000000..e5d1cb79 Binary files /dev/null and b/blockchains/ethereum/assets/0xBC6150a1197842E4E1Ecb21dEf1f4F53Da609BBb/logo.png differ diff --git a/blockchains/ethereum/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json b/blockchains/ethereum/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json new file mode 100644 index 00000000..71aec7dd --- /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 00000000..a3d18c9a Binary files /dev/null and b/blockchains/ethereum/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/logo.png differ diff --git a/blockchains/ethereum/assets/0xBC7942054F77b82e8A71aCE170E4B00ebAe67eB6/info.json b/blockchains/ethereum/assets/0xBC7942054F77b82e8A71aCE170E4B00ebAe67eB6/info.json new file mode 100644 index 00000000..f2e0fb0c --- /dev/null +++ b/blockchains/ethereum/assets/0xBC7942054F77b82e8A71aCE170E4B00ebAe67eB6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Serenity", + "symbol": "SRNT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://serenity-financial.io/", + "explorer": "https://etherscan.io/token/0xBC7942054F77b82e8A71aCE170E4B00ebAe67eB6", + "status": "abandoned", + "id": "0xBC7942054F77b82e8A71aCE170E4B00ebAe67eB6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBC7942054F77b82e8A71aCE170E4B00ebAe67eB6/logo.png b/blockchains/ethereum/assets/0xBC7942054F77b82e8A71aCE170E4B00ebAe67eB6/logo.png new file mode 100644 index 00000000..01b33c81 Binary files /dev/null and b/blockchains/ethereum/assets/0xBC7942054F77b82e8A71aCE170E4B00ebAe67eB6/logo.png differ diff --git a/blockchains/ethereum/assets/0xBC84F95f089b9291C552EBA09D30Fd56A932AFC9/info.json b/blockchains/ethereum/assets/0xBC84F95f089b9291C552EBA09D30Fd56A932AFC9/info.json new file mode 100644 index 00000000..8344b5af --- /dev/null +++ b/blockchains/ethereum/assets/0xBC84F95f089b9291C552EBA09D30Fd56A932AFC9/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEG Wrapped UNI", + "website": "https://fegtoken.com", + "description": "FEG Wrapped UNI", + "explorer": "https://etherscan.io/token/0xbc84f95f089b9291c552eba09d30fd56a932afc9", + "type": "ERC20", + "symbol": "fUNI", + "decimals": 18, + "status": "active", + "id": "0xBC84F95f089b9291C552EBA09D30Fd56A932AFC9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBC84F95f089b9291C552EBA09D30Fd56A932AFC9/logo.png b/blockchains/ethereum/assets/0xBC84F95f089b9291C552EBA09D30Fd56A932AFC9/logo.png new file mode 100644 index 00000000..b5b43975 Binary files /dev/null and b/blockchains/ethereum/assets/0xBC84F95f089b9291C552EBA09D30Fd56A932AFC9/logo.png differ diff --git a/blockchains/ethereum/assets/0xBC86727E770de68B1060C91f6BB6945c73e10388/info.json b/blockchains/ethereum/assets/0xBC86727E770de68B1060C91f6BB6945c73e10388/info.json new file mode 100644 index 00000000..ff03d096 --- /dev/null +++ b/blockchains/ethereum/assets/0xBC86727E770de68B1060C91f6BB6945c73e10388/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ink Protocol", + "symbol": "XNK", + "type": "ERC20", + "decimals": 18, + "description": "Decentralized reputation and payments for peer-to-peer marketplaces.", + "website": "https://paywithink.com", + "explorer": "https://etherscan.io/token/0xBC86727E770de68B1060C91f6BB6945c73e10388", + "status": "active", + "id": "0xBC86727E770de68B1060C91f6BB6945c73e10388" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBC86727E770de68B1060C91f6BB6945c73e10388/logo.png b/blockchains/ethereum/assets/0xBC86727E770de68B1060C91f6BB6945c73e10388/logo.png new file mode 100644 index 00000000..3bbeb55f Binary files /dev/null and b/blockchains/ethereum/assets/0xBC86727E770de68B1060C91f6BB6945c73e10388/logo.png differ diff --git a/blockchains/ethereum/assets/0xBCD2Eac03b41c8afb199455fDe76F11f5249A7b1/info.json b/blockchains/ethereum/assets/0xBCD2Eac03b41c8afb199455fDe76F11f5249A7b1/info.json new file mode 100644 index 00000000..f5534f56 --- /dev/null +++ b/blockchains/ethereum/assets/0xBCD2Eac03b41c8afb199455fDe76F11f5249A7b1/info.json @@ -0,0 +1,11 @@ +{ + "name": "ATIS Token", + "symbol": "ATIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBCD2Eac03b41c8afb199455fDe76F11f5249A7b1", + "status": "abandoned", + "id": "0xBCD2Eac03b41c8afb199455fDe76F11f5249A7b1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBCD2Eac03b41c8afb199455fDe76F11f5249A7b1/logo.png b/blockchains/ethereum/assets/0xBCD2Eac03b41c8afb199455fDe76F11f5249A7b1/logo.png new file mode 100644 index 00000000..bffadf20 Binary files /dev/null and b/blockchains/ethereum/assets/0xBCD2Eac03b41c8afb199455fDe76F11f5249A7b1/logo.png differ diff --git a/blockchains/ethereum/assets/0xBD0706f616b8D465d87583B727Df8478Ed1496fD/info.json b/blockchains/ethereum/assets/0xBD0706f616b8D465d87583B727Df8478Ed1496fD/info.json new file mode 100644 index 00000000..f9225d23 --- /dev/null +++ b/blockchains/ethereum/assets/0xBD0706f616b8D465d87583B727Df8478Ed1496fD/info.json @@ -0,0 +1,11 @@ +{ + "name": "WHOIS", + "symbol": "ethWHOIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBD0706f616b8D465d87583B727Df8478Ed1496fD", + "status": "abandoned", + "id": "0xBD0706f616b8D465d87583B727Df8478Ed1496fD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBD0706f616b8D465d87583B727Df8478Ed1496fD/logo.png b/blockchains/ethereum/assets/0xBD0706f616b8D465d87583B727Df8478Ed1496fD/logo.png new file mode 100644 index 00000000..90adf935 Binary files /dev/null and b/blockchains/ethereum/assets/0xBD0706f616b8D465d87583B727Df8478Ed1496fD/logo.png differ diff --git a/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json b/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json new file mode 100644 index 00000000..0834e88b --- /dev/null +++ b/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json @@ -0,0 +1,45 @@ +{ + "name": "iDeFiYieldProtocol", + "type": "ERC20", + "symbol": "iDYP", + "decimals": 18, + "website": "https://www.dypius.com/", + "description": "iDYP is part of the Dypius dual token economy and is used as a component of smart contract strategies related to staking, analytical tools, NFTs, and metaverse.", + "explorer": "https://etherscan.io/token/0xBD100d061E120b2c67A24453CF6368E63f1Be056", + "status": "active", + "id": "0xBD100d061E120b2c67A24453CF6368E63f1Be056", + "links": [ + { + "name": "x", + "url": "https://x.com/dypfinance" + }, + { + "name": "github", + "url": "https://github.com/dypfinance/" + }, + { + "name": "medium", + "url": "https://dypfinance.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/idefiyieldprotocol/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/idefiyieldprotocol" + }, + { + "name": "discord", + "url": "https://discord.com/invite/dypcaws" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/drive/folders/1PprliiDlNB6Cx-35eaEun-gmjk0-a1O4" + } + ], + "tags": [ + "governance", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png b/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png new file mode 100644 index 00000000..68ecfe32 Binary files /dev/null and b/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png differ diff --git a/blockchains/ethereum/assets/0xBD16179538D7d5A91285F730a7c94E134FC0F677/info.json b/blockchains/ethereum/assets/0xBD16179538D7d5A91285F730a7c94E134FC0F677/info.json new file mode 100644 index 00000000..3f220d32 --- /dev/null +++ b/blockchains/ethereum/assets/0xBD16179538D7d5A91285F730a7c94E134FC0F677/info.json @@ -0,0 +1,11 @@ +{ + "name": "Liquid Gold", + "symbol": "LGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBD16179538D7d5A91285F730a7c94E134FC0F677", + "status": "abandoned", + "id": "0xBD16179538D7d5A91285F730a7c94E134FC0F677" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBD16179538D7d5A91285F730a7c94E134FC0F677/logo.png b/blockchains/ethereum/assets/0xBD16179538D7d5A91285F730a7c94E134FC0F677/logo.png new file mode 100644 index 00000000..12b93a4d Binary files /dev/null and b/blockchains/ethereum/assets/0xBD16179538D7d5A91285F730a7c94E134FC0F677/logo.png differ diff --git a/blockchains/ethereum/assets/0xBD2F0Cd039E0BFcf88901C98c0bFAc5ab27566e3/info.json b/blockchains/ethereum/assets/0xBD2F0Cd039E0BFcf88901C98c0bFAc5ab27566e3/info.json new file mode 100644 index 00000000..a8ce4a55 --- /dev/null +++ b/blockchains/ethereum/assets/0xBD2F0Cd039E0BFcf88901C98c0bFAc5ab27566e3/info.json @@ -0,0 +1,22 @@ +{ + "name": "Dynamic Set Dollar", + "website": "https://dsd.finance", + "description": "Algorithmic Stable-coin forked from Empty Set Dollar ", + "explorer": "https://etherscan.io/token/0xBD2F0Cd039E0BFcf88901C98c0bFAc5ab27566e3", + "research": "https://dynamicsetdollar.medium.com/", + "type": "ERC20", + "symbol": "DSD", + "decimals": 18, + "status": "active", + "id": "0xBD2F0Cd039E0BFcf88901C98c0bFAc5ab27566e3", + "links": [ + { + "name": "github", + "url": "https://github.com/dynamicsetdollar/dsd-protocol" + }, + { + "name": "whitepaper", + "url": "https://github.com/emptysetsquad/dollar/blob/master/d%C3%B8llar.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBD2F0Cd039E0BFcf88901C98c0bFAc5ab27566e3/logo.png b/blockchains/ethereum/assets/0xBD2F0Cd039E0BFcf88901C98c0bFAc5ab27566e3/logo.png new file mode 100644 index 00000000..0349a110 Binary files /dev/null and b/blockchains/ethereum/assets/0xBD2F0Cd039E0BFcf88901C98c0bFAc5ab27566e3/logo.png differ diff --git a/blockchains/ethereum/assets/0xBD4fb45b05DD4f0B55b6451B58f3DBA7fFB1b34B/info.json b/blockchains/ethereum/assets/0xBD4fb45b05DD4f0B55b6451B58f3DBA7fFB1b34B/info.json new file mode 100644 index 00000000..8a573342 --- /dev/null +++ b/blockchains/ethereum/assets/0xBD4fb45b05DD4f0B55b6451B58f3DBA7fFB1b34B/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg7500", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBD4fb45b05DD4f0B55b6451B58f3DBA7fFB1b34B", + "status": "abandoned", + "id": "0xBD4fb45b05DD4f0B55b6451B58f3DBA7fFB1b34B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBD4fb45b05DD4f0B55b6451B58f3DBA7fFB1b34B/logo.png b/blockchains/ethereum/assets/0xBD4fb45b05DD4f0B55b6451B58f3DBA7fFB1b34B/logo.png new file mode 100644 index 00000000..95c6934d Binary files /dev/null and b/blockchains/ethereum/assets/0xBD4fb45b05DD4f0B55b6451B58f3DBA7fFB1b34B/logo.png differ diff --git a/blockchains/ethereum/assets/0xBD87447F48ad729C5c4b8bcb503e1395F62e8B98/info.json b/blockchains/ethereum/assets/0xBD87447F48ad729C5c4b8bcb503e1395F62e8B98/info.json new file mode 100644 index 00000000..9be2fad3 --- /dev/null +++ b/blockchains/ethereum/assets/0xBD87447F48ad729C5c4b8bcb503e1395F62e8B98/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pool Usdc", + "symbol": "plUsdc", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBD87447F48ad729C5c4b8bcb503e1395F62e8B98", + "status": "abandoned", + "id": "0xBD87447F48ad729C5c4b8bcb503e1395F62e8B98" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBD87447F48ad729C5c4b8bcb503e1395F62e8B98/logo.png b/blockchains/ethereum/assets/0xBD87447F48ad729C5c4b8bcb503e1395F62e8B98/logo.png new file mode 100644 index 00000000..1ff7fa74 Binary files /dev/null and b/blockchains/ethereum/assets/0xBD87447F48ad729C5c4b8bcb503e1395F62e8B98/logo.png differ diff --git a/blockchains/ethereum/assets/0xBDC5bAC39Dbe132B1E030e898aE3830017D7d969/info.json b/blockchains/ethereum/assets/0xBDC5bAC39Dbe132B1E030e898aE3830017D7d969/info.json new file mode 100644 index 00000000..0b8803d5 --- /dev/null +++ b/blockchains/ethereum/assets/0xBDC5bAC39Dbe132B1E030e898aE3830017D7d969/info.json @@ -0,0 +1,11 @@ +{ + "name": "Snovio", + "symbol": "SNOV", + "type": "ERC20", + "decimals": 18, + "description": "Snovian.Space is a decentralized reward based social networking platform. Snovian.Space is designed specifically for professionals in crypto, tech, and other niches. Users can contact each other via messages, that the recipients read and answer, incentivized by a crypto reward for their time and expertise.", + "website": "https://snovian.space/", + "explorer": "https://etherscan.io/token/0xBDC5bAC39Dbe132B1E030e898aE3830017D7d969", + "status": "active", + "id": "0xBDC5bAC39Dbe132B1E030e898aE3830017D7d969" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBDC5bAC39Dbe132B1E030e898aE3830017D7d969/logo.png b/blockchains/ethereum/assets/0xBDC5bAC39Dbe132B1E030e898aE3830017D7d969/logo.png new file mode 100644 index 00000000..78c43fb2 Binary files /dev/null and b/blockchains/ethereum/assets/0xBDC5bAC39Dbe132B1E030e898aE3830017D7d969/logo.png differ diff --git a/blockchains/ethereum/assets/0xBDCFbf5C4D91Abc0bC9709C7286d00063c0e6F22/info.json b/blockchains/ethereum/assets/0xBDCFbf5C4D91Abc0bC9709C7286d00063c0e6F22/info.json new file mode 100644 index 00000000..c84eac83 --- /dev/null +++ b/blockchains/ethereum/assets/0xBDCFbf5C4D91Abc0bC9709C7286d00063c0e6F22/info.json @@ -0,0 +1,11 @@ +{ + "name": "GUESS", + "symbol": "GUESS", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "https://peerguess.com/", + "explorer": "https://etherscan.io/token/0xBDCFbf5C4D91Abc0bC9709C7286d00063c0e6F22", + "status": "abandoned", + "id": "0xBDCFbf5C4D91Abc0bC9709C7286d00063c0e6F22" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBDCFbf5C4D91Abc0bC9709C7286d00063c0e6F22/logo.png b/blockchains/ethereum/assets/0xBDCFbf5C4D91Abc0bC9709C7286d00063c0e6F22/logo.png new file mode 100644 index 00000000..1b8eb6b5 Binary files /dev/null and b/blockchains/ethereum/assets/0xBDCFbf5C4D91Abc0bC9709C7286d00063c0e6F22/logo.png differ diff --git a/blockchains/ethereum/assets/0xBDDab785b306BCD9fB056Da189615Cc8eCE1D823/info.json b/blockchains/ethereum/assets/0xBDDab785b306BCD9fB056Da189615Cc8eCE1D823/info.json new file mode 100644 index 00000000..3ee67062 --- /dev/null +++ b/blockchains/ethereum/assets/0xBDDab785b306BCD9fB056Da189615Cc8eCE1D823/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ebakus", + "symbol": "EBK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.ebakus.com/", + "explorer": "https://etherscan.io/token/0xBDDab785b306BCD9fB056Da189615Cc8eCE1D823", + "status": "active", + "id": "0xBDDab785b306BCD9fB056Da189615Cc8eCE1D823" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBDDab785b306BCD9fB056Da189615Cc8eCE1D823/logo.png b/blockchains/ethereum/assets/0xBDDab785b306BCD9fB056Da189615Cc8eCE1D823/logo.png new file mode 100644 index 00000000..0c944dd3 Binary files /dev/null and b/blockchains/ethereum/assets/0xBDDab785b306BCD9fB056Da189615Cc8eCE1D823/logo.png differ diff --git a/blockchains/ethereum/assets/0xBE3F88E18BE3944FdDa830695228ADBB82fA125F/info.json b/blockchains/ethereum/assets/0xBE3F88E18BE3944FdDa830695228ADBB82fA125F/info.json new file mode 100644 index 00000000..1e816e52 --- /dev/null +++ b/blockchains/ethereum/assets/0xBE3F88E18BE3944FdDa830695228ADBB82fA125F/info.json @@ -0,0 +1,37 @@ +{ + "name": "Stable MPH", + "website": "https://ichi.org", + "description": "Stable MPH is the stablecoin created for the 88MPH community. Backed by both a treasury of MPH and collateral of USDC this ERC20 token can be redeemed for USDC at anytime and also provides a vote for governance of the MPH treasury.", + "explorer": "https://etherscan.io/token/0xBE3F88E18BE3944FdDa830695228ADBB82fA125F", + "type": "ERC20", + "symbol": "oneMPH", + "decimals": 18, + "status": "active", + "id": "0xBE3F88E18BE3944FdDa830695228ADBB82fA125F", + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm/ichi-oneToken" + }, + { + "name": "x", + "url": "https://x.com/ichifarm" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Bm6pUHjHUC" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/stable-mph" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBE3F88E18BE3944FdDa830695228ADBB82fA125F/logo.png b/blockchains/ethereum/assets/0xBE3F88E18BE3944FdDa830695228ADBB82fA125F/logo.png new file mode 100644 index 00000000..61f71ca6 Binary files /dev/null and b/blockchains/ethereum/assets/0xBE3F88E18BE3944FdDa830695228ADBB82fA125F/logo.png differ diff --git a/blockchains/ethereum/assets/0xBE6ac6B50F577205c9D107f37b6E205aA6ACC5D4/info.json b/blockchains/ethereum/assets/0xBE6ac6B50F577205c9D107f37b6E205aA6ACC5D4/info.json new file mode 100644 index 00000000..ed459666 --- /dev/null +++ b/blockchains/ethereum/assets/0xBE6ac6B50F577205c9D107f37b6E205aA6ACC5D4/info.json @@ -0,0 +1,11 @@ +{ + "name": "United Network Distribution", + "symbol": "UND", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBE6ac6B50F577205c9D107f37b6E205aA6ACC5D4", + "status": "abandoned", + "id": "0xBE6ac6B50F577205c9D107f37b6E205aA6ACC5D4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBE6ac6B50F577205c9D107f37b6E205aA6ACC5D4/logo.png b/blockchains/ethereum/assets/0xBE6ac6B50F577205c9D107f37b6E205aA6ACC5D4/logo.png new file mode 100644 index 00000000..9da2c20e Binary files /dev/null and b/blockchains/ethereum/assets/0xBE6ac6B50F577205c9D107f37b6E205aA6ACC5D4/logo.png differ diff --git a/blockchains/ethereum/assets/0xBE8eb7b51a08f9d52Bb6C8c7EcA699f0f89BfC02/info.json b/blockchains/ethereum/assets/0xBE8eb7b51a08f9d52Bb6C8c7EcA699f0f89BfC02/info.json new file mode 100644 index 00000000..6ebc973b --- /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 00000000..c86f92e6 Binary files /dev/null and b/blockchains/ethereum/assets/0xBE8eb7b51a08f9d52Bb6C8c7EcA699f0f89BfC02/logo.png differ diff --git a/blockchains/ethereum/assets/0xBF38f982454AAA5390dF93CdDfD1DaBC3C20956F/info.json b/blockchains/ethereum/assets/0xBF38f982454AAA5390dF93CdDfD1DaBC3C20956F/info.json new file mode 100644 index 00000000..8175af96 --- /dev/null +++ b/blockchains/ethereum/assets/0xBF38f982454AAA5390dF93CdDfD1DaBC3C20956F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Komuro", + "symbol": "KEI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBF38f982454AAA5390dF93CdDfD1DaBC3C20956F", + "status": "abandoned", + "id": "0xBF38f982454AAA5390dF93CdDfD1DaBC3C20956F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBF38f982454AAA5390dF93CdDfD1DaBC3C20956F/logo.png b/blockchains/ethereum/assets/0xBF38f982454AAA5390dF93CdDfD1DaBC3C20956F/logo.png new file mode 100644 index 00000000..ac831d09 Binary files /dev/null and b/blockchains/ethereum/assets/0xBF38f982454AAA5390dF93CdDfD1DaBC3C20956F/logo.png differ diff --git a/blockchains/ethereum/assets/0xBF494F02EE3FdE1F20BEE6242bCe2d1ED0c15e47/info.json b/blockchains/ethereum/assets/0xBF494F02EE3FdE1F20BEE6242bCe2d1ED0c15e47/info.json new file mode 100644 index 00000000..92c0773d --- /dev/null +++ b/blockchains/ethereum/assets/0xBF494F02EE3FdE1F20BEE6242bCe2d1ED0c15e47/info.json @@ -0,0 +1,11 @@ +{ + "name": "World Token", + "website": "https://worldtoken.network", + "description": "$WORLD is a unique platform that combines the best tokenomics of current frictionless yield protocols for instant rewards with the additional benefits of staking in our upcoming marketplace. This way the best rewards can be guaranteed without any token inflation.", + "explorer": "https://etherscan.io/token/0xBF494F02EE3FdE1F20BEE6242bCe2d1ED0c15e47", + "type": "ERC20", + "symbol": "WORLD", + "decimals": 18, + "status": "active", + "id": "0xBF494F02EE3FdE1F20BEE6242bCe2d1ED0c15e47" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBF494F02EE3FdE1F20BEE6242bCe2d1ED0c15e47/logo.png b/blockchains/ethereum/assets/0xBF494F02EE3FdE1F20BEE6242bCe2d1ED0c15e47/logo.png new file mode 100644 index 00000000..3f8b8ba3 Binary files /dev/null and b/blockchains/ethereum/assets/0xBF494F02EE3FdE1F20BEE6242bCe2d1ED0c15e47/logo.png differ diff --git a/blockchains/ethereum/assets/0xBF8d8F1242b95dfBAe532aF6B0F4463905415CC1/info.json b/blockchains/ethereum/assets/0xBF8d8F1242b95dfBAe532aF6B0F4463905415CC1/info.json new file mode 100644 index 00000000..a389bc41 --- /dev/null +++ b/blockchains/ethereum/assets/0xBF8d8F1242b95dfBAe532aF6B0F4463905415CC1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Edex", + "symbol": "EDX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBF8d8F1242b95dfBAe532aF6B0F4463905415CC1", + "status": "abandoned", + "id": "0xBF8d8F1242b95dfBAe532aF6B0F4463905415CC1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBF8d8F1242b95dfBAe532aF6B0F4463905415CC1/logo.png b/blockchains/ethereum/assets/0xBF8d8F1242b95dfBAe532aF6B0F4463905415CC1/logo.png new file mode 100644 index 00000000..10d4a6ab Binary files /dev/null and b/blockchains/ethereum/assets/0xBF8d8F1242b95dfBAe532aF6B0F4463905415CC1/logo.png differ diff --git a/blockchains/ethereum/assets/0xBFB7a652000763AC12bd3EED65C3E5Da5785743f/info.json b/blockchains/ethereum/assets/0xBFB7a652000763AC12bd3EED65C3E5Da5785743f/info.json new file mode 100644 index 00000000..271f000f --- /dev/null +++ b/blockchains/ethereum/assets/0xBFB7a652000763AC12bd3EED65C3E5Da5785743f/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R879675", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBFB7a652000763AC12bd3EED65C3E5Da5785743f", + "status": "abandoned", + "id": "0xBFB7a652000763AC12bd3EED65C3E5Da5785743f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBFB7a652000763AC12bd3EED65C3E5Da5785743f/logo.png b/blockchains/ethereum/assets/0xBFB7a652000763AC12bd3EED65C3E5Da5785743f/logo.png new file mode 100644 index 00000000..4f526ec6 Binary files /dev/null and b/blockchains/ethereum/assets/0xBFB7a652000763AC12bd3EED65C3E5Da5785743f/logo.png differ diff --git a/blockchains/ethereum/assets/0xBFD04AaCD54c0213d3Ba6CBb390898AC50A2dcb2/info.json b/blockchains/ethereum/assets/0xBFD04AaCD54c0213d3Ba6CBb390898AC50A2dcb2/info.json new file mode 100644 index 00000000..be9cc8d3 --- /dev/null +++ b/blockchains/ethereum/assets/0xBFD04AaCD54c0213d3Ba6CBb390898AC50A2dcb2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitwaves", + "website": "http://bitwaves.airsite.co", + "description": "Bitwaves is merging alternative financial markets with digital assets.Bitwaves vision is to make easier the mass usage of assets globally by enabling people to tokenize the economy on Ethereum’s blockchain.", + "explorer": "https://etherscan.io/token/0xBFD04AaCD54c0213d3Ba6CBb390898AC50A2dcb2", + "type": "ERC20", + "symbol": "BWV", + "decimals": 18, + "status": "active", + "id": "0xBFD04AaCD54c0213d3Ba6CBb390898AC50A2dcb2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBFD04AaCD54c0213d3Ba6CBb390898AC50A2dcb2/logo.png b/blockchains/ethereum/assets/0xBFD04AaCD54c0213d3Ba6CBb390898AC50A2dcb2/logo.png new file mode 100644 index 00000000..8313e59f Binary files /dev/null and b/blockchains/ethereum/assets/0xBFD04AaCD54c0213d3Ba6CBb390898AC50A2dcb2/logo.png differ diff --git a/blockchains/ethereum/assets/0xBFbe5332f172d77811bC6c272844f3e54A7B23bB/info.json b/blockchains/ethereum/assets/0xBFbe5332f172d77811bC6c272844f3e54A7B23bB/info.json new file mode 100644 index 00000000..6f620ea2 --- /dev/null +++ b/blockchains/ethereum/assets/0xBFbe5332f172d77811bC6c272844f3e54A7B23bB/info.json @@ -0,0 +1,11 @@ +{ + "name": "WemarkToken", + "symbol": "WMK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBFbe5332f172d77811bC6c272844f3e54A7B23bB", + "status": "abandoned", + "id": "0xBFbe5332f172d77811bC6c272844f3e54A7B23bB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBFbe5332f172d77811bC6c272844f3e54A7B23bB/logo.png b/blockchains/ethereum/assets/0xBFbe5332f172d77811bC6c272844f3e54A7B23bB/logo.png new file mode 100644 index 00000000..8af91377 Binary files /dev/null and b/blockchains/ethereum/assets/0xBFbe5332f172d77811bC6c272844f3e54A7B23bB/logo.png differ diff --git a/blockchains/ethereum/assets/0xBFd78659212F00dE65A6411DAdC75878930725Ec/info.json b/blockchains/ethereum/assets/0xBFd78659212F00dE65A6411DAdC75878930725Ec/info.json new file mode 100644 index 00000000..6b7ea067 --- /dev/null +++ b/blockchains/ethereum/assets/0xBFd78659212F00dE65A6411DAdC75878930725Ec/info.json @@ -0,0 +1,11 @@ +{ + "name": "AMAL", + "symbol": "AMAL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBFd78659212F00dE65A6411DAdC75878930725Ec", + "status": "abandoned", + "id": "0xBFd78659212F00dE65A6411DAdC75878930725Ec" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBFd78659212F00dE65A6411DAdC75878930725Ec/logo.png b/blockchains/ethereum/assets/0xBFd78659212F00dE65A6411DAdC75878930725Ec/logo.png new file mode 100644 index 00000000..6463bd06 Binary files /dev/null and b/blockchains/ethereum/assets/0xBFd78659212F00dE65A6411DAdC75878930725Ec/logo.png differ diff --git a/blockchains/ethereum/assets/0xBFe6e76A2FE099392064fbB3E868558C82bEb917/info.json b/blockchains/ethereum/assets/0xBFe6e76A2FE099392064fbB3E868558C82bEb917/info.json new file mode 100644 index 00000000..98357dd3 --- /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 00000000..75d3501c Binary files /dev/null and b/blockchains/ethereum/assets/0xBFe6e76A2FE099392064fbB3E868558C82bEb917/logo.png differ diff --git a/blockchains/ethereum/assets/0xBa1ED22C69ad00739EE2b4aBD70e270BE9e87eE2/info.json b/blockchains/ethereum/assets/0xBa1ED22C69ad00739EE2b4aBD70e270BE9e87eE2/info.json new file mode 100644 index 00000000..91dfb474 --- /dev/null +++ b/blockchains/ethereum/assets/0xBa1ED22C69ad00739EE2b4aBD70e270BE9e87eE2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Webflix Token", + "symbol": "WFX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.webflix.io/", + "explorer": "https://etherscan.io/token/0xBa1ED22C69ad00739EE2b4aBD70e270BE9e87eE2", + "status": "abandoned", + "id": "0xBa1ED22C69ad00739EE2b4aBD70e270BE9e87eE2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBa1ED22C69ad00739EE2b4aBD70e270BE9e87eE2/logo.png b/blockchains/ethereum/assets/0xBa1ED22C69ad00739EE2b4aBD70e270BE9e87eE2/logo.png new file mode 100644 index 00000000..7cb5c9d8 Binary files /dev/null and b/blockchains/ethereum/assets/0xBa1ED22C69ad00739EE2b4aBD70e270BE9e87eE2/logo.png differ diff --git a/blockchains/ethereum/assets/0xBa21Ef4c9f433Ede00badEFcC2754B8E74bd538A/info.json b/blockchains/ethereum/assets/0xBa21Ef4c9f433Ede00badEFcC2754B8E74bd538A/info.json new file mode 100644 index 00000000..a521a6dc --- /dev/null +++ b/blockchains/ethereum/assets/0xBa21Ef4c9f433Ede00badEFcC2754B8E74bd538A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Swapfolio", + "website": "https://swapfol.io", + "description": "SWFL is described to be a utility token for Swapfolio app, a Uniswap portfolio & trading terminal. Swapfolio offers more trading features and staking rewards to all token stakers.", + "explorer": "https://etherscan.io/token/0xBa21Ef4c9f433Ede00badEFcC2754B8E74bd538A", + "type": "ERC20", + "symbol": "SWFL", + "decimals": 18, + "status": "active", + "id": "0xBa21Ef4c9f433Ede00badEFcC2754B8E74bd538A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBa21Ef4c9f433Ede00badEFcC2754B8E74bd538A/logo.png b/blockchains/ethereum/assets/0xBa21Ef4c9f433Ede00badEFcC2754B8E74bd538A/logo.png new file mode 100644 index 00000000..bff18903 Binary files /dev/null and b/blockchains/ethereum/assets/0xBa21Ef4c9f433Ede00badEFcC2754B8E74bd538A/logo.png differ diff --git a/blockchains/ethereum/assets/0xBa25B2281214300E4e649feAd9A6d6acD25f1c0a/info.json b/blockchains/ethereum/assets/0xBa25B2281214300E4e649feAd9A6d6acD25f1c0a/info.json new file mode 100644 index 00000000..57094800 --- /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 00000000..43e9af9a Binary files /dev/null and b/blockchains/ethereum/assets/0xBa25B2281214300E4e649feAd9A6d6acD25f1c0a/logo.png differ diff --git a/blockchains/ethereum/assets/0xBa3862B3e9Cf47badB26FB9CAC36A4982fbDcF5E/info.json b/blockchains/ethereum/assets/0xBa3862B3e9Cf47badB26FB9CAC36A4982fbDcF5E/info.json new file mode 100644 index 00000000..80d1aa28 --- /dev/null +++ b/blockchains/ethereum/assets/0xBa3862B3e9Cf47badB26FB9CAC36A4982fbDcF5E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tyche Chip", + "symbol": "TCH", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBa3862B3e9Cf47badB26FB9CAC36A4982fbDcF5E", + "status": "abandoned", + "id": "0xBa3862B3e9Cf47badB26FB9CAC36A4982fbDcF5E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBa3862B3e9Cf47badB26FB9CAC36A4982fbDcF5E/logo.png b/blockchains/ethereum/assets/0xBa3862B3e9Cf47badB26FB9CAC36A4982fbDcF5E/logo.png new file mode 100644 index 00000000..db60e41f Binary files /dev/null and b/blockchains/ethereum/assets/0xBa3862B3e9Cf47badB26FB9CAC36A4982fbDcF5E/logo.png differ diff --git a/blockchains/ethereum/assets/0xBa5160Ba66b286f1B9B6f3a57A6ABCFa440E7aA2/info.json b/blockchains/ethereum/assets/0xBa5160Ba66b286f1B9B6f3a57A6ABCFa440E7aA2/info.json new file mode 100644 index 00000000..4c3693cb --- /dev/null +++ b/blockchains/ethereum/assets/0xBa5160Ba66b286f1B9B6f3a57A6ABCFa440E7aA2/info.json @@ -0,0 +1,11 @@ +{ + "name": "HUB Coin", + "symbol": "HUB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBa5160Ba66b286f1B9B6f3a57A6ABCFa440E7aA2", + "status": "abandoned", + "id": "0xBa5160Ba66b286f1B9B6f3a57A6ABCFa440E7aA2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBa5160Ba66b286f1B9B6f3a57A6ABCFa440E7aA2/logo.png b/blockchains/ethereum/assets/0xBa5160Ba66b286f1B9B6f3a57A6ABCFa440E7aA2/logo.png new file mode 100644 index 00000000..d8353818 Binary files /dev/null and b/blockchains/ethereum/assets/0xBa5160Ba66b286f1B9B6f3a57A6ABCFa440E7aA2/logo.png differ diff --git a/blockchains/ethereum/assets/0xBa630d3BA20502BA07975B15c719BEECc8e4EBB0/info.json b/blockchains/ethereum/assets/0xBa630d3BA20502BA07975B15c719BEECc8e4EBB0/info.json new file mode 100644 index 00000000..57154be5 --- /dev/null +++ b/blockchains/ethereum/assets/0xBa630d3BA20502BA07975B15c719BEECc8e4EBB0/info.json @@ -0,0 +1,11 @@ +{ + "name": "EthereumPro", + "website": "https://ethereum-pro.org", + "description": "Ethereum Pro is a decentralized and deflationary token built on the secure Ethereum network.", + "explorer": "https://etherscan.io/token/0xba630d3ba20502ba07975b15c719beecc8e4ebb0", + "type": "ERC20", + "symbol": "EPRO", + "decimals": 9, + "status": "active", + "id": "0xBa630d3BA20502BA07975B15c719BEECc8e4EBB0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBa630d3BA20502BA07975B15c719BEECc8e4EBB0/logo.png b/blockchains/ethereum/assets/0xBa630d3BA20502BA07975B15c719BEECc8e4EBB0/logo.png new file mode 100644 index 00000000..a0fd75f0 Binary files /dev/null and b/blockchains/ethereum/assets/0xBa630d3BA20502BA07975B15c719BEECc8e4EBB0/logo.png differ diff --git a/blockchains/ethereum/assets/0xBa7DCBa2Ade319Bc772DB4df75A76BA00dFb31b0/info.json b/blockchains/ethereum/assets/0xBa7DCBa2Ade319Bc772DB4df75A76BA00dFb31b0/info.json new file mode 100644 index 00000000..dfd6d88f --- /dev/null +++ b/blockchains/ethereum/assets/0xBa7DCBa2Ade319Bc772DB4df75A76BA00dFb31b0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Apollo18", + "symbol": "A18", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBa7DCBa2Ade319Bc772DB4df75A76BA00dFb31b0", + "status": "abandoned", + "id": "0xBa7DCBa2Ade319Bc772DB4df75A76BA00dFb31b0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBa7DCBa2Ade319Bc772DB4df75A76BA00dFb31b0/logo.png b/blockchains/ethereum/assets/0xBa7DCBa2Ade319Bc772DB4df75A76BA00dFb31b0/logo.png new file mode 100644 index 00000000..44ca19e0 Binary files /dev/null and b/blockchains/ethereum/assets/0xBa7DCBa2Ade319Bc772DB4df75A76BA00dFb31b0/logo.png differ diff --git a/blockchains/ethereum/assets/0xBa9508c6d2650fBB7c167090438226AF2718DECB/info.json b/blockchains/ethereum/assets/0xBa9508c6d2650fBB7c167090438226AF2718DECB/info.json new file mode 100644 index 00000000..b19e787c --- /dev/null +++ b/blockchains/ethereum/assets/0xBa9508c6d2650fBB7c167090438226AF2718DECB/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-28/30M58", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBa9508c6d2650fBB7c167090438226AF2718DECB", + "status": "abandoned", + "id": "0xBa9508c6d2650fBB7c167090438226AF2718DECB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBa9508c6d2650fBB7c167090438226AF2718DECB/logo.png b/blockchains/ethereum/assets/0xBa9508c6d2650fBB7c167090438226AF2718DECB/logo.png new file mode 100644 index 00000000..0e22bb07 Binary files /dev/null and b/blockchains/ethereum/assets/0xBa9508c6d2650fBB7c167090438226AF2718DECB/logo.png differ diff --git a/blockchains/ethereum/assets/0xBaC6874fFf7aC02C06907D0e340AF9f1832E7908/info.json b/blockchains/ethereum/assets/0xBaC6874fFf7aC02C06907D0e340AF9f1832E7908/info.json new file mode 100644 index 00000000..0ab835c4 --- /dev/null +++ b/blockchains/ethereum/assets/0xBaC6874fFf7aC02C06907D0e340AF9f1832E7908/info.json @@ -0,0 +1,11 @@ +{ + "name": "A1 Coin", + "symbol": "A1", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://a1coin.co/", + "explorer": "https://etherscan.io/token/0xBaC6874fFf7aC02C06907D0e340AF9f1832E7908", + "status": "abandoned", + "id": "0xBaC6874fFf7aC02C06907D0e340AF9f1832E7908" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBaC6874fFf7aC02C06907D0e340AF9f1832E7908/logo.png b/blockchains/ethereum/assets/0xBaC6874fFf7aC02C06907D0e340AF9f1832E7908/logo.png new file mode 100644 index 00000000..2e7fd68a Binary files /dev/null and b/blockchains/ethereum/assets/0xBaC6874fFf7aC02C06907D0e340AF9f1832E7908/logo.png differ diff --git a/blockchains/ethereum/assets/0xBac7A1798350cdf2Dbfe0c210C2C9861223f4B31/info.json b/blockchains/ethereum/assets/0xBac7A1798350cdf2Dbfe0c210C2C9861223f4B31/info.json new file mode 100644 index 00000000..62bc82c4 --- /dev/null +++ b/blockchains/ethereum/assets/0xBac7A1798350cdf2Dbfe0c210C2C9861223f4B31/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moneynet Coin", + "symbol": "MNC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://moneynet.io", + "explorer": "https://etherscan.io/token/0xBac7A1798350cdf2Dbfe0c210C2C9861223f4B31", + "status": "abandoned", + "id": "0xBac7A1798350cdf2Dbfe0c210C2C9861223f4B31" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBac7A1798350cdf2Dbfe0c210C2C9861223f4B31/logo.png b/blockchains/ethereum/assets/0xBac7A1798350cdf2Dbfe0c210C2C9861223f4B31/logo.png new file mode 100644 index 00000000..00ccd318 Binary files /dev/null and b/blockchains/ethereum/assets/0xBac7A1798350cdf2Dbfe0c210C2C9861223f4B31/logo.png differ diff --git a/blockchains/ethereum/assets/0xBb0eF9e617FADdf54B8D16e29046F72B4D3ec77F/info.json b/blockchains/ethereum/assets/0xBb0eF9e617FADdf54B8D16e29046F72B4D3ec77F/info.json new file mode 100644 index 00000000..b2691b16 --- /dev/null +++ b/blockchains/ethereum/assets/0xBb0eF9e617FADdf54B8D16e29046F72B4D3ec77F/info.json @@ -0,0 +1,11 @@ +{ + "name": "PEP Token", + "symbol": "PEP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBb0eF9e617FADdf54B8D16e29046F72B4D3ec77F", + "status": "abandoned", + "id": "0xBb0eF9e617FADdf54B8D16e29046F72B4D3ec77F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBb0eF9e617FADdf54B8D16e29046F72B4D3ec77F/logo.png b/blockchains/ethereum/assets/0xBb0eF9e617FADdf54B8D16e29046F72B4D3ec77F/logo.png new file mode 100644 index 00000000..03684afa Binary files /dev/null and b/blockchains/ethereum/assets/0xBb0eF9e617FADdf54B8D16e29046F72B4D3ec77F/logo.png differ diff --git a/blockchains/ethereum/assets/0xBb1f24C0c1554b9990222f036b0AaD6Ee4CAec29/info.json b/blockchains/ethereum/assets/0xBb1f24C0c1554b9990222f036b0AaD6Ee4CAec29/info.json new file mode 100644 index 00000000..77f401fd --- /dev/null +++ b/blockchains/ethereum/assets/0xBb1f24C0c1554b9990222f036b0AaD6Ee4CAec29/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoSoul", + "symbol": "SOUL", + "type": "ERC20", + "decimals": 18, + "description": "We Build Popular Mobile Crypto Games With Utility Cryptocurrency.", + "website": "https://cryptosoul.io", + "explorer": "https://etherscan.io/token/0xBb1f24C0c1554b9990222f036b0AaD6Ee4CAec29", + "status": "active", + "id": "0xBb1f24C0c1554b9990222f036b0AaD6Ee4CAec29" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBb1f24C0c1554b9990222f036b0AaD6Ee4CAec29/logo.png b/blockchains/ethereum/assets/0xBb1f24C0c1554b9990222f036b0AaD6Ee4CAec29/logo.png new file mode 100644 index 00000000..b336ee4c Binary files /dev/null and b/blockchains/ethereum/assets/0xBb1f24C0c1554b9990222f036b0AaD6Ee4CAec29/logo.png differ diff --git a/blockchains/ethereum/assets/0xBb50fd41e67b3078B4052d84077a3685eddb7E51/info.json b/blockchains/ethereum/assets/0xBb50fd41e67b3078B4052d84077a3685eddb7E51/info.json new file mode 100644 index 00000000..0b9493a3 --- /dev/null +++ b/blockchains/ethereum/assets/0xBb50fd41e67b3078B4052d84077a3685eddb7E51/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C548526", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBb50fd41e67b3078B4052d84077a3685eddb7E51", + "status": "abandoned", + "id": "0xBb50fd41e67b3078B4052d84077a3685eddb7E51" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBb50fd41e67b3078B4052d84077a3685eddb7E51/logo.png b/blockchains/ethereum/assets/0xBb50fd41e67b3078B4052d84077a3685eddb7E51/logo.png new file mode 100644 index 00000000..55e3fe82 Binary files /dev/null and b/blockchains/ethereum/assets/0xBb50fd41e67b3078B4052d84077a3685eddb7E51/logo.png differ diff --git a/blockchains/ethereum/assets/0xBbBb7F2aC04484F7F04A2C2C16f20479791BbB44/info.json b/blockchains/ethereum/assets/0xBbBb7F2aC04484F7F04A2C2C16f20479791BbB44/info.json new file mode 100644 index 00000000..1b0f964d --- /dev/null +++ b/blockchains/ethereum/assets/0xBbBb7F2aC04484F7F04A2C2C16f20479791BbB44/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave UniDAIETH", + "website": "https://aave.com", + "description": "Aave UniDAIETH is an interest bearing token pegged 1:1 to the underlying DAI and ETH deposited in the Uniswap Market of Aave Protocol.", + "explorer": "https://etherscan.io/token/0xBbBb7F2aC04484F7F04A2C2C16f20479791BbB44", + "type": "ERC20", + "symbol": "aUniDAIETH", + "decimals": 18, + "status": "active", + "id": "0xBbBb7F2aC04484F7F04A2C2C16f20479791BbB44" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBbBb7F2aC04484F7F04A2C2C16f20479791BbB44/logo.png b/blockchains/ethereum/assets/0xBbBb7F2aC04484F7F04A2C2C16f20479791BbB44/logo.png new file mode 100644 index 00000000..5a0e82c9 Binary files /dev/null and b/blockchains/ethereum/assets/0xBbBb7F2aC04484F7F04A2C2C16f20479791BbB44/logo.png differ diff --git a/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/info.json b/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/info.json new file mode 100644 index 00000000..ee2f5a64 --- /dev/null +++ b/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/info.json @@ -0,0 +1,40 @@ +{ + "name": "Stable FUSE", + "website": "app.ichi.org", + "description": "oneFUSE is an ICHI-created stablecoin for Fuse.", + "explorer": "https://etherscan.io/token/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404", + "type": "ERC20", + "symbol": "oneFUSE", + "decimals": 18, + "status": "active", + "id": "0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm/ichi-oneToken" + }, + { + "name": "x", + "url": "https://x.com/ichifarm" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + }, + { + "name": "discord", + "url": "https://discord.com/invite/DvsYCfK8" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/onefuse" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/logo.png b/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/logo.png new file mode 100644 index 00000000..0ea98f32 Binary files /dev/null and b/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/logo.png differ diff --git a/blockchains/ethereum/assets/0xBbe761EA1447A20b75aA485b7BCad4837415d7D7/info.json b/blockchains/ethereum/assets/0xBbe761EA1447A20b75aA485b7BCad4837415d7D7/info.json new file mode 100644 index 00000000..5409d553 --- /dev/null +++ b/blockchains/ethereum/assets/0xBbe761EA1447A20b75aA485b7BCad4837415d7D7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Global Crypto Alliance", + "symbol": "CALL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://gcalliance.io/", + "explorer": "https://etherscan.io/token/0xBbe761EA1447A20b75aA485b7BCad4837415d7D7", + "status": "abandoned", + "id": "0xBbe761EA1447A20b75aA485b7BCad4837415d7D7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBbe761EA1447A20b75aA485b7BCad4837415d7D7/logo.png b/blockchains/ethereum/assets/0xBbe761EA1447A20b75aA485b7BCad4837415d7D7/logo.png new file mode 100644 index 00000000..4239a176 Binary files /dev/null and b/blockchains/ethereum/assets/0xBbe761EA1447A20b75aA485b7BCad4837415d7D7/logo.png differ diff --git a/blockchains/ethereum/assets/0xBc0d84FA6260E065F330d51621d682d2630F4Aa2/info.json b/blockchains/ethereum/assets/0xBc0d84FA6260E065F330d51621d682d2630F4Aa2/info.json new file mode 100644 index 00000000..81ebbe28 --- /dev/null +++ b/blockchains/ethereum/assets/0xBc0d84FA6260E065F330d51621d682d2630F4Aa2/info.json @@ -0,0 +1,11 @@ +{ + "name": "BeatBind", + "symbol": "BBND", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBc0d84FA6260E065F330d51621d682d2630F4Aa2", + "status": "abandoned", + "id": "0xBc0d84FA6260E065F330d51621d682d2630F4Aa2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBc0d84FA6260E065F330d51621d682d2630F4Aa2/logo.png b/blockchains/ethereum/assets/0xBc0d84FA6260E065F330d51621d682d2630F4Aa2/logo.png new file mode 100644 index 00000000..b21f33f0 Binary files /dev/null and b/blockchains/ethereum/assets/0xBc0d84FA6260E065F330d51621d682d2630F4Aa2/logo.png differ diff --git a/blockchains/ethereum/assets/0xBc17729fDf562723f0267F79FF25aDE441056d87/info.json b/blockchains/ethereum/assets/0xBc17729fDf562723f0267F79FF25aDE441056d87/info.json new file mode 100644 index 00000000..d6e5aae5 --- /dev/null +++ b/blockchains/ethereum/assets/0xBc17729fDf562723f0267F79FF25aDE441056d87/info.json @@ -0,0 +1,25 @@ +{ + "name": "KSM Starter Token", + "website": "https://ksmstarter.com", + "description": "KSM Starter is the primary launchpad on Kusama that supports upcoming projects that wish to build on the Kusama network and the greater Substrate ecosystem.", + "explorer": "https://etherscan.io/token/0xBc17729fDf562723f0267F79FF25aDE441056d87", + "type": "ERC20", + "symbol": "KST", + "decimals": 18, + "status": "active", + "id": "0xBc17729fDf562723f0267F79FF25aDE441056d87", + "links": [ + { + "name": "whitepaper", + "url": "https://ksmstarter.com/wp-content/uploads/2021/09/ksm_starter.pdf" + }, + { + "name": "x", + "url": "https://x.com/KSMStarter" + }, + { + "name": "telegram", + "url": "https://t.me/KSM_starter" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBc17729fDf562723f0267F79FF25aDE441056d87/logo.png b/blockchains/ethereum/assets/0xBc17729fDf562723f0267F79FF25aDE441056d87/logo.png new file mode 100644 index 00000000..ff2bb19d Binary files /dev/null and b/blockchains/ethereum/assets/0xBc17729fDf562723f0267F79FF25aDE441056d87/logo.png differ diff --git a/blockchains/ethereum/assets/0xBcA31049ab4782f0FfA9CfFCB2cF48e8D6dE4fb8/info.json b/blockchains/ethereum/assets/0xBcA31049ab4782f0FfA9CfFCB2cF48e8D6dE4fb8/info.json new file mode 100644 index 00000000..26af6027 --- /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 00000000..3bdf99e2 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 new file mode 100644 index 00000000..b559a624 --- /dev/null +++ b/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/info.json @@ -0,0 +1,28 @@ +{ + "name": "Skull", + "symbol": "SKULL", + "type": "ERC20", + "decimals": 4, + "description": "SKULL is social money circulated by Skeenee and supported by the Roll contract. Created back in October 2019, it was one of the first social money tokens issued by Roll. Over the years, SKULL has created a passionate and loyal community of artists, collectors, and crypto enthusiasts who are interested in growing the pie and bringing new forms of value and artistic expression.", + "website": "https://linktr.ee/skeenee", + "explorer": "https://etherscan.io/token/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35", + "status": "active", + "id": "0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35", + "links": [ + { + "name": "x", + "url": "https://x.com/skeenee_art" + }, + { + "name": "discord", + "url": "https://discord.com/invite/DZm9tY3" + }, + { + "name": "youtube", + "url": "https://youtube.com/skeenee" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/logo.png b/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/logo.png new file mode 100644 index 00000000..e4b4c430 Binary files /dev/null and b/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/logo.png differ diff --git a/blockchains/ethereum/assets/0xBcca60bB61934080951369a648Fb03DF4F96263C/info.json b/blockchains/ethereum/assets/0xBcca60bB61934080951369a648Fb03DF4F96263C/info.json new file mode 100644 index 00000000..eaa55ce2 --- /dev/null +++ b/blockchains/ethereum/assets/0xBcca60bB61934080951369a648Fb03DF4F96263C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave USDC", + "symbol": "aUSDC", + "type": "ERC20", + "decimals": 6, + "description": "Aave USDC is an interest bearing token pegged 1:1 to the underlying USDC deposited in Aave. aUSDC accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xBcca60bB61934080951369a648Fb03DF4F96263C", + "status": "active", + "id": "0xBcca60bB61934080951369a648Fb03DF4F96263C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBcca60bB61934080951369a648Fb03DF4F96263C/logo.png b/blockchains/ethereum/assets/0xBcca60bB61934080951369a648Fb03DF4F96263C/logo.png new file mode 100644 index 00000000..7b68cfab Binary files /dev/null and b/blockchains/ethereum/assets/0xBcca60bB61934080951369a648Fb03DF4F96263C/logo.png differ diff --git a/blockchains/ethereum/assets/0xBd0793332e9fB844A52a205A233EF27a5b34B927/info.json b/blockchains/ethereum/assets/0xBd0793332e9fB844A52a205A233EF27a5b34B927/info.json new file mode 100644 index 00000000..13abfba1 --- /dev/null +++ b/blockchains/ethereum/assets/0xBd0793332e9fB844A52a205A233EF27a5b34B927/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZB Token", + "website": "https://zb.com", + "description": "ZB Token (ZB) is an exchange token and the native currency of the ZB.COM crypto exchange.", + "explorer": "https://etherscan.io/token/0xBd0793332e9fB844A52a205A233EF27a5b34B927", + "type": "ERC20", + "symbol": "ZB", + "decimals": 18, + "status": "active", + "id": "0xBd0793332e9fB844A52a205A233EF27a5b34B927" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBd0793332e9fB844A52a205A233EF27a5b34B927/logo.png b/blockchains/ethereum/assets/0xBd0793332e9fB844A52a205A233EF27a5b34B927/logo.png new file mode 100644 index 00000000..0abf5cb2 Binary files /dev/null and b/blockchains/ethereum/assets/0xBd0793332e9fB844A52a205A233EF27a5b34B927/logo.png differ diff --git a/blockchains/ethereum/assets/0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F/info.json b/blockchains/ethereum/assets/0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F/info.json new file mode 100644 index 00000000..60055fab --- /dev/null +++ b/blockchains/ethereum/assets/0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F/info.json @@ -0,0 +1,37 @@ +{ + "name": "Meter Governance mapped by Meter.io", + "website": "https://meter.io/", + "description": "eMTRG is the ERC-20 equivalent of MTRG, the governance coin of the Meter network.", + "explorer": "https://etherscan.io/token/0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F", + "type": "ERC20", + "symbol": "eMTRG", + "decimals": 18, + "status": "active", + "id": "0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F", + "links": [ + { + "name": "github", + "url": "https://github.com/meterio" + }, + { + "name": "x", + "url": "https://x.com/Meter_IO" + }, + { + "name": "telegram", + "url": "https://t.me/Meter_IO" + }, + { + "name": "discord", + "url": "https://discord.com/invite/XZgZsCn" + }, + { + "name": "facebook", + "url": "https://facebook.com/MeterFoundation/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Meter_io/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F/logo.png b/blockchains/ethereum/assets/0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F/logo.png new file mode 100644 index 00000000..48620d29 Binary files /dev/null and b/blockchains/ethereum/assets/0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F/logo.png differ diff --git a/blockchains/ethereum/assets/0xBd356a39BFf2cAda8E9248532DD879147221Cf76/info.json b/blockchains/ethereum/assets/0xBd356a39BFf2cAda8E9248532DD879147221Cf76/info.json new file mode 100644 index 00000000..507e46c3 --- /dev/null +++ b/blockchains/ethereum/assets/0xBd356a39BFf2cAda8E9248532DD879147221Cf76/info.json @@ -0,0 +1,29 @@ +{ + "name": "WOM Token", + "website": "https://womprotocol.io", + "description": "The WOM Protocol is a next-gen MarTech solution that enables brands to leverage word-of-mouth recommendations and reward creators without compromising authenticity.", + "explorer": "https://etherscan.io/token/0xBd356a39BFf2cAda8E9248532DD879147221Cf76", + "type": "ERC20", + "symbol": "WOM", + "decimals": 18, + "status": "active", + "id": "0xBd356a39BFf2cAda8E9248532DD879147221Cf76", + "links": [ + { + "name": "github", + "url": "https://github.com/wom-protocol" + }, + { + "name": "x", + "url": "https://x.com/WOMProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/WOMProtocolChat" + }, + { + "name": "whitepaper", + "url": "https://womprotocol.io/pdf/en/wom-whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBd356a39BFf2cAda8E9248532DD879147221Cf76/logo.png b/blockchains/ethereum/assets/0xBd356a39BFf2cAda8E9248532DD879147221Cf76/logo.png new file mode 100644 index 00000000..98c49721 Binary files /dev/null and b/blockchains/ethereum/assets/0xBd356a39BFf2cAda8E9248532DD879147221Cf76/logo.png differ diff --git a/blockchains/ethereum/assets/0xBd56E9477Fc6997609Cf45F84795eFbDAC642Ff1/info.json b/blockchains/ethereum/assets/0xBd56E9477Fc6997609Cf45F84795eFbDAC642Ff1/info.json new file mode 100644 index 00000000..089b1004 --- /dev/null +++ b/blockchains/ethereum/assets/0xBd56E9477Fc6997609Cf45F84795eFbDAC642Ff1/info.json @@ -0,0 +1,11 @@ +{ + "name": "bZx REP iToken", + "symbol": "iREP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBd56E9477Fc6997609Cf45F84795eFbDAC642Ff1", + "status": "abandoned", + "id": "0xBd56E9477Fc6997609Cf45F84795eFbDAC642Ff1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBd56E9477Fc6997609Cf45F84795eFbDAC642Ff1/logo.png b/blockchains/ethereum/assets/0xBd56E9477Fc6997609Cf45F84795eFbDAC642Ff1/logo.png new file mode 100644 index 00000000..10c0a0a1 Binary files /dev/null and b/blockchains/ethereum/assets/0xBd56E9477Fc6997609Cf45F84795eFbDAC642Ff1/logo.png differ diff --git a/blockchains/ethereum/assets/0xBd5DD4D4C51137eE47D080d19cd13670C90df2e9/info.json b/blockchains/ethereum/assets/0xBd5DD4D4C51137eE47D080d19cd13670C90df2e9/info.json new file mode 100644 index 00000000..68d8a1f4 --- /dev/null +++ b/blockchains/ethereum/assets/0xBd5DD4D4C51137eE47D080d19cd13670C90df2e9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digitale Mark", + "symbol": "DM", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBd5DD4D4C51137eE47D080d19cd13670C90df2e9", + "status": "abandoned", + "id": "0xBd5DD4D4C51137eE47D080d19cd13670C90df2e9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBd5DD4D4C51137eE47D080d19cd13670C90df2e9/logo.png b/blockchains/ethereum/assets/0xBd5DD4D4C51137eE47D080d19cd13670C90df2e9/logo.png new file mode 100644 index 00000000..bfc32c78 Binary files /dev/null and b/blockchains/ethereum/assets/0xBd5DD4D4C51137eE47D080d19cd13670C90df2e9/logo.png differ diff --git a/blockchains/ethereum/assets/0xBd8E1f5e1DeC4c607dB53320c412387D9151BcDf/info.json b/blockchains/ethereum/assets/0xBd8E1f5e1DeC4c607dB53320c412387D9151BcDf/info.json new file mode 100644 index 00000000..9590f207 --- /dev/null +++ b/blockchains/ethereum/assets/0xBd8E1f5e1DeC4c607dB53320c412387D9151BcDf/info.json @@ -0,0 +1,11 @@ +{ + "name": "DogeMax.org", + "symbol": "DogeMax", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBd8E1f5e1DeC4c607dB53320c412387D9151BcDf", + "status": "abandoned", + "id": "0xBd8E1f5e1DeC4c607dB53320c412387D9151BcDf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBd8E1f5e1DeC4c607dB53320c412387D9151BcDf/logo.png b/blockchains/ethereum/assets/0xBd8E1f5e1DeC4c607dB53320c412387D9151BcDf/logo.png new file mode 100644 index 00000000..be0355d2 Binary files /dev/null and b/blockchains/ethereum/assets/0xBd8E1f5e1DeC4c607dB53320c412387D9151BcDf/logo.png differ diff --git a/blockchains/ethereum/assets/0xBdBB0Ee6144544eC814d417B0ad41f16fC8B858E/info.json b/blockchains/ethereum/assets/0xBdBB0Ee6144544eC814d417B0ad41f16fC8B858E/info.json new file mode 100644 index 00000000..4c265137 --- /dev/null +++ b/blockchains/ethereum/assets/0xBdBB0Ee6144544eC814d417B0ad41f16fC8B858E/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitKAM", + "symbol": "KAM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://bitkam.io/", + "explorer": "https://etherscan.io/token/0xBdBB0Ee6144544eC814d417B0ad41f16fC8B858E", + "status": "abandoned", + "id": "0xBdBB0Ee6144544eC814d417B0ad41f16fC8B858E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBdBB0Ee6144544eC814d417B0ad41f16fC8B858E/logo.png b/blockchains/ethereum/assets/0xBdBB0Ee6144544eC814d417B0ad41f16fC8B858E/logo.png new file mode 100644 index 00000000..f541a48b Binary files /dev/null and b/blockchains/ethereum/assets/0xBdBB0Ee6144544eC814d417B0ad41f16fC8B858E/logo.png differ diff --git a/blockchains/ethereum/assets/0xBda7807bDa12CfD225f978502F9b470beb25E212/info.json b/blockchains/ethereum/assets/0xBda7807bDa12CfD225f978502F9b470beb25E212/info.json new file mode 100644 index 00000000..ff4a2749 --- /dev/null +++ b/blockchains/ethereum/assets/0xBda7807bDa12CfD225f978502F9b470beb25E212/info.json @@ -0,0 +1,11 @@ +{ + "name": "ALOK", + "symbol": "ALOK", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBda7807bDa12CfD225f978502F9b470beb25E212", + "status": "abandoned", + "id": "0xBda7807bDa12CfD225f978502F9b470beb25E212" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBda7807bDa12CfD225f978502F9b470beb25E212/logo.png b/blockchains/ethereum/assets/0xBda7807bDa12CfD225f978502F9b470beb25E212/logo.png new file mode 100644 index 00000000..f88c98de Binary files /dev/null and b/blockchains/ethereum/assets/0xBda7807bDa12CfD225f978502F9b470beb25E212/logo.png differ diff --git a/blockchains/ethereum/assets/0xBdea5bB640DBFC4593809DEeC5CdB8F99b704Cd2/info.json b/blockchains/ethereum/assets/0xBdea5bB640DBFC4593809DEeC5CdB8F99b704Cd2/info.json new file mode 100644 index 00000000..73fa8460 --- /dev/null +++ b/blockchains/ethereum/assets/0xBdea5bB640DBFC4593809DEeC5CdB8F99b704Cd2/info.json @@ -0,0 +1,14 @@ +{ + "name": "Direwolf", + "website": "https://direwolftoken.com", + "description": "Direwolf is a deflationary community token with a large focus on community transparency.", + "explorer": "https://etherscan.io/token/0xbdea5bb640dbfc4593809deec5cdb8f99b704cd2", + "type": "ERC20", + "symbol": "DIREWOLF", + "decimals": 2, + "status": "active", + "id": "0xBdea5bB640DBFC4593809DEeC5CdB8F99b704Cd2", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBdea5bB640DBFC4593809DEeC5CdB8F99b704Cd2/logo.png b/blockchains/ethereum/assets/0xBdea5bB640DBFC4593809DEeC5CdB8F99b704Cd2/logo.png new file mode 100644 index 00000000..8fb5bf20 Binary files /dev/null and b/blockchains/ethereum/assets/0xBdea5bB640DBFC4593809DEeC5CdB8F99b704Cd2/logo.png differ diff --git a/blockchains/ethereum/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/info.json b/blockchains/ethereum/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/info.json new file mode 100644 index 00000000..5967142f --- /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 00000000..fc7f2223 Binary files /dev/null and b/blockchains/ethereum/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/logo.png differ diff --git a/blockchains/ethereum/assets/0xBe37d9C0760441dc23ccC26E4aD9cAC5285cC439/info.json b/blockchains/ethereum/assets/0xBe37d9C0760441dc23ccC26E4aD9cAC5285cC439/info.json new file mode 100644 index 00000000..68233d7a --- /dev/null +++ b/blockchains/ethereum/assets/0xBe37d9C0760441dc23ccC26E4aD9cAC5285cC439/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-28/30M88", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBe37d9C0760441dc23ccC26E4aD9cAC5285cC439", + "status": "abandoned", + "id": "0xBe37d9C0760441dc23ccC26E4aD9cAC5285cC439" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBe37d9C0760441dc23ccC26E4aD9cAC5285cC439/logo.png b/blockchains/ethereum/assets/0xBe37d9C0760441dc23ccC26E4aD9cAC5285cC439/logo.png new file mode 100644 index 00000000..70427bc3 Binary files /dev/null and b/blockchains/ethereum/assets/0xBe37d9C0760441dc23ccC26E4aD9cAC5285cC439/logo.png differ diff --git a/blockchains/ethereum/assets/0xBe428c3867F05deA2A89Fc76a102b544eaC7f772/info.json b/blockchains/ethereum/assets/0xBe428c3867F05deA2A89Fc76a102b544eaC7f772/info.json new file mode 100644 index 00000000..f96866f6 --- /dev/null +++ b/blockchains/ethereum/assets/0xBe428c3867F05deA2A89Fc76a102b544eaC7f772/info.json @@ -0,0 +1,37 @@ +{ + "name": "CyberVeinToken", + "website": "https://cybervein.org", + "description": "Utility token to increase adoption of cryptocurrency.", + "explorer": "https://etherscan.io/token/0xBe428c3867F05deA2A89Fc76a102b544eaC7f772", + "type": "ERC20", + "symbol": "CVT", + "decimals": 18, + "status": "active", + "id": "0xBe428c3867F05deA2A89Fc76a102b544eaC7f772", + "links": [ + { + "name": "x", + "url": "https://x.com/CyberVeinGroup" + }, + { + "name": "telegram", + "url": "https://t.me/CyberVeinCommunity" + }, + { + "name": "facebook", + "url": "https://facebook.com/cyberveinteam" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCpIgOnNTu4FPFsa9LBdQjCw?view_as=subscriber" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/CyberVeinOfficial/" + }, + { + "name": "medium", + "url": "https://medium.com/cybervein" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBe428c3867F05deA2A89Fc76a102b544eaC7f772/logo.png b/blockchains/ethereum/assets/0xBe428c3867F05deA2A89Fc76a102b544eaC7f772/logo.png new file mode 100644 index 00000000..9048cbfb Binary files /dev/null and b/blockchains/ethereum/assets/0xBe428c3867F05deA2A89Fc76a102b544eaC7f772/logo.png differ diff --git a/blockchains/ethereum/assets/0xBe6C8f2810EF39420d2DC2901b8414C8c45FEE6D/info.json b/blockchains/ethereum/assets/0xBe6C8f2810EF39420d2DC2901b8414C8c45FEE6D/info.json new file mode 100644 index 00000000..a9d3623e --- /dev/null +++ b/blockchains/ethereum/assets/0xBe6C8f2810EF39420d2DC2901b8414C8c45FEE6D/info.json @@ -0,0 +1,11 @@ +{ + "name": "MICROMINES", + "symbol": "MICRO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://micromines.co/", + "explorer": "https://etherscan.io/token/0xBe6C8f2810EF39420d2DC2901b8414C8c45FEE6D", + "status": "abandoned", + "id": "0xBe6C8f2810EF39420d2DC2901b8414C8c45FEE6D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBe6C8f2810EF39420d2DC2901b8414C8c45FEE6D/logo.png b/blockchains/ethereum/assets/0xBe6C8f2810EF39420d2DC2901b8414C8c45FEE6D/logo.png new file mode 100644 index 00000000..3f485a8b Binary files /dev/null and b/blockchains/ethereum/assets/0xBe6C8f2810EF39420d2DC2901b8414C8c45FEE6D/logo.png differ diff --git a/blockchains/ethereum/assets/0xBe9329273A9D9e34B31d4b83a038E724a685BE72/info.json b/blockchains/ethereum/assets/0xBe9329273A9D9e34B31d4b83a038E724a685BE72/info.json new file mode 100644 index 00000000..f2068c18 --- /dev/null +++ b/blockchains/ethereum/assets/0xBe9329273A9D9e34B31d4b83a038E724a685BE72/info.json @@ -0,0 +1,11 @@ +{ + "name": "WinETHFree", + "symbol": "winethfree.com (Win ETH Free)", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBe9329273A9D9e34B31d4b83a038E724a685BE72", + "status": "abandoned", + "id": "0xBe9329273A9D9e34B31d4b83a038E724a685BE72" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBe9329273A9D9e34B31d4b83a038E724a685BE72/logo.png b/blockchains/ethereum/assets/0xBe9329273A9D9e34B31d4b83a038E724a685BE72/logo.png new file mode 100644 index 00000000..3cfeb869 Binary files /dev/null and b/blockchains/ethereum/assets/0xBe9329273A9D9e34B31d4b83a038E724a685BE72/logo.png differ diff --git a/blockchains/ethereum/assets/0xBeA202a291f633c12EdBbD51e04af985b2670500/info.json b/blockchains/ethereum/assets/0xBeA202a291f633c12EdBbD51e04af985b2670500/info.json new file mode 100644 index 00000000..cd5065e1 --- /dev/null +++ b/blockchains/ethereum/assets/0xBeA202a291f633c12EdBbD51e04af985b2670500/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinSmart Token", + "symbol": "CST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBeA202a291f633c12EdBbD51e04af985b2670500", + "status": "abandoned", + "id": "0xBeA202a291f633c12EdBbD51e04af985b2670500" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBeA202a291f633c12EdBbD51e04af985b2670500/logo.png b/blockchains/ethereum/assets/0xBeA202a291f633c12EdBbD51e04af985b2670500/logo.png new file mode 100644 index 00000000..a246d4f2 Binary files /dev/null and b/blockchains/ethereum/assets/0xBeA202a291f633c12EdBbD51e04af985b2670500/logo.png differ diff --git a/blockchains/ethereum/assets/0xBeB6fdF4ef6CEb975157be43cBE0047B248a8922/info.json b/blockchains/ethereum/assets/0xBeB6fdF4ef6CEb975157be43cBE0047B248a8922/info.json new file mode 100644 index 00000000..76f3c605 --- /dev/null +++ b/blockchains/ethereum/assets/0xBeB6fdF4ef6CEb975157be43cBE0047B248a8922/info.json @@ -0,0 +1,11 @@ +{ + "name": "ARP", + "symbol": "ARP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBeB6fdF4ef6CEb975157be43cBE0047B248a8922", + "status": "active", + "id": "0xBeB6fdF4ef6CEb975157be43cBE0047B248a8922" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBeB6fdF4ef6CEb975157be43cBE0047B248a8922/logo.png b/blockchains/ethereum/assets/0xBeB6fdF4ef6CEb975157be43cBE0047B248a8922/logo.png new file mode 100644 index 00000000..ad13e348 Binary files /dev/null and b/blockchains/ethereum/assets/0xBeB6fdF4ef6CEb975157be43cBE0047B248a8922/logo.png differ diff --git a/blockchains/ethereum/assets/0xBeE20B9Df360B8442534Ed8059f3e5bAEeB74EaF/info.json b/blockchains/ethereum/assets/0xBeE20B9Df360B8442534Ed8059f3e5bAEeB74EaF/info.json new file mode 100644 index 00000000..007f2f53 --- /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 00000000..01afbfe7 Binary files /dev/null and b/blockchains/ethereum/assets/0xBeE20B9Df360B8442534Ed8059f3e5bAEeB74EaF/logo.png differ diff --git a/blockchains/ethereum/assets/0xBeE6EDF5fa7e862ed2eA9b9f42cb0849184aAE85/info.json b/blockchains/ethereum/assets/0xBeE6EDF5fa7e862ed2eA9b9f42cb0849184aAE85/info.json new file mode 100644 index 00000000..284c7ddd --- /dev/null +++ b/blockchains/ethereum/assets/0xBeE6EDF5fa7e862ed2eA9b9f42cb0849184aAE85/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockstate STO Token", + "symbol": "BKN", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBeE6EDF5fa7e862ed2eA9b9f42cb0849184aAE85", + "status": "abandoned", + "id": "0xBeE6EDF5fa7e862ed2eA9b9f42cb0849184aAE85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBeE6EDF5fa7e862ed2eA9b9f42cb0849184aAE85/logo.png b/blockchains/ethereum/assets/0xBeE6EDF5fa7e862ed2eA9b9f42cb0849184aAE85/logo.png new file mode 100644 index 00000000..3b40637b Binary files /dev/null and b/blockchains/ethereum/assets/0xBeE6EDF5fa7e862ed2eA9b9f42cb0849184aAE85/logo.png differ diff --git a/blockchains/ethereum/assets/0xBec4A69D6A5fbCb2303c13D24ea1A51a6F19bd12/info.json b/blockchains/ethereum/assets/0xBec4A69D6A5fbCb2303c13D24ea1A51a6F19bd12/info.json new file mode 100644 index 00000000..7ac9a1dc --- /dev/null +++ b/blockchains/ethereum/assets/0xBec4A69D6A5fbCb2303c13D24ea1A51a6F19bd12/info.json @@ -0,0 +1,17 @@ +{ + "name": "USDX", + "description": "A fast way to transfer money globally in secured digital transactions.", + "website": "-", + "explorer": "https://etherscan.io/token/0xBec4A69D6A5fbCb2303c13D24ea1A51a6F19bd12", + "type": "ERC20", + "symbol": "USDX", + "decimals": 0, + "status": "active", + "id": "0xBec4A69D6A5fbCb2303c13D24ea1A51a6F19bd12", + "links": [ + { + "name": "x", + "url": "https://x.com/coinusdx" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBec4A69D6A5fbCb2303c13D24ea1A51a6F19bd12/logo.png b/blockchains/ethereum/assets/0xBec4A69D6A5fbCb2303c13D24ea1A51a6F19bd12/logo.png new file mode 100644 index 00000000..549e05c5 Binary files /dev/null and b/blockchains/ethereum/assets/0xBec4A69D6A5fbCb2303c13D24ea1A51a6F19bd12/logo.png differ diff --git a/blockchains/ethereum/assets/0xBf131dCbE3436dab8a7c82D9C3666d652ca38eaB/info.json b/blockchains/ethereum/assets/0xBf131dCbE3436dab8a7c82D9C3666d652ca38eaB/info.json new file mode 100644 index 00000000..ca8b4142 --- /dev/null +++ b/blockchains/ethereum/assets/0xBf131dCbE3436dab8a7c82D9C3666d652ca38eaB/info.json @@ -0,0 +1,17 @@ +{ + "name": "MOAR", + "website": "https://many.global", + "description": "MOAR (sister token of MANY) MOAR + MANY together are the tokens of a community born and operated project combining YF and NFT. Farm MANY to get MOAR and use MOAR to buy rare NFTs and said MOAR is burned", + "explorer": "https://etherscan.io/token/0xBf131dCbE3436dab8a7c82D9C3666d652ca38eaB", + "type": "ERC20", + "symbol": "MOAR", + "decimals": 18, + "status": "active", + "id": "0xBf131dCbE3436dab8a7c82D9C3666d652ca38eaB", + "links": [ + { + "name": "github", + "url": "https://github.com/MANYToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBf131dCbE3436dab8a7c82D9C3666d652ca38eaB/logo.png b/blockchains/ethereum/assets/0xBf131dCbE3436dab8a7c82D9C3666d652ca38eaB/logo.png new file mode 100644 index 00000000..fcb7da2a Binary files /dev/null and b/blockchains/ethereum/assets/0xBf131dCbE3436dab8a7c82D9C3666d652ca38eaB/logo.png differ diff --git a/blockchains/ethereum/assets/0xBf4cFD7d1eDeeEA5f6600827411B41A21eB08abd/info.json b/blockchains/ethereum/assets/0xBf4cFD7d1eDeeEA5f6600827411B41A21eB08abd/info.json new file mode 100644 index 00000000..1bd41698 --- /dev/null +++ b/blockchains/ethereum/assets/0xBf4cFD7d1eDeeEA5f6600827411B41A21eB08abd/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoLah", + "symbol": "CTL", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBf4cFD7d1eDeeEA5f6600827411B41A21eB08abd", + "status": "abandoned", + "id": "0xBf4cFD7d1eDeeEA5f6600827411B41A21eB08abd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBf4cFD7d1eDeeEA5f6600827411B41A21eB08abd/logo.png b/blockchains/ethereum/assets/0xBf4cFD7d1eDeeEA5f6600827411B41A21eB08abd/logo.png new file mode 100644 index 00000000..c9053e99 Binary files /dev/null and b/blockchains/ethereum/assets/0xBf4cFD7d1eDeeEA5f6600827411B41A21eB08abd/logo.png differ diff --git a/blockchains/ethereum/assets/0xBf54eb503bb350583D11f4348086DC3608FA245c/info.json b/blockchains/ethereum/assets/0xBf54eb503bb350583D11f4348086DC3608FA245c/info.json new file mode 100644 index 00000000..4b4b2857 --- /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 00000000..07947479 Binary files /dev/null and b/blockchains/ethereum/assets/0xBf54eb503bb350583D11f4348086DC3608FA245c/logo.png differ diff --git a/blockchains/ethereum/assets/0xBf5813707F50Fc1B6D19481fBfE4A90986179107/info.json b/blockchains/ethereum/assets/0xBf5813707F50Fc1B6D19481fBfE4A90986179107/info.json new file mode 100644 index 00000000..17fae4a7 --- /dev/null +++ b/blockchains/ethereum/assets/0xBf5813707F50Fc1B6D19481fBfE4A90986179107/info.json @@ -0,0 +1,11 @@ +{ + "name": "coindex", + "symbol": "cox", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBf5813707F50Fc1B6D19481fBfE4A90986179107", + "status": "abandoned", + "id": "0xBf5813707F50Fc1B6D19481fBfE4A90986179107" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBf5813707F50Fc1B6D19481fBfE4A90986179107/logo.png b/blockchains/ethereum/assets/0xBf5813707F50Fc1B6D19481fBfE4A90986179107/logo.png new file mode 100644 index 00000000..e4c646a2 Binary files /dev/null and b/blockchains/ethereum/assets/0xBf5813707F50Fc1B6D19481fBfE4A90986179107/logo.png differ diff --git a/blockchains/ethereum/assets/0xBf5Ba36f13A63c6F22E7450F7e85d854EF60e46B/info.json b/blockchains/ethereum/assets/0xBf5Ba36f13A63c6F22E7450F7e85d854EF60e46B/info.json new file mode 100644 index 00000000..e83ff21a --- /dev/null +++ b/blockchains/ethereum/assets/0xBf5Ba36f13A63c6F22E7450F7e85d854EF60e46B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ditcoin", + "symbol": "DITC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBf5Ba36f13A63c6F22E7450F7e85d854EF60e46B", + "status": "abandoned", + "id": "0xBf5Ba36f13A63c6F22E7450F7e85d854EF60e46B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBf5Ba36f13A63c6F22E7450F7e85d854EF60e46B/logo.png b/blockchains/ethereum/assets/0xBf5Ba36f13A63c6F22E7450F7e85d854EF60e46B/logo.png new file mode 100644 index 00000000..203fe444 Binary files /dev/null and b/blockchains/ethereum/assets/0xBf5Ba36f13A63c6F22E7450F7e85d854EF60e46B/logo.png differ diff --git a/blockchains/ethereum/assets/0xBfE03707aDb75b478Add9A01978057803F480E44/info.json b/blockchains/ethereum/assets/0xBfE03707aDb75b478Add9A01978057803F480E44/info.json new file mode 100644 index 00000000..6e514724 --- /dev/null +++ b/blockchains/ethereum/assets/0xBfE03707aDb75b478Add9A01978057803F480E44/info.json @@ -0,0 +1,11 @@ +{ + "name": "IMSMART", + "symbol": "IMT", + "type": "ERC20", + "decimals": 8, + "description": "Imsmart is a utility token designed to facilitate the advanced development and deployment of SME 360 solutions.", + "website": "https://imsmart.io/", + "explorer": "https://etherscan.io/token/0xBfE03707aDb75b478Add9A01978057803F480E44", + "status": "active", + "id": "0xBfE03707aDb75b478Add9A01978057803F480E44" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBfE03707aDb75b478Add9A01978057803F480E44/logo.png b/blockchains/ethereum/assets/0xBfE03707aDb75b478Add9A01978057803F480E44/logo.png new file mode 100644 index 00000000..568e55b2 Binary files /dev/null and b/blockchains/ethereum/assets/0xBfE03707aDb75b478Add9A01978057803F480E44/logo.png differ diff --git a/blockchains/ethereum/assets/0xBfaA8cF522136C6FAfC1D53Fe4b85b4603c765b8/info.json b/blockchains/ethereum/assets/0xBfaA8cF522136C6FAfC1D53Fe4b85b4603c765b8/info.json new file mode 100644 index 00000000..79d91799 --- /dev/null +++ b/blockchains/ethereum/assets/0xBfaA8cF522136C6FAfC1D53Fe4b85b4603c765b8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Winchain", + "symbol": "WIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBfaA8cF522136C6FAfC1D53Fe4b85b4603c765b8", + "status": "abandoned", + "id": "0xBfaA8cF522136C6FAfC1D53Fe4b85b4603c765b8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBfaA8cF522136C6FAfC1D53Fe4b85b4603c765b8/logo.png b/blockchains/ethereum/assets/0xBfaA8cF522136C6FAfC1D53Fe4b85b4603c765b8/logo.png new file mode 100644 index 00000000..c98a5c5c Binary files /dev/null and b/blockchains/ethereum/assets/0xBfaA8cF522136C6FAfC1D53Fe4b85b4603c765b8/logo.png differ diff --git a/blockchains/ethereum/assets/0xBfd4fDC84e1CC26dB7Ec504Caa32d78aE67612a7/info.json b/blockchains/ethereum/assets/0xBfd4fDC84e1CC26dB7Ec504Caa32d78aE67612a7/info.json new file mode 100644 index 00000000..4d542cd2 --- /dev/null +++ b/blockchains/ethereum/assets/0xBfd4fDC84e1CC26dB7Ec504Caa32d78aE67612a7/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitcoinETH", + "symbol": "BTCE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xBfd4fDC84e1CC26dB7Ec504Caa32d78aE67612a7", + "status": "abandoned", + "id": "0xBfd4fDC84e1CC26dB7Ec504Caa32d78aE67612a7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xBfd4fDC84e1CC26dB7Ec504Caa32d78aE67612a7/logo.png b/blockchains/ethereum/assets/0xBfd4fDC84e1CC26dB7Ec504Caa32d78aE67612a7/logo.png new file mode 100644 index 00000000..8ea812b8 Binary files /dev/null and b/blockchains/ethereum/assets/0xBfd4fDC84e1CC26dB7Ec504Caa32d78aE67612a7/logo.png differ diff --git a/blockchains/ethereum/assets/0xC002141f62961AfA759F7b22aaeb151bf80a3d8D/info.json b/blockchains/ethereum/assets/0xC002141f62961AfA759F7b22aaeb151bf80a3d8D/info.json new file mode 100644 index 00000000..80e1c996 --- /dev/null +++ b/blockchains/ethereum/assets/0xC002141f62961AfA759F7b22aaeb151bf80a3d8D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bexpress", + "symbol": "BEC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC002141f62961AfA759F7b22aaeb151bf80a3d8D", + "status": "abandoned", + "id": "0xC002141f62961AfA759F7b22aaeb151bf80a3d8D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC002141f62961AfA759F7b22aaeb151bf80a3d8D/logo.png b/blockchains/ethereum/assets/0xC002141f62961AfA759F7b22aaeb151bf80a3d8D/logo.png new file mode 100644 index 00000000..d1a86f28 Binary files /dev/null and b/blockchains/ethereum/assets/0xC002141f62961AfA759F7b22aaeb151bf80a3d8D/logo.png differ diff --git a/blockchains/ethereum/assets/0xC011A72400E58ecD99Ee497CF89E3775d4bd732F/info.json b/blockchains/ethereum/assets/0xC011A72400E58ecD99Ee497CF89E3775d4bd732F/info.json new file mode 100644 index 00000000..45045414 --- /dev/null +++ b/blockchains/ethereum/assets/0xC011A72400E58ecD99Ee497CF89E3775d4bd732F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Synthetix Network Token", + "website": "https://synthetix.io", + "description": "The Synthetix platform enables the creation of on-chain synthetic assets (Synths) that track the value of assets in the real world.", + "explorer": "https://etherscan.io/token/0xC011A72400E58ecD99Ee497CF89E3775d4bd732F", + "type": "ERC20", + "symbol": "SNX", + "decimals": 18, + "status": "active", + "id": "0xC011A72400E58ecD99Ee497CF89E3775d4bd732F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC011A72400E58ecD99Ee497CF89E3775d4bd732F/logo.png b/blockchains/ethereum/assets/0xC011A72400E58ecD99Ee497CF89E3775d4bd732F/logo.png new file mode 100644 index 00000000..bd96cdff Binary files /dev/null and b/blockchains/ethereum/assets/0xC011A72400E58ecD99Ee497CF89E3775d4bd732F/logo.png differ diff --git a/blockchains/ethereum/assets/0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F/info.json b/blockchains/ethereum/assets/0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F/info.json new file mode 100644 index 00000000..c0635d0e --- /dev/null +++ b/blockchains/ethereum/assets/0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F/info.json @@ -0,0 +1,41 @@ +{ + "name": "Synthetix", + "website": "https://synthetix.io", + "description": "Synthetix is a derivatives liquidity protocol on Ethereum that enables the issuance and trading of synthetic assets.", + "explorer": "https://etherscan.io/token/0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F", + "research": "https://research.binance.com/en/projects/synthetix", + "type": "ERC20", + "symbol": "SNX", + "decimals": 18, + "status": "active", + "id": "0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F", + "tags": [ + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/havven/havven" + }, + { + "name": "x", + "url": "https://x.com/synthetix_io" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/synthetix_io/" + }, + { + "name": "blog", + "url": "https://blog.synthetix.io/" + }, + { + "name": "whitepaper", + "url": "https://synthetix.io/uploads/havven_whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/havven/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F/logo.png b/blockchains/ethereum/assets/0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F/logo.png new file mode 100644 index 00000000..2a850de0 Binary files /dev/null and b/blockchains/ethereum/assets/0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F/logo.png differ diff --git a/blockchains/ethereum/assets/0xC017C622cd05698580E2decD0F97d4A17DaB70F9/info.json b/blockchains/ethereum/assets/0xC017C622cd05698580E2decD0F97d4A17DaB70F9/info.json new file mode 100644 index 00000000..1f1350d1 --- /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 00000000..af466179 Binary files /dev/null and b/blockchains/ethereum/assets/0xC017C622cd05698580E2decD0F97d4A17DaB70F9/logo.png differ diff --git a/blockchains/ethereum/assets/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2/info.json b/blockchains/ethereum/assets/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2/info.json new file mode 100644 index 00000000..a93727de --- /dev/null +++ b/blockchains/ethereum/assets/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2/info.json @@ -0,0 +1,11 @@ +{ + "name": "WETH", + "symbol": "WETH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://weth.io/", + "explorer": "https://etherscan.io/token/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "status": "active", + "id": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2/logo.png b/blockchains/ethereum/assets/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2/logo.png new file mode 100644 index 00000000..bf957d38 Binary files /dev/null and b/blockchains/ethereum/assets/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2/logo.png differ diff --git a/blockchains/ethereum/assets/0xC04c25912d8E0A4ba611f02f5139FA9972A3Bc35/info.json b/blockchains/ethereum/assets/0xC04c25912d8E0A4ba611f02f5139FA9972A3Bc35/info.json new file mode 100644 index 00000000..2fff09ed --- /dev/null +++ b/blockchains/ethereum/assets/0xC04c25912d8E0A4ba611f02f5139FA9972A3Bc35/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TOKEN", + "symbol": "EQR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC04c25912d8E0A4ba611f02f5139FA9972A3Bc35", + "status": "abandoned", + "id": "0xC04c25912d8E0A4ba611f02f5139FA9972A3Bc35" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC04c25912d8E0A4ba611f02f5139FA9972A3Bc35/logo.png b/blockchains/ethereum/assets/0xC04c25912d8E0A4ba611f02f5139FA9972A3Bc35/logo.png new file mode 100755 index 00000000..fd2bb899 Binary files /dev/null and b/blockchains/ethereum/assets/0xC04c25912d8E0A4ba611f02f5139FA9972A3Bc35/logo.png differ diff --git a/blockchains/ethereum/assets/0xC053fbBA280E08EcEfFA607157d8fAf8DEfA4785/info.json b/blockchains/ethereum/assets/0xC053fbBA280E08EcEfFA607157d8fAf8DEfA4785/info.json new file mode 100644 index 00000000..f0349f30 --- /dev/null +++ b/blockchains/ethereum/assets/0xC053fbBA280E08EcEfFA607157d8fAf8DEfA4785/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R794055 ", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC053fbBA280E08EcEfFA607157d8fAf8DEfA4785", + "status": "abandoned", + "id": "0xC053fbBA280E08EcEfFA607157d8fAf8DEfA4785" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC053fbBA280E08EcEfFA607157d8fAf8DEfA4785/logo.png b/blockchains/ethereum/assets/0xC053fbBA280E08EcEfFA607157d8fAf8DEfA4785/logo.png new file mode 100755 index 00000000..9339d490 Binary files /dev/null and b/blockchains/ethereum/assets/0xC053fbBA280E08EcEfFA607157d8fAf8DEfA4785/logo.png differ diff --git a/blockchains/ethereum/assets/0xC05d14442A510De4D3d71a3d316585aA0CE32b50/info.json b/blockchains/ethereum/assets/0xC05d14442A510De4D3d71a3d316585aA0CE32b50/info.json new file mode 100644 index 00000000..f862046f --- /dev/null +++ b/blockchains/ethereum/assets/0xC05d14442A510De4D3d71a3d316585aA0CE32b50/info.json @@ -0,0 +1,11 @@ +{ + "name": "LINA", + "symbol": "LINA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://lina.network/", + "explorer": "https://etherscan.io/token/0xC05d14442A510De4D3d71a3d316585aA0CE32b50", + "status": "abandoned", + "id": "0xC05d14442A510De4D3d71a3d316585aA0CE32b50" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC05d14442A510De4D3d71a3d316585aA0CE32b50/logo.png b/blockchains/ethereum/assets/0xC05d14442A510De4D3d71a3d316585aA0CE32b50/logo.png new file mode 100644 index 00000000..b1ac2242 Binary files /dev/null and b/blockchains/ethereum/assets/0xC05d14442A510De4D3d71a3d316585aA0CE32b50/logo.png differ diff --git a/blockchains/ethereum/assets/0xC06fb76E8d0616a8847484448C27c877FfBfdf89/info.json b/blockchains/ethereum/assets/0xC06fb76E8d0616a8847484448C27c877FfBfdf89/info.json new file mode 100644 index 00000000..7a2eb2be --- /dev/null +++ b/blockchains/ethereum/assets/0xC06fb76E8d0616a8847484448C27c877FfBfdf89/info.json @@ -0,0 +1,11 @@ +{ + "name": "FrankfurtSchoolCoin", + "website": "https://frankfurt-school.de/", + "description": "FrankfurtSchoolCoin is a EUR-pegged stablecoin.", + "explorer": "https://etherscan.io/token/0xC06fb76E8d0616a8847484448C27c877FfBfdf89", + "type": "ERC20", + "symbol": "FSBC", + "decimals": 3, + "status": "active", + "id": "0xC06fb76E8d0616a8847484448C27c877FfBfdf89" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC06fb76E8d0616a8847484448C27c877FfBfdf89/logo.png b/blockchains/ethereum/assets/0xC06fb76E8d0616a8847484448C27c877FfBfdf89/logo.png new file mode 100644 index 00000000..34d015bf Binary files /dev/null and b/blockchains/ethereum/assets/0xC06fb76E8d0616a8847484448C27c877FfBfdf89/logo.png differ diff --git a/blockchains/ethereum/assets/0xC08512927D12348F6620a698105e1BAac6EcD911/info.json b/blockchains/ethereum/assets/0xC08512927D12348F6620a698105e1BAac6EcD911/info.json new file mode 100644 index 00000000..bcb17475 --- /dev/null +++ b/blockchains/ethereum/assets/0xC08512927D12348F6620a698105e1BAac6EcD911/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://etherscan.io/token/0xC08512927D12348F6620a698105e1BAac6EcD911", + "type": "ERC20", + "symbol": "GYEN", + "decimals": 6, + "status": "active", + "id": "0xC08512927D12348F6620a698105e1BAac6EcD911", + "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/ethereum/assets/0xC08512927D12348F6620a698105e1BAac6EcD911/logo.png b/blockchains/ethereum/assets/0xC08512927D12348F6620a698105e1BAac6EcD911/logo.png new file mode 100644 index 00000000..b2b272f0 Binary files /dev/null and b/blockchains/ethereum/assets/0xC08512927D12348F6620a698105e1BAac6EcD911/logo.png differ diff --git a/blockchains/ethereum/assets/0xC0D766017141dd4866738C1e704Be6feDc97B904/info.json b/blockchains/ethereum/assets/0xC0D766017141dd4866738C1e704Be6feDc97B904/info.json new file mode 100644 index 00000000..6728ec41 --- /dev/null +++ b/blockchains/ethereum/assets/0xC0D766017141dd4866738C1e704Be6feDc97B904/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tree Token", + "symbol": "TREE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC0D766017141dd4866738C1e704Be6feDc97B904", + "status": "abandoned", + "id": "0xC0D766017141dd4866738C1e704Be6feDc97B904" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC0D766017141dd4866738C1e704Be6feDc97B904/logo.png b/blockchains/ethereum/assets/0xC0D766017141dd4866738C1e704Be6feDc97B904/logo.png new file mode 100644 index 00000000..b38d152d Binary files /dev/null and b/blockchains/ethereum/assets/0xC0D766017141dd4866738C1e704Be6feDc97B904/logo.png differ diff --git a/blockchains/ethereum/assets/0xC0D95605AD0Fa8C83028a162beFA3C2E2164580c/info.json b/blockchains/ethereum/assets/0xC0D95605AD0Fa8C83028a162beFA3C2E2164580c/info.json new file mode 100644 index 00000000..99ab5ea1 --- /dev/null +++ b/blockchains/ethereum/assets/0xC0D95605AD0Fa8C83028a162beFA3C2E2164580c/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR V", + "symbol": "R", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC0D95605AD0Fa8C83028a162beFA3C2E2164580c", + "status": "abandoned", + "id": "0xC0D95605AD0Fa8C83028a162beFA3C2E2164580c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC0D95605AD0Fa8C83028a162beFA3C2E2164580c/logo.png b/blockchains/ethereum/assets/0xC0D95605AD0Fa8C83028a162beFA3C2E2164580c/logo.png new file mode 100644 index 00000000..f71c533a Binary files /dev/null and b/blockchains/ethereum/assets/0xC0D95605AD0Fa8C83028a162beFA3C2E2164580c/logo.png differ diff --git a/blockchains/ethereum/assets/0xC0E47007e084EEF3EE58eb33D777b3B4Ca98622f/info.json b/blockchains/ethereum/assets/0xC0E47007e084EEF3EE58eb33D777b3B4Ca98622f/info.json new file mode 100644 index 00000000..2fd2d492 --- /dev/null +++ b/blockchains/ethereum/assets/0xC0E47007e084EEF3EE58eb33D777b3B4Ca98622f/info.json @@ -0,0 +1,29 @@ +{ + "name": "StarDEX", + "website": "https://stardex.io/", + "description": "Decentralized protocol with DeFi swap interface including a fair fee distribution system and advanced matching engine.", + "explorer": "https://etherscan.io/token/0xC0E47007e084EEF3EE58eb33D777b3B4Ca98622f", + "type": "ERC20", + "symbol": "XSTAR", + "decimals": 18, + "status": "active", + "id": "0xC0E47007e084EEF3EE58eb33D777b3B4Ca98622f", + "links": [ + { + "name": "github", + "url": "https://github.com/stardexio" + }, + { + "name": "x", + "url": "https://x.com/stardexio" + }, + { + "name": "telegram", + "url": "https://t.me/stardexio" + }, + { + "name": "medium", + "url": "https://medium.com/@stardex" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC0E47007e084EEF3EE58eb33D777b3B4Ca98622f/logo.png b/blockchains/ethereum/assets/0xC0E47007e084EEF3EE58eb33D777b3B4Ca98622f/logo.png new file mode 100644 index 00000000..55992dd5 Binary files /dev/null and b/blockchains/ethereum/assets/0xC0E47007e084EEF3EE58eb33D777b3B4Ca98622f/logo.png differ diff --git a/blockchains/ethereum/assets/0xC0E942817e11aA9DD430bb13cd42bfB541Ff4253/info.json b/blockchains/ethereum/assets/0xC0E942817e11aA9DD430bb13cd42bfB541Ff4253/info.json new file mode 100644 index 00000000..114c6aaa --- /dev/null +++ b/blockchains/ethereum/assets/0xC0E942817e11aA9DD430bb13cd42bfB541Ff4253/info.json @@ -0,0 +1,11 @@ +{ + "name": "999", + "symbol": "999", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC0E942817e11aA9DD430bb13cd42bfB541Ff4253", + "status": "abandoned", + "id": "0xC0E942817e11aA9DD430bb13cd42bfB541Ff4253" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC0E942817e11aA9DD430bb13cd42bfB541Ff4253/logo.png b/blockchains/ethereum/assets/0xC0E942817e11aA9DD430bb13cd42bfB541Ff4253/logo.png new file mode 100644 index 00000000..43d5f4e9 Binary files /dev/null and b/blockchains/ethereum/assets/0xC0E942817e11aA9DD430bb13cd42bfB541Ff4253/logo.png differ diff --git a/blockchains/ethereum/assets/0xC0EFFD5D26E42d99540707657555010Ab24Bf905/info.json b/blockchains/ethereum/assets/0xC0EFFD5D26E42d99540707657555010Ab24Bf905/info.json new file mode 100644 index 00000000..bd691c40 --- /dev/null +++ b/blockchains/ethereum/assets/0xC0EFFD5D26E42d99540707657555010Ab24Bf905/info.json @@ -0,0 +1,11 @@ +{ + "name": "DIASPORA", + "symbol": "DIASPORA", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC0EFFD5D26E42d99540707657555010Ab24Bf905", + "status": "abandoned", + "id": "0xC0EFFD5D26E42d99540707657555010Ab24Bf905" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC0EFFD5D26E42d99540707657555010Ab24Bf905/logo.png b/blockchains/ethereum/assets/0xC0EFFD5D26E42d99540707657555010Ab24Bf905/logo.png new file mode 100644 index 00000000..e39b5e40 Binary files /dev/null and b/blockchains/ethereum/assets/0xC0EFFD5D26E42d99540707657555010Ab24Bf905/logo.png differ diff --git a/blockchains/ethereum/assets/0xC0Eb85285d83217CD7c891702bcbC0FC401E2D9D/info.json b/blockchains/ethereum/assets/0xC0Eb85285d83217CD7c891702bcbC0FC401E2D9D/info.json new file mode 100644 index 00000000..2445d37a --- /dev/null +++ b/blockchains/ethereum/assets/0xC0Eb85285d83217CD7c891702bcbC0FC401E2D9D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hive Project Token", + "symbol": "HVN", + "type": "ERC20", + "decimals": 8, + "description": "Hive Coin is a cryptocurrency, with the new blockchain technology and smart contracts, companies no longer need centralized intermediaries for transactions or financing. The blockchain grants absolute transparency, integrity and immutability of the data stored in the system.", + "website": "https://www.hiveterminal.com/", + "explorer": "https://etherscan.io/token/0xC0Eb85285d83217CD7c891702bcbC0FC401E2D9D", + "status": "active", + "id": "0xC0Eb85285d83217CD7c891702bcbC0FC401E2D9D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC0Eb85285d83217CD7c891702bcbC0FC401E2D9D/logo.png b/blockchains/ethereum/assets/0xC0Eb85285d83217CD7c891702bcbC0FC401E2D9D/logo.png new file mode 100644 index 00000000..df661069 Binary files /dev/null and b/blockchains/ethereum/assets/0xC0Eb85285d83217CD7c891702bcbC0FC401E2D9D/logo.png differ diff --git a/blockchains/ethereum/assets/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/info.json b/blockchains/ethereum/assets/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/info.json new file mode 100644 index 00000000..3d10aa06 --- /dev/null +++ b/blockchains/ethereum/assets/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Donut", + "symbol": "DONUT", + "type": "ERC20", + "decimals": 18, + "description": "Donut is an ERC-20 token that represents the community points of /r/ethtrader subreddit.", + "website": "https://www.reddit.com/r/ethtrader", + "explorer": "https://etherscan.io/token/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9", + "status": "active", + "id": "0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/logo.png b/blockchains/ethereum/assets/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/logo.png new file mode 100644 index 00000000..ac9e70af Binary files /dev/null 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 new file mode 100644 index 00000000..0c7a52b7 --- /dev/null +++ b/blockchains/ethereum/assets/0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F/info.json @@ -0,0 +1,25 @@ +{ + "name": "DLP Duck Token", + "website": "https://duckdao.io", + "description": "The Duck Liquidity Pool is a DuckDAO DeFi Market Maker protocol that will provide an opportunity for yield farmers to take advantage of the new opportunities with real skin in the game.", + "explorer": "https://etherscan.io/token/0xc0ba369c8db6eb3924965e5c4fd0b4c1b91e305f", + "type": "ERC20", + "symbol": "DUCK", + "decimals": 18, + "status": "active", + "id": "0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F", + "links": [ + { + "name": "x", + "url": "https://x.com/dao_duck" + }, + { + "name": "telegram", + "url": "https://t.me/duckliquiditypool" + }, + { + "name": "medium", + "url": "https://duckdao.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F/logo.png b/blockchains/ethereum/assets/0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F/logo.png new file mode 100644 index 00000000..d1f9f9cf Binary files /dev/null and b/blockchains/ethereum/assets/0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F/logo.png differ diff --git a/blockchains/ethereum/assets/0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF/info.json b/blockchains/ethereum/assets/0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF/info.json new file mode 100644 index 00000000..4ad585f9 --- /dev/null +++ b/blockchains/ethereum/assets/0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF/info.json @@ -0,0 +1,56 @@ +{ + "name": "Aura Finance (AURA)", + "type": "ERC20", + "symbol": "AURA", + "decimals": 18, + "website": "https://aura.finance", + "description": "Boosting DeFi stakeholders' yield potential and governance power, starting with Balancer.", + "explorer": "https://etherscan.io/token/0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF", + "status": "active", + "id": "0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF", + "links": [ + { + "name": "x", + "url": "https://x.com/AuraFinance" + }, + { + "name": "github", + "url": "https://github.com/aurafinance" + }, + { + "name": "telegram", + "url": "https://t.me/" + }, + { + "name": "telegram_news", + "url": "https://t.me/aurafinance" + }, + { + "name": "discord", + "url": "https://discord.com/" + }, + { + "name": "forum", + "url": "https://forum.aura.finance/" + }, + { + "name": "blog", + "url": "https://mirror.xyz/0xfEE0Bbe31345a7c27368534fEf45a57133FF3A86" + }, + { + "name": "docs", + "url": "https://docs.aura.finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aura-finance" + }, + { + "name": "source_code", + "url": "https://github.com/aurafinance/aura-contracts" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF/logo.png b/blockchains/ethereum/assets/0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF/logo.png new file mode 100644 index 00000000..81a6f8c6 Binary files /dev/null and b/blockchains/ethereum/assets/0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF/logo.png differ diff --git a/blockchains/ethereum/assets/0xC0f2aD96e2E946b507f903bb5ef69a08B1bDc766/info.json b/blockchains/ethereum/assets/0xC0f2aD96e2E946b507f903bb5ef69a08B1bDc766/info.json new file mode 100644 index 00000000..50887ada --- /dev/null +++ b/blockchains/ethereum/assets/0xC0f2aD96e2E946b507f903bb5ef69a08B1bDc766/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long LINK-DAI 3x v2", + "symbol": "dLLINK3x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC0f2aD96e2E946b507f903bb5ef69a08B1bDc766", + "status": "abandoned", + "id": "0xC0f2aD96e2E946b507f903bb5ef69a08B1bDc766" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC0f2aD96e2E946b507f903bb5ef69a08B1bDc766/logo.png b/blockchains/ethereum/assets/0xC0f2aD96e2E946b507f903bb5ef69a08B1bDc766/logo.png new file mode 100644 index 00000000..3b565338 Binary files /dev/null and b/blockchains/ethereum/assets/0xC0f2aD96e2E946b507f903bb5ef69a08B1bDc766/logo.png differ diff --git a/blockchains/ethereum/assets/0xC12820Bc0B40fC085e8A6Dc94809f435d099dEa2/info.json b/blockchains/ethereum/assets/0xC12820Bc0B40fC085e8A6Dc94809f435d099dEa2/info.json new file mode 100644 index 00000000..e032e2a4 --- /dev/null +++ b/blockchains/ethereum/assets/0xC12820Bc0B40fC085e8A6Dc94809f435d099dEa2/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg1300", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC12820Bc0B40fC085e8A6Dc94809f435d099dEa2", + "status": "abandoned", + "id": "0xC12820Bc0B40fC085e8A6Dc94809f435d099dEa2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC12820Bc0B40fC085e8A6Dc94809f435d099dEa2/logo.png b/blockchains/ethereum/assets/0xC12820Bc0B40fC085e8A6Dc94809f435d099dEa2/logo.png new file mode 100644 index 00000000..e50a5c55 Binary files /dev/null and b/blockchains/ethereum/assets/0xC12820Bc0B40fC085e8A6Dc94809f435d099dEa2/logo.png differ diff --git a/blockchains/ethereum/assets/0xC12BbdD66DDDb8212Ffa05C7cA952ac628660B6E/info.json b/blockchains/ethereum/assets/0xC12BbdD66DDDb8212Ffa05C7cA952ac628660B6E/info.json new file mode 100644 index 00000000..88545608 --- /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/0xC12D1c73eE7DC3615BA4e37E4ABFdbDDFA38907E/info.json b/blockchains/ethereum/assets/0xC12D1c73eE7DC3615BA4e37E4ABFdbDDFA38907E/info.json new file mode 100644 index 00000000..cb9ade79 --- /dev/null +++ b/blockchains/ethereum/assets/0xC12D1c73eE7DC3615BA4e37E4ABFdbDDFA38907E/info.json @@ -0,0 +1,11 @@ +{ + "name": "KickToken", + "symbol": "KICK", + "type": "ERC20", + "decimals": 8, + "description": "Kick Ecosystem describes itself as a set of FinTech tools that form a “one-stop-shop” for every user from all over the world. These tools aim to cover all financial needs. KickToken acts as a central currency, which resides on the Ethereum platform.", + "website": "https://www.kickico.com", + "explorer": "https://etherscan.io/token/0xC12D1c73eE7DC3615BA4e37E4ABFdbDDFA38907E", + "status": "abandoned", + "id": "0xC12D1c73eE7DC3615BA4e37E4ABFdbDDFA38907E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC12D1c73eE7DC3615BA4e37E4ABFdbDDFA38907E/logo.png b/blockchains/ethereum/assets/0xC12D1c73eE7DC3615BA4e37E4ABFdbDDFA38907E/logo.png new file mode 100644 index 00000000..0fa7a75d Binary files /dev/null and b/blockchains/ethereum/assets/0xC12D1c73eE7DC3615BA4e37E4ABFdbDDFA38907E/logo.png differ diff --git a/blockchains/ethereum/assets/0xC139190F447e929f090Edeb554D95AbB8b18aC1C/info.json b/blockchains/ethereum/assets/0xC139190F447e929f090Edeb554D95AbB8b18aC1C/info.json new file mode 100644 index 00000000..0a13c895 --- /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 00000000..3e747e34 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 new file mode 100644 index 00000000..54ea9744 --- /dev/null +++ b/blockchains/ethereum/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/info.json @@ -0,0 +1,44 @@ +{ + "name": "Multi-Chain Capital", + "type": "ERC20", + "symbol": "MCC", + "decimals": 9, + "website": "https://mchain.capital/", + "description": "You buy $MCC on Ethereum and Binance Smart Chain, we farm on multiple chains and return the profits to holders.", + "explorer": "https://etherscan.io/token/0xc146b7cdbaff065090077151d391f4c96aa09e0c", + "status": "active", + "id": "0xC146B7CdBaff065090077151d391f4c96Aa09e0C", + "links": [ + { + "name": "x", + "url": "https://x.com/MulChainCapital" + }, + { + "name": "github", + "url": "https://github.com/mchaindev" + }, + { + "name": "telegram", + "url": "https://t.me/MultiChainCapital" + }, + { + "name": "blog", + "url": "https://multichaincapital.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/multi-chain-capital" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-chain-capital-new" + }, + { + "name": "discord", + "url": "https://discord.com/invite/4GwbcQNa7P" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/logo.png b/blockchains/ethereum/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/logo.png new file mode 100644 index 00000000..f160ae9d Binary files /dev/null and b/blockchains/ethereum/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/logo.png differ diff --git a/blockchains/ethereum/assets/0xC16BC517Fe6b15903d6cBf02Ffc447291477a43A/info.json b/blockchains/ethereum/assets/0xC16BC517Fe6b15903d6cBf02Ffc447291477a43A/info.json new file mode 100644 index 00000000..c66b9e90 --- /dev/null +++ b/blockchains/ethereum/assets/0xC16BC517Fe6b15903d6cBf02Ffc447291477a43A/info.json @@ -0,0 +1,11 @@ +{ + "name": "HUMToken", + "symbol": "HUM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC16BC517Fe6b15903d6cBf02Ffc447291477a43A", + "status": "abandoned", + "id": "0xC16BC517Fe6b15903d6cBf02Ffc447291477a43A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC16BC517Fe6b15903d6cBf02Ffc447291477a43A/logo.png b/blockchains/ethereum/assets/0xC16BC517Fe6b15903d6cBf02Ffc447291477a43A/logo.png new file mode 100644 index 00000000..646ef65f Binary files /dev/null and b/blockchains/ethereum/assets/0xC16BC517Fe6b15903d6cBf02Ffc447291477a43A/logo.png differ diff --git a/blockchains/ethereum/assets/0xC16b542ff490e01fcc0DC58a60e1EFdc3e357cA6/info.json b/blockchains/ethereum/assets/0xC16b542ff490e01fcc0DC58a60e1EFdc3e357cA6/info.json new file mode 100644 index 00000000..1a125219 --- /dev/null +++ b/blockchains/ethereum/assets/0xC16b542ff490e01fcc0DC58a60e1EFdc3e357cA6/info.json @@ -0,0 +1,11 @@ +{ + "name": "ICE ROCK MINING", + "symbol": "ROCK2", + "type": "ERC20", + "decimals": 0, + "description": "Commercial Bitcoin Mining.", + "website": "https://icerockmining.io/", + "explorer": "https://etherscan.io/token/0xC16b542ff490e01fcc0DC58a60e1EFdc3e357cA6", + "status": "active", + "id": "0xC16b542ff490e01fcc0DC58a60e1EFdc3e357cA6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC16b542ff490e01fcc0DC58a60e1EFdc3e357cA6/logo.png b/blockchains/ethereum/assets/0xC16b542ff490e01fcc0DC58a60e1EFdc3e357cA6/logo.png new file mode 100644 index 00000000..f831f0b0 Binary files /dev/null and b/blockchains/ethereum/assets/0xC16b542ff490e01fcc0DC58a60e1EFdc3e357cA6/logo.png differ diff --git a/blockchains/ethereum/assets/0xC17195bde49D70CefCF8A9F2ee1759FFC27BF0B1/info.json b/blockchains/ethereum/assets/0xC17195bde49D70CefCF8A9F2ee1759FFC27BF0B1/info.json new file mode 100644 index 00000000..5f026abf --- /dev/null +++ b/blockchains/ethereum/assets/0xC17195bde49D70CefCF8A9F2ee1759FFC27BF0B1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Groocoin", + "symbol": "GROO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC17195bde49D70CefCF8A9F2ee1759FFC27BF0B1", + "status": "abandoned", + "id": "0xC17195bde49D70CefCF8A9F2ee1759FFC27BF0B1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC17195bde49D70CefCF8A9F2ee1759FFC27BF0B1/logo.png b/blockchains/ethereum/assets/0xC17195bde49D70CefCF8A9F2ee1759FFC27BF0B1/logo.png new file mode 100755 index 00000000..ecf6d7cc Binary files /dev/null and b/blockchains/ethereum/assets/0xC17195bde49D70CefCF8A9F2ee1759FFC27BF0B1/logo.png differ diff --git a/blockchains/ethereum/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json b/blockchains/ethereum/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json new file mode 100644 index 00000000..ab08a8cd --- /dev/null +++ b/blockchains/ethereum/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json @@ -0,0 +1,55 @@ +{ + "name": "EverRise", + "type": "ERC20", + "symbol": "RISE", + "decimals": 18, + "website": "https://www.everrise.com/", + "description": "The Original Buyback Token Powering The EverRise Ecosystem. EverRise token (RISE) is a multi-chain collateralized cryptocurrency that protects both the ecosystem and investors with its innovative buyback and staking protocol.", + "explorer": "https://etherscan.io/token/0xC17c30e98541188614dF99239cABD40280810cA3", + "status": "active", + "id": "0xC17c30e98541188614dF99239cABD40280810cA3", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/everrise/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/everrise" + }, + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png b/blockchains/ethereum/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png new file mode 100644 index 00000000..fb9f7a63 Binary files /dev/null and b/blockchains/ethereum/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png differ diff --git a/blockchains/ethereum/assets/0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72/info.json b/blockchains/ethereum/assets/0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72/info.json new file mode 100644 index 00000000..924b5157 --- /dev/null +++ b/blockchains/ethereum/assets/0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ethereum Name Service", + "type": "ERC20", + "symbol": "ENS", + "decimals": 18, + "website": "https://ens.domains", + "description": "Decentralised naming for wallets, websites, & more.", + "explorer": "https://etherscan.io/token/0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72", + "status": "active", + "id": "0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72", + "links": [ + { + "name": "x", + "url": "https://x.com/ensdomains" + }, + { + "name": "github", + "url": "https://github.com/ensdomains" + }, + { + "name": "medium", + "url": "https://medium.com/the-ethereum-name-service" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ens" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72/logo.png b/blockchains/ethereum/assets/0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72/logo.png new file mode 100644 index 00000000..8507ae1a Binary files /dev/null and b/blockchains/ethereum/assets/0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72/logo.png differ diff --git a/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/info.json b/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/info.json new file mode 100644 index 00000000..6ba8284c --- /dev/null +++ b/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/info.json @@ -0,0 +1,33 @@ +{ + "name": "The Real Estate & Energy Investment Capital", + "type": "ERC20", + "symbol": "QLINDO", + "decimals": 0, + "website": "https://qlindo.io/", + "description": "The future of investing. Qlindo bridges the gap between blockchain and green real estate investment opportunities, paving the way to a sustainable future.", + "explorer": "https://etherscan.io/token/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E", + "status": "active", + "id": "0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E", + "links": [ + { + "name": "x", + "url": "https://x.com/Qlindoio" + }, + { + "name": "telegram", + "url": "https://t.me/qlindoio" + }, + { + "name": "whitepaper", + "url": "https://qlindoblob.blob.core.windows.net/files/whitepaper.pdf" + }, + { + "name": "github", + "url": "https://github.com/qlindo" + } + ], + "tags": [ + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png b/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png new file mode 100644 index 00000000..b4ea83b0 Binary files /dev/null and b/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png differ diff --git a/blockchains/ethereum/assets/0xC18e7a03f8986798323658dD8645f93aa79Ac5C9/info.json b/blockchains/ethereum/assets/0xC18e7a03f8986798323658dD8645f93aa79Ac5C9/info.json new file mode 100644 index 00000000..ba77a6cb --- /dev/null +++ b/blockchains/ethereum/assets/0xC18e7a03f8986798323658dD8645f93aa79Ac5C9/info.json @@ -0,0 +1,11 @@ +{ + "name": "American Akita", + "type": "ERC20", + "symbol": "USKITA", + "decimals": 9, + "website": "https://uskita.com", + "description": "American Akita ($USKITA) is here to bring back the American Dream. We are a decentralized community-driven cryptocurrency with built-in automated rewards for its holders. Keep on holding USKITA in your wallet, and watch the amount increase over time. Our goal is to support Veterans, Dog shelters and so much more!", + "explorer": "https://etherscan.io/token/0xc18e7a03f8986798323658dd8645f93aa79ac5c9", + "status": "active", + "id": "0xC18e7a03f8986798323658dD8645f93aa79Ac5C9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC18e7a03f8986798323658dD8645f93aa79Ac5C9/logo.png b/blockchains/ethereum/assets/0xC18e7a03f8986798323658dD8645f93aa79Ac5C9/logo.png new file mode 100644 index 00000000..f6868595 Binary files /dev/null and b/blockchains/ethereum/assets/0xC18e7a03f8986798323658dD8645f93aa79Ac5C9/logo.png differ diff --git a/blockchains/ethereum/assets/0xC1b875D16dEabE4bB292036d12337bDf2FeA13fa/info.json b/blockchains/ethereum/assets/0xC1b875D16dEabE4bB292036d12337bDf2FeA13fa/info.json new file mode 100644 index 00000000..85da4e58 --- /dev/null +++ b/blockchains/ethereum/assets/0xC1b875D16dEabE4bB292036d12337bDf2FeA13fa/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-21/30M21", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC1b875D16dEabE4bB292036d12337bDf2FeA13fa", + "status": "abandoned", + "id": "0xC1b875D16dEabE4bB292036d12337bDf2FeA13fa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC1b875D16dEabE4bB292036d12337bDf2FeA13fa/logo.png b/blockchains/ethereum/assets/0xC1b875D16dEabE4bB292036d12337bDf2FeA13fa/logo.png new file mode 100644 index 00000000..380f5595 Binary files /dev/null and b/blockchains/ethereum/assets/0xC1b875D16dEabE4bB292036d12337bDf2FeA13fa/logo.png differ diff --git a/blockchains/ethereum/assets/0xC1fB6C015fC535aBD331D3029De76a62e412Fb23/info.json b/blockchains/ethereum/assets/0xC1fB6C015fC535aBD331D3029De76a62e412Fb23/info.json new file mode 100644 index 00000000..f6f9a02b --- /dev/null +++ b/blockchains/ethereum/assets/0xC1fB6C015fC535aBD331D3029De76a62e412Fb23/info.json @@ -0,0 +1,11 @@ +{ + "name": "Forcer", + "symbol": "FORCER", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://app.tryroll.com/rewards/FORCER", + "explorer": "https://etherscan.io/token/0xC1fB6C015fC535aBD331D3029De76a62e412Fb23", + "status": "abandoned", + "id": "0xC1fB6C015fC535aBD331D3029De76a62e412Fb23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC1fB6C015fC535aBD331D3029De76a62e412Fb23/logo.png b/blockchains/ethereum/assets/0xC1fB6C015fC535aBD331D3029De76a62e412Fb23/logo.png new file mode 100644 index 00000000..b7fee350 Binary files /dev/null and b/blockchains/ethereum/assets/0xC1fB6C015fC535aBD331D3029De76a62e412Fb23/logo.png differ diff --git a/blockchains/ethereum/assets/0xC210B2cB65ed3484892167F5e05F7ab496Ab0598/info.json b/blockchains/ethereum/assets/0xC210B2cB65ed3484892167F5e05F7ab496Ab0598/info.json new file mode 100644 index 00000000..a3e197f9 --- /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 00000000..c7691a25 Binary files /dev/null and b/blockchains/ethereum/assets/0xC210B2cB65ed3484892167F5e05F7ab496Ab0598/logo.png differ diff --git a/blockchains/ethereum/assets/0xC237868a9c5729bdF3173dDDacaa336a0a5BB6e0/info.json b/blockchains/ethereum/assets/0xC237868a9c5729bdF3173dDDacaa336a0a5BB6e0/info.json new file mode 100644 index 00000000..3c161e2b --- /dev/null +++ b/blockchains/ethereum/assets/0xC237868a9c5729bdF3173dDDacaa336a0a5BB6e0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wagerr", + "symbol": "WWGR", + "type": "ERC20", + "decimals": 8, + "description": "Tokenized version of the Wagerr", + "website": "https://www.wagerr.com", + "explorer": "https://etherscan.io/token/0xC237868a9c5729bdF3173dDDacaa336a0a5BB6e0", + "status": "active", + "id": "0xC237868a9c5729bdF3173dDDacaa336a0a5BB6e0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC237868a9c5729bdF3173dDDacaa336a0a5BB6e0/logo.png b/blockchains/ethereum/assets/0xC237868a9c5729bdF3173dDDacaa336a0a5BB6e0/logo.png new file mode 100644 index 00000000..b475b1c6 Binary files /dev/null and b/blockchains/ethereum/assets/0xC237868a9c5729bdF3173dDDacaa336a0a5BB6e0/logo.png differ diff --git a/blockchains/ethereum/assets/0xC2494604e9DcEfa2A70dCEbf81e6D7BE064a334e/info.json b/blockchains/ethereum/assets/0xC2494604e9DcEfa2A70dCEbf81e6D7BE064a334e/info.json new file mode 100644 index 00000000..b5b0761f --- /dev/null +++ b/blockchains/ethereum/assets/0xC2494604e9DcEfa2A70dCEbf81e6D7BE064a334e/info.json @@ -0,0 +1,11 @@ +{ + "name": "OpenWeb Token", + "symbol": "OWT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC2494604e9DcEfa2A70dCEbf81e6D7BE064a334e", + "status": "abandoned", + "id": "0xC2494604e9DcEfa2A70dCEbf81e6D7BE064a334e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC2494604e9DcEfa2A70dCEbf81e6D7BE064a334e/logo.png b/blockchains/ethereum/assets/0xC2494604e9DcEfa2A70dCEbf81e6D7BE064a334e/logo.png new file mode 100644 index 00000000..c36ee3d6 Binary files /dev/null and b/blockchains/ethereum/assets/0xC2494604e9DcEfa2A70dCEbf81e6D7BE064a334e/logo.png differ diff --git a/blockchains/ethereum/assets/0xC2498AFcbB23D81A57F2437B1D296E002a0a6Aae/info.json b/blockchains/ethereum/assets/0xC2498AFcbB23D81A57F2437B1D296E002a0a6Aae/info.json new file mode 100644 index 00000000..35caac32 --- /dev/null +++ b/blockchains/ethereum/assets/0xC2498AFcbB23D81A57F2437B1D296E002a0a6Aae/info.json @@ -0,0 +1,11 @@ +{ + "name": "Geo Gems", + "symbol": "GG", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC2498AFcbB23D81A57F2437B1D296E002a0a6Aae", + "status": "abandoned", + "id": "0xC2498AFcbB23D81A57F2437B1D296E002a0a6Aae" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC2498AFcbB23D81A57F2437B1D296E002a0a6Aae/logo.png b/blockchains/ethereum/assets/0xC2498AFcbB23D81A57F2437B1D296E002a0a6Aae/logo.png new file mode 100644 index 00000000..cbe9487d Binary files /dev/null and b/blockchains/ethereum/assets/0xC2498AFcbB23D81A57F2437B1D296E002a0a6Aae/logo.png differ diff --git a/blockchains/ethereum/assets/0xC254664c7408Dde413969fBcD593328F6099E32f/info.json b/blockchains/ethereum/assets/0xC254664c7408Dde413969fBcD593328F6099E32f/info.json new file mode 100644 index 00000000..997d307c --- /dev/null +++ b/blockchains/ethereum/assets/0xC254664c7408Dde413969fBcD593328F6099E32f/info.json @@ -0,0 +1,11 @@ +{ + "name": "YGG", + "symbol": "YGG", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC254664c7408Dde413969fBcD593328F6099E32f", + "status": "abandoned", + "id": "0xC254664c7408Dde413969fBcD593328F6099E32f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC254664c7408Dde413969fBcD593328F6099E32f/logo.png b/blockchains/ethereum/assets/0xC254664c7408Dde413969fBcD593328F6099E32f/logo.png new file mode 100644 index 00000000..14a327f1 Binary files /dev/null and b/blockchains/ethereum/assets/0xC254664c7408Dde413969fBcD593328F6099E32f/logo.png differ diff --git a/blockchains/ethereum/assets/0xC2579552eCb8e7c001564cE0e8E0DB77a0587E0e/info.json b/blockchains/ethereum/assets/0xC2579552eCb8e7c001564cE0e8E0DB77a0587E0e/info.json new file mode 100644 index 00000000..3184b96f --- /dev/null +++ b/blockchains/ethereum/assets/0xC2579552eCb8e7c001564cE0e8E0DB77a0587E0e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sushen's Attention Token", + "symbol": "SUSH", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC2579552eCb8e7c001564cE0e8E0DB77a0587E0e", + "status": "abandoned", + "id": "0xC2579552eCb8e7c001564cE0e8E0DB77a0587E0e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC2579552eCb8e7c001564cE0e8E0DB77a0587E0e/logo.png b/blockchains/ethereum/assets/0xC2579552eCb8e7c001564cE0e8E0DB77a0587E0e/logo.png new file mode 100644 index 00000000..db33372c Binary files /dev/null and b/blockchains/ethereum/assets/0xC2579552eCb8e7c001564cE0e8E0DB77a0587E0e/logo.png differ diff --git a/blockchains/ethereum/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/info.json b/blockchains/ethereum/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/info.json new file mode 100644 index 00000000..9ac3f498 --- /dev/null +++ b/blockchains/ethereum/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xion Global Token", + "website": "https://xion.finance", + "description": "Xion is bringing cross chain decentralised payments, loyalty and financial rewards to a global commerce industry. Think 'Stripe' for web 3.", + "explorer": "https://etherscan.io/token/0xc25af3123d2420054c8fcd144c21113aa2853f39", + "type": "ERC20", + "symbol": "XGT", + "decimals": 18, + "status": "active", + "id": "0xC25AF3123d2420054c8fcd144c21113aa2853F39" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/logo.png b/blockchains/ethereum/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/logo.png new file mode 100644 index 00000000..59a5a187 Binary files /dev/null and b/blockchains/ethereum/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/logo.png differ diff --git a/blockchains/ethereum/assets/0xC26b56F339bf8274B85f4D524906d40f50163532/info.json b/blockchains/ethereum/assets/0xC26b56F339bf8274B85f4D524906d40f50163532/info.json new file mode 100644 index 00000000..7ed44d26 --- /dev/null +++ b/blockchains/ethereum/assets/0xC26b56F339bf8274B85f4D524906d40f50163532/info.json @@ -0,0 +1,11 @@ +{ + "name": "ASHTONIUM", + "symbol": "AOC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.ashtonium.info", + "explorer": "https://etherscan.io/token/0xC26b56F339bf8274B85f4D524906d40f50163532", + "status": "abandoned", + "id": "0xC26b56F339bf8274B85f4D524906d40f50163532" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC26b56F339bf8274B85f4D524906d40f50163532/logo.png b/blockchains/ethereum/assets/0xC26b56F339bf8274B85f4D524906d40f50163532/logo.png new file mode 100644 index 00000000..6d727d7e Binary files /dev/null and b/blockchains/ethereum/assets/0xC26b56F339bf8274B85f4D524906d40f50163532/logo.png differ diff --git a/blockchains/ethereum/assets/0xC275865a6Cce78398e94CB2Af29fa0d787b7F7Eb/info.json b/blockchains/ethereum/assets/0xC275865a6Cce78398e94CB2Af29fa0d787b7F7Eb/info.json new file mode 100644 index 00000000..ea4467ce --- /dev/null +++ b/blockchains/ethereum/assets/0xC275865a6Cce78398e94CB2Af29fa0d787b7F7Eb/info.json @@ -0,0 +1,11 @@ +{ + "name": "RiseCoin Token", + "symbol": "RSCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://rise-coin.com/", + "explorer": "https://etherscan.io/token/0xC275865a6Cce78398e94CB2Af29fa0d787b7F7Eb", + "status": "abandoned", + "id": "0xC275865a6Cce78398e94CB2Af29fa0d787b7F7Eb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC275865a6Cce78398e94CB2Af29fa0d787b7F7Eb/logo.png b/blockchains/ethereum/assets/0xC275865a6Cce78398e94CB2Af29fa0d787b7F7Eb/logo.png new file mode 100644 index 00000000..bf0d8f52 Binary files /dev/null and b/blockchains/ethereum/assets/0xC275865a6Cce78398e94CB2Af29fa0d787b7F7Eb/logo.png differ diff --git a/blockchains/ethereum/assets/0xC27C95350eCD634C80dF89db0f10cd5c24B7B11f/info.json b/blockchains/ethereum/assets/0xC27C95350eCD634C80dF89db0f10cd5c24B7B11f/info.json new file mode 100644 index 00000000..65860dc3 --- /dev/null +++ b/blockchains/ethereum/assets/0xC27C95350eCD634C80dF89db0f10cd5c24B7B11f/info.json @@ -0,0 +1,11 @@ +{ + "name": "PixieCoin", + "symbol": "PXC", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "http://pixiecoin.io/", + "explorer": "https://etherscan.io/token/0xC27C95350eCD634C80dF89db0f10cd5c24B7B11f", + "status": "abandoned", + "id": "0xC27C95350eCD634C80dF89db0f10cd5c24B7B11f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC27C95350eCD634C80dF89db0f10cd5c24B7B11f/logo.png b/blockchains/ethereum/assets/0xC27C95350eCD634C80dF89db0f10cd5c24B7B11f/logo.png new file mode 100755 index 00000000..4c553262 Binary files /dev/null and b/blockchains/ethereum/assets/0xC27C95350eCD634C80dF89db0f10cd5c24B7B11f/logo.png differ diff --git a/blockchains/ethereum/assets/0xC28e931814725BbEB9e670676FaBBCb694Fe7DF2/info.json b/blockchains/ethereum/assets/0xC28e931814725BbEB9e670676FaBBCb694Fe7DF2/info.json new file mode 100644 index 00000000..5953f7a9 --- /dev/null +++ b/blockchains/ethereum/assets/0xC28e931814725BbEB9e670676FaBBCb694Fe7DF2/info.json @@ -0,0 +1,11 @@ +{ + "name": "QuadrantProtocol", + "symbol": "eQUAD", + "type": "ERC20", + "decimals": 18, + "description": "Quadrant Protocol is the engine that powers Quadrant's data mapping capabilities.", + "website": "https://www.quadrantprotocol.com/#", + "explorer": "https://etherscan.io/token/0xC28e931814725BbEB9e670676FaBBCb694Fe7DF2", + "status": "active", + "id": "0xC28e931814725BbEB9e670676FaBBCb694Fe7DF2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC28e931814725BbEB9e670676FaBBCb694Fe7DF2/logo.png b/blockchains/ethereum/assets/0xC28e931814725BbEB9e670676FaBBCb694Fe7DF2/logo.png new file mode 100644 index 00000000..4a1d5f0f Binary files /dev/null and b/blockchains/ethereum/assets/0xC28e931814725BbEB9e670676FaBBCb694Fe7DF2/logo.png differ diff --git a/blockchains/ethereum/assets/0xC28f1149bDc3DB79607Bd758867f6A1823674095/info.json b/blockchains/ethereum/assets/0xC28f1149bDc3DB79607Bd758867f6A1823674095/info.json new file mode 100644 index 00000000..fa4ec02d --- /dev/null +++ b/blockchains/ethereum/assets/0xC28f1149bDc3DB79607Bd758867f6A1823674095/info.json @@ -0,0 +1,11 @@ +{ + "name": "GreatMiner", + "symbol": "GM", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC28f1149bDc3DB79607Bd758867f6A1823674095", + "status": "abandoned", + "id": "0xC28f1149bDc3DB79607Bd758867f6A1823674095" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC28f1149bDc3DB79607Bd758867f6A1823674095/logo.png b/blockchains/ethereum/assets/0xC28f1149bDc3DB79607Bd758867f6A1823674095/logo.png new file mode 100644 index 00000000..8ce0316f Binary files /dev/null and b/blockchains/ethereum/assets/0xC28f1149bDc3DB79607Bd758867f6A1823674095/logo.png differ diff --git a/blockchains/ethereum/assets/0xC2Ba253771006c7fe2952e67f1780703c4707bEa/info.json b/blockchains/ethereum/assets/0xC2Ba253771006c7fe2952e67f1780703c4707bEa/info.json new file mode 100644 index 00000000..9daf7038 --- /dev/null +++ b/blockchains/ethereum/assets/0xC2Ba253771006c7fe2952e67f1780703c4707bEa/info.json @@ -0,0 +1,11 @@ +{ + "name": "GBHUB", + "symbol": "GBH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC2Ba253771006c7fe2952e67f1780703c4707bEa", + "status": "abandoned", + "id": "0xC2Ba253771006c7fe2952e67f1780703c4707bEa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC2Ba253771006c7fe2952e67f1780703c4707bEa/logo.png b/blockchains/ethereum/assets/0xC2Ba253771006c7fe2952e67f1780703c4707bEa/logo.png new file mode 100644 index 00000000..48c0d96c Binary files /dev/null and b/blockchains/ethereum/assets/0xC2Ba253771006c7fe2952e67f1780703c4707bEa/logo.png differ diff --git a/blockchains/ethereum/assets/0xC2C63F23ec5E97efbD7565dF9Ec764FDc7d4e91d/info.json b/blockchains/ethereum/assets/0xC2C63F23ec5E97efbD7565dF9Ec764FDc7d4e91d/info.json new file mode 100644 index 00000000..b9b82e9d --- /dev/null +++ b/blockchains/ethereum/assets/0xC2C63F23ec5E97efbD7565dF9Ec764FDc7d4e91d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Boule Token", + "symbol": "BOU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC2C63F23ec5E97efbD7565dF9Ec764FDc7d4e91d", + "status": "abandoned", + "id": "0xC2C63F23ec5E97efbD7565dF9Ec764FDc7d4e91d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC2C63F23ec5E97efbD7565dF9Ec764FDc7d4e91d/logo.png b/blockchains/ethereum/assets/0xC2C63F23ec5E97efbD7565dF9Ec764FDc7d4e91d/logo.png new file mode 100644 index 00000000..7a87be8a Binary files /dev/null and b/blockchains/ethereum/assets/0xC2C63F23ec5E97efbD7565dF9Ec764FDc7d4e91d/logo.png differ diff --git a/blockchains/ethereum/assets/0xC2e3ED7F61D338755BF7b6fB4bAA0ffFadA4AC28/info.json b/blockchains/ethereum/assets/0xC2e3ED7F61D338755BF7b6fB4bAA0ffFadA4AC28/info.json new file mode 100644 index 00000000..8996973d --- /dev/null +++ b/blockchains/ethereum/assets/0xC2e3ED7F61D338755BF7b6fB4bAA0ffFadA4AC28/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dmaarc", + "symbol": "DRC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC2e3ED7F61D338755BF7b6fB4bAA0ffFadA4AC28", + "status": "abandoned", + "id": "0xC2e3ED7F61D338755BF7b6fB4bAA0ffFadA4AC28" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC2e3ED7F61D338755BF7b6fB4bAA0ffFadA4AC28/logo.png b/blockchains/ethereum/assets/0xC2e3ED7F61D338755BF7b6fB4bAA0ffFadA4AC28/logo.png new file mode 100644 index 00000000..2f3020cb Binary files /dev/null and b/blockchains/ethereum/assets/0xC2e3ED7F61D338755BF7b6fB4bAA0ffFadA4AC28/logo.png differ diff --git a/blockchains/ethereum/assets/0xC2fbab8de59F2671d55137DfD837f68e9a040867/info.json b/blockchains/ethereum/assets/0xC2fbab8de59F2671d55137DfD837f68e9a040867/info.json new file mode 100644 index 00000000..0a873f94 --- /dev/null +++ b/blockchains/ethereum/assets/0xC2fbab8de59F2671d55137DfD837f68e9a040867/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETHEREUM METAMASK", + "symbol": "ETHK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC2fbab8de59F2671d55137DfD837f68e9a040867", + "status": "abandoned", + "id": "0xC2fbab8de59F2671d55137DfD837f68e9a040867" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC2fbab8de59F2671d55137DfD837f68e9a040867/logo.png b/blockchains/ethereum/assets/0xC2fbab8de59F2671d55137DfD837f68e9a040867/logo.png new file mode 100644 index 00000000..3c0d6424 Binary files /dev/null and b/blockchains/ethereum/assets/0xC2fbab8de59F2671d55137DfD837f68e9a040867/logo.png differ diff --git a/blockchains/ethereum/assets/0xC3098b97bA3Dd1594B8fc8EAE3CD53fB1ECD36Af/info.json b/blockchains/ethereum/assets/0xC3098b97bA3Dd1594B8fc8EAE3CD53fB1ECD36Af/info.json new file mode 100644 index 00000000..a45d9e25 --- /dev/null +++ b/blockchains/ethereum/assets/0xC3098b97bA3Dd1594B8fc8EAE3CD53fB1ECD36Af/info.json @@ -0,0 +1,11 @@ +{ + "name": "DitCoin Token", + "symbol": "DITC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC3098b97bA3Dd1594B8fc8EAE3CD53fB1ECD36Af", + "status": "abandoned", + "id": "0xC3098b97bA3Dd1594B8fc8EAE3CD53fB1ECD36Af" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC3098b97bA3Dd1594B8fc8EAE3CD53fB1ECD36Af/logo.png b/blockchains/ethereum/assets/0xC3098b97bA3Dd1594B8fc8EAE3CD53fB1ECD36Af/logo.png new file mode 100644 index 00000000..203fe444 Binary files /dev/null and b/blockchains/ethereum/assets/0xC3098b97bA3Dd1594B8fc8EAE3CD53fB1ECD36Af/logo.png differ diff --git a/blockchains/ethereum/assets/0xC30A5e36072612a5884AA6BDc2289fC5e8901638/info.json b/blockchains/ethereum/assets/0xC30A5e36072612a5884AA6BDc2289fC5e8901638/info.json new file mode 100644 index 00000000..b33e956c --- /dev/null +++ b/blockchains/ethereum/assets/0xC30A5e36072612a5884AA6BDc2289fC5e8901638/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEX Community", + "symbol": "DXC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC30A5e36072612a5884AA6BDc2289fC5e8901638", + "status": "abandoned", + "id": "0xC30A5e36072612a5884AA6BDc2289fC5e8901638" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC30A5e36072612a5884AA6BDc2289fC5e8901638/logo.png b/blockchains/ethereum/assets/0xC30A5e36072612a5884AA6BDc2289fC5e8901638/logo.png new file mode 100644 index 00000000..85fde021 Binary files /dev/null and b/blockchains/ethereum/assets/0xC30A5e36072612a5884AA6BDc2289fC5e8901638/logo.png differ diff --git a/blockchains/ethereum/assets/0xC343f099d3E41aA5C1b59470450e21E92E2d840b/info.json b/blockchains/ethereum/assets/0xC343f099d3E41aA5C1b59470450e21E92E2d840b/info.json new file mode 100644 index 00000000..206e7be2 --- /dev/null +++ b/blockchains/ethereum/assets/0xC343f099d3E41aA5C1b59470450e21E92E2d840b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Verime Mobile", + "symbol": "VME", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.verime.mobi", + "explorer": "https://etherscan.io/token/0xC343f099d3E41aA5C1b59470450e21E92E2d840b", + "status": "abandoned", + "id": "0xC343f099d3E41aA5C1b59470450e21E92E2d840b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC343f099d3E41aA5C1b59470450e21E92E2d840b/logo.png b/blockchains/ethereum/assets/0xC343f099d3E41aA5C1b59470450e21E92E2d840b/logo.png new file mode 100755 index 00000000..22b32f6c Binary files /dev/null and b/blockchains/ethereum/assets/0xC343f099d3E41aA5C1b59470450e21E92E2d840b/logo.png differ diff --git a/blockchains/ethereum/assets/0xC34B21f6F8e51cC965c2393B3ccFa3b82BEb2403/info.json b/blockchains/ethereum/assets/0xC34B21f6F8e51cC965c2393B3ccFa3b82BEb2403/info.json new file mode 100644 index 00000000..417d4c1f --- /dev/null +++ b/blockchains/ethereum/assets/0xC34B21f6F8e51cC965c2393B3ccFa3b82BEb2403/info.json @@ -0,0 +1,11 @@ +{ + "name": "IoTコイン", + "symbol": "IoT", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC34B21f6F8e51cC965c2393B3ccFa3b82BEb2403", + "status": "abandoned", + "id": "0xC34B21f6F8e51cC965c2393B3ccFa3b82BEb2403" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC34B21f6F8e51cC965c2393B3ccFa3b82BEb2403/logo.png b/blockchains/ethereum/assets/0xC34B21f6F8e51cC965c2393B3ccFa3b82BEb2403/logo.png new file mode 100644 index 00000000..4aba76f3 Binary files /dev/null and b/blockchains/ethereum/assets/0xC34B21f6F8e51cC965c2393B3ccFa3b82BEb2403/logo.png differ diff --git a/blockchains/ethereum/assets/0xC385d5359dE8E779b902904cDdc87074127650bf/info.json b/blockchains/ethereum/assets/0xC385d5359dE8E779b902904cDdc87074127650bf/info.json new file mode 100644 index 00000000..4fbb4ac5 --- /dev/null +++ b/blockchains/ethereum/assets/0xC385d5359dE8E779b902904cDdc87074127650bf/info.json @@ -0,0 +1,11 @@ +{ + "name": "ORBIT MAX", + "symbol": "ORMX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC385d5359dE8E779b902904cDdc87074127650bf", + "status": "abandoned", + "id": "0xC385d5359dE8E779b902904cDdc87074127650bf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC385d5359dE8E779b902904cDdc87074127650bf/logo.png b/blockchains/ethereum/assets/0xC385d5359dE8E779b902904cDdc87074127650bf/logo.png new file mode 100644 index 00000000..f71b6915 Binary files /dev/null and b/blockchains/ethereum/assets/0xC385d5359dE8E779b902904cDdc87074127650bf/logo.png differ diff --git a/blockchains/ethereum/assets/0xC38f1fb49acDf2f1213CAf3319F6Eb3ea2cB7527/info.json b/blockchains/ethereum/assets/0xC38f1fb49acDf2f1213CAf3319F6Eb3ea2cB7527/info.json new file mode 100644 index 00000000..743de515 --- /dev/null +++ b/blockchains/ethereum/assets/0xC38f1fb49acDf2f1213CAf3319F6Eb3ea2cB7527/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoinus Token", + "symbol": "BITS", + "type": "ERC20", + "decimals": 18, + "description": "Bitcoinus (BITS) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.bitcoinus.com", + "explorer": "https://etherscan.io/token/0xC38f1fb49acDf2f1213CAf3319F6Eb3ea2cB7527", + "status": "active", + "id": "0xC38f1fb49acDf2f1213CAf3319F6Eb3ea2cB7527" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC38f1fb49acDf2f1213CAf3319F6Eb3ea2cB7527/logo.png b/blockchains/ethereum/assets/0xC38f1fb49acDf2f1213CAf3319F6Eb3ea2cB7527/logo.png new file mode 100644 index 00000000..54d8abf8 Binary files /dev/null and b/blockchains/ethereum/assets/0xC38f1fb49acDf2f1213CAf3319F6Eb3ea2cB7527/logo.png differ diff --git a/blockchains/ethereum/assets/0xC3951d77737733174152532e8B0f27e2c4E9F0dC/info.json b/blockchains/ethereum/assets/0xC3951d77737733174152532e8B0f27e2c4E9F0dC/info.json new file mode 100644 index 00000000..a210b85e --- /dev/null +++ b/blockchains/ethereum/assets/0xC3951d77737733174152532e8B0f27e2c4E9F0dC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cloud", + "symbol": "CLD", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://cloudwith.me/", + "explorer": "https://etherscan.io/token/0xC3951d77737733174152532e8B0f27e2c4E9F0dC", + "status": "abandoned", + "id": "0xC3951d77737733174152532e8B0f27e2c4E9F0dC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC3951d77737733174152532e8B0f27e2c4E9F0dC/logo.png b/blockchains/ethereum/assets/0xC3951d77737733174152532e8B0f27e2c4E9F0dC/logo.png new file mode 100644 index 00000000..51cc3121 Binary files /dev/null and b/blockchains/ethereum/assets/0xC3951d77737733174152532e8B0f27e2c4E9F0dC/logo.png differ diff --git a/blockchains/ethereum/assets/0xC39E626A04C5971D770e319760D7926502975e47/info.json b/blockchains/ethereum/assets/0xC39E626A04C5971D770e319760D7926502975e47/info.json new file mode 100644 index 00000000..f0f18ff3 --- /dev/null +++ b/blockchains/ethereum/assets/0xC39E626A04C5971D770e319760D7926502975e47/info.json @@ -0,0 +1,11 @@ +{ + "name": "aXpire", + "symbol": "AXPR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://axpire.io/", + "explorer": "https://etherscan.io/token/0xC39E626A04C5971D770e319760D7926502975e47", + "status": "abandoned", + "id": "0xC39E626A04C5971D770e319760D7926502975e47" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC39E626A04C5971D770e319760D7926502975e47/logo.png b/blockchains/ethereum/assets/0xC39E626A04C5971D770e319760D7926502975e47/logo.png new file mode 100755 index 00000000..7600fcfb Binary files /dev/null and b/blockchains/ethereum/assets/0xC39E626A04C5971D770e319760D7926502975e47/logo.png differ diff --git a/blockchains/ethereum/assets/0xC3dDb6Dab725afc0c35CCaDecF1FbdDfc1888888/info.json b/blockchains/ethereum/assets/0xC3dDb6Dab725afc0c35CCaDecF1FbdDfc1888888/info.json new file mode 100644 index 00000000..9e530346 --- /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 new file mode 100644 index 00000000..7f317949 --- /dev/null +++ b/blockchains/ethereum/assets/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E/info.json @@ -0,0 +1,44 @@ +{ + "name": "Hokkaidu Inu", + "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": "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 00000000..c19ac5ed 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 00000000..a449e2c9 --- /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 00000000..7a6b0612 Binary files /dev/null and b/blockchains/ethereum/assets/0xC4441c2BE5d8fA8126822B9929CA0b81Ea0DE38E/logo.png differ diff --git a/blockchains/ethereum/assets/0xC45DbdF28844fdB1482C502897d433aC08d6cCd0/info.json b/blockchains/ethereum/assets/0xC45DbdF28844fdB1482C502897d433aC08d6cCd0/info.json new file mode 100644 index 00000000..f1e83b08 --- /dev/null +++ b/blockchains/ethereum/assets/0xC45DbdF28844fdB1482C502897d433aC08d6cCd0/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitNautic Token", + "symbol": "BTNT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC45DbdF28844fdB1482C502897d433aC08d6cCd0", + "status": "abandoned", + "id": "0xC45DbdF28844fdB1482C502897d433aC08d6cCd0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC45DbdF28844fdB1482C502897d433aC08d6cCd0/logo.png b/blockchains/ethereum/assets/0xC45DbdF28844fdB1482C502897d433aC08d6cCd0/logo.png new file mode 100644 index 00000000..cfac74f0 Binary files /dev/null and b/blockchains/ethereum/assets/0xC45DbdF28844fdB1482C502897d433aC08d6cCd0/logo.png differ diff --git a/blockchains/ethereum/assets/0xC46e7eF70d7Cf8C17863a6B0b9be2aF6a4C41aBe/info.json b/blockchains/ethereum/assets/0xC46e7eF70d7Cf8C17863a6B0b9be2aF6a4C41aBe/info.json new file mode 100644 index 00000000..97b1c0bd --- /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 00000000..2cb39057 Binary files /dev/null and b/blockchains/ethereum/assets/0xC46e7eF70d7Cf8C17863a6B0b9be2aF6a4C41aBe/logo.png differ diff --git a/blockchains/ethereum/assets/0xC477D038d5420C6A9e0b031712f61c5120090de9/info.json b/blockchains/ethereum/assets/0xC477D038d5420C6A9e0b031712f61c5120090de9/info.json new file mode 100644 index 00000000..b2a7772c --- /dev/null +++ b/blockchains/ethereum/assets/0xC477D038d5420C6A9e0b031712f61c5120090de9/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOSON Token", + "website": "https://bosonprotocol.io/", + "description": "The $BOSON token is the core economic unit of the Boson ecosystem.", + "explorer": "https://etherscan.io/token/0xc477d038d5420c6a9e0b031712f61c5120090de9", + "type": "ERC20", + "symbol": "BOSON", + "decimals": 18, + "status": "active", + "id": "0xC477D038d5420C6A9e0b031712f61c5120090de9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC477D038d5420C6A9e0b031712f61c5120090de9/logo.png b/blockchains/ethereum/assets/0xC477D038d5420C6A9e0b031712f61c5120090de9/logo.png new file mode 100644 index 00000000..6528ba19 Binary files /dev/null and b/blockchains/ethereum/assets/0xC477D038d5420C6A9e0b031712f61c5120090de9/logo.png differ diff --git a/blockchains/ethereum/assets/0xC499Fe55DD7b636af056c2FC5f709c36D8DE74a2/info.json b/blockchains/ethereum/assets/0xC499Fe55DD7b636af056c2FC5f709c36D8DE74a2/info.json new file mode 100644 index 00000000..8b0759f4 --- /dev/null +++ b/blockchains/ethereum/assets/0xC499Fe55DD7b636af056c2FC5f709c36D8DE74a2/info.json @@ -0,0 +1,11 @@ +{ + "name": "GiftToken", + "symbol": "GIFT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC499Fe55DD7b636af056c2FC5f709c36D8DE74a2", + "status": "abandoned", + "id": "0xC499Fe55DD7b636af056c2FC5f709c36D8DE74a2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC499Fe55DD7b636af056c2FC5f709c36D8DE74a2/logo.png b/blockchains/ethereum/assets/0xC499Fe55DD7b636af056c2FC5f709c36D8DE74a2/logo.png new file mode 100644 index 00000000..79315ab7 Binary files /dev/null and b/blockchains/ethereum/assets/0xC499Fe55DD7b636af056c2FC5f709c36D8DE74a2/logo.png differ diff --git a/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/info.json b/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/info.json new file mode 100644 index 00000000..8207416c --- /dev/null +++ b/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/info.json @@ -0,0 +1,44 @@ +{ + "name": "Chain Games", + "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": "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 new file mode 100644 index 00000000..2d4eebd8 Binary files /dev/null and b/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/logo.png differ diff --git a/blockchains/ethereum/assets/0xC4bC757008f91fdA5876398147C73831cf9b285E/info.json b/blockchains/ethereum/assets/0xC4bC757008f91fdA5876398147C73831cf9b285E/info.json new file mode 100644 index 00000000..cbe27cad --- /dev/null +++ b/blockchains/ethereum/assets/0xC4bC757008f91fdA5876398147C73831cf9b285E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bobux", + "symbol": "BOBUX", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC4bC757008f91fdA5876398147C73831cf9b285E", + "status": "abandoned", + "id": "0xC4bC757008f91fdA5876398147C73831cf9b285E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC4bC757008f91fdA5876398147C73831cf9b285E/logo.png b/blockchains/ethereum/assets/0xC4bC757008f91fdA5876398147C73831cf9b285E/logo.png new file mode 100644 index 00000000..a3f3efcc Binary files /dev/null and b/blockchains/ethereum/assets/0xC4bC757008f91fdA5876398147C73831cf9b285E/logo.png differ diff --git a/blockchains/ethereum/assets/0xC4cB5793BD58BaD06bF51FB37717b86B02CBe8A4/info.json b/blockchains/ethereum/assets/0xC4cB5793BD58BaD06bF51FB37717b86B02CBe8A4/info.json new file mode 100644 index 00000000..89c51b26 --- /dev/null +++ b/blockchains/ethereum/assets/0xC4cB5793BD58BaD06bF51FB37717b86B02CBe8A4/info.json @@ -0,0 +1,11 @@ +{ + "name": "CREDIT", + "symbol": "CREDIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://proxidefi.com", + "explorer": "https://etherscan.io/token/0xC4cB5793BD58BaD06bF51FB37717b86B02CBe8A4", + "status": "abandoned", + "id": "0xC4cB5793BD58BaD06bF51FB37717b86B02CBe8A4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC4cB5793BD58BaD06bF51FB37717b86B02CBe8A4/logo.png b/blockchains/ethereum/assets/0xC4cB5793BD58BaD06bF51FB37717b86B02CBe8A4/logo.png new file mode 100644 index 00000000..487d659a Binary files /dev/null and b/blockchains/ethereum/assets/0xC4cB5793BD58BaD06bF51FB37717b86B02CBe8A4/logo.png differ diff --git a/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/info.json b/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/info.json new file mode 100644 index 00000000..16524fae --- /dev/null +++ b/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/info.json @@ -0,0 +1,32 @@ +{ + "name": "hi Dollar", + "type": "ERC20", + "symbol": "HI", + "decimals": 18, + "website": "https://www.hi.com/", + "description": "HI is the membership token of exchange and mobile banking platform hi. Stakeholders of HI are the key stakeholders of the hi ecosystem, allowing for true community governance of one of the largest blockchain ecosystems in the world.", + "explorer": "https://etherscan.io/token/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC", + "status": "active", + "id": "0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC", + "links": [ + { + "name": "x", + "url": "https://x.com/hi_com_official" + }, + { + "name": "github", + "url": "https://github.com/HiChainGlobal/hiTokenERC20" + }, + { + "name": "telegram", + "url": "https://t.me/hi_official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hi-dollar/" + } + ], + "tags": [ + "defletionary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/logo.png b/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/logo.png new file mode 100644 index 00000000..96cf2327 Binary files /dev/null and b/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/logo.png differ diff --git a/blockchains/ethereum/assets/0xC5005344d52758EE2264be257A198B50f884711b/info.json b/blockchains/ethereum/assets/0xC5005344d52758EE2264be257A198B50f884711b/info.json new file mode 100644 index 00000000..d1080c2f --- /dev/null +++ b/blockchains/ethereum/assets/0xC5005344d52758EE2264be257A198B50f884711b/info.json @@ -0,0 +1,11 @@ +{ + "name": "illume", + "symbol": "ILT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC5005344d52758EE2264be257A198B50f884711b", + "status": "abandoned", + "id": "0xC5005344d52758EE2264be257A198B50f884711b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC5005344d52758EE2264be257A198B50f884711b/logo.png b/blockchains/ethereum/assets/0xC5005344d52758EE2264be257A198B50f884711b/logo.png new file mode 100755 index 00000000..64cb451e Binary files /dev/null and b/blockchains/ethereum/assets/0xC5005344d52758EE2264be257A198B50f884711b/logo.png differ diff --git a/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/info.json b/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/info.json new file mode 100644 index 00000000..2971dad5 --- /dev/null +++ b/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/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://etherscan.io/token/0xC52C326331E9Ce41F04484d3B5E5648158028804", + "research": "https://docs.unizen.io", + "symbol": "ZCX", + "type": "ERC20", + "decimals": 18, + "status": "active", + "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 new file mode 100755 index 00000000..4077cfed Binary files /dev/null and b/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png differ diff --git a/blockchains/ethereum/assets/0xC538143202f3b11382D8606aae90a96b042a19DB/info.json b/blockchains/ethereum/assets/0xC538143202f3b11382D8606aae90a96b042a19DB/info.json new file mode 100644 index 00000000..b29c78e3 --- /dev/null +++ b/blockchains/ethereum/assets/0xC538143202f3b11382D8606aae90a96b042a19DB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coinsbit Token", + "symbol": "CNB", + "type": "ERC20", + "decimals": 18, + "description": "CNB Coin is a service token of the Coinsbit exchange. The token was designed with the goal of optimizing the user experience and providing access to enhanced features on the exchange.", + "website": "https://coinsbit.io/", + "explorer": "https://etherscan.io/token/0xC538143202f3b11382D8606aae90a96b042a19DB", + "status": "active", + "id": "0xC538143202f3b11382D8606aae90a96b042a19DB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC538143202f3b11382D8606aae90a96b042a19DB/logo.png b/blockchains/ethereum/assets/0xC538143202f3b11382D8606aae90a96b042a19DB/logo.png new file mode 100644 index 00000000..30b3b293 Binary files /dev/null and b/blockchains/ethereum/assets/0xC538143202f3b11382D8606aae90a96b042a19DB/logo.png differ diff --git a/blockchains/ethereum/assets/0xC53D2e7321aB83B28aF2360559Aa303676a23f98/info.json b/blockchains/ethereum/assets/0xC53D2e7321aB83B28aF2360559Aa303676a23f98/info.json new file mode 100644 index 00000000..dd17878d --- /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 00000000..34299b5b Binary files /dev/null and b/blockchains/ethereum/assets/0xC53D2e7321aB83B28aF2360559Aa303676a23f98/logo.png differ diff --git a/blockchains/ethereum/assets/0xC53a9c309Ee2F3E333BD6ecA806A31d0e2Dca5C5/info.json b/blockchains/ethereum/assets/0xC53a9c309Ee2F3E333BD6ecA806A31d0e2Dca5C5/info.json new file mode 100644 index 00000000..7f862bc6 --- /dev/null +++ b/blockchains/ethereum/assets/0xC53a9c309Ee2F3E333BD6ecA806A31d0e2Dca5C5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Play", + "symbol": "PLAY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC53a9c309Ee2F3E333BD6ecA806A31d0e2Dca5C5", + "status": "abandoned", + "id": "0xC53a9c309Ee2F3E333BD6ecA806A31d0e2Dca5C5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC53a9c309Ee2F3E333BD6ecA806A31d0e2Dca5C5/logo.png b/blockchains/ethereum/assets/0xC53a9c309Ee2F3E333BD6ecA806A31d0e2Dca5C5/logo.png new file mode 100644 index 00000000..ff1fa713 Binary files /dev/null and b/blockchains/ethereum/assets/0xC53a9c309Ee2F3E333BD6ecA806A31d0e2Dca5C5/logo.png differ diff --git a/blockchains/ethereum/assets/0xC560984D8c4CED2a0ebA5790b33b6f43AFeEf759/info.json b/blockchains/ethereum/assets/0xC560984D8c4CED2a0ebA5790b33b6f43AFeEf759/info.json new file mode 100644 index 00000000..abd95bba --- /dev/null +++ b/blockchains/ethereum/assets/0xC560984D8c4CED2a0ebA5790b33b6f43AFeEf759/info.json @@ -0,0 +1,11 @@ +{ + "name": "SpritzCoin", + "symbol": "SPRTZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.spritzcoin.com/", + "explorer": "https://etherscan.io/token/0xC560984D8c4CED2a0ebA5790b33b6f43AFeEf759", + "status": "abandoned", + "id": "0xC560984D8c4CED2a0ebA5790b33b6f43AFeEf759" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC560984D8c4CED2a0ebA5790b33b6f43AFeEf759/logo.png b/blockchains/ethereum/assets/0xC560984D8c4CED2a0ebA5790b33b6f43AFeEf759/logo.png new file mode 100644 index 00000000..e451b7d2 Binary files /dev/null and b/blockchains/ethereum/assets/0xC560984D8c4CED2a0ebA5790b33b6f43AFeEf759/logo.png differ diff --git a/blockchains/ethereum/assets/0xC57d533c50bC22247d49a368880fb49a1caA39F7/info.json b/blockchains/ethereum/assets/0xC57d533c50bC22247d49a368880fb49a1caA39F7/info.json new file mode 100644 index 00000000..78027c6a --- /dev/null +++ b/blockchains/ethereum/assets/0xC57d533c50bC22247d49a368880fb49a1caA39F7/info.json @@ -0,0 +1,21 @@ +{ + "name": "PowerTrade Fuel", + "website": "https://power.trade/", + "description": "The PowerTrade Fuel Token (PTF) is a DAO token which governs the treasury that covers PowerTrade traders in the event of a black swan.", + "explorer": "https://etherscan.io/token/0xC57d533c50bC22247d49a368880fb49a1caA39F7", + "type": "ERC20", + "symbol": "PTF", + "decimals": 18, + "status": "active", + "id": "0xC57d533c50bC22247d49a368880fb49a1caA39F7", + "links": [ + { + "name": "github", + "url": "https://github.com/Power-Trade/fuel-dao/" + }, + { + "name": "whitepaper", + "url": "https://power.trade/fuel-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC57d533c50bC22247d49a368880fb49a1caA39F7/logo.png b/blockchains/ethereum/assets/0xC57d533c50bC22247d49a368880fb49a1caA39F7/logo.png new file mode 100644 index 00000000..586eabdb Binary files /dev/null and b/blockchains/ethereum/assets/0xC57d533c50bC22247d49a368880fb49a1caA39F7/logo.png differ diff --git a/blockchains/ethereum/assets/0xC5FaADd1206Ca91d9F8Dd015B3498afFad9A58Bc/info.json b/blockchains/ethereum/assets/0xC5FaADd1206Ca91d9F8Dd015B3498afFad9A58Bc/info.json new file mode 100644 index 00000000..43190f22 --- /dev/null +++ b/blockchains/ethereum/assets/0xC5FaADd1206Ca91d9F8Dd015B3498afFad9A58Bc/info.json @@ -0,0 +1,11 @@ +{ + "name": "EnjoyGameToken", + "symbol": "EGT", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC5FaADd1206Ca91d9F8Dd015B3498afFad9A58Bc", + "status": "abandoned", + "id": "0xC5FaADd1206Ca91d9F8Dd015B3498afFad9A58Bc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC5FaADd1206Ca91d9F8Dd015B3498afFad9A58Bc/logo.png b/blockchains/ethereum/assets/0xC5FaADd1206Ca91d9F8Dd015B3498afFad9A58Bc/logo.png new file mode 100644 index 00000000..650357a1 Binary files /dev/null and b/blockchains/ethereum/assets/0xC5FaADd1206Ca91d9F8Dd015B3498afFad9A58Bc/logo.png differ diff --git a/blockchains/ethereum/assets/0xC5bBaE50781Be1669306b9e001EFF57a2957b09d/info.json b/blockchains/ethereum/assets/0xC5bBaE50781Be1669306b9e001EFF57a2957b09d/info.json new file mode 100644 index 00000000..52b4d416 --- /dev/null +++ b/blockchains/ethereum/assets/0xC5bBaE50781Be1669306b9e001EFF57a2957b09d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gifto", + "symbol": "GTO", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "https://gifto.io/", + "explorer": "https://etherscan.io/token/0xC5bBaE50781Be1669306b9e001EFF57a2957b09d", + "status": "abandoned", + "id": "0xC5bBaE50781Be1669306b9e001EFF57a2957b09d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC5bBaE50781Be1669306b9e001EFF57a2957b09d/logo.png b/blockchains/ethereum/assets/0xC5bBaE50781Be1669306b9e001EFF57a2957b09d/logo.png new file mode 100644 index 00000000..5f2411c1 Binary files /dev/null and b/blockchains/ethereum/assets/0xC5bBaE50781Be1669306b9e001EFF57a2957b09d/logo.png differ diff --git a/blockchains/ethereum/assets/0xC5d105E63711398aF9bbff092d4B6769C82F793D/info.json b/blockchains/ethereum/assets/0xC5d105E63711398aF9bbff092d4B6769C82F793D/info.json new file mode 100644 index 00000000..dc4f67fe --- /dev/null +++ b/blockchains/ethereum/assets/0xC5d105E63711398aF9bbff092d4B6769C82F793D/info.json @@ -0,0 +1,11 @@ +{ + "name": "BeautyChain", + "symbol": "BEC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.beauty.io/", + "explorer": "https://etherscan.io/token/0xC5d105E63711398aF9bbff092d4B6769C82F793D", + "status": "abandoned", + "id": "0xC5d105E63711398aF9bbff092d4B6769C82F793D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC5d105E63711398aF9bbff092d4B6769C82F793D/logo.png b/blockchains/ethereum/assets/0xC5d105E63711398aF9bbff092d4B6769C82F793D/logo.png new file mode 100644 index 00000000..4149491d Binary files /dev/null and b/blockchains/ethereum/assets/0xC5d105E63711398aF9bbff092d4B6769C82F793D/logo.png differ diff --git a/blockchains/ethereum/assets/0xC5e51F32d0C8BbeF06882045db98FF8bC7fAfC49/info.json b/blockchains/ethereum/assets/0xC5e51F32d0C8BbeF06882045db98FF8bC7fAfC49/info.json new file mode 100644 index 00000000..c9081b5d --- /dev/null +++ b/blockchains/ethereum/assets/0xC5e51F32d0C8BbeF06882045db98FF8bC7fAfC49/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rollerdance", + "symbol": "RDANCE", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC5e51F32d0C8BbeF06882045db98FF8bC7fAfC49", + "status": "abandoned", + "id": "0xC5e51F32d0C8BbeF06882045db98FF8bC7fAfC49" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC5e51F32d0C8BbeF06882045db98FF8bC7fAfC49/logo.png b/blockchains/ethereum/assets/0xC5e51F32d0C8BbeF06882045db98FF8bC7fAfC49/logo.png new file mode 100644 index 00000000..88ac8a61 Binary files /dev/null and b/blockchains/ethereum/assets/0xC5e51F32d0C8BbeF06882045db98FF8bC7fAfC49/logo.png differ diff --git a/blockchains/ethereum/assets/0xC5f308b12aA1Cd781B310Dc3985eB7AD76d67E31/info.json b/blockchains/ethereum/assets/0xC5f308b12aA1Cd781B310Dc3985eB7AD76d67E31/info.json new file mode 100644 index 00000000..5741fa3e --- /dev/null +++ b/blockchains/ethereum/assets/0xC5f308b12aA1Cd781B310Dc3985eB7AD76d67E31/info.json @@ -0,0 +1,11 @@ +{ + "name": "IRM", + "symbol": "IRM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC5f308b12aA1Cd781B310Dc3985eB7AD76d67E31", + "status": "abandoned", + "id": "0xC5f308b12aA1Cd781B310Dc3985eB7AD76d67E31" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC5f308b12aA1Cd781B310Dc3985eB7AD76d67E31/logo.png b/blockchains/ethereum/assets/0xC5f308b12aA1Cd781B310Dc3985eB7AD76d67E31/logo.png new file mode 100644 index 00000000..46b6b26f Binary files /dev/null and b/blockchains/ethereum/assets/0xC5f308b12aA1Cd781B310Dc3985eB7AD76d67E31/logo.png differ diff --git a/blockchains/ethereum/assets/0xC6263b73b18Bc3855099808D313680e5dD8e24Ce/info.json b/blockchains/ethereum/assets/0xC6263b73b18Bc3855099808D313680e5dD8e24Ce/info.json new file mode 100644 index 00000000..9e94d6d8 --- /dev/null +++ b/blockchains/ethereum/assets/0xC6263b73b18Bc3855099808D313680e5dD8e24Ce/info.json @@ -0,0 +1,11 @@ +{ + "name": "Naira", + "symbol": "NGN", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC6263b73b18Bc3855099808D313680e5dD8e24Ce", + "status": "abandoned", + "id": "0xC6263b73b18Bc3855099808D313680e5dD8e24Ce" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC6263b73b18Bc3855099808D313680e5dD8e24Ce/logo.png b/blockchains/ethereum/assets/0xC6263b73b18Bc3855099808D313680e5dD8e24Ce/logo.png new file mode 100755 index 00000000..be1104f1 Binary files /dev/null and b/blockchains/ethereum/assets/0xC6263b73b18Bc3855099808D313680e5dD8e24Ce/logo.png differ diff --git a/blockchains/ethereum/assets/0xC626e0619aC79AFEa9281c8eB9b1a9f9D3Fab532/info.json b/blockchains/ethereum/assets/0xC626e0619aC79AFEa9281c8eB9b1a9f9D3Fab532/info.json new file mode 100644 index 00000000..ff71fbb7 --- /dev/null +++ b/blockchains/ethereum/assets/0xC626e0619aC79AFEa9281c8eB9b1a9f9D3Fab532/info.json @@ -0,0 +1,31 @@ +{ + "name": "Freedom Reserve", + "type": "ERC20", + "symbol": "FR", + "decimals": 18, + "website": "https://freedomreserv.eth.link/", + "short_description": "Project to build a zero inflation cryptocurrency for the British Isles.", + "description": "Freedom Reeserve is a Project to build a Store of Value and unit of exchange suitable for the people of the British Isles", + "explorer": "https://etherscan.io/token/0xc626e0619ac79afea9281c8eb9b1a9f9d3fab532", + "research": "https://research.binance.com/", + "status": "active", + "id": "0xC626e0619aC79AFEa9281c8eB9b1a9f9D3Fab532", + "links": [ + { + "name": "github", + "url": "https://github.com/Freedom-Reserve" + }, + { + "name": "x", + "url": "https://x.com/@freedomreserve1" + }, + { + "name": "telegram", + "url": "https://t.me/freedomreserve1" + }, + { + "name": "whitepaper", + "url": "https://freedomreserv.eth.link/img/FreedomReserveWhitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC626e0619aC79AFEa9281c8eB9b1a9f9D3Fab532/logo.png b/blockchains/ethereum/assets/0xC626e0619aC79AFEa9281c8eB9b1a9f9D3Fab532/logo.png new file mode 100644 index 00000000..dd92529a Binary files /dev/null and b/blockchains/ethereum/assets/0xC626e0619aC79AFEa9281c8eB9b1a9f9D3Fab532/logo.png differ diff --git a/blockchains/ethereum/assets/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133/info.json b/blockchains/ethereum/assets/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133/info.json new file mode 100644 index 00000000..2bb419fe --- /dev/null +++ b/blockchains/ethereum/assets/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133/info.json @@ -0,0 +1,36 @@ +{ + "name": "Banana Task Force Ape", + "type": "ERC20", + "symbol": "BTFA", + "decimals": 9, + "website": "https://bananataskforceape.com", + "description": "BTFA is a collection of 10,000 Task Force Apes with over 150 unique traits. What makes BTFA special is that NFT holders have a shared stake in our company and revenue generated from Blip Studios! ", + "explorer": "https://etherscan.io/token/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133", + "status": "active", + "id": "0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133", + "links": [ + { + "name": "x", + "url": "https://x.com/BananaTFA" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/banana-task-force-ape/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/banana-task-force-ape" + }, + { + "name": "telegram", + "url": "https://t.me/BananaTFApe" + }, + { + "name": "discord", + "url": "https://discord.com/BananaTFA" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133/logo.png b/blockchains/ethereum/assets/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133/logo.png new file mode 100644 index 00000000..a5b9e960 Binary files /dev/null and b/blockchains/ethereum/assets/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133/logo.png differ diff --git a/blockchains/ethereum/assets/0xC64500DD7B0f1794807e67802F8Abbf5F8Ffb054/info.json b/blockchains/ethereum/assets/0xC64500DD7B0f1794807e67802F8Abbf5F8Ffb054/info.json new file mode 100644 index 00000000..37170368 --- /dev/null +++ b/blockchains/ethereum/assets/0xC64500DD7B0f1794807e67802F8Abbf5F8Ffb054/info.json @@ -0,0 +1,11 @@ +{ + "name": "Locus Chain", + "symbol": "LOCUS", + "type": "ERC20", + "decimals": 18, + "description": "Locus Chain believes that it has established the basis for anyone to freely participate in the network through nodes by implementing the technology called Verifiable Pruning, which allows for the validation of previous data with the least amount of hash values, and also dynamic sharding, which decreases the network load by dividing the network into shard units.", + "website": "https://www.locuschain.com/", + "explorer": "https://etherscan.io/token/0xC64500DD7B0f1794807e67802F8Abbf5F8Ffb054", + "status": "active", + "id": "0xC64500DD7B0f1794807e67802F8Abbf5F8Ffb054" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC64500DD7B0f1794807e67802F8Abbf5F8Ffb054/logo.png b/blockchains/ethereum/assets/0xC64500DD7B0f1794807e67802F8Abbf5F8Ffb054/logo.png new file mode 100644 index 00000000..2242e5f5 Binary files /dev/null and b/blockchains/ethereum/assets/0xC64500DD7B0f1794807e67802F8Abbf5F8Ffb054/logo.png differ diff --git a/blockchains/ethereum/assets/0xC650f5514AE1A3a27930922145ce49E8A91b91AB/info.json b/blockchains/ethereum/assets/0xC650f5514AE1A3a27930922145ce49E8A91b91AB/info.json new file mode 100644 index 00000000..e1c842ca --- /dev/null +++ b/blockchains/ethereum/assets/0xC650f5514AE1A3a27930922145ce49E8A91b91AB/info.json @@ -0,0 +1,11 @@ +{ + "name": "VENOTY", + "symbol": "VNTY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC650f5514AE1A3a27930922145ce49E8A91b91AB", + "status": "abandoned", + "id": "0xC650f5514AE1A3a27930922145ce49E8A91b91AB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC650f5514AE1A3a27930922145ce49E8A91b91AB/logo.png b/blockchains/ethereum/assets/0xC650f5514AE1A3a27930922145ce49E8A91b91AB/logo.png new file mode 100644 index 00000000..286d2ff8 Binary files /dev/null and b/blockchains/ethereum/assets/0xC650f5514AE1A3a27930922145ce49E8A91b91AB/logo.png differ diff --git a/blockchains/ethereum/assets/0xC669928185DbCE49d2230CC9B0979BE6DC797957/info.json b/blockchains/ethereum/assets/0xC669928185DbCE49d2230CC9B0979BE6DC797957/info.json new file mode 100644 index 00000000..7d3ac78b --- /dev/null +++ b/blockchains/ethereum/assets/0xC669928185DbCE49d2230CC9B0979BE6DC797957/info.json @@ -0,0 +1,38 @@ +{ + "name": "BitTorrent", + "symbol": "BTT", + "type": "ERC20", + "decimals": 18, + "description": "BTT is the official token of BitTorrent Chain. BitTorrent Chain is a brand-new heterogeneous cross-chain interoperability protocol, which leverages sidechains for the scaling of smart contracts.", + "website": "https://bt.io/", + "explorer": "https://etherscan.io/token/0xc669928185dbce49d2230cc9b0979be6dc797957", + "status": "active", + "id": "0xC669928185DbCE49d2230CC9B0979BE6DC797957", + "links": [ + { + "name": "x", + "url": "https://x.com/BitTorrent" + }, + { + "name": "github", + "url": "https://github.com/bttcprotocol/bttc" + }, + { + "name": "telegram", + "url": "https://t.me/BitTorrentChain" + }, + { + "name": "whitepaper", + "url": "https://tron.network/static/doc/BitTorrent-ChainWhitepaper_EN.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@BitTorrent" + } + ], + "tags": [ + "governance", + "staking", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC669928185DbCE49d2230CC9B0979BE6DC797957/logo.png b/blockchains/ethereum/assets/0xC669928185DbCE49d2230CC9B0979BE6DC797957/logo.png new file mode 100644 index 00000000..c761419f Binary files /dev/null and b/blockchains/ethereum/assets/0xC669928185DbCE49d2230CC9B0979BE6DC797957/logo.png differ diff --git a/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/info.json b/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/info.json new file mode 100644 index 00000000..49b38c5b --- /dev/null +++ b/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKR", + "type": "ERC20", + "symbol": "MKR", + "decimals": 18, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0xc66ea802717bfb9833400264dd12c2bceaa34a6d", + "status": "abandoned", + "id": "0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d" +} diff --git a/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/logo.png b/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/logo.png new file mode 100644 index 00000000..3c8e0d29 Binary files /dev/null and b/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/logo.png differ diff --git a/blockchains/ethereum/assets/0xC66eFb10689c4FF5012402ddA7c346A48a43817d/info.json b/blockchains/ethereum/assets/0xC66eFb10689c4FF5012402ddA7c346A48a43817d/info.json new file mode 100644 index 00000000..07f0bef8 --- /dev/null +++ b/blockchains/ethereum/assets/0xC66eFb10689c4FF5012402ddA7c346A48a43817d/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C573713", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC66eFb10689c4FF5012402ddA7c346A48a43817d", + "status": "abandoned", + "id": "0xC66eFb10689c4FF5012402ddA7c346A48a43817d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC66eFb10689c4FF5012402ddA7c346A48a43817d/logo.png b/blockchains/ethereum/assets/0xC66eFb10689c4FF5012402ddA7c346A48a43817d/logo.png new file mode 100644 index 00000000..fc8b02b8 Binary files /dev/null and b/blockchains/ethereum/assets/0xC66eFb10689c4FF5012402ddA7c346A48a43817d/logo.png differ diff --git a/blockchains/ethereum/assets/0xC68EaE3C22FE7A891ec487ECbDC42BB992B3FD87/info.json b/blockchains/ethereum/assets/0xC68EaE3C22FE7A891ec487ECbDC42BB992B3FD87/info.json new file mode 100644 index 00000000..9647f4e9 --- /dev/null +++ b/blockchains/ethereum/assets/0xC68EaE3C22FE7A891ec487ECbDC42BB992B3FD87/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tyche Chip", + "symbol": "TCH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC68EaE3C22FE7A891ec487ECbDC42BB992B3FD87", + "status": "abandoned", + "id": "0xC68EaE3C22FE7A891ec487ECbDC42BB992B3FD87" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC68EaE3C22FE7A891ec487ECbDC42BB992B3FD87/logo.png b/blockchains/ethereum/assets/0xC68EaE3C22FE7A891ec487ECbDC42BB992B3FD87/logo.png new file mode 100644 index 00000000..db60e41f Binary files /dev/null and b/blockchains/ethereum/assets/0xC68EaE3C22FE7A891ec487ECbDC42BB992B3FD87/logo.png differ diff --git a/blockchains/ethereum/assets/0xC69b72dd5ECa6e4d1FC2582279Fd5fC80aF71808/info.json b/blockchains/ethereum/assets/0xC69b72dd5ECa6e4d1FC2582279Fd5fC80aF71808/info.json new file mode 100644 index 00000000..e74d9287 --- /dev/null +++ b/blockchains/ethereum/assets/0xC69b72dd5ECa6e4d1FC2582279Fd5fC80aF71808/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C565951", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC69b72dd5ECa6e4d1FC2582279Fd5fC80aF71808", + "status": "spam", + "id": "0xC69b72dd5ECa6e4d1FC2582279Fd5fC80aF71808" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC69b72dd5ECa6e4d1FC2582279Fd5fC80aF71808/logo.png b/blockchains/ethereum/assets/0xC69b72dd5ECa6e4d1FC2582279Fd5fC80aF71808/logo.png new file mode 100644 index 00000000..0abf8152 Binary files /dev/null and b/blockchains/ethereum/assets/0xC69b72dd5ECa6e4d1FC2582279Fd5fC80aF71808/logo.png differ diff --git a/blockchains/ethereum/assets/0xC6D603A9Df53D1542552058c382bf115AACE70C7/info.json b/blockchains/ethereum/assets/0xC6D603A9Df53D1542552058c382bf115AACE70C7/info.json new file mode 100644 index 00000000..1b132973 --- /dev/null +++ b/blockchains/ethereum/assets/0xC6D603A9Df53D1542552058c382bf115AACE70C7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tourist Review", + "symbol": "TRET", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://touristreview.io/", + "explorer": "https://etherscan.io/token/0xC6D603A9Df53D1542552058c382bf115AACE70C7", + "status": "abandoned", + "id": "0xC6D603A9Df53D1542552058c382bf115AACE70C7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC6D603A9Df53D1542552058c382bf115AACE70C7/logo.png b/blockchains/ethereum/assets/0xC6D603A9Df53D1542552058c382bf115AACE70C7/logo.png new file mode 100644 index 00000000..dc66a73f Binary files /dev/null and b/blockchains/ethereum/assets/0xC6D603A9Df53D1542552058c382bf115AACE70C7/logo.png differ diff --git a/blockchains/ethereum/assets/0xC6D76756Fec88A289B20091846b81C23997BFD00/info.json b/blockchains/ethereum/assets/0xC6D76756Fec88A289B20091846b81C23997BFD00/info.json new file mode 100644 index 00000000..64fd8cbe --- /dev/null +++ b/blockchains/ethereum/assets/0xC6D76756Fec88A289B20091846b81C23997BFD00/info.json @@ -0,0 +1,11 @@ +{ + "name": "ethart", + "symbol": "arte", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC6D76756Fec88A289B20091846b81C23997BFD00", + "status": "abandoned", + "id": "0xC6D76756Fec88A289B20091846b81C23997BFD00" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC6D76756Fec88A289B20091846b81C23997BFD00/logo.png b/blockchains/ethereum/assets/0xC6D76756Fec88A289B20091846b81C23997BFD00/logo.png new file mode 100644 index 00000000..1b84cf57 Binary files /dev/null and b/blockchains/ethereum/assets/0xC6D76756Fec88A289B20091846b81C23997BFD00/logo.png differ diff --git a/blockchains/ethereum/assets/0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f/info.json b/blockchains/ethereum/assets/0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f/info.json new file mode 100644 index 00000000..48db0bc4 --- /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 00000000..b72c4e79 Binary files /dev/null and b/blockchains/ethereum/assets/0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f/logo.png differ diff --git a/blockchains/ethereum/assets/0xC6e64729931f60D2c8Bc70A27D66D9E0c28D1BF9/info.json b/blockchains/ethereum/assets/0xC6e64729931f60D2c8Bc70A27D66D9E0c28D1BF9/info.json new file mode 100644 index 00000000..47844116 --- /dev/null +++ b/blockchains/ethereum/assets/0xC6e64729931f60D2c8Bc70A27D66D9E0c28D1BF9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Flow Protocol", + "website": "https://flowprotocol.io", + "description": "The self-distributing store of value token.", + "explorer": "https://etherscan.io/token/0xC6e64729931f60D2c8Bc70A27D66D9E0c28D1BF9", + "type": "ERC20", + "symbol": "FLOW", + "decimals": 9, + "status": "active", + "id": "0xC6e64729931f60D2c8Bc70A27D66D9E0c28D1BF9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC6e64729931f60D2c8Bc70A27D66D9E0c28D1BF9/logo.png b/blockchains/ethereum/assets/0xC6e64729931f60D2c8Bc70A27D66D9E0c28D1BF9/logo.png new file mode 100644 index 00000000..4b8c3d4b Binary files /dev/null and b/blockchains/ethereum/assets/0xC6e64729931f60D2c8Bc70A27D66D9E0c28D1BF9/logo.png differ diff --git a/blockchains/ethereum/assets/0xC71B5F631354BE6853eFe9C3Ab6b9590F8302e81/info.json b/blockchains/ethereum/assets/0xC71B5F631354BE6853eFe9C3Ab6b9590F8302e81/info.json new file mode 100644 index 00000000..e8f7bb5f --- /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 00000000..74c45033 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 new file mode 100644 index 00000000..d9cdd827 --- /dev/null +++ b/blockchains/ethereum/assets/0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6/info.json @@ -0,0 +1,28 @@ +{ + "name": "Akash Network", + "type": "ERC20", + "symbol": "AKT", + "decimals": 6, + "website": "https://akash.network", + "description": "Akash Network is a Distributed Peer-to-Peer Marketplace for Cloud Compute", + "explorer": "https://etherscan.io/token/0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6", + "status": "active", + "id": "0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6", + "links": [ + { + "name": "x", + "url": "https://x.com/akashnet_" + }, + { + "name": "telegram", + "url": "https://t.me/AkashNW" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/akash-network/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6/logo.png b/blockchains/ethereum/assets/0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6/logo.png new file mode 100644 index 00000000..01df4e76 Binary files /dev/null and b/blockchains/ethereum/assets/0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6/logo.png differ diff --git a/blockchains/ethereum/assets/0xC72ED4445B3fe9f0863106E344E241530d338906/info.json b/blockchains/ethereum/assets/0xC72ED4445B3fe9f0863106E344E241530d338906/info.json new file mode 100644 index 00000000..e4fde551 --- /dev/null +++ b/blockchains/ethereum/assets/0xC72ED4445B3fe9f0863106E344E241530d338906/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mallcoin Token", + "symbol": "MLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://flogmall.com/", + "explorer": "https://etherscan.io/token/0xC72ED4445B3fe9f0863106E344E241530d338906", + "status": "abandoned", + "id": "0xC72ED4445B3fe9f0863106E344E241530d338906" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC72ED4445B3fe9f0863106E344E241530d338906/logo.png b/blockchains/ethereum/assets/0xC72ED4445B3fe9f0863106E344E241530d338906/logo.png new file mode 100644 index 00000000..8a4c0ef7 Binary files /dev/null and b/blockchains/ethereum/assets/0xC72ED4445B3fe9f0863106E344E241530d338906/logo.png differ diff --git a/blockchains/ethereum/assets/0xC741f06082AA47F93729070aD0dD95E223Bda091/info.json b/blockchains/ethereum/assets/0xC741f06082AA47F93729070aD0dD95E223Bda091/info.json new file mode 100644 index 00000000..9f3334fe --- /dev/null +++ b/blockchains/ethereum/assets/0xC741f06082AA47F93729070aD0dD95E223Bda091/info.json @@ -0,0 +1,11 @@ +{ + "name": "Education", + "symbol": "LEDU", + "type": "ERC20", + "decimals": 8, + "description": "Education Ecosystem describes itself as a project-based learning platform where developers can discover new technologies and try them out hands-on using free practical project examples.", + "website": "https://www.education-ecosystem.com", + "explorer": "https://etherscan.io/token/0xC741f06082AA47F93729070aD0dD95E223Bda091", + "status": "active", + "id": "0xC741f06082AA47F93729070aD0dD95E223Bda091" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC741f06082AA47F93729070aD0dD95E223Bda091/logo.png b/blockchains/ethereum/assets/0xC741f06082AA47F93729070aD0dD95E223Bda091/logo.png new file mode 100644 index 00000000..264914b2 Binary files /dev/null and b/blockchains/ethereum/assets/0xC741f06082AA47F93729070aD0dD95E223Bda091/logo.png differ diff --git a/blockchains/ethereum/assets/0xC76FB75950536d98FA62ea968E1D6B45ffea2A55/info.json b/blockchains/ethereum/assets/0xC76FB75950536d98FA62ea968E1D6B45ffea2A55/info.json new file mode 100644 index 00000000..e8c2d641 --- /dev/null +++ b/blockchains/ethereum/assets/0xC76FB75950536d98FA62ea968E1D6B45ffea2A55/info.json @@ -0,0 +1,33 @@ +{ + "name": "Unit protocol", + "website": "https://unit.xyz", + "description": "Unit protocol is a decentralized borrowing protocol that allows using a variety of tokens as collateral.", + "explorer": "https://etherscan.io/token/0xC76FB75950536d98FA62ea968E1D6B45ffea2A55", + "type": "ERC20", + "symbol": "COL", + "decimals": 18, + "status": "active", + "id": "0xC76FB75950536d98FA62ea968E1D6B45ffea2A55", + "links": [ + { + "name": "github", + "url": "https://github.com/unitprotocol" + }, + { + "name": "x", + "url": "https://x.com/unitprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/unit_ann" + }, + { + "name": "medium", + "url": "https://medium.com/@unitprotocol" + }, + { + "name": "whitepaper", + "url": "https://github.com/unitprotocol/protocol_docs/blob/master/unit_wp.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC76FB75950536d98FA62ea968E1D6B45ffea2A55/logo.png b/blockchains/ethereum/assets/0xC76FB75950536d98FA62ea968E1D6B45ffea2A55/logo.png new file mode 100644 index 00000000..d83a1325 Binary files /dev/null and b/blockchains/ethereum/assets/0xC76FB75950536d98FA62ea968E1D6B45ffea2A55/logo.png differ diff --git a/blockchains/ethereum/assets/0xC77b230F31b517F1ef362e59c173C2BE6540B5E8/info.json b/blockchains/ethereum/assets/0xC77b230F31b517F1ef362e59c173C2BE6540B5E8/info.json new file mode 100644 index 00000000..90a5b2d1 --- /dev/null +++ b/blockchains/ethereum/assets/0xC77b230F31b517F1ef362e59c173C2BE6540B5E8/info.json @@ -0,0 +1,11 @@ +{ + "name": "VidyCoin", + "symbol": "VIDY", + "type": "ERC20", + "decimals": 18, + "description": "Vidy is the world's first decentralized ad network, powered by the Ethereum blockchain. Vidy's ad platform allows advertisers to embed video ads directly into hyper-relevant website text, improving user experience, ad conversions and publisher payments.", + "website": "https://vidy.com/", + "explorer": "https://etherscan.io/token/0xC77b230F31b517F1ef362e59c173C2BE6540B5E8", + "status": "active", + "id": "0xC77b230F31b517F1ef362e59c173C2BE6540B5E8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC77b230F31b517F1ef362e59c173C2BE6540B5E8/logo.png b/blockchains/ethereum/assets/0xC77b230F31b517F1ef362e59c173C2BE6540B5E8/logo.png new file mode 100644 index 00000000..6718dd0c Binary files /dev/null and b/blockchains/ethereum/assets/0xC77b230F31b517F1ef362e59c173C2BE6540B5E8/logo.png differ diff --git a/blockchains/ethereum/assets/0xC78593C17482EA5de44Fdd84896fFd903972878E/info.json b/blockchains/ethereum/assets/0xC78593C17482EA5de44Fdd84896fFd903972878E/info.json new file mode 100644 index 00000000..b65dc082 --- /dev/null +++ b/blockchains/ethereum/assets/0xC78593C17482EA5de44Fdd84896fFd903972878E/info.json @@ -0,0 +1,11 @@ +{ + "name": "EtherBB", + "symbol": "BB", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC78593C17482EA5de44Fdd84896fFd903972878E", + "status": "abandoned", + "id": "0xC78593C17482EA5de44Fdd84896fFd903972878E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC78593C17482EA5de44Fdd84896fFd903972878E/logo.png b/blockchains/ethereum/assets/0xC78593C17482EA5de44Fdd84896fFd903972878E/logo.png new file mode 100644 index 00000000..a6610b54 Binary files /dev/null and b/blockchains/ethereum/assets/0xC78593C17482EA5de44Fdd84896fFd903972878E/logo.png differ diff --git a/blockchains/ethereum/assets/0xC79764398a159Ea8E61AF98d7dA6f2C8CaE4c3A9/info.json b/blockchains/ethereum/assets/0xC79764398a159Ea8E61AF98d7dA6f2C8CaE4c3A9/info.json new file mode 100644 index 00000000..ab4f9199 --- /dev/null +++ b/blockchains/ethereum/assets/0xC79764398a159Ea8E61AF98d7dA6f2C8CaE4c3A9/info.json @@ -0,0 +1,11 @@ +{ + "name": "IdleSAI", + "symbol": "IDLESAI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC79764398a159Ea8E61AF98d7dA6f2C8CaE4c3A9", + "status": "abandoned", + "id": "0xC79764398a159Ea8E61AF98d7dA6f2C8CaE4c3A9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC79764398a159Ea8E61AF98d7dA6f2C8CaE4c3A9/logo.png b/blockchains/ethereum/assets/0xC79764398a159Ea8E61AF98d7dA6f2C8CaE4c3A9/logo.png new file mode 100644 index 00000000..7d079a39 Binary files /dev/null and b/blockchains/ethereum/assets/0xC79764398a159Ea8E61AF98d7dA6f2C8CaE4c3A9/logo.png differ diff --git a/blockchains/ethereum/assets/0xC7Da481e6e14159D28e5e31A1Fb57ed649dB2e3a/info.json b/blockchains/ethereum/assets/0xC7Da481e6e14159D28e5e31A1Fb57ed649dB2e3a/info.json new file mode 100644 index 00000000..186aee04 --- /dev/null +++ b/blockchains/ethereum/assets/0xC7Da481e6e14159D28e5e31A1Fb57ed649dB2e3a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mondo", + "symbol": "MO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC7Da481e6e14159D28e5e31A1Fb57ed649dB2e3a", + "status": "abandoned", + "id": "0xC7Da481e6e14159D28e5e31A1Fb57ed649dB2e3a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC7Da481e6e14159D28e5e31A1Fb57ed649dB2e3a/logo.png b/blockchains/ethereum/assets/0xC7Da481e6e14159D28e5e31A1Fb57ed649dB2e3a/logo.png new file mode 100644 index 00000000..f121dc24 Binary files /dev/null and b/blockchains/ethereum/assets/0xC7Da481e6e14159D28e5e31A1Fb57ed649dB2e3a/logo.png differ diff --git a/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/info.json b/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/info.json new file mode 100644 index 00000000..f270ef2e --- /dev/null +++ b/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/info.json @@ -0,0 +1,25 @@ +{ + "name": "Bens Finale", + "type": "ERC20", + "symbol": "FINALE", + "decimals": 18, + "website": "https://finale.community", + "description": "Finale has been the plan the whole time and will continue to be the plan. Finale is something that if you were paying attention to, you would’ve been on top of.", + "explorer": "https://etherscan.io/token/0xc7a2572fa8fdb0f7e81d6d3c4e3ccf78fb0dc374", + "status": "active", + "id": "0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374", + "links": [ + { + "name": "x", + "url": "https://x.com/FinaleCommunity" + }, + { + "name": "telegram", + "url": "https://t.me/BensFinaleCommunity" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bens-finale/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/logo.png b/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/logo.png new file mode 100644 index 00000000..87567f60 Binary files /dev/null and b/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/logo.png differ diff --git a/blockchains/ethereum/assets/0xC7ac23AA559e975548ac959e4D1c926830093554/info.json b/blockchains/ethereum/assets/0xC7ac23AA559e975548ac959e4D1c926830093554/info.json new file mode 100644 index 00000000..37007f15 --- /dev/null +++ b/blockchains/ethereum/assets/0xC7ac23AA559e975548ac959e4D1c926830093554/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stella's LIMO", + "website": "http://limo.free.bg", + "description": "Stella's LIMO is an ethereum based Asset.", + "explorer": "https://etherscan.io/token/0xC7ac23AA559e975548ac959e4D1c926830093554", + "type": "ERC20", + "symbol": "LIMO", + "decimals": 1, + "status": "active", + "id": "0xC7ac23AA559e975548ac959e4D1c926830093554" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC7ac23AA559e975548ac959e4D1c926830093554/logo.png b/blockchains/ethereum/assets/0xC7ac23AA559e975548ac959e4D1c926830093554/logo.png new file mode 100644 index 00000000..42033804 Binary files /dev/null and b/blockchains/ethereum/assets/0xC7ac23AA559e975548ac959e4D1c926830093554/logo.png differ diff --git a/blockchains/ethereum/assets/0xC7cae65F4C0C98e643155d85616B95eE71F64Ca5/info.json b/blockchains/ethereum/assets/0xC7cae65F4C0C98e643155d85616B95eE71F64Ca5/info.json new file mode 100644 index 00000000..2d7c42e9 --- /dev/null +++ b/blockchains/ethereum/assets/0xC7cae65F4C0C98e643155d85616B95eE71F64Ca5/info.json @@ -0,0 +1,11 @@ +{ + "name": "MAiWORLD", + "symbol": "MAI", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC7cae65F4C0C98e643155d85616B95eE71F64Ca5", + "status": "abandoned", + "id": "0xC7cae65F4C0C98e643155d85616B95eE71F64Ca5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC7cae65F4C0C98e643155d85616B95eE71F64Ca5/logo.png b/blockchains/ethereum/assets/0xC7cae65F4C0C98e643155d85616B95eE71F64Ca5/logo.png new file mode 100644 index 00000000..7260d35e Binary files /dev/null and b/blockchains/ethereum/assets/0xC7cae65F4C0C98e643155d85616B95eE71F64Ca5/logo.png differ diff --git a/blockchains/ethereum/assets/0xC7e43A1c8E118aA2965F5EAbe0e718D83DB7A63C/info.json b/blockchains/ethereum/assets/0xC7e43A1c8E118aA2965F5EAbe0e718D83DB7A63C/info.json new file mode 100644 index 00000000..fd16599e --- /dev/null +++ b/blockchains/ethereum/assets/0xC7e43A1c8E118aA2965F5EAbe0e718D83DB7A63C/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZCore Token", + "website": "https://zcore.network", + "description": "The proposal of the ZCore Token (ZCRT) is to take advantage of the technological and usability advantages offered by the platform ZCore Network.", + "explorer": "https://etherscan.io/token/0xC7e43A1c8E118aA2965F5EAbe0e718D83DB7A63C", + "type": "ERC20", + "symbol": "ZCRT", + "decimals": 18, + "status": "active", + "id": "0xC7e43A1c8E118aA2965F5EAbe0e718D83DB7A63C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC7e43A1c8E118aA2965F5EAbe0e718D83DB7A63C/logo.png b/blockchains/ethereum/assets/0xC7e43A1c8E118aA2965F5EAbe0e718D83DB7A63C/logo.png new file mode 100644 index 00000000..c2320ad0 Binary files /dev/null and b/blockchains/ethereum/assets/0xC7e43A1c8E118aA2965F5EAbe0e718D83DB7A63C/logo.png differ diff --git a/blockchains/ethereum/assets/0xC8058D59e208399B76E66Da1EC669dD6B1BeE2ea/info.json b/blockchains/ethereum/assets/0xC8058D59e208399B76E66Da1EC669dD6B1BeE2ea/info.json new file mode 100644 index 00000000..fd4b4fbc --- /dev/null +++ b/blockchains/ethereum/assets/0xC8058D59e208399B76E66Da1EC669dD6B1BeE2ea/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gold Bits Coin", + "symbol": "GBC", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC8058D59e208399B76E66Da1EC669dD6B1BeE2ea", + "status": "abandoned", + "id": "0xC8058D59e208399B76E66Da1EC669dD6B1BeE2ea" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC8058D59e208399B76E66Da1EC669dD6B1BeE2ea/logo.png b/blockchains/ethereum/assets/0xC8058D59e208399B76E66Da1EC669dD6B1BeE2ea/logo.png new file mode 100755 index 00000000..2192b518 Binary files /dev/null and b/blockchains/ethereum/assets/0xC8058D59e208399B76E66Da1EC669dD6B1BeE2ea/logo.png differ diff --git a/blockchains/ethereum/assets/0xC80c5E40220172B36aDee2c951f26F2a577810C5/info.json b/blockchains/ethereum/assets/0xC80c5E40220172B36aDee2c951f26F2a577810C5/info.json new file mode 100644 index 00000000..76de1e15 --- /dev/null +++ b/blockchains/ethereum/assets/0xC80c5E40220172B36aDee2c951f26F2a577810C5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Banker Token", + "symbol": "BNK", + "type": "ERC20", + "decimals": 8, + "description": "Bankera is an operational fork of SpectroCoin. As SpectroCoin to be competitive has developed bank-like infrastructure, but was not intended to become a proper bank, it is releasing Bankera to leverage its regulatory and IT infrastructure to develop a bank for the blockchain era. Bankera as a proper bank will offer payments, investments, and loan and deposit solutions. Later on, it is planing to develop new types of money, such as inflation linked baskets.", + "website": "https://bankera.com/", + "explorer": "https://etherscan.io/token/0xC80c5E40220172B36aDee2c951f26F2a577810C5", + "status": "active", + "id": "0xC80c5E40220172B36aDee2c951f26F2a577810C5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC80c5E40220172B36aDee2c951f26F2a577810C5/logo.png b/blockchains/ethereum/assets/0xC80c5E40220172B36aDee2c951f26F2a577810C5/logo.png new file mode 100644 index 00000000..6b6b2610 Binary files /dev/null and b/blockchains/ethereum/assets/0xC80c5E40220172B36aDee2c951f26F2a577810C5/logo.png differ diff --git a/blockchains/ethereum/assets/0xC80daE9129389C4ef6E7DBfAeE40f28DE49dE3a6/info.json b/blockchains/ethereum/assets/0xC80daE9129389C4ef6E7DBfAeE40f28DE49dE3a6/info.json new file mode 100644 index 00000000..6c1b7b2f --- /dev/null +++ b/blockchains/ethereum/assets/0xC80daE9129389C4ef6E7DBfAeE40f28DE49dE3a6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Luna Stars", + "symbol": "LSTR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC80daE9129389C4ef6E7DBfAeE40f28DE49dE3a6", + "status": "abandoned", + "id": "0xC80daE9129389C4ef6E7DBfAeE40f28DE49dE3a6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC80daE9129389C4ef6E7DBfAeE40f28DE49dE3a6/logo.png b/blockchains/ethereum/assets/0xC80daE9129389C4ef6E7DBfAeE40f28DE49dE3a6/logo.png new file mode 100644 index 00000000..8f90c408 Binary files /dev/null and b/blockchains/ethereum/assets/0xC80daE9129389C4ef6E7DBfAeE40f28DE49dE3a6/logo.png differ diff --git a/blockchains/ethereum/assets/0xC82E3dB60A52CF7529253b4eC688f631aad9e7c2/info.json b/blockchains/ethereum/assets/0xC82E3dB60A52CF7529253b4eC688f631aad9e7c2/info.json new file mode 100644 index 00000000..20c95fce --- /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 00000000..2db3b043 Binary files /dev/null and b/blockchains/ethereum/assets/0xC82E3dB60A52CF7529253b4eC688f631aad9e7c2/logo.png differ diff --git a/blockchains/ethereum/assets/0xC83e0B5110f94C45739FB4995566f57c2542eAF8/info.json b/blockchains/ethereum/assets/0xC83e0B5110f94C45739FB4995566f57c2542eAF8/info.json new file mode 100644 index 00000000..0b98ec4e --- /dev/null +++ b/blockchains/ethereum/assets/0xC83e0B5110f94C45739FB4995566f57c2542eAF8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Black Dollar Coin", + "symbol": "BDC", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC83e0B5110f94C45739FB4995566f57c2542eAF8", + "status": "abandoned", + "id": "0xC83e0B5110f94C45739FB4995566f57c2542eAF8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC83e0B5110f94C45739FB4995566f57c2542eAF8/logo.png b/blockchains/ethereum/assets/0xC83e0B5110f94C45739FB4995566f57c2542eAF8/logo.png new file mode 100644 index 00000000..854e78b3 Binary files /dev/null and b/blockchains/ethereum/assets/0xC83e0B5110f94C45739FB4995566f57c2542eAF8/logo.png differ diff --git a/blockchains/ethereum/assets/0xC841210471aE257824b1Ddaf24D0eF64f2297485/info.json b/blockchains/ethereum/assets/0xC841210471aE257824b1Ddaf24D0eF64f2297485/info.json new file mode 100644 index 00000000..2bc0b6c0 --- /dev/null +++ b/blockchains/ethereum/assets/0xC841210471aE257824b1Ddaf24D0eF64f2297485/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wymax Lending Platform", + "symbol": "WLP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC841210471aE257824b1Ddaf24D0eF64f2297485", + "status": "abandoned", + "id": "0xC841210471aE257824b1Ddaf24D0eF64f2297485" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC841210471aE257824b1Ddaf24D0eF64f2297485/logo.png b/blockchains/ethereum/assets/0xC841210471aE257824b1Ddaf24D0eF64f2297485/logo.png new file mode 100644 index 00000000..57c0f993 Binary files /dev/null and b/blockchains/ethereum/assets/0xC841210471aE257824b1Ddaf24D0eF64f2297485/logo.png differ diff --git a/blockchains/ethereum/assets/0xC85BD82bAAb231b31BDfe6cF3d92020D1408863A/info.json b/blockchains/ethereum/assets/0xC85BD82bAAb231b31BDfe6cF3d92020D1408863A/info.json new file mode 100644 index 00000000..8a80e8b4 --- /dev/null +++ b/blockchains/ethereum/assets/0xC85BD82bAAb231b31BDfe6cF3d92020D1408863A/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlastScrypt", + "symbol": "BLAST", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC85BD82bAAb231b31BDfe6cF3d92020D1408863A", + "status": "abandoned", + "id": "0xC85BD82bAAb231b31BDfe6cF3d92020D1408863A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC85BD82bAAb231b31BDfe6cF3d92020D1408863A/logo.png b/blockchains/ethereum/assets/0xC85BD82bAAb231b31BDfe6cF3d92020D1408863A/logo.png new file mode 100644 index 00000000..c03e690a Binary files /dev/null and b/blockchains/ethereum/assets/0xC85BD82bAAb231b31BDfe6cF3d92020D1408863A/logo.png differ diff --git a/blockchains/ethereum/assets/0xC8671e3eAAd0793de26c4a7Ba5ca10a992a80c7A/info.json b/blockchains/ethereum/assets/0xC8671e3eAAd0793de26c4a7Ba5ca10a992a80c7A/info.json new file mode 100644 index 00000000..608e0605 --- /dev/null +++ b/blockchains/ethereum/assets/0xC8671e3eAAd0793de26c4a7Ba5ca10a992a80c7A/info.json @@ -0,0 +1,11 @@ +{ + "name": "kwhcredit", + "type": "ERC20", + "symbol": "Euro", + "decimals": 8, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0xc8671e3eaad0793de26c4a7ba5ca10a992a80c7a", + "status": "active", + "id": "0xC8671e3eAAd0793de26c4a7Ba5ca10a992a80c7A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC8671e3eAAd0793de26c4a7Ba5ca10a992a80c7A/logo.png b/blockchains/ethereum/assets/0xC8671e3eAAd0793de26c4a7Ba5ca10a992a80c7A/logo.png new file mode 100644 index 00000000..31897be4 Binary files /dev/null and b/blockchains/ethereum/assets/0xC8671e3eAAd0793de26c4a7Ba5ca10a992a80c7A/logo.png differ diff --git a/blockchains/ethereum/assets/0xC86D054809623432210c107af2e3F619DcFbf652/info.json b/blockchains/ethereum/assets/0xC86D054809623432210c107af2e3F619DcFbf652/info.json new file mode 100644 index 00000000..880d37fe --- /dev/null +++ b/blockchains/ethereum/assets/0xC86D054809623432210c107af2e3F619DcFbf652/info.json @@ -0,0 +1,11 @@ +{ + "name": "SENTINEL PROTOCOL", + "symbol": "UPP", + "type": "ERC20", + "decimals": 18, + "description": "Sentinel Protocol, operated and developed by Uppsala Security, is the world's first crowdsourced Threat Intelligence Platform powered by blockchain technology to protect the cyberspace.", + "website": "https://sentinelprotocol.io", + "explorer": "https://etherscan.io/token/0xC86D054809623432210c107af2e3F619DcFbf652", + "status": "active", + "id": "0xC86D054809623432210c107af2e3F619DcFbf652" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC86D054809623432210c107af2e3F619DcFbf652/logo.png b/blockchains/ethereum/assets/0xC86D054809623432210c107af2e3F619DcFbf652/logo.png new file mode 100755 index 00000000..b878ed8f Binary files /dev/null and b/blockchains/ethereum/assets/0xC86D054809623432210c107af2e3F619DcFbf652/logo.png differ diff --git a/blockchains/ethereum/assets/0xC87412535beC14FE79497914Dc5886fb0a163123/info.json b/blockchains/ethereum/assets/0xC87412535beC14FE79497914Dc5886fb0a163123/info.json new file mode 100644 index 00000000..3c7512d3 --- /dev/null +++ b/blockchains/ethereum/assets/0xC87412535beC14FE79497914Dc5886fb0a163123/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bright Dream X", + "symbol": "BDX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC87412535beC14FE79497914Dc5886fb0a163123", + "status": "abandoned", + "id": "0xC87412535beC14FE79497914Dc5886fb0a163123" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC87412535beC14FE79497914Dc5886fb0a163123/logo.png b/blockchains/ethereum/assets/0xC87412535beC14FE79497914Dc5886fb0a163123/logo.png new file mode 100644 index 00000000..b68a6351 Binary files /dev/null and b/blockchains/ethereum/assets/0xC87412535beC14FE79497914Dc5886fb0a163123/logo.png differ diff --git a/blockchains/ethereum/assets/0xC87F95aA269DD300D9F1cE49d8E1FD8119A10456/info.json b/blockchains/ethereum/assets/0xC87F95aA269DD300D9F1cE49d8E1FD8119A10456/info.json new file mode 100644 index 00000000..8b745d73 --- /dev/null +++ b/blockchains/ethereum/assets/0xC87F95aA269DD300D9F1cE49d8E1FD8119A10456/info.json @@ -0,0 +1,11 @@ +{ + "name": "BDCC COIN", + "symbol": "BDCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC87F95aA269DD300D9F1cE49d8E1FD8119A10456", + "status": "abandoned", + "id": "0xC87F95aA269DD300D9F1cE49d8E1FD8119A10456" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC87F95aA269DD300D9F1cE49d8E1FD8119A10456/logo.png b/blockchains/ethereum/assets/0xC87F95aA269DD300D9F1cE49d8E1FD8119A10456/logo.png new file mode 100755 index 00000000..02984c79 Binary files /dev/null and b/blockchains/ethereum/assets/0xC87F95aA269DD300D9F1cE49d8E1FD8119A10456/logo.png differ diff --git a/blockchains/ethereum/assets/0xC88C59d0C573043C477fB9084990Ea14bc3C3817/info.json b/blockchains/ethereum/assets/0xC88C59d0C573043C477fB9084990Ea14bc3C3817/info.json new file mode 100644 index 00000000..930c74e5 --- /dev/null +++ b/blockchains/ethereum/assets/0xC88C59d0C573043C477fB9084990Ea14bc3C3817/info.json @@ -0,0 +1,11 @@ +{ + "name": "USDP", + "symbol": "USDP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC88C59d0C573043C477fB9084990Ea14bc3C3817", + "status": "abandoned", + "id": "0xC88C59d0C573043C477fB9084990Ea14bc3C3817" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC88C59d0C573043C477fB9084990Ea14bc3C3817/logo.png b/blockchains/ethereum/assets/0xC88C59d0C573043C477fB9084990Ea14bc3C3817/logo.png new file mode 100644 index 00000000..88d04e51 Binary files /dev/null and b/blockchains/ethereum/assets/0xC88C59d0C573043C477fB9084990Ea14bc3C3817/logo.png differ diff --git a/blockchains/ethereum/assets/0xC88F47067dB2E25851317A2FDaE73a22c0777c37/info.json b/blockchains/ethereum/assets/0xC88F47067dB2E25851317A2FDaE73a22c0777c37/info.json new file mode 100644 index 00000000..8c8cc3d7 --- /dev/null +++ b/blockchains/ethereum/assets/0xC88F47067dB2E25851317A2FDaE73a22c0777c37/info.json @@ -0,0 +1,11 @@ +{ + "name": "oneBTC", + "website": "https://ichi.org", + "description": "oneBTC is the stablecoin created for the wBTC community. Backed by both a treasury of wBTC and collateral of USDC this ERC20 token can be redeemed for USDC at anytime and also provides a vote for governance of the wBTC treasury.", + "explorer": "https://etherscan.io/token/0xC88F47067dB2E25851317A2FDaE73a22c0777c37", + "type": "ERC20", + "symbol": "oneBTC", + "decimals": 9, + "status": "active", + "id": "0xC88F47067dB2E25851317A2FDaE73a22c0777c37" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC88F47067dB2E25851317A2FDaE73a22c0777c37/logo.png b/blockchains/ethereum/assets/0xC88F47067dB2E25851317A2FDaE73a22c0777c37/logo.png new file mode 100644 index 00000000..23697549 Binary files /dev/null and b/blockchains/ethereum/assets/0xC88F47067dB2E25851317A2FDaE73a22c0777c37/logo.png differ diff --git a/blockchains/ethereum/assets/0xC89fA86A1a2f6De30D35B4602F709161D08BABda/info.json b/blockchains/ethereum/assets/0xC89fA86A1a2f6De30D35B4602F709161D08BABda/info.json new file mode 100644 index 00000000..71925e04 --- /dev/null +++ b/blockchains/ethereum/assets/0xC89fA86A1a2f6De30D35B4602F709161D08BABda/info.json @@ -0,0 +1,11 @@ +{ + "name": "LXK", + "symbol": "LXK", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC89fA86A1a2f6De30D35B4602F709161D08BABda", + "status": "abandoned", + "id": "0xC89fA86A1a2f6De30D35B4602F709161D08BABda" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC89fA86A1a2f6De30D35B4602F709161D08BABda/logo.png b/blockchains/ethereum/assets/0xC89fA86A1a2f6De30D35B4602F709161D08BABda/logo.png new file mode 100644 index 00000000..4f2d6fa6 Binary files /dev/null and b/blockchains/ethereum/assets/0xC89fA86A1a2f6De30D35B4602F709161D08BABda/logo.png differ diff --git a/blockchains/ethereum/assets/0xC8C424B91D8ce0137bAB4B832B7F7D154156BA6c/info.json b/blockchains/ethereum/assets/0xC8C424B91D8ce0137bAB4B832B7F7D154156BA6c/info.json new file mode 100644 index 00000000..0a549650 --- /dev/null +++ b/blockchains/ethereum/assets/0xC8C424B91D8ce0137bAB4B832B7F7D154156BA6c/info.json @@ -0,0 +1,11 @@ +{ + "name": "APM Coin", + "symbol": "APM", + "type": "ERC20", + "decimals": 18, + "description": "apM Coin is a blockchain-based customer reward management and payment platform which aims to improve efficiency and credibility of business transactions between wholesalers and buyers.", + "website": "https://apm-coin.com", + "explorer": "https://etherscan.io/token/0xC8C424B91D8ce0137bAB4B832B7F7D154156BA6c", + "status": "active", + "id": "0xC8C424B91D8ce0137bAB4B832B7F7D154156BA6c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC8C424B91D8ce0137bAB4B832B7F7D154156BA6c/logo.png b/blockchains/ethereum/assets/0xC8C424B91D8ce0137bAB4B832B7F7D154156BA6c/logo.png new file mode 100644 index 00000000..a5d6993b Binary files /dev/null and b/blockchains/ethereum/assets/0xC8C424B91D8ce0137bAB4B832B7F7D154156BA6c/logo.png differ diff --git a/blockchains/ethereum/assets/0xC8C8205297b0908b9d0B16aa95c8d0108D615D25/info.json b/blockchains/ethereum/assets/0xC8C8205297b0908b9d0B16aa95c8d0108D615D25/info.json new file mode 100644 index 00000000..5cd9c780 --- /dev/null +++ b/blockchains/ethereum/assets/0xC8C8205297b0908b9d0B16aa95c8d0108D615D25/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short KNC-DAI v2", + "symbol": "dsKNC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC8C8205297b0908b9d0B16aa95c8d0108D615D25", + "status": "abandoned", + "id": "0xC8C8205297b0908b9d0B16aa95c8d0108D615D25" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC8C8205297b0908b9d0B16aa95c8d0108D615D25/logo.png b/blockchains/ethereum/assets/0xC8C8205297b0908b9d0B16aa95c8d0108D615D25/logo.png new file mode 100644 index 00000000..9f53ee26 Binary files /dev/null and b/blockchains/ethereum/assets/0xC8C8205297b0908b9d0B16aa95c8d0108D615D25/logo.png differ diff --git a/blockchains/ethereum/assets/0xC8CeED65E236F7d6fB378b8715f9e6912e486A54/info.json b/blockchains/ethereum/assets/0xC8CeED65E236F7d6fB378b8715f9e6912e486A54/info.json new file mode 100644 index 00000000..10bd5fd7 --- /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 00000000..f1805f82 Binary files /dev/null and b/blockchains/ethereum/assets/0xC8CeED65E236F7d6fB378b8715f9e6912e486A54/logo.png differ diff --git a/blockchains/ethereum/assets/0xC8D2AB2a6FdEbC25432E54941cb85b55b9f152dB/info.json b/blockchains/ethereum/assets/0xC8D2AB2a6FdEbC25432E54941cb85b55b9f152dB/info.json new file mode 100644 index 00000000..5110e4e4 --- /dev/null +++ b/blockchains/ethereum/assets/0xC8D2AB2a6FdEbC25432E54941cb85b55b9f152dB/info.json @@ -0,0 +1,12 @@ +{ + "name": "GRAP", + "website": "https://grap.finance", + "description": "Grap is a fork of the YAM project. But it came with correct 'rebase' and it fixed some obvious bugs. So it will be less trouble and more fun.", + "explorer": "https://etherscan.io/token/0xC8D2AB2a6FdEbC25432E54941cb85b55b9f152dB", + "research": "", + "type": "ERC20", + "symbol": "GRAP", + "decimals": 18, + "status": "active", + "id": "0xC8D2AB2a6FdEbC25432E54941cb85b55b9f152dB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC8D2AB2a6FdEbC25432E54941cb85b55b9f152dB/logo.png b/blockchains/ethereum/assets/0xC8D2AB2a6FdEbC25432E54941cb85b55b9f152dB/logo.png new file mode 100644 index 00000000..0d51c290 Binary files /dev/null and b/blockchains/ethereum/assets/0xC8D2AB2a6FdEbC25432E54941cb85b55b9f152dB/logo.png differ diff --git a/blockchains/ethereum/assets/0xC8a1Daa58bAa1bfDc85bD947960119a33D0351bC/info.json b/blockchains/ethereum/assets/0xC8a1Daa58bAa1bfDc85bD947960119a33D0351bC/info.json new file mode 100644 index 00000000..3fd34d8d --- /dev/null +++ b/blockchains/ethereum/assets/0xC8a1Daa58bAa1bfDc85bD947960119a33D0351bC/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETHA", + "symbol": "ERA", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC8a1Daa58bAa1bfDc85bD947960119a33D0351bC", + "status": "abandoned", + "id": "0xC8a1Daa58bAa1bfDc85bD947960119a33D0351bC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC8a1Daa58bAa1bfDc85bD947960119a33D0351bC/logo.png b/blockchains/ethereum/assets/0xC8a1Daa58bAa1bfDc85bD947960119a33D0351bC/logo.png new file mode 100644 index 00000000..85597790 Binary files /dev/null and b/blockchains/ethereum/assets/0xC8a1Daa58bAa1bfDc85bD947960119a33D0351bC/logo.png differ diff --git a/blockchains/ethereum/assets/0xC8d674114bac90148d11D3C1d33C61835a0F9DCD/info.json b/blockchains/ethereum/assets/0xC8d674114bac90148d11D3C1d33C61835a0F9DCD/info.json new file mode 100644 index 00000000..d5b84e1f --- /dev/null +++ b/blockchains/ethereum/assets/0xC8d674114bac90148d11D3C1d33C61835a0F9DCD/info.json @@ -0,0 +1,32 @@ +{ + "name": "mNFLX Token", + "website": "https://mirror.finance", + "description": "Wrapped Mirror NFLX Token.", + "explorer": "https://etherscan.io/token/0xC8d674114bac90148d11D3C1d33C61835a0F9DCD", + "type": "ERC20", + "symbol": "mNFLX", + "decimals": 18, + "status": "active", + "id": "0xC8d674114bac90148d11D3C1d33C61835a0F9DCD", + "tags": [ + "wrapped" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MirrorProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/mirror_protocol" + }, + { + "name": "discord", + "url": "https://discord.com/MirrorProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/@mirror-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC8d674114bac90148d11D3C1d33C61835a0F9DCD/logo.png b/blockchains/ethereum/assets/0xC8d674114bac90148d11D3C1d33C61835a0F9DCD/logo.png new file mode 100644 index 00000000..81fa920f Binary files /dev/null and b/blockchains/ethereum/assets/0xC8d674114bac90148d11D3C1d33C61835a0F9DCD/logo.png differ diff --git a/blockchains/ethereum/assets/0xC91b81df82534eA95C547abE86db455976ce70F8/info.json b/blockchains/ethereum/assets/0xC91b81df82534eA95C547abE86db455976ce70F8/info.json new file mode 100644 index 00000000..55195909 --- /dev/null +++ b/blockchains/ethereum/assets/0xC91b81df82534eA95C547abE86db455976ce70F8/info.json @@ -0,0 +1,11 @@ +{ + "name": "HDRR", + "symbol": "HDRR", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC91b81df82534eA95C547abE86db455976ce70F8", + "status": "abandoned", + "id": "0xC91b81df82534eA95C547abE86db455976ce70F8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC91b81df82534eA95C547abE86db455976ce70F8/logo.png b/blockchains/ethereum/assets/0xC91b81df82534eA95C547abE86db455976ce70F8/logo.png new file mode 100644 index 00000000..76b91e7b Binary files /dev/null and b/blockchains/ethereum/assets/0xC91b81df82534eA95C547abE86db455976ce70F8/logo.png differ diff --git a/blockchains/ethereum/assets/0xC9683713241D88C7Cce5a4609aAD7480177DE129/info.json b/blockchains/ethereum/assets/0xC9683713241D88C7Cce5a4609aAD7480177DE129/info.json new file mode 100644 index 00000000..346dee6e --- /dev/null +++ b/blockchains/ethereum/assets/0xC9683713241D88C7Cce5a4609aAD7480177DE129/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 335-CN22", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC9683713241D88C7Cce5a4609aAD7480177DE129", + "status": "abandoned", + "id": "0xC9683713241D88C7Cce5a4609aAD7480177DE129" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC9683713241D88C7Cce5a4609aAD7480177DE129/logo.png b/blockchains/ethereum/assets/0xC9683713241D88C7Cce5a4609aAD7480177DE129/logo.png new file mode 100644 index 00000000..a8b5b24f Binary files /dev/null and b/blockchains/ethereum/assets/0xC9683713241D88C7Cce5a4609aAD7480177DE129/logo.png differ diff --git a/blockchains/ethereum/assets/0xC98449EF8a017cfD29AED8b21B9B26492978a898/info.json b/blockchains/ethereum/assets/0xC98449EF8a017cfD29AED8b21B9B26492978a898/info.json new file mode 100644 index 00000000..81d77ee2 --- /dev/null +++ b/blockchains/ethereum/assets/0xC98449EF8a017cfD29AED8b21B9B26492978a898/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fitness Chain", + "symbol": "FIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC98449EF8a017cfD29AED8b21B9B26492978a898", + "status": "abandoned", + "id": "0xC98449EF8a017cfD29AED8b21B9B26492978a898" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC98449EF8a017cfD29AED8b21B9B26492978a898/logo.png b/blockchains/ethereum/assets/0xC98449EF8a017cfD29AED8b21B9B26492978a898/logo.png new file mode 100644 index 00000000..0443d1ed Binary files /dev/null and b/blockchains/ethereum/assets/0xC98449EF8a017cfD29AED8b21B9B26492978a898/logo.png differ diff --git a/blockchains/ethereum/assets/0xC9Bb3e714AE4f73498eD27D5Bc9a1824E4B4B3eF/info.json b/blockchains/ethereum/assets/0xC9Bb3e714AE4f73498eD27D5Bc9a1824E4B4B3eF/info.json new file mode 100644 index 00000000..9e06ac08 --- /dev/null +++ b/blockchains/ethereum/assets/0xC9Bb3e714AE4f73498eD27D5Bc9a1824E4B4B3eF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Space Bank Token", + "symbol": "SPB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC9Bb3e714AE4f73498eD27D5Bc9a1824E4B4B3eF", + "status": "abandoned", + "id": "0xC9Bb3e714AE4f73498eD27D5Bc9a1824E4B4B3eF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC9Bb3e714AE4f73498eD27D5Bc9a1824E4B4B3eF/logo.png b/blockchains/ethereum/assets/0xC9Bb3e714AE4f73498eD27D5Bc9a1824E4B4B3eF/logo.png new file mode 100644 index 00000000..afa0c920 Binary files /dev/null and b/blockchains/ethereum/assets/0xC9Bb3e714AE4f73498eD27D5Bc9a1824E4B4B3eF/logo.png differ diff --git a/blockchains/ethereum/assets/0xC9D73535DEBE2829b03faab04FF1022399Afc122/info.json b/blockchains/ethereum/assets/0xC9D73535DEBE2829b03faab04FF1022399Afc122/info.json new file mode 100644 index 00000000..d87da510 --- /dev/null +++ b/blockchains/ethereum/assets/0xC9D73535DEBE2829b03faab04FF1022399Afc122/info.json @@ -0,0 +1,11 @@ +{ + "name": "TANTECH", + "symbol": "TAN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC9D73535DEBE2829b03faab04FF1022399Afc122", + "status": "abandoned", + "id": "0xC9D73535DEBE2829b03faab04FF1022399Afc122" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC9D73535DEBE2829b03faab04FF1022399Afc122/logo.png b/blockchains/ethereum/assets/0xC9D73535DEBE2829b03faab04FF1022399Afc122/logo.png new file mode 100644 index 00000000..46407348 Binary files /dev/null and b/blockchains/ethereum/assets/0xC9D73535DEBE2829b03faab04FF1022399Afc122/logo.png differ diff --git a/blockchains/ethereum/assets/0xC9a2C4868F0f96fAaa739b59934Dc9cB304112ec/info.json b/blockchains/ethereum/assets/0xC9a2C4868F0f96fAaa739b59934Dc9cB304112ec/info.json new file mode 100644 index 00000000..8b2f6133 --- /dev/null +++ b/blockchains/ethereum/assets/0xC9a2C4868F0f96fAaa739b59934Dc9cB304112ec/info.json @@ -0,0 +1,12 @@ +{ + "name": "Binance GBP", + "website": "https://binance.com/en", + "description": "Binance GBP (BGBP) is a token issued by Binance with a price pegged at a 1:1 rate to British Pound (GBP).", + "explorer": "https://etherscan.io/token/0xC9a2C4868F0f96fAaa739b59934Dc9cB304112ec", + "research": "https://research.binance.com/en/projects/binance-gbp", + "type": "ERC20", + "symbol": "BGBP", + "decimals": 8, + "status": "active", + "id": "0xC9a2C4868F0f96fAaa739b59934Dc9cB304112ec" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC9a2C4868F0f96fAaa739b59934Dc9cB304112ec/logo.png b/blockchains/ethereum/assets/0xC9a2C4868F0f96fAaa739b59934Dc9cB304112ec/logo.png new file mode 100644 index 00000000..852c3e0b Binary files /dev/null and b/blockchains/ethereum/assets/0xC9a2C4868F0f96fAaa739b59934Dc9cB304112ec/logo.png differ diff --git a/blockchains/ethereum/assets/0xC9aFDea326c109D441519d355756f4e88465f94d/info.json b/blockchains/ethereum/assets/0xC9aFDea326c109D441519d355756f4e88465f94d/info.json new file mode 100644 index 00000000..7767126d --- /dev/null +++ b/blockchains/ethereum/assets/0xC9aFDea326c109D441519d355756f4e88465f94d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Doblone", + "symbol": "DOB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC9aFDea326c109D441519d355756f4e88465f94d", + "status": "abandoned", + "id": "0xC9aFDea326c109D441519d355756f4e88465f94d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC9aFDea326c109D441519d355756f4e88465f94d/logo.png b/blockchains/ethereum/assets/0xC9aFDea326c109D441519d355756f4e88465f94d/logo.png new file mode 100644 index 00000000..c6a7fc6c Binary files /dev/null and b/blockchains/ethereum/assets/0xC9aFDea326c109D441519d355756f4e88465f94d/logo.png differ diff --git a/blockchains/ethereum/assets/0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf/info.json b/blockchains/ethereum/assets/0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf/info.json new file mode 100644 index 00000000..a36ee8af --- /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 00000000..57553ee8 Binary files /dev/null and b/blockchains/ethereum/assets/0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf/logo.png differ diff --git a/blockchains/ethereum/assets/0xC9c0Ff6344b4BFDee7ACE21c4DeddD6e43Ecb454/info.json b/blockchains/ethereum/assets/0xC9c0Ff6344b4BFDee7ACE21c4DeddD6e43Ecb454/info.json new file mode 100644 index 00000000..82035e2a --- /dev/null +++ b/blockchains/ethereum/assets/0xC9c0Ff6344b4BFDee7ACE21c4DeddD6e43Ecb454/info.json @@ -0,0 +1,11 @@ +{ + "name": "Oroshi", + "symbol": "WIND", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xC9c0Ff6344b4BFDee7ACE21c4DeddD6e43Ecb454", + "status": "abandoned", + "id": "0xC9c0Ff6344b4BFDee7ACE21c4DeddD6e43Ecb454" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC9c0Ff6344b4BFDee7ACE21c4DeddD6e43Ecb454/logo.png b/blockchains/ethereum/assets/0xC9c0Ff6344b4BFDee7ACE21c4DeddD6e43Ecb454/logo.png new file mode 100755 index 00000000..daabf5ca Binary files /dev/null and b/blockchains/ethereum/assets/0xC9c0Ff6344b4BFDee7ACE21c4DeddD6e43Ecb454/logo.png differ diff --git a/blockchains/ethereum/assets/0xC9cE70A381910D0a90B30d408CC9C7705ee882de/info.json b/blockchains/ethereum/assets/0xC9cE70A381910D0a90B30d408CC9C7705ee882de/info.json new file mode 100644 index 00000000..3dcb8794 --- /dev/null +++ b/blockchains/ethereum/assets/0xC9cE70A381910D0a90B30d408CC9C7705ee882de/info.json @@ -0,0 +1,17 @@ +{ + "name": "NYAN", + "website": "https://nyan.finance", + "description": "Nyan is a decentralized hedge fund using on-chain governance", + "explorer": "https://etherscan.io/token/0xC9cE70A381910D0a90B30d408CC9C7705ee882de", + "type": "ERC20", + "symbol": "NYAN", + "decimals": 18, + "status": "active", + "id": "0xC9cE70A381910D0a90B30d408CC9C7705ee882de", + "links": [ + { + "name": "github", + "url": "https://github.com/geass-zero/nyan.finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC9cE70A381910D0a90B30d408CC9C7705ee882de/logo.png b/blockchains/ethereum/assets/0xC9cE70A381910D0a90B30d408CC9C7705ee882de/logo.png new file mode 100644 index 00000000..979f3702 Binary files /dev/null and b/blockchains/ethereum/assets/0xC9cE70A381910D0a90B30d408CC9C7705ee882de/logo.png differ diff --git a/blockchains/ethereum/assets/0xCA0e7269600d353F70b14Ad118A49575455C0f2f/info.json b/blockchains/ethereum/assets/0xCA0e7269600d353F70b14Ad118A49575455C0f2f/info.json new file mode 100644 index 00000000..960c2205 --- /dev/null +++ b/blockchains/ethereum/assets/0xCA0e7269600d353F70b14Ad118A49575455C0f2f/info.json @@ -0,0 +1,11 @@ +{ + "name": "AMLT", + "symbol": "AMLT", + "type": "ERC20", + "decimals": 18, + "description": "AMLT Oracle, DeFi's first smart contract-based solution for AML compliance.", + "website": "https://amlt.coinfirm.com", + "explorer": "https://etherscan.io/token/0xCA0e7269600d353F70b14Ad118A49575455C0f2f", + "status": "active", + "id": "0xCA0e7269600d353F70b14Ad118A49575455C0f2f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCA0e7269600d353F70b14Ad118A49575455C0f2f/logo.png b/blockchains/ethereum/assets/0xCA0e7269600d353F70b14Ad118A49575455C0f2f/logo.png new file mode 100755 index 00000000..f780d364 Binary files /dev/null and b/blockchains/ethereum/assets/0xCA0e7269600d353F70b14Ad118A49575455C0f2f/logo.png differ diff --git a/blockchains/ethereum/assets/0xCA29db4221c111888a7e80b12eAc8a266Da3Ee0d/info.json b/blockchains/ethereum/assets/0xCA29db4221c111888a7e80b12eAc8a266Da3Ee0d/info.json new file mode 100644 index 00000000..d26e03b4 --- /dev/null +++ b/blockchains/ethereum/assets/0xCA29db4221c111888a7e80b12eAc8a266Da3Ee0d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Boleno", + "symbol": "BLN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCA29db4221c111888a7e80b12eAc8a266Da3Ee0d", + "status": "abandoned", + "id": "0xCA29db4221c111888a7e80b12eAc8a266Da3Ee0d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCA29db4221c111888a7e80b12eAc8a266Da3Ee0d/logo.png b/blockchains/ethereum/assets/0xCA29db4221c111888a7e80b12eAc8a266Da3Ee0d/logo.png new file mode 100755 index 00000000..6d3e9f69 Binary files /dev/null and b/blockchains/ethereum/assets/0xCA29db4221c111888a7e80b12eAc8a266Da3Ee0d/logo.png differ diff --git a/blockchains/ethereum/assets/0xCA760655D162EE134E34A316aE8AD9a54a69B60f/info.json b/blockchains/ethereum/assets/0xCA760655D162EE134E34A316aE8AD9a54a69B60f/info.json new file mode 100644 index 00000000..b8d80106 --- /dev/null +++ b/blockchains/ethereum/assets/0xCA760655D162EE134E34A316aE8AD9a54a69B60f/info.json @@ -0,0 +1,11 @@ +{ + "name": "OON", + "symbol": "OON", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCA760655D162EE134E34A316aE8AD9a54a69B60f", + "status": "abandoned", + "id": "0xCA760655D162EE134E34A316aE8AD9a54a69B60f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCA760655D162EE134E34A316aE8AD9a54a69B60f/logo.png b/blockchains/ethereum/assets/0xCA760655D162EE134E34A316aE8AD9a54a69B60f/logo.png new file mode 100644 index 00000000..18a53e2a Binary files /dev/null and b/blockchains/ethereum/assets/0xCA760655D162EE134E34A316aE8AD9a54a69B60f/logo.png differ diff --git a/blockchains/ethereum/assets/0xCAD6C3293C795816505F961631Cb0eF4812Dc9Ba/info.json b/blockchains/ethereum/assets/0xCAD6C3293C795816505F961631Cb0eF4812Dc9Ba/info.json new file mode 100644 index 00000000..8b610f89 --- /dev/null +++ b/blockchains/ethereum/assets/0xCAD6C3293C795816505F961631Cb0eF4812Dc9Ba/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mercenario Coin", + "symbol": "MMC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCAD6C3293C795816505F961631Cb0eF4812Dc9Ba", + "status": "abandoned", + "id": "0xCAD6C3293C795816505F961631Cb0eF4812Dc9Ba" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCAD6C3293C795816505F961631Cb0eF4812Dc9Ba/logo.png b/blockchains/ethereum/assets/0xCAD6C3293C795816505F961631Cb0eF4812Dc9Ba/logo.png new file mode 100644 index 00000000..768ee4c5 Binary files /dev/null and b/blockchains/ethereum/assets/0xCAD6C3293C795816505F961631Cb0eF4812Dc9Ba/logo.png differ diff --git a/blockchains/ethereum/assets/0xCAE646bc8C968d87D54fA49ccDbf0FD330125cc2/info.json b/blockchains/ethereum/assets/0xCAE646bc8C968d87D54fA49ccDbf0FD330125cc2/info.json new file mode 100644 index 00000000..7ddc780d --- /dev/null +++ b/blockchains/ethereum/assets/0xCAE646bc8C968d87D54fA49ccDbf0FD330125cc2/info.json @@ -0,0 +1,11 @@ +{ + "name": "YamataChain", + "symbol": "YCN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCAE646bc8C968d87D54fA49ccDbf0FD330125cc2", + "status": "abandoned", + "id": "0xCAE646bc8C968d87D54fA49ccDbf0FD330125cc2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCAE646bc8C968d87D54fA49ccDbf0FD330125cc2/logo.png b/blockchains/ethereum/assets/0xCAE646bc8C968d87D54fA49ccDbf0FD330125cc2/logo.png new file mode 100644 index 00000000..de52d084 Binary files /dev/null and b/blockchains/ethereum/assets/0xCAE646bc8C968d87D54fA49ccDbf0FD330125cc2/logo.png differ diff --git a/blockchains/ethereum/assets/0xCB5A05beF3257613E984C17DbcF039952B6d883F/info.json b/blockchains/ethereum/assets/0xCB5A05beF3257613E984C17DbcF039952B6d883F/info.json new file mode 100644 index 00000000..bab63e7d --- /dev/null +++ b/blockchains/ethereum/assets/0xCB5A05beF3257613E984C17DbcF039952B6d883F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sugar Exchange", + "symbol": "SGR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://sugarexchange.io/", + "explorer": "https://etherscan.io/token/0xCB5A05beF3257613E984C17DbcF039952B6d883F", + "status": "abandoned", + "id": "0xCB5A05beF3257613E984C17DbcF039952B6d883F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCB5A05beF3257613E984C17DbcF039952B6d883F/logo.png b/blockchains/ethereum/assets/0xCB5A05beF3257613E984C17DbcF039952B6d883F/logo.png new file mode 100644 index 00000000..d13b84e3 Binary files /dev/null and b/blockchains/ethereum/assets/0xCB5A05beF3257613E984C17DbcF039952B6d883F/logo.png differ diff --git a/blockchains/ethereum/assets/0xCB610b65122f9A530892a9d442aa5f88A58d8a37/info.json b/blockchains/ethereum/assets/0xCB610b65122f9A530892a9d442aa5f88A58d8a37/info.json new file mode 100644 index 00000000..c92151da --- /dev/null +++ b/blockchains/ethereum/assets/0xCB610b65122f9A530892a9d442aa5f88A58d8a37/info.json @@ -0,0 +1,11 @@ +{ + "name": "IOU POIU G768-GH43", + "symbol": "IOU", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCB610b65122f9A530892a9d442aa5f88A58d8a37", + "status": "abandoned", + "id": "0xCB610b65122f9A530892a9d442aa5f88A58d8a37" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCB610b65122f9A530892a9d442aa5f88A58d8a37/logo.png b/blockchains/ethereum/assets/0xCB610b65122f9A530892a9d442aa5f88A58d8a37/logo.png new file mode 100644 index 00000000..8b72ee28 Binary files /dev/null and b/blockchains/ethereum/assets/0xCB610b65122f9A530892a9d442aa5f88A58d8a37/logo.png differ diff --git a/blockchains/ethereum/assets/0xCBCec9738533114F4434E1697201571EEf4dde32/info.json b/blockchains/ethereum/assets/0xCBCec9738533114F4434E1697201571EEf4dde32/info.json new file mode 100644 index 00000000..ec8ca71f --- /dev/null +++ b/blockchains/ethereum/assets/0xCBCec9738533114F4434E1697201571EEf4dde32/info.json @@ -0,0 +1,11 @@ +{ + "name": "SudanGoldCoin", + "symbol": "SGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCBCec9738533114F4434E1697201571EEf4dde32", + "status": "abandoned", + "id": "0xCBCec9738533114F4434E1697201571EEf4dde32" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCBCec9738533114F4434E1697201571EEf4dde32/logo.png b/blockchains/ethereum/assets/0xCBCec9738533114F4434E1697201571EEf4dde32/logo.png new file mode 100644 index 00000000..d49dd7fa Binary files /dev/null and b/blockchains/ethereum/assets/0xCBCec9738533114F4434E1697201571EEf4dde32/logo.png differ diff --git a/blockchains/ethereum/assets/0xCBc62A291d4C564fd5D1d171154a0266ce336c44/info.json b/blockchains/ethereum/assets/0xCBc62A291d4C564fd5D1d171154a0266ce336c44/info.json new file mode 100644 index 00000000..3782f2a8 --- /dev/null +++ b/blockchains/ethereum/assets/0xCBc62A291d4C564fd5D1d171154a0266ce336c44/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZYTH", + "website": "https://uzyth.com/", + "description": "ZYTH is used to lower commission fees on the exchange, currency pairing, casino games, marketplace and even to pay members ads on our social platform.", + "explorer": "https://etherscan.io/token/0xCBc62A291d4C564fd5D1d171154a0266ce336c44", + "type": "ERC20", + "symbol": "\"\"", + "decimals": 18, + "status": "active", + "id": "0xCBc62A291d4C564fd5D1d171154a0266ce336c44", + "links": [ + { + "name": "github", + "url": "https://github.com/zythtech" + }, + { + "name": "whitepaper", + "url": "https://18.190.113.58//api.uzyth.com/uploaded_media/downloads/1591291137645_download.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCBc62A291d4C564fd5D1d171154a0266ce336c44/logo.png b/blockchains/ethereum/assets/0xCBc62A291d4C564fd5D1d171154a0266ce336c44/logo.png new file mode 100644 index 00000000..b9826eaf Binary files /dev/null and b/blockchains/ethereum/assets/0xCBc62A291d4C564fd5D1d171154a0266ce336c44/logo.png differ diff --git a/blockchains/ethereum/assets/0xCBdE0453d4E7D748077c1b0Ac2216C011DD2f406/info.json b/blockchains/ethereum/assets/0xCBdE0453d4E7D748077c1b0Ac2216C011DD2f406/info.json new file mode 100644 index 00000000..bb688eda --- /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 00000000..bd300b65 Binary files /dev/null and b/blockchains/ethereum/assets/0xCBdE0453d4E7D748077c1b0Ac2216C011DD2f406/logo.png differ diff --git a/blockchains/ethereum/assets/0xCBf011af08FaDDa5736bF5E645dbbfb149Dc5d68/info.json b/blockchains/ethereum/assets/0xCBf011af08FaDDa5736bF5E645dbbfb149Dc5d68/info.json new file mode 100644 index 00000000..900f0181 --- /dev/null +++ b/blockchains/ethereum/assets/0xCBf011af08FaDDa5736bF5E645dbbfb149Dc5d68/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yi Fa Temple Token", + "symbol": "YFT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCBf011af08FaDDa5736bF5E645dbbfb149Dc5d68", + "status": "abandoned", + "id": "0xCBf011af08FaDDa5736bF5E645dbbfb149Dc5d68" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCBf011af08FaDDa5736bF5E645dbbfb149Dc5d68/logo.png b/blockchains/ethereum/assets/0xCBf011af08FaDDa5736bF5E645dbbfb149Dc5d68/logo.png new file mode 100755 index 00000000..d9258ee5 Binary files /dev/null and b/blockchains/ethereum/assets/0xCBf011af08FaDDa5736bF5E645dbbfb149Dc5d68/logo.png differ diff --git a/blockchains/ethereum/assets/0xCC12AbE4ff81c9378D670De1b57F8e0Dd228D77a/info.json b/blockchains/ethereum/assets/0xCC12AbE4ff81c9378D670De1b57F8e0Dd228D77a/info.json new file mode 100644 index 00000000..676673f9 --- /dev/null +++ b/blockchains/ethereum/assets/0xCC12AbE4ff81c9378D670De1b57F8e0Dd228D77a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave REN", + "symbol": "aREN", + "type": "ERC20", + "decimals": 18, + "description": "Aave REN is an interest bearing token pegged 1:1 to the underlying REN deposited in Aave. aREN accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xCC12AbE4ff81c9378D670De1b57F8e0Dd228D77a", + "status": "active", + "id": "0xCC12AbE4ff81c9378D670De1b57F8e0Dd228D77a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCC12AbE4ff81c9378D670De1b57F8e0Dd228D77a/logo.png b/blockchains/ethereum/assets/0xCC12AbE4ff81c9378D670De1b57F8e0Dd228D77a/logo.png new file mode 100644 index 00000000..87456b42 Binary files /dev/null and b/blockchains/ethereum/assets/0xCC12AbE4ff81c9378D670De1b57F8e0Dd228D77a/logo.png differ diff --git a/blockchains/ethereum/assets/0xCC4304A31d09258b0029eA7FE63d032f52e44EFe/info.json b/blockchains/ethereum/assets/0xCC4304A31d09258b0029eA7FE63d032f52e44EFe/info.json new file mode 100644 index 00000000..8f04d024 --- /dev/null +++ b/blockchains/ethereum/assets/0xCC4304A31d09258b0029eA7FE63d032f52e44EFe/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrustSwap Token", + "symbol": "SWAP", + "type": "ERC20", + "decimals": 18, + "description": "A Full-Service Digital Asset Ecosystem.", + "website": "https://trustswap.org", + "explorer": "https://etherscan.io/token/0xCC4304A31d09258b0029eA7FE63d032f52e44EFe", + "status": "active", + "id": "0xCC4304A31d09258b0029eA7FE63d032f52e44EFe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCC4304A31d09258b0029eA7FE63d032f52e44EFe/logo.png b/blockchains/ethereum/assets/0xCC4304A31d09258b0029eA7FE63d032f52e44EFe/logo.png new file mode 100644 index 00000000..c3455265 Binary files /dev/null and b/blockchains/ethereum/assets/0xCC4304A31d09258b0029eA7FE63d032f52e44EFe/logo.png differ diff --git a/blockchains/ethereum/assets/0xCC55cf17d21c758E52b87113a7143116e4d9EB10/info.json b/blockchains/ethereum/assets/0xCC55cf17d21c758E52b87113a7143116e4d9EB10/info.json new file mode 100644 index 00000000..e089eb22 --- /dev/null +++ b/blockchains/ethereum/assets/0xCC55cf17d21c758E52b87113a7143116e4d9EB10/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vending Machine Chain", + "symbol": "VMC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCC55cf17d21c758E52b87113a7143116e4d9EB10", + "status": "abandoned", + "id": "0xCC55cf17d21c758E52b87113a7143116e4d9EB10" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCC55cf17d21c758E52b87113a7143116e4d9EB10/logo.png b/blockchains/ethereum/assets/0xCC55cf17d21c758E52b87113a7143116e4d9EB10/logo.png new file mode 100644 index 00000000..31b2080a Binary files /dev/null and b/blockchains/ethereum/assets/0xCC55cf17d21c758E52b87113a7143116e4d9EB10/logo.png differ diff --git a/blockchains/ethereum/assets/0xCC6B25d2A3D95568d1C903a5376982b1f54c7791/info.json b/blockchains/ethereum/assets/0xCC6B25d2A3D95568d1C903a5376982b1f54c7791/info.json new file mode 100644 index 00000000..0f26bb44 --- /dev/null +++ b/blockchains/ethereum/assets/0xCC6B25d2A3D95568d1C903a5376982b1f54c7791/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEN", + "symbol": "DEN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCC6B25d2A3D95568d1C903a5376982b1f54c7791", + "status": "abandoned", + "id": "0xCC6B25d2A3D95568d1C903a5376982b1f54c7791" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCC6B25d2A3D95568d1C903a5376982b1f54c7791/logo.png b/blockchains/ethereum/assets/0xCC6B25d2A3D95568d1C903a5376982b1f54c7791/logo.png new file mode 100644 index 00000000..ea2ebd83 Binary files /dev/null and b/blockchains/ethereum/assets/0xCC6B25d2A3D95568d1C903a5376982b1f54c7791/logo.png differ diff --git a/blockchains/ethereum/assets/0xCC8Fa225D80b9c7D42F96e9570156c65D6cAAa25/info.json b/blockchains/ethereum/assets/0xCC8Fa225D80b9c7D42F96e9570156c65D6cAAa25/info.json new file mode 100644 index 00000000..b6773a55 --- /dev/null +++ b/blockchains/ethereum/assets/0xCC8Fa225D80b9c7D42F96e9570156c65D6cAAa25/info.json @@ -0,0 +1,12 @@ +{ + "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://etherscan.io/token/0xCC8Fa225D80b9c7D42F96e9570156c65D6cAAa25", + "research": "https://research.binance.com/en/projects/small-love-potion", + "type": "ERC20", + "symbol": "SLP", + "decimals": 0, + "status": "active", + "id": "0xCC8Fa225D80b9c7D42F96e9570156c65D6cAAa25" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCC8Fa225D80b9c7D42F96e9570156c65D6cAAa25/logo.png b/blockchains/ethereum/assets/0xCC8Fa225D80b9c7D42F96e9570156c65D6cAAa25/logo.png new file mode 100644 index 00000000..ff213006 Binary files /dev/null and b/blockchains/ethereum/assets/0xCC8Fa225D80b9c7D42F96e9570156c65D6cAAa25/logo.png differ diff --git a/blockchains/ethereum/assets/0xCC9254107D18493D018EE87C843a1D6d0c483c3C/info.json b/blockchains/ethereum/assets/0xCC9254107D18493D018EE87C843a1D6d0c483c3C/info.json new file mode 100644 index 00000000..79ade38d --- /dev/null +++ b/blockchains/ethereum/assets/0xCC9254107D18493D018EE87C843a1D6d0c483c3C/info.json @@ -0,0 +1,11 @@ +{ + "name": "GBPT", + "symbol": "GBPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCC9254107D18493D018EE87C843a1D6d0c483c3C", + "status": "abandoned", + "id": "0xCC9254107D18493D018EE87C843a1D6d0c483c3C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCC9254107D18493D018EE87C843a1D6d0c483c3C/logo.png b/blockchains/ethereum/assets/0xCC9254107D18493D018EE87C843a1D6d0c483c3C/logo.png new file mode 100644 index 00000000..711d225f Binary files /dev/null and b/blockchains/ethereum/assets/0xCC9254107D18493D018EE87C843a1D6d0c483c3C/logo.png differ diff --git a/blockchains/ethereum/assets/0xCCbf21ba6EF00802AB06637896B799f7101F54A2/info.json b/blockchains/ethereum/assets/0xCCbf21ba6EF00802AB06637896B799f7101F54A2/info.json new file mode 100644 index 00000000..c1ba9cc1 --- /dev/null +++ b/blockchains/ethereum/assets/0xCCbf21ba6EF00802AB06637896B799f7101F54A2/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Budbo Token", + "type": "ERC20", + "symbol": "BUBO", + "decimals": 18, + "description": "Together, we pioneer the future of cannabis. Budbo is a suite of cannabis solutions powered by blockchain.", + "website": "https://budbo.io/", + "explorer": "https://etherscan.io/token/0xCCbf21ba6EF00802AB06637896B799f7101F54A2", + "status": "active", + "id": "0xCCbf21ba6EF00802AB06637896B799f7101F54A2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCCbf21ba6EF00802AB06637896B799f7101F54A2/logo.png b/blockchains/ethereum/assets/0xCCbf21ba6EF00802AB06637896B799f7101F54A2/logo.png new file mode 100644 index 00000000..d84ed028 Binary files /dev/null and b/blockchains/ethereum/assets/0xCCbf21ba6EF00802AB06637896B799f7101F54A2/logo.png differ diff --git a/blockchains/ethereum/assets/0xCD25A9C4A1de5FBF3Ed0Acac8bE96eb1E26dD743/info.json b/blockchains/ethereum/assets/0xCD25A9C4A1de5FBF3Ed0Acac8bE96eb1E26dD743/info.json new file mode 100644 index 00000000..f3706660 --- /dev/null +++ b/blockchains/ethereum/assets/0xCD25A9C4A1de5FBF3Ed0Acac8bE96eb1E26dD743/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinMarketFeed", + "symbol": "CMF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCD25A9C4A1de5FBF3Ed0Acac8bE96eb1E26dD743", + "status": "abandoned", + "id": "0xCD25A9C4A1de5FBF3Ed0Acac8bE96eb1E26dD743" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCD25A9C4A1de5FBF3Ed0Acac8bE96eb1E26dD743/logo.png b/blockchains/ethereum/assets/0xCD25A9C4A1de5FBF3Ed0Acac8bE96eb1E26dD743/logo.png new file mode 100644 index 00000000..5163b0f1 Binary files /dev/null and b/blockchains/ethereum/assets/0xCD25A9C4A1de5FBF3Ed0Acac8bE96eb1E26dD743/logo.png differ diff --git a/blockchains/ethereum/assets/0xCD6d1a15F39E41F1154511601C905Faf469001bE/info.json b/blockchains/ethereum/assets/0xCD6d1a15F39E41F1154511601C905Faf469001bE/info.json new file mode 100644 index 00000000..40a6d979 --- /dev/null +++ b/blockchains/ethereum/assets/0xCD6d1a15F39E41F1154511601C905Faf469001bE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planetagro", + "symbol": "LOYALTY POINTS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCD6d1a15F39E41F1154511601C905Faf469001bE", + "status": "abandoned", + "id": "0xCD6d1a15F39E41F1154511601C905Faf469001bE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCD6d1a15F39E41F1154511601C905Faf469001bE/logo.png b/blockchains/ethereum/assets/0xCD6d1a15F39E41F1154511601C905Faf469001bE/logo.png new file mode 100755 index 00000000..4e77b9cb Binary files /dev/null and b/blockchains/ethereum/assets/0xCD6d1a15F39E41F1154511601C905Faf469001bE/logo.png differ diff --git a/blockchains/ethereum/assets/0xCDB7eCFd3403Eef3882c65B761ef9B5054890a47/info.json b/blockchains/ethereum/assets/0xCDB7eCFd3403Eef3882c65B761ef9B5054890a47/info.json new file mode 100644 index 00000000..168125f9 --- /dev/null +++ b/blockchains/ethereum/assets/0xCDB7eCFd3403Eef3882c65B761ef9B5054890a47/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hurify Token", + "symbol": "HUR", + "type": "ERC20", + "decimals": 18, + "description": "Hurify Inc. founded by Ex-Intel veterans, is an Ethereum based decentralized platform that facilitates IoT Developers to monetize their IoT hardware resources and services via Smart Contracts. Hurify is powered by Ethereum ERC20 standard HUR Tokens.", + "website": "https://hurify.co/", + "explorer": "https://etherscan.io/token/0xCDB7eCFd3403Eef3882c65B761ef9B5054890a47", + "status": "active", + "id": "0xCDB7eCFd3403Eef3882c65B761ef9B5054890a47" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCDB7eCFd3403Eef3882c65B761ef9B5054890a47/logo.png b/blockchains/ethereum/assets/0xCDB7eCFd3403Eef3882c65B761ef9B5054890a47/logo.png new file mode 100755 index 00000000..e59ed165 Binary files /dev/null and b/blockchains/ethereum/assets/0xCDB7eCFd3403Eef3882c65B761ef9B5054890a47/logo.png differ diff --git a/blockchains/ethereum/assets/0xCDC412F306e0C51e3249B88C65423Cd16b322673/info.json b/blockchains/ethereum/assets/0xCDC412F306e0C51e3249B88C65423Cd16b322673/info.json new file mode 100644 index 00000000..5186caec --- /dev/null +++ b/blockchains/ethereum/assets/0xCDC412F306e0C51e3249B88C65423Cd16b322673/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockchain.io", + "symbol": "BCIO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCDC412F306e0C51e3249B88C65423Cd16b322673", + "status": "abandoned", + "id": "0xCDC412F306e0C51e3249B88C65423Cd16b322673" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCDC412F306e0C51e3249B88C65423Cd16b322673/logo.png b/blockchains/ethereum/assets/0xCDC412F306e0C51e3249B88C65423Cd16b322673/logo.png new file mode 100644 index 00000000..84a5e758 Binary files /dev/null and b/blockchains/ethereum/assets/0xCDC412F306e0C51e3249B88C65423Cd16b322673/logo.png differ diff --git a/blockchains/ethereum/assets/0xCE1298eF635326d9F197963E49E1E67422761897/info.json b/blockchains/ethereum/assets/0xCE1298eF635326d9F197963E49E1E67422761897/info.json new file mode 100644 index 00000000..0fa8d6d4 --- /dev/null +++ b/blockchains/ethereum/assets/0xCE1298eF635326d9F197963E49E1E67422761897/info.json @@ -0,0 +1,11 @@ +{ + "name": "PiSwap Token (PIS)", + "website": "https://piswap.io/", + "description": "PiSwap is a new generation Defi platform, fully integrated with tools to help users to access Defi easily, quickly and securely.", + "explorer": "https://etherscan.io/token/0xCE1298eF635326d9F197963E49E1E67422761897", + "type": "ERC20", + "symbol": "PIS", + "decimals": 8, + "status": "active", + "id": "0xCE1298eF635326d9F197963E49E1E67422761897" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCE1298eF635326d9F197963E49E1E67422761897/logo.png b/blockchains/ethereum/assets/0xCE1298eF635326d9F197963E49E1E67422761897/logo.png new file mode 100644 index 00000000..48f545c6 Binary files /dev/null and b/blockchains/ethereum/assets/0xCE1298eF635326d9F197963E49E1E67422761897/logo.png differ diff --git a/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/info.json b/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/info.json new file mode 100644 index 00000000..1eb461fb --- /dev/null +++ b/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/info.json @@ -0,0 +1,44 @@ +{ + "name": "SAITAMA", + "website": "https://saitamatoken.com", + "description": "Community Owned Decentralised Token", + "explorer": "https://etherscan.io/token/0xCE3f08e664693ca792caCE4af1364D5e220827B2", + "type": "ERC20", + "symbol": "SAITAMA", + "decimals": 9, + "status": "abandoned", + "id": "0xCE3f08e664693ca792caCE4af1364D5e220827B2", + "tags": [ + "memes" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://saitamatoken.com/SAITAMA_INU_WHITEPAPER_V1.pdf" + }, + { + "name": "x", + "url": "https://x.com/WeAreSaitama" + }, + { + "name": "telegram", + "url": "https://t.me/SaitamaWorldwide" + }, + { + "name": "discord", + "url": "https://discord.com/invite/saitama" + }, + { + "name": "facebook", + "url": "https://facebook.com/groups/1275234186328559" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/saitama-inu-new/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/saitama-inu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCE958ECf2C752c74973e89674Faa30404b15A498/info.json b/blockchains/ethereum/assets/0xCE958ECf2C752c74973e89674Faa30404b15A498/info.json new file mode 100644 index 00000000..42ce49f9 --- /dev/null +++ b/blockchains/ethereum/assets/0xCE958ECf2C752c74973e89674Faa30404b15A498/info.json @@ -0,0 +1,11 @@ +{ + "name": "MaspToken", + "symbol": "MASP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCE958ECf2C752c74973e89674Faa30404b15A498", + "status": "abandoned", + "id": "0xCE958ECf2C752c74973e89674Faa30404b15A498" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCE958ECf2C752c74973e89674Faa30404b15A498/logo.png b/blockchains/ethereum/assets/0xCE958ECf2C752c74973e89674Faa30404b15A498/logo.png new file mode 100755 index 00000000..d7d5ea56 Binary files /dev/null and b/blockchains/ethereum/assets/0xCE958ECf2C752c74973e89674Faa30404b15A498/logo.png differ diff --git a/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/info.json b/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/info.json new file mode 100644 index 00000000..dca2f72f --- /dev/null +++ b/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/info.json @@ -0,0 +1,28 @@ +{ + "name": "Peter Pan", + "type": "ERC20", + "symbol": "PAN", + "decimals": 18, + "website": "https://peterpan.finance/", + "description": "Look no further than Peter Pan, the crypto meme coin that's taking the world by storm!", + "explorer": "https://etherscan.io/token/0xceba2a8f6ec221aeb5f3a7bcd15cbc7e6a387bfb", + "status": "active", + "id": "0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb", + "links": [ + { + "name": "x", + "url": "https://x.com/peterpan_erc20" + }, + { + "name": "telegram", + "url": "https://t.me/peterpancoineth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/peter-pan/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/logo.png b/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/logo.png new file mode 100644 index 00000000..c62f383e Binary files /dev/null and b/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/logo.png differ diff --git a/blockchains/ethereum/assets/0xCF078DA6e85389de507ceeDE0E3d217e457B9d49/info.json b/blockchains/ethereum/assets/0xCF078DA6e85389de507ceeDE0E3d217e457B9d49/info.json new file mode 100644 index 00000000..94eff8eb --- /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 00000000..fd681a68 Binary files /dev/null and b/blockchains/ethereum/assets/0xCF078DA6e85389de507ceeDE0E3d217e457B9d49/logo.png differ diff --git a/blockchains/ethereum/assets/0xCF3C8Be2e2C42331Da80EF210e9B1b307C03d36A/info.json b/blockchains/ethereum/assets/0xCF3C8Be2e2C42331Da80EF210e9B1b307C03d36A/info.json new file mode 100644 index 00000000..481c702c --- /dev/null +++ b/blockchains/ethereum/assets/0xCF3C8Be2e2C42331Da80EF210e9B1b307C03d36A/info.json @@ -0,0 +1,17 @@ +{ + "name": "BEPRO Network", + "website": "https://bepro.network", + "description": "A Code-as-a-Service protocol providing technology and support for blockchain-based applications", + "explorer": "https://etherscan.io/token/0xCF3C8Be2e2C42331Da80EF210e9B1b307C03d36A", + "type": "ERC20", + "symbol": "BEPRO", + "decimals": 18, + "status": "active", + "id": "0xCF3C8Be2e2C42331Da80EF210e9B1b307C03d36A", + "links": [ + { + "name": "github", + "url": "https://github.com/bepronetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCF3C8Be2e2C42331Da80EF210e9B1b307C03d36A/logo.png b/blockchains/ethereum/assets/0xCF3C8Be2e2C42331Da80EF210e9B1b307C03d36A/logo.png new file mode 100644 index 00000000..f6e96088 Binary files /dev/null and b/blockchains/ethereum/assets/0xCF3C8Be2e2C42331Da80EF210e9B1b307C03d36A/logo.png differ diff --git a/blockchains/ethereum/assets/0xCF67815ccE72E682Eb4429eCa46843bed81Ca739/info.json b/blockchains/ethereum/assets/0xCF67815ccE72E682Eb4429eCa46843bed81Ca739/info.json new file mode 100644 index 00000000..2602517a --- /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 00000000..9255cb77 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 new file mode 100644 index 00000000..02b95421 --- /dev/null +++ b/blockchains/ethereum/assets/0xCF67CEd76E8356366291246A9222169F4dBdBe64/info.json @@ -0,0 +1,21 @@ +{ + "name": "DICE.FINANCE", + "website": "https://dice.finance/", + "description": "An unstoppable bankroll drives casino for thousands of users and hundreds of applications. DICE.FINANCE empowers players, developers, game providers and agency to participate in a game marketplace that is open and accessible to all.", + "explorer": "https://etherscan.io/token/0xCF67CEd76E8356366291246A9222169F4dBdBe64", + "type": "ERC20", + "symbol": "DICE", + "decimals": 18, + "status": "active", + "id": "0xCF67CEd76E8356366291246A9222169F4dBdBe64", + "links": [ + { + "name": "x", + "url": "https://x.com/DiceFinance" + }, + { + "name": "whitepaper", + "url": "https://github.com/dice-finance/Whitepaper/blob/master/Dice.FinanceWP.md" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCF67CEd76E8356366291246A9222169F4dBdBe64/logo.png b/blockchains/ethereum/assets/0xCF67CEd76E8356366291246A9222169F4dBdBe64/logo.png new file mode 100644 index 00000000..83f61087 Binary files /dev/null and b/blockchains/ethereum/assets/0xCF67CEd76E8356366291246A9222169F4dBdBe64/logo.png differ diff --git a/blockchains/ethereum/assets/0xCF8335727B776d190f9D15a54E6B9B9348439eEE/info.json b/blockchains/ethereum/assets/0xCF8335727B776d190f9D15a54E6B9B9348439eEE/info.json new file mode 100644 index 00000000..ef4e73c3 --- /dev/null +++ b/blockchains/ethereum/assets/0xCF8335727B776d190f9D15a54E6B9B9348439eEE/info.json @@ -0,0 +1,37 @@ +{ + "name": "Whackd", + "type": "ERC20", + "symbol": "WHACKD", + "decimals": 18, + "website": "https://getwhackd.org/", + "description": "John McAfee's Hyper-deflationary Social Experiment Token", + "explorer": "https://etherscan.io/token/0xCF8335727B776d190f9D15a54E6B9B9348439eEE", + "status": "active", + "id": "0xCF8335727B776d190f9D15a54E6B9B9348439eEE", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WHACKDByMcAfeeBasedChat" + }, + { + "name": "github", + "url": "https://github.com/WHACKD-Token/WHACKD-ERC-20" + }, + { + "name": "discord", + "url": "https://discord.com/invite/gsVE7NNK" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/WHACKDMcAfee/" + }, + { + "name": "forum", + "url": "https://bitcointalk.org/index.php?topic=5351640" + }, + { + "name": "x", + "url": "https://x.com/TokenWhackd" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCF8335727B776d190f9D15a54E6B9B9348439eEE/logo.png b/blockchains/ethereum/assets/0xCF8335727B776d190f9D15a54E6B9B9348439eEE/logo.png new file mode 100644 index 00000000..5ae84547 Binary files /dev/null and b/blockchains/ethereum/assets/0xCF8335727B776d190f9D15a54E6B9B9348439eEE/logo.png differ diff --git a/blockchains/ethereum/assets/0xCF91b70017eABDE82c9671E30e5502D312eA6eb2/info.json b/blockchains/ethereum/assets/0xCF91b70017eABDE82c9671E30e5502D312eA6eb2/info.json new file mode 100644 index 00000000..e3e7ed4a --- /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 00000000..71c27883 Binary files /dev/null and b/blockchains/ethereum/assets/0xCF91b70017eABDE82c9671E30e5502D312eA6eb2/logo.png differ diff --git a/blockchains/ethereum/assets/0xCF9bBEE48B1e7D8Bf233Ade883dA8Ef7C5e91a45/info.json b/blockchains/ethereum/assets/0xCF9bBEE48B1e7D8Bf233Ade883dA8Ef7C5e91a45/info.json new file mode 100644 index 00000000..6cd8756d --- /dev/null +++ b/blockchains/ethereum/assets/0xCF9bBEE48B1e7D8Bf233Ade883dA8Ef7C5e91a45/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C572390", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCF9bBEE48B1e7D8Bf233Ade883dA8Ef7C5e91a45", + "status": "abandoned", + "id": "0xCF9bBEE48B1e7D8Bf233Ade883dA8Ef7C5e91a45" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCF9bBEE48B1e7D8Bf233Ade883dA8Ef7C5e91a45/logo.png b/blockchains/ethereum/assets/0xCF9bBEE48B1e7D8Bf233Ade883dA8Ef7C5e91a45/logo.png new file mode 100644 index 00000000..88b86126 Binary files /dev/null and b/blockchains/ethereum/assets/0xCF9bBEE48B1e7D8Bf233Ade883dA8Ef7C5e91a45/logo.png differ diff --git a/blockchains/ethereum/assets/0xCFAc2916Ec118a0252A7766C513eE7c71b384b5E/info.json b/blockchains/ethereum/assets/0xCFAc2916Ec118a0252A7766C513eE7c71b384b5E/info.json new file mode 100644 index 00000000..ed627930 --- /dev/null +++ b/blockchains/ethereum/assets/0xCFAc2916Ec118a0252A7766C513eE7c71b384b5E/info.json @@ -0,0 +1,11 @@ +{ + "name": "HoryouToken", + "symbol": "HYT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://tge.horyoutoken.io/", + "explorer": "https://etherscan.io/token/0xCFAc2916Ec118a0252A7766C513eE7c71b384b5E", + "status": "abandoned", + "id": "0xCFAc2916Ec118a0252A7766C513eE7c71b384b5E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCFAc2916Ec118a0252A7766C513eE7c71b384b5E/logo.png b/blockchains/ethereum/assets/0xCFAc2916Ec118a0252A7766C513eE7c71b384b5E/logo.png new file mode 100644 index 00000000..7d920b48 Binary files /dev/null and b/blockchains/ethereum/assets/0xCFAc2916Ec118a0252A7766C513eE7c71b384b5E/logo.png differ diff --git a/blockchains/ethereum/assets/0xCFBEA8df4966dCAa9f4358e1f8DeE3497214a51B/info.json b/blockchains/ethereum/assets/0xCFBEA8df4966dCAa9f4358e1f8DeE3497214a51B/info.json new file mode 100644 index 00000000..cde787a6 --- /dev/null +++ b/blockchains/ethereum/assets/0xCFBEA8df4966dCAa9f4358e1f8DeE3497214a51B/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TESTmg25", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCFBEA8df4966dCAa9f4358e1f8DeE3497214a51B", + "status": "abandoned", + "id": "0xCFBEA8df4966dCAa9f4358e1f8DeE3497214a51B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCFBEA8df4966dCAa9f4358e1f8DeE3497214a51B/logo.png b/blockchains/ethereum/assets/0xCFBEA8df4966dCAa9f4358e1f8DeE3497214a51B/logo.png new file mode 100644 index 00000000..e59ddb3a Binary files /dev/null and b/blockchains/ethereum/assets/0xCFBEA8df4966dCAa9f4358e1f8DeE3497214a51B/logo.png differ diff --git a/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/info.json b/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/info.json new file mode 100644 index 00000000..6370a731 --- /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 00000000..9817ae9b 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 00000000..92a86b2b --- /dev/null +++ b/blockchains/ethereum/assets/0xCa468554e5C0423Ee858fe3942c9568C51FcAa79/info.json @@ -0,0 +1,24 @@ +{ + "name": "Hims & Hers Health (Ondo Tokenized)", + "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 00000000..48d6c641 Binary files /dev/null and b/blockchains/ethereum/assets/0xCa468554e5C0423Ee858fe3942c9568C51FcAa79/logo.png differ diff --git a/blockchains/ethereum/assets/0xCa7A0Be200c7DE43438878EB54B8b5D31296fBd8/info.json b/blockchains/ethereum/assets/0xCa7A0Be200c7DE43438878EB54B8b5D31296fBd8/info.json new file mode 100644 index 00000000..b4dc5bee --- /dev/null +++ b/blockchains/ethereum/assets/0xCa7A0Be200c7DE43438878EB54B8b5D31296fBd8/info.json @@ -0,0 +1,11 @@ +{ + "name": "STANI", + "symbol": "STANI", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCa7A0Be200c7DE43438878EB54B8b5D31296fBd8", + "status": "abandoned", + "id": "0xCa7A0Be200c7DE43438878EB54B8b5D31296fBd8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCa7A0Be200c7DE43438878EB54B8b5D31296fBd8/logo.png b/blockchains/ethereum/assets/0xCa7A0Be200c7DE43438878EB54B8b5D31296fBd8/logo.png new file mode 100644 index 00000000..d614bcef Binary files /dev/null and b/blockchains/ethereum/assets/0xCa7A0Be200c7DE43438878EB54B8b5D31296fBd8/logo.png differ diff --git a/blockchains/ethereum/assets/0xCaBeC58a571979f9fE825885fcb8F7A93892eaB0/info.json b/blockchains/ethereum/assets/0xCaBeC58a571979f9fE825885fcb8F7A93892eaB0/info.json new file mode 100644 index 00000000..e1bd05b7 --- /dev/null +++ b/blockchains/ethereum/assets/0xCaBeC58a571979f9fE825885fcb8F7A93892eaB0/info.json @@ -0,0 +1,11 @@ +{ + "name": "United Bull Traders", + "symbol": "UNB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://unitedbulltraders.com/", + "explorer": "https://etherscan.io/token/0xCaBeC58a571979f9fE825885fcb8F7A93892eaB0", + "status": "abandoned", + "id": "0xCaBeC58a571979f9fE825885fcb8F7A93892eaB0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCaBeC58a571979f9fE825885fcb8F7A93892eaB0/logo.png b/blockchains/ethereum/assets/0xCaBeC58a571979f9fE825885fcb8F7A93892eaB0/logo.png new file mode 100644 index 00000000..1da8f698 Binary files /dev/null and b/blockchains/ethereum/assets/0xCaBeC58a571979f9fE825885fcb8F7A93892eaB0/logo.png differ diff --git a/blockchains/ethereum/assets/0xCaC9AAfb2cf51645Ae1ab4Fb1F35F07d42437f80/info.json b/blockchains/ethereum/assets/0xCaC9AAfb2cf51645Ae1ab4Fb1F35F07d42437f80/info.json new file mode 100644 index 00000000..6180d646 --- /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 00000000..29bfd0c5 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 00000000..082d242b --- /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 00000000..1e8b0d3c Binary files /dev/null and b/blockchains/ethereum/assets/0xCabD955322dfbf94C084929ac5E9Eca3fEB5556F/logo.png differ diff --git a/blockchains/ethereum/assets/0xCad2bAFF23327a45d42d82A78975BaC239632910/info.json b/blockchains/ethereum/assets/0xCad2bAFF23327a45d42d82A78975BaC239632910/info.json new file mode 100644 index 00000000..5fcef82e --- /dev/null +++ b/blockchains/ethereum/assets/0xCad2bAFF23327a45d42d82A78975BaC239632910/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg9500", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCad2bAFF23327a45d42d82A78975BaC239632910", + "status": "abandoned", + "id": "0xCad2bAFF23327a45d42d82A78975BaC239632910" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCad2bAFF23327a45d42d82A78975BaC239632910/logo.png b/blockchains/ethereum/assets/0xCad2bAFF23327a45d42d82A78975BaC239632910/logo.png new file mode 100644 index 00000000..f32716b1 Binary files /dev/null and b/blockchains/ethereum/assets/0xCad2bAFF23327a45d42d82A78975BaC239632910/logo.png differ diff --git a/blockchains/ethereum/assets/0xCae72A7A0Fd9046cf6b165CA54c9e3a3872109E0/info.json b/blockchains/ethereum/assets/0xCae72A7A0Fd9046cf6b165CA54c9e3a3872109E0/info.json new file mode 100644 index 00000000..c9e908dc --- /dev/null +++ b/blockchains/ethereum/assets/0xCae72A7A0Fd9046cf6b165CA54c9e3a3872109E0/info.json @@ -0,0 +1,17 @@ +{ + "name": "AnRKey X", + "website": "https://anrkeyx.io/", + "coinmarketcap": "https://coinmarketcap.com/currencies/anrkey-x/", + "coingecko": "https://www.coingecko.com/en/coins/anrkey-x", + "medium": "https://medium.com/@anrkeyx", + "Telegram": "https://t.me/anrkeyxofficial", + "Discord": "https://discord.gg/YrMJYmW", + "short_description": "AnRKey X™ combines DeFi and Esports gaming for users to compete, purchase and stake unique NFTs and win valuable rewards", + "description": "AnRKey X™ combines DeFi and Esports gaming for users to compete, purchase and stake unique NFTs and win valuable rewards. We are the first to attach a proprietary and underlying economic mathematical logic model to NFTs in order to derive a true and accurate monetary base value ($) in real time – which we call Derived Base Value", + "explorer": "https://etherscan.io/token/0xcae72a7a0fd9046cf6b165ca54c9e3a3872109e0", + "type": "ERC20", + "symbol": "$ANRX", + "decimals": 18, + "status": "active", + "id": "0xCae72A7A0Fd9046cf6b165CA54c9e3a3872109E0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCae72A7A0Fd9046cf6b165CA54c9e3a3872109E0/logo.png b/blockchains/ethereum/assets/0xCae72A7A0Fd9046cf6b165CA54c9e3a3872109E0/logo.png new file mode 100644 index 00000000..fd4aacfc Binary files /dev/null and b/blockchains/ethereum/assets/0xCae72A7A0Fd9046cf6b165CA54c9e3a3872109E0/logo.png differ diff --git a/blockchains/ethereum/assets/0xCb1A4Cd233e06B61829fFA4093248B8b16bFF68F/info.json b/blockchains/ethereum/assets/0xCb1A4Cd233e06B61829fFA4093248B8b16bFF68F/info.json new file mode 100644 index 00000000..3d74f57f --- /dev/null +++ b/blockchains/ethereum/assets/0xCb1A4Cd233e06B61829fFA4093248B8b16bFF68F/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C507213", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCb1A4Cd233e06B61829fFA4093248B8b16bFF68F", + "status": "abandoned", + "id": "0xCb1A4Cd233e06B61829fFA4093248B8b16bFF68F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCb1A4Cd233e06B61829fFA4093248B8b16bFF68F/logo.png b/blockchains/ethereum/assets/0xCb1A4Cd233e06B61829fFA4093248B8b16bFF68F/logo.png new file mode 100644 index 00000000..e400e6a2 Binary files /dev/null and b/blockchains/ethereum/assets/0xCb1A4Cd233e06B61829fFA4093248B8b16bFF68F/logo.png differ diff --git a/blockchains/ethereum/assets/0xCb39C3502415152b2ec90ff07ee18cc94f681a72/info.json b/blockchains/ethereum/assets/0xCb39C3502415152b2ec90ff07ee18cc94f681a72/info.json new file mode 100644 index 00000000..34c1b329 --- /dev/null +++ b/blockchains/ethereum/assets/0xCb39C3502415152b2ec90ff07ee18cc94f681a72/info.json @@ -0,0 +1,11 @@ +{ + "name": "storeum", + "symbol": "STO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://storeum.co/", + "explorer": "https://etherscan.io/token/0xCb39C3502415152b2ec90ff07ee18cc94f681a72", + "status": "abandoned", + "id": "0xCb39C3502415152b2ec90ff07ee18cc94f681a72" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCb39C3502415152b2ec90ff07ee18cc94f681a72/logo.png b/blockchains/ethereum/assets/0xCb39C3502415152b2ec90ff07ee18cc94f681a72/logo.png new file mode 100644 index 00000000..3854f337 Binary files /dev/null and b/blockchains/ethereum/assets/0xCb39C3502415152b2ec90ff07ee18cc94f681a72/logo.png differ diff --git a/blockchains/ethereum/assets/0xCb5ea3c190d8f82DEADF7ce5Af855dDbf33e3962/info.json b/blockchains/ethereum/assets/0xCb5ea3c190d8f82DEADF7ce5Af855dDbf33e3962/info.json new file mode 100644 index 00000000..8357497f --- /dev/null +++ b/blockchains/ethereum/assets/0xCb5ea3c190d8f82DEADF7ce5Af855dDbf33e3962/info.json @@ -0,0 +1,11 @@ +{ + "name": "Qubitica", + "symbol": "QBIT", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCb5ea3c190d8f82DEADF7ce5Af855dDbf33e3962", + "status": "abandoned", + "id": "0xCb5ea3c190d8f82DEADF7ce5Af855dDbf33e3962" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCb5ea3c190d8f82DEADF7ce5Af855dDbf33e3962/logo.png b/blockchains/ethereum/assets/0xCb5ea3c190d8f82DEADF7ce5Af855dDbf33e3962/logo.png new file mode 100755 index 00000000..ba3c337a Binary files /dev/null and b/blockchains/ethereum/assets/0xCb5ea3c190d8f82DEADF7ce5Af855dDbf33e3962/logo.png differ diff --git a/blockchains/ethereum/assets/0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E/info.json b/blockchains/ethereum/assets/0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E/info.json new file mode 100644 index 00000000..38b9d3b3 --- /dev/null +++ b/blockchains/ethereum/assets/0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E/info.json @@ -0,0 +1,29 @@ +{ + "name": "Rootkit Finance", + "website": "https://rootkit.finance/#/", + "description": "Rootkit (ROOT) is a highly deflationary, yield-farmable token that uses permanently locked liquidity pools to unlock new possibilities.", + "explorer": "https://etherscan.io/token/0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E", + "type": "ERC20", + "symbol": "ROOT", + "decimals": 18, + "status": "active", + "id": "0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E", + "links": [ + { + "name": "github", + "url": "https://github.com/RootkitFinance" + }, + { + "name": "x", + "url": "https://x.com/rootkitfinance" + }, + { + "name": "telegram", + "url": "https://t.me/rootkitfinanceann" + }, + { + "name": "medium", + "url": "https://rootkitfinance.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E/logo.png b/blockchains/ethereum/assets/0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E/logo.png new file mode 100644 index 00000000..bcee72ca Binary files /dev/null and b/blockchains/ethereum/assets/0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E/logo.png differ diff --git a/blockchains/ethereum/assets/0xCb76314C2540199f4B844D4ebbC7998C604880cA/info.json b/blockchains/ethereum/assets/0xCb76314C2540199f4B844D4ebbC7998C604880cA/info.json new file mode 100644 index 00000000..64965de4 --- /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 00000000..8b61f659 Binary files /dev/null and b/blockchains/ethereum/assets/0xCb76314C2540199f4B844D4ebbC7998C604880cA/logo.png differ diff --git a/blockchains/ethereum/assets/0xCb94be6f13A1182E4A4B6140cb7bf2025d28e41B/info.json b/blockchains/ethereum/assets/0xCb94be6f13A1182E4A4B6140cb7bf2025d28e41B/info.json new file mode 100644 index 00000000..aea43045 --- /dev/null +++ b/blockchains/ethereum/assets/0xCb94be6f13A1182E4A4B6140cb7bf2025d28e41B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trustcoin", + "symbol": "TRST", + "type": "ERC20", + "decimals": 6, + "description": "WeTrust is a collaborative saving and insurance platform. It is autonomous, frictionless, and decentralized. WeTrust utilizes the Ethereum blockchain to create a full-stack financial system that leverages existing social capital and trust networks, eliminating the need of a 'trusted third party', which allows for lower fees, improved incentive structures, decentralized risks, and a greater amount of capital to reside among the participants.", + "website": "https://www.wetrust.io/", + "explorer": "https://etherscan.io/token/0xCb94be6f13A1182E4A4B6140cb7bf2025d28e41B", + "status": "active", + "id": "0xCb94be6f13A1182E4A4B6140cb7bf2025d28e41B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCb94be6f13A1182E4A4B6140cb7bf2025d28e41B/logo.png b/blockchains/ethereum/assets/0xCb94be6f13A1182E4A4B6140cb7bf2025d28e41B/logo.png new file mode 100644 index 00000000..80f9280f Binary files /dev/null and b/blockchains/ethereum/assets/0xCb94be6f13A1182E4A4B6140cb7bf2025d28e41B/logo.png differ diff --git a/blockchains/ethereum/assets/0xCbE7Fd2dD15f54Bc4Cee790c5c14240e7DDEA644/info.json b/blockchains/ethereum/assets/0xCbE7Fd2dD15f54Bc4Cee790c5c14240e7DDEA644/info.json new file mode 100644 index 00000000..8fc25c82 --- /dev/null +++ b/blockchains/ethereum/assets/0xCbE7Fd2dD15f54Bc4Cee790c5c14240e7DDEA644/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kipple", + "symbol": "KIPPLE", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCbE7Fd2dD15f54Bc4Cee790c5c14240e7DDEA644", + "status": "abandoned", + "id": "0xCbE7Fd2dD15f54Bc4Cee790c5c14240e7DDEA644" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCbE7Fd2dD15f54Bc4Cee790c5c14240e7DDEA644/logo.png b/blockchains/ethereum/assets/0xCbE7Fd2dD15f54Bc4Cee790c5c14240e7DDEA644/logo.png new file mode 100644 index 00000000..36d68688 Binary files /dev/null and b/blockchains/ethereum/assets/0xCbE7Fd2dD15f54Bc4Cee790c5c14240e7DDEA644/logo.png differ diff --git a/blockchains/ethereum/assets/0xCbfef8fdd706cde6F208460f2Bf39Aa9c785F05D/info.json b/blockchains/ethereum/assets/0xCbfef8fdd706cde6F208460f2Bf39Aa9c785F05D/info.json new file mode 100644 index 00000000..70563d00 --- /dev/null +++ b/blockchains/ethereum/assets/0xCbfef8fdd706cde6F208460f2Bf39Aa9c785F05D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kine Governance Token", + "website": "https://kine.io", + "description": "Kine is a decentralized protocol which establishes general purpose liquidity pools backed by a customizable portfolio of digital assets. The liquidity pool allows traders to open and close derivatives positions according to trusted price feeds, avoiding the need of counterparties.", + "explorer": "https://etherscan.io/token/0xcbfef8fdd706cde6f208460f2bf39aa9c785f05d", + "type": "ERC20", + "symbol": "KINE", + "decimals": 18, + "status": "active", + "id": "0xCbfef8fdd706cde6F208460f2Bf39Aa9c785F05D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCbfef8fdd706cde6F208460f2Bf39Aa9c785F05D/logo.png b/blockchains/ethereum/assets/0xCbfef8fdd706cde6F208460f2Bf39Aa9c785F05D/logo.png new file mode 100644 index 00000000..999a733a Binary files /dev/null and b/blockchains/ethereum/assets/0xCbfef8fdd706cde6F208460f2Bf39Aa9c785F05D/logo.png differ diff --git a/blockchains/ethereum/assets/0xCc13Fc627EFfd6E35D2D2706Ea3C4D7396c610ea/info.json b/blockchains/ethereum/assets/0xCc13Fc627EFfd6E35D2D2706Ea3C4D7396c610ea/info.json new file mode 100644 index 00000000..15e1d0b9 --- /dev/null +++ b/blockchains/ethereum/assets/0xCc13Fc627EFfd6E35D2D2706Ea3C4D7396c610ea/info.json @@ -0,0 +1,11 @@ +{ + "name": "IDEX Membership", + "symbol": "IDXM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://auroradao.com/platform/idex/", + "explorer": "https://etherscan.io/token/0xCc13Fc627EFfd6E35D2D2706Ea3C4D7396c610ea", + "status": "abandoned", + "id": "0xCc13Fc627EFfd6E35D2D2706Ea3C4D7396c610ea" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCc13Fc627EFfd6E35D2D2706Ea3C4D7396c610ea/logo.png b/blockchains/ethereum/assets/0xCc13Fc627EFfd6E35D2D2706Ea3C4D7396c610ea/logo.png new file mode 100644 index 00000000..39a050e9 Binary files /dev/null and b/blockchains/ethereum/assets/0xCc13Fc627EFfd6E35D2D2706Ea3C4D7396c610ea/logo.png differ diff --git a/blockchains/ethereum/assets/0xCc2AD789f459Bc73e5Fb33364964B658a62C1Ee7/info.json b/blockchains/ethereum/assets/0xCc2AD789f459Bc73e5Fb33364964B658a62C1Ee7/info.json new file mode 100644 index 00000000..e033f4c8 --- /dev/null +++ b/blockchains/ethereum/assets/0xCc2AD789f459Bc73e5Fb33364964B658a62C1Ee7/info.json @@ -0,0 +1,11 @@ +{ + "name": "NioShares", + "symbol": "NIO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCc2AD789f459Bc73e5Fb33364964B658a62C1Ee7", + "status": "abandoned", + "id": "0xCc2AD789f459Bc73e5Fb33364964B658a62C1Ee7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCc2AD789f459Bc73e5Fb33364964B658a62C1Ee7/logo.png b/blockchains/ethereum/assets/0xCc2AD789f459Bc73e5Fb33364964B658a62C1Ee7/logo.png new file mode 100644 index 00000000..98ccf406 Binary files /dev/null and b/blockchains/ethereum/assets/0xCc2AD789f459Bc73e5Fb33364964B658a62C1Ee7/logo.png differ diff --git a/blockchains/ethereum/assets/0xCc2a74b28E786Fac86bE3CA354B1941c25aB3EaB/info.json b/blockchains/ethereum/assets/0xCc2a74b28E786Fac86bE3CA354B1941c25aB3EaB/info.json new file mode 100644 index 00000000..17d3fd38 --- /dev/null +++ b/blockchains/ethereum/assets/0xCc2a74b28E786Fac86bE3CA354B1941c25aB3EaB/info.json @@ -0,0 +1,11 @@ +{ + "name": "GABO", + "symbol": "GBO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCc2a74b28E786Fac86bE3CA354B1941c25aB3EaB", + "status": "abandoned", + "id": "0xCc2a74b28E786Fac86bE3CA354B1941c25aB3EaB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCc2a74b28E786Fac86bE3CA354B1941c25aB3EaB/logo.png b/blockchains/ethereum/assets/0xCc2a74b28E786Fac86bE3CA354B1941c25aB3EaB/logo.png new file mode 100755 index 00000000..94466101 Binary files /dev/null and b/blockchains/ethereum/assets/0xCc2a74b28E786Fac86bE3CA354B1941c25aB3EaB/logo.png differ diff --git a/blockchains/ethereum/assets/0xCc34366E3842cA1BD36c1f324d15257960fCC801/info.json b/blockchains/ethereum/assets/0xCc34366E3842cA1BD36c1f324d15257960fCC801/info.json new file mode 100644 index 00000000..97b1b4b9 --- /dev/null +++ b/blockchains/ethereum/assets/0xCc34366E3842cA1BD36c1f324d15257960fCC801/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bonpay Token", + "symbol": "BON", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bonpay.com/", + "explorer": "https://etherscan.io/token/0xCc34366E3842cA1BD36c1f324d15257960fCC801", + "status": "active", + "id": "0xCc34366E3842cA1BD36c1f324d15257960fCC801" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCc34366E3842cA1BD36c1f324d15257960fCC801/logo.png b/blockchains/ethereum/assets/0xCc34366E3842cA1BD36c1f324d15257960fCC801/logo.png new file mode 100644 index 00000000..a62bbbac Binary files /dev/null and b/blockchains/ethereum/assets/0xCc34366E3842cA1BD36c1f324d15257960fCC801/logo.png differ diff --git a/blockchains/ethereum/assets/0xCc394f10545AeEf24483d2347B32A34a44F20E6F/info.json b/blockchains/ethereum/assets/0xCc394f10545AeEf24483d2347B32A34a44F20E6F/info.json new file mode 100644 index 00000000..221497be --- /dev/null +++ b/blockchains/ethereum/assets/0xCc394f10545AeEf24483d2347B32A34a44F20E6F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vault Guardian Token", + "symbol": "VGT", + "type": "ERC20", + "decimals": 18, + "description": "Vault12 platform safeguards your crypto assets by harnessing your very own network of trusted people.", + "website": "https://vault12.com", + "explorer": "https://etherscan.io/token/0xCc394f10545AeEf24483d2347B32A34a44F20E6F", + "status": "active", + "id": "0xCc394f10545AeEf24483d2347B32A34a44F20E6F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCc394f10545AeEf24483d2347B32A34a44F20E6F/logo.png b/blockchains/ethereum/assets/0xCc394f10545AeEf24483d2347B32A34a44F20E6F/logo.png new file mode 100644 index 00000000..24471412 Binary files /dev/null and b/blockchains/ethereum/assets/0xCc394f10545AeEf24483d2347B32A34a44F20E6F/logo.png differ diff --git a/blockchains/ethereum/assets/0xCc80C051057B774cD75067Dc48f8987C4Eb97A5e/info.json b/blockchains/ethereum/assets/0xCc80C051057B774cD75067Dc48f8987C4Eb97A5e/info.json new file mode 100644 index 00000000..2da8dc88 --- /dev/null +++ b/blockchains/ethereum/assets/0xCc80C051057B774cD75067Dc48f8987C4Eb97A5e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nectar", + "website": "https://nectar.community", + "description": "Nectar serves as the native utility and governance token of decentralised exchange DeversiFi.", + "explorer": "https://etherscan.io/token/0xCc80C051057B774cD75067Dc48f8987C4Eb97A5e", + "type": "ERC20", + "symbol": "NEC", + "decimals": 18, + "status": "active", + "id": "0xCc80C051057B774cD75067Dc48f8987C4Eb97A5e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCc80C051057B774cD75067Dc48f8987C4Eb97A5e/logo.png b/blockchains/ethereum/assets/0xCc80C051057B774cD75067Dc48f8987C4Eb97A5e/logo.png new file mode 100644 index 00000000..d28ea89e Binary files /dev/null and b/blockchains/ethereum/assets/0xCc80C051057B774cD75067Dc48f8987C4Eb97A5e/logo.png differ diff --git a/blockchains/ethereum/assets/0xCcB4622CdCe3b25F9230f496B8aea6b68Cb50535/info.json b/blockchains/ethereum/assets/0xCcB4622CdCe3b25F9230f496B8aea6b68Cb50535/info.json new file mode 100644 index 00000000..b5852662 --- /dev/null +++ b/blockchains/ethereum/assets/0xCcB4622CdCe3b25F9230f496B8aea6b68Cb50535/info.json @@ -0,0 +1,11 @@ +{ + "name": "SIM", + "symbol": "SIM", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCcB4622CdCe3b25F9230f496B8aea6b68Cb50535", + "status": "abandoned", + "id": "0xCcB4622CdCe3b25F9230f496B8aea6b68Cb50535" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCcB4622CdCe3b25F9230f496B8aea6b68Cb50535/logo.png b/blockchains/ethereum/assets/0xCcB4622CdCe3b25F9230f496B8aea6b68Cb50535/logo.png new file mode 100644 index 00000000..95dbda85 Binary files /dev/null and b/blockchains/ethereum/assets/0xCcB4622CdCe3b25F9230f496B8aea6b68Cb50535/logo.png differ diff --git a/blockchains/ethereum/assets/0xCcc85AA8999505d6f886A32da4a107BBe0D1dE9E/info.json b/blockchains/ethereum/assets/0xCcc85AA8999505d6f886A32da4a107BBe0D1dE9E/info.json new file mode 100644 index 00000000..19722a1b --- /dev/null +++ b/blockchains/ethereum/assets/0xCcc85AA8999505d6f886A32da4a107BBe0D1dE9E/info.json @@ -0,0 +1,11 @@ +{ + "name": "REPE", + "symbol": "RPE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCcc85AA8999505d6f886A32da4a107BBe0D1dE9E", + "status": "abandoned", + "id": "0xCcc85AA8999505d6f886A32da4a107BBe0D1dE9E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCcc85AA8999505d6f886A32da4a107BBe0D1dE9E/logo.png b/blockchains/ethereum/assets/0xCcc85AA8999505d6f886A32da4a107BBe0D1dE9E/logo.png new file mode 100644 index 00000000..e0ba197d Binary files /dev/null and b/blockchains/ethereum/assets/0xCcc85AA8999505d6f886A32da4a107BBe0D1dE9E/logo.png differ diff --git a/blockchains/ethereum/assets/0xCcc9545ea5838f7d6d34DcDa1Bc39d2D077F7Cde/info.json b/blockchains/ethereum/assets/0xCcc9545ea5838f7d6d34DcDa1Bc39d2D077F7Cde/info.json new file mode 100644 index 00000000..a5384858 --- /dev/null +++ b/blockchains/ethereum/assets/0xCcc9545ea5838f7d6d34DcDa1Bc39d2D077F7Cde/info.json @@ -0,0 +1,11 @@ +{ + "name": "GLORY TOKEN", + "symbol": "GLORY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCcc9545ea5838f7d6d34DcDa1Bc39d2D077F7Cde", + "status": "abandoned", + "id": "0xCcc9545ea5838f7d6d34DcDa1Bc39d2D077F7Cde" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCcc9545ea5838f7d6d34DcDa1Bc39d2D077F7Cde/logo.png b/blockchains/ethereum/assets/0xCcc9545ea5838f7d6d34DcDa1Bc39d2D077F7Cde/logo.png new file mode 100644 index 00000000..ce7834c9 Binary files /dev/null and b/blockchains/ethereum/assets/0xCcc9545ea5838f7d6d34DcDa1Bc39d2D077F7Cde/logo.png differ diff --git a/blockchains/ethereum/assets/0xCd2828fc4D8E8a0eDe91bB38CF64B1a81De65Bf6/info.json b/blockchains/ethereum/assets/0xCd2828fc4D8E8a0eDe91bB38CF64B1a81De65Bf6/info.json new file mode 100644 index 00000000..768a4750 --- /dev/null +++ b/blockchains/ethereum/assets/0xCd2828fc4D8E8a0eDe91bB38CF64B1a81De65Bf6/info.json @@ -0,0 +1,40 @@ +{ + "name": "OddzToken", + "symbol": "ODDZ", + "type": "ERC20", + "decimals": 18, + "description": "Oddz is the World’s first multi-chain options and derivatives trading protocol to be deployed on the Binance Smart Chain, Polkadot, and Ethereum.", + "website": "https://oddz.fi/", + "explorer": "https://etherscan.io/token/0xCd2828fc4D8E8a0eDe91bB38CF64B1a81De65Bf6", + "status": "active", + "id": "0xCd2828fc4D8E8a0eDe91bB38CF64B1a81De65Bf6", + "links": [ + { + "name": "telegram", + "url": "https://t.me/oddz_fi_announcements" + }, + { + "name": "x", + "url": "https://x.com/oddz_finance" + }, + { + "name": "facebook", + "url": "https://facebook.com/Oddz.fi" + }, + { + "name": "whitepaper", + "url": "https://docsend.com/view/mefxr8h3ymzuhwqk" + }, + { + "name": "github", + "url": "https://github.com/oddz-finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oddz/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCd2828fc4D8E8a0eDe91bB38CF64B1a81De65Bf6/logo.png b/blockchains/ethereum/assets/0xCd2828fc4D8E8a0eDe91bB38CF64B1a81De65Bf6/logo.png new file mode 100644 index 00000000..e80daa2e Binary files /dev/null and b/blockchains/ethereum/assets/0xCd2828fc4D8E8a0eDe91bB38CF64B1a81De65Bf6/logo.png differ diff --git a/blockchains/ethereum/assets/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee/info.json b/blockchains/ethereum/assets/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee/info.json new file mode 100644 index 00000000..eeb5ca19 --- /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 00000000..4cf7b8f1 Binary files /dev/null and b/blockchains/ethereum/assets/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee/logo.png differ diff --git a/blockchains/ethereum/assets/0xCd64aA18dDbCe84411aDBfe6da49354ba5187a45/info.json b/blockchains/ethereum/assets/0xCd64aA18dDbCe84411aDBfe6da49354ba5187a45/info.json new file mode 100644 index 00000000..cc0c3a94 --- /dev/null +++ b/blockchains/ethereum/assets/0xCd64aA18dDbCe84411aDBfe6da49354ba5187a45/info.json @@ -0,0 +1,11 @@ +{ + "name": "Korbot", + "symbol": "KBOT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.korbot.io/", + "explorer": "https://etherscan.io/token/0xCd64aA18dDbCe84411aDBfe6da49354ba5187a45", + "status": "abandoned", + "id": "0xCd64aA18dDbCe84411aDBfe6da49354ba5187a45" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCd64aA18dDbCe84411aDBfe6da49354ba5187a45/logo.png b/blockchains/ethereum/assets/0xCd64aA18dDbCe84411aDBfe6da49354ba5187a45/logo.png new file mode 100644 index 00000000..a2245203 Binary files /dev/null and b/blockchains/ethereum/assets/0xCd64aA18dDbCe84411aDBfe6da49354ba5187a45/logo.png differ diff --git a/blockchains/ethereum/assets/0xCdCFc0f66c522Fd086A1b725ea3c0Eeb9F9e8814/info.json b/blockchains/ethereum/assets/0xCdCFc0f66c522Fd086A1b725ea3c0Eeb9F9e8814/info.json new file mode 100644 index 00000000..e745c3e3 --- /dev/null +++ b/blockchains/ethereum/assets/0xCdCFc0f66c522Fd086A1b725ea3c0Eeb9F9e8814/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aurora DAO", + "symbol": "AURA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCdCFc0f66c522Fd086A1b725ea3c0Eeb9F9e8814", + "status": "abandoned", + "id": "0xCdCFc0f66c522Fd086A1b725ea3c0Eeb9F9e8814" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCdCFc0f66c522Fd086A1b725ea3c0Eeb9F9e8814/logo.png b/blockchains/ethereum/assets/0xCdCFc0f66c522Fd086A1b725ea3c0Eeb9F9e8814/logo.png new file mode 100755 index 00000000..a4a4d7cf Binary files /dev/null and b/blockchains/ethereum/assets/0xCdCFc0f66c522Fd086A1b725ea3c0Eeb9F9e8814/logo.png differ diff --git a/blockchains/ethereum/assets/0xCdD7027447bC557AB926764e096DaDE96050a86e/info.json b/blockchains/ethereum/assets/0xCdD7027447bC557AB926764e096DaDE96050a86e/info.json new file mode 100644 index 00000000..e5345d7e --- /dev/null +++ b/blockchains/ethereum/assets/0xCdD7027447bC557AB926764e096DaDE96050a86e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Galaxium Coin", + "symbol": "GXM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCdD7027447bC557AB926764e096DaDE96050a86e", + "status": "abandoned", + "id": "0xCdD7027447bC557AB926764e096DaDE96050a86e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCdD7027447bC557AB926764e096DaDE96050a86e/logo.png b/blockchains/ethereum/assets/0xCdD7027447bC557AB926764e096DaDE96050a86e/logo.png new file mode 100755 index 00000000..c19646a3 Binary files /dev/null and b/blockchains/ethereum/assets/0xCdD7027447bC557AB926764e096DaDE96050a86e/logo.png differ diff --git a/blockchains/ethereum/assets/0xCdF7028ceAB81fA0C6971208e83fa7872994beE5/info.json b/blockchains/ethereum/assets/0xCdF7028ceAB81fA0C6971208e83fa7872994beE5/info.json new file mode 100644 index 00000000..95459c41 --- /dev/null +++ b/blockchains/ethereum/assets/0xCdF7028ceAB81fA0C6971208e83fa7872994beE5/info.json @@ -0,0 +1,28 @@ +{ + "name": "Threshold Network Token", + "type": "ERC20", + "symbol": "T", + "decimals": 18, + "website": "https://threshold.network/", + "description": "Threshold Network is the home of $tBTC v2, proxy re-encryption #PRE, $thUSD, and all threshold cryptography.", + "explorer": "https://etherscan.io/token/0xCdF7028ceAB81fA0C6971208e83fa7872994beE5", + "status": "active", + "id": "0xCdF7028ceAB81fA0C6971208e83fa7872994beE5", + "links": [ + { + "name": "github", + "url": "https://github.com/keep-network/tbtc-v2" + }, + { + "name": "telegram", + "url": "https://t.me/thresholdnetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/threshold/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCdF7028ceAB81fA0C6971208e83fa7872994beE5/logo.png b/blockchains/ethereum/assets/0xCdF7028ceAB81fA0C6971208e83fa7872994beE5/logo.png new file mode 100644 index 00000000..90553a43 Binary files /dev/null and b/blockchains/ethereum/assets/0xCdF7028ceAB81fA0C6971208e83fa7872994beE5/logo.png differ diff --git a/blockchains/ethereum/assets/0xCda907B126375B914DBa39AC2518230dc95D315C/info.json b/blockchains/ethereum/assets/0xCda907B126375B914DBa39AC2518230dc95D315C/info.json new file mode 100644 index 00000000..309d3535 --- /dev/null +++ b/blockchains/ethereum/assets/0xCda907B126375B914DBa39AC2518230dc95D315C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nlife", + "symbol": "Nlife", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://nlife.io", + "explorer": "https://etherscan.io/token/0xCda907B126375B914DBa39AC2518230dc95D315C", + "status": "abandoned", + "id": "0xCda907B126375B914DBa39AC2518230dc95D315C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCda907B126375B914DBa39AC2518230dc95D315C/logo.png b/blockchains/ethereum/assets/0xCda907B126375B914DBa39AC2518230dc95D315C/logo.png new file mode 100644 index 00000000..69bc4788 Binary files /dev/null and b/blockchains/ethereum/assets/0xCda907B126375B914DBa39AC2518230dc95D315C/logo.png differ diff --git a/blockchains/ethereum/assets/0xCe49c3c92b33a1653F34811a9d7e34502bF12B89/info.json b/blockchains/ethereum/assets/0xCe49c3c92b33a1653F34811a9d7e34502bF12B89/info.json new file mode 100644 index 00000000..01a3156d --- /dev/null +++ b/blockchains/ethereum/assets/0xCe49c3c92b33a1653F34811a9d7e34502bF12B89/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Short Bitcoin SV Token", + "symbol": "BSVBEAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ftx.com/tokens/BSVBEAR", + "explorer": "https://etherscan.io/token/0xCe49c3c92b33a1653F34811a9d7e34502bF12B89", + "status": "abandoned", + "id": "0xCe49c3c92b33a1653F34811a9d7e34502bF12B89" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCe49c3c92b33a1653F34811a9d7e34502bF12B89/logo.png b/blockchains/ethereum/assets/0xCe49c3c92b33a1653F34811a9d7e34502bF12B89/logo.png new file mode 100644 index 00000000..a8cc1f57 Binary files /dev/null and b/blockchains/ethereum/assets/0xCe49c3c92b33a1653F34811a9d7e34502bF12B89/logo.png differ diff --git a/blockchains/ethereum/assets/0xCe53a179047ebed80261689367c093C90A94cC08/info.json b/blockchains/ethereum/assets/0xCe53a179047ebed80261689367c093C90A94cC08/info.json new file mode 100644 index 00000000..b6e3be0e --- /dev/null +++ b/blockchains/ethereum/assets/0xCe53a179047ebed80261689367c093C90A94cC08/info.json @@ -0,0 +1,11 @@ +{ + "name": "EDT", + "symbol": "EDT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCe53a179047ebed80261689367c093C90A94cC08", + "status": "abandoned", + "id": "0xCe53a179047ebed80261689367c093C90A94cC08" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCe53a179047ebed80261689367c093C90A94cC08/logo.png b/blockchains/ethereum/assets/0xCe53a179047ebed80261689367c093C90A94cC08/logo.png new file mode 100644 index 00000000..77175dd3 Binary files /dev/null and b/blockchains/ethereum/assets/0xCe53a179047ebed80261689367c093C90A94cC08/logo.png differ diff --git a/blockchains/ethereum/assets/0xCeD4E93198734dDaFf8492d525Bd258D49eb388E/info.json b/blockchains/ethereum/assets/0xCeD4E93198734dDaFf8492d525Bd258D49eb388E/info.json new file mode 100644 index 00000000..caa5de56 --- /dev/null +++ b/blockchains/ethereum/assets/0xCeD4E93198734dDaFf8492d525Bd258D49eb388E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eidoo Token", + "symbol": "EDO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://eidoo.io/", + "explorer": "https://etherscan.io/token/0xCeD4E93198734dDaFf8492d525Bd258D49eb388E", + "status": "abandoned", + "id": "0xCeD4E93198734dDaFf8492d525Bd258D49eb388E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCeD4E93198734dDaFf8492d525Bd258D49eb388E/logo.png b/blockchains/ethereum/assets/0xCeD4E93198734dDaFf8492d525Bd258D49eb388E/logo.png new file mode 100644 index 00000000..a89c9d40 Binary files /dev/null and b/blockchains/ethereum/assets/0xCeD4E93198734dDaFf8492d525Bd258D49eb388E/logo.png differ diff --git a/blockchains/ethereum/assets/0xCeE4019Fd41ECDc8bae9EFDd20510f4b6FAA6197/info.json b/blockchains/ethereum/assets/0xCeE4019Fd41ECDc8bae9EFDd20510f4b6FAA6197/info.json new file mode 100644 index 00000000..68ff4f71 --- /dev/null +++ b/blockchains/ethereum/assets/0xCeE4019Fd41ECDc8bae9EFDd20510f4b6FAA6197/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nollya Coin", + "symbol": "NLYA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCeE4019Fd41ECDc8bae9EFDd20510f4b6FAA6197", + "status": "abandoned", + "id": "0xCeE4019Fd41ECDc8bae9EFDd20510f4b6FAA6197" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCeE4019Fd41ECDc8bae9EFDd20510f4b6FAA6197/logo.png b/blockchains/ethereum/assets/0xCeE4019Fd41ECDc8bae9EFDd20510f4b6FAA6197/logo.png new file mode 100644 index 00000000..49696acc Binary files /dev/null and b/blockchains/ethereum/assets/0xCeE4019Fd41ECDc8bae9EFDd20510f4b6FAA6197/logo.png differ diff --git a/blockchains/ethereum/assets/0xCf0de5799513cF5BbCF15A28178C4F13cEb8a5cd/info.json b/blockchains/ethereum/assets/0xCf0de5799513cF5BbCF15A28178C4F13cEb8a5cd/info.json new file mode 100644 index 00000000..9300e490 --- /dev/null +++ b/blockchains/ethereum/assets/0xCf0de5799513cF5BbCF15A28178C4F13cEb8a5cd/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C491158", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCf0de5799513cF5BbCF15A28178C4F13cEb8a5cd", + "status": "abandoned", + "id": "0xCf0de5799513cF5BbCF15A28178C4F13cEb8a5cd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCf0de5799513cF5BbCF15A28178C4F13cEb8a5cd/logo.png b/blockchains/ethereum/assets/0xCf0de5799513cF5BbCF15A28178C4F13cEb8a5cd/logo.png new file mode 100644 index 00000000..74d277f7 Binary files /dev/null and b/blockchains/ethereum/assets/0xCf0de5799513cF5BbCF15A28178C4F13cEb8a5cd/logo.png differ diff --git a/blockchains/ethereum/assets/0xCf5dfE6e2fA63AF41E9C01df75e79D3FDa69B5f3/info.json b/blockchains/ethereum/assets/0xCf5dfE6e2fA63AF41E9C01df75e79D3FDa69B5f3/info.json new file mode 100644 index 00000000..2ec3bf79 --- /dev/null +++ b/blockchains/ethereum/assets/0xCf5dfE6e2fA63AF41E9C01df75e79D3FDa69B5f3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mutual Uniting System", + "symbol": "MUS", + "type": "ERC20", + "decimals": 15, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCf5dfE6e2fA63AF41E9C01df75e79D3FDa69B5f3", + "status": "abandoned", + "id": "0xCf5dfE6e2fA63AF41E9C01df75e79D3FDa69B5f3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCf5dfE6e2fA63AF41E9C01df75e79D3FDa69B5f3/logo.png b/blockchains/ethereum/assets/0xCf5dfE6e2fA63AF41E9C01df75e79D3FDa69B5f3/logo.png new file mode 100755 index 00000000..b3423079 Binary files /dev/null and b/blockchains/ethereum/assets/0xCf5dfE6e2fA63AF41E9C01df75e79D3FDa69B5f3/logo.png differ diff --git a/blockchains/ethereum/assets/0xCf8f9555D55CE45a3A33a81D6eF99a2a2E71Dee2/info.json b/blockchains/ethereum/assets/0xCf8f9555D55CE45a3A33a81D6eF99a2a2E71Dee2/info.json new file mode 100644 index 00000000..54e49e59 --- /dev/null +++ b/blockchains/ethereum/assets/0xCf8f9555D55CE45a3A33a81D6eF99a2a2E71Dee2/info.json @@ -0,0 +1,11 @@ +{ + "name": "CBI Index 7", + "symbol": "CBIX7", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.uhurutribe.com/", + "explorer": "https://etherscan.io/token/0xCf8f9555D55CE45a3A33a81D6eF99a2a2E71Dee2", + "status": "abandoned", + "id": "0xCf8f9555D55CE45a3A33a81D6eF99a2a2E71Dee2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCf8f9555D55CE45a3A33a81D6eF99a2a2E71Dee2/logo.png b/blockchains/ethereum/assets/0xCf8f9555D55CE45a3A33a81D6eF99a2a2E71Dee2/logo.png new file mode 100644 index 00000000..0fe57279 Binary files /dev/null and b/blockchains/ethereum/assets/0xCf8f9555D55CE45a3A33a81D6eF99a2a2E71Dee2/logo.png differ diff --git a/blockchains/ethereum/assets/0xCfFe0d26ad2f49D962059f73A6410F7638D4AA7c/info.json b/blockchains/ethereum/assets/0xCfFe0d26ad2f49D962059f73A6410F7638D4AA7c/info.json new file mode 100644 index 00000000..d2c07039 --- /dev/null +++ b/blockchains/ethereum/assets/0xCfFe0d26ad2f49D962059f73A6410F7638D4AA7c/info.json @@ -0,0 +1,11 @@ +{ + "name": "الإصلاح عملة", + "symbol": "ISLAH", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xCfFe0d26ad2f49D962059f73A6410F7638D4AA7c", + "status": "abandoned", + "id": "0xCfFe0d26ad2f49D962059f73A6410F7638D4AA7c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCfFe0d26ad2f49D962059f73A6410F7638D4AA7c/logo.png b/blockchains/ethereum/assets/0xCfFe0d26ad2f49D962059f73A6410F7638D4AA7c/logo.png new file mode 100644 index 00000000..807af779 Binary files /dev/null and b/blockchains/ethereum/assets/0xCfFe0d26ad2f49D962059f73A6410F7638D4AA7c/logo.png differ diff --git a/blockchains/ethereum/assets/0xCfb72ED3647cC8E7FA52E4F121eCdAbEfC305e7f/info.json b/blockchains/ethereum/assets/0xCfb72ED3647cC8E7FA52E4F121eCdAbEfC305e7f/info.json new file mode 100644 index 00000000..76e47c3e --- /dev/null +++ b/blockchains/ethereum/assets/0xCfb72ED3647cC8E7FA52E4F121eCdAbEfC305e7f/info.json @@ -0,0 +1,17 @@ +{ + "name": "Flapp", + "website": "https://flapptoken.io/", + "description": "Flapp is the token of both the present and the future: an ecosystem for developers and users that facilitates the use and creation of blockchain based dapps", + "explorer": "https://etherscan.io/token/0xCfb72ED3647cC8E7FA52E4F121eCdAbEfC305e7f", + "type": "ERC20", + "symbol": "FLAP", + "decimals": 18, + "status": "active", + "id": "0xCfb72ED3647cC8E7FA52E4F121eCdAbEfC305e7f", + "links": [ + { + "name": "x", + "url": "https://x.com/Flapp" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCfb72ED3647cC8E7FA52E4F121eCdAbEfC305e7f/logo.png b/blockchains/ethereum/assets/0xCfb72ED3647cC8E7FA52E4F121eCdAbEfC305e7f/logo.png new file mode 100644 index 00000000..ce0872f3 Binary files /dev/null and b/blockchains/ethereum/assets/0xCfb72ED3647cC8E7FA52E4F121eCdAbEfC305e7f/logo.png differ diff --git a/blockchains/ethereum/assets/0xD01DB73E047855Efb414e6202098C4Be4Cd2423B/info.json b/blockchains/ethereum/assets/0xD01DB73E047855Efb414e6202098C4Be4Cd2423B/info.json new file mode 100644 index 00000000..5854fbec --- /dev/null +++ b/blockchains/ethereum/assets/0xD01DB73E047855Efb414e6202098C4Be4Cd2423B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Uquid Coin", + "symbol": "UQC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://uquidcoin.com/", + "explorer": "https://etherscan.io/token/0xD01DB73E047855Efb414e6202098C4Be4Cd2423B", + "status": "abandoned", + "id": "0xD01DB73E047855Efb414e6202098C4Be4Cd2423B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD01DB73E047855Efb414e6202098C4Be4Cd2423B/logo.png b/blockchains/ethereum/assets/0xD01DB73E047855Efb414e6202098C4Be4Cd2423B/logo.png new file mode 100644 index 00000000..ea4cfb23 Binary files /dev/null and b/blockchains/ethereum/assets/0xD01DB73E047855Efb414e6202098C4Be4Cd2423B/logo.png differ diff --git a/blockchains/ethereum/assets/0xD01ef7C0A5d8c432fc2d1a85c66cF2327362E5C6/info.json b/blockchains/ethereum/assets/0xD01ef7C0A5d8c432fc2d1a85c66cF2327362E5C6/info.json new file mode 100644 index 00000000..0961e627 --- /dev/null +++ b/blockchains/ethereum/assets/0xD01ef7C0A5d8c432fc2d1a85c66cF2327362E5C6/info.json @@ -0,0 +1,33 @@ +{ + "name": "aETHb", + "website": "https://stkr.io/", + "description": "aETHb is a reward-earing bond that enables instant liquidity for staked ETH tokens in Ethereum 2.0 network.", + "explorer": "https://etherscan.io/token/0xD01ef7C0A5d8c432fc2d1a85c66cF2327362E5C6", + "type": "ERC20", + "symbol": "aETHb", + "decimals": 18, + "status": "active", + "id": "0xD01ef7C0A5d8c432fc2d1a85c66cF2327362E5C6", + "links": [ + { + "name": "github", + "url": "https://github.com/Ankr-network/stkr-smartcontract" + }, + { + "name": "x", + "url": "https://x.com/Ankr" + }, + { + "name": "telegram", + "url": "https://t.me/ankrnetwork" + }, + { + "name": "medium", + "url": "https://medium.com/ankr-network" + }, + { + "name": "whitepaper", + "url": "https://assets.ankr.com/files/stkr_whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD01ef7C0A5d8c432fc2d1a85c66cF2327362E5C6/logo.png b/blockchains/ethereum/assets/0xD01ef7C0A5d8c432fc2d1a85c66cF2327362E5C6/logo.png new file mode 100644 index 00000000..dbcedce4 Binary files /dev/null and b/blockchains/ethereum/assets/0xD01ef7C0A5d8c432fc2d1a85c66cF2327362E5C6/logo.png differ diff --git a/blockchains/ethereum/assets/0xD0352a019e9AB9d757776F532377aAEbd36Fd541/info.json b/blockchains/ethereum/assets/0xD0352a019e9AB9d757776F532377aAEbd36Fd541/info.json new file mode 100644 index 00000000..2c862f43 --- /dev/null +++ b/blockchains/ethereum/assets/0xD0352a019e9AB9d757776F532377aAEbd36Fd541/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fusion Token", + "symbol": "FSN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD0352a019e9AB9d757776F532377aAEbd36Fd541", + "status": "abandoned", + "id": "0xD0352a019e9AB9d757776F532377aAEbd36Fd541" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD0352a019e9AB9d757776F532377aAEbd36Fd541/logo.png b/blockchains/ethereum/assets/0xD0352a019e9AB9d757776F532377aAEbd36Fd541/logo.png new file mode 100644 index 00000000..790d8dfe Binary files /dev/null and b/blockchains/ethereum/assets/0xD0352a019e9AB9d757776F532377aAEbd36Fd541/logo.png differ diff --git a/blockchains/ethereum/assets/0xD04785C4d8195e4A54d9dEc3a9043872875ae9E2/info.json b/blockchains/ethereum/assets/0xD04785C4d8195e4A54d9dEc3a9043872875ae9E2/info.json new file mode 100644 index 00000000..3a2f3469 --- /dev/null +++ b/blockchains/ethereum/assets/0xD04785C4d8195e4A54d9dEc3a9043872875ae9E2/info.json @@ -0,0 +1,17 @@ +{ + "name": "RottenToken", + "website": "https://rottenswap.org/", + "description": "Earn RottenTokens by staking Uniswap liquidity. In addition, 2.5% of every RottenToken transfer is burned and turned into MaggotTokens.", + "explorer": "https://etherscan.io/token/0xD04785C4d8195e4A54d9dEc3a9043872875ae9E2", + "type": "ERC20", + "symbol": "ROT", + "decimals": 18, + "status": "active", + "id": "0xD04785C4d8195e4A54d9dEc3a9043872875ae9E2", + "links": [ + { + "name": "github", + "url": "https://github.com/rottenswap" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD04785C4d8195e4A54d9dEc3a9043872875ae9E2/logo.png b/blockchains/ethereum/assets/0xD04785C4d8195e4A54d9dEc3a9043872875ae9E2/logo.png new file mode 100644 index 00000000..50de82c2 Binary files /dev/null and b/blockchains/ethereum/assets/0xD04785C4d8195e4A54d9dEc3a9043872875ae9E2/logo.png differ diff --git a/blockchains/ethereum/assets/0xD049499E86f5ED97924Eb90fd5B15b9691bBC009/info.json b/blockchains/ethereum/assets/0xD049499E86f5ED97924Eb90fd5B15b9691bBC009/info.json new file mode 100644 index 00000000..460b1d1f --- /dev/null +++ b/blockchains/ethereum/assets/0xD049499E86f5ED97924Eb90fd5B15b9691bBC009/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short ETH-WBTC v2", + "symbol": "sETHwBTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD049499E86f5ED97924Eb90fd5B15b9691bBC009", + "status": "abandoned", + "id": "0xD049499E86f5ED97924Eb90fd5B15b9691bBC009" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD049499E86f5ED97924Eb90fd5B15b9691bBC009/logo.png b/blockchains/ethereum/assets/0xD049499E86f5ED97924Eb90fd5B15b9691bBC009/logo.png new file mode 100644 index 00000000..54a106c2 Binary files /dev/null and b/blockchains/ethereum/assets/0xD049499E86f5ED97924Eb90fd5B15b9691bBC009/logo.png differ diff --git a/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/info.json b/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/info.json new file mode 100644 index 00000000..16ed6396 --- /dev/null +++ b/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/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://etherscan.io/token/0xD057B63f5E69CF1B929b356b579Cba08D7688048", + "type": "ERC20", + "symbol": "vCOW", + "decimals": 18, + "status": "active", + "id": "0xD057B63f5E69CF1B929b356b579Cba08D7688048", + "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/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/logo.png b/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/logo.png new file mode 100644 index 00000000..b9ef84f3 Binary files /dev/null and b/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/logo.png differ diff --git a/blockchains/ethereum/assets/0xD07A5aAe8d66614de5e18a4EE32988A70dC20467/info.json b/blockchains/ethereum/assets/0xD07A5aAe8d66614de5e18a4EE32988A70dC20467/info.json new file mode 100644 index 00000000..77f454dd --- /dev/null +++ b/blockchains/ethereum/assets/0xD07A5aAe8d66614de5e18a4EE32988A70dC20467/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R918449", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD07A5aAe8d66614de5e18a4EE32988A70dC20467", + "status": "spam", + "id": "0xD07A5aAe8d66614de5e18a4EE32988A70dC20467" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD07A5aAe8d66614de5e18a4EE32988A70dC20467/logo.png b/blockchains/ethereum/assets/0xD07A5aAe8d66614de5e18a4EE32988A70dC20467/logo.png new file mode 100644 index 00000000..c6fe7d24 Binary files /dev/null and b/blockchains/ethereum/assets/0xD07A5aAe8d66614de5e18a4EE32988A70dC20467/logo.png differ diff --git a/blockchains/ethereum/assets/0xD07cf5787762fD5b30D7A706aE9c6Da17B8aB42d/info.json b/blockchains/ethereum/assets/0xD07cf5787762fD5b30D7A706aE9c6Da17B8aB42d/info.json new file mode 100644 index 00000000..2b0b6efd --- /dev/null +++ b/blockchains/ethereum/assets/0xD07cf5787762fD5b30D7A706aE9c6Da17B8aB42d/info.json @@ -0,0 +1,11 @@ +{ + "name": "ABYDOS", + "symbol": "ABYD", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD07cf5787762fD5b30D7A706aE9c6Da17B8aB42d", + "status": "abandoned", + "id": "0xD07cf5787762fD5b30D7A706aE9c6Da17B8aB42d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD07cf5787762fD5b30D7A706aE9c6Da17B8aB42d/logo.png b/blockchains/ethereum/assets/0xD07cf5787762fD5b30D7A706aE9c6Da17B8aB42d/logo.png new file mode 100644 index 00000000..e1ea584f Binary files /dev/null and b/blockchains/ethereum/assets/0xD07cf5787762fD5b30D7A706aE9c6Da17B8aB42d/logo.png differ diff --git a/blockchains/ethereum/assets/0xD08DDb436e731f32455Fe302723eE0FD2E9E8706/info.json b/blockchains/ethereum/assets/0xD08DDb436e731f32455Fe302723eE0FD2E9E8706/info.json new file mode 100644 index 00000000..66b1cd67 --- /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 00000000..32afb471 Binary files /dev/null and b/blockchains/ethereum/assets/0xD08DDb436e731f32455Fe302723eE0FD2E9E8706/logo.png differ diff --git a/blockchains/ethereum/assets/0xD0Bd12A8D5EBCA1E2FA46dA59F1993EC51C3d75c/info.json b/blockchains/ethereum/assets/0xD0Bd12A8D5EBCA1E2FA46dA59F1993EC51C3d75c/info.json new file mode 100644 index 00000000..e9c3d298 --- /dev/null +++ b/blockchains/ethereum/assets/0xD0Bd12A8D5EBCA1E2FA46dA59F1993EC51C3d75c/info.json @@ -0,0 +1,11 @@ +{ + "name": "BKEX Token", + "symbol": "BK", + "type": "ERC20", + "decimals": 18, + "description": "BKK is the Proof-of-Equity token of the BKEX trading platform with a 'transaction is mining' mechanism.", + "website": "https://www.bkex.com/", + "explorer": "https://etherscan.io/token/0xD0Bd12A8D5EBCA1E2FA46dA59F1993EC51C3d75c", + "status": "active", + "id": "0xD0Bd12A8D5EBCA1E2FA46dA59F1993EC51C3d75c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD0Bd12A8D5EBCA1E2FA46dA59F1993EC51C3d75c/logo.png b/blockchains/ethereum/assets/0xD0Bd12A8D5EBCA1E2FA46dA59F1993EC51C3d75c/logo.png new file mode 100644 index 00000000..936b7584 Binary files /dev/null and b/blockchains/ethereum/assets/0xD0Bd12A8D5EBCA1E2FA46dA59F1993EC51C3d75c/logo.png differ diff --git a/blockchains/ethereum/assets/0xD0Bf154768b0f1f8Cba50daA8960C285CE4c67f2/info.json b/blockchains/ethereum/assets/0xD0Bf154768b0f1f8Cba50daA8960C285CE4c67f2/info.json new file mode 100644 index 00000000..685c6eab --- /dev/null +++ b/blockchains/ethereum/assets/0xD0Bf154768b0f1f8Cba50daA8960C285CE4c67f2/info.json @@ -0,0 +1,11 @@ +{ + "name": "UrBen", + "symbol": "URBEN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD0Bf154768b0f1f8Cba50daA8960C285CE4c67f2", + "status": "abandoned", + "id": "0xD0Bf154768b0f1f8Cba50daA8960C285CE4c67f2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD0Bf154768b0f1f8Cba50daA8960C285CE4c67f2/logo.png b/blockchains/ethereum/assets/0xD0Bf154768b0f1f8Cba50daA8960C285CE4c67f2/logo.png new file mode 100644 index 00000000..e19b593c Binary files /dev/null and b/blockchains/ethereum/assets/0xD0Bf154768b0f1f8Cba50daA8960C285CE4c67f2/logo.png differ diff --git a/blockchains/ethereum/assets/0xD0C4Ad14f872BcDf7c3Cc2bae99279ab5cDEaD30/info.json b/blockchains/ethereum/assets/0xD0C4Ad14f872BcDf7c3Cc2bae99279ab5cDEaD30/info.json new file mode 100644 index 00000000..2f92703e --- /dev/null +++ b/blockchains/ethereum/assets/0xD0C4Ad14f872BcDf7c3Cc2bae99279ab5cDEaD30/info.json @@ -0,0 +1,11 @@ +{ + "name": "Epacoin ", + "symbol": "EPC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.epacoin.org/", + "explorer": "https://etherscan.io/token/0xD0C4Ad14f872BcDf7c3Cc2bae99279ab5cDEaD30", + "status": "abandoned", + "id": "0xD0C4Ad14f872BcDf7c3Cc2bae99279ab5cDEaD30" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD0C4Ad14f872BcDf7c3Cc2bae99279ab5cDEaD30/logo.png b/blockchains/ethereum/assets/0xD0C4Ad14f872BcDf7c3Cc2bae99279ab5cDEaD30/logo.png new file mode 100644 index 00000000..0a16e34c Binary files /dev/null and b/blockchains/ethereum/assets/0xD0C4Ad14f872BcDf7c3Cc2bae99279ab5cDEaD30/logo.png differ diff --git a/blockchains/ethereum/assets/0xD0D42005e7B3c0812b1268F0e5FAF97Ff2423651/info.json b/blockchains/ethereum/assets/0xD0D42005e7B3c0812b1268F0e5FAF97Ff2423651/info.json new file mode 100644 index 00000000..954bc590 --- /dev/null +++ b/blockchains/ethereum/assets/0xD0D42005e7B3c0812b1268F0e5FAF97Ff2423651/info.json @@ -0,0 +1,25 @@ +{ + "name": "KOROMARU", + "type": "ERC20", + "symbol": "KOROMARU", + "decimals": 9, + "website": "https://koromaruinu.net/", + "description": "KOROMARU is a hybrid dog/anime/gaming meme token benefitting investors and expanding our reach into budding gaming ecosystems.", + "explorer": "https://etherscan.io/token/0xd0d42005e7b3c0812b1268f0e5faf97ff2423651", + "status": "active", + "id": "0xD0D42005e7B3c0812b1268F0e5FAF97Ff2423651", + "links": [ + { + "name": "x", + "url": "https://x.com/KoromaruInu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/koromaru/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/koromaru" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD0D42005e7B3c0812b1268F0e5FAF97Ff2423651/logo.png b/blockchains/ethereum/assets/0xD0D42005e7B3c0812b1268F0e5FAF97Ff2423651/logo.png new file mode 100644 index 00000000..8397507a Binary files /dev/null and b/blockchains/ethereum/assets/0xD0D42005e7B3c0812b1268F0e5FAF97Ff2423651/logo.png differ diff --git a/blockchains/ethereum/assets/0xD0D6D6C5Fe4a677D343cC433536BB717bAe167dD/info.json b/blockchains/ethereum/assets/0xD0D6D6C5Fe4a677D343cC433536BB717bAe167dD/info.json new file mode 100644 index 00000000..266b2ead --- /dev/null +++ b/blockchains/ethereum/assets/0xD0D6D6C5Fe4a677D343cC433536BB717bAe167dD/info.json @@ -0,0 +1,11 @@ +{ + "name": "AdToken", + "symbol": "ADT", + "type": "ERC20", + "decimals": 9, + "description": "adChain is a browser agnostic Ethereum based solution for digital advertising that seamlessly integrates with pre-existing RTB and programmatic industry standards.", + "website": "https://adtoken.com/", + "explorer": "https://etherscan.io/token/0xD0D6D6C5Fe4a677D343cC433536BB717bAe167dD", + "status": "active", + "id": "0xD0D6D6C5Fe4a677D343cC433536BB717bAe167dD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD0D6D6C5Fe4a677D343cC433536BB717bAe167dD/logo.png b/blockchains/ethereum/assets/0xD0D6D6C5Fe4a677D343cC433536BB717bAe167dD/logo.png new file mode 100755 index 00000000..baef0b5d Binary files /dev/null and b/blockchains/ethereum/assets/0xD0D6D6C5Fe4a677D343cC433536BB717bAe167dD/logo.png differ diff --git a/blockchains/ethereum/assets/0xD0D824e2C6843c3ce4c8E22fB1d31a4d9b0212eC/info.json b/blockchains/ethereum/assets/0xD0D824e2C6843c3ce4c8E22fB1d31a4d9b0212eC/info.json new file mode 100644 index 00000000..ab5d75c4 --- /dev/null +++ b/blockchains/ethereum/assets/0xD0D824e2C6843c3ce4c8E22fB1d31a4d9b0212eC/info.json @@ -0,0 +1,11 @@ +{ + "name": "vEGP", + "symbol": "vEGP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD0D824e2C6843c3ce4c8E22fB1d31a4d9b0212eC", + "status": "abandoned", + "id": "0xD0D824e2C6843c3ce4c8E22fB1d31a4d9b0212eC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD0D824e2C6843c3ce4c8E22fB1d31a4d9b0212eC/logo.png b/blockchains/ethereum/assets/0xD0D824e2C6843c3ce4c8E22fB1d31a4d9b0212eC/logo.png new file mode 100644 index 00000000..487d052e Binary files /dev/null and b/blockchains/ethereum/assets/0xD0D824e2C6843c3ce4c8E22fB1d31a4d9b0212eC/logo.png differ diff --git a/blockchains/ethereum/assets/0xD0a265a32D0211a7f61F11de014B854F7ce716F8/info.json b/blockchains/ethereum/assets/0xD0a265a32D0211a7f61F11de014B854F7ce716F8/info.json new file mode 100644 index 00000000..e507be6b --- /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 00000000..a22bc299 Binary files /dev/null and b/blockchains/ethereum/assets/0xD0a265a32D0211a7f61F11de014B854F7ce716F8/logo.png differ diff --git a/blockchains/ethereum/assets/0xD0a4b8946Cb52f0661273bfbC6fD0E0C75Fc6433/info.json b/blockchains/ethereum/assets/0xD0a4b8946Cb52f0661273bfbC6fD0E0C75Fc6433/info.json new file mode 100644 index 00000000..99d69540 --- /dev/null +++ b/blockchains/ethereum/assets/0xD0a4b8946Cb52f0661273bfbC6fD0E0C75Fc6433/info.json @@ -0,0 +1,11 @@ +{ + "name": "Storm Token", + "symbol": "STORM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD0a4b8946Cb52f0661273bfbC6fD0E0C75Fc6433", + "status": "abandoned", + "id": "0xD0a4b8946Cb52f0661273bfbC6fD0E0C75Fc6433" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD0a4b8946Cb52f0661273bfbC6fD0E0C75Fc6433/logo.png b/blockchains/ethereum/assets/0xD0a4b8946Cb52f0661273bfbC6fD0E0C75Fc6433/logo.png new file mode 100644 index 00000000..6eb223a8 Binary files /dev/null and b/blockchains/ethereum/assets/0xD0a4b8946Cb52f0661273bfbC6fD0E0C75Fc6433/logo.png differ diff --git a/blockchains/ethereum/assets/0xD101dCC414F310268c37eEb4cD376CcFA507F571/info.json b/blockchains/ethereum/assets/0xD101dCC414F310268c37eEb4cD376CcFA507F571/info.json new file mode 100644 index 00000000..e86d8b86 --- /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 00000000..2af89132 Binary files /dev/null and b/blockchains/ethereum/assets/0xD101dCC414F310268c37eEb4cD376CcFA507F571/logo.png differ diff --git a/blockchains/ethereum/assets/0xD13c7342e1ef687C5ad21b27c2b65D772cAb5C8c/info.json b/blockchains/ethereum/assets/0xD13c7342e1ef687C5ad21b27c2b65D772cAb5C8c/info.json new file mode 100644 index 00000000..79750d79 --- /dev/null +++ b/blockchains/ethereum/assets/0xD13c7342e1ef687C5ad21b27c2b65D772cAb5C8c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ultra Token", + "symbol": "UOS", + "type": "ERC20", + "decimals": 4, + "description": "Ultra describes itself as a blockchain-based, PC game distribution platform designed to provide both gamers and game developers with new opportunities. It consists of an ecosystem where gamers can, on top of buying and playing games, resell their used games and items, and earn money through their participation in Ultra.", + "website": "https://ultra.io/", + "explorer": "https://etherscan.io/token/0xD13c7342e1ef687C5ad21b27c2b65D772cAb5C8c", + "status": "active", + "id": "0xD13c7342e1ef687C5ad21b27c2b65D772cAb5C8c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD13c7342e1ef687C5ad21b27c2b65D772cAb5C8c/logo.png b/blockchains/ethereum/assets/0xD13c7342e1ef687C5ad21b27c2b65D772cAb5C8c/logo.png new file mode 100644 index 00000000..20ef7e4a Binary files /dev/null and b/blockchains/ethereum/assets/0xD13c7342e1ef687C5ad21b27c2b65D772cAb5C8c/logo.png differ diff --git a/blockchains/ethereum/assets/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c/info.json b/blockchains/ethereum/assets/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c/info.json new file mode 100644 index 00000000..a6553032 --- /dev/null +++ b/blockchains/ethereum/assets/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c/info.json @@ -0,0 +1,29 @@ +{ + "name": "VAIOT", + "type": "ERC20", + "symbol": "VAI", + "decimals": 18, + "website": "https://vaiot.ai/en", + "description": "VAIOT offers a portfolio of blockchain-based AI assistants for businesses and consumers to provide automated services and transactions.", + "explorer": "https://etherscan.io/token/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c", + "status": "active", + "id": "0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c", + "links": [ + { + "name": "x", + "url": "https://x.com/VAIOT_LTD" + }, + { + "name": "telegram", + "url": "https://t.me/VAIOT_Community" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vaiot/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/vaiot/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c/logo.png b/blockchains/ethereum/assets/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c/logo.png new file mode 100644 index 00000000..39b73c08 Binary files /dev/null and b/blockchains/ethereum/assets/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c/logo.png differ diff --git a/blockchains/ethereum/assets/0xD1670Cb7c01987a8DdD6976C4894463460Eeb8a2/info.json b/blockchains/ethereum/assets/0xD1670Cb7c01987a8DdD6976C4894463460Eeb8a2/info.json new file mode 100644 index 00000000..6a097bb7 --- /dev/null +++ b/blockchains/ethereum/assets/0xD1670Cb7c01987a8DdD6976C4894463460Eeb8a2/info.json @@ -0,0 +1,25 @@ +{ + "name": "DMM: USDK", + "website": "https://defimoneymarket.com", + "description": "mToken wrapper for USDK", + "explorer": "https://etherscan.io/token/0xD1670Cb7c01987a8DdD6976C4894463460Eeb8a2", + "type": "ERC20", + "symbol": "mUSDK", + "decimals": 18, + "status": "active", + "id": "0xD1670Cb7c01987a8DdD6976C4894463460Eeb8a2", + "links": [ + { + "name": "x", + "url": "https://x.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/0xD1670Cb7c01987a8DdD6976C4894463460Eeb8a2/logo.png b/blockchains/ethereum/assets/0xD1670Cb7c01987a8DdD6976C4894463460Eeb8a2/logo.png new file mode 100644 index 00000000..cbbc5761 Binary files /dev/null and b/blockchains/ethereum/assets/0xD1670Cb7c01987a8DdD6976C4894463460Eeb8a2/logo.png differ diff --git a/blockchains/ethereum/assets/0xD178b20c6007572bD1FD01D205cC20D32B4A6015/info.json b/blockchains/ethereum/assets/0xD178b20c6007572bD1FD01D205cC20D32B4A6015/info.json new file mode 100644 index 00000000..1774cbe3 --- /dev/null +++ b/blockchains/ethereum/assets/0xD178b20c6007572bD1FD01D205cC20D32B4A6015/info.json @@ -0,0 +1,11 @@ +{ + "name": "aidus", + "symbol": "AID", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD178b20c6007572bD1FD01D205cC20D32B4A6015", + "status": "abandoned", + "id": "0xD178b20c6007572bD1FD01D205cC20D32B4A6015" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD178b20c6007572bD1FD01D205cC20D32B4A6015/logo.png b/blockchains/ethereum/assets/0xD178b20c6007572bD1FD01D205cC20D32B4A6015/logo.png new file mode 100644 index 00000000..1a18e003 Binary files /dev/null and b/blockchains/ethereum/assets/0xD178b20c6007572bD1FD01D205cC20D32B4A6015/logo.png differ diff --git a/blockchains/ethereum/assets/0xD1E10C37A27d95D95720291b1Dc6f12F74C71443/info.json b/blockchains/ethereum/assets/0xD1E10C37A27d95D95720291b1Dc6f12F74C71443/info.json new file mode 100644 index 00000000..6b5c2f9b --- /dev/null +++ b/blockchains/ethereum/assets/0xD1E10C37A27d95D95720291b1Dc6f12F74C71443/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cosmo Coin", + "type": "ERC20", + "symbol": "COSM", + "decimals": 18, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0xd1e10c37a27d95d95720291b1dc6f12f74c71443", + "status": "active", + "id": "0xD1E10C37A27d95D95720291b1Dc6f12F74C71443" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD1E10C37A27d95D95720291b1Dc6f12F74C71443/logo.png b/blockchains/ethereum/assets/0xD1E10C37A27d95D95720291b1Dc6f12F74C71443/logo.png new file mode 100644 index 00000000..65cbb3ec Binary files /dev/null and b/blockchains/ethereum/assets/0xD1E10C37A27d95D95720291b1Dc6f12F74C71443/logo.png differ diff --git a/blockchains/ethereum/assets/0xD1F95941d9a69e875F7f51F04e5F214F8114E730/info.json b/blockchains/ethereum/assets/0xD1F95941d9a69e875F7f51F04e5F214F8114E730/info.json new file mode 100644 index 00000000..f4a22cd0 --- /dev/null +++ b/blockchains/ethereum/assets/0xD1F95941d9a69e875F7f51F04e5F214F8114E730/info.json @@ -0,0 +1,11 @@ +{ + "name": "Exzie", + "symbol": "EXZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD1F95941d9a69e875F7f51F04e5F214F8114E730", + "status": "abandoned", + "id": "0xD1F95941d9a69e875F7f51F04e5F214F8114E730" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD1F95941d9a69e875F7f51F04e5F214F8114E730/logo.png b/blockchains/ethereum/assets/0xD1F95941d9a69e875F7f51F04e5F214F8114E730/logo.png new file mode 100644 index 00000000..31e8653f Binary files /dev/null and b/blockchains/ethereum/assets/0xD1F95941d9a69e875F7f51F04e5F214F8114E730/logo.png differ diff --git a/blockchains/ethereum/assets/0xD1b8D649Ba4C65Fdc382515E27E3B470Dc9a0585/info.json b/blockchains/ethereum/assets/0xD1b8D649Ba4C65Fdc382515E27E3B470Dc9a0585/info.json new file mode 100644 index 00000000..79a5e4e6 --- /dev/null +++ b/blockchains/ethereum/assets/0xD1b8D649Ba4C65Fdc382515E27E3B470Dc9a0585/info.json @@ -0,0 +1,11 @@ +{ + "name": "WrapECO", + "website": "https://ecocelium.io", + "description": "Wrapped version of Ormeus Ecosystem (ECO)", + "explorer": "https://etherscan.io/token/0xD1b8D649Ba4C65Fdc382515E27E3B470Dc9a0585", + "type": "ERC20", + "symbol": "eECO", + "decimals": 8, + "status": "active", + "id": "0xD1b8D649Ba4C65Fdc382515E27E3B470Dc9a0585" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD1b8D649Ba4C65Fdc382515E27E3B470Dc9a0585/logo.png b/blockchains/ethereum/assets/0xD1b8D649Ba4C65Fdc382515E27E3B470Dc9a0585/logo.png new file mode 100644 index 00000000..5d575bc1 Binary files /dev/null and b/blockchains/ethereum/assets/0xD1b8D649Ba4C65Fdc382515E27E3B470Dc9a0585/logo.png differ diff --git a/blockchains/ethereum/assets/0xD1eED78FdB470d20aCfa35329879b5051eE68738/info.json b/blockchains/ethereum/assets/0xD1eED78FdB470d20aCfa35329879b5051eE68738/info.json new file mode 100644 index 00000000..7ad3ccc6 --- /dev/null +++ b/blockchains/ethereum/assets/0xD1eED78FdB470d20aCfa35329879b5051eE68738/info.json @@ -0,0 +1,11 @@ +{ + "name": "Loopie", + "symbol": "LOOPIE", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD1eED78FdB470d20aCfa35329879b5051eE68738", + "status": "abandoned", + "id": "0xD1eED78FdB470d20aCfa35329879b5051eE68738" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD1eED78FdB470d20aCfa35329879b5051eE68738/logo.png b/blockchains/ethereum/assets/0xD1eED78FdB470d20aCfa35329879b5051eE68738/logo.png new file mode 100644 index 00000000..d64695e4 Binary files /dev/null and b/blockchains/ethereum/assets/0xD1eED78FdB470d20aCfa35329879b5051eE68738/logo.png differ diff --git a/blockchains/ethereum/assets/0xD1ef9a7310D0806855C672288EF5a1BAB62ceF33/info.json b/blockchains/ethereum/assets/0xD1ef9a7310D0806855C672288EF5a1BAB62ceF33/info.json new file mode 100644 index 00000000..776f5835 --- /dev/null +++ b/blockchains/ethereum/assets/0xD1ef9a7310D0806855C672288EF5a1BAB62ceF33/info.json @@ -0,0 +1,11 @@ +{ + "name": "BELIEVER", + "symbol": "BLVR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.believercards.com/", + "explorer": "https://etherscan.io/token/0xD1ef9a7310D0806855C672288EF5a1BAB62ceF33", + "status": "active", + "id": "0xD1ef9a7310D0806855C672288EF5a1BAB62ceF33" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD1ef9a7310D0806855C672288EF5a1BAB62ceF33/logo.png b/blockchains/ethereum/assets/0xD1ef9a7310D0806855C672288EF5a1BAB62ceF33/logo.png new file mode 100644 index 00000000..f9aa141b Binary files /dev/null and b/blockchains/ethereum/assets/0xD1ef9a7310D0806855C672288EF5a1BAB62ceF33/logo.png differ diff --git a/blockchains/ethereum/assets/0xD20fb5cf926Dc29c88f64725e6f911f40f7bf531/info.json b/blockchains/ethereum/assets/0xD20fb5cf926Dc29c88f64725e6f911f40f7bf531/info.json new file mode 100644 index 00000000..ef580840 --- /dev/null +++ b/blockchains/ethereum/assets/0xD20fb5cf926Dc29c88f64725e6f911f40f7bf531/info.json @@ -0,0 +1,11 @@ +{ + "name": "PALA INT COMM", + "symbol": "pala", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD20fb5cf926Dc29c88f64725e6f911f40f7bf531", + "status": "abandoned", + "id": "0xD20fb5cf926Dc29c88f64725e6f911f40f7bf531" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD20fb5cf926Dc29c88f64725e6f911f40f7bf531/logo.png b/blockchains/ethereum/assets/0xD20fb5cf926Dc29c88f64725e6f911f40f7bf531/logo.png new file mode 100644 index 00000000..3f835ab6 Binary files /dev/null and b/blockchains/ethereum/assets/0xD20fb5cf926Dc29c88f64725e6f911f40f7bf531/logo.png differ diff --git a/blockchains/ethereum/assets/0xD236487c9BB6ddb1808d52c1C03B6b25B2486810/info.json b/blockchains/ethereum/assets/0xD236487c9BB6ddb1808d52c1C03B6b25B2486810/info.json new file mode 100644 index 00000000..4a0c490a --- /dev/null +++ b/blockchains/ethereum/assets/0xD236487c9BB6ddb1808d52c1C03B6b25B2486810/info.json @@ -0,0 +1,11 @@ +{ + "name": "LPChain", + "symbol": "LP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD236487c9BB6ddb1808d52c1C03B6b25B2486810", + "status": "abandoned", + "id": "0xD236487c9BB6ddb1808d52c1C03B6b25B2486810" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD236487c9BB6ddb1808d52c1C03B6b25B2486810/logo.png b/blockchains/ethereum/assets/0xD236487c9BB6ddb1808d52c1C03B6b25B2486810/logo.png new file mode 100644 index 00000000..6b0ba6f7 Binary files /dev/null and b/blockchains/ethereum/assets/0xD236487c9BB6ddb1808d52c1C03B6b25B2486810/logo.png differ diff --git a/blockchains/ethereum/assets/0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de/info.json b/blockchains/ethereum/assets/0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de/info.json new file mode 100644 index 00000000..a40aa9ca --- /dev/null +++ b/blockchains/ethereum/assets/0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de/info.json @@ -0,0 +1,21 @@ +{ + "name": "SIREN", + "website": "https://sirenmarkets.com", + "description": "SIREN is a distributed protocol for creating, trading, and redeeming fully-collateralized options contracts for any ERC-20 token on Ethereum. Options are a financial primitive from which one can build many different more complex financial instruments.", + "explorer": "https://etherscan.io/token/0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de", + "type": "ERC20", + "symbol": "SI", + "decimals": 18, + "status": "active", + "id": "0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de", + "links": [ + { + "name": "github", + "url": "https://github.com/sirenmarkets/core" + }, + { + "name": "x", + "url": "https://x.com/sirenprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de/logo.png b/blockchains/ethereum/assets/0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de/logo.png new file mode 100644 index 00000000..40cf8a81 Binary files /dev/null and b/blockchains/ethereum/assets/0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de/logo.png differ diff --git a/blockchains/ethereum/assets/0xD26B63194F70E0939393D23D3A5b1ed6BDE5f835/info.json b/blockchains/ethereum/assets/0xD26B63194F70E0939393D23D3A5b1ed6BDE5f835/info.json new file mode 100644 index 00000000..a6acc93f --- /dev/null +++ b/blockchains/ethereum/assets/0xD26B63194F70E0939393D23D3A5b1ed6BDE5f835/info.json @@ -0,0 +1,11 @@ +{ + "name": "SunPower", + "symbol": "SP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD26B63194F70E0939393D23D3A5b1ed6BDE5f835", + "status": "abandoned", + "id": "0xD26B63194F70E0939393D23D3A5b1ed6BDE5f835" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD26B63194F70E0939393D23D3A5b1ed6BDE5f835/logo.png b/blockchains/ethereum/assets/0xD26B63194F70E0939393D23D3A5b1ed6BDE5f835/logo.png new file mode 100755 index 00000000..7ad13cff Binary files /dev/null and b/blockchains/ethereum/assets/0xD26B63194F70E0939393D23D3A5b1ed6BDE5f835/logo.png differ diff --git a/blockchains/ethereum/assets/0xD27D76A1bA55ce5C0291CCd04feBBe793D22ebF4/info.json b/blockchains/ethereum/assets/0xD27D76A1bA55ce5C0291CCd04feBBe793D22ebF4/info.json new file mode 100644 index 00000000..51f13aa3 --- /dev/null +++ b/blockchains/ethereum/assets/0xD27D76A1bA55ce5C0291CCd04feBBe793D22ebF4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Benepit", + "symbol": "BNP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.benepit.io/", + "explorer": "https://etherscan.io/token/0xD27D76A1bA55ce5C0291CCd04feBBe793D22ebF4", + "status": "abandoned", + "id": "0xD27D76A1bA55ce5C0291CCd04feBBe793D22ebF4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD27D76A1bA55ce5C0291CCd04feBBe793D22ebF4/logo.png b/blockchains/ethereum/assets/0xD27D76A1bA55ce5C0291CCd04feBBe793D22ebF4/logo.png new file mode 100644 index 00000000..ba9bd835 Binary files /dev/null and b/blockchains/ethereum/assets/0xD27D76A1bA55ce5C0291CCd04feBBe793D22ebF4/logo.png differ diff --git a/blockchains/ethereum/assets/0xD291E7a03283640FDc51b121aC401383A46cC623/info.json b/blockchains/ethereum/assets/0xD291E7a03283640FDc51b121aC401383A46cC623/info.json new file mode 100644 index 00000000..c6a7bd34 --- /dev/null +++ b/blockchains/ethereum/assets/0xD291E7a03283640FDc51b121aC401383A46cC623/info.json @@ -0,0 +1,15 @@ +{ + "name": "Rari Governance Token (RGT)", + "type": "ERC20", + "symbol": "RGT", + "decimals": 18, + "website": "https://rari.capital", + "description": "The Rari Governance Token is the native token behind Rari Capital.", + "explorer": "https://etherscan.io/token/0xD291E7a03283640FDc51b121aC401383A46cC623", + "status": "active", + "id": "0xD291E7a03283640FDc51b121aC401383A46cC623", + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD291E7a03283640FDc51b121aC401383A46cC623/logo.png b/blockchains/ethereum/assets/0xD291E7a03283640FDc51b121aC401383A46cC623/logo.png new file mode 100644 index 00000000..af7aa3d1 Binary files /dev/null and b/blockchains/ethereum/assets/0xD291E7a03283640FDc51b121aC401383A46cC623/logo.png differ diff --git a/blockchains/ethereum/assets/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5/info.json b/blockchains/ethereum/assets/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5/info.json new file mode 100644 index 00000000..f1a740fb --- /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 00000000..b6707618 Binary files /dev/null and b/blockchains/ethereum/assets/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5/logo.png differ diff --git a/blockchains/ethereum/assets/0xD29F0b5b3F50b07Fe9a9511F7d86F4f4bAc3f8c4/info.json b/blockchains/ethereum/assets/0xD29F0b5b3F50b07Fe9a9511F7d86F4f4bAc3f8c4/info.json new file mode 100644 index 00000000..2da6b709 --- /dev/null +++ b/blockchains/ethereum/assets/0xD29F0b5b3F50b07Fe9a9511F7d86F4f4bAc3f8c4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Liquidity.Network", + "symbol": "LQD", + "type": "ERC20", + "decimals": 18, + "description": "Liquidity Network is set to launch a new scalable off-chain payment system which allows Ethereum users to make payments without costly transaction fees. By utilising payment hubs, Liquidity.Network allows multiple users to send cost efficient Ethereum micropayments for the very first time.", + "website": "https://liquidity.network/", + "explorer": "https://etherscan.io/token/0xD29F0b5b3F50b07Fe9a9511F7d86F4f4bAc3f8c4", + "status": "active", + "id": "0xD29F0b5b3F50b07Fe9a9511F7d86F4f4bAc3f8c4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD29F0b5b3F50b07Fe9a9511F7d86F4f4bAc3f8c4/logo.png b/blockchains/ethereum/assets/0xD29F0b5b3F50b07Fe9a9511F7d86F4f4bAc3f8c4/logo.png new file mode 100644 index 00000000..2d43cae9 Binary files /dev/null and b/blockchains/ethereum/assets/0xD29F0b5b3F50b07Fe9a9511F7d86F4f4bAc3f8c4/logo.png differ diff --git a/blockchains/ethereum/assets/0xD2B6C055B915cbA38490b586A9E22AAfCc3a15cc/info.json b/blockchains/ethereum/assets/0xD2B6C055B915cbA38490b586A9E22AAfCc3a15cc/info.json new file mode 100644 index 00000000..ab34b4b7 --- /dev/null +++ b/blockchains/ethereum/assets/0xD2B6C055B915cbA38490b586A9E22AAfCc3a15cc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short ZRX-DAI 4x v2", + "symbol": "dsZRX4x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD2B6C055B915cbA38490b586A9E22AAfCc3a15cc", + "status": "abandoned", + "id": "0xD2B6C055B915cbA38490b586A9E22AAfCc3a15cc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD2B6C055B915cbA38490b586A9E22AAfCc3a15cc/logo.png b/blockchains/ethereum/assets/0xD2B6C055B915cbA38490b586A9E22AAfCc3a15cc/logo.png new file mode 100644 index 00000000..4b02f9c8 Binary files /dev/null and b/blockchains/ethereum/assets/0xD2B6C055B915cbA38490b586A9E22AAfCc3a15cc/logo.png differ diff --git a/blockchains/ethereum/assets/0xD2B93f66FD68c5572BFB8EBf45E2Bd7968B38113/info.json b/blockchains/ethereum/assets/0xD2B93f66FD68c5572BFB8EBf45E2Bd7968B38113/info.json new file mode 100644 index 00000000..da4ee5f4 --- /dev/null +++ b/blockchains/ethereum/assets/0xD2B93f66FD68c5572BFB8EBf45E2Bd7968B38113/info.json @@ -0,0 +1,17 @@ +{ + "name": "Catnip", + "website": "https://nyan.finance", + "description": "Catnip($NIP) is a reward token for staking $NYAN and the main source of investment funds.", + "explorer": "https://etherscan.io/token/0xD2B93f66FD68c5572BFB8EBf45E2Bd7968B38113", + "type": "ERC20", + "symbol": "NIP", + "decimals": 18, + "status": "active", + "id": "0xD2B93f66FD68c5572BFB8EBf45E2Bd7968B38113", + "links": [ + { + "name": "github", + "url": "https://github.com/geass-zero/nyan.finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD2B93f66FD68c5572BFB8EBf45E2Bd7968B38113/logo.png b/blockchains/ethereum/assets/0xD2B93f66FD68c5572BFB8EBf45E2Bd7968B38113/logo.png new file mode 100644 index 00000000..f67d82ec Binary files /dev/null and b/blockchains/ethereum/assets/0xD2B93f66FD68c5572BFB8EBf45E2Bd7968B38113/logo.png differ diff --git a/blockchains/ethereum/assets/0xD2Beb403A9856F9Ae83deab8dfcF286d7693010B/info.json b/blockchains/ethereum/assets/0xD2Beb403A9856F9Ae83deab8dfcF286d7693010B/info.json new file mode 100644 index 00000000..dd8e307e --- /dev/null +++ b/blockchains/ethereum/assets/0xD2Beb403A9856F9Ae83deab8dfcF286d7693010B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cubefinex", + "symbol": "CFX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD2Beb403A9856F9Ae83deab8dfcF286d7693010B", + "status": "abandoned", + "id": "0xD2Beb403A9856F9Ae83deab8dfcF286d7693010B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD2Beb403A9856F9Ae83deab8dfcF286d7693010B/logo.png b/blockchains/ethereum/assets/0xD2Beb403A9856F9Ae83deab8dfcF286d7693010B/logo.png new file mode 100644 index 00000000..d46b5a49 Binary files /dev/null and b/blockchains/ethereum/assets/0xD2Beb403A9856F9Ae83deab8dfcF286d7693010B/logo.png differ diff --git a/blockchains/ethereum/assets/0xD2E8F88dDdb95704C17E78E1cb07Ae3812DdfA24/info.json b/blockchains/ethereum/assets/0xD2E8F88dDdb95704C17E78E1cb07Ae3812DdfA24/info.json new file mode 100644 index 00000000..e0b05126 --- /dev/null +++ b/blockchains/ethereum/assets/0xD2E8F88dDdb95704C17E78E1cb07Ae3812DdfA24/info.json @@ -0,0 +1,11 @@ +{ + "name": "HacToken", + "symbol": "HAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD2E8F88dDdb95704C17E78E1cb07Ae3812DdfA24", + "status": "abandoned", + "id": "0xD2E8F88dDdb95704C17E78E1cb07Ae3812DdfA24" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD2E8F88dDdb95704C17E78E1cb07Ae3812DdfA24/logo.png b/blockchains/ethereum/assets/0xD2E8F88dDdb95704C17E78E1cb07Ae3812DdfA24/logo.png new file mode 100644 index 00000000..28d7666f Binary files /dev/null and b/blockchains/ethereum/assets/0xD2E8F88dDdb95704C17E78E1cb07Ae3812DdfA24/logo.png differ diff --git a/blockchains/ethereum/assets/0xD2ba41A2a69Ff8CF1C77E08d249Ea02A229E04A1/info.json b/blockchains/ethereum/assets/0xD2ba41A2a69Ff8CF1C77E08d249Ea02A229E04A1/info.json new file mode 100644 index 00000000..027a58fb --- /dev/null +++ b/blockchains/ethereum/assets/0xD2ba41A2a69Ff8CF1C77E08d249Ea02A229E04A1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planetagro", + "symbol": "PAGRO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD2ba41A2a69Ff8CF1C77E08d249Ea02A229E04A1", + "status": "abandoned", + "id": "0xD2ba41A2a69Ff8CF1C77E08d249Ea02A229E04A1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD2ba41A2a69Ff8CF1C77E08d249Ea02A229E04A1/logo.png b/blockchains/ethereum/assets/0xD2ba41A2a69Ff8CF1C77E08d249Ea02A229E04A1/logo.png new file mode 100755 index 00000000..4e77b9cb Binary files /dev/null and b/blockchains/ethereum/assets/0xD2ba41A2a69Ff8CF1C77E08d249Ea02A229E04A1/logo.png differ diff --git a/blockchains/ethereum/assets/0xD2bb16cf38Ca086Cab5128D5c25DE9477eBD596B/info.json b/blockchains/ethereum/assets/0xD2bb16cf38Ca086Cab5128D5c25DE9477eBD596B/info.json new file mode 100644 index 00000000..3430aaa8 --- /dev/null +++ b/blockchains/ethereum/assets/0xD2bb16cf38Ca086Cab5128D5c25DE9477eBD596B/info.json @@ -0,0 +1,11 @@ +{ + "name": "xCrypt Token", + "symbol": "XCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.xcrypt.club/", + "explorer": "https://etherscan.io/token/0xD2bb16cf38Ca086Cab5128D5c25DE9477eBD596B", + "status": "abandoned", + "id": "0xD2bb16cf38Ca086Cab5128D5c25DE9477eBD596B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD2bb16cf38Ca086Cab5128D5c25DE9477eBD596B/logo.png b/blockchains/ethereum/assets/0xD2bb16cf38Ca086Cab5128D5c25DE9477eBD596B/logo.png new file mode 100644 index 00000000..6fc1d82e Binary files /dev/null and b/blockchains/ethereum/assets/0xD2bb16cf38Ca086Cab5128D5c25DE9477eBD596B/logo.png differ diff --git a/blockchains/ethereum/assets/0xD2d01dd6Aa7a2F5228c7c17298905A7C7E1dfE81/info.json b/blockchains/ethereum/assets/0xD2d01dd6Aa7a2F5228c7c17298905A7C7E1dfE81/info.json new file mode 100644 index 00000000..51916447 --- /dev/null +++ b/blockchains/ethereum/assets/0xD2d01dd6Aa7a2F5228c7c17298905A7C7E1dfE81/info.json @@ -0,0 +1,11 @@ +{ + "name": "Onyx USD", + "symbol": "OUSD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD2d01dd6Aa7a2F5228c7c17298905A7C7E1dfE81", + "status": "abandoned", + "id": "0xD2d01dd6Aa7a2F5228c7c17298905A7C7E1dfE81" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD2d01dd6Aa7a2F5228c7c17298905A7C7E1dfE81/logo.png b/blockchains/ethereum/assets/0xD2d01dd6Aa7a2F5228c7c17298905A7C7E1dfE81/logo.png new file mode 100644 index 00000000..e0b286aa Binary files /dev/null and b/blockchains/ethereum/assets/0xD2d01dd6Aa7a2F5228c7c17298905A7C7E1dfE81/logo.png differ diff --git a/blockchains/ethereum/assets/0xD2dDa223b2617cB616c1580db421e4cFAe6a8a85/info.json b/blockchains/ethereum/assets/0xD2dDa223b2617cB616c1580db421e4cFAe6a8a85/info.json new file mode 100644 index 00000000..c357b23b --- /dev/null +++ b/blockchains/ethereum/assets/0xD2dDa223b2617cB616c1580db421e4cFAe6a8a85/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bondly", + "website": "https://www.bondly.finance", + "description": "Bondly is an interoperable, transparent and portable swap protocol designed to revolutionize traditional escrow methods and make everyone into their own digital marketplace.", + "explorer": "https://etherscan.io/token/0xD2dDa223b2617cB616c1580db421e4cFAe6a8a85", + "type": "ERC20", + "symbol": "BONDLY", + "decimals": 18, + "status": "abandoned", + "id": "0xD2dDa223b2617cB616c1580db421e4cFAe6a8a85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD31a59c85aE9D8edEFeC411D448f90841571b89c/info.json b/blockchains/ethereum/assets/0xD31a59c85aE9D8edEFeC411D448f90841571b89c/info.json new file mode 100644 index 00000000..564af8e5 --- /dev/null +++ b/blockchains/ethereum/assets/0xD31a59c85aE9D8edEFeC411D448f90841571b89c/info.json @@ -0,0 +1,14 @@ +{ + "name": "SOL (Portal)", + "type": "ERC20", + "symbol": "SOL", + "decimals": 9, + "description": "Cross Chain Portal Bridged Token", + "website": "https://solana.com/", + "explorer": "https://etherscan.io/token/0xD31a59c85aE9D8edEFeC411D448f90841571b89c", + "status": "active", + "id": "0xD31a59c85aE9D8edEFeC411D448f90841571b89c", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD31a59c85aE9D8edEFeC411D448f90841571b89c/logo.png b/blockchains/ethereum/assets/0xD31a59c85aE9D8edEFeC411D448f90841571b89c/logo.png new file mode 100644 index 00000000..7a2e75fd Binary files /dev/null and b/blockchains/ethereum/assets/0xD31a59c85aE9D8edEFeC411D448f90841571b89c/logo.png differ diff --git a/blockchains/ethereum/assets/0xD33526068D116cE69F19A9ee46F0bd304F21A51f/info.json b/blockchains/ethereum/assets/0xD33526068D116cE69F19A9ee46F0bd304F21A51f/info.json new file mode 100755 index 00000000..20daf49d --- /dev/null +++ b/blockchains/ethereum/assets/0xD33526068D116cE69F19A9ee46F0bd304F21A51f/info.json @@ -0,0 +1,33 @@ +{ + "name": "Rocket Pool", + "type": "ERC20", + "symbol": "RPL", + "decimals": 18, + "website": "https://rocketpool.net", + "description": "Rocket Pool Protocol (RPL) - Decentralised Proof of Stake Pool", + "explorer": "https://etherscan.io/token/0xd33526068d116ce69f19a9ee46f0bd304f21a51f", + "status": "active", + "id": "0xD33526068D116cE69F19A9ee46F0bd304F21A51f", + "links": [ + { + "name": "x", + "url": "https://x.com/Rocket_Pool" + }, + { + "name": "github", + "url": "https://github.com/rocket-pool/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/rocketpool" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/rocketpool/" + }, + { + "name": "medium", + "url": "https://medium.com/rocket-pool" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD33526068D116cE69F19A9ee46F0bd304F21A51f/logo.png b/blockchains/ethereum/assets/0xD33526068D116cE69F19A9ee46F0bd304F21A51f/logo.png new file mode 100755 index 00000000..7d5e9cdb Binary files /dev/null and b/blockchains/ethereum/assets/0xD33526068D116cE69F19A9ee46F0bd304F21A51f/logo.png differ diff --git a/blockchains/ethereum/assets/0xD36a0e7b741542208aE0fBb35453C893D0136625/info.json b/blockchains/ethereum/assets/0xD36a0e7b741542208aE0fBb35453C893D0136625/info.json new file mode 100644 index 00000000..64a4504d --- /dev/null +++ b/blockchains/ethereum/assets/0xD36a0e7b741542208aE0fBb35453C893D0136625/info.json @@ -0,0 +1,11 @@ +{ + "name": "ITO Utility Token", + "website": "https://ito.network", + "description": "The ITO Utility Token [IUT] is a vital component of the ITO Protocol crowdfunding model, giving participants instant liquidity on all tokenised pledges from ITOs.", + "explorer": "https://etherscan.io/token/0xD36a0e7b741542208aE0fBb35453C893D0136625", + "type": "ERC20", + "symbol": "IUT", + "decimals": 0, + "status": "active", + "id": "0xD36a0e7b741542208aE0fBb35453C893D0136625" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD36a0e7b741542208aE0fBb35453C893D0136625/logo.png b/blockchains/ethereum/assets/0xD36a0e7b741542208aE0fBb35453C893D0136625/logo.png new file mode 100644 index 00000000..b34db7af Binary files /dev/null and b/blockchains/ethereum/assets/0xD36a0e7b741542208aE0fBb35453C893D0136625/logo.png differ diff --git a/blockchains/ethereum/assets/0xD375a513692336cF9eEBCE5e38869B447948016f/info.json b/blockchains/ethereum/assets/0xD375a513692336cF9eEBCE5e38869B447948016f/info.json new file mode 100644 index 00000000..9fde02fe --- /dev/null +++ b/blockchains/ethereum/assets/0xD375a513692336cF9eEBCE5e38869B447948016f/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShaBiDeGongShi", + "symbol": "ShaBi", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD375a513692336cF9eEBCE5e38869B447948016f", + "status": "abandoned", + "id": "0xD375a513692336cF9eEBCE5e38869B447948016f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD375a513692336cF9eEBCE5e38869B447948016f/logo.png b/blockchains/ethereum/assets/0xD375a513692336cF9eEBCE5e38869B447948016f/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0xD375a513692336cF9eEBCE5e38869B447948016f/logo.png differ diff --git a/blockchains/ethereum/assets/0xD37EE7e4f452C6638c96536e68090De8cBcdb583/info.json b/blockchains/ethereum/assets/0xD37EE7e4f452C6638c96536e68090De8cBcdb583/info.json new file mode 100644 index 00000000..cd76e871 --- /dev/null +++ b/blockchains/ethereum/assets/0xD37EE7e4f452C6638c96536e68090De8cBcdb583/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave GUSD", + "symbol": "aGUSD", + "type": "ERC20", + "decimals": 2, + "description": "Aave GUSD is an interest bearing token pegged 1:1 to the underlying GUSD deposited in Aave. aGUSD accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xD37EE7e4f452C6638c96536e68090De8cBcdb583", + "status": "active", + "id": "0xD37EE7e4f452C6638c96536e68090De8cBcdb583" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD37EE7e4f452C6638c96536e68090De8cBcdb583/logo.png b/blockchains/ethereum/assets/0xD37EE7e4f452C6638c96536e68090De8cBcdb583/logo.png new file mode 100644 index 00000000..045d297b Binary files /dev/null and b/blockchains/ethereum/assets/0xD37EE7e4f452C6638c96536e68090De8cBcdb583/logo.png differ diff --git a/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/info.json b/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/info.json new file mode 100644 index 00000000..8402c71c --- /dev/null +++ b/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/info.json @@ -0,0 +1,28 @@ +{ + "name": "Luxochain", + "type": "ERC20", + "symbol": "LUXO", + "decimals": 18, + "website": "https://www.luxochain.io/", + "description": "The project's mission is to deliver sustainability, reputation, and authenticity into the luxury market. Tracing goods on the blockchain, from raw material up to the distribution chain.", + "explorer": "https://etherscan.io/token/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD", + "status": "active", + "id": "0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD", + "links": [ + { + "name": "x", + "url": "https://x.com/luxochain" + }, + { + "name": "facebook", + "url": "https://facebook.com/luxochainbrand/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/luxochain/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/logo.png b/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/logo.png new file mode 100644 index 00000000..df237d67 Binary files /dev/null and b/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/logo.png differ diff --git a/blockchains/ethereum/assets/0xD3C00772B24D997A812249ca637a921e81357701/info.json b/blockchains/ethereum/assets/0xD3C00772B24D997A812249ca637a921e81357701/info.json new file mode 100644 index 00000000..1002782e --- /dev/null +++ b/blockchains/ethereum/assets/0xD3C00772B24D997A812249ca637a921e81357701/info.json @@ -0,0 +1,11 @@ +{ + "name": "WILD Token", + "symbol": "WILD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://wildcrypto.com/", + "explorer": "https://etherscan.io/token/0xD3C00772B24D997A812249ca637a921e81357701", + "status": "abandoned", + "id": "0xD3C00772B24D997A812249ca637a921e81357701" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD3C00772B24D997A812249ca637a921e81357701/logo.png b/blockchains/ethereum/assets/0xD3C00772B24D997A812249ca637a921e81357701/logo.png new file mode 100644 index 00000000..c44fbd31 Binary files /dev/null and b/blockchains/ethereum/assets/0xD3C00772B24D997A812249ca637a921e81357701/logo.png differ diff --git a/blockchains/ethereum/assets/0xD3de2cFbD3F8B7d9364a02b5C103530Cae870D82/info.json b/blockchains/ethereum/assets/0xD3de2cFbD3F8B7d9364a02b5C103530Cae870D82/info.json new file mode 100644 index 00000000..f12be85b --- /dev/null +++ b/blockchains/ethereum/assets/0xD3de2cFbD3F8B7d9364a02b5C103530Cae870D82/info.json @@ -0,0 +1,11 @@ +{ + "name": "Diaspora", + "symbol": "DIASPORA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD3de2cFbD3F8B7d9364a02b5C103530Cae870D82", + "status": "abandoned", + "id": "0xD3de2cFbD3F8B7d9364a02b5C103530Cae870D82" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD3de2cFbD3F8B7d9364a02b5C103530Cae870D82/logo.png b/blockchains/ethereum/assets/0xD3de2cFbD3F8B7d9364a02b5C103530Cae870D82/logo.png new file mode 100644 index 00000000..6811ae24 Binary files /dev/null and b/blockchains/ethereum/assets/0xD3de2cFbD3F8B7d9364a02b5C103530Cae870D82/logo.png differ diff --git a/blockchains/ethereum/assets/0xD417144312DbF50465b1C641d016962017Ef6240/info.json b/blockchains/ethereum/assets/0xD417144312DbF50465b1C641d016962017Ef6240/info.json new file mode 100644 index 00000000..e96de425 --- /dev/null +++ b/blockchains/ethereum/assets/0xD417144312DbF50465b1C641d016962017Ef6240/info.json @@ -0,0 +1,21 @@ +{ + "name": "Covalent", + "website": "https://www.covalenthq.com/", + "description": "Covalent provides a unified API bringing visibility to billions of blockchain data points.", + "explorer": "https://etherscan.io/token/0xd417144312dbf50465b1c641d016962017ef6240", + "type": "ERC20", + "symbol": "CQT", + "decimals": 18, + "status": "active", + "id": "0xD417144312DbF50465b1C641d016962017Ef6240", + "links": [ + { + "name": "github", + "url": "https://github.com/covalenthq" + }, + { + "name": "whitepaper", + "url": "https://www.covalenthq.com/static/documents/Covalent%20Whitepaper%20Apr%202021%20v1%20Branded.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD417144312DbF50465b1C641d016962017Ef6240/logo.png b/blockchains/ethereum/assets/0xD417144312DbF50465b1C641d016962017Ef6240/logo.png new file mode 100644 index 00000000..51c126c4 Binary files /dev/null and b/blockchains/ethereum/assets/0xD417144312DbF50465b1C641d016962017Ef6240/logo.png differ diff --git a/blockchains/ethereum/assets/0xD45247c07379d94904E0A87b4481F0a1DDfa0C64/info.json b/blockchains/ethereum/assets/0xD45247c07379d94904E0A87b4481F0a1DDfa0C64/info.json new file mode 100644 index 00000000..310fb041 --- /dev/null +++ b/blockchains/ethereum/assets/0xD45247c07379d94904E0A87b4481F0a1DDfa0C64/info.json @@ -0,0 +1,11 @@ +{ + "name": "Buggyra Coin Zero", + "symbol": "BCZERO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://buggyracoinzero.com/", + "explorer": "https://etherscan.io/token/0xD45247c07379d94904E0A87b4481F0a1DDfa0C64", + "status": "abandoned", + "id": "0xD45247c07379d94904E0A87b4481F0a1DDfa0C64" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD45247c07379d94904E0A87b4481F0a1DDfa0C64/logo.png b/blockchains/ethereum/assets/0xD45247c07379d94904E0A87b4481F0a1DDfa0C64/logo.png new file mode 100755 index 00000000..03fdedfd Binary files /dev/null and b/blockchains/ethereum/assets/0xD45247c07379d94904E0A87b4481F0a1DDfa0C64/logo.png differ diff --git a/blockchains/ethereum/assets/0xD46bA6D942050d489DBd938a2C909A5d5039A161/info.json b/blockchains/ethereum/assets/0xD46bA6D942050d489DBd938a2C909A5d5039A161/info.json new file mode 100644 index 00000000..6b0f38d9 --- /dev/null +++ b/blockchains/ethereum/assets/0xD46bA6D942050d489DBd938a2C909A5d5039A161/info.json @@ -0,0 +1,11 @@ +{ + "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://etherscan.io/token/0xD46bA6D942050d489DBd938a2C909A5d5039A161", + "type": "ERC20", + "symbol": "AMPL", + "decimals": 9, + "status": "active", + "id": "0xD46bA6D942050d489DBd938a2C909A5d5039A161" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD46bA6D942050d489DBd938a2C909A5d5039A161/logo.png b/blockchains/ethereum/assets/0xD46bA6D942050d489DBd938a2C909A5d5039A161/logo.png new file mode 100644 index 00000000..da535f6d Binary files /dev/null and b/blockchains/ethereum/assets/0xD46bA6D942050d489DBd938a2C909A5d5039A161/logo.png differ diff --git a/blockchains/ethereum/assets/0xD47774F8C580c3ebB7c81323F62A1D5c1eEcb232/info.json b/blockchains/ethereum/assets/0xD47774F8C580c3ebB7c81323F62A1D5c1eEcb232/info.json new file mode 100644 index 00000000..58dab6a0 --- /dev/null +++ b/blockchains/ethereum/assets/0xD47774F8C580c3ebB7c81323F62A1D5c1eEcb232/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlackBiT", + "symbol": "BIB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD47774F8C580c3ebB7c81323F62A1D5c1eEcb232", + "status": "abandoned", + "id": "0xD47774F8C580c3ebB7c81323F62A1D5c1eEcb232" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD47774F8C580c3ebB7c81323F62A1D5c1eEcb232/logo.png b/blockchains/ethereum/assets/0xD47774F8C580c3ebB7c81323F62A1D5c1eEcb232/logo.png new file mode 100644 index 00000000..030e4a3b Binary files /dev/null and b/blockchains/ethereum/assets/0xD47774F8C580c3ebB7c81323F62A1D5c1eEcb232/logo.png differ diff --git a/blockchains/ethereum/assets/0xD478161C952357F05f0292B56012Cd8457F1cfbF/info.json b/blockchains/ethereum/assets/0xD478161C952357F05f0292B56012Cd8457F1cfbF/info.json new file mode 100644 index 00000000..3cf14dbb --- /dev/null +++ b/blockchains/ethereum/assets/0xD478161C952357F05f0292B56012Cd8457F1cfbF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Polkamarkets", + "symbol": "POLK", + "type": "ERC20", + "decimals": 18, + "description": "Polkamarkets is a DeFi-Powered Prediction Market built for cross-chain information exchange and trading, where users take positions on outcomes of real world events–in a decentralized and interoperable platform on Polkadot.", + "website": "https://polkamarkets.com", + "explorer": "https://etherscan.io/token/0xd478161c952357f05f0292b56012cd8457f1cfbf", + "status": "active", + "id": "0xD478161C952357F05f0292B56012Cd8457F1cfbF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD478161C952357F05f0292B56012Cd8457F1cfbF/logo.png b/blockchains/ethereum/assets/0xD478161C952357F05f0292B56012Cd8457F1cfbF/logo.png new file mode 100644 index 00000000..7297ea51 Binary files /dev/null and b/blockchains/ethereum/assets/0xD478161C952357F05f0292B56012Cd8457F1cfbF/logo.png differ diff --git a/blockchains/ethereum/assets/0xD48B633045af65fF636F3c6edd744748351E020D/info.json b/blockchains/ethereum/assets/0xD48B633045af65fF636F3c6edd744748351E020D/info.json new file mode 100644 index 00000000..77d98b8a --- /dev/null +++ b/blockchains/ethereum/assets/0xD48B633045af65fF636F3c6edd744748351E020D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zethr", + "symbol": "ZTH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD48B633045af65fF636F3c6edd744748351E020D", + "status": "abandoned", + "id": "0xD48B633045af65fF636F3c6edd744748351E020D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD48B633045af65fF636F3c6edd744748351E020D/logo.png b/blockchains/ethereum/assets/0xD48B633045af65fF636F3c6edd744748351E020D/logo.png new file mode 100644 index 00000000..015802ad Binary files /dev/null and b/blockchains/ethereum/assets/0xD48B633045af65fF636F3c6edd744748351E020D/logo.png differ diff --git a/blockchains/ethereum/assets/0xD49ff13661451313cA1553fd6954BD1d9b6E02b9/info.json b/blockchains/ethereum/assets/0xD49ff13661451313cA1553fd6954BD1d9b6E02b9/info.json new file mode 100644 index 00000000..c966d8c3 --- /dev/null +++ b/blockchains/ethereum/assets/0xD49ff13661451313cA1553fd6954BD1d9b6E02b9/info.json @@ -0,0 +1,11 @@ +{ + "name": "ElectrifyAsia", + "symbol": "ELEC", + "type": "ERC20", + "decimals": 18, + "description": "Synergy is a peer-to-peer (P2P) energy trading platform that allows for the trading of energy among individual producers of energy, reaping stable revenues to consumers across city-wide energy grids, providing grater energy options at fairer prices.", + "website": "https://electrify.asia", + "explorer": "https://etherscan.io/token/0xD49ff13661451313cA1553fd6954BD1d9b6E02b9", + "status": "active", + "id": "0xD49ff13661451313cA1553fd6954BD1d9b6E02b9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD49ff13661451313cA1553fd6954BD1d9b6E02b9/logo.png b/blockchains/ethereum/assets/0xD49ff13661451313cA1553fd6954BD1d9b6E02b9/logo.png new file mode 100644 index 00000000..2786c1a0 Binary files /dev/null and b/blockchains/ethereum/assets/0xD49ff13661451313cA1553fd6954BD1d9b6E02b9/logo.png differ diff --git a/blockchains/ethereum/assets/0xD4CffeeF10F60eCA581b5E1146B5Aca4194a4C3b/info.json b/blockchains/ethereum/assets/0xD4CffeeF10F60eCA581b5E1146B5Aca4194a4C3b/info.json new file mode 100644 index 00000000..9d8cc213 --- /dev/null +++ b/blockchains/ethereum/assets/0xD4CffeeF10F60eCA581b5E1146B5Aca4194a4C3b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decentralized Universal Basic Income", + "symbol": "DUBI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD4CffeeF10F60eCA581b5E1146B5Aca4194a4C3b", + "status": "abandoned", + "id": "0xD4CffeeF10F60eCA581b5E1146B5Aca4194a4C3b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD4CffeeF10F60eCA581b5E1146B5Aca4194a4C3b/logo.png b/blockchains/ethereum/assets/0xD4CffeeF10F60eCA581b5E1146B5Aca4194a4C3b/logo.png new file mode 100755 index 00000000..99860879 Binary files /dev/null and b/blockchains/ethereum/assets/0xD4CffeeF10F60eCA581b5E1146B5Aca4194a4C3b/logo.png differ diff --git a/blockchains/ethereum/assets/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04/info.json b/blockchains/ethereum/assets/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04/info.json new file mode 100644 index 00000000..ed923b28 --- /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 00000000..fa376eda 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 00000000..36211b80 --- /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 00000000..6767ada8 Binary files /dev/null and b/blockchains/ethereum/assets/0xD4c6CCE0Cadf2fe4C0AF9eE6777989EFD8fB7670/logo.png differ diff --git a/blockchains/ethereum/assets/0xD4fb1706Ae549FEBeC06bb7175b08010DD1B0C2e/info.json b/blockchains/ethereum/assets/0xD4fb1706Ae549FEBeC06bb7175b08010DD1B0C2e/info.json new file mode 100644 index 00000000..92fb155a --- /dev/null +++ b/blockchains/ethereum/assets/0xD4fb1706Ae549FEBeC06bb7175b08010DD1B0C2e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Synth iETH", + "symbol": "iETH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD4fb1706Ae549FEBeC06bb7175b08010DD1B0C2e", + "status": "abandoned", + "id": "0xD4fb1706Ae549FEBeC06bb7175b08010DD1B0C2e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD4fb1706Ae549FEBeC06bb7175b08010DD1B0C2e/logo.png b/blockchains/ethereum/assets/0xD4fb1706Ae549FEBeC06bb7175b08010DD1B0C2e/logo.png new file mode 100644 index 00000000..eebd19f0 Binary files /dev/null and b/blockchains/ethereum/assets/0xD4fb1706Ae549FEBeC06bb7175b08010DD1B0C2e/logo.png differ diff --git a/blockchains/ethereum/assets/0xD533a949740bb3306d119CC777fa900bA034cd52/info.json b/blockchains/ethereum/assets/0xD533a949740bb3306d119CC777fa900bA034cd52/info.json new file mode 100644 index 00000000..53f97610 --- /dev/null +++ b/blockchains/ethereum/assets/0xD533a949740bb3306d119CC777fa900bA034cd52/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://etherscan.io/token/0xD533a949740bb3306d119CC777fa900bA034cd52", + "research": "https://research.binance.com/en/projects/curve", + "type": "ERC20", + "symbol": "CRV", + "decimals": 18, + "status": "active", + "id": "0xD533a949740bb3306d119CC777fa900bA034cd52", + "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/ethereum/assets/0xD533a949740bb3306d119CC777fa900bA034cd52/logo.png b/blockchains/ethereum/assets/0xD533a949740bb3306d119CC777fa900bA034cd52/logo.png new file mode 100644 index 00000000..b820f250 Binary files /dev/null and b/blockchains/ethereum/assets/0xD533a949740bb3306d119CC777fa900bA034cd52/logo.png differ diff --git a/blockchains/ethereum/assets/0xD536bBd5414A8C2beEd82a63737B9327D2FA35a6/info.json b/blockchains/ethereum/assets/0xD536bBd5414A8C2beEd82a63737B9327D2FA35a6/info.json new file mode 100644 index 00000000..0b5fbfbe --- /dev/null +++ b/blockchains/ethereum/assets/0xD536bBd5414A8C2beEd82a63737B9327D2FA35a6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aitheon", + "symbol": "ACU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.aitheon.com/", + "explorer": "https://etherscan.io/token/0xD536bBd5414A8C2beEd82a63737B9327D2FA35a6", + "status": "abandoned", + "id": "0xD536bBd5414A8C2beEd82a63737B9327D2FA35a6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD536bBd5414A8C2beEd82a63737B9327D2FA35a6/logo.png b/blockchains/ethereum/assets/0xD536bBd5414A8C2beEd82a63737B9327D2FA35a6/logo.png new file mode 100644 index 00000000..bc1086ee Binary files /dev/null and b/blockchains/ethereum/assets/0xD536bBd5414A8C2beEd82a63737B9327D2FA35a6/logo.png differ diff --git a/blockchains/ethereum/assets/0xD54E2E7281De8E7D220F9173e33241fbFa881968/info.json b/blockchains/ethereum/assets/0xD54E2E7281De8E7D220F9173e33241fbFa881968/info.json new file mode 100644 index 00000000..f204dbfb --- /dev/null +++ b/blockchains/ethereum/assets/0xD54E2E7281De8E7D220F9173e33241fbFa881968/info.json @@ -0,0 +1,11 @@ +{ + "name": "M.O.A.B", + "symbol": "MOAB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD54E2E7281De8E7D220F9173e33241fbFa881968", + "status": "abandoned", + "id": "0xD54E2E7281De8E7D220F9173e33241fbFa881968" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD54E2E7281De8E7D220F9173e33241fbFa881968/logo.png b/blockchains/ethereum/assets/0xD54E2E7281De8E7D220F9173e33241fbFa881968/logo.png new file mode 100644 index 00000000..8f326cf1 Binary files /dev/null and b/blockchains/ethereum/assets/0xD54E2E7281De8E7D220F9173e33241fbFa881968/logo.png differ diff --git a/blockchains/ethereum/assets/0xD55210Bb6898C021a19de1F58d27b71f095921Ee/info.json b/blockchains/ethereum/assets/0xD55210Bb6898C021a19de1F58d27b71f095921Ee/info.json new file mode 100644 index 00000000..150e0460 --- /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 00000000..17085576 Binary files /dev/null and b/blockchains/ethereum/assets/0xD55210Bb6898C021a19de1F58d27b71f095921Ee/logo.png differ diff --git a/blockchains/ethereum/assets/0xD5525D397898e5502075Ea5E830d8914f6F0affe/info.json b/blockchains/ethereum/assets/0xD5525D397898e5502075Ea5E830d8914f6F0affe/info.json new file mode 100644 index 00000000..02a3e972 --- /dev/null +++ b/blockchains/ethereum/assets/0xD5525D397898e5502075Ea5E830d8914f6F0affe/info.json @@ -0,0 +1,11 @@ +{ + "name": "MEME", + "symbol": "MEME", + "type": "ERC20", + "decimals": 8, + "description": "Meme mashes up the most exciting innovations in DeFi and NFTs. Put your $MEME to work and collect digital content that you can truly own.", + "website": "https://dontbuymeme.com", + "explorer": "https://etherscan.io/token/0xD5525D397898e5502075Ea5E830d8914f6F0affe", + "status": "active", + "id": "0xD5525D397898e5502075Ea5E830d8914f6F0affe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD5525D397898e5502075Ea5E830d8914f6F0affe/logo.png b/blockchains/ethereum/assets/0xD5525D397898e5502075Ea5E830d8914f6F0affe/logo.png new file mode 100644 index 00000000..305cb76a Binary files /dev/null and b/blockchains/ethereum/assets/0xD5525D397898e5502075Ea5E830d8914f6F0affe/logo.png differ diff --git a/blockchains/ethereum/assets/0xD56daC73A4d6766464b38ec6D91eB45Ce7457c44/info.json b/blockchains/ethereum/assets/0xD56daC73A4d6766464b38ec6D91eB45Ce7457c44/info.json new file mode 100644 index 00000000..2102f40b --- /dev/null +++ b/blockchains/ethereum/assets/0xD56daC73A4d6766464b38ec6D91eB45Ce7457c44/info.json @@ -0,0 +1,11 @@ +{ + "name": "Panvala pan", + "symbol": "PAN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.panvala.com", + "explorer": "https://etherscan.io/token/0xD56daC73A4d6766464b38ec6D91eB45Ce7457c44", + "status": "abandoned", + "id": "0xD56daC73A4d6766464b38ec6D91eB45Ce7457c44" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD56daC73A4d6766464b38ec6D91eB45Ce7457c44/logo.png b/blockchains/ethereum/assets/0xD56daC73A4d6766464b38ec6D91eB45Ce7457c44/logo.png new file mode 100644 index 00000000..8900c15c Binary files /dev/null and b/blockchains/ethereum/assets/0xD56daC73A4d6766464b38ec6D91eB45Ce7457c44/logo.png differ diff --git a/blockchains/ethereum/assets/0xD581D38a7303b6DeA5828906acFDe416EE85dEE0/info.json b/blockchains/ethereum/assets/0xD581D38a7303b6DeA5828906acFDe416EE85dEE0/info.json new file mode 100644 index 00000000..8d2f5ecc --- /dev/null +++ b/blockchains/ethereum/assets/0xD581D38a7303b6DeA5828906acFDe416EE85dEE0/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R885792", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD581D38a7303b6DeA5828906acFDe416EE85dEE0", + "status": "abandoned", + "id": "0xD581D38a7303b6DeA5828906acFDe416EE85dEE0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD581D38a7303b6DeA5828906acFDe416EE85dEE0/logo.png b/blockchains/ethereum/assets/0xD581D38a7303b6DeA5828906acFDe416EE85dEE0/logo.png new file mode 100644 index 00000000..4ebd0686 Binary files /dev/null and b/blockchains/ethereum/assets/0xD581D38a7303b6DeA5828906acFDe416EE85dEE0/logo.png differ diff --git a/blockchains/ethereum/assets/0xD58Ce16264F8D2422103Cd11d0f1Cc5987E79B5c/info.json b/blockchains/ethereum/assets/0xD58Ce16264F8D2422103Cd11d0f1Cc5987E79B5c/info.json new file mode 100644 index 00000000..633a751a --- /dev/null +++ b/blockchains/ethereum/assets/0xD58Ce16264F8D2422103Cd11d0f1Cc5987E79B5c/info.json @@ -0,0 +1,11 @@ +{ + "name": "LearnCoin", + "symbol": "LEC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD58Ce16264F8D2422103Cd11d0f1Cc5987E79B5c", + "status": "abandoned", + "id": "0xD58Ce16264F8D2422103Cd11d0f1Cc5987E79B5c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD58Ce16264F8D2422103Cd11d0f1Cc5987E79B5c/logo.png b/blockchains/ethereum/assets/0xD58Ce16264F8D2422103Cd11d0f1Cc5987E79B5c/logo.png new file mode 100644 index 00000000..9c995ff7 Binary files /dev/null and b/blockchains/ethereum/assets/0xD58Ce16264F8D2422103Cd11d0f1Cc5987E79B5c/logo.png differ diff --git a/blockchains/ethereum/assets/0xD5930C307d7395Ff807F2921F12C5EB82131a789/info.json b/blockchains/ethereum/assets/0xD5930C307d7395Ff807F2921F12C5EB82131a789/info.json new file mode 100644 index 00000000..8a413336 --- /dev/null +++ b/blockchains/ethereum/assets/0xD5930C307d7395Ff807F2921F12C5EB82131a789/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bolt Token", + "symbol": "BOLT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD5930C307d7395Ff807F2921F12C5EB82131a789", + "status": "abandoned", + "id": "0xD5930C307d7395Ff807F2921F12C5EB82131a789" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD5930C307d7395Ff807F2921F12C5EB82131a789/logo.png b/blockchains/ethereum/assets/0xD5930C307d7395Ff807F2921F12C5EB82131a789/logo.png new file mode 100644 index 00000000..f93c014c Binary files /dev/null and b/blockchains/ethereum/assets/0xD5930C307d7395Ff807F2921F12C5EB82131a789/logo.png differ diff --git a/blockchains/ethereum/assets/0xD59f53256AdDf282aa1D5e19f934738dDC06c5cF/info.json b/blockchains/ethereum/assets/0xD59f53256AdDf282aa1D5e19f934738dDC06c5cF/info.json new file mode 100644 index 00000000..2ecfebe2 --- /dev/null +++ b/blockchains/ethereum/assets/0xD59f53256AdDf282aa1D5e19f934738dDC06c5cF/info.json @@ -0,0 +1,11 @@ +{ + "name": "KINELA", + "symbol": "KDCC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD59f53256AdDf282aa1D5e19f934738dDC06c5cF", + "status": "abandoned", + "id": "0xD59f53256AdDf282aa1D5e19f934738dDC06c5cF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD59f53256AdDf282aa1D5e19f934738dDC06c5cF/logo.png b/blockchains/ethereum/assets/0xD59f53256AdDf282aa1D5e19f934738dDC06c5cF/logo.png new file mode 100755 index 00000000..55c8a0bb Binary files /dev/null and b/blockchains/ethereum/assets/0xD59f53256AdDf282aa1D5e19f934738dDC06c5cF/logo.png differ diff --git a/blockchains/ethereum/assets/0xD5DE9AAE27C94AE7c20bE926D193289B5f41EA8A/info.json b/blockchains/ethereum/assets/0xD5DE9AAE27C94AE7c20bE926D193289B5f41EA8A/info.json new file mode 100644 index 00000000..4c9fa9f7 --- /dev/null +++ b/blockchains/ethereum/assets/0xD5DE9AAE27C94AE7c20bE926D193289B5f41EA8A/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 219-CN20", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD5DE9AAE27C94AE7c20bE926D193289B5f41EA8A", + "status": "abandoned", + "id": "0xD5DE9AAE27C94AE7c20bE926D193289B5f41EA8A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD5DE9AAE27C94AE7c20bE926D193289B5f41EA8A/logo.png b/blockchains/ethereum/assets/0xD5DE9AAE27C94AE7c20bE926D193289B5f41EA8A/logo.png new file mode 100644 index 00000000..ecc80e93 Binary files /dev/null and b/blockchains/ethereum/assets/0xD5DE9AAE27C94AE7c20bE926D193289B5f41EA8A/logo.png differ diff --git a/blockchains/ethereum/assets/0xD5E38d2Ef4aD5e38942E6234e2CEC0dac38E124A/info.json b/blockchains/ethereum/assets/0xD5E38d2Ef4aD5e38942E6234e2CEC0dac38E124A/info.json new file mode 100644 index 00000000..f63af207 --- /dev/null +++ b/blockchains/ethereum/assets/0xD5E38d2Ef4aD5e38942E6234e2CEC0dac38E124A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Volcanoes", + "symbol": "VOLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD5E38d2Ef4aD5e38942E6234e2CEC0dac38E124A", + "status": "abandoned", + "id": "0xD5E38d2Ef4aD5e38942E6234e2CEC0dac38E124A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD5E38d2Ef4aD5e38942E6234e2CEC0dac38E124A/logo.png b/blockchains/ethereum/assets/0xD5E38d2Ef4aD5e38942E6234e2CEC0dac38E124A/logo.png new file mode 100644 index 00000000..12155ed1 Binary files /dev/null and b/blockchains/ethereum/assets/0xD5E38d2Ef4aD5e38942E6234e2CEC0dac38E124A/logo.png differ diff --git a/blockchains/ethereum/assets/0xD5bF66fF3Dab4c74Ac6014fd2181Bd3aD1bBaF32/info.json b/blockchains/ethereum/assets/0xD5bF66fF3Dab4c74Ac6014fd2181Bd3aD1bBaF32/info.json new file mode 100644 index 00000000..a3c88ea8 --- /dev/null +++ b/blockchains/ethereum/assets/0xD5bF66fF3Dab4c74Ac6014fd2181Bd3aD1bBaF32/info.json @@ -0,0 +1,11 @@ +{ + "name": "ECC Token", + "symbol": "ECC", + "type": "ERC20", + "decimals": 8, + "description": "ECC Coin is a crypto-currency that can be used within ECA Loyalty Rewards Network and ECA Marketplace.", + "website": "https://ec-algorithm.io/", + "explorer": "https://etherscan.io/token/0xD5bF66fF3Dab4c74Ac6014fd2181Bd3aD1bBaF32", + "status": "active", + "id": "0xD5bF66fF3Dab4c74Ac6014fd2181Bd3aD1bBaF32" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD5bF66fF3Dab4c74Ac6014fd2181Bd3aD1bBaF32/logo.png b/blockchains/ethereum/assets/0xD5bF66fF3Dab4c74Ac6014fd2181Bd3aD1bBaF32/logo.png new file mode 100644 index 00000000..edd453b4 Binary files /dev/null and b/blockchains/ethereum/assets/0xD5bF66fF3Dab4c74Ac6014fd2181Bd3aD1bBaF32/logo.png differ diff --git a/blockchains/ethereum/assets/0xD5cd84D6f044AbE314Ee7E414d37cae8773ef9D3/info.json b/blockchains/ethereum/assets/0xD5cd84D6f044AbE314Ee7E414d37cae8773ef9D3/info.json new file mode 100644 index 00000000..babc0745 --- /dev/null +++ b/blockchains/ethereum/assets/0xD5cd84D6f044AbE314Ee7E414d37cae8773ef9D3/info.json @@ -0,0 +1,17 @@ +{ + "name": "Harmony", + "website": "https://www.harmony.one", + "description": "Harmony Bridged Token on Ethereum", + "explorer": "https://etherscan.io/token/0xD5cd84D6f044AbE314Ee7E414d37cae8773ef9D3", + "type": "ERC20", + "symbol": "ONE", + "decimals": 18, + "status": "active", + "id": "0xD5cd84D6f044AbE314Ee7E414d37cae8773ef9D3", + "links": [ + { + "name": "x", + "url": "https://x.com/harmonyprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD5cd84D6f044AbE314Ee7E414d37cae8773ef9D3/logo.png b/blockchains/ethereum/assets/0xD5cd84D6f044AbE314Ee7E414d37cae8773ef9D3/logo.png new file mode 100644 index 00000000..cd16d5e2 Binary files /dev/null and b/blockchains/ethereum/assets/0xD5cd84D6f044AbE314Ee7E414d37cae8773ef9D3/logo.png differ diff --git a/blockchains/ethereum/assets/0xD5e2A54Fef5f9E4A6b21EC646Bbed7A160a00F18/info.json b/blockchains/ethereum/assets/0xD5e2A54Fef5f9E4A6b21EC646Bbed7A160a00F18/info.json new file mode 100644 index 00000000..3290b480 --- /dev/null +++ b/blockchains/ethereum/assets/0xD5e2A54Fef5f9E4A6b21EC646Bbed7A160a00F18/info.json @@ -0,0 +1,11 @@ +{ + "name": "BeforeCoinMarketCap", + "website": "https://beta.beforecoinmarketcap.com/", + "description": "BeforeCoinMarketCap is a platform for tracking the initial placement of tokens/coins, and audit of valid tokens with a small volume. The platform rewards users with valuable information and tokens of their own ecosystem token (BCMC1).", + "explorer": "https://etherscan.io/token/0xD5e2A54Fef5f9E4A6b21EC646Bbed7A160a00F18", + "type": "ERC20", + "symbol": "BCMC1", + "decimals": 18, + "status": "active", + "id": "0xD5e2A54Fef5f9E4A6b21EC646Bbed7A160a00F18" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD5e2A54Fef5f9E4A6b21EC646Bbed7A160a00F18/logo.png b/blockchains/ethereum/assets/0xD5e2A54Fef5f9E4A6b21EC646Bbed7A160a00F18/logo.png new file mode 100644 index 00000000..5af83deb Binary files /dev/null and b/blockchains/ethereum/assets/0xD5e2A54Fef5f9E4A6b21EC646Bbed7A160a00F18/logo.png differ diff --git a/blockchains/ethereum/assets/0xD60E45581a6ACD35C5Bd3cd914040c0029Afb1a3/info.json b/blockchains/ethereum/assets/0xD60E45581a6ACD35C5Bd3cd914040c0029Afb1a3/info.json new file mode 100644 index 00000000..7927b84b --- /dev/null +++ b/blockchains/ethereum/assets/0xD60E45581a6ACD35C5Bd3cd914040c0029Afb1a3/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C581297", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD60E45581a6ACD35C5Bd3cd914040c0029Afb1a3", + "status": "spam", + "id": "0xD60E45581a6ACD35C5Bd3cd914040c0029Afb1a3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD60E45581a6ACD35C5Bd3cd914040c0029Afb1a3/logo.png b/blockchains/ethereum/assets/0xD60E45581a6ACD35C5Bd3cd914040c0029Afb1a3/logo.png new file mode 100644 index 00000000..bf6d8dd3 Binary files /dev/null and b/blockchains/ethereum/assets/0xD60E45581a6ACD35C5Bd3cd914040c0029Afb1a3/logo.png differ diff --git a/blockchains/ethereum/assets/0xD635903C1B9A3202027d4cC78EfBB6FA964a987A/info.json b/blockchains/ethereum/assets/0xD635903C1B9A3202027d4cC78EfBB6FA964a987A/info.json new file mode 100644 index 00000000..49c33d24 --- /dev/null +++ b/blockchains/ethereum/assets/0xD635903C1B9A3202027d4cC78EfBB6FA964a987A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitsave", + "symbol": "BVC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD635903C1B9A3202027d4cC78EfBB6FA964a987A", + "status": "abandoned", + "id": "0xD635903C1B9A3202027d4cC78EfBB6FA964a987A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD635903C1B9A3202027d4cC78EfBB6FA964a987A/logo.png b/blockchains/ethereum/assets/0xD635903C1B9A3202027d4cC78EfBB6FA964a987A/logo.png new file mode 100755 index 00000000..88f92399 Binary files /dev/null and b/blockchains/ethereum/assets/0xD635903C1B9A3202027d4cC78EfBB6FA964a987A/logo.png differ diff --git a/blockchains/ethereum/assets/0xD64129aC9Ec6307B9625869e817b6c45EaeE80A9/info.json b/blockchains/ethereum/assets/0xD64129aC9Ec6307B9625869e817b6c45EaeE80A9/info.json new file mode 100644 index 00000000..08001432 --- /dev/null +++ b/blockchains/ethereum/assets/0xD64129aC9Ec6307B9625869e817b6c45EaeE80A9/info.json @@ -0,0 +1,11 @@ +{ + "name": "FFC", + "symbol": "FFC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD64129aC9Ec6307B9625869e817b6c45EaeE80A9", + "status": "abandoned", + "id": "0xD64129aC9Ec6307B9625869e817b6c45EaeE80A9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD64129aC9Ec6307B9625869e817b6c45EaeE80A9/logo.png b/blockchains/ethereum/assets/0xD64129aC9Ec6307B9625869e817b6c45EaeE80A9/logo.png new file mode 100644 index 00000000..747856d8 Binary files /dev/null and b/blockchains/ethereum/assets/0xD64129aC9Ec6307B9625869e817b6c45EaeE80A9/logo.png differ diff --git a/blockchains/ethereum/assets/0xD65960FAcb8E4a2dFcb2C2212cb2e44a02e2a57E/info.json b/blockchains/ethereum/assets/0xD65960FAcb8E4a2dFcb2C2212cb2e44a02e2a57E/info.json new file mode 100644 index 00000000..a7b54bc2 --- /dev/null +++ b/blockchains/ethereum/assets/0xD65960FAcb8E4a2dFcb2C2212cb2e44a02e2a57E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Soarcoin", + "symbol": "Soar", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "http://soarlabs.org/", + "explorer": "https://etherscan.io/token/0xD65960FAcb8E4a2dFcb2C2212cb2e44a02e2a57E", + "status": "abandoned", + "id": "0xD65960FAcb8E4a2dFcb2C2212cb2e44a02e2a57E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD65960FAcb8E4a2dFcb2C2212cb2e44a02e2a57E/logo.png b/blockchains/ethereum/assets/0xD65960FAcb8E4a2dFcb2C2212cb2e44a02e2a57E/logo.png new file mode 100755 index 00000000..6a3ce180 Binary files /dev/null and b/blockchains/ethereum/assets/0xD65960FAcb8E4a2dFcb2C2212cb2e44a02e2a57E/logo.png differ diff --git a/blockchains/ethereum/assets/0xD68515DbB439aC30BEFAeDAFf7487b3a00b57659/info.json b/blockchains/ethereum/assets/0xD68515DbB439aC30BEFAeDAFf7487b3a00b57659/info.json new file mode 100644 index 00000000..5db4f48d --- /dev/null +++ b/blockchains/ethereum/assets/0xD68515DbB439aC30BEFAeDAFf7487b3a00b57659/info.json @@ -0,0 +1,11 @@ +{ + "name": "Reearn Token", + "symbol": "RET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD68515DbB439aC30BEFAeDAFf7487b3a00b57659", + "status": "abandoned", + "id": "0xD68515DbB439aC30BEFAeDAFf7487b3a00b57659" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD68515DbB439aC30BEFAeDAFf7487b3a00b57659/logo.png b/blockchains/ethereum/assets/0xD68515DbB439aC30BEFAeDAFf7487b3a00b57659/logo.png new file mode 100644 index 00000000..9ff4b4bc Binary files /dev/null and b/blockchains/ethereum/assets/0xD68515DbB439aC30BEFAeDAFf7487b3a00b57659/logo.png differ diff --git a/blockchains/ethereum/assets/0xD6940A1FfD9F3B025D1F1055AbCfd9F7CdA81eF9/info.json b/blockchains/ethereum/assets/0xD6940A1FfD9F3B025D1F1055AbCfd9F7CdA81eF9/info.json new file mode 100644 index 00000000..0846a303 --- /dev/null +++ b/blockchains/ethereum/assets/0xD6940A1FfD9F3B025D1F1055AbCfd9F7CdA81eF9/info.json @@ -0,0 +1,11 @@ +{ + "name": "youForia", + "symbol": "YFR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://youforia.nl/", + "explorer": "https://etherscan.io/token/0xD6940A1FfD9F3B025D1F1055AbCfd9F7CdA81eF9", + "status": "abandoned", + "id": "0xD6940A1FfD9F3B025D1F1055AbCfd9F7CdA81eF9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD6940A1FfD9F3B025D1F1055AbCfd9F7CdA81eF9/logo.png b/blockchains/ethereum/assets/0xD6940A1FfD9F3B025D1F1055AbCfd9F7CdA81eF9/logo.png new file mode 100644 index 00000000..5e9ef535 Binary files /dev/null and b/blockchains/ethereum/assets/0xD6940A1FfD9F3B025D1F1055AbCfd9F7CdA81eF9/logo.png differ diff --git a/blockchains/ethereum/assets/0xD69F306549e9d96f183B1AecA30B8f4353c2ECC3/info.json b/blockchains/ethereum/assets/0xD69F306549e9d96f183B1AecA30B8f4353c2ECC3/info.json new file mode 100644 index 00000000..4ccf38a4 --- /dev/null +++ b/blockchains/ethereum/assets/0xD69F306549e9d96f183B1AecA30B8f4353c2ECC3/info.json @@ -0,0 +1,11 @@ +{ + "name": "MCH Coin", + "website": "https://www.mycryptoheroes.net/help-posts/TTgrGCNsMHYxK6jMCB4rV", + "description": "MCH coins are primarily used to vote on MCH governance.", + "explorer": "https://etherscan.io/token/0xd69f306549e9d96f183b1aeca30b8f4353c2ecc3", + "type": "ERC20", + "symbol": "MCHC", + "decimals": 18, + "status": "active", + "id": "0xD69F306549e9d96f183B1AecA30B8f4353c2ECC3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD69F306549e9d96f183B1AecA30B8f4353c2ECC3/logo.png b/blockchains/ethereum/assets/0xD69F306549e9d96f183B1AecA30B8f4353c2ECC3/logo.png new file mode 100644 index 00000000..7c553974 Binary files /dev/null and b/blockchains/ethereum/assets/0xD69F306549e9d96f183B1AecA30B8f4353c2ECC3/logo.png differ diff --git a/blockchains/ethereum/assets/0xD6AeC49f2591cAe67d52c9Ead8c926EbaD54Ec69/info.json b/blockchains/ethereum/assets/0xD6AeC49f2591cAe67d52c9Ead8c926EbaD54Ec69/info.json new file mode 100644 index 00000000..6b93bb10 --- /dev/null +++ b/blockchains/ethereum/assets/0xD6AeC49f2591cAe67d52c9Ead8c926EbaD54Ec69/info.json @@ -0,0 +1,11 @@ +{ + "name": "VLCToken", + "symbol": "VLC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD6AeC49f2591cAe67d52c9Ead8c926EbaD54Ec69", + "status": "abandoned", + "id": "0xD6AeC49f2591cAe67d52c9Ead8c926EbaD54Ec69" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD6AeC49f2591cAe67d52c9Ead8c926EbaD54Ec69/logo.png b/blockchains/ethereum/assets/0xD6AeC49f2591cAe67d52c9Ead8c926EbaD54Ec69/logo.png new file mode 100755 index 00000000..4a4e8277 Binary files /dev/null and b/blockchains/ethereum/assets/0xD6AeC49f2591cAe67d52c9Ead8c926EbaD54Ec69/logo.png differ diff --git a/blockchains/ethereum/assets/0xD6B6b7001825da24fA3e8CAcC815fC8C032b6A55/info.json b/blockchains/ethereum/assets/0xD6B6b7001825da24fA3e8CAcC815fC8C032b6A55/info.json new file mode 100644 index 00000000..498f83de --- /dev/null +++ b/blockchains/ethereum/assets/0xD6B6b7001825da24fA3e8CAcC815fC8C032b6A55/info.json @@ -0,0 +1,11 @@ +{ + "name": "Insurance", + "symbol": "SEC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD6B6b7001825da24fA3e8CAcC815fC8C032b6A55", + "status": "abandoned", + "id": "0xD6B6b7001825da24fA3e8CAcC815fC8C032b6A55" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD6B6b7001825da24fA3e8CAcC815fC8C032b6A55/logo.png b/blockchains/ethereum/assets/0xD6B6b7001825da24fA3e8CAcC815fC8C032b6A55/logo.png new file mode 100644 index 00000000..d4b895fa Binary files /dev/null and b/blockchains/ethereum/assets/0xD6B6b7001825da24fA3e8CAcC815fC8C032b6A55/logo.png differ diff --git a/blockchains/ethereum/assets/0xD6F0Bb2A45110f819e908a915237D652Ac7c5AA8/info.json b/blockchains/ethereum/assets/0xD6F0Bb2A45110f819e908a915237D652Ac7c5AA8/info.json new file mode 100644 index 00000000..1a88f5ee --- /dev/null +++ b/blockchains/ethereum/assets/0xD6F0Bb2A45110f819e908a915237D652Ac7c5AA8/info.json @@ -0,0 +1,11 @@ +{ + "name": "DFOHub", + "symbol": "BUIDL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD6F0Bb2A45110f819e908a915237D652Ac7c5AA8", + "status": "abandoned", + "id": "0xD6F0Bb2A45110f819e908a915237D652Ac7c5AA8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD6F0Bb2A45110f819e908a915237D652Ac7c5AA8/logo.png b/blockchains/ethereum/assets/0xD6F0Bb2A45110f819e908a915237D652Ac7c5AA8/logo.png new file mode 100644 index 00000000..48a7fff9 Binary files /dev/null and b/blockchains/ethereum/assets/0xD6F0Bb2A45110f819e908a915237D652Ac7c5AA8/logo.png differ diff --git a/blockchains/ethereum/assets/0xD6a55C63865AffD67E2FB9f284F87b7a9E5FF3bD/info.json b/blockchains/ethereum/assets/0xD6a55C63865AffD67E2FB9f284F87b7a9E5FF3bD/info.json new file mode 100644 index 00000000..f33ec143 --- /dev/null +++ b/blockchains/ethereum/assets/0xD6a55C63865AffD67E2FB9f284F87b7a9E5FF3bD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Switch", + "symbol": "ESH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://switch.ag", + "explorer": "https://etherscan.io/token/0xD6a55C63865AffD67E2FB9f284F87b7a9E5FF3bD", + "status": "active", + "id": "0xD6a55C63865AffD67E2FB9f284F87b7a9E5FF3bD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD6a55C63865AffD67E2FB9f284F87b7a9E5FF3bD/logo.png b/blockchains/ethereum/assets/0xD6a55C63865AffD67E2FB9f284F87b7a9E5FF3bD/logo.png new file mode 100644 index 00000000..f618b7cf Binary files /dev/null and b/blockchains/ethereum/assets/0xD6a55C63865AffD67E2FB9f284F87b7a9E5FF3bD/logo.png differ diff --git a/blockchains/ethereum/assets/0xD6b107D3E45B959B6d13FAF1bb2a2CF8fC7025e6/info.json b/blockchains/ethereum/assets/0xD6b107D3E45B959B6d13FAF1bb2a2CF8fC7025e6/info.json new file mode 100644 index 00000000..0299d63d --- /dev/null +++ b/blockchains/ethereum/assets/0xD6b107D3E45B959B6d13FAF1bb2a2CF8fC7025e6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitnex Global", + "symbol": "BTNG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD6b107D3E45B959B6d13FAF1bb2a2CF8fC7025e6", + "status": "abandoned", + "id": "0xD6b107D3E45B959B6d13FAF1bb2a2CF8fC7025e6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD6b107D3E45B959B6d13FAF1bb2a2CF8fC7025e6/logo.png b/blockchains/ethereum/assets/0xD6b107D3E45B959B6d13FAF1bb2a2CF8fC7025e6/logo.png new file mode 100644 index 00000000..f0fe908a Binary files /dev/null and b/blockchains/ethereum/assets/0xD6b107D3E45B959B6d13FAF1bb2a2CF8fC7025e6/logo.png differ diff --git a/blockchains/ethereum/assets/0xD6c67B93a7b248dF608a653d82a100556144c5DA/info.json b/blockchains/ethereum/assets/0xD6c67B93a7b248dF608a653d82a100556144c5DA/info.json new file mode 100644 index 00000000..a20cca58 --- /dev/null +++ b/blockchains/ethereum/assets/0xD6c67B93a7b248dF608a653d82a100556144c5DA/info.json @@ -0,0 +1,11 @@ +{ + "name": "ExNetwork Token", + "website": "https://exnetwork.community/", + "description": "ExNetwork Community App", + "explorer": "https://etherscan.io/token/0xD6c67B93a7b248dF608a653d82a100556144c5DA", + "type": "ERC20", + "symbol": "EXNT", + "decimals": 16, + "status": "active", + "id": "0xD6c67B93a7b248dF608a653d82a100556144c5DA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD6c67B93a7b248dF608a653d82a100556144c5DA/logo.png b/blockchains/ethereum/assets/0xD6c67B93a7b248dF608a653d82a100556144c5DA/logo.png new file mode 100644 index 00000000..74ef0d6a Binary files /dev/null and b/blockchains/ethereum/assets/0xD6c67B93a7b248dF608a653d82a100556144c5DA/logo.png differ diff --git a/blockchains/ethereum/assets/0xD6e1401a079922469e9b965Cb090ea6fF64C6839/info.json b/blockchains/ethereum/assets/0xD6e1401a079922469e9b965Cb090ea6fF64C6839/info.json new file mode 100644 index 00000000..393334fd --- /dev/null +++ b/blockchains/ethereum/assets/0xD6e1401a079922469e9b965Cb090ea6fF64C6839/info.json @@ -0,0 +1,11 @@ +{ + "name": "HOLD", + "symbol": "HOLD", + "type": "ERC20", + "decimals": 18, + "description": "HOLD is a revolutionary card that provides instant cash against cryptocurrency collateral. Leverage the power of your portfolio without having to sell it.", + "website": "https://hold.co", + "explorer": "https://etherscan.io/token/0xD6e1401a079922469e9b965Cb090ea6fF64C6839", + "status": "active", + "id": "0xD6e1401a079922469e9b965Cb090ea6fF64C6839" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD6e1401a079922469e9b965Cb090ea6fF64C6839/logo.png b/blockchains/ethereum/assets/0xD6e1401a079922469e9b965Cb090ea6fF64C6839/logo.png new file mode 100644 index 00000000..f5778495 Binary files /dev/null and b/blockchains/ethereum/assets/0xD6e1401a079922469e9b965Cb090ea6fF64C6839/logo.png differ diff --git a/blockchains/ethereum/assets/0xD6ed0E5D7f854b64b5E467a240A6C155C17cC6A2/info.json b/blockchains/ethereum/assets/0xD6ed0E5D7f854b64b5E467a240A6C155C17cC6A2/info.json new file mode 100644 index 00000000..0780630a --- /dev/null +++ b/blockchains/ethereum/assets/0xD6ed0E5D7f854b64b5E467a240A6C155C17cC6A2/info.json @@ -0,0 +1,11 @@ +{ + "name": "CFun Token", + "symbol": "CFun", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD6ed0E5D7f854b64b5E467a240A6C155C17cC6A2", + "status": "abandoned", + "id": "0xD6ed0E5D7f854b64b5E467a240A6C155C17cC6A2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD6ed0E5D7f854b64b5E467a240A6C155C17cC6A2/logo.png b/blockchains/ethereum/assets/0xD6ed0E5D7f854b64b5E467a240A6C155C17cC6A2/logo.png new file mode 100644 index 00000000..204c3486 Binary files /dev/null and b/blockchains/ethereum/assets/0xD6ed0E5D7f854b64b5E467a240A6C155C17cC6A2/logo.png differ diff --git a/blockchains/ethereum/assets/0xD716905047C61d92Ef634F97D3D746747C08448A/info.json b/blockchains/ethereum/assets/0xD716905047C61d92Ef634F97D3D746747C08448A/info.json new file mode 100644 index 00000000..e84812f1 --- /dev/null +++ b/blockchains/ethereum/assets/0xD716905047C61d92Ef634F97D3D746747C08448A/info.json @@ -0,0 +1,11 @@ +{ + "name": "JACOB", + "symbol": "JACOB", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD716905047C61d92Ef634F97D3D746747C08448A", + "status": "abandoned", + "id": "0xD716905047C61d92Ef634F97D3D746747C08448A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD716905047C61d92Ef634F97D3D746747C08448A/logo.png b/blockchains/ethereum/assets/0xD716905047C61d92Ef634F97D3D746747C08448A/logo.png new file mode 100644 index 00000000..83dece0a Binary files /dev/null and b/blockchains/ethereum/assets/0xD716905047C61d92Ef634F97D3D746747C08448A/logo.png differ diff --git a/blockchains/ethereum/assets/0xD7394087E1DBBE477FE4F1CF373B9Ac9459565fF/info.json b/blockchains/ethereum/assets/0xD7394087E1DBBE477FE4F1CF373B9Ac9459565fF/info.json new file mode 100644 index 00000000..8d3667b2 --- /dev/null +++ b/blockchains/ethereum/assets/0xD7394087E1DBBE477FE4F1CF373B9Ac9459565fF/info.json @@ -0,0 +1,11 @@ +{ + "name": "RealTract", + "symbol": "RET", + "type": "ERC20", + "decimals": 8, + "description": "RealTract is born as a thorough solution to the disadvantages of blockchain and the current smart contract, adding and improving technologies.", + "website": "https://realtract.network/", + "explorer": "https://etherscan.io/token/0xD7394087E1DBBE477FE4F1CF373B9Ac9459565fF", + "status": "active", + "id": "0xD7394087E1DBBE477FE4F1CF373B9Ac9459565fF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD7394087E1DBBE477FE4F1CF373B9Ac9459565fF/logo.png b/blockchains/ethereum/assets/0xD7394087E1DBBE477FE4F1CF373B9Ac9459565fF/logo.png new file mode 100644 index 00000000..da71cf72 Binary files /dev/null and b/blockchains/ethereum/assets/0xD7394087E1DBBE477FE4F1CF373B9Ac9459565fF/logo.png differ diff --git a/blockchains/ethereum/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json b/blockchains/ethereum/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json new file mode 100644 index 00000000..035b312b --- /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 00000000..6a9e9da2 Binary files /dev/null and b/blockchains/ethereum/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png differ diff --git a/blockchains/ethereum/assets/0xD7732e3783b0047aa251928960063f863AD022D8/info.json b/blockchains/ethereum/assets/0xD7732e3783b0047aa251928960063f863AD022D8/info.json new file mode 100644 index 00000000..72d2748b --- /dev/null +++ b/blockchains/ethereum/assets/0xD7732e3783b0047aa251928960063f863AD022D8/info.json @@ -0,0 +1,11 @@ +{ + "name": "BrahmaOS", + "symbol": "BRM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD7732e3783b0047aa251928960063f863AD022D8", + "status": "abandoned", + "id": "0xD7732e3783b0047aa251928960063f863AD022D8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD7732e3783b0047aa251928960063f863AD022D8/logo.png b/blockchains/ethereum/assets/0xD7732e3783b0047aa251928960063f863AD022D8/logo.png new file mode 100755 index 00000000..d85071de Binary files /dev/null and b/blockchains/ethereum/assets/0xD7732e3783b0047aa251928960063f863AD022D8/logo.png differ diff --git a/blockchains/ethereum/assets/0xD7B7d3C0bdA57723Fb54ab95Fd8F9EA033AF37f2/info.json b/blockchains/ethereum/assets/0xD7B7d3C0bdA57723Fb54ab95Fd8F9EA033AF37f2/info.json new file mode 100644 index 00000000..b120bc27 --- /dev/null +++ b/blockchains/ethereum/assets/0xD7B7d3C0bdA57723Fb54ab95Fd8F9EA033AF37f2/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pylon Finance", + "website": "https://pylon.finance/", + "description": "Tethering real world GPU mining to crypto assets.", + "explorer": "https://etherscan.io/token/0xD7B7d3C0bdA57723Fb54ab95Fd8F9EA033AF37f2", + "type": "ERC20", + "symbol": "PYLON", + "decimals": 18, + "status": "active", + "id": "0xD7B7d3C0bdA57723Fb54ab95Fd8F9EA033AF37f2", + "links": [ + { + "name": "github", + "url": "https://github.com/pylonfinance/pylonfinance" + }, + { + "name": "whitepaper", + "url": "https://docs.google.com/document/d/1Ixec_ya46UR_LMlPzSCoosBSlNAxWC5ycnDV5LEw454/edit" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD7B7d3C0bdA57723Fb54ab95Fd8F9EA033AF37f2/logo.png b/blockchains/ethereum/assets/0xD7B7d3C0bdA57723Fb54ab95Fd8F9EA033AF37f2/logo.png new file mode 100644 index 00000000..40480050 Binary files /dev/null and b/blockchains/ethereum/assets/0xD7B7d3C0bdA57723Fb54ab95Fd8F9EA033AF37f2/logo.png differ diff --git a/blockchains/ethereum/assets/0xD7C81C98B9E78EAEa4f146Fe24974b7E9866B2B5/info.json b/blockchains/ethereum/assets/0xD7C81C98B9E78EAEa4f146Fe24974b7E9866B2B5/info.json new file mode 100644 index 00000000..371df227 --- /dev/null +++ b/blockchains/ethereum/assets/0xD7C81C98B9E78EAEa4f146Fe24974b7E9866B2B5/info.json @@ -0,0 +1,11 @@ +{ + "name": "IMPULSEVEN", + "symbol": "VEN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD7C81C98B9E78EAEa4f146Fe24974b7E9866B2B5", + "status": "abandoned", + "id": "0xD7C81C98B9E78EAEa4f146Fe24974b7E9866B2B5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD7C81C98B9E78EAEa4f146Fe24974b7E9866B2B5/logo.png b/blockchains/ethereum/assets/0xD7C81C98B9E78EAEa4f146Fe24974b7E9866B2B5/logo.png new file mode 100644 index 00000000..397a4d12 Binary files /dev/null and b/blockchains/ethereum/assets/0xD7C81C98B9E78EAEa4f146Fe24974b7E9866B2B5/logo.png differ diff --git a/blockchains/ethereum/assets/0xD7D7e034b5a9037A88659F734Bc216e7DF56e6FD/info.json b/blockchains/ethereum/assets/0xD7D7e034b5a9037A88659F734Bc216e7DF56e6FD/info.json new file mode 100644 index 00000000..394ceb5e --- /dev/null +++ b/blockchains/ethereum/assets/0xD7D7e034b5a9037A88659F734Bc216e7DF56e6FD/info.json @@ -0,0 +1,11 @@ +{ + "name": "SubSudio", + "symbol": "SUBS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD7D7e034b5a9037A88659F734Bc216e7DF56e6FD", + "status": "abandoned", + "id": "0xD7D7e034b5a9037A88659F734Bc216e7DF56e6FD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD7D7e034b5a9037A88659F734Bc216e7DF56e6FD/logo.png b/blockchains/ethereum/assets/0xD7D7e034b5a9037A88659F734Bc216e7DF56e6FD/logo.png new file mode 100644 index 00000000..f3cee6c4 Binary files /dev/null and b/blockchains/ethereum/assets/0xD7D7e034b5a9037A88659F734Bc216e7DF56e6FD/logo.png differ diff --git a/blockchains/ethereum/assets/0xD7EFB00d12C2c13131FD319336Fdf952525dA2af/info.json b/blockchains/ethereum/assets/0xD7EFB00d12C2c13131FD319336Fdf952525dA2af/info.json new file mode 100644 index 00000000..d342479c --- /dev/null +++ b/blockchains/ethereum/assets/0xD7EFB00d12C2c13131FD319336Fdf952525dA2af/info.json @@ -0,0 +1,15 @@ +{ + "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", + "type": "ERC20", + "symbol": "XPR", + "decimals": 4, + "status": "active", + "id": "0xD7EFB00d12C2c13131FD319336Fdf952525dA2af", + "tags": [ + "defi", + "governance" + ] +} diff --git a/blockchains/ethereum/assets/0xD7EFB00d12C2c13131FD319336Fdf952525dA2af/logo.png b/blockchains/ethereum/assets/0xD7EFB00d12C2c13131FD319336Fdf952525dA2af/logo.png new file mode 100644 index 00000000..f3354c3e Binary files /dev/null and b/blockchains/ethereum/assets/0xD7EFB00d12C2c13131FD319336Fdf952525dA2af/logo.png differ diff --git a/blockchains/ethereum/assets/0xD7b3669C7d3E38aB5a441383D41F25E003e02148/info.json b/blockchains/ethereum/assets/0xD7b3669C7d3E38aB5a441383D41F25E003e02148/info.json new file mode 100644 index 00000000..09a2bfb2 --- /dev/null +++ b/blockchains/ethereum/assets/0xD7b3669C7d3E38aB5a441383D41F25E003e02148/info.json @@ -0,0 +1,11 @@ +{ + "name": "SealToken", + "symbol": "SEAL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://seal.network/", + "explorer": "https://etherscan.io/token/0xD7b3669C7d3E38aB5a441383D41F25E003e02148", + "status": "abandoned", + "id": "0xD7b3669C7d3E38aB5a441383D41F25E003e02148" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD7b3669C7d3E38aB5a441383D41F25E003e02148/logo.png b/blockchains/ethereum/assets/0xD7b3669C7d3E38aB5a441383D41F25E003e02148/logo.png new file mode 100644 index 00000000..a5327758 Binary files /dev/null and b/blockchains/ethereum/assets/0xD7b3669C7d3E38aB5a441383D41F25E003e02148/logo.png differ diff --git a/blockchains/ethereum/assets/0xD7e0F80FB28233bdde0006c50568606A8feb964C/info.json b/blockchains/ethereum/assets/0xD7e0F80FB28233bdde0006c50568606A8feb964C/info.json new file mode 100644 index 00000000..3b1d45a4 --- /dev/null +++ b/blockchains/ethereum/assets/0xD7e0F80FB28233bdde0006c50568606A8feb964C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Australian Dollar", + "symbol": "AUDT", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD7e0F80FB28233bdde0006c50568606A8feb964C", + "status": "abandoned", + "id": "0xD7e0F80FB28233bdde0006c50568606A8feb964C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD7e0F80FB28233bdde0006c50568606A8feb964C/logo.png b/blockchains/ethereum/assets/0xD7e0F80FB28233bdde0006c50568606A8feb964C/logo.png new file mode 100644 index 00000000..b72461c3 Binary files /dev/null and b/blockchains/ethereum/assets/0xD7e0F80FB28233bdde0006c50568606A8feb964C/logo.png differ diff --git a/blockchains/ethereum/assets/0xD8002cD05d5B2a85557e1CAAa179cC2408D5ad42/info.json b/blockchains/ethereum/assets/0xD8002cD05d5B2a85557e1CAAa179cC2408D5ad42/info.json new file mode 100644 index 00000000..c01c8892 --- /dev/null +++ b/blockchains/ethereum/assets/0xD8002cD05d5B2a85557e1CAAa179cC2408D5ad42/info.json @@ -0,0 +1,11 @@ +{ + "name": "BINGO Entertainment", + "symbol": "777", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD8002cD05d5B2a85557e1CAAa179cC2408D5ad42", + "status": "abandoned", + "id": "0xD8002cD05d5B2a85557e1CAAa179cC2408D5ad42" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD8002cD05d5B2a85557e1CAAa179cC2408D5ad42/logo.png b/blockchains/ethereum/assets/0xD8002cD05d5B2a85557e1CAAa179cC2408D5ad42/logo.png new file mode 100644 index 00000000..d5cd3553 Binary files /dev/null and b/blockchains/ethereum/assets/0xD8002cD05d5B2a85557e1CAAa179cC2408D5ad42/logo.png differ diff --git a/blockchains/ethereum/assets/0xD812Ac12EF69F5c4431593C985DF049071BFcad7/info.json b/blockchains/ethereum/assets/0xD812Ac12EF69F5c4431593C985DF049071BFcad7/info.json new file mode 100644 index 00000000..f1c4febf --- /dev/null +++ b/blockchains/ethereum/assets/0xD812Ac12EF69F5c4431593C985DF049071BFcad7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vitality", + "symbol": "VITA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD812Ac12EF69F5c4431593C985DF049071BFcad7", + "status": "abandoned", + "id": "0xD812Ac12EF69F5c4431593C985DF049071BFcad7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD812Ac12EF69F5c4431593C985DF049071BFcad7/logo.png b/blockchains/ethereum/assets/0xD812Ac12EF69F5c4431593C985DF049071BFcad7/logo.png new file mode 100644 index 00000000..fcfae674 Binary files /dev/null and b/blockchains/ethereum/assets/0xD812Ac12EF69F5c4431593C985DF049071BFcad7/logo.png differ diff --git a/blockchains/ethereum/assets/0xD83A162d4808c370A1445646e64CC4861eB60b92/info.json b/blockchains/ethereum/assets/0xD83A162d4808c370A1445646e64CC4861eB60b92/info.json new file mode 100644 index 00000000..95cbf9c8 --- /dev/null +++ b/blockchains/ethereum/assets/0xD83A162d4808c370A1445646e64CC4861eB60b92/info.json @@ -0,0 +1,11 @@ +{ + "name": "OxyCoin", + "symbol": "OXY", + "website": "https://oxy-coin.com", + "description": "OxyCoin (OXY) is an ERC20 Token that supplied 244,140,625,000,000,000,000 coins", + "explorer": "https://etherscan.io/token/0xD83A162d4808c370A1445646e64CC4861eB60b92", + "type": "ERC20", + "decimals": 8, + "status": "active", + "id": "0xD83A162d4808c370A1445646e64CC4861eB60b92" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD83A162d4808c370A1445646e64CC4861eB60b92/logo.png b/blockchains/ethereum/assets/0xD83A162d4808c370A1445646e64CC4861eB60b92/logo.png new file mode 100644 index 00000000..da02db0f Binary files /dev/null and b/blockchains/ethereum/assets/0xD83A162d4808c370A1445646e64CC4861eB60b92/logo.png differ diff --git a/blockchains/ethereum/assets/0xD83A825384a252f57B1EF7d617518F2099AC8Eb5/info.json b/blockchains/ethereum/assets/0xD83A825384a252f57B1EF7d617518F2099AC8Eb5/info.json new file mode 100644 index 00000000..084095ed --- /dev/null +++ b/blockchains/ethereum/assets/0xD83A825384a252f57B1EF7d617518F2099AC8Eb5/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTE Application", + "symbol": "BTEU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD83A825384a252f57B1EF7d617518F2099AC8Eb5", + "status": "abandoned", + "id": "0xD83A825384a252f57B1EF7d617518F2099AC8Eb5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD83A825384a252f57B1EF7d617518F2099AC8Eb5/logo.png b/blockchains/ethereum/assets/0xD83A825384a252f57B1EF7d617518F2099AC8Eb5/logo.png new file mode 100644 index 00000000..325a2b1c Binary files /dev/null and b/blockchains/ethereum/assets/0xD83A825384a252f57B1EF7d617518F2099AC8Eb5/logo.png differ diff --git a/blockchains/ethereum/assets/0xD84E0a38b38bA686Cf98ce1b4eD278347e448b07/info.json b/blockchains/ethereum/assets/0xD84E0a38b38bA686Cf98ce1b4eD278347e448b07/info.json new file mode 100644 index 00000000..502aa13e --- /dev/null +++ b/blockchains/ethereum/assets/0xD84E0a38b38bA686Cf98ce1b4eD278347e448b07/info.json @@ -0,0 +1,11 @@ +{ + "name": "EtherX Token", + "symbol": "ETHX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD84E0a38b38bA686Cf98ce1b4eD278347e448b07", + "status": "abandoned", + "id": "0xD84E0a38b38bA686Cf98ce1b4eD278347e448b07" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD84E0a38b38bA686Cf98ce1b4eD278347e448b07/logo.png b/blockchains/ethereum/assets/0xD84E0a38b38bA686Cf98ce1b4eD278347e448b07/logo.png new file mode 100644 index 00000000..5ae5aebf Binary files /dev/null and b/blockchains/ethereum/assets/0xD84E0a38b38bA686Cf98ce1b4eD278347e448b07/logo.png differ diff --git a/blockchains/ethereum/assets/0xD850942eF8811f2A866692A623011bDE52a462C1/info.json b/blockchains/ethereum/assets/0xD850942eF8811f2A866692A623011bDE52a462C1/info.json new file mode 100644 index 00000000..ea2e49ee --- /dev/null +++ b/blockchains/ethereum/assets/0xD850942eF8811f2A866692A623011bDE52a462C1/info.json @@ -0,0 +1,11 @@ +{ + "name": "VeChain Token", + "type": "ERC20", + "symbol": "VEN", + "decimals": 18, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0xd850942ef8811f2a866692a623011bde52a462c1", + "status": "active", + "id": "0xD850942eF8811f2A866692A623011bDE52a462C1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD850942eF8811f2A866692A623011bDE52a462C1/logo.png b/blockchains/ethereum/assets/0xD850942eF8811f2A866692A623011bDE52a462C1/logo.png new file mode 100644 index 00000000..bc4cc0de Binary files /dev/null and b/blockchains/ethereum/assets/0xD850942eF8811f2A866692A623011bDE52a462C1/logo.png differ diff --git a/blockchains/ethereum/assets/0xD858c11A1E990d7d02e0897b9B19dAdEf8171832/info.json b/blockchains/ethereum/assets/0xD858c11A1E990d7d02e0897b9B19dAdEf8171832/info.json new file mode 100644 index 00000000..d86cd316 --- /dev/null +++ b/blockchains/ethereum/assets/0xD858c11A1E990d7d02e0897b9B19dAdEf8171832/info.json @@ -0,0 +1,11 @@ +{ + "name": "Voke", + "symbol": "VOKE", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD858c11A1E990d7d02e0897b9B19dAdEf8171832", + "status": "abandoned", + "id": "0xD858c11A1E990d7d02e0897b9B19dAdEf8171832" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD858c11A1E990d7d02e0897b9B19dAdEf8171832/logo.png b/blockchains/ethereum/assets/0xD858c11A1E990d7d02e0897b9B19dAdEf8171832/logo.png new file mode 100644 index 00000000..0d86d37a Binary files /dev/null and b/blockchains/ethereum/assets/0xD858c11A1E990d7d02e0897b9B19dAdEf8171832/logo.png differ diff --git a/blockchains/ethereum/assets/0xD8698a985B89650d0A70f99AD2909bD0c0b4b51c/info.json b/blockchains/ethereum/assets/0xD8698a985B89650d0A70f99AD2909bD0c0b4b51c/info.json new file mode 100644 index 00000000..d9b41cc0 --- /dev/null +++ b/blockchains/ethereum/assets/0xD8698a985B89650d0A70f99AD2909bD0c0b4b51c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Consentium Coin", + "symbol": "CSM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://consentium.net/", + "explorer": "https://etherscan.io/token/0xD8698a985B89650d0A70f99AD2909bD0c0b4b51c", + "status": "abandoned", + "id": "0xD8698a985B89650d0A70f99AD2909bD0c0b4b51c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD8698a985B89650d0A70f99AD2909bD0c0b4b51c/logo.png b/blockchains/ethereum/assets/0xD8698a985B89650d0A70f99AD2909bD0c0b4b51c/logo.png new file mode 100644 index 00000000..21d97623 Binary files /dev/null and b/blockchains/ethereum/assets/0xD8698a985B89650d0A70f99AD2909bD0c0b4b51c/logo.png differ diff --git a/blockchains/ethereum/assets/0xD8754fc11703ce600ebb2b32111B4E10384936e1/info.json b/blockchains/ethereum/assets/0xD8754fc11703ce600ebb2b32111B4E10384936e1/info.json new file mode 100644 index 00000000..986639a4 --- /dev/null +++ b/blockchains/ethereum/assets/0xD8754fc11703ce600ebb2b32111B4E10384936e1/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R815579", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD8754fc11703ce600ebb2b32111B4E10384936e1", + "status": "abandoned", + "id": "0xD8754fc11703ce600ebb2b32111B4E10384936e1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD8754fc11703ce600ebb2b32111B4E10384936e1/logo.png b/blockchains/ethereum/assets/0xD8754fc11703ce600ebb2b32111B4E10384936e1/logo.png new file mode 100644 index 00000000..80e65bca Binary files /dev/null and b/blockchains/ethereum/assets/0xD8754fc11703ce600ebb2b32111B4E10384936e1/logo.png differ diff --git a/blockchains/ethereum/assets/0xD89040Ac9823B72F64d71f66Fa2DeAE7C8520671/info.json b/blockchains/ethereum/assets/0xD89040Ac9823B72F64d71f66Fa2DeAE7C8520671/info.json new file mode 100644 index 00000000..3d0e92f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xD89040Ac9823B72F64d71f66Fa2DeAE7C8520671/info.json @@ -0,0 +1,11 @@ +{ + "name": "NewSolution", + "symbol": "NST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://newsolutioncoin.com", + "explorer": "https://etherscan.io/token/0xD89040Ac9823B72F64d71f66Fa2DeAE7C8520671", + "status": "abandoned", + "id": "0xD89040Ac9823B72F64d71f66Fa2DeAE7C8520671" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD89040Ac9823B72F64d71f66Fa2DeAE7C8520671/logo.png b/blockchains/ethereum/assets/0xD89040Ac9823B72F64d71f66Fa2DeAE7C8520671/logo.png new file mode 100644 index 00000000..9cfcf4e6 Binary files /dev/null and b/blockchains/ethereum/assets/0xD89040Ac9823B72F64d71f66Fa2DeAE7C8520671/logo.png differ diff --git a/blockchains/ethereum/assets/0xD8912C10681D8B21Fd3742244f44658dBA12264E/info.json b/blockchains/ethereum/assets/0xD8912C10681D8B21Fd3742244f44658dBA12264E/info.json new file mode 100644 index 00000000..9a55a354 --- /dev/null +++ b/blockchains/ethereum/assets/0xD8912C10681D8B21Fd3742244f44658dBA12264E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pluton", + "symbol": "PLU", + "type": "ERC20", + "decimals": 18, + "description": "Plutus is an incredibly secure crypto-friendly finance app.", + "website": "https://plutus.it", + "explorer": "https://etherscan.io/token/0xD8912C10681D8B21Fd3742244f44658dBA12264E", + "status": "active", + "id": "0xD8912C10681D8B21Fd3742244f44658dBA12264E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD8912C10681D8B21Fd3742244f44658dBA12264E/logo.png b/blockchains/ethereum/assets/0xD8912C10681D8B21Fd3742244f44658dBA12264E/logo.png new file mode 100644 index 00000000..f7526a3b Binary files /dev/null and b/blockchains/ethereum/assets/0xD8912C10681D8B21Fd3742244f44658dBA12264E/logo.png differ diff --git a/blockchains/ethereum/assets/0xD8Bd3958725F216Eb236E9DC65B169DE48101C6A/info.json b/blockchains/ethereum/assets/0xD8Bd3958725F216Eb236E9DC65B169DE48101C6A/info.json new file mode 100644 index 00000000..fef22b61 --- /dev/null +++ b/blockchains/ethereum/assets/0xD8Bd3958725F216Eb236E9DC65B169DE48101C6A/info.json @@ -0,0 +1,11 @@ +{ + "name": "GBT", + "symbol": "GBT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://market.globatalent.com/", + "explorer": "https://etherscan.io/token/0xD8Bd3958725F216Eb236E9DC65B169DE48101C6A", + "status": "abandoned", + "id": "0xD8Bd3958725F216Eb236E9DC65B169DE48101C6A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD8Bd3958725F216Eb236E9DC65B169DE48101C6A/logo.png b/blockchains/ethereum/assets/0xD8Bd3958725F216Eb236E9DC65B169DE48101C6A/logo.png new file mode 100644 index 00000000..493385ce Binary files /dev/null and b/blockchains/ethereum/assets/0xD8Bd3958725F216Eb236E9DC65B169DE48101C6A/logo.png differ diff --git a/blockchains/ethereum/assets/0xD8a8843b0a5aba6B030E92B3F4d669FaD8A5BE50/info.json b/blockchains/ethereum/assets/0xD8a8843b0a5aba6B030E92B3F4d669FaD8A5BE50/info.json new file mode 100644 index 00000000..eb0157c9 --- /dev/null +++ b/blockchains/ethereum/assets/0xD8a8843b0a5aba6B030E92B3F4d669FaD8A5BE50/info.json @@ -0,0 +1,11 @@ +{ + "name": "AfroDex Labs Token", + "symbol": "AFDLT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "http://afrodexlabs.com/", + "explorer": "https://etherscan.io/token/0xD8a8843b0a5aba6B030E92B3F4d669FaD8A5BE50", + "status": "abandoned", + "id": "0xD8a8843b0a5aba6B030E92B3F4d669FaD8A5BE50" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD8a8843b0a5aba6B030E92B3F4d669FaD8A5BE50/logo.png b/blockchains/ethereum/assets/0xD8a8843b0a5aba6B030E92B3F4d669FaD8A5BE50/logo.png new file mode 100644 index 00000000..4aeb803a Binary files /dev/null and b/blockchains/ethereum/assets/0xD8a8843b0a5aba6B030E92B3F4d669FaD8A5BE50/logo.png differ diff --git a/blockchains/ethereum/assets/0xD8e26FcC879b30cB0a0B543925a2B3500f074D81/info.json b/blockchains/ethereum/assets/0xD8e26FcC879b30cB0a0B543925a2B3500f074D81/info.json new file mode 100644 index 00000000..fce3be5e --- /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 00000000..840169ba Binary files /dev/null and b/blockchains/ethereum/assets/0xD8e26FcC879b30cB0a0B543925a2B3500f074D81/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9016A907Dc0ECfA3ca425ab20B6b785B42F2373/info.json b/blockchains/ethereum/assets/0xD9016A907Dc0ECfA3ca425ab20B6b785B42F2373/info.json new file mode 100644 index 00000000..052b286b --- /dev/null +++ b/blockchains/ethereum/assets/0xD9016A907Dc0ECfA3ca425ab20B6b785B42F2373/info.json @@ -0,0 +1,11 @@ +{ + "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://etherscan.io/token/0xD9016A907Dc0ECfA3ca425ab20B6b785B42F2373", + "type": "ERC20", + "symbol": "GMEE", + "decimals": 18, + "status": "active", + "id": "0xD9016A907Dc0ECfA3ca425ab20B6b785B42F2373" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD9016A907Dc0ECfA3ca425ab20B6b785B42F2373/logo.png b/blockchains/ethereum/assets/0xD9016A907Dc0ECfA3ca425ab20B6b785B42F2373/logo.png new file mode 100644 index 00000000..791c6bf7 Binary files /dev/null and b/blockchains/ethereum/assets/0xD9016A907Dc0ECfA3ca425ab20B6b785B42F2373/logo.png differ diff --git a/blockchains/ethereum/assets/0xD904bCf89B7CedF5c89f9Df7e829191D695F847E/info.json b/blockchains/ethereum/assets/0xD904bCf89B7CedF5c89f9Df7e829191D695F847E/info.json new file mode 100644 index 00000000..2a6362ce --- /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 00000000..8ea1ca1d Binary files /dev/null and b/blockchains/ethereum/assets/0xD904bCf89B7CedF5c89f9Df7e829191D695F847E/logo.png differ diff --git a/blockchains/ethereum/assets/0xD904e97c5989E4084cc2Ccf7bF6C633BbE9DD4c6/info.json b/blockchains/ethereum/assets/0xD904e97c5989E4084cc2Ccf7bF6C633BbE9DD4c6/info.json new file mode 100644 index 00000000..b29d297f --- /dev/null +++ b/blockchains/ethereum/assets/0xD904e97c5989E4084cc2Ccf7bF6C633BbE9DD4c6/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-14/30M44", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD904e97c5989E4084cc2Ccf7bF6C633BbE9DD4c6", + "status": "abandoned", + "id": "0xD904e97c5989E4084cc2Ccf7bF6C633BbE9DD4c6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD904e97c5989E4084cc2Ccf7bF6C633BbE9DD4c6/logo.png b/blockchains/ethereum/assets/0xD904e97c5989E4084cc2Ccf7bF6C633BbE9DD4c6/logo.png new file mode 100644 index 00000000..7e2ad076 Binary files /dev/null and b/blockchains/ethereum/assets/0xD904e97c5989E4084cc2Ccf7bF6C633BbE9DD4c6/logo.png differ diff --git a/blockchains/ethereum/assets/0xD91a6162F146EF85922d9A15eE6eB14A00344586/info.json b/blockchains/ethereum/assets/0xD91a6162F146EF85922d9A15eE6eB14A00344586/info.json new file mode 100644 index 00000000..f5f6293f --- /dev/null +++ b/blockchains/ethereum/assets/0xD91a6162F146EF85922d9A15eE6eB14A00344586/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sessia Kicks", + "symbol": "KICK", + "type": "ERC20", + "decimals": 18, + "description": "Using all the advantages of blockchain technology, Sessia presents a new way of communication between businesses and customers. We call it «social marketplace» - an ecosystem where brands can simply develop and apply effective promotional tools by sharing the purchases of their client with their Friends and followers.", + "website": "https://sessia.com", + "explorer": "https://etherscan.io/token/0xD91a6162F146EF85922d9A15eE6eB14A00344586", + "status": "active", + "id": "0xD91a6162F146EF85922d9A15eE6eB14A00344586" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD91a6162F146EF85922d9A15eE6eB14A00344586/logo.png b/blockchains/ethereum/assets/0xD91a6162F146EF85922d9A15eE6eB14A00344586/logo.png new file mode 100644 index 00000000..84270ee9 Binary files /dev/null and b/blockchains/ethereum/assets/0xD91a6162F146EF85922d9A15eE6eB14A00344586/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9343a049D5DBd89CD19DC6BcA8c48fB3a0a42a7/info.json b/blockchains/ethereum/assets/0xD9343a049D5DBd89CD19DC6BcA8c48fB3a0a42a7/info.json new file mode 100644 index 00000000..c3e8702d --- /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 00000000..21e6eae0 Binary files /dev/null and b/blockchains/ethereum/assets/0xD9343a049D5DBd89CD19DC6BcA8c48fB3a0a42a7/logo.png differ diff --git a/blockchains/ethereum/assets/0xD938137E6d96c72E4a6085412aDa2daD78ff89c4/info.json b/blockchains/ethereum/assets/0xD938137E6d96c72E4a6085412aDa2daD78ff89c4/info.json new file mode 100644 index 00000000..62cd7a3a --- /dev/null +++ b/blockchains/ethereum/assets/0xD938137E6d96c72E4a6085412aDa2daD78ff89c4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Change Your Life", + "symbol": "AAA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://abulaba.co/", + "explorer": "https://etherscan.io/token/0xD938137E6d96c72E4a6085412aDa2daD78ff89c4", + "status": "abandoned", + "id": "0xD938137E6d96c72E4a6085412aDa2daD78ff89c4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD938137E6d96c72E4a6085412aDa2daD78ff89c4/logo.png b/blockchains/ethereum/assets/0xD938137E6d96c72E4a6085412aDa2daD78ff89c4/logo.png new file mode 100644 index 00000000..3b3befec Binary files /dev/null and b/blockchains/ethereum/assets/0xD938137E6d96c72E4a6085412aDa2daD78ff89c4/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9964E1306dda055F5284c52048712c35DdB61Fd/info.json b/blockchains/ethereum/assets/0xD9964E1306dda055F5284c52048712c35DdB61Fd/info.json new file mode 100644 index 00000000..77cb376e --- /dev/null +++ b/blockchains/ethereum/assets/0xD9964E1306dda055F5284c52048712c35DdB61Fd/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitNautic Token", + "symbol": "BTNT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bitnautic.io", + "explorer": "https://etherscan.io/token/0xD9964E1306dda055F5284c52048712c35DdB61Fd", + "status": "abandoned", + "id": "0xD9964E1306dda055F5284c52048712c35DdB61Fd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD9964E1306dda055F5284c52048712c35DdB61Fd/logo.png b/blockchains/ethereum/assets/0xD9964E1306dda055F5284c52048712c35DdB61Fd/logo.png new file mode 100644 index 00000000..900c3b58 Binary files /dev/null and b/blockchains/ethereum/assets/0xD9964E1306dda055F5284c52048712c35DdB61Fd/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9A12Cde03a86E800496469858De8581D3A5353d/info.json b/blockchains/ethereum/assets/0xD9A12Cde03a86E800496469858De8581D3A5353d/info.json new file mode 100644 index 00000000..ae0ac6e8 --- /dev/null +++ b/blockchains/ethereum/assets/0xD9A12Cde03a86E800496469858De8581D3A5353d/info.json @@ -0,0 +1,11 @@ +{ + "name": "YUP", + "symbol": "YUP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.crowdholding.com/", + "explorer": "https://etherscan.io/token/0xD9A12Cde03a86E800496469858De8581D3A5353d", + "status": "abandoned", + "id": "0xD9A12Cde03a86E800496469858De8581D3A5353d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD9A12Cde03a86E800496469858De8581D3A5353d/logo.png b/blockchains/ethereum/assets/0xD9A12Cde03a86E800496469858De8581D3A5353d/logo.png new file mode 100755 index 00000000..25a7bb47 Binary files /dev/null and b/blockchains/ethereum/assets/0xD9A12Cde03a86E800496469858De8581D3A5353d/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9A24485e71B9148e0Fd51F0162072099DF0dB67/info.json b/blockchains/ethereum/assets/0xD9A24485e71B9148e0Fd51F0162072099DF0dB67/info.json new file mode 100644 index 00000000..da8f5676 --- /dev/null +++ b/blockchains/ethereum/assets/0xD9A24485e71B9148e0Fd51F0162072099DF0dB67/info.json @@ -0,0 +1,37 @@ +{ + "name": "Stable PERL", + "website": "https://ichi.org", + "description": "Stable PERL is the stablecoin created for the PERL.eco community. Backed by both a treasury of PERL and collateral of USDC this ERC20 token can be redeemed for USDC at anytime and also provides a vote for governance of the PERL treasury.", + "explorer": "https://etherscan.io/token/0xD9A24485e71B9148e0Fd51F0162072099DF0dB67", + "type": "ERC20", + "symbol": "onePERL", + "decimals": 18, + "status": "active", + "id": "0xD9A24485e71B9148e0Fd51F0162072099DF0dB67", + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm/ichi-oneToken" + }, + { + "name": "x", + "url": "https://x.com/ichifarm" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Bm6pUHjHUC" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/oneperl" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD9A24485e71B9148e0Fd51F0162072099DF0dB67/logo.png b/blockchains/ethereum/assets/0xD9A24485e71B9148e0Fd51F0162072099DF0dB67/logo.png new file mode 100644 index 00000000..5ee21672 Binary files /dev/null and b/blockchains/ethereum/assets/0xD9A24485e71B9148e0Fd51F0162072099DF0dB67/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9A442856C234a39a81a089C06451EBAa4306a72/info.json b/blockchains/ethereum/assets/0xD9A442856C234a39a81a089C06451EBAa4306a72/info.json new file mode 100644 index 00000000..0365cd77 --- /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 00000000..66647a41 Binary files /dev/null and b/blockchains/ethereum/assets/0xD9A442856C234a39a81a089C06451EBAa4306a72/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9A947789974bAD9BE77E45C2b327174A9c59D71/info.json b/blockchains/ethereum/assets/0xD9A947789974bAD9BE77E45C2b327174A9c59D71/info.json new file mode 100644 index 00000000..4762ca17 --- /dev/null +++ b/blockchains/ethereum/assets/0xD9A947789974bAD9BE77E45C2b327174A9c59D71/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ystar", + "website": "https://ystar.io", + "description": "YSTAR is a product aggregator for the world of DeFi 3.0. with the goal to quickly aggregate and structurally classify the latest and hottest digital asset technologies and products.", + "explorer": "https://etherscan.io/token/0xD9A947789974bAD9BE77E45C2b327174A9c59D71", + "type": "ERC20", + "symbol": "YSR", + "decimals": 18, + "status": "active", + "id": "0xD9A947789974bAD9BE77E45C2b327174A9c59D71" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD9A947789974bAD9BE77E45C2b327174A9c59D71/logo.png b/blockchains/ethereum/assets/0xD9A947789974bAD9BE77E45C2b327174A9c59D71/logo.png new file mode 100644 index 00000000..f20ea8b3 Binary files /dev/null and b/blockchains/ethereum/assets/0xD9A947789974bAD9BE77E45C2b327174A9c59D71/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9D2C606EC5F7a01dF496768cfC9E5003B23d193/info.json b/blockchains/ethereum/assets/0xD9D2C606EC5F7a01dF496768cfC9E5003B23d193/info.json new file mode 100644 index 00000000..538d5653 --- /dev/null +++ b/blockchains/ethereum/assets/0xD9D2C606EC5F7a01dF496768cfC9E5003B23d193/info.json @@ -0,0 +1,11 @@ +{ + "name": "YouthCoin", + "symbol": "YCN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD9D2C606EC5F7a01dF496768cfC9E5003B23d193", + "status": "abandoned", + "id": "0xD9D2C606EC5F7a01dF496768cfC9E5003B23d193" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD9D2C606EC5F7a01dF496768cfC9E5003B23d193/logo.png b/blockchains/ethereum/assets/0xD9D2C606EC5F7a01dF496768cfC9E5003B23d193/logo.png new file mode 100644 index 00000000..e852c1db Binary files /dev/null and b/blockchains/ethereum/assets/0xD9D2C606EC5F7a01dF496768cfC9E5003B23d193/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9Ec3ff1f8be459Bb9369b4E79e9Ebcf7141C093/info.json b/blockchains/ethereum/assets/0xD9Ec3ff1f8be459Bb9369b4E79e9Ebcf7141C093/info.json new file mode 100644 index 00000000..038196c4 --- /dev/null +++ b/blockchains/ethereum/assets/0xD9Ec3ff1f8be459Bb9369b4E79e9Ebcf7141C093/info.json @@ -0,0 +1,29 @@ +{ + "name": "Kardiachain", + "website": "https://kardiachain.io/", + "description": "Kardiachain is a public blockchain platform focused on Interoperability and providing hybrid blockchain solutions for enterprises and governments in Vietnam and other countries in South & East Asia.", + "explorer": "https://etherscan.io/token/0xD9Ec3ff1f8be459Bb9369b4E79e9Ebcf7141C093", + "type": "ERC20", + "symbol": "KAI", + "decimals": 18, + "status": "active", + "id": "0xD9Ec3ff1f8be459Bb9369b4E79e9Ebcf7141C093", + "links": [ + { + "name": "github", + "url": "https://github.com/kardiachain" + }, + { + "name": "x", + "url": "https://x.com/KardiaChain" + }, + { + "name": "medium", + "url": "https://medium.com/@KardiaChain" + }, + { + "name": "whitepaper", + "url": "https://dl.kardiachain.io/KardiaChain-WhitePaper-English.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD9Ec3ff1f8be459Bb9369b4E79e9Ebcf7141C093/logo.png b/blockchains/ethereum/assets/0xD9Ec3ff1f8be459Bb9369b4E79e9Ebcf7141C093/logo.png new file mode 100644 index 00000000..c477c9c8 Binary files /dev/null and b/blockchains/ethereum/assets/0xD9Ec3ff1f8be459Bb9369b4E79e9Ebcf7141C093/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json b/blockchains/ethereum/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json new file mode 100644 index 00000000..d92241a3 --- /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 00000000..df73bbcc Binary files /dev/null and b/blockchains/ethereum/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9baE39c725A1864b1133Ad0eF1640d02f79B78c/info.json b/blockchains/ethereum/assets/0xD9baE39c725A1864b1133Ad0eF1640d02f79B78c/info.json new file mode 100644 index 00000000..2c1fed4c --- /dev/null +++ b/blockchains/ethereum/assets/0xD9baE39c725A1864b1133Ad0eF1640d02f79B78c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Touch Smart Token", + "symbol": "TST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://touchsocial.xyz/", + "explorer": "https://etherscan.io/token/0xD9baE39c725A1864b1133Ad0eF1640d02f79B78c", + "status": "abandoned", + "id": "0xD9baE39c725A1864b1133Ad0eF1640d02f79B78c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD9baE39c725A1864b1133Ad0eF1640d02f79B78c/logo.png b/blockchains/ethereum/assets/0xD9baE39c725A1864b1133Ad0eF1640d02f79B78c/logo.png new file mode 100644 index 00000000..71cad198 Binary files /dev/null and b/blockchains/ethereum/assets/0xD9baE39c725A1864b1133Ad0eF1640d02f79B78c/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9d993FDD6dad5270C0896b364bdBefF38e010CF/info.json b/blockchains/ethereum/assets/0xD9d993FDD6dad5270C0896b364bdBefF38e010CF/info.json new file mode 100644 index 00000000..1b85a5cc --- /dev/null +++ b/blockchains/ethereum/assets/0xD9d993FDD6dad5270C0896b364bdBefF38e010CF/info.json @@ -0,0 +1,11 @@ +{ + "name": "BIGG CASH", + "symbol": "BIGG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xD9d993FDD6dad5270C0896b364bdBefF38e010CF", + "status": "abandoned", + "id": "0xD9d993FDD6dad5270C0896b364bdBefF38e010CF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD9d993FDD6dad5270C0896b364bdBefF38e010CF/logo.png b/blockchains/ethereum/assets/0xD9d993FDD6dad5270C0896b364bdBefF38e010CF/logo.png new file mode 100644 index 00000000..8f423f5b Binary files /dev/null and b/blockchains/ethereum/assets/0xD9d993FDD6dad5270C0896b364bdBefF38e010CF/logo.png differ diff --git a/blockchains/ethereum/assets/0xDA80B20038BDF968C7307BB5907A469482CF6251/info.json b/blockchains/ethereum/assets/0xDA80B20038BDF968C7307BB5907A469482CF6251/info.json new file mode 100644 index 00000000..2f7f263d --- /dev/null +++ b/blockchains/ethereum/assets/0xDA80B20038BDF968C7307BB5907A469482CF6251/info.json @@ -0,0 +1,11 @@ +{ + "name": "BrokerNekoNetwork", + "symbol": "BNN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.brokerneko.com", + "explorer": "https://etherscan.io/token/0xDA80B20038BDF968C7307BB5907A469482CF6251", + "status": "abandoned", + "id": "0xDA80B20038BDF968C7307BB5907A469482CF6251" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDA80B20038BDF968C7307BB5907A469482CF6251/logo.png b/blockchains/ethereum/assets/0xDA80B20038BDF968C7307BB5907A469482CF6251/logo.png new file mode 100644 index 00000000..2b415c9f Binary files /dev/null and b/blockchains/ethereum/assets/0xDA80B20038BDF968C7307BB5907A469482CF6251/logo.png differ diff --git a/blockchains/ethereum/assets/0xDA987c655ebC38C801DB64A8608bc1AA56Cd9a31/info.json b/blockchains/ethereum/assets/0xDA987c655ebC38C801DB64A8608bc1AA56Cd9a31/info.json new file mode 100644 index 00000000..1c2f9e77 --- /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 00000000..ea082196 Binary files /dev/null and b/blockchains/ethereum/assets/0xDA987c655ebC38C801DB64A8608bc1AA56Cd9a31/logo.png differ diff --git a/blockchains/ethereum/assets/0xDAC4AE188AcE3C8985765eDc6C9B4739D4845DdC/info.json b/blockchains/ethereum/assets/0xDAC4AE188AcE3C8985765eDc6C9B4739D4845DdC/info.json new file mode 100644 index 00000000..28bb5dfa --- /dev/null +++ b/blockchains/ethereum/assets/0xDAC4AE188AcE3C8985765eDc6C9B4739D4845DdC/info.json @@ -0,0 +1,11 @@ +{ + "name": "InterValue", + "symbol": "INVE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.inve.one", + "explorer": "https://etherscan.io/token/0xDAC4AE188AcE3C8985765eDc6C9B4739D4845DdC", + "status": "active", + "id": "0xDAC4AE188AcE3C8985765eDc6C9B4739D4845DdC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDAC4AE188AcE3C8985765eDc6C9B4739D4845DdC/logo.png b/blockchains/ethereum/assets/0xDAC4AE188AcE3C8985765eDc6C9B4739D4845DdC/logo.png new file mode 100644 index 00000000..31b2f920 Binary files /dev/null and b/blockchains/ethereum/assets/0xDAC4AE188AcE3C8985765eDc6C9B4739D4845DdC/logo.png differ diff --git a/blockchains/ethereum/assets/0xDAc15794F0fadfDcF3A93AEAabdc7caC19066724/info.json b/blockchains/ethereum/assets/0xDAc15794F0fadfDcF3A93AEAabdc7caC19066724/info.json new file mode 100644 index 00000000..ed2794c9 --- /dev/null +++ b/blockchains/ethereum/assets/0xDAc15794F0fadfDcF3A93AEAabdc7caC19066724/info.json @@ -0,0 +1,11 @@ +{ + "name": "GREENX", + "symbol": "GEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.greenx.network", + "explorer": "https://etherscan.io/token/0xDAc15794F0fadfDcF3A93AEAabdc7caC19066724", + "status": "abandoned", + "id": "0xDAc15794F0fadfDcF3A93AEAabdc7caC19066724" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDAc15794F0fadfDcF3A93AEAabdc7caC19066724/logo.png b/blockchains/ethereum/assets/0xDAc15794F0fadfDcF3A93AEAabdc7caC19066724/logo.png new file mode 100755 index 00000000..c1ead4e8 Binary files /dev/null and b/blockchains/ethereum/assets/0xDAc15794F0fadfDcF3A93AEAabdc7caC19066724/logo.png differ diff --git a/blockchains/ethereum/assets/0xDAe0faFD65385E7775Cf75b1398735155EF6aCD2/info.json b/blockchains/ethereum/assets/0xDAe0faFD65385E7775Cf75b1398735155EF6aCD2/info.json new file mode 100644 index 00000000..c24f2996 --- /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 00000000..a89c5d15 Binary files /dev/null and b/blockchains/ethereum/assets/0xDAe0faFD65385E7775Cf75b1398735155EF6aCD2/logo.png differ diff --git a/blockchains/ethereum/assets/0xDAf76716996052aff7edb66Ef0Edb301BF001B6F/info.json b/blockchains/ethereum/assets/0xDAf76716996052aff7edb66Ef0Edb301BF001B6F/info.json new file mode 100644 index 00000000..a7cd04f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xDAf76716996052aff7edb66Ef0Edb301BF001B6F/info.json @@ -0,0 +1,11 @@ +{ + "name": "ABACOIN", + "symbol": "ABA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDAf76716996052aff7edb66Ef0Edb301BF001B6F", + "status": "abandoned", + "id": "0xDAf76716996052aff7edb66Ef0Edb301BF001B6F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDAf76716996052aff7edb66Ef0Edb301BF001B6F/logo.png b/blockchains/ethereum/assets/0xDAf76716996052aff7edb66Ef0Edb301BF001B6F/logo.png new file mode 100644 index 00000000..149f85ef Binary files /dev/null and b/blockchains/ethereum/assets/0xDAf76716996052aff7edb66Ef0Edb301BF001B6F/logo.png differ diff --git a/blockchains/ethereum/assets/0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153/info.json b/blockchains/ethereum/assets/0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153/info.json new file mode 100644 index 00000000..4c5eca3e --- /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 00000000..ad2cf064 Binary files /dev/null and b/blockchains/ethereum/assets/0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153/logo.png differ diff --git a/blockchains/ethereum/assets/0xDB09eEB26C0194DAA59E539c360300376208969a/info.json b/blockchains/ethereum/assets/0xDB09eEB26C0194DAA59E539c360300376208969a/info.json new file mode 100644 index 00000000..6da3c096 --- /dev/null +++ b/blockchains/ethereum/assets/0xDB09eEB26C0194DAA59E539c360300376208969a/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C553250", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDB09eEB26C0194DAA59E539c360300376208969a", + "status": "abandoned", + "id": "0xDB09eEB26C0194DAA59E539c360300376208969a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDB09eEB26C0194DAA59E539c360300376208969a/logo.png b/blockchains/ethereum/assets/0xDB09eEB26C0194DAA59E539c360300376208969a/logo.png new file mode 100644 index 00000000..1c1360d1 Binary files /dev/null and b/blockchains/ethereum/assets/0xDB09eEB26C0194DAA59E539c360300376208969a/logo.png differ diff --git a/blockchains/ethereum/assets/0xDB13025b219dB5e4529f48b65Ff009a26B6Ae733/info.json b/blockchains/ethereum/assets/0xDB13025b219dB5e4529f48b65Ff009a26B6Ae733/info.json new file mode 100644 index 00000000..01b591df --- /dev/null +++ b/blockchains/ethereum/assets/0xDB13025b219dB5e4529f48b65Ff009a26B6Ae733/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ubricoin", + "symbol": "UBN", + "type": "ERC20", + "decimals": 18, + "description": "Ustawi Biomedical Research Innovation and Industrial Centers of Africa describes itself as a life science and health production (LSHP) organization. The Ubrica project in Kenya aims to use Ubricoin to create incentives for biomedical research and facilitate the development/commercialization of quality health care services.", + "website": "https://ubricoin.ubrica.com/", + "explorer": "https://etherscan.io/token/0xDB13025b219dB5e4529f48b65Ff009a26B6Ae733", + "status": "active", + "id": "0xDB13025b219dB5e4529f48b65Ff009a26B6Ae733" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDB13025b219dB5e4529f48b65Ff009a26B6Ae733/logo.png b/blockchains/ethereum/assets/0xDB13025b219dB5e4529f48b65Ff009a26B6Ae733/logo.png new file mode 100644 index 00000000..4c10e5a3 Binary files /dev/null and b/blockchains/ethereum/assets/0xDB13025b219dB5e4529f48b65Ff009a26B6Ae733/logo.png differ diff --git a/blockchains/ethereum/assets/0xDB13fB60D3fDdaBc41743D9d603CE3F42C17D057/info.json b/blockchains/ethereum/assets/0xDB13fB60D3fDdaBc41743D9d603CE3F42C17D057/info.json new file mode 100644 index 00000000..8aff74e1 --- /dev/null +++ b/blockchains/ethereum/assets/0xDB13fB60D3fDdaBc41743D9d603CE3F42C17D057/info.json @@ -0,0 +1,11 @@ +{ + "name": "Baby Token", + "symbol": "BABY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDB13fB60D3fDdaBc41743D9d603CE3F42C17D057", + "status": "abandoned", + "id": "0xDB13fB60D3fDdaBc41743D9d603CE3F42C17D057" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDB13fB60D3fDdaBc41743D9d603CE3F42C17D057/logo.png b/blockchains/ethereum/assets/0xDB13fB60D3fDdaBc41743D9d603CE3F42C17D057/logo.png new file mode 100644 index 00000000..1aaed2c1 Binary files /dev/null and b/blockchains/ethereum/assets/0xDB13fB60D3fDdaBc41743D9d603CE3F42C17D057/logo.png differ diff --git a/blockchains/ethereum/assets/0xDB61354E9cf2217a29770E9811832B360a8DAad3/info.json b/blockchains/ethereum/assets/0xDB61354E9cf2217a29770E9811832B360a8DAad3/info.json new file mode 100644 index 00000000..0792a6c3 --- /dev/null +++ b/blockchains/ethereum/assets/0xDB61354E9cf2217a29770E9811832B360a8DAad3/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Long Litecoin Token", + "symbol": "LTCBULL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ftx.com/tokens/LTCBULL", + "explorer": "https://etherscan.io/token/0xDB61354E9cf2217a29770E9811832B360a8DAad3", + "status": "abandoned", + "id": "0xDB61354E9cf2217a29770E9811832B360a8DAad3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDB61354E9cf2217a29770E9811832B360a8DAad3/logo.png b/blockchains/ethereum/assets/0xDB61354E9cf2217a29770E9811832B360a8DAad3/logo.png new file mode 100644 index 00000000..a8cc1f57 Binary files /dev/null and b/blockchains/ethereum/assets/0xDB61354E9cf2217a29770E9811832B360a8DAad3/logo.png differ diff --git a/blockchains/ethereum/assets/0xDB6e0077C6c1BCBe557a6fC4fB912685519E597C/info.json b/blockchains/ethereum/assets/0xDB6e0077C6c1BCBe557a6fC4fB912685519E597C/info.json new file mode 100644 index 00000000..a2081bd5 --- /dev/null +++ b/blockchains/ethereum/assets/0xDB6e0077C6c1BCBe557a6fC4fB912685519E597C/info.json @@ -0,0 +1,11 @@ +{ + "name": "WEEDCRYPTO", + "symbol": "WDCR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDB6e0077C6c1BCBe557a6fC4fB912685519E597C", + "status": "abandoned", + "id": "0xDB6e0077C6c1BCBe557a6fC4fB912685519E597C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDB6e0077C6c1BCBe557a6fC4fB912685519E597C/logo.png b/blockchains/ethereum/assets/0xDB6e0077C6c1BCBe557a6fC4fB912685519E597C/logo.png new file mode 100644 index 00000000..43b37265 Binary files /dev/null and b/blockchains/ethereum/assets/0xDB6e0077C6c1BCBe557a6fC4fB912685519E597C/logo.png differ diff --git a/blockchains/ethereum/assets/0xDB7Eab9bA6be88B869F738f6DEeBa96d49Fe13fd/info.json b/blockchains/ethereum/assets/0xDB7Eab9bA6be88B869F738f6DEeBa96d49Fe13fd/info.json new file mode 100644 index 00000000..1a286ab7 --- /dev/null +++ b/blockchains/ethereum/assets/0xDB7Eab9bA6be88B869F738f6DEeBa96d49Fe13fd/info.json @@ -0,0 +1,14 @@ +{ + "name": "BOOM", + "symbol": "BOOM", + "type": "ERC20", + "decimals": 18, + "description": "BOOM project is a social experiment, which aims to explore the market influence of an extremely deflationary cryptocurrency, and it will validate the effect of BOOM token as a hedge against the rapid inflation in token ecosystem.", + "website": "https://www.boomtoken.io/", + "explorer": "https://etherscan.io/token/0xDB7Eab9bA6be88B869F738f6DEeBa96d49Fe13fd", + "status": "active", + "id": "0xDB7Eab9bA6be88B869F738f6DEeBa96d49Fe13fd", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDB7Eab9bA6be88B869F738f6DEeBa96d49Fe13fd/logo.png b/blockchains/ethereum/assets/0xDB7Eab9bA6be88B869F738f6DEeBa96d49Fe13fd/logo.png new file mode 100644 index 00000000..b6bb8e13 Binary files /dev/null and b/blockchains/ethereum/assets/0xDB7Eab9bA6be88B869F738f6DEeBa96d49Fe13fd/logo.png differ diff --git a/blockchains/ethereum/assets/0xDB7eB3edE973665b1BB9F3016861E3255062E4ED/info.json b/blockchains/ethereum/assets/0xDB7eB3edE973665b1BB9F3016861E3255062E4ED/info.json new file mode 100644 index 00000000..b8fa50c1 --- /dev/null +++ b/blockchains/ethereum/assets/0xDB7eB3edE973665b1BB9F3016861E3255062E4ED/info.json @@ -0,0 +1,11 @@ +{ + "name": "MNFT", + "symbol": "MNFT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDB7eB3edE973665b1BB9F3016861E3255062E4ED", + "status": "abandoned", + "id": "0xDB7eB3edE973665b1BB9F3016861E3255062E4ED" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDB7eB3edE973665b1BB9F3016861E3255062E4ED/logo.png b/blockchains/ethereum/assets/0xDB7eB3edE973665b1BB9F3016861E3255062E4ED/logo.png new file mode 100644 index 00000000..1e3077de Binary files /dev/null and b/blockchains/ethereum/assets/0xDB7eB3edE973665b1BB9F3016861E3255062E4ED/logo.png differ diff --git a/blockchains/ethereum/assets/0xDB9EA477A2E1985B437e02c2Cd84d72E6Bf72c76/info.json b/blockchains/ethereum/assets/0xDB9EA477A2E1985B437e02c2Cd84d72E6Bf72c76/info.json new file mode 100644 index 00000000..43d5dac8 --- /dev/null +++ b/blockchains/ethereum/assets/0xDB9EA477A2E1985B437e02c2Cd84d72E6Bf72c76/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dabdragon Tokens", + "symbol": "DABER", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDB9EA477A2E1985B437e02c2Cd84d72E6Bf72c76", + "status": "abandoned", + "id": "0xDB9EA477A2E1985B437e02c2Cd84d72E6Bf72c76" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDB9EA477A2E1985B437e02c2Cd84d72E6Bf72c76/logo.png b/blockchains/ethereum/assets/0xDB9EA477A2E1985B437e02c2Cd84d72E6Bf72c76/logo.png new file mode 100644 index 00000000..a0c17a8c Binary files /dev/null and b/blockchains/ethereum/assets/0xDB9EA477A2E1985B437e02c2Cd84d72E6Bf72c76/logo.png differ diff --git a/blockchains/ethereum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/info.json b/blockchains/ethereum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/info.json new file mode 100644 index 00000000..74952657 --- /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 00000000..edce9e29 Binary files /dev/null and b/blockchains/ethereum/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/logo.png differ diff --git a/blockchains/ethereum/assets/0xDBdDf072d7aae7B9288e31A4eebe6C54e3a143b1/info.json b/blockchains/ethereum/assets/0xDBdDf072d7aae7B9288e31A4eebe6C54e3a143b1/info.json new file mode 100644 index 00000000..830d7c8e --- /dev/null +++ b/blockchains/ethereum/assets/0xDBdDf072d7aae7B9288e31A4eebe6C54e3a143b1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crowny Token (CRWNY)", + "type": "ERC20", + "symbol": "CRWNY", + "decimals": 18, + "website": "https://crowny.io", + "description": "Token to support the Crowny marketing platform that allows users to interact and engage with their favorite brands", + "explorer": "https://etherscan.io/token/0xDBdDf072d7aae7B9288e31A4eebe6C54e3a143b1", + "status": "active", + "id": "0xDBdDf072d7aae7B9288e31A4eebe6C54e3a143b1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDBdDf072d7aae7B9288e31A4eebe6C54e3a143b1/logo.png b/blockchains/ethereum/assets/0xDBdDf072d7aae7B9288e31A4eebe6C54e3a143b1/logo.png new file mode 100644 index 00000000..c0aa425c Binary files /dev/null and b/blockchains/ethereum/assets/0xDBdDf072d7aae7B9288e31A4eebe6C54e3a143b1/logo.png differ diff --git a/blockchains/ethereum/assets/0xDC349913d53b446485E98b76800b6254f43Df695/info.json b/blockchains/ethereum/assets/0xDC349913d53b446485E98b76800b6254f43Df695/info.json new file mode 100644 index 00000000..76d45abd --- /dev/null +++ b/blockchains/ethereum/assets/0xDC349913d53b446485E98b76800b6254f43Df695/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bezoge Earth", + "website": "http://www.bezoge.com/", + "description": "BEZOGE is developed to follow the footsteps of some of the best performing experimental coins and amalgamate their features into one coin.", + "explorer": "https://etherscan.io/token/0xDC349913d53b446485E98b76800b6254f43Df695", + "type": "ERC20", + "symbol": "BEZOGE", + "decimals": 9, + "status": "active", + "id": "0xDC349913d53b446485E98b76800b6254f43Df695" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDC349913d53b446485E98b76800b6254f43Df695/logo.png b/blockchains/ethereum/assets/0xDC349913d53b446485E98b76800b6254f43Df695/logo.png new file mode 100644 index 00000000..35e8a363 Binary files /dev/null and b/blockchains/ethereum/assets/0xDC349913d53b446485E98b76800b6254f43Df695/logo.png differ diff --git a/blockchains/ethereum/assets/0xDC4A7A6632b1aF0e4E0A3C424936563A08503126/info.json b/blockchains/ethereum/assets/0xDC4A7A6632b1aF0e4E0A3C424936563A08503126/info.json new file mode 100644 index 00000000..816557c0 --- /dev/null +++ b/blockchains/ethereum/assets/0xDC4A7A6632b1aF0e4E0A3C424936563A08503126/info.json @@ -0,0 +1,11 @@ +{ + "name": "StarlightToken", + "symbol": "STRT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDC4A7A6632b1aF0e4E0A3C424936563A08503126", + "status": "abandoned", + "id": "0xDC4A7A6632b1aF0e4E0A3C424936563A08503126" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDC4A7A6632b1aF0e4E0A3C424936563A08503126/logo.png b/blockchains/ethereum/assets/0xDC4A7A6632b1aF0e4E0A3C424936563A08503126/logo.png new file mode 100644 index 00000000..61850527 Binary files /dev/null and b/blockchains/ethereum/assets/0xDC4A7A6632b1aF0e4E0A3C424936563A08503126/logo.png differ diff --git a/blockchains/ethereum/assets/0xDCC27bBaa14cAFD8a6aeB847E1B01C5DFFB70935/info.json b/blockchains/ethereum/assets/0xDCC27bBaa14cAFD8a6aeB847E1B01C5DFFB70935/info.json new file mode 100644 index 00000000..e338ee6e --- /dev/null +++ b/blockchains/ethereum/assets/0xDCC27bBaa14cAFD8a6aeB847E1B01C5DFFB70935/info.json @@ -0,0 +1,11 @@ +{ + "name": "VANTA Token", + "symbol": "VNT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://vanta.network", + "explorer": "https://etherscan.io/token/0xDCC27bBaa14cAFD8a6aeB847E1B01C5DFFB70935", + "status": "abandoned", + "id": "0xDCC27bBaa14cAFD8a6aeB847E1B01C5DFFB70935" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDCC27bBaa14cAFD8a6aeB847E1B01C5DFFB70935/logo.png b/blockchains/ethereum/assets/0xDCC27bBaa14cAFD8a6aeB847E1B01C5DFFB70935/logo.png new file mode 100644 index 00000000..2f764f55 Binary files /dev/null and b/blockchains/ethereum/assets/0xDCC27bBaa14cAFD8a6aeB847E1B01C5DFFB70935/logo.png differ diff --git a/blockchains/ethereum/assets/0xDCEf0710B10aD66bC2194b412fb37C65D4D0A965/info.json b/blockchains/ethereum/assets/0xDCEf0710B10aD66bC2194b412fb37C65D4D0A965/info.json new file mode 100644 index 00000000..93bf79c3 --- /dev/null +++ b/blockchains/ethereum/assets/0xDCEf0710B10aD66bC2194b412fb37C65D4D0A965/info.json @@ -0,0 +1,11 @@ +{ + "name": "lothlor", + "symbol": "LOT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDCEf0710B10aD66bC2194b412fb37C65D4D0A965", + "status": "abandoned", + "id": "0xDCEf0710B10aD66bC2194b412fb37C65D4D0A965" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDCEf0710B10aD66bC2194b412fb37C65D4D0A965/logo.png b/blockchains/ethereum/assets/0xDCEf0710B10aD66bC2194b412fb37C65D4D0A965/logo.png new file mode 100644 index 00000000..3784ff12 Binary files /dev/null and b/blockchains/ethereum/assets/0xDCEf0710B10aD66bC2194b412fb37C65D4D0A965/logo.png differ diff --git a/blockchains/ethereum/assets/0xDCac1E6732CB951282E1CFc18b26AdB5d1F995e2/info.json b/blockchains/ethereum/assets/0xDCac1E6732CB951282E1CFc18b26AdB5d1F995e2/info.json new file mode 100644 index 00000000..2ca5d5a7 --- /dev/null +++ b/blockchains/ethereum/assets/0xDCac1E6732CB951282E1CFc18b26AdB5d1F995e2/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueGoldCoin", + "symbol": "TGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDCac1E6732CB951282E1CFc18b26AdB5d1F995e2", + "status": "abandoned", + "id": "0xDCac1E6732CB951282E1CFc18b26AdB5d1F995e2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDCac1E6732CB951282E1CFc18b26AdB5d1F995e2/logo.png b/blockchains/ethereum/assets/0xDCac1E6732CB951282E1CFc18b26AdB5d1F995e2/logo.png new file mode 100644 index 00000000..5eb97a26 Binary files /dev/null and b/blockchains/ethereum/assets/0xDCac1E6732CB951282E1CFc18b26AdB5d1F995e2/logo.png differ diff --git a/blockchains/ethereum/assets/0xDCe9405C22263CEB0568E05DC1379A800B3Df9f7/info.json b/blockchains/ethereum/assets/0xDCe9405C22263CEB0568E05DC1379A800B3Df9f7/info.json new file mode 100644 index 00000000..8f81d03b --- /dev/null +++ b/blockchains/ethereum/assets/0xDCe9405C22263CEB0568E05DC1379A800B3Df9f7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gold", + "symbol": "GOLD", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://coin999.cash/", + "explorer": "https://etherscan.io/token/0xDCe9405C22263CEB0568E05DC1379A800B3Df9f7", + "status": "abandoned", + "id": "0xDCe9405C22263CEB0568E05DC1379A800B3Df9f7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDCe9405C22263CEB0568E05DC1379A800B3Df9f7/logo.png b/blockchains/ethereum/assets/0xDCe9405C22263CEB0568E05DC1379A800B3Df9f7/logo.png new file mode 100644 index 00000000..da14999a Binary files /dev/null and b/blockchains/ethereum/assets/0xDCe9405C22263CEB0568E05DC1379A800B3Df9f7/logo.png differ diff --git a/blockchains/ethereum/assets/0xDD16eC0F66E54d453e6756713E533355989040E4/info.json b/blockchains/ethereum/assets/0xDD16eC0F66E54d453e6756713E533355989040E4/info.json new file mode 100644 index 00000000..2c3463ab --- /dev/null +++ b/blockchains/ethereum/assets/0xDD16eC0F66E54d453e6756713E533355989040E4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tokenomy Token", + "website": "https://tokenomy.com/", + "description": "Cryptocurrency ecosystem for trading and earning yield.", + "explorer": "https://etherscan.io/token/0xdd16ec0f66e54d453e6756713e533355989040e4", + "type": "ERC20", + "symbol": "TEN", + "decimals": 18, + "status": "active", + "id": "0xDD16eC0F66E54d453e6756713E533355989040E4", + "links": [ + { + "name": "x", + "url": "https://x.com/x" + }, + { + "name": "facebook", + "url": "https://facebook.com/TOKENOMY/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDD16eC0F66E54d453e6756713E533355989040E4/logo.png b/blockchains/ethereum/assets/0xDD16eC0F66E54d453e6756713E533355989040E4/logo.png new file mode 100644 index 00000000..96384a10 Binary files /dev/null and b/blockchains/ethereum/assets/0xDD16eC0F66E54d453e6756713E533355989040E4/logo.png differ diff --git a/blockchains/ethereum/assets/0xDD436a0Dce9244B36599AE7b22f0373b4e33992d/info.json b/blockchains/ethereum/assets/0xDD436a0Dce9244B36599AE7b22f0373b4e33992d/info.json new file mode 100644 index 00000000..b34d7725 --- /dev/null +++ b/blockchains/ethereum/assets/0xDD436a0Dce9244B36599AE7b22f0373b4e33992d/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrustUSD", + "symbol": "TRUSD", + "type": "ERC20", + "decimals": 18, + "description": "A true token only becomes a currency once it’s used by markets as a store of value and means of exchange. TrustUSD is a stable asset protected against inflation and market volatiltiy while also serving the world’s underbanked.", + "website": "https://unitedtrust.co/", + "explorer": "https://etherscan.io/token/0xDD436a0Dce9244B36599AE7b22f0373b4e33992d", + "status": "active", + "id": "0xDD436a0Dce9244B36599AE7b22f0373b4e33992d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDD436a0Dce9244B36599AE7b22f0373b4e33992d/logo.png b/blockchains/ethereum/assets/0xDD436a0Dce9244B36599AE7b22f0373b4e33992d/logo.png new file mode 100644 index 00000000..3bee0423 Binary files /dev/null and b/blockchains/ethereum/assets/0xDD436a0Dce9244B36599AE7b22f0373b4e33992d/logo.png differ diff --git a/blockchains/ethereum/assets/0xDD5c87abA6DF58e1474eA1Ffb64c36F3F7175a2f/info.json b/blockchains/ethereum/assets/0xDD5c87abA6DF58e1474eA1Ffb64c36F3F7175a2f/info.json new file mode 100644 index 00000000..bc06c18b --- /dev/null +++ b/blockchains/ethereum/assets/0xDD5c87abA6DF58e1474eA1Ffb64c36F3F7175a2f/info.json @@ -0,0 +1,11 @@ +{ + "name": "ViacashToken", + "symbol": "Viacash", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDD5c87abA6DF58e1474eA1Ffb64c36F3F7175a2f", + "status": "abandoned", + "id": "0xDD5c87abA6DF58e1474eA1Ffb64c36F3F7175a2f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDD5c87abA6DF58e1474eA1Ffb64c36F3F7175a2f/logo.png b/blockchains/ethereum/assets/0xDD5c87abA6DF58e1474eA1Ffb64c36F3F7175a2f/logo.png new file mode 100755 index 00000000..c6b2a5e6 Binary files /dev/null and b/blockchains/ethereum/assets/0xDD5c87abA6DF58e1474eA1Ffb64c36F3F7175a2f/logo.png differ diff --git a/blockchains/ethereum/assets/0xDD8a8C64431e4e11bAC0F1Ac47672145Fe54DC9D/info.json b/blockchains/ethereum/assets/0xDD8a8C64431e4e11bAC0F1Ac47672145Fe54DC9D/info.json new file mode 100644 index 00000000..042a1cf3 --- /dev/null +++ b/blockchains/ethereum/assets/0xDD8a8C64431e4e11bAC0F1Ac47672145Fe54DC9D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tyche Chip", + "symbol": "TYC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDD8a8C64431e4e11bAC0F1Ac47672145Fe54DC9D", + "status": "abandoned", + "id": "0xDD8a8C64431e4e11bAC0F1Ac47672145Fe54DC9D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDD8a8C64431e4e11bAC0F1Ac47672145Fe54DC9D/logo.png b/blockchains/ethereum/assets/0xDD8a8C64431e4e11bAC0F1Ac47672145Fe54DC9D/logo.png new file mode 100644 index 00000000..d3e6c1f7 Binary files /dev/null and b/blockchains/ethereum/assets/0xDD8a8C64431e4e11bAC0F1Ac47672145Fe54DC9D/logo.png differ diff --git a/blockchains/ethereum/assets/0xDDB3422497E61e13543BeA06989C0789117555c5/info.json b/blockchains/ethereum/assets/0xDDB3422497E61e13543BeA06989C0789117555c5/info.json new file mode 100644 index 00000000..b649a6a8 --- /dev/null +++ b/blockchains/ethereum/assets/0xDDB3422497E61e13543BeA06989C0789117555c5/info.json @@ -0,0 +1,15 @@ +{ + "name": "COTI", + "website": "https://coti.io/", + "description": "COTI a fixed-supply DAG-based cryptocurrency.", + "explorer": "https://etherscan.io/token/0xDDB3422497E61e13543BeA06989C0789117555c5", + "research": "https://coti.io/technology", + "type": "ERC20", + "symbol": "COTI", + "decimals": 18, + "status": "active", + "id": "0xDDB3422497E61e13543BeA06989C0789117555c5", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDDB3422497E61e13543BeA06989C0789117555c5/logo.png b/blockchains/ethereum/assets/0xDDB3422497E61e13543BeA06989C0789117555c5/logo.png new file mode 100644 index 00000000..89615d3c Binary files /dev/null and b/blockchains/ethereum/assets/0xDDB3422497E61e13543BeA06989C0789117555c5/logo.png differ diff --git a/blockchains/ethereum/assets/0xDDCE370b6E80653fB226803385a58c0f8e49D9d4/info.json b/blockchains/ethereum/assets/0xDDCE370b6E80653fB226803385a58c0f8e49D9d4/info.json new file mode 100644 index 00000000..176d31f7 --- /dev/null +++ b/blockchains/ethereum/assets/0xDDCE370b6E80653fB226803385a58c0f8e49D9d4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eco Finances", + "website": "https://ecofinances.io", + "description": "EcoFinances Token is a internal token payment in ecosystem.", + "explorer": "https://etherscan.io/token/0xDDCE370b6E80653fB226803385a58c0f8e49D9d4", + "type": "ERC20", + "symbol": "EFC", + "decimals": 18, + "status": "active", + "id": "0xDDCE370b6E80653fB226803385a58c0f8e49D9d4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDDCE370b6E80653fB226803385a58c0f8e49D9d4/logo.png b/blockchains/ethereum/assets/0xDDCE370b6E80653fB226803385a58c0f8e49D9d4/logo.png new file mode 100644 index 00000000..3b5f39c2 Binary files /dev/null and b/blockchains/ethereum/assets/0xDDCE370b6E80653fB226803385a58c0f8e49D9d4/logo.png differ diff --git a/blockchains/ethereum/assets/0xDDD460bBD9F79847ea08681563e8A9696867210C/info.json b/blockchains/ethereum/assets/0xDDD460bBD9F79847ea08681563e8A9696867210C/info.json new file mode 100644 index 00000000..2d468dff --- /dev/null +++ b/blockchains/ethereum/assets/0xDDD460bBD9F79847ea08681563e8A9696867210C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Spendcoin", + "symbol": "SPND", + "type": "ERC20", + "decimals": 18, + "description": "Spendcoin is a decentralized cryptocurrency that powers the Spend.com ecosystem of products. Spend has two financial services products, the Spend App and Spend Card, which are products of Spend.com that give our users a multi-currency digital wallet that they are able to store fiat and digital assets/currencies.", + "website": "https://spend.org", + "explorer": "https://etherscan.io/token/0xDDD460bBD9F79847ea08681563e8A9696867210C", + "status": "active", + "id": "0xDDD460bBD9F79847ea08681563e8A9696867210C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDDD460bBD9F79847ea08681563e8A9696867210C/logo.png b/blockchains/ethereum/assets/0xDDD460bBD9F79847ea08681563e8A9696867210C/logo.png new file mode 100644 index 00000000..bf2212c1 Binary files /dev/null and b/blockchains/ethereum/assets/0xDDD460bBD9F79847ea08681563e8A9696867210C/logo.png differ diff --git a/blockchains/ethereum/assets/0xDDa8AE425F50eC838b73E9DA6C75D5B01D1f642E/info.json b/blockchains/ethereum/assets/0xDDa8AE425F50eC838b73E9DA6C75D5B01D1f642E/info.json new file mode 100644 index 00000000..f2359cfb --- /dev/null +++ b/blockchains/ethereum/assets/0xDDa8AE425F50eC838b73E9DA6C75D5B01D1f642E/info.json @@ -0,0 +1,11 @@ +{ + "name": "MILFcoin", + "symbol": "MILF", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDDa8AE425F50eC838b73E9DA6C75D5B01D1f642E", + "status": "abandoned", + "id": "0xDDa8AE425F50eC838b73E9DA6C75D5B01D1f642E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDDa8AE425F50eC838b73E9DA6C75D5B01D1f642E/logo.png b/blockchains/ethereum/assets/0xDDa8AE425F50eC838b73E9DA6C75D5B01D1f642E/logo.png new file mode 100644 index 00000000..1ff9474b Binary files /dev/null and b/blockchains/ethereum/assets/0xDDa8AE425F50eC838b73E9DA6C75D5B01D1f642E/logo.png differ diff --git a/blockchains/ethereum/assets/0xDDdddd4301A082e62E84e43F474f044423921918/info.json b/blockchains/ethereum/assets/0xDDdddd4301A082e62E84e43F474f044423921918/info.json new file mode 100644 index 00000000..9a722b5e --- /dev/null +++ b/blockchains/ethereum/assets/0xDDdddd4301A082e62E84e43F474f044423921918/info.json @@ -0,0 +1,28 @@ +{ + "name": "DeversiFi Token", + "type": "ERC20", + "symbol": "DVF", + "decimals": 18, + "website": "https://www.rhino.fi/", + "description": "RhinoFi is designed as a Layer 2 protocol on Ethereum using zk proofs for settlement.", + "explorer": "https://etherscan.io/token/0xdddddd4301a082e62e84e43f474f044423921918", + "status": "active", + "id": "0xDDdddd4301A082e62E84e43F474f044423921918", + "links": [ + { + "name": "x", + "url": "https://x.com/rhinofi" + }, + { + "name": "discord", + "url": "https://discord.com/26sXx2KAhy" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/deversifi/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDDdddd4301A082e62E84e43F474f044423921918/logo.png b/blockchains/ethereum/assets/0xDDdddd4301A082e62E84e43F474f044423921918/logo.png new file mode 100644 index 00000000..f548b200 Binary files /dev/null and b/blockchains/ethereum/assets/0xDDdddd4301A082e62E84e43F474f044423921918/logo.png differ diff --git a/blockchains/ethereum/assets/0xDDe12a12A6f67156e0DA672be05c374e1B0a3e57/info.json b/blockchains/ethereum/assets/0xDDe12a12A6f67156e0DA672be05c374e1B0a3e57/info.json new file mode 100644 index 00000000..75d03af3 --- /dev/null +++ b/blockchains/ethereum/assets/0xDDe12a12A6f67156e0DA672be05c374e1B0a3e57/info.json @@ -0,0 +1,11 @@ +{ + "name": "JOYSO", + "symbol": "JOY", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://joyso.io/", + "explorer": "https://etherscan.io/token/0xDDe12a12A6f67156e0DA672be05c374e1B0a3e57", + "status": "abandoned", + "id": "0xDDe12a12A6f67156e0DA672be05c374e1B0a3e57" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDDe12a12A6f67156e0DA672be05c374e1B0a3e57/logo.png b/blockchains/ethereum/assets/0xDDe12a12A6f67156e0DA672be05c374e1B0a3e57/logo.png new file mode 100644 index 00000000..9439c566 Binary files /dev/null and b/blockchains/ethereum/assets/0xDDe12a12A6f67156e0DA672be05c374e1B0a3e57/logo.png differ diff --git a/blockchains/ethereum/assets/0xDE075D9ADbD0240b4462F124af926452Ad0BAC91/info.json b/blockchains/ethereum/assets/0xDE075D9ADbD0240b4462F124af926452Ad0BAC91/info.json new file mode 100644 index 00000000..fb65bc57 --- /dev/null +++ b/blockchains/ethereum/assets/0xDE075D9ADbD0240b4462F124af926452Ad0BAC91/info.json @@ -0,0 +1,28 @@ +{ + "name": "Bubblefong", + "type": "ERC20", + "symbol": "BBF", + "decimals": 18, + "website": "https://bubblefong.io", + "description": "BBF is a governance token that maintains the game's ecosystem, and players will be able to form and build a collective network (DAO) to participate in the development direction and profits of the game. It is used for becoming a VIP, staking, etc.", + "explorer": "https://etherscan.io/token/0xde075d9adbd0240b4462f124af926452ad0bac91", + "status": "active", + "id": "0xDE075D9ADbD0240b4462F124af926452Ad0BAC91", + "links": [ + { + "name": "x", + "url": "https://x.com/BubblefongGame" + }, + { + "name": "telegram", + "url": "https://t.me/BubbleFongFriends" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/bubblefong/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDE075D9ADbD0240b4462F124af926452Ad0BAC91/logo.png b/blockchains/ethereum/assets/0xDE075D9ADbD0240b4462F124af926452Ad0BAC91/logo.png new file mode 100644 index 00000000..5fce9b50 Binary files /dev/null and b/blockchains/ethereum/assets/0xDE075D9ADbD0240b4462F124af926452Ad0BAC91/logo.png differ diff --git a/blockchains/ethereum/assets/0xDE08beE9240f2A57EaB416302E3A6271fbd3F9dE/info.json b/blockchains/ethereum/assets/0xDE08beE9240f2A57EaB416302E3A6271fbd3F9dE/info.json new file mode 100644 index 00000000..d94ca758 --- /dev/null +++ b/blockchains/ethereum/assets/0xDE08beE9240f2A57EaB416302E3A6271fbd3F9dE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dr.Agent", + "symbol": "DRA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDE08beE9240f2A57EaB416302E3A6271fbd3F9dE", + "status": "abandoned", + "id": "0xDE08beE9240f2A57EaB416302E3A6271fbd3F9dE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDE08beE9240f2A57EaB416302E3A6271fbd3F9dE/logo.png b/blockchains/ethereum/assets/0xDE08beE9240f2A57EaB416302E3A6271fbd3F9dE/logo.png new file mode 100644 index 00000000..f4d66fd3 Binary files /dev/null and b/blockchains/ethereum/assets/0xDE08beE9240f2A57EaB416302E3A6271fbd3F9dE/logo.png differ diff --git a/blockchains/ethereum/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/info.json b/blockchains/ethereum/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/info.json new file mode 100644 index 00000000..1f986452 --- /dev/null +++ b/blockchains/ethereum/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/info.json @@ -0,0 +1,25 @@ +{ + "name": "DEI", + "website": "https://deus.finance/", + "description": "DEUS Finance Evolution is a marketplace of decentralized financial services, where we provide the infrastructure for others to build financial instruments, such as synthetic stock trading platforms, options, and futures trading.", + "explorer": "https://etherscan.io/token/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3", + "type": "ERC20", + "symbol": "DEI", + "decimals": 18, + "status": "active", + "id": "0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3", + "links": [ + { + "name": "x", + "url": "https://x.com/DeusDao" + }, + { + "name": "telegram", + "url": "https://t.me/deusfinance" + }, + { + "name": "medium", + "url": "https://medium.com/@deusfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/logo.png b/blockchains/ethereum/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/logo.png new file mode 100644 index 00000000..883b793c Binary files /dev/null and b/blockchains/ethereum/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/logo.png differ diff --git a/blockchains/ethereum/assets/0xDE1E0AE6101b46520cF66fDC0B1059c5cC3d106c/info.json b/blockchains/ethereum/assets/0xDE1E0AE6101b46520cF66fDC0B1059c5cC3d106c/info.json new file mode 100644 index 00000000..79bc5688 --- /dev/null +++ b/blockchains/ethereum/assets/0xDE1E0AE6101b46520cF66fDC0B1059c5cC3d106c/info.json @@ -0,0 +1,11 @@ +{ + "name": "DeltaChain Token", + "symbol": "DELTA", + "type": "ERC20", + "decimals": 8, + "description": "DeltaChain inherits and develops the Ethereum technology platform, with open source P2P accelerates all transactions quickly, minimises risk, enhances high security, and does not involve any third parties.", + "website": "https://deltachain.tech/", + "explorer": "https://etherscan.io/token/0xDE1E0AE6101b46520cF66fDC0B1059c5cC3d106c", + "status": "active", + "id": "0xDE1E0AE6101b46520cF66fDC0B1059c5cC3d106c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDE1E0AE6101b46520cF66fDC0B1059c5cC3d106c/logo.png b/blockchains/ethereum/assets/0xDE1E0AE6101b46520cF66fDC0B1059c5cC3d106c/logo.png new file mode 100644 index 00000000..bef294ae Binary files /dev/null and b/blockchains/ethereum/assets/0xDE1E0AE6101b46520cF66fDC0B1059c5cC3d106c/logo.png differ diff --git a/blockchains/ethereum/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/info.json b/blockchains/ethereum/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/info.json new file mode 100644 index 00000000..f5b8fc06 --- /dev/null +++ b/blockchains/ethereum/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/info.json @@ -0,0 +1,25 @@ +{ + "name": "DEUS", + "website": "https://deus.finance/", + "description": "DEUS Finance Evolution is a marketplace of decentralized financial services, where we provide the infrastructure for others to build financial instruments, such as synthetic stock trading platforms, options, and futures trading.", + "explorer": "https://etherscan.io/token/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44", + "type": "ERC20", + "symbol": "DEUS", + "decimals": 18, + "status": "active", + "id": "0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44", + "links": [ + { + "name": "x", + "url": "https://x.com/DeusDao" + }, + { + "name": "telegram", + "url": "https://t.me/deusfinance" + }, + { + "name": "medium", + "url": "https://medium.com/@deusfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/logo.png b/blockchains/ethereum/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/logo.png new file mode 100644 index 00000000..cb37bfd7 Binary files /dev/null and b/blockchains/ethereum/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/logo.png differ diff --git a/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/info.json b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/info.json new file mode 100644 index 00000000..a74f5b5b --- /dev/null +++ b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/info.json @@ -0,0 +1,56 @@ +{ + "name": "CoW Protocol Token", + "type": "ERC20", + "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://etherscan.io/token/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB", + "status": "active", + "id": "0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB", + "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/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png new file mode 100644 index 00000000..8df3f5b4 Binary files /dev/null and b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png differ diff --git a/blockchains/ethereum/assets/0xDF02C0d054fB4F01D8f7E2fCF61A4837CB6d868E/info.json b/blockchains/ethereum/assets/0xDF02C0d054fB4F01D8f7E2fCF61A4837CB6d868E/info.json new file mode 100644 index 00000000..445df890 --- /dev/null +++ b/blockchains/ethereum/assets/0xDF02C0d054fB4F01D8f7E2fCF61A4837CB6d868E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Brianex Token", + "symbol": "BRXT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDF02C0d054fB4F01D8f7E2fCF61A4837CB6d868E", + "status": "abandoned", + "id": "0xDF02C0d054fB4F01D8f7E2fCF61A4837CB6d868E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDF02C0d054fB4F01D8f7E2fCF61A4837CB6d868E/logo.png b/blockchains/ethereum/assets/0xDF02C0d054fB4F01D8f7E2fCF61A4837CB6d868E/logo.png new file mode 100644 index 00000000..c6022cb1 Binary files /dev/null and b/blockchains/ethereum/assets/0xDF02C0d054fB4F01D8f7E2fCF61A4837CB6d868E/logo.png differ diff --git a/blockchains/ethereum/assets/0xDF2705d4368Cd2EE3bbfF73594aE47244064dFfB/info.json b/blockchains/ethereum/assets/0xDF2705d4368Cd2EE3bbfF73594aE47244064dFfB/info.json new file mode 100644 index 00000000..71f5da8c --- /dev/null +++ b/blockchains/ethereum/assets/0xDF2705d4368Cd2EE3bbfF73594aE47244064dFfB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xenoverse", + "symbol": "XENO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDF2705d4368Cd2EE3bbfF73594aE47244064dFfB", + "status": "abandoned", + "id": "0xDF2705d4368Cd2EE3bbfF73594aE47244064dFfB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDF2705d4368Cd2EE3bbfF73594aE47244064dFfB/logo.png b/blockchains/ethereum/assets/0xDF2705d4368Cd2EE3bbfF73594aE47244064dFfB/logo.png new file mode 100644 index 00000000..0861204f Binary files /dev/null and b/blockchains/ethereum/assets/0xDF2705d4368Cd2EE3bbfF73594aE47244064dFfB/logo.png differ diff --git a/blockchains/ethereum/assets/0xDF2C7238198Ad8B389666574f2d8bc411A4b7428/info.json b/blockchains/ethereum/assets/0xDF2C7238198Ad8B389666574f2d8bc411A4b7428/info.json new file mode 100644 index 00000000..6d6bda10 --- /dev/null +++ b/blockchains/ethereum/assets/0xDF2C7238198Ad8B389666574f2d8bc411A4b7428/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mainframe Token", + "symbol": "MFT", + "type": "ERC20", + "decimals": 18, + "description": "Mainframe is the platform for decentralized applications. Resistant to censorship, surveillance, and disruption, the Mainframe network enables any application to send data, store files, manage payments, run tasks, and more.", + "website": "https://mainframe.com/", + "explorer": "https://etherscan.io/token/0xDF2C7238198Ad8B389666574f2d8bc411A4b7428", + "status": "active", + "id": "0xDF2C7238198Ad8B389666574f2d8bc411A4b7428" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDF2C7238198Ad8B389666574f2d8bc411A4b7428/logo.png b/blockchains/ethereum/assets/0xDF2C7238198Ad8B389666574f2d8bc411A4b7428/logo.png new file mode 100644 index 00000000..7d862132 Binary files /dev/null and b/blockchains/ethereum/assets/0xDF2C7238198Ad8B389666574f2d8bc411A4b7428/logo.png differ diff --git a/blockchains/ethereum/assets/0xDF347911910b6c9A4286bA8E2EE5ea4a39eB2134/info.json b/blockchains/ethereum/assets/0xDF347911910b6c9A4286bA8E2EE5ea4a39eB2134/info.json new file mode 100644 index 00000000..18a3f1aa --- /dev/null +++ b/blockchains/ethereum/assets/0xDF347911910b6c9A4286bA8E2EE5ea4a39eB2134/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bob Token", + "symbol": "BOB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.bobsrepair.com", + "explorer": "https://etherscan.io/token/0xDF347911910b6c9A4286bA8E2EE5ea4a39eB2134", + "status": "active", + "id": "0xDF347911910b6c9A4286bA8E2EE5ea4a39eB2134" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDF347911910b6c9A4286bA8E2EE5ea4a39eB2134/logo.png b/blockchains/ethereum/assets/0xDF347911910b6c9A4286bA8E2EE5ea4a39eB2134/logo.png new file mode 100755 index 00000000..c20fc41a Binary files /dev/null and b/blockchains/ethereum/assets/0xDF347911910b6c9A4286bA8E2EE5ea4a39eB2134/logo.png differ diff --git a/blockchains/ethereum/assets/0xDF859C9878Ef5e742d7BbE3C22a496c088C89Fa9/info.json b/blockchains/ethereum/assets/0xDF859C9878Ef5e742d7BbE3C22a496c088C89Fa9/info.json new file mode 100644 index 00000000..e60a5f50 --- /dev/null +++ b/blockchains/ethereum/assets/0xDF859C9878Ef5e742d7BbE3C22a496c088C89Fa9/info.json @@ -0,0 +1,11 @@ +{ + "name": "FIND Token", + "symbol": "FIND", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://g.qufen.top/", + "explorer": "https://etherscan.io/token/0xDF859C9878Ef5e742d7BbE3C22a496c088C89Fa9", + "status": "abandoned", + "id": "0xDF859C9878Ef5e742d7BbE3C22a496c088C89Fa9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDF859C9878Ef5e742d7BbE3C22a496c088C89Fa9/logo.png b/blockchains/ethereum/assets/0xDF859C9878Ef5e742d7BbE3C22a496c088C89Fa9/logo.png new file mode 100644 index 00000000..e4acb539 Binary files /dev/null and b/blockchains/ethereum/assets/0xDF859C9878Ef5e742d7BbE3C22a496c088C89Fa9/logo.png differ diff --git a/blockchains/ethereum/assets/0xDF8673049BfcAc01244847d955d139d20815EA84/info.json b/blockchains/ethereum/assets/0xDF8673049BfcAc01244847d955d139d20815EA84/info.json new file mode 100644 index 00000000..2894e284 --- /dev/null +++ b/blockchains/ethereum/assets/0xDF8673049BfcAc01244847d955d139d20815EA84/info.json @@ -0,0 +1,11 @@ +{ + "name": "PLUTUS", + "symbol": "PLUS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDF8673049BfcAc01244847d955d139d20815EA84", + "status": "abandoned", + "id": "0xDF8673049BfcAc01244847d955d139d20815EA84" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDF8673049BfcAc01244847d955d139d20815EA84/logo.png b/blockchains/ethereum/assets/0xDF8673049BfcAc01244847d955d139d20815EA84/logo.png new file mode 100644 index 00000000..e503f68a Binary files /dev/null and b/blockchains/ethereum/assets/0xDF8673049BfcAc01244847d955d139d20815EA84/logo.png differ diff --git a/blockchains/ethereum/assets/0xDFD26F13029FBD89A5db1cCD08Ce9434B697BC73/info.json b/blockchains/ethereum/assets/0xDFD26F13029FBD89A5db1cCD08Ce9434B697BC73/info.json new file mode 100644 index 00000000..abeffe01 --- /dev/null +++ b/blockchains/ethereum/assets/0xDFD26F13029FBD89A5db1cCD08Ce9434B697BC73/info.json @@ -0,0 +1,11 @@ +{ + "name": "Redefining Music Art & Culture", + "symbol": "RAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDFD26F13029FBD89A5db1cCD08Ce9434B697BC73", + "status": "abandoned", + "id": "0xDFD26F13029FBD89A5db1cCD08Ce9434B697BC73" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDFD26F13029FBD89A5db1cCD08Ce9434B697BC73/logo.png b/blockchains/ethereum/assets/0xDFD26F13029FBD89A5db1cCD08Ce9434B697BC73/logo.png new file mode 100644 index 00000000..1b16b861 Binary files /dev/null and b/blockchains/ethereum/assets/0xDFD26F13029FBD89A5db1cCD08Ce9434B697BC73/logo.png differ diff --git a/blockchains/ethereum/assets/0xDFd46E425143f562E52a3AA6646BD7c9F39C9de1/info.json b/blockchains/ethereum/assets/0xDFd46E425143f562E52a3AA6646BD7c9F39C9de1/info.json new file mode 100644 index 00000000..bad01da0 --- /dev/null +++ b/blockchains/ethereum/assets/0xDFd46E425143f562E52a3AA6646BD7c9F39C9de1/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR 1000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDFd46E425143f562E52a3AA6646BD7c9F39C9de1", + "status": "abandoned", + "id": "0xDFd46E425143f562E52a3AA6646BD7c9F39C9de1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDFd46E425143f562E52a3AA6646BD7c9F39C9de1/logo.png b/blockchains/ethereum/assets/0xDFd46E425143f562E52a3AA6646BD7c9F39C9de1/logo.png new file mode 100644 index 00000000..c7894ed2 Binary files /dev/null and b/blockchains/ethereum/assets/0xDFd46E425143f562E52a3AA6646BD7c9F39C9de1/logo.png differ diff --git a/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/info.json b/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/info.json new file mode 100644 index 00000000..81149ba0 --- /dev/null +++ b/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/info.json @@ -0,0 +1,56 @@ +{ + "name": "DynBTC DynaSet", + "type": "ERC20", + "symbol": "dynBTC", + "decimals": 18, + "website": "https://singularitydao.ai/dynasets/dynBTC", + "description": "DynBTC gives users exposure to Bitcoin using long only strategies optimised by the Dynamic Asset Manager with less fees & expenses. Powered by SingularityDAO.ai.", + "explorer": "https://etherscan.io/token/0xDa49AF8773Cb162ca56f8431442c750896F8C87A", + "status": "active", + "id": "0xDa49AF8773Cb162ca56f8431442c750896F8C87A", + "links": [ + { + "name": "x", + "url": "https://x.com/SingularityDao" + }, + { + "name": "telegram", + "url": "https://t.me/chatsight_bot?start=dmVyaWZ5OjotMTAwMTI4NzAxNjEzNw==" + }, + { + "name": "telegram_news", + "url": "https://t.me/sdaoann" + }, + { + "name": "discord", + "url": "https://discord.com/invite/singularitydao" + }, + { + "name": "github", + "url": "https://github.com/Singularity-DAO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/singularitydao" + }, + { + "name": "youtube", + "url": "https://youtube.com/@SingularityDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/singularitydao/" + }, + { + "name": "medium", + "url": "https://medium.com/singularitydao" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SingularityDAO/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/logo.png b/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/logo.png new file mode 100644 index 00000000..a7f87d6b Binary files /dev/null and b/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/logo.png differ diff --git a/blockchains/ethereum/assets/0xDa4D69C10c03F9e07F69d091d525b70D8856e2b7/info.json b/blockchains/ethereum/assets/0xDa4D69C10c03F9e07F69d091d525b70D8856e2b7/info.json new file mode 100644 index 00000000..1bc452bc --- /dev/null +++ b/blockchains/ethereum/assets/0xDa4D69C10c03F9e07F69d091d525b70D8856e2b7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Radium Token", + "symbol": "RAD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDa4D69C10c03F9e07F69d091d525b70D8856e2b7", + "status": "abandoned", + "id": "0xDa4D69C10c03F9e07F69d091d525b70D8856e2b7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDa4D69C10c03F9e07F69d091d525b70D8856e2b7/logo.png b/blockchains/ethereum/assets/0xDa4D69C10c03F9e07F69d091d525b70D8856e2b7/logo.png new file mode 100755 index 00000000..7ced1828 Binary files /dev/null and b/blockchains/ethereum/assets/0xDa4D69C10c03F9e07F69d091d525b70D8856e2b7/logo.png differ diff --git a/blockchains/ethereum/assets/0xDaF88906aC1DE12bA2b1D2f7bfC94E9638Ac40c4/info.json b/blockchains/ethereum/assets/0xDaF88906aC1DE12bA2b1D2f7bfC94E9638Ac40c4/info.json new file mode 100644 index 00000000..5a89e05a --- /dev/null +++ b/blockchains/ethereum/assets/0xDaF88906aC1DE12bA2b1D2f7bfC94E9638Ac40c4/info.json @@ -0,0 +1,11 @@ +{ + "name": "EpiK Protocol", + "type": "ERC20", + "symbol": "EPK", + "decimals": 18, + "website": "https://www.epik-protocol.io", + "description": "EpiK Protocol is a decentralized trusted knowledge graph collaboration platform of the People, by the People, for the People.", + "explorer": "https://etherscan.io/token/0xdaf88906ac1de12ba2b1d2f7bfc94e9638ac40c4", + "status": "active", + "id": "0xDaF88906aC1DE12bA2b1D2f7bfC94E9638Ac40c4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDaF88906aC1DE12bA2b1D2f7bfC94E9638Ac40c4/logo.png b/blockchains/ethereum/assets/0xDaF88906aC1DE12bA2b1D2f7bfC94E9638Ac40c4/logo.png new file mode 100644 index 00000000..3cbc829c Binary files /dev/null and b/blockchains/ethereum/assets/0xDaF88906aC1DE12bA2b1D2f7bfC94E9638Ac40c4/logo.png differ diff --git a/blockchains/ethereum/assets/0xDaF8a0E12fc3b109A17ED5CbB943A8f3f86081f7/info.json b/blockchains/ethereum/assets/0xDaF8a0E12fc3b109A17ED5CbB943A8f3f86081f7/info.json new file mode 100644 index 00000000..6a4472bb --- /dev/null +++ b/blockchains/ethereum/assets/0xDaF8a0E12fc3b109A17ED5CbB943A8f3f86081f7/info.json @@ -0,0 +1,21 @@ +{ + "name": "SBX", + "website": "https://sbxtoken.io", + "description": "Decentralized marketplace for sports consultants and sports bettors. SBX token used for betting, 10% cashback on losses. Staking Dapp live at Uniswap launch.", + "explorer": "https://etherscan.io/token/0xDaF8a0E12fc3b109A17ED5CbB943A8f3f86081f7", + "type": "ERC20", + "symbol": "SBX", + "decimals": 18, + "status": "active", + "id": "0xDaF8a0E12fc3b109A17ED5CbB943A8f3f86081f7", + "links": [ + { + "name": "x", + "url": "https://x.com/SBXtoken" + }, + { + "name": "discord", + "url": "https://discord.com/invite/6n49BTy" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDaF8a0E12fc3b109A17ED5CbB943A8f3f86081f7/logo.png b/blockchains/ethereum/assets/0xDaF8a0E12fc3b109A17ED5CbB943A8f3f86081f7/logo.png new file mode 100644 index 00000000..ca46b2a7 Binary files /dev/null and b/blockchains/ethereum/assets/0xDaF8a0E12fc3b109A17ED5CbB943A8f3f86081f7/logo.png differ diff --git a/blockchains/ethereum/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json b/blockchains/ethereum/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json new file mode 100644 index 00000000..8c52c56a --- /dev/null +++ b/blockchains/ethereum/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json @@ -0,0 +1,47 @@ +{ + "name": "Vote-escrowed EverRise", + "type": "ERC20", + "symbol": "veRISE", + "decimals": 18, + "website": "https://www.everrise.com/", + "description": "Virtual token that allows the Vote Escrowed (ve) EverRise weighted governance tokens from EverRise Staking NFTs to display in wallet balances.", + "explorer": "https://etherscan.io/token/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", + "status": "active", + "id": "0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", + "links": [ + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png b/blockchains/ethereum/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png new file mode 100644 index 00000000..47ffbe08 Binary files /dev/null and b/blockchains/ethereum/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png differ diff --git a/blockchains/ethereum/assets/0xDbC54C60A4dDe6f95de3c78af59f9Ff77E26AFD2/info.json b/blockchains/ethereum/assets/0xDbC54C60A4dDe6f95de3c78af59f9Ff77E26AFD2/info.json new file mode 100644 index 00000000..0215c678 --- /dev/null +++ b/blockchains/ethereum/assets/0xDbC54C60A4dDe6f95de3c78af59f9Ff77E26AFD2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long WBTC-DAI 4x v2", + "symbol": "dLWBTC4x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDbC54C60A4dDe6f95de3c78af59f9Ff77E26AFD2", + "status": "abandoned", + "id": "0xDbC54C60A4dDe6f95de3c78af59f9Ff77E26AFD2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDbC54C60A4dDe6f95de3c78af59f9Ff77E26AFD2/logo.png b/blockchains/ethereum/assets/0xDbC54C60A4dDe6f95de3c78af59f9Ff77E26AFD2/logo.png new file mode 100644 index 00000000..1f2bd4d0 Binary files /dev/null and b/blockchains/ethereum/assets/0xDbC54C60A4dDe6f95de3c78af59f9Ff77E26AFD2/logo.png differ diff --git a/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/info.json b/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/info.json new file mode 100644 index 00000000..59c4e1ce --- /dev/null +++ b/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/info.json @@ -0,0 +1,48 @@ +{ + "name": "Stronger", + "type": "ERC20", + "symbol": "STRNGR", + "decimals": 18, + "website": "https://strongblock.com", + "description": "Stronger is a cryptocurrency and operates on the Ethereum platform.", + "explorer": "https://etherscan.io/token/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38", + "status": "active", + "id": "0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38", + "links": [ + { + "name": "x", + "url": "https://x.com/Strongblock_io" + }, + { + "name": "github", + "url": "https://github.com/StrongBlock/StrongChain" + }, + { + "name": "telegram", + "url": "https://t.me/strongblock_io" + }, + { + "name": "discord", + "url": "https://discord.com/channels/787870755340943360/787870755340943363" + }, + { + "name": "medium", + "url": "https://strongblockio.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCdK_PT2R-URzv1I20rzPKLQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stronger/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/stronger" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/logo.png b/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/logo.png new file mode 100644 index 00000000..0b1c45b8 Binary files /dev/null and b/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/logo.png differ diff --git a/blockchains/ethereum/assets/0xDc279799643b6F52A7aDb03497f3cC941ff8f113/info.json b/blockchains/ethereum/assets/0xDc279799643b6F52A7aDb03497f3cC941ff8f113/info.json new file mode 100644 index 00000000..5e224fab --- /dev/null +++ b/blockchains/ethereum/assets/0xDc279799643b6F52A7aDb03497f3cC941ff8f113/info.json @@ -0,0 +1,11 @@ +{ + "name": "TradeBit Token", + "symbol": "TBT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDc279799643b6F52A7aDb03497f3cC941ff8f113", + "status": "abandoned", + "id": "0xDc279799643b6F52A7aDb03497f3cC941ff8f113" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDc279799643b6F52A7aDb03497f3cC941ff8f113/logo.png b/blockchains/ethereum/assets/0xDc279799643b6F52A7aDb03497f3cC941ff8f113/logo.png new file mode 100644 index 00000000..93233937 Binary files /dev/null and b/blockchains/ethereum/assets/0xDc279799643b6F52A7aDb03497f3cC941ff8f113/logo.png differ diff --git a/blockchains/ethereum/assets/0xDc5864eDe28BD4405aa04d93E05A0531797D9D59/info.json b/blockchains/ethereum/assets/0xDc5864eDe28BD4405aa04d93E05A0531797D9D59/info.json new file mode 100644 index 00000000..cd90c475 --- /dev/null +++ b/blockchains/ethereum/assets/0xDc5864eDe28BD4405aa04d93E05A0531797D9D59/info.json @@ -0,0 +1,11 @@ +{ + "name": "Falcon", + "symbol": "FNT", + "type": "ERC20", + "decimals": 6, + "description": "Falcon Project it's a DeFi ecosystem which includes two completely interchangeable blockchains - ERC-20 token on the Ethereum and private Falcon blockchain. Falcon Project offers its users the right to choose what suits them best at the moment: speed and convenience or anonymity and privacy.", + "website": "http://falconofficial.com/", + "explorer": "https://etherscan.io/token/0xDc5864eDe28BD4405aa04d93E05A0531797D9D59", + "status": "active", + "id": "0xDc5864eDe28BD4405aa04d93E05A0531797D9D59" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDc5864eDe28BD4405aa04d93E05A0531797D9D59/logo.png b/blockchains/ethereum/assets/0xDc5864eDe28BD4405aa04d93E05A0531797D9D59/logo.png new file mode 100644 index 00000000..45ee0ebe Binary files /dev/null and b/blockchains/ethereum/assets/0xDc5864eDe28BD4405aa04d93E05A0531797D9D59/logo.png differ diff --git a/blockchains/ethereum/assets/0xDc71cf8Ad00Bc7e98FE1Ef40597EA897951F1B88/info.json b/blockchains/ethereum/assets/0xDc71cf8Ad00Bc7e98FE1Ef40597EA897951F1B88/info.json new file mode 100644 index 00000000..538584f6 --- /dev/null +++ b/blockchains/ethereum/assets/0xDc71cf8Ad00Bc7e98FE1Ef40597EA897951F1B88/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-3/30M63", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDc71cf8Ad00Bc7e98FE1Ef40597EA897951F1B88", + "status": "abandoned", + "id": "0xDc71cf8Ad00Bc7e98FE1Ef40597EA897951F1B88" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDc71cf8Ad00Bc7e98FE1Ef40597EA897951F1B88/logo.png b/blockchains/ethereum/assets/0xDc71cf8Ad00Bc7e98FE1Ef40597EA897951F1B88/logo.png new file mode 100644 index 00000000..cb95e583 Binary files /dev/null and b/blockchains/ethereum/assets/0xDc71cf8Ad00Bc7e98FE1Ef40597EA897951F1B88/logo.png differ diff --git a/blockchains/ethereum/assets/0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3/info.json b/blockchains/ethereum/assets/0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3/info.json new file mode 100644 index 00000000..675ed40b --- /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 00000000..ed67a2c5 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 new file mode 100644 index 00000000..01ad1488 --- /dev/null +++ b/blockchains/ethereum/assets/0xDcB01cc464238396E213a6fDd933E36796eAfF9f/info.json @@ -0,0 +1,29 @@ +{ + "name": "Yield", + "website": "https://yield.credit/", + "description": "A p2p defi lending app where lenders earn fixed, guaranteed interest and borrowers earn YLD for every repaid loan", + "explorer": "https://etherscan.io/token/0xdcb01cc464238396e213a6fdd933e36796eaff9f", + "type": "ERC20", + "symbol": "YLD", + "decimals": 18, + "status": "active", + "id": "0xDcB01cc464238396E213a6fDd933E36796eAfF9f", + "links": [ + { + "name": "x", + "url": "https://x.com/YieldCredit" + }, + { + "name": "telegram", + "url": "https://t.me/yieldchat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/CGBGRrKJyX" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/YieldCredit" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDcB01cc464238396E213a6fDd933E36796eAfF9f/logo.png b/blockchains/ethereum/assets/0xDcB01cc464238396E213a6fDd933E36796eAfF9f/logo.png new file mode 100644 index 00000000..332099c3 Binary files /dev/null and b/blockchains/ethereum/assets/0xDcB01cc464238396E213a6fDd933E36796eAfF9f/logo.png differ diff --git a/blockchains/ethereum/assets/0xDcd77408e9b16252025637020228f3965938dda5/info.json b/blockchains/ethereum/assets/0xDcd77408e9b16252025637020228f3965938dda5/info.json new file mode 100644 index 00000000..f1f8c093 --- /dev/null +++ b/blockchains/ethereum/assets/0xDcd77408e9b16252025637020228f3965938dda5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Velox", + "symbol": "VLX", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDcd77408e9b16252025637020228f3965938dda5", + "status": "abandoned", + "id": "0xDcd77408e9b16252025637020228f3965938dda5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDcd77408e9b16252025637020228f3965938dda5/logo.png b/blockchains/ethereum/assets/0xDcd77408e9b16252025637020228f3965938dda5/logo.png new file mode 100644 index 00000000..9ed85fcb Binary files /dev/null and b/blockchains/ethereum/assets/0xDcd77408e9b16252025637020228f3965938dda5/logo.png differ diff --git a/blockchains/ethereum/assets/0xDcfE18bc46f5A0Cd0d3Af0c2155d2bCB5AdE2fc5/info.json b/blockchains/ethereum/assets/0xDcfE18bc46f5A0Cd0d3Af0c2155d2bCB5AdE2fc5/info.json new file mode 100644 index 00000000..6c060673 --- /dev/null +++ b/blockchains/ethereum/assets/0xDcfE18bc46f5A0Cd0d3Af0c2155d2bCB5AdE2fc5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hue", + "symbol": "HUE", + "type": "ERC20", + "decimals": 4, + "description": "HUE lives at the intersection of tech and creative expression. Created in August 2019, HUE is one of oldest social tokens and is responsible for helping launch the social token category. HUE is also the first social token used to trade digital collectibles (NFTs).", + "website": "https://app.tryroll.com/rewards/HUE", + "explorer": "https://etherscan.io/token/0xDcfE18bc46f5A0Cd0d3Af0c2155d2bCB5AdE2fc5", + "status": "active", + "id": "0xDcfE18bc46f5A0Cd0d3Af0c2155d2bCB5AdE2fc5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDcfE18bc46f5A0Cd0d3Af0c2155d2bCB5AdE2fc5/logo.png b/blockchains/ethereum/assets/0xDcfE18bc46f5A0Cd0d3Af0c2155d2bCB5AdE2fc5/logo.png new file mode 100644 index 00000000..2b66cc58 Binary files /dev/null and b/blockchains/ethereum/assets/0xDcfE18bc46f5A0Cd0d3Af0c2155d2bCB5AdE2fc5/logo.png differ diff --git a/blockchains/ethereum/assets/0xDd16FdD533A66C315Dd53f919a51E54dbaa5B29f/info.json b/blockchains/ethereum/assets/0xDd16FdD533A66C315Dd53f919a51E54dbaa5B29f/info.json new file mode 100644 index 00000000..4ca2689d --- /dev/null +++ b/blockchains/ethereum/assets/0xDd16FdD533A66C315Dd53f919a51E54dbaa5B29f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Henfruit", + "symbol": "EGG", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDd16FdD533A66C315Dd53f919a51E54dbaa5B29f", + "status": "abandoned", + "id": "0xDd16FdD533A66C315Dd53f919a51E54dbaa5B29f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDd16FdD533A66C315Dd53f919a51E54dbaa5B29f/logo.png b/blockchains/ethereum/assets/0xDd16FdD533A66C315Dd53f919a51E54dbaa5B29f/logo.png new file mode 100644 index 00000000..41d919be Binary files /dev/null and b/blockchains/ethereum/assets/0xDd16FdD533A66C315Dd53f919a51E54dbaa5B29f/logo.png differ diff --git a/blockchains/ethereum/assets/0xDd1CB27BCF5b6129ED0B8b507CCD9633fa0081fe/info.json b/blockchains/ethereum/assets/0xDd1CB27BCF5b6129ED0B8b507CCD9633fa0081fe/info.json new file mode 100644 index 00000000..74b72490 --- /dev/null +++ b/blockchains/ethereum/assets/0xDd1CB27BCF5b6129ED0B8b507CCD9633fa0081fe/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sultan Chain", + "symbol": "STN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDd1CB27BCF5b6129ED0B8b507CCD9633fa0081fe", + "status": "abandoned", + "id": "0xDd1CB27BCF5b6129ED0B8b507CCD9633fa0081fe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDd1CB27BCF5b6129ED0B8b507CCD9633fa0081fe/logo.png b/blockchains/ethereum/assets/0xDd1CB27BCF5b6129ED0B8b507CCD9633fa0081fe/logo.png new file mode 100644 index 00000000..17284aa0 Binary files /dev/null and b/blockchains/ethereum/assets/0xDd1CB27BCF5b6129ED0B8b507CCD9633fa0081fe/logo.png differ diff --git a/blockchains/ethereum/assets/0xDd60F9dd5B891b728955149BD59F42c6513C8dc6/info.json b/blockchains/ethereum/assets/0xDd60F9dd5B891b728955149BD59F42c6513C8dc6/info.json new file mode 100644 index 00000000..5317c331 --- /dev/null +++ b/blockchains/ethereum/assets/0xDd60F9dd5B891b728955149BD59F42c6513C8dc6/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Emperial Currency", + "symbol": "B0T", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDd60F9dd5B891b728955149BD59F42c6513C8dc6", + "status": "abandoned", + "id": "0xDd60F9dd5B891b728955149BD59F42c6513C8dc6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDd60F9dd5B891b728955149BD59F42c6513C8dc6/logo.png b/blockchains/ethereum/assets/0xDd60F9dd5B891b728955149BD59F42c6513C8dc6/logo.png new file mode 100644 index 00000000..15c2348c Binary files /dev/null and b/blockchains/ethereum/assets/0xDd60F9dd5B891b728955149BD59F42c6513C8dc6/logo.png differ diff --git a/blockchains/ethereum/assets/0xDd6C68bb32462e01705011a4e2Ad1a60740f217F/info.json b/blockchains/ethereum/assets/0xDd6C68bb32462e01705011a4e2Ad1a60740f217F/info.json new file mode 100644 index 00000000..6c90f68d --- /dev/null +++ b/blockchains/ethereum/assets/0xDd6C68bb32462e01705011a4e2Ad1a60740f217F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hubiits", + "symbol": "HBT", + "type": "ERC20", + "decimals": 15, + "description": "-", + "website": "https://www.hubii.network/", + "explorer": "https://etherscan.io/token/0xDd6C68bb32462e01705011a4e2Ad1a60740f217F", + "status": "abandoned", + "id": "0xDd6C68bb32462e01705011a4e2Ad1a60740f217F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDd6C68bb32462e01705011a4e2Ad1a60740f217F/logo.png b/blockchains/ethereum/assets/0xDd6C68bb32462e01705011a4e2Ad1a60740f217F/logo.png new file mode 100644 index 00000000..5434a275 Binary files /dev/null and b/blockchains/ethereum/assets/0xDd6C68bb32462e01705011a4e2Ad1a60740f217F/logo.png differ diff --git a/blockchains/ethereum/assets/0xDd72b45AE5D8879D1dCE0B83fAD1E77390e3aD23/info.json b/blockchains/ethereum/assets/0xDd72b45AE5D8879D1dCE0B83fAD1E77390e3aD23/info.json new file mode 100644 index 00000000..c0549527 --- /dev/null +++ b/blockchains/ethereum/assets/0xDd72b45AE5D8879D1dCE0B83fAD1E77390e3aD23/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nenad", + "symbol": "ND", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDd72b45AE5D8879D1dCE0B83fAD1E77390e3aD23", + "status": "abandoned", + "id": "0xDd72b45AE5D8879D1dCE0B83fAD1E77390e3aD23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDd72b45AE5D8879D1dCE0B83fAD1E77390e3aD23/logo.png b/blockchains/ethereum/assets/0xDd72b45AE5D8879D1dCE0B83fAD1E77390e3aD23/logo.png new file mode 100644 index 00000000..9c0ee8de Binary files /dev/null and b/blockchains/ethereum/assets/0xDd72b45AE5D8879D1dCE0B83fAD1E77390e3aD23/logo.png differ diff --git a/blockchains/ethereum/assets/0xDd8A49180E44806Bd56873bda359C1115F7E98b5/info.json b/blockchains/ethereum/assets/0xDd8A49180E44806Bd56873bda359C1115F7E98b5/info.json new file mode 100644 index 00000000..0c40a8fb --- /dev/null +++ b/blockchains/ethereum/assets/0xDd8A49180E44806Bd56873bda359C1115F7E98b5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rare Ones", + "symbol": "RONES", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDd8A49180E44806Bd56873bda359C1115F7E98b5", + "status": "abandoned", + "id": "0xDd8A49180E44806Bd56873bda359C1115F7E98b5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDd8A49180E44806Bd56873bda359C1115F7E98b5/logo.png b/blockchains/ethereum/assets/0xDd8A49180E44806Bd56873bda359C1115F7E98b5/logo.png new file mode 100644 index 00000000..cd7d6b01 Binary files /dev/null and b/blockchains/ethereum/assets/0xDd8A49180E44806Bd56873bda359C1115F7E98b5/logo.png differ diff --git a/blockchains/ethereum/assets/0xDdD673bF7a211c40069F8B204ED01fAfB90c275a/info.json b/blockchains/ethereum/assets/0xDdD673bF7a211c40069F8B204ED01fAfB90c275a/info.json new file mode 100644 index 00000000..3cff0899 --- /dev/null +++ b/blockchains/ethereum/assets/0xDdD673bF7a211c40069F8B204ED01fAfB90c275a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chanel", + "symbol": "CHANEL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDdD673bF7a211c40069F8B204ED01fAfB90c275a", + "status": "abandoned", + "id": "0xDdD673bF7a211c40069F8B204ED01fAfB90c275a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDdD673bF7a211c40069F8B204ED01fAfB90c275a/logo.png b/blockchains/ethereum/assets/0xDdD673bF7a211c40069F8B204ED01fAfB90c275a/logo.png new file mode 100644 index 00000000..31eaae13 Binary files /dev/null and b/blockchains/ethereum/assets/0xDdD673bF7a211c40069F8B204ED01fAfB90c275a/logo.png differ diff --git a/blockchains/ethereum/assets/0xDdE9e8B471Aa9086A2FCfCB30b8744ffc76ff8B5/info.json b/blockchains/ethereum/assets/0xDdE9e8B471Aa9086A2FCfCB30b8744ffc76ff8B5/info.json new file mode 100644 index 00000000..82be3445 --- /dev/null +++ b/blockchains/ethereum/assets/0xDdE9e8B471Aa9086A2FCfCB30b8744ffc76ff8B5/info.json @@ -0,0 +1,11 @@ +{ + "name": "AGGCE", + "symbol": "AGGCE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDdE9e8B471Aa9086A2FCfCB30b8744ffc76ff8B5", + "status": "abandoned", + "id": "0xDdE9e8B471Aa9086A2FCfCB30b8744ffc76ff8B5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDdE9e8B471Aa9086A2FCfCB30b8744ffc76ff8B5/logo.png b/blockchains/ethereum/assets/0xDdE9e8B471Aa9086A2FCfCB30b8744ffc76ff8B5/logo.png new file mode 100644 index 00000000..6593af6e Binary files /dev/null and b/blockchains/ethereum/assets/0xDdE9e8B471Aa9086A2FCfCB30b8744ffc76ff8B5/logo.png differ diff --git a/blockchains/ethereum/assets/0xDdbcDD8637d5CEDd15EeEe398108FCa05A71b32b/info.json b/blockchains/ethereum/assets/0xDdbcDD8637d5CEDd15EeEe398108FCa05A71b32b/info.json new file mode 100644 index 00000000..3a64d867 --- /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 00000000..6e5162cd Binary files /dev/null and b/blockchains/ethereum/assets/0xDdbcDD8637d5CEDd15EeEe398108FCa05A71b32b/logo.png differ diff --git a/blockchains/ethereum/assets/0xDdce0e2B03724ca8edf733E09B3d5A7ccC913C48/info.json b/blockchains/ethereum/assets/0xDdce0e2B03724ca8edf733E09B3d5A7ccC913C48/info.json new file mode 100644 index 00000000..95b482b2 --- /dev/null +++ b/blockchains/ethereum/assets/0xDdce0e2B03724ca8edf733E09B3d5A7ccC913C48/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin X", + "symbol": "BTX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDdce0e2B03724ca8edf733E09B3d5A7ccC913C48", + "status": "abandoned", + "id": "0xDdce0e2B03724ca8edf733E09B3d5A7ccC913C48" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDdce0e2B03724ca8edf733E09B3d5A7ccC913C48/logo.png b/blockchains/ethereum/assets/0xDdce0e2B03724ca8edf733E09B3d5A7ccC913C48/logo.png new file mode 100755 index 00000000..3ad50931 Binary files /dev/null and b/blockchains/ethereum/assets/0xDdce0e2B03724ca8edf733E09B3d5A7ccC913C48/logo.png differ diff --git a/blockchains/ethereum/assets/0xDe201dAec04ba73166d9917Fdf08e1728E270F06/info.json b/blockchains/ethereum/assets/0xDe201dAec04ba73166d9917Fdf08e1728E270F06/info.json new file mode 100644 index 00000000..7cb5e9ec --- /dev/null +++ b/blockchains/ethereum/assets/0xDe201dAec04ba73166d9917Fdf08e1728E270F06/info.json @@ -0,0 +1,11 @@ +{ + "name": "MOJI Experience Points", + "symbol": "MEXP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDe201dAec04ba73166d9917Fdf08e1728E270F06", + "status": "abandoned", + "id": "0xDe201dAec04ba73166d9917Fdf08e1728E270F06" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDe201dAec04ba73166d9917Fdf08e1728E270F06/logo.png b/blockchains/ethereum/assets/0xDe201dAec04ba73166d9917Fdf08e1728E270F06/logo.png new file mode 100644 index 00000000..c77afc36 Binary files /dev/null and b/blockchains/ethereum/assets/0xDe201dAec04ba73166d9917Fdf08e1728E270F06/logo.png differ diff --git a/blockchains/ethereum/assets/0xDe30da39c46104798bB5aA3fe8B9e0e1F348163F/info.json b/blockchains/ethereum/assets/0xDe30da39c46104798bB5aA3fe8B9e0e1F348163F/info.json new file mode 100644 index 00000000..67b0160f --- /dev/null +++ b/blockchains/ethereum/assets/0xDe30da39c46104798bB5aA3fe8B9e0e1F348163F/info.json @@ -0,0 +1,37 @@ +{ + "name": "Gitcoin", + "website": "https://gitcoin.co/quadraticlands/", + "description": "GTC is the governance token we’re using to decentralize Gitcoin into a DAO (GitcoinDAO) ecosystem, collectively working to fund the next generation of public goods.", + "explorer": "https://etherscan.io/token/0xde30da39c46104798bb5aa3fe8b9e0e1f348163f", + "type": "ERC20", + "symbol": "GTC", + "decimals": 18, + "status": "active", + "id": "0xDe30da39c46104798bB5aA3fe8B9e0e1F348163F", + "links": [ + { + "name": "github", + "url": "https://github.com/gitcoinco" + }, + { + "name": "x", + "url": "https://x.com/gitcoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/gitcoincommunity/" + }, + { + "name": "facebook", + "url": "https://facebook.com/GetGitcoin/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDe30da39c46104798bB5aA3fe8B9e0e1F348163F/logo.png b/blockchains/ethereum/assets/0xDe30da39c46104798bB5aA3fe8B9e0e1F348163F/logo.png new file mode 100644 index 00000000..361301f2 Binary files /dev/null and b/blockchains/ethereum/assets/0xDe30da39c46104798bB5aA3fe8B9e0e1F348163F/logo.png differ diff --git a/blockchains/ethereum/assets/0xDe48CE5d990293D22dc7Da091e8aa8728f3203A2/info.json b/blockchains/ethereum/assets/0xDe48CE5d990293D22dc7Da091e8aa8728f3203A2/info.json new file mode 100644 index 00000000..28b0f9ab --- /dev/null +++ b/blockchains/ethereum/assets/0xDe48CE5d990293D22dc7Da091e8aa8728f3203A2/info.json @@ -0,0 +1,11 @@ +{ + "name": "MothThankYou", + "symbol": "MOTH", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDe48CE5d990293D22dc7Da091e8aa8728f3203A2", + "status": "abandoned", + "id": "0xDe48CE5d990293D22dc7Da091e8aa8728f3203A2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDe48CE5d990293D22dc7Da091e8aa8728f3203A2/logo.png b/blockchains/ethereum/assets/0xDe48CE5d990293D22dc7Da091e8aa8728f3203A2/logo.png new file mode 100755 index 00000000..b6ec76d4 Binary files /dev/null and b/blockchains/ethereum/assets/0xDe48CE5d990293D22dc7Da091e8aa8728f3203A2/logo.png differ diff --git a/blockchains/ethereum/assets/0xDe4C5a791913838027a2185709E98c5C6027EA63/info.json b/blockchains/ethereum/assets/0xDe4C5a791913838027a2185709E98c5C6027EA63/info.json new file mode 100644 index 00000000..11fed2b4 --- /dev/null +++ b/blockchains/ethereum/assets/0xDe4C5a791913838027a2185709E98c5C6027EA63/info.json @@ -0,0 +1,11 @@ +{ + "name": "XACToken", + "symbol": "XAC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://amark.io/", + "explorer": "https://etherscan.io/token/0xDe4C5a791913838027a2185709E98c5C6027EA63", + "status": "abandoned", + "id": "0xDe4C5a791913838027a2185709E98c5C6027EA63" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDe4C5a791913838027a2185709E98c5C6027EA63/logo.png b/blockchains/ethereum/assets/0xDe4C5a791913838027a2185709E98c5C6027EA63/logo.png new file mode 100644 index 00000000..73e73abd Binary files /dev/null and b/blockchains/ethereum/assets/0xDe4C5a791913838027a2185709E98c5C6027EA63/logo.png differ diff --git a/blockchains/ethereum/assets/0xDe60aDfDdAAbaAAC3dAFa57B26AcC91Cb63728c4/info.json b/blockchains/ethereum/assets/0xDe60aDfDdAAbaAAC3dAFa57B26AcC91Cb63728c4/info.json new file mode 100644 index 00000000..e1f398c1 --- /dev/null +++ b/blockchains/ethereum/assets/0xDe60aDfDdAAbaAAC3dAFa57B26AcC91Cb63728c4/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from BSC)", + "type": "ERC20", + "symbol": "USDTbs", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://etherscan.io/token/0xDe60aDfDdAAbaAAC3dAFa57B26AcC91Cb63728c4", + "status": "active", + "id": "0xDe60aDfDdAAbaAAC3dAFa57B26AcC91Cb63728c4", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDe60aDfDdAAbaAAC3dAFa57B26AcC91Cb63728c4/logo.png b/blockchains/ethereum/assets/0xDe60aDfDdAAbaAAC3dAFa57B26AcC91Cb63728c4/logo.png new file mode 100644 index 00000000..49821981 Binary files /dev/null and b/blockchains/ethereum/assets/0xDe60aDfDdAAbaAAC3dAFa57B26AcC91Cb63728c4/logo.png differ diff --git a/blockchains/ethereum/assets/0xDe6cE6c57F655b4627870bdA02eA46A2a15EED2E/info.json b/blockchains/ethereum/assets/0xDe6cE6c57F655b4627870bdA02eA46A2a15EED2E/info.json new file mode 100644 index 00000000..299c5829 --- /dev/null +++ b/blockchains/ethereum/assets/0xDe6cE6c57F655b4627870bdA02eA46A2a15EED2E/info.json @@ -0,0 +1,11 @@ +{ + "name": "EPay", + "symbol": "EPAY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://epaycoin.cash/", + "explorer": "https://etherscan.io/token/0xDe6cE6c57F655b4627870bdA02eA46A2a15EED2E", + "status": "abandoned", + "id": "0xDe6cE6c57F655b4627870bdA02eA46A2a15EED2E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDe6cE6c57F655b4627870bdA02eA46A2a15EED2E/logo.png b/blockchains/ethereum/assets/0xDe6cE6c57F655b4627870bdA02eA46A2a15EED2E/logo.png new file mode 100644 index 00000000..fb1408e2 Binary files /dev/null and b/blockchains/ethereum/assets/0xDe6cE6c57F655b4627870bdA02eA46A2a15EED2E/logo.png differ diff --git a/blockchains/ethereum/assets/0xDe7D85157d9714EADf595045CC12Ca4A5f3E2aDb/info.json b/blockchains/ethereum/assets/0xDe7D85157d9714EADf595045CC12Ca4A5f3E2aDb/info.json new file mode 100644 index 00000000..d882b2b4 --- /dev/null +++ b/blockchains/ethereum/assets/0xDe7D85157d9714EADf595045CC12Ca4A5f3E2aDb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Standard Tokenization Protocol", + "website": "https://stp.network", + "description": "Standard Tokenization Protocol describes itself as an open-source standard defining how tokenized assets are issued and transferred while complying with the necessary regulations.", + "explorer": "https://etherscan.io/token/0xDe7D85157d9714EADf595045CC12Ca4A5f3E2aDb", + "type": "ERC20", + "symbol": "STPT", + "decimals": 18, + "status": "active", + "id": "0xDe7D85157d9714EADf595045CC12Ca4A5f3E2aDb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDe7D85157d9714EADf595045CC12Ca4A5f3E2aDb/logo.png b/blockchains/ethereum/assets/0xDe7D85157d9714EADf595045CC12Ca4A5f3E2aDb/logo.png new file mode 100644 index 00000000..7b07a407 Binary files /dev/null and b/blockchains/ethereum/assets/0xDe7D85157d9714EADf595045CC12Ca4A5f3E2aDb/logo.png differ diff --git a/blockchains/ethereum/assets/0xDf49C9f599A0A9049D97CFF34D0C30E468987389/info.json b/blockchains/ethereum/assets/0xDf49C9f599A0A9049D97CFF34D0C30E468987389/info.json new file mode 100644 index 00000000..34b9455c --- /dev/null +++ b/blockchains/ethereum/assets/0xDf49C9f599A0A9049D97CFF34D0C30E468987389/info.json @@ -0,0 +1,21 @@ +{ + "name": "Smart Advertising Transaction Token", + "website": "https://satt-token.com/", + "description": "Satt is a token used in an Ethereum Dapp to rule fairly advertising payment between advertisers and content creators via social media oracles", + "explorer": "https://etherscan.io/token/0xDf49C9f599A0A9049D97CFF34D0C30E468987389", + "type": "ERC20", + "symbol": "SATT", + "decimals": 18, + "status": "active", + "id": "0xDf49C9f599A0A9049D97CFF34D0C30E468987389", + "links": [ + { + "name": "github", + "url": "https://github.com/Atayen/satt" + }, + { + "name": "whitepaper", + "url": "https://satt-token.com/files/IcoSattEn.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDf49C9f599A0A9049D97CFF34D0C30E468987389/logo.png b/blockchains/ethereum/assets/0xDf49C9f599A0A9049D97CFF34D0C30E468987389/logo.png new file mode 100644 index 00000000..5ecde70d Binary files /dev/null and b/blockchains/ethereum/assets/0xDf49C9f599A0A9049D97CFF34D0C30E468987389/logo.png differ diff --git a/blockchains/ethereum/assets/0xDf59C8BA19B4d1437d80836b45F1319D9A429EED/info.json b/blockchains/ethereum/assets/0xDf59C8BA19B4d1437d80836b45F1319D9A429EED/info.json new file mode 100644 index 00000000..5c596a91 --- /dev/null +++ b/blockchains/ethereum/assets/0xDf59C8BA19B4d1437d80836b45F1319D9A429EED/info.json @@ -0,0 +1,11 @@ +{ + "name": "IZIChain", + "symbol": "IZI", + "type": "ERC20", + "decimals": 4, + "description": "IZIChain aims to provide bespoke blockchain solutions for financial markets. IZIChain reportedly allows users to interact with smart contracts and operate financial dApps (e.g. asset digitization, digital asset trading, loan offers).", + "website": "https://izichain.io/", + "explorer": "https://etherscan.io/token/0xDf59C8BA19B4d1437d80836b45F1319D9A429EED", + "status": "active", + "id": "0xDf59C8BA19B4d1437d80836b45F1319D9A429EED" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDf59C8BA19B4d1437d80836b45F1319D9A429EED/logo.png b/blockchains/ethereum/assets/0xDf59C8BA19B4d1437d80836b45F1319D9A429EED/logo.png new file mode 100644 index 00000000..f19c0b79 Binary files /dev/null and b/blockchains/ethereum/assets/0xDf59C8BA19B4d1437d80836b45F1319D9A429EED/logo.png differ diff --git a/blockchains/ethereum/assets/0xDf6Ef343350780BF8C3410BF062e0C015B1DD671/info.json b/blockchains/ethereum/assets/0xDf6Ef343350780BF8C3410BF062e0C015B1DD671/info.json new file mode 100644 index 00000000..899323c9 --- /dev/null +++ b/blockchains/ethereum/assets/0xDf6Ef343350780BF8C3410BF062e0C015B1DD671/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blackmoon Crypto Token", + "symbol": "BMC", + "type": "ERC20", + "decimals": 8, + "description": "Blackmoon Crypto is a platform for the creation and management of tokenized investment funds. The platform aims to bridge the gap between the crypto investment world and the real world economy, allowing the creation of tokens to be associated with investments and projects which up until now have not been available in the crypto world.", + "website": "https://www.blackmooncrypto.com/", + "explorer": "https://etherscan.io/token/0xDf6Ef343350780BF8C3410BF062e0C015B1DD671", + "status": "active", + "id": "0xDf6Ef343350780BF8C3410BF062e0C015B1DD671" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDf6Ef343350780BF8C3410BF062e0C015B1DD671/logo.png b/blockchains/ethereum/assets/0xDf6Ef343350780BF8C3410BF062e0C015B1DD671/logo.png new file mode 100644 index 00000000..957d039c Binary files /dev/null and b/blockchains/ethereum/assets/0xDf6Ef343350780BF8C3410BF062e0C015B1DD671/logo.png differ diff --git a/blockchains/ethereum/assets/0xDf7FF54aAcAcbFf42dfe29DD6144A69b629f8C9e/info.json b/blockchains/ethereum/assets/0xDf7FF54aAcAcbFf42dfe29DD6144A69b629f8C9e/info.json new file mode 100644 index 00000000..38e001bc --- /dev/null +++ b/blockchains/ethereum/assets/0xDf7FF54aAcAcbFf42dfe29DD6144A69b629f8C9e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave ZRX", + "symbol": "aZRX", + "type": "ERC20", + "decimals": 18, + "description": "Aave ZRX is an interest bearing token pegged 1:1 to the underlying ZRX deposited in Aave. aZRX accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xDf7FF54aAcAcbFf42dfe29DD6144A69b629f8C9e", + "status": "active", + "id": "0xDf7FF54aAcAcbFf42dfe29DD6144A69b629f8C9e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDf7FF54aAcAcbFf42dfe29DD6144A69b629f8C9e/logo.png b/blockchains/ethereum/assets/0xDf7FF54aAcAcbFf42dfe29DD6144A69b629f8C9e/logo.png new file mode 100644 index 00000000..504d574c Binary files /dev/null and b/blockchains/ethereum/assets/0xDf7FF54aAcAcbFf42dfe29DD6144A69b629f8C9e/logo.png differ diff --git a/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/info.json b/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/info.json new file mode 100644 index 00000000..055eb980 --- /dev/null +++ b/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/info.json @@ -0,0 +1,28 @@ +{ + "name": "Somnium Space Cubes", + "type": "ERC20", + "symbol": "CUBE", + "decimals": 8, + "website": "https://www.somniumspace.com/", + "description": "We are an open, social & persistent VR world built on blockchain. Buy land, build or import objects and instantly monetize. Universe shaped entirely by players!", + "explorer": "https://etherscan.io/token/0xdf801468a808a32656d2ed2d2d80b72a129739f4", + "status": "active", + "id": "0xDf801468a808a32656D2eD2D2d80B72A129739f4", + "links": [ + { + "name": "x", + "url": "https://x.com/somniumspace" + }, + { + "name": "telegram", + "url": "https://t.me/somniumspace" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/somnium-space-cubes/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/logo.png b/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/logo.png new file mode 100644 index 00000000..640bfae5 Binary files /dev/null and b/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/logo.png differ diff --git a/blockchains/ethereum/assets/0xDfF991Af459d05175B3bb766b950aFC697B68dF0/info.json b/blockchains/ethereum/assets/0xDfF991Af459d05175B3bb766b950aFC697B68dF0/info.json new file mode 100644 index 00000000..9678ef7e --- /dev/null +++ b/blockchains/ethereum/assets/0xDfF991Af459d05175B3bb766b950aFC697B68dF0/info.json @@ -0,0 +1,11 @@ +{ + "name": "HotLove", + "symbol": "HL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDfF991Af459d05175B3bb766b950aFC697B68dF0", + "status": "abandoned", + "id": "0xDfF991Af459d05175B3bb766b950aFC697B68dF0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDfF991Af459d05175B3bb766b950aFC697B68dF0/logo.png b/blockchains/ethereum/assets/0xDfF991Af459d05175B3bb766b950aFC697B68dF0/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0xDfF991Af459d05175B3bb766b950aFC697B68dF0/logo.png differ diff --git a/blockchains/ethereum/assets/0xDfa66Ec49CF0102fB8906eE3dD6a70597D9720d4/info.json b/blockchains/ethereum/assets/0xDfa66Ec49CF0102fB8906eE3dD6a70597D9720d4/info.json new file mode 100644 index 00000000..e95316b0 --- /dev/null +++ b/blockchains/ethereum/assets/0xDfa66Ec49CF0102fB8906eE3dD6a70597D9720d4/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEKSEN", + "symbol": "DEKS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDfa66Ec49CF0102fB8906eE3dD6a70597D9720d4", + "status": "abandoned", + "id": "0xDfa66Ec49CF0102fB8906eE3dD6a70597D9720d4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDfa66Ec49CF0102fB8906eE3dD6a70597D9720d4/logo.png b/blockchains/ethereum/assets/0xDfa66Ec49CF0102fB8906eE3dD6a70597D9720d4/logo.png new file mode 100644 index 00000000..d6a77ea1 Binary files /dev/null and b/blockchains/ethereum/assets/0xDfa66Ec49CF0102fB8906eE3dD6a70597D9720d4/logo.png differ diff --git a/blockchains/ethereum/assets/0xDffD82C8c82f2721aa801097801Da54eE97cf607/info.json b/blockchains/ethereum/assets/0xDffD82C8c82f2721aa801097801Da54eE97cf607/info.json new file mode 100644 index 00000000..d8726297 --- /dev/null +++ b/blockchains/ethereum/assets/0xDffD82C8c82f2721aa801097801Da54eE97cf607/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planetagro-Exchange", + "symbol": "FEEDER CATTLE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xDffD82C8c82f2721aa801097801Da54eE97cf607", + "status": "abandoned", + "id": "0xDffD82C8c82f2721aa801097801Da54eE97cf607" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDffD82C8c82f2721aa801097801Da54eE97cf607/logo.png b/blockchains/ethereum/assets/0xDffD82C8c82f2721aa801097801Da54eE97cf607/logo.png new file mode 100755 index 00000000..f40a48e4 Binary files /dev/null and b/blockchains/ethereum/assets/0xDffD82C8c82f2721aa801097801Da54eE97cf607/logo.png differ diff --git a/blockchains/ethereum/assets/0xE014d2A4da6E450f21b5050120D291e63c8940FD/info.json b/blockchains/ethereum/assets/0xE014d2A4da6E450f21b5050120D291e63c8940FD/info.json new file mode 100644 index 00000000..9a8e9b9c --- /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 00000000..49babb2f Binary files /dev/null and b/blockchains/ethereum/assets/0xE014d2A4da6E450f21b5050120D291e63c8940FD/logo.png differ diff --git a/blockchains/ethereum/assets/0xE02784175C3BE0DEa7CC0F284041b64503639E66/info.json b/blockchains/ethereum/assets/0xE02784175C3BE0DEa7CC0F284041b64503639E66/info.json new file mode 100644 index 00000000..2160c2be --- /dev/null +++ b/blockchains/ethereum/assets/0xE02784175C3BE0DEa7CC0F284041b64503639E66/info.json @@ -0,0 +1,11 @@ +{ + "name": "TouchCon", + "symbol": "TOC", + "type": "ERC20", + "decimals": 18, + "description": "TouchCon describes itself as an advertising reward platform that scans Smart QR Codes (SQC) for advertisements and connects users with advertisers.", + "website": "http://www.touchcon.org", + "explorer": "https://etherscan.io/token/0xE02784175C3BE0DEa7CC0F284041b64503639E66", + "status": "active", + "id": "0xE02784175C3BE0DEa7CC0F284041b64503639E66" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE02784175C3BE0DEa7CC0F284041b64503639E66/logo.png b/blockchains/ethereum/assets/0xE02784175C3BE0DEa7CC0F284041b64503639E66/logo.png new file mode 100644 index 00000000..eb6712d0 Binary files /dev/null and b/blockchains/ethereum/assets/0xE02784175C3BE0DEa7CC0F284041b64503639E66/logo.png differ diff --git a/blockchains/ethereum/assets/0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A/info.json b/blockchains/ethereum/assets/0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A/info.json new file mode 100644 index 00000000..dd42fe89 --- /dev/null +++ b/blockchains/ethereum/assets/0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A/info.json @@ -0,0 +1,14 @@ +{ + "name": "DigixDAO", + "website": "https://digix.global/dgd", + "description": "DigixDAO (DGD) is building a decentralized autonomous organization (DAO) that specializes in the tokenization of physical assets.", + "explorer": "https://etherscan.io/token/0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A", + "type": "ERC20", + "symbol": "DGD", + "decimals": 9, + "status": "active", + "id": "0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A/logo.png b/blockchains/ethereum/assets/0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A/logo.png new file mode 100755 index 00000000..9f2ecb97 Binary files /dev/null and b/blockchains/ethereum/assets/0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A/logo.png differ diff --git a/blockchains/ethereum/assets/0xE0C72452740414d861606a44cCd5eA7f96488278/info.json b/blockchains/ethereum/assets/0xE0C72452740414d861606a44cCd5eA7f96488278/info.json new file mode 100644 index 00000000..4a219e11 --- /dev/null +++ b/blockchains/ethereum/assets/0xE0C72452740414d861606a44cCd5eA7f96488278/info.json @@ -0,0 +1,11 @@ +{ + "name": "EncryptoTel Token", + "symbol": "ETT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://encryptotel.com/", + "explorer": "https://etherscan.io/token/0xE0C72452740414d861606a44cCd5eA7f96488278", + "status": "abandoned", + "id": "0xE0C72452740414d861606a44cCd5eA7f96488278" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE0C72452740414d861606a44cCd5eA7f96488278/logo.png b/blockchains/ethereum/assets/0xE0C72452740414d861606a44cCd5eA7f96488278/logo.png new file mode 100644 index 00000000..45195c90 Binary files /dev/null and b/blockchains/ethereum/assets/0xE0C72452740414d861606a44cCd5eA7f96488278/logo.png differ diff --git a/blockchains/ethereum/assets/0xE0bA1564A889f0d2Ba8eF4978027C1b072b56EbB/info.json b/blockchains/ethereum/assets/0xE0bA1564A889f0d2Ba8eF4978027C1b072b56EbB/info.json new file mode 100644 index 00000000..3dd45983 --- /dev/null +++ b/blockchains/ethereum/assets/0xE0bA1564A889f0d2Ba8eF4978027C1b072b56EbB/info.json @@ -0,0 +1,11 @@ +{ + "name": "VIDTC Luxury goods", + "website": "https://about.v-id.org", + "description": "NFTs for watches, fashion & jewelry", + "explorer": "https://etherscan.io/token/0xE0bA1564A889f0d2Ba8eF4978027C1b072b56EbB", + "type": "ERC20", + "symbol": "VIDTC", + "decimals": 0, + "status": "active", + "id": "0xE0bA1564A889f0d2Ba8eF4978027C1b072b56EbB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE0bA1564A889f0d2Ba8eF4978027C1b072b56EbB/logo.png b/blockchains/ethereum/assets/0xE0bA1564A889f0d2Ba8eF4978027C1b072b56EbB/logo.png new file mode 100644 index 00000000..51a270f5 Binary files /dev/null and b/blockchains/ethereum/assets/0xE0bA1564A889f0d2Ba8eF4978027C1b072b56EbB/logo.png differ diff --git a/blockchains/ethereum/assets/0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C/info.json b/blockchains/ethereum/assets/0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C/info.json new file mode 100644 index 00000000..5abb32e2 --- /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 00000000..21b50fe9 Binary files /dev/null and b/blockchains/ethereum/assets/0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C/logo.png differ diff --git a/blockchains/ethereum/assets/0xE130A86aD09b12553dd94e6D9A1e157EaFe9b87d/info.json b/blockchains/ethereum/assets/0xE130A86aD09b12553dd94e6D9A1e157EaFe9b87d/info.json new file mode 100644 index 00000000..3a7de934 --- /dev/null +++ b/blockchains/ethereum/assets/0xE130A86aD09b12553dd94e6D9A1e157EaFe9b87d/info.json @@ -0,0 +1,11 @@ +{ + "name": "BrilliantOilCorporationToken", + "symbol": "BOC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE130A86aD09b12553dd94e6D9A1e157EaFe9b87d", + "status": "abandoned", + "id": "0xE130A86aD09b12553dd94e6D9A1e157EaFe9b87d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE130A86aD09b12553dd94e6D9A1e157EaFe9b87d/logo.png b/blockchains/ethereum/assets/0xE130A86aD09b12553dd94e6D9A1e157EaFe9b87d/logo.png new file mode 100644 index 00000000..823d0bb3 Binary files /dev/null and b/blockchains/ethereum/assets/0xE130A86aD09b12553dd94e6D9A1e157EaFe9b87d/logo.png differ diff --git a/blockchains/ethereum/assets/0xE130d59c0D7f84260b776aA5F93DE5031C5A0BF6/info.json b/blockchains/ethereum/assets/0xE130d59c0D7f84260b776aA5F93DE5031C5A0BF6/info.json new file mode 100644 index 00000000..ea1c3362 --- /dev/null +++ b/blockchains/ethereum/assets/0xE130d59c0D7f84260b776aA5F93DE5031C5A0BF6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aladdin Bao", + "symbol": "ABAO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://abao.im/", + "explorer": "https://etherscan.io/token/0xE130d59c0D7f84260b776aA5F93DE5031C5A0BF6", + "status": "abandoned", + "id": "0xE130d59c0D7f84260b776aA5F93DE5031C5A0BF6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE130d59c0D7f84260b776aA5F93DE5031C5A0BF6/logo.png b/blockchains/ethereum/assets/0xE130d59c0D7f84260b776aA5F93DE5031C5A0BF6/logo.png new file mode 100644 index 00000000..916fe080 Binary files /dev/null and b/blockchains/ethereum/assets/0xE130d59c0D7f84260b776aA5F93DE5031C5A0BF6/logo.png differ diff --git a/blockchains/ethereum/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json b/blockchains/ethereum/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json new file mode 100644 index 00000000..34decf4a --- /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 00000000..41bfda5c Binary files /dev/null and b/blockchains/ethereum/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/logo.png differ diff --git a/blockchains/ethereum/assets/0xE13Ef257cF4D5Df928ca11d230427C037666d466/info.json b/blockchains/ethereum/assets/0xE13Ef257cF4D5Df928ca11d230427C037666d466/info.json new file mode 100644 index 00000000..e47803b6 --- /dev/null +++ b/blockchains/ethereum/assets/0xE13Ef257cF4D5Df928ca11d230427C037666d466/info.json @@ -0,0 +1,11 @@ +{ + "name": "WIT", + "symbol": "WIT", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "http://www.witchain.org/", + "explorer": "https://etherscan.io/token/0xE13Ef257cF4D5Df928ca11d230427C037666d466", + "status": "abandoned", + "id": "0xE13Ef257cF4D5Df928ca11d230427C037666d466" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE13Ef257cF4D5Df928ca11d230427C037666d466/logo.png b/blockchains/ethereum/assets/0xE13Ef257cF4D5Df928ca11d230427C037666d466/logo.png new file mode 100644 index 00000000..6234943e Binary files /dev/null and b/blockchains/ethereum/assets/0xE13Ef257cF4D5Df928ca11d230427C037666d466/logo.png differ diff --git a/blockchains/ethereum/assets/0xE14A603f7c77d4101A87859b8736a04CFD85C688/info.json b/blockchains/ethereum/assets/0xE14A603f7c77d4101A87859b8736a04CFD85C688/info.json new file mode 100644 index 00000000..3f361507 --- /dev/null +++ b/blockchains/ethereum/assets/0xE14A603f7c77d4101A87859b8736a04CFD85C688/info.json @@ -0,0 +1,11 @@ +{ + "name": "TENA", + "symbol": "TENA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://tenaprotocol.io/", + "explorer": "https://etherscan.io/token/0xE14A603f7c77d4101A87859b8736a04CFD85C688", + "status": "abandoned", + "id": "0xE14A603f7c77d4101A87859b8736a04CFD85C688" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE14A603f7c77d4101A87859b8736a04CFD85C688/logo.png b/blockchains/ethereum/assets/0xE14A603f7c77d4101A87859b8736a04CFD85C688/logo.png new file mode 100644 index 00000000..c802a772 Binary files /dev/null and b/blockchains/ethereum/assets/0xE14A603f7c77d4101A87859b8736a04CFD85C688/logo.png differ diff --git a/blockchains/ethereum/assets/0xE17f017475a709De58E976081eB916081ff4c9d5/info.json b/blockchains/ethereum/assets/0xE17f017475a709De58E976081eB916081ff4c9d5/info.json new file mode 100644 index 00000000..f6dcaa79 --- /dev/null +++ b/blockchains/ethereum/assets/0xE17f017475a709De58E976081eB916081ff4c9d5/info.json @@ -0,0 +1,11 @@ +{ + "name": "RMPL", + "symbol": "RMPL", + "type": "ERC20", + "decimals": 9, + "description": "RMPL is a decentralized cryptocurrency with an elastic supply model. ", + "website": "https://www.rmpl.io", + "explorer": "https://etherscan.io/token/0xE17f017475a709De58E976081eB916081ff4c9d5", + "status": "active", + "id": "0xE17f017475a709De58E976081eB916081ff4c9d5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE17f017475a709De58E976081eB916081ff4c9d5/logo.png b/blockchains/ethereum/assets/0xE17f017475a709De58E976081eB916081ff4c9d5/logo.png new file mode 100644 index 00000000..ec689ed6 Binary files /dev/null and b/blockchains/ethereum/assets/0xE17f017475a709De58E976081eB916081ff4c9d5/logo.png differ diff --git a/blockchains/ethereum/assets/0xE1Aee98495365fc179699C1bB3E761FA716beE62/info.json b/blockchains/ethereum/assets/0xE1Aee98495365fc179699C1bB3E761FA716beE62/info.json new file mode 100644 index 00000000..72b1e8c8 --- /dev/null +++ b/blockchains/ethereum/assets/0xE1Aee98495365fc179699C1bB3E761FA716beE62/info.json @@ -0,0 +1,11 @@ +{ + "name": "BezantToken", + "symbol": "BZNT", + "type": "ERC20", + "decimals": 18, + "description": "Bezant is a decentralized payment protocol that allows content creators and online merchants to setup stores and send/receive payments internationally. The BZNT ERC-20 token enables users to make purchases on the Jehmi platform and access global content. Its purported benefits include the elimination of costly store fees and the provision of instant P2P payments to merchants.", + "website": "https://bezant.io/", + "explorer": "https://etherscan.io/token/0xE1Aee98495365fc179699C1bB3E761FA716beE62", + "status": "active", + "id": "0xE1Aee98495365fc179699C1bB3E761FA716beE62" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE1Aee98495365fc179699C1bB3E761FA716beE62/logo.png b/blockchains/ethereum/assets/0xE1Aee98495365fc179699C1bB3E761FA716beE62/logo.png new file mode 100644 index 00000000..26391cf9 Binary files /dev/null and b/blockchains/ethereum/assets/0xE1Aee98495365fc179699C1bB3E761FA716beE62/logo.png differ diff --git a/blockchains/ethereum/assets/0xE1BA0FB44CCb0D11b80F92f4f8Ed94CA3fF51D00/info.json b/blockchains/ethereum/assets/0xE1BA0FB44CCb0D11b80F92f4f8Ed94CA3fF51D00/info.json new file mode 100644 index 00000000..6d5b533b --- /dev/null +++ b/blockchains/ethereum/assets/0xE1BA0FB44CCb0D11b80F92f4f8Ed94CA3fF51D00/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave BAT V1", + "symbol": "aBAT V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave BAT V1 is an interest bearing token pegged 1:1 to the underlying BAT deposited in Aave V1. aBAT V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xE1BA0FB44CCb0D11b80F92f4f8Ed94CA3fF51D00", + "status": "abandoned", + "id": "0xE1BA0FB44CCb0D11b80F92f4f8Ed94CA3fF51D00" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE1BA0FB44CCb0D11b80F92f4f8Ed94CA3fF51D00/logo.png b/blockchains/ethereum/assets/0xE1BA0FB44CCb0D11b80F92f4f8Ed94CA3fF51D00/logo.png new file mode 100644 index 00000000..c76795dd Binary files /dev/null and b/blockchains/ethereum/assets/0xE1BA0FB44CCb0D11b80F92f4f8Ed94CA3fF51D00/logo.png differ diff --git a/blockchains/ethereum/assets/0xE1bAD922F84b198A08292FB600319300ae32471b/info.json b/blockchains/ethereum/assets/0xE1bAD922F84b198A08292FB600319300ae32471b/info.json new file mode 100644 index 00000000..a94fdda0 --- /dev/null +++ b/blockchains/ethereum/assets/0xE1bAD922F84b198A08292FB600319300ae32471b/info.json @@ -0,0 +1,11 @@ +{ + "name": "[FCT] FirmaChain Token", + "symbol": "FCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://firmachain.org", + "explorer": "https://etherscan.io/token/0xE1bAD922F84b198A08292FB600319300ae32471b", + "status": "active", + "id": "0xE1bAD922F84b198A08292FB600319300ae32471b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE1bAD922F84b198A08292FB600319300ae32471b/logo.png b/blockchains/ethereum/assets/0xE1bAD922F84b198A08292FB600319300ae32471b/logo.png new file mode 100644 index 00000000..8045d8a1 Binary files /dev/null and b/blockchains/ethereum/assets/0xE1bAD922F84b198A08292FB600319300ae32471b/logo.png differ diff --git a/blockchains/ethereum/assets/0xE1c7E30C42C24582888C758984f6e382096786bd/info.json b/blockchains/ethereum/assets/0xE1c7E30C42C24582888C758984f6e382096786bd/info.json new file mode 100644 index 00000000..147c6505 --- /dev/null +++ b/blockchains/ethereum/assets/0xE1c7E30C42C24582888C758984f6e382096786bd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Curate", + "symbol": "XCUR", + "type": "ERC20", + "decimals": 8, + "description": "CURATE is a marketplace app centred around the theme of content discovery on clothing/fashion, gaming/tech, crypto assets and health/beauty and more. Curate utilises blockchain technology as a payment infrastructure and means of rewarding engagement i.e buying, selling or based on our rewards engagement algorithm. XCUR is the official token for the CURATE marketplace app and DeFi platform.", + "website": "https://curate.style/", + "explorer": "https://etherscan.io/token/0xE1c7E30C42C24582888C758984f6e382096786bd", + "status": "active", + "id": "0xE1c7E30C42C24582888C758984f6e382096786bd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE1c7E30C42C24582888C758984f6e382096786bd/logo.png b/blockchains/ethereum/assets/0xE1c7E30C42C24582888C758984f6e382096786bd/logo.png new file mode 100644 index 00000000..8f4521bb Binary files /dev/null and b/blockchains/ethereum/assets/0xE1c7E30C42C24582888C758984f6e382096786bd/logo.png differ diff --git a/blockchains/ethereum/assets/0xE22020F47B7378dfedcedd2C81d4137c22fE1152/info.json b/blockchains/ethereum/assets/0xE22020F47B7378dfedcedd2C81d4137c22fE1152/info.json new file mode 100644 index 00000000..5723ab7d --- /dev/null +++ b/blockchains/ethereum/assets/0xE22020F47B7378dfedcedd2C81d4137c22fE1152/info.json @@ -0,0 +1,40 @@ +{ + "name": "My Liquidity Partner (MLP)", + "type": "ERC20", + "symbol": "MLP", + "decimals": 18, + "website": "https://myliquiditypartner.com", + "description": "My Liquidity Partner is a rewards token based on the ethereum blockchain built to help onboard people into a stable growth liquidity pool program.", + "explorer": "https://etherscan.io/token/0xE22020F47B7378dfedcedd2C81d4137c22fE1152", + "status": "active", + "id": "0xE22020F47B7378dfedcedd2C81d4137c22fE1152", + "links": [ + { + "name": "x", + "url": "https://x.com/MyLiquidity_MLP" + }, + { + "name": "medium", + "url": "https://medium.com/@My_liquidity_partner" + }, + { + "name": "telegram", + "url": "https://t.me/MyLiquidityPartner" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/my-liquidity-partner/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/my-liquidity-partner" + }, + { + "name": "facebook", + "url": "https://facebook.com/mysmartcontract.io" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE22020F47B7378dfedcedd2C81d4137c22fE1152/logo.png b/blockchains/ethereum/assets/0xE22020F47B7378dfedcedd2C81d4137c22fE1152/logo.png new file mode 100644 index 00000000..33d9201f Binary files /dev/null and b/blockchains/ethereum/assets/0xE22020F47B7378dfedcedd2C81d4137c22fE1152/logo.png differ diff --git a/blockchains/ethereum/assets/0xE2492F8D2A2618d8709Ca99b1d8d75713Bd84089/info.json b/blockchains/ethereum/assets/0xE2492F8D2A2618d8709Ca99b1d8d75713Bd84089/info.json new file mode 100644 index 00000000..6be7444c --- /dev/null +++ b/blockchains/ethereum/assets/0xE2492F8D2A2618d8709Ca99b1d8d75713Bd84089/info.json @@ -0,0 +1,11 @@ +{ + "name": "HeartBout", + "symbol": "HB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE2492F8D2A2618d8709Ca99b1d8d75713Bd84089", + "status": "abandoned", + "id": "0xE2492F8D2A2618d8709Ca99b1d8d75713Bd84089" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE2492F8D2A2618d8709Ca99b1d8d75713Bd84089/logo.png b/blockchains/ethereum/assets/0xE2492F8D2A2618d8709Ca99b1d8d75713Bd84089/logo.png new file mode 100644 index 00000000..14d2f7d8 Binary files /dev/null and b/blockchains/ethereum/assets/0xE2492F8D2A2618d8709Ca99b1d8d75713Bd84089/logo.png differ diff --git a/blockchains/ethereum/assets/0xE25FAAb5821ce70BA4179A70c1d481BA45b9D0c9/info.json b/blockchains/ethereum/assets/0xE25FAAb5821ce70BA4179A70c1d481BA45b9D0c9/info.json new file mode 100644 index 00000000..920dce13 --- /dev/null +++ b/blockchains/ethereum/assets/0xE25FAAb5821ce70BA4179A70c1d481BA45b9D0c9/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZMAN Coin", + "symbol": "ZMAN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE25FAAb5821ce70BA4179A70c1d481BA45b9D0c9", + "status": "abandoned", + "id": "0xE25FAAb5821ce70BA4179A70c1d481BA45b9D0c9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE25FAAb5821ce70BA4179A70c1d481BA45b9D0c9/logo.png b/blockchains/ethereum/assets/0xE25FAAb5821ce70BA4179A70c1d481BA45b9D0c9/logo.png new file mode 100644 index 00000000..8c17da90 Binary files /dev/null and b/blockchains/ethereum/assets/0xE25FAAb5821ce70BA4179A70c1d481BA45b9D0c9/logo.png differ diff --git a/blockchains/ethereum/assets/0xE270ef848D2e966F59705122F9E7CbEf7a717825/info.json b/blockchains/ethereum/assets/0xE270ef848D2e966F59705122F9E7CbEf7a717825/info.json new file mode 100644 index 00000000..959b6f69 --- /dev/null +++ b/blockchains/ethereum/assets/0xE270ef848D2e966F59705122F9E7CbEf7a717825/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R775687", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE270ef848D2e966F59705122F9E7CbEf7a717825", + "status": "abandoned", + "id": "0xE270ef848D2e966F59705122F9E7CbEf7a717825" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE270ef848D2e966F59705122F9E7CbEf7a717825/logo.png b/blockchains/ethereum/assets/0xE270ef848D2e966F59705122F9E7CbEf7a717825/logo.png new file mode 100644 index 00000000..ff5f442b Binary files /dev/null and b/blockchains/ethereum/assets/0xE270ef848D2e966F59705122F9E7CbEf7a717825/logo.png differ diff --git a/blockchains/ethereum/assets/0xE277aC35F9D327A670c1A3F3eeC80a83022431e4/info.json b/blockchains/ethereum/assets/0xE277aC35F9D327A670c1A3F3eeC80a83022431e4/info.json new file mode 100644 index 00000000..74f3c747 --- /dev/null +++ b/blockchains/ethereum/assets/0xE277aC35F9D327A670c1A3F3eeC80a83022431e4/info.json @@ -0,0 +1,11 @@ +{ + "name": "PolypuX", + "symbol": "PUX", + "type": "ERC20", + "decimals": 8, + "description": "PolypuX offers an opportunity to gain passive income from the interactions received in social media. Meantime, it helps companies or other parties promoting their products/services to the right audience. Additionally, both individuals and corporate accounts can use PolypuX platform to grow their social media accounts.", + "website": "https://www.polypux.com", + "explorer": "https://etherscan.io/token/0xE277aC35F9D327A670c1A3F3eeC80a83022431e4", + "status": "active", + "id": "0xE277aC35F9D327A670c1A3F3eeC80a83022431e4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE277aC35F9D327A670c1A3F3eeC80a83022431e4/logo.png b/blockchains/ethereum/assets/0xE277aC35F9D327A670c1A3F3eeC80a83022431e4/logo.png new file mode 100644 index 00000000..ee1d597f Binary files /dev/null and b/blockchains/ethereum/assets/0xE277aC35F9D327A670c1A3F3eeC80a83022431e4/logo.png differ diff --git a/blockchains/ethereum/assets/0xE2D82Dc7dA0E6f882E96846451F4faBcc8f90528/info.json b/blockchains/ethereum/assets/0xE2D82Dc7dA0E6f882E96846451F4faBcc8f90528/info.json new file mode 100644 index 00000000..e023fb50 --- /dev/null +++ b/blockchains/ethereum/assets/0xE2D82Dc7dA0E6f882E96846451F4faBcc8f90528/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jesus Coin", + "symbol": "JC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE2D82Dc7dA0E6f882E96846451F4faBcc8f90528", + "status": "abandoned", + "id": "0xE2D82Dc7dA0E6f882E96846451F4faBcc8f90528" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE2D82Dc7dA0E6f882E96846451F4faBcc8f90528/logo.png b/blockchains/ethereum/assets/0xE2D82Dc7dA0E6f882E96846451F4faBcc8f90528/logo.png new file mode 100644 index 00000000..87cda2e0 Binary files /dev/null and b/blockchains/ethereum/assets/0xE2D82Dc7dA0E6f882E96846451F4faBcc8f90528/logo.png differ diff --git a/blockchains/ethereum/assets/0xE2E6D4BE086c6938B53B22144855eef674281639/info.json b/blockchains/ethereum/assets/0xE2E6D4BE086c6938B53B22144855eef674281639/info.json new file mode 100644 index 00000000..585873ea --- /dev/null +++ b/blockchains/ethereum/assets/0xE2E6D4BE086c6938B53B22144855eef674281639/info.json @@ -0,0 +1,11 @@ +{ + "name": "Link Platform", + "symbol": "LNK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ethereum.link/", + "explorer": "https://etherscan.io/token/0xE2E6D4BE086c6938B53B22144855eef674281639", + "status": "abandoned", + "id": "0xE2E6D4BE086c6938B53B22144855eef674281639" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE2E6D4BE086c6938B53B22144855eef674281639/logo.png b/blockchains/ethereum/assets/0xE2E6D4BE086c6938B53B22144855eef674281639/logo.png new file mode 100644 index 00000000..76d61621 Binary files /dev/null and b/blockchains/ethereum/assets/0xE2E6D4BE086c6938B53B22144855eef674281639/logo.png differ diff --git a/blockchains/ethereum/assets/0xE2FB6529EF566a080e6d23dE0bd351311087D567/info.json b/blockchains/ethereum/assets/0xE2FB6529EF566a080e6d23dE0bd351311087D567/info.json new file mode 100644 index 00000000..f30a8a90 --- /dev/null +++ b/blockchains/ethereum/assets/0xE2FB6529EF566a080e6d23dE0bd351311087D567/info.json @@ -0,0 +1,11 @@ +{ + "name": "Covesting", + "symbol": "COV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://covesting.io", + "explorer": "https://etherscan.io/token/0xE2FB6529EF566a080e6d23dE0bd351311087D567", + "status": "abandoned", + "id": "0xE2FB6529EF566a080e6d23dE0bd351311087D567" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE2FB6529EF566a080e6d23dE0bd351311087D567/logo.png b/blockchains/ethereum/assets/0xE2FB6529EF566a080e6d23dE0bd351311087D567/logo.png new file mode 100644 index 00000000..7f6b847b Binary files /dev/null and b/blockchains/ethereum/assets/0xE2FB6529EF566a080e6d23dE0bd351311087D567/logo.png differ diff --git a/blockchains/ethereum/assets/0xE2b407160AAd5540eAc0e80338b9a5085C60F25B/info.json b/blockchains/ethereum/assets/0xE2b407160AAd5540eAc0e80338b9a5085C60F25B/info.json new file mode 100644 index 00000000..99c9cae7 --- /dev/null +++ b/blockchains/ethereum/assets/0xE2b407160AAd5540eAc0e80338b9a5085C60F25B/info.json @@ -0,0 +1,11 @@ +{ + "name": "GPN Coin", + "symbol": "GPN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE2b407160AAd5540eAc0e80338b9a5085C60F25B", + "status": "abandoned", + "id": "0xE2b407160AAd5540eAc0e80338b9a5085C60F25B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE2b407160AAd5540eAc0e80338b9a5085C60F25B/logo.png b/blockchains/ethereum/assets/0xE2b407160AAd5540eAc0e80338b9a5085C60F25B/logo.png new file mode 100644 index 00000000..a3780a27 Binary files /dev/null and b/blockchains/ethereum/assets/0xE2b407160AAd5540eAc0e80338b9a5085C60F25B/logo.png differ diff --git a/blockchains/ethereum/assets/0xE2dc070524A6e305ddB64d8513DC444B6a1ec845/info.json b/blockchains/ethereum/assets/0xE2dc070524A6e305ddB64d8513DC444B6a1ec845/info.json new file mode 100644 index 00000000..c1932a26 --- /dev/null +++ b/blockchains/ethereum/assets/0xE2dc070524A6e305ddB64d8513DC444B6a1ec845/info.json @@ -0,0 +1,11 @@ +{ + "name": "NEX", + "website": "https://nash.io", + "description": "NEX is Europe's first regulated Security Token. Holders can stake NEX on the non-custodial Nash Exchange to receive a revenue share.", + "explorer": "https://etherscan.io/token/0xE2dc070524A6e305ddB64d8513DC444B6a1ec845", + "type": "ERC20", + "symbol": "NEX", + "decimals": 8, + "status": "active", + "id": "0xE2dc070524A6e305ddB64d8513DC444B6a1ec845" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE2dc070524A6e305ddB64d8513DC444B6a1ec845/logo.png b/blockchains/ethereum/assets/0xE2dc070524A6e305ddB64d8513DC444B6a1ec845/logo.png new file mode 100644 index 00000000..49e8a5aa Binary files /dev/null and b/blockchains/ethereum/assets/0xE2dc070524A6e305ddB64d8513DC444B6a1ec845/logo.png differ diff --git a/blockchains/ethereum/assets/0xE33EeF3ef4796bD9633D5DD8B9e8d500Eeb62d2D/info.json b/blockchains/ethereum/assets/0xE33EeF3ef4796bD9633D5DD8B9e8d500Eeb62d2D/info.json new file mode 100644 index 00000000..7502095a --- /dev/null +++ b/blockchains/ethereum/assets/0xE33EeF3ef4796bD9633D5DD8B9e8d500Eeb62d2D/info.json @@ -0,0 +1,11 @@ +{ + "name": "BCL Token", + "symbol": "BCLT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE33EeF3ef4796bD9633D5DD8B9e8d500Eeb62d2D", + "status": "abandoned", + "id": "0xE33EeF3ef4796bD9633D5DD8B9e8d500Eeb62d2D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE33EeF3ef4796bD9633D5DD8B9e8d500Eeb62d2D/logo.png b/blockchains/ethereum/assets/0xE33EeF3ef4796bD9633D5DD8B9e8d500Eeb62d2D/logo.png new file mode 100755 index 00000000..0feab878 Binary files /dev/null and b/blockchains/ethereum/assets/0xE33EeF3ef4796bD9633D5DD8B9e8d500Eeb62d2D/logo.png differ diff --git a/blockchains/ethereum/assets/0xE33dEE9575a5a59592998f3A404347F9EfA174F7/info.json b/blockchains/ethereum/assets/0xE33dEE9575a5a59592998f3A404347F9EfA174F7/info.json new file mode 100644 index 00000000..7fcf8119 --- /dev/null +++ b/blockchains/ethereum/assets/0xE33dEE9575a5a59592998f3A404347F9EfA174F7/info.json @@ -0,0 +1,11 @@ +{ + "name": "CHRISTDOLLAR", + "symbol": "CHRTD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE33dEE9575a5a59592998f3A404347F9EfA174F7", + "status": "abandoned", + "id": "0xE33dEE9575a5a59592998f3A404347F9EfA174F7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE33dEE9575a5a59592998f3A404347F9EfA174F7/logo.png b/blockchains/ethereum/assets/0xE33dEE9575a5a59592998f3A404347F9EfA174F7/logo.png new file mode 100755 index 00000000..ada83b8e Binary files /dev/null and b/blockchains/ethereum/assets/0xE33dEE9575a5a59592998f3A404347F9EfA174F7/logo.png differ diff --git a/blockchains/ethereum/assets/0xE3419710c1f77D44B4DaB02316d3f048818C4E59/info.json b/blockchains/ethereum/assets/0xE3419710c1f77D44B4DaB02316d3f048818C4E59/info.json new file mode 100644 index 00000000..5f50f730 --- /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 00000000..a5f2bede Binary files /dev/null and b/blockchains/ethereum/assets/0xE3419710c1f77D44B4DaB02316d3f048818C4E59/logo.png differ diff --git a/blockchains/ethereum/assets/0xE34e1944E776f39B9252790a0527eBDa647aE668/info.json b/blockchains/ethereum/assets/0xE34e1944E776f39B9252790a0527eBDa647aE668/info.json new file mode 100644 index 00000000..b1d43f3d --- /dev/null +++ b/blockchains/ethereum/assets/0xE34e1944E776f39B9252790a0527eBDa647aE668/info.json @@ -0,0 +1,11 @@ +{ + "name": "Helbiz Token", + "symbol": "HBZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.hbzcoin.com", + "explorer": "https://etherscan.io/token/0xE34e1944E776f39B9252790a0527eBDa647aE668", + "status": "abandoned", + "id": "0xE34e1944E776f39B9252790a0527eBDa647aE668" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE34e1944E776f39B9252790a0527eBDa647aE668/logo.png b/blockchains/ethereum/assets/0xE34e1944E776f39B9252790a0527eBDa647aE668/logo.png new file mode 100755 index 00000000..e1d72f63 Binary files /dev/null and b/blockchains/ethereum/assets/0xE34e1944E776f39B9252790a0527eBDa647aE668/logo.png differ diff --git a/blockchains/ethereum/assets/0xE35673cdD0370146be64e1DE959ec42E725ec4Ce/info.json b/blockchains/ethereum/assets/0xE35673cdD0370146be64e1DE959ec42E725ec4Ce/info.json new file mode 100644 index 00000000..0817c7e7 --- /dev/null +++ b/blockchains/ethereum/assets/0xE35673cdD0370146be64e1DE959ec42E725ec4Ce/info.json @@ -0,0 +1,11 @@ +{ + "name": "M.O.A.B", + "symbol": "MOAB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE35673cdD0370146be64e1DE959ec42E725ec4Ce", + "status": "abandoned", + "id": "0xE35673cdD0370146be64e1DE959ec42E725ec4Ce" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE35673cdD0370146be64e1DE959ec42E725ec4Ce/logo.png b/blockchains/ethereum/assets/0xE35673cdD0370146be64e1DE959ec42E725ec4Ce/logo.png new file mode 100644 index 00000000..36a03285 Binary files /dev/null and b/blockchains/ethereum/assets/0xE35673cdD0370146be64e1DE959ec42E725ec4Ce/logo.png differ diff --git a/blockchains/ethereum/assets/0xE36B0F3C426923E352F6005b6236082A78A3C2cb/info.json b/blockchains/ethereum/assets/0xE36B0F3C426923E352F6005b6236082A78A3C2cb/info.json new file mode 100644 index 00000000..597b5730 --- /dev/null +++ b/blockchains/ethereum/assets/0xE36B0F3C426923E352F6005b6236082A78A3C2cb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Technology Blockchain Token", + "symbol": "TEBT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE36B0F3C426923E352F6005b6236082A78A3C2cb", + "status": "abandoned", + "id": "0xE36B0F3C426923E352F6005b6236082A78A3C2cb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE36B0F3C426923E352F6005b6236082A78A3C2cb/logo.png b/blockchains/ethereum/assets/0xE36B0F3C426923E352F6005b6236082A78A3C2cb/logo.png new file mode 100644 index 00000000..a8998129 Binary files /dev/null and b/blockchains/ethereum/assets/0xE36B0F3C426923E352F6005b6236082A78A3C2cb/logo.png differ diff --git a/blockchains/ethereum/assets/0xE36df5BB57E80629Cfc28a31e5F794071c085ECa/info.json b/blockchains/ethereum/assets/0xE36df5BB57E80629Cfc28a31e5F794071c085ECa/info.json new file mode 100644 index 00000000..888cbe43 --- /dev/null +++ b/blockchains/ethereum/assets/0xE36df5BB57E80629Cfc28a31e5F794071c085ECa/info.json @@ -0,0 +1,11 @@ +{ + "name": "BCAChain Initial Token", + "symbol": "BCAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE36df5BB57E80629Cfc28a31e5F794071c085ECa", + "status": "abandoned", + "id": "0xE36df5BB57E80629Cfc28a31e5F794071c085ECa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE36df5BB57E80629Cfc28a31e5F794071c085ECa/logo.png b/blockchains/ethereum/assets/0xE36df5BB57E80629Cfc28a31e5F794071c085ECa/logo.png new file mode 100644 index 00000000..156cdbb7 Binary files /dev/null and b/blockchains/ethereum/assets/0xE36df5BB57E80629Cfc28a31e5F794071c085ECa/logo.png differ diff --git a/blockchains/ethereum/assets/0xE3ADAA4fb7c92AB833Ee08B3561D9c434aA2A3eE/info.json b/blockchains/ethereum/assets/0xE3ADAA4fb7c92AB833Ee08B3561D9c434aA2A3eE/info.json new file mode 100644 index 00000000..550c3f4f --- /dev/null +++ b/blockchains/ethereum/assets/0xE3ADAA4fb7c92AB833Ee08B3561D9c434aA2A3eE/info.json @@ -0,0 +1,14 @@ +{ + "name": "Serum (Portal from Solana)", + "type": "ERC20", + "symbol": "SRMso", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://projectserum.com/", + "explorer": "https://etherscan.io/token/0xE3ADAA4fb7c92AB833Ee08B3561D9c434aA2A3eE", + "status": "active", + "id": "0xE3ADAA4fb7c92AB833Ee08B3561D9c434aA2A3eE", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE3ADAA4fb7c92AB833Ee08B3561D9c434aA2A3eE/logo.png b/blockchains/ethereum/assets/0xE3ADAA4fb7c92AB833Ee08B3561D9c434aA2A3eE/logo.png new file mode 100644 index 00000000..94f79d70 Binary files /dev/null and b/blockchains/ethereum/assets/0xE3ADAA4fb7c92AB833Ee08B3561D9c434aA2A3eE/logo.png differ diff --git a/blockchains/ethereum/assets/0xE3B05c42667DE42cA4a4eA1e9682eb590b6A65D1/info.json b/blockchains/ethereum/assets/0xE3B05c42667DE42cA4a4eA1e9682eb590b6A65D1/info.json new file mode 100644 index 00000000..aac10d0e --- /dev/null +++ b/blockchains/ethereum/assets/0xE3B05c42667DE42cA4a4eA1e9682eb590b6A65D1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Orom Token", + "symbol": "OROM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE3B05c42667DE42cA4a4eA1e9682eb590b6A65D1", + "status": "abandoned", + "id": "0xE3B05c42667DE42cA4a4eA1e9682eb590b6A65D1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE3B05c42667DE42cA4a4eA1e9682eb590b6A65D1/logo.png b/blockchains/ethereum/assets/0xE3B05c42667DE42cA4a4eA1e9682eb590b6A65D1/logo.png new file mode 100644 index 00000000..0f239eeb Binary files /dev/null and b/blockchains/ethereum/assets/0xE3B05c42667DE42cA4a4eA1e9682eb590b6A65D1/logo.png differ diff --git a/blockchains/ethereum/assets/0xE3E9204Afd78822A0E22151733E65a901Bf77b77/info.json b/blockchains/ethereum/assets/0xE3E9204Afd78822A0E22151733E65a901Bf77b77/info.json new file mode 100644 index 00000000..28c827d7 --- /dev/null +++ b/blockchains/ethereum/assets/0xE3E9204Afd78822A0E22151733E65a901Bf77b77/info.json @@ -0,0 +1,11 @@ +{ + "name": "LUV", + "symbol": "LUV", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE3E9204Afd78822A0E22151733E65a901Bf77b77", + "status": "abandoned", + "id": "0xE3E9204Afd78822A0E22151733E65a901Bf77b77" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE3E9204Afd78822A0E22151733E65a901Bf77b77/logo.png b/blockchains/ethereum/assets/0xE3E9204Afd78822A0E22151733E65a901Bf77b77/logo.png new file mode 100644 index 00000000..4304f287 Binary files /dev/null and b/blockchains/ethereum/assets/0xE3E9204Afd78822A0E22151733E65a901Bf77b77/logo.png differ diff --git a/blockchains/ethereum/assets/0xE3F4b4A5d91e5cB9435B947F090A319737036312/info.json b/blockchains/ethereum/assets/0xE3F4b4A5d91e5cB9435B947F090A319737036312/info.json new file mode 100644 index 00000000..aad4642e --- /dev/null +++ b/blockchains/ethereum/assets/0xE3F4b4A5d91e5cB9435B947F090A319737036312/info.json @@ -0,0 +1,11 @@ +{ + "name": "POPCHAIN CASH", + "symbol": "PCH", + "type": "ERC20", + "decimals": 18, + "description": "POPCHAIN (PCH) is a cryptocurrency and operates on the Ethereum platform.", + "website": "http://www.popchain.org", + "explorer": "https://etherscan.io/token/0xE3F4b4A5d91e5cB9435B947F090A319737036312", + "status": "active", + "id": "0xE3F4b4A5d91e5cB9435B947F090A319737036312" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE3F4b4A5d91e5cB9435B947F090A319737036312/logo.png b/blockchains/ethereum/assets/0xE3F4b4A5d91e5cB9435B947F090A319737036312/logo.png new file mode 100755 index 00000000..5e928bc6 Binary files /dev/null and b/blockchains/ethereum/assets/0xE3F4b4A5d91e5cB9435B947F090A319737036312/logo.png differ diff --git a/blockchains/ethereum/assets/0xE3Fa177AcecfB86721Cf6f9f4206bd3Bd672D7d5/info.json b/blockchains/ethereum/assets/0xE3Fa177AcecfB86721Cf6f9f4206bd3Bd672D7d5/info.json new file mode 100644 index 00000000..5fbebfa1 --- /dev/null +++ b/blockchains/ethereum/assets/0xE3Fa177AcecfB86721Cf6f9f4206bd3Bd672D7d5/info.json @@ -0,0 +1,11 @@ +{ + "name": "ChainTrade Coin", + "symbol": "CTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE3Fa177AcecfB86721Cf6f9f4206bd3Bd672D7d5", + "status": "abandoned", + "id": "0xE3Fa177AcecfB86721Cf6f9f4206bd3Bd672D7d5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE3Fa177AcecfB86721Cf6f9f4206bd3Bd672D7d5/logo.png b/blockchains/ethereum/assets/0xE3Fa177AcecfB86721Cf6f9f4206bd3Bd672D7d5/logo.png new file mode 100644 index 00000000..f393ed33 Binary files /dev/null and b/blockchains/ethereum/assets/0xE3Fa177AcecfB86721Cf6f9f4206bd3Bd672D7d5/logo.png differ diff --git a/blockchains/ethereum/assets/0xE3a64A3c4216B83255b53Ec7eA078B13f21a7daD/info.json b/blockchains/ethereum/assets/0xE3a64A3c4216B83255b53Ec7eA078B13f21a7daD/info.json new file mode 100644 index 00000000..b12fc0a6 --- /dev/null +++ b/blockchains/ethereum/assets/0xE3a64A3c4216B83255b53Ec7eA078B13f21a7daD/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEFI GOLD", + "symbol": "DFGL", + "type": "ERC20", + "decimals": 18, + "description": "The project aims to connect multiple Defi projects in a single app.", + "website": "https://defigold.finance/", + "explorer": "https://etherscan.io/token/0xE3a64A3c4216B83255b53Ec7eA078B13f21a7daD", + "status": "active", + "id": "0xE3a64A3c4216B83255b53Ec7eA078B13f21a7daD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE3a64A3c4216B83255b53Ec7eA078B13f21a7daD/logo.png b/blockchains/ethereum/assets/0xE3a64A3c4216B83255b53Ec7eA078B13f21a7daD/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0xE3a64A3c4216B83255b53Ec7eA078B13f21a7daD/logo.png differ diff --git a/blockchains/ethereum/assets/0xE3d208D74e4C167245913C942df8C4Ee03b9abBA/info.json b/blockchains/ethereum/assets/0xE3d208D74e4C167245913C942df8C4Ee03b9abBA/info.json new file mode 100644 index 00000000..3892d35d --- /dev/null +++ b/blockchains/ethereum/assets/0xE3d208D74e4C167245913C942df8C4Ee03b9abBA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hydra", + "symbol": "HDA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE3d208D74e4C167245913C942df8C4Ee03b9abBA", + "status": "abandoned", + "id": "0xE3d208D74e4C167245913C942df8C4Ee03b9abBA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE3d208D74e4C167245913C942df8C4Ee03b9abBA/logo.png b/blockchains/ethereum/assets/0xE3d208D74e4C167245913C942df8C4Ee03b9abBA/logo.png new file mode 100644 index 00000000..69fef2e0 Binary files /dev/null and b/blockchains/ethereum/assets/0xE3d208D74e4C167245913C942df8C4Ee03b9abBA/logo.png differ diff --git a/blockchains/ethereum/assets/0xE3dbf587330D9B8f127a3F38daBF9Aa3c90D3187/info.json b/blockchains/ethereum/assets/0xE3dbf587330D9B8f127a3F38daBF9Aa3c90D3187/info.json new file mode 100644 index 00000000..f50b5e59 --- /dev/null +++ b/blockchains/ethereum/assets/0xE3dbf587330D9B8f127a3F38daBF9Aa3c90D3187/info.json @@ -0,0 +1,11 @@ +{ + "name": "VCcoin", + "symbol": "VCCN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE3dbf587330D9B8f127a3F38daBF9Aa3c90D3187", + "status": "abandoned", + "id": "0xE3dbf587330D9B8f127a3F38daBF9Aa3c90D3187" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE3dbf587330D9B8f127a3F38daBF9Aa3c90D3187/logo.png b/blockchains/ethereum/assets/0xE3dbf587330D9B8f127a3F38daBF9Aa3c90D3187/logo.png new file mode 100755 index 00000000..2cdc694c Binary files /dev/null and b/blockchains/ethereum/assets/0xE3dbf587330D9B8f127a3F38daBF9Aa3c90D3187/logo.png differ diff --git a/blockchains/ethereum/assets/0xE3feDAeCD47aa8EAb6b23227b0eE56F092C967a9/info.json b/blockchains/ethereum/assets/0xE3feDAeCD47aa8EAb6b23227b0eE56F092C967a9/info.json new file mode 100644 index 00000000..fa39cb0e --- /dev/null +++ b/blockchains/ethereum/assets/0xE3feDAeCD47aa8EAb6b23227b0eE56F092C967a9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Primas", + "symbol": "PST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://primas.io/", + "explorer": "https://etherscan.io/token/0xE3feDAeCD47aa8EAb6b23227b0eE56F092C967a9", + "status": "abandoned", + "id": "0xE3feDAeCD47aa8EAb6b23227b0eE56F092C967a9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE3feDAeCD47aa8EAb6b23227b0eE56F092C967a9/logo.png b/blockchains/ethereum/assets/0xE3feDAeCD47aa8EAb6b23227b0eE56F092C967a9/logo.png new file mode 100644 index 00000000..e72e8ee7 Binary files /dev/null and b/blockchains/ethereum/assets/0xE3feDAeCD47aa8EAb6b23227b0eE56F092C967a9/logo.png differ diff --git a/blockchains/ethereum/assets/0xE400013Df86249838B720eaB5a7F816aD82433c0/info.json b/blockchains/ethereum/assets/0xE400013Df86249838B720eaB5a7F816aD82433c0/info.json new file mode 100644 index 00000000..1bb4bae2 --- /dev/null +++ b/blockchains/ethereum/assets/0xE400013Df86249838B720eaB5a7F816aD82433c0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Game Of Bitcoins", + "symbol": "GOB", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE400013Df86249838B720eaB5a7F816aD82433c0", + "status": "abandoned", + "id": "0xE400013Df86249838B720eaB5a7F816aD82433c0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE400013Df86249838B720eaB5a7F816aD82433c0/logo.png b/blockchains/ethereum/assets/0xE400013Df86249838B720eaB5a7F816aD82433c0/logo.png new file mode 100644 index 00000000..fc4a9dcc Binary files /dev/null and b/blockchains/ethereum/assets/0xE400013Df86249838B720eaB5a7F816aD82433c0/logo.png differ diff --git a/blockchains/ethereum/assets/0xE41d2489571d322189246DaFA5ebDe1F4699F498/info.json b/blockchains/ethereum/assets/0xE41d2489571d322189246DaFA5ebDe1F4699F498/info.json new file mode 100644 index 00000000..10789545 --- /dev/null +++ b/blockchains/ethereum/assets/0xE41d2489571d322189246DaFA5ebDe1F4699F498/info.json @@ -0,0 +1,42 @@ +{ + "name": "0x", + "website": "https://0x.org", + "description": "0x (ZRX) is an open-source protocol that provides smart contract infrastructure and liquidity to enable the peer-to-peer exchange of tokens on the Ethereum blockchain.", + "explorer": "https://etherscan.io/token/0xE41d2489571d322189246DaFA5ebDe1F4699F498", + "research": "https://research.binance.com/en/projects/0x-protocol", + "type": "ERC20", + "symbol": "ZRX", + "decimals": 18, + "status": "active", + "id": "0xE41d2489571d322189246DaFA5ebDe1F4699F498", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/0xProject" + }, + { + "name": "x", + "url": "https://x.com/0xproject" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/0xproject" + }, + { + "name": "blog", + "url": "https://blog.0xproject.com/latest" + }, + { + "name": "whitepaper", + "url": "https://0xproject.com/pdfs/0x_white_paper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/0x/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE41d2489571d322189246DaFA5ebDe1F4699F498/logo.png b/blockchains/ethereum/assets/0xE41d2489571d322189246DaFA5ebDe1F4699F498/logo.png new file mode 100644 index 00000000..f4fe2ab0 Binary files /dev/null and b/blockchains/ethereum/assets/0xE41d2489571d322189246DaFA5ebDe1F4699F498/logo.png differ diff --git a/blockchains/ethereum/assets/0xE42Ba5558b00d2E6109CC60412d5D4c9473FE998/info.json b/blockchains/ethereum/assets/0xE42Ba5558b00d2E6109CC60412d5D4c9473FE998/info.json new file mode 100644 index 00000000..4aaf1e5c --- /dev/null +++ b/blockchains/ethereum/assets/0xE42Ba5558b00d2E6109CC60412d5D4c9473FE998/info.json @@ -0,0 +1,11 @@ +{ + "name": "iMM Coin", + "symbol": "IMC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE42Ba5558b00d2E6109CC60412d5D4c9473FE998", + "status": "abandoned", + "id": "0xE42Ba5558b00d2E6109CC60412d5D4c9473FE998" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE42Ba5558b00d2E6109CC60412d5D4c9473FE998/logo.png b/blockchains/ethereum/assets/0xE42Ba5558b00d2E6109CC60412d5D4c9473FE998/logo.png new file mode 100755 index 00000000..b61ee979 Binary files /dev/null and b/blockchains/ethereum/assets/0xE42Ba5558b00d2E6109CC60412d5D4c9473FE998/logo.png differ diff --git a/blockchains/ethereum/assets/0xE452E6Ea2dDeB012e20dB73bf5d3863A3Ac8d77a/info.json b/blockchains/ethereum/assets/0xE452E6Ea2dDeB012e20dB73bf5d3863A3Ac8d77a/info.json new file mode 100644 index 00000000..c454ae47 --- /dev/null +++ b/blockchains/ethereum/assets/0xE452E6Ea2dDeB012e20dB73bf5d3863A3Ac8d77a/info.json @@ -0,0 +1,14 @@ +{ + "name": "WCELO", + "website": "https://www.wrapped.com", + "description": "Wrapped Celo is a 1:1 equivalent of Celo on the Ethereum network", + "explorer": "https://etherscan.io/token/0xE452E6Ea2dDeB012e20dB73bf5d3863A3Ac8d77a", + "type": "ERC20", + "symbol": "WCELO", + "decimals": 18, + "status": "active", + "id": "0xE452E6Ea2dDeB012e20dB73bf5d3863A3Ac8d77a", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE452E6Ea2dDeB012e20dB73bf5d3863A3Ac8d77a/logo.png b/blockchains/ethereum/assets/0xE452E6Ea2dDeB012e20dB73bf5d3863A3Ac8d77a/logo.png new file mode 100644 index 00000000..f926282a Binary files /dev/null and b/blockchains/ethereum/assets/0xE452E6Ea2dDeB012e20dB73bf5d3863A3Ac8d77a/logo.png differ diff --git a/blockchains/ethereum/assets/0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B/info.json b/blockchains/ethereum/assets/0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B/info.json new file mode 100644 index 00000000..94d2480c --- /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 00000000..f7903bed Binary files /dev/null and b/blockchains/ethereum/assets/0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B/logo.png differ diff --git a/blockchains/ethereum/assets/0xE455C7a50b24DA3B48274272e4B53DdDf9c12A8A/info.json b/blockchains/ethereum/assets/0xE455C7a50b24DA3B48274272e4B53DdDf9c12A8A/info.json new file mode 100644 index 00000000..593b7263 --- /dev/null +++ b/blockchains/ethereum/assets/0xE455C7a50b24DA3B48274272e4B53DdDf9c12A8A/info.json @@ -0,0 +1,11 @@ +{ + "name": "DaCryptoCoin", + "symbol": "DCW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE455C7a50b24DA3B48274272e4B53DdDf9c12A8A", + "status": "abandoned", + "id": "0xE455C7a50b24DA3B48274272e4B53DdDf9c12A8A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE455C7a50b24DA3B48274272e4B53DdDf9c12A8A/logo.png b/blockchains/ethereum/assets/0xE455C7a50b24DA3B48274272e4B53DdDf9c12A8A/logo.png new file mode 100644 index 00000000..0baeb3db Binary files /dev/null and b/blockchains/ethereum/assets/0xE455C7a50b24DA3B48274272e4B53DdDf9c12A8A/logo.png differ diff --git a/blockchains/ethereum/assets/0xE45d6E4FAeaF11d01AbA9cFADC08116EB978AbEA/info.json b/blockchains/ethereum/assets/0xE45d6E4FAeaF11d01AbA9cFADC08116EB978AbEA/info.json new file mode 100644 index 00000000..d75bbc95 --- /dev/null +++ b/blockchains/ethereum/assets/0xE45d6E4FAeaF11d01AbA9cFADC08116EB978AbEA/info.json @@ -0,0 +1,11 @@ +{ + "name": "China Agriculture Exchange Token", + "symbol": "CAET", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE45d6E4FAeaF11d01AbA9cFADC08116EB978AbEA", + "status": "abandoned", + "id": "0xE45d6E4FAeaF11d01AbA9cFADC08116EB978AbEA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE45d6E4FAeaF11d01AbA9cFADC08116EB978AbEA/logo.png b/blockchains/ethereum/assets/0xE45d6E4FAeaF11d01AbA9cFADC08116EB978AbEA/logo.png new file mode 100644 index 00000000..954ca3b8 Binary files /dev/null and b/blockchains/ethereum/assets/0xE45d6E4FAeaF11d01AbA9cFADC08116EB978AbEA/logo.png differ diff --git a/blockchains/ethereum/assets/0xE467b1DBC0Cf7D7570D6A11578e9847BDFac28BE/info.json b/blockchains/ethereum/assets/0xE467b1DBC0Cf7D7570D6A11578e9847BDFac28BE/info.json new file mode 100644 index 00000000..46f30f82 --- /dev/null +++ b/blockchains/ethereum/assets/0xE467b1DBC0Cf7D7570D6A11578e9847BDFac28BE/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R943550", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE467b1DBC0Cf7D7570D6A11578e9847BDFac28BE", + "status": "abandoned", + "id": "0xE467b1DBC0Cf7D7570D6A11578e9847BDFac28BE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE467b1DBC0Cf7D7570D6A11578e9847BDFac28BE/logo.png b/blockchains/ethereum/assets/0xE467b1DBC0Cf7D7570D6A11578e9847BDFac28BE/logo.png new file mode 100755 index 00000000..ba58940f Binary files /dev/null and b/blockchains/ethereum/assets/0xE467b1DBC0Cf7D7570D6A11578e9847BDFac28BE/logo.png differ diff --git a/blockchains/ethereum/assets/0xE4687bD6e72E3f905fB95bCc32b82cA3D1AF4998/info.json b/blockchains/ethereum/assets/0xE4687bD6e72E3f905fB95bCc32b82cA3D1AF4998/info.json new file mode 100644 index 00000000..18eafa04 --- /dev/null +++ b/blockchains/ethereum/assets/0xE4687bD6e72E3f905fB95bCc32b82cA3D1AF4998/info.json @@ -0,0 +1,11 @@ +{ + "name": "ParaCoin", + "symbol": "PARA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE4687bD6e72E3f905fB95bCc32b82cA3D1AF4998", + "status": "abandoned", + "id": "0xE4687bD6e72E3f905fB95bCc32b82cA3D1AF4998" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE4687bD6e72E3f905fB95bCc32b82cA3D1AF4998/logo.png b/blockchains/ethereum/assets/0xE4687bD6e72E3f905fB95bCc32b82cA3D1AF4998/logo.png new file mode 100644 index 00000000..2614f2b5 Binary files /dev/null and b/blockchains/ethereum/assets/0xE4687bD6e72E3f905fB95bCc32b82cA3D1AF4998/logo.png differ diff --git a/blockchains/ethereum/assets/0xE477292f1B3268687A29376116B0ED27A9c76170/info.json b/blockchains/ethereum/assets/0xE477292f1B3268687A29376116B0ED27A9c76170/info.json new file mode 100644 index 00000000..527cd414 --- /dev/null +++ b/blockchains/ethereum/assets/0xE477292f1B3268687A29376116B0ED27A9c76170/info.json @@ -0,0 +1,11 @@ +{ + "name": "Herocoin", + "symbol": "PLAY", + "type": "ERC20", + "decimals": 18, + "description": "HERO radically changes todays centralized way of online betting. The token and its smart contract allow decentralized peer-to-peer online betting in any field.", + "website": "https://www.herocoin.io", + "explorer": "https://etherscan.io/token/0xE477292f1B3268687A29376116B0ED27A9c76170", + "status": "active", + "id": "0xE477292f1B3268687A29376116B0ED27A9c76170" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE477292f1B3268687A29376116B0ED27A9c76170/logo.png b/blockchains/ethereum/assets/0xE477292f1B3268687A29376116B0ED27A9c76170/logo.png new file mode 100644 index 00000000..70dcaa02 Binary files /dev/null and b/blockchains/ethereum/assets/0xE477292f1B3268687A29376116B0ED27A9c76170/logo.png differ diff --git a/blockchains/ethereum/assets/0xE48972fCd82a274411c01834e2f031D4377Fa2c0/info.json b/blockchains/ethereum/assets/0xE48972fCd82a274411c01834e2f031D4377Fa2c0/info.json new file mode 100644 index 00000000..068204b6 --- /dev/null +++ b/blockchains/ethereum/assets/0xE48972fCd82a274411c01834e2f031D4377Fa2c0/info.json @@ -0,0 +1,11 @@ +{ + "name": "TwoKeyEconomy", + "symbol": "2KEY", + "type": "ERC20", + "decimals": 18, + "description": "2key.network empowers “Social Sourcing” - incentivising formation of ad-hoc social networks that allow customers, fans and supporters to be compensated for helping businesses grow - finding target audiences that achieve business results.", + "website": "https://2key.network", + "explorer": "https://etherscan.io/token/0xE48972fCd82a274411c01834e2f031D4377Fa2c0", + "status": "active", + "id": "0xE48972fCd82a274411c01834e2f031D4377Fa2c0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE48972fCd82a274411c01834e2f031D4377Fa2c0/logo.png b/blockchains/ethereum/assets/0xE48972fCd82a274411c01834e2f031D4377Fa2c0/logo.png new file mode 100644 index 00000000..9c2d9f5d Binary files /dev/null and b/blockchains/ethereum/assets/0xE48972fCd82a274411c01834e2f031D4377Fa2c0/logo.png differ diff --git a/blockchains/ethereum/assets/0xE4D1b71d62B46cfE007bF9Df612d8692da246b2B/info.json b/blockchains/ethereum/assets/0xE4D1b71d62B46cfE007bF9Df612d8692da246b2B/info.json new file mode 100644 index 00000000..2e0faeae --- /dev/null +++ b/blockchains/ethereum/assets/0xE4D1b71d62B46cfE007bF9Df612d8692da246b2B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Custom Coin", + "symbol": "CC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE4D1b71d62B46cfE007bF9Df612d8692da246b2B", + "status": "abandoned", + "id": "0xE4D1b71d62B46cfE007bF9Df612d8692da246b2B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE4D1b71d62B46cfE007bF9Df612d8692da246b2B/logo.png b/blockchains/ethereum/assets/0xE4D1b71d62B46cfE007bF9Df612d8692da246b2B/logo.png new file mode 100644 index 00000000..8e0e40fc Binary files /dev/null and b/blockchains/ethereum/assets/0xE4D1b71d62B46cfE007bF9Df612d8692da246b2B/logo.png differ diff --git a/blockchains/ethereum/assets/0xE4E2DAf5F7F0C1c35DF922C5d9340913EDECC8e8/info.json b/blockchains/ethereum/assets/0xE4E2DAf5F7F0C1c35DF922C5d9340913EDECC8e8/info.json new file mode 100644 index 00000000..aa9df3fe --- /dev/null +++ b/blockchains/ethereum/assets/0xE4E2DAf5F7F0C1c35DF922C5d9340913EDECC8e8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mnoer", + "symbol": "MNR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE4E2DAf5F7F0C1c35DF922C5d9340913EDECC8e8", + "status": "abandoned", + "id": "0xE4E2DAf5F7F0C1c35DF922C5d9340913EDECC8e8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE4E2DAf5F7F0C1c35DF922C5d9340913EDECC8e8/logo.png b/blockchains/ethereum/assets/0xE4E2DAf5F7F0C1c35DF922C5d9340913EDECC8e8/logo.png new file mode 100644 index 00000000..75db11b9 Binary files /dev/null and b/blockchains/ethereum/assets/0xE4E2DAf5F7F0C1c35DF922C5d9340913EDECC8e8/logo.png differ diff --git a/blockchains/ethereum/assets/0xE4F356EcCe6FbDA81eCDea2E38527e59422861C2/info.json b/blockchains/ethereum/assets/0xE4F356EcCe6FbDA81eCDea2E38527e59422861C2/info.json new file mode 100644 index 00000000..980fc07d --- /dev/null +++ b/blockchains/ethereum/assets/0xE4F356EcCe6FbDA81eCDea2E38527e59422861C2/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitStash", + "symbol": "STASH", + "type": "ERC20", + "decimals": 8, + "description": "The BitStash (STASH) token is an asset used for trading on the BitStash Blockchain saving time and money on gas fees. By enabling cross-blockchain swaps BitStash is not only used for transactions as a payable token but also provides a open DeFi platform.", + "website": "https://bitstash.co/", + "explorer": "https://etherscan.io/token/0xE4F356EcCe6FbDA81eCDea2E38527e59422861C2", + "status": "active", + "id": "0xE4F356EcCe6FbDA81eCDea2E38527e59422861C2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE4F356EcCe6FbDA81eCDea2E38527e59422861C2/logo.png b/blockchains/ethereum/assets/0xE4F356EcCe6FbDA81eCDea2E38527e59422861C2/logo.png new file mode 100644 index 00000000..1f6327ba Binary files /dev/null and b/blockchains/ethereum/assets/0xE4F356EcCe6FbDA81eCDea2E38527e59422861C2/logo.png differ diff --git a/blockchains/ethereum/assets/0xE4babaa960bA7D37860f3fe00D7b95D3868e8EDc/info.json b/blockchains/ethereum/assets/0xE4babaa960bA7D37860f3fe00D7b95D3868e8EDc/info.json new file mode 100644 index 00000000..925b646a --- /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 00000000..c530871f Binary files /dev/null and b/blockchains/ethereum/assets/0xE4babaa960bA7D37860f3fe00D7b95D3868e8EDc/logo.png differ diff --git a/blockchains/ethereum/assets/0xE4f81cCaB9FC644409342eB5D19432b7522d7012/info.json b/blockchains/ethereum/assets/0xE4f81cCaB9FC644409342eB5D19432b7522d7012/info.json new file mode 100644 index 00000000..7c8f13c7 --- /dev/null +++ b/blockchains/ethereum/assets/0xE4f81cCaB9FC644409342eB5D19432b7522d7012/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bazooka TOKEN", + "symbol": "BAZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE4f81cCaB9FC644409342eB5D19432b7522d7012", + "status": "abandoned", + "id": "0xE4f81cCaB9FC644409342eB5D19432b7522d7012" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE4f81cCaB9FC644409342eB5D19432b7522d7012/logo.png b/blockchains/ethereum/assets/0xE4f81cCaB9FC644409342eB5D19432b7522d7012/logo.png new file mode 100644 index 00000000..7a9565e1 Binary files /dev/null and b/blockchains/ethereum/assets/0xE4f81cCaB9FC644409342eB5D19432b7522d7012/logo.png differ diff --git a/blockchains/ethereum/assets/0xE50365f5D679CB98a1dd62D6F6e58e59321BcdDf/info.json b/blockchains/ethereum/assets/0xE50365f5D679CB98a1dd62D6F6e58e59321BcdDf/info.json new file mode 100644 index 00000000..4446f967 --- /dev/null +++ b/blockchains/ethereum/assets/0xE50365f5D679CB98a1dd62D6F6e58e59321BcdDf/info.json @@ -0,0 +1,11 @@ +{ + "name": "LAToken", + "symbol": "LAToken", + "type": "ERC20", + "decimals": 18, + "description": "LATOKEN aims to transform access to capital, and enables cryptocurrencies to be widely used in the real economy by making real assets tradable in crypto.", + "website": "https://latoken.com/", + "explorer": "https://etherscan.io/token/0xE50365f5D679CB98a1dd62D6F6e58e59321BcdDf", + "status": "active", + "id": "0xE50365f5D679CB98a1dd62D6F6e58e59321BcdDf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE50365f5D679CB98a1dd62D6F6e58e59321BcdDf/logo.png b/blockchains/ethereum/assets/0xE50365f5D679CB98a1dd62D6F6e58e59321BcdDf/logo.png new file mode 100644 index 00000000..4296ac98 Binary files /dev/null and b/blockchains/ethereum/assets/0xE50365f5D679CB98a1dd62D6F6e58e59321BcdDf/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5108bf6425D408df9d2C2909e77ca96a682E62B/info.json b/blockchains/ethereum/assets/0xE5108bf6425D408df9d2C2909e77ca96a682E62B/info.json new file mode 100644 index 00000000..894bf145 --- /dev/null +++ b/blockchains/ethereum/assets/0xE5108bf6425D408df9d2C2909e77ca96a682E62B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Algo Hedge Fund", + "symbol": "AHF", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE5108bf6425D408df9d2C2909e77ca96a682E62B", + "status": "abandoned", + "id": "0xE5108bf6425D408df9d2C2909e77ca96a682E62B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5108bf6425D408df9d2C2909e77ca96a682E62B/logo.png b/blockchains/ethereum/assets/0xE5108bf6425D408df9d2C2909e77ca96a682E62B/logo.png new file mode 100644 index 00000000..5a81e09e Binary files /dev/null and b/blockchains/ethereum/assets/0xE5108bf6425D408df9d2C2909e77ca96a682E62B/logo.png differ diff --git a/blockchains/ethereum/assets/0xE51601f59A610DAc06868aa711A05e9a4e291256/info.json b/blockchains/ethereum/assets/0xE51601f59A610DAc06868aa711A05e9a4e291256/info.json new file mode 100644 index 00000000..8fcaf848 --- /dev/null +++ b/blockchains/ethereum/assets/0xE51601f59A610DAc06868aa711A05e9a4e291256/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueGoldCoin", + "symbol": "TGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE51601f59A610DAc06868aa711A05e9a4e291256", + "status": "abandoned", + "id": "0xE51601f59A610DAc06868aa711A05e9a4e291256" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE51601f59A610DAc06868aa711A05e9a4e291256/logo.png b/blockchains/ethereum/assets/0xE51601f59A610DAc06868aa711A05e9a4e291256/logo.png new file mode 100644 index 00000000..3956167c Binary files /dev/null and b/blockchains/ethereum/assets/0xE51601f59A610DAc06868aa711A05e9a4e291256/logo.png differ diff --git a/blockchains/ethereum/assets/0xE51bA774ebF6392c45Bf1d9E6b334d07992460d3/info.json b/blockchains/ethereum/assets/0xE51bA774ebF6392c45Bf1d9E6b334d07992460d3/info.json new file mode 100644 index 00000000..2bc093ad --- /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 00000000..5b23d9aa 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 new file mode 100644 index 00000000..86dc8081 --- /dev/null +++ b/blockchains/ethereum/assets/0xE51f24B251430A6e615f66e0d3c3A97c442aB38C/info.json @@ -0,0 +1,21 @@ +{ + "name": "ART Token", + "website": "https://arttoken.io/", + "description": "The $ART Token is a platform-independent Token for the art community. $ART is a Governance Token and backed by digital artworks.", + "explorer": "https://etherscan.io/token/0xE51f24B251430A6e615f66e0d3c3A97c442aB38C", + "type": "ERC20", + "symbol": "ART", + "decimals": 18, + "status": "active", + "id": "0xE51f24B251430A6e615f66e0d3c3A97c442aB38C", + "links": [ + { + "name": "x", + "url": "https://x.com/$ART" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Drg4y5j" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE51f24B251430A6e615f66e0d3c3A97c442aB38C/logo.png b/blockchains/ethereum/assets/0xE51f24B251430A6e615f66e0d3c3A97c442aB38C/logo.png new file mode 100644 index 00000000..ff8eddae Binary files /dev/null and b/blockchains/ethereum/assets/0xE51f24B251430A6e615f66e0d3c3A97c442aB38C/logo.png differ diff --git a/blockchains/ethereum/assets/0xE525047aD468F807aa33a4BbE7b1E084Da56eA16/info.json b/blockchains/ethereum/assets/0xE525047aD468F807aa33a4BbE7b1E084Da56eA16/info.json new file mode 100644 index 00000000..10c695bf --- /dev/null +++ b/blockchains/ethereum/assets/0xE525047aD468F807aa33a4BbE7b1E084Da56eA16/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRYPTODUBAI", + "symbol": "CDUB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE525047aD468F807aa33a4BbE7b1E084Da56eA16", + "status": "abandoned", + "id": "0xE525047aD468F807aa33a4BbE7b1E084Da56eA16" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE525047aD468F807aa33a4BbE7b1E084Da56eA16/logo.png b/blockchains/ethereum/assets/0xE525047aD468F807aa33a4BbE7b1E084Da56eA16/logo.png new file mode 100755 index 00000000..323917ff Binary files /dev/null and b/blockchains/ethereum/assets/0xE525047aD468F807aa33a4BbE7b1E084Da56eA16/logo.png differ diff --git a/blockchains/ethereum/assets/0xE52e75e8a97546f40991b489E92c68eBb386dc97/info.json b/blockchains/ethereum/assets/0xE52e75e8a97546f40991b489E92c68eBb386dc97/info.json new file mode 100644 index 00000000..a76d5627 --- /dev/null +++ b/blockchains/ethereum/assets/0xE52e75e8a97546f40991b489E92c68eBb386dc97/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETHPAY", + "symbol": "ETHPAY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE52e75e8a97546f40991b489E92c68eBb386dc97", + "status": "abandoned", + "id": "0xE52e75e8a97546f40991b489E92c68eBb386dc97" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE52e75e8a97546f40991b489E92c68eBb386dc97/logo.png b/blockchains/ethereum/assets/0xE52e75e8a97546f40991b489E92c68eBb386dc97/logo.png new file mode 100644 index 00000000..1d43a617 Binary files /dev/null and b/blockchains/ethereum/assets/0xE52e75e8a97546f40991b489E92c68eBb386dc97/logo.png differ diff --git a/blockchains/ethereum/assets/0xE531642e9bb5d027E9C20E03284287B97919a9a5/info.json b/blockchains/ethereum/assets/0xE531642e9bb5d027E9C20E03284287B97919a9a5/info.json new file mode 100644 index 00000000..9ce66a46 --- /dev/null +++ b/blockchains/ethereum/assets/0xE531642e9bb5d027E9C20E03284287B97919a9a5/info.json @@ -0,0 +1,11 @@ +{ + "name": "FaithCoin", + "symbol": "FAITH", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://myfaithcoin.info/", + "explorer": "https://etherscan.io/token/0xE531642e9bb5d027E9C20E03284287B97919a9a5", + "status": "abandoned", + "id": "0xE531642e9bb5d027E9C20E03284287B97919a9a5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE531642e9bb5d027E9C20E03284287B97919a9a5/logo.png b/blockchains/ethereum/assets/0xE531642e9bb5d027E9C20E03284287B97919a9a5/logo.png new file mode 100755 index 00000000..e09c9eb8 Binary files /dev/null and b/blockchains/ethereum/assets/0xE531642e9bb5d027E9C20E03284287B97919a9a5/logo.png differ diff --git a/blockchains/ethereum/assets/0xE534619dEFDBF0cAf673b8AbF7158714F5BD4bd9/info.json b/blockchains/ethereum/assets/0xE534619dEFDBF0cAf673b8AbF7158714F5BD4bd9/info.json new file mode 100644 index 00000000..fffb33f1 --- /dev/null +++ b/blockchains/ethereum/assets/0xE534619dEFDBF0cAf673b8AbF7158714F5BD4bd9/info.json @@ -0,0 +1,11 @@ +{ + "name": "TokenFans Token", + "symbol": "TFT", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE534619dEFDBF0cAf673b8AbF7158714F5BD4bd9", + "status": "spam", + "id": "0xE534619dEFDBF0cAf673b8AbF7158714F5BD4bd9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE534619dEFDBF0cAf673b8AbF7158714F5BD4bd9/logo.png b/blockchains/ethereum/assets/0xE534619dEFDBF0cAf673b8AbF7158714F5BD4bd9/logo.png new file mode 100644 index 00000000..1cf175a4 Binary files /dev/null and b/blockchains/ethereum/assets/0xE534619dEFDBF0cAf673b8AbF7158714F5BD4bd9/logo.png differ diff --git a/blockchains/ethereum/assets/0xE54B3458C47E44C37a267E7C633AFEF88287C294/info.json b/blockchains/ethereum/assets/0xE54B3458C47E44C37a267E7C633AFEF88287C294/info.json new file mode 100644 index 00000000..de7c7ac2 --- /dev/null +++ b/blockchains/ethereum/assets/0xE54B3458C47E44C37a267E7C633AFEF88287C294/info.json @@ -0,0 +1,11 @@ +{ + "name": "ArtFinity", + "symbol": "AT", + "type": "ERC20", + "decimals": 5, + "description": "Artfinity describes itself as an art traceability and security monitoring system based on blockchain technology.", + "website": "http://www.jueyi.art", + "explorer": "https://etherscan.io/token/0xE54B3458C47E44C37a267E7C633AFEF88287C294", + "status": "active", + "id": "0xE54B3458C47E44C37a267E7C633AFEF88287C294" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE54B3458C47E44C37a267E7C633AFEF88287C294/logo.png b/blockchains/ethereum/assets/0xE54B3458C47E44C37a267E7C633AFEF88287C294/logo.png new file mode 100644 index 00000000..041d59d7 Binary files /dev/null and b/blockchains/ethereum/assets/0xE54B3458C47E44C37a267E7C633AFEF88287C294/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5812e47F717EF86101FCBF0D082CC29FEb8Ae8C/info.json b/blockchains/ethereum/assets/0xE5812e47F717EF86101FCBF0D082CC29FEb8Ae8C/info.json new file mode 100644 index 00000000..2a9dca14 --- /dev/null +++ b/blockchains/ethereum/assets/0xE5812e47F717EF86101FCBF0D082CC29FEb8Ae8C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Armors Token", + "symbol": "ARM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE5812e47F717EF86101FCBF0D082CC29FEb8Ae8C", + "status": "abandoned", + "id": "0xE5812e47F717EF86101FCBF0D082CC29FEb8Ae8C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5812e47F717EF86101FCBF0D082CC29FEb8Ae8C/logo.png b/blockchains/ethereum/assets/0xE5812e47F717EF86101FCBF0D082CC29FEb8Ae8C/logo.png new file mode 100644 index 00000000..e6768037 Binary files /dev/null and b/blockchains/ethereum/assets/0xE5812e47F717EF86101FCBF0D082CC29FEb8Ae8C/logo.png differ diff --git a/blockchains/ethereum/assets/0xE58E751abA3B9406367B5F3CbC39c2Fa9B519789/info.json b/blockchains/ethereum/assets/0xE58E751abA3B9406367B5F3CbC39c2Fa9B519789/info.json new file mode 100644 index 00000000..44676f58 --- /dev/null +++ b/blockchains/ethereum/assets/0xE58E751abA3B9406367B5F3CbC39c2Fa9B519789/info.json @@ -0,0 +1,11 @@ +{ + "explorer": "https://etherscan.io/token/0xE58E751abA3B9406367B5F3CbC39c2Fa9B519789", + "name": "EXOLOVER", + "website": "https://exolover.io", + "description": "EXOLOVER (EXO) is a utility token for services within EXOLOVER platform.", + "type": "ERC20", + "symbol": "EXO", + "decimals": 18, + "status": "active", + "id": "0xE58E751abA3B9406367B5F3CbC39c2Fa9B519789" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE58E751abA3B9406367B5F3CbC39c2Fa9B519789/logo.png b/blockchains/ethereum/assets/0xE58E751abA3B9406367B5F3CbC39c2Fa9B519789/logo.png new file mode 100644 index 00000000..366a8cb6 Binary files /dev/null and b/blockchains/ethereum/assets/0xE58E751abA3B9406367B5F3CbC39c2Fa9B519789/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5A8aB888Fd1c2868a562BBF0FC18A8a8d20d7F4/info.json b/blockchains/ethereum/assets/0xE5A8aB888Fd1c2868a562BBF0FC18A8a8d20d7F4/info.json new file mode 100644 index 00000000..72dfd270 --- /dev/null +++ b/blockchains/ethereum/assets/0xE5A8aB888Fd1c2868a562BBF0FC18A8a8d20d7F4/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R860910", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE5A8aB888Fd1c2868a562BBF0FC18A8a8d20d7F4", + "status": "abandoned", + "id": "0xE5A8aB888Fd1c2868a562BBF0FC18A8a8d20d7F4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5A8aB888Fd1c2868a562BBF0FC18A8a8d20d7F4/logo.png b/blockchains/ethereum/assets/0xE5A8aB888Fd1c2868a562BBF0FC18A8a8d20d7F4/logo.png new file mode 100755 index 00000000..104453ab Binary files /dev/null and b/blockchains/ethereum/assets/0xE5A8aB888Fd1c2868a562BBF0FC18A8a8d20d7F4/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5B826Ca2Ca02F09c1725e9bd98d9a8874C30532/info.json b/blockchains/ethereum/assets/0xE5B826Ca2Ca02F09c1725e9bd98d9a8874C30532/info.json new file mode 100644 index 00000000..ff980557 --- /dev/null +++ b/blockchains/ethereum/assets/0xE5B826Ca2Ca02F09c1725e9bd98d9a8874C30532/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZEON", + "website": "https://zeon.network", + "description": "ZEON Network bills itself as a decentralized platform for financial services.", + "explorer": "https://etherscan.io/token/0xE5B826Ca2Ca02F09c1725e9bd98d9a8874C30532", + "type": "ERC20", + "symbol": "ZEON", + "decimals": 18, + "status": "active", + "id": "0xE5B826Ca2Ca02F09c1725e9bd98d9a8874C30532" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5B826Ca2Ca02F09c1725e9bd98d9a8874C30532/logo.png b/blockchains/ethereum/assets/0xE5B826Ca2Ca02F09c1725e9bd98d9a8874C30532/logo.png new file mode 100755 index 00000000..57a19284 Binary files /dev/null and b/blockchains/ethereum/assets/0xE5B826Ca2Ca02F09c1725e9bd98d9a8874C30532/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5Bd12178910c928B69CD090b18D4B981f1150dc/info.json b/blockchains/ethereum/assets/0xE5Bd12178910c928B69CD090b18D4B981f1150dc/info.json new file mode 100644 index 00000000..16a7374e --- /dev/null +++ b/blockchains/ethereum/assets/0xE5Bd12178910c928B69CD090b18D4B981f1150dc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long WBTC-DAI 2x v2", + "symbol": "dLWBTC2x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE5Bd12178910c928B69CD090b18D4B981f1150dc", + "status": "abandoned", + "id": "0xE5Bd12178910c928B69CD090b18D4B981f1150dc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5Bd12178910c928B69CD090b18D4B981f1150dc/logo.png b/blockchains/ethereum/assets/0xE5Bd12178910c928B69CD090b18D4B981f1150dc/logo.png new file mode 100644 index 00000000..7696ddcb Binary files /dev/null and b/blockchains/ethereum/assets/0xE5Bd12178910c928B69CD090b18D4B981f1150dc/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5CAeF4Af8780E59Df925470b050Fb23C43CA68C/info.json b/blockchains/ethereum/assets/0xE5CAeF4Af8780E59Df925470b050Fb23C43CA68C/info.json new file mode 100644 index 00000000..be97e7eb --- /dev/null +++ b/blockchains/ethereum/assets/0xE5CAeF4Af8780E59Df925470b050Fb23C43CA68C/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://etherscan.io/token/0xE5CAeF4Af8780E59Df925470b050Fb23C43CA68C", + "type": "ERC20", + "symbol": "FRM", + "decimals": 6, + "status": "active", + "id": "0xE5CAeF4Af8780E59Df925470b050Fb23C43CA68C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5CAeF4Af8780E59Df925470b050Fb23C43CA68C/logo.png b/blockchains/ethereum/assets/0xE5CAeF4Af8780E59Df925470b050Fb23C43CA68C/logo.png new file mode 100755 index 00000000..2053bae1 Binary files /dev/null and b/blockchains/ethereum/assets/0xE5CAeF4Af8780E59Df925470b050Fb23C43CA68C/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5D3CBEe3C4dAcf69f7B35e0d1C5170fc92F3843/info.json b/blockchains/ethereum/assets/0xE5D3CBEe3C4dAcf69f7B35e0d1C5170fc92F3843/info.json new file mode 100644 index 00000000..1d72af42 --- /dev/null +++ b/blockchains/ethereum/assets/0xE5D3CBEe3C4dAcf69f7B35e0d1C5170fc92F3843/info.json @@ -0,0 +1,11 @@ +{ + "name": "Scarcity Token", + "symbol": "SCAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE5D3CBEe3C4dAcf69f7B35e0d1C5170fc92F3843", + "status": "abandoned", + "id": "0xE5D3CBEe3C4dAcf69f7B35e0d1C5170fc92F3843" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5D3CBEe3C4dAcf69f7B35e0d1C5170fc92F3843/logo.png b/blockchains/ethereum/assets/0xE5D3CBEe3C4dAcf69f7B35e0d1C5170fc92F3843/logo.png new file mode 100644 index 00000000..94ed29c8 Binary files /dev/null and b/blockchains/ethereum/assets/0xE5D3CBEe3C4dAcf69f7B35e0d1C5170fc92F3843/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5Dada80Aa6477e85d09747f2842f7993D0Df71C/info.json b/blockchains/ethereum/assets/0xE5Dada80Aa6477e85d09747f2842f7993D0Df71C/info.json new file mode 100644 index 00000000..ec02b995 --- /dev/null +++ b/blockchains/ethereum/assets/0xE5Dada80Aa6477e85d09747f2842f7993D0Df71C/info.json @@ -0,0 +1,11 @@ +{ + "name": "DockToken", + "symbol": "DOCK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://dock.io", + "explorer": "https://etherscan.io/token/0xE5Dada80Aa6477e85d09747f2842f7993D0Df71C", + "status": "abandoned", + "id": "0xE5Dada80Aa6477e85d09747f2842f7993D0Df71C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5Dada80Aa6477e85d09747f2842f7993D0Df71C/logo.png b/blockchains/ethereum/assets/0xE5Dada80Aa6477e85d09747f2842f7993D0Df71C/logo.png new file mode 100755 index 00000000..92f619f1 Binary files /dev/null and b/blockchains/ethereum/assets/0xE5Dada80Aa6477e85d09747f2842f7993D0Df71C/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5a3229CCb22b6484594973A03a3851dCd948756/info.json b/blockchains/ethereum/assets/0xE5a3229CCb22b6484594973A03a3851dCd948756/info.json new file mode 100644 index 00000000..77fa1462 --- /dev/null +++ b/blockchains/ethereum/assets/0xE5a3229CCb22b6484594973A03a3851dCd948756/info.json @@ -0,0 +1,11 @@ +{ + "name": "RAE Token", + "symbol": "RAE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.raetoken.org/", + "explorer": "https://etherscan.io/token/0xE5a3229CCb22b6484594973A03a3851dCd948756", + "status": "abandoned", + "id": "0xE5a3229CCb22b6484594973A03a3851dCd948756" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5a3229CCb22b6484594973A03a3851dCd948756/logo.png b/blockchains/ethereum/assets/0xE5a3229CCb22b6484594973A03a3851dCd948756/logo.png new file mode 100644 index 00000000..dcffc694 Binary files /dev/null and b/blockchains/ethereum/assets/0xE5a3229CCb22b6484594973A03a3851dCd948756/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5aeE163513119F4F750376C718766B40fA37A5F/info.json b/blockchains/ethereum/assets/0xE5aeE163513119F4F750376C718766B40fA37A5F/info.json new file mode 100644 index 00000000..e8746ca2 --- /dev/null +++ b/blockchains/ethereum/assets/0xE5aeE163513119F4F750376C718766B40fA37A5F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Frozencoin Network", + "symbol": "Fzcoin", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://fzcoin.cc/", + "explorer": "https://etherscan.io/token/0xE5aeE163513119F4F750376C718766B40fA37A5F", + "status": "abandoned", + "id": "0xE5aeE163513119F4F750376C718766B40fA37A5F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5aeE163513119F4F750376C718766B40fA37A5F/logo.png b/blockchains/ethereum/assets/0xE5aeE163513119F4F750376C718766B40fA37A5F/logo.png new file mode 100755 index 00000000..65ca61c0 Binary files /dev/null and b/blockchains/ethereum/assets/0xE5aeE163513119F4F750376C718766B40fA37A5F/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5dB5128935e3a8a8eAEABe4577Fac2b353aE9fA/info.json b/blockchains/ethereum/assets/0xE5dB5128935e3a8a8eAEABe4577Fac2b353aE9fA/info.json new file mode 100644 index 00000000..35bcd0fd --- /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 00000000..172de7af Binary files /dev/null and b/blockchains/ethereum/assets/0xE5dB5128935e3a8a8eAEABe4577Fac2b353aE9fA/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5e7695964B3dDef08aFc666c615Fe2Ef1B16B0b/info.json b/blockchains/ethereum/assets/0xE5e7695964B3dDef08aFc666c615Fe2Ef1B16B0b/info.json new file mode 100644 index 00000000..0719eca8 --- /dev/null +++ b/blockchains/ethereum/assets/0xE5e7695964B3dDef08aFc666c615Fe2Ef1B16B0b/info.json @@ -0,0 +1,11 @@ +{ + "name": "GaeaToken", + "symbol": "GAEA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE5e7695964B3dDef08aFc666c615Fe2Ef1B16B0b", + "status": "abandoned", + "id": "0xE5e7695964B3dDef08aFc666c615Fe2Ef1B16B0b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5e7695964B3dDef08aFc666c615Fe2Ef1B16B0b/logo.png b/blockchains/ethereum/assets/0xE5e7695964B3dDef08aFc666c615Fe2Ef1B16B0b/logo.png new file mode 100644 index 00000000..c2959f80 Binary files /dev/null and b/blockchains/ethereum/assets/0xE5e7695964B3dDef08aFc666c615Fe2Ef1B16B0b/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5f55a3b74874531a99359b833b92866A6609f6B/info.json b/blockchains/ethereum/assets/0xE5f55a3b74874531a99359b833b92866A6609f6B/info.json new file mode 100644 index 00000000..7a1c0d20 --- /dev/null +++ b/blockchains/ethereum/assets/0xE5f55a3b74874531a99359b833b92866A6609f6B/info.json @@ -0,0 +1,11 @@ +{ + "name": "All The Smoke", + "symbol": "ATS", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE5f55a3b74874531a99359b833b92866A6609f6B", + "status": "abandoned", + "id": "0xE5f55a3b74874531a99359b833b92866A6609f6B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5f55a3b74874531a99359b833b92866A6609f6B/logo.png b/blockchains/ethereum/assets/0xE5f55a3b74874531a99359b833b92866A6609f6B/logo.png new file mode 100644 index 00000000..0916f19e Binary files /dev/null and b/blockchains/ethereum/assets/0xE5f55a3b74874531a99359b833b92866A6609f6B/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json b/blockchains/ethereum/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json new file mode 100644 index 00000000..05fd9e8f --- /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 00000000..a0ca86f1 Binary files /dev/null and b/blockchains/ethereum/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5f7ef61443Fc36AE040650aa585B0395AEf77c8/info.json b/blockchains/ethereum/assets/0xE5f7ef61443Fc36AE040650aa585B0395AEf77c8/info.json new file mode 100644 index 00000000..a609747d --- /dev/null +++ b/blockchains/ethereum/assets/0xE5f7ef61443Fc36AE040650aa585B0395AEf77c8/info.json @@ -0,0 +1,11 @@ +{ + "name": "RealToken 9943 Marlowe Street Detroit MI", + "symbol": "REALTOKEN-9943-MARLOWE-ST-DETROIT-MI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://realt.co/product/9943-marlowe-st-detroit-mi-48227", + "explorer": "https://etherscan.io/token/0xE5f7ef61443Fc36AE040650aa585B0395AEf77c8", + "status": "abandoned", + "id": "0xE5f7ef61443Fc36AE040650aa585B0395AEf77c8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5f7ef61443Fc36AE040650aa585B0395AEf77c8/logo.png b/blockchains/ethereum/assets/0xE5f7ef61443Fc36AE040650aa585B0395AEf77c8/logo.png new file mode 100644 index 00000000..4617b23e Binary files /dev/null and b/blockchains/ethereum/assets/0xE5f7ef61443Fc36AE040650aa585B0395AEf77c8/logo.png differ diff --git a/blockchains/ethereum/assets/0xE5f867dE1EA81346df5181b8b48DD6B0BB3357B0/info.json b/blockchains/ethereum/assets/0xE5f867dE1EA81346df5181b8b48DD6B0BB3357B0/info.json new file mode 100644 index 00000000..082b94fd --- /dev/null +++ b/blockchains/ethereum/assets/0xE5f867dE1EA81346df5181b8b48DD6B0BB3357B0/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTZ by Bunz", + "symbol": "BTZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE5f867dE1EA81346df5181b8b48DD6B0BB3357B0", + "status": "abandoned", + "id": "0xE5f867dE1EA81346df5181b8b48DD6B0BB3357B0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE5f867dE1EA81346df5181b8b48DD6B0BB3357B0/logo.png b/blockchains/ethereum/assets/0xE5f867dE1EA81346df5181b8b48DD6B0BB3357B0/logo.png new file mode 100755 index 00000000..7be95196 Binary files /dev/null and b/blockchains/ethereum/assets/0xE5f867dE1EA81346df5181b8b48DD6B0BB3357B0/logo.png differ diff --git a/blockchains/ethereum/assets/0xE617dd80c621a5072bD8cBa65E9d76c07327004d/info.json b/blockchains/ethereum/assets/0xE617dd80c621a5072bD8cBa65E9d76c07327004d/info.json new file mode 100644 index 00000000..381834e2 --- /dev/null +++ b/blockchains/ethereum/assets/0xE617dd80c621a5072bD8cBa65E9d76c07327004d/info.json @@ -0,0 +1,14 @@ +{ + "name": "Raydium (Portal)", + "type": "ERC20", + "symbol": "RAY", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://raydium.io/", + "explorer": "https://etherscan.io/token/0xE617dd80c621a5072bD8cBa65E9d76c07327004d", + "status": "active", + "id": "0xE617dd80c621a5072bD8cBa65E9d76c07327004d", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE617dd80c621a5072bD8cBa65E9d76c07327004d/logo.png b/blockchains/ethereum/assets/0xE617dd80c621a5072bD8cBa65E9d76c07327004d/logo.png new file mode 100644 index 00000000..cd42f718 Binary files /dev/null and b/blockchains/ethereum/assets/0xE617dd80c621a5072bD8cBa65E9d76c07327004d/logo.png differ diff --git a/blockchains/ethereum/assets/0xE61fDAF474Fac07063f2234Fb9e60C1163Cfa850/info.json b/blockchains/ethereum/assets/0xE61fDAF474Fac07063f2234Fb9e60C1163Cfa850/info.json new file mode 100644 index 00000000..d3b0e561 --- /dev/null +++ b/blockchains/ethereum/assets/0xE61fDAF474Fac07063f2234Fb9e60C1163Cfa850/info.json @@ -0,0 +1,11 @@ +{ + "name": "COIN", + "type": "ERC20", + "symbol": "COIN", + "decimals": 18, + "website": "https://coindefi.org", + "description": "Coin is a global online digital decentralized network comprised of protocols, smart contracts, dApps, and services that help facilitate the transfer of value across the Internet. It seeks to create an open financial system composed of decentralized solutions that empower consumers to execute financial transactions with freedom and simplicity.", + "explorer": "https://etherscan.io/token/0xE61fDAF474Fac07063f2234Fb9e60C1163Cfa850", + "status": "active", + "id": "0xE61fDAF474Fac07063f2234Fb9e60C1163Cfa850" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE61fDAF474Fac07063f2234Fb9e60C1163Cfa850/logo.png b/blockchains/ethereum/assets/0xE61fDAF474Fac07063f2234Fb9e60C1163Cfa850/logo.png new file mode 100644 index 00000000..e5adb54f Binary files /dev/null and b/blockchains/ethereum/assets/0xE61fDAF474Fac07063f2234Fb9e60C1163Cfa850/logo.png differ diff --git a/blockchains/ethereum/assets/0xE6279E1c65DD41b30bA3760DCaC3CD8bbb4420D6/info.json b/blockchains/ethereum/assets/0xE6279E1c65DD41b30bA3760DCaC3CD8bbb4420D6/info.json new file mode 100644 index 00000000..374bc8c1 --- /dev/null +++ b/blockchains/ethereum/assets/0xE6279E1c65DD41b30bA3760DCaC3CD8bbb4420D6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rebased", + "symbol": "REB", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "https://rebased.fi/", + "explorer": "https://etherscan.io/token/0xE6279E1c65DD41b30bA3760DCaC3CD8bbb4420D6", + "status": "abandoned", + "id": "0xE6279E1c65DD41b30bA3760DCaC3CD8bbb4420D6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE6279E1c65DD41b30bA3760DCaC3CD8bbb4420D6/logo.png b/blockchains/ethereum/assets/0xE6279E1c65DD41b30bA3760DCaC3CD8bbb4420D6/logo.png new file mode 100644 index 00000000..e90a58ee Binary files /dev/null and b/blockchains/ethereum/assets/0xE6279E1c65DD41b30bA3760DCaC3CD8bbb4420D6/logo.png differ diff --git a/blockchains/ethereum/assets/0xE63684BcF2987892CEfB4caA79BD21b34e98A291/info.json b/blockchains/ethereum/assets/0xE63684BcF2987892CEfB4caA79BD21b34e98A291/info.json new file mode 100644 index 00000000..04dec04f --- /dev/null +++ b/blockchains/ethereum/assets/0xE63684BcF2987892CEfB4caA79BD21b34e98A291/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chicken", + "website": "https://chickenswap.org/#/", + "description": "KFC token has a swap business.", + "explorer": "https://etherscan.io/token/0xE63684BcF2987892CEfB4caA79BD21b34e98A291", + "type": "ERC20", + "symbol": "KFC", + "decimals": 18, + "status": "active", + "id": "0xE63684BcF2987892CEfB4caA79BD21b34e98A291" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE63684BcF2987892CEfB4caA79BD21b34e98A291/logo.png b/blockchains/ethereum/assets/0xE63684BcF2987892CEfB4caA79BD21b34e98A291/logo.png new file mode 100644 index 00000000..08a57739 Binary files /dev/null and b/blockchains/ethereum/assets/0xE63684BcF2987892CEfB4caA79BD21b34e98A291/logo.png differ diff --git a/blockchains/ethereum/assets/0xE638dc39b6aDBEE8526b5C22380b4b45dAf46d8e/info.json b/blockchains/ethereum/assets/0xE638dc39b6aDBEE8526b5C22380b4b45dAf46d8e/info.json new file mode 100644 index 00000000..f6ec2360 --- /dev/null +++ b/blockchains/ethereum/assets/0xE638dc39b6aDBEE8526b5C22380b4b45dAf46d8e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gizer Gaming Token", + "symbol": "GZR", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE638dc39b6aDBEE8526b5C22380b4b45dAf46d8e", + "status": "abandoned", + "id": "0xE638dc39b6aDBEE8526b5C22380b4b45dAf46d8e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE638dc39b6aDBEE8526b5C22380b4b45dAf46d8e/logo.png b/blockchains/ethereum/assets/0xE638dc39b6aDBEE8526b5C22380b4b45dAf46d8e/logo.png new file mode 100755 index 00000000..19b30367 Binary files /dev/null and b/blockchains/ethereum/assets/0xE638dc39b6aDBEE8526b5C22380b4b45dAf46d8e/logo.png differ diff --git a/blockchains/ethereum/assets/0xE63D611B76EE1Ad92Df5153f3e573F7453ca0901/info.json b/blockchains/ethereum/assets/0xE63D611B76EE1Ad92Df5153f3e573F7453ca0901/info.json new file mode 100644 index 00000000..a71da7db --- /dev/null +++ b/blockchains/ethereum/assets/0xE63D611B76EE1Ad92Df5153f3e573F7453ca0901/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short WBTC-DAI 2x v2", + "symbol": "dsWBTC2x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE63D611B76EE1Ad92Df5153f3e573F7453ca0901", + "status": "abandoned", + "id": "0xE63D611B76EE1Ad92Df5153f3e573F7453ca0901" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE63D611B76EE1Ad92Df5153f3e573F7453ca0901/logo.png b/blockchains/ethereum/assets/0xE63D611B76EE1Ad92Df5153f3e573F7453ca0901/logo.png new file mode 100644 index 00000000..e2baf2a9 Binary files /dev/null and b/blockchains/ethereum/assets/0xE63D611B76EE1Ad92Df5153f3e573F7453ca0901/logo.png differ diff --git a/blockchains/ethereum/assets/0xE64509F0bf07ce2d29A7eF19A8A9bc065477C1B4/info.json b/blockchains/ethereum/assets/0xE64509F0bf07ce2d29A7eF19A8A9bc065477C1B4/info.json new file mode 100644 index 00000000..a4a79ef5 --- /dev/null +++ b/blockchains/ethereum/assets/0xE64509F0bf07ce2d29A7eF19A8A9bc065477C1B4/info.json @@ -0,0 +1,11 @@ +{ + "name": "PiplCoin", + "symbol": "PIPL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://piplcoin.com", + "explorer": "https://etherscan.io/token/0xE64509F0bf07ce2d29A7eF19A8A9bc065477C1B4", + "status": "active", + "id": "0xE64509F0bf07ce2d29A7eF19A8A9bc065477C1B4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE64509F0bf07ce2d29A7eF19A8A9bc065477C1B4/logo.png b/blockchains/ethereum/assets/0xE64509F0bf07ce2d29A7eF19A8A9bc065477C1B4/logo.png new file mode 100644 index 00000000..e16e5023 Binary files /dev/null and b/blockchains/ethereum/assets/0xE64509F0bf07ce2d29A7eF19A8A9bc065477C1B4/logo.png differ diff --git a/blockchains/ethereum/assets/0xE65ee7c03Bbb3C950Cfd4895c24989afA233EF01/info.json b/blockchains/ethereum/assets/0xE65ee7c03Bbb3C950Cfd4895c24989afA233EF01/info.json new file mode 100644 index 00000000..2b5afb68 --- /dev/null +++ b/blockchains/ethereum/assets/0xE65ee7c03Bbb3C950Cfd4895c24989afA233EF01/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zynecoin", + "symbol": "ZYN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://zynecoin.io", + "explorer": "https://etherscan.io/token/0xE65ee7c03Bbb3C950Cfd4895c24989afA233EF01", + "status": "abandoned", + "id": "0xE65ee7c03Bbb3C950Cfd4895c24989afA233EF01" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE65ee7c03Bbb3C950Cfd4895c24989afA233EF01/logo.png b/blockchains/ethereum/assets/0xE65ee7c03Bbb3C950Cfd4895c24989afA233EF01/logo.png new file mode 100644 index 00000000..339c0d2b Binary files /dev/null and b/blockchains/ethereum/assets/0xE65ee7c03Bbb3C950Cfd4895c24989afA233EF01/logo.png differ diff --git a/blockchains/ethereum/assets/0xE66747a101bFF2dBA3697199DCcE5b743b454759/info.json b/blockchains/ethereum/assets/0xE66747a101bFF2dBA3697199DCcE5b743b454759/info.json new file mode 100644 index 00000000..d30a5fac --- /dev/null +++ b/blockchains/ethereum/assets/0xE66747a101bFF2dBA3697199DCcE5b743b454759/info.json @@ -0,0 +1,29 @@ +{ + "name": "Gatechain Token", + "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", + "type": "ERC20", + "symbol": "GT", + "decimals": 18, + "status": "active", + "id": "0xE66747a101bFF2dBA3697199DCcE5b743b454759", + "links": [ + { + "name": "github", + "url": "https://github.com/gatechain" + }, + { + "name": "x", + "url": "https://x.com/gatechain_io/photo" + }, + { + "name": "blog", + "url": "https://medium.com/@gatechain" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gatechain-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE66747a101bFF2dBA3697199DCcE5b743b454759/logo.png b/blockchains/ethereum/assets/0xE66747a101bFF2dBA3697199DCcE5b743b454759/logo.png new file mode 100644 index 00000000..1269af44 Binary files /dev/null and b/blockchains/ethereum/assets/0xE66747a101bFF2dBA3697199DCcE5b743b454759/logo.png differ diff --git a/blockchains/ethereum/assets/0xE668e08a6f5792CEF0e63E9D98524968fDB5882f/info.json b/blockchains/ethereum/assets/0xE668e08a6f5792CEF0e63E9D98524968fDB5882f/info.json new file mode 100644 index 00000000..5e81d2e5 --- /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 00000000..4be71cd2 Binary files /dev/null and b/blockchains/ethereum/assets/0xE668e08a6f5792CEF0e63E9D98524968fDB5882f/logo.png differ diff --git a/blockchains/ethereum/assets/0xE66F7261F72861e3399eb15424f2F2A2E976CaB3/info.json b/blockchains/ethereum/assets/0xE66F7261F72861e3399eb15424f2F2A2E976CaB3/info.json new file mode 100644 index 00000000..5a0e5469 --- /dev/null +++ b/blockchains/ethereum/assets/0xE66F7261F72861e3399eb15424f2F2A2E976CaB3/info.json @@ -0,0 +1,11 @@ +{ + "name": "SilverStone", + "symbol": "SSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE66F7261F72861e3399eb15424f2F2A2E976CaB3", + "status": "abandoned", + "id": "0xE66F7261F72861e3399eb15424f2F2A2E976CaB3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE66F7261F72861e3399eb15424f2F2A2E976CaB3/logo.png b/blockchains/ethereum/assets/0xE66F7261F72861e3399eb15424f2F2A2E976CaB3/logo.png new file mode 100644 index 00000000..fa97a48a Binary files /dev/null and b/blockchains/ethereum/assets/0xE66F7261F72861e3399eb15424f2F2A2E976CaB3/logo.png differ diff --git a/blockchains/ethereum/assets/0xE66b3AA360bB78468c00Bebe163630269DB3324F/info.json b/blockchains/ethereum/assets/0xE66b3AA360bB78468c00Bebe163630269DB3324F/info.json new file mode 100644 index 00000000..b7a4fa89 --- /dev/null +++ b/blockchains/ethereum/assets/0xE66b3AA360bB78468c00Bebe163630269DB3324F/info.json @@ -0,0 +1,37 @@ +{ + "name": "Merchant Token (MTO)", + "type": "ERC20", + "symbol": "MTO", + "decimals": 18, + "website": "https://merchanttoken.org", + "description": "DeFi Payment Protocol that enables POS terminals on blockchains and brings consumer protection to crypto payments", + "explorer": "https://etherscan.io/token/0xe66b3aa360bb78468c00bebe163630269db3324f", + "status": "active", + "id": "0xE66b3AA360bB78468c00Bebe163630269DB3324F", + "links": [ + { + "name": "x", + "url": "https://x.com/merchant_token" + }, + { + "name": "github", + "url": "https://github.com/hipspay" + }, + { + "name": "telegram", + "url": "https://t.me/MTOOFFICIAL" + }, + { + "name": "whitepaper", + "url": "https://static.hips.com/pdf/white_paper/merchant_token_white_paper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/merchant-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/merchant-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE66b3AA360bB78468c00Bebe163630269DB3324F/logo.png b/blockchains/ethereum/assets/0xE66b3AA360bB78468c00Bebe163630269DB3324F/logo.png new file mode 100644 index 00000000..900ad4a4 Binary files /dev/null and b/blockchains/ethereum/assets/0xE66b3AA360bB78468c00Bebe163630269DB3324F/logo.png differ diff --git a/blockchains/ethereum/assets/0xE6877ea9C28fBDeC631ffBc087956d0023A76bF2/info.json b/blockchains/ethereum/assets/0xE6877ea9C28fBDeC631ffBc087956d0023A76bF2/info.json new file mode 100644 index 00000000..30274084 --- /dev/null +++ b/blockchains/ethereum/assets/0xE6877ea9C28fBDeC631ffBc087956d0023A76bF2/info.json @@ -0,0 +1,11 @@ +{ + "name": "UNI COIN", + "symbol": "UNI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.uni-c.io/", + "explorer": "https://etherscan.io/token/0xE6877ea9C28fBDeC631ffBc087956d0023A76bF2", + "status": "abandoned", + "id": "0xE6877ea9C28fBDeC631ffBc087956d0023A76bF2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE6877ea9C28fBDeC631ffBc087956d0023A76bF2/logo.png b/blockchains/ethereum/assets/0xE6877ea9C28fBDeC631ffBc087956d0023A76bF2/logo.png new file mode 100644 index 00000000..43956112 Binary files /dev/null and b/blockchains/ethereum/assets/0xE6877ea9C28fBDeC631ffBc087956d0023A76bF2/logo.png differ diff --git a/blockchains/ethereum/assets/0xE689a257e070b13a08104AEb995c95FEe1d87673/info.json b/blockchains/ethereum/assets/0xE689a257e070b13a08104AEb995c95FEe1d87673/info.json new file mode 100644 index 00000000..8edfea78 --- /dev/null +++ b/blockchains/ethereum/assets/0xE689a257e070b13a08104AEb995c95FEe1d87673/info.json @@ -0,0 +1,11 @@ +{ + "name": "DarexTravel", + "symbol": "DART", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE689a257e070b13a08104AEb995c95FEe1d87673", + "status": "abandoned", + "id": "0xE689a257e070b13a08104AEb995c95FEe1d87673" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE689a257e070b13a08104AEb995c95FEe1d87673/logo.png b/blockchains/ethereum/assets/0xE689a257e070b13a08104AEb995c95FEe1d87673/logo.png new file mode 100644 index 00000000..11d3e292 Binary files /dev/null and b/blockchains/ethereum/assets/0xE689a257e070b13a08104AEb995c95FEe1d87673/logo.png differ diff --git a/blockchains/ethereum/assets/0xE68e0B2280f8A254801d39E7A63cc1E66521AAae/info.json b/blockchains/ethereum/assets/0xE68e0B2280f8A254801d39E7A63cc1E66521AAae/info.json new file mode 100644 index 00000000..79da4ce6 --- /dev/null +++ b/blockchains/ethereum/assets/0xE68e0B2280f8A254801d39E7A63cc1E66521AAae/info.json @@ -0,0 +1,11 @@ +{ + "name": "KRISTORIUM GOLD", + "symbol": "KRISTO", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE68e0B2280f8A254801d39E7A63cc1E66521AAae", + "status": "abandoned", + "id": "0xE68e0B2280f8A254801d39E7A63cc1E66521AAae" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE68e0B2280f8A254801d39E7A63cc1E66521AAae/logo.png b/blockchains/ethereum/assets/0xE68e0B2280f8A254801d39E7A63cc1E66521AAae/logo.png new file mode 100644 index 00000000..686874f0 Binary files /dev/null and b/blockchains/ethereum/assets/0xE68e0B2280f8A254801d39E7A63cc1E66521AAae/logo.png differ diff --git a/blockchains/ethereum/assets/0xE68ed880744D3279f7AC25508ea7B5A6f0656848/info.json b/blockchains/ethereum/assets/0xE68ed880744D3279f7AC25508ea7B5A6f0656848/info.json new file mode 100644 index 00000000..553b6c1b --- /dev/null +++ b/blockchains/ethereum/assets/0xE68ed880744D3279f7AC25508ea7B5A6f0656848/info.json @@ -0,0 +1,11 @@ +{ + "name": "V-PALADINI TEST 4", + "symbol": "V", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE68ed880744D3279f7AC25508ea7B5A6f0656848", + "status": "abandoned", + "id": "0xE68ed880744D3279f7AC25508ea7B5A6f0656848" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE68ed880744D3279f7AC25508ea7B5A6f0656848/logo.png b/blockchains/ethereum/assets/0xE68ed880744D3279f7AC25508ea7B5A6f0656848/logo.png new file mode 100644 index 00000000..8eb07a70 Binary files /dev/null and b/blockchains/ethereum/assets/0xE68ed880744D3279f7AC25508ea7B5A6f0656848/logo.png differ diff --git a/blockchains/ethereum/assets/0xE69074db48FAe7E52f0d0Ad975645eaD6Cd2E91B/info.json b/blockchains/ethereum/assets/0xE69074db48FAe7E52f0d0Ad975645eaD6Cd2E91B/info.json new file mode 100644 index 00000000..1c96a300 --- /dev/null +++ b/blockchains/ethereum/assets/0xE69074db48FAe7E52f0d0Ad975645eaD6Cd2E91B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planetagro-Exchange", + "symbol": "AVOCATO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE69074db48FAe7E52f0d0Ad975645eaD6Cd2E91B", + "status": "abandoned", + "id": "0xE69074db48FAe7E52f0d0Ad975645eaD6Cd2E91B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE69074db48FAe7E52f0d0Ad975645eaD6Cd2E91B/logo.png b/blockchains/ethereum/assets/0xE69074db48FAe7E52f0d0Ad975645eaD6Cd2E91B/logo.png new file mode 100644 index 00000000..a0ab99a0 Binary files /dev/null and b/blockchains/ethereum/assets/0xE69074db48FAe7E52f0d0Ad975645eaD6Cd2E91B/logo.png differ diff --git a/blockchains/ethereum/assets/0xE69a353b3152Dd7b706ff7dD40fe1d18b7802d31/info.json b/blockchains/ethereum/assets/0xE69a353b3152Dd7b706ff7dD40fe1d18b7802d31/info.json new file mode 100644 index 00000000..4d42da62 --- /dev/null +++ b/blockchains/ethereum/assets/0xE69a353b3152Dd7b706ff7dD40fe1d18b7802d31/info.json @@ -0,0 +1,11 @@ +{ + "name": "AdHive Token", + "symbol": "ADH", + "type": "ERC20", + "decimals": 18, + "description": "AdHive is the World's first AI-controlled Influencer Marketing platform.", + "website": "https://adhive.tv", + "explorer": "https://etherscan.io/token/0xE69a353b3152Dd7b706ff7dD40fe1d18b7802d31", + "status": "active", + "id": "0xE69a353b3152Dd7b706ff7dD40fe1d18b7802d31" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE69a353b3152Dd7b706ff7dD40fe1d18b7802d31/logo.png b/blockchains/ethereum/assets/0xE69a353b3152Dd7b706ff7dD40fe1d18b7802d31/logo.png new file mode 100644 index 00000000..b5413941 Binary files /dev/null and b/blockchains/ethereum/assets/0xE69a353b3152Dd7b706ff7dD40fe1d18b7802d31/logo.png differ diff --git a/blockchains/ethereum/assets/0xE6B9018365cE008319DF4Dec715E664B3CC93321/info.json b/blockchains/ethereum/assets/0xE6B9018365cE008319DF4Dec715E664B3CC93321/info.json new file mode 100644 index 00000000..21b75b87 --- /dev/null +++ b/blockchains/ethereum/assets/0xE6B9018365cE008319DF4Dec715E664B3CC93321/info.json @@ -0,0 +1,11 @@ +{ + "name": "BoldDax", + "symbol": "BDAX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE6B9018365cE008319DF4Dec715E664B3CC93321", + "status": "abandoned", + "id": "0xE6B9018365cE008319DF4Dec715E664B3CC93321" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE6B9018365cE008319DF4Dec715E664B3CC93321/logo.png b/blockchains/ethereum/assets/0xE6B9018365cE008319DF4Dec715E664B3CC93321/logo.png new file mode 100644 index 00000000..83158832 Binary files /dev/null and b/blockchains/ethereum/assets/0xE6B9018365cE008319DF4Dec715E664B3CC93321/logo.png differ diff --git a/blockchains/ethereum/assets/0xE6F1966d04CfcB9cd1B1dC4E8256D8b501b11CbA/info.json b/blockchains/ethereum/assets/0xE6F1966d04CfcB9cd1B1dC4E8256D8b501b11CbA/info.json new file mode 100644 index 00000000..b72db77a --- /dev/null +++ b/blockchains/ethereum/assets/0xE6F1966d04CfcB9cd1B1dC4E8256D8b501b11CbA/info.json @@ -0,0 +1,21 @@ +{ + "name": "SafeEarth", + "website": "https://safeearthcrypto.com/", + "description": "Autonomous Yield and Liquidity Generation Charity Protocol", + "explorer": "https://etherscan.io/token/0xE6F1966d04CfcB9cd1B1dC4E8256D8b501b11CbA", + "type": "ERC20", + "symbol": "SAFEEARTH", + "decimals": 9, + "status": "active", + "id": "0xE6F1966d04CfcB9cd1B1dC4E8256D8b501b11CbA", + "links": [ + { + "name": "x", + "url": "https://x.com/SafeEarthETH" + }, + { + "name": "telegram", + "url": "https://t.me/SafeEarthETH" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE6F1966d04CfcB9cd1B1dC4E8256D8b501b11CbA/logo.png b/blockchains/ethereum/assets/0xE6F1966d04CfcB9cd1B1dC4E8256D8b501b11CbA/logo.png new file mode 100644 index 00000000..f34551bd Binary files /dev/null and b/blockchains/ethereum/assets/0xE6F1966d04CfcB9cd1B1dC4E8256D8b501b11CbA/logo.png differ diff --git a/blockchains/ethereum/assets/0xE6c2C240E1228980F322D76ed4C1F63078191BB5/info.json b/blockchains/ethereum/assets/0xE6c2C240E1228980F322D76ed4C1F63078191BB5/info.json new file mode 100644 index 00000000..0ad572e9 --- /dev/null +++ b/blockchains/ethereum/assets/0xE6c2C240E1228980F322D76ed4C1F63078191BB5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Basic Income Staking", + "symbol": "BIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE6c2C240E1228980F322D76ed4C1F63078191BB5", + "status": "abandoned", + "id": "0xE6c2C240E1228980F322D76ed4C1F63078191BB5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE6c2C240E1228980F322D76ed4C1F63078191BB5/logo.png b/blockchains/ethereum/assets/0xE6c2C240E1228980F322D76ed4C1F63078191BB5/logo.png new file mode 100644 index 00000000..b8facbcf Binary files /dev/null and b/blockchains/ethereum/assets/0xE6c2C240E1228980F322D76ed4C1F63078191BB5/logo.png differ diff --git a/blockchains/ethereum/assets/0xE6e3BEd476776f3A7017Aa9066a476EaefaD63b7/info.json b/blockchains/ethereum/assets/0xE6e3BEd476776f3A7017Aa9066a476EaefaD63b7/info.json new file mode 100644 index 00000000..663646f3 --- /dev/null +++ b/blockchains/ethereum/assets/0xE6e3BEd476776f3A7017Aa9066a476EaefaD63b7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bloggers Guild Token", + "symbol": "BGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE6e3BEd476776f3A7017Aa9066a476EaefaD63b7", + "status": "abandoned", + "id": "0xE6e3BEd476776f3A7017Aa9066a476EaefaD63b7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE6e3BEd476776f3A7017Aa9066a476EaefaD63b7/logo.png b/blockchains/ethereum/assets/0xE6e3BEd476776f3A7017Aa9066a476EaefaD63b7/logo.png new file mode 100644 index 00000000..ecd0536c Binary files /dev/null and b/blockchains/ethereum/assets/0xE6e3BEd476776f3A7017Aa9066a476EaefaD63b7/logo.png differ diff --git a/blockchains/ethereum/assets/0xE716637Ba037E840A46A1CaC83556a2dD83C0285/info.json b/blockchains/ethereum/assets/0xE716637Ba037E840A46A1CaC83556a2dD83C0285/info.json new file mode 100644 index 00000000..fa9bfd51 --- /dev/null +++ b/blockchains/ethereum/assets/0xE716637Ba037E840A46A1CaC83556a2dD83C0285/info.json @@ -0,0 +1,11 @@ +{ + "name": "CLOVYR", + "symbol": "CLOVYR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE716637Ba037E840A46A1CaC83556a2dD83C0285", + "status": "abandoned", + "id": "0xE716637Ba037E840A46A1CaC83556a2dD83C0285" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE716637Ba037E840A46A1CaC83556a2dD83C0285/logo.png b/blockchains/ethereum/assets/0xE716637Ba037E840A46A1CaC83556a2dD83C0285/logo.png new file mode 100644 index 00000000..a6c5e6b2 Binary files /dev/null and b/blockchains/ethereum/assets/0xE716637Ba037E840A46A1CaC83556a2dD83C0285/logo.png differ diff --git a/blockchains/ethereum/assets/0xE74B35425fE7E33EA190b149805baF31139a8290/info.json b/blockchains/ethereum/assets/0xE74B35425fE7E33EA190b149805baF31139a8290/info.json new file mode 100644 index 00000000..93d00819 --- /dev/null +++ b/blockchains/ethereum/assets/0xE74B35425fE7E33EA190b149805baF31139a8290/info.json @@ -0,0 +1,11 @@ +{ + "name": "QuickCash", + "website": "https://quickcash.com/", + "description": "QuickCash stable currency system.", + "explorer": "https://etherscan.io/token/0xE74B35425fE7E33EA190b149805baF31139a8290", + "type": "ERC20", + "symbol": "QC", + "decimals": 18, + "status": "active", + "id": "0xE74B35425fE7E33EA190b149805baF31139a8290" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE74B35425fE7E33EA190b149805baF31139a8290/logo.png b/blockchains/ethereum/assets/0xE74B35425fE7E33EA190b149805baF31139a8290/logo.png new file mode 100644 index 00000000..0de5401a Binary files /dev/null and b/blockchains/ethereum/assets/0xE74B35425fE7E33EA190b149805baF31139a8290/logo.png differ diff --git a/blockchains/ethereum/assets/0xE7775A6e9Bcf904eb39DA2b68c5efb4F9360e08C/info.json b/blockchains/ethereum/assets/0xE7775A6e9Bcf904eb39DA2b68c5efb4F9360e08C/info.json new file mode 100644 index 00000000..5dd0b371 --- /dev/null +++ b/blockchains/ethereum/assets/0xE7775A6e9Bcf904eb39DA2b68c5efb4F9360e08C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Token-as-a-Service", + "symbol": "TAAS", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://www.taas.fund/", + "explorer": "https://etherscan.io/token/0xE7775A6e9Bcf904eb39DA2b68c5efb4F9360e08C", + "status": "abandoned", + "id": "0xE7775A6e9Bcf904eb39DA2b68c5efb4F9360e08C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE7775A6e9Bcf904eb39DA2b68c5efb4F9360e08C/logo.png b/blockchains/ethereum/assets/0xE7775A6e9Bcf904eb39DA2b68c5efb4F9360e08C/logo.png new file mode 100644 index 00000000..ee590219 Binary files /dev/null and b/blockchains/ethereum/assets/0xE7775A6e9Bcf904eb39DA2b68c5efb4F9360e08C/logo.png differ diff --git a/blockchains/ethereum/assets/0xE7C6BF469e97eEB0bFB74C8dbFF5BD47D4C1C98a/info.json b/blockchains/ethereum/assets/0xE7C6BF469e97eEB0bFB74C8dbFF5BD47D4C1C98a/info.json new file mode 100644 index 00000000..e9657708 --- /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 00000000..cf9faf02 Binary files /dev/null and b/blockchains/ethereum/assets/0xE7C6BF469e97eEB0bFB74C8dbFF5BD47D4C1C98a/logo.png differ diff --git a/blockchains/ethereum/assets/0xE7D84cBee9b2234E53BDe7Ea093E7d1E198CA46A/info.json b/blockchains/ethereum/assets/0xE7D84cBee9b2234E53BDe7Ea093E7d1E198CA46A/info.json new file mode 100644 index 00000000..d46c5c81 --- /dev/null +++ b/blockchains/ethereum/assets/0xE7D84cBee9b2234E53BDe7Ea093E7d1E198CA46A/info.json @@ -0,0 +1,11 @@ +{ + "name": "IOGENESIS", + "symbol": "IOG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE7D84cBee9b2234E53BDe7Ea093E7d1E198CA46A", + "status": "abandoned", + "id": "0xE7D84cBee9b2234E53BDe7Ea093E7d1E198CA46A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE7D84cBee9b2234E53BDe7Ea093E7d1E198CA46A/logo.png b/blockchains/ethereum/assets/0xE7D84cBee9b2234E53BDe7Ea093E7d1E198CA46A/logo.png new file mode 100644 index 00000000..e04ecdea Binary files /dev/null and b/blockchains/ethereum/assets/0xE7D84cBee9b2234E53BDe7Ea093E7d1E198CA46A/logo.png differ diff --git a/blockchains/ethereum/assets/0xE7b5269A67E385766F98012F25073A7Bc67A1046/info.json b/blockchains/ethereum/assets/0xE7b5269A67E385766F98012F25073A7Bc67A1046/info.json new file mode 100644 index 00000000..c982e28d --- /dev/null +++ b/blockchains/ethereum/assets/0xE7b5269A67E385766F98012F25073A7Bc67A1046/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C551554", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE7b5269A67E385766F98012F25073A7Bc67A1046", + "status": "abandoned", + "id": "0xE7b5269A67E385766F98012F25073A7Bc67A1046" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE7b5269A67E385766F98012F25073A7Bc67A1046/logo.png b/blockchains/ethereum/assets/0xE7b5269A67E385766F98012F25073A7Bc67A1046/logo.png new file mode 100644 index 00000000..4f59c6a5 Binary files /dev/null and b/blockchains/ethereum/assets/0xE7b5269A67E385766F98012F25073A7Bc67A1046/logo.png differ diff --git a/blockchains/ethereum/assets/0xE814aeE960a85208C3dB542C53E7D4a6C8D5f60F/info.json b/blockchains/ethereum/assets/0xE814aeE960a85208C3dB542C53E7D4a6C8D5f60F/info.json new file mode 100644 index 00000000..fe942ec5 --- /dev/null +++ b/blockchains/ethereum/assets/0xE814aeE960a85208C3dB542C53E7D4a6C8D5f60F/info.json @@ -0,0 +1,11 @@ +{ + "name": "DAY", + "symbol": "DAY", + "type": "ERC20", + "decimals": 18, + "description": "The first generation of cryptocurrencies have been based on the concepts of mining & staking. ChronoLogic works on proof-of-time. In its first use-case ChronoLogic pegs time to a store of value token named DAY based on the Ethereum blockchain.", + "website": "https://chronologic.network/", + "explorer": "https://etherscan.io/token/0xE814aeE960a85208C3dB542C53E7D4a6C8D5f60F", + "status": "active", + "id": "0xE814aeE960a85208C3dB542C53E7D4a6C8D5f60F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE814aeE960a85208C3dB542C53E7D4a6C8D5f60F/logo.png b/blockchains/ethereum/assets/0xE814aeE960a85208C3dB542C53E7D4a6C8D5f60F/logo.png new file mode 100644 index 00000000..8fe01850 Binary files /dev/null and b/blockchains/ethereum/assets/0xE814aeE960a85208C3dB542C53E7D4a6C8D5f60F/logo.png differ diff --git a/blockchains/ethereum/assets/0xE820C06321E60d36257C666643Fa5436643445E3/info.json b/blockchains/ethereum/assets/0xE820C06321E60d36257C666643Fa5436643445E3/info.json new file mode 100644 index 00000000..6f4d5a01 --- /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 00000000..ef576b8f Binary files /dev/null and b/blockchains/ethereum/assets/0xE820C06321E60d36257C666643Fa5436643445E3/logo.png differ diff --git a/blockchains/ethereum/assets/0xE85d69D5e7B91b1A0D2E93a3678315E6915197B2/info.json b/blockchains/ethereum/assets/0xE85d69D5e7B91b1A0D2E93a3678315E6915197B2/info.json new file mode 100644 index 00000000..f7d9e433 --- /dev/null +++ b/blockchains/ethereum/assets/0xE85d69D5e7B91b1A0D2E93a3678315E6915197B2/info.json @@ -0,0 +1,11 @@ +{ + "name": "JBG", + "symbol": "JBG", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE85d69D5e7B91b1A0D2E93a3678315E6915197B2", + "status": "abandoned", + "id": "0xE85d69D5e7B91b1A0D2E93a3678315E6915197B2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE85d69D5e7B91b1A0D2E93a3678315E6915197B2/logo.png b/blockchains/ethereum/assets/0xE85d69D5e7B91b1A0D2E93a3678315E6915197B2/logo.png new file mode 100644 index 00000000..5fba87cf Binary files /dev/null and b/blockchains/ethereum/assets/0xE85d69D5e7B91b1A0D2E93a3678315E6915197B2/logo.png differ diff --git a/blockchains/ethereum/assets/0xE8663A64A96169ff4d95b4299E7ae9a76b905B31/info.json b/blockchains/ethereum/assets/0xE8663A64A96169ff4d95b4299E7ae9a76b905B31/info.json new file mode 100644 index 00000000..4b65b9a6 --- /dev/null +++ b/blockchains/ethereum/assets/0xE8663A64A96169ff4d95b4299E7ae9a76b905B31/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rating", + "symbol": "Rating", + "type": "ERC20", + "decimals": 8, + "description": "DPRating (RATING) is a cryptocurrency and operates on the Ethereum platform.", + "website": "http://token.dprating.com", + "explorer": "https://etherscan.io/token/0xE8663A64A96169ff4d95b4299E7ae9a76b905B31", + "status": "active", + "id": "0xE8663A64A96169ff4d95b4299E7ae9a76b905B31" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE8663A64A96169ff4d95b4299E7ae9a76b905B31/logo.png b/blockchains/ethereum/assets/0xE8663A64A96169ff4d95b4299E7ae9a76b905B31/logo.png new file mode 100644 index 00000000..f199b921 Binary files /dev/null and b/blockchains/ethereum/assets/0xE8663A64A96169ff4d95b4299E7ae9a76b905B31/logo.png differ diff --git a/blockchains/ethereum/assets/0xE86A746330b0B691323d2CbB5c140F77D7F198A4/info.json b/blockchains/ethereum/assets/0xE86A746330b0B691323d2CbB5c140F77D7F198A4/info.json new file mode 100644 index 00000000..099e781d --- /dev/null +++ b/blockchains/ethereum/assets/0xE86A746330b0B691323d2CbB5c140F77D7F198A4/info.json @@ -0,0 +1,11 @@ +{ + "name": "CAMO", + "symbol": "CAMO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE86A746330b0B691323d2CbB5c140F77D7F198A4", + "status": "abandoned", + "id": "0xE86A746330b0B691323d2CbB5c140F77D7F198A4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE86A746330b0B691323d2CbB5c140F77D7F198A4/logo.png b/blockchains/ethereum/assets/0xE86A746330b0B691323d2CbB5c140F77D7F198A4/logo.png new file mode 100644 index 00000000..6714d932 Binary files /dev/null and b/blockchains/ethereum/assets/0xE86A746330b0B691323d2CbB5c140F77D7F198A4/logo.png differ diff --git a/blockchains/ethereum/assets/0xE870bD7C40c1f1227637DEd7B60456501D25A7B8/info.json b/blockchains/ethereum/assets/0xE870bD7C40c1f1227637DEd7B60456501D25A7B8/info.json new file mode 100644 index 00000000..d189d180 --- /dev/null +++ b/blockchains/ethereum/assets/0xE870bD7C40c1f1227637DEd7B60456501D25A7B8/info.json @@ -0,0 +1,11 @@ +{ + "name": "DeFlash", + "symbol": "DEF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE870bD7C40c1f1227637DEd7B60456501D25A7B8", + "status": "abandoned", + "id": "0xE870bD7C40c1f1227637DEd7B60456501D25A7B8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE870bD7C40c1f1227637DEd7B60456501D25A7B8/logo.png b/blockchains/ethereum/assets/0xE870bD7C40c1f1227637DEd7B60456501D25A7B8/logo.png new file mode 100644 index 00000000..d667e61b Binary files /dev/null and b/blockchains/ethereum/assets/0xE870bD7C40c1f1227637DEd7B60456501D25A7B8/logo.png differ diff --git a/blockchains/ethereum/assets/0xE884cc2795b9c45bEeac0607DA9539Fd571cCF85/info.json b/blockchains/ethereum/assets/0xE884cc2795b9c45bEeac0607DA9539Fd571cCF85/info.json new file mode 100644 index 00000000..c02006da --- /dev/null +++ b/blockchains/ethereum/assets/0xE884cc2795b9c45bEeac0607DA9539Fd571cCF85/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ultiledger", + "symbol": "ULT", + "type": "ERC20", + "decimals": 18, + "description": "Ultiledger aims to build an economic and financial ecosystem based on token 'ULT' to help any organization that needs to build trust at a low cost and construct a distributed financial book and accounting system with bank-grade security.", + "website": "https://www.ultiledger.io", + "explorer": "https://etherscan.io/token/0xE884cc2795b9c45bEeac0607DA9539Fd571cCF85", + "status": "active", + "id": "0xE884cc2795b9c45bEeac0607DA9539Fd571cCF85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE884cc2795b9c45bEeac0607DA9539Fd571cCF85/logo.png b/blockchains/ethereum/assets/0xE884cc2795b9c45bEeac0607DA9539Fd571cCF85/logo.png new file mode 100644 index 00000000..7b8695de Binary files /dev/null and b/blockchains/ethereum/assets/0xE884cc2795b9c45bEeac0607DA9539Fd571cCF85/logo.png differ diff --git a/blockchains/ethereum/assets/0xE8B30d4aa98740ee2910Ede1df7bdd0A840a3fD5/info.json b/blockchains/ethereum/assets/0xE8B30d4aa98740ee2910Ede1df7bdd0A840a3fD5/info.json new file mode 100644 index 00000000..c560dbd6 --- /dev/null +++ b/blockchains/ethereum/assets/0xE8B30d4aa98740ee2910Ede1df7bdd0A840a3fD5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tea Coffee Water Snacks", + "symbol": "TCWS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE8B30d4aa98740ee2910Ede1df7bdd0A840a3fD5", + "status": "abandoned", + "id": "0xE8B30d4aa98740ee2910Ede1df7bdd0A840a3fD5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE8B30d4aa98740ee2910Ede1df7bdd0A840a3fD5/logo.png b/blockchains/ethereum/assets/0xE8B30d4aa98740ee2910Ede1df7bdd0A840a3fD5/logo.png new file mode 100644 index 00000000..ff2892d9 Binary files /dev/null and b/blockchains/ethereum/assets/0xE8B30d4aa98740ee2910Ede1df7bdd0A840a3fD5/logo.png differ diff --git a/blockchains/ethereum/assets/0xE8b251822d003a2b2466ee0E38391C2db2048739/info.json b/blockchains/ethereum/assets/0xE8b251822d003a2b2466ee0E38391C2db2048739/info.json new file mode 100644 index 00000000..d1d990b3 --- /dev/null +++ b/blockchains/ethereum/assets/0xE8b251822d003a2b2466ee0E38391C2db2048739/info.json @@ -0,0 +1,21 @@ +{ + "name": "rbase.finance", + "website": "https://rbase.finance/", + "description": "RFI + Base = RBASE.", + "explorer": "https://etherscan.io/token/0xe8b251822d003a2b2466ee0e38391c2db2048739", + "type": "ERC20", + "symbol": "RBASE", + "decimals": 9, + "status": "active", + "id": "0xE8b251822d003a2b2466ee0E38391C2db2048739", + "links": [ + { + "name": "x", + "url": "https://x.com/DefiProphets" + }, + { + "name": "telegram", + "url": "https://t.me/rbasebydefiprophets" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE8b251822d003a2b2466ee0E38391C2db2048739/logo.png b/blockchains/ethereum/assets/0xE8b251822d003a2b2466ee0E38391C2db2048739/logo.png new file mode 100644 index 00000000..ede2d639 Binary files /dev/null and b/blockchains/ethereum/assets/0xE8b251822d003a2b2466ee0E38391C2db2048739/logo.png differ diff --git a/blockchains/ethereum/assets/0xE8c09672cfb9cFcE6E2edBB01057d9fa569F97c1/info.json b/blockchains/ethereum/assets/0xE8c09672cfb9cFcE6E2edBB01057d9fa569F97c1/info.json new file mode 100644 index 00000000..efcaa0e8 --- /dev/null +++ b/blockchains/ethereum/assets/0xE8c09672cfb9cFcE6E2edBB01057d9fa569F97c1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Indicoin", + "symbol": "INDI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE8c09672cfb9cFcE6E2edBB01057d9fa569F97c1", + "status": "abandoned", + "id": "0xE8c09672cfb9cFcE6E2edBB01057d9fa569F97c1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE8c09672cfb9cFcE6E2edBB01057d9fa569F97c1/logo.png b/blockchains/ethereum/assets/0xE8c09672cfb9cFcE6E2edBB01057d9fa569F97c1/logo.png new file mode 100755 index 00000000..ac04a7c7 Binary files /dev/null and b/blockchains/ethereum/assets/0xE8c09672cfb9cFcE6E2edBB01057d9fa569F97c1/logo.png differ diff --git a/blockchains/ethereum/assets/0xE92344b4eDF545F3209094B192E46600A19E7C2D/info.json b/blockchains/ethereum/assets/0xE92344b4eDF545F3209094B192E46600A19E7C2D/info.json new file mode 100644 index 00000000..d02b2444 --- /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 00000000..00f7e6f4 Binary files /dev/null and b/blockchains/ethereum/assets/0xE92344b4eDF545F3209094B192E46600A19E7C2D/logo.png differ diff --git a/blockchains/ethereum/assets/0xE94327D07Fc17907b4DB788E5aDf2ed424adDff6/info.json b/blockchains/ethereum/assets/0xE94327D07Fc17907b4DB788E5aDf2ed424adDff6/info.json new file mode 100644 index 00000000..d834fb5a --- /dev/null +++ b/blockchains/ethereum/assets/0xE94327D07Fc17907b4DB788E5aDf2ed424adDff6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Reputation", + "symbol": "REP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE94327D07Fc17907b4DB788E5aDf2ed424adDff6", + "status": "abandoned", + "id": "0xE94327D07Fc17907b4DB788E5aDf2ed424adDff6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE94327D07Fc17907b4DB788E5aDf2ed424adDff6/logo.png b/blockchains/ethereum/assets/0xE94327D07Fc17907b4DB788E5aDf2ed424adDff6/logo.png new file mode 100644 index 00000000..58b98adb Binary files /dev/null and b/blockchains/ethereum/assets/0xE94327D07Fc17907b4DB788E5aDf2ed424adDff6/logo.png differ diff --git a/blockchains/ethereum/assets/0xE95990825AAB1a7f0Af4cc648f76a3Bcc99F25B2/info.json b/blockchains/ethereum/assets/0xE95990825AAB1a7f0Af4cc648f76a3Bcc99F25B2/info.json new file mode 100644 index 00000000..351c0eef --- /dev/null +++ b/blockchains/ethereum/assets/0xE95990825AAB1a7f0Af4cc648f76a3Bcc99F25B2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zenswap Network Token", + "symbol": "ZNT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.zenswapnetwork.info/", + "explorer": "https://etherscan.io/token/0xE95990825AAB1a7f0Af4cc648f76a3Bcc99F25B2", + "status": "abandoned", + "id": "0xE95990825AAB1a7f0Af4cc648f76a3Bcc99F25B2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE95990825AAB1a7f0Af4cc648f76a3Bcc99F25B2/logo.png b/blockchains/ethereum/assets/0xE95990825AAB1a7f0Af4cc648f76a3Bcc99F25B2/logo.png new file mode 100644 index 00000000..d9d9c2b6 Binary files /dev/null and b/blockchains/ethereum/assets/0xE95990825AAB1a7f0Af4cc648f76a3Bcc99F25B2/logo.png differ diff --git a/blockchains/ethereum/assets/0xE95A203B1a91a908F9B9CE46459d101078c2c3cb/info.json b/blockchains/ethereum/assets/0xE95A203B1a91a908F9B9CE46459d101078c2c3cb/info.json new file mode 100644 index 00000000..3445a218 --- /dev/null +++ b/blockchains/ethereum/assets/0xE95A203B1a91a908F9B9CE46459d101078c2c3cb/info.json @@ -0,0 +1,33 @@ +{ + "name": "ankrETH", + "website": "https://stkr.io/", + "description": "aETHc is a reward-bearing certificate that enables instant liquidity for staked ETH tokens in Ethereum 2.0 network.", + "explorer": "https://etherscan.io/token/0xE95A203B1a91a908F9B9CE46459d101078c2c3cb", + "type": "ERC20", + "symbol": "aETHc", + "decimals": 18, + "status": "active", + "id": "0xE95A203B1a91a908F9B9CE46459d101078c2c3cb", + "links": [ + { + "name": "github", + "url": "https://github.com/Ankr-network/stkr-smartcontract" + }, + { + "name": "x", + "url": "https://x.com/Ankr" + }, + { + "name": "telegram", + "url": "https://t.me/ankrnetwork" + }, + { + "name": "medium", + "url": "https://medium.com/ankr-network" + }, + { + "name": "whitepaper", + "url": "https://assets.ankr.com/files/stkr_whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE95A203B1a91a908F9B9CE46459d101078c2c3cb/logo.png b/blockchains/ethereum/assets/0xE95A203B1a91a908F9B9CE46459d101078c2c3cb/logo.png new file mode 100644 index 00000000..e24e8130 Binary files /dev/null and b/blockchains/ethereum/assets/0xE95A203B1a91a908F9B9CE46459d101078c2c3cb/logo.png differ diff --git a/blockchains/ethereum/assets/0xE95e4440493E5b96e79D63E8Dc43AB676Dd44E4C/info.json b/blockchains/ethereum/assets/0xE95e4440493E5b96e79D63E8Dc43AB676Dd44E4C/info.json new file mode 100644 index 00000000..5b875776 --- /dev/null +++ b/blockchains/ethereum/assets/0xE95e4440493E5b96e79D63E8Dc43AB676Dd44E4C/info.json @@ -0,0 +1,21 @@ +{ + "name": "ANTISEAL", + "website": "https://antiseal.finance", + "description": "AntiSeal is a hyper-deflationary token, featuring a 2% burn on each transaction. No dev fund, no presale, no marketing fund, all coins belong to the community. Made by the community, for the community.", + "explorer": "https://etherscan.io/token/0xe95e4440493e5b96e79d63e8dc43ab676dd44e4c", + "type": "ERC20", + "symbol": "ANTISEAL", + "decimals": 0, + "status": "active", + "id": "0xE95e4440493E5b96e79D63E8Dc43AB676Dd44E4C", + "links": [ + { + "name": "x", + "url": "https://x.com/ANTISEAL1" + }, + { + "name": "telegram", + "url": "https://t.me/ANTI_SEAL" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE95e4440493E5b96e79D63E8Dc43AB676Dd44E4C/logo.png b/blockchains/ethereum/assets/0xE95e4440493E5b96e79D63E8Dc43AB676Dd44E4C/logo.png new file mode 100644 index 00000000..fb1c58bf Binary files /dev/null and b/blockchains/ethereum/assets/0xE95e4440493E5b96e79D63E8Dc43AB676Dd44E4C/logo.png differ diff --git a/blockchains/ethereum/assets/0xE9732d4b1E7d3789004fF029f032bA3034db059c/info.json b/blockchains/ethereum/assets/0xE9732d4b1E7d3789004fF029f032bA3034db059c/info.json new file mode 100644 index 00000000..42e899be --- /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 00000000..bae630d4 Binary files /dev/null and b/blockchains/ethereum/assets/0xE9732d4b1E7d3789004fF029f032bA3034db059c/logo.png differ diff --git a/blockchains/ethereum/assets/0xE98226D78eFeBe8F63fcE4F9F2435d03C3c2d97a/info.json b/blockchains/ethereum/assets/0xE98226D78eFeBe8F63fcE4F9F2435d03C3c2d97a/info.json new file mode 100644 index 00000000..32bc91b2 --- /dev/null +++ b/blockchains/ethereum/assets/0xE98226D78eFeBe8F63fcE4F9F2435d03C3c2d97a/info.json @@ -0,0 +1,11 @@ +{ + "name": "MTRONIX", + "symbol": "MTRON", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE98226D78eFeBe8F63fcE4F9F2435d03C3c2d97a", + "status": "abandoned", + "id": "0xE98226D78eFeBe8F63fcE4F9F2435d03C3c2d97a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE98226D78eFeBe8F63fcE4F9F2435d03C3c2d97a/logo.png b/blockchains/ethereum/assets/0xE98226D78eFeBe8F63fcE4F9F2435d03C3c2d97a/logo.png new file mode 100644 index 00000000..7cfd2d04 Binary files /dev/null and b/blockchains/ethereum/assets/0xE98226D78eFeBe8F63fcE4F9F2435d03C3c2d97a/logo.png differ diff --git a/blockchains/ethereum/assets/0xE98a2E62C31dB62f8AFbcea221f214934dcAFF72/info.json b/blockchains/ethereum/assets/0xE98a2E62C31dB62f8AFbcea221f214934dcAFF72/info.json new file mode 100644 index 00000000..123db619 --- /dev/null +++ b/blockchains/ethereum/assets/0xE98a2E62C31dB62f8AFbcea221f214934dcAFF72/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R887602 ", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE98a2E62C31dB62f8AFbcea221f214934dcAFF72", + "status": "abandoned", + "id": "0xE98a2E62C31dB62f8AFbcea221f214934dcAFF72" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE98a2E62C31dB62f8AFbcea221f214934dcAFF72/logo.png b/blockchains/ethereum/assets/0xE98a2E62C31dB62f8AFbcea221f214934dcAFF72/logo.png new file mode 100755 index 00000000..ddd35938 Binary files /dev/null and b/blockchains/ethereum/assets/0xE98a2E62C31dB62f8AFbcea221f214934dcAFF72/logo.png differ diff --git a/blockchains/ethereum/assets/0xE98b5F11897d42Afd17185dd301Bcb2d46389bF1/info.json b/blockchains/ethereum/assets/0xE98b5F11897d42Afd17185dd301Bcb2d46389bF1/info.json new file mode 100644 index 00000000..772a073c --- /dev/null +++ b/blockchains/ethereum/assets/0xE98b5F11897d42Afd17185dd301Bcb2d46389bF1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dude", + "symbol": "DUDE", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE98b5F11897d42Afd17185dd301Bcb2d46389bF1", + "status": "abandoned", + "id": "0xE98b5F11897d42Afd17185dd301Bcb2d46389bF1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE98b5F11897d42Afd17185dd301Bcb2d46389bF1/logo.png b/blockchains/ethereum/assets/0xE98b5F11897d42Afd17185dd301Bcb2d46389bF1/logo.png new file mode 100644 index 00000000..40fd740f Binary files /dev/null and b/blockchains/ethereum/assets/0xE98b5F11897d42Afd17185dd301Bcb2d46389bF1/logo.png differ diff --git a/blockchains/ethereum/assets/0xE99A894a69d7c2e3C92E61B64C505A6a57d2bC07/info.json b/blockchains/ethereum/assets/0xE99A894a69d7c2e3C92E61B64C505A6a57d2bC07/info.json new file mode 100644 index 00000000..5f405f91 --- /dev/null +++ b/blockchains/ethereum/assets/0xE99A894a69d7c2e3C92E61B64C505A6a57d2bC07/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hyperion", + "website": "https://hyn.space", + "description": "Hyperion organically integrates innovations of three important dimensions, coined as the Hyperion Trinity, to eventually achieve a sustainable and self-governed map economy of the world. ", + "explorer": "https://etherscan.io/token/0xE99A894a69d7c2e3C92E61B64C505A6a57d2bC07", + "type": "ERC20", + "symbol": "HYN", + "decimals": 18, + "status": "active", + "id": "0xE99A894a69d7c2e3C92E61B64C505A6a57d2bC07" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE99A894a69d7c2e3C92E61B64C505A6a57d2bC07/logo.png b/blockchains/ethereum/assets/0xE99A894a69d7c2e3C92E61B64C505A6a57d2bC07/logo.png new file mode 100644 index 00000000..cdebf2ac Binary files /dev/null and b/blockchains/ethereum/assets/0xE99A894a69d7c2e3C92E61B64C505A6a57d2bC07/logo.png differ diff --git a/blockchains/ethereum/assets/0xE99DDae9181957E91b457E4c79A1B577E55a5742/info.json b/blockchains/ethereum/assets/0xE99DDae9181957E91b457E4c79A1B577E55a5742/info.json new file mode 100644 index 00000000..66d8221b --- /dev/null +++ b/blockchains/ethereum/assets/0xE99DDae9181957E91b457E4c79A1B577E55a5742/info.json @@ -0,0 +1,11 @@ +{ + "name": "Link Managenent Chain Token", + "symbol": "LMM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE99DDae9181957E91b457E4c79A1B577E55a5742", + "status": "abandoned", + "id": "0xE99DDae9181957E91b457E4c79A1B577E55a5742" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE99DDae9181957E91b457E4c79A1B577E55a5742/logo.png b/blockchains/ethereum/assets/0xE99DDae9181957E91b457E4c79A1B577E55a5742/logo.png new file mode 100644 index 00000000..ee306883 Binary files /dev/null and b/blockchains/ethereum/assets/0xE99DDae9181957E91b457E4c79A1B577E55a5742/logo.png differ diff --git a/blockchains/ethereum/assets/0xE9A95d175a5f4C9369f3b74222402eB1b837693b/info.json b/blockchains/ethereum/assets/0xE9A95d175a5f4C9369f3b74222402eB1b837693b/info.json new file mode 100644 index 00000000..7d37a91e --- /dev/null +++ b/blockchains/ethereum/assets/0xE9A95d175a5f4C9369f3b74222402eB1b837693b/info.json @@ -0,0 +1,11 @@ +{ + "name": "ChangeNOW", + "symbol": "NOW", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE9A95d175a5f4C9369f3b74222402eB1b837693b", + "status": "abandoned", + "id": "0xE9A95d175a5f4C9369f3b74222402eB1b837693b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE9A95d175a5f4C9369f3b74222402eB1b837693b/logo.png b/blockchains/ethereum/assets/0xE9A95d175a5f4C9369f3b74222402eB1b837693b/logo.png new file mode 100644 index 00000000..d5f29900 Binary files /dev/null and b/blockchains/ethereum/assets/0xE9A95d175a5f4C9369f3b74222402eB1b837693b/logo.png differ diff --git a/blockchains/ethereum/assets/0xE9Bb22B2063daBA021b0384d8535Badd1426FbA7/info.json b/blockchains/ethereum/assets/0xE9Bb22B2063daBA021b0384d8535Badd1426FbA7/info.json new file mode 100644 index 00000000..2e606112 --- /dev/null +++ b/blockchains/ethereum/assets/0xE9Bb22B2063daBA021b0384d8535Badd1426FbA7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pyrabank Private", + "symbol": "PBPRV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE9Bb22B2063daBA021b0384d8535Badd1426FbA7", + "status": "abandoned", + "id": "0xE9Bb22B2063daBA021b0384d8535Badd1426FbA7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE9Bb22B2063daBA021b0384d8535Badd1426FbA7/logo.png b/blockchains/ethereum/assets/0xE9Bb22B2063daBA021b0384d8535Badd1426FbA7/logo.png new file mode 100644 index 00000000..810d2997 Binary files /dev/null and b/blockchains/ethereum/assets/0xE9Bb22B2063daBA021b0384d8535Badd1426FbA7/logo.png differ diff --git a/blockchains/ethereum/assets/0xE9D73F3DdA4365e01a372a4a29E9aF0c3354e40C/info.json b/blockchains/ethereum/assets/0xE9D73F3DdA4365e01a372a4a29E9aF0c3354e40C/info.json new file mode 100644 index 00000000..860d0138 --- /dev/null +++ b/blockchains/ethereum/assets/0xE9D73F3DdA4365e01a372a4a29E9aF0c3354e40C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Amadeo", + "symbol": "DEO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE9D73F3DdA4365e01a372a4a29E9aF0c3354e40C", + "status": "abandoned", + "id": "0xE9D73F3DdA4365e01a372a4a29E9aF0c3354e40C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE9D73F3DdA4365e01a372a4a29E9aF0c3354e40C/logo.png b/blockchains/ethereum/assets/0xE9D73F3DdA4365e01a372a4a29E9aF0c3354e40C/logo.png new file mode 100644 index 00000000..b434cf03 Binary files /dev/null and b/blockchains/ethereum/assets/0xE9D73F3DdA4365e01a372a4a29E9aF0c3354e40C/logo.png differ diff --git a/blockchains/ethereum/assets/0xE9E03f44f98b9B60BE121eC6B2DacD11078cB8F7/info.json b/blockchains/ethereum/assets/0xE9E03f44f98b9B60BE121eC6B2DacD11078cB8F7/info.json new file mode 100644 index 00000000..751e9785 --- /dev/null +++ b/blockchains/ethereum/assets/0xE9E03f44f98b9B60BE121eC6B2DacD11078cB8F7/info.json @@ -0,0 +1,11 @@ +{ + "name": "DUDA", + "symbol": "DUDA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE9E03f44f98b9B60BE121eC6B2DacD11078cB8F7", + "status": "abandoned", + "id": "0xE9E03f44f98b9B60BE121eC6B2DacD11078cB8F7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE9E03f44f98b9B60BE121eC6B2DacD11078cB8F7/logo.png b/blockchains/ethereum/assets/0xE9E03f44f98b9B60BE121eC6B2DacD11078cB8F7/logo.png new file mode 100644 index 00000000..1a661b87 Binary files /dev/null and b/blockchains/ethereum/assets/0xE9E03f44f98b9B60BE121eC6B2DacD11078cB8F7/logo.png differ diff --git a/blockchains/ethereum/assets/0xE9b8897f3bd92a5845CDEAAeBEa1be5703D53fe2/info.json b/blockchains/ethereum/assets/0xE9b8897f3bd92a5845CDEAAeBEa1be5703D53fe2/info.json new file mode 100644 index 00000000..0212fcd9 --- /dev/null +++ b/blockchains/ethereum/assets/0xE9b8897f3bd92a5845CDEAAeBEa1be5703D53fe2/info.json @@ -0,0 +1,11 @@ +{ + "name": "FMO", + "website": "https://fmo.network/", + "description": "FMO's unique Proof-of-Transaction consensus algorithm, which allows the direct contributors to the blockchain to Transaction and get rewarded, can address the fundamental problems in PoW, PoS consensus algorithms and sustain a fair and reasonable operation.", + "explorer": "https://etherscan.io/token/0xE9b8897f3bd92a5845CDEAAeBEa1be5703D53fe2", + "type": "ERC20", + "symbol": "FMO", + "decimals": 18, + "status": "active", + "id": "0xE9b8897f3bd92a5845CDEAAeBEa1be5703D53fe2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE9b8897f3bd92a5845CDEAAeBEa1be5703D53fe2/logo.png b/blockchains/ethereum/assets/0xE9b8897f3bd92a5845CDEAAeBEa1be5703D53fe2/logo.png new file mode 100644 index 00000000..9453dbb3 Binary files /dev/null and b/blockchains/ethereum/assets/0xE9b8897f3bd92a5845CDEAAeBEa1be5703D53fe2/logo.png differ diff --git a/blockchains/ethereum/assets/0xE9c4D1232167E858BA44Ee2f4C67B04823E8486a/info.json b/blockchains/ethereum/assets/0xE9c4D1232167E858BA44Ee2f4C67B04823E8486a/info.json new file mode 100644 index 00000000..62b1c264 --- /dev/null +++ b/blockchains/ethereum/assets/0xE9c4D1232167E858BA44Ee2f4C67B04823E8486a/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R738885", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE9c4D1232167E858BA44Ee2f4C67B04823E8486a", + "status": "abandoned", + "id": "0xE9c4D1232167E858BA44Ee2f4C67B04823E8486a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE9c4D1232167E858BA44Ee2f4C67B04823E8486a/logo.png b/blockchains/ethereum/assets/0xE9c4D1232167E858BA44Ee2f4C67B04823E8486a/logo.png new file mode 100755 index 00000000..cb63b8ae Binary files /dev/null and b/blockchains/ethereum/assets/0xE9c4D1232167E858BA44Ee2f4C67B04823E8486a/logo.png differ diff --git a/blockchains/ethereum/assets/0xE9cDA0749f2393254773Fd75A1Ca1639D9B25A17/info.json b/blockchains/ethereum/assets/0xE9cDA0749f2393254773Fd75A1Ca1639D9B25A17/info.json new file mode 100644 index 00000000..86223400 --- /dev/null +++ b/blockchains/ethereum/assets/0xE9cDA0749f2393254773Fd75A1Ca1639D9B25A17/info.json @@ -0,0 +1,11 @@ +{ + "name": "PXart", + "symbol": "PXART", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE9cDA0749f2393254773Fd75A1Ca1639D9B25A17", + "status": "abandoned", + "id": "0xE9cDA0749f2393254773Fd75A1Ca1639D9B25A17" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE9cDA0749f2393254773Fd75A1Ca1639D9B25A17/logo.png b/blockchains/ethereum/assets/0xE9cDA0749f2393254773Fd75A1Ca1639D9B25A17/logo.png new file mode 100644 index 00000000..33ef78ad Binary files /dev/null and b/blockchains/ethereum/assets/0xE9cDA0749f2393254773Fd75A1Ca1639D9B25A17/logo.png differ diff --git a/blockchains/ethereum/assets/0xE9f44784396005C053dCb8EbCA74E65192a9c3Ea/info.json b/blockchains/ethereum/assets/0xE9f44784396005C053dCb8EbCA74E65192a9c3Ea/info.json new file mode 100644 index 00000000..112ce948 --- /dev/null +++ b/blockchains/ethereum/assets/0xE9f44784396005C053dCb8EbCA74E65192a9c3Ea/info.json @@ -0,0 +1,11 @@ +{ + "name": "Roam Coin", + "symbol": "ROAM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xE9f44784396005C053dCb8EbCA74E65192a9c3Ea", + "status": "abandoned", + "id": "0xE9f44784396005C053dCb8EbCA74E65192a9c3Ea" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE9f44784396005C053dCb8EbCA74E65192a9c3Ea/logo.png b/blockchains/ethereum/assets/0xE9f44784396005C053dCb8EbCA74E65192a9c3Ea/logo.png new file mode 100644 index 00000000..5af5d270 Binary files /dev/null and b/blockchains/ethereum/assets/0xE9f44784396005C053dCb8EbCA74E65192a9c3Ea/logo.png differ diff --git a/blockchains/ethereum/assets/0xEA0595f67f1F14343793E67217b34b8244eE37aB/info.json b/blockchains/ethereum/assets/0xEA0595f67f1F14343793E67217b34b8244eE37aB/info.json new file mode 100644 index 00000000..07dee63e --- /dev/null +++ b/blockchains/ethereum/assets/0xEA0595f67f1F14343793E67217b34b8244eE37aB/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-22/30M52", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEA0595f67f1F14343793E67217b34b8244eE37aB", + "status": "abandoned", + "id": "0xEA0595f67f1F14343793E67217b34b8244eE37aB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEA0595f67f1F14343793E67217b34b8244eE37aB/logo.png b/blockchains/ethereum/assets/0xEA0595f67f1F14343793E67217b34b8244eE37aB/logo.png new file mode 100644 index 00000000..fdd4f756 Binary files /dev/null and b/blockchains/ethereum/assets/0xEA0595f67f1F14343793E67217b34b8244eE37aB/logo.png differ diff --git a/blockchains/ethereum/assets/0xEA097A2b1dB00627B2Fa17460Ad260c016016977/info.json b/blockchains/ethereum/assets/0xEA097A2b1dB00627B2Fa17460Ad260c016016977/info.json new file mode 100644 index 00000000..cbce61cd --- /dev/null +++ b/blockchains/ethereum/assets/0xEA097A2b1dB00627B2Fa17460Ad260c016016977/info.json @@ -0,0 +1,11 @@ +{ + "name": "Upfiring", + "symbol": "UFR", + "type": "ERC20", + "decimals": 18, + "description": "Upfiring is a web, iOS and Android application that creates a decentralized autonomous network between users' devices. Incentivized and decentralized P2P file-sharing on the Ethereum blockchain.", + "website": "https://www.upfiring.com/", + "explorer": "https://etherscan.io/token/0xEA097A2b1dB00627B2Fa17460Ad260c016016977", + "status": "active", + "id": "0xEA097A2b1dB00627B2Fa17460Ad260c016016977" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEA097A2b1dB00627B2Fa17460Ad260c016016977/logo.png b/blockchains/ethereum/assets/0xEA097A2b1dB00627B2Fa17460Ad260c016016977/logo.png new file mode 100644 index 00000000..1f83053a Binary files /dev/null and b/blockchains/ethereum/assets/0xEA097A2b1dB00627B2Fa17460Ad260c016016977/logo.png differ diff --git a/blockchains/ethereum/assets/0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71/info.json b/blockchains/ethereum/assets/0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71/info.json new file mode 100644 index 00000000..176ee587 --- /dev/null +++ b/blockchains/ethereum/assets/0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71/info.json @@ -0,0 +1,12 @@ +{ + "name": "Modefi", + "website": "https://modefi.io/", + "description": "Decentralized Oracle Solutions. Building the foundation for real world adoption of Oracles and DeFi", + "explorer": "https://etherscan.io/token/0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71", + "research": "https://cryptoguerrillas.com/modefi-oracle-defi/", + "type": "ERC20", + "symbol": "MOD", + "decimals": 18, + "status": "active", + "id": "0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71/logo.png b/blockchains/ethereum/assets/0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71/logo.png new file mode 100644 index 00000000..e18dfb5f Binary files /dev/null and b/blockchains/ethereum/assets/0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71/logo.png differ diff --git a/blockchains/ethereum/assets/0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664/info.json b/blockchains/ethereum/assets/0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664/info.json new file mode 100644 index 00000000..d09ab8ca --- /dev/null +++ b/blockchains/ethereum/assets/0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664/info.json @@ -0,0 +1,11 @@ +{ + "name": "QuarkChain Token", + "symbol": "QKC", + "type": "ERC20", + "decimals": 18, + "description": "QuarkChain is a flexible, scalable, and user-oriented blockchain infrastructure by applying blockchain sharding technology.", + "website": "https://quarkchain.io", + "explorer": "https://etherscan.io/token/0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664", + "status": "active", + "id": "0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664/logo.png b/blockchains/ethereum/assets/0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664/logo.png new file mode 100755 index 00000000..4154df89 Binary files /dev/null and b/blockchains/ethereum/assets/0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664/logo.png differ diff --git a/blockchains/ethereum/assets/0xEA38eAa3C86c8F9B751533Ba2E562deb9acDED40/info.json b/blockchains/ethereum/assets/0xEA38eAa3C86c8F9B751533Ba2E562deb9acDED40/info.json new file mode 100644 index 00000000..057c6d7b --- /dev/null +++ b/blockchains/ethereum/assets/0xEA38eAa3C86c8F9B751533Ba2E562deb9acDED40/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fuel Token", + "symbol": "FUEL", + "type": "ERC20", + "decimals": 18, + "description": "Etherparty™ is a contract wizard that removes the complexity of creating, managing and executing smart contracts on any compatible blockchain.", + "website": "https://etherparty.io/", + "explorer": "https://etherscan.io/token/0xEA38eAa3C86c8F9B751533Ba2E562deb9acDED40", + "status": "active", + "id": "0xEA38eAa3C86c8F9B751533Ba2E562deb9acDED40" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEA38eAa3C86c8F9B751533Ba2E562deb9acDED40/logo.png b/blockchains/ethereum/assets/0xEA38eAa3C86c8F9B751533Ba2E562deb9acDED40/logo.png new file mode 100644 index 00000000..68f7db34 Binary files /dev/null and b/blockchains/ethereum/assets/0xEA38eAa3C86c8F9B751533Ba2E562deb9acDED40/logo.png differ diff --git a/blockchains/ethereum/assets/0xEA54C81fe0f72DE8e86B6dC78a9271AA3925E3B5/info.json b/blockchains/ethereum/assets/0xEA54C81fe0f72DE8e86B6dC78a9271AA3925E3B5/info.json new file mode 100644 index 00000000..c5ab3d12 --- /dev/null +++ b/blockchains/ethereum/assets/0xEA54C81fe0f72DE8e86B6dC78a9271AA3925E3B5/info.json @@ -0,0 +1,11 @@ +{ + "name": "BGGToken", + "symbol": "BGG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bgogo.com/", + "explorer": "https://etherscan.io/token/0xEA54C81fe0f72DE8e86B6dC78a9271AA3925E3B5", + "status": "abandoned", + "id": "0xEA54C81fe0f72DE8e86B6dC78a9271AA3925E3B5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEA54C81fe0f72DE8e86B6dC78a9271AA3925E3B5/logo.png b/blockchains/ethereum/assets/0xEA54C81fe0f72DE8e86B6dC78a9271AA3925E3B5/logo.png new file mode 100644 index 00000000..0eef7721 Binary files /dev/null and b/blockchains/ethereum/assets/0xEA54C81fe0f72DE8e86B6dC78a9271AA3925E3B5/logo.png differ diff --git a/blockchains/ethereum/assets/0xEA610B1153477720748DC13ED378003941d84fAB/info.json b/blockchains/ethereum/assets/0xEA610B1153477720748DC13ED378003941d84fAB/info.json new file mode 100644 index 00000000..912ac500 --- /dev/null +++ b/blockchains/ethereum/assets/0xEA610B1153477720748DC13ED378003941d84fAB/info.json @@ -0,0 +1,11 @@ +{ + "name": "AlisToken", + "symbol": "ALIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://alismedia.jp/", + "explorer": "https://etherscan.io/token/0xEA610B1153477720748DC13ED378003941d84fAB", + "status": "abandoned", + "id": "0xEA610B1153477720748DC13ED378003941d84fAB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEA610B1153477720748DC13ED378003941d84fAB/logo.png b/blockchains/ethereum/assets/0xEA610B1153477720748DC13ED378003941d84fAB/logo.png new file mode 100644 index 00000000..e49d7b02 Binary files /dev/null and b/blockchains/ethereum/assets/0xEA610B1153477720748DC13ED378003941d84fAB/logo.png differ diff --git a/blockchains/ethereum/assets/0xEAA386d5aEc58C1475Fe658B2bFdc525B5b6fE24/info.json b/blockchains/ethereum/assets/0xEAA386d5aEc58C1475Fe658B2bFdc525B5b6fE24/info.json new file mode 100644 index 00000000..6ee7a028 --- /dev/null +++ b/blockchains/ethereum/assets/0xEAA386d5aEc58C1475Fe658B2bFdc525B5b6fE24/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R931543", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEAA386d5aEc58C1475Fe658B2bFdc525B5b6fE24", + "status": "abandoned", + "id": "0xEAA386d5aEc58C1475Fe658B2bFdc525B5b6fE24" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEAA386d5aEc58C1475Fe658B2bFdc525B5b6fE24/logo.png b/blockchains/ethereum/assets/0xEAA386d5aEc58C1475Fe658B2bFdc525B5b6fE24/logo.png new file mode 100755 index 00000000..bbd199de Binary files /dev/null and b/blockchains/ethereum/assets/0xEAA386d5aEc58C1475Fe658B2bFdc525B5b6fE24/logo.png differ diff --git a/blockchains/ethereum/assets/0xEB27071414F3D92aEB6BFF91B39d6e3a9BDC7414/info.json b/blockchains/ethereum/assets/0xEB27071414F3D92aEB6BFF91B39d6e3a9BDC7414/info.json new file mode 100644 index 00000000..4bf18137 --- /dev/null +++ b/blockchains/ethereum/assets/0xEB27071414F3D92aEB6BFF91B39d6e3a9BDC7414/info.json @@ -0,0 +1,11 @@ +{ + "name": "DigiEuro", + "symbol": "DSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEB27071414F3D92aEB6BFF91B39d6e3a9BDC7414", + "status": "abandoned", + "id": "0xEB27071414F3D92aEB6BFF91B39d6e3a9BDC7414" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEB27071414F3D92aEB6BFF91B39d6e3a9BDC7414/logo.png b/blockchains/ethereum/assets/0xEB27071414F3D92aEB6BFF91B39d6e3a9BDC7414/logo.png new file mode 100755 index 00000000..7a85ebe5 Binary files /dev/null and b/blockchains/ethereum/assets/0xEB27071414F3D92aEB6BFF91B39d6e3a9BDC7414/logo.png differ diff --git a/blockchains/ethereum/assets/0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D/info.json b/blockchains/ethereum/assets/0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D/info.json new file mode 100644 index 00000000..4460152d --- /dev/null +++ b/blockchains/ethereum/assets/0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D/info.json @@ -0,0 +1,44 @@ +{ + "name": "renBTC", + "symbol": "renBTC", + "type": "ERC20", + "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://etherscan.io/token/0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D", + "status": "active", + "id": "0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D", + "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/ethereum/assets/0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D/logo.png b/blockchains/ethereum/assets/0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D/logo.png new file mode 100644 index 00000000..fd77fd18 Binary files /dev/null and b/blockchains/ethereum/assets/0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D/logo.png differ diff --git a/blockchains/ethereum/assets/0xEB58343b36C7528F23CAAe63a150240241310049/info.json b/blockchains/ethereum/assets/0xEB58343b36C7528F23CAAe63a150240241310049/info.json new file mode 100644 index 00000000..517c754d --- /dev/null +++ b/blockchains/ethereum/assets/0xEB58343b36C7528F23CAAe63a150240241310049/info.json @@ -0,0 +1,29 @@ +{ + "name": "NBU", + "website": "https://nimbusplatform.io", + "description": "Nimbus - Creating Value Based on Real Use cases for Digital Assets.", + "explorer": "https://etherscan.io/token/0xEB58343b36C7528F23CAAe63a150240241310049", + "type": "ERC20", + "symbol": "NBU", + "decimals": 18, + "status": "active", + "id": "0xEB58343b36C7528F23CAAe63a150240241310049", + "links": [ + { + "name": "x", + "url": "https://x.com/nmbplatform" + }, + { + "name": "telegram", + "url": "https://t.me/nmbplatform" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCOl3hXqESQ54chKSn5nsfPg" + } + ], + "tags": [ + "staking", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEB58343b36C7528F23CAAe63a150240241310049/logo.png b/blockchains/ethereum/assets/0xEB58343b36C7528F23CAAe63a150240241310049/logo.png new file mode 100644 index 00000000..73575163 Binary files /dev/null and b/blockchains/ethereum/assets/0xEB58343b36C7528F23CAAe63a150240241310049/logo.png differ diff --git a/blockchains/ethereum/assets/0xEB605cDd22106F6190E09df82E08Fe34a11AfFf4/info.json b/blockchains/ethereum/assets/0xEB605cDd22106F6190E09df82E08Fe34a11AfFf4/info.json new file mode 100644 index 00000000..6e865e2e --- /dev/null +++ b/blockchains/ethereum/assets/0xEB605cDd22106F6190E09df82E08Fe34a11AfFf4/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-9/30M39", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEB605cDd22106F6190E09df82E08Fe34a11AfFf4", + "status": "abandoned", + "id": "0xEB605cDd22106F6190E09df82E08Fe34a11AfFf4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEB605cDd22106F6190E09df82E08Fe34a11AfFf4/logo.png b/blockchains/ethereum/assets/0xEB605cDd22106F6190E09df82E08Fe34a11AfFf4/logo.png new file mode 100644 index 00000000..162e6649 Binary files /dev/null and b/blockchains/ethereum/assets/0xEB605cDd22106F6190E09df82E08Fe34a11AfFf4/logo.png differ diff --git a/blockchains/ethereum/assets/0xEB6078B0f28291eC6328eE3f1f2804035145a5eD/info.json b/blockchains/ethereum/assets/0xEB6078B0f28291eC6328eE3f1f2804035145a5eD/info.json new file mode 100644 index 00000000..7bea0a2c --- /dev/null +++ b/blockchains/ethereum/assets/0xEB6078B0f28291eC6328eE3f1f2804035145a5eD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dispense Coin", + "symbol": "DSPC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEB6078B0f28291eC6328eE3f1f2804035145a5eD", + "status": "abandoned", + "id": "0xEB6078B0f28291eC6328eE3f1f2804035145a5eD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEB6078B0f28291eC6328eE3f1f2804035145a5eD/logo.png b/blockchains/ethereum/assets/0xEB6078B0f28291eC6328eE3f1f2804035145a5eD/logo.png new file mode 100644 index 00000000..e6b08864 Binary files /dev/null and b/blockchains/ethereum/assets/0xEB6078B0f28291eC6328eE3f1f2804035145a5eD/logo.png differ diff --git a/blockchains/ethereum/assets/0xEB9951021698B42e4399f9cBb6267Aa35F82D59D/info.json b/blockchains/ethereum/assets/0xEB9951021698B42e4399f9cBb6267Aa35F82D59D/info.json new file mode 100644 index 00000000..f49921c6 --- /dev/null +++ b/blockchains/ethereum/assets/0xEB9951021698B42e4399f9cBb6267Aa35F82D59D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Líf", + "website": "https://windingtree.com", + "description": "Líf is an ERC-20 Ethereum token. Líf is used on the Winding Tree decentralized travel marketplace as a staking mechanism for the business verification process.", + "explorer": "https://etherscan.io/token/0xEB9951021698B42e4399f9cBb6267Aa35F82D59D", + "type": "ERC20", + "symbol": "LIF", + "decimals": 18, + "status": "active", + "id": "0xEB9951021698B42e4399f9cBb6267Aa35F82D59D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEB9951021698B42e4399f9cBb6267Aa35F82D59D/logo.png b/blockchains/ethereum/assets/0xEB9951021698B42e4399f9cBb6267Aa35F82D59D/logo.png new file mode 100644 index 00000000..22d1741d Binary files /dev/null and b/blockchains/ethereum/assets/0xEB9951021698B42e4399f9cBb6267Aa35F82D59D/logo.png differ diff --git a/blockchains/ethereum/assets/0xEB9A4B185816C354dB92DB09cC3B50bE60b901b6/info.json b/blockchains/ethereum/assets/0xEB9A4B185816C354dB92DB09cC3B50bE60b901b6/info.json new file mode 100644 index 00000000..5376168a --- /dev/null +++ b/blockchains/ethereum/assets/0xEB9A4B185816C354dB92DB09cC3B50bE60b901b6/info.json @@ -0,0 +1,11 @@ +{ + "name": "OriginSport Token", + "symbol": "ORS", + "type": "ERC20", + "decimals": 18, + "description": "Origin Sport (ORS) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://originsport.io", + "explorer": "https://etherscan.io/token/0xEB9A4B185816C354dB92DB09cC3B50bE60b901b6", + "status": "active", + "id": "0xEB9A4B185816C354dB92DB09cC3B50bE60b901b6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEB9A4B185816C354dB92DB09cC3B50bE60b901b6/logo.png b/blockchains/ethereum/assets/0xEB9A4B185816C354dB92DB09cC3B50bE60b901b6/logo.png new file mode 100755 index 00000000..686a2c56 Binary files /dev/null and b/blockchains/ethereum/assets/0xEB9A4B185816C354dB92DB09cC3B50bE60b901b6/logo.png differ diff --git a/blockchains/ethereum/assets/0xEBBdf302c940c6bfd49C6b165f457fdb324649bc/info.json b/blockchains/ethereum/assets/0xEBBdf302c940c6bfd49C6b165f457fdb324649bc/info.json new file mode 100644 index 00000000..1e7456c3 --- /dev/null +++ b/blockchains/ethereum/assets/0xEBBdf302c940c6bfd49C6b165f457fdb324649bc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hydro (old)", + "symbol": "HYDRO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.projecthydro.org", + "explorer": "https://etherscan.io/token/0xEBBdf302c940c6bfd49C6b165f457fdb324649bc", + "status": "abandoned", + "id": "0xEBBdf302c940c6bfd49C6b165f457fdb324649bc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEBBdf302c940c6bfd49C6b165f457fdb324649bc/logo.png b/blockchains/ethereum/assets/0xEBBdf302c940c6bfd49C6b165f457fdb324649bc/logo.png new file mode 100755 index 00000000..ca7cea38 Binary files /dev/null and b/blockchains/ethereum/assets/0xEBBdf302c940c6bfd49C6b165f457fdb324649bc/logo.png differ diff --git a/blockchains/ethereum/assets/0xEBd01Df7e1E56e89A52c5DE185377d3A2eEf9a2b/info.json b/blockchains/ethereum/assets/0xEBd01Df7e1E56e89A52c5DE185377d3A2eEf9a2b/info.json new file mode 100644 index 00000000..7590f737 --- /dev/null +++ b/blockchains/ethereum/assets/0xEBd01Df7e1E56e89A52c5DE185377d3A2eEf9a2b/info.json @@ -0,0 +1,11 @@ +{ + "name": "FlameHyre Token", + "symbol": "FHT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEBd01Df7e1E56e89A52c5DE185377d3A2eEf9a2b", + "status": "abandoned", + "id": "0xEBd01Df7e1E56e89A52c5DE185377d3A2eEf9a2b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEBd01Df7e1E56e89A52c5DE185377d3A2eEf9a2b/logo.png b/blockchains/ethereum/assets/0xEBd01Df7e1E56e89A52c5DE185377d3A2eEf9a2b/logo.png new file mode 100644 index 00000000..d2506e80 Binary files /dev/null and b/blockchains/ethereum/assets/0xEBd01Df7e1E56e89A52c5DE185377d3A2eEf9a2b/logo.png differ diff --git a/blockchains/ethereum/assets/0xEBd9D99A3982d547C5Bb4DB7E3b1F9F14b67Eb83/info.json b/blockchains/ethereum/assets/0xEBd9D99A3982d547C5Bb4DB7E3b1F9F14b67Eb83/info.json new file mode 100644 index 00000000..40cf0560 --- /dev/null +++ b/blockchains/ethereum/assets/0xEBd9D99A3982d547C5Bb4DB7E3b1F9F14b67Eb83/info.json @@ -0,0 +1,11 @@ +{ + "name": "Everest", + "type": "ERC20", + "symbol": "ID", + "decimals": 18, + "website": "https://everest.org", + "description": "Everest ID Token", + "explorer": "https://etherscan.io/token/0xebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83", + "status": "active", + "id": "0xEBd9D99A3982d547C5Bb4DB7E3b1F9F14b67Eb83" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEBd9D99A3982d547C5Bb4DB7E3b1F9F14b67Eb83/logo.png b/blockchains/ethereum/assets/0xEBd9D99A3982d547C5Bb4DB7E3b1F9F14b67Eb83/logo.png new file mode 100644 index 00000000..1d965903 Binary files /dev/null and b/blockchains/ethereum/assets/0xEBd9D99A3982d547C5Bb4DB7E3b1F9F14b67Eb83/logo.png differ diff --git a/blockchains/ethereum/assets/0xEC01d916a853036a6080750F7D2B5902B5Db84B2/info.json b/blockchains/ethereum/assets/0xEC01d916a853036a6080750F7D2B5902B5Db84B2/info.json new file mode 100644 index 00000000..254e2032 --- /dev/null +++ b/blockchains/ethereum/assets/0xEC01d916a853036a6080750F7D2B5902B5Db84B2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Arcoin", + "symbol": "AR2", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEC01d916a853036a6080750F7D2B5902B5Db84B2", + "status": "abandoned", + "id": "0xEC01d916a853036a6080750F7D2B5902B5Db84B2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEC01d916a853036a6080750F7D2B5902B5Db84B2/logo.png b/blockchains/ethereum/assets/0xEC01d916a853036a6080750F7D2B5902B5Db84B2/logo.png new file mode 100644 index 00000000..5ba62723 Binary files /dev/null and b/blockchains/ethereum/assets/0xEC01d916a853036a6080750F7D2B5902B5Db84B2/logo.png differ diff --git a/blockchains/ethereum/assets/0xEC02cEc4eDD54196D2767b61F43b29A49b056fe6/info.json b/blockchains/ethereum/assets/0xEC02cEc4eDD54196D2767b61F43b29A49b056fe6/info.json new file mode 100644 index 00000000..3a824f2a --- /dev/null +++ b/blockchains/ethereum/assets/0xEC02cEc4eDD54196D2767b61F43b29A49b056fe6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unifier", + "symbol": "UNIF", + "type": "ERC20", + "decimals": 7, + "description": "-", + "website": "https://unifiersystem.org/", + "explorer": "https://etherscan.io/token/0xEC02cEc4eDD54196D2767b61F43b29A49b056fe6", + "status": "abandoned", + "id": "0xEC02cEc4eDD54196D2767b61F43b29A49b056fe6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEC02cEc4eDD54196D2767b61F43b29A49b056fe6/logo.png b/blockchains/ethereum/assets/0xEC02cEc4eDD54196D2767b61F43b29A49b056fe6/logo.png new file mode 100644 index 00000000..d3ae7a55 Binary files /dev/null and b/blockchains/ethereum/assets/0xEC02cEc4eDD54196D2767b61F43b29A49b056fe6/logo.png differ diff --git a/blockchains/ethereum/assets/0xEC1b361a5c0B4c1a9A57E9c288C3Da8EfB111e2B/info.json b/blockchains/ethereum/assets/0xEC1b361a5c0B4c1a9A57E9c288C3Da8EfB111e2B/info.json new file mode 100644 index 00000000..e40983ec --- /dev/null +++ b/blockchains/ethereum/assets/0xEC1b361a5c0B4c1a9A57E9c288C3Da8EfB111e2B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lucinite", + "symbol": "CSC-LU", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEC1b361a5c0B4c1a9A57E9c288C3Da8EfB111e2B", + "status": "abandoned", + "id": "0xEC1b361a5c0B4c1a9A57E9c288C3Da8EfB111e2B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEC1b361a5c0B4c1a9A57E9c288C3Da8EfB111e2B/logo.png b/blockchains/ethereum/assets/0xEC1b361a5c0B4c1a9A57E9c288C3Da8EfB111e2B/logo.png new file mode 100755 index 00000000..eaaa137a Binary files /dev/null and b/blockchains/ethereum/assets/0xEC1b361a5c0B4c1a9A57E9c288C3Da8EfB111e2B/logo.png differ diff --git a/blockchains/ethereum/assets/0xEC213F83defB583af3A000B1c0ada660b1902A0F/info.json b/blockchains/ethereum/assets/0xEC213F83defB583af3A000B1c0ada660b1902A0F/info.json new file mode 100644 index 00000000..89eb0d9f --- /dev/null +++ b/blockchains/ethereum/assets/0xEC213F83defB583af3A000B1c0ada660b1902A0F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Presearch", + "website": "https://presearch.io", + "description": "Presearch aims to build a next-generation search engine that is powered by its community.", + "explorer": "https://etherscan.io/token/0xEC213F83defB583af3A000B1c0ada660b1902A0F", + "type": "ERC20", + "symbol": "PRE", + "decimals": 18, + "status": "active", + "id": "0xEC213F83defB583af3A000B1c0ada660b1902A0F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEC213F83defB583af3A000B1c0ada660b1902A0F/logo.png b/blockchains/ethereum/assets/0xEC213F83defB583af3A000B1c0ada660b1902A0F/logo.png new file mode 100755 index 00000000..f177f301 Binary files /dev/null and b/blockchains/ethereum/assets/0xEC213F83defB583af3A000B1c0ada660b1902A0F/logo.png differ diff --git a/blockchains/ethereum/assets/0xEC491c1088Eae992B7A214efB0a266AD0927A72A/info.json b/blockchains/ethereum/assets/0xEC491c1088Eae992B7A214efB0a266AD0927A72A/info.json new file mode 100644 index 00000000..131b40b0 --- /dev/null +++ b/blockchains/ethereum/assets/0xEC491c1088Eae992B7A214efB0a266AD0927A72A/info.json @@ -0,0 +1,11 @@ +{ + "name": "AB-CHAIN RTB token", + "symbol": "RTB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEC491c1088Eae992B7A214efB0a266AD0927A72A", + "status": "abandoned", + "id": "0xEC491c1088Eae992B7A214efB0a266AD0927A72A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEC491c1088Eae992B7A214efB0a266AD0927A72A/logo.png b/blockchains/ethereum/assets/0xEC491c1088Eae992B7A214efB0a266AD0927A72A/logo.png new file mode 100644 index 00000000..e06bde6a Binary files /dev/null and b/blockchains/ethereum/assets/0xEC491c1088Eae992B7A214efB0a266AD0927A72A/logo.png differ diff --git a/blockchains/ethereum/assets/0xEC681F28f4561c2a9534799AA38E0d36A83Cf478/info.json b/blockchains/ethereum/assets/0xEC681F28f4561c2a9534799AA38E0d36A83Cf478/info.json new file mode 100644 index 00000000..a5fcb65e --- /dev/null +++ b/blockchains/ethereum/assets/0xEC681F28f4561c2a9534799AA38E0d36A83Cf478/info.json @@ -0,0 +1,11 @@ +{ + "name": "YVS.Finance", + "website": "https://yvs.finance", + "description": "The first and only yield-farming, vaults and staking deflationary token with no admin control.", + "explorer": "https://etherscan.io/token/0xec681f28f4561c2a9534799aa38e0d36a83cf478", + "type": "ERC20", + "symbol": "YVS", + "decimals": 18, + "status": "active", + "id": "0xEC681F28f4561c2a9534799AA38E0d36A83Cf478" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEC681F28f4561c2a9534799AA38E0d36A83Cf478/logo.png b/blockchains/ethereum/assets/0xEC681F28f4561c2a9534799AA38E0d36A83Cf478/logo.png new file mode 100644 index 00000000..fc806f78 Binary files /dev/null and b/blockchains/ethereum/assets/0xEC681F28f4561c2a9534799AA38E0d36A83Cf478/logo.png differ diff --git a/blockchains/ethereum/assets/0xEC80Ef99990E15373d2E860f57422E4e22e61F27/info.json b/blockchains/ethereum/assets/0xEC80Ef99990E15373d2E860f57422E4e22e61F27/info.json new file mode 100644 index 00000000..e0983b2f --- /dev/null +++ b/blockchains/ethereum/assets/0xEC80Ef99990E15373d2E860f57422E4e22e61F27/info.json @@ -0,0 +1,11 @@ +{ + "name": "M8TRX5", + "symbol": "M85", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEC80Ef99990E15373d2E860f57422E4e22e61F27", + "status": "abandoned", + "id": "0xEC80Ef99990E15373d2E860f57422E4e22e61F27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEC80Ef99990E15373d2E860f57422E4e22e61F27/logo.png b/blockchains/ethereum/assets/0xEC80Ef99990E15373d2E860f57422E4e22e61F27/logo.png new file mode 100755 index 00000000..f66ced7b Binary files /dev/null and b/blockchains/ethereum/assets/0xEC80Ef99990E15373d2E860f57422E4e22e61F27/logo.png differ diff --git a/blockchains/ethereum/assets/0xEC9cE8c606cc8927df594b293be16544F8A70f11/info.json b/blockchains/ethereum/assets/0xEC9cE8c606cc8927df594b293be16544F8A70f11/info.json new file mode 100644 index 00000000..76ca43c3 --- /dev/null +++ b/blockchains/ethereum/assets/0xEC9cE8c606cc8927df594b293be16544F8A70f11/info.json @@ -0,0 +1,11 @@ +{ + "name": "V-PALADINI TEST 5", + "symbol": "V", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEC9cE8c606cc8927df594b293be16544F8A70f11", + "status": "abandoned", + "id": "0xEC9cE8c606cc8927df594b293be16544F8A70f11" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEC9cE8c606cc8927df594b293be16544F8A70f11/logo.png b/blockchains/ethereum/assets/0xEC9cE8c606cc8927df594b293be16544F8A70f11/logo.png new file mode 100644 index 00000000..0b6dddf8 Binary files /dev/null and b/blockchains/ethereum/assets/0xEC9cE8c606cc8927df594b293be16544F8A70f11/logo.png differ diff --git a/blockchains/ethereum/assets/0xECB8F588EAf5A8ce9d964b0acece5D954E130e2f/info.json b/blockchains/ethereum/assets/0xECB8F588EAf5A8ce9d964b0acece5D954E130e2f/info.json new file mode 100644 index 00000000..4181bd1d --- /dev/null +++ b/blockchains/ethereum/assets/0xECB8F588EAf5A8ce9d964b0acece5D954E130e2f/info.json @@ -0,0 +1,11 @@ +{ + "name": "simplyBrand Token", + "symbol": "SBA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://simplybrand.io/", + "explorer": "https://etherscan.io/token/0xECB8F588EAf5A8ce9d964b0acece5D954E130e2f", + "status": "abandoned", + "id": "0xECB8F588EAf5A8ce9d964b0acece5D954E130e2f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xECB8F588EAf5A8ce9d964b0acece5D954E130e2f/logo.png b/blockchains/ethereum/assets/0xECB8F588EAf5A8ce9d964b0acece5D954E130e2f/logo.png new file mode 100644 index 00000000..4f15957b Binary files /dev/null and b/blockchains/ethereum/assets/0xECB8F588EAf5A8ce9d964b0acece5D954E130e2f/logo.png differ diff --git a/blockchains/ethereum/assets/0xECC6724229E50Ac26F136132c2A462fAf63f720B/info.json b/blockchains/ethereum/assets/0xECC6724229E50Ac26F136132c2A462fAf63f720B/info.json new file mode 100644 index 00000000..7db97b52 --- /dev/null +++ b/blockchains/ethereum/assets/0xECC6724229E50Ac26F136132c2A462fAf63f720B/info.json @@ -0,0 +1,11 @@ +{ + "name": "LASVEGASCOIN", + "symbol": "VEGAS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xECC6724229E50Ac26F136132c2A462fAf63f720B", + "status": "abandoned", + "id": "0xECC6724229E50Ac26F136132c2A462fAf63f720B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xECC6724229E50Ac26F136132c2A462fAf63f720B/logo.png b/blockchains/ethereum/assets/0xECC6724229E50Ac26F136132c2A462fAf63f720B/logo.png new file mode 100755 index 00000000..3ed42d18 Binary files /dev/null and b/blockchains/ethereum/assets/0xECC6724229E50Ac26F136132c2A462fAf63f720B/logo.png differ diff --git a/blockchains/ethereum/assets/0xECbF566944250ddE88322581024E611419715f7A/info.json b/blockchains/ethereum/assets/0xECbF566944250ddE88322581024E611419715f7A/info.json new file mode 100644 index 00000000..dd017a8c --- /dev/null +++ b/blockchains/ethereum/assets/0xECbF566944250ddE88322581024E611419715f7A/info.json @@ -0,0 +1,21 @@ +{ + "name": "xBTC", + "website": "https://xbtc.fi", + "description": "xBTC gives users one token access to every single digital asset on earth, pegged against Bitcoin dominance.", + "explorer": "https://etherscan.io/token/0xECbF566944250ddE88322581024E611419715f7A", + "type": "ERC20", + "symbol": "xBTC", + "decimals": 9, + "status": "active", + "id": "0xECbF566944250ddE88322581024E611419715f7A", + "links": [ + { + "name": "github", + "url": "https://github.com/ipo/xBTC-uFragments" + }, + { + "name": "whitepaper", + "url": "https://xbtc.fi/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xECbF566944250ddE88322581024E611419715f7A/logo.png b/blockchains/ethereum/assets/0xECbF566944250ddE88322581024E611419715f7A/logo.png new file mode 100644 index 00000000..d84483fd Binary files /dev/null and b/blockchains/ethereum/assets/0xECbF566944250ddE88322581024E611419715f7A/logo.png differ diff --git a/blockchains/ethereum/assets/0xED4699f180a14B5974c26f494483F9c327Fd381a/info.json b/blockchains/ethereum/assets/0xED4699f180a14B5974c26f494483F9c327Fd381a/info.json new file mode 100644 index 00000000..d1df3a03 --- /dev/null +++ b/blockchains/ethereum/assets/0xED4699f180a14B5974c26f494483F9c327Fd381a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Synth sAUD", + "symbol": "sAUD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xED4699f180a14B5974c26f494483F9c327Fd381a", + "status": "abandoned", + "id": "0xED4699f180a14B5974c26f494483F9c327Fd381a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xED4699f180a14B5974c26f494483F9c327Fd381a/logo.png b/blockchains/ethereum/assets/0xED4699f180a14B5974c26f494483F9c327Fd381a/logo.png new file mode 100644 index 00000000..f3d6a9ba Binary files /dev/null and b/blockchains/ethereum/assets/0xED4699f180a14B5974c26f494483F9c327Fd381a/logo.png differ diff --git a/blockchains/ethereum/assets/0xED494c9e2F8E34e53BDD0EA9B4d80305cb15C5c2/info.json b/blockchains/ethereum/assets/0xED494c9e2F8E34e53BDD0EA9B4d80305cb15C5c2/info.json new file mode 100644 index 00000000..b611bcb7 --- /dev/null +++ b/blockchains/ethereum/assets/0xED494c9e2F8E34e53BDD0EA9B4d80305cb15C5c2/info.json @@ -0,0 +1,11 @@ +{ + "name": "CWV Chain", + "symbol": "CWV", + "type": "ERC20", + "decimals": 18, + "description": "CWV Chain (CWV) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://cwv.io", + "explorer": "https://etherscan.io/token/0xED494c9e2F8E34e53BDD0EA9B4d80305cb15C5c2", + "status": "active", + "id": "0xED494c9e2F8E34e53BDD0EA9B4d80305cb15C5c2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xED494c9e2F8E34e53BDD0EA9B4d80305cb15C5c2/logo.png b/blockchains/ethereum/assets/0xED494c9e2F8E34e53BDD0EA9B4d80305cb15C5c2/logo.png new file mode 100644 index 00000000..06f86635 Binary files /dev/null and b/blockchains/ethereum/assets/0xED494c9e2F8E34e53BDD0EA9B4d80305cb15C5c2/logo.png differ diff --git a/blockchains/ethereum/assets/0xED82730312babb41367E060911F798002FFA445F/info.json b/blockchains/ethereum/assets/0xED82730312babb41367E060911F798002FFA445F/info.json new file mode 100644 index 00000000..760bdc61 --- /dev/null +++ b/blockchains/ethereum/assets/0xED82730312babb41367E060911F798002FFA445F/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Crypto Tech", + "symbol": "TCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xED82730312babb41367E060911F798002FFA445F", + "status": "abandoned", + "id": "0xED82730312babb41367E060911F798002FFA445F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xED82730312babb41367E060911F798002FFA445F/logo.png b/blockchains/ethereum/assets/0xED82730312babb41367E060911F798002FFA445F/logo.png new file mode 100644 index 00000000..0efe20ae Binary files /dev/null and b/blockchains/ethereum/assets/0xED82730312babb41367E060911F798002FFA445F/logo.png differ diff --git a/blockchains/ethereum/assets/0xEDD7c94FD7B4971b916d15067Bc454b9E1bAD980/info.json b/blockchains/ethereum/assets/0xEDD7c94FD7B4971b916d15067Bc454b9E1bAD980/info.json new file mode 100644 index 00000000..5c040609 --- /dev/null +++ b/blockchains/ethereum/assets/0xEDD7c94FD7B4971b916d15067Bc454b9E1bAD980/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zippie", + "symbol": "ZIPT", + "type": "ERC20", + "decimals": 18, + "description": "Zippie makes storing and sending digital currencies, such as ether, easier than ever. Using your Zippie Card, it takes just a single tap to your phone to confirm large payments. NFC technology ensures that only you can move your funds.", + "website": "https://zippie.org/", + "explorer": "https://etherscan.io/token/0xEDD7c94FD7B4971b916d15067Bc454b9E1bAD980", + "status": "active", + "id": "0xEDD7c94FD7B4971b916d15067Bc454b9E1bAD980" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEDD7c94FD7B4971b916d15067Bc454b9E1bAD980/logo.png b/blockchains/ethereum/assets/0xEDD7c94FD7B4971b916d15067Bc454b9E1bAD980/logo.png new file mode 100755 index 00000000..ad6b313a Binary files /dev/null and b/blockchains/ethereum/assets/0xEDD7c94FD7B4971b916d15067Bc454b9E1bAD980/logo.png differ diff --git a/blockchains/ethereum/assets/0xEE06A81a695750E71a662B51066F2c74CF4478a0/info.json b/blockchains/ethereum/assets/0xEE06A81a695750E71a662B51066F2c74CF4478a0/info.json new file mode 100644 index 00000000..d0d40570 --- /dev/null +++ b/blockchains/ethereum/assets/0xEE06A81a695750E71a662B51066F2c74CF4478a0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decentral Games", + "symbol": "$DG", + "type": "ERC20", + "decimals": 18, + "description": "The first community-owned, Metaverse casino", + "website": "https://decentral.games", + "explorer": "https://etherscan.io/token/0xEE06A81a695750E71a662B51066F2c74CF4478a0", + "status": "active", + "id": "0xEE06A81a695750E71a662B51066F2c74CF4478a0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEE06A81a695750E71a662B51066F2c74CF4478a0/logo.png b/blockchains/ethereum/assets/0xEE06A81a695750E71a662B51066F2c74CF4478a0/logo.png new file mode 100644 index 00000000..9bac5c2b Binary files /dev/null and b/blockchains/ethereum/assets/0xEE06A81a695750E71a662B51066F2c74CF4478a0/logo.png differ diff --git a/blockchains/ethereum/assets/0xEE2131B349738090E92991d55F6D09Ce17930b92/info.json b/blockchains/ethereum/assets/0xEE2131B349738090E92991d55F6D09Ce17930b92/info.json new file mode 100644 index 00000000..aa42e774 --- /dev/null +++ b/blockchains/ethereum/assets/0xEE2131B349738090E92991d55F6D09Ce17930b92/info.json @@ -0,0 +1,11 @@ +{ + "name": "YLCHINA", + "symbol": "DYLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEE2131B349738090E92991d55F6D09Ce17930b92", + "status": "abandoned", + "id": "0xEE2131B349738090E92991d55F6D09Ce17930b92" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEE2131B349738090E92991d55F6D09Ce17930b92/logo.png b/blockchains/ethereum/assets/0xEE2131B349738090E92991d55F6D09Ce17930b92/logo.png new file mode 100644 index 00000000..ac553b80 Binary files /dev/null and b/blockchains/ethereum/assets/0xEE2131B349738090E92991d55F6D09Ce17930b92/logo.png differ diff --git a/blockchains/ethereum/assets/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637/info.json b/blockchains/ethereum/assets/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637/info.json new file mode 100644 index 00000000..f1d6c083 --- /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 00000000..e12e7e99 Binary files /dev/null and b/blockchains/ethereum/assets/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637/logo.png differ diff --git a/blockchains/ethereum/assets/0xEE50AA773abA0B4FC1a1944727951b88883a3f23/info.json b/blockchains/ethereum/assets/0xEE50AA773abA0B4FC1a1944727951b88883a3f23/info.json new file mode 100644 index 00000000..f782c465 --- /dev/null +++ b/blockchains/ethereum/assets/0xEE50AA773abA0B4FC1a1944727951b88883a3f23/info.json @@ -0,0 +1,11 @@ +{ + "name": "Taurus Group SA", + "symbol": "TAU", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEE50AA773abA0B4FC1a1944727951b88883a3f23", + "status": "abandoned", + "id": "0xEE50AA773abA0B4FC1a1944727951b88883a3f23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEE50AA773abA0B4FC1a1944727951b88883a3f23/logo.png b/blockchains/ethereum/assets/0xEE50AA773abA0B4FC1a1944727951b88883a3f23/logo.png new file mode 100644 index 00000000..65ffc2ac Binary files /dev/null and b/blockchains/ethereum/assets/0xEE50AA773abA0B4FC1a1944727951b88883a3f23/logo.png differ diff --git a/blockchains/ethereum/assets/0xEE5dFB5Ddd54eA2fB93b796a8A1b83C3fe38E0e6/info.json b/blockchains/ethereum/assets/0xEE5dFB5Ddd54eA2fB93b796a8A1b83C3fe38E0e6/info.json new file mode 100644 index 00000000..7910e76f --- /dev/null +++ b/blockchains/ethereum/assets/0xEE5dFB5Ddd54eA2fB93b796a8A1b83C3fe38E0e6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nerves", + "symbol": "NER", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://nerves.foundation/", + "explorer": "https://etherscan.io/token/0xEE5dFB5Ddd54eA2fB93b796a8A1b83C3fe38E0e6", + "status": "abandoned", + "id": "0xEE5dFB5Ddd54eA2fB93b796a8A1b83C3fe38E0e6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEE5dFB5Ddd54eA2fB93b796a8A1b83C3fe38E0e6/logo.png b/blockchains/ethereum/assets/0xEE5dFB5Ddd54eA2fB93b796a8A1b83C3fe38E0e6/logo.png new file mode 100644 index 00000000..bd628afb Binary files /dev/null and b/blockchains/ethereum/assets/0xEE5dFB5Ddd54eA2fB93b796a8A1b83C3fe38E0e6/logo.png differ diff --git a/blockchains/ethereum/assets/0xEE74110fB5A1007b06282e0DE5d73A61bf41d9Cd/info.json b/blockchains/ethereum/assets/0xEE74110fB5A1007b06282e0DE5d73A61bf41d9Cd/info.json new file mode 100644 index 00000000..1909f4bc --- /dev/null +++ b/blockchains/ethereum/assets/0xEE74110fB5A1007b06282e0DE5d73A61bf41d9Cd/info.json @@ -0,0 +1,11 @@ +{ + "name": "BHPCash", + "symbol": "BHPC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEE74110fB5A1007b06282e0DE5d73A61bf41d9Cd", + "status": "abandoned", + "id": "0xEE74110fB5A1007b06282e0DE5d73A61bf41d9Cd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEE74110fB5A1007b06282e0DE5d73A61bf41d9Cd/logo.png b/blockchains/ethereum/assets/0xEE74110fB5A1007b06282e0DE5d73A61bf41d9Cd/logo.png new file mode 100644 index 00000000..1121216d Binary files /dev/null and b/blockchains/ethereum/assets/0xEE74110fB5A1007b06282e0DE5d73A61bf41d9Cd/logo.png differ diff --git a/blockchains/ethereum/assets/0xEE8Bd1502c3e9F6c543781467c01592ac51CFbb8/info.json b/blockchains/ethereum/assets/0xEE8Bd1502c3e9F6c543781467c01592ac51CFbb8/info.json new file mode 100644 index 00000000..37cc4079 --- /dev/null +++ b/blockchains/ethereum/assets/0xEE8Bd1502c3e9F6c543781467c01592ac51CFbb8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Titanium BAR", + "symbol": "TBAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEE8Bd1502c3e9F6c543781467c01592ac51CFbb8", + "status": "abandoned", + "id": "0xEE8Bd1502c3e9F6c543781467c01592ac51CFbb8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEE8Bd1502c3e9F6c543781467c01592ac51CFbb8/logo.png b/blockchains/ethereum/assets/0xEE8Bd1502c3e9F6c543781467c01592ac51CFbb8/logo.png new file mode 100755 index 00000000..a9afa28a Binary files /dev/null and b/blockchains/ethereum/assets/0xEE8Bd1502c3e9F6c543781467c01592ac51CFbb8/logo.png differ diff --git a/blockchains/ethereum/assets/0xEEAcC51Af745846DDf46012B46C6910ea9b12898/info.json b/blockchains/ethereum/assets/0xEEAcC51Af745846DDf46012B46C6910ea9b12898/info.json new file mode 100644 index 00000000..5e7a0268 --- /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 00000000..818563d9 Binary files /dev/null and b/blockchains/ethereum/assets/0xEEAcC51Af745846DDf46012B46C6910ea9b12898/logo.png differ diff --git a/blockchains/ethereum/assets/0xEECfa1F63F9CCe7AE80A49D5341DCbA2563d72e1/info.json b/blockchains/ethereum/assets/0xEECfa1F63F9CCe7AE80A49D5341DCbA2563d72e1/info.json new file mode 100644 index 00000000..761c5da2 --- /dev/null +++ b/blockchains/ethereum/assets/0xEECfa1F63F9CCe7AE80A49D5341DCbA2563d72e1/info.json @@ -0,0 +1,11 @@ +{ + "name": "CROS", + "symbol": "CROS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEECfa1F63F9CCe7AE80A49D5341DCbA2563d72e1", + "status": "abandoned", + "id": "0xEECfa1F63F9CCe7AE80A49D5341DCbA2563d72e1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEECfa1F63F9CCe7AE80A49D5341DCbA2563d72e1/logo.png b/blockchains/ethereum/assets/0xEECfa1F63F9CCe7AE80A49D5341DCbA2563d72e1/logo.png new file mode 100644 index 00000000..57f7d5b5 Binary files /dev/null and b/blockchains/ethereum/assets/0xEECfa1F63F9CCe7AE80A49D5341DCbA2563d72e1/logo.png differ diff --git a/blockchains/ethereum/assets/0xEED736b2b809550D89A941C2005dE93588c628e2/info.json b/blockchains/ethereum/assets/0xEED736b2b809550D89A941C2005dE93588c628e2/info.json new file mode 100644 index 00000000..b148251f --- /dev/null +++ b/blockchains/ethereum/assets/0xEED736b2b809550D89A941C2005dE93588c628e2/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETHPlus", + "website": "https://ethplus.net/", + "description": "We aimed to answer a need in the crypto community for a coin to deliver superior security features as being safe and transparent. ETHPlus is about fair play, provides an element of choice to the user, between ultra-security and speed.", + "explorer": "https://etherscan.io/token/0xEED736b2b809550D89A941C2005dE93588c628e2", + "type": "ERC20", + "symbol": "ETHP", + "decimals": 18, + "status": "active", + "id": "0xEED736b2b809550D89A941C2005dE93588c628e2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEED736b2b809550D89A941C2005dE93588c628e2/logo.png b/blockchains/ethereum/assets/0xEED736b2b809550D89A941C2005dE93588c628e2/logo.png new file mode 100644 index 00000000..f33f29cd Binary files /dev/null and b/blockchains/ethereum/assets/0xEED736b2b809550D89A941C2005dE93588c628e2/logo.png differ diff --git a/blockchains/ethereum/assets/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE/info.json b/blockchains/ethereum/assets/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE/info.json new file mode 100644 index 00000000..09504ccb --- /dev/null +++ b/blockchains/ethereum/assets/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE/info.json @@ -0,0 +1,25 @@ +{ + "name": "Hermez Network Token", + "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", + "type": "ERC20", + "symbol": "HEZ", + "decimals": 18, + "status": "active", + "id": "0xEEF9f339514298C6A857EfCfC1A762aF84438dEE", + "links": [ + { + "name": "github", + "url": "https://github.com/hermeznetwork" + }, + { + "name": "x", + "url": "https://x.com/hermez_network" + }, + { + "name": "telegram", + "url": "https://t.me/hermez_network" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE/logo.png b/blockchains/ethereum/assets/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE/logo.png new file mode 100644 index 00000000..af6500e9 Binary files /dev/null and b/blockchains/ethereum/assets/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE/logo.png differ diff --git a/blockchains/ethereum/assets/0xEEaf33534F7e8628B281DA3aA01271D4ce22619d/info.json b/blockchains/ethereum/assets/0xEEaf33534F7e8628B281DA3aA01271D4ce22619d/info.json new file mode 100644 index 00000000..f88fca49 --- /dev/null +++ b/blockchains/ethereum/assets/0xEEaf33534F7e8628B281DA3aA01271D4ce22619d/info.json @@ -0,0 +1,11 @@ +{ + "name": "SwapCoinz", + "symbol": "SPZ", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEEaf33534F7e8628B281DA3aA01271D4ce22619d", + "status": "abandoned", + "id": "0xEEaf33534F7e8628B281DA3aA01271D4ce22619d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEEaf33534F7e8628B281DA3aA01271D4ce22619d/logo.png b/blockchains/ethereum/assets/0xEEaf33534F7e8628B281DA3aA01271D4ce22619d/logo.png new file mode 100644 index 00000000..770a9544 Binary files /dev/null and b/blockchains/ethereum/assets/0xEEaf33534F7e8628B281DA3aA01271D4ce22619d/logo.png differ diff --git a/blockchains/ethereum/assets/0xEEd3aE7b0F8b5B9BB8C035A9941382B1822671CD/info.json b/blockchains/ethereum/assets/0xEEd3aE7b0F8b5B9BB8C035A9941382B1822671CD/info.json new file mode 100644 index 00000000..ca77b53d --- /dev/null +++ b/blockchains/ethereum/assets/0xEEd3aE7b0F8b5B9BB8C035A9941382B1822671CD/info.json @@ -0,0 +1,11 @@ +{ + "name": "EveryCoin", + "symbol": "EVY", + "type": "ERC20", + "decimals": 12, + "description": "EveryCoin (EVY) is the cryptocurrency used on the Aaron Platform. The Aaron Platform consists of a BlockChain banking system (TabiPay), an Eco-Chain System that issues digital assets and a Digital Smart Wallet (DSW) that manages all digital assets. TabiPay is a StableCoin linked with Thailand's BATH.", + "website": "https://www.everycoin.io", + "explorer": "https://etherscan.io/token/0xEEd3aE7b0F8b5B9BB8C035A9941382B1822671CD", + "status": "active", + "id": "0xEEd3aE7b0F8b5B9BB8C035A9941382B1822671CD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEEd3aE7b0F8b5B9BB8C035A9941382B1822671CD/logo.png b/blockchains/ethereum/assets/0xEEd3aE7b0F8b5B9BB8C035A9941382B1822671CD/logo.png new file mode 100644 index 00000000..a01ff62a Binary files /dev/null and b/blockchains/ethereum/assets/0xEEd3aE7b0F8b5B9BB8C035A9941382B1822671CD/logo.png differ diff --git a/blockchains/ethereum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json b/blockchains/ethereum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json new file mode 100644 index 00000000..55cb4056 --- /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 00000000..7051dcb4 Binary files /dev/null and b/blockchains/ethereum/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/logo.png differ diff --git a/blockchains/ethereum/assets/0xEF19F4E48830093Ce5bC8b3Ff7f903A0AE3E9Fa1/info.json b/blockchains/ethereum/assets/0xEF19F4E48830093Ce5bC8b3Ff7f903A0AE3E9Fa1/info.json new file mode 100644 index 00000000..481177d2 --- /dev/null +++ b/blockchains/ethereum/assets/0xEF19F4E48830093Ce5bC8b3Ff7f903A0AE3E9Fa1/info.json @@ -0,0 +1,11 @@ +{ + "name": "botXcoin", + "symbol": "BOTX", + "type": "ERC20", + "decimals": 18, + "description": "The first copytrade platform with blockchain technology", + "website": "http://botxcoin.com", + "explorer": "https://etherscan.io/token/0xEF19F4E48830093Ce5bC8b3Ff7f903A0AE3E9Fa1", + "status": "active", + "id": "0xEF19F4E48830093Ce5bC8b3Ff7f903A0AE3E9Fa1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEF19F4E48830093Ce5bC8b3Ff7f903A0AE3E9Fa1/logo.png b/blockchains/ethereum/assets/0xEF19F4E48830093Ce5bC8b3Ff7f903A0AE3E9Fa1/logo.png new file mode 100644 index 00000000..df899fa9 Binary files /dev/null and b/blockchains/ethereum/assets/0xEF19F4E48830093Ce5bC8b3Ff7f903A0AE3E9Fa1/logo.png differ diff --git a/blockchains/ethereum/assets/0xEF2463099360a085f1f10b076Ed72Ef625497a06/info.json b/blockchains/ethereum/assets/0xEF2463099360a085f1f10b076Ed72Ef625497a06/info.json new file mode 100644 index 00000000..9ec002fd --- /dev/null +++ b/blockchains/ethereum/assets/0xEF2463099360a085f1f10b076Ed72Ef625497a06/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sharpe Platform Token", + "symbol": "SHP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://sharpe.capital", + "explorer": "https://etherscan.io/token/0xEF2463099360a085f1f10b076Ed72Ef625497a06", + "status": "abandoned", + "id": "0xEF2463099360a085f1f10b076Ed72Ef625497a06" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEF2463099360a085f1f10b076Ed72Ef625497a06/logo.png b/blockchains/ethereum/assets/0xEF2463099360a085f1f10b076Ed72Ef625497a06/logo.png new file mode 100644 index 00000000..d6ddc9d4 Binary files /dev/null and b/blockchains/ethereum/assets/0xEF2463099360a085f1f10b076Ed72Ef625497a06/logo.png differ diff --git a/blockchains/ethereum/assets/0xEa1f346faF023F974Eb5adaf088BbCdf02d761F4/info.json b/blockchains/ethereum/assets/0xEa1f346faF023F974Eb5adaf088BbCdf02d761F4/info.json new file mode 100644 index 00000000..c12e5db0 --- /dev/null +++ b/blockchains/ethereum/assets/0xEa1f346faF023F974Eb5adaf088BbCdf02d761F4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blocktix Token", + "symbol": "TIX", + "type": "ERC20", + "decimals": 18, + "description": "The Blocktix System is a platform that replaces the current fragmented markets of event ticket distribution, ticket transfer and event promotion. Blocktix is a single system for all services and provides a low overhead for distributors and promoters, freeing up money otherwise wasted in inefficient market based systems.", + "website": "https://blocktix.io/", + "explorer": "https://etherscan.io/token/0xEa1f346faF023F974Eb5adaf088BbCdf02d761F4", + "status": "active", + "id": "0xEa1f346faF023F974Eb5adaf088BbCdf02d761F4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEa1f346faF023F974Eb5adaf088BbCdf02d761F4/logo.png b/blockchains/ethereum/assets/0xEa1f346faF023F974Eb5adaf088BbCdf02d761F4/logo.png new file mode 100755 index 00000000..ccc99cbf Binary files /dev/null and b/blockchains/ethereum/assets/0xEa1f346faF023F974Eb5adaf088BbCdf02d761F4/logo.png differ diff --git a/blockchains/ethereum/assets/0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c/info.json b/blockchains/ethereum/assets/0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c/info.json new file mode 100644 index 00000000..b8625f47 --- /dev/null +++ b/blockchains/ethereum/assets/0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c/info.json @@ -0,0 +1,37 @@ +{ + "name": "SURF Finance", + "website": "https://surf.finance", + "explorer": "https://etherscan.io/token/0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c", + "description": "SURF.Finance is a financial experiment that aims to discover what happens when a transparent team fairly launches a governance token that is designed to reward long-term holders", + "type": "ERC20", + "symbol": "SURF", + "decimals": 18, + "status": "active", + "id": "0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c", + "links": [ + { + "name": "github", + "url": "https://github.com/SURF-Finance/contracts" + }, + { + "name": "x", + "url": "https://x.com/surf_defi" + }, + { + "name": "telegram", + "url": "https://t.me/surf_finance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZduXSdd" + }, + { + "name": "medium", + "url": "https://medium.com/@surf-finance" + }, + { + "name": "whitepaper", + "url": "https://surf.finance/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c/logo.png b/blockchains/ethereum/assets/0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c/logo.png new file mode 100644 index 00000000..ba7ff3b7 Binary files /dev/null and b/blockchains/ethereum/assets/0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c/logo.png differ diff --git a/blockchains/ethereum/assets/0xEa9Abc6b2662EE4f5D231006Eb65C9E938A26af1/info.json b/blockchains/ethereum/assets/0xEa9Abc6b2662EE4f5D231006Eb65C9E938A26af1/info.json new file mode 100644 index 00000000..2ecdff29 --- /dev/null +++ b/blockchains/ethereum/assets/0xEa9Abc6b2662EE4f5D231006Eb65C9E938A26af1/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R797473", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEa9Abc6b2662EE4f5D231006Eb65C9E938A26af1", + "status": "abandoned", + "id": "0xEa9Abc6b2662EE4f5D231006Eb65C9E938A26af1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEa9Abc6b2662EE4f5D231006Eb65C9E938A26af1/logo.png b/blockchains/ethereum/assets/0xEa9Abc6b2662EE4f5D231006Eb65C9E938A26af1/logo.png new file mode 100644 index 00000000..7203df43 Binary files /dev/null and b/blockchains/ethereum/assets/0xEa9Abc6b2662EE4f5D231006Eb65C9E938A26af1/logo.png differ diff --git a/blockchains/ethereum/assets/0xEaa2C985abF14Ac850F6614faebd6E4436BeA65f/info.json b/blockchains/ethereum/assets/0xEaa2C985abF14Ac850F6614faebd6E4436BeA65f/info.json new file mode 100644 index 00000000..99d2ddfe --- /dev/null +++ b/blockchains/ethereum/assets/0xEaa2C985abF14Ac850F6614faebd6E4436BeA65f/info.json @@ -0,0 +1,32 @@ +{ + "name": "Shumo.io", + "type": "ERC20", + "symbol": "SHUMO", + "decimals": 9, + "website": "https://http://shumo.io/", + "description": "SHUMO THE WORLDS MOST POWERFUL SHIB!", + "explorer": "https://etherscan.io/token/0xeaa2c985abf14ac850f6614faebd6e4436bea65f", + "status": "active", + "id": "0xEaa2C985abF14Ac850F6614faebd6E4436BeA65f", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shibnobi/" + }, + { + "name": "x", + "url": "https://x.com/ShumoOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/shumoofficial" + }, + { + "name": "medium", + "url": "https://www.medium.com/@ShumoOfficial" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEaa2C985abF14Ac850F6614faebd6E4436BeA65f/logo.png b/blockchains/ethereum/assets/0xEaa2C985abF14Ac850F6614faebd6E4436BeA65f/logo.png new file mode 100644 index 00000000..be140c25 Binary files /dev/null and b/blockchains/ethereum/assets/0xEaa2C985abF14Ac850F6614faebd6E4436BeA65f/logo.png differ diff --git a/blockchains/ethereum/assets/0xEb4E33dd1D97407ADD2aFcDcD5dd17851b1695d0/info.json b/blockchains/ethereum/assets/0xEb4E33dd1D97407ADD2aFcDcD5dd17851b1695d0/info.json new file mode 100644 index 00000000..d47bc913 --- /dev/null +++ b/blockchains/ethereum/assets/0xEb4E33dd1D97407ADD2aFcDcD5dd17851b1695d0/info.json @@ -0,0 +1,11 @@ +{ + "name": "RuzeFinance", + "website": "https://ruze.io", + "description": "Lend, borrow, exchange and generate your own custom stable interest earning currency with Ruze, all in an anonymous and truly decentralized manner. Ruze economy possesses a unique & flexible supply mechanism, which rebases hourly.", + "explorer": "https://etherscan.io/token/0xEb4E33dd1D97407ADD2aFcDcD5dd17851b1695d0", + "type": "ERC20", + "symbol": "RUZE", + "decimals": 18, + "status": "active", + "id": "0xEb4E33dd1D97407ADD2aFcDcD5dd17851b1695d0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEb4E33dd1D97407ADD2aFcDcD5dd17851b1695d0/logo.png b/blockchains/ethereum/assets/0xEb4E33dd1D97407ADD2aFcDcD5dd17851b1695d0/logo.png new file mode 100644 index 00000000..bea2dd41 Binary files /dev/null and b/blockchains/ethereum/assets/0xEb4E33dd1D97407ADD2aFcDcD5dd17851b1695d0/logo.png differ diff --git a/blockchains/ethereum/assets/0xEb6985ACD6d0cbff60B88032b0B29Ac1d9D66A1B/info.json b/blockchains/ethereum/assets/0xEb6985ACD6d0cbff60B88032b0B29Ac1d9D66A1B/info.json new file mode 100644 index 00000000..b4203d90 --- /dev/null +++ b/blockchains/ethereum/assets/0xEb6985ACD6d0cbff60B88032b0B29Ac1d9D66A1B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitbook Gambling", + "symbol": "BXK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ico.bitbook.ag/", + "explorer": "https://etherscan.io/token/0xEb6985ACD6d0cbff60B88032b0B29Ac1d9D66A1B", + "status": "abandoned", + "id": "0xEb6985ACD6d0cbff60B88032b0B29Ac1d9D66A1B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEb6985ACD6d0cbff60B88032b0B29Ac1d9D66A1B/logo.png b/blockchains/ethereum/assets/0xEb6985ACD6d0cbff60B88032b0B29Ac1d9D66A1B/logo.png new file mode 100644 index 00000000..f903eab5 Binary files /dev/null and b/blockchains/ethereum/assets/0xEb6985ACD6d0cbff60B88032b0B29Ac1d9D66A1B/logo.png differ diff --git a/blockchains/ethereum/assets/0xEbe17559127157d7686F952C45Fb53b8dBdE4A64/info.json b/blockchains/ethereum/assets/0xEbe17559127157d7686F952C45Fb53b8dBdE4A64/info.json new file mode 100644 index 00000000..370e05df --- /dev/null +++ b/blockchains/ethereum/assets/0xEbe17559127157d7686F952C45Fb53b8dBdE4A64/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR 800", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEbe17559127157d7686F952C45Fb53b8dBdE4A64", + "status": "abandoned", + "id": "0xEbe17559127157d7686F952C45Fb53b8dBdE4A64" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEbe17559127157d7686F952C45Fb53b8dBdE4A64/logo.png b/blockchains/ethereum/assets/0xEbe17559127157d7686F952C45Fb53b8dBdE4A64/logo.png new file mode 100644 index 00000000..97362d6b Binary files /dev/null and b/blockchains/ethereum/assets/0xEbe17559127157d7686F952C45Fb53b8dBdE4A64/logo.png differ diff --git a/blockchains/ethereum/assets/0xEc0d77a58528a218cBf41Fa6E1585c8D7A085868/info.json b/blockchains/ethereum/assets/0xEc0d77a58528a218cBf41Fa6E1585c8D7A085868/info.json new file mode 100644 index 00000000..2b434729 --- /dev/null +++ b/blockchains/ethereum/assets/0xEc0d77a58528a218cBf41Fa6E1585c8D7A085868/info.json @@ -0,0 +1,11 @@ +{ + "name": "oneETH", + "website": "https://ichi.org", + "description": "oneETH is the stablecoin created for the wETH community. Backed by both a treasury of wETH and collateral of USDC this ERC20 token can be redeemed for USDC at anytime and also provides a vote for governance of the wETH treasury.", + "explorer": "https://etherscan.io/token/0xEc0d77a58528a218cBf41Fa6E1585c8D7A085868", + "type": "ERC20", + "symbol": "oneETH", + "decimals": 9, + "status": "active", + "id": "0xEc0d77a58528a218cBf41Fa6E1585c8D7A085868" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEc0d77a58528a218cBf41Fa6E1585c8D7A085868/logo.png b/blockchains/ethereum/assets/0xEc0d77a58528a218cBf41Fa6E1585c8D7A085868/logo.png new file mode 100644 index 00000000..df79931f Binary files /dev/null and b/blockchains/ethereum/assets/0xEc0d77a58528a218cBf41Fa6E1585c8D7A085868/logo.png differ diff --git a/blockchains/ethereum/assets/0xEc169F9Ac2161723a2D4febd9748BB529D6C12B5/info.json b/blockchains/ethereum/assets/0xEc169F9Ac2161723a2D4febd9748BB529D6C12B5/info.json new file mode 100644 index 00000000..27c8965f --- /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 00000000..58564c02 Binary files /dev/null and b/blockchains/ethereum/assets/0xEc169F9Ac2161723a2D4febd9748BB529D6C12B5/logo.png differ diff --git a/blockchains/ethereum/assets/0xEc1a718D1A6F8F8d94eCEc6fe91465697bb2b88C/info.json b/blockchains/ethereum/assets/0xEc1a718D1A6F8F8d94eCEc6fe91465697bb2b88C/info.json new file mode 100644 index 00000000..f7aca74d --- /dev/null +++ b/blockchains/ethereum/assets/0xEc1a718D1A6F8F8d94eCEc6fe91465697bb2b88C/info.json @@ -0,0 +1,11 @@ +{ + "name": "ENTONE", + "symbol": "ENTONE", + "type": "ERC20", + "decimals": 8, + "description": "An online advertising platform and a wireless advertising network, known as ENTONE where users are rewarded by watching ads, entertainment, Instagram followers and subscribing to YouTube pages.", + "website": "https://entone.io/", + "explorer": "https://etherscan.io/token/0xEc1a718D1A6F8F8d94eCEc6fe91465697bb2b88C", + "status": "active", + "id": "0xEc1a718D1A6F8F8d94eCEc6fe91465697bb2b88C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEc1a718D1A6F8F8d94eCEc6fe91465697bb2b88C/logo.png b/blockchains/ethereum/assets/0xEc1a718D1A6F8F8d94eCEc6fe91465697bb2b88C/logo.png new file mode 100644 index 00000000..30f98710 Binary files /dev/null and b/blockchains/ethereum/assets/0xEc1a718D1A6F8F8d94eCEc6fe91465697bb2b88C/logo.png differ diff --git a/blockchains/ethereum/assets/0xEc4325F0518584F0774b483c215F65474EAbD27F/info.json b/blockchains/ethereum/assets/0xEc4325F0518584F0774b483c215F65474EAbD27F/info.json new file mode 100644 index 00000000..753c6561 --- /dev/null +++ b/blockchains/ethereum/assets/0xEc4325F0518584F0774b483c215F65474EAbD27F/info.json @@ -0,0 +1,36 @@ +{ + "name": "Stable BTC", + "website": "app.ichi.org", + "description": "oneBTC is an ICHI-created stablecoin backed by USDC and wBTC.", + "explorer": "https://etherscan.io/token/0xEc4325F0518584F0774b483c215F65474EAbD27F", + "type": "ERC20", + "symbol": "oneBTC", + "decimals": 18, + "status": "active", + "id": "0xEc4325F0518584F0774b483c215F65474EAbD27F", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm/ichi-oneToken" + }, + { + "name": "x", + "url": "https://x.com/ichifarm" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + }, + { + "name": "discord", + "url": "https://discord.com/invite/DvsYCfK8" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEc4325F0518584F0774b483c215F65474EAbD27F/logo.png b/blockchains/ethereum/assets/0xEc4325F0518584F0774b483c215F65474EAbD27F/logo.png new file mode 100644 index 00000000..9e88b9d5 Binary files /dev/null and b/blockchains/ethereum/assets/0xEc4325F0518584F0774b483c215F65474EAbD27F/logo.png differ diff --git a/blockchains/ethereum/assets/0xEc7D3E835dA3F6118079fA9a236b267D044FD7cA/info.json b/blockchains/ethereum/assets/0xEc7D3E835dA3F6118079fA9a236b267D044FD7cA/info.json new file mode 100644 index 00000000..763db83e --- /dev/null +++ b/blockchains/ethereum/assets/0xEc7D3E835dA3F6118079fA9a236b267D044FD7cA/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoRewards", + "symbol": "CRS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEc7D3E835dA3F6118079fA9a236b267D044FD7cA", + "status": "abandoned", + "id": "0xEc7D3E835dA3F6118079fA9a236b267D044FD7cA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEc7D3E835dA3F6118079fA9a236b267D044FD7cA/logo.png b/blockchains/ethereum/assets/0xEc7D3E835dA3F6118079fA9a236b267D044FD7cA/logo.png new file mode 100644 index 00000000..0119fc8c Binary files /dev/null and b/blockchains/ethereum/assets/0xEc7D3E835dA3F6118079fA9a236b267D044FD7cA/logo.png differ diff --git a/blockchains/ethereum/assets/0xEc8A2D9944B521c8dc680C5678B1124B1B384604/info.json b/blockchains/ethereum/assets/0xEc8A2D9944B521c8dc680C5678B1124B1B384604/info.json new file mode 100644 index 00000000..37be2b0b --- /dev/null +++ b/blockchains/ethereum/assets/0xEc8A2D9944B521c8dc680C5678B1124B1B384604/info.json @@ -0,0 +1,11 @@ +{ + "name": "IDIA Alliance", + "symbol": "IDIA", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEc8A2D9944B521c8dc680C5678B1124B1B384604", + "status": "abandoned", + "id": "0xEc8A2D9944B521c8dc680C5678B1124B1B384604" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEc8A2D9944B521c8dc680C5678B1124B1B384604/logo.png b/blockchains/ethereum/assets/0xEc8A2D9944B521c8dc680C5678B1124B1B384604/logo.png new file mode 100644 index 00000000..b7c6d405 Binary files /dev/null and b/blockchains/ethereum/assets/0xEc8A2D9944B521c8dc680C5678B1124B1B384604/logo.png differ diff --git a/blockchains/ethereum/assets/0xEc985525f3f22C7Fa9C9FF4a49e37589A76D86D4/info.json b/blockchains/ethereum/assets/0xEc985525f3f22C7Fa9C9FF4a49e37589A76D86D4/info.json new file mode 100644 index 00000000..80fcf23c --- /dev/null +++ b/blockchains/ethereum/assets/0xEc985525f3f22C7Fa9C9FF4a49e37589A76D86D4/info.json @@ -0,0 +1,11 @@ +{ + "name": "SGCC", + "symbol": "SGCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEc985525f3f22C7Fa9C9FF4a49e37589A76D86D4", + "status": "abandoned", + "id": "0xEc985525f3f22C7Fa9C9FF4a49e37589A76D86D4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEc985525f3f22C7Fa9C9FF4a49e37589A76D86D4/logo.png b/blockchains/ethereum/assets/0xEc985525f3f22C7Fa9C9FF4a49e37589A76D86D4/logo.png new file mode 100755 index 00000000..7240ba9e Binary files /dev/null and b/blockchains/ethereum/assets/0xEc985525f3f22C7Fa9C9FF4a49e37589A76D86D4/logo.png differ diff --git a/blockchains/ethereum/assets/0xEcE83617Db208Ad255Ad4f45Daf81E25137535bb/info.json b/blockchains/ethereum/assets/0xEcE83617Db208Ad255Ad4f45Daf81E25137535bb/info.json new file mode 100644 index 00000000..70995027 --- /dev/null +++ b/blockchains/ethereum/assets/0xEcE83617Db208Ad255Ad4f45Daf81E25137535bb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Invacio Coin", + "symbol": "INV", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.invacio.com", + "explorer": "https://etherscan.io/token/0xEcE83617Db208Ad255Ad4f45Daf81E25137535bb", + "status": "abandoned", + "id": "0xEcE83617Db208Ad255Ad4f45Daf81E25137535bb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEcE83617Db208Ad255Ad4f45Daf81E25137535bb/logo.png b/blockchains/ethereum/assets/0xEcE83617Db208Ad255Ad4f45Daf81E25137535bb/logo.png new file mode 100755 index 00000000..e21a3aa0 Binary files /dev/null and b/blockchains/ethereum/assets/0xEcE83617Db208Ad255Ad4f45Daf81E25137535bb/logo.png differ diff --git a/blockchains/ethereum/assets/0xEd00A2Cba066714999Ec703350E0a5B6B7AB66cB/info.json b/blockchains/ethereum/assets/0xEd00A2Cba066714999Ec703350E0a5B6B7AB66cB/info.json new file mode 100644 index 00000000..e5a1b88f --- /dev/null +++ b/blockchains/ethereum/assets/0xEd00A2Cba066714999Ec703350E0a5B6B7AB66cB/info.json @@ -0,0 +1,11 @@ +{ + "name": "O2O", + "symbol": "O2O", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEd00A2Cba066714999Ec703350E0a5B6B7AB66cB", + "status": "abandoned", + "id": "0xEd00A2Cba066714999Ec703350E0a5B6B7AB66cB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEd00A2Cba066714999Ec703350E0a5B6B7AB66cB/logo.png b/blockchains/ethereum/assets/0xEd00A2Cba066714999Ec703350E0a5B6B7AB66cB/logo.png new file mode 100644 index 00000000..2d4b7079 Binary files /dev/null and b/blockchains/ethereum/assets/0xEd00A2Cba066714999Ec703350E0a5B6B7AB66cB/logo.png differ diff --git a/blockchains/ethereum/assets/0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183/info.json b/blockchains/ethereum/assets/0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183/info.json new file mode 100644 index 00000000..af621913 --- /dev/null +++ b/blockchains/ethereum/assets/0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183/info.json @@ -0,0 +1,36 @@ +{ + "name": "Niftyx Protocol", + "type": "ERC20", + "symbol": "SHROOM", + "decimals": 18, + "website": "https://niftyx.org", + "description": "Niftyx is building a decentralised protocol for NFT trading and minting.", + "explorer": "https://etherscan.io/token/0xed0439eacf4c4965ae4613d77a5c2efe10e5f183", + "status": "active", + "id": "0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183", + "tags": [ + "governance" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/NiftyxProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/NiftyxProtocol" + }, + { + "name": "discord", + "url": "https://discord.com/invite/eZcFahS" + }, + { + "name": "medium", + "url": "https://niftyx.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCpdJrm8MyN6bUaD0ztLLBfg" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183/logo.png b/blockchains/ethereum/assets/0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183/logo.png new file mode 100644 index 00000000..62db7b83 Binary files /dev/null and b/blockchains/ethereum/assets/0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183/logo.png differ diff --git a/blockchains/ethereum/assets/0xEd04915c23f00A313a544955524EB7DBD823143d/info.json b/blockchains/ethereum/assets/0xEd04915c23f00A313a544955524EB7DBD823143d/info.json new file mode 100644 index 00000000..8c48cf5c --- /dev/null +++ b/blockchains/ethereum/assets/0xEd04915c23f00A313a544955524EB7DBD823143d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alchemy (ACH)", + "website": "https://alchemytech.io/", + "description": "Alchemy is a leading cryptocurrency payment solution and technology provider that powers online and offline merchants with fast, secure and convenient hybrid crypto-fiat payment systems and solutions.", + "explorer": "https://etherscan.io/token/0xEd04915c23f00A313a544955524EB7DBD823143d", + "type": "ERC20", + "symbol": "ACH", + "decimals": 8, + "status": "active", + "id": "0xEd04915c23f00A313a544955524EB7DBD823143d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEd04915c23f00A313a544955524EB7DBD823143d/logo.png b/blockchains/ethereum/assets/0xEd04915c23f00A313a544955524EB7DBD823143d/logo.png new file mode 100644 index 00000000..38c69da1 Binary files /dev/null and b/blockchains/ethereum/assets/0xEd04915c23f00A313a544955524EB7DBD823143d/logo.png differ diff --git a/blockchains/ethereum/assets/0xEd1199093b1aBd07a368Dd1C0Cdc77D8517BA2A0/info.json b/blockchains/ethereum/assets/0xEd1199093b1aBd07a368Dd1C0Cdc77D8517BA2A0/info.json new file mode 100644 index 00000000..c8d4a06a --- /dev/null +++ b/blockchains/ethereum/assets/0xEd1199093b1aBd07a368Dd1C0Cdc77D8517BA2A0/info.json @@ -0,0 +1,11 @@ +{ + "name": "HEX2T", + "symbol": "HEX2T", + "type": "ERC20", + "decimals": 18, + "description": "Hex2T is a fork of Hex designed to increase the rewards to stakers.", + "website": "https://axion.network/", + "explorer": "https://etherscan.io/token/0xEd1199093b1aBd07a368Dd1C0Cdc77D8517BA2A0", + "status": "active", + "id": "0xEd1199093b1aBd07a368Dd1C0Cdc77D8517BA2A0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEd1199093b1aBd07a368Dd1C0Cdc77D8517BA2A0/logo.png b/blockchains/ethereum/assets/0xEd1199093b1aBd07a368Dd1C0Cdc77D8517BA2A0/logo.png new file mode 100644 index 00000000..8120d760 Binary files /dev/null and b/blockchains/ethereum/assets/0xEd1199093b1aBd07a368Dd1C0Cdc77D8517BA2A0/logo.png differ diff --git a/blockchains/ethereum/assets/0xEd1eba8B87cD7E04e9389f65F7AeCa750c85a010/info.json b/blockchains/ethereum/assets/0xEd1eba8B87cD7E04e9389f65F7AeCa750c85a010/info.json new file mode 100644 index 00000000..b6434a3f --- /dev/null +++ b/blockchains/ethereum/assets/0xEd1eba8B87cD7E04e9389f65F7AeCa750c85a010/info.json @@ -0,0 +1,11 @@ +{ + "name": "Genesis Token of ATNIO", + "symbol": "AGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEd1eba8B87cD7E04e9389f65F7AeCa750c85a010", + "status": "abandoned", + "id": "0xEd1eba8B87cD7E04e9389f65F7AeCa750c85a010" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEd1eba8B87cD7E04e9389f65F7AeCa750c85a010/logo.png b/blockchains/ethereum/assets/0xEd1eba8B87cD7E04e9389f65F7AeCa750c85a010/logo.png new file mode 100644 index 00000000..5e181701 Binary files /dev/null and b/blockchains/ethereum/assets/0xEd1eba8B87cD7E04e9389f65F7AeCa750c85a010/logo.png differ diff --git a/blockchains/ethereum/assets/0xEd91879919B71bB6905f23af0A68d231EcF87b14/info.json b/blockchains/ethereum/assets/0xEd91879919B71bB6905f23af0A68d231EcF87b14/info.json new file mode 100644 index 00000000..7215e578 --- /dev/null +++ b/blockchains/ethereum/assets/0xEd91879919B71bB6905f23af0A68d231EcF87b14/info.json @@ -0,0 +1,11 @@ +{ + "name": "DMM: Governance", + "symbol": "DMG", + "type": "ERC20", + "decimals": 18, + "description": "The DMM system is decentralized, transparent and designed to enable everyone to re-earn interest in their currency which is backed by real assets represented on the network.", + "website": "https://defimoneymarket.com", + "explorer": "https://etherscan.io/token/0xEd91879919B71bB6905f23af0A68d231EcF87b14", + "status": "active", + "id": "0xEd91879919B71bB6905f23af0A68d231EcF87b14" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEd91879919B71bB6905f23af0A68d231EcF87b14/logo.png b/blockchains/ethereum/assets/0xEd91879919B71bB6905f23af0A68d231EcF87b14/logo.png new file mode 100644 index 00000000..3cae47fe Binary files /dev/null and b/blockchains/ethereum/assets/0xEd91879919B71bB6905f23af0A68d231EcF87b14/logo.png differ diff --git a/blockchains/ethereum/assets/0xEdF44412B47A76e452FD133794e45d9485E4cd4b/info.json b/blockchains/ethereum/assets/0xEdF44412B47A76e452FD133794e45d9485E4cd4b/info.json new file mode 100644 index 00000000..4df21e77 --- /dev/null +++ b/blockchains/ethereum/assets/0xEdF44412B47A76e452FD133794e45d9485E4cd4b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kingcuan", + "symbol": "CUAN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEdF44412B47A76e452FD133794e45d9485E4cd4b", + "status": "abandoned", + "id": "0xEdF44412B47A76e452FD133794e45d9485E4cd4b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEdF44412B47A76e452FD133794e45d9485E4cd4b/logo.png b/blockchains/ethereum/assets/0xEdF44412B47A76e452FD133794e45d9485E4cd4b/logo.png new file mode 100644 index 00000000..1498173a Binary files /dev/null and b/blockchains/ethereum/assets/0xEdF44412B47A76e452FD133794e45d9485E4cd4b/logo.png differ diff --git a/blockchains/ethereum/assets/0xEdFBd6c48c3dDfF5612Ade14B45bb19F916809ba/info.json b/blockchains/ethereum/assets/0xEdFBd6c48c3dDfF5612Ade14B45bb19F916809ba/info.json new file mode 100644 index 00000000..0b431ce5 --- /dev/null +++ b/blockchains/ethereum/assets/0xEdFBd6c48c3dDfF5612Ade14B45bb19F916809ba/info.json @@ -0,0 +1,17 @@ +{ + "name": "pulltherug.finance", + "website": "https://pulltherug.finance/", + "description": "Pull The Rug allows you to farm NFTs and has strategic partnerships with other coins to enhance ecosystem value.", + "explorer": "https://etherscan.io/token/0xEdFBd6c48c3dDfF5612Ade14B45bb19F916809ba", + "type": "ERC20", + "symbol": "RUGZ", + "decimals": 18, + "status": "active", + "id": "0xEdFBd6c48c3dDfF5612Ade14B45bb19F916809ba", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ruglife" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEdFBd6c48c3dDfF5612Ade14B45bb19F916809ba/logo.png b/blockchains/ethereum/assets/0xEdFBd6c48c3dDfF5612Ade14B45bb19F916809ba/logo.png new file mode 100644 index 00000000..cdfb52e5 Binary files /dev/null and b/blockchains/ethereum/assets/0xEdFBd6c48c3dDfF5612Ade14B45bb19F916809ba/logo.png differ diff --git a/blockchains/ethereum/assets/0xEda8B016efA8b1161208Cf041cD86972eeE0F31E/info.json b/blockchains/ethereum/assets/0xEda8B016efA8b1161208Cf041cD86972eeE0F31E/info.json new file mode 100644 index 00000000..0932d637 --- /dev/null +++ b/blockchains/ethereum/assets/0xEda8B016efA8b1161208Cf041cD86972eeE0F31E/info.json @@ -0,0 +1,11 @@ +{ + "name": "I HOUSE TOKEN", + "symbol": "IHT", + "type": "ERC20", + "decimals": 18, + "description": "IHT Real Estate Protocol Global Real Estate Blockchain Cloud Platform", + "website": "https://ihtcoin.com", + "explorer": "https://etherscan.io/token/0xEda8B016efA8b1161208Cf041cD86972eeE0F31E", + "status": "abandoned", + "id": "0xEda8B016efA8b1161208Cf041cD86972eeE0F31E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEda8B016efA8b1161208Cf041cD86972eeE0F31E/logo.png b/blockchains/ethereum/assets/0xEda8B016efA8b1161208Cf041cD86972eeE0F31E/logo.png new file mode 100644 index 00000000..bcb74bfd Binary files /dev/null and b/blockchains/ethereum/assets/0xEda8B016efA8b1161208Cf041cD86972eeE0F31E/logo.png differ diff --git a/blockchains/ethereum/assets/0xEdb0414627E6f1e3F082DE65cD4F9C693D78CCA9/info.json b/blockchains/ethereum/assets/0xEdb0414627E6f1e3F082DE65cD4F9C693D78CCA9/info.json new file mode 100644 index 00000000..43bb0212 --- /dev/null +++ b/blockchains/ethereum/assets/0xEdb0414627E6f1e3F082DE65cD4F9C693D78CCA9/info.json @@ -0,0 +1,29 @@ +{ + "name": "mTWTR Token", + "website": "https://mirror.finance", + "description": "Wrapped Mirror TWTR Token.", + "explorer": "https://etherscan.io/token/0xEdb0414627E6f1e3F082DE65cD4F9C693D78CCA9", + "type": "ERC20", + "symbol": "mTWTR", + "decimals": 18, + "status": "active", + "id": "0xEdb0414627E6f1e3F082DE65cD4F9C693D78CCA9", + "links": [ + { + "name": "x", + "url": "https://x.com/MirrorProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/mirror_protocol" + }, + { + "name": "discord", + "url": "https://discord.com/MirrorProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/@mirror-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEdb0414627E6f1e3F082DE65cD4F9C693D78CCA9/logo.png b/blockchains/ethereum/assets/0xEdb0414627E6f1e3F082DE65cD4F9C693D78CCA9/logo.png new file mode 100644 index 00000000..17bd01cd Binary files /dev/null and b/blockchains/ethereum/assets/0xEdb0414627E6f1e3F082DE65cD4F9C693D78CCA9/logo.png differ diff --git a/blockchains/ethereum/assets/0xEe059F0ca1507e4E20C689b20CFf71B5E924f7bd/info.json b/blockchains/ethereum/assets/0xEe059F0ca1507e4E20C689b20CFf71B5E924f7bd/info.json new file mode 100644 index 00000000..190aef38 --- /dev/null +++ b/blockchains/ethereum/assets/0xEe059F0ca1507e4E20C689b20CFf71B5E924f7bd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Litecoin SV", + "symbol": "LSV", + "type": "ERC20", + "decimals": 18, + "description": "Litecoin SV is the largest global Digital Currency Based on Crypto Network. It Everyone can Send low cost private, secure, borderless payments to anyone, anytime, anywhere.", + "website": "https://litecoin-sv.com/", + "explorer": "https://etherscan.io/token/0xEe059F0ca1507e4E20C689b20CFf71B5E924f7bd", + "status": "active", + "id": "0xEe059F0ca1507e4E20C689b20CFf71B5E924f7bd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEe059F0ca1507e4E20C689b20CFf71B5E924f7bd/logo.png b/blockchains/ethereum/assets/0xEe059F0ca1507e4E20C689b20CFf71B5E924f7bd/logo.png new file mode 100644 index 00000000..3ea105a7 Binary files /dev/null and b/blockchains/ethereum/assets/0xEe059F0ca1507e4E20C689b20CFf71B5E924f7bd/logo.png differ diff --git a/blockchains/ethereum/assets/0xEe16f8Cf30f56FA34f6348799d29568333E07CB5/info.json b/blockchains/ethereum/assets/0xEe16f8Cf30f56FA34f6348799d29568333E07CB5/info.json new file mode 100644 index 00000000..f45ce62b --- /dev/null +++ b/blockchains/ethereum/assets/0xEe16f8Cf30f56FA34f6348799d29568333E07CB5/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-27/30M87", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEe16f8Cf30f56FA34f6348799d29568333E07CB5", + "status": "abandoned", + "id": "0xEe16f8Cf30f56FA34f6348799d29568333E07CB5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEe16f8Cf30f56FA34f6348799d29568333E07CB5/logo.png b/blockchains/ethereum/assets/0xEe16f8Cf30f56FA34f6348799d29568333E07CB5/logo.png new file mode 100644 index 00000000..6fe75322 Binary files /dev/null and b/blockchains/ethereum/assets/0xEe16f8Cf30f56FA34f6348799d29568333E07CB5/logo.png differ diff --git a/blockchains/ethereum/assets/0xEe2542F442a5ed8008e2fe3590e14F90DB69f70d/info.json b/blockchains/ethereum/assets/0xEe2542F442a5ed8008e2fe3590e14F90DB69f70d/info.json new file mode 100644 index 00000000..1a2908c8 --- /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 00000000..71fbf201 Binary files /dev/null and b/blockchains/ethereum/assets/0xEe2542F442a5ed8008e2fe3590e14F90DB69f70d/logo.png differ diff --git a/blockchains/ethereum/assets/0xEe26Ec776662176D42f76fB22c2f025D50469D9E/info.json b/blockchains/ethereum/assets/0xEe26Ec776662176D42f76fB22c2f025D50469D9E/info.json new file mode 100644 index 00000000..6f001f5a --- /dev/null +++ b/blockchains/ethereum/assets/0xEe26Ec776662176D42f76fB22c2f025D50469D9E/info.json @@ -0,0 +1,11 @@ +{ + "name": "TOKEN 30S", + "symbol": "30S", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEe26Ec776662176D42f76fB22c2f025D50469D9E", + "status": "active", + "id": "0xEe26Ec776662176D42f76fB22c2f025D50469D9E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEe26Ec776662176D42f76fB22c2f025D50469D9E/logo.png b/blockchains/ethereum/assets/0xEe26Ec776662176D42f76fB22c2f025D50469D9E/logo.png new file mode 100644 index 00000000..e1f980d5 Binary files /dev/null and b/blockchains/ethereum/assets/0xEe26Ec776662176D42f76fB22c2f025D50469D9E/logo.png differ diff --git a/blockchains/ethereum/assets/0xEe3bB3BFB79B153bF1181a3995DC4aa8C4f037bB/info.json b/blockchains/ethereum/assets/0xEe3bB3BFB79B153bF1181a3995DC4aa8C4f037bB/info.json new file mode 100644 index 00000000..0b5483a3 --- /dev/null +++ b/blockchains/ethereum/assets/0xEe3bB3BFB79B153bF1181a3995DC4aa8C4f037bB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitelectroneum ", + "symbol": "BETN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEe3bB3BFB79B153bF1181a3995DC4aa8C4f037bB", + "status": "abandoned", + "id": "0xEe3bB3BFB79B153bF1181a3995DC4aa8C4f037bB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEe3bB3BFB79B153bF1181a3995DC4aa8C4f037bB/logo.png b/blockchains/ethereum/assets/0xEe3bB3BFB79B153bF1181a3995DC4aa8C4f037bB/logo.png new file mode 100644 index 00000000..da61fa8a Binary files /dev/null and b/blockchains/ethereum/assets/0xEe3bB3BFB79B153bF1181a3995DC4aa8C4f037bB/logo.png differ diff --git a/blockchains/ethereum/assets/0xEe4b7e6bC34A9f8069f910C6AC71dc294263EB26/info.json b/blockchains/ethereum/assets/0xEe4b7e6bC34A9f8069f910C6AC71dc294263EB26/info.json new file mode 100644 index 00000000..a972fecb --- /dev/null +++ b/blockchains/ethereum/assets/0xEe4b7e6bC34A9f8069f910C6AC71dc294263EB26/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRAVEL", + "symbol": "TRAVEL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEe4b7e6bC34A9f8069f910C6AC71dc294263EB26", + "status": "abandoned", + "id": "0xEe4b7e6bC34A9f8069f910C6AC71dc294263EB26" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEe4b7e6bC34A9f8069f910C6AC71dc294263EB26/logo.png b/blockchains/ethereum/assets/0xEe4b7e6bC34A9f8069f910C6AC71dc294263EB26/logo.png new file mode 100644 index 00000000..b83b82b2 Binary files /dev/null and b/blockchains/ethereum/assets/0xEe4b7e6bC34A9f8069f910C6AC71dc294263EB26/logo.png differ diff --git a/blockchains/ethereum/assets/0xEe609fE292128Cad03b786DBb9Bc2634Ccdbe7fC/info.json b/blockchains/ethereum/assets/0xEe609fE292128Cad03b786DBb9Bc2634Ccdbe7fC/info.json new file mode 100644 index 00000000..9b96eca2 --- /dev/null +++ b/blockchains/ethereum/assets/0xEe609fE292128Cad03b786DBb9Bc2634Ccdbe7fC/info.json @@ -0,0 +1,11 @@ +{ + "name": "PoSToken", + "symbol": "POS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEe609fE292128Cad03b786DBb9Bc2634Ccdbe7fC", + "status": "abandoned", + "id": "0xEe609fE292128Cad03b786DBb9Bc2634Ccdbe7fC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEe609fE292128Cad03b786DBb9Bc2634Ccdbe7fC/logo.png b/blockchains/ethereum/assets/0xEe609fE292128Cad03b786DBb9Bc2634Ccdbe7fC/logo.png new file mode 100755 index 00000000..ad6e3a67 Binary files /dev/null and b/blockchains/ethereum/assets/0xEe609fE292128Cad03b786DBb9Bc2634Ccdbe7fC/logo.png differ diff --git a/blockchains/ethereum/assets/0xEe7527841A932d2912224E20a405e1a1FF747084/info.json b/blockchains/ethereum/assets/0xEe7527841A932d2912224E20a405e1a1FF747084/info.json new file mode 100644 index 00000000..87765d75 --- /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 00000000..0c1a1852 Binary files /dev/null and b/blockchains/ethereum/assets/0xEe7527841A932d2912224E20a405e1a1FF747084/logo.png differ diff --git a/blockchains/ethereum/assets/0xEe9E5eFF401ee921b138490d00CA8D1F13f67A72/info.json b/blockchains/ethereum/assets/0xEe9E5eFF401ee921b138490d00CA8D1F13f67A72/info.json new file mode 100644 index 00000000..09144614 --- /dev/null +++ b/blockchains/ethereum/assets/0xEe9E5eFF401ee921b138490d00CA8D1F13f67A72/info.json @@ -0,0 +1,11 @@ +{ + "name": "Asian Fintech", + "symbol": "Afin", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.afincoin.io/", + "explorer": "https://etherscan.io/token/0xEe9E5eFF401ee921b138490d00CA8D1F13f67A72", + "status": "abandoned", + "id": "0xEe9E5eFF401ee921b138490d00CA8D1F13f67A72" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEe9E5eFF401ee921b138490d00CA8D1F13f67A72/logo.png b/blockchains/ethereum/assets/0xEe9E5eFF401ee921b138490d00CA8D1F13f67A72/logo.png new file mode 100644 index 00000000..cfb0ee4a Binary files /dev/null and b/blockchains/ethereum/assets/0xEe9E5eFF401ee921b138490d00CA8D1F13f67A72/logo.png differ diff --git a/blockchains/ethereum/assets/0xEe9E7Bb7E55bBc86414047B61D65c9C0d91fFBd0/info.json b/blockchains/ethereum/assets/0xEe9E7Bb7E55bBc86414047B61D65c9C0d91fFBd0/info.json new file mode 100644 index 00000000..64afb4f3 --- /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 00000000..44009dbb 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 00000000..2e6c1082 --- /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 00000000..7efeb939 Binary files /dev/null and b/blockchains/ethereum/assets/0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8/logo.png differ diff --git a/blockchains/ethereum/assets/0xEeE690AAA67d1eE33365c02C3Bf477A93867052f/info.json b/blockchains/ethereum/assets/0xEeE690AAA67d1eE33365c02C3Bf477A93867052f/info.json new file mode 100644 index 00000000..ce45722d --- /dev/null +++ b/blockchains/ethereum/assets/0xEeE690AAA67d1eE33365c02C3Bf477A93867052f/info.json @@ -0,0 +1,11 @@ +{ + "name": "HappyPay", + "symbol": "HPAY", + "type": "ERC20", + "decimals": 18, + "description": "HPC targets Thai and foreign retail communities. The development team has decided to convert HAPPYCOIN (HPC) from the X11 algorithm (Proof of Work and Proof of Stake) to an ERC20 token running on Ethereum blockchain. The second iteration of the coin is named HappyPay (HPAY). It focuses on the 'Network Marketing' industry in Thailand and has plans for international expansion.", + "website": "https://gohappypay.com/", + "explorer": "https://etherscan.io/token/0xEeE690AAA67d1eE33365c02C3Bf477A93867052f", + "status": "active", + "id": "0xEeE690AAA67d1eE33365c02C3Bf477A93867052f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEeE690AAA67d1eE33365c02C3Bf477A93867052f/logo.png b/blockchains/ethereum/assets/0xEeE690AAA67d1eE33365c02C3Bf477A93867052f/logo.png new file mode 100644 index 00000000..9eeba7e7 Binary files /dev/null and b/blockchains/ethereum/assets/0xEeE690AAA67d1eE33365c02C3Bf477A93867052f/logo.png differ diff --git a/blockchains/ethereum/assets/0xEeEeeeeEe2aF8D0e1940679860398308e0eF24d6/info.json b/blockchains/ethereum/assets/0xEeEeeeeEe2aF8D0e1940679860398308e0eF24d6/info.json new file mode 100644 index 00000000..e8d5a535 --- /dev/null +++ b/blockchains/ethereum/assets/0xEeEeeeeEe2aF8D0e1940679860398308e0eF24d6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethverse Token", + "symbol": "ETHV", + "type": "ERC20", + "decimals": 18, + "description": "Ethverse is an open, interactive, and decentralized virtual universe built using the Minecraft gaming engine and Ethereum blockchain. ", + "website": "https://ethverse.com", + "explorer": "https://etherscan.io/token/0xEeEeeeeEe2aF8D0e1940679860398308e0eF24d6", + "status": "active", + "id": "0xEeEeeeeEe2aF8D0e1940679860398308e0eF24d6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEeEeeeeEe2aF8D0e1940679860398308e0eF24d6/logo.png b/blockchains/ethereum/assets/0xEeEeeeeEe2aF8D0e1940679860398308e0eF24d6/logo.png new file mode 100644 index 00000000..cc03fa54 Binary files /dev/null and b/blockchains/ethereum/assets/0xEeEeeeeEe2aF8D0e1940679860398308e0eF24d6/logo.png differ diff --git a/blockchains/ethereum/assets/0xEec2bE5c91ae7f8a338e1e5f3b5DE49d07AfdC81/info.json b/blockchains/ethereum/assets/0xEec2bE5c91ae7f8a338e1e5f3b5DE49d07AfdC81/info.json new file mode 100644 index 00000000..55fafd9d --- /dev/null +++ b/blockchains/ethereum/assets/0xEec2bE5c91ae7f8a338e1e5f3b5DE49d07AfdC81/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dopex Governance Token", + "symbol": "DPX", + "type": "ERC20", + "decimals": 18, + "description": "DPX - vanilla governance and protocol fee accrual token", + "website": "https://www.dopex.io/", + "explorer": "https://etherscan.io/token/0xEec2bE5c91ae7f8a338e1e5f3b5DE49d07AfdC81", + "status": "active", + "id": "0xEec2bE5c91ae7f8a338e1e5f3b5DE49d07AfdC81" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEec2bE5c91ae7f8a338e1e5f3b5DE49d07AfdC81/logo.png b/blockchains/ethereum/assets/0xEec2bE5c91ae7f8a338e1e5f3b5DE49d07AfdC81/logo.png new file mode 100644 index 00000000..780df35d Binary files /dev/null and b/blockchains/ethereum/assets/0xEec2bE5c91ae7f8a338e1e5f3b5DE49d07AfdC81/logo.png differ diff --git a/blockchains/ethereum/assets/0xEee2d00Eb7DEB8Dd6924187f5AA3496B7d06E62A/info.json b/blockchains/ethereum/assets/0xEee2d00Eb7DEB8Dd6924187f5AA3496B7d06E62A/info.json new file mode 100644 index 00000000..27c4527b --- /dev/null +++ b/blockchains/ethereum/assets/0xEee2d00Eb7DEB8Dd6924187f5AA3496B7d06E62A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tigereum", + "symbol": "TIG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEee2d00Eb7DEB8Dd6924187f5AA3496B7d06E62A", + "status": "abandoned", + "id": "0xEee2d00Eb7DEB8Dd6924187f5AA3496B7d06E62A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEee2d00Eb7DEB8Dd6924187f5AA3496B7d06E62A/logo.png b/blockchains/ethereum/assets/0xEee2d00Eb7DEB8Dd6924187f5AA3496B7d06E62A/logo.png new file mode 100644 index 00000000..1ab5ce4c Binary files /dev/null and b/blockchains/ethereum/assets/0xEee2d00Eb7DEB8Dd6924187f5AA3496B7d06E62A/logo.png differ diff --git a/blockchains/ethereum/assets/0xEeeA86AC3cF7F154991595e10921482834012222/info.json b/blockchains/ethereum/assets/0xEeeA86AC3cF7F154991595e10921482834012222/info.json new file mode 100644 index 00000000..dc745d09 --- /dev/null +++ b/blockchains/ethereum/assets/0xEeeA86AC3cF7F154991595e10921482834012222/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C528298", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEeeA86AC3cF7F154991595e10921482834012222", + "status": "abandoned", + "id": "0xEeeA86AC3cF7F154991595e10921482834012222" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEeeA86AC3cF7F154991595e10921482834012222/logo.png b/blockchains/ethereum/assets/0xEeeA86AC3cF7F154991595e10921482834012222/logo.png new file mode 100644 index 00000000..3a46d809 Binary files /dev/null and b/blockchains/ethereum/assets/0xEeeA86AC3cF7F154991595e10921482834012222/logo.png differ diff --git a/blockchains/ethereum/assets/0xEf51c9377FeB29856E61625cAf9390bD0B67eA18/info.json b/blockchains/ethereum/assets/0xEf51c9377FeB29856E61625cAf9390bD0B67eA18/info.json new file mode 100644 index 00000000..c8f7aaa0 --- /dev/null +++ b/blockchains/ethereum/assets/0xEf51c9377FeB29856E61625cAf9390bD0B67eA18/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bionic", + "symbol": "BNC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEf51c9377FeB29856E61625cAf9390bD0B67eA18", + "status": "abandoned", + "id": "0xEf51c9377FeB29856E61625cAf9390bD0B67eA18" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEf51c9377FeB29856E61625cAf9390bD0B67eA18/logo.png b/blockchains/ethereum/assets/0xEf51c9377FeB29856E61625cAf9390bD0B67eA18/logo.png new file mode 100755 index 00000000..10daddf7 Binary files /dev/null and b/blockchains/ethereum/assets/0xEf51c9377FeB29856E61625cAf9390bD0B67eA18/logo.png differ diff --git a/blockchains/ethereum/assets/0xEfaB7248D36585e2340E5d25F8a8D243E6e3193F/info.json b/blockchains/ethereum/assets/0xEfaB7248D36585e2340E5d25F8a8D243E6e3193F/info.json new file mode 100644 index 00000000..1a039b59 --- /dev/null +++ b/blockchains/ethereum/assets/0xEfaB7248D36585e2340E5d25F8a8D243E6e3193F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dacxi Coin", + "symbol": "DACXI", + "type": "ERC20", + "decimals": 18, + "description": "Trade, learn, and build crypto wealth with Dacxi.", + "website": "https://dacxi.com/", + "explorer": "https://etherscan.io/token/0xEfaB7248D36585e2340E5d25F8a8D243E6e3193F", + "status": "active", + "id": "0xEfaB7248D36585e2340E5d25F8a8D243E6e3193F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEfaB7248D36585e2340E5d25F8a8D243E6e3193F/logo.png b/blockchains/ethereum/assets/0xEfaB7248D36585e2340E5d25F8a8D243E6e3193F/logo.png new file mode 100644 index 00000000..c517ac64 Binary files /dev/null and b/blockchains/ethereum/assets/0xEfaB7248D36585e2340E5d25F8a8D243E6e3193F/logo.png differ diff --git a/blockchains/ethereum/assets/0xEfbB3F1058fd8E0C9d7204f532E17d7572AFfc3e/info.json b/blockchains/ethereum/assets/0xEfbB3F1058fd8E0C9d7204f532E17d7572AFfc3e/info.json new file mode 100644 index 00000000..1a88a8d4 --- /dev/null +++ b/blockchains/ethereum/assets/0xEfbB3F1058fd8E0C9d7204f532E17d7572AFfc3e/info.json @@ -0,0 +1,11 @@ +{ + "name": "MBCash", + "symbol": "MBCASH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xEfbB3F1058fd8E0C9d7204f532E17d7572AFfc3e", + "status": "abandoned", + "id": "0xEfbB3F1058fd8E0C9d7204f532E17d7572AFfc3e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xEfbB3F1058fd8E0C9d7204f532E17d7572AFfc3e/logo.png b/blockchains/ethereum/assets/0xEfbB3F1058fd8E0C9d7204f532E17d7572AFfc3e/logo.png new file mode 100644 index 00000000..456e1de8 Binary files /dev/null and b/blockchains/ethereum/assets/0xEfbB3F1058fd8E0C9d7204f532E17d7572AFfc3e/logo.png differ diff --git a/blockchains/ethereum/assets/0xF013406A0B1d544238083DF0B93ad0d2cBE0f65f/info.json b/blockchains/ethereum/assets/0xF013406A0B1d544238083DF0B93ad0d2cBE0f65f/info.json new file mode 100644 index 00000000..968682c3 --- /dev/null +++ b/blockchains/ethereum/assets/0xF013406A0B1d544238083DF0B93ad0d2cBE0f65f/info.json @@ -0,0 +1,11 @@ +{ + "name": "bZx USDC iToken", + "symbol": "iUSDC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF013406A0B1d544238083DF0B93ad0d2cBE0f65f", + "status": "abandoned", + "id": "0xF013406A0B1d544238083DF0B93ad0d2cBE0f65f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF013406A0B1d544238083DF0B93ad0d2cBE0f65f/logo.png b/blockchains/ethereum/assets/0xF013406A0B1d544238083DF0B93ad0d2cBE0f65f/logo.png new file mode 100644 index 00000000..3b70c88c Binary files /dev/null and b/blockchains/ethereum/assets/0xF013406A0B1d544238083DF0B93ad0d2cBE0f65f/logo.png differ diff --git a/blockchains/ethereum/assets/0xF02123509A08632339102eE5fdd41B638592E495/info.json b/blockchains/ethereum/assets/0xF02123509A08632339102eE5fdd41B638592E495/info.json new file mode 100644 index 00000000..5ef23799 --- /dev/null +++ b/blockchains/ethereum/assets/0xF02123509A08632339102eE5fdd41B638592E495/info.json @@ -0,0 +1,11 @@ +{ + "name": "DUCATO", + "symbol": "VEN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF02123509A08632339102eE5fdd41B638592E495", + "status": "abandoned", + "id": "0xF02123509A08632339102eE5fdd41B638592E495" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF02123509A08632339102eE5fdd41B638592E495/logo.png b/blockchains/ethereum/assets/0xF02123509A08632339102eE5fdd41B638592E495/logo.png new file mode 100644 index 00000000..376039e7 Binary files /dev/null and b/blockchains/ethereum/assets/0xF02123509A08632339102eE5fdd41B638592E495/logo.png differ diff --git a/blockchains/ethereum/assets/0xF02DAB52205aFf6Bb3d47Cc7B21624a5064F9FBA/info.json b/blockchains/ethereum/assets/0xF02DAB52205aFf6Bb3d47Cc7B21624a5064F9FBA/info.json new file mode 100644 index 00000000..fd5fb049 --- /dev/null +++ b/blockchains/ethereum/assets/0xF02DAB52205aFf6Bb3d47Cc7B21624a5064F9FBA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pyrrhos Gold", + "symbol": "PGOLD", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://backed-by-gold.com/", + "explorer": "https://etherscan.io/token/0xF02DAB52205aFf6Bb3d47Cc7B21624a5064F9FBA", + "status": "abandoned", + "id": "0xF02DAB52205aFf6Bb3d47Cc7B21624a5064F9FBA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF02DAB52205aFf6Bb3d47Cc7B21624a5064F9FBA/logo.png b/blockchains/ethereum/assets/0xF02DAB52205aFf6Bb3d47Cc7B21624a5064F9FBA/logo.png new file mode 100644 index 00000000..9e4b72f7 Binary files /dev/null and b/blockchains/ethereum/assets/0xF02DAB52205aFf6Bb3d47Cc7B21624a5064F9FBA/logo.png differ diff --git a/blockchains/ethereum/assets/0xF03045a4C8077e38f3B8e2Ed33b8aEE69edF869F/info.json b/blockchains/ethereum/assets/0xF03045a4C8077e38f3B8e2Ed33b8aEE69edF869F/info.json new file mode 100644 index 00000000..9b3dbfce --- /dev/null +++ b/blockchains/ethereum/assets/0xF03045a4C8077e38f3B8e2Ed33b8aEE69edF869F/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlockMesh", + "symbol": "MESH", + "type": "ERC20", + "decimals": 18, + "description": "The BlockMesh platform is a platform supporting mesh based devices focusing on communication and the loT.", + "website": "https://www.blockmesh.io", + "explorer": "https://etherscan.io/token/0xF03045a4C8077e38f3B8e2Ed33b8aEE69edF869F", + "status": "active", + "id": "0xF03045a4C8077e38f3B8e2Ed33b8aEE69edF869F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF03045a4C8077e38f3B8e2Ed33b8aEE69edF869F/logo.png b/blockchains/ethereum/assets/0xF03045a4C8077e38f3B8e2Ed33b8aEE69edF869F/logo.png new file mode 100755 index 00000000..7bdedba8 Binary files /dev/null and b/blockchains/ethereum/assets/0xF03045a4C8077e38f3B8e2Ed33b8aEE69edF869F/logo.png differ diff --git a/blockchains/ethereum/assets/0xF0372e226553aF4F343b44111A789f87A9fa427A/info.json b/blockchains/ethereum/assets/0xF0372e226553aF4F343b44111A789f87A9fa427A/info.json new file mode 100644 index 00000000..55bbb517 --- /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 00000000..9bfe6ec7 Binary files /dev/null and b/blockchains/ethereum/assets/0xF0372e226553aF4F343b44111A789f87A9fa427A/logo.png differ diff --git a/blockchains/ethereum/assets/0xF03d78dd9aBF1d83cb92b85F7E8B8Fc4be358541/info.json b/blockchains/ethereum/assets/0xF03d78dd9aBF1d83cb92b85F7E8B8Fc4be358541/info.json new file mode 100644 index 00000000..327c33df --- /dev/null +++ b/blockchains/ethereum/assets/0xF03d78dd9aBF1d83cb92b85F7E8B8Fc4be358541/info.json @@ -0,0 +1,11 @@ +{ + "name": "Thaler Group Company", + "symbol": "TGCO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF03d78dd9aBF1d83cb92b85F7E8B8Fc4be358541", + "status": "abandoned", + "id": "0xF03d78dd9aBF1d83cb92b85F7E8B8Fc4be358541" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF03d78dd9aBF1d83cb92b85F7E8B8Fc4be358541/logo.png b/blockchains/ethereum/assets/0xF03d78dd9aBF1d83cb92b85F7E8B8Fc4be358541/logo.png new file mode 100644 index 00000000..653e1481 Binary files /dev/null and b/blockchains/ethereum/assets/0xF03d78dd9aBF1d83cb92b85F7E8B8Fc4be358541/logo.png differ diff --git a/blockchains/ethereum/assets/0xF03f8D65BaFA598611C3495124093c56e8F638f0/info.json b/blockchains/ethereum/assets/0xF03f8D65BaFA598611C3495124093c56e8F638f0/info.json new file mode 100644 index 00000000..cfdf8714 --- /dev/null +++ b/blockchains/ethereum/assets/0xF03f8D65BaFA598611C3495124093c56e8F638f0/info.json @@ -0,0 +1,11 @@ +{ + "name": "View Token", + "symbol": "VIEW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://view.ly/", + "explorer": "https://etherscan.io/token/0xF03f8D65BaFA598611C3495124093c56e8F638f0", + "status": "abandoned", + "id": "0xF03f8D65BaFA598611C3495124093c56e8F638f0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF03f8D65BaFA598611C3495124093c56e8F638f0/logo.png b/blockchains/ethereum/assets/0xF03f8D65BaFA598611C3495124093c56e8F638f0/logo.png new file mode 100644 index 00000000..a5d51a20 Binary files /dev/null and b/blockchains/ethereum/assets/0xF03f8D65BaFA598611C3495124093c56e8F638f0/logo.png differ diff --git a/blockchains/ethereum/assets/0xF042cfa86cf1D598a75Bdb55c3507a1F39f9493b/info.json b/blockchains/ethereum/assets/0xF042cfa86cf1D598a75Bdb55c3507a1F39f9493b/info.json new file mode 100644 index 00000000..8dc5953a --- /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 00000000..f73aeccf Binary files /dev/null and b/blockchains/ethereum/assets/0xF042cfa86cf1D598a75Bdb55c3507a1F39f9493b/logo.png differ diff --git a/blockchains/ethereum/assets/0xF05763b9fE67eD371bCC27F8Da3E86f4c7053e34/info.json b/blockchains/ethereum/assets/0xF05763b9fE67eD371bCC27F8Da3E86f4c7053e34/info.json new file mode 100644 index 00000000..8e3213da --- /dev/null +++ b/blockchains/ethereum/assets/0xF05763b9fE67eD371bCC27F8Da3E86f4c7053e34/info.json @@ -0,0 +1,11 @@ +{ + "name": "Veritoken", + "symbol": "VT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF05763b9fE67eD371bCC27F8Da3E86f4c7053e34", + "status": "abandoned", + "id": "0xF05763b9fE67eD371bCC27F8Da3E86f4c7053e34" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF05763b9fE67eD371bCC27F8Da3E86f4c7053e34/logo.png b/blockchains/ethereum/assets/0xF05763b9fE67eD371bCC27F8Da3E86f4c7053e34/logo.png new file mode 100644 index 00000000..e5f47ec8 Binary files /dev/null and b/blockchains/ethereum/assets/0xF05763b9fE67eD371bCC27F8Da3E86f4c7053e34/logo.png differ diff --git a/blockchains/ethereum/assets/0xF05Ad9840924EA6f977EBccb3b1da87e31DcD0B4/info.json b/blockchains/ethereum/assets/0xF05Ad9840924EA6f977EBccb3b1da87e31DcD0B4/info.json new file mode 100644 index 00000000..2eb1161a --- /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 00000000..c1d43656 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 new file mode 100644 index 00000000..bb53085e --- /dev/null +++ b/blockchains/ethereum/assets/0xF063fE1aB7a291c5d06a86e14730b00BF24cB589/info.json @@ -0,0 +1,45 @@ +{ + "name": "DxSale Network", + "website": "https://DxSale.Network", + "description": "DxSale is a decentralized, cross chain, token management platform as a service. DxSale DAO allows for seamless onboarding of chains to provide tools to facilitate and grow out a chains ecosystem.", + "explorer": "https://etherscan.io/token/0xF063fE1aB7a291c5d06a86e14730b00BF24cB589", + "type": "ERC20", + "symbol": "SALE", + "decimals": 18, + "status": "active", + "id": "0xF063fE1aB7a291c5d06a86e14730b00BF24cB589", + "links": [ + { + "name": "x", + "url": "https://x.com/dxsale" + }, + { + "name": "telegram", + "url": "https://t.me/DxSale" + }, + { + "name": "telegram_news", + "url": "https://t.me/DxSaleAnn" + }, + { + "name": "medium", + "url": "https://hash-dxsale.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dxsale-network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dxsale-network/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCDrVyjNivEdu7_cIA53B0cg" + }, + { + "name": "docs", + "url": "https://docs.dxsale.network" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF063fE1aB7a291c5d06a86e14730b00BF24cB589/logo.png b/blockchains/ethereum/assets/0xF063fE1aB7a291c5d06a86e14730b00BF24cB589/logo.png new file mode 100644 index 00000000..e8a57583 Binary files /dev/null and b/blockchains/ethereum/assets/0xF063fE1aB7a291c5d06a86e14730b00BF24cB589/logo.png differ diff --git a/blockchains/ethereum/assets/0xF093b8cC623ca76D2743F47Ac1dA6eeDA24B040a/info.json b/blockchains/ethereum/assets/0xF093b8cC623ca76D2743F47Ac1dA6eeDA24B040a/info.json new file mode 100644 index 00000000..f11922dc --- /dev/null +++ b/blockchains/ethereum/assets/0xF093b8cC623ca76D2743F47Ac1dA6eeDA24B040a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Axor", + "symbol": "AXO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF093b8cC623ca76D2743F47Ac1dA6eeDA24B040a", + "status": "abandoned", + "id": "0xF093b8cC623ca76D2743F47Ac1dA6eeDA24B040a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF093b8cC623ca76D2743F47Ac1dA6eeDA24B040a/logo.png b/blockchains/ethereum/assets/0xF093b8cC623ca76D2743F47Ac1dA6eeDA24B040a/logo.png new file mode 100755 index 00000000..b3719871 Binary files /dev/null and b/blockchains/ethereum/assets/0xF093b8cC623ca76D2743F47Ac1dA6eeDA24B040a/logo.png differ diff --git a/blockchains/ethereum/assets/0xF0ACF8949e705E0ebb6CB42c2164B0B986454223/info.json b/blockchains/ethereum/assets/0xF0ACF8949e705E0ebb6CB42c2164B0B986454223/info.json new file mode 100644 index 00000000..1eec50a7 --- /dev/null +++ b/blockchains/ethereum/assets/0xF0ACF8949e705E0ebb6CB42c2164B0B986454223/info.json @@ -0,0 +1,11 @@ +{ + "name": "Barter", + "symbol": "BRTR", + "type": "ERC20", + "decimals": 8, + "description": "Barter is a digital platform for barter, auction, and direct trading based on legal smart contracts for digital and real assets. At Barter Smartplace, you can exchange a car for an apartment, buy a house using gold or jewelry, exchange a land plot for a share in a company or stock, pay with your services for other services or even goods, and fulfill many other options for barter relations.", + "website": "http://barter.company/", + "explorer": "https://etherscan.io/token/0xF0ACF8949e705E0ebb6CB42c2164B0B986454223", + "status": "active", + "id": "0xF0ACF8949e705E0ebb6CB42c2164B0B986454223" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF0ACF8949e705E0ebb6CB42c2164B0B986454223/logo.png b/blockchains/ethereum/assets/0xF0ACF8949e705E0ebb6CB42c2164B0B986454223/logo.png new file mode 100644 index 00000000..e3120075 Binary files /dev/null and b/blockchains/ethereum/assets/0xF0ACF8949e705E0ebb6CB42c2164B0B986454223/logo.png differ diff --git a/blockchains/ethereum/assets/0xF0CFf95B749A4a1FcFeD0cf9021570c9bE9cf592/info.json b/blockchains/ethereum/assets/0xF0CFf95B749A4a1FcFeD0cf9021570c9bE9cf592/info.json new file mode 100644 index 00000000..cf4977a2 --- /dev/null +++ b/blockchains/ethereum/assets/0xF0CFf95B749A4a1FcFeD0cf9021570c9bE9cf592/info.json @@ -0,0 +1,11 @@ +{ + "name": "MerchentPay", + "symbol": "MPAY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF0CFf95B749A4a1FcFeD0cf9021570c9bE9cf592", + "status": "abandoned", + "id": "0xF0CFf95B749A4a1FcFeD0cf9021570c9bE9cf592" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF0CFf95B749A4a1FcFeD0cf9021570c9bE9cf592/logo.png b/blockchains/ethereum/assets/0xF0CFf95B749A4a1FcFeD0cf9021570c9bE9cf592/logo.png new file mode 100644 index 00000000..7dc4e26f Binary files /dev/null and b/blockchains/ethereum/assets/0xF0CFf95B749A4a1FcFeD0cf9021570c9bE9cf592/logo.png differ diff --git a/blockchains/ethereum/assets/0xF0FAC7104aAC544e4a7CE1A55ADF2B5a25c65bD1/info.json b/blockchains/ethereum/assets/0xF0FAC7104aAC544e4a7CE1A55ADF2B5a25c65bD1/info.json new file mode 100644 index 00000000..5405b32d --- /dev/null +++ b/blockchains/ethereum/assets/0xF0FAC7104aAC544e4a7CE1A55ADF2B5a25c65bD1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pamp Network", + "symbol": "PAMP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://pamp.network/", + "explorer": "https://etherscan.io/token/0xF0FAC7104aAC544e4a7CE1A55ADF2B5a25c65bD1", + "status": "abandoned", + "id": "0xF0FAC7104aAC544e4a7CE1A55ADF2B5a25c65bD1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF0FAC7104aAC544e4a7CE1A55ADF2B5a25c65bD1/logo.png b/blockchains/ethereum/assets/0xF0FAC7104aAC544e4a7CE1A55ADF2B5a25c65bD1/logo.png new file mode 100644 index 00000000..a17f4618 Binary files /dev/null and b/blockchains/ethereum/assets/0xF0FAC7104aAC544e4a7CE1A55ADF2B5a25c65bD1/logo.png differ diff --git a/blockchains/ethereum/assets/0xF0c5831EC3Da15f3696B4DAd8B21c7Ce2f007f28/info.json b/blockchains/ethereum/assets/0xF0c5831EC3Da15f3696B4DAd8B21c7Ce2f007f28/info.json new file mode 100644 index 00000000..00d38631 --- /dev/null +++ b/blockchains/ethereum/assets/0xF0c5831EC3Da15f3696B4DAd8B21c7Ce2f007f28/info.json @@ -0,0 +1,11 @@ +{ + "name": "AXIS Token", + "website": "https://axistoken.io", + "description": "AxisToken will be the world's first Transportation blockchain platform", + "explorer": "https://etherscan.io/token/0xf0c5831ec3da15f3696b4dad8b21c7ce2f007f28", + "id": "0xF0c5831EC3Da15f3696B4DAd8B21c7Ce2f007f28", + "symbol": "AXS", + "type": "ERC20", + "decimals": 8, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF0c5831EC3Da15f3696B4DAd8B21c7Ce2f007f28/logo.png b/blockchains/ethereum/assets/0xF0c5831EC3Da15f3696B4DAd8B21c7Ce2f007f28/logo.png new file mode 100644 index 00000000..601a21db Binary files /dev/null and b/blockchains/ethereum/assets/0xF0c5831EC3Da15f3696B4DAd8B21c7Ce2f007f28/logo.png differ diff --git a/blockchains/ethereum/assets/0xF0e6019c0F16d31294937b3334229909349e00f4/info.json b/blockchains/ethereum/assets/0xF0e6019c0F16d31294937b3334229909349e00f4/info.json new file mode 100644 index 00000000..2c54a20b --- /dev/null +++ b/blockchains/ethereum/assets/0xF0e6019c0F16d31294937b3334229909349e00f4/info.json @@ -0,0 +1,11 @@ +{ + "name": "IBStoken", + "symbol": "IBS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.ibstoken.org", + "explorer": "https://etherscan.io/token/0xF0e6019c0F16d31294937b3334229909349e00f4", + "status": "abandoned", + "id": "0xF0e6019c0F16d31294937b3334229909349e00f4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF0e6019c0F16d31294937b3334229909349e00f4/logo.png b/blockchains/ethereum/assets/0xF0e6019c0F16d31294937b3334229909349e00f4/logo.png new file mode 100644 index 00000000..6dbf71f7 Binary files /dev/null and b/blockchains/ethereum/assets/0xF0e6019c0F16d31294937b3334229909349e00f4/logo.png differ diff --git a/blockchains/ethereum/assets/0xF0f8B0B8DBB1124261FC8d778E2287e3Fd2Cf4f5/info.json b/blockchains/ethereum/assets/0xF0f8B0B8DBB1124261FC8d778E2287e3Fd2Cf4f5/info.json new file mode 100644 index 00000000..e8db3e52 --- /dev/null +++ b/blockchains/ethereum/assets/0xF0f8B0B8DBB1124261FC8d778E2287e3Fd2Cf4f5/info.json @@ -0,0 +1,11 @@ +{ + "name": "bitqy", + "symbol": "BQ", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF0f8B0B8DBB1124261FC8d778E2287e3Fd2Cf4f5", + "status": "abandoned", + "id": "0xF0f8B0B8DBB1124261FC8d778E2287e3Fd2Cf4f5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF0f8B0B8DBB1124261FC8d778E2287e3Fd2Cf4f5/logo.png b/blockchains/ethereum/assets/0xF0f8B0B8DBB1124261FC8d778E2287e3Fd2Cf4f5/logo.png new file mode 100644 index 00000000..81974e69 Binary files /dev/null and b/blockchains/ethereum/assets/0xF0f8B0B8DBB1124261FC8d778E2287e3Fd2Cf4f5/logo.png differ diff --git a/blockchains/ethereum/assets/0xF10c41cA085FC8d9326a65408D14Dae28A3E69a5/info.json b/blockchains/ethereum/assets/0xF10c41cA085FC8d9326a65408D14Dae28A3E69a5/info.json new file mode 100644 index 00000000..2558494f --- /dev/null +++ b/blockchains/ethereum/assets/0xF10c41cA085FC8d9326a65408D14Dae28A3E69a5/info.json @@ -0,0 +1,17 @@ +{ + "name": "Islamic Coin", + "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 00000000..a8677b4e Binary files /dev/null and b/blockchains/ethereum/assets/0xF10c41cA085FC8d9326a65408D14Dae28A3E69a5/logo.png differ diff --git a/blockchains/ethereum/assets/0xF10d9664828e80EeA2F8bf139C3cC6041aE0cBA0/info.json b/blockchains/ethereum/assets/0xF10d9664828e80EeA2F8bf139C3cC6041aE0cBA0/info.json new file mode 100644 index 00000000..bd5fce25 --- /dev/null +++ b/blockchains/ethereum/assets/0xF10d9664828e80EeA2F8bf139C3cC6041aE0cBA0/info.json @@ -0,0 +1,11 @@ +{ + "name": "COMBO", + "symbol": "COMBO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://combocoin.online/", + "explorer": "https://etherscan.io/token/0xF10d9664828e80EeA2F8bf139C3cC6041aE0cBA0", + "status": "abandoned", + "id": "0xF10d9664828e80EeA2F8bf139C3cC6041aE0cBA0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF10d9664828e80EeA2F8bf139C3cC6041aE0cBA0/logo.png b/blockchains/ethereum/assets/0xF10d9664828e80EeA2F8bf139C3cC6041aE0cBA0/logo.png new file mode 100644 index 00000000..ac4d94a8 Binary files /dev/null and b/blockchains/ethereum/assets/0xF10d9664828e80EeA2F8bf139C3cC6041aE0cBA0/logo.png differ diff --git a/blockchains/ethereum/assets/0xF1290473E210b2108A85237fbCd7b6eb42Cc654F/info.json b/blockchains/ethereum/assets/0xF1290473E210b2108A85237fbCd7b6eb42Cc654F/info.json new file mode 100644 index 00000000..b3a289d1 --- /dev/null +++ b/blockchains/ethereum/assets/0xF1290473E210b2108A85237fbCd7b6eb42Cc654F/info.json @@ -0,0 +1,11 @@ +{ + "name": "HedgeTrade", + "website": "https://hedgetrade.com", + "description": "HedgeTrade aims to become a platform where the world’s best traders share their knowledge.", + "explorer": "https://etherscan.io/token/0xF1290473E210b2108A85237fbCd7b6eb42Cc654F", + "type": "ERC20", + "symbol": "HEDG", + "decimals": 18, + "status": "active", + "id": "0xF1290473E210b2108A85237fbCd7b6eb42Cc654F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF1290473E210b2108A85237fbCd7b6eb42Cc654F/logo.png b/blockchains/ethereum/assets/0xF1290473E210b2108A85237fbCd7b6eb42Cc654F/logo.png new file mode 100644 index 00000000..bdab92d2 Binary files /dev/null and b/blockchains/ethereum/assets/0xF1290473E210b2108A85237fbCd7b6eb42Cc654F/logo.png differ diff --git a/blockchains/ethereum/assets/0xF14d5fB350060F5285d5900F5Ee6d2Ca27DDa6Ac/info.json b/blockchains/ethereum/assets/0xF14d5fB350060F5285d5900F5Ee6d2Ca27DDa6Ac/info.json new file mode 100644 index 00000000..c0edb9ab --- /dev/null +++ b/blockchains/ethereum/assets/0xF14d5fB350060F5285d5900F5Ee6d2Ca27DDa6Ac/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitBonus", + "symbol": "BB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF14d5fB350060F5285d5900F5Ee6d2Ca27DDa6Ac", + "status": "abandoned", + "id": "0xF14d5fB350060F5285d5900F5Ee6d2Ca27DDa6Ac" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF14d5fB350060F5285d5900F5Ee6d2Ca27DDa6Ac/logo.png b/blockchains/ethereum/assets/0xF14d5fB350060F5285d5900F5Ee6d2Ca27DDa6Ac/logo.png new file mode 100755 index 00000000..0df51c50 Binary files /dev/null and b/blockchains/ethereum/assets/0xF14d5fB350060F5285d5900F5Ee6d2Ca27DDa6Ac/logo.png differ diff --git a/blockchains/ethereum/assets/0xF17A9ad24372fAAA27F0Bb684e13413a3De84C4b/info.json b/blockchains/ethereum/assets/0xF17A9ad24372fAAA27F0Bb684e13413a3De84C4b/info.json new file mode 100644 index 00000000..5549a84d --- /dev/null +++ b/blockchains/ethereum/assets/0xF17A9ad24372fAAA27F0Bb684e13413a3De84C4b/info.json @@ -0,0 +1,11 @@ +{ + "name": "SmokeCoinV_2", + "symbol": "SMKC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF17A9ad24372fAAA27F0Bb684e13413a3De84C4b", + "status": "abandoned", + "id": "0xF17A9ad24372fAAA27F0Bb684e13413a3De84C4b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF17A9ad24372fAAA27F0Bb684e13413a3De84C4b/logo.png b/blockchains/ethereum/assets/0xF17A9ad24372fAAA27F0Bb684e13413a3De84C4b/logo.png new file mode 100644 index 00000000..28420a9a Binary files /dev/null and b/blockchains/ethereum/assets/0xF17A9ad24372fAAA27F0Bb684e13413a3De84C4b/logo.png differ diff --git a/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/info.json b/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/info.json new file mode 100644 index 00000000..173813b5 --- /dev/null +++ b/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/info.json @@ -0,0 +1,25 @@ +{ + "name": "Biconomy", + "website": "https://www.biconomy.io/", + "description": "Biconomy is a multichain relayer protocol that aims to reduce the friction point when dealing with blockchain technology for its mass adoption.", + "explorer": "https://etherscan.io/token/0xf17e65822b568b3903685a7c9f496cf7656cc6c2", + "type": "ERC20", + "symbol": "BICO", + "decimals": 18, + "status": "active", + "id": "0xF17e65822b568B3903685a7c9F496CF7656Cc6C2", + "links": [ + { + "name": "x", + "url": "https://x.com/biconomy" + }, + { + "name": "telegram", + "url": "https://t.me/biconomy" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/biconomy/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/logo.png b/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/logo.png new file mode 100644 index 00000000..a9b0f8d1 Binary files /dev/null and b/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/logo.png differ diff --git a/blockchains/ethereum/assets/0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1/info.json b/blockchains/ethereum/assets/0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1/info.json new file mode 100644 index 00000000..f279da0e --- /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 00000000..2cfc6ce0 Binary files /dev/null and b/blockchains/ethereum/assets/0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1/logo.png differ diff --git a/blockchains/ethereum/assets/0xF19D446c35570eFf44cF9871ee389067EbD6e962/info.json b/blockchains/ethereum/assets/0xF19D446c35570eFf44cF9871ee389067EbD6e962/info.json new file mode 100644 index 00000000..e8026383 --- /dev/null +++ b/blockchains/ethereum/assets/0xF19D446c35570eFf44cF9871ee389067EbD6e962/info.json @@ -0,0 +1,11 @@ +{ + "name": "TearFiat", + "symbol": "TFiat", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF19D446c35570eFf44cF9871ee389067EbD6e962", + "status": "abandoned", + "id": "0xF19D446c35570eFf44cF9871ee389067EbD6e962" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF19D446c35570eFf44cF9871ee389067EbD6e962/logo.png b/blockchains/ethereum/assets/0xF19D446c35570eFf44cF9871ee389067EbD6e962/logo.png new file mode 100644 index 00000000..ee888d08 Binary files /dev/null and b/blockchains/ethereum/assets/0xF19D446c35570eFf44cF9871ee389067EbD6e962/logo.png differ diff --git a/blockchains/ethereum/assets/0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee/info.json b/blockchains/ethereum/assets/0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee/info.json new file mode 100644 index 00000000..5bb3d0d9 --- /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 00000000..b87a5502 Binary files /dev/null and b/blockchains/ethereum/assets/0xF1A7000000950C7ad8Aff13118Bb7aB561A448ee/logo.png differ diff --git a/blockchains/ethereum/assets/0xF1E5F03086e1c0Ce55E54cd8146BC9c28435346F/info.json b/blockchains/ethereum/assets/0xF1E5F03086e1c0Ce55E54cd8146BC9c28435346F/info.json new file mode 100644 index 00000000..27cca088 --- /dev/null +++ b/blockchains/ethereum/assets/0xF1E5F03086e1c0Ce55E54cd8146BC9c28435346F/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETH Min Volatility Set", + "symbol": "ETHMINVOL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.tokensets.com/set/ethminvol", + "explorer": "https://etherscan.io/token/0xF1E5F03086e1c0Ce55E54cd8146BC9c28435346F", + "status": "abandoned", + "id": "0xF1E5F03086e1c0Ce55E54cd8146BC9c28435346F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF1E5F03086e1c0Ce55E54cd8146BC9c28435346F/logo.png b/blockchains/ethereum/assets/0xF1E5F03086e1c0Ce55E54cd8146BC9c28435346F/logo.png new file mode 100644 index 00000000..c1d5e522 Binary files /dev/null and b/blockchains/ethereum/assets/0xF1E5F03086e1c0Ce55E54cd8146BC9c28435346F/logo.png differ diff --git a/blockchains/ethereum/assets/0xF1cA9cb74685755965c7458528A36934Df52A3EF/info.json b/blockchains/ethereum/assets/0xF1cA9cb74685755965c7458528A36934Df52A3EF/info.json new file mode 100644 index 00000000..96f3f535 --- /dev/null +++ b/blockchains/ethereum/assets/0xF1cA9cb74685755965c7458528A36934Df52A3EF/info.json @@ -0,0 +1,11 @@ +{ + "name": "AVINOC Token", + "symbol": "AVINOC", + "type": "ERC20", + "decimals": 18, + "description": "AVINOC is a consistent, integrated and permissionless base data layer for decentralized, transparent and worldwide coordination of business flights within the general aviation, to achieve optimal utilization and reduce costs significantly.", + "website": "https://www.avinoc.com/", + "explorer": "https://etherscan.io/token/0xF1cA9cb74685755965c7458528A36934Df52A3EF", + "status": "active", + "id": "0xF1cA9cb74685755965c7458528A36934Df52A3EF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF1cA9cb74685755965c7458528A36934Df52A3EF/logo.png b/blockchains/ethereum/assets/0xF1cA9cb74685755965c7458528A36934Df52A3EF/logo.png new file mode 100755 index 00000000..de43730f Binary files /dev/null and b/blockchains/ethereum/assets/0xF1cA9cb74685755965c7458528A36934Df52A3EF/logo.png differ diff --git a/blockchains/ethereum/assets/0xF1dED9284c73F9C3A664503E9a5E15188A991935/info.json b/blockchains/ethereum/assets/0xF1dED9284c73F9C3A664503E9a5E15188A991935/info.json new file mode 100644 index 00000000..8314e0a0 --- /dev/null +++ b/blockchains/ethereum/assets/0xF1dED9284c73F9C3A664503E9a5E15188A991935/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZALXTHERIUM", + "symbol": "ZALX", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF1dED9284c73F9C3A664503E9a5E15188A991935", + "status": "abandoned", + "id": "0xF1dED9284c73F9C3A664503E9a5E15188A991935" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF1dED9284c73F9C3A664503E9a5E15188A991935/logo.png b/blockchains/ethereum/assets/0xF1dED9284c73F9C3A664503E9a5E15188A991935/logo.png new file mode 100644 index 00000000..9c551403 Binary files /dev/null and b/blockchains/ethereum/assets/0xF1dED9284c73F9C3A664503E9a5E15188A991935/logo.png differ diff --git a/blockchains/ethereum/assets/0xF21D65979bD89b28f05EF19F3c65dd2A1D02946D/info.json b/blockchains/ethereum/assets/0xF21D65979bD89b28f05EF19F3c65dd2A1D02946D/info.json new file mode 100644 index 00000000..cbca1c09 --- /dev/null +++ b/blockchains/ethereum/assets/0xF21D65979bD89b28f05EF19F3c65dd2A1D02946D/info.json @@ -0,0 +1,11 @@ +{ + "name": "BloodyPercent", + "symbol": "BPC", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF21D65979bD89b28f05EF19F3c65dd2A1D02946D", + "status": "active", + "id": "0xF21D65979bD89b28f05EF19F3c65dd2A1D02946D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF21D65979bD89b28f05EF19F3c65dd2A1D02946D/logo.png b/blockchains/ethereum/assets/0xF21D65979bD89b28f05EF19F3c65dd2A1D02946D/logo.png new file mode 100644 index 00000000..81521107 Binary files /dev/null and b/blockchains/ethereum/assets/0xF21D65979bD89b28f05EF19F3c65dd2A1D02946D/logo.png differ diff --git a/blockchains/ethereum/assets/0xF244176246168F24e3187f7288EdbCA29267739b/info.json b/blockchains/ethereum/assets/0xF244176246168F24e3187f7288EdbCA29267739b/info.json new file mode 100644 index 00000000..4bc3ee4f --- /dev/null +++ b/blockchains/ethereum/assets/0xF244176246168F24e3187f7288EdbCA29267739b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Havven", + "symbol": "HAV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.synthetix.io", + "explorer": "https://etherscan.io/token/0xF244176246168F24e3187f7288EdbCA29267739b", + "status": "abandoned", + "id": "0xF244176246168F24e3187f7288EdbCA29267739b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF244176246168F24e3187f7288EdbCA29267739b/logo.png b/blockchains/ethereum/assets/0xF244176246168F24e3187f7288EdbCA29267739b/logo.png new file mode 100644 index 00000000..30d9ffef Binary files /dev/null and b/blockchains/ethereum/assets/0xF244176246168F24e3187f7288EdbCA29267739b/logo.png differ diff --git a/blockchains/ethereum/assets/0xF256CC7847E919FAc9B808cC216cAc87CCF2f47a/info.json b/blockchains/ethereum/assets/0xF256CC7847E919FAc9B808cC216cAc87CCF2f47a/info.json new file mode 100644 index 00000000..b06f60f6 --- /dev/null +++ b/blockchains/ethereum/assets/0xF256CC7847E919FAc9B808cC216cAc87CCF2f47a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave XSUSHI", + "symbol": "aXSUSHI", + "type": "ERC20", + "decimals": 18, + "description": "Aave XSUSHI is an interest bearing token pegged 1:1 to the underlying XSUSHI deposited in Aave. aXSUSHI accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xF256CC7847E919FAc9B808cC216cAc87CCF2f47a", + "status": "active", + "id": "0xF256CC7847E919FAc9B808cC216cAc87CCF2f47a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF256CC7847E919FAc9B808cC216cAc87CCF2f47a/logo.png b/blockchains/ethereum/assets/0xF256CC7847E919FAc9B808cC216cAc87CCF2f47a/logo.png new file mode 100644 index 00000000..785ed2a5 Binary files /dev/null and b/blockchains/ethereum/assets/0xF256CC7847E919FAc9B808cC216cAc87CCF2f47a/logo.png differ diff --git a/blockchains/ethereum/assets/0xF25AD7AfAC29e7CF7B82530c900196cbD5d09943/info.json b/blockchains/ethereum/assets/0xF25AD7AfAC29e7CF7B82530c900196cbD5d09943/info.json new file mode 100644 index 00000000..2dffce93 --- /dev/null +++ b/blockchains/ethereum/assets/0xF25AD7AfAC29e7CF7B82530c900196cbD5d09943/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 236-CN07", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF25AD7AfAC29e7CF7B82530c900196cbD5d09943", + "status": "abandoned", + "id": "0xF25AD7AfAC29e7CF7B82530c900196cbD5d09943" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF25AD7AfAC29e7CF7B82530c900196cbD5d09943/logo.png b/blockchains/ethereum/assets/0xF25AD7AfAC29e7CF7B82530c900196cbD5d09943/logo.png new file mode 100644 index 00000000..16aa760f Binary files /dev/null and b/blockchains/ethereum/assets/0xF25AD7AfAC29e7CF7B82530c900196cbD5d09943/logo.png differ diff --git a/blockchains/ethereum/assets/0xF25c91C87e0B1fd9B4064Af0F427157AaB0193A7/info.json b/blockchains/ethereum/assets/0xF25c91C87e0B1fd9B4064Af0F427157AaB0193A7/info.json new file mode 100644 index 00000000..d58d67fa --- /dev/null +++ b/blockchains/ethereum/assets/0xF25c91C87e0B1fd9B4064Af0F427157AaB0193A7/info.json @@ -0,0 +1,11 @@ +{ + "name": "BASIC Token", + "symbol": "BASIC", + "type": "ERC20", + "decimals": 18, + "description": "Basic is a crypto finance platform where businesses and consumers can access finance services for crypto assets like bitcoin and ethereum.", + "website": "https://basic.finance/", + "explorer": "https://etherscan.io/token/0xF25c91C87e0B1fd9B4064Af0F427157AaB0193A7", + "status": "active", + "id": "0xF25c91C87e0B1fd9B4064Af0F427157AaB0193A7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF25c91C87e0B1fd9B4064Af0F427157AaB0193A7/logo.png b/blockchains/ethereum/assets/0xF25c91C87e0B1fd9B4064Af0F427157AaB0193A7/logo.png new file mode 100644 index 00000000..a62c4e90 Binary files /dev/null and b/blockchains/ethereum/assets/0xF25c91C87e0B1fd9B4064Af0F427157AaB0193A7/logo.png differ diff --git a/blockchains/ethereum/assets/0xF260608a577B64000747D533e27bbc2e53F9108D/info.json b/blockchains/ethereum/assets/0xF260608a577B64000747D533e27bbc2e53F9108D/info.json new file mode 100644 index 00000000..9d19f2ca --- /dev/null +++ b/blockchains/ethereum/assets/0xF260608a577B64000747D533e27bbc2e53F9108D/info.json @@ -0,0 +1,11 @@ +{ + "name": "mewFi.finance", + "symbol": "mewFi", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF260608a577B64000747D533e27bbc2e53F9108D", + "status": "abandoned", + "id": "0xF260608a577B64000747D533e27bbc2e53F9108D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF260608a577B64000747D533e27bbc2e53F9108D/logo.png b/blockchains/ethereum/assets/0xF260608a577B64000747D533e27bbc2e53F9108D/logo.png new file mode 100644 index 00000000..30a2a0d1 Binary files /dev/null and b/blockchains/ethereum/assets/0xF260608a577B64000747D533e27bbc2e53F9108D/logo.png differ diff --git a/blockchains/ethereum/assets/0xF26893f89B23084C4C6216038D6eBDBE9e96C5cb/info.json b/blockchains/ethereum/assets/0xF26893f89B23084C4C6216038D6eBDBE9e96C5cb/info.json new file mode 100644 index 00000000..e9d596a5 --- /dev/null +++ b/blockchains/ethereum/assets/0xF26893f89B23084C4C6216038D6eBDBE9e96C5cb/info.json @@ -0,0 +1,11 @@ +{ + "name": "MLR Token - Mega Lottery Services Global", + "symbol": "MLR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://megaltr.com/", + "explorer": "https://etherscan.io/token/0xF26893f89B23084C4C6216038D6eBDBE9e96C5cb", + "status": "abandoned", + "id": "0xF26893f89B23084C4C6216038D6eBDBE9e96C5cb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF26893f89B23084C4C6216038D6eBDBE9e96C5cb/logo.png b/blockchains/ethereum/assets/0xF26893f89B23084C4C6216038D6eBDBE9e96C5cb/logo.png new file mode 100644 index 00000000..1cd5c5e2 Binary files /dev/null and b/blockchains/ethereum/assets/0xF26893f89B23084C4C6216038D6eBDBE9e96C5cb/logo.png differ diff --git a/blockchains/ethereum/assets/0xF29226914595052a04F5AFbe6410D0C3eD707548/info.json b/blockchains/ethereum/assets/0xF29226914595052a04F5AFbe6410D0C3eD707548/info.json new file mode 100644 index 00000000..03797da9 --- /dev/null +++ b/blockchains/ethereum/assets/0xF29226914595052a04F5AFbe6410D0C3eD707548/info.json @@ -0,0 +1,11 @@ +{ + "name": "NEXT", + "symbol": "NET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.coinbit.co.kr/exchangeCoin/netInfo", + "explorer": "https://etherscan.io/token/0xF29226914595052a04F5AFbe6410D0C3eD707548", + "status": "abandoned", + "id": "0xF29226914595052a04F5AFbe6410D0C3eD707548" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF29226914595052a04F5AFbe6410D0C3eD707548/logo.png b/blockchains/ethereum/assets/0xF29226914595052a04F5AFbe6410D0C3eD707548/logo.png new file mode 100644 index 00000000..790edcca Binary files /dev/null and b/blockchains/ethereum/assets/0xF29226914595052a04F5AFbe6410D0C3eD707548/logo.png differ diff --git a/blockchains/ethereum/assets/0xF29992D7b589A0A6bD2de7Be29a97A6EB73EaF85/info.json b/blockchains/ethereum/assets/0xF29992D7b589A0A6bD2de7Be29a97A6EB73EaF85/info.json new file mode 100644 index 00000000..fc119da0 --- /dev/null +++ b/blockchains/ethereum/assets/0xF29992D7b589A0A6bD2de7Be29a97A6EB73EaF85/info.json @@ -0,0 +1,11 @@ +{ + "name": "DMScript", + "symbol": "DMST", + "type": "ERC20", + "decimals": 18, + "description": "DMScript claims to be a blockchain-gaming company dedicated to backing and releasing video game-related projects, utilizing the blockchain technology that has also proven to be unshakable in times of crisis.", + "website": "https://dmscript.com/", + "explorer": "https://etherscan.io/token/0xF29992D7b589A0A6bD2de7Be29a97A6EB73EaF85", + "status": "active", + "id": "0xF29992D7b589A0A6bD2de7Be29a97A6EB73EaF85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF29992D7b589A0A6bD2de7Be29a97A6EB73EaF85/logo.png b/blockchains/ethereum/assets/0xF29992D7b589A0A6bD2de7Be29a97A6EB73EaF85/logo.png new file mode 100644 index 00000000..a6e5fa56 Binary files /dev/null and b/blockchains/ethereum/assets/0xF29992D7b589A0A6bD2de7Be29a97A6EB73EaF85/logo.png differ diff --git a/blockchains/ethereum/assets/0xF2AD1Ee9671F63dF7c8f8Daa822DA1E6fC08b80d/info.json b/blockchains/ethereum/assets/0xF2AD1Ee9671F63dF7c8f8Daa822DA1E6fC08b80d/info.json new file mode 100644 index 00000000..8704dac4 --- /dev/null +++ b/blockchains/ethereum/assets/0xF2AD1Ee9671F63dF7c8f8Daa822DA1E6fC08b80d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long ETH-DAI 4x v2", + "symbol": "dLETH4x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF2AD1Ee9671F63dF7c8f8Daa822DA1E6fC08b80d", + "status": "abandoned", + "id": "0xF2AD1Ee9671F63dF7c8f8Daa822DA1E6fC08b80d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF2AD1Ee9671F63dF7c8f8Daa822DA1E6fC08b80d/logo.png b/blockchains/ethereum/assets/0xF2AD1Ee9671F63dF7c8f8Daa822DA1E6fC08b80d/logo.png new file mode 100644 index 00000000..c8906164 Binary files /dev/null and b/blockchains/ethereum/assets/0xF2AD1Ee9671F63dF7c8f8Daa822DA1E6fC08b80d/logo.png differ diff --git a/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/info.json b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/info.json new file mode 100644 index 00000000..173fe9f7 --- /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 00000000..4f1ec8de Binary files /dev/null and b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/logo.png differ diff --git a/blockchains/ethereum/assets/0xF2C2e42BA757f21Cb51eE2bb3B10389df9A44b36/info.json b/blockchains/ethereum/assets/0xF2C2e42BA757f21Cb51eE2bb3B10389df9A44b36/info.json new file mode 100644 index 00000000..9e07258f --- /dev/null +++ b/blockchains/ethereum/assets/0xF2C2e42BA757f21Cb51eE2bb3B10389df9A44b36/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafT", + "symbol": "SAFY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF2C2e42BA757f21Cb51eE2bb3B10389df9A44b36", + "status": "abandoned", + "id": "0xF2C2e42BA757f21Cb51eE2bb3B10389df9A44b36" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF2C2e42BA757f21Cb51eE2bb3B10389df9A44b36/logo.png b/blockchains/ethereum/assets/0xF2C2e42BA757f21Cb51eE2bb3B10389df9A44b36/logo.png new file mode 100644 index 00000000..1535628f Binary files /dev/null and b/blockchains/ethereum/assets/0xF2C2e42BA757f21Cb51eE2bb3B10389df9A44b36/logo.png differ diff --git a/blockchains/ethereum/assets/0xF2f1C19F304E84Bc3D2e1903979a72D42164d7E6/info.json b/blockchains/ethereum/assets/0xF2f1C19F304E84Bc3D2e1903979a72D42164d7E6/info.json new file mode 100644 index 00000000..1fa88fb3 --- /dev/null +++ b/blockchains/ethereum/assets/0xF2f1C19F304E84Bc3D2e1903979a72D42164d7E6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Grid Trade", + "symbol": "GTRX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF2f1C19F304E84Bc3D2e1903979a72D42164d7E6", + "status": "active", + "id": "0xF2f1C19F304E84Bc3D2e1903979a72D42164d7E6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF2f1C19F304E84Bc3D2e1903979a72D42164d7E6/logo.png b/blockchains/ethereum/assets/0xF2f1C19F304E84Bc3D2e1903979a72D42164d7E6/logo.png new file mode 100644 index 00000000..483e276a Binary files /dev/null and b/blockchains/ethereum/assets/0xF2f1C19F304E84Bc3D2e1903979a72D42164d7E6/logo.png differ diff --git a/blockchains/ethereum/assets/0xF2f9A7e93f845b3ce154EfbeB64fB9346FCCE509/info.json b/blockchains/ethereum/assets/0xF2f9A7e93f845b3ce154EfbeB64fB9346FCCE509/info.json new file mode 100644 index 00000000..3a5b5e3b --- /dev/null +++ b/blockchains/ethereum/assets/0xF2f9A7e93f845b3ce154EfbeB64fB9346FCCE509/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniPower", + "symbol": "POWER", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://unipower.network", + "explorer": "https://etherscan.io/token/0xF2f9A7e93f845b3ce154EfbeB64fB9346FCCE509", + "status": "abandoned", + "id": "0xF2f9A7e93f845b3ce154EfbeB64fB9346FCCE509" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF2f9A7e93f845b3ce154EfbeB64fB9346FCCE509/logo.png b/blockchains/ethereum/assets/0xF2f9A7e93f845b3ce154EfbeB64fB9346FCCE509/logo.png new file mode 100644 index 00000000..6625c2fe Binary files /dev/null and b/blockchains/ethereum/assets/0xF2f9A7e93f845b3ce154EfbeB64fB9346FCCE509/logo.png differ diff --git a/blockchains/ethereum/assets/0xF3281c539716a08c754EC4C8F2B4cEe0faB64BB9/info.json b/blockchains/ethereum/assets/0xF3281c539716a08c754EC4C8F2B4cEe0faB64BB9/info.json new file mode 100644 index 00000000..9b5ce4de --- /dev/null +++ b/blockchains/ethereum/assets/0xF3281c539716a08c754EC4C8F2B4cEe0faB64BB9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Markaccy", + "symbol": "MKCY", + "type": "ERC20", + "decimals": 18, + "description": "Markaccy is a decentralized project aiming to unite a strong business community in pursuit of mutual interests through effective, easy, and professional P2P mechanisms with no intermediaries.", + "website": "https://www.markaccy.io/", + "explorer": "https://etherscan.io/token/0xF3281c539716a08c754EC4C8F2B4cEe0faB64BB9", + "status": "active", + "id": "0xF3281c539716a08c754EC4C8F2B4cEe0faB64BB9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF3281c539716a08c754EC4C8F2B4cEe0faB64BB9/logo.png b/blockchains/ethereum/assets/0xF3281c539716a08c754EC4C8F2B4cEe0faB64BB9/logo.png new file mode 100644 index 00000000..c2b3c63a Binary files /dev/null and b/blockchains/ethereum/assets/0xF3281c539716a08c754EC4C8F2B4cEe0faB64BB9/logo.png differ diff --git a/blockchains/ethereum/assets/0xF32E935A9Ad2b7d645428b233A306e81f7aaFa43/info.json b/blockchains/ethereum/assets/0xF32E935A9Ad2b7d645428b233A306e81f7aaFa43/info.json new file mode 100644 index 00000000..30f448ef --- /dev/null +++ b/blockchains/ethereum/assets/0xF32E935A9Ad2b7d645428b233A306e81f7aaFa43/info.json @@ -0,0 +1,11 @@ +{ + "name": "CyphrCoin XX", + "symbol": "CYFX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF32E935A9Ad2b7d645428b233A306e81f7aaFa43", + "status": "abandoned", + "id": "0xF32E935A9Ad2b7d645428b233A306e81f7aaFa43" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF32E935A9Ad2b7d645428b233A306e81f7aaFa43/logo.png b/blockchains/ethereum/assets/0xF32E935A9Ad2b7d645428b233A306e81f7aaFa43/logo.png new file mode 100644 index 00000000..ee625a18 Binary files /dev/null and b/blockchains/ethereum/assets/0xF32E935A9Ad2b7d645428b233A306e81f7aaFa43/logo.png differ diff --git a/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json b/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json new file mode 100644 index 00000000..de6eac44 --- /dev/null +++ b/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json @@ -0,0 +1,24 @@ +{ + "name": "GroveCoin", + "type": "ERC20", + "symbol": "GRV", + "decimals": 8, + "website": "https://www.grovetoken.com/", + "description": "Grove Token is a decentralized and secure green Token built for the future of our planet. Our mission is to Create wealth, for all Grovers, by harnessing the opportunities of a secure, decentralized digital currency in an environmentally conscious way. By compensating nature for years of abuse, Grove will create a healthier, wealthier future for all.", + "explorer": "https://etherscan.io/token/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c", + "status": "active", + "id": "0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c", + "links": [ + { + "name": "x", + "url": "https://x.com/GroveToken" + }, + { + "name": "facebook", + "url": "https://facebook.com/GroveTokenOfficial" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/logo.png b/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/logo.png new file mode 100644 index 00000000..4c8c7bcd Binary files /dev/null and b/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/logo.png differ diff --git a/blockchains/ethereum/assets/0xF3562f15fd1c152612F3CEeB6B08c528F06C703A/info.json b/blockchains/ethereum/assets/0xF3562f15fd1c152612F3CEeB6B08c528F06C703A/info.json new file mode 100644 index 00000000..205c7135 --- /dev/null +++ b/blockchains/ethereum/assets/0xF3562f15fd1c152612F3CEeB6B08c528F06C703A/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R880547", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF3562f15fd1c152612F3CEeB6B08c528F06C703A", + "status": "abandoned", + "id": "0xF3562f15fd1c152612F3CEeB6B08c528F06C703A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF3562f15fd1c152612F3CEeB6B08c528F06C703A/logo.png b/blockchains/ethereum/assets/0xF3562f15fd1c152612F3CEeB6B08c528F06C703A/logo.png new file mode 100644 index 00000000..6fe37c50 Binary files /dev/null and b/blockchains/ethereum/assets/0xF3562f15fd1c152612F3CEeB6B08c528F06C703A/logo.png differ diff --git a/blockchains/ethereum/assets/0xF36Ccb6465Fa93bf90771b5459B0b210A2D82392/info.json b/blockchains/ethereum/assets/0xF36Ccb6465Fa93bf90771b5459B0b210A2D82392/info.json new file mode 100644 index 00000000..a03b8a30 --- /dev/null +++ b/blockchains/ethereum/assets/0xF36Ccb6465Fa93bf90771b5459B0b210A2D82392/info.json @@ -0,0 +1,11 @@ +{ + "name": "CyteCoin", + "symbol": "CTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF36Ccb6465Fa93bf90771b5459B0b210A2D82392", + "status": "abandoned", + "id": "0xF36Ccb6465Fa93bf90771b5459B0b210A2D82392" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF36Ccb6465Fa93bf90771b5459B0b210A2D82392/logo.png b/blockchains/ethereum/assets/0xF36Ccb6465Fa93bf90771b5459B0b210A2D82392/logo.png new file mode 100644 index 00000000..24a68899 Binary files /dev/null and b/blockchains/ethereum/assets/0xF36Ccb6465Fa93bf90771b5459B0b210A2D82392/logo.png differ diff --git a/blockchains/ethereum/assets/0xF3981E5ff82CAAA5d4cb4fbA540b06c20c3d3dbE/info.json b/blockchains/ethereum/assets/0xF3981E5ff82CAAA5d4cb4fbA540b06c20c3d3dbE/info.json new file mode 100644 index 00000000..a544edc7 --- /dev/null +++ b/blockchains/ethereum/assets/0xF3981E5ff82CAAA5d4cb4fbA540b06c20c3d3dbE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Meritum", + "symbol": "MER", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF3981E5ff82CAAA5d4cb4fbA540b06c20c3d3dbE", + "status": "abandoned", + "id": "0xF3981E5ff82CAAA5d4cb4fbA540b06c20c3d3dbE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF3981E5ff82CAAA5d4cb4fbA540b06c20c3d3dbE/logo.png b/blockchains/ethereum/assets/0xF3981E5ff82CAAA5d4cb4fbA540b06c20c3d3dbE/logo.png new file mode 100644 index 00000000..a6a626c3 Binary files /dev/null and b/blockchains/ethereum/assets/0xF3981E5ff82CAAA5d4cb4fbA540b06c20c3d3dbE/logo.png differ diff --git a/blockchains/ethereum/assets/0xF39f19565B8D937EC30f1db5BD42F558D1E312A6/info.json b/blockchains/ethereum/assets/0xF39f19565B8D937EC30f1db5BD42F558D1E312A6/info.json new file mode 100644 index 00000000..be8cb63c --- /dev/null +++ b/blockchains/ethereum/assets/0xF39f19565B8D937EC30f1db5BD42F558D1E312A6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kappi Token", + "symbol": "KAPP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF39f19565B8D937EC30f1db5BD42F558D1E312A6", + "status": "abandoned", + "id": "0xF39f19565B8D937EC30f1db5BD42F558D1E312A6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF39f19565B8D937EC30f1db5BD42F558D1E312A6/logo.png b/blockchains/ethereum/assets/0xF39f19565B8D937EC30f1db5BD42F558D1E312A6/logo.png new file mode 100644 index 00000000..1b3422eb Binary files /dev/null and b/blockchains/ethereum/assets/0xF39f19565B8D937EC30f1db5BD42F558D1E312A6/logo.png differ diff --git a/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/info.json b/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/info.json new file mode 100644 index 00000000..c4c63977 --- /dev/null +++ b/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/info.json @@ -0,0 +1,24 @@ +{ + "name": "SHARBI", + "type": "ERC20", + "symbol": "SHARBI", + "decimals": 9, + "website": "https://sharbi.net/", + "description": "Sharbi is a community-owned, Arbitrum and Ethereum token. Sharbi is known for being the mistress of Shiba.", + "explorer": "https://etherscan.io/token/0xf3a3023e6dede84ad88a656a3269f2a36e83c9a9", + "status": "active", + "id": "0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SharbiPortal" + }, + { + "name": "x", + "url": "https://x.com/SharbiToken" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/logo.png b/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/logo.png new file mode 100644 index 00000000..855db6d9 Binary files /dev/null and b/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/logo.png differ diff --git a/blockchains/ethereum/assets/0xF3C9D88bF55f368a36eCBF47afBac07490235b56/info.json b/blockchains/ethereum/assets/0xF3C9D88bF55f368a36eCBF47afBac07490235b56/info.json new file mode 100644 index 00000000..e8bc5cfa --- /dev/null +++ b/blockchains/ethereum/assets/0xF3C9D88bF55f368a36eCBF47afBac07490235b56/info.json @@ -0,0 +1,11 @@ +{ + "name": "My Own Travel Token", + "symbol": "MOTT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF3C9D88bF55f368a36eCBF47afBac07490235b56", + "status": "abandoned", + "id": "0xF3C9D88bF55f368a36eCBF47afBac07490235b56" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF3C9D88bF55f368a36eCBF47afBac07490235b56/logo.png b/blockchains/ethereum/assets/0xF3C9D88bF55f368a36eCBF47afBac07490235b56/logo.png new file mode 100644 index 00000000..da28ec54 Binary files /dev/null and b/blockchains/ethereum/assets/0xF3C9D88bF55f368a36eCBF47afBac07490235b56/logo.png differ diff --git a/blockchains/ethereum/assets/0xF3E92c5Ec45d4523618D8d1A3Ca1949F3eF7b412/info.json b/blockchains/ethereum/assets/0xF3E92c5Ec45d4523618D8d1A3Ca1949F3eF7b412/info.json new file mode 100644 index 00000000..0c4d1bc6 --- /dev/null +++ b/blockchains/ethereum/assets/0xF3E92c5Ec45d4523618D8d1A3Ca1949F3eF7b412/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C548596", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF3E92c5Ec45d4523618D8d1A3Ca1949F3eF7b412", + "status": "abandoned", + "id": "0xF3E92c5Ec45d4523618D8d1A3Ca1949F3eF7b412" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF3E92c5Ec45d4523618D8d1A3Ca1949F3eF7b412/logo.png b/blockchains/ethereum/assets/0xF3E92c5Ec45d4523618D8d1A3Ca1949F3eF7b412/logo.png new file mode 100644 index 00000000..d1e7fe2d Binary files /dev/null and b/blockchains/ethereum/assets/0xF3E92c5Ec45d4523618D8d1A3Ca1949F3eF7b412/logo.png differ diff --git a/blockchains/ethereum/assets/0xF3b3Cad094B89392fcE5faFD40bC03b80F2Bc624/info.json b/blockchains/ethereum/assets/0xF3b3Cad094B89392fcE5faFD40bC03b80F2Bc624/info.json new file mode 100644 index 00000000..0c25d3f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xF3b3Cad094B89392fcE5faFD40bC03b80F2Bc624/info.json @@ -0,0 +1,11 @@ +{ + "name": "PATRON", + "symbol": "PAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://patron-influencers.com", + "explorer": "https://etherscan.io/token/0xF3b3Cad094B89392fcE5faFD40bC03b80F2Bc624", + "status": "active", + "id": "0xF3b3Cad094B89392fcE5faFD40bC03b80F2Bc624" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF3b3Cad094B89392fcE5faFD40bC03b80F2Bc624/logo.png b/blockchains/ethereum/assets/0xF3b3Cad094B89392fcE5faFD40bC03b80F2Bc624/logo.png new file mode 100755 index 00000000..449302e0 Binary files /dev/null and b/blockchains/ethereum/assets/0xF3b3Cad094B89392fcE5faFD40bC03b80F2Bc624/logo.png differ diff --git a/blockchains/ethereum/assets/0xF3cFBCA4e083B1418F89545754C7dA90d2418B10/info.json b/blockchains/ethereum/assets/0xF3cFBCA4e083B1418F89545754C7dA90d2418B10/info.json new file mode 100644 index 00000000..350d5a4b --- /dev/null +++ b/blockchains/ethereum/assets/0xF3cFBCA4e083B1418F89545754C7dA90d2418B10/info.json @@ -0,0 +1,11 @@ +{ + "name": "G-Mbel", + "symbol": "GMBEL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.g-mbel.info/", + "explorer": "https://etherscan.io/token/0xF3cFBCA4e083B1418F89545754C7dA90d2418B10", + "status": "abandoned", + "id": "0xF3cFBCA4e083B1418F89545754C7dA90d2418B10" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF3cFBCA4e083B1418F89545754C7dA90d2418B10/logo.png b/blockchains/ethereum/assets/0xF3cFBCA4e083B1418F89545754C7dA90d2418B10/logo.png new file mode 100755 index 00000000..fd17a565 Binary files /dev/null and b/blockchains/ethereum/assets/0xF3cFBCA4e083B1418F89545754C7dA90d2418B10/logo.png differ diff --git a/blockchains/ethereum/assets/0xF3d29Fb98D2DC5E78c87198DEEF99377345fD6F1/info.json b/blockchains/ethereum/assets/0xF3d29Fb98D2DC5E78c87198DEEF99377345fD6F1/info.json new file mode 100644 index 00000000..70391f2f --- /dev/null +++ b/blockchains/ethereum/assets/0xF3d29Fb98D2DC5E78c87198DEEF99377345fD6F1/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITPARK", + "symbol": "BIP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://bitpark.net/", + "explorer": "https://etherscan.io/token/0xF3d29Fb98D2DC5E78c87198DEEF99377345fD6F1", + "status": "abandoned", + "id": "0xF3d29Fb98D2DC5E78c87198DEEF99377345fD6F1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF3d29Fb98D2DC5E78c87198DEEF99377345fD6F1/logo.png b/blockchains/ethereum/assets/0xF3d29Fb98D2DC5E78c87198DEEF99377345fD6F1/logo.png new file mode 100644 index 00000000..43fada2e Binary files /dev/null and b/blockchains/ethereum/assets/0xF3d29Fb98D2DC5E78c87198DEEF99377345fD6F1/logo.png differ diff --git a/blockchains/ethereum/assets/0xF3e4872e6a4cF365888D93b6146a2bAA7348F1A4/info.json b/blockchains/ethereum/assets/0xF3e4872e6a4cF365888D93b6146a2bAA7348F1A4/info.json new file mode 100644 index 00000000..c9e3ac13 --- /dev/null +++ b/blockchains/ethereum/assets/0xF3e4872e6a4cF365888D93b6146a2bAA7348F1A4/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Silver Trust (Ondo Tokenized)", + "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 00000000..140fda8b Binary files /dev/null and b/blockchains/ethereum/assets/0xF3e4872e6a4cF365888D93b6146a2bAA7348F1A4/logo.png differ diff --git a/blockchains/ethereum/assets/0xF3e70642c28f3F707408c56624c2F30eA9F9FcE3/info.json b/blockchains/ethereum/assets/0xF3e70642c28f3F707408c56624c2F30eA9F9FcE3/info.json new file mode 100644 index 00000000..66b2ec49 --- /dev/null +++ b/blockchains/ethereum/assets/0xF3e70642c28f3F707408c56624c2F30eA9F9FcE3/info.json @@ -0,0 +1,11 @@ +{ + "name": "ALBOS Token", + "symbol": "ALB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.albos.io/ico/", + "explorer": "https://etherscan.io/token/0xF3e70642c28f3F707408c56624c2F30eA9F9FcE3", + "status": "abandoned", + "id": "0xF3e70642c28f3F707408c56624c2F30eA9F9FcE3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF3e70642c28f3F707408c56624c2F30eA9F9FcE3/logo.png b/blockchains/ethereum/assets/0xF3e70642c28f3F707408c56624c2F30eA9F9FcE3/logo.png new file mode 100644 index 00000000..b148c3a3 Binary files /dev/null and b/blockchains/ethereum/assets/0xF3e70642c28f3F707408c56624c2F30eA9F9FcE3/logo.png differ diff --git a/blockchains/ethereum/assets/0xF404E5f887dBd5508e16a1198fCDD5DE1A4296B8/info.json b/blockchains/ethereum/assets/0xF404E5f887dBd5508e16a1198fCDD5DE1A4296B8/info.json new file mode 100644 index 00000000..e8c5b4f8 --- /dev/null +++ b/blockchains/ethereum/assets/0xF404E5f887dBd5508e16a1198fCDD5DE1A4296B8/info.json @@ -0,0 +1,24 @@ +{ + "name": "Marvell Technology (Ondo Tokenized)", + "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 00000000..d5eb73f1 Binary files /dev/null and b/blockchains/ethereum/assets/0xF404E5f887dBd5508e16a1198fCDD5DE1A4296B8/logo.png differ diff --git a/blockchains/ethereum/assets/0xF411903cbC70a74d22900a5DE66A2dda66507255/info.json b/blockchains/ethereum/assets/0xF411903cbC70a74d22900a5DE66A2dda66507255/info.json new file mode 100644 index 00000000..b67fbec7 --- /dev/null +++ b/blockchains/ethereum/assets/0xF411903cbC70a74d22900a5DE66A2dda66507255/info.json @@ -0,0 +1,11 @@ +{ + "name": "Verasity", + "symbol": "VRA", + "type": "ERC20", + "decimals": 18, + "description": "Verasity", + "website": "https://verasity.io", + "explorer": "https://etherscan.io/token/0xF411903cbC70a74d22900a5DE66A2dda66507255", + "status": "active", + "id": "0xF411903cbC70a74d22900a5DE66A2dda66507255" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF411903cbC70a74d22900a5DE66A2dda66507255/logo.png b/blockchains/ethereum/assets/0xF411903cbC70a74d22900a5DE66A2dda66507255/logo.png new file mode 100644 index 00000000..77946622 Binary files /dev/null and b/blockchains/ethereum/assets/0xF411903cbC70a74d22900a5DE66A2dda66507255/logo.png differ diff --git a/blockchains/ethereum/assets/0xF4134146AF2d511Dd5EA8cDB1C4AC88C57D60404/info.json b/blockchains/ethereum/assets/0xF4134146AF2d511Dd5EA8cDB1C4AC88C57D60404/info.json new file mode 100644 index 00000000..bb931d30 --- /dev/null +++ b/blockchains/ethereum/assets/0xF4134146AF2d511Dd5EA8cDB1C4AC88C57D60404/info.json @@ -0,0 +1,11 @@ +{ + "name": "SunContract", + "symbol": "SNC", + "type": "ERC20", + "decimals": 18, + "description": "SunContract is an energy trading platform that utilizes blockchain technology to create a new business model for buying and selling electricity.", + "website": "https://suncontract.org/", + "explorer": "https://etherscan.io/token/0xF4134146AF2d511Dd5EA8cDB1C4AC88C57D60404", + "status": "active", + "id": "0xF4134146AF2d511Dd5EA8cDB1C4AC88C57D60404" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF4134146AF2d511Dd5EA8cDB1C4AC88C57D60404/logo.png b/blockchains/ethereum/assets/0xF4134146AF2d511Dd5EA8cDB1C4AC88C57D60404/logo.png new file mode 100644 index 00000000..7a9ca83a Binary files /dev/null and b/blockchains/ethereum/assets/0xF4134146AF2d511Dd5EA8cDB1C4AC88C57D60404/logo.png differ diff --git a/blockchains/ethereum/assets/0xF41804cf0720eca53c7297Eb3BF2B61465a9DBbe/info.json b/blockchains/ethereum/assets/0xF41804cf0720eca53c7297Eb3BF2B61465a9DBbe/info.json new file mode 100644 index 00000000..c498d899 --- /dev/null +++ b/blockchains/ethereum/assets/0xF41804cf0720eca53c7297Eb3BF2B61465a9DBbe/info.json @@ -0,0 +1,11 @@ +{ + "name": "BRO", + "description": "BROCoin is a friend token.", + "website": "-", + "explorer": "https://etherscan.io/token/0xF41804cf0720eca53c7297Eb3BF2B61465a9DBbe", + "type": "ERC20", + "symbol": "BRO", + "decimals": 2, + "status": "abandoned", + "id": "0xF41804cf0720eca53c7297Eb3BF2B61465a9DBbe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF41804cf0720eca53c7297Eb3BF2B61465a9DBbe/logo.png b/blockchains/ethereum/assets/0xF41804cf0720eca53c7297Eb3BF2B61465a9DBbe/logo.png new file mode 100644 index 00000000..7157f7b5 Binary files /dev/null and b/blockchains/ethereum/assets/0xF41804cf0720eca53c7297Eb3BF2B61465a9DBbe/logo.png differ diff --git a/blockchains/ethereum/assets/0xF41e5Fbc2F6Aac200Dd8619E121CE1f05D150077/info.json b/blockchains/ethereum/assets/0xF41e5Fbc2F6Aac200Dd8619E121CE1f05D150077/info.json new file mode 100644 index 00000000..b7b7a84f --- /dev/null +++ b/blockchains/ethereum/assets/0xF41e5Fbc2F6Aac200Dd8619E121CE1f05D150077/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryCash Token", + "symbol": "CRC", + "type": "ERC20", + "decimals": 18, + "description": "CRYCASH is the first cryptocurrency that satisfies all needs of gamers and game developers with its Ecosystem of custom-tailored services. CRYCASH has already confirmed integration into the renowned bestsellers from Crytek, with more partners to come. Connect with tomorrow’s technology today!", + "website": "https://crycash.io/", + "explorer": "https://etherscan.io/token/0xF41e5Fbc2F6Aac200Dd8619E121CE1f05D150077", + "status": "active", + "id": "0xF41e5Fbc2F6Aac200Dd8619E121CE1f05D150077" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF41e5Fbc2F6Aac200Dd8619E121CE1f05D150077/logo.png b/blockchains/ethereum/assets/0xF41e5Fbc2F6Aac200Dd8619E121CE1f05D150077/logo.png new file mode 100755 index 00000000..44c8c39f Binary files /dev/null and b/blockchains/ethereum/assets/0xF41e5Fbc2F6Aac200Dd8619E121CE1f05D150077/logo.png differ diff --git a/blockchains/ethereum/assets/0xF433089366899D83a9f26A773D59ec7eCF30355e/info.json b/blockchains/ethereum/assets/0xF433089366899D83a9f26A773D59ec7eCF30355e/info.json new file mode 100644 index 00000000..adfeb362 --- /dev/null +++ b/blockchains/ethereum/assets/0xF433089366899D83a9f26A773D59ec7eCF30355e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Metal", + "website": "https://metalpay.com", + "description": "Metal Pay makes it simple to keep track of where your money goes.", + "explorer": "https://etherscan.io/token/0xF433089366899D83a9f26A773D59ec7eCF30355e", + "type": "ERC20", + "symbol": "MTL", + "decimals": 8, + "status": "active", + "id": "0xF433089366899D83a9f26A773D59ec7eCF30355e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF433089366899D83a9f26A773D59ec7eCF30355e/logo.png b/blockchains/ethereum/assets/0xF433089366899D83a9f26A773D59ec7eCF30355e/logo.png new file mode 100644 index 00000000..b17c2a31 Binary files /dev/null and b/blockchains/ethereum/assets/0xF433089366899D83a9f26A773D59ec7eCF30355e/logo.png differ diff --git a/blockchains/ethereum/assets/0xF438e3a0C1bb9Dc0ef6dA672C97a282236D3F233/info.json b/blockchains/ethereum/assets/0xF438e3a0C1bb9Dc0ef6dA672C97a282236D3F233/info.json new file mode 100644 index 00000000..fdbf400e --- /dev/null +++ b/blockchains/ethereum/assets/0xF438e3a0C1bb9Dc0ef6dA672C97a282236D3F233/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hyper Token", + "symbol": "HYPE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF438e3a0C1bb9Dc0ef6dA672C97a282236D3F233", + "status": "abandoned", + "id": "0xF438e3a0C1bb9Dc0ef6dA672C97a282236D3F233" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF438e3a0C1bb9Dc0ef6dA672C97a282236D3F233/logo.png b/blockchains/ethereum/assets/0xF438e3a0C1bb9Dc0ef6dA672C97a282236D3F233/logo.png new file mode 100644 index 00000000..0b0e94be Binary files /dev/null and b/blockchains/ethereum/assets/0xF438e3a0C1bb9Dc0ef6dA672C97a282236D3F233/logo.png differ diff --git a/blockchains/ethereum/assets/0xF45091f25d374BbE956c0bb64bB85e02D07Aa741/info.json b/blockchains/ethereum/assets/0xF45091f25d374BbE956c0bb64bB85e02D07Aa741/info.json new file mode 100644 index 00000000..d7361e69 --- /dev/null +++ b/blockchains/ethereum/assets/0xF45091f25d374BbE956c0bb64bB85e02D07Aa741/info.json @@ -0,0 +1,11 @@ +{ + "name": "MNMCoin", + "symbol": "MNMC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://www.mnmcoin.info", + "explorer": "https://etherscan.io/token/0xF45091f25d374BbE956c0bb64bB85e02D07Aa741", + "status": "abandoned", + "id": "0xF45091f25d374BbE956c0bb64bB85e02D07Aa741" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF45091f25d374BbE956c0bb64bB85e02D07Aa741/logo.png b/blockchains/ethereum/assets/0xF45091f25d374BbE956c0bb64bB85e02D07Aa741/logo.png new file mode 100644 index 00000000..1b57696e Binary files /dev/null and b/blockchains/ethereum/assets/0xF45091f25d374BbE956c0bb64bB85e02D07Aa741/logo.png differ diff --git a/blockchains/ethereum/assets/0xF453Ac18fa17b9eC9a76fbF219Ba9fe4612eDd0a/info.json b/blockchains/ethereum/assets/0xF453Ac18fa17b9eC9a76fbF219Ba9fe4612eDd0a/info.json new file mode 100644 index 00000000..20e8b483 --- /dev/null +++ b/blockchains/ethereum/assets/0xF453Ac18fa17b9eC9a76fbF219Ba9fe4612eDd0a/info.json @@ -0,0 +1,11 @@ +{ + "name": "dMMM", + "symbol": "dMMM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF453Ac18fa17b9eC9a76fbF219Ba9fe4612eDd0a", + "status": "abandoned", + "id": "0xF453Ac18fa17b9eC9a76fbF219Ba9fe4612eDd0a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF453Ac18fa17b9eC9a76fbF219Ba9fe4612eDd0a/logo.png b/blockchains/ethereum/assets/0xF453Ac18fa17b9eC9a76fbF219Ba9fe4612eDd0a/logo.png new file mode 100644 index 00000000..0d8f9ad4 Binary files /dev/null and b/blockchains/ethereum/assets/0xF453Ac18fa17b9eC9a76fbF219Ba9fe4612eDd0a/logo.png differ diff --git a/blockchains/ethereum/assets/0xF454071E3a891eD491B8ebADc4c76DE4d604dee8/info.json b/blockchains/ethereum/assets/0xF454071E3a891eD491B8ebADc4c76DE4d604dee8/info.json new file mode 100644 index 00000000..ece73cbd --- /dev/null +++ b/blockchains/ethereum/assets/0xF454071E3a891eD491B8ebADc4c76DE4d604dee8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Multicoin - All in One Cryptocurrency", + "symbol": "MLC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF454071E3a891eD491B8ebADc4c76DE4d604dee8", + "status": "abandoned", + "id": "0xF454071E3a891eD491B8ebADc4c76DE4d604dee8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF454071E3a891eD491B8ebADc4c76DE4d604dee8/logo.png b/blockchains/ethereum/assets/0xF454071E3a891eD491B8ebADc4c76DE4d604dee8/logo.png new file mode 100644 index 00000000..a55e27f8 Binary files /dev/null and b/blockchains/ethereum/assets/0xF454071E3a891eD491B8ebADc4c76DE4d604dee8/logo.png differ diff --git a/blockchains/ethereum/assets/0xF45626B2db4418B1fE62d3F52F07109888C33d0c/info.json b/blockchains/ethereum/assets/0xF45626B2db4418B1fE62d3F52F07109888C33d0c/info.json new file mode 100644 index 00000000..d2a3e871 --- /dev/null +++ b/blockchains/ethereum/assets/0xF45626B2db4418B1fE62d3F52F07109888C33d0c/info.json @@ -0,0 +1,11 @@ +{ + "name": "G Gold Coin", + "symbol": "GGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF45626B2db4418B1fE62d3F52F07109888C33d0c", + "status": "abandoned", + "id": "0xF45626B2db4418B1fE62d3F52F07109888C33d0c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF45626B2db4418B1fE62d3F52F07109888C33d0c/logo.png b/blockchains/ethereum/assets/0xF45626B2db4418B1fE62d3F52F07109888C33d0c/logo.png new file mode 100755 index 00000000..df165357 Binary files /dev/null and b/blockchains/ethereum/assets/0xF45626B2db4418B1fE62d3F52F07109888C33d0c/logo.png differ diff --git a/blockchains/ethereum/assets/0xF46BA88694cd7933Ca28Be84EE787Ad5732e856B/info.json b/blockchains/ethereum/assets/0xF46BA88694cd7933Ca28Be84EE787Ad5732e856B/info.json new file mode 100644 index 00000000..c2617824 --- /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 00000000..99c8e900 Binary files /dev/null and b/blockchains/ethereum/assets/0xF46BA88694cd7933Ca28Be84EE787Ad5732e856B/logo.png differ diff --git a/blockchains/ethereum/assets/0xF47F923B91422F47645f41425601C44f6b464300/info.json b/blockchains/ethereum/assets/0xF47F923B91422F47645f41425601C44f6b464300/info.json new file mode 100644 index 00000000..b022fe48 --- /dev/null +++ b/blockchains/ethereum/assets/0xF47F923B91422F47645f41425601C44f6b464300/info.json @@ -0,0 +1,11 @@ +{ + "name": "DAOT", + "symbol": "DAOT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF47F923B91422F47645f41425601C44f6b464300", + "status": "abandoned", + "id": "0xF47F923B91422F47645f41425601C44f6b464300" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF47F923B91422F47645f41425601C44f6b464300/logo.png b/blockchains/ethereum/assets/0xF47F923B91422F47645f41425601C44f6b464300/logo.png new file mode 100644 index 00000000..4c5ff1f3 Binary files /dev/null and b/blockchains/ethereum/assets/0xF47F923B91422F47645f41425601C44f6b464300/logo.png differ diff --git a/blockchains/ethereum/assets/0xF4882b5d907Fd0C5626C06344C31506ae5D90c87/info.json b/blockchains/ethereum/assets/0xF4882b5d907Fd0C5626C06344C31506ae5D90c87/info.json new file mode 100644 index 00000000..0e6f9210 --- /dev/null +++ b/blockchains/ethereum/assets/0xF4882b5d907Fd0C5626C06344C31506ae5D90c87/info.json @@ -0,0 +1,11 @@ +{ + "name": "Masacoin", + "symbol": "MASA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF4882b5d907Fd0C5626C06344C31506ae5D90c87", + "status": "abandoned", + "id": "0xF4882b5d907Fd0C5626C06344C31506ae5D90c87" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF4882b5d907Fd0C5626C06344C31506ae5D90c87/logo.png b/blockchains/ethereum/assets/0xF4882b5d907Fd0C5626C06344C31506ae5D90c87/logo.png new file mode 100755 index 00000000..e130f13e Binary files /dev/null and b/blockchains/ethereum/assets/0xF4882b5d907Fd0C5626C06344C31506ae5D90c87/logo.png differ diff --git a/blockchains/ethereum/assets/0xF4B54874cD8a6C863e3A904c18fDa964661Ec363/info.json b/blockchains/ethereum/assets/0xF4B54874cD8a6C863e3A904c18fDa964661Ec363/info.json new file mode 100644 index 00000000..1e43bc75 --- /dev/null +++ b/blockchains/ethereum/assets/0xF4B54874cD8a6C863e3A904c18fDa964661Ec363/info.json @@ -0,0 +1,11 @@ +{ + "name": "DWS", + "symbol": "DWS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://dwswifi.com/", + "explorer": "https://etherscan.io/token/0xF4B54874cD8a6C863e3A904c18fDa964661Ec363", + "status": "abandoned", + "id": "0xF4B54874cD8a6C863e3A904c18fDa964661Ec363" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF4B54874cD8a6C863e3A904c18fDa964661Ec363/logo.png b/blockchains/ethereum/assets/0xF4B54874cD8a6C863e3A904c18fDa964661Ec363/logo.png new file mode 100755 index 00000000..2c2682ad Binary files /dev/null and b/blockchains/ethereum/assets/0xF4B54874cD8a6C863e3A904c18fDa964661Ec363/logo.png differ diff --git a/blockchains/ethereum/assets/0xF4FE95603881D0e07954fD7605E0e9a916e42C44/info.json b/blockchains/ethereum/assets/0xF4FE95603881D0e07954fD7605E0e9a916e42C44/info.json new file mode 100644 index 00000000..1694f834 --- /dev/null +++ b/blockchains/ethereum/assets/0xF4FE95603881D0e07954fD7605E0e9a916e42C44/info.json @@ -0,0 +1,11 @@ +{ + "name": "WHEN Token", + "symbol": "WHEN", + "type": "ERC20", + "decimals": 18, + "description": "WhenHub Interface aims to facilitate the transfer of knowledge between consumers and experts. Knowledge-sharing is done via video calls, with the financial details handled by smart contracts that use the WHEN Token.", + "website": "https://www.whenhub.com", + "explorer": "https://etherscan.io/token/0xF4FE95603881D0e07954fD7605E0e9a916e42C44", + "status": "active", + "id": "0xF4FE95603881D0e07954fD7605E0e9a916e42C44" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF4FE95603881D0e07954fD7605E0e9a916e42C44/logo.png b/blockchains/ethereum/assets/0xF4FE95603881D0e07954fD7605E0e9a916e42C44/logo.png new file mode 100644 index 00000000..6fd29783 Binary files /dev/null and b/blockchains/ethereum/assets/0xF4FE95603881D0e07954fD7605E0e9a916e42C44/logo.png differ diff --git a/blockchains/ethereum/assets/0xF4FaEa455575354d2699BC209B0a65CA99F69982/info.json b/blockchains/ethereum/assets/0xF4FaEa455575354d2699BC209B0a65CA99F69982/info.json new file mode 100644 index 00000000..018bded1 --- /dev/null +++ b/blockchains/ethereum/assets/0xF4FaEa455575354d2699BC209B0a65CA99F69982/info.json @@ -0,0 +1,11 @@ +{ + "name": "No BS Crypto", + "symbol": "NOBS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://nobscrypto.com/", + "explorer": "https://etherscan.io/token/0xF4FaEa455575354d2699BC209B0a65CA99F69982", + "status": "abandoned", + "id": "0xF4FaEa455575354d2699BC209B0a65CA99F69982" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF4FaEa455575354d2699BC209B0a65CA99F69982/logo.png b/blockchains/ethereum/assets/0xF4FaEa455575354d2699BC209B0a65CA99F69982/logo.png new file mode 100755 index 00000000..130fdf24 Binary files /dev/null and b/blockchains/ethereum/assets/0xF4FaEa455575354d2699BC209B0a65CA99F69982/logo.png differ diff --git a/blockchains/ethereum/assets/0xF4b0e82bB4CeAA34E1e5E2Da3ac6Babc57682348/info.json b/blockchains/ethereum/assets/0xF4b0e82bB4CeAA34E1e5E2Da3ac6Babc57682348/info.json new file mode 100644 index 00000000..4bd82ae2 --- /dev/null +++ b/blockchains/ethereum/assets/0xF4b0e82bB4CeAA34E1e5E2Da3ac6Babc57682348/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nordic Energy", + "symbol": "NET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF4b0e82bB4CeAA34E1e5E2Da3ac6Babc57682348", + "status": "abandoned", + "id": "0xF4b0e82bB4CeAA34E1e5E2Da3ac6Babc57682348" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF4b0e82bB4CeAA34E1e5E2Da3ac6Babc57682348/logo.png b/blockchains/ethereum/assets/0xF4b0e82bB4CeAA34E1e5E2Da3ac6Babc57682348/logo.png new file mode 100644 index 00000000..9c708a88 Binary files /dev/null and b/blockchains/ethereum/assets/0xF4b0e82bB4CeAA34E1e5E2Da3ac6Babc57682348/logo.png differ diff --git a/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json b/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json new file mode 100644 index 00000000..9a955a44 --- /dev/null +++ b/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json @@ -0,0 +1,25 @@ +{ + "name": "BlockBank", + "website": "https://blockbank.ai", + "description": "BlockBank is powered by our platform's utility token called BBANK. Users are able to gain access to our credit card rewards program, use our robo advisor, cefi and defi wallet, increase their APY % and earn interest on their tokens by staking BBANK in their BlockBank cryptocurrency wallet.", + "explorer": "https://etherscan.io/token/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267", + "type": "ERC20", + "symbol": "BBANK", + "decimals": 18, + "status": "abandoned", + "id": "0xF4b5470523cCD314C6B9dA041076e7D79E0Df267", + "links": [ + { + "name": "github", + "url": "https://github.com/BlockBank-team/" + }, + { + "name": "x", + "url": "https://x.com/BLOCKBANKapp?s=09" + }, + { + "name": "reddit", + "url": "https://reddit.com/u/BlockBankAi?utm_medium=android_app&utm_source=share" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF4b6664bb81bD7314aE65eAB2eE675505e3E9cB6/info.json b/blockchains/ethereum/assets/0xF4b6664bb81bD7314aE65eAB2eE675505e3E9cB6/info.json new file mode 100644 index 00000000..02518739 --- /dev/null +++ b/blockchains/ethereum/assets/0xF4b6664bb81bD7314aE65eAB2eE675505e3E9cB6/info.json @@ -0,0 +1,11 @@ +{ + "name": "DINESHTECH", + "symbol": "DTH", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF4b6664bb81bD7314aE65eAB2eE675505e3E9cB6", + "status": "abandoned", + "id": "0xF4b6664bb81bD7314aE65eAB2eE675505e3E9cB6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF4b6664bb81bD7314aE65eAB2eE675505e3E9cB6/logo.png b/blockchains/ethereum/assets/0xF4b6664bb81bD7314aE65eAB2eE675505e3E9cB6/logo.png new file mode 100644 index 00000000..eab41ccb Binary files /dev/null and b/blockchains/ethereum/assets/0xF4b6664bb81bD7314aE65eAB2eE675505e3E9cB6/logo.png differ diff --git a/blockchains/ethereum/assets/0xF4c07b1865bC326A3c01339492Ca7538FD038Cc0/info.json b/blockchains/ethereum/assets/0xF4c07b1865bC326A3c01339492Ca7538FD038Cc0/info.json new file mode 100644 index 00000000..3562a2a3 --- /dev/null +++ b/blockchains/ethereum/assets/0xF4c07b1865bC326A3c01339492Ca7538FD038Cc0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Primalbase Token", + "symbol": "PBT", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF4c07b1865bC326A3c01339492Ca7538FD038Cc0", + "status": "abandoned", + "id": "0xF4c07b1865bC326A3c01339492Ca7538FD038Cc0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF4c07b1865bC326A3c01339492Ca7538FD038Cc0/logo.png b/blockchains/ethereum/assets/0xF4c07b1865bC326A3c01339492Ca7538FD038Cc0/logo.png new file mode 100644 index 00000000..665b5804 Binary files /dev/null and b/blockchains/ethereum/assets/0xF4c07b1865bC326A3c01339492Ca7538FD038Cc0/logo.png differ diff --git a/blockchains/ethereum/assets/0xF4c17Bc4979c1dc7b4CA50115358Dec58C67fD9d/info.json b/blockchains/ethereum/assets/0xF4c17Bc4979c1dc7b4CA50115358Dec58C67fD9d/info.json new file mode 100644 index 00000000..e0834cdd --- /dev/null +++ b/blockchains/ethereum/assets/0xF4c17Bc4979c1dc7b4CA50115358Dec58C67fD9d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Omega Protocol Money", + "website": "https://omgswap.in/", + "description": "OPM is Omega Protocol utility ERC20 Token", + "explorer": "https://etherscan.io/token/0xF4c17Bc4979c1dc7b4CA50115358Dec58C67fD9d", + "type": "ERC20", + "symbol": "OPM", + "decimals": 18, + "status": "active", + "id": "0xF4c17Bc4979c1dc7b4CA50115358Dec58C67fD9d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF4c17Bc4979c1dc7b4CA50115358Dec58C67fD9d/logo.png b/blockchains/ethereum/assets/0xF4c17Bc4979c1dc7b4CA50115358Dec58C67fD9d/logo.png new file mode 100644 index 00000000..2363e5a8 Binary files /dev/null and b/blockchains/ethereum/assets/0xF4c17Bc4979c1dc7b4CA50115358Dec58C67fD9d/logo.png differ diff --git a/blockchains/ethereum/assets/0xF4d861575ecC9493420A3f5a14F85B13f0b50EB3/info.json b/blockchains/ethereum/assets/0xF4d861575ecC9493420A3f5a14F85B13f0b50EB3/info.json new file mode 100644 index 00000000..d9b36636 --- /dev/null +++ b/blockchains/ethereum/assets/0xF4d861575ecC9493420A3f5a14F85B13f0b50EB3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fractal", + "type": "ERC20", + "symbol": "FCL", + "decimals": 18, + "description": "Fractal enables a free and open Web that respects user privacy, rewards content creators, and protects advertisers from fraud.", + "website": "https://protocol.fractal.id/", + "explorer": "https://etherscan.io/token/0xf4d861575ecc9493420a3f5a14f85b13f0b50eb3", + "id": "0xF4d861575ecC9493420A3f5a14F85B13f0b50EB3", + "status": "active" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF4d861575ecC9493420A3f5a14F85B13f0b50EB3/logo.png b/blockchains/ethereum/assets/0xF4d861575ecC9493420A3f5a14F85B13f0b50EB3/logo.png new file mode 100644 index 00000000..ca7dc453 Binary files /dev/null and b/blockchains/ethereum/assets/0xF4d861575ecC9493420A3f5a14F85B13f0b50EB3/logo.png differ diff --git a/blockchains/ethereum/assets/0xF4edA77f0B455A12f3eb44F8653835f377e36b76/info.json b/blockchains/ethereum/assets/0xF4edA77f0B455A12f3eb44F8653835f377e36b76/info.json new file mode 100644 index 00000000..a6bb8364 --- /dev/null +++ b/blockchains/ethereum/assets/0xF4edA77f0B455A12f3eb44F8653835f377e36b76/info.json @@ -0,0 +1,11 @@ +{ + "name": "TIKTOK COIN", + "symbol": "TIKTOK", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://tiktok.selfdrop.eu/", + "explorer": "https://etherscan.io/token/0xF4edA77f0B455A12f3eb44F8653835f377e36b76", + "status": "spam", + "id": "0xF4edA77f0B455A12f3eb44F8653835f377e36b76" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF4edA77f0B455A12f3eb44F8653835f377e36b76/logo.png b/blockchains/ethereum/assets/0xF4edA77f0B455A12f3eb44F8653835f377e36b76/logo.png new file mode 100644 index 00000000..17c9491c Binary files /dev/null and b/blockchains/ethereum/assets/0xF4edA77f0B455A12f3eb44F8653835f377e36b76/logo.png differ diff --git a/blockchains/ethereum/assets/0xF5238462E7235c7B62811567E63Dd17d12C2EAA0/info.json b/blockchains/ethereum/assets/0xF5238462E7235c7B62811567E63Dd17d12C2EAA0/info.json new file mode 100644 index 00000000..d232b67e --- /dev/null +++ b/blockchains/ethereum/assets/0xF5238462E7235c7B62811567E63Dd17d12C2EAA0/info.json @@ -0,0 +1,17 @@ +{ + "name": "CACHE Gold", + "website": "https://cache.gold", + "description": "CACHE Gold tokens are fully regulated, public, transparent, redeemable tokens backed by gold stored in vaults around the world.", + "explorer": "https://etherscan.io/token/0xF5238462E7235c7B62811567E63Dd17d12C2EAA0", + "type": "ERC20", + "symbol": "CGT", + "decimals": 8, + "status": "active", + "id": "0xF5238462E7235c7B62811567E63Dd17d12C2EAA0", + "links": [ + { + "name": "github", + "url": "https://github.com/cache-token/cache-contract" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF5238462E7235c7B62811567E63Dd17d12C2EAA0/logo.png b/blockchains/ethereum/assets/0xF5238462E7235c7B62811567E63Dd17d12C2EAA0/logo.png new file mode 100644 index 00000000..bc1be00c Binary files /dev/null and b/blockchains/ethereum/assets/0xF5238462E7235c7B62811567E63Dd17d12C2EAA0/logo.png differ diff --git a/blockchains/ethereum/assets/0xF524F62058e5bb80AEcec2E8795fBAdbFcd8Dac0/info.json b/blockchains/ethereum/assets/0xF524F62058e5bb80AEcec2E8795fBAdbFcd8Dac0/info.json new file mode 100644 index 00000000..dd223893 --- /dev/null +++ b/blockchains/ethereum/assets/0xF524F62058e5bb80AEcec2E8795fBAdbFcd8Dac0/info.json @@ -0,0 +1,11 @@ +{ + "name": "GIGANTIC", + "symbol": "GIGA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF524F62058e5bb80AEcec2E8795fBAdbFcd8Dac0", + "status": "abandoned", + "id": "0xF524F62058e5bb80AEcec2E8795fBAdbFcd8Dac0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF524F62058e5bb80AEcec2E8795fBAdbFcd8Dac0/logo.png b/blockchains/ethereum/assets/0xF524F62058e5bb80AEcec2E8795fBAdbFcd8Dac0/logo.png new file mode 100644 index 00000000..424bc78a Binary files /dev/null and b/blockchains/ethereum/assets/0xF524F62058e5bb80AEcec2E8795fBAdbFcd8Dac0/logo.png differ diff --git a/blockchains/ethereum/assets/0xF52B2237418f59e4AE3184D8cD7780c9B2f11B36/info.json b/blockchains/ethereum/assets/0xF52B2237418f59e4AE3184D8cD7780c9B2f11B36/info.json new file mode 100644 index 00000000..1a81fd77 --- /dev/null +++ b/blockchains/ethereum/assets/0xF52B2237418f59e4AE3184D8cD7780c9B2f11B36/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitnetwork", + "symbol": "BNW", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF52B2237418f59e4AE3184D8cD7780c9B2f11B36", + "status": "abandoned", + "id": "0xF52B2237418f59e4AE3184D8cD7780c9B2f11B36" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF52B2237418f59e4AE3184D8cD7780c9B2f11B36/logo.png b/blockchains/ethereum/assets/0xF52B2237418f59e4AE3184D8cD7780c9B2f11B36/logo.png new file mode 100644 index 00000000..db2d7766 Binary files /dev/null and b/blockchains/ethereum/assets/0xF52B2237418f59e4AE3184D8cD7780c9B2f11B36/logo.png differ diff --git a/blockchains/ethereum/assets/0xF5581dFeFD8Fb0e4aeC526bE659CFaB1f8c781dA/info.json b/blockchains/ethereum/assets/0xF5581dFeFD8Fb0e4aeC526bE659CFaB1f8c781dA/info.json new file mode 100644 index 00000000..6a89b2c1 --- /dev/null +++ b/blockchains/ethereum/assets/0xF5581dFeFD8Fb0e4aeC526bE659CFaB1f8c781dA/info.json @@ -0,0 +1,17 @@ +{ + "name": "HOPR Token", + "type": "ERC20", + "symbol": "HOPR", + "decimals": 18, + "description": "HOPR provides essential and compliant network-level metadata privacy for everyone. HOPR is an open incentivized mixnet which enables privacy-preserving point-to-point data exchange.", + "website": "https://hoprnet.org/", + "explorer": "https://etherscan.io/token/0xf5581dfefd8fb0e4aec526be659cfab1f8c781da", + "id": "0xF5581dFeFD8Fb0e4aeC526bE659CFaB1f8c781dA", + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/hoprnet/hoprnet" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF5581dFeFD8Fb0e4aeC526bE659CFaB1f8c781dA/logo.png b/blockchains/ethereum/assets/0xF5581dFeFD8Fb0e4aeC526bE659CFaB1f8c781dA/logo.png new file mode 100644 index 00000000..5bec90a0 Binary files /dev/null and b/blockchains/ethereum/assets/0xF5581dFeFD8Fb0e4aeC526bE659CFaB1f8c781dA/logo.png differ diff --git a/blockchains/ethereum/assets/0xF56bd63Ac2D14c397A754E0bdFcE020baa44f214/info.json b/blockchains/ethereum/assets/0xF56bd63Ac2D14c397A754E0bdFcE020baa44f214/info.json new file mode 100644 index 00000000..5cef37d3 --- /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/0xF5717f5DF41eA67Ef67DFD3c1d02F9940bcF5d08/info.json b/blockchains/ethereum/assets/0xF5717f5DF41eA67Ef67DFD3c1d02F9940bcF5d08/info.json new file mode 100644 index 00000000..7974fedd --- /dev/null +++ b/blockchains/ethereum/assets/0xF5717f5DF41eA67Ef67DFD3c1d02F9940bcF5d08/info.json @@ -0,0 +1,11 @@ +{ + "name": "SeChain", + "symbol": "SNN", + "type": "ERC20", + "decimals": 3, + "description": "SeChain project is building the future of decentralized services where the service provider & the customers can get the work done in decentralized environment far from centralized companies.", + "website": "https://snn.cash/", + "explorer": "https://etherscan.io/token/0xF5717f5DF41eA67Ef67DFD3c1d02F9940bcF5d08", + "status": "active", + "id": "0xF5717f5DF41eA67Ef67DFD3c1d02F9940bcF5d08" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF5717f5DF41eA67Ef67DFD3c1d02F9940bcF5d08/logo.png b/blockchains/ethereum/assets/0xF5717f5DF41eA67Ef67DFD3c1d02F9940bcF5d08/logo.png new file mode 100644 index 00000000..a1fa1479 Binary files /dev/null and b/blockchains/ethereum/assets/0xF5717f5DF41eA67Ef67DFD3c1d02F9940bcF5d08/logo.png differ diff --git a/blockchains/ethereum/assets/0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF/info.json b/blockchains/ethereum/assets/0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF/info.json new file mode 100644 index 00000000..36610dcd --- /dev/null +++ b/blockchains/ethereum/assets/0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF/info.json @@ -0,0 +1,28 @@ +{ + "name": "Immutable X", + "type": "ERC20", + "symbol": "IMX", + "decimals": 18, + "website": "https://www.immutable.com/", + "description": "Immutable X is the first layer-2 scaling solution for NFTs on Ethereum, with instant trade confirmation, massive scalability (up to 9,000+ trades per second) and zero gas fees.", + "explorer": "https://etherscan.io/token/0xf57e7e7c23978c3caec3c3548e3d615c346e79ff", + "status": "active", + "id": "0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF", + "links": [ + { + "name": "x", + "url": "https://x.com/Immutable" + }, + { + "name": "telegram", + "url": "https://t.me/immutablex" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/immutable-x/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF/logo.png b/blockchains/ethereum/assets/0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF/logo.png new file mode 100644 index 00000000..1b49f3d9 Binary files /dev/null and b/blockchains/ethereum/assets/0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF/logo.png differ diff --git a/blockchains/ethereum/assets/0xF59ae934f6fe444afC309586cC60a84a0F89Aaea/info.json b/blockchains/ethereum/assets/0xF59ae934f6fe444afC309586cC60a84a0F89Aaea/info.json new file mode 100644 index 00000000..518688ec --- /dev/null +++ b/blockchains/ethereum/assets/0xF59ae934f6fe444afC309586cC60a84a0F89Aaea/info.json @@ -0,0 +1,12 @@ +{ + "name": "Polkadex ERC-20 Token", + "website": "https://polkadex.trade", + "description": "Utility token for Polkadex decentralized exchange", + "explorer": "https://etherscan.io/token/0xF59ae934f6fe444afC309586cC60a84a0F89Aaea", + "research": "https://docs.polkadex.trade", + "type": "ERC20", + "symbol": "PDEX", + "decimals": 18, + "status": "active", + "id": "0xF59ae934f6fe444afC309586cC60a84a0F89Aaea" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF59ae934f6fe444afC309586cC60a84a0F89Aaea/logo.png b/blockchains/ethereum/assets/0xF59ae934f6fe444afC309586cC60a84a0F89Aaea/logo.png new file mode 100644 index 00000000..403e942d Binary files /dev/null and b/blockchains/ethereum/assets/0xF59ae934f6fe444afC309586cC60a84a0F89Aaea/logo.png differ diff --git a/blockchains/ethereum/assets/0xF5BA8A8c87f976b79b17ccd25EE8DC2f8e82FB59/info.json b/blockchains/ethereum/assets/0xF5BA8A8c87f976b79b17ccd25EE8DC2f8e82FB59/info.json new file mode 100644 index 00000000..dcf6a07a --- /dev/null +++ b/blockchains/ethereum/assets/0xF5BA8A8c87f976b79b17ccd25EE8DC2f8e82FB59/info.json @@ -0,0 +1,11 @@ +{ + "name": "EtherStone", + "symbol": "ETHS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF5BA8A8c87f976b79b17ccd25EE8DC2f8e82FB59", + "status": "abandoned", + "id": "0xF5BA8A8c87f976b79b17ccd25EE8DC2f8e82FB59" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF5BA8A8c87f976b79b17ccd25EE8DC2f8e82FB59/logo.png b/blockchains/ethereum/assets/0xF5BA8A8c87f976b79b17ccd25EE8DC2f8e82FB59/logo.png new file mode 100644 index 00000000..ba6b0e18 Binary files /dev/null and b/blockchains/ethereum/assets/0xF5BA8A8c87f976b79b17ccd25EE8DC2f8e82FB59/logo.png differ diff --git a/blockchains/ethereum/assets/0xF5BDb0Aa9F0C05ec3fC8A31D7053652401982b4d/info.json b/blockchains/ethereum/assets/0xF5BDb0Aa9F0C05ec3fC8A31D7053652401982b4d/info.json new file mode 100644 index 00000000..5b964666 --- /dev/null +++ b/blockchains/ethereum/assets/0xF5BDb0Aa9F0C05ec3fC8A31D7053652401982b4d/info.json @@ -0,0 +1,11 @@ +{ + "name": "LoveArtHate", + "symbol": "LAH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF5BDb0Aa9F0C05ec3fC8A31D7053652401982b4d", + "status": "abandoned", + "id": "0xF5BDb0Aa9F0C05ec3fC8A31D7053652401982b4d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF5BDb0Aa9F0C05ec3fC8A31D7053652401982b4d/logo.png b/blockchains/ethereum/assets/0xF5BDb0Aa9F0C05ec3fC8A31D7053652401982b4d/logo.png new file mode 100644 index 00000000..2a531de8 Binary files /dev/null and b/blockchains/ethereum/assets/0xF5BDb0Aa9F0C05ec3fC8A31D7053652401982b4d/logo.png differ diff --git a/blockchains/ethereum/assets/0xF5Bb691215fd2839Bc14Aa93335e13d839A4767f/info.json b/blockchains/ethereum/assets/0xF5Bb691215fd2839Bc14Aa93335e13d839A4767f/info.json new file mode 100644 index 00000000..8bee5c05 --- /dev/null +++ b/blockchains/ethereum/assets/0xF5Bb691215fd2839Bc14Aa93335e13d839A4767f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcollar Max", + "symbol": "BORX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF5Bb691215fd2839Bc14Aa93335e13d839A4767f", + "status": "abandoned", + "id": "0xF5Bb691215fd2839Bc14Aa93335e13d839A4767f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF5Bb691215fd2839Bc14Aa93335e13d839A4767f/logo.png b/blockchains/ethereum/assets/0xF5Bb691215fd2839Bc14Aa93335e13d839A4767f/logo.png new file mode 100644 index 00000000..3ffe930e Binary files /dev/null and b/blockchains/ethereum/assets/0xF5Bb691215fd2839Bc14Aa93335e13d839A4767f/logo.png differ diff --git a/blockchains/ethereum/assets/0xF5C00Ff3e26F903a8eea3532a7175Af7b82Accf8/info.json b/blockchains/ethereum/assets/0xF5C00Ff3e26F903a8eea3532a7175Af7b82Accf8/info.json new file mode 100644 index 00000000..c76ddc9d --- /dev/null +++ b/blockchains/ethereum/assets/0xF5C00Ff3e26F903a8eea3532a7175Af7b82Accf8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bit-Bet", + "symbol": "BBT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF5C00Ff3e26F903a8eea3532a7175Af7b82Accf8", + "status": "abandoned", + "id": "0xF5C00Ff3e26F903a8eea3532a7175Af7b82Accf8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF5C00Ff3e26F903a8eea3532a7175Af7b82Accf8/logo.png b/blockchains/ethereum/assets/0xF5C00Ff3e26F903a8eea3532a7175Af7b82Accf8/logo.png new file mode 100644 index 00000000..ed10d44e Binary files /dev/null and b/blockchains/ethereum/assets/0xF5C00Ff3e26F903a8eea3532a7175Af7b82Accf8/logo.png differ diff --git a/blockchains/ethereum/assets/0xF5CB11bAD09093E71E91a38c06Fe78e4c4042058/info.json b/blockchains/ethereum/assets/0xF5CB11bAD09093E71E91a38c06Fe78e4c4042058/info.json new file mode 100644 index 00000000..c4174f17 --- /dev/null +++ b/blockchains/ethereum/assets/0xF5CB11bAD09093E71E91a38c06Fe78e4c4042058/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lending Platform", + "symbol": "LPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF5CB11bAD09093E71E91a38c06Fe78e4c4042058", + "status": "abandoned", + "id": "0xF5CB11bAD09093E71E91a38c06Fe78e4c4042058" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF5CB11bAD09093E71E91a38c06Fe78e4c4042058/logo.png b/blockchains/ethereum/assets/0xF5CB11bAD09093E71E91a38c06Fe78e4c4042058/logo.png new file mode 100644 index 00000000..7f9914ed Binary files /dev/null and b/blockchains/ethereum/assets/0xF5CB11bAD09093E71E91a38c06Fe78e4c4042058/logo.png differ diff --git a/blockchains/ethereum/assets/0xF5D0FefAaB749d8B14C27F0De60cC6e9e7f848d1/info.json b/blockchains/ethereum/assets/0xF5D0FefAaB749d8B14C27F0De60cC6e9e7f848d1/info.json new file mode 100644 index 00000000..9545db4a --- /dev/null +++ b/blockchains/ethereum/assets/0xF5D0FefAaB749d8B14C27F0De60cC6e9e7f848d1/info.json @@ -0,0 +1,29 @@ +{ + "name": "YFARM", + "website": "https://yffs.finance/", + "description": "YFFS adopts a modular design. Modularity refers to the combination of various elements of the product to form a subsystem with specific functions. We combine these subsystem as a universal module with other modules to create a new system with multiple functions and performance.", + "explorer": "https://etherscan.io/token/0xF5D0FefAaB749d8B14C27F0De60cC6e9e7f848d1", + "type": "ERC20", + "symbol": "YFARM", + "decimals": 18, + "status": "active", + "id": "0xF5D0FefAaB749d8B14C27F0De60cC6e9e7f848d1", + "links": [ + { + "name": "github", + "url": "https://github.com/yffsfinance" + }, + { + "name": "x", + "url": "https://x.com/yffsfinance" + }, + { + "name": "telegram", + "url": "https://t.me/yffsfinance" + }, + { + "name": "medium", + "url": "https://medium.com/@yffs.finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF5D0FefAaB749d8B14C27F0De60cC6e9e7f848d1/logo.png b/blockchains/ethereum/assets/0xF5D0FefAaB749d8B14C27F0De60cC6e9e7f848d1/logo.png new file mode 100644 index 00000000..55036eff Binary files /dev/null and b/blockchains/ethereum/assets/0xF5D0FefAaB749d8B14C27F0De60cC6e9e7f848d1/logo.png differ diff --git a/blockchains/ethereum/assets/0xF5D669627376EBd411E34b98F19C868c8ABA5ADA/info.json b/blockchains/ethereum/assets/0xF5D669627376EBd411E34b98F19C868c8ABA5ADA/info.json new file mode 100644 index 00000000..74ebb5f7 --- /dev/null +++ b/blockchains/ethereum/assets/0xF5D669627376EBd411E34b98F19C868c8ABA5ADA/info.json @@ -0,0 +1,12 @@ +{ + "name": "Axie Infinity", + "website": "https://axieinfinity.com", + "description": "Axie Infinity Shards are Axie Infinity's governance token.", + "explorer": "https://etherscan.io/token/0xf5d669627376ebd411e34b98f19c868c8aba5ada", + "research": "https://research.binance.com/en/projects/axie-infinity", + "type": "ERC20", + "symbol": "AXS", + "decimals": 18, + "status": "abandoned", + "id": "0xF5D669627376EBd411E34b98F19C868c8ABA5ADA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF5D669627376EBd411E34b98F19C868c8ABA5ADA/logo.png b/blockchains/ethereum/assets/0xF5D669627376EBd411E34b98F19C868c8ABA5ADA/logo.png new file mode 100644 index 00000000..73d60607 Binary files /dev/null and b/blockchains/ethereum/assets/0xF5D669627376EBd411E34b98F19C868c8ABA5ADA/logo.png differ diff --git a/blockchains/ethereum/assets/0xF5DCe57282A584D2746FaF1593d3121Fcac444dC/info.json b/blockchains/ethereum/assets/0xF5DCe57282A584D2746FaF1593d3121Fcac444dC/info.json new file mode 100644 index 00000000..09e6764d --- /dev/null +++ b/blockchains/ethereum/assets/0xF5DCe57282A584D2746FaF1593d3121Fcac444dC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Compound Dai", + "symbol": "cDAI", + "type": "ERC20", + "decimals": 8, + "description": "Compound is an algorithmic, autonomous interest rate protocol built for developers, to unlock a universe of open financial applications.", + "website": "https://compound.finance/", + "explorer": "https://etherscan.io/token/0xF5DCe57282A584D2746FaF1593d3121Fcac444dC", + "status": "active", + "id": "0xF5DCe57282A584D2746FaF1593d3121Fcac444dC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF5DCe57282A584D2746FaF1593d3121Fcac444dC/logo.png b/blockchains/ethereum/assets/0xF5DCe57282A584D2746FaF1593d3121Fcac444dC/logo.png new file mode 100644 index 00000000..e050864c Binary files /dev/null and b/blockchains/ethereum/assets/0xF5DCe57282A584D2746FaF1593d3121Fcac444dC/logo.png differ diff --git a/blockchains/ethereum/assets/0xF6276830c265A779A2225B9d2FCbAb790CBEb92B/info.json b/blockchains/ethereum/assets/0xF6276830c265A779A2225B9d2FCbAb790CBEb92B/info.json new file mode 100644 index 00000000..2489dcb8 --- /dev/null +++ b/blockchains/ethereum/assets/0xF6276830c265A779A2225B9d2FCbAb790CBEb92B/info.json @@ -0,0 +1,11 @@ +{ + "name": "XCELTOKEN", + "symbol": "XCEL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF6276830c265A779A2225B9d2FCbAb790CBEb92B", + "status": "abandoned", + "id": "0xF6276830c265A779A2225B9d2FCbAb790CBEb92B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF6276830c265A779A2225B9d2FCbAb790CBEb92B/logo.png b/blockchains/ethereum/assets/0xF6276830c265A779A2225B9d2FCbAb790CBEb92B/logo.png new file mode 100755 index 00000000..1dcde658 Binary files /dev/null and b/blockchains/ethereum/assets/0xF6276830c265A779A2225B9d2FCbAb790CBEb92B/logo.png differ diff --git a/blockchains/ethereum/assets/0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c/info.json b/blockchains/ethereum/assets/0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c/info.json new file mode 100644 index 00000000..30b29112 --- /dev/null +++ b/blockchains/ethereum/assets/0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c/info.json @@ -0,0 +1,49 @@ +{ + "name": "Enjin Coin", + "website": "https://enjin.io", + "description": "The Enjin ecosystem (comprising the Enjin Platform, Explorer, Wallet, Beam) aims to empower gamers with ownership of digital assets and enables game industry businesses to increase revenue.", + "explorer": "https://etherscan.io/token/0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c", + "type": "ERC20", + "symbol": "ENJ", + "decimals": 18, + "status": "active", + "id": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c", + "tags": [ + "gamefi", + "nft" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/enjin/contracts" + }, + { + "name": "x", + "url": "https://x.com/enjincs" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EnjinCoin/" + }, + { + "name": "facebook", + "url": "https://facebook.com/enjinsocial" + }, + { + "name": "blog", + "url": "https://medium.com/@enjin" + }, + { + "name": "telegram", + "url": "https://t.me/enjin_coin" + }, + { + "name": "whitepaper", + "url": "https://enjincoin.io/enjincoin_whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/enjincoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c/logo.png b/blockchains/ethereum/assets/0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c/logo.png new file mode 100755 index 00000000..417f4071 Binary files /dev/null and b/blockchains/ethereum/assets/0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c/logo.png differ diff --git a/blockchains/ethereum/assets/0xF63E309818E4EA13782678CE6C31C1234fa61809/info.json b/blockchains/ethereum/assets/0xF63E309818E4EA13782678CE6C31C1234fa61809/info.json new file mode 100644 index 00000000..eab31bc5 --- /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 00000000..a954175a Binary files /dev/null and b/blockchains/ethereum/assets/0xF63E309818E4EA13782678CE6C31C1234fa61809/logo.png differ diff --git a/blockchains/ethereum/assets/0xF647902282cd054a74d036d986EFD8bB4ac36C9C/info.json b/blockchains/ethereum/assets/0xF647902282cd054a74d036d986EFD8bB4ac36C9C/info.json new file mode 100644 index 00000000..09c8ace3 --- /dev/null +++ b/blockchains/ethereum/assets/0xF647902282cd054a74d036d986EFD8bB4ac36C9C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bit-IDR", + "symbol": "BIIDR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF647902282cd054a74d036d986EFD8bB4ac36C9C", + "status": "abandoned", + "id": "0xF647902282cd054a74d036d986EFD8bB4ac36C9C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF647902282cd054a74d036d986EFD8bB4ac36C9C/logo.png b/blockchains/ethereum/assets/0xF647902282cd054a74d036d986EFD8bB4ac36C9C/logo.png new file mode 100644 index 00000000..2ce5a12c Binary files /dev/null and b/blockchains/ethereum/assets/0xF647902282cd054a74d036d986EFD8bB4ac36C9C/logo.png differ diff --git a/blockchains/ethereum/assets/0xF6505474A590A4c4D9e532aC8FC32B1FfEA481fa/info.json b/blockchains/ethereum/assets/0xF6505474A590A4c4D9e532aC8FC32B1FfEA481fa/info.json new file mode 100644 index 00000000..1f6b0914 --- /dev/null +++ b/blockchains/ethereum/assets/0xF6505474A590A4c4D9e532aC8FC32B1FfEA481fa/info.json @@ -0,0 +1,11 @@ +{ + "name": "LEU", + "symbol": "LEU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF6505474A590A4c4D9e532aC8FC32B1FfEA481fa", + "status": "abandoned", + "id": "0xF6505474A590A4c4D9e532aC8FC32B1FfEA481fa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF6505474A590A4c4D9e532aC8FC32B1FfEA481fa/logo.png b/blockchains/ethereum/assets/0xF6505474A590A4c4D9e532aC8FC32B1FfEA481fa/logo.png new file mode 100644 index 00000000..04144b4f Binary files /dev/null and b/blockchains/ethereum/assets/0xF6505474A590A4c4D9e532aC8FC32B1FfEA481fa/logo.png differ diff --git a/blockchains/ethereum/assets/0xF660cA1e228e7BE1fA8B4f5583145E31147FB577/info.json b/blockchains/ethereum/assets/0xF660cA1e228e7BE1fA8B4f5583145E31147FB577/info.json new file mode 100644 index 00000000..4582232c --- /dev/null +++ b/blockchains/ethereum/assets/0xF660cA1e228e7BE1fA8B4f5583145E31147FB577/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dicet", + "symbol": "CET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF660cA1e228e7BE1fA8B4f5583145E31147FB577", + "status": "abandoned", + "id": "0xF660cA1e228e7BE1fA8B4f5583145E31147FB577" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF660cA1e228e7BE1fA8B4f5583145E31147FB577/logo.png b/blockchains/ethereum/assets/0xF660cA1e228e7BE1fA8B4f5583145E31147FB577/logo.png new file mode 100644 index 00000000..237ce9ad Binary files /dev/null and b/blockchains/ethereum/assets/0xF660cA1e228e7BE1fA8B4f5583145E31147FB577/logo.png differ diff --git a/blockchains/ethereum/assets/0xF67451Dc8421F0e0afEB52faa8101034ed081Ed9/info.json b/blockchains/ethereum/assets/0xF67451Dc8421F0e0afEB52faa8101034ed081Ed9/info.json new file mode 100644 index 00000000..64482560 --- /dev/null +++ b/blockchains/ethereum/assets/0xF67451Dc8421F0e0afEB52faa8101034ed081Ed9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gambit", + "symbol": "GAM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF67451Dc8421F0e0afEB52faa8101034ed081Ed9", + "status": "abandoned", + "id": "0xF67451Dc8421F0e0afEB52faa8101034ed081Ed9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF67451Dc8421F0e0afEB52faa8101034ed081Ed9/logo.png b/blockchains/ethereum/assets/0xF67451Dc8421F0e0afEB52faa8101034ed081Ed9/logo.png new file mode 100755 index 00000000..6e58b2dd Binary files /dev/null and b/blockchains/ethereum/assets/0xF67451Dc8421F0e0afEB52faa8101034ed081Ed9/logo.png differ diff --git a/blockchains/ethereum/assets/0xF69709C4c6F3F2b17978280dCe8b7b7a2CbcbA8b/info.json b/blockchains/ethereum/assets/0xF69709C4c6F3F2b17978280dCe8b7b7a2CbcbA8b/info.json new file mode 100644 index 00000000..f11e7c43 --- /dev/null +++ b/blockchains/ethereum/assets/0xF69709C4c6F3F2b17978280dCe8b7b7a2CbcbA8b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Atidium", + "symbol": "ATD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.atidium.io/", + "explorer": "https://etherscan.io/token/0xF69709C4c6F3F2b17978280dCe8b7b7a2CbcbA8b", + "status": "abandoned", + "id": "0xF69709C4c6F3F2b17978280dCe8b7b7a2CbcbA8b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF69709C4c6F3F2b17978280dCe8b7b7a2CbcbA8b/logo.png b/blockchains/ethereum/assets/0xF69709C4c6F3F2b17978280dCe8b7b7a2CbcbA8b/logo.png new file mode 100644 index 00000000..ba5c0ed4 Binary files /dev/null and b/blockchains/ethereum/assets/0xF69709C4c6F3F2b17978280dCe8b7b7a2CbcbA8b/logo.png differ diff --git a/blockchains/ethereum/assets/0xF6B55acBBC49f4524Aa48D19281A9A77c54DE10f/info.json b/blockchains/ethereum/assets/0xF6B55acBBC49f4524Aa48D19281A9A77c54DE10f/info.json new file mode 100644 index 00000000..b025d9a7 --- /dev/null +++ b/blockchains/ethereum/assets/0xF6B55acBBC49f4524Aa48D19281A9A77c54DE10f/info.json @@ -0,0 +1,11 @@ +{ + "name": "WOLK TOKEN", + "symbol": "WLK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF6B55acBBC49f4524Aa48D19281A9A77c54DE10f", + "status": "abandoned", + "id": "0xF6B55acBBC49f4524Aa48D19281A9A77c54DE10f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF6B55acBBC49f4524Aa48D19281A9A77c54DE10f/logo.png b/blockchains/ethereum/assets/0xF6B55acBBC49f4524Aa48D19281A9A77c54DE10f/logo.png new file mode 100644 index 00000000..232a1f13 Binary files /dev/null and b/blockchains/ethereum/assets/0xF6B55acBBC49f4524Aa48D19281A9A77c54DE10f/logo.png differ diff --git a/blockchains/ethereum/assets/0xF6Bf74a97d78f2242376769EF1E79885Cf1F0C1c/info.json b/blockchains/ethereum/assets/0xF6Bf74a97d78f2242376769EF1E79885Cf1F0C1c/info.json new file mode 100644 index 00000000..c6b9402b --- /dev/null +++ b/blockchains/ethereum/assets/0xF6Bf74a97d78f2242376769EF1E79885Cf1F0C1c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kaaso", + "symbol": "KAASO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://kaaso.com", + "explorer": "https://etherscan.io/token/0xF6Bf74a97d78f2242376769EF1E79885Cf1F0C1c", + "status": "abandoned", + "id": "0xF6Bf74a97d78f2242376769EF1E79885Cf1F0C1c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF6Bf74a97d78f2242376769EF1E79885Cf1F0C1c/logo.png b/blockchains/ethereum/assets/0xF6Bf74a97d78f2242376769EF1E79885Cf1F0C1c/logo.png new file mode 100644 index 00000000..33967a08 Binary files /dev/null and b/blockchains/ethereum/assets/0xF6Bf74a97d78f2242376769EF1E79885Cf1F0C1c/logo.png differ diff --git a/blockchains/ethereum/assets/0xF6Ce4BE313EaD51511215F1874c898239A331E37/info.json b/blockchains/ethereum/assets/0xF6Ce4BE313EaD51511215F1874c898239A331E37/info.json new file mode 100644 index 00000000..006ece2a --- /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 00000000..07935d0e 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 00000000..a9a17a0b --- /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 00000000..d55ca6ed Binary files /dev/null and b/blockchains/ethereum/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/logo.png differ diff --git a/blockchains/ethereum/assets/0xF6FE061efa2a8e15936696BaF5E8CBa8C3F3485B/info.json b/blockchains/ethereum/assets/0xF6FE061efa2a8e15936696BaF5E8CBa8C3F3485B/info.json new file mode 100644 index 00000000..8c0cebf4 --- /dev/null +++ b/blockchains/ethereum/assets/0xF6FE061efa2a8e15936696BaF5E8CBa8C3F3485B/info.json @@ -0,0 +1,11 @@ +{ + "name": "HackerGold", + "symbol": "HKG", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF6FE061efa2a8e15936696BaF5E8CBa8C3F3485B", + "status": "abandoned", + "id": "0xF6FE061efa2a8e15936696BaF5E8CBa8C3F3485B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF6FE061efa2a8e15936696BaF5E8CBa8C3F3485B/logo.png b/blockchains/ethereum/assets/0xF6FE061efa2a8e15936696BaF5E8CBa8C3F3485B/logo.png new file mode 100644 index 00000000..11744c0c Binary files /dev/null and b/blockchains/ethereum/assets/0xF6FE061efa2a8e15936696BaF5E8CBa8C3F3485B/logo.png differ diff --git a/blockchains/ethereum/assets/0xF6bF9847c6c7e055A341fE518d25bABDD66F9c0c/info.json b/blockchains/ethereum/assets/0xF6bF9847c6c7e055A341fE518d25bABDD66F9c0c/info.json new file mode 100644 index 00000000..8412c414 --- /dev/null +++ b/blockchains/ethereum/assets/0xF6bF9847c6c7e055A341fE518d25bABDD66F9c0c/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 188-CN13", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF6bF9847c6c7e055A341fE518d25bABDD66F9c0c", + "status": "abandoned", + "id": "0xF6bF9847c6c7e055A341fE518d25bABDD66F9c0c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF6bF9847c6c7e055A341fE518d25bABDD66F9c0c/logo.png b/blockchains/ethereum/assets/0xF6bF9847c6c7e055A341fE518d25bABDD66F9c0c/logo.png new file mode 100644 index 00000000..35724daa Binary files /dev/null and b/blockchains/ethereum/assets/0xF6bF9847c6c7e055A341fE518d25bABDD66F9c0c/logo.png differ diff --git a/blockchains/ethereum/assets/0xF6c151Ea50A4F1a50983eB98998A18be0a549aD5/info.json b/blockchains/ethereum/assets/0xF6c151Ea50A4F1a50983eB98998A18be0a549aD5/info.json new file mode 100644 index 00000000..f1b012d9 --- /dev/null +++ b/blockchains/ethereum/assets/0xF6c151Ea50A4F1a50983eB98998A18be0a549aD5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yearn2.Finance", + "website": "https://yearn2.finance/", + "description": "$YFI2 is a community-centered DeFi-project, modeled to take the successful features of $YFI and $ZZZ. Value comes from simplization.", + "explorer": "https://etherscan.io/token/0xF6c151Ea50A4F1a50983eB98998A18be0a549aD5", + "type": "ERC20", + "symbol": "YFI2", + "decimals": 18, + "status": "active", + "id": "0xF6c151Ea50A4F1a50983eB98998A18be0a549aD5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF6c151Ea50A4F1a50983eB98998A18be0a549aD5/logo.png b/blockchains/ethereum/assets/0xF6c151Ea50A4F1a50983eB98998A18be0a549aD5/logo.png new file mode 100644 index 00000000..e02bfa15 Binary files /dev/null and b/blockchains/ethereum/assets/0xF6c151Ea50A4F1a50983eB98998A18be0a549aD5/logo.png differ diff --git a/blockchains/ethereum/assets/0xF6dBE88bA55f1793Ff0773c9B1275300f830914F/info.json b/blockchains/ethereum/assets/0xF6dBE88bA55f1793Ff0773c9B1275300f830914F/info.json new file mode 100644 index 00000000..1581b09a --- /dev/null +++ b/blockchains/ethereum/assets/0xF6dBE88bA55f1793Ff0773c9B1275300f830914F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Asian Dragon", + "symbol": "AD", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.asiandragoncoin.com", + "explorer": "https://etherscan.io/token/0xF6dBE88bA55f1793Ff0773c9B1275300f830914F", + "status": "abandoned", + "id": "0xF6dBE88bA55f1793Ff0773c9B1275300f830914F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF6dBE88bA55f1793Ff0773c9B1275300f830914F/logo.png b/blockchains/ethereum/assets/0xF6dBE88bA55f1793Ff0773c9B1275300f830914F/logo.png new file mode 100644 index 00000000..8f371a50 Binary files /dev/null and b/blockchains/ethereum/assets/0xF6dBE88bA55f1793Ff0773c9B1275300f830914F/logo.png differ diff --git a/blockchains/ethereum/assets/0xF6e35f25f9810807343B1e585fFd6Bfda7c7d455/info.json b/blockchains/ethereum/assets/0xF6e35f25f9810807343B1e585fFd6Bfda7c7d455/info.json new file mode 100644 index 00000000..85bd2c45 --- /dev/null +++ b/blockchains/ethereum/assets/0xF6e35f25f9810807343B1e585fFd6Bfda7c7d455/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C523494", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF6e35f25f9810807343B1e585fFd6Bfda7c7d455", + "status": "abandoned", + "id": "0xF6e35f25f9810807343B1e585fFd6Bfda7c7d455" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF6e35f25f9810807343B1e585fFd6Bfda7c7d455/logo.png b/blockchains/ethereum/assets/0xF6e35f25f9810807343B1e585fFd6Bfda7c7d455/logo.png new file mode 100644 index 00000000..03c7dae0 Binary files /dev/null and b/blockchains/ethereum/assets/0xF6e35f25f9810807343B1e585fFd6Bfda7c7d455/logo.png differ diff --git a/blockchains/ethereum/assets/0xF70a642bD387F94380fFb90451C2c81d4Eb82CBc/info.json b/blockchains/ethereum/assets/0xF70a642bD387F94380fFb90451C2c81d4Eb82CBc/info.json new file mode 100644 index 00000000..3081b3d3 --- /dev/null +++ b/blockchains/ethereum/assets/0xF70a642bD387F94380fFb90451C2c81d4Eb82CBc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Starbase", + "symbol": "STAR", + "type": "ERC20", + "decimals": 18, + "description": "Starbase’s mission is to make it easy for everyone to start or support projects which aim to create new services and products.", + "website": "https://starbase.co/", + "explorer": "https://etherscan.io/token/0xF70a642bD387F94380fFb90451C2c81d4Eb82CBc", + "status": "active", + "id": "0xF70a642bD387F94380fFb90451C2c81d4Eb82CBc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF70a642bD387F94380fFb90451C2c81d4Eb82CBc/logo.png b/blockchains/ethereum/assets/0xF70a642bD387F94380fFb90451C2c81d4Eb82CBc/logo.png new file mode 100755 index 00000000..b0a087a4 Binary files /dev/null and b/blockchains/ethereum/assets/0xF70a642bD387F94380fFb90451C2c81d4Eb82CBc/logo.png differ diff --git a/blockchains/ethereum/assets/0xF70d160102cF7a22c1E432d6928a9d625Db91170/info.json b/blockchains/ethereum/assets/0xF70d160102cF7a22c1E432d6928a9d625Db91170/info.json new file mode 100644 index 00000000..40a19eb1 --- /dev/null +++ b/blockchains/ethereum/assets/0xF70d160102cF7a22c1E432d6928a9d625Db91170/info.json @@ -0,0 +1,11 @@ +{ + "name": "KUVERIT", + "symbol": "KUV", + "type": "ERC20", + "decimals": 18, + "description": "Kuverit P2P Guarantee Trading exists. A Guarantor makes sure both sides will receive their funds, and all claims are validated by candid voters and auditors.", + "website": "https://www.kuverit.io", + "explorer": "https://etherscan.io/token/0xF70d160102cF7a22c1E432d6928a9d625Db91170", + "status": "active", + "id": "0xF70d160102cF7a22c1E432d6928a9d625Db91170" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF70d160102cF7a22c1E432d6928a9d625Db91170/logo.png b/blockchains/ethereum/assets/0xF70d160102cF7a22c1E432d6928a9d625Db91170/logo.png new file mode 100644 index 00000000..9bebdf71 Binary files /dev/null and b/blockchains/ethereum/assets/0xF70d160102cF7a22c1E432d6928a9d625Db91170/logo.png differ diff --git a/blockchains/ethereum/assets/0xF719b02079E0FaA5450392DA2D3e11a1e5b0EADB/info.json b/blockchains/ethereum/assets/0xF719b02079E0FaA5450392DA2D3e11a1e5b0EADB/info.json new file mode 100644 index 00000000..884787d4 --- /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 00000000..935dd2c8 Binary files /dev/null and b/blockchains/ethereum/assets/0xF719b02079E0FaA5450392DA2D3e11a1e5b0EADB/logo.png differ diff --git a/blockchains/ethereum/assets/0xF7461C8D8E469e9c41a9013dC09Ba8AbED66ef65/info.json b/blockchains/ethereum/assets/0xF7461C8D8E469e9c41a9013dC09Ba8AbED66ef65/info.json new file mode 100644 index 00000000..4004f9c7 --- /dev/null +++ b/blockchains/ethereum/assets/0xF7461C8D8E469e9c41a9013dC09Ba8AbED66ef65/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptassist", + "symbol": "CTAT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.cryptassist.io/en", + "explorer": "https://etherscan.io/token/0xF7461C8D8E469e9c41a9013dC09Ba8AbED66ef65", + "status": "abandoned", + "id": "0xF7461C8D8E469e9c41a9013dC09Ba8AbED66ef65" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF7461C8D8E469e9c41a9013dC09Ba8AbED66ef65/logo.png b/blockchains/ethereum/assets/0xF7461C8D8E469e9c41a9013dC09Ba8AbED66ef65/logo.png new file mode 100644 index 00000000..67b7acf5 Binary files /dev/null and b/blockchains/ethereum/assets/0xF7461C8D8E469e9c41a9013dC09Ba8AbED66ef65/logo.png differ diff --git a/blockchains/ethereum/assets/0xF761f2dD63889885F4717056BdC32CC07C06Dbbf/info.json b/blockchains/ethereum/assets/0xF761f2dD63889885F4717056BdC32CC07C06Dbbf/info.json new file mode 100644 index 00000000..3b6c6f9d --- /dev/null +++ b/blockchains/ethereum/assets/0xF761f2dD63889885F4717056BdC32CC07C06Dbbf/info.json @@ -0,0 +1,11 @@ +{ + "name": "DagX Token", + "symbol": "DAG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF761f2dD63889885F4717056BdC32CC07C06Dbbf", + "status": "abandoned", + "id": "0xF761f2dD63889885F4717056BdC32CC07C06Dbbf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF761f2dD63889885F4717056BdC32CC07C06Dbbf/logo.png b/blockchains/ethereum/assets/0xF761f2dD63889885F4717056BdC32CC07C06Dbbf/logo.png new file mode 100644 index 00000000..a127953f Binary files /dev/null and b/blockchains/ethereum/assets/0xF761f2dD63889885F4717056BdC32CC07C06Dbbf/logo.png differ diff --git a/blockchains/ethereum/assets/0xF77f4810e7521298a6e2a04f82A6c3492706d74F/info.json b/blockchains/ethereum/assets/0xF77f4810e7521298a6e2a04f82A6c3492706d74F/info.json new file mode 100644 index 00000000..956f178b --- /dev/null +++ b/blockchains/ethereum/assets/0xF77f4810e7521298a6e2a04f82A6c3492706d74F/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinMeet", + "symbol": "MEE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://coinmeet.io/", + "explorer": "https://etherscan.io/token/0xF77f4810e7521298a6e2a04f82A6c3492706d74F", + "status": "abandoned", + "id": "0xF77f4810e7521298a6e2a04f82A6c3492706d74F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF77f4810e7521298a6e2a04f82A6c3492706d74F/logo.png b/blockchains/ethereum/assets/0xF77f4810e7521298a6e2a04f82A6c3492706d74F/logo.png new file mode 100644 index 00000000..4b9e55f1 Binary files /dev/null and b/blockchains/ethereum/assets/0xF77f4810e7521298a6e2a04f82A6c3492706d74F/logo.png differ diff --git a/blockchains/ethereum/assets/0xF784682C82526e245F50975190EF0fff4E4fC077/info.json b/blockchains/ethereum/assets/0xF784682C82526e245F50975190EF0fff4E4fC077/info.json new file mode 100644 index 00000000..5fdbacd7 --- /dev/null +++ b/blockchains/ethereum/assets/0xF784682C82526e245F50975190EF0fff4E4fC077/info.json @@ -0,0 +1,11 @@ +{ + "name": "Inlock", + "website": "https://inlock.io/", + "description": "Inlock is a crypto-backed lending platform and savings platform.", + "explorer": "https://etherscan.io/token/0xF784682C82526e245F50975190EF0fff4E4fC077", + "type": "ERC20", + "symbol": "ILK", + "decimals": 8, + "status": "active", + "id": "0xF784682C82526e245F50975190EF0fff4E4fC077" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF784682C82526e245F50975190EF0fff4E4fC077/logo.png b/blockchains/ethereum/assets/0xF784682C82526e245F50975190EF0fff4E4fC077/logo.png new file mode 100644 index 00000000..c59abc2e Binary files /dev/null and b/blockchains/ethereum/assets/0xF784682C82526e245F50975190EF0fff4E4fC077/logo.png differ diff --git a/blockchains/ethereum/assets/0xF7920B0768Ecb20A123fAc32311d07D193381d6f/info.json b/blockchains/ethereum/assets/0xF7920B0768Ecb20A123fAc32311d07D193381d6f/info.json new file mode 100644 index 00000000..dbe5dacd --- /dev/null +++ b/blockchains/ethereum/assets/0xF7920B0768Ecb20A123fAc32311d07D193381d6f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Time New Bank", + "symbol": "TNB", + "type": "ERC20", + "decimals": 18, + "description": "TNB is token represent to Miao'A International Timechain (M.I.T). That is dedicated to building a precision time-valuebased transmission network.", + "website": "https://tnb.fund/", + "explorer": "https://etherscan.io/token/0xF7920B0768Ecb20A123fAc32311d07D193381d6f", + "status": "active", + "id": "0xF7920B0768Ecb20A123fAc32311d07D193381d6f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF7920B0768Ecb20A123fAc32311d07D193381d6f/logo.png b/blockchains/ethereum/assets/0xF7920B0768Ecb20A123fAc32311d07D193381d6f/logo.png new file mode 100755 index 00000000..a04b88bc Binary files /dev/null and b/blockchains/ethereum/assets/0xF7920B0768Ecb20A123fAc32311d07D193381d6f/logo.png differ diff --git a/blockchains/ethereum/assets/0xF7A9ABdD6D8E5Cf4C237b10b4cF0640F41584735/info.json b/blockchains/ethereum/assets/0xF7A9ABdD6D8E5Cf4C237b10b4cF0640F41584735/info.json new file mode 100644 index 00000000..b0356daa --- /dev/null +++ b/blockchains/ethereum/assets/0xF7A9ABdD6D8E5Cf4C237b10b4cF0640F41584735/info.json @@ -0,0 +1,11 @@ +{ + "name": "ReaCoin", + "symbol": "REA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF7A9ABdD6D8E5Cf4C237b10b4cF0640F41584735", + "status": "abandoned", + "id": "0xF7A9ABdD6D8E5Cf4C237b10b4cF0640F41584735" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF7A9ABdD6D8E5Cf4C237b10b4cF0640F41584735/logo.png b/blockchains/ethereum/assets/0xF7A9ABdD6D8E5Cf4C237b10b4cF0640F41584735/logo.png new file mode 100644 index 00000000..799c5d15 Binary files /dev/null and b/blockchains/ethereum/assets/0xF7A9ABdD6D8E5Cf4C237b10b4cF0640F41584735/logo.png differ diff --git a/blockchains/ethereum/assets/0xF7E04D8a32229B4cA63aA51eEA9979C7287FEa48/info.json b/blockchains/ethereum/assets/0xF7E04D8a32229B4cA63aA51eEA9979C7287FEa48/info.json new file mode 100644 index 00000000..3f372ab9 --- /dev/null +++ b/blockchains/ethereum/assets/0xF7E04D8a32229B4cA63aA51eEA9979C7287FEa48/info.json @@ -0,0 +1,11 @@ +{ + "name": "Beowulf", + "website": "https://beowulfchain.com/", + "description": "Beowulf is a B2B decentralized cloud platform built by combining global computing resources into a supercomputer network on the blockchain for communication services.", + "explorer": "https://etherscan.io/token/0xF7E04D8a32229B4cA63aA51eEA9979C7287FEa48", + "type": "ERC20", + "symbol": "BWF", + "decimals": 5, + "status": "active", + "id": "0xF7E04D8a32229B4cA63aA51eEA9979C7287FEa48" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF7E04D8a32229B4cA63aA51eEA9979C7287FEa48/logo.png b/blockchains/ethereum/assets/0xF7E04D8a32229B4cA63aA51eEA9979C7287FEa48/logo.png new file mode 100644 index 00000000..84d79d58 Binary files /dev/null and b/blockchains/ethereum/assets/0xF7E04D8a32229B4cA63aA51eEA9979C7287FEa48/logo.png differ diff --git a/blockchains/ethereum/assets/0xF7a6868ad958B724bc486e10bD3Ddc8D63AA16c7/info.json b/blockchains/ethereum/assets/0xF7a6868ad958B724bc486e10bD3Ddc8D63AA16c7/info.json new file mode 100644 index 00000000..55eb8aae --- /dev/null +++ b/blockchains/ethereum/assets/0xF7a6868ad958B724bc486e10bD3Ddc8D63AA16c7/info.json @@ -0,0 +1,11 @@ +{ + "name": "empowr green", + "symbol": "EMPRG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF7a6868ad958B724bc486e10bD3Ddc8D63AA16c7", + "status": "abandoned", + "id": "0xF7a6868ad958B724bc486e10bD3Ddc8D63AA16c7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF7a6868ad958B724bc486e10bD3Ddc8D63AA16c7/logo.png b/blockchains/ethereum/assets/0xF7a6868ad958B724bc486e10bD3Ddc8D63AA16c7/logo.png new file mode 100644 index 00000000..45fcf16f Binary files /dev/null and b/blockchains/ethereum/assets/0xF7a6868ad958B724bc486e10bD3Ddc8D63AA16c7/logo.png differ diff --git a/blockchains/ethereum/assets/0xF7a6ACd437eDC08320AB17644Bb5963753a4E6D8/info.json b/blockchains/ethereum/assets/0xF7a6ACd437eDC08320AB17644Bb5963753a4E6D8/info.json new file mode 100644 index 00000000..7049f122 --- /dev/null +++ b/blockchains/ethereum/assets/0xF7a6ACd437eDC08320AB17644Bb5963753a4E6D8/info.json @@ -0,0 +1,11 @@ +{ + "name": "PivvrDS", + "symbol": "PDS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF7a6ACd437eDC08320AB17644Bb5963753a4E6D8", + "status": "abandoned", + "id": "0xF7a6ACd437eDC08320AB17644Bb5963753a4E6D8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF7a6ACd437eDC08320AB17644Bb5963753a4E6D8/logo.png b/blockchains/ethereum/assets/0xF7a6ACd437eDC08320AB17644Bb5963753a4E6D8/logo.png new file mode 100644 index 00000000..dbea0262 Binary files /dev/null and b/blockchains/ethereum/assets/0xF7a6ACd437eDC08320AB17644Bb5963753a4E6D8/logo.png differ diff --git a/blockchains/ethereum/assets/0xF7dEaF8f20546880cE40441c7bF47733006af98c/info.json b/blockchains/ethereum/assets/0xF7dEaF8f20546880cE40441c7bF47733006af98c/info.json new file mode 100644 index 00000000..7c26a2e9 --- /dev/null +++ b/blockchains/ethereum/assets/0xF7dEaF8f20546880cE40441c7bF47733006af98c/info.json @@ -0,0 +1,11 @@ +{ + "name": "SWAG", + "symbol": "SWAG", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF7dEaF8f20546880cE40441c7bF47733006af98c", + "status": "abandoned", + "id": "0xF7dEaF8f20546880cE40441c7bF47733006af98c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF7dEaF8f20546880cE40441c7bF47733006af98c/logo.png b/blockchains/ethereum/assets/0xF7dEaF8f20546880cE40441c7bF47733006af98c/logo.png new file mode 100644 index 00000000..3a9ed7e2 Binary files /dev/null and b/blockchains/ethereum/assets/0xF7dEaF8f20546880cE40441c7bF47733006af98c/logo.png differ diff --git a/blockchains/ethereum/assets/0xF7f1e82886491c1D3224945Aa7d318e111130Fa9/info.json b/blockchains/ethereum/assets/0xF7f1e82886491c1D3224945Aa7d318e111130Fa9/info.json new file mode 100644 index 00000000..f689c62c --- /dev/null +++ b/blockchains/ethereum/assets/0xF7f1e82886491c1D3224945Aa7d318e111130Fa9/info.json @@ -0,0 +1,11 @@ +{ + "name": "ANON", + "symbol": "ANON", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF7f1e82886491c1D3224945Aa7d318e111130Fa9", + "status": "abandoned", + "id": "0xF7f1e82886491c1D3224945Aa7d318e111130Fa9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF7f1e82886491c1D3224945Aa7d318e111130Fa9/logo.png b/blockchains/ethereum/assets/0xF7f1e82886491c1D3224945Aa7d318e111130Fa9/logo.png new file mode 100644 index 00000000..08d34060 Binary files /dev/null and b/blockchains/ethereum/assets/0xF7f1e82886491c1D3224945Aa7d318e111130Fa9/logo.png differ diff --git a/blockchains/ethereum/assets/0xF80417fac69547A1776D68F8c9DFB16Ba0eAE09D/info.json b/blockchains/ethereum/assets/0xF80417fac69547A1776D68F8c9DFB16Ba0eAE09D/info.json new file mode 100644 index 00000000..5708edb3 --- /dev/null +++ b/blockchains/ethereum/assets/0xF80417fac69547A1776D68F8c9DFB16Ba0eAE09D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Doecoins.com", + "symbol": "DOE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF80417fac69547A1776D68F8c9DFB16Ba0eAE09D", + "status": "abandoned", + "id": "0xF80417fac69547A1776D68F8c9DFB16Ba0eAE09D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF80417fac69547A1776D68F8c9DFB16Ba0eAE09D/logo.png b/blockchains/ethereum/assets/0xF80417fac69547A1776D68F8c9DFB16Ba0eAE09D/logo.png new file mode 100644 index 00000000..fee362fe Binary files /dev/null and b/blockchains/ethereum/assets/0xF80417fac69547A1776D68F8c9DFB16Ba0eAE09D/logo.png differ diff --git a/blockchains/ethereum/assets/0xF80D589b3Dbe130c270a69F1a69D050f268786Df/info.json b/blockchains/ethereum/assets/0xF80D589b3Dbe130c270a69F1a69D050f268786Df/info.json new file mode 100644 index 00000000..86aa6f9e --- /dev/null +++ b/blockchains/ethereum/assets/0xF80D589b3Dbe130c270a69F1a69D050f268786Df/info.json @@ -0,0 +1,11 @@ +{ + "name": "Datamine", + "symbol": "DAM", + "type": "ERC20", + "decimals": 18, + "description": "Datamine Crypto uses smart contracts to redefine DeFi by creating on-chain Supply and Demand equilibrium. FLUX tokens are generated every 15 seconds to be burned by Datamine (DAM) token holders.", + "website": "https://datamine.network/", + "explorer": "https://etherscan.io/token/0xF80D589b3Dbe130c270a69F1a69D050f268786Df", + "status": "active", + "id": "0xF80D589b3Dbe130c270a69F1a69D050f268786Df" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF80D589b3Dbe130c270a69F1a69D050f268786Df/logo.png b/blockchains/ethereum/assets/0xF80D589b3Dbe130c270a69F1a69D050f268786Df/logo.png new file mode 100644 index 00000000..80464a59 Binary files /dev/null and b/blockchains/ethereum/assets/0xF80D589b3Dbe130c270a69F1a69D050f268786Df/logo.png differ diff --git a/blockchains/ethereum/assets/0xF82D62d65f0c670Ac4D88AbDf1afEFaC11522A16/info.json b/blockchains/ethereum/assets/0xF82D62d65f0c670Ac4D88AbDf1afEFaC11522A16/info.json new file mode 100644 index 00000000..0c2a5341 --- /dev/null +++ b/blockchains/ethereum/assets/0xF82D62d65f0c670Ac4D88AbDf1afEFaC11522A16/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTMcoin", + "symbol": "BTM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF82D62d65f0c670Ac4D88AbDf1afEFaC11522A16", + "status": "abandoned", + "id": "0xF82D62d65f0c670Ac4D88AbDf1afEFaC11522A16" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF82D62d65f0c670Ac4D88AbDf1afEFaC11522A16/logo.png b/blockchains/ethereum/assets/0xF82D62d65f0c670Ac4D88AbDf1afEFaC11522A16/logo.png new file mode 100644 index 00000000..c814f49e Binary files /dev/null and b/blockchains/ethereum/assets/0xF82D62d65f0c670Ac4D88AbDf1afEFaC11522A16/logo.png differ diff --git a/blockchains/ethereum/assets/0xF832484f0c9f6b7Cd5c945488899035467508A5D/info.json b/blockchains/ethereum/assets/0xF832484f0c9f6b7Cd5c945488899035467508A5D/info.json new file mode 100644 index 00000000..bba114e0 --- /dev/null +++ b/blockchains/ethereum/assets/0xF832484f0c9f6b7Cd5c945488899035467508A5D/info.json @@ -0,0 +1,11 @@ +{ + "name": "CUZ", + "symbol": "CUZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF832484f0c9f6b7Cd5c945488899035467508A5D", + "status": "abandoned", + "id": "0xF832484f0c9f6b7Cd5c945488899035467508A5D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF832484f0c9f6b7Cd5c945488899035467508A5D/logo.png b/blockchains/ethereum/assets/0xF832484f0c9f6b7Cd5c945488899035467508A5D/logo.png new file mode 100644 index 00000000..7458db3c Binary files /dev/null and b/blockchains/ethereum/assets/0xF832484f0c9f6b7Cd5c945488899035467508A5D/logo.png differ diff --git a/blockchains/ethereum/assets/0xF83301c5Cd1CCBB86f466A6B3c53316ED2f8465a/info.json b/blockchains/ethereum/assets/0xF83301c5Cd1CCBB86f466A6B3c53316ED2f8465a/info.json new file mode 100644 index 00000000..7c39a026 --- /dev/null +++ b/blockchains/ethereum/assets/0xF83301c5Cd1CCBB86f466A6B3c53316ED2f8465a/info.json @@ -0,0 +1,11 @@ +{ + "name": "COMSA", + "symbol": "CMS", + "type": "ERC20", + "decimals": 6, + "description": "Comsa is a conduit for future ICOs that want to exist in the COMSA ecosystem. As part of the project, a COMSA team is now already in place to provide companies with consultation, expertise and solutions to support their very own ICOs and implement blockchain technology into their business practices using our Zaif exchange and mijin private blockchain software, all at the same time, as a one-stop solution.", + "website": "https://comsa.io/en/", + "explorer": "https://etherscan.io/token/0xF83301c5Cd1CCBB86f466A6B3c53316ED2f8465a", + "status": "active", + "id": "0xF83301c5Cd1CCBB86f466A6B3c53316ED2f8465a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF83301c5Cd1CCBB86f466A6B3c53316ED2f8465a/logo.png b/blockchains/ethereum/assets/0xF83301c5Cd1CCBB86f466A6B3c53316ED2f8465a/logo.png new file mode 100755 index 00000000..8cfae63f Binary files /dev/null and b/blockchains/ethereum/assets/0xF83301c5Cd1CCBB86f466A6B3c53316ED2f8465a/logo.png differ diff --git a/blockchains/ethereum/assets/0xF83A665793A40695B98334CbC06FB525BE8d02c7/info.json b/blockchains/ethereum/assets/0xF83A665793A40695B98334CbC06FB525BE8d02c7/info.json new file mode 100644 index 00000000..a1a16ea4 --- /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 00000000..9ae7d3e0 Binary files /dev/null and b/blockchains/ethereum/assets/0xF83A665793A40695B98334CbC06FB525BE8d02c7/logo.png differ diff --git a/blockchains/ethereum/assets/0xF84df2db2C87dd650641f8904aF71EbFC3ddE0Ea/info.json b/blockchains/ethereum/assets/0xF84df2db2C87dd650641f8904aF71EbFC3ddE0Ea/info.json new file mode 100644 index 00000000..f8158739 --- /dev/null +++ b/blockchains/ethereum/assets/0xF84df2db2C87dd650641f8904aF71EbFC3ddE0Ea/info.json @@ -0,0 +1,11 @@ +{ + "name": "YouLive Coin", + "symbol": "UC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.youlive.io/", + "explorer": "https://etherscan.io/token/0xF84df2db2C87dd650641f8904aF71EbFC3ddE0Ea", + "status": "abandoned", + "id": "0xF84df2db2C87dd650641f8904aF71EbFC3ddE0Ea" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF84df2db2C87dd650641f8904aF71EbFC3ddE0Ea/logo.png b/blockchains/ethereum/assets/0xF84df2db2C87dd650641f8904aF71EbFC3ddE0Ea/logo.png new file mode 100644 index 00000000..b2297a4d Binary files /dev/null and b/blockchains/ethereum/assets/0xF84df2db2C87dd650641f8904aF71EbFC3ddE0Ea/logo.png differ diff --git a/blockchains/ethereum/assets/0xF85AC1FDaBF3E8aFeFD1500120243a0B30F16a54/info.json b/blockchains/ethereum/assets/0xF85AC1FDaBF3E8aFeFD1500120243a0B30F16a54/info.json new file mode 100644 index 00000000..8f2589fc --- /dev/null +++ b/blockchains/ethereum/assets/0xF85AC1FDaBF3E8aFeFD1500120243a0B30F16a54/info.json @@ -0,0 +1,11 @@ +{ + "name": "AIPAY", + "symbol": "AIPAY", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF85AC1FDaBF3E8aFeFD1500120243a0B30F16a54", + "status": "abandoned", + "id": "0xF85AC1FDaBF3E8aFeFD1500120243a0B30F16a54" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF85AC1FDaBF3E8aFeFD1500120243a0B30F16a54/logo.png b/blockchains/ethereum/assets/0xF85AC1FDaBF3E8aFeFD1500120243a0B30F16a54/logo.png new file mode 100644 index 00000000..34db67b6 Binary files /dev/null and b/blockchains/ethereum/assets/0xF85AC1FDaBF3E8aFeFD1500120243a0B30F16a54/logo.png differ diff --git a/blockchains/ethereum/assets/0xF88951D7B676798705fd3a362ba5B1DBca2B233b/info.json b/blockchains/ethereum/assets/0xF88951D7B676798705fd3a362ba5B1DBca2B233b/info.json new file mode 100644 index 00000000..463a5638 --- /dev/null +++ b/blockchains/ethereum/assets/0xF88951D7B676798705fd3a362ba5B1DBca2B233b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pixel", + "symbol": "PXL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://piction.network/en/", + "explorer": "https://etherscan.io/token/0xF88951D7B676798705fd3a362ba5B1DBca2B233b", + "status": "abandoned", + "id": "0xF88951D7B676798705fd3a362ba5B1DBca2B233b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF88951D7B676798705fd3a362ba5B1DBca2B233b/logo.png b/blockchains/ethereum/assets/0xF88951D7B676798705fd3a362ba5B1DBca2B233b/logo.png new file mode 100644 index 00000000..fd1318cc Binary files /dev/null and b/blockchains/ethereum/assets/0xF88951D7B676798705fd3a362ba5B1DBca2B233b/logo.png differ diff --git a/blockchains/ethereum/assets/0xF89bA2862dfAE69Bc2546568D56b087d7454c9C9/info.json b/blockchains/ethereum/assets/0xF89bA2862dfAE69Bc2546568D56b087d7454c9C9/info.json new file mode 100644 index 00000000..60650d1d --- /dev/null +++ b/blockchains/ethereum/assets/0xF89bA2862dfAE69Bc2546568D56b087d7454c9C9/info.json @@ -0,0 +1,11 @@ +{ + "name": "BaoBoShiCoin", + "symbol": "BBSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF89bA2862dfAE69Bc2546568D56b087d7454c9C9", + "status": "abandoned", + "id": "0xF89bA2862dfAE69Bc2546568D56b087d7454c9C9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF89bA2862dfAE69Bc2546568D56b087d7454c9C9/logo.png b/blockchains/ethereum/assets/0xF89bA2862dfAE69Bc2546568D56b087d7454c9C9/logo.png new file mode 100755 index 00000000..472ce562 Binary files /dev/null and b/blockchains/ethereum/assets/0xF89bA2862dfAE69Bc2546568D56b087d7454c9C9/logo.png differ diff --git a/blockchains/ethereum/assets/0xF8C595D070d104377f58715ce2E6C93E49a87f3c/info.json b/blockchains/ethereum/assets/0xF8C595D070d104377f58715ce2E6C93E49a87f3c/info.json new file mode 100644 index 00000000..46cdb728 --- /dev/null +++ b/blockchains/ethereum/assets/0xF8C595D070d104377f58715ce2E6C93E49a87f3c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decentralized Accessible Content Chain", + "symbol": "DACC", + "type": "ERC20", + "decimals": 6, + "description": "DACC – Decentralized Accessible Content – is the first public chain that revolutionize online content and media identity and access management (IAM) worldwide. As an interactive platform, DAC, through the innovative use of blockchain technology, allows creators to control and protect their content, while also giving them a secure and efficient way of selling it globally.", + "website": "http://dacc.co/", + "explorer": "https://etherscan.io/token/0xF8C595D070d104377f58715ce2E6C93E49a87f3c", + "status": "abandoned", + "id": "0xF8C595D070d104377f58715ce2E6C93E49a87f3c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF8C595D070d104377f58715ce2E6C93E49a87f3c/logo.png b/blockchains/ethereum/assets/0xF8C595D070d104377f58715ce2E6C93E49a87f3c/logo.png new file mode 100644 index 00000000..9fbc575e Binary files /dev/null and b/blockchains/ethereum/assets/0xF8C595D070d104377f58715ce2E6C93E49a87f3c/logo.png differ diff --git a/blockchains/ethereum/assets/0xF8F1B1c8a2F6D69D15002ED214C7f6cf38f15E20/info.json b/blockchains/ethereum/assets/0xF8F1B1c8a2F6D69D15002ED214C7f6cf38f15E20/info.json new file mode 100644 index 00000000..b441d2af --- /dev/null +++ b/blockchains/ethereum/assets/0xF8F1B1c8a2F6D69D15002ED214C7f6cf38f15E20/info.json @@ -0,0 +1,11 @@ +{ + "name": "777 TOKEN", + "symbol": "777", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF8F1B1c8a2F6D69D15002ED214C7f6cf38f15E20", + "status": "abandoned", + "id": "0xF8F1B1c8a2F6D69D15002ED214C7f6cf38f15E20" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF8F1B1c8a2F6D69D15002ED214C7f6cf38f15E20/logo.png b/blockchains/ethereum/assets/0xF8F1B1c8a2F6D69D15002ED214C7f6cf38f15E20/logo.png new file mode 100644 index 00000000..6c524453 Binary files /dev/null and b/blockchains/ethereum/assets/0xF8F1B1c8a2F6D69D15002ED214C7f6cf38f15E20/logo.png differ diff --git a/blockchains/ethereum/assets/0xF8F237D074F637D777bcD2A4712bde793f94272B/info.json b/blockchains/ethereum/assets/0xF8F237D074F637D777bcD2A4712bde793f94272B/info.json new file mode 100644 index 00000000..348df005 --- /dev/null +++ b/blockchains/ethereum/assets/0xF8F237D074F637D777bcD2A4712bde793f94272B/info.json @@ -0,0 +1,11 @@ +{ + "name": "ERC223", + "symbol": "ERC223", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "https://erc223token.my.cam/", + "explorer": "https://etherscan.io/token/0xF8F237D074F637D777bcD2A4712bde793f94272B", + "status": "abandoned", + "id": "0xF8F237D074F637D777bcD2A4712bde793f94272B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF8F237D074F637D777bcD2A4712bde793f94272B/logo.png b/blockchains/ethereum/assets/0xF8F237D074F637D777bcD2A4712bde793f94272B/logo.png new file mode 100644 index 00000000..abae3af0 Binary files /dev/null and b/blockchains/ethereum/assets/0xF8F237D074F637D777bcD2A4712bde793f94272B/logo.png differ diff --git a/blockchains/ethereum/assets/0xF8a4a9f541fb6B465804a0142c52C1D48914a1f7/info.json b/blockchains/ethereum/assets/0xF8a4a9f541fb6B465804a0142c52C1D48914a1f7/info.json new file mode 100644 index 00000000..2d115124 --- /dev/null +++ b/blockchains/ethereum/assets/0xF8a4a9f541fb6B465804a0142c52C1D48914a1f7/info.json @@ -0,0 +1,11 @@ +{ + "name": "TREECHAIN NETWORK", + "symbol": "TREECOIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF8a4a9f541fb6B465804a0142c52C1D48914a1f7", + "status": "abandoned", + "id": "0xF8a4a9f541fb6B465804a0142c52C1D48914a1f7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF8a4a9f541fb6B465804a0142c52C1D48914a1f7/logo.png b/blockchains/ethereum/assets/0xF8a4a9f541fb6B465804a0142c52C1D48914a1f7/logo.png new file mode 100644 index 00000000..9f247686 Binary files /dev/null and b/blockchains/ethereum/assets/0xF8a4a9f541fb6B465804a0142c52C1D48914a1f7/logo.png differ diff --git a/blockchains/ethereum/assets/0xF8d778219D253df289dA5F43E2711124FF3953C2/info.json b/blockchains/ethereum/assets/0xF8d778219D253df289dA5F43E2711124FF3953C2/info.json new file mode 100644 index 00000000..918fafab --- /dev/null +++ b/blockchains/ethereum/assets/0xF8d778219D253df289dA5F43E2711124FF3953C2/info.json @@ -0,0 +1,11 @@ +{ + "name": "RIZE", + "symbol": "RIZE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.rizetoken.com", + "explorer": "https://etherscan.io/token/0xF8d778219D253df289dA5F43E2711124FF3953C2", + "status": "abandoned", + "id": "0xF8d778219D253df289dA5F43E2711124FF3953C2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF8d778219D253df289dA5F43E2711124FF3953C2/logo.png b/blockchains/ethereum/assets/0xF8d778219D253df289dA5F43E2711124FF3953C2/logo.png new file mode 100644 index 00000000..cc85e2ba Binary files /dev/null and b/blockchains/ethereum/assets/0xF8d778219D253df289dA5F43E2711124FF3953C2/logo.png differ diff --git a/blockchains/ethereum/assets/0xF8e06E4e4A80287FDCa5b02dcCecAa9D0954840F/info.json b/blockchains/ethereum/assets/0xF8e06E4e4A80287FDCa5b02dcCecAa9D0954840F/info.json new file mode 100644 index 00000000..c5fec441 --- /dev/null +++ b/blockchains/ethereum/assets/0xF8e06E4e4A80287FDCa5b02dcCecAa9D0954840F/info.json @@ -0,0 +1,11 @@ +{ + "name": "TGAME", + "symbol": "TGAME", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ico.truegame.io/", + "explorer": "https://etherscan.io/token/0xF8e06E4e4A80287FDCa5b02dcCecAa9D0954840F", + "status": "abandoned", + "id": "0xF8e06E4e4A80287FDCa5b02dcCecAa9D0954840F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF8e06E4e4A80287FDCa5b02dcCecAa9D0954840F/logo.png b/blockchains/ethereum/assets/0xF8e06E4e4A80287FDCa5b02dcCecAa9D0954840F/logo.png new file mode 100644 index 00000000..594f5cd8 Binary files /dev/null and b/blockchains/ethereum/assets/0xF8e06E4e4A80287FDCa5b02dcCecAa9D0954840F/logo.png differ diff --git a/blockchains/ethereum/assets/0xF906997808F73B09C1007B98Ab539b189282b192/info.json b/blockchains/ethereum/assets/0xF906997808F73B09C1007B98Ab539b189282b192/info.json new file mode 100644 index 00000000..24e85b31 --- /dev/null +++ b/blockchains/ethereum/assets/0xF906997808F73B09C1007B98Ab539b189282b192/info.json @@ -0,0 +1,11 @@ +{ + "name": "USDG", + "symbol": "USDG", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "https://aca.cash/", + "explorer": "https://etherscan.io/token/0xF906997808F73B09C1007B98Ab539b189282b192", + "status": "abandoned", + "id": "0xF906997808F73B09C1007B98Ab539b189282b192" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF906997808F73B09C1007B98Ab539b189282b192/logo.png b/blockchains/ethereum/assets/0xF906997808F73B09C1007B98Ab539b189282b192/logo.png new file mode 100644 index 00000000..7d271f8e Binary files /dev/null and b/blockchains/ethereum/assets/0xF906997808F73B09C1007B98Ab539b189282b192/logo.png differ diff --git a/blockchains/ethereum/assets/0xF9101F6BDeaAF60735e62820585871f9b1F162b8/info.json b/blockchains/ethereum/assets/0xF9101F6BDeaAF60735e62820585871f9b1F162b8/info.json new file mode 100644 index 00000000..14745bfa --- /dev/null +++ b/blockchains/ethereum/assets/0xF9101F6BDeaAF60735e62820585871f9b1F162b8/info.json @@ -0,0 +1,11 @@ +{ + "name": "CACHE", + "symbol": "CACHE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF9101F6BDeaAF60735e62820585871f9b1F162b8", + "status": "abandoned", + "id": "0xF9101F6BDeaAF60735e62820585871f9b1F162b8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF9101F6BDeaAF60735e62820585871f9b1F162b8/logo.png b/blockchains/ethereum/assets/0xF9101F6BDeaAF60735e62820585871f9b1F162b8/logo.png new file mode 100755 index 00000000..72d337ec Binary files /dev/null and b/blockchains/ethereum/assets/0xF9101F6BDeaAF60735e62820585871f9b1F162b8/logo.png differ diff --git a/blockchains/ethereum/assets/0xF9366471F3c2F94608aFa3e4951a5754c8606C32/info.json b/blockchains/ethereum/assets/0xF9366471F3c2F94608aFa3e4951a5754c8606C32/info.json new file mode 100644 index 00000000..2393f202 --- /dev/null +++ b/blockchains/ethereum/assets/0xF9366471F3c2F94608aFa3e4951a5754c8606C32/info.json @@ -0,0 +1,11 @@ +{ + "name": "TTism", + "symbol": "TTT", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF9366471F3c2F94608aFa3e4951a5754c8606C32", + "status": "abandoned", + "id": "0xF9366471F3c2F94608aFa3e4951a5754c8606C32" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF9366471F3c2F94608aFa3e4951a5754c8606C32/logo.png b/blockchains/ethereum/assets/0xF9366471F3c2F94608aFa3e4951a5754c8606C32/logo.png new file mode 100644 index 00000000..edb0ce2a Binary files /dev/null and b/blockchains/ethereum/assets/0xF9366471F3c2F94608aFa3e4951a5754c8606C32/logo.png differ diff --git a/blockchains/ethereum/assets/0xF938424F7210f31dF2Aee3011291b658f872e91e/info.json b/blockchains/ethereum/assets/0xF938424F7210f31dF2Aee3011291b658f872e91e/info.json new file mode 100644 index 00000000..26eb659c --- /dev/null +++ b/blockchains/ethereum/assets/0xF938424F7210f31dF2Aee3011291b658f872e91e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Visor.Finance", + "symbol": "VISR", + "type": "ERC20", + "decimals": 18, + "description": "Interact with DeFi protocols through an NFT, enhancing the discovery, reputation, safety and programmability of on-chain liquidity", + "website": "https://visor.finance", + "explorer": "https://etherscan.io/token/0xf938424f7210f31df2aee3011291b658f872e91e", + "status": "active", + "id": "0xF938424F7210f31dF2Aee3011291b658f872e91e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF938424F7210f31dF2Aee3011291b658f872e91e/logo.png b/blockchains/ethereum/assets/0xF938424F7210f31dF2Aee3011291b658f872e91e/logo.png new file mode 100644 index 00000000..efd50cbb Binary files /dev/null and b/blockchains/ethereum/assets/0xF938424F7210f31dF2Aee3011291b658f872e91e/logo.png differ diff --git a/blockchains/ethereum/assets/0xF944e35f95E819E752f3cCB5Faf40957d311e8c5/info.json b/blockchains/ethereum/assets/0xF944e35f95E819E752f3cCB5Faf40957d311e8c5/info.json new file mode 100644 index 00000000..ac24899b --- /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 00000000..fc396f33 Binary files /dev/null and b/blockchains/ethereum/assets/0xF944e35f95E819E752f3cCB5Faf40957d311e8c5/logo.png differ diff --git a/blockchains/ethereum/assets/0xF94b5C5651c888d928439aB6514B93944eEE6F48/info.json b/blockchains/ethereum/assets/0xF94b5C5651c888d928439aB6514B93944eEE6F48/info.json new file mode 100644 index 00000000..e14d12d1 --- /dev/null +++ b/blockchains/ethereum/assets/0xF94b5C5651c888d928439aB6514B93944eEE6F48/info.json @@ -0,0 +1,21 @@ +{ + "name": "Yield", + "website": "https://yield.app", + "description": "YLD is a utility token that allows YIELD.app users to boost their APY", + "explorer": "https://etherscan.io/token/0xF94b5C5651c888d928439aB6514B93944eEE6F48", + "type": "ERC20", + "symbol": "YLD", + "decimals": 18, + "status": "active", + "id": "0xF94b5C5651c888d928439aB6514B93944eEE6F48", + "links": [ + { + "name": "github", + "url": "https://github.com/yieldapp" + }, + { + "name": "whitepaper", + "url": "https://yield.app/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF94b5C5651c888d928439aB6514B93944eEE6F48/logo.png b/blockchains/ethereum/assets/0xF94b5C5651c888d928439aB6514B93944eEE6F48/logo.png new file mode 100644 index 00000000..4a968c4f Binary files /dev/null and b/blockchains/ethereum/assets/0xF94b5C5651c888d928439aB6514B93944eEE6F48/logo.png differ diff --git a/blockchains/ethereum/assets/0xF94d09007ADc12c7a295c876db8CE690453815Cc/info.json b/blockchains/ethereum/assets/0xF94d09007ADc12c7a295c876db8CE690453815Cc/info.json new file mode 100644 index 00000000..8863e9ae --- /dev/null +++ b/blockchains/ethereum/assets/0xF94d09007ADc12c7a295c876db8CE690453815Cc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eye", + "symbol": "EYE", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF94d09007ADc12c7a295c876db8CE690453815Cc", + "status": "abandoned", + "id": "0xF94d09007ADc12c7a295c876db8CE690453815Cc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF94d09007ADc12c7a295c876db8CE690453815Cc/logo.png b/blockchains/ethereum/assets/0xF94d09007ADc12c7a295c876db8CE690453815Cc/logo.png new file mode 100644 index 00000000..fa10b580 Binary files /dev/null and b/blockchains/ethereum/assets/0xF94d09007ADc12c7a295c876db8CE690453815Cc/logo.png differ diff --git a/blockchains/ethereum/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json b/blockchains/ethereum/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json new file mode 100644 index 00000000..4b404fe8 --- /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 00000000..c866fd61 Binary files /dev/null and b/blockchains/ethereum/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/logo.png differ diff --git a/blockchains/ethereum/assets/0xF96459323030137703483B46fD59A71D712BF0aa/info.json b/blockchains/ethereum/assets/0xF96459323030137703483B46fD59A71D712BF0aa/info.json new file mode 100644 index 00000000..073557d7 --- /dev/null +++ b/blockchains/ethereum/assets/0xF96459323030137703483B46fD59A71D712BF0aa/info.json @@ -0,0 +1,11 @@ +{ + "name": "XTAKE", + "symbol": "XTK", + "type": "ERC20", + "decimals": 6, + "description": "xtake.finance aims to offer universal blockchain income powered by easy decentralized finance, passive income, yield farming, and liquidity mining.", + "website": "https://xtake.finance/", + "explorer": "https://etherscan.io/token/0xF96459323030137703483B46fD59A71D712BF0aa", + "status": "active", + "id": "0xF96459323030137703483B46fD59A71D712BF0aa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF96459323030137703483B46fD59A71D712BF0aa/logo.png b/blockchains/ethereum/assets/0xF96459323030137703483B46fD59A71D712BF0aa/logo.png new file mode 100644 index 00000000..bce13fc6 Binary files /dev/null and b/blockchains/ethereum/assets/0xF96459323030137703483B46fD59A71D712BF0aa/logo.png differ diff --git a/blockchains/ethereum/assets/0xF970b8E36e23F7fC3FD752EeA86f8Be8D83375A6/info.json b/blockchains/ethereum/assets/0xF970b8E36e23F7fC3FD752EeA86f8Be8D83375A6/info.json new file mode 100644 index 00000000..ef02579b --- /dev/null +++ b/blockchains/ethereum/assets/0xF970b8E36e23F7fC3FD752EeA86f8Be8D83375A6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ripio Credit Network", + "website": "https://ripiocredit.network", + "description": "A peer-to-peer credit network protocol based on co-signed smart contracts.", + "explorer": "https://etherscan.io/token/0xF970b8E36e23F7fC3FD752EeA86f8Be8D83375A6", + "type": "ERC20", + "symbol": "RCN", + "decimals": 18, + "status": "active", + "id": "0xF970b8E36e23F7fC3FD752EeA86f8Be8D83375A6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF970b8E36e23F7fC3FD752EeA86f8Be8D83375A6/logo.png b/blockchains/ethereum/assets/0xF970b8E36e23F7fC3FD752EeA86f8Be8D83375A6/logo.png new file mode 100755 index 00000000..961d0eee Binary files /dev/null and b/blockchains/ethereum/assets/0xF970b8E36e23F7fC3FD752EeA86f8Be8D83375A6/logo.png differ diff --git a/blockchains/ethereum/assets/0xF9745f5D0893DeAaC5D3c60cBd3dfd32ce0d2bAe/info.json b/blockchains/ethereum/assets/0xF9745f5D0893DeAaC5D3c60cBd3dfd32ce0d2bAe/info.json new file mode 100644 index 00000000..d12538b4 --- /dev/null +++ b/blockchains/ethereum/assets/0xF9745f5D0893DeAaC5D3c60cBd3dfd32ce0d2bAe/info.json @@ -0,0 +1,11 @@ +{ + "name": "ERCN", + "symbol": "ERCN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF9745f5D0893DeAaC5D3c60cBd3dfd32ce0d2bAe", + "status": "abandoned", + "id": "0xF9745f5D0893DeAaC5D3c60cBd3dfd32ce0d2bAe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF9745f5D0893DeAaC5D3c60cBd3dfd32ce0d2bAe/logo.png b/blockchains/ethereum/assets/0xF9745f5D0893DeAaC5D3c60cBd3dfd32ce0d2bAe/logo.png new file mode 100644 index 00000000..e15046a3 Binary files /dev/null and b/blockchains/ethereum/assets/0xF9745f5D0893DeAaC5D3c60cBd3dfd32ce0d2bAe/logo.png differ diff --git a/blockchains/ethereum/assets/0xF989E16233ad1aD0F2aF739547eF92745341F52B/info.json b/blockchains/ethereum/assets/0xF989E16233ad1aD0F2aF739547eF92745341F52B/info.json new file mode 100644 index 00000000..5c2035a0 --- /dev/null +++ b/blockchains/ethereum/assets/0xF989E16233ad1aD0F2aF739547eF92745341F52B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coin Fella Token", + "website": "https://coinfellatoken.org/", + "description": "The Coin Fella Projekt is all about decentralized financial services with a goal to facilitate financial management in Cryptospace with a specially developed wallet and currency/ERC20 token.", + "explorer": "https://etherscan.io/token/0xF989E16233ad1aD0F2aF739547eF92745341F52B", + "type": "ERC20", + "symbol": "CFT", + "decimals": 18, + "status": "active", + "id": "0xF989E16233ad1aD0F2aF739547eF92745341F52B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF989E16233ad1aD0F2aF739547eF92745341F52B/logo.png b/blockchains/ethereum/assets/0xF989E16233ad1aD0F2aF739547eF92745341F52B/logo.png new file mode 100644 index 00000000..d31a0cf9 Binary files /dev/null and b/blockchains/ethereum/assets/0xF989E16233ad1aD0F2aF739547eF92745341F52B/logo.png differ diff --git a/blockchains/ethereum/assets/0xF9933cb5f0397bf020Bb950C307e30dd8f62080f/info.json b/blockchains/ethereum/assets/0xF9933cb5f0397bf020Bb950C307e30dd8f62080f/info.json new file mode 100644 index 00000000..c6e471a9 --- /dev/null +++ b/blockchains/ethereum/assets/0xF9933cb5f0397bf020Bb950C307e30dd8f62080f/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZXTH", + "symbol": "ZXTH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://zxth.org/", + "explorer": "https://etherscan.io/token/0xF9933cb5f0397bf020Bb950C307e30dd8f62080f", + "status": "abandoned", + "id": "0xF9933cb5f0397bf020Bb950C307e30dd8f62080f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF9933cb5f0397bf020Bb950C307e30dd8f62080f/logo.png b/blockchains/ethereum/assets/0xF9933cb5f0397bf020Bb950C307e30dd8f62080f/logo.png new file mode 100644 index 00000000..56c2abbc Binary files /dev/null and b/blockchains/ethereum/assets/0xF9933cb5f0397bf020Bb950C307e30dd8f62080f/logo.png differ diff --git a/blockchains/ethereum/assets/0xF9986D445ceD31882377b5D6a5F58EaEa72288c3/info.json b/blockchains/ethereum/assets/0xF9986D445ceD31882377b5D6a5F58EaEa72288c3/info.json new file mode 100644 index 00000000..ffa57126 --- /dev/null +++ b/blockchains/ethereum/assets/0xF9986D445ceD31882377b5D6a5F58EaEa72288c3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Elrond", + "symbol": "ERD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF9986D445ceD31882377b5D6a5F58EaEa72288c3", + "status": "abandoned", + "id": "0xF9986D445ceD31882377b5D6a5F58EaEa72288c3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF9986D445ceD31882377b5D6a5F58EaEa72288c3/logo.png b/blockchains/ethereum/assets/0xF9986D445ceD31882377b5D6a5F58EaEa72288c3/logo.png new file mode 100644 index 00000000..4fb3e435 Binary files /dev/null and b/blockchains/ethereum/assets/0xF9986D445ceD31882377b5D6a5F58EaEa72288c3/logo.png differ diff --git a/blockchains/ethereum/assets/0xF9A2D7E60a3297E513317AD1d7Ce101CC4C6C8F6/info.json b/blockchains/ethereum/assets/0xF9A2D7E60a3297E513317AD1d7Ce101CC4C6C8F6/info.json new file mode 100644 index 00000000..25c64e00 --- /dev/null +++ b/blockchains/ethereum/assets/0xF9A2D7E60a3297E513317AD1d7Ce101CC4C6C8F6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Realio Network USD Stablecoin", + "website": "https://realio.fund", + "description": "rUSD is a USD pegged stablecoin, backed 1-to-1 with U.S. dollars held in an account with PrimeTrust, an institutional quality custodian and trust company based in the U.S.", + "explorer": "https://etherscan.io/token/0xf9a2d7e60a3297e513317ad1d7ce101cc4c6c8f6", + "type": "ERC20", + "symbol": "rUSD", + "decimals": 18, + "status": "active", + "id": "0xF9A2D7E60a3297E513317AD1d7Ce101CC4C6C8F6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF9A2D7E60a3297E513317AD1d7Ce101CC4C6C8F6/logo.png b/blockchains/ethereum/assets/0xF9A2D7E60a3297E513317AD1d7Ce101CC4C6C8F6/logo.png new file mode 100644 index 00000000..f7e998b3 Binary files /dev/null and b/blockchains/ethereum/assets/0xF9A2D7E60a3297E513317AD1d7Ce101CC4C6C8F6/logo.png differ diff --git a/blockchains/ethereum/assets/0xF9b540d1104e46E22Bde406F422cd152f205E523/info.json b/blockchains/ethereum/assets/0xF9b540d1104e46E22Bde406F422cd152f205E523/info.json new file mode 100644 index 00000000..f95713e1 --- /dev/null +++ b/blockchains/ethereum/assets/0xF9b540d1104e46E22Bde406F422cd152f205E523/info.json @@ -0,0 +1,11 @@ +{ + "name": "DABANKING", + "symbol": "DAA", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF9b540d1104e46E22Bde406F422cd152f205E523", + "status": "abandoned", + "id": "0xF9b540d1104e46E22Bde406F422cd152f205E523" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF9b540d1104e46E22Bde406F422cd152f205E523/logo.png b/blockchains/ethereum/assets/0xF9b540d1104e46E22Bde406F422cd152f205E523/logo.png new file mode 100644 index 00000000..f044f9c0 Binary files /dev/null and b/blockchains/ethereum/assets/0xF9b540d1104e46E22Bde406F422cd152f205E523/logo.png differ diff --git a/blockchains/ethereum/assets/0xF9bbDDbaBC8293fc2F1C328055B0Bf078ecEA24d/info.json b/blockchains/ethereum/assets/0xF9bbDDbaBC8293fc2F1C328055B0Bf078ecEA24d/info.json new file mode 100644 index 00000000..ee1ad968 --- /dev/null +++ b/blockchains/ethereum/assets/0xF9bbDDbaBC8293fc2F1C328055B0Bf078ecEA24d/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C560235", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF9bbDDbaBC8293fc2F1C328055B0Bf078ecEA24d", + "status": "abandoned", + "id": "0xF9bbDDbaBC8293fc2F1C328055B0Bf078ecEA24d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF9bbDDbaBC8293fc2F1C328055B0Bf078ecEA24d/logo.png b/blockchains/ethereum/assets/0xF9bbDDbaBC8293fc2F1C328055B0Bf078ecEA24d/logo.png new file mode 100644 index 00000000..fab7ccb5 Binary files /dev/null and b/blockchains/ethereum/assets/0xF9bbDDbaBC8293fc2F1C328055B0Bf078ecEA24d/logo.png differ diff --git a/blockchains/ethereum/assets/0xF9dfbdC37bf41Fd78E9C8eF195F5F21a9a175401/info.json b/blockchains/ethereum/assets/0xF9dfbdC37bf41Fd78E9C8eF195F5F21a9a175401/info.json new file mode 100644 index 00000000..a9b2249e --- /dev/null +++ b/blockchains/ethereum/assets/0xF9dfbdC37bf41Fd78E9C8eF195F5F21a9a175401/info.json @@ -0,0 +1,11 @@ +{ + "name": "istanbul", + "symbol": "IST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF9dfbdC37bf41Fd78E9C8eF195F5F21a9a175401", + "status": "abandoned", + "id": "0xF9dfbdC37bf41Fd78E9C8eF195F5F21a9a175401" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF9dfbdC37bf41Fd78E9C8eF195F5F21a9a175401/logo.png b/blockchains/ethereum/assets/0xF9dfbdC37bf41Fd78E9C8eF195F5F21a9a175401/logo.png new file mode 100644 index 00000000..437b51f3 Binary files /dev/null and b/blockchains/ethereum/assets/0xF9dfbdC37bf41Fd78E9C8eF195F5F21a9a175401/logo.png differ diff --git a/blockchains/ethereum/assets/0xF9e5aF7B42D31D51677c75bbBD37c1986eC79AEE/info.json b/blockchains/ethereum/assets/0xF9e5aF7B42D31D51677c75bbBD37c1986eC79AEE/info.json new file mode 100644 index 00000000..22c0af37 --- /dev/null +++ b/blockchains/ethereum/assets/0xF9e5aF7B42D31D51677c75bbBD37c1986eC79AEE/info.json @@ -0,0 +1,11 @@ +{ + "name": "QuickX Protocol", + "symbol": "QCX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.quickx.io/", + "explorer": "https://etherscan.io/token/0xF9e5aF7B42D31D51677c75bbBD37c1986eC79AEE", + "status": "abandoned", + "id": "0xF9e5aF7B42D31D51677c75bbBD37c1986eC79AEE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF9e5aF7B42D31D51677c75bbBD37c1986eC79AEE/logo.png b/blockchains/ethereum/assets/0xF9e5aF7B42D31D51677c75bbBD37c1986eC79AEE/logo.png new file mode 100644 index 00000000..d3464531 Binary files /dev/null and b/blockchains/ethereum/assets/0xF9e5aF7B42D31D51677c75bbBD37c1986eC79AEE/logo.png differ diff --git a/blockchains/ethereum/assets/0xF9fD7A89Bfb8A07A225080236E5Ca570Ee2a76A1/info.json b/blockchains/ethereum/assets/0xF9fD7A89Bfb8A07A225080236E5Ca570Ee2a76A1/info.json new file mode 100644 index 00000000..2aaf20b6 --- /dev/null +++ b/blockchains/ethereum/assets/0xF9fD7A89Bfb8A07A225080236E5Ca570Ee2a76A1/info.json @@ -0,0 +1,11 @@ +{ + "name": "KRWb Token", + "symbol": "KRWb", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xF9fD7A89Bfb8A07A225080236E5Ca570Ee2a76A1", + "status": "abandoned", + "id": "0xF9fD7A89Bfb8A07A225080236E5Ca570Ee2a76A1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF9fD7A89Bfb8A07A225080236E5Ca570Ee2a76A1/logo.png b/blockchains/ethereum/assets/0xF9fD7A89Bfb8A07A225080236E5Ca570Ee2a76A1/logo.png new file mode 100755 index 00000000..e222d465 Binary files /dev/null and b/blockchains/ethereum/assets/0xF9fD7A89Bfb8A07A225080236E5Ca570Ee2a76A1/logo.png differ diff --git a/blockchains/ethereum/assets/0xFA038e0aC4E64aD3ECcE84A46767be0D434a511a/info.json b/blockchains/ethereum/assets/0xFA038e0aC4E64aD3ECcE84A46767be0D434a511a/info.json new file mode 100644 index 00000000..12512a67 --- /dev/null +++ b/blockchains/ethereum/assets/0xFA038e0aC4E64aD3ECcE84A46767be0D434a511a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fundament", + "symbol": "FND", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFA038e0aC4E64aD3ECcE84A46767be0D434a511a", + "status": "abandoned", + "id": "0xFA038e0aC4E64aD3ECcE84A46767be0D434a511a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFA038e0aC4E64aD3ECcE84A46767be0D434a511a/logo.png b/blockchains/ethereum/assets/0xFA038e0aC4E64aD3ECcE84A46767be0D434a511a/logo.png new file mode 100644 index 00000000..a62ae130 Binary files /dev/null and b/blockchains/ethereum/assets/0xFA038e0aC4E64aD3ECcE84A46767be0D434a511a/logo.png differ diff --git a/blockchains/ethereum/assets/0xFA12040497bC7B6077Ea125Bad27dAA8b74E7eDC/info.json b/blockchains/ethereum/assets/0xFA12040497bC7B6077Ea125Bad27dAA8b74E7eDC/info.json new file mode 100644 index 00000000..e432bc20 --- /dev/null +++ b/blockchains/ethereum/assets/0xFA12040497bC7B6077Ea125Bad27dAA8b74E7eDC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wish Coin", + "symbol": "WIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFA12040497bC7B6077Ea125Bad27dAA8b74E7eDC", + "status": "abandoned", + "id": "0xFA12040497bC7B6077Ea125Bad27dAA8b74E7eDC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFA12040497bC7B6077Ea125Bad27dAA8b74E7eDC/logo.png b/blockchains/ethereum/assets/0xFA12040497bC7B6077Ea125Bad27dAA8b74E7eDC/logo.png new file mode 100644 index 00000000..5718ebc2 Binary files /dev/null and b/blockchains/ethereum/assets/0xFA12040497bC7B6077Ea125Bad27dAA8b74E7eDC/logo.png differ diff --git a/blockchains/ethereum/assets/0xFA1DE2Ee97e4c10C94C91Cb2b5062b89Fb140b82/info.json b/blockchains/ethereum/assets/0xFA1DE2Ee97e4c10C94C91Cb2b5062b89Fb140b82/info.json new file mode 100644 index 00000000..7eeb2e57 --- /dev/null +++ b/blockchains/ethereum/assets/0xFA1DE2Ee97e4c10C94C91Cb2b5062b89Fb140b82/info.json @@ -0,0 +1,11 @@ +{ + "name": "Education Credits", + "symbol": "EDC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFA1DE2Ee97e4c10C94C91Cb2b5062b89Fb140b82", + "status": "abandoned", + "id": "0xFA1DE2Ee97e4c10C94C91Cb2b5062b89Fb140b82" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFA1DE2Ee97e4c10C94C91Cb2b5062b89Fb140b82/logo.png b/blockchains/ethereum/assets/0xFA1DE2Ee97e4c10C94C91Cb2b5062b89Fb140b82/logo.png new file mode 100755 index 00000000..9373fd52 Binary files /dev/null and b/blockchains/ethereum/assets/0xFA1DE2Ee97e4c10C94C91Cb2b5062b89Fb140b82/logo.png differ diff --git a/blockchains/ethereum/assets/0xFA3118B34522580c35Ae27F6cf52da1dBb756288/info.json b/blockchains/ethereum/assets/0xFA3118B34522580c35Ae27F6cf52da1dBb756288/info.json new file mode 100644 index 00000000..c293419a --- /dev/null +++ b/blockchains/ethereum/assets/0xFA3118B34522580c35Ae27F6cf52da1dBb756288/info.json @@ -0,0 +1,11 @@ +{ + "name": "LinkEye Token", + "symbol": "LET", + "type": "ERC20", + "decimals": 6, + "description": "LinkEye is a Hyperledger Fabric based consortium-blockchain solution tofacilitate global credit alliance. Utilizating blockchain technology and credit economy model enables Linkeye to create a shared list of untrusted profiles within the credit alliance through connecting isolated islands of credit data, creating a comprehensive, reliable credit database. ", + "website": "https://www.linkeye.com/", + "explorer": "https://etherscan.io/token/0xFA3118B34522580c35Ae27F6cf52da1dBb756288", + "status": "active", + "id": "0xFA3118B34522580c35Ae27F6cf52da1dBb756288" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFA3118B34522580c35Ae27F6cf52da1dBb756288/logo.png b/blockchains/ethereum/assets/0xFA3118B34522580c35Ae27F6cf52da1dBb756288/logo.png new file mode 100644 index 00000000..5c17ba49 Binary files /dev/null and b/blockchains/ethereum/assets/0xFA3118B34522580c35Ae27F6cf52da1dBb756288/logo.png differ diff --git a/blockchains/ethereum/assets/0xFA456Cf55250A839088b27EE32A424d7DAcB54Ff/info.json b/blockchains/ethereum/assets/0xFA456Cf55250A839088b27EE32A424d7DAcB54Ff/info.json new file mode 100644 index 00000000..02754518 --- /dev/null +++ b/blockchains/ethereum/assets/0xFA456Cf55250A839088b27EE32A424d7DAcB54Ff/info.json @@ -0,0 +1,11 @@ +{ + "name": "blocktrade.com", + "symbol": "BTT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://blocktrade.com/", + "explorer": "https://etherscan.io/token/0xFA456Cf55250A839088b27EE32A424d7DAcB54Ff", + "status": "abandoned", + "id": "0xFA456Cf55250A839088b27EE32A424d7DAcB54Ff" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFA456Cf55250A839088b27EE32A424d7DAcB54Ff/logo.png b/blockchains/ethereum/assets/0xFA456Cf55250A839088b27EE32A424d7DAcB54Ff/logo.png new file mode 100755 index 00000000..43250c3e Binary files /dev/null and b/blockchains/ethereum/assets/0xFA456Cf55250A839088b27EE32A424d7DAcB54Ff/logo.png differ diff --git a/blockchains/ethereum/assets/0xFA75b65E52A6CBC5503f45f4AbBA2C5df4688875/info.json b/blockchains/ethereum/assets/0xFA75b65E52A6CBC5503f45f4AbBA2C5df4688875/info.json new file mode 100644 index 00000000..7a3e385f --- /dev/null +++ b/blockchains/ethereum/assets/0xFA75b65E52A6CBC5503f45f4AbBA2C5df4688875/info.json @@ -0,0 +1,11 @@ +{ + "name": "Swytch Energy Token", + "symbol": "SET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFA75b65E52A6CBC5503f45f4AbBA2C5df4688875", + "status": "abandoned", + "id": "0xFA75b65E52A6CBC5503f45f4AbBA2C5df4688875" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFA75b65E52A6CBC5503f45f4AbBA2C5df4688875/logo.png b/blockchains/ethereum/assets/0xFA75b65E52A6CBC5503f45f4AbBA2C5df4688875/logo.png new file mode 100644 index 00000000..e954413b Binary files /dev/null and b/blockchains/ethereum/assets/0xFA75b65E52A6CBC5503f45f4AbBA2C5df4688875/logo.png differ diff --git a/blockchains/ethereum/assets/0xFA78Cf92c65D6515c0bA57b0b0fd207DBcbEB4cD/info.json b/blockchains/ethereum/assets/0xFA78Cf92c65D6515c0bA57b0b0fd207DBcbEB4cD/info.json new file mode 100644 index 00000000..48b2ec90 --- /dev/null +++ b/blockchains/ethereum/assets/0xFA78Cf92c65D6515c0bA57b0b0fd207DBcbEB4cD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nickel", + "symbol": "CSC-NI", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFA78Cf92c65D6515c0bA57b0b0fd207DBcbEB4cD", + "status": "abandoned", + "id": "0xFA78Cf92c65D6515c0bA57b0b0fd207DBcbEB4cD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFA78Cf92c65D6515c0bA57b0b0fd207DBcbEB4cD/logo.png b/blockchains/ethereum/assets/0xFA78Cf92c65D6515c0bA57b0b0fd207DBcbEB4cD/logo.png new file mode 100755 index 00000000..b6449ef4 Binary files /dev/null and b/blockchains/ethereum/assets/0xFA78Cf92c65D6515c0bA57b0b0fd207DBcbEB4cD/logo.png differ diff --git a/blockchains/ethereum/assets/0xFA9f0Bf8baa9A3D5E0a8E5c0AeAF186ACaBef63D/info.json b/blockchains/ethereum/assets/0xFA9f0Bf8baa9A3D5E0a8E5c0AeAF186ACaBef63D/info.json new file mode 100644 index 00000000..0f436604 --- /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 00000000..96cbf3b0 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 new file mode 100644 index 00000000..6b338cff --- /dev/null +++ b/blockchains/ethereum/assets/0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197/info.json @@ -0,0 +1,24 @@ +{ + "name": "GREY", + "symbol": "GREY", + "type": "ERC20", + "decimals": 4, + "description": "$GREY is the cryptocurrency for members of The Grey Area. The Grey Area is a crypto community including designers, founders, thinkers and creatives of all kinds.", + "website": "https://grey.supply/", + "explorer": "https://etherscan.io/token/0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197", + "status": "active", + "id": "0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197", + "links": [ + { + "name": "x", + "url": "https://x.com/GREY_____SUPPLY" + }, + { + "name": "discord", + "url": "https://discord.com/invite/HuG98Kw8T5" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197/logo.png b/blockchains/ethereum/assets/0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197/logo.png new file mode 100644 index 00000000..6f735c25 Binary files /dev/null and b/blockchains/ethereum/assets/0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197/logo.png differ diff --git a/blockchains/ethereum/assets/0xFADe17a07ba3B480aA1714c3724a52D4C57d410E/info.json b/blockchains/ethereum/assets/0xFADe17a07ba3B480aA1714c3724a52D4C57d410E/info.json new file mode 100644 index 00000000..36ec869e --- /dev/null +++ b/blockchains/ethereum/assets/0xFADe17a07ba3B480aA1714c3724a52D4C57d410E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vegan", + "symbol": "VEGAN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFADe17a07ba3B480aA1714c3724a52D4C57d410E", + "status": "abandoned", + "id": "0xFADe17a07ba3B480aA1714c3724a52D4C57d410E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFADe17a07ba3B480aA1714c3724a52D4C57d410E/logo.png b/blockchains/ethereum/assets/0xFADe17a07ba3B480aA1714c3724a52D4C57d410E/logo.png new file mode 100644 index 00000000..e9b6433c Binary files /dev/null and b/blockchains/ethereum/assets/0xFADe17a07ba3B480aA1714c3724a52D4C57d410E/logo.png differ diff --git a/blockchains/ethereum/assets/0xFAd0bAfc9859E85687091Cc18C63f07fB14a453f/info.json b/blockchains/ethereum/assets/0xFAd0bAfc9859E85687091Cc18C63f07fB14a453f/info.json new file mode 100644 index 00000000..12299146 --- /dev/null +++ b/blockchains/ethereum/assets/0xFAd0bAfc9859E85687091Cc18C63f07fB14a453f/info.json @@ -0,0 +1,11 @@ +{ + "name": "FIN ERC20 Token", + "symbol": "FIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFAd0bAfc9859E85687091Cc18C63f07fB14a453f", + "status": "abandoned", + "id": "0xFAd0bAfc9859E85687091Cc18C63f07fB14a453f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFAd0bAfc9859E85687091Cc18C63f07fB14a453f/logo.png b/blockchains/ethereum/assets/0xFAd0bAfc9859E85687091Cc18C63f07fB14a453f/logo.png new file mode 100755 index 00000000..630b5c0c Binary files /dev/null and b/blockchains/ethereum/assets/0xFAd0bAfc9859E85687091Cc18C63f07fB14a453f/logo.png differ diff --git a/blockchains/ethereum/assets/0xFAd572db566E5234AC9Fc3d570c4EdC0050eAA92/info.json b/blockchains/ethereum/assets/0xFAd572db566E5234AC9Fc3d570c4EdC0050eAA92/info.json new file mode 100644 index 00000000..07f5582c --- /dev/null +++ b/blockchains/ethereum/assets/0xFAd572db566E5234AC9Fc3d570c4EdC0050eAA92/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bytether", + "symbol": "BTH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFAd572db566E5234AC9Fc3d570c4EdC0050eAA92", + "status": "abandoned", + "id": "0xFAd572db566E5234AC9Fc3d570c4EdC0050eAA92" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFAd572db566E5234AC9Fc3d570c4EdC0050eAA92/logo.png b/blockchains/ethereum/assets/0xFAd572db566E5234AC9Fc3d570c4EdC0050eAA92/logo.png new file mode 100755 index 00000000..a3401a69 Binary files /dev/null and b/blockchains/ethereum/assets/0xFAd572db566E5234AC9Fc3d570c4EdC0050eAA92/logo.png differ diff --git a/blockchains/ethereum/assets/0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0/info.json b/blockchains/ethereum/assets/0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0/info.json new file mode 100644 index 00000000..bd4f7317 --- /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 00000000..36082c9b 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 new file mode 100644 index 00000000..c67aae4f --- /dev/null +++ b/blockchains/ethereum/assets/0xFB19C03a02a519a44542343803F3D42578CBc243/info.json @@ -0,0 +1,25 @@ +{ + "name": "CR Coin", + "type": "ERC20", + "symbol": "CRC", + "decimals": 8, + "website": "https://crcoinico.com/", + "description": "CR Coin es un token digital con la principal función de ser un medio de pago digital, rápido, seguro y sin intermediarios lo cual puede conocerse también como un “Token de Utilidad” ya que nuestro principal enfoque es darle la mayor cantidad de usos posibles a CR Coin y así nuestros usuarios lo puedan utilizar para comprar comida, ropa, servicios y demás.", + "explorer": "https://etherscan.io/token/0xfb19c03a02a519a44542343803f3d42578cbc243", + "status": "active", + "id": "0xFB19C03a02a519a44542343803F3D42578CBc243", + "links": [ + { + "name": "telegram", + "url": "https://t.me/joinchat/4mPn7zVK0vgyYmQx" + }, + { + "name": "x", + "url": "https://x.com/crcointoken" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/es/monedas/cr-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFB19C03a02a519a44542343803F3D42578CBc243/logo.png b/blockchains/ethereum/assets/0xFB19C03a02a519a44542343803F3D42578CBc243/logo.png new file mode 100644 index 00000000..22db40f4 Binary files /dev/null and b/blockchains/ethereum/assets/0xFB19C03a02a519a44542343803F3D42578CBc243/logo.png differ diff --git a/blockchains/ethereum/assets/0xFB1e5F5e984C28Ad7E228CDaA1F8A0919BB6a09B/info.json b/blockchains/ethereum/assets/0xFB1e5F5e984C28Ad7E228CDaA1F8A0919BB6a09B/info.json new file mode 100644 index 00000000..0af8f170 --- /dev/null +++ b/blockchains/ethereum/assets/0xFB1e5F5e984C28Ad7E228CDaA1F8A0919BB6a09B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Galaxy eSolutions", + "symbol": "GES", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://galaxy-esolutions.com/", + "explorer": "https://etherscan.io/token/0xFB1e5F5e984C28Ad7E228CDaA1F8A0919BB6a09B", + "status": "abandoned", + "id": "0xFB1e5F5e984C28Ad7E228CDaA1F8A0919BB6a09B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFB1e5F5e984C28Ad7E228CDaA1F8A0919BB6a09B/logo.png b/blockchains/ethereum/assets/0xFB1e5F5e984C28Ad7E228CDaA1F8A0919BB6a09B/logo.png new file mode 100644 index 00000000..32a3c21e Binary files /dev/null and b/blockchains/ethereum/assets/0xFB1e5F5e984C28Ad7E228CDaA1F8A0919BB6a09B/logo.png differ diff --git a/blockchains/ethereum/assets/0xFBFb153343f9f8330A2777c2b0DA5216E5b5626d/info.json b/blockchains/ethereum/assets/0xFBFb153343f9f8330A2777c2b0DA5216E5b5626d/info.json new file mode 100644 index 00000000..39a50dbb --- /dev/null +++ b/blockchains/ethereum/assets/0xFBFb153343f9f8330A2777c2b0DA5216E5b5626d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Artemischain", + "symbol": "ATC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFBFb153343f9f8330A2777c2b0DA5216E5b5626d", + "status": "abandoned", + "id": "0xFBFb153343f9f8330A2777c2b0DA5216E5b5626d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFBFb153343f9f8330A2777c2b0DA5216E5b5626d/logo.png b/blockchains/ethereum/assets/0xFBFb153343f9f8330A2777c2b0DA5216E5b5626d/logo.png new file mode 100644 index 00000000..92db3bdc Binary files /dev/null and b/blockchains/ethereum/assets/0xFBFb153343f9f8330A2777c2b0DA5216E5b5626d/logo.png differ diff --git a/blockchains/ethereum/assets/0xFBc3c8Aad80B5934D134e2CCE065702FF254AD7D/info.json b/blockchains/ethereum/assets/0xFBc3c8Aad80B5934D134e2CCE065702FF254AD7D/info.json new file mode 100644 index 00000000..733f750a --- /dev/null +++ b/blockchains/ethereum/assets/0xFBc3c8Aad80B5934D134e2CCE065702FF254AD7D/info.json @@ -0,0 +1,11 @@ +{ + "name": "CHAOEX", + "symbol": "CHEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFBc3c8Aad80B5934D134e2CCE065702FF254AD7D", + "status": "abandoned", + "id": "0xFBc3c8Aad80B5934D134e2CCE065702FF254AD7D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFBc3c8Aad80B5934D134e2CCE065702FF254AD7D/logo.png b/blockchains/ethereum/assets/0xFBc3c8Aad80B5934D134e2CCE065702FF254AD7D/logo.png new file mode 100644 index 00000000..5b2a5b9e Binary files /dev/null and b/blockchains/ethereum/assets/0xFBc3c8Aad80B5934D134e2CCE065702FF254AD7D/logo.png differ diff --git a/blockchains/ethereum/assets/0xFBcECb002177e530695B8976638fBd18d2038C3C/info.json b/blockchains/ethereum/assets/0xFBcECb002177e530695B8976638fBd18d2038C3C/info.json new file mode 100644 index 00000000..990798be --- /dev/null +++ b/blockchains/ethereum/assets/0xFBcECb002177e530695B8976638fBd18d2038C3C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Belifex", + "website": "https://belifex.com/", + "description": "Belifex is a Self Funded Blockchain Project with decentralizing solutions (DEX, Payment Gateway, Wallet and many others) all based on ERC-20 BEFX token.", + "explorer": "https://etherscan.io/token/0xfbcecb002177e530695b8976638fbd18d2038c3c", + "type": "ERC20", + "symbol": "BEFX", + "decimals": 8, + "status": "active", + "id": "0xFBcECb002177e530695B8976638fBd18d2038C3C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFBcECb002177e530695B8976638fBd18d2038C3C/logo.png b/blockchains/ethereum/assets/0xFBcECb002177e530695B8976638fBd18d2038C3C/logo.png new file mode 100644 index 00000000..d6a9de42 Binary files /dev/null and b/blockchains/ethereum/assets/0xFBcECb002177e530695B8976638fBd18d2038C3C/logo.png differ diff --git a/blockchains/ethereum/assets/0xFC003a764a7B5054Cc6fDb6b511F35deC8022751/info.json b/blockchains/ethereum/assets/0xFC003a764a7B5054Cc6fDb6b511F35deC8022751/info.json new file mode 100644 index 00000000..e3446eb7 --- /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 00000000..312aef28 Binary files /dev/null and b/blockchains/ethereum/assets/0xFC003a764a7B5054Cc6fDb6b511F35deC8022751/logo.png differ diff --git a/blockchains/ethereum/assets/0xFC29B6e626B67776675FfF55d5BC0452d042F434/info.json b/blockchains/ethereum/assets/0xFC29B6e626B67776675FfF55d5BC0452d042F434/info.json new file mode 100644 index 00000000..eac10e94 --- /dev/null +++ b/blockchains/ethereum/assets/0xFC29B6e626B67776675FfF55d5BC0452d042F434/info.json @@ -0,0 +1,11 @@ +{ + "name": "BHEX Token", + "website": "https://bhex.com", + "description": "BHT is the token issued by the BHEX trading platform ecosystem.", + "explorer": "https://etherscan.io/token/0xFC29B6e626B67776675FfF55d5BC0452d042F434", + "type": "ERC20", + "symbol": "BHT", + "decimals": 18, + "status": "active", + "id": "0xFC29B6e626B67776675FfF55d5BC0452d042F434" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFC29B6e626B67776675FfF55d5BC0452d042F434/logo.png b/blockchains/ethereum/assets/0xFC29B6e626B67776675FfF55d5BC0452d042F434/logo.png new file mode 100644 index 00000000..5ae8f494 Binary files /dev/null and b/blockchains/ethereum/assets/0xFC29B6e626B67776675FfF55d5BC0452d042F434/logo.png differ diff --git a/blockchains/ethereum/assets/0xFC4B8ED459e00e5400be803A9BB3954234FD50e3/info.json b/blockchains/ethereum/assets/0xFC4B8ED459e00e5400be803A9BB3954234FD50e3/info.json new file mode 100644 index 00000000..fb0c2f1d --- /dev/null +++ b/blockchains/ethereum/assets/0xFC4B8ED459e00e5400be803A9BB3954234FD50e3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave WBTC V1", + "symbol": "aWBTC V1", + "type": "ERC20", + "decimals": 8, + "description": "Aave WBTC V1 is an interest bearing token pegged 1:1 to the underlying WBTC deposited in Aave V1. aWBTC V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xFC4B8ED459e00e5400be803A9BB3954234FD50e3", + "status": "abandoned", + "id": "0xFC4B8ED459e00e5400be803A9BB3954234FD50e3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFC4B8ED459e00e5400be803A9BB3954234FD50e3/logo.png b/blockchains/ethereum/assets/0xFC4B8ED459e00e5400be803A9BB3954234FD50e3/logo.png new file mode 100644 index 00000000..7cab5c08 Binary files /dev/null and b/blockchains/ethereum/assets/0xFC4B8ED459e00e5400be803A9BB3954234FD50e3/logo.png differ diff --git a/blockchains/ethereum/assets/0xFC97655AE3714de60B518B7EA225b240AbF9d24E/info.json b/blockchains/ethereum/assets/0xFC97655AE3714de60B518B7EA225b240AbF9d24E/info.json new file mode 100644 index 00000000..f2dd9731 --- /dev/null +++ b/blockchains/ethereum/assets/0xFC97655AE3714de60B518B7EA225b240AbF9d24E/info.json @@ -0,0 +1,11 @@ +{ + "name": "HongKongCoin", + "symbol": "HKCN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFC97655AE3714de60B518B7EA225b240AbF9d24E", + "status": "abandoned", + "id": "0xFC97655AE3714de60B518B7EA225b240AbF9d24E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFC97655AE3714de60B518B7EA225b240AbF9d24E/logo.png b/blockchains/ethereum/assets/0xFC97655AE3714de60B518B7EA225b240AbF9d24E/logo.png new file mode 100755 index 00000000..947e49f5 Binary files /dev/null and b/blockchains/ethereum/assets/0xFC97655AE3714de60B518B7EA225b240AbF9d24E/logo.png differ diff --git a/blockchains/ethereum/assets/0xFCCe9526E030F1691966d5A651F5EbE1A5B4C8E4/info.json b/blockchains/ethereum/assets/0xFCCe9526E030F1691966d5A651F5EbE1A5B4C8E4/info.json new file mode 100644 index 00000000..67dd43a2 --- /dev/null +++ b/blockchains/ethereum/assets/0xFCCe9526E030F1691966d5A651F5EbE1A5B4C8E4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Onyx S&P 500", + "symbol": "OSPV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFCCe9526E030F1691966d5A651F5EbE1A5B4C8E4", + "status": "abandoned", + "id": "0xFCCe9526E030F1691966d5A651F5EbE1A5B4C8E4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFCCe9526E030F1691966d5A651F5EbE1A5B4C8E4/logo.png b/blockchains/ethereum/assets/0xFCCe9526E030F1691966d5A651F5EbE1A5B4C8E4/logo.png new file mode 100644 index 00000000..8bd2d981 Binary files /dev/null and b/blockchains/ethereum/assets/0xFCCe9526E030F1691966d5A651F5EbE1A5B4C8E4/logo.png differ diff --git a/blockchains/ethereum/assets/0xFD1ccd0f8FABAB9B5b81173De82DE4A1566aC53f/info.json b/blockchains/ethereum/assets/0xFD1ccd0f8FABAB9B5b81173De82DE4A1566aC53f/info.json new file mode 100644 index 00000000..01aa9dc6 --- /dev/null +++ b/blockchains/ethereum/assets/0xFD1ccd0f8FABAB9B5b81173De82DE4A1566aC53f/info.json @@ -0,0 +1,11 @@ +{ + "name": "ECOSCU", + "symbol": "ECOSCU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFD1ccd0f8FABAB9B5b81173De82DE4A1566aC53f", + "status": "abandoned", + "id": "0xFD1ccd0f8FABAB9B5b81173De82DE4A1566aC53f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFD1ccd0f8FABAB9B5b81173De82DE4A1566aC53f/logo.png b/blockchains/ethereum/assets/0xFD1ccd0f8FABAB9B5b81173De82DE4A1566aC53f/logo.png new file mode 100644 index 00000000..c2f49220 Binary files /dev/null and b/blockchains/ethereum/assets/0xFD1ccd0f8FABAB9B5b81173De82DE4A1566aC53f/logo.png differ diff --git a/blockchains/ethereum/assets/0xFD25676Fc2c4421778B18Ec7Ab86E7C5701DF187/info.json b/blockchains/ethereum/assets/0xFD25676Fc2c4421778B18Ec7Ab86E7C5701DF187/info.json new file mode 100644 index 00000000..5bcf0c67 --- /dev/null +++ b/blockchains/ethereum/assets/0xFD25676Fc2c4421778B18Ec7Ab86E7C5701DF187/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alchemy", + "symbol": "Alchemy", + "type": "ERC20", + "decimals": 18, + "description": "Alchemy is a decentralized data model training platform based on blockchain security encryption operation and a random forest training model.", + "website": "https://alchemy-ai.com/", + "explorer": "https://etherscan.io/token/0xFD25676Fc2c4421778B18Ec7Ab86E7C5701DF187", + "status": "active", + "id": "0xFD25676Fc2c4421778B18Ec7Ab86E7C5701DF187" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFD25676Fc2c4421778B18Ec7Ab86E7C5701DF187/logo.png b/blockchains/ethereum/assets/0xFD25676Fc2c4421778B18Ec7Ab86E7C5701DF187/logo.png new file mode 100644 index 00000000..0ea4ac0c Binary files /dev/null and b/blockchains/ethereum/assets/0xFD25676Fc2c4421778B18Ec7Ab86E7C5701DF187/logo.png differ diff --git a/blockchains/ethereum/assets/0xFD6C31bb6F05Fc8dB64F4b740Ab758605c271FD8/info.json b/blockchains/ethereum/assets/0xFD6C31bb6F05Fc8dB64F4b740Ab758605c271FD8/info.json new file mode 100644 index 00000000..a7cc1da2 --- /dev/null +++ b/blockchains/ethereum/assets/0xFD6C31bb6F05Fc8dB64F4b740Ab758605c271FD8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Contracoin", + "symbol": "CTCN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://contracoin.asia", + "explorer": "https://etherscan.io/token/0xFD6C31bb6F05Fc8dB64F4b740Ab758605c271FD8", + "status": "active", + "id": "0xFD6C31bb6F05Fc8dB64F4b740Ab758605c271FD8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFD6C31bb6F05Fc8dB64F4b740Ab758605c271FD8/logo.png b/blockchains/ethereum/assets/0xFD6C31bb6F05Fc8dB64F4b740Ab758605c271FD8/logo.png new file mode 100644 index 00000000..4b52c1d7 Binary files /dev/null and b/blockchains/ethereum/assets/0xFD6C31bb6F05Fc8dB64F4b740Ab758605c271FD8/logo.png differ diff --git a/blockchains/ethereum/assets/0xFD77E1C8b42E661fdC0a29cc467a8F51B07766F4/info.json b/blockchains/ethereum/assets/0xFD77E1C8b42E661fdC0a29cc467a8F51B07766F4/info.json new file mode 100644 index 00000000..05de4917 --- /dev/null +++ b/blockchains/ethereum/assets/0xFD77E1C8b42E661fdC0a29cc467a8F51B07766F4/info.json @@ -0,0 +1,11 @@ +{ + "name": "B Network Cash", + "symbol": "BNC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFD77E1C8b42E661fdC0a29cc467a8F51B07766F4", + "status": "abandoned", + "id": "0xFD77E1C8b42E661fdC0a29cc467a8F51B07766F4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFD77E1C8b42E661fdC0a29cc467a8F51B07766F4/logo.png b/blockchains/ethereum/assets/0xFD77E1C8b42E661fdC0a29cc467a8F51B07766F4/logo.png new file mode 100644 index 00000000..f22dedb6 Binary files /dev/null and b/blockchains/ethereum/assets/0xFD77E1C8b42E661fdC0a29cc467a8F51B07766F4/logo.png differ diff --git a/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/info.json b/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/info.json new file mode 100644 index 00000000..48c1e65c --- /dev/null +++ b/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/info.json @@ -0,0 +1,25 @@ +{ + "name": "Ethereum Meta", + "symbol": "ETHM", + "type": "ERC20", + "decimals": 18, + "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": "abandoned", + "id": "0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794", + "links": [ + { + "name": "x", + "url": "https://x.com/EthereumMeta" + }, + { + "name": "telegram", + "url": "https://t.me/ethereummeta" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ethereum-meta/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFE16A9e3904f928CC6A34507d6d667F731C66Bb0/info.json b/blockchains/ethereum/assets/0xFE16A9e3904f928CC6A34507d6d667F731C66Bb0/info.json new file mode 100644 index 00000000..9d3ff877 --- /dev/null +++ b/blockchains/ethereum/assets/0xFE16A9e3904f928CC6A34507d6d667F731C66Bb0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Easy Deals", + "symbol": "EDBT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFE16A9e3904f928CC6A34507d6d667F731C66Bb0", + "status": "abandoned", + "id": "0xFE16A9e3904f928CC6A34507d6d667F731C66Bb0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFE16A9e3904f928CC6A34507d6d667F731C66Bb0/logo.png b/blockchains/ethereum/assets/0xFE16A9e3904f928CC6A34507d6d667F731C66Bb0/logo.png new file mode 100644 index 00000000..fb1db9f7 Binary files /dev/null and b/blockchains/ethereum/assets/0xFE16A9e3904f928CC6A34507d6d667F731C66Bb0/logo.png differ diff --git a/blockchains/ethereum/assets/0xFE1bc038bB3535Cbfb13886ea23f7c4032996c59/info.json b/blockchains/ethereum/assets/0xFE1bc038bB3535Cbfb13886ea23f7c4032996c59/info.json new file mode 100644 index 00000000..7d281f65 --- /dev/null +++ b/blockchains/ethereum/assets/0xFE1bc038bB3535Cbfb13886ea23f7c4032996c59/info.json @@ -0,0 +1,11 @@ +{ + "name": " DoneDonate", + "symbol": "DDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFE1bc038bB3535Cbfb13886ea23f7c4032996c59", + "status": "abandoned", + "id": "0xFE1bc038bB3535Cbfb13886ea23f7c4032996c59" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFE1bc038bB3535Cbfb13886ea23f7c4032996c59/logo.png b/blockchains/ethereum/assets/0xFE1bc038bB3535Cbfb13886ea23f7c4032996c59/logo.png new file mode 100644 index 00000000..1f497050 Binary files /dev/null and b/blockchains/ethereum/assets/0xFE1bc038bB3535Cbfb13886ea23f7c4032996c59/logo.png differ diff --git a/blockchains/ethereum/assets/0xFE39e6a32AcD2aF7955Cb3D406Ba2B55C901f247/info.json b/blockchains/ethereum/assets/0xFE39e6a32AcD2aF7955Cb3D406Ba2B55C901f247/info.json new file mode 100644 index 00000000..f5ec1d74 --- /dev/null +++ b/blockchains/ethereum/assets/0xFE39e6a32AcD2aF7955Cb3D406Ba2B55C901f247/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZBG Token", + "website": "https://zbg.com", + "description": "ZBG Token is an exchange based token and native currency of the ZBG crypto exchange.", + "explorer": "https://etherscan.io/token/0xFE39e6a32AcD2aF7955Cb3D406Ba2B55C901f247", + "type": "ERC20", + "symbol": "ZT", + "decimals": 18, + "status": "active", + "id": "0xFE39e6a32AcD2aF7955Cb3D406Ba2B55C901f247" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFE39e6a32AcD2aF7955Cb3D406Ba2B55C901f247/logo.png b/blockchains/ethereum/assets/0xFE39e6a32AcD2aF7955Cb3D406Ba2B55C901f247/logo.png new file mode 100644 index 00000000..f3eb3f21 Binary files /dev/null and b/blockchains/ethereum/assets/0xFE39e6a32AcD2aF7955Cb3D406Ba2B55C901f247/logo.png differ diff --git a/blockchains/ethereum/assets/0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf/info.json b/blockchains/ethereum/assets/0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf/info.json new file mode 100644 index 00000000..a657e28d --- /dev/null +++ b/blockchains/ethereum/assets/0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf/info.json @@ -0,0 +1,30 @@ +{ + "name": "Reef", + "website": "https://reef.finance", + "description": "Reef Finance is a multi-chain smart yield engine and liquidity aggregator where any DeFi protocol can integrate into.", + "explorer": "https://etherscan.io/token/0xfe3e6a25e6b192a42a44ecddcd13796471735acf", + "research": "https://research.binance.com/en/projects/reef-finance", + "type": "ERC20", + "symbol": "REEF", + "decimals": 18, + "status": "active", + "id": "0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf", + "links": [ + { + "name": "x", + "url": "https://x.com/ReefDeFi" + }, + { + "name": "telegram", + "url": "https://t.me/reefdefi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/reef-finance/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/reef/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf/logo.png b/blockchains/ethereum/assets/0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf/logo.png new file mode 100644 index 00000000..7eed97f7 Binary files /dev/null and b/blockchains/ethereum/assets/0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf/logo.png differ diff --git a/blockchains/ethereum/assets/0xFE76BE9cEC465ed3219a9972c21655D57d21aec6/info.json b/blockchains/ethereum/assets/0xFE76BE9cEC465ed3219a9972c21655D57d21aec6/info.json new file mode 100644 index 00000000..8237b1d2 --- /dev/null +++ b/blockchains/ethereum/assets/0xFE76BE9cEC465ed3219a9972c21655D57d21aec6/info.json @@ -0,0 +1,11 @@ +{ + "name": "PalletOneToken", + "symbol": "PTN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://pallet.one/", + "explorer": "https://etherscan.io/token/0xFE76BE9cEC465ed3219a9972c21655D57d21aec6", + "status": "abandoned", + "id": "0xFE76BE9cEC465ed3219a9972c21655D57d21aec6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFE76BE9cEC465ed3219a9972c21655D57d21aec6/logo.png b/blockchains/ethereum/assets/0xFE76BE9cEC465ed3219a9972c21655D57d21aec6/logo.png new file mode 100644 index 00000000..32c2896c Binary files /dev/null and b/blockchains/ethereum/assets/0xFE76BE9cEC465ed3219a9972c21655D57d21aec6/logo.png differ diff --git a/blockchains/ethereum/assets/0xFEF3884b603C33EF8eD4183346E093A173C94da6/info.json b/blockchains/ethereum/assets/0xFEF3884b603C33EF8eD4183346E093A173C94da6/info.json new file mode 100644 index 00000000..3f703f99 --- /dev/null +++ b/blockchains/ethereum/assets/0xFEF3884b603C33EF8eD4183346E093A173C94da6/info.json @@ -0,0 +1,11 @@ +{ + "name": "MetaMorph", + "symbol": "METM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://metamorph.pro/", + "explorer": "https://etherscan.io/token/0xFEF3884b603C33EF8eD4183346E093A173C94da6", + "status": "active", + "id": "0xFEF3884b603C33EF8eD4183346E093A173C94da6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFEF3884b603C33EF8eD4183346E093A173C94da6/logo.png b/blockchains/ethereum/assets/0xFEF3884b603C33EF8eD4183346E093A173C94da6/logo.png new file mode 100644 index 00000000..cf1dc2f5 Binary files /dev/null and b/blockchains/ethereum/assets/0xFEF3884b603C33EF8eD4183346E093A173C94da6/logo.png differ diff --git a/blockchains/ethereum/assets/0xFEFf7a377A86462F5a2A872009722C154707F09e/info.json b/blockchains/ethereum/assets/0xFEFf7a377A86462F5a2A872009722C154707F09e/info.json new file mode 100644 index 00000000..7399f840 --- /dev/null +++ b/blockchains/ethereum/assets/0xFEFf7a377A86462F5a2A872009722C154707F09e/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core MSCI EAFE ETF (Ondo Tokenized)", + "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 00000000..8adf5788 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 new file mode 100644 index 00000000..548206fb --- /dev/null +++ b/blockchains/ethereum/assets/0xFEbc25f4c5fc3E90a7eFaE0b4d436A77c9e131B3/info.json @@ -0,0 +1,33 @@ +{ + "name": "Cezo OS", + "website": "https://cezo.io/", + "description": "CEZO is a decentralized OS infrastructure to enable full ecosystem required by complex computations of DApps.", + "explorer": "https://etherscan.io/token/0xFEbc25f4c5fc3E90a7eFaE0b4d436A77c9e131B3", + "type": "ERC20", + "symbol": "CEZ", + "decimals": 18, + "status": "active", + "id": "0xFEbc25f4c5fc3E90a7eFaE0b4d436A77c9e131B3", + "links": [ + { + "name": "github", + "url": "https://github.com/cezo-os" + }, + { + "name": "x", + "url": "https://x.com/cezo_io" + }, + { + "name": "telegram", + "url": "https://t.me/cezo_io" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/cezo/" + }, + { + "name": "medium", + "url": "https://medium.com/@cezo_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFEbc25f4c5fc3E90a7eFaE0b4d436A77c9e131B3/logo.png b/blockchains/ethereum/assets/0xFEbc25f4c5fc3E90a7eFaE0b4d436A77c9e131B3/logo.png new file mode 100644 index 00000000..3866fd6a Binary files /dev/null and b/blockchains/ethereum/assets/0xFEbc25f4c5fc3E90a7eFaE0b4d436A77c9e131B3/logo.png differ diff --git a/blockchains/ethereum/assets/0xFEd869D86Fbb8C7A320a4b9F02EAd44fe161A418/info.json b/blockchains/ethereum/assets/0xFEd869D86Fbb8C7A320a4b9F02EAd44fe161A418/info.json new file mode 100644 index 00000000..c3db335b --- /dev/null +++ b/blockchains/ethereum/assets/0xFEd869D86Fbb8C7A320a4b9F02EAd44fe161A418/info.json @@ -0,0 +1,11 @@ +{ + "name": "Film Vault Protocol", + "website": "https://filmvault.io", + "description": "The Film Vault protocol is a dApp/Smart Contract to Learn, Invest and Profit from the Independent Film Industry. Built with latest openzeppellin secured smart contract in Solidity, deployed in both Ethereun Network [ERC20] and Binance Smart Chain [BEP20] with a multi chain tokenomics of 1Million FILMVAULT max supply, and unique 10 year minting strategy.", + "explorer": "https://etherscan.io/token/0xFEd869D86Fbb8C7A320a4b9F02EAd44fe161A418", + "type": "ERC20", + "symbol": "FILMVAULT", + "decimals": 9, + "status": "active", + "id": "0xFEd869D86Fbb8C7A320a4b9F02EAd44fe161A418" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFEd869D86Fbb8C7A320a4b9F02EAd44fe161A418/logo.png b/blockchains/ethereum/assets/0xFEd869D86Fbb8C7A320a4b9F02EAd44fe161A418/logo.png new file mode 100644 index 00000000..36c1427a Binary files /dev/null and b/blockchains/ethereum/assets/0xFEd869D86Fbb8C7A320a4b9F02EAd44fe161A418/logo.png differ diff --git a/blockchains/ethereum/assets/0xFF0E5e014cf97e0615cb50F6f39Da6388E2FaE6E/info.json b/blockchains/ethereum/assets/0xFF0E5e014cf97e0615cb50F6f39Da6388E2FaE6E/info.json new file mode 100644 index 00000000..4eff5982 --- /dev/null +++ b/blockchains/ethereum/assets/0xFF0E5e014cf97e0615cb50F6f39Da6388E2FaE6E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Origo", + "symbol": "OGO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://origo.network", + "explorer": "https://etherscan.io/token/0xFF0E5e014cf97e0615cb50F6f39Da6388E2FaE6E", + "status": "active", + "id": "0xFF0E5e014cf97e0615cb50F6f39Da6388E2FaE6E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFF0E5e014cf97e0615cb50F6f39Da6388E2FaE6E/logo.png b/blockchains/ethereum/assets/0xFF0E5e014cf97e0615cb50F6f39Da6388E2FaE6E/logo.png new file mode 100644 index 00000000..48231fa3 Binary files /dev/null and b/blockchains/ethereum/assets/0xFF0E5e014cf97e0615cb50F6f39Da6388E2FaE6E/logo.png differ diff --git a/blockchains/ethereum/assets/0xFF0a024B66739357c4ED231fB3DBC0c8C22749F5/info.json b/blockchains/ethereum/assets/0xFF0a024B66739357c4ED231fB3DBC0c8C22749F5/info.json new file mode 100644 index 00000000..5d8b4c09 --- /dev/null +++ b/blockchains/ethereum/assets/0xFF0a024B66739357c4ED231fB3DBC0c8C22749F5/info.json @@ -0,0 +1,12 @@ +{ + "name": " Binance Wrapped WRX", + "website": "https://binance.org", + "description": "BWRX tokens are ERC20 tokens on the Ethereum network created via the Binance Token Canal program, where the price is pegged to WRX at a rate of 1 BWRX = 1 WRX.", + "explorer": "https://etherscan.io/token/0xff0a024b66739357c4ed231fb3dbc0c8c22749f5", + "research": "https://research.binance.com/en/projects/wazirx", + "type": "ERC20", + "symbol": "BWRX", + "decimals": 8, + "status": "active", + "id": "0xFF0a024B66739357c4ED231fB3DBC0c8C22749F5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFF0a024B66739357c4ED231fB3DBC0c8C22749F5/logo.png b/blockchains/ethereum/assets/0xFF0a024B66739357c4ED231fB3DBC0c8C22749F5/logo.png new file mode 100644 index 00000000..d5740aec Binary files /dev/null and b/blockchains/ethereum/assets/0xFF0a024B66739357c4ED231fB3DBC0c8C22749F5/logo.png differ diff --git a/blockchains/ethereum/assets/0xFF0a4De6a92c2e3F9452FFF00a6f973AA8c1CB43/info.json b/blockchains/ethereum/assets/0xFF0a4De6a92c2e3F9452FFF00a6f973AA8c1CB43/info.json new file mode 100644 index 00000000..73ce781b --- /dev/null +++ b/blockchains/ethereum/assets/0xFF0a4De6a92c2e3F9452FFF00a6f973AA8c1CB43/info.json @@ -0,0 +1,11 @@ +{ + "name": "AUA GOLD", + "symbol": "AUA", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFF0a4De6a92c2e3F9452FFF00a6f973AA8c1CB43", + "status": "abandoned", + "id": "0xFF0a4De6a92c2e3F9452FFF00a6f973AA8c1CB43" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFF0a4De6a92c2e3F9452FFF00a6f973AA8c1CB43/logo.png b/blockchains/ethereum/assets/0xFF0a4De6a92c2e3F9452FFF00a6f973AA8c1CB43/logo.png new file mode 100644 index 00000000..70ca65a0 Binary files /dev/null and b/blockchains/ethereum/assets/0xFF0a4De6a92c2e3F9452FFF00a6f973AA8c1CB43/logo.png differ diff --git a/blockchains/ethereum/assets/0xFF193c057339a328DCec72eB3eD3bfc399922C80/info.json b/blockchains/ethereum/assets/0xFF193c057339a328DCec72eB3eD3bfc399922C80/info.json new file mode 100644 index 00000000..6bf91a4c --- /dev/null +++ b/blockchains/ethereum/assets/0xFF193c057339a328DCec72eB3eD3bfc399922C80/info.json @@ -0,0 +1,11 @@ +{ + "name": "Abe Token", + "symbol": "ABE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFF193c057339a328DCec72eB3eD3bfc399922C80", + "status": "active", + "id": "0xFF193c057339a328DCec72eB3eD3bfc399922C80" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFF193c057339a328DCec72eB3eD3bfc399922C80/logo.png b/blockchains/ethereum/assets/0xFF193c057339a328DCec72eB3eD3bfc399922C80/logo.png new file mode 100755 index 00000000..3dba5140 Binary files /dev/null and b/blockchains/ethereum/assets/0xFF193c057339a328DCec72eB3eD3bfc399922C80/logo.png differ diff --git a/blockchains/ethereum/assets/0xFF21A0BE6114CC4dF52B6F39f68820C3B6EBfe45/info.json b/blockchains/ethereum/assets/0xFF21A0BE6114CC4dF52B6F39f68820C3B6EBfe45/info.json new file mode 100644 index 00000000..8d55e6a6 --- /dev/null +++ b/blockchains/ethereum/assets/0xFF21A0BE6114CC4dF52B6F39f68820C3B6EBfe45/info.json @@ -0,0 +1,11 @@ +{ + "name": "SOCIALMEDIACOIN", + "symbol": "LIKE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFF21A0BE6114CC4dF52B6F39f68820C3B6EBfe45", + "status": "abandoned", + "id": "0xFF21A0BE6114CC4dF52B6F39f68820C3B6EBfe45" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFF21A0BE6114CC4dF52B6F39f68820C3B6EBfe45/logo.png b/blockchains/ethereum/assets/0xFF21A0BE6114CC4dF52B6F39f68820C3B6EBfe45/logo.png new file mode 100755 index 00000000..b5388ffb Binary files /dev/null and b/blockchains/ethereum/assets/0xFF21A0BE6114CC4dF52B6F39f68820C3B6EBfe45/logo.png differ diff --git a/blockchains/ethereum/assets/0xFF440aE0Bb96ee0C6a024E9D9BDb9face23ceC6b/info.json b/blockchains/ethereum/assets/0xFF440aE0Bb96ee0C6a024E9D9BDb9face23ceC6b/info.json new file mode 100644 index 00000000..428d5f27 --- /dev/null +++ b/blockchains/ethereum/assets/0xFF440aE0Bb96ee0C6a024E9D9BDb9face23ceC6b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Euros", + "website": "https://dollarprotocol.com", + "description": "Dollar Protocol is a suite of algorithmic synthetics governed by Share", + "explorer": "https://etherscan.io/token/0xFF440aE0Bb96ee0C6a024E9D9BDb9face23ceC6b", + "type": "ERC20", + "symbol": "EURx", + "decimals": 9, + "status": "active", + "id": "0xFF440aE0Bb96ee0C6a024E9D9BDb9face23ceC6b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFF440aE0Bb96ee0C6a024E9D9BDb9face23ceC6b/logo.png b/blockchains/ethereum/assets/0xFF440aE0Bb96ee0C6a024E9D9BDb9face23ceC6b/logo.png new file mode 100644 index 00000000..2acd8334 Binary files /dev/null and b/blockchains/ethereum/assets/0xFF440aE0Bb96ee0C6a024E9D9BDb9face23ceC6b/logo.png differ diff --git a/blockchains/ethereum/assets/0xFF603F43946A3A28DF5E6A73172555D8C8b02386/info.json b/blockchains/ethereum/assets/0xFF603F43946A3A28DF5E6A73172555D8C8b02386/info.json new file mode 100644 index 00000000..58aba2f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xFF603F43946A3A28DF5E6A73172555D8C8b02386/info.json @@ -0,0 +1,11 @@ +{ + "name": "OneRoot Network Token", + "symbol": "RNT", + "type": "ERC20", + "decimals": 18, + "description": "ONEROOT aims to make use of the immutability, transparency and traceability of blockchain while embracing values of decentralization and shared economy to build a network of value that better fits with the characteristics of distributed network and tokenization of assets.", + "website": "https://www.oneroot.io/en", + "explorer": "https://etherscan.io/token/0xFF603F43946A3A28DF5E6A73172555D8C8b02386", + "status": "active", + "id": "0xFF603F43946A3A28DF5E6A73172555D8C8b02386" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFF603F43946A3A28DF5E6A73172555D8C8b02386/logo.png b/blockchains/ethereum/assets/0xFF603F43946A3A28DF5E6A73172555D8C8b02386/logo.png new file mode 100644 index 00000000..67646b34 Binary files /dev/null and b/blockchains/ethereum/assets/0xFF603F43946A3A28DF5E6A73172555D8C8b02386/logo.png differ diff --git a/blockchains/ethereum/assets/0xFF75CEd57419bcaEBe5F05254983b013B0646eF5/info.json b/blockchains/ethereum/assets/0xFF75CEd57419bcaEBe5F05254983b013B0646eF5/info.json new file mode 100644 index 00000000..3505dc97 --- /dev/null +++ b/blockchains/ethereum/assets/0xFF75CEd57419bcaEBe5F05254983b013B0646eF5/info.json @@ -0,0 +1,11 @@ +{ + "name": "COOK Token", + "website": "https://cook.finance/", + "description": "COOK token is a governance and utility token issued by Cook Protocol.", + "explorer": "https://etherscan.io/token/0xFF75CEd57419bcaEBe5F05254983b013B0646eF5", + "type": "ERC20", + "symbol": "COOK", + "decimals": 18, + "status": "active", + "id": "0xFF75CEd57419bcaEBe5F05254983b013B0646eF5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFF75CEd57419bcaEBe5F05254983b013B0646eF5/logo.png b/blockchains/ethereum/assets/0xFF75CEd57419bcaEBe5F05254983b013B0646eF5/logo.png new file mode 100644 index 00000000..ede22bfe Binary files /dev/null and b/blockchains/ethereum/assets/0xFF75CEd57419bcaEBe5F05254983b013B0646eF5/logo.png differ diff --git a/blockchains/ethereum/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json b/blockchains/ethereum/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/info.json new file mode 100644 index 00000000..69ce15a3 --- /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 00000000..ea3dae36 Binary files /dev/null and b/blockchains/ethereum/assets/0xFF7F8F301F7A706E3CfD3D2275f5dc0b9EE8009B/logo.png differ diff --git a/blockchains/ethereum/assets/0xFFA52DCE6Eb5695436BE96CA9b7Df63382e4c34d/info.json b/blockchains/ethereum/assets/0xFFA52DCE6Eb5695436BE96CA9b7Df63382e4c34d/info.json new file mode 100644 index 00000000..94401f94 --- /dev/null +++ b/blockchains/ethereum/assets/0xFFA52DCE6Eb5695436BE96CA9b7Df63382e4c34d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Onyx S&P 500 Short", + "symbol": "OSPVS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFFA52DCE6Eb5695436BE96CA9b7Df63382e4c34d", + "status": "active", + "id": "0xFFA52DCE6Eb5695436BE96CA9b7Df63382e4c34d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFFA52DCE6Eb5695436BE96CA9b7Df63382e4c34d/logo.png b/blockchains/ethereum/assets/0xFFA52DCE6Eb5695436BE96CA9b7Df63382e4c34d/logo.png new file mode 100644 index 00000000..9e8f09c0 Binary files /dev/null and b/blockchains/ethereum/assets/0xFFA52DCE6Eb5695436BE96CA9b7Df63382e4c34d/logo.png differ diff --git a/blockchains/ethereum/assets/0xFFC97142863e9B2583588e3705e2322eF0369635/info.json b/blockchains/ethereum/assets/0xFFC97142863e9B2583588e3705e2322eF0369635/info.json new file mode 100644 index 00000000..8e062efc --- /dev/null +++ b/blockchains/ethereum/assets/0xFFC97142863e9B2583588e3705e2322eF0369635/info.json @@ -0,0 +1,11 @@ +{ + "name": "Surge Token", + "symbol": "SVG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFFC97142863e9B2583588e3705e2322eF0369635", + "status": "abandoned", + "id": "0xFFC97142863e9B2583588e3705e2322eF0369635" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFFC97142863e9B2583588e3705e2322eF0369635/logo.png b/blockchains/ethereum/assets/0xFFC97142863e9B2583588e3705e2322eF0369635/logo.png new file mode 100644 index 00000000..b654975c Binary files /dev/null and b/blockchains/ethereum/assets/0xFFC97142863e9B2583588e3705e2322eF0369635/logo.png differ diff --git a/blockchains/ethereum/assets/0xFFC97d72E13E01096502Cb8Eb52dEe56f74DAD7B/info.json b/blockchains/ethereum/assets/0xFFC97d72E13E01096502Cb8Eb52dEe56f74DAD7B/info.json new file mode 100644 index 00000000..c3b0468d --- /dev/null +++ b/blockchains/ethereum/assets/0xFFC97d72E13E01096502Cb8Eb52dEe56f74DAD7B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave AAVE", + "symbol": "aAAVE", + "type": "ERC20", + "decimals": 18, + "description": "Aave AAVE is an interest bearing token pegged 1:1 to the underlying AAVE deposited in Aave.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xFFC97d72E13E01096502Cb8Eb52dEe56f74DAD7B", + "status": "active", + "id": "0xFFC97d72E13E01096502Cb8Eb52dEe56f74DAD7B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFFC97d72E13E01096502Cb8Eb52dEe56f74DAD7B/logo.png b/blockchains/ethereum/assets/0xFFC97d72E13E01096502Cb8Eb52dEe56f74DAD7B/logo.png new file mode 100644 index 00000000..c0a121c9 Binary files /dev/null and b/blockchains/ethereum/assets/0xFFC97d72E13E01096502Cb8Eb52dEe56f74DAD7B/logo.png differ diff --git a/blockchains/ethereum/assets/0xFFE02ee4C69eDf1b340fCaD64fbd6b37a7b9e265/info.json b/blockchains/ethereum/assets/0xFFE02ee4C69eDf1b340fCaD64fbd6b37a7b9e265/info.json new file mode 100644 index 00000000..a901a79b --- /dev/null +++ b/blockchains/ethereum/assets/0xFFE02ee4C69eDf1b340fCaD64fbd6b37a7b9e265/info.json @@ -0,0 +1,11 @@ +{ + "name": "NANJCOIN", + "symbol": "NANJ", + "type": "ERC20", + "decimals": 8, + "description": "NANJCOIN is a cryptocurrency created using blockchain technology with the goal of connecting people and sports in ways that previously didn’t exist.", + "website": "https://nanjcoin.com/", + "explorer": "https://etherscan.io/token/0xFFE02ee4C69eDf1b340fCaD64fbd6b37a7b9e265", + "status": "active", + "id": "0xFFE02ee4C69eDf1b340fCaD64fbd6b37a7b9e265" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFFE02ee4C69eDf1b340fCaD64fbd6b37a7b9e265/logo.png b/blockchains/ethereum/assets/0xFFE02ee4C69eDf1b340fCaD64fbd6b37a7b9e265/logo.png new file mode 100644 index 00000000..f092890e Binary files /dev/null and b/blockchains/ethereum/assets/0xFFE02ee4C69eDf1b340fCaD64fbd6b37a7b9e265/logo.png differ diff --git a/blockchains/ethereum/assets/0xFFa93Aacf49297D51E211817452839052FDFB961/info.json b/blockchains/ethereum/assets/0xFFa93Aacf49297D51E211817452839052FDFB961/info.json new file mode 100644 index 00000000..3ad1d6f9 --- /dev/null +++ b/blockchains/ethereum/assets/0xFFa93Aacf49297D51E211817452839052FDFB961/info.json @@ -0,0 +1,11 @@ +{ + "name": "Distributed Credit Chain", + "symbol": "DCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFFa93Aacf49297D51E211817452839052FDFB961", + "status": "active", + "id": "0xFFa93Aacf49297D51E211817452839052FDFB961" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFFa93Aacf49297D51E211817452839052FDFB961/logo.png b/blockchains/ethereum/assets/0xFFa93Aacf49297D51E211817452839052FDFB961/logo.png new file mode 100755 index 00000000..ca5397b7 Binary files /dev/null and b/blockchains/ethereum/assets/0xFFa93Aacf49297D51E211817452839052FDFB961/logo.png differ diff --git a/blockchains/ethereum/assets/0xFFc63b9146967A1ba33066fB057EE3722221aCf0/info.json b/blockchains/ethereum/assets/0xFFc63b9146967A1ba33066fB057EE3722221aCf0/info.json new file mode 100644 index 00000000..29824e26 --- /dev/null +++ b/blockchains/ethereum/assets/0xFFc63b9146967A1ba33066fB057EE3722221aCf0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alpha", + "symbol": "A", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.Alphaplatform.co", + "explorer": "https://etherscan.io/token/0xFFc63b9146967A1ba33066fB057EE3722221aCf0", + "status": "active", + "id": "0xFFc63b9146967A1ba33066fB057EE3722221aCf0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFFc63b9146967A1ba33066fB057EE3722221aCf0/logo.png b/blockchains/ethereum/assets/0xFFc63b9146967A1ba33066fB057EE3722221aCf0/logo.png new file mode 100644 index 00000000..b9fbff82 Binary files /dev/null and b/blockchains/ethereum/assets/0xFFc63b9146967A1ba33066fB057EE3722221aCf0/logo.png differ diff --git a/blockchains/ethereum/assets/0xFFdd9c97556d8D7B40970358529AE19F52b61eCe/info.json b/blockchains/ethereum/assets/0xFFdd9c97556d8D7B40970358529AE19F52b61eCe/info.json new file mode 100644 index 00000000..1d10bbb1 --- /dev/null +++ b/blockchains/ethereum/assets/0xFFdd9c97556d8D7B40970358529AE19F52b61eCe/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trilite", + "symbol": "CSC-TR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFFdd9c97556d8D7B40970358529AE19F52b61eCe", + "status": "abandoned", + "id": "0xFFdd9c97556d8D7B40970358529AE19F52b61eCe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFFdd9c97556d8D7B40970358529AE19F52b61eCe/logo.png b/blockchains/ethereum/assets/0xFFdd9c97556d8D7B40970358529AE19F52b61eCe/logo.png new file mode 100755 index 00000000..64737ead Binary files /dev/null and b/blockchains/ethereum/assets/0xFFdd9c97556d8D7B40970358529AE19F52b61eCe/logo.png differ diff --git a/blockchains/ethereum/assets/0xFFee4DB0f30a43955398776A9524fDFF0680dD7f/info.json b/blockchains/ethereum/assets/0xFFee4DB0f30a43955398776A9524fDFF0680dD7f/info.json new file mode 100644 index 00000000..9f86a03d --- /dev/null +++ b/blockchains/ethereum/assets/0xFFee4DB0f30a43955398776A9524fDFF0680dD7f/info.json @@ -0,0 +1,11 @@ +{ + "name": "EXSERION", + "symbol": "EXR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFFee4DB0f30a43955398776A9524fDFF0680dD7f", + "status": "active", + "id": "0xFFee4DB0f30a43955398776A9524fDFF0680dD7f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFFee4DB0f30a43955398776A9524fDFF0680dD7f/logo.png b/blockchains/ethereum/assets/0xFFee4DB0f30a43955398776A9524fDFF0680dD7f/logo.png new file mode 100644 index 00000000..11138e09 Binary files /dev/null and b/blockchains/ethereum/assets/0xFFee4DB0f30a43955398776A9524fDFF0680dD7f/logo.png differ diff --git a/blockchains/ethereum/assets/0xFa14Fa6958401314851A17d6C5360cA29f74B57B/info.json b/blockchains/ethereum/assets/0xFa14Fa6958401314851A17d6C5360cA29f74B57B/info.json new file mode 100644 index 00000000..e1859794 --- /dev/null +++ b/blockchains/ethereum/assets/0xFa14Fa6958401314851A17d6C5360cA29f74B57B/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAITO Token", + "website": "https://saito.io", + "description": "Wrapped SAITO in ERC20 format for ETH ecosystem interoperability. Saito is a revolutionary blockchain that fixes major incentive problems in all proof-of-work and proof-of-stake networks.", + "type": "ERC20", + "symbol": "SAITO", + "decimals": 18, + "status": "active", + "explorer": "https://etherscan.io/token/0xFa14Fa6958401314851A17d6C5360cA29f74B57B", + "id": "0xFa14Fa6958401314851A17d6C5360cA29f74B57B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFa14Fa6958401314851A17d6C5360cA29f74B57B/logo.png b/blockchains/ethereum/assets/0xFa14Fa6958401314851A17d6C5360cA29f74B57B/logo.png new file mode 100644 index 00000000..b4c745dd Binary files /dev/null and b/blockchains/ethereum/assets/0xFa14Fa6958401314851A17d6C5360cA29f74B57B/logo.png differ diff --git a/blockchains/ethereum/assets/0xFa2B947eEc368f42195f24F36d2aF29f7c24CeC2/info.json b/blockchains/ethereum/assets/0xFa2B947eEc368f42195f24F36d2aF29f7c24CeC2/info.json new file mode 100644 index 00000000..2ecb7d73 --- /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 00000000..7c354195 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 new file mode 100644 index 00000000..5f976a10 --- /dev/null +++ b/blockchains/ethereum/assets/0xFa30e62EEDcf80D47d42947fBCc034beeD5C09FE/info.json @@ -0,0 +1,29 @@ +{ + "name": "LOVEEARTH COIN", + "type": "ERC20", + "symbol": "LEC", + "decimals": 18, + "website": "https://www.loveearth.info", + "description": "LOVE EARTH Coin, is a charity token, aiming to build a new charity model in the age of Web 3.0", + "explorer": "https://etherscan.io/token/0xFa30e62EEDcf80D47d42947fBCc034beeD5C09FE", + "status": "active", + "id": "0xFa30e62EEDcf80D47d42947fBCc034beeD5C09FE", + "links": [ + { + "name": "telegram", + "url": "https://t.me/loveearthcoin" + }, + { + "name": "x", + "url": "https://x.com/LoveEarthCoin" + }, + { + "name": "whitepaper", + "url": "https://loveearth.info/#/whitepaper" + }, + { + "name": "docs", + "url": "https://bit.ly/3epGqdu" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFa30e62EEDcf80D47d42947fBCc034beeD5C09FE/logo.png b/blockchains/ethereum/assets/0xFa30e62EEDcf80D47d42947fBCc034beeD5C09FE/logo.png new file mode 100644 index 00000000..abf03ef4 Binary files /dev/null and b/blockchains/ethereum/assets/0xFa30e62EEDcf80D47d42947fBCc034beeD5C09FE/logo.png differ diff --git a/blockchains/ethereum/assets/0xFab46E002BbF0b4509813474841E0716E6730136/info.json b/blockchains/ethereum/assets/0xFab46E002BbF0b4509813474841E0716E6730136/info.json new file mode 100644 index 00000000..08396a2e --- /dev/null +++ b/blockchains/ethereum/assets/0xFab46E002BbF0b4509813474841E0716E6730136/info.json @@ -0,0 +1,11 @@ +{ + "name": "FaucetToken", + "symbol": "FAU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFab46E002BbF0b4509813474841E0716E6730136", + "status": "abandoned", + "id": "0xFab46E002BbF0b4509813474841E0716E6730136" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFab46E002BbF0b4509813474841E0716E6730136/logo.png b/blockchains/ethereum/assets/0xFab46E002BbF0b4509813474841E0716E6730136/logo.png new file mode 100644 index 00000000..9cb08d96 Binary files /dev/null and b/blockchains/ethereum/assets/0xFab46E002BbF0b4509813474841E0716E6730136/logo.png differ diff --git a/blockchains/ethereum/assets/0xFb2f26F266Fb2805a387230f2aa0a331b4d96Fba/info.json b/blockchains/ethereum/assets/0xFb2f26F266Fb2805a387230f2aa0a331b4d96Fba/info.json new file mode 100644 index 00000000..b62d64e8 --- /dev/null +++ b/blockchains/ethereum/assets/0xFb2f26F266Fb2805a387230f2aa0a331b4d96Fba/info.json @@ -0,0 +1,11 @@ +{ + "name": "DADI", + "symbol": "DADI", + "type": "ERC20", + "decimals": 18, + "description": "The Edge network aims to provide serverless infrastructure that is built using the spare capacity around its users. The $EDGE token enables the transfer of value from the consumers of network services to contributors to the network on a proof of work basis.", + "website": "https://edge.network/en/", + "explorer": "https://etherscan.io/token/0xFb2f26F266Fb2805a387230f2aa0a331b4d96Fba", + "status": "active", + "id": "0xFb2f26F266Fb2805a387230f2aa0a331b4d96Fba" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFb2f26F266Fb2805a387230f2aa0a331b4d96Fba/logo.png b/blockchains/ethereum/assets/0xFb2f26F266Fb2805a387230f2aa0a331b4d96Fba/logo.png new file mode 100644 index 00000000..3fb86101 Binary files /dev/null and b/blockchains/ethereum/assets/0xFb2f26F266Fb2805a387230f2aa0a331b4d96Fba/logo.png differ diff --git a/blockchains/ethereum/assets/0xFb444c1f2B718dDfC385cB8Fd9f2D1D776b24668/info.json b/blockchains/ethereum/assets/0xFb444c1f2B718dDfC385cB8Fd9f2D1D776b24668/info.json new file mode 100644 index 00000000..48e9b073 --- /dev/null +++ b/blockchains/ethereum/assets/0xFb444c1f2B718dDfC385cB8Fd9f2D1D776b24668/info.json @@ -0,0 +1,11 @@ +{ + "name": "ELA Coin", + "symbol": "ELAMA", + "type": "ERC20", + "decimals": 18, + "description": "ELAMACHAIN is an enterprise blockchain supplier. ELAMACHAIN provides a blockchain computing environment for businesses and provides blockchain services, chatbot services, and crypto-currency payment systems for retail and e-commerce.", + "website": "https://www.elamachain.io/", + "explorer": "https://etherscan.io/token/0xFb444c1f2B718dDfC385cB8Fd9f2D1D776b24668", + "status": "active", + "id": "0xFb444c1f2B718dDfC385cB8Fd9f2D1D776b24668" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFb444c1f2B718dDfC385cB8Fd9f2D1D776b24668/logo.png b/blockchains/ethereum/assets/0xFb444c1f2B718dDfC385cB8Fd9f2D1D776b24668/logo.png new file mode 100644 index 00000000..248fe58c Binary files /dev/null and b/blockchains/ethereum/assets/0xFb444c1f2B718dDfC385cB8Fd9f2D1D776b24668/logo.png differ diff --git a/blockchains/ethereum/assets/0xFb54C2a6b2a4fC3AF9B781585215DA8Ee6BCE363/info.json b/blockchains/ethereum/assets/0xFb54C2a6b2a4fC3AF9B781585215DA8Ee6BCE363/info.json new file mode 100644 index 00000000..cfac8ca2 --- /dev/null +++ b/blockchains/ethereum/assets/0xFb54C2a6b2a4fC3AF9B781585215DA8Ee6BCE363/info.json @@ -0,0 +1,11 @@ +{ + "name": "TigerCash", + "symbol": "TCH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFb54C2a6b2a4fC3AF9B781585215DA8Ee6BCE363", + "status": "abandoned", + "id": "0xFb54C2a6b2a4fC3AF9B781585215DA8Ee6BCE363" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFb54C2a6b2a4fC3AF9B781585215DA8Ee6BCE363/logo.png b/blockchains/ethereum/assets/0xFb54C2a6b2a4fC3AF9B781585215DA8Ee6BCE363/logo.png new file mode 100644 index 00000000..323df0f7 Binary files /dev/null and b/blockchains/ethereum/assets/0xFb54C2a6b2a4fC3AF9B781585215DA8Ee6BCE363/logo.png differ diff --git a/blockchains/ethereum/assets/0xFb5a551374B656C6e39787B1D3A03fEAb7f3a98E/info.json b/blockchains/ethereum/assets/0xFb5a551374B656C6e39787B1D3A03fEAb7f3a98E/info.json new file mode 100644 index 00000000..8b874961 --- /dev/null +++ b/blockchains/ethereum/assets/0xFb5a551374B656C6e39787B1D3A03fEAb7f3a98E/info.json @@ -0,0 +1,11 @@ +{ + "name": "ThingsOpreatingSystem", + "symbol": "TOS", + "type": "ERC20", + "decimals": 18, + "description": "TOS is a decentralized hierarchical block network technology based on SDAG for the Internet of Things (IoT) industry.", + "website": "http://www.toschain.org/", + "explorer": "https://etherscan.io/token/0xFb5a551374B656C6e39787B1D3A03fEAb7f3a98E", + "status": "active", + "id": "0xFb5a551374B656C6e39787B1D3A03fEAb7f3a98E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFb5a551374B656C6e39787B1D3A03fEAb7f3a98E/logo.png b/blockchains/ethereum/assets/0xFb5a551374B656C6e39787B1D3A03fEAb7f3a98E/logo.png new file mode 100644 index 00000000..a2081468 Binary files /dev/null and b/blockchains/ethereum/assets/0xFb5a551374B656C6e39787B1D3A03fEAb7f3a98E/logo.png differ diff --git a/blockchains/ethereum/assets/0xFb82561A955bF59B9263301126AF490D3799e231/info.json b/blockchains/ethereum/assets/0xFb82561A955bF59B9263301126AF490D3799e231/info.json new file mode 100644 index 00000000..f92fd475 --- /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 00000000..572a5a58 Binary files /dev/null and b/blockchains/ethereum/assets/0xFb82561A955bF59B9263301126AF490D3799e231/logo.png differ diff --git a/blockchains/ethereum/assets/0xFb8Bf095eBcdAd57D2e37573a505E7d3bAFDD3CC/info.json b/blockchains/ethereum/assets/0xFb8Bf095eBcdAd57D2e37573a505E7d3bAFDD3CC/info.json new file mode 100644 index 00000000..3d7f2d12 --- /dev/null +++ b/blockchains/ethereum/assets/0xFb8Bf095eBcdAd57D2e37573a505E7d3bAFDD3CC/info.json @@ -0,0 +1,11 @@ +{ + "name": "DIPNET", + "symbol": "DPN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFb8Bf095eBcdAd57D2e37573a505E7d3bAFDD3CC", + "status": "abandoned", + "id": "0xFb8Bf095eBcdAd57D2e37573a505E7d3bAFDD3CC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFb8Bf095eBcdAd57D2e37573a505E7d3bAFDD3CC/logo.png b/blockchains/ethereum/assets/0xFb8Bf095eBcdAd57D2e37573a505E7d3bAFDD3CC/logo.png new file mode 100644 index 00000000..5540aecc Binary files /dev/null and b/blockchains/ethereum/assets/0xFb8Bf095eBcdAd57D2e37573a505E7d3bAFDD3CC/logo.png differ diff --git a/blockchains/ethereum/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json b/blockchains/ethereum/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json new file mode 100644 index 00000000..ffd760f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZEDXION", + "type": "ERC20", + "symbol": "ZEDXION", + "decimals": 18, + "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/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341", + "status": "abandoned", + "id": "0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20/info.json b/blockchains/ethereum/assets/0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20/info.json new file mode 100644 index 00000000..777a1911 --- /dev/null +++ b/blockchains/ethereum/assets/0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20/info.json @@ -0,0 +1,25 @@ +{ + "name": "DuckDaoDime", + "website": "https://duckdao.io", + "description": "DuckDAO, the world’s largest crowdsourced Incubator for crypto projects.", + "explorer": "https://etherscan.io/token/0xfbeea1c75e4c4465cb2fccc9c6d6afe984558e20", + "type": "ERC20", + "symbol": "DDIM", + "decimals": 18, + "status": "active", + "id": "0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20", + "links": [ + { + "name": "x", + "url": "https://x.com/dao_duck" + }, + { + "name": "telegram", + "url": "https://t.me/duckdaolobby" + }, + { + "name": "medium", + "url": "https://duckdao.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20/logo.png b/blockchains/ethereum/assets/0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20/logo.png new file mode 100644 index 00000000..6d38e693 Binary files /dev/null and b/blockchains/ethereum/assets/0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20/logo.png differ diff --git a/blockchains/ethereum/assets/0xFbb20e554d804C8c355Be94d456921Ea26aC2B37/info.json b/blockchains/ethereum/assets/0xFbb20e554d804C8c355Be94d456921Ea26aC2B37/info.json new file mode 100644 index 00000000..55633709 --- /dev/null +++ b/blockchains/ethereum/assets/0xFbb20e554d804C8c355Be94d456921Ea26aC2B37/info.json @@ -0,0 +1,11 @@ +{ + "name": "AsmChain", + "symbol": "ASM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFbb20e554d804C8c355Be94d456921Ea26aC2B37", + "status": "abandoned", + "id": "0xFbb20e554d804C8c355Be94d456921Ea26aC2B37" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFbb20e554d804C8c355Be94d456921Ea26aC2B37/logo.png b/blockchains/ethereum/assets/0xFbb20e554d804C8c355Be94d456921Ea26aC2B37/logo.png new file mode 100644 index 00000000..4ad5d863 Binary files /dev/null and b/blockchains/ethereum/assets/0xFbb20e554d804C8c355Be94d456921Ea26aC2B37/logo.png differ diff --git a/blockchains/ethereum/assets/0xFbcFD010d007d10D49f516bB738F4aED12880225/info.json b/blockchains/ethereum/assets/0xFbcFD010d007d10D49f516bB738F4aED12880225/info.json new file mode 100644 index 00000000..d36fc381 --- /dev/null +++ b/blockchains/ethereum/assets/0xFbcFD010d007d10D49f516bB738F4aED12880225/info.json @@ -0,0 +1,11 @@ +{ + "name": "WildLife", + "symbol": "WILD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFbcFD010d007d10D49f516bB738F4aED12880225", + "status": "abandoned", + "id": "0xFbcFD010d007d10D49f516bB738F4aED12880225" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFbcFD010d007d10D49f516bB738F4aED12880225/logo.png b/blockchains/ethereum/assets/0xFbcFD010d007d10D49f516bB738F4aED12880225/logo.png new file mode 100644 index 00000000..e0712370 Binary files /dev/null and b/blockchains/ethereum/assets/0xFbcFD010d007d10D49f516bB738F4aED12880225/logo.png differ diff --git a/blockchains/ethereum/assets/0xFbe878CED08132bd8396988671b450793C44bC12/info.json b/blockchains/ethereum/assets/0xFbe878CED08132bd8396988671b450793C44bC12/info.json new file mode 100644 index 00000000..6e888ec8 --- /dev/null +++ b/blockchains/ethereum/assets/0xFbe878CED08132bd8396988671b450793C44bC12/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fox Trading", + "symbol": "FOXT", + "type": "ERC20", + "decimals": 18, + "description": "Fox Trading platform is a multi-device platform that provides high accuracy signals and auto-trade services for Forex and Cryptocurrency trading.", + "website": "https://foxtrading.io/", + "explorer": "https://etherscan.io/token/0xFbe878CED08132bd8396988671b450793C44bC12", + "status": "active", + "id": "0xFbe878CED08132bd8396988671b450793C44bC12" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFbe878CED08132bd8396988671b450793C44bC12/logo.png b/blockchains/ethereum/assets/0xFbe878CED08132bd8396988671b450793C44bC12/logo.png new file mode 100644 index 00000000..429e5b90 Binary files /dev/null and b/blockchains/ethereum/assets/0xFbe878CED08132bd8396988671b450793C44bC12/logo.png differ diff --git a/blockchains/ethereum/assets/0xFc178d0F36ddd2B44f925EB13bF51f5cB9B42192/info.json b/blockchains/ethereum/assets/0xFc178d0F36ddd2B44f925EB13bF51f5cB9B42192/info.json new file mode 100644 index 00000000..509069fe --- /dev/null +++ b/blockchains/ethereum/assets/0xFc178d0F36ddd2B44f925EB13bF51f5cB9B42192/info.json @@ -0,0 +1,11 @@ +{ + "name": "Light Coin Exchange Token", + "website": "https://lightcoinex.com", + "description": "LCT is a Light Coin Exchange platform point based on the ERC20 standard of Ethereum blockchain, which bears community rights and interests, circulation attribute and a value attribute. The total supply of LCT is 200 million, with no additional issuance forever.", + "explorer": "https://etherscan.io/token/0xfc178d0f36ddd2b44f925eb13bf51f5cb9b42192", + "type": "ERC20", + "symbol": "LCT", + "decimals": 18, + "status": "active", + "id": "0xFc178d0F36ddd2B44f925EB13bF51f5cB9B42192" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFc178d0F36ddd2B44f925EB13bF51f5cB9B42192/logo.png b/blockchains/ethereum/assets/0xFc178d0F36ddd2B44f925EB13bF51f5cB9B42192/logo.png new file mode 100644 index 00000000..9fc33f79 Binary files /dev/null and b/blockchains/ethereum/assets/0xFc178d0F36ddd2B44f925EB13bF51f5cB9B42192/logo.png differ diff --git a/blockchains/ethereum/assets/0xFc2C4D8f95002C14eD0a7aA65102Cac9e5953b5E/info.json b/blockchains/ethereum/assets/0xFc2C4D8f95002C14eD0a7aA65102Cac9e5953b5E/info.json new file mode 100644 index 00000000..9ada3587 --- /dev/null +++ b/blockchains/ethereum/assets/0xFc2C4D8f95002C14eD0a7aA65102Cac9e5953b5E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rublix", + "symbol": "RBLX", + "type": "ERC20", + "decimals": 18, + "description": "Rublix is a software development company that is building blockchain powered tools to fuel the next generation of fintech projects.", + "website": "http://rublix.io", + "explorer": "https://etherscan.io/token/0xFc2C4D8f95002C14eD0a7aA65102Cac9e5953b5E", + "status": "active", + "id": "0xFc2C4D8f95002C14eD0a7aA65102Cac9e5953b5E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFc2C4D8f95002C14eD0a7aA65102Cac9e5953b5E/logo.png b/blockchains/ethereum/assets/0xFc2C4D8f95002C14eD0a7aA65102Cac9e5953b5E/logo.png new file mode 100755 index 00000000..f2d42acc Binary files /dev/null and b/blockchains/ethereum/assets/0xFc2C4D8f95002C14eD0a7aA65102Cac9e5953b5E/logo.png differ diff --git a/blockchains/ethereum/assets/0xFc44EC51C80e35A87Bc2140299B1636eC83DFb04/info.json b/blockchains/ethereum/assets/0xFc44EC51C80e35A87Bc2140299B1636eC83DFb04/info.json new file mode 100644 index 00000000..7a13ebe8 --- /dev/null +++ b/blockchains/ethereum/assets/0xFc44EC51C80e35A87Bc2140299B1636eC83DFb04/info.json @@ -0,0 +1,11 @@ +{ + "name": "VOLT", + "symbol": "ACDC", + "type": "ERC20", + "decimals": 18, + "description": "VOLT is a platform that allows centralized platforms such as Uber, to be developed in a decentralized manner and enables direct delivery through P2P.", + "website": "https://volttech.io/", + "explorer": "https://etherscan.io/token/0xFc44EC51C80e35A87Bc2140299B1636eC83DFb04", + "status": "active", + "id": "0xFc44EC51C80e35A87Bc2140299B1636eC83DFb04" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFc44EC51C80e35A87Bc2140299B1636eC83DFb04/logo.png b/blockchains/ethereum/assets/0xFc44EC51C80e35A87Bc2140299B1636eC83DFb04/logo.png new file mode 100644 index 00000000..0d032188 Binary files /dev/null and b/blockchains/ethereum/assets/0xFc44EC51C80e35A87Bc2140299B1636eC83DFb04/logo.png differ diff --git a/blockchains/ethereum/assets/0xFc979087305A826c2B2a0056cFAbA50aad3E6439/info.json b/blockchains/ethereum/assets/0xFc979087305A826c2B2a0056cFAbA50aad3E6439/info.json new file mode 100644 index 00000000..ddc6d1d6 --- /dev/null +++ b/blockchains/ethereum/assets/0xFc979087305A826c2B2a0056cFAbA50aad3E6439/info.json @@ -0,0 +1,11 @@ +{ + "name": "DAFI Token", + "type": "ERC20", + "symbol": "DAFI", + "decimals": 18, + "website": "https://www.dafiprotocol.io", + "description": "Rewarding networks - reinvented. DAFI rewards users based on network adoption, for smarter Staking & Social rewards. Same chains. New possibilities.", + "explorer": "https://etherscan.io/token/0xFc979087305A826c2B2a0056cFAbA50aad3E6439", + "status": "active", + "id": "0xFc979087305A826c2B2a0056cFAbA50aad3E6439" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFc979087305A826c2B2a0056cFAbA50aad3E6439/logo.png b/blockchains/ethereum/assets/0xFc979087305A826c2B2a0056cFAbA50aad3E6439/logo.png new file mode 100644 index 00000000..92229f6b Binary files /dev/null and b/blockchains/ethereum/assets/0xFc979087305A826c2B2a0056cFAbA50aad3E6439/logo.png differ diff --git a/blockchains/ethereum/assets/0xFcD862985628b254061F7A918035B80340D045d3/info.json b/blockchains/ethereum/assets/0xFcD862985628b254061F7A918035B80340D045d3/info.json new file mode 100644 index 00000000..9b7caacb --- /dev/null +++ b/blockchains/ethereum/assets/0xFcD862985628b254061F7A918035B80340D045d3/info.json @@ -0,0 +1,11 @@ +{ + "name": "GifCoin", + "symbol": "gif", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFcD862985628b254061F7A918035B80340D045d3", + "status": "abandoned", + "id": "0xFcD862985628b254061F7A918035B80340D045d3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFcD862985628b254061F7A918035B80340D045d3/logo.png b/blockchains/ethereum/assets/0xFcD862985628b254061F7A918035B80340D045d3/logo.png new file mode 100755 index 00000000..4b86be84 Binary files /dev/null and b/blockchains/ethereum/assets/0xFcD862985628b254061F7A918035B80340D045d3/logo.png differ diff --git a/blockchains/ethereum/assets/0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF/info.json b/blockchains/ethereum/assets/0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF/info.json new file mode 100644 index 00000000..885017b6 --- /dev/null +++ b/blockchains/ethereum/assets/0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF/info.json @@ -0,0 +1,14 @@ +{ + "name": "Rarible", + "symbol": "RARI", + "type": "ERC20", + "decimals": 18, + "description": "We think that the best way to align platform development with customers' interests is to empower the ones who actively interact with protocol: creators and collectors.", + "website": "https://app.rarible.com/rari", + "explorer": "https://etherscan.io/token/0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF", + "status": "active", + "id": "0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF", + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF/logo.png b/blockchains/ethereum/assets/0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF/logo.png new file mode 100644 index 00000000..8b75bda4 Binary files /dev/null and b/blockchains/ethereum/assets/0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF/logo.png differ diff --git a/blockchains/ethereum/assets/0xFd3305E1c7cB5D269fb6CeD8eB8240255a50E7a4/info.json b/blockchains/ethereum/assets/0xFd3305E1c7cB5D269fb6CeD8eB8240255a50E7a4/info.json new file mode 100644 index 00000000..6fca82e0 --- /dev/null +++ b/blockchains/ethereum/assets/0xFd3305E1c7cB5D269fb6CeD8eB8240255a50E7a4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cloudbit Token", + "symbol": "Cloudbit Token", + "type": "ERC20", + "decimals": 8, + "description": "Cloudbit – CDB and CDBC is a cryptocurrency Exchange Token. In order to unite a link with the CBDC “Central Bank Digital Currency”, there was a need for a global digital transaction instrument to also be able to strengthen P2P services and decentralization. CDB and CDBC created to cater the needs.", + "website": "https://cloudbitex.com/", + "explorer": "https://etherscan.io/token/0xFd3305E1c7cB5D269fb6CeD8eB8240255a50E7a4", + "status": "active", + "id": "0xFd3305E1c7cB5D269fb6CeD8eB8240255a50E7a4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFd3305E1c7cB5D269fb6CeD8eB8240255a50E7a4/logo.png b/blockchains/ethereum/assets/0xFd3305E1c7cB5D269fb6CeD8eB8240255a50E7a4/logo.png new file mode 100644 index 00000000..728e5122 Binary files /dev/null and b/blockchains/ethereum/assets/0xFd3305E1c7cB5D269fb6CeD8eB8240255a50E7a4/logo.png differ diff --git a/blockchains/ethereum/assets/0xFd50Fc4E3686a8DA814c5C3D6121d8aB98a537F0/info.json b/blockchains/ethereum/assets/0xFd50Fc4E3686a8DA814c5C3D6121d8aB98a537F0/info.json new file mode 100644 index 00000000..7c67c993 --- /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 00000000..8adf5788 Binary files /dev/null and b/blockchains/ethereum/assets/0xFd50Fc4E3686a8DA814c5C3D6121d8aB98a537F0/logo.png differ diff --git a/blockchains/ethereum/assets/0xFd66c6771D00b5646949086152B7CCDCa25E5686/info.json b/blockchains/ethereum/assets/0xFd66c6771D00b5646949086152B7CCDCa25E5686/info.json new file mode 100644 index 00000000..e8f79ec6 --- /dev/null +++ b/blockchains/ethereum/assets/0xFd66c6771D00b5646949086152B7CCDCa25E5686/info.json @@ -0,0 +1,11 @@ +{ + "name": "LATTICE80 KAYA TOKEN", + "symbol": "KAYA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFd66c6771D00b5646949086152B7CCDCa25E5686", + "status": "abandoned", + "id": "0xFd66c6771D00b5646949086152B7CCDCa25E5686" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFd66c6771D00b5646949086152B7CCDCa25E5686/logo.png b/blockchains/ethereum/assets/0xFd66c6771D00b5646949086152B7CCDCa25E5686/logo.png new file mode 100644 index 00000000..9aa51571 Binary files /dev/null and b/blockchains/ethereum/assets/0xFd66c6771D00b5646949086152B7CCDCa25E5686/logo.png differ diff --git a/blockchains/ethereum/assets/0xFdA09936DbD717368De0835bA441d9E62069d36f/info.json b/blockchains/ethereum/assets/0xFdA09936DbD717368De0835bA441d9E62069d36f/info.json new file mode 100644 index 00000000..e0e384b2 --- /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 00000000..91dadf19 Binary files /dev/null and b/blockchains/ethereum/assets/0xFdA09936DbD717368De0835bA441d9E62069d36f/logo.png differ diff --git a/blockchains/ethereum/assets/0xFdB29741F239a2406AE287913Ef12415160378d3/info.json b/blockchains/ethereum/assets/0xFdB29741F239a2406AE287913Ef12415160378d3/info.json new file mode 100644 index 00000000..9884dd24 --- /dev/null +++ b/blockchains/ethereum/assets/0xFdB29741F239a2406AE287913Ef12415160378d3/info.json @@ -0,0 +1,17 @@ +{ + "name": "EthOS", + "symbol": "OS", + "type": "ERC20", + "decimals": 18, + "description": "EMERGENCY: the OS contract is switched to 0x0574a1959E3b7C86791759E1f6e249bF31656012 Don't use or buy this token anymore. The EthOS Team is no longer supporting it.", + "website": "https://os.ethos.eth.link/", + "explorer": "https://etherscan.io/token/0xfdb29741f239a2406ae287913ef12415160378d3", + "status": "abandoned", + "id": "0xFdB29741F239a2406AE287913Ef12415160378d3", + "links": [ + { + "name": "discord", + "url": "https://discord.com/nHZ2bUd" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFdB655EDff5c7e733074a739B2b713B5CF567a8A/info.json b/blockchains/ethereum/assets/0xFdB655EDff5c7e733074a739B2b713B5CF567a8A/info.json new file mode 100644 index 00000000..5f446012 --- /dev/null +++ b/blockchains/ethereum/assets/0xFdB655EDff5c7e733074a739B2b713B5CF567a8A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Daniell Mesquita", + "symbol": "DANI", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFdB655EDff5c7e733074a739B2b713B5CF567a8A", + "status": "abandoned", + "id": "0xFdB655EDff5c7e733074a739B2b713B5CF567a8A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFdB655EDff5c7e733074a739B2b713B5CF567a8A/logo.png b/blockchains/ethereum/assets/0xFdB655EDff5c7e733074a739B2b713B5CF567a8A/logo.png new file mode 100644 index 00000000..a55bf49c Binary files /dev/null and b/blockchains/ethereum/assets/0xFdB655EDff5c7e733074a739B2b713B5CF567a8A/logo.png differ diff --git a/blockchains/ethereum/assets/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB/info.json b/blockchains/ethereum/assets/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB/info.json new file mode 100644 index 00000000..6fe40ffc --- /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 00000000..febeacec Binary files /dev/null and b/blockchains/ethereum/assets/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB/logo.png differ diff --git a/blockchains/ethereum/assets/0xFe1D71498DA3261844eC14325bdbc93c0F7579f0/info.json b/blockchains/ethereum/assets/0xFe1D71498DA3261844eC14325bdbc93c0F7579f0/info.json new file mode 100644 index 00000000..5f542a00 --- /dev/null +++ b/blockchains/ethereum/assets/0xFe1D71498DA3261844eC14325bdbc93c0F7579f0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gamblica Token", + "symbol": "GMBC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFe1D71498DA3261844eC14325bdbc93c0F7579f0", + "status": "abandoned", + "id": "0xFe1D71498DA3261844eC14325bdbc93c0F7579f0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFe1D71498DA3261844eC14325bdbc93c0F7579f0/logo.png b/blockchains/ethereum/assets/0xFe1D71498DA3261844eC14325bdbc93c0F7579f0/logo.png new file mode 100644 index 00000000..32654e63 Binary files /dev/null and b/blockchains/ethereum/assets/0xFe1D71498DA3261844eC14325bdbc93c0F7579f0/logo.png differ diff --git a/blockchains/ethereum/assets/0xFe2e637202056d30016725477c5da089Ab0A043A/info.json b/blockchains/ethereum/assets/0xFe2e637202056d30016725477c5da089Ab0A043A/info.json new file mode 100644 index 00000000..31ebed70 --- /dev/null +++ b/blockchains/ethereum/assets/0xFe2e637202056d30016725477c5da089Ab0A043A/info.json @@ -0,0 +1,65 @@ +{ + "name": "StakeWise sETH2", + "type": "ERC20", + "symbol": "sETH2", + "decimals": 18, + "website": "https://stakewise.io", + "description": "sETH2 is a token that represents staked ether in StakeWise.", + "explorer": "https://etherscan.io/token/0xFe2e637202056d30016725477c5da089Ab0A043A", + "status": "active", + "id": "0xFe2e637202056d30016725477c5da089Ab0A043A", + "links": [ + { + "name": "x", + "url": "https://x.com/stakewise_io" + }, + { + "name": "github", + "url": "https://github.com/stakewise" + }, + { + "name": "telegram", + "url": "https://t.me/stakewise_io" + }, + { + "name": "telegram_news", + "url": "https://t.me/stakewise_io" + }, + { + "name": "blog", + "url": "https://stakewise.medium.com/" + }, + { + "name": "docs", + "url": "https://docs.stakewise.io/" + }, + { + "name": "forum", + "url": "https://forum.stakewise.io/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Zf7tKyXeZ" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/stakewise" + }, + { + "name": "medium", + "url": "https://stakewise.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCQ2cX28XNW-S-66quNYxzRA" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/seth2" + }, + { + "name": "source_code", + "url": "https://github.com/stakewise/contracts/blob/master/contracts/tokens/StakedEthToken.sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFe2e637202056d30016725477c5da089Ab0A043A/logo.png b/blockchains/ethereum/assets/0xFe2e637202056d30016725477c5da089Ab0A043A/logo.png new file mode 100644 index 00000000..e7321dab Binary files /dev/null and b/blockchains/ethereum/assets/0xFe2e637202056d30016725477c5da089Ab0A043A/logo.png differ diff --git a/blockchains/ethereum/assets/0xFe4eC50E0413148021d2f50d114CC44De6fFBF23/info.json b/blockchains/ethereum/assets/0xFe4eC50E0413148021d2f50d114CC44De6fFBF23/info.json new file mode 100644 index 00000000..51a58e22 --- /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 00000000..c6fba337 Binary files /dev/null and b/blockchains/ethereum/assets/0xFe4eC50E0413148021d2f50d114CC44De6fFBF23/logo.png differ diff --git a/blockchains/ethereum/assets/0xFe6e2CBd2E28b3A6F43aa17f58d9AC5D6fA19B99/info.json b/blockchains/ethereum/assets/0xFe6e2CBd2E28b3A6F43aa17f58d9AC5D6fA19B99/info.json new file mode 100644 index 00000000..b582f9ef --- /dev/null +++ b/blockchains/ethereum/assets/0xFe6e2CBd2E28b3A6F43aa17f58d9AC5D6fA19B99/info.json @@ -0,0 +1,11 @@ +{ + "name": "vKet", + "symbol": "KET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFe6e2CBd2E28b3A6F43aa17f58d9AC5D6fA19B99", + "status": "active", + "id": "0xFe6e2CBd2E28b3A6F43aa17f58d9AC5D6fA19B99" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFe6e2CBd2E28b3A6F43aa17f58d9AC5D6fA19B99/logo.png b/blockchains/ethereum/assets/0xFe6e2CBd2E28b3A6F43aa17f58d9AC5D6fA19B99/logo.png new file mode 100644 index 00000000..5c8faa08 Binary files /dev/null and b/blockchains/ethereum/assets/0xFe6e2CBd2E28b3A6F43aa17f58d9AC5D6fA19B99/logo.png differ diff --git a/blockchains/ethereum/assets/0xFeAc2Eae96899709a43E252B6B92971D32F9C0F9/info.json b/blockchains/ethereum/assets/0xFeAc2Eae96899709a43E252B6B92971D32F9C0F9/info.json new file mode 100644 index 00000000..92b6b084 --- /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 00000000..62b48796 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 00000000..fafaac24 --- /dev/null +++ b/blockchains/ethereum/assets/0xFeDC5f4a6c38211c1338aa411018DFAf26612c08/info.json @@ -0,0 +1,24 @@ +{ + "name": "SPDR S&P 500 ETF (Ondo Tokenized)", + "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 00000000..8e3a7a03 Binary files /dev/null and b/blockchains/ethereum/assets/0xFeDC5f4a6c38211c1338aa411018DFAf26612c08/logo.png differ diff --git a/blockchains/ethereum/assets/0xFecEd69CceD4D3CD55812c922e553A50E684fd4d/info.json b/blockchains/ethereum/assets/0xFecEd69CceD4D3CD55812c922e553A50E684fd4d/info.json new file mode 100644 index 00000000..ae677934 --- /dev/null +++ b/blockchains/ethereum/assets/0xFecEd69CceD4D3CD55812c922e553A50E684fd4d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Creative Rocket Platform", + "symbol": "CRP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFecEd69CceD4D3CD55812c922e553A50E684fd4d", + "status": "abandoned", + "id": "0xFecEd69CceD4D3CD55812c922e553A50E684fd4d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFecEd69CceD4D3CD55812c922e553A50E684fd4d/logo.png b/blockchains/ethereum/assets/0xFecEd69CceD4D3CD55812c922e553A50E684fd4d/logo.png new file mode 100644 index 00000000..4202d1e3 Binary files /dev/null and b/blockchains/ethereum/assets/0xFecEd69CceD4D3CD55812c922e553A50E684fd4d/logo.png differ diff --git a/blockchains/ethereum/assets/0xFf13e2b2979C6e81E53f9BfC6B277053bb6A3012/info.json b/blockchains/ethereum/assets/0xFf13e2b2979C6e81E53f9BfC6B277053bb6A3012/info.json new file mode 100644 index 00000000..c24c2a45 --- /dev/null +++ b/blockchains/ethereum/assets/0xFf13e2b2979C6e81E53f9BfC6B277053bb6A3012/info.json @@ -0,0 +1,11 @@ +{ + "name": "yamCRV.org", + "symbol": "yamCRV", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFf13e2b2979C6e81E53f9BfC6B277053bb6A3012", + "status": "abandoned", + "id": "0xFf13e2b2979C6e81E53f9BfC6B277053bb6A3012" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFf13e2b2979C6e81E53f9BfC6B277053bb6A3012/logo.png b/blockchains/ethereum/assets/0xFf13e2b2979C6e81E53f9BfC6B277053bb6A3012/logo.png new file mode 100644 index 00000000..4eedeb3e Binary files /dev/null and b/blockchains/ethereum/assets/0xFf13e2b2979C6e81E53f9BfC6B277053bb6A3012/logo.png differ diff --git a/blockchains/ethereum/assets/0xFf19138b039D938db46bDDA0067DC4BA132ec71C/info.json b/blockchains/ethereum/assets/0xFf19138b039D938db46bDDA0067DC4BA132ec71C/info.json new file mode 100644 index 00000000..4093886d --- /dev/null +++ b/blockchains/ethereum/assets/0xFf19138b039D938db46bDDA0067DC4BA132ec71C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Snetwork", + "symbol": "SNET", + "type": "ERC20", + "decimals": 8, + "description": "Distributed Shared Cloud Computing Network.", + "website": "http://snetwork.io/", + "explorer": "https://etherscan.io/token/0xFf19138b039D938db46bDDA0067DC4BA132ec71C", + "status": "active", + "id": "0xFf19138b039D938db46bDDA0067DC4BA132ec71C" +} diff --git a/blockchains/ethereum/assets/0xFf19138b039D938db46bDDA0067DC4BA132ec71C/logo.png b/blockchains/ethereum/assets/0xFf19138b039D938db46bDDA0067DC4BA132ec71C/logo.png new file mode 100644 index 00000000..9a9fefd9 Binary files /dev/null and b/blockchains/ethereum/assets/0xFf19138b039D938db46bDDA0067DC4BA132ec71C/logo.png differ diff --git a/blockchains/ethereum/assets/0xFf2cF2A74445a115468e84FB42eDfe1D9d73CF2b/info.json b/blockchains/ethereum/assets/0xFf2cF2A74445a115468e84FB42eDfe1D9d73CF2b/info.json new file mode 100644 index 00000000..3f98db38 --- /dev/null +++ b/blockchains/ethereum/assets/0xFf2cF2A74445a115468e84FB42eDfe1D9d73CF2b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vizcoin", + "symbol": "Viz", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFf2cF2A74445a115468e84FB42eDfe1D9d73CF2b", + "status": "abandoned", + "id": "0xFf2cF2A74445a115468e84FB42eDfe1D9d73CF2b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFf2cF2A74445a115468e84FB42eDfe1D9d73CF2b/logo.png b/blockchains/ethereum/assets/0xFf2cF2A74445a115468e84FB42eDfe1D9d73CF2b/logo.png new file mode 100644 index 00000000..802a069a Binary files /dev/null and b/blockchains/ethereum/assets/0xFf2cF2A74445a115468e84FB42eDfe1D9d73CF2b/logo.png differ diff --git a/blockchains/ethereum/assets/0xFf3519eeeEA3e76F1F699CCcE5E23ee0bdDa41aC/info.json b/blockchains/ethereum/assets/0xFf3519eeeEA3e76F1F699CCcE5E23ee0bdDa41aC/info.json new file mode 100644 index 00000000..b329fa0f --- /dev/null +++ b/blockchains/ethereum/assets/0xFf3519eeeEA3e76F1F699CCcE5E23ee0bdDa41aC/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "\"\"", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFf3519eeeEA3e76F1F699CCcE5E23ee0bdDa41aC", + "status": "abandoned", + "id": "0xFf3519eeeEA3e76F1F699CCcE5E23ee0bdDa41aC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFf3519eeeEA3e76F1F699CCcE5E23ee0bdDa41aC/logo.png b/blockchains/ethereum/assets/0xFf3519eeeEA3e76F1F699CCcE5E23ee0bdDa41aC/logo.png new file mode 100644 index 00000000..2a9a536c Binary files /dev/null and b/blockchains/ethereum/assets/0xFf3519eeeEA3e76F1F699CCcE5E23ee0bdDa41aC/logo.png differ diff --git a/blockchains/ethereum/assets/0xFf7Ed06A93A96Ff122EEAF333B9cAC321fdD5eD9/info.json b/blockchains/ethereum/assets/0xFf7Ed06A93A96Ff122EEAF333B9cAC321fdD5eD9/info.json new file mode 100644 index 00000000..254f2956 --- /dev/null +++ b/blockchains/ethereum/assets/0xFf7Ed06A93A96Ff122EEAF333B9cAC321fdD5eD9/info.json @@ -0,0 +1,11 @@ +{ + "name": "SUREBANQA PERSONAL e-SHARE", + "symbol": "ST20", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xFf7Ed06A93A96Ff122EEAF333B9cAC321fdD5eD9", + "status": "active", + "id": "0xFf7Ed06A93A96Ff122EEAF333B9cAC321fdD5eD9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFf7Ed06A93A96Ff122EEAF333B9cAC321fdD5eD9/logo.png b/blockchains/ethereum/assets/0xFf7Ed06A93A96Ff122EEAF333B9cAC321fdD5eD9/logo.png new file mode 100755 index 00000000..cbdcc822 Binary files /dev/null and b/blockchains/ethereum/assets/0xFf7Ed06A93A96Ff122EEAF333B9cAC321fdD5eD9/logo.png differ diff --git a/blockchains/ethereum/assets/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8/info.json b/blockchains/ethereum/assets/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8/info.json new file mode 100644 index 00000000..985d9223 --- /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 00000000..519c9302 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 00000000..d15a8759 --- /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 00000000..881db837 Binary files /dev/null and b/blockchains/ethereum/assets/0xa00a4d5786a6E955e9539d01D78Bf68f3271C050/logo.png differ diff --git a/blockchains/ethereum/assets/0xa01360Fc23Bf50955c4552eC9f6c4E523a37a89F/info.json b/blockchains/ethereum/assets/0xa01360Fc23Bf50955c4552eC9f6c4E523a37a89F/info.json new file mode 100644 index 00000000..7809f5c1 --- /dev/null +++ b/blockchains/ethereum/assets/0xa01360Fc23Bf50955c4552eC9f6c4E523a37a89F/info.json @@ -0,0 +1,11 @@ +{ + "name": "We Are Musicos Coin", + "symbol": "WAM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa01360Fc23Bf50955c4552eC9f6c4E523a37a89F", + "status": "abandoned", + "id": "0xa01360Fc23Bf50955c4552eC9f6c4E523a37a89F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa01360Fc23Bf50955c4552eC9f6c4E523a37a89F/logo.png b/blockchains/ethereum/assets/0xa01360Fc23Bf50955c4552eC9f6c4E523a37a89F/logo.png new file mode 100755 index 00000000..22366c9d Binary files /dev/null and b/blockchains/ethereum/assets/0xa01360Fc23Bf50955c4552eC9f6c4E523a37a89F/logo.png differ diff --git a/blockchains/ethereum/assets/0xa0246c9032bC3A600820415aE600c6388619A14D/info.json b/blockchains/ethereum/assets/0xa0246c9032bC3A600820415aE600c6388619A14D/info.json new file mode 100644 index 00000000..9d22da4a --- /dev/null +++ b/blockchains/ethereum/assets/0xa0246c9032bC3A600820415aE600c6388619A14D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Harvest Finance", + "website": "https://harvest.finance", + "description": "Harvest automatically farms the newest DeFi protocols, optimizing yields using the latest farming techniques.", + "explorer": "https://etherscan.io/token/0xa0246c9032bC3A600820415aE600c6388619A14D", + "type": "ERC20", + "symbol": "FARM", + "decimals": 18, + "status": "active", + "id": "0xa0246c9032bC3A600820415aE600c6388619A14D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa0246c9032bC3A600820415aE600c6388619A14D/logo.png b/blockchains/ethereum/assets/0xa0246c9032bC3A600820415aE600c6388619A14D/logo.png new file mode 100644 index 00000000..70aed050 Binary files /dev/null and b/blockchains/ethereum/assets/0xa0246c9032bC3A600820415aE600c6388619A14D/logo.png differ diff --git a/blockchains/ethereum/assets/0xa0385E7283C83e2871E9aF49EEC0966088421ddD/info.json b/blockchains/ethereum/assets/0xa0385E7283C83e2871E9aF49EEC0966088421ddD/info.json new file mode 100644 index 00000000..dc7fcba4 --- /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 00000000..3e031aeb Binary files /dev/null and b/blockchains/ethereum/assets/0xa0385E7283C83e2871E9aF49EEC0966088421ddD/logo.png differ diff --git a/blockchains/ethereum/assets/0xa05a31924F767D23a03B0b1b2cF48654D0C87E0f/info.json b/blockchains/ethereum/assets/0xa05a31924F767D23a03B0b1b2cF48654D0C87E0f/info.json new file mode 100644 index 00000000..c75e6386 --- /dev/null +++ b/blockchains/ethereum/assets/0xa05a31924F767D23a03B0b1b2cF48654D0C87E0f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Video", + "symbol": "VIDEO", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa05a31924F767D23a03B0b1b2cF48654D0C87E0f", + "status": "abandoned", + "id": "0xa05a31924F767D23a03B0b1b2cF48654D0C87E0f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa05a31924F767D23a03B0b1b2cF48654D0C87E0f/logo.png b/blockchains/ethereum/assets/0xa05a31924F767D23a03B0b1b2cF48654D0C87E0f/logo.png new file mode 100644 index 00000000..0c058c1d Binary files /dev/null and b/blockchains/ethereum/assets/0xa05a31924F767D23a03B0b1b2cF48654D0C87E0f/logo.png differ diff --git a/blockchains/ethereum/assets/0xa06bC25B5805d5F8d82847D191Cb4Af5A3e873E0/info.json b/blockchains/ethereum/assets/0xa06bC25B5805d5F8d82847D191Cb4Af5A3e873E0/info.json new file mode 100644 index 00000000..eb71f05c --- /dev/null +++ b/blockchains/ethereum/assets/0xa06bC25B5805d5F8d82847D191Cb4Af5A3e873E0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave LINK", + "symbol": "aLINK", + "type": "ERC20", + "decimals": 18, + "description": "Aave LINK is an interest bearing token pegged 1:1 to the underlying LINK deposited in Aave. aLINK accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xa06bC25B5805d5F8d82847D191Cb4Af5A3e873E0", + "status": "active", + "id": "0xa06bC25B5805d5F8d82847D191Cb4Af5A3e873E0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa06bC25B5805d5F8d82847D191Cb4Af5A3e873E0/logo.png b/blockchains/ethereum/assets/0xa06bC25B5805d5F8d82847D191Cb4Af5A3e873E0/logo.png new file mode 100644 index 00000000..62ac806c Binary files /dev/null and b/blockchains/ethereum/assets/0xa06bC25B5805d5F8d82847D191Cb4Af5A3e873E0/logo.png differ diff --git a/blockchains/ethereum/assets/0xa072FBb3A8E324C0931e021B8eCE0C95A96d0BCb/info.json b/blockchains/ethereum/assets/0xa072FBb3A8E324C0931e021B8eCE0C95A96d0BCb/info.json new file mode 100644 index 00000000..3035e5be --- /dev/null +++ b/blockchains/ethereum/assets/0xa072FBb3A8E324C0931e021B8eCE0C95A96d0BCb/info.json @@ -0,0 +1,11 @@ +{ + "name": "goldfi.finance", + "symbol": "GoldFi", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa072FBb3A8E324C0931e021B8eCE0C95A96d0BCb", + "status": "abandoned", + "id": "0xa072FBb3A8E324C0931e021B8eCE0C95A96d0BCb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa072FBb3A8E324C0931e021B8eCE0C95A96d0BCb/logo.png b/blockchains/ethereum/assets/0xa072FBb3A8E324C0931e021B8eCE0C95A96d0BCb/logo.png new file mode 100644 index 00000000..fa9ca8d6 Binary files /dev/null and b/blockchains/ethereum/assets/0xa072FBb3A8E324C0931e021B8eCE0C95A96d0BCb/logo.png differ diff --git a/blockchains/ethereum/assets/0xa072bE0DB9d639FCbCdeEd0eca496750ad3D2029/info.json b/blockchains/ethereum/assets/0xa072bE0DB9d639FCbCdeEd0eca496750ad3D2029/info.json new file mode 100644 index 00000000..081f1a28 --- /dev/null +++ b/blockchains/ethereum/assets/0xa072bE0DB9d639FCbCdeEd0eca496750ad3D2029/info.json @@ -0,0 +1,11 @@ +{ + "name": "Maker Dao Classic", + "symbol": "MKRC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa072bE0DB9d639FCbCdeEd0eca496750ad3D2029", + "status": "abandoned", + "id": "0xa072bE0DB9d639FCbCdeEd0eca496750ad3D2029" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa072bE0DB9d639FCbCdeEd0eca496750ad3D2029/logo.png b/blockchains/ethereum/assets/0xa072bE0DB9d639FCbCdeEd0eca496750ad3D2029/logo.png new file mode 100644 index 00000000..2e0517bf Binary files /dev/null and b/blockchains/ethereum/assets/0xa072bE0DB9d639FCbCdeEd0eca496750ad3D2029/logo.png differ diff --git a/blockchains/ethereum/assets/0xa07C9046B3040A02f5c2960051786F720526da5A/info.json b/blockchains/ethereum/assets/0xa07C9046B3040A02f5c2960051786F720526da5A/info.json new file mode 100644 index 00000000..f1b432b8 --- /dev/null +++ b/blockchains/ethereum/assets/0xa07C9046B3040A02f5c2960051786F720526da5A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dana-X", + "symbol": "Dana-X", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa07C9046B3040A02f5c2960051786F720526da5A", + "status": "abandoned", + "id": "0xa07C9046B3040A02f5c2960051786F720526da5A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa07C9046B3040A02f5c2960051786F720526da5A/logo.png b/blockchains/ethereum/assets/0xa07C9046B3040A02f5c2960051786F720526da5A/logo.png new file mode 100644 index 00000000..715ef06c Binary files /dev/null and b/blockchains/ethereum/assets/0xa07C9046B3040A02f5c2960051786F720526da5A/logo.png differ diff --git a/blockchains/ethereum/assets/0xa085edaF9E9688611D5390046eF28f206DfC1dFE/info.json b/blockchains/ethereum/assets/0xa085edaF9E9688611D5390046eF28f206DfC1dFE/info.json new file mode 100644 index 00000000..6d40b777 --- /dev/null +++ b/blockchains/ethereum/assets/0xa085edaF9E9688611D5390046eF28f206DfC1dFE/info.json @@ -0,0 +1,11 @@ +{ + "name": "健康通证", + "symbol": "BTZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa085edaF9E9688611D5390046eF28f206DfC1dFE", + "status": "abandoned", + "id": "0xa085edaF9E9688611D5390046eF28f206DfC1dFE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa085edaF9E9688611D5390046eF28f206DfC1dFE/logo.png b/blockchains/ethereum/assets/0xa085edaF9E9688611D5390046eF28f206DfC1dFE/logo.png new file mode 100644 index 00000000..9b6b78db Binary files /dev/null and b/blockchains/ethereum/assets/0xa085edaF9E9688611D5390046eF28f206DfC1dFE/logo.png differ diff --git a/blockchains/ethereum/assets/0xa0872eE815B8dd0F6937386Fd77134720d953581/info.json b/blockchains/ethereum/assets/0xa0872eE815B8dd0F6937386Fd77134720d953581/info.json new file mode 100644 index 00000000..9a2e05f7 --- /dev/null +++ b/blockchains/ethereum/assets/0xa0872eE815B8dd0F6937386Fd77134720d953581/info.json @@ -0,0 +1,11 @@ +{ + "name": "EduCoinToken", + "symbol": "EDU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa0872eE815B8dd0F6937386Fd77134720d953581", + "status": "abandoned", + "id": "0xa0872eE815B8dd0F6937386Fd77134720d953581" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa0872eE815B8dd0F6937386Fd77134720d953581/logo.png b/blockchains/ethereum/assets/0xa0872eE815B8dd0F6937386Fd77134720d953581/logo.png new file mode 100755 index 00000000..897c6bcf Binary files /dev/null and b/blockchains/ethereum/assets/0xa0872eE815B8dd0F6937386Fd77134720d953581/logo.png differ diff --git a/blockchains/ethereum/assets/0xa09CEBC152553e1086bE9cE5efBd9dcbb6641479/info.json b/blockchains/ethereum/assets/0xa09CEBC152553e1086bE9cE5efBd9dcbb6641479/info.json new file mode 100644 index 00000000..7e7f4e17 --- /dev/null +++ b/blockchains/ethereum/assets/0xa09CEBC152553e1086bE9cE5efBd9dcbb6641479/info.json @@ -0,0 +1,11 @@ +{ + "name": "Swissy Stable Coin", + "symbol": "SSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa09CEBC152553e1086bE9cE5efBd9dcbb6641479", + "status": "abandoned", + "id": "0xa09CEBC152553e1086bE9cE5efBd9dcbb6641479" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa09CEBC152553e1086bE9cE5efBd9dcbb6641479/logo.png b/blockchains/ethereum/assets/0xa09CEBC152553e1086bE9cE5efBd9dcbb6641479/logo.png new file mode 100644 index 00000000..3833e5d3 Binary files /dev/null and b/blockchains/ethereum/assets/0xa09CEBC152553e1086bE9cE5efBd9dcbb6641479/logo.png differ diff --git a/blockchains/ethereum/assets/0xa0B207103F764A920b4AF9e691F5bd956DE14DED/info.json b/blockchains/ethereum/assets/0xa0B207103F764A920b4AF9e691F5bd956DE14DED/info.json new file mode 100644 index 00000000..b71dfa9b --- /dev/null +++ b/blockchains/ethereum/assets/0xa0B207103F764A920b4AF9e691F5bd956DE14DED/info.json @@ -0,0 +1,11 @@ +{ + "name": "abitshadow Token", + "symbol": "ABST", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.abitshadow.com/", + "explorer": "https://etherscan.io/token/0xa0B207103F764A920b4AF9e691F5bd956DE14DED", + "status": "abandoned", + "id": "0xa0B207103F764A920b4AF9e691F5bd956DE14DED" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa0B207103F764A920b4AF9e691F5bd956DE14DED/logo.png b/blockchains/ethereum/assets/0xa0B207103F764A920b4AF9e691F5bd956DE14DED/logo.png new file mode 100644 index 00000000..96601ced Binary files /dev/null and b/blockchains/ethereum/assets/0xa0B207103F764A920b4AF9e691F5bd956DE14DED/logo.png differ diff --git a/blockchains/ethereum/assets/0xa0C81655E84c31C4c5BD86d7f927f8CBE3C8A806/info.json b/blockchains/ethereum/assets/0xa0C81655E84c31C4c5BD86d7f927f8CBE3C8A806/info.json new file mode 100644 index 00000000..ab62dc92 --- /dev/null +++ b/blockchains/ethereum/assets/0xa0C81655E84c31C4c5BD86d7f927f8CBE3C8A806/info.json @@ -0,0 +1,11 @@ +{ + "name": "WorldPoker.Game Token", + "symbol": "WPKG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa0C81655E84c31C4c5BD86d7f927f8CBE3C8A806", + "status": "abandoned", + "id": "0xa0C81655E84c31C4c5BD86d7f927f8CBE3C8A806" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa0C81655E84c31C4c5BD86d7f927f8CBE3C8A806/logo.png b/blockchains/ethereum/assets/0xa0C81655E84c31C4c5BD86d7f927f8CBE3C8A806/logo.png new file mode 100644 index 00000000..e156adf6 Binary files /dev/null and b/blockchains/ethereum/assets/0xa0C81655E84c31C4c5BD86d7f927f8CBE3C8A806/logo.png differ diff --git a/blockchains/ethereum/assets/0xa0F0546Eb5E3eE7e8cfC5DA12e5949F3AE622675/info.json b/blockchains/ethereum/assets/0xa0F0546Eb5E3eE7e8cfC5DA12e5949F3AE622675/info.json new file mode 100644 index 00000000..67bce27f --- /dev/null +++ b/blockchains/ethereum/assets/0xa0F0546Eb5E3eE7e8cfC5DA12e5949F3AE622675/info.json @@ -0,0 +1,33 @@ +{ + "name": "TOKO", + "website": "https://tokoin.io/", + "description": "Tokoin's mission is to facilitate trustworthy data exchange in a specified platform so that SMEs will be able to meet their needs for financing and business services without intermediaries.", + "explorer": "https://etherscan.io/token/0xa0F0546Eb5E3eE7e8cfC5DA12e5949F3AE622675", + "type": "ERC20", + "symbol": "TOKO", + "decimals": 18, + "status": "active", + "id": "0xa0F0546Eb5E3eE7e8cfC5DA12e5949F3AE622675", + "links": [ + { + "name": "github", + "url": "https://github.com/tokoinofficial" + }, + { + "name": "x", + "url": "https://x.com/Tokoin" + }, + { + "name": "telegram", + "url": "https://t.me/tokoinglobal" + }, + { + "name": "facebook", + "url": "https://facebook.com/tokoinindonesia" + }, + { + "name": "whitepaper", + "url": "https://www.tokoin.io/whitepaper/Tokoin-Whitepaper.pdf?id=ebfd311b2b26bf1a6201" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa0F0546Eb5E3eE7e8cfC5DA12e5949F3AE622675/logo.png b/blockchains/ethereum/assets/0xa0F0546Eb5E3eE7e8cfC5DA12e5949F3AE622675/logo.png new file mode 100644 index 00000000..e3c9baf5 Binary files /dev/null and b/blockchains/ethereum/assets/0xa0F0546Eb5E3eE7e8cfC5DA12e5949F3AE622675/logo.png differ diff --git a/blockchains/ethereum/assets/0xa0afAA285Ce85974c3C881256cB7F225e3A1178a/info.json b/blockchains/ethereum/assets/0xa0afAA285Ce85974c3C881256cB7F225e3A1178a/info.json new file mode 100644 index 00000000..cf5bcac2 --- /dev/null +++ b/blockchains/ethereum/assets/0xa0afAA285Ce85974c3C881256cB7F225e3A1178a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped CrescoFin", + "type": "ERC20", + "symbol": "wCRES", + "decimals": 18, + "website": "https://defi.crescofin.ch", + "description": "wCRES represents unregistered equity in CrescoFin, a better banking alternative, with higher rates than in a bank and fully insured deposits and returns. Incorporated and regulated in Switzerland.", + "explorer": "https://etherscan.io/token/0xa0afAA285Ce85974c3C881256cB7F225e3A1178a", + "status": "active", + "id": "0xa0afAA285Ce85974c3C881256cB7F225e3A1178a" +} diff --git a/blockchains/ethereum/assets/0xa0afAA285Ce85974c3C881256cB7F225e3A1178a/logo.png b/blockchains/ethereum/assets/0xa0afAA285Ce85974c3C881256cB7F225e3A1178a/logo.png new file mode 100644 index 00000000..07f5aee0 Binary files /dev/null and b/blockchains/ethereum/assets/0xa0afAA285Ce85974c3C881256cB7F225e3A1178a/logo.png differ diff --git a/blockchains/ethereum/assets/0xa0b8B9C740237dc3ae15117C0685F78Dc863fb86/info.json b/blockchains/ethereum/assets/0xa0b8B9C740237dc3ae15117C0685F78Dc863fb86/info.json new file mode 100644 index 00000000..3fcb7930 --- /dev/null +++ b/blockchains/ethereum/assets/0xa0b8B9C740237dc3ae15117C0685F78Dc863fb86/info.json @@ -0,0 +1,11 @@ +{ + "name": "Warc", + "symbol": "WARC", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa0b8B9C740237dc3ae15117C0685F78Dc863fb86", + "status": "abandoned", + "id": "0xa0b8B9C740237dc3ae15117C0685F78Dc863fb86" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa0b8B9C740237dc3ae15117C0685F78Dc863fb86/logo.png b/blockchains/ethereum/assets/0xa0b8B9C740237dc3ae15117C0685F78Dc863fb86/logo.png new file mode 100644 index 00000000..16d11f3d Binary files /dev/null and b/blockchains/ethereum/assets/0xa0b8B9C740237dc3ae15117C0685F78Dc863fb86/logo.png differ diff --git a/blockchains/ethereum/assets/0xa0bEd124a09ac2Bd941b10349d8d224fe3c955eb/info.json b/blockchains/ethereum/assets/0xa0bEd124a09ac2Bd941b10349d8d224fe3c955eb/info.json new file mode 100644 index 00000000..466606bf --- /dev/null +++ b/blockchains/ethereum/assets/0xa0bEd124a09ac2Bd941b10349d8d224fe3c955eb/info.json @@ -0,0 +1,37 @@ +{ + "name": "DePay", + "website": "https://depay.fi", + "description": "DePay is a simple, decentralized payment protocol that simplifies crypto payments.", + "explorer": "https://etherscan.io/token/0xa0bEd124a09ac2Bd941b10349d8d224fe3c955eb", + "type": "ERC20", + "symbol": "DEPAY", + "decimals": 18, + "status": "active", + "id": "0xa0bEd124a09ac2Bd941b10349d8d224fe3c955eb", + "links": [ + { + "name": "github", + "url": "https://github.com/DePayFi" + }, + { + "name": "x", + "url": "https://x.com/DePayFi" + }, + { + "name": "telegram", + "url": "https://t.me/depayfi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/smDs5zK" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/DePayFi" + }, + { + "name": "medium", + "url": "https://depay.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa0bEd124a09ac2Bd941b10349d8d224fe3c955eb/logo.png b/blockchains/ethereum/assets/0xa0bEd124a09ac2Bd941b10349d8d224fe3c955eb/logo.png new file mode 100644 index 00000000..a4cf0824 Binary files /dev/null and b/blockchains/ethereum/assets/0xa0bEd124a09ac2Bd941b10349d8d224fe3c955eb/logo.png differ diff --git a/blockchains/ethereum/assets/0xa0d440C6DA37892Dc06Ee7930B2eedE0634FD681/info.json b/blockchains/ethereum/assets/0xa0d440C6DA37892Dc06Ee7930B2eedE0634FD681/info.json new file mode 100644 index 00000000..faacfcba --- /dev/null +++ b/blockchains/ethereum/assets/0xa0d440C6DA37892Dc06Ee7930B2eedE0634FD681/info.json @@ -0,0 +1,11 @@ +{ + "name": "MasterNet", + "symbol": "MASH", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://masternet.io/", + "explorer": "https://etherscan.io/token/0xa0d440C6DA37892Dc06Ee7930B2eedE0634FD681", + "status": "abandoned", + "id": "0xa0d440C6DA37892Dc06Ee7930B2eedE0634FD681" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa0d440C6DA37892Dc06Ee7930B2eedE0634FD681/logo.png b/blockchains/ethereum/assets/0xa0d440C6DA37892Dc06Ee7930B2eedE0634FD681/logo.png new file mode 100755 index 00000000..19dbdef4 Binary files /dev/null and b/blockchains/ethereum/assets/0xa0d440C6DA37892Dc06Ee7930B2eedE0634FD681/logo.png differ diff --git a/blockchains/ethereum/assets/0xa105C740BC012A43a342Ab4A0Ef40143452C8E89/info.json b/blockchains/ethereum/assets/0xa105C740BC012A43a342Ab4A0Ef40143452C8E89/info.json new file mode 100644 index 00000000..3aeb672c --- /dev/null +++ b/blockchains/ethereum/assets/0xa105C740BC012A43a342Ab4A0Ef40143452C8E89/info.json @@ -0,0 +1,11 @@ +{ + "name": "Litbinex Coin", + "symbol": "LTB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.litbinex.com/", + "explorer": "https://etherscan.io/token/0xa105C740BC012A43a342Ab4A0Ef40143452C8E89", + "status": "abandoned", + "id": "0xa105C740BC012A43a342Ab4A0Ef40143452C8E89" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa105C740BC012A43a342Ab4A0Ef40143452C8E89/logo.png b/blockchains/ethereum/assets/0xa105C740BC012A43a342Ab4A0Ef40143452C8E89/logo.png new file mode 100644 index 00000000..2a3773da Binary files /dev/null and b/blockchains/ethereum/assets/0xa105C740BC012A43a342Ab4A0Ef40143452C8E89/logo.png differ diff --git a/blockchains/ethereum/assets/0xa1069A93B0E44cc42bDceC90D010746d1b65a65C/info.json b/blockchains/ethereum/assets/0xa1069A93B0E44cc42bDceC90D010746d1b65a65C/info.json new file mode 100644 index 00000000..41d2e237 --- /dev/null +++ b/blockchains/ethereum/assets/0xa1069A93B0E44cc42bDceC90D010746d1b65a65C/info.json @@ -0,0 +1,17 @@ +{ + "name": "BCDC", + "website": "https://bcdc.finance/", + "description": "BCDC is the investment platform that connects Ce-Fi and De-Fi.", + "explorer": "https://etherscan.io/token/0xa1069a93b0e44cc42bdcec90d010746d1b65a65c", + "type": "ERC20", + "symbol": "BCDC", + "decimals": 18, + "status": "active", + "id": "0xa1069A93B0E44cc42bDceC90D010746d1b65a65C", + "links": [ + { + "name": "github", + "url": "https://github.com/bcdc-defi/bcdc-contract" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa1069A93B0E44cc42bDceC90D010746d1b65a65C/logo.png b/blockchains/ethereum/assets/0xa1069A93B0E44cc42bDceC90D010746d1b65a65C/logo.png new file mode 100644 index 00000000..91981e0b Binary files /dev/null and b/blockchains/ethereum/assets/0xa1069A93B0E44cc42bDceC90D010746d1b65a65C/logo.png differ diff --git a/blockchains/ethereum/assets/0xa10ae543dB5D967a73E9Abcc69c81a18A7Fc0A78/info.json b/blockchains/ethereum/assets/0xa10ae543dB5D967a73E9Abcc69c81a18A7Fc0A78/info.json new file mode 100644 index 00000000..74871921 --- /dev/null +++ b/blockchains/ethereum/assets/0xa10ae543dB5D967a73E9Abcc69c81a18A7Fc0A78/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLOCKCLOUT", + "symbol": "CLOUT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://blockclout.com/", + "explorer": "https://etherscan.io/token/0xa10ae543dB5D967a73E9Abcc69c81a18A7Fc0A78", + "status": "abandoned", + "id": "0xa10ae543dB5D967a73E9Abcc69c81a18A7Fc0A78" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa10ae543dB5D967a73E9Abcc69c81a18A7Fc0A78/logo.png b/blockchains/ethereum/assets/0xa10ae543dB5D967a73E9Abcc69c81a18A7Fc0A78/logo.png new file mode 100644 index 00000000..059dbbef Binary files /dev/null and b/blockchains/ethereum/assets/0xa10ae543dB5D967a73E9Abcc69c81a18A7Fc0A78/logo.png differ diff --git a/blockchains/ethereum/assets/0xa1116930326D21fB917d5A27F1E9943A9595fb47/info.json b/blockchains/ethereum/assets/0xa1116930326D21fB917d5A27F1E9943A9595fb47/info.json new file mode 100644 index 00000000..885c8705 --- /dev/null +++ b/blockchains/ethereum/assets/0xa1116930326D21fB917d5A27F1E9943A9595fb47/info.json @@ -0,0 +1,11 @@ +{ + "name": "Staked ABPT ", + "symbol": "stkABPT", + "type": "ERC20", + "decimals": 18, + "description": "stkABPT is AAVE/ETH Balancer Liquidity that is staked in the Aave Protocol Safety Module. In case of a shortfall event, up to 30% of the stkABPT can be slashed to cover the deficit. stkABPT holders earn Safety Incentives, BAL rewards and trading fees as a reward for protecting the protocol and liquidity provided to Balancer.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xa1116930326D21fB917d5A27F1E9943A9595fb47", + "status": "active", + "id": "0xa1116930326D21fB917d5A27F1E9943A9595fb47" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa1116930326D21fB917d5A27F1E9943A9595fb47/logo.png b/blockchains/ethereum/assets/0xa1116930326D21fB917d5A27F1E9943A9595fb47/logo.png new file mode 100644 index 00000000..c493b10e Binary files /dev/null and b/blockchains/ethereum/assets/0xa1116930326D21fB917d5A27F1E9943A9595fb47/logo.png differ diff --git a/blockchains/ethereum/assets/0xa117000000f279D81A1D3cc75430fAA017FA5A2e/info.json b/blockchains/ethereum/assets/0xa117000000f279D81A1D3cc75430fAA017FA5A2e/info.json new file mode 100644 index 00000000..2f5c6082 --- /dev/null +++ b/blockchains/ethereum/assets/0xa117000000f279D81A1D3cc75430fAA017FA5A2e/info.json @@ -0,0 +1,12 @@ +{ + "name": "Aragon", + "website": "https://aragon.org", + "description": "Aragon (ANT) is a decentralized platform built on the Ethereum network that offers a modularized way to create and manage dApps, cryptoprotocols, and decentralized autonomous organizations (DAO).", + "explorer": "https://etherscan.io/token/0xa117000000f279D81A1D3cc75430fAA017FA5A2e", + "research": "https://research.binance.com/en/projects/aragon", + "type": "ERC20", + "symbol": "ANT", + "decimals": 18, + "status": "active", + "id": "0xa117000000f279D81A1D3cc75430fAA017FA5A2e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa117000000f279D81A1D3cc75430fAA017FA5A2e/logo.png b/blockchains/ethereum/assets/0xa117000000f279D81A1D3cc75430fAA017FA5A2e/logo.png new file mode 100644 index 00000000..bdb53115 Binary files /dev/null and b/blockchains/ethereum/assets/0xa117000000f279D81A1D3cc75430fAA017FA5A2e/logo.png differ diff --git a/blockchains/ethereum/assets/0xa117ea1c0c85CEf648df2b6f40e50bb5475C228d/info.json b/blockchains/ethereum/assets/0xa117ea1c0c85CEf648df2b6f40e50bb5475C228d/info.json new file mode 100644 index 00000000..f909375a --- /dev/null +++ b/blockchains/ethereum/assets/0xa117ea1c0c85CEf648df2b6f40e50bb5475C228d/info.json @@ -0,0 +1,33 @@ +{ + "name": "DUCATO Protocol Token", + "website": "http://ducato.io/", + "description": "The DUCATO Protocols aims at developing an optimized blockchain technology, providing user-centric services, expanding of network participants and developing credible algorithm and decentralized governance for network users’ profit.", + "explorer": "https://etherscan.io/token/0xa117ea1c0c85CEf648df2b6f40e50bb5475C228d", + "type": "ERC20", + "symbol": "DUCATO", + "decimals": 18, + "status": "active", + "id": "0xa117ea1c0c85CEf648df2b6f40e50bb5475C228d", + "links": [ + { + "name": "x", + "url": "https://x.com/DUCATO_DeFi" + }, + { + "name": "telegram", + "url": "https://t.me/DUCATO_Channel" + }, + { + "name": "facebook", + "url": "https://facebook.com/DeFi.DUCATO/" + }, + { + "name": "medium", + "url": "https://medium.com/@ducato.mkt" + }, + { + "name": "whitepaper", + "url": "https://ducato.io/files/DUCATO_Whitepaper_ENG_v0.8.3.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa117ea1c0c85CEf648df2b6f40e50bb5475C228d/logo.png b/blockchains/ethereum/assets/0xa117ea1c0c85CEf648df2b6f40e50bb5475C228d/logo.png new file mode 100644 index 00000000..6b7797f5 Binary files /dev/null and b/blockchains/ethereum/assets/0xa117ea1c0c85CEf648df2b6f40e50bb5475C228d/logo.png differ diff --git a/blockchains/ethereum/assets/0xa11E45783EB07a5E90e201f9AA473F123cCC8E51/info.json b/blockchains/ethereum/assets/0xa11E45783EB07a5E90e201f9AA473F123cCC8E51/info.json new file mode 100644 index 00000000..6a27605d --- /dev/null +++ b/blockchains/ethereum/assets/0xa11E45783EB07a5E90e201f9AA473F123cCC8E51/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rethen Token", + "symbol": "RTH2", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa11E45783EB07a5E90e201f9AA473F123cCC8E51", + "status": "abandoned", + "id": "0xa11E45783EB07a5E90e201f9AA473F123cCC8E51" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa11E45783EB07a5E90e201f9AA473F123cCC8E51/logo.png b/blockchains/ethereum/assets/0xa11E45783EB07a5E90e201f9AA473F123cCC8E51/logo.png new file mode 100755 index 00000000..c46f8fa9 Binary files /dev/null and b/blockchains/ethereum/assets/0xa11E45783EB07a5E90e201f9AA473F123cCC8E51/logo.png differ diff --git a/blockchains/ethereum/assets/0xa12BD9d0f059349055a3Dc4e38833171B4ad2A35/info.json b/blockchains/ethereum/assets/0xa12BD9d0f059349055a3Dc4e38833171B4ad2A35/info.json new file mode 100644 index 00000000..3487e20b --- /dev/null +++ b/blockchains/ethereum/assets/0xa12BD9d0f059349055a3Dc4e38833171B4ad2A35/info.json @@ -0,0 +1,11 @@ +{ + "name": "POWM", + "website": "https://powmcoin.com", + "description": "POWM coin is a holder-flexible staking coin", + "explorer": "https://etherscan.io/token/0xa12BD9d0f059349055a3Dc4e38833171B4ad2A35", + "type": "ERC20", + "symbol": "POWM", + "decimals": 18, + "status": "active", + "id": "0xa12BD9d0f059349055a3Dc4e38833171B4ad2A35" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa12BD9d0f059349055a3Dc4e38833171B4ad2A35/logo.png b/blockchains/ethereum/assets/0xa12BD9d0f059349055a3Dc4e38833171B4ad2A35/logo.png new file mode 100644 index 00000000..e938d28b Binary files /dev/null and b/blockchains/ethereum/assets/0xa12BD9d0f059349055a3Dc4e38833171B4ad2A35/logo.png differ diff --git a/blockchains/ethereum/assets/0xa150Db9b1Fa65b44799d4dD949D922c0a33Ee606/info.json b/blockchains/ethereum/assets/0xa150Db9b1Fa65b44799d4dD949D922c0a33Ee606/info.json new file mode 100644 index 00000000..48fe9cff --- /dev/null +++ b/blockchains/ethereum/assets/0xa150Db9b1Fa65b44799d4dD949D922c0a33Ee606/info.json @@ -0,0 +1,33 @@ +{ + "name": "Digital Reserve Currency", + "website": "https://drcglobal.org/", + "description": "Digital Reserve Currency was designed to become a decentralized digital store of value with a limited supply and a zero inflation rate. It was created during the COVID-19 crisis when fiscal and monetary policies have exposed serious vulnerabilities in the current financial system. The concept of Digital Reserve Currency was developed by Maxim Nurov, founder of Digital Finance.", + "explorer": "https://etherscan.io/token/0xa150Db9b1Fa65b44799d4dD949D922c0a33Ee606", + "type": "ERC20", + "symbol": "DRC", + "decimals": 0, + "status": "active", + "id": "0xa150Db9b1Fa65b44799d4dD949D922c0a33Ee606", + "links": [ + { + "name": "github", + "url": "https://github.com/digitalreserve/DRC" + }, + { + "name": "x", + "url": "https://x.com/DRCToken" + }, + { + "name": "telegram", + "url": "https://t.me/DigitalReserveCurrency" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8BrRdc" + }, + { + "name": "whitepaper", + "url": "https://drcglobal.org/white-paper-1" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa150Db9b1Fa65b44799d4dD949D922c0a33Ee606/logo.png b/blockchains/ethereum/assets/0xa150Db9b1Fa65b44799d4dD949D922c0a33Ee606/logo.png new file mode 100644 index 00000000..231f1df7 Binary files /dev/null and b/blockchains/ethereum/assets/0xa150Db9b1Fa65b44799d4dD949D922c0a33Ee606/logo.png differ diff --git a/blockchains/ethereum/assets/0xa19A40FbD7375431fAB013a4B08F00871B9a2791/info.json b/blockchains/ethereum/assets/0xa19A40FbD7375431fAB013a4B08F00871B9a2791/info.json new file mode 100644 index 00000000..34c766bd --- /dev/null +++ b/blockchains/ethereum/assets/0xa19A40FbD7375431fAB013a4B08F00871B9a2791/info.json @@ -0,0 +1,11 @@ +{ + "name": "SWAGG", + "symbol": "SWAGG", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://swagg.network/", + "explorer": "https://etherscan.io/token/0xa19A40FbD7375431fAB013a4B08F00871B9a2791", + "status": "abandoned", + "id": "0xa19A40FbD7375431fAB013a4B08F00871B9a2791" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa19A40FbD7375431fAB013a4B08F00871B9a2791/logo.png b/blockchains/ethereum/assets/0xa19A40FbD7375431fAB013a4B08F00871B9a2791/logo.png new file mode 100644 index 00000000..e9287397 Binary files /dev/null and b/blockchains/ethereum/assets/0xa19A40FbD7375431fAB013a4B08F00871B9a2791/logo.png differ diff --git a/blockchains/ethereum/assets/0xa1A6f16D26aa53aEC17E4001fD8CB6E6d5B17Ff7/info.json b/blockchains/ethereum/assets/0xa1A6f16D26aa53aEC17E4001fD8CB6E6d5B17Ff7/info.json new file mode 100644 index 00000000..2ebf9440 --- /dev/null +++ b/blockchains/ethereum/assets/0xa1A6f16D26aa53aEC17E4001fD8CB6E6d5B17Ff7/info.json @@ -0,0 +1,11 @@ +{ + "name": "1irst", + "symbol": "FST", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa1A6f16D26aa53aEC17E4001fD8CB6E6d5B17Ff7", + "status": "abandoned", + "id": "0xa1A6f16D26aa53aEC17E4001fD8CB6E6d5B17Ff7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa1A6f16D26aa53aEC17E4001fD8CB6E6d5B17Ff7/logo.png b/blockchains/ethereum/assets/0xa1A6f16D26aa53aEC17E4001fD8CB6E6d5B17Ff7/logo.png new file mode 100644 index 00000000..b0944865 Binary files /dev/null and b/blockchains/ethereum/assets/0xa1A6f16D26aa53aEC17E4001fD8CB6E6d5B17Ff7/logo.png differ diff --git a/blockchains/ethereum/assets/0xa1EA9aA32CBba8c203DDC510a144aD1F439d436c/info.json b/blockchains/ethereum/assets/0xa1EA9aA32CBba8c203DDC510a144aD1F439d436c/info.json new file mode 100644 index 00000000..98f28f43 --- /dev/null +++ b/blockchains/ethereum/assets/0xa1EA9aA32CBba8c203DDC510a144aD1F439d436c/info.json @@ -0,0 +1,37 @@ +{ + "name": "MetaPortal Gaming Index", + "type": "ERC20", + "symbol": "GAME", + "decimals": 18, + "website": "https://www.metaportal.wtf/", + "description": "The MetaPortal Gaming Index ($GAME) is designed to provide exposure to the emergent crypto gaming space. Investing across games, virtual worlds and gaming platforms, $GAME is a simple and effective way to express the view that crypto games will capture a greater share of the burgeoning gaming market. ", + "explorer": "https://etherscan.io/token/0xa1EA9aA32CBba8c203DDC510a144aD1F439d436c", + "status": "active", + "id": "0xa1EA9aA32CBba8c203DDC510a144aD1F439d436c", + "links": [ + { + "name": "x", + "url": "https://x.com/MetaportaI" + }, + { + "name": "github", + "url": "https://github.com/" + }, + { + "name": "discord", + "url": "https://discord.com/7nqfvnF8y9" + }, + { + "name": "blog", + "url": "https://metaportal.substack.com/" + }, + { + "name": "docs", + "url": "https://metaportal.gitbook.io/welcome/the-basics/welcome" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa1EA9aA32CBba8c203DDC510a144aD1F439d436c/logo.png b/blockchains/ethereum/assets/0xa1EA9aA32CBba8c203DDC510a144aD1F439d436c/logo.png new file mode 100644 index 00000000..78d85f70 Binary files /dev/null and b/blockchains/ethereum/assets/0xa1EA9aA32CBba8c203DDC510a144aD1F439d436c/logo.png differ diff --git a/blockchains/ethereum/assets/0xa1d0E215a23d7030842FC67cE582a6aFa3CCaB83/info.json b/blockchains/ethereum/assets/0xa1d0E215a23d7030842FC67cE582a6aFa3CCaB83/info.json new file mode 100644 index 00000000..55c816b0 --- /dev/null +++ b/blockchains/ethereum/assets/0xa1d0E215a23d7030842FC67cE582a6aFa3CCaB83/info.json @@ -0,0 +1,12 @@ +{ + "name": "YFII", + "website": "https://yfii.finance/", + "description": "YFII is a fork of Yearn.finance YFI with YIP 8 implemented.", + "explorer": "https://etherscan.io/token/0xa1d0E215a23d7030842FC67cE582a6aFa3CCaB83", + "research": "https://research.binance.com/en/projects/dfimoney", + "type": "ERC20", + "symbol": "YFII", + "decimals": 18, + "status": "active", + "id": "0xa1d0E215a23d7030842FC67cE582a6aFa3CCaB83" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa1d0E215a23d7030842FC67cE582a6aFa3CCaB83/logo.png b/blockchains/ethereum/assets/0xa1d0E215a23d7030842FC67cE582a6aFa3CCaB83/logo.png new file mode 100755 index 00000000..8b38b931 Binary files /dev/null and b/blockchains/ethereum/assets/0xa1d0E215a23d7030842FC67cE582a6aFa3CCaB83/logo.png differ diff --git a/blockchains/ethereum/assets/0xa1d65E8fB6e87b60FECCBc582F7f97804B725521/info.json b/blockchains/ethereum/assets/0xa1d65E8fB6e87b60FECCBc582F7f97804B725521/info.json new file mode 100644 index 00000000..48644a9a --- /dev/null +++ b/blockchains/ethereum/assets/0xa1d65E8fB6e87b60FECCBc582F7f97804B725521/info.json @@ -0,0 +1,28 @@ +{ + "name": "DXD", + "website": "https://Dxdao.eth.link/", + "description": "The DXdao is a decentralized organization initialized in May of 2019 and has over 400 unique stakeholder addresses. It develops, governs, and grows DeFi protocols and products. Owned and operated by the community, the DXdao has the potential to significantly scale its membership.", + "explorer": "https://etherscan.io/token/0xa1d65E8fB6e87b60FECCBc582F7f97804B725521", + "type": "ERC20", + "symbol": "DXD", + "decimals": 18, + "status": "active", + "id": "0xa1d65E8fB6e87b60FECCBc582F7f97804B725521", + "tags": [ + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/levelkdev/BC-DAPP" + }, + { + "name": "x", + "url": "https://x.com/Dxdao_" + }, + { + "name": "telegram", + "url": "https://t.me/dxDAO" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa1d65E8fB6e87b60FECCBc582F7f97804B725521/logo.png b/blockchains/ethereum/assets/0xa1d65E8fB6e87b60FECCBc582F7f97804B725521/logo.png new file mode 100644 index 00000000..c691f5a5 Binary files /dev/null and b/blockchains/ethereum/assets/0xa1d65E8fB6e87b60FECCBc582F7f97804B725521/logo.png differ diff --git a/blockchains/ethereum/assets/0xa1d6Df714F91DeBF4e0802A542E13067f31b8262/info.json b/blockchains/ethereum/assets/0xa1d6Df714F91DeBF4e0802A542E13067f31b8262/info.json new file mode 100644 index 00000000..84e96cb7 --- /dev/null +++ b/blockchains/ethereum/assets/0xa1d6Df714F91DeBF4e0802A542E13067f31b8262/info.json @@ -0,0 +1,11 @@ +{ + "name": "RFOX", + "type": "ERC20", + "symbol": "RFOX", + "decimals": 18, + "website": "https://redfoxlabs.io", + "description": "REDFOXLABS is a tech-forward digital venture builder delivering companies & platforms that are secure, scalable, and innovative, bringing the world into a new era of technology and prosperity.", + "explorer": "https://etherscan.io/token/0xa1d6Df714F91DeBF4e0802A542E13067f31b8262", + "status": "active", + "id": "0xa1d6Df714F91DeBF4e0802A542E13067f31b8262" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa1d6Df714F91DeBF4e0802A542E13067f31b8262/logo.png b/blockchains/ethereum/assets/0xa1d6Df714F91DeBF4e0802A542E13067f31b8262/logo.png new file mode 100644 index 00000000..e22a74b5 Binary files /dev/null and b/blockchains/ethereum/assets/0xa1d6Df714F91DeBF4e0802A542E13067f31b8262/logo.png differ diff --git a/blockchains/ethereum/assets/0xa1e72267084192Db7387c8CC1328fadE470e4149/info.json b/blockchains/ethereum/assets/0xa1e72267084192Db7387c8CC1328fadE470e4149/info.json new file mode 100644 index 00000000..24bfe225 --- /dev/null +++ b/blockchains/ethereum/assets/0xa1e72267084192Db7387c8CC1328fadE470e4149/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueFi TrueUSD", + "website": "https://truefi.io/", + "description": "TrueFi is an on-chain uncollateralized lending protocol. tfTUSD represents a users TUSD deposit into the protocol's lending pool", + "explorer": "https://etherscan.io/token/0xa1e72267084192Db7387c8CC1328fadE470e4149", + "decimals": 18, + "id": "0xa1e72267084192Db7387c8CC1328fadE470e4149", + "type": "ERC20", + "symbol": "tfTUSD", + "status": "active" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa1e72267084192Db7387c8CC1328fadE470e4149/logo.png b/blockchains/ethereum/assets/0xa1e72267084192Db7387c8CC1328fadE470e4149/logo.png new file mode 100644 index 00000000..0dfbe379 Binary files /dev/null and b/blockchains/ethereum/assets/0xa1e72267084192Db7387c8CC1328fadE470e4149/logo.png differ diff --git a/blockchains/ethereum/assets/0xa1eD0364D53394209D61aE8bfdb8Ff50484D8c91/info.json b/blockchains/ethereum/assets/0xa1eD0364D53394209D61aE8bfdb8Ff50484D8c91/info.json new file mode 100644 index 00000000..0338c11a --- /dev/null +++ b/blockchains/ethereum/assets/0xa1eD0364D53394209D61aE8bfdb8Ff50484D8c91/info.json @@ -0,0 +1,21 @@ +{ + "name": "TeraBlock Token", + "website": "https://terablock.ai", + "description": "Machine Learning driven, personalised cryptocurrency trade automation to help you easily manage your assets.", + "explorer": "https://etherscan.io/token/0xa1ed0364d53394209d61ae8bfdb8ff50484d8c91", + "symbol": "TBC", + "decimals": 18, + "type": "ERC20", + "status": "abandoned", + "id": "0xa1eD0364D53394209D61aE8bfdb8Ff50484D8c91", + "links": [ + { + "name": "x", + "url": "https://x.com/MyTeraBlock" + }, + { + "name": "telegram", + "url": "https://t.me/TeraBlock" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/info.json b/blockchains/ethereum/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/info.json new file mode 100644 index 00000000..9b5e975b --- /dev/null +++ b/blockchains/ethereum/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/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://etherscan.io/token/0xa1faa113cbE53436Df28FF0aEe54275c13B40975", + "data_source": "crowd", + "type": "ERC20", + "symbol": "ALPHA", + "decimals": 18, + "status": "active", + "id": "0xa1faa113cbE53436Df28FF0aEe54275c13B40975", + "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/ethereum/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/logo.png b/blockchains/ethereum/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/logo.png new file mode 100644 index 00000000..ea505242 Binary files /dev/null and b/blockchains/ethereum/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/logo.png differ diff --git a/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/info.json b/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/info.json new file mode 100644 index 00000000..c6f4f1ad --- /dev/null +++ b/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/info.json @@ -0,0 +1,36 @@ +{ + "name": "Cherry Token", + "website": "https://cherry.network", + "description": "Trustless, distributed storage for decentralized applications", + "explorer": "https://etherscan.io/token/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc", + "type": "ERC20", + "symbol": "CHER", + "decimals": 18, + "status": "active", + "id": "0xa20f77B7ad5A88badC48800C56507B7274c06Fdc", + "links": [ + { + "name": "github", + "url": "https://github.com/cherrynetwork" + }, + { + "name": "x", + "url": "https://x.com/cherry_network" + }, + { + "name": "telegram", + "url": "https://t.me/cherrynetwork" + }, + { + "name": "medium", + "url": "https://medium.com/@cherryproject" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cherry-network" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/logo.png b/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/logo.png new file mode 100644 index 00000000..f21a9869 Binary files /dev/null and b/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/logo.png differ diff --git a/blockchains/ethereum/assets/0xa211F450Ce88deb31D3F12Ae3C1EBf6b0e55A5d9/info.json b/blockchains/ethereum/assets/0xa211F450Ce88deb31D3F12Ae3C1EBf6b0e55A5d9/info.json new file mode 100644 index 00000000..90548de0 --- /dev/null +++ b/blockchains/ethereum/assets/0xa211F450Ce88deb31D3F12Ae3C1EBf6b0e55A5d9/info.json @@ -0,0 +1,29 @@ +{ + "name": "Parsiq Boost", + "website": "https://parsiq.net", + "description": "Incentivization of Liquidity Providers by PARSIQ.", + "explorer": "https://etherscan.io/token/0xa211F450Ce88deb31D3F12Ae3C1EBf6b0e55A5d9", + "type": "ERC20", + "symbol": "PRQBOOST", + "decimals": 18, + "status": "active", + "id": "0xa211F450Ce88deb31D3F12Ae3C1EBf6b0e55A5d9", + "links": [ + { + "name": "telegram", + "url": "https://t.me/parsiq_group" + }, + { + "name": "x", + "url": "https://x.com/parsiq_net" + }, + { + "name": "facebook", + "url": "https://facebook.com/parsiqnet/" + }, + { + "name": "medium", + "url": "https://medium.com/parsiq" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa211F450Ce88deb31D3F12Ae3C1EBf6b0e55A5d9/logo.png b/blockchains/ethereum/assets/0xa211F450Ce88deb31D3F12Ae3C1EBf6b0e55A5d9/logo.png new file mode 100644 index 00000000..84bc8b0b Binary files /dev/null and b/blockchains/ethereum/assets/0xa211F450Ce88deb31D3F12Ae3C1EBf6b0e55A5d9/logo.png differ diff --git a/blockchains/ethereum/assets/0xa21Af1050F7B26e0cfF45ee51548254C41ED6b5c/info.json b/blockchains/ethereum/assets/0xa21Af1050F7B26e0cfF45ee51548254C41ED6b5c/info.json new file mode 100644 index 00000000..7240898c --- /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 00000000..a2805538 Binary files /dev/null and b/blockchains/ethereum/assets/0xa21Af1050F7B26e0cfF45ee51548254C41ED6b5c/logo.png differ diff --git a/blockchains/ethereum/assets/0xa249DE6948022783765Fee4850d7b85E43118FCc/info.json b/blockchains/ethereum/assets/0xa249DE6948022783765Fee4850d7b85E43118FCc/info.json new file mode 100644 index 00000000..028b31bd --- /dev/null +++ b/blockchains/ethereum/assets/0xa249DE6948022783765Fee4850d7b85E43118FCc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jarvis+ Coins", + "symbol": "JAR", + "type": "ERC20", + "decimals": 18, + "description": "Jarvis+ (JAR) is a cryptocurrency and operates on the Ethereum platform.", + "website": "http://www.jarvisplus.com", + "explorer": "https://etherscan.io/token/0xa249DE6948022783765Fee4850d7b85E43118FCc", + "status": "active", + "id": "0xa249DE6948022783765Fee4850d7b85E43118FCc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa249DE6948022783765Fee4850d7b85E43118FCc/logo.png b/blockchains/ethereum/assets/0xa249DE6948022783765Fee4850d7b85E43118FCc/logo.png new file mode 100644 index 00000000..9defda8e Binary files /dev/null and b/blockchains/ethereum/assets/0xa249DE6948022783765Fee4850d7b85E43118FCc/logo.png differ diff --git a/blockchains/ethereum/assets/0xa249F0E9A464b9685F66992f41e1012388e39e81/info.json b/blockchains/ethereum/assets/0xa249F0E9A464b9685F66992f41e1012388e39e81/info.json new file mode 100644 index 00000000..116f64b5 --- /dev/null +++ b/blockchains/ethereum/assets/0xa249F0E9A464b9685F66992f41e1012388e39e81/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aerum", + "symbol": "XRM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://aerum.com/en", + "explorer": "https://etherscan.io/token/0xa249F0E9A464b9685F66992f41e1012388e39e81", + "status": "abandoned", + "id": "0xa249F0E9A464b9685F66992f41e1012388e39e81" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa249F0E9A464b9685F66992f41e1012388e39e81/logo.png b/blockchains/ethereum/assets/0xa249F0E9A464b9685F66992f41e1012388e39e81/logo.png new file mode 100644 index 00000000..b8ae3f98 Binary files /dev/null and b/blockchains/ethereum/assets/0xa249F0E9A464b9685F66992f41e1012388e39e81/logo.png differ diff --git a/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json new file mode 100644 index 00000000..da042e16 --- /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 00000000..83259616 Binary files /dev/null and b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png differ diff --git a/blockchains/ethereum/assets/0xa2f96EF6ed3d67A0352e659B1E980f13e098619F/info.json b/blockchains/ethereum/assets/0xa2f96EF6ed3d67A0352e659B1E980f13e098619F/info.json new file mode 100644 index 00000000..70e2a229 --- /dev/null +++ b/blockchains/ethereum/assets/0xa2f96EF6ed3d67A0352e659B1E980f13e098619F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Random Number Generator", + "symbol": "RNG", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa2f96EF6ed3d67A0352e659B1E980f13e098619F", + "status": "active", + "id": "0xa2f96EF6ed3d67A0352e659B1E980f13e098619F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa2f96EF6ed3d67A0352e659B1E980f13e098619F/logo.png b/blockchains/ethereum/assets/0xa2f96EF6ed3d67A0352e659B1E980f13e098619F/logo.png new file mode 100644 index 00000000..0813c9cb Binary files /dev/null and b/blockchains/ethereum/assets/0xa2f96EF6ed3d67A0352e659B1E980f13e098619F/logo.png differ diff --git a/blockchains/ethereum/assets/0xa311856B777Df090D2D3D8C306CaAf6e4DfD9AE9/info.json b/blockchains/ethereum/assets/0xa311856B777Df090D2D3D8C306CaAf6e4DfD9AE9/info.json new file mode 100644 index 00000000..bdd5f253 --- /dev/null +++ b/blockchains/ethereum/assets/0xa311856B777Df090D2D3D8C306CaAf6e4DfD9AE9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gamma Coin", + "website": "https://gammaproject.xyz/", + "description": "GMC are economic tokens and investments made using the Ethereum blockchain (ERC20).", + "explorer": "https://etherscan.io/token/0xa311856B777Df090D2D3D8C306CaAf6e4DfD9AE9", + "type": "ERC20", + "symbol": "GMC", + "decimals": 18, + "status": "active", + "id": "0xa311856B777Df090D2D3D8C306CaAf6e4DfD9AE9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa311856B777Df090D2D3D8C306CaAf6e4DfD9AE9/logo.png b/blockchains/ethereum/assets/0xa311856B777Df090D2D3D8C306CaAf6e4DfD9AE9/logo.png new file mode 100644 index 00000000..c1511de6 Binary files /dev/null and b/blockchains/ethereum/assets/0xa311856B777Df090D2D3D8C306CaAf6e4DfD9AE9/logo.png differ diff --git a/blockchains/ethereum/assets/0xa33e729bf4fdeb868B534e1f20523463D9C46bEe/info.json b/blockchains/ethereum/assets/0xa33e729bf4fdeb868B534e1f20523463D9C46bEe/info.json new file mode 100644 index 00000000..6755ad0c --- /dev/null +++ b/blockchains/ethereum/assets/0xa33e729bf4fdeb868B534e1f20523463D9C46bEe/info.json @@ -0,0 +1,11 @@ +{ + "name": "ICO", + "symbol": "¢", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa33e729bf4fdeb868B534e1f20523463D9C46bEe", + "status": "abandoned", + "id": "0xa33e729bf4fdeb868B534e1f20523463D9C46bEe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa33e729bf4fdeb868B534e1f20523463D9C46bEe/logo.png b/blockchains/ethereum/assets/0xa33e729bf4fdeb868B534e1f20523463D9C46bEe/logo.png new file mode 100644 index 00000000..a2a0ec3e Binary files /dev/null and b/blockchains/ethereum/assets/0xa33e729bf4fdeb868B534e1f20523463D9C46bEe/logo.png differ diff --git a/blockchains/ethereum/assets/0xa37cb0e224A6D57e636185D65AF9b97c3E940303/info.json b/blockchains/ethereum/assets/0xa37cb0e224A6D57e636185D65AF9b97c3E940303/info.json new file mode 100644 index 00000000..36e51b98 --- /dev/null +++ b/blockchains/ethereum/assets/0xa37cb0e224A6D57e636185D65AF9b97c3E940303/info.json @@ -0,0 +1,11 @@ +{ + "name": "WrapWBTC", + "website": "https://ecocelium.io", + "description": "Wrapped version of Wrapped Bitcoin (WBTC)", + "explorer": "https://etherscan.io/token/0xa37cb0e224A6D57e636185D65AF9b97c3E940303", + "type": "ERC20", + "symbol": "eWBTC", + "decimals": 8, + "status": "active", + "id": "0xa37cb0e224A6D57e636185D65AF9b97c3E940303" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa37cb0e224A6D57e636185D65AF9b97c3E940303/logo.png b/blockchains/ethereum/assets/0xa37cb0e224A6D57e636185D65AF9b97c3E940303/logo.png new file mode 100644 index 00000000..9f925df6 Binary files /dev/null and b/blockchains/ethereum/assets/0xa37cb0e224A6D57e636185D65AF9b97c3E940303/logo.png differ diff --git a/blockchains/ethereum/assets/0xa393473d64d2F9F026B60b6Df7859A689715d092/info.json b/blockchains/ethereum/assets/0xa393473d64d2F9F026B60b6Df7859A689715d092/info.json new file mode 100644 index 00000000..788e090b --- /dev/null +++ b/blockchains/ethereum/assets/0xa393473d64d2F9F026B60b6Df7859A689715d092/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lattice Token", + "website": "https://lattice.exchange/", + "description": "Lattice is a decentralized finance (DeFi) application built with Ethereum and Constellation’s Hypergraph Transfer Protocol (HGTP).", + "explorer": "https://etherscan.io/token/0xa393473d64d2F9F026B60b6Df7859A689715d092", + "type": "ERC20", + "symbol": "LTX", + "decimals": 8, + "status": "active", + "id": "0xa393473d64d2F9F026B60b6Df7859A689715d092" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa393473d64d2F9F026B60b6Df7859A689715d092/logo.png b/blockchains/ethereum/assets/0xa393473d64d2F9F026B60b6Df7859A689715d092/logo.png new file mode 100644 index 00000000..170554c9 Binary files /dev/null and b/blockchains/ethereum/assets/0xa393473d64d2F9F026B60b6Df7859A689715d092/logo.png differ diff --git a/blockchains/ethereum/assets/0xa3Aae8869C7498f71DF7cDE3277e14fF79eEd744/info.json b/blockchains/ethereum/assets/0xa3Aae8869C7498f71DF7cDE3277e14fF79eEd744/info.json new file mode 100644 index 00000000..1bfbd181 --- /dev/null +++ b/blockchains/ethereum/assets/0xa3Aae8869C7498f71DF7cDE3277e14fF79eEd744/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R885778", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa3Aae8869C7498f71DF7cDE3277e14fF79eEd744", + "status": "abandoned", + "id": "0xa3Aae8869C7498f71DF7cDE3277e14fF79eEd744" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa3Aae8869C7498f71DF7cDE3277e14fF79eEd744/logo.png b/blockchains/ethereum/assets/0xa3Aae8869C7498f71DF7cDE3277e14fF79eEd744/logo.png new file mode 100644 index 00000000..75be56b7 Binary files /dev/null and b/blockchains/ethereum/assets/0xa3Aae8869C7498f71DF7cDE3277e14fF79eEd744/logo.png differ diff --git a/blockchains/ethereum/assets/0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2/info.json b/blockchains/ethereum/assets/0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2/info.json new file mode 100644 index 00000000..48c3a01d --- /dev/null +++ b/blockchains/ethereum/assets/0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2/info.json @@ -0,0 +1,17 @@ +{ + "name": "Meta", + "website": "https://mstable.org", + "description": "mStable unites stablecoins, lending and swapping into one standard.", + "explorer": "https://etherscan.io/token/0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2", + "type": "ERC20", + "symbol": "MTA", + "decimals": 18, + "status": "active", + "id": "0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2", + "links": [ + { + "name": "x", + "url": "https://x.com/mstable_" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2/logo.png b/blockchains/ethereum/assets/0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2/logo.png new file mode 100644 index 00000000..01063579 Binary files /dev/null and b/blockchains/ethereum/assets/0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2/logo.png differ diff --git a/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/info.json b/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/info.json new file mode 100644 index 00000000..df7fc9ab --- /dev/null +++ b/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/info.json @@ -0,0 +1,28 @@ +{ + "name": "Gluwa Creditcoin Vesting Token", + "type": "ERC20", + "symbol": "G-CRE", + "decimals": 18, + "website": "https://creditcoin.org/", + "description": "Gluwa Creditcoin Vesting Token (G-CRE) is an ERC-20 representation of Creditcoin (CTC). Creditcoin is the native token of the Creditcoin network, a blockchain that provides a cryptocurrency credit investment market.", + "explorer": "https://etherscan.io/token/0xa3ee21c306a700e682abcdfe9baa6a08f3820419", + "status": "active", + "id": "0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419", + "links": [ + { + "name": "x", + "url": "https://x.com/creditcoin" + }, + { + "name": "github", + "url": "https://github.com/gluwa/Creditcoin" + }, + { + "name": "telegram", + "url": "https://t.me/CreditcoinOfficial" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/logo.png b/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/logo.png new file mode 100644 index 00000000..560c0885 Binary files /dev/null and b/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/logo.png differ diff --git a/blockchains/ethereum/assets/0xa3Efef1a1e3d1AD72b9D0f4253e7c9c084C2c08B/info.json b/blockchains/ethereum/assets/0xa3Efef1a1e3d1AD72b9D0f4253e7c9c084C2c08B/info.json new file mode 100644 index 00000000..4d990445 --- /dev/null +++ b/blockchains/ethereum/assets/0xa3Efef1a1e3d1AD72b9D0f4253e7c9c084C2c08B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Online.io", + "symbol": "OIO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa3Efef1a1e3d1AD72b9D0f4253e7c9c084C2c08B", + "status": "abandoned", + "id": "0xa3Efef1a1e3d1AD72b9D0f4253e7c9c084C2c08B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa3Efef1a1e3d1AD72b9D0f4253e7c9c084C2c08B/logo.png b/blockchains/ethereum/assets/0xa3Efef1a1e3d1AD72b9D0f4253e7c9c084C2c08B/logo.png new file mode 100644 index 00000000..aae0e828 Binary files /dev/null and b/blockchains/ethereum/assets/0xa3Efef1a1e3d1AD72b9D0f4253e7c9c084C2c08B/logo.png differ diff --git a/blockchains/ethereum/assets/0xa3b5fdeB5DBC592ffC5e222223376464B9c56fb8/info.json b/blockchains/ethereum/assets/0xa3b5fdeB5DBC592ffC5e222223376464B9c56fb8/info.json new file mode 100644 index 00000000..5dedb8b3 --- /dev/null +++ b/blockchains/ethereum/assets/0xa3b5fdeB5DBC592ffC5e222223376464B9c56fb8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fake Doge Token", + "symbol": "FDGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa3b5fdeB5DBC592ffC5e222223376464B9c56fb8", + "status": "abandoned", + "id": "0xa3b5fdeB5DBC592ffC5e222223376464B9c56fb8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa3b5fdeB5DBC592ffC5e222223376464B9c56fb8/logo.png b/blockchains/ethereum/assets/0xa3b5fdeB5DBC592ffC5e222223376464B9c56fb8/logo.png new file mode 100644 index 00000000..bd90cdea Binary files /dev/null and b/blockchains/ethereum/assets/0xa3b5fdeB5DBC592ffC5e222223376464B9c56fb8/logo.png differ diff --git a/blockchains/ethereum/assets/0xa3d4BEe77B05d4a0C943877558Ce21A763C4fa29/info.json b/blockchains/ethereum/assets/0xa3d4BEe77B05d4a0C943877558Ce21A763C4fa29/info.json new file mode 100644 index 00000000..1de788fa --- /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 00000000..8c0145c8 Binary files /dev/null and b/blockchains/ethereum/assets/0xa3d4BEe77B05d4a0C943877558Ce21A763C4fa29/logo.png differ diff --git a/blockchains/ethereum/assets/0xa3d58c4E56fedCae3a7c43A725aeE9A71F0ece4e/info.json b/blockchains/ethereum/assets/0xa3d58c4E56fedCae3a7c43A725aeE9A71F0ece4e/info.json new file mode 100644 index 00000000..45716b73 --- /dev/null +++ b/blockchains/ethereum/assets/0xa3d58c4E56fedCae3a7c43A725aeE9A71F0ece4e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Metronome", + "symbol": "MET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://metronome.io", + "explorer": "https://etherscan.io/token/0xa3d58c4E56fedCae3a7c43A725aeE9A71F0ece4e", + "status": "active", + "id": "0xa3d58c4E56fedCae3a7c43A725aeE9A71F0ece4e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa3d58c4E56fedCae3a7c43A725aeE9A71F0ece4e/logo.png b/blockchains/ethereum/assets/0xa3d58c4E56fedCae3a7c43A725aeE9A71F0ece4e/logo.png new file mode 100755 index 00000000..f7d4b3f1 Binary files /dev/null and b/blockchains/ethereum/assets/0xa3d58c4E56fedCae3a7c43A725aeE9A71F0ece4e/logo.png differ diff --git a/blockchains/ethereum/assets/0xa3ddf4a857f5250B10fe6D39659DC0cb78D67Bcf/info.json b/blockchains/ethereum/assets/0xa3ddf4a857f5250B10fe6D39659DC0cb78D67Bcf/info.json new file mode 100644 index 00000000..899147ca --- /dev/null +++ b/blockchains/ethereum/assets/0xa3ddf4a857f5250B10fe6D39659DC0cb78D67Bcf/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TESTmg23", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa3ddf4a857f5250B10fe6D39659DC0cb78D67Bcf", + "status": "abandoned", + "id": "0xa3ddf4a857f5250B10fe6D39659DC0cb78D67Bcf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa3ddf4a857f5250B10fe6D39659DC0cb78D67Bcf/logo.png b/blockchains/ethereum/assets/0xa3ddf4a857f5250B10fe6D39659DC0cb78D67Bcf/logo.png new file mode 100644 index 00000000..ceba27e3 Binary files /dev/null and b/blockchains/ethereum/assets/0xa3ddf4a857f5250B10fe6D39659DC0cb78D67Bcf/logo.png differ diff --git a/blockchains/ethereum/assets/0xa3fAE71843524Eb359bCac859E8c8C10fd18e0e4/info.json b/blockchains/ethereum/assets/0xa3fAE71843524Eb359bCac859E8c8C10fd18e0e4/info.json new file mode 100644 index 00000000..0b389d5d --- /dev/null +++ b/blockchains/ethereum/assets/0xa3fAE71843524Eb359bCac859E8c8C10fd18e0e4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Key Decade Holding Token", + "symbol": "KDH", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa3fAE71843524Eb359bCac859E8c8C10fd18e0e4", + "status": "abandoned", + "id": "0xa3fAE71843524Eb359bCac859E8c8C10fd18e0e4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa3fAE71843524Eb359bCac859E8c8C10fd18e0e4/logo.png b/blockchains/ethereum/assets/0xa3fAE71843524Eb359bCac859E8c8C10fd18e0e4/logo.png new file mode 100644 index 00000000..9f47251e Binary files /dev/null and b/blockchains/ethereum/assets/0xa3fAE71843524Eb359bCac859E8c8C10fd18e0e4/logo.png differ diff --git a/blockchains/ethereum/assets/0xa4228F76abc218D981dB1995b779954c78C00e99/info.json b/blockchains/ethereum/assets/0xa4228F76abc218D981dB1995b779954c78C00e99/info.json new file mode 100644 index 00000000..985009f5 --- /dev/null +++ b/blockchains/ethereum/assets/0xa4228F76abc218D981dB1995b779954c78C00e99/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoldBoxToken", + "symbol": "GOX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa4228F76abc218D981dB1995b779954c78C00e99", + "status": "abandoned", + "id": "0xa4228F76abc218D981dB1995b779954c78C00e99" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa4228F76abc218D981dB1995b779954c78C00e99/logo.png b/blockchains/ethereum/assets/0xa4228F76abc218D981dB1995b779954c78C00e99/logo.png new file mode 100644 index 00000000..867b4e2b Binary files /dev/null and b/blockchains/ethereum/assets/0xa4228F76abc218D981dB1995b779954c78C00e99/logo.png differ diff --git a/blockchains/ethereum/assets/0xa44E5137293E855B1b7bC7E2C6f8cD796fFCB037/info.json b/blockchains/ethereum/assets/0xa44E5137293E855B1b7bC7E2C6f8cD796fFCB037/info.json new file mode 100644 index 00000000..9ab573f1 --- /dev/null +++ b/blockchains/ethereum/assets/0xa44E5137293E855B1b7bC7E2C6f8cD796fFCB037/info.json @@ -0,0 +1,11 @@ +{ + "name": "SENTinel", + "symbol": "SENT", + "type": "ERC20", + "decimals": 8, + "description": "A modern VPN backed by blockchain anonymity and security.", + "website": "https://sentinel.co", + "explorer": "https://etherscan.io/token/0xa44E5137293E855B1b7bC7E2C6f8cD796fFCB037", + "status": "active", + "id": "0xa44E5137293E855B1b7bC7E2C6f8cD796fFCB037" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa44E5137293E855B1b7bC7E2C6f8cD796fFCB037/logo.png b/blockchains/ethereum/assets/0xa44E5137293E855B1b7bC7E2C6f8cD796fFCB037/logo.png new file mode 100755 index 00000000..5077cf08 Binary files /dev/null and b/blockchains/ethereum/assets/0xa44E5137293E855B1b7bC7E2C6f8cD796fFCB037/logo.png differ diff --git a/blockchains/ethereum/assets/0xa45cd7ac9865b9539166ebaf2aBc362Df4736580/info.json b/blockchains/ethereum/assets/0xa45cd7ac9865b9539166ebaf2aBc362Df4736580/info.json new file mode 100644 index 00000000..07fc56e3 --- /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 00000000..d28deab3 Binary files /dev/null and b/blockchains/ethereum/assets/0xa45cd7ac9865b9539166ebaf2aBc362Df4736580/logo.png differ diff --git a/blockchains/ethereum/assets/0xa462d0E6Bb788c7807B1B1C96992CE1f7069E195/info.json b/blockchains/ethereum/assets/0xa462d0E6Bb788c7807B1B1C96992CE1f7069E195/info.json new file mode 100644 index 00000000..2e2a0070 --- /dev/null +++ b/blockchains/ethereum/assets/0xa462d0E6Bb788c7807B1B1C96992CE1f7069E195/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQUUSMiningToken", + "symbol": "EQMT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.equus.dev", + "explorer": "https://etherscan.io/token/0xa462d0E6Bb788c7807B1B1C96992CE1f7069E195", + "status": "abandoned", + "id": "0xa462d0E6Bb788c7807B1B1C96992CE1f7069E195" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa462d0E6Bb788c7807B1B1C96992CE1f7069E195/logo.png b/blockchains/ethereum/assets/0xa462d0E6Bb788c7807B1B1C96992CE1f7069E195/logo.png new file mode 100644 index 00000000..fda9af8a Binary files /dev/null and b/blockchains/ethereum/assets/0xa462d0E6Bb788c7807B1B1C96992CE1f7069E195/logo.png differ diff --git a/blockchains/ethereum/assets/0xa47a5E8696b47F1Dd612EaAd7254c4ca03938E9e/info.json b/blockchains/ethereum/assets/0xa47a5E8696b47F1Dd612EaAd7254c4ca03938E9e/info.json new file mode 100644 index 00000000..9aeb1909 --- /dev/null +++ b/blockchains/ethereum/assets/0xa47a5E8696b47F1Dd612EaAd7254c4ca03938E9e/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITCOIN GAME", + "symbol": "BGAME", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa47a5E8696b47F1Dd612EaAd7254c4ca03938E9e", + "status": "abandoned", + "id": "0xa47a5E8696b47F1Dd612EaAd7254c4ca03938E9e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa47a5E8696b47F1Dd612EaAd7254c4ca03938E9e/logo.png b/blockchains/ethereum/assets/0xa47a5E8696b47F1Dd612EaAd7254c4ca03938E9e/logo.png new file mode 100644 index 00000000..e6b3babf Binary files /dev/null and b/blockchains/ethereum/assets/0xa47a5E8696b47F1Dd612EaAd7254c4ca03938E9e/logo.png differ diff --git a/blockchains/ethereum/assets/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/info.json b/blockchains/ethereum/assets/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/info.json new file mode 100644 index 00000000..969a3e94 --- /dev/null +++ b/blockchains/ethereum/assets/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/info.json @@ -0,0 +1,32 @@ +{ + "name": "UST Token", + "website": "https://terra.money", + "description": "TerraUSD is the first decentralized stablecoin that is scalable, yield bearing and interchain.", + "explorer": "https://etherscan.io/token/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD", + "type": "ERC20", + "symbol": "UST", + "decimals": 18, + "status": "active", + "id": "0xa47c8bf37f92aBed4A126BDA807A7b7498661acD", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/TerraMoney" + }, + { + "name": "telegram", + "url": "https://t.me/terra_announcements" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bYfyhUT" + }, + { + "name": "medium", + "url": "https://medium.com/terra-money" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/logo.png b/blockchains/ethereum/assets/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/logo.png new file mode 100644 index 00000000..94a64f49 Binary files /dev/null and b/blockchains/ethereum/assets/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/logo.png differ diff --git a/blockchains/ethereum/assets/0xa497473a983aAC21519737fb8E210F34Cc96b016/info.json b/blockchains/ethereum/assets/0xa497473a983aAC21519737fb8E210F34Cc96b016/info.json new file mode 100644 index 00000000..3f16d9b5 --- /dev/null +++ b/blockchains/ethereum/assets/0xa497473a983aAC21519737fb8E210F34Cc96b016/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bethel Coin", + "symbol": "Bethel", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa497473a983aAC21519737fb8E210F34Cc96b016", + "status": "abandoned", + "id": "0xa497473a983aAC21519737fb8E210F34Cc96b016" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa497473a983aAC21519737fb8E210F34Cc96b016/logo.png b/blockchains/ethereum/assets/0xa497473a983aAC21519737fb8E210F34Cc96b016/logo.png new file mode 100644 index 00000000..ab5aab80 Binary files /dev/null and b/blockchains/ethereum/assets/0xa497473a983aAC21519737fb8E210F34Cc96b016/logo.png differ diff --git a/blockchains/ethereum/assets/0xa4A92262C8DFb70f35599996c64169EFf6E309ca/info.json b/blockchains/ethereum/assets/0xa4A92262C8DFb70f35599996c64169EFf6E309ca/info.json new file mode 100644 index 00000000..6048690d --- /dev/null +++ b/blockchains/ethereum/assets/0xa4A92262C8DFb70f35599996c64169EFf6E309ca/info.json @@ -0,0 +1,11 @@ +{ + "name": "PAPER", + "symbol": "PAPER", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa4A92262C8DFb70f35599996c64169EFf6E309ca", + "status": "abandoned", + "id": "0xa4A92262C8DFb70f35599996c64169EFf6E309ca" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa4A92262C8DFb70f35599996c64169EFf6E309ca/logo.png b/blockchains/ethereum/assets/0xa4A92262C8DFb70f35599996c64169EFf6E309ca/logo.png new file mode 100644 index 00000000..04032e62 Binary files /dev/null and b/blockchains/ethereum/assets/0xa4A92262C8DFb70f35599996c64169EFf6E309ca/logo.png differ diff --git a/blockchains/ethereum/assets/0xa4BA60FeE8fC18A214140da7A085fff7D2628d2f/info.json b/blockchains/ethereum/assets/0xa4BA60FeE8fC18A214140da7A085fff7D2628d2f/info.json new file mode 100644 index 00000000..5e0d6566 --- /dev/null +++ b/blockchains/ethereum/assets/0xa4BA60FeE8fC18A214140da7A085fff7D2628d2f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Electronic Sports Alliance ESA", + "symbol": "ESA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa4BA60FeE8fC18A214140da7A085fff7D2628d2f", + "status": "abandoned", + "id": "0xa4BA60FeE8fC18A214140da7A085fff7D2628d2f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa4BA60FeE8fC18A214140da7A085fff7D2628d2f/logo.png b/blockchains/ethereum/assets/0xa4BA60FeE8fC18A214140da7A085fff7D2628d2f/logo.png new file mode 100755 index 00000000..dc0cc74e Binary files /dev/null and b/blockchains/ethereum/assets/0xa4BA60FeE8fC18A214140da7A085fff7D2628d2f/logo.png differ diff --git a/blockchains/ethereum/assets/0xa4C9D058a462936a1FAAdAC012DF99D9bDD71F41/info.json b/blockchains/ethereum/assets/0xa4C9D058a462936a1FAAdAC012DF99D9bDD71F41/info.json new file mode 100644 index 00000000..993f04b0 --- /dev/null +++ b/blockchains/ethereum/assets/0xa4C9D058a462936a1FAAdAC012DF99D9bDD71F41/info.json @@ -0,0 +1,11 @@ +{ + "name": "Diamond Exchange Token", + "symbol": "DET", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://neodiamond.io", + "explorer": "https://etherscan.io/token/0xa4C9D058a462936a1FAAdAC012DF99D9bDD71F41", + "status": "abandoned", + "id": "0xa4C9D058a462936a1FAAdAC012DF99D9bDD71F41" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa4C9D058a462936a1FAAdAC012DF99D9bDD71F41/logo.png b/blockchains/ethereum/assets/0xa4C9D058a462936a1FAAdAC012DF99D9bDD71F41/logo.png new file mode 100755 index 00000000..c7f7329a Binary files /dev/null and b/blockchains/ethereum/assets/0xa4C9D058a462936a1FAAdAC012DF99D9bDD71F41/logo.png differ diff --git a/blockchains/ethereum/assets/0xa4Cf2aFD3B165975afFFBf7e487CDd40C894Ab6B/info.json b/blockchains/ethereum/assets/0xa4Cf2aFD3B165975afFFBf7e487CDd40C894Ab6B/info.json new file mode 100644 index 00000000..d2846005 --- /dev/null +++ b/blockchains/ethereum/assets/0xa4Cf2aFD3B165975afFFBf7e487CDd40C894Ab6B/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShibaKen.Finance", + "website": "https://shibaken.io", + "description": "A community-first protocol procuring a bridge to the blockchain - enabling individuals to purchase cryptocurrency.", + "explorer": "https://etherscan.io/token/0xa4Cf2aFD3B165975afFFBf7e487CDd40C894Ab6B", + "type": "ERC20", + "symbol": "SHIBAKEN", + "status": "active", + "decimals": 0, + "id": "0xa4Cf2aFD3B165975afFFBf7e487CDd40C894Ab6B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa4Cf2aFD3B165975afFFBf7e487CDd40C894Ab6B/logo.png b/blockchains/ethereum/assets/0xa4Cf2aFD3B165975afFFBf7e487CDd40C894Ab6B/logo.png new file mode 100644 index 00000000..af030f06 Binary files /dev/null and b/blockchains/ethereum/assets/0xa4Cf2aFD3B165975afFFBf7e487CDd40C894Ab6B/logo.png differ diff --git a/blockchains/ethereum/assets/0xa4ec83c8907888d006A37debF755ee39766f38ae/info.json b/blockchains/ethereum/assets/0xa4ec83c8907888d006A37debF755ee39766f38ae/info.json new file mode 100644 index 00000000..e94472d8 --- /dev/null +++ b/blockchains/ethereum/assets/0xa4ec83c8907888d006A37debF755ee39766f38ae/info.json @@ -0,0 +1,11 @@ +{ + "name": "Global Currency Unit", + "symbol": "GCU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://airdrop.globalcurrencyunit.io", + "explorer": "https://etherscan.io/token/0xa4ec83c8907888d006A37debF755ee39766f38ae", + "status": "abandoned", + "id": "0xa4ec83c8907888d006A37debF755ee39766f38ae" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa4ec83c8907888d006A37debF755ee39766f38ae/logo.png b/blockchains/ethereum/assets/0xa4ec83c8907888d006A37debF755ee39766f38ae/logo.png new file mode 100644 index 00000000..ac213d4c Binary files /dev/null and b/blockchains/ethereum/assets/0xa4ec83c8907888d006A37debF755ee39766f38ae/logo.png differ diff --git a/blockchains/ethereum/assets/0xa4f267b2bf5C47873Ec85cB55749368bc15eC2ec/info.json b/blockchains/ethereum/assets/0xa4f267b2bf5C47873Ec85cB55749368bc15eC2ec/info.json new file mode 100644 index 00000000..ccfccd2e --- /dev/null +++ b/blockchains/ethereum/assets/0xa4f267b2bf5C47873Ec85cB55749368bc15eC2ec/info.json @@ -0,0 +1,11 @@ +{ + "name": "Energy27 Token", + "symbol": "TWS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa4f267b2bf5C47873Ec85cB55749368bc15eC2ec", + "status": "abandoned", + "id": "0xa4f267b2bf5C47873Ec85cB55749368bc15eC2ec" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa4f267b2bf5C47873Ec85cB55749368bc15eC2ec/logo.png b/blockchains/ethereum/assets/0xa4f267b2bf5C47873Ec85cB55749368bc15eC2ec/logo.png new file mode 100644 index 00000000..03637f72 Binary files /dev/null and b/blockchains/ethereum/assets/0xa4f267b2bf5C47873Ec85cB55749368bc15eC2ec/logo.png differ diff --git a/blockchains/ethereum/assets/0xa52B2D6cA1CD9B1E8b931645428380c340cAEF9A/info.json b/blockchains/ethereum/assets/0xa52B2D6cA1CD9B1E8b931645428380c340cAEF9A/info.json new file mode 100644 index 00000000..800221ce --- /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 00000000..7692d40a Binary files /dev/null and b/blockchains/ethereum/assets/0xa52B2D6cA1CD9B1E8b931645428380c340cAEF9A/logo.png differ diff --git a/blockchains/ethereum/assets/0xa53e261B20B6Cd828082C735cB2EAbbF74B96fa6/info.json b/blockchains/ethereum/assets/0xa53e261B20B6Cd828082C735cB2EAbbF74B96fa6/info.json new file mode 100644 index 00000000..b62c9497 --- /dev/null +++ b/blockchains/ethereum/assets/0xa53e261B20B6Cd828082C735cB2EAbbF74B96fa6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mundicoin", + "symbol": "MC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa53e261B20B6Cd828082C735cB2EAbbF74B96fa6", + "status": "abandoned", + "id": "0xa53e261B20B6Cd828082C735cB2EAbbF74B96fa6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa53e261B20B6Cd828082C735cB2EAbbF74B96fa6/logo.png b/blockchains/ethereum/assets/0xa53e261B20B6Cd828082C735cB2EAbbF74B96fa6/logo.png new file mode 100755 index 00000000..e670c365 Binary files /dev/null and b/blockchains/ethereum/assets/0xa53e261B20B6Cd828082C735cB2EAbbF74B96fa6/logo.png differ diff --git a/blockchains/ethereum/assets/0xa54A6767aFdd9e1d3Cb9045FC9612ABBF3DA0DE9/info.json b/blockchains/ethereum/assets/0xa54A6767aFdd9e1d3Cb9045FC9612ABBF3DA0DE9/info.json new file mode 100644 index 00000000..47916407 --- /dev/null +++ b/blockchains/ethereum/assets/0xa54A6767aFdd9e1d3Cb9045FC9612ABBF3DA0DE9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yolk Finance", + "website": "https://yolkfinance.com", + "description": "YOLK is a network of independent nodes that provide a decentralized encrypted databaser service.", + "explorer": "https://etherscan.io/token/0xa54A6767aFdd9e1d3Cb9045FC9612ABBF3DA0DE9", + "type": "ERC20", + "symbol": "YOLK", + "decimals": 8, + "status": "active", + "id": "0xa54A6767aFdd9e1d3Cb9045FC9612ABBF3DA0DE9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa54A6767aFdd9e1d3Cb9045FC9612ABBF3DA0DE9/logo.png b/blockchains/ethereum/assets/0xa54A6767aFdd9e1d3Cb9045FC9612ABBF3DA0DE9/logo.png new file mode 100644 index 00000000..52a16403 Binary files /dev/null and b/blockchains/ethereum/assets/0xa54A6767aFdd9e1d3Cb9045FC9612ABBF3DA0DE9/logo.png differ diff --git a/blockchains/ethereum/assets/0xa561ADDf39eb8b8d870cCB1cFb584D998209B8E8/info.json b/blockchains/ethereum/assets/0xa561ADDf39eb8b8d870cCB1cFb584D998209B8E8/info.json new file mode 100644 index 00000000..82f58f23 --- /dev/null +++ b/blockchains/ethereum/assets/0xa561ADDf39eb8b8d870cCB1cFb584D998209B8E8/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoBitGames", + "symbol": "CBG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa561ADDf39eb8b8d870cCB1cFb584D998209B8E8", + "status": "abandoned", + "id": "0xa561ADDf39eb8b8d870cCB1cFb584D998209B8E8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa561ADDf39eb8b8d870cCB1cFb584D998209B8E8/logo.png b/blockchains/ethereum/assets/0xa561ADDf39eb8b8d870cCB1cFb584D998209B8E8/logo.png new file mode 100644 index 00000000..2b8af70f Binary files /dev/null and b/blockchains/ethereum/assets/0xa561ADDf39eb8b8d870cCB1cFb584D998209B8E8/logo.png differ diff --git a/blockchains/ethereum/assets/0xa573661b5FB2063d7AB12336ee24589F7A79fdab/info.json b/blockchains/ethereum/assets/0xa573661b5FB2063d7AB12336ee24589F7A79fdab/info.json new file mode 100644 index 00000000..7c58e5e7 --- /dev/null +++ b/blockchains/ethereum/assets/0xa573661b5FB2063d7AB12336ee24589F7A79fdab/info.json @@ -0,0 +1,11 @@ +{ + "name": "IceChain", + "symbol": "ICHX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://icechain.io/", + "explorer": "https://etherscan.io/token/0xa573661b5FB2063d7AB12336ee24589F7A79fdab", + "status": "abandoned", + "id": "0xa573661b5FB2063d7AB12336ee24589F7A79fdab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa573661b5FB2063d7AB12336ee24589F7A79fdab/logo.png b/blockchains/ethereum/assets/0xa573661b5FB2063d7AB12336ee24589F7A79fdab/logo.png new file mode 100644 index 00000000..ddc837af Binary files /dev/null and b/blockchains/ethereum/assets/0xa573661b5FB2063d7AB12336ee24589F7A79fdab/logo.png differ diff --git a/blockchains/ethereum/assets/0xa58C4f0e4Dddb52d2017c77eAC34C73a84Cf8AF8/info.json b/blockchains/ethereum/assets/0xa58C4f0e4Dddb52d2017c77eAC34C73a84Cf8AF8/info.json new file mode 100644 index 00000000..fc91ddfd --- /dev/null +++ b/blockchains/ethereum/assets/0xa58C4f0e4Dddb52d2017c77eAC34C73a84Cf8AF8/info.json @@ -0,0 +1,11 @@ +{ + "name": "JoygoEOS", + "type": "ERC20", + "symbol": "JEO", + "decimals": 18, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0xa58c4f0e4dddb52d2017c77eac34c73a84cf8af8", + "status": "active", + "id": "0xa58C4f0e4Dddb52d2017c77eAC34C73a84Cf8AF8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa58C4f0e4Dddb52d2017c77eAC34C73a84Cf8AF8/logo.png b/blockchains/ethereum/assets/0xa58C4f0e4Dddb52d2017c77eAC34C73a84Cf8AF8/logo.png new file mode 100755 index 00000000..6553f628 Binary files /dev/null and b/blockchains/ethereum/assets/0xa58C4f0e4Dddb52d2017c77eAC34C73a84Cf8AF8/logo.png differ diff --git a/blockchains/ethereum/assets/0xa58a4f5c4Bb043d2CC1E170613B74e767c94189B/info.json b/blockchains/ethereum/assets/0xa58a4f5c4Bb043d2CC1E170613B74e767c94189B/info.json new file mode 100644 index 00000000..9e06856f --- /dev/null +++ b/blockchains/ethereum/assets/0xa58a4f5c4Bb043d2CC1E170613B74e767c94189B/info.json @@ -0,0 +1,25 @@ +{ + "name": "UTU Coin", + "website": "http://protocol.utu.io/", + "description": "Utility token that powers the trust infrastructure of the internet.", + "explorer": "https://etherscan.io/token/0xa58a4f5c4Bb043d2CC1E170613B74e767c94189B", + "type": "ERC20", + "symbol": "UTU", + "decimals": 18, + "status": "active", + "id": "0xa58a4f5c4Bb043d2CC1E170613B74e767c94189B", + "links": [ + { + "name": "github", + "url": "https://github.com/utu-protocol/" + }, + { + "name": "x", + "url": "https://x.com/UTU_trust" + }, + { + "name": "telegram", + "url": "https://t.me/UTUtrust" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa58a4f5c4Bb043d2CC1E170613B74e767c94189B/logo.png b/blockchains/ethereum/assets/0xa58a4f5c4Bb043d2CC1E170613B74e767c94189B/logo.png new file mode 100644 index 00000000..e98b8bd1 Binary files /dev/null and b/blockchains/ethereum/assets/0xa58a4f5c4Bb043d2CC1E170613B74e767c94189B/logo.png differ diff --git a/blockchains/ethereum/assets/0xa59D9c42eb26a619c39D250b4574BD76023A760E/info.json b/blockchains/ethereum/assets/0xa59D9c42eb26a619c39D250b4574BD76023A760E/info.json new file mode 100644 index 00000000..7b13eb9f --- /dev/null +++ b/blockchains/ethereum/assets/0xa59D9c42eb26a619c39D250b4574BD76023A760E/info.json @@ -0,0 +1,11 @@ +{ + "name": "WoWCrypto", + "symbol": "WOW", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa59D9c42eb26a619c39D250b4574BD76023A760E", + "status": "abandoned", + "id": "0xa59D9c42eb26a619c39D250b4574BD76023A760E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa59D9c42eb26a619c39D250b4574BD76023A760E/logo.png b/blockchains/ethereum/assets/0xa59D9c42eb26a619c39D250b4574BD76023A760E/logo.png new file mode 100644 index 00000000..76f71a6a Binary files /dev/null and b/blockchains/ethereum/assets/0xa59D9c42eb26a619c39D250b4574BD76023A760E/logo.png differ diff --git a/blockchains/ethereum/assets/0xa59cA48E4799CD1f8e9d251769Bf226F4CAA48eD/info.json b/blockchains/ethereum/assets/0xa59cA48E4799CD1f8e9d251769Bf226F4CAA48eD/info.json new file mode 100644 index 00000000..ea600a5b --- /dev/null +++ b/blockchains/ethereum/assets/0xa59cA48E4799CD1f8e9d251769Bf226F4CAA48eD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Apiary Fund Coin", + "symbol": "AFC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa59cA48E4799CD1f8e9d251769Bf226F4CAA48eD", + "status": "abandoned", + "id": "0xa59cA48E4799CD1f8e9d251769Bf226F4CAA48eD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa59cA48E4799CD1f8e9d251769Bf226F4CAA48eD/logo.png b/blockchains/ethereum/assets/0xa59cA48E4799CD1f8e9d251769Bf226F4CAA48eD/logo.png new file mode 100644 index 00000000..fb4dcd2f Binary files /dev/null and b/blockchains/ethereum/assets/0xa59cA48E4799CD1f8e9d251769Bf226F4CAA48eD/logo.png differ diff --git a/blockchains/ethereum/assets/0xa5F8fC0921880Cb7342368BD128eb8050442B1a1/info.json b/blockchains/ethereum/assets/0xa5F8fC0921880Cb7342368BD128eb8050442B1a1/info.json new file mode 100644 index 00000000..9df85e79 --- /dev/null +++ b/blockchains/ethereum/assets/0xa5F8fC0921880Cb7342368BD128eb8050442B1a1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Block Array", + "symbol": "ARY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.blockarray.com", + "explorer": "https://etherscan.io/token/0xa5F8fC0921880Cb7342368BD128eb8050442B1a1", + "status": "abandoned", + "id": "0xa5F8fC0921880Cb7342368BD128eb8050442B1a1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa5F8fC0921880Cb7342368BD128eb8050442B1a1/logo.png b/blockchains/ethereum/assets/0xa5F8fC0921880Cb7342368BD128eb8050442B1a1/logo.png new file mode 100755 index 00000000..0218839e Binary files /dev/null and b/blockchains/ethereum/assets/0xa5F8fC0921880Cb7342368BD128eb8050442B1a1/logo.png differ diff --git a/blockchains/ethereum/assets/0xa5Fd1A791C4dfcaacC963D4F73c6Ae5824149eA7/info.json b/blockchains/ethereum/assets/0xa5Fd1A791C4dfcaacC963D4F73c6Ae5824149eA7/info.json new file mode 100644 index 00000000..eef491b7 --- /dev/null +++ b/blockchains/ethereum/assets/0xa5Fd1A791C4dfcaacC963D4F73c6Ae5824149eA7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jibrel Network Token", + "symbol": "JNT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://jibrel.network/", + "explorer": "https://etherscan.io/token/0xa5Fd1A791C4dfcaacC963D4F73c6Ae5824149eA7", + "status": "abandoned", + "id": "0xa5Fd1A791C4dfcaacC963D4F73c6Ae5824149eA7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa5Fd1A791C4dfcaacC963D4F73c6Ae5824149eA7/logo.png b/blockchains/ethereum/assets/0xa5Fd1A791C4dfcaacC963D4F73c6Ae5824149eA7/logo.png new file mode 100644 index 00000000..74301e92 Binary files /dev/null and b/blockchains/ethereum/assets/0xa5Fd1A791C4dfcaacC963D4F73c6Ae5824149eA7/logo.png differ diff --git a/blockchains/ethereum/assets/0xa5f2211B9b8170F694421f2046281775E8468044/info.json b/blockchains/ethereum/assets/0xa5f2211B9b8170F694421f2046281775E8468044/info.json new file mode 100644 index 00000000..e0dbdfee --- /dev/null +++ b/blockchains/ethereum/assets/0xa5f2211B9b8170F694421f2046281775E8468044/info.json @@ -0,0 +1,41 @@ +{ + "name": "THORSwap", + "website": "https://thorswap.finance/", + "description": "THORSwap is a multi-chain DEX aggregator built on THORChain's cross-chain liquidity protocol and the #1 interface for all THORChain services like THORName and synthetic assets.", + "explorer": "https://etherscan.io/token/0xa5f2211B9b8170F694421f2046281775E8468044", + "type": "ERC20", + "symbol": "THOR", + "decimals": 18, + "status": "active", + "id": "0xa5f2211B9b8170F694421f2046281775E8468044", + "links": [ + { + "name": "github", + "url": "https://github.com/thorswap" + }, + { + "name": "x", + "url": "https://x.com/THORSwap" + }, + { + "name": "telegram", + "url": "https://t.me/thorswap_ann" + }, + { + "name": "medium", + "url": "https://thorswap.medium.com" + }, + { + "name": "whitepaper", + "url": "https://docs.thorswap.finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/thorswap" + }, + { + "name": "discord", + "url": "https://discord.com/invite/thorswap" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa5f2211B9b8170F694421f2046281775E8468044/logo.png b/blockchains/ethereum/assets/0xa5f2211B9b8170F694421f2046281775E8468044/logo.png new file mode 100644 index 00000000..4b944ad1 Binary files /dev/null and b/blockchains/ethereum/assets/0xa5f2211B9b8170F694421f2046281775E8468044/logo.png differ diff --git a/blockchains/ethereum/assets/0xa6218644A294E611213dC5629bc4CC48053F739F/info.json b/blockchains/ethereum/assets/0xa6218644A294E611213dC5629bc4CC48053F739F/info.json new file mode 100644 index 00000000..e9e15e24 --- /dev/null +++ b/blockchains/ethereum/assets/0xa6218644A294E611213dC5629bc4CC48053F739F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Queen Jin Token", + "symbol": "QJT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa6218644A294E611213dC5629bc4CC48053F739F", + "status": "abandoned", + "id": "0xa6218644A294E611213dC5629bc4CC48053F739F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa6218644A294E611213dC5629bc4CC48053F739F/logo.png b/blockchains/ethereum/assets/0xa6218644A294E611213dC5629bc4CC48053F739F/logo.png new file mode 100644 index 00000000..b99aa8c4 Binary files /dev/null and b/blockchains/ethereum/assets/0xa6218644A294E611213dC5629bc4CC48053F739F/logo.png differ diff --git a/blockchains/ethereum/assets/0xa6289055A43195243bFDFbf08b00619e13D9531A/info.json b/blockchains/ethereum/assets/0xa6289055A43195243bFDFbf08b00619e13D9531A/info.json new file mode 100644 index 00000000..b39ce061 --- /dev/null +++ b/blockchains/ethereum/assets/0xa6289055A43195243bFDFbf08b00619e13D9531A/info.json @@ -0,0 +1,11 @@ +{ + "name": "FCN", + "symbol": "FCN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa6289055A43195243bFDFbf08b00619e13D9531A", + "status": "abandoned", + "id": "0xa6289055A43195243bFDFbf08b00619e13D9531A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa6289055A43195243bFDFbf08b00619e13D9531A/logo.png b/blockchains/ethereum/assets/0xa6289055A43195243bFDFbf08b00619e13D9531A/logo.png new file mode 100644 index 00000000..60ed1b71 Binary files /dev/null and b/blockchains/ethereum/assets/0xa6289055A43195243bFDFbf08b00619e13D9531A/logo.png differ diff --git a/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/info.json b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/info.json new file mode 100644 index 00000000..09ce6e69 --- /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 00000000..c3c5fda4 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 00000000..224dc51d --- /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/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/logo.png b/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/logo.png new file mode 100644 index 00000000..f332d182 Binary files /dev/null and b/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/logo.png differ diff --git a/blockchains/ethereum/assets/0xa637ae510cB50E61236a89AC480B93B8c3bcCc46/info.json b/blockchains/ethereum/assets/0xa637ae510cB50E61236a89AC480B93B8c3bcCc46/info.json new file mode 100644 index 00000000..7701140c --- /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 00000000..484e882d Binary files /dev/null and b/blockchains/ethereum/assets/0xa637ae510cB50E61236a89AC480B93B8c3bcCc46/logo.png differ diff --git a/blockchains/ethereum/assets/0xa66Daa57432024023DB65477BA87D4E7F5f95213/info.json b/blockchains/ethereum/assets/0xa66Daa57432024023DB65477BA87D4E7F5f95213/info.json new file mode 100644 index 00000000..eca20698 --- /dev/null +++ b/blockchains/ethereum/assets/0xa66Daa57432024023DB65477BA87D4E7F5f95213/info.json @@ -0,0 +1,11 @@ +{ + "name": "Huobi Pool Token", + "website": "https://huobipool.com", + "description": "Huobi Pool Token (HPT) is an ecological sub-token based on Huobi Token (HT).", + "explorer": "https://etherscan.io/token/0xa66Daa57432024023DB65477BA87D4E7F5f95213", + "type": "ERC20", + "symbol": "HPT", + "decimals": 18, + "status": "active", + "id": "0xa66Daa57432024023DB65477BA87D4E7F5f95213" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa66Daa57432024023DB65477BA87D4E7F5f95213/logo.png b/blockchains/ethereum/assets/0xa66Daa57432024023DB65477BA87D4E7F5f95213/logo.png new file mode 100644 index 00000000..4e0b0c9d Binary files /dev/null and b/blockchains/ethereum/assets/0xa66Daa57432024023DB65477BA87D4E7F5f95213/logo.png differ diff --git a/blockchains/ethereum/assets/0xa6714a2e5f0B1bdb97b895b0913b4FcD3a775E4D/info.json b/blockchains/ethereum/assets/0xa6714a2e5f0B1bdb97b895b0913b4FcD3a775E4D/info.json new file mode 100644 index 00000000..45f9d715 --- /dev/null +++ b/blockchains/ethereum/assets/0xa6714a2e5f0B1bdb97b895b0913b4FcD3a775E4D/info.json @@ -0,0 +1,11 @@ +{ + "name": "PromotionCoin", + "symbol": "PC", + "type": "ERC20", + "decimals": 5, + "description": "PC is a decentralized Token issued by PromotionChain. PC, as a value circulation certificate, can apply in transactions of some products, task-issued mortgages, promotion cost settlement, user incentives, etc to effectively improve capital transparency and settlement efficiency.", + "website": "http://www.pchain.io/", + "explorer": "https://etherscan.io/token/0xa6714a2e5f0B1bdb97b895b0913b4FcD3a775E4D", + "status": "active", + "id": "0xa6714a2e5f0B1bdb97b895b0913b4FcD3a775E4D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa6714a2e5f0B1bdb97b895b0913b4FcD3a775E4D/logo.png b/blockchains/ethereum/assets/0xa6714a2e5f0B1bdb97b895b0913b4FcD3a775E4D/logo.png new file mode 100644 index 00000000..f2cdf665 Binary files /dev/null and b/blockchains/ethereum/assets/0xa6714a2e5f0B1bdb97b895b0913b4FcD3a775E4D/logo.png differ diff --git a/blockchains/ethereum/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/info.json b/blockchains/ethereum/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/info.json new file mode 100644 index 00000000..c785e1b0 --- /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 00000000..39e71c88 Binary files /dev/null and b/blockchains/ethereum/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/logo.png differ diff --git a/blockchains/ethereum/assets/0xa685a61171bb30d4072B338c80Cb7b2c865c873E/info.json b/blockchains/ethereum/assets/0xa685a61171bb30d4072B338c80Cb7b2c865c873E/info.json new file mode 100644 index 00000000..34eb3ca2 --- /dev/null +++ b/blockchains/ethereum/assets/0xa685a61171bb30d4072B338c80Cb7b2c865c873E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave MANA", + "symbol": "aMANA", + "type": "ERC20", + "decimals": 18, + "description": "Aave MANA is an interest bearing token pegged 1:1 to the underlying MANA deposited in Aave. aMANA accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xa685a61171bb30d4072B338c80Cb7b2c865c873E", + "status": "active", + "id": "0xa685a61171bb30d4072B338c80Cb7b2c865c873E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa685a61171bb30d4072B338c80Cb7b2c865c873E/logo.png b/blockchains/ethereum/assets/0xa685a61171bb30d4072B338c80Cb7b2c865c873E/logo.png new file mode 100644 index 00000000..496f31a4 Binary files /dev/null and b/blockchains/ethereum/assets/0xa685a61171bb30d4072B338c80Cb7b2c865c873E/logo.png differ diff --git a/blockchains/ethereum/assets/0xa693B19d2931d498c5B318dF961919BB4aee87a5/info.json b/blockchains/ethereum/assets/0xa693B19d2931d498c5B318dF961919BB4aee87a5/info.json new file mode 100644 index 00000000..e6b1fbf2 --- /dev/null +++ b/blockchains/ethereum/assets/0xa693B19d2931d498c5B318dF961919BB4aee87a5/info.json @@ -0,0 +1,14 @@ +{ + "name": "UST (Wormhole)", + "type": "ERC20", + "symbol": "UST", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://wormholebridge.com", + "explorer": "https://etherscan.io/token/0xa693B19d2931d498c5B318dF961919BB4aee87a5", + "status": "active", + "id": "0xa693B19d2931d498c5B318dF961919BB4aee87a5", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa693B19d2931d498c5B318dF961919BB4aee87a5/logo.png b/blockchains/ethereum/assets/0xa693B19d2931d498c5B318dF961919BB4aee87a5/logo.png new file mode 100644 index 00000000..e3110cce Binary files /dev/null and b/blockchains/ethereum/assets/0xa693B19d2931d498c5B318dF961919BB4aee87a5/logo.png differ diff --git a/blockchains/ethereum/assets/0xa69431858DB49BDa621192c29F366BE4d386CCAf/info.json b/blockchains/ethereum/assets/0xa69431858DB49BDa621192c29F366BE4d386CCAf/info.json new file mode 100644 index 00000000..f2b48cfa --- /dev/null +++ b/blockchains/ethereum/assets/0xa69431858DB49BDa621192c29F366BE4d386CCAf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Solereum Cash", + "symbol": "SOLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa69431858DB49BDa621192c29F366BE4d386CCAf", + "status": "abandoned", + "id": "0xa69431858DB49BDa621192c29F366BE4d386CCAf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa69431858DB49BDa621192c29F366BE4d386CCAf/logo.png b/blockchains/ethereum/assets/0xa69431858DB49BDa621192c29F366BE4d386CCAf/logo.png new file mode 100644 index 00000000..479989fc Binary files /dev/null and b/blockchains/ethereum/assets/0xa69431858DB49BDa621192c29F366BE4d386CCAf/logo.png differ diff --git a/blockchains/ethereum/assets/0xa698EbA92D194aB36A32EA3337c9976636f39dED/info.json b/blockchains/ethereum/assets/0xa698EbA92D194aB36A32EA3337c9976636f39dED/info.json new file mode 100644 index 00000000..155e98ec --- /dev/null +++ b/blockchains/ethereum/assets/0xa698EbA92D194aB36A32EA3337c9976636f39dED/info.json @@ -0,0 +1,11 @@ +{ + "name": "EtherCash", + "symbol": "ETHC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa698EbA92D194aB36A32EA3337c9976636f39dED", + "status": "abandoned", + "id": "0xa698EbA92D194aB36A32EA3337c9976636f39dED" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa698EbA92D194aB36A32EA3337c9976636f39dED/logo.png b/blockchains/ethereum/assets/0xa698EbA92D194aB36A32EA3337c9976636f39dED/logo.png new file mode 100644 index 00000000..f5ae2f68 Binary files /dev/null and b/blockchains/ethereum/assets/0xa698EbA92D194aB36A32EA3337c9976636f39dED/logo.png differ diff --git a/blockchains/ethereum/assets/0xa69925428299287D3724B4B9A31Ea8cE191497de/info.json b/blockchains/ethereum/assets/0xa69925428299287D3724B4B9A31Ea8cE191497de/info.json new file mode 100644 index 00000000..3c67d538 --- /dev/null +++ b/blockchains/ethereum/assets/0xa69925428299287D3724B4B9A31Ea8cE191497de/info.json @@ -0,0 +1,11 @@ +{ + "name": "Merlin", + "symbol": "MLN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa69925428299287D3724B4B9A31Ea8cE191497de", + "status": "abandoned", + "id": "0xa69925428299287D3724B4B9A31Ea8cE191497de" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa69925428299287D3724B4B9A31Ea8cE191497de/logo.png b/blockchains/ethereum/assets/0xa69925428299287D3724B4B9A31Ea8cE191497de/logo.png new file mode 100644 index 00000000..c799b2c3 Binary files /dev/null and b/blockchains/ethereum/assets/0xa69925428299287D3724B4B9A31Ea8cE191497de/logo.png differ diff --git a/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/info.json b/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/info.json new file mode 100644 index 00000000..380b5222 --- /dev/null +++ b/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/info.json @@ -0,0 +1,29 @@ +{ + "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/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 00000000..1b8b37e0 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 00000000..cf2d688e --- /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 00000000..2ce033b0 Binary files /dev/null and b/blockchains/ethereum/assets/0xa6CdB19b22B03e03EA89e133A8a46aDc3017aa6d/logo.png differ diff --git a/blockchains/ethereum/assets/0xa6CeBeb159879BD6bAa85A4c8253aD7e911b45E5/info.json b/blockchains/ethereum/assets/0xa6CeBeb159879BD6bAa85A4c8253aD7e911b45E5/info.json new file mode 100644 index 00000000..0033892e --- /dev/null +++ b/blockchains/ethereum/assets/0xa6CeBeb159879BD6bAa85A4c8253aD7e911b45E5/info.json @@ -0,0 +1,11 @@ +{ + "name": "TAMILAS", + "symbol": "TML", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa6CeBeb159879BD6bAa85A4c8253aD7e911b45E5", + "status": "abandoned", + "id": "0xa6CeBeb159879BD6bAa85A4c8253aD7e911b45E5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa6CeBeb159879BD6bAa85A4c8253aD7e911b45E5/logo.png b/blockchains/ethereum/assets/0xa6CeBeb159879BD6bAa85A4c8253aD7e911b45E5/logo.png new file mode 100644 index 00000000..da88d016 Binary files /dev/null and b/blockchains/ethereum/assets/0xa6CeBeb159879BD6bAa85A4c8253aD7e911b45E5/logo.png differ diff --git a/blockchains/ethereum/assets/0xa6FB1DF483b24EEAB569e19447E0e107003B9E15/info.json b/blockchains/ethereum/assets/0xa6FB1DF483b24EEAB569e19447E0e107003B9E15/info.json new file mode 100644 index 00000000..31bffc00 --- /dev/null +++ b/blockchains/ethereum/assets/0xa6FB1DF483b24EEAB569e19447E0e107003B9E15/info.json @@ -0,0 +1,11 @@ +{ + "name": "ENB", + "website": "https://earnbase.org", + "description": "Earnbase is an all-in-one, user-friendly DeFi protocol to earn, save and swap tokens.", + "explorer": "https://etherscan.io/token/0xa6fb1df483b24eeab569e19447e0e107003b9e15", + "type": "ERC20", + "symbol": "ENB", + "decimals": 18, + "status": "active", + "id": "0xa6FB1DF483b24EEAB569e19447E0e107003B9E15" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa6FB1DF483b24EEAB569e19447E0e107003B9E15/logo.png b/blockchains/ethereum/assets/0xa6FB1DF483b24EEAB569e19447E0e107003B9E15/logo.png new file mode 100644 index 00000000..d130ea8a Binary files /dev/null and b/blockchains/ethereum/assets/0xa6FB1DF483b24EEAB569e19447E0e107003B9E15/logo.png differ diff --git a/blockchains/ethereum/assets/0xa6a840E50bCaa50dA017b91A0D86B8b2d41156EE/info.json b/blockchains/ethereum/assets/0xa6a840E50bCaa50dA017b91A0D86B8b2d41156EE/info.json new file mode 100644 index 00000000..87f46d13 --- /dev/null +++ b/blockchains/ethereum/assets/0xa6a840E50bCaa50dA017b91A0D86B8b2d41156EE/info.json @@ -0,0 +1,11 @@ +{ + "name": "EchoLink", + "symbol": "EKO", + "type": "ERC20", + "decimals": 18, + "description": "EKO is a blockchain based system that provides verified education, skill, and work experience information.", + "website": "https://echolink.info", + "explorer": "https://etherscan.io/token/0xa6a840E50bCaa50dA017b91A0D86B8b2d41156EE", + "status": "active", + "id": "0xa6a840E50bCaa50dA017b91A0D86B8b2d41156EE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa6a840E50bCaa50dA017b91A0D86B8b2d41156EE/logo.png b/blockchains/ethereum/assets/0xa6a840E50bCaa50dA017b91A0D86B8b2d41156EE/logo.png new file mode 100644 index 00000000..d6bdb049 Binary files /dev/null and b/blockchains/ethereum/assets/0xa6a840E50bCaa50dA017b91A0D86B8b2d41156EE/logo.png differ diff --git a/blockchains/ethereum/assets/0xa6d6720258CbB7E4A79BB2F379e3d8f25d78B716/info.json b/blockchains/ethereum/assets/0xa6d6720258CbB7E4A79BB2F379e3d8f25d78B716/info.json new file mode 100644 index 00000000..eebc4f0b --- /dev/null +++ b/blockchains/ethereum/assets/0xa6d6720258CbB7E4A79BB2F379e3d8f25d78B716/info.json @@ -0,0 +1,11 @@ +{ + "name": "TOKELITE", + "website": "https://tokelite.io", + "description": "Tokelite is an erc20 utility token that gives holders of token a chance to lend Major Crypto Assets such as Bnb, Atom, Eth, and Btc using their blockchain assets to secure cash loans..", + "explorer": "https://etherscan.io/token/0xa6d6720258CbB7E4A79BB2F379e3d8f25d78B716", + "type": "ERC20", + "symbol": "TKL", + "decimals": 18, + "status": "active", + "id": "0xa6d6720258CbB7E4A79BB2F379e3d8f25d78B716" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa6d6720258CbB7E4A79BB2F379e3d8f25d78B716/logo.png b/blockchains/ethereum/assets/0xa6d6720258CbB7E4A79BB2F379e3d8f25d78B716/logo.png new file mode 100644 index 00000000..a247900c Binary files /dev/null and b/blockchains/ethereum/assets/0xa6d6720258CbB7E4A79BB2F379e3d8f25d78B716/logo.png differ diff --git a/blockchains/ethereum/assets/0xa6dC3158828DB1268e2969b74B357Ae7F4bcebe9/info.json b/blockchains/ethereum/assets/0xa6dC3158828DB1268e2969b74B357Ae7F4bcebe9/info.json new file mode 100644 index 00000000..7c1c6109 --- /dev/null +++ b/blockchains/ethereum/assets/0xa6dC3158828DB1268e2969b74B357Ae7F4bcebe9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yustemcoin", + "symbol": "YUC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa6dC3158828DB1268e2969b74B357Ae7F4bcebe9", + "status": "abandoned", + "id": "0xa6dC3158828DB1268e2969b74B357Ae7F4bcebe9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa6dC3158828DB1268e2969b74B357Ae7F4bcebe9/logo.png b/blockchains/ethereum/assets/0xa6dC3158828DB1268e2969b74B357Ae7F4bcebe9/logo.png new file mode 100644 index 00000000..7f5a152a Binary files /dev/null and b/blockchains/ethereum/assets/0xa6dC3158828DB1268e2969b74B357Ae7F4bcebe9/logo.png differ diff --git a/blockchains/ethereum/assets/0xa704fCe7b309Ec09DF16e2F5Ab8cAf6Fe8A4BAA9/info.json b/blockchains/ethereum/assets/0xa704fCe7b309Ec09DF16e2F5Ab8cAf6Fe8A4BAA9/info.json new file mode 100644 index 00000000..5d2d28cb --- /dev/null +++ b/blockchains/ethereum/assets/0xa704fCe7b309Ec09DF16e2F5Ab8cAf6Fe8A4BAA9/info.json @@ -0,0 +1,11 @@ +{ + "name": "AgriChain Utility Token", + "symbol": "AGRI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa704fCe7b309Ec09DF16e2F5Ab8cAf6Fe8A4BAA9", + "status": "abandoned", + "id": "0xa704fCe7b309Ec09DF16e2F5Ab8cAf6Fe8A4BAA9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa704fCe7b309Ec09DF16e2F5Ab8cAf6Fe8A4BAA9/logo.png b/blockchains/ethereum/assets/0xa704fCe7b309Ec09DF16e2F5Ab8cAf6Fe8A4BAA9/logo.png new file mode 100644 index 00000000..da023035 Binary files /dev/null and b/blockchains/ethereum/assets/0xa704fCe7b309Ec09DF16e2F5Ab8cAf6Fe8A4BAA9/logo.png differ diff --git a/blockchains/ethereum/assets/0xa73638329c61c221dCA307ED7ef0154D776d9FDc/info.json b/blockchains/ethereum/assets/0xa73638329c61c221dCA307ED7ef0154D776d9FDc/info.json new file mode 100644 index 00000000..28df538d --- /dev/null +++ b/blockchains/ethereum/assets/0xa73638329c61c221dCA307ED7ef0154D776d9FDc/info.json @@ -0,0 +1,11 @@ +{ + "name": "TKEX", + "symbol": "TKEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa73638329c61c221dCA307ED7ef0154D776d9FDc", + "status": "abandoned", + "id": "0xa73638329c61c221dCA307ED7ef0154D776d9FDc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa73638329c61c221dCA307ED7ef0154D776d9FDc/logo.png b/blockchains/ethereum/assets/0xa73638329c61c221dCA307ED7ef0154D776d9FDc/logo.png new file mode 100644 index 00000000..5fd3d0eb Binary files /dev/null and b/blockchains/ethereum/assets/0xa73638329c61c221dCA307ED7ef0154D776d9FDc/logo.png differ diff --git a/blockchains/ethereum/assets/0xa740b79dc545646072b32CA92a109f7CF74EF8ca/info.json b/blockchains/ethereum/assets/0xa740b79dc545646072b32CA92a109f7CF74EF8ca/info.json new file mode 100644 index 00000000..a1bcb5dd --- /dev/null +++ b/blockchains/ethereum/assets/0xa740b79dc545646072b32CA92a109f7CF74EF8ca/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 167-CN33", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa740b79dc545646072b32CA92a109f7CF74EF8ca", + "status": "abandoned", + "id": "0xa740b79dc545646072b32CA92a109f7CF74EF8ca" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa740b79dc545646072b32CA92a109f7CF74EF8ca/logo.png b/blockchains/ethereum/assets/0xa740b79dc545646072b32CA92a109f7CF74EF8ca/logo.png new file mode 100644 index 00000000..861885e8 Binary files /dev/null and b/blockchains/ethereum/assets/0xa740b79dc545646072b32CA92a109f7CF74EF8ca/logo.png differ diff --git a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json b/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json new file mode 100644 index 00000000..9606cc09 --- /dev/null +++ b/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json @@ -0,0 +1,11 @@ +{ + "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/0xa74476443119A942dE498590Fe1f2454d7D4aC0d", + "type": "ERC20", + "symbol": "GNT", + "decimals": 18, + "status": "abandoned", + "id": "0xa74476443119A942dE498590Fe1f2454d7D4aC0d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json b/blockchains/ethereum/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json new file mode 100644 index 00000000..1496f020 --- /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 00000000..7151d49b Binary files /dev/null and b/blockchains/ethereum/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/logo.png differ diff --git a/blockchains/ethereum/assets/0xa753D16375229948C62e3b8b19326F845b6b9d8B/info.json b/blockchains/ethereum/assets/0xa753D16375229948C62e3b8b19326F845b6b9d8B/info.json new file mode 100644 index 00000000..13b0e8ed --- /dev/null +++ b/blockchains/ethereum/assets/0xa753D16375229948C62e3b8b19326F845b6b9d8B/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRYPTOBANK", + "symbol": "BANK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa753D16375229948C62e3b8b19326F845b6b9d8B", + "status": "abandoned", + "id": "0xa753D16375229948C62e3b8b19326F845b6b9d8B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa753D16375229948C62e3b8b19326F845b6b9d8B/logo.png b/blockchains/ethereum/assets/0xa753D16375229948C62e3b8b19326F845b6b9d8B/logo.png new file mode 100755 index 00000000..cb4da022 Binary files /dev/null and b/blockchains/ethereum/assets/0xa753D16375229948C62e3b8b19326F845b6b9d8B/logo.png differ diff --git a/blockchains/ethereum/assets/0xa75ecf2B587B5C65A001e485B2dC5121ab6Cc12d/info.json b/blockchains/ethereum/assets/0xa75ecf2B587B5C65A001e485B2dC5121ab6Cc12d/info.json new file mode 100644 index 00000000..06220e68 --- /dev/null +++ b/blockchains/ethereum/assets/0xa75ecf2B587B5C65A001e485B2dC5121ab6Cc12d/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 253-CN21", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa75ecf2B587B5C65A001e485B2dC5121ab6Cc12d", + "status": "abandoned", + "id": "0xa75ecf2B587B5C65A001e485B2dC5121ab6Cc12d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa75ecf2B587B5C65A001e485B2dC5121ab6Cc12d/logo.png b/blockchains/ethereum/assets/0xa75ecf2B587B5C65A001e485B2dC5121ab6Cc12d/logo.png new file mode 100644 index 00000000..2a1cc53a Binary files /dev/null and b/blockchains/ethereum/assets/0xa75ecf2B587B5C65A001e485B2dC5121ab6Cc12d/logo.png differ diff --git a/blockchains/ethereum/assets/0xa78803ceDcdCD4E8c69f1e048886a2e9Fa5dE3e2/info.json b/blockchains/ethereum/assets/0xa78803ceDcdCD4E8c69f1e048886a2e9Fa5dE3e2/info.json new file mode 100644 index 00000000..db83be30 --- /dev/null +++ b/blockchains/ethereum/assets/0xa78803ceDcdCD4E8c69f1e048886a2e9Fa5dE3e2/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-20/30M80", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa78803ceDcdCD4E8c69f1e048886a2e9Fa5dE3e2", + "status": "abandoned", + "id": "0xa78803ceDcdCD4E8c69f1e048886a2e9Fa5dE3e2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa78803ceDcdCD4E8c69f1e048886a2e9Fa5dE3e2/logo.png b/blockchains/ethereum/assets/0xa78803ceDcdCD4E8c69f1e048886a2e9Fa5dE3e2/logo.png new file mode 100644 index 00000000..25915f72 Binary files /dev/null and b/blockchains/ethereum/assets/0xa78803ceDcdCD4E8c69f1e048886a2e9Fa5dE3e2/logo.png differ diff --git a/blockchains/ethereum/assets/0xa7AB17FE18fe2EF1b211b95BE0D3B3a121823758/info.json b/blockchains/ethereum/assets/0xa7AB17FE18fe2EF1b211b95BE0D3B3a121823758/info.json new file mode 100644 index 00000000..22ac5a3e --- /dev/null +++ b/blockchains/ethereum/assets/0xa7AB17FE18fe2EF1b211b95BE0D3B3a121823758/info.json @@ -0,0 +1,11 @@ +{ + "name": "Defiance", + "symbol": "DEFI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa7AB17FE18fe2EF1b211b95BE0D3B3a121823758", + "status": "abandoned", + "id": "0xa7AB17FE18fe2EF1b211b95BE0D3B3a121823758" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa7AB17FE18fe2EF1b211b95BE0D3B3a121823758/logo.png b/blockchains/ethereum/assets/0xa7AB17FE18fe2EF1b211b95BE0D3B3a121823758/logo.png new file mode 100644 index 00000000..5a308288 Binary files /dev/null and b/blockchains/ethereum/assets/0xa7AB17FE18fe2EF1b211b95BE0D3B3a121823758/logo.png differ diff --git a/blockchains/ethereum/assets/0xa7DE087329BFcda5639247F96140f9DAbe3DeED1/info.json b/blockchains/ethereum/assets/0xa7DE087329BFcda5639247F96140f9DAbe3DeED1/info.json new file mode 100644 index 00000000..a10bbde7 --- /dev/null +++ b/blockchains/ethereum/assets/0xa7DE087329BFcda5639247F96140f9DAbe3DeED1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Statera", + "symbol": "STA", + "type": "ERC20", + "decimals": 18, + "description": "Metronome Desktop Wallet.", + "website": "https://stateratoken.com", + "explorer": "https://etherscan.io/token/0xa7DE087329BFcda5639247F96140f9DAbe3DeED1", + "status": "active", + "id": "0xa7DE087329BFcda5639247F96140f9DAbe3DeED1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa7DE087329BFcda5639247F96140f9DAbe3DeED1/logo.png b/blockchains/ethereum/assets/0xa7DE087329BFcda5639247F96140f9DAbe3DeED1/logo.png new file mode 100644 index 00000000..ee5da678 Binary files /dev/null and b/blockchains/ethereum/assets/0xa7DE087329BFcda5639247F96140f9DAbe3DeED1/logo.png differ diff --git a/blockchains/ethereum/assets/0xa7ED29B253D8B4E3109ce07c80fc570f81B63696/info.json b/blockchains/ethereum/assets/0xa7ED29B253D8B4E3109ce07c80fc570f81B63696/info.json new file mode 100644 index 00000000..636bd489 --- /dev/null +++ b/blockchains/ethereum/assets/0xa7ED29B253D8B4E3109ce07c80fc570f81B63696/info.json @@ -0,0 +1,33 @@ +{ + "name": "Basis Share", + "website": "https://basis.cash/", + "description": "Basis Cash is an open source, permissionless stablecoin pegged to USD. The protocol is designed to expand and contract supply similarly to the way central banks buy and sell fiscal debt to stabilze purchasing power, without any REBASES or risking colletrals. Basis Share is a medium of governing the Basis Cash and receiving the seigniorage rewards.", + "explorer": "https://etherscan.io/token/0xa7ED29B253D8B4E3109ce07c80fc570f81B63696", + "type": "ERC20", + "symbol": "BAS", + "decimals": 18, + "status": "active", + "id": "0xa7ED29B253D8B4E3109ce07c80fc570f81B63696", + "links": [ + { + "name": "github", + "url": "https://github.com/Basis-Cash" + }, + { + "name": "x", + "url": "https://x.com/Basis Cash" + }, + { + "name": "telegram", + "url": "https://t.me/basiscash" + }, + { + "name": "discord", + "url": "https://discord.com/invite/UEZq3HF5Eu" + }, + { + "name": "medium", + "url": "https://medium.com/basis-cash" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa7ED29B253D8B4E3109ce07c80fc570f81B63696/logo.png b/blockchains/ethereum/assets/0xa7ED29B253D8B4E3109ce07c80fc570f81B63696/logo.png new file mode 100644 index 00000000..9fdb6565 Binary files /dev/null and b/blockchains/ethereum/assets/0xa7ED29B253D8B4E3109ce07c80fc570f81B63696/logo.png differ diff --git a/blockchains/ethereum/assets/0xa7b9329b192d552344fffA8e67E803Aa9E99Af38/info.json b/blockchains/ethereum/assets/0xa7b9329b192d552344fffA8e67E803Aa9E99Af38/info.json new file mode 100644 index 00000000..476609c2 --- /dev/null +++ b/blockchains/ethereum/assets/0xa7b9329b192d552344fffA8e67E803Aa9E99Af38/info.json @@ -0,0 +1,11 @@ +{ + "name": "Montana", + "symbol": "MTN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa7b9329b192d552344fffA8e67E803Aa9E99Af38", + "status": "abandoned", + "id": "0xa7b9329b192d552344fffA8e67E803Aa9E99Af38" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa7b9329b192d552344fffA8e67E803Aa9E99Af38/logo.png b/blockchains/ethereum/assets/0xa7b9329b192d552344fffA8e67E803Aa9E99Af38/logo.png new file mode 100644 index 00000000..a67410f0 Binary files /dev/null and b/blockchains/ethereum/assets/0xa7b9329b192d552344fffA8e67E803Aa9E99Af38/logo.png differ diff --git a/blockchains/ethereum/assets/0xa7f976C360ebBeD4465c2855684D1AAE5271eFa9/info.json b/blockchains/ethereum/assets/0xa7f976C360ebBeD4465c2855684D1AAE5271eFa9/info.json new file mode 100644 index 00000000..3d49bba3 --- /dev/null +++ b/blockchains/ethereum/assets/0xa7f976C360ebBeD4465c2855684D1AAE5271eFa9/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrueFlip", + "symbol": "TFL", + "type": "ERC20", + "decimals": 8, + "description": "True Flip is the international anonymous blockchain lottery with instant payouts, open source code, and transparent prize fund.", + "website": "https://trueflip.io", + "explorer": "https://etherscan.io/token/0xa7f976C360ebBeD4465c2855684D1AAE5271eFa9", + "status": "active", + "id": "0xa7f976C360ebBeD4465c2855684D1AAE5271eFa9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa7f976C360ebBeD4465c2855684D1AAE5271eFa9/logo.png b/blockchains/ethereum/assets/0xa7f976C360ebBeD4465c2855684D1AAE5271eFa9/logo.png new file mode 100644 index 00000000..469b6d75 Binary files /dev/null and b/blockchains/ethereum/assets/0xa7f976C360ebBeD4465c2855684D1AAE5271eFa9/logo.png differ diff --git a/blockchains/ethereum/assets/0xa8006C4ca56F24d6836727D106349320dB7fEF82/info.json b/blockchains/ethereum/assets/0xa8006C4ca56F24d6836727D106349320dB7fEF82/info.json new file mode 100644 index 00000000..f9cdf85d --- /dev/null +++ b/blockchains/ethereum/assets/0xa8006C4ca56F24d6836727D106349320dB7fEF82/info.json @@ -0,0 +1,11 @@ +{ + "name": "Internxt", + "symbol": "INXT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://internxt.com", + "explorer": "https://etherscan.io/token/0xa8006C4ca56F24d6836727D106349320dB7fEF82", + "status": "active", + "id": "0xa8006C4ca56F24d6836727D106349320dB7fEF82" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa8006C4ca56F24d6836727D106349320dB7fEF82/logo.png b/blockchains/ethereum/assets/0xa8006C4ca56F24d6836727D106349320dB7fEF82/logo.png new file mode 100644 index 00000000..987ded70 Binary files /dev/null and b/blockchains/ethereum/assets/0xa8006C4ca56F24d6836727D106349320dB7fEF82/logo.png differ diff --git a/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/info.json b/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/info.json new file mode 100644 index 00000000..484d1f11 --- /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 00000000..a78954eb Binary files /dev/null and b/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/logo.png differ diff --git a/blockchains/ethereum/assets/0xa8262Eb913FccEa4C3f77fc95b8b4043B384cFbB/info.json b/blockchains/ethereum/assets/0xa8262Eb913FccEa4C3f77fc95b8b4043B384cFbB/info.json new file mode 100644 index 00000000..646cd9b4 --- /dev/null +++ b/blockchains/ethereum/assets/0xa8262Eb913FccEa4C3f77fc95b8b4043B384cFbB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Krypton", + "symbol": "KGC", + "type": "ERC20", + "decimals": 18, + "description": "Krypton is a community-driven, privacy first cryptocurrency project with a main focus on decentralization, scalability and fungibility.", + "website": "https://kexingqiu.net/", + "explorer": "https://etherscan.io/token/0xa8262Eb913FccEa4C3f77fc95b8b4043B384cFbB", + "status": "active", + "id": "0xa8262Eb913FccEa4C3f77fc95b8b4043B384cFbB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa8262Eb913FccEa4C3f77fc95b8b4043B384cFbB/logo.png b/blockchains/ethereum/assets/0xa8262Eb913FccEa4C3f77fc95b8b4043B384cFbB/logo.png new file mode 100644 index 00000000..ccd0a105 Binary files /dev/null and b/blockchains/ethereum/assets/0xa8262Eb913FccEa4C3f77fc95b8b4043B384cFbB/logo.png differ diff --git a/blockchains/ethereum/assets/0xa82B23e7D6B76d67f1C4d3FE8457041119f3c79E/info.json b/blockchains/ethereum/assets/0xa82B23e7D6B76d67f1C4d3FE8457041119f3c79E/info.json new file mode 100644 index 00000000..8b8de88e --- /dev/null +++ b/blockchains/ethereum/assets/0xa82B23e7D6B76d67f1C4d3FE8457041119f3c79E/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg12500", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa82B23e7D6B76d67f1C4d3FE8457041119f3c79E", + "status": "abandoned", + "id": "0xa82B23e7D6B76d67f1C4d3FE8457041119f3c79E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa82B23e7D6B76d67f1C4d3FE8457041119f3c79E/logo.png b/blockchains/ethereum/assets/0xa82B23e7D6B76d67f1C4d3FE8457041119f3c79E/logo.png new file mode 100644 index 00000000..a2d06c44 Binary files /dev/null and b/blockchains/ethereum/assets/0xa82B23e7D6B76d67f1C4d3FE8457041119f3c79E/logo.png differ diff --git a/blockchains/ethereum/assets/0xa838be6E4b760E6061D4732D6B9F11Bf578f9A76/info.json b/blockchains/ethereum/assets/0xa838be6E4b760E6061D4732D6B9F11Bf578f9A76/info.json new file mode 100644 index 00000000..0d320a9d --- /dev/null +++ b/blockchains/ethereum/assets/0xa838be6E4b760E6061D4732D6B9F11Bf578f9A76/info.json @@ -0,0 +1,11 @@ +{ + "name": "Token for Television", + "symbol": "TTV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://tv-two.com/", + "explorer": "https://etherscan.io/token/0xa838be6E4b760E6061D4732D6B9F11Bf578f9A76", + "status": "abandoned", + "id": "0xa838be6E4b760E6061D4732D6B9F11Bf578f9A76" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa838be6E4b760E6061D4732D6B9F11Bf578f9A76/logo.png b/blockchains/ethereum/assets/0xa838be6E4b760E6061D4732D6B9F11Bf578f9A76/logo.png new file mode 100644 index 00000000..0d61ab15 Binary files /dev/null and b/blockchains/ethereum/assets/0xa838be6E4b760E6061D4732D6B9F11Bf578f9A76/logo.png differ diff --git a/blockchains/ethereum/assets/0xa83aF809975619477Af73B179e05e04A1CcEA953/info.json b/blockchains/ethereum/assets/0xa83aF809975619477Af73B179e05e04A1CcEA953/info.json new file mode 100644 index 00000000..1c9e39ed --- /dev/null +++ b/blockchains/ethereum/assets/0xa83aF809975619477Af73B179e05e04A1CcEA953/info.json @@ -0,0 +1,11 @@ +{ + "name": "LEOcoin", + "symbol": "LC4", + "type": "ERC20", + "decimals": 8, + "description": "LC4 is an established digital currency that allows individuals to make fast and secure transactions through a decentralized peer-to-peer network.", + "website": "https://www.lc4foundation.org/", + "explorer": "https://etherscan.io/token/0xa83aF809975619477Af73B179e05e04A1CcEA953", + "status": "active", + "id": "0xa83aF809975619477Af73B179e05e04A1CcEA953" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa83aF809975619477Af73B179e05e04A1CcEA953/logo.png b/blockchains/ethereum/assets/0xa83aF809975619477Af73B179e05e04A1CcEA953/logo.png new file mode 100644 index 00000000..53745f92 Binary files /dev/null and b/blockchains/ethereum/assets/0xa83aF809975619477Af73B179e05e04A1CcEA953/logo.png differ diff --git a/blockchains/ethereum/assets/0xa843343B1658Dea67e83cbd11Da0b73728A1b185/info.json b/blockchains/ethereum/assets/0xa843343B1658Dea67e83cbd11Da0b73728A1b185/info.json new file mode 100644 index 00000000..6fd3453c --- /dev/null +++ b/blockchains/ethereum/assets/0xa843343B1658Dea67e83cbd11Da0b73728A1b185/info.json @@ -0,0 +1,11 @@ +{ + "name": "TixguruToken", + "symbol": "TIX", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa843343B1658Dea67e83cbd11Da0b73728A1b185", + "status": "abandoned", + "id": "0xa843343B1658Dea67e83cbd11Da0b73728A1b185" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa843343B1658Dea67e83cbd11Da0b73728A1b185/logo.png b/blockchains/ethereum/assets/0xa843343B1658Dea67e83cbd11Da0b73728A1b185/logo.png new file mode 100755 index 00000000..5db46846 Binary files /dev/null and b/blockchains/ethereum/assets/0xa843343B1658Dea67e83cbd11Da0b73728A1b185/logo.png differ diff --git a/blockchains/ethereum/assets/0xa84e07C4e13641Ebd9611E8f5f4033c284Ea4a48/info.json b/blockchains/ethereum/assets/0xa84e07C4e13641Ebd9611E8f5f4033c284Ea4a48/info.json new file mode 100644 index 00000000..9eb1c82a --- /dev/null +++ b/blockchains/ethereum/assets/0xa84e07C4e13641Ebd9611E8f5f4033c284Ea4a48/info.json @@ -0,0 +1,11 @@ +{ + "name": "Titanium", + "symbol": "CSC-TI", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa84e07C4e13641Ebd9611E8f5f4033c284Ea4a48", + "status": "abandoned", + "id": "0xa84e07C4e13641Ebd9611E8f5f4033c284Ea4a48" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa84e07C4e13641Ebd9611E8f5f4033c284Ea4a48/logo.png b/blockchains/ethereum/assets/0xa84e07C4e13641Ebd9611E8f5f4033c284Ea4a48/logo.png new file mode 100755 index 00000000..b478ea2b Binary files /dev/null and b/blockchains/ethereum/assets/0xa84e07C4e13641Ebd9611E8f5f4033c284Ea4a48/logo.png differ diff --git a/blockchains/ethereum/assets/0xa8511Af2F945B0a939a9772f403F41ec637bFfcd/info.json b/blockchains/ethereum/assets/0xa8511Af2F945B0a939a9772f403F41ec637bFfcd/info.json new file mode 100644 index 00000000..06926b5f --- /dev/null +++ b/blockchains/ethereum/assets/0xa8511Af2F945B0a939a9772f403F41ec637bFfcd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hunter", + "symbol": "HUNTER", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa8511Af2F945B0a939a9772f403F41ec637bFfcd", + "status": "abandoned", + "id": "0xa8511Af2F945B0a939a9772f403F41ec637bFfcd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa8511Af2F945B0a939a9772f403F41ec637bFfcd/logo.png b/blockchains/ethereum/assets/0xa8511Af2F945B0a939a9772f403F41ec637bFfcd/logo.png new file mode 100644 index 00000000..463daf5a Binary files /dev/null and b/blockchains/ethereum/assets/0xa8511Af2F945B0a939a9772f403F41ec637bFfcd/logo.png differ diff --git a/blockchains/ethereum/assets/0xa85C95AbA6c298535890D6f1133632220d458E9A/info.json b/blockchains/ethereum/assets/0xa85C95AbA6c298535890D6f1133632220d458E9A/info.json new file mode 100644 index 00000000..624b32ff --- /dev/null +++ b/blockchains/ethereum/assets/0xa85C95AbA6c298535890D6f1133632220d458E9A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockracing Share", + "symbol": "BRS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa85C95AbA6c298535890D6f1133632220d458E9A", + "status": "abandoned", + "id": "0xa85C95AbA6c298535890D6f1133632220d458E9A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa85C95AbA6c298535890D6f1133632220d458E9A/logo.png b/blockchains/ethereum/assets/0xa85C95AbA6c298535890D6f1133632220d458E9A/logo.png new file mode 100644 index 00000000..544a7996 Binary files /dev/null and b/blockchains/ethereum/assets/0xa85C95AbA6c298535890D6f1133632220d458E9A/logo.png differ diff --git a/blockchains/ethereum/assets/0xa872E0a44BBd66c1486a756CB5BD3F0bEEC4e32e/info.json b/blockchains/ethereum/assets/0xa872E0a44BBd66c1486a756CB5BD3F0bEEC4e32e/info.json new file mode 100644 index 00000000..3f00b18a --- /dev/null +++ b/blockchains/ethereum/assets/0xa872E0a44BBd66c1486a756CB5BD3F0bEEC4e32e/info.json @@ -0,0 +1,11 @@ +{ + "name": "AntiscamToken (AST)", + "symbol": "AST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa872E0a44BBd66c1486a756CB5BD3F0bEEC4e32e", + "status": "abandoned", + "id": "0xa872E0a44BBd66c1486a756CB5BD3F0bEEC4e32e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa872E0a44BBd66c1486a756CB5BD3F0bEEC4e32e/logo.png b/blockchains/ethereum/assets/0xa872E0a44BBd66c1486a756CB5BD3F0bEEC4e32e/logo.png new file mode 100644 index 00000000..58c83dbd Binary files /dev/null and b/blockchains/ethereum/assets/0xa872E0a44BBd66c1486a756CB5BD3F0bEEC4e32e/logo.png differ diff --git a/blockchains/ethereum/assets/0xa87DeAE3026Ae94900D69FFa39eb9a99E0bF9B08/info.json b/blockchains/ethereum/assets/0xa87DeAE3026Ae94900D69FFa39eb9a99E0bF9B08/info.json new file mode 100644 index 00000000..51c3bd08 --- /dev/null +++ b/blockchains/ethereum/assets/0xa87DeAE3026Ae94900D69FFa39eb9a99E0bF9B08/info.json @@ -0,0 +1,11 @@ +{ + "name": "TOR Cabala", + "symbol": "Torc", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa87DeAE3026Ae94900D69FFa39eb9a99E0bF9B08", + "status": "abandoned", + "id": "0xa87DeAE3026Ae94900D69FFa39eb9a99E0bF9B08" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa87DeAE3026Ae94900D69FFa39eb9a99E0bF9B08/logo.png b/blockchains/ethereum/assets/0xa87DeAE3026Ae94900D69FFa39eb9a99E0bF9B08/logo.png new file mode 100644 index 00000000..c39b6600 Binary files /dev/null and b/blockchains/ethereum/assets/0xa87DeAE3026Ae94900D69FFa39eb9a99E0bF9B08/logo.png differ diff --git a/blockchains/ethereum/assets/0xa8892bfc33FA44053a9E402B1839966f4FEc74A4/info.json b/blockchains/ethereum/assets/0xa8892bfc33FA44053a9E402B1839966f4FEc74A4/info.json new file mode 100644 index 00000000..2b91d19c --- /dev/null +++ b/blockchains/ethereum/assets/0xa8892bfc33FA44053a9E402B1839966f4FEc74A4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crypto User Base", + "symbol": "CUB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://cryptouserbase.com/", + "explorer": "https://etherscan.io/token/0xa8892bfc33FA44053a9E402B1839966f4FEc74A4", + "status": "abandoned", + "id": "0xa8892bfc33FA44053a9E402B1839966f4FEc74A4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa8892bfc33FA44053a9E402B1839966f4FEc74A4/logo.png b/blockchains/ethereum/assets/0xa8892bfc33FA44053a9E402B1839966f4FEc74A4/logo.png new file mode 100644 index 00000000..be9a6fef Binary files /dev/null and b/blockchains/ethereum/assets/0xa8892bfc33FA44053a9E402B1839966f4FEc74A4/logo.png differ diff --git a/blockchains/ethereum/assets/0xa8B0F154A688c22142E361707df64277e0A0bE66/info.json b/blockchains/ethereum/assets/0xa8B0F154A688c22142E361707df64277e0A0bE66/info.json new file mode 100644 index 00000000..cccd5b0a --- /dev/null +++ b/blockchains/ethereum/assets/0xa8B0F154A688c22142E361707df64277e0A0bE66/info.json @@ -0,0 +1,11 @@ +{ + "name": "RAK", + "website": "https://rake.finance/", + "description": "RAKE is a deflationary token that is designed to maximize yield farming, while the protocol builds a vault with locked liquidity forever, and 90% of all yields from liquidity mining will be used to buy back RAK on active Uniswap market, and pay the reward on RAK tokens.", + "explorer": "https://etherscan.io/token/0xa8b0f154a688c22142e361707df64277e0a0be66", + "type": "ERC20", + "symbol": "RAK", + "decimals": 18, + "status": "active", + "id": "0xa8B0F154A688c22142E361707df64277e0A0bE66" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa8B0F154A688c22142E361707df64277e0A0bE66/logo.png b/blockchains/ethereum/assets/0xa8B0F154A688c22142E361707df64277e0A0bE66/logo.png new file mode 100644 index 00000000..fa8d6810 Binary files /dev/null and b/blockchains/ethereum/assets/0xa8B0F154A688c22142E361707df64277e0A0bE66/logo.png differ diff --git a/blockchains/ethereum/assets/0xa8EdA9D4Aee0eb882F8752C6bA7e16d9233C9Ad2/info.json b/blockchains/ethereum/assets/0xa8EdA9D4Aee0eb882F8752C6bA7e16d9233C9Ad2/info.json new file mode 100644 index 00000000..a4db7cf6 --- /dev/null +++ b/blockchains/ethereum/assets/0xa8EdA9D4Aee0eb882F8752C6bA7e16d9233C9Ad2/info.json @@ -0,0 +1,11 @@ +{ + "name": "LevelApp Token", + "symbol": "LVL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://levelapp.cx", + "explorer": "https://etherscan.io/token/0xa8EdA9D4Aee0eb882F8752C6bA7e16d9233C9Ad2", + "status": "abandoned", + "id": "0xa8EdA9D4Aee0eb882F8752C6bA7e16d9233C9Ad2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa8EdA9D4Aee0eb882F8752C6bA7e16d9233C9Ad2/logo.png b/blockchains/ethereum/assets/0xa8EdA9D4Aee0eb882F8752C6bA7e16d9233C9Ad2/logo.png new file mode 100644 index 00000000..44193ef4 Binary files /dev/null and b/blockchains/ethereum/assets/0xa8EdA9D4Aee0eb882F8752C6bA7e16d9233C9Ad2/logo.png differ diff --git a/blockchains/ethereum/assets/0xa8F74d0dDfa590bA7e0794E9742846Eb52f2aCAC/info.json b/blockchains/ethereum/assets/0xa8F74d0dDfa590bA7e0794E9742846Eb52f2aCAC/info.json new file mode 100644 index 00000000..63b11d36 --- /dev/null +++ b/blockchains/ethereum/assets/0xa8F74d0dDfa590bA7e0794E9742846Eb52f2aCAC/info.json @@ -0,0 +1,11 @@ +{ + "name": "EGYPT", + "symbol": "EGY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://egyptcryptocoin.com", + "explorer": "https://etherscan.io/token/0xa8F74d0dDfa590bA7e0794E9742846Eb52f2aCAC", + "status": "abandoned", + "id": "0xa8F74d0dDfa590bA7e0794E9742846Eb52f2aCAC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa8F74d0dDfa590bA7e0794E9742846Eb52f2aCAC/logo.png b/blockchains/ethereum/assets/0xa8F74d0dDfa590bA7e0794E9742846Eb52f2aCAC/logo.png new file mode 100755 index 00000000..b680d757 Binary files /dev/null and b/blockchains/ethereum/assets/0xa8F74d0dDfa590bA7e0794E9742846Eb52f2aCAC/logo.png differ diff --git a/blockchains/ethereum/assets/0xa8F952Daa2050aF448e2B6E8cCd2cD66E145F9Cc/info.json b/blockchains/ethereum/assets/0xa8F952Daa2050aF448e2B6E8cCd2cD66E145F9Cc/info.json new file mode 100644 index 00000000..279f5eb7 --- /dev/null +++ b/blockchains/ethereum/assets/0xa8F952Daa2050aF448e2B6E8cCd2cD66E145F9Cc/info.json @@ -0,0 +1,11 @@ +{ + "name": "RXCCryptofreedomToken", + "symbol": "RXCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa8F952Daa2050aF448e2B6E8cCd2cD66E145F9Cc", + "status": "abandoned", + "id": "0xa8F952Daa2050aF448e2B6E8cCd2cD66E145F9Cc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa8F952Daa2050aF448e2B6E8cCd2cD66E145F9Cc/logo.png b/blockchains/ethereum/assets/0xa8F952Daa2050aF448e2B6E8cCd2cD66E145F9Cc/logo.png new file mode 100644 index 00000000..a1a6c702 Binary files /dev/null and b/blockchains/ethereum/assets/0xa8F952Daa2050aF448e2B6E8cCd2cD66E145F9Cc/logo.png differ diff --git a/blockchains/ethereum/assets/0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca/info.json b/blockchains/ethereum/assets/0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca/info.json new file mode 100644 index 00000000..892e8a1a --- /dev/null +++ b/blockchains/ethereum/assets/0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca/info.json @@ -0,0 +1,11 @@ +{ + "name": "Syntropy", + "website": "https://syntropynet.com", + "description": "Syntropy is transforming the public internet into a secure and user-centric internet through a unifying layer where encryption and optimized performance are built-in and automatically enabled for anything and everything connected to it.", + "explorer": "https://etherscan.io/token/0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca", + "type": "ERC20", + "symbol": "NOIA", + "decimals": 18, + "status": "active", + "id": "0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca/logo.png b/blockchains/ethereum/assets/0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca/logo.png new file mode 100644 index 00000000..4d415592 Binary files /dev/null and b/blockchains/ethereum/assets/0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca/logo.png differ diff --git a/blockchains/ethereum/assets/0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f/info.json b/blockchains/ethereum/assets/0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f/info.json new file mode 100644 index 00000000..318b3d18 --- /dev/null +++ b/blockchains/ethereum/assets/0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coinibal", + "symbol": "COIN", + "type": "ERC20", + "decimals": 16, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f", + "status": "abandoned", + "id": "0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f/logo.png b/blockchains/ethereum/assets/0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f/logo.png new file mode 100644 index 00000000..55383355 Binary files /dev/null and b/blockchains/ethereum/assets/0xa8d3847f8AE1e8ebfD5928D39A3B1aE5dA12A61f/logo.png differ diff --git a/blockchains/ethereum/assets/0xa8f0653Bf3eFa0D8E78e6136028C767561736224/info.json b/blockchains/ethereum/assets/0xa8f0653Bf3eFa0D8E78e6136028C767561736224/info.json new file mode 100644 index 00000000..983e1622 --- /dev/null +++ b/blockchains/ethereum/assets/0xa8f0653Bf3eFa0D8E78e6136028C767561736224/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 180-CN50", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa8f0653Bf3eFa0D8E78e6136028C767561736224", + "status": "abandoned", + "id": "0xa8f0653Bf3eFa0D8E78e6136028C767561736224" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa8f0653Bf3eFa0D8E78e6136028C767561736224/logo.png b/blockchains/ethereum/assets/0xa8f0653Bf3eFa0D8E78e6136028C767561736224/logo.png new file mode 100644 index 00000000..876629f9 Binary files /dev/null and b/blockchains/ethereum/assets/0xa8f0653Bf3eFa0D8E78e6136028C767561736224/logo.png differ diff --git a/blockchains/ethereum/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json b/blockchains/ethereum/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json new file mode 100644 index 00000000..3181d73d --- /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 00000000..e79aa166 Binary files /dev/null and b/blockchains/ethereum/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/logo.png differ diff --git a/blockchains/ethereum/assets/0xa90C43e0d6c92b8e6171a829beB38Be28a0Ad073/info.json b/blockchains/ethereum/assets/0xa90C43e0d6c92b8e6171a829beB38Be28a0Ad073/info.json new file mode 100644 index 00000000..6e4c696a --- /dev/null +++ b/blockchains/ethereum/assets/0xa90C43e0d6c92b8e6171a829beB38Be28a0Ad073/info.json @@ -0,0 +1,11 @@ +{ + "name": "EGORAS DOLLAR", + "symbol": "EUSD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa90C43e0d6c92b8e6171a829beB38Be28a0Ad073", + "status": "abandoned", + "id": "0xa90C43e0d6c92b8e6171a829beB38Be28a0Ad073" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa90C43e0d6c92b8e6171a829beB38Be28a0Ad073/logo.png b/blockchains/ethereum/assets/0xa90C43e0d6c92b8e6171a829beB38Be28a0Ad073/logo.png new file mode 100644 index 00000000..ea72b1ca Binary files /dev/null and b/blockchains/ethereum/assets/0xa90C43e0d6c92b8e6171a829beB38Be28a0Ad073/logo.png differ diff --git a/blockchains/ethereum/assets/0xa9241C6Bc2f536ddbedca8d95b83Af05988f6AFe/info.json b/blockchains/ethereum/assets/0xa9241C6Bc2f536ddbedca8d95b83Af05988f6AFe/info.json new file mode 100644 index 00000000..ca33a53c --- /dev/null +++ b/blockchains/ethereum/assets/0xa9241C6Bc2f536ddbedca8d95b83Af05988f6AFe/info.json @@ -0,0 +1,11 @@ +{ + "name": "PWQ", + "website": "http://pwq.finance", + "description": "We are a partner of QQQ, as our name suggests : PWQ = Partner With QQQ ", + "explorer": "https://etherscan.io/token/0xa9241C6Bc2f536ddbedca8d95b83Af05988f6AFe", + "type": "ERC20", + "symbol": "PWQ", + "decimals": 18, + "status": "active", + "id": "0xa9241C6Bc2f536ddbedca8d95b83Af05988f6AFe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa9241C6Bc2f536ddbedca8d95b83Af05988f6AFe/logo.png b/blockchains/ethereum/assets/0xa9241C6Bc2f536ddbedca8d95b83Af05988f6AFe/logo.png new file mode 100644 index 00000000..be68e6c0 Binary files /dev/null and b/blockchains/ethereum/assets/0xa9241C6Bc2f536ddbedca8d95b83Af05988f6AFe/logo.png differ diff --git a/blockchains/ethereum/assets/0xa92E7c82B11d10716aB534051B271D2f6aEf7Df5/info.json b/blockchains/ethereum/assets/0xa92E7c82B11d10716aB534051B271D2f6aEf7Df5/info.json new file mode 100644 index 00000000..9dfada8b --- /dev/null +++ b/blockchains/ethereum/assets/0xa92E7c82B11d10716aB534051B271D2f6aEf7Df5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ara Token (ARA)", + "type": "ERC20", + "symbol": "ARA", + "decimals": 18, + "website": "https://ara.one", + "description": "Ara directly connects creators and fans, enabling distribution and payment without platform fees and limits.", + "explorer": "https://etherscan.io/token/0xa92e7c82b11d10716ab534051b271d2f6aef7df5", + "status": "active", + "id": "0xa92E7c82B11d10716aB534051B271D2f6aEf7Df5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa92E7c82B11d10716aB534051B271D2f6aEf7Df5/logo.png b/blockchains/ethereum/assets/0xa92E7c82B11d10716aB534051B271D2f6aEf7Df5/logo.png new file mode 100644 index 00000000..86d64f69 Binary files /dev/null and b/blockchains/ethereum/assets/0xa92E7c82B11d10716aB534051B271D2f6aEf7Df5/logo.png differ diff --git a/blockchains/ethereum/assets/0xa95592DCFfA3C080B4B40E459c5f5692F67DB7F8/info.json b/blockchains/ethereum/assets/0xa95592DCFfA3C080B4B40E459c5f5692F67DB7F8/info.json new file mode 100644 index 00000000..599b1018 --- /dev/null +++ b/blockchains/ethereum/assets/0xa95592DCFfA3C080B4B40E459c5f5692F67DB7F8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Elycoin", + "symbol": "ELY", + "type": "ERC20", + "decimals": 18, + "description": "A decentralized platform to build Ecommerce websites on the blockchain", + "website": "https://elycoin.io", + "explorer": "https://etherscan.io/token/0xa95592DCFfA3C080B4B40E459c5f5692F67DB7F8", + "status": "active", + "id": "0xa95592DCFfA3C080B4B40E459c5f5692F67DB7F8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa95592DCFfA3C080B4B40E459c5f5692F67DB7F8/logo.png b/blockchains/ethereum/assets/0xa95592DCFfA3C080B4B40E459c5f5692F67DB7F8/logo.png new file mode 100644 index 00000000..fe0f7552 Binary files /dev/null and b/blockchains/ethereum/assets/0xa95592DCFfA3C080B4B40E459c5f5692F67DB7F8/logo.png differ diff --git a/blockchains/ethereum/assets/0xa957045A12D270e2eE0dcA9A3340c340e05d4670/info.json b/blockchains/ethereum/assets/0xa957045A12D270e2eE0dcA9A3340c340e05d4670/info.json new file mode 100644 index 00000000..828000aa --- /dev/null +++ b/blockchains/ethereum/assets/0xa957045A12D270e2eE0dcA9A3340c340e05d4670/info.json @@ -0,0 +1,11 @@ +{ + "name": "AIDUS TOKEN", + "symbol": "AIDUS", + "type": "ERC20", + "decimals": 18, + "description": "The AIDUS Global D-Fund Platform describes itself as a decentralized fund market established on the Ethereum network. It aims to become a professional asset management platform for asset managers to use Blockchain technologies and SMART Contracts to safely and transparently create and settle P2P (Peer-to-Peer) fund agreements.", + "website": "https://aidus.io/", + "explorer": "https://etherscan.io/token/0xa957045A12D270e2eE0dcA9A3340c340e05d4670", + "status": "active", + "id": "0xa957045A12D270e2eE0dcA9A3340c340e05d4670" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa957045A12D270e2eE0dcA9A3340c340e05d4670/logo.png b/blockchains/ethereum/assets/0xa957045A12D270e2eE0dcA9A3340c340e05d4670/logo.png new file mode 100644 index 00000000..8bb16d76 Binary files /dev/null and b/blockchains/ethereum/assets/0xa957045A12D270e2eE0dcA9A3340c340e05d4670/logo.png differ diff --git a/blockchains/ethereum/assets/0xa958E706fc1934E26a3D0c32f471B54F733D0009/info.json b/blockchains/ethereum/assets/0xa958E706fc1934E26a3D0c32f471B54F733D0009/info.json new file mode 100644 index 00000000..7d2ecc38 --- /dev/null +++ b/blockchains/ethereum/assets/0xa958E706fc1934E26a3D0c32f471B54F733D0009/info.json @@ -0,0 +1,11 @@ +{ + "name": "Allcoin", + "symbol": "ALC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa958E706fc1934E26a3D0c32f471B54F733D0009", + "status": "abandoned", + "id": "0xa958E706fc1934E26a3D0c32f471B54F733D0009" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa958E706fc1934E26a3D0c32f471B54F733D0009/logo.png b/blockchains/ethereum/assets/0xa958E706fc1934E26a3D0c32f471B54F733D0009/logo.png new file mode 100644 index 00000000..57cfc6af Binary files /dev/null and b/blockchains/ethereum/assets/0xa958E706fc1934E26a3D0c32f471B54F733D0009/logo.png differ diff --git a/blockchains/ethereum/assets/0xa960d2bA7000d58773E7fa5754DeC3Bb40A069D5/info.json b/blockchains/ethereum/assets/0xa960d2bA7000d58773E7fa5754DeC3Bb40A069D5/info.json new file mode 100644 index 00000000..30529d81 --- /dev/null +++ b/blockchains/ethereum/assets/0xa960d2bA7000d58773E7fa5754DeC3Bb40A069D5/info.json @@ -0,0 +1,11 @@ +{ + "name": "One DEX", + "symbol": "ODEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://onedexproject.com", + "explorer": "https://etherscan.io/token/0xa960d2bA7000d58773E7fa5754DeC3Bb40A069D5", + "status": "abandoned", + "id": "0xa960d2bA7000d58773E7fa5754DeC3Bb40A069D5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa960d2bA7000d58773E7fa5754DeC3Bb40A069D5/logo.png b/blockchains/ethereum/assets/0xa960d2bA7000d58773E7fa5754DeC3Bb40A069D5/logo.png new file mode 100644 index 00000000..c1068a3d Binary files /dev/null and b/blockchains/ethereum/assets/0xa960d2bA7000d58773E7fa5754DeC3Bb40A069D5/logo.png differ diff --git a/blockchains/ethereum/assets/0xa96F31F1C187c28980176C3A27ba7069f48abDE4/info.json b/blockchains/ethereum/assets/0xa96F31F1C187c28980176C3A27ba7069f48abDE4/info.json new file mode 100644 index 00000000..663723e3 --- /dev/null +++ b/blockchains/ethereum/assets/0xa96F31F1C187c28980176C3A27ba7069f48abDE4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Gold Project", + "symbol": "ETGP", + "type": "ERC20", + "decimals": 8, + "description": "ETGP is the update of ETG project with new roadmap , our vision is to facilitate & decentralize payment of companies & communities.", + "website": "https://www.etgproject.org", + "explorer": "https://etherscan.io/token/0xa96F31F1C187c28980176C3A27ba7069f48abDE4", + "status": "active", + "id": "0xa96F31F1C187c28980176C3A27ba7069f48abDE4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa96F31F1C187c28980176C3A27ba7069f48abDE4/logo.png b/blockchains/ethereum/assets/0xa96F31F1C187c28980176C3A27ba7069f48abDE4/logo.png new file mode 100755 index 00000000..debdf547 Binary files /dev/null and b/blockchains/ethereum/assets/0xa96F31F1C187c28980176C3A27ba7069f48abDE4/logo.png differ diff --git a/blockchains/ethereum/assets/0xa98f9F529De8E504FeB7CE34930790A38A65bb56/info.json b/blockchains/ethereum/assets/0xa98f9F529De8E504FeB7CE34930790A38A65bb56/info.json new file mode 100644 index 00000000..f6848e8e --- /dev/null +++ b/blockchains/ethereum/assets/0xa98f9F529De8E504FeB7CE34930790A38A65bb56/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 187-CN09", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa98f9F529De8E504FeB7CE34930790A38A65bb56", + "status": "abandoned", + "id": "0xa98f9F529De8E504FeB7CE34930790A38A65bb56" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa98f9F529De8E504FeB7CE34930790A38A65bb56/logo.png b/blockchains/ethereum/assets/0xa98f9F529De8E504FeB7CE34930790A38A65bb56/logo.png new file mode 100644 index 00000000..8131337d Binary files /dev/null and b/blockchains/ethereum/assets/0xa98f9F529De8E504FeB7CE34930790A38A65bb56/logo.png differ diff --git a/blockchains/ethereum/assets/0xa99F0A9af216193d3Aeb400e608F7f98267aa84F/info.json b/blockchains/ethereum/assets/0xa99F0A9af216193d3Aeb400e608F7f98267aa84F/info.json new file mode 100644 index 00000000..7f012b62 --- /dev/null +++ b/blockchains/ethereum/assets/0xa99F0A9af216193d3Aeb400e608F7f98267aa84F/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C548556", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa99F0A9af216193d3Aeb400e608F7f98267aa84F", + "status": "abandoned", + "id": "0xa99F0A9af216193d3Aeb400e608F7f98267aa84F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa99F0A9af216193d3Aeb400e608F7f98267aa84F/logo.png b/blockchains/ethereum/assets/0xa99F0A9af216193d3Aeb400e608F7f98267aa84F/logo.png new file mode 100644 index 00000000..7c773594 Binary files /dev/null and b/blockchains/ethereum/assets/0xa99F0A9af216193d3Aeb400e608F7f98267aa84F/logo.png differ diff --git a/blockchains/ethereum/assets/0xa9D24eC1D08856632Ed1847f43760e66Bcb91ca7/info.json b/blockchains/ethereum/assets/0xa9D24eC1D08856632Ed1847f43760e66Bcb91ca7/info.json new file mode 100644 index 00000000..ba245db9 --- /dev/null +++ b/blockchains/ethereum/assets/0xa9D24eC1D08856632Ed1847f43760e66Bcb91ca7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Streamix", + "symbol": "STRX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa9D24eC1D08856632Ed1847f43760e66Bcb91ca7", + "status": "abandoned", + "id": "0xa9D24eC1D08856632Ed1847f43760e66Bcb91ca7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa9D24eC1D08856632Ed1847f43760e66Bcb91ca7/logo.png b/blockchains/ethereum/assets/0xa9D24eC1D08856632Ed1847f43760e66Bcb91ca7/logo.png new file mode 100644 index 00000000..3f597a8a Binary files /dev/null and b/blockchains/ethereum/assets/0xa9D24eC1D08856632Ed1847f43760e66Bcb91ca7/logo.png differ diff --git a/blockchains/ethereum/assets/0xa9E66a2A0eF7872404cD9FE8179eb7f4BbD4B80C/info.json b/blockchains/ethereum/assets/0xa9E66a2A0eF7872404cD9FE8179eb7f4BbD4B80C/info.json new file mode 100644 index 00000000..994b52a7 --- /dev/null +++ b/blockchains/ethereum/assets/0xa9E66a2A0eF7872404cD9FE8179eb7f4BbD4B80C/info.json @@ -0,0 +1,11 @@ +{ + "name": "planeth", + "symbol": "peth", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa9E66a2A0eF7872404cD9FE8179eb7f4BbD4B80C", + "status": "abandoned", + "id": "0xa9E66a2A0eF7872404cD9FE8179eb7f4BbD4B80C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa9E66a2A0eF7872404cD9FE8179eb7f4BbD4B80C/logo.png b/blockchains/ethereum/assets/0xa9E66a2A0eF7872404cD9FE8179eb7f4BbD4B80C/logo.png new file mode 100644 index 00000000..cef92f10 Binary files /dev/null and b/blockchains/ethereum/assets/0xa9E66a2A0eF7872404cD9FE8179eb7f4BbD4B80C/logo.png differ diff --git a/blockchains/ethereum/assets/0xa9F7c93EFB9FFAe7dFaC51FFb168a9a2C06afdB1/info.json b/blockchains/ethereum/assets/0xa9F7c93EFB9FFAe7dFaC51FFb168a9a2C06afdB1/info.json new file mode 100644 index 00000000..d01d96bd --- /dev/null +++ b/blockchains/ethereum/assets/0xa9F7c93EFB9FFAe7dFaC51FFb168a9a2C06afdB1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Money Tree", + "symbol": "MT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa9F7c93EFB9FFAe7dFaC51FFb168a9a2C06afdB1", + "status": "abandoned", + "id": "0xa9F7c93EFB9FFAe7dFaC51FFb168a9a2C06afdB1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa9F7c93EFB9FFAe7dFaC51FFb168a9a2C06afdB1/logo.png b/blockchains/ethereum/assets/0xa9F7c93EFB9FFAe7dFaC51FFb168a9a2C06afdB1/logo.png new file mode 100644 index 00000000..a953a495 Binary files /dev/null and b/blockchains/ethereum/assets/0xa9F7c93EFB9FFAe7dFaC51FFb168a9a2C06afdB1/logo.png differ diff --git a/blockchains/ethereum/assets/0xa9a88d64AD708967B20f46Fb89cCb1cB5fa545cd/info.json b/blockchains/ethereum/assets/0xa9a88d64AD708967B20f46Fb89cCb1cB5fa545cd/info.json new file mode 100644 index 00000000..96039ac6 --- /dev/null +++ b/blockchains/ethereum/assets/0xa9a88d64AD708967B20f46Fb89cCb1cB5fa545cd/info.json @@ -0,0 +1,11 @@ +{ + "name": "REDBOLD", + "symbol": "RBOLD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa9a88d64AD708967B20f46Fb89cCb1cB5fa545cd", + "status": "active", + "id": "0xa9a88d64AD708967B20f46Fb89cCb1cB5fa545cd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa9a88d64AD708967B20f46Fb89cCb1cB5fa545cd/logo.png b/blockchains/ethereum/assets/0xa9a88d64AD708967B20f46Fb89cCb1cB5fa545cd/logo.png new file mode 100644 index 00000000..18edd90b Binary files /dev/null and b/blockchains/ethereum/assets/0xa9a88d64AD708967B20f46Fb89cCb1cB5fa545cd/logo.png differ diff --git a/blockchains/ethereum/assets/0xa9aa40627C6B989F97A6656a4AD658275479361C/info.json b/blockchains/ethereum/assets/0xa9aa40627C6B989F97A6656a4AD658275479361C/info.json new file mode 100644 index 00000000..b542918c --- /dev/null +++ b/blockchains/ethereum/assets/0xa9aa40627C6B989F97A6656a4AD658275479361C/info.json @@ -0,0 +1,11 @@ +{ + "name": "MAFER", + "symbol": "MFR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa9aa40627C6B989F97A6656a4AD658275479361C", + "status": "abandoned", + "id": "0xa9aa40627C6B989F97A6656a4AD658275479361C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa9aa40627C6B989F97A6656a4AD658275479361C/logo.png b/blockchains/ethereum/assets/0xa9aa40627C6B989F97A6656a4AD658275479361C/logo.png new file mode 100644 index 00000000..64e467db Binary files /dev/null and b/blockchains/ethereum/assets/0xa9aa40627C6B989F97A6656a4AD658275479361C/logo.png differ diff --git a/blockchains/ethereum/assets/0xa9f2C8EF5Eeb27dC7819cD1712f02e816dB02056/info.json b/blockchains/ethereum/assets/0xa9f2C8EF5Eeb27dC7819cD1712f02e816dB02056/info.json new file mode 100644 index 00000000..43b761ea --- /dev/null +++ b/blockchains/ethereum/assets/0xa9f2C8EF5Eeb27dC7819cD1712f02e816dB02056/info.json @@ -0,0 +1,11 @@ +{ + "name": "Futbol Coin", + "symbol": "FUCO", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xa9f2C8EF5Eeb27dC7819cD1712f02e816dB02056", + "status": "abandoned", + "id": "0xa9f2C8EF5Eeb27dC7819cD1712f02e816dB02056" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa9f2C8EF5Eeb27dC7819cD1712f02e816dB02056/logo.png b/blockchains/ethereum/assets/0xa9f2C8EF5Eeb27dC7819cD1712f02e816dB02056/logo.png new file mode 100644 index 00000000..dd00afac Binary files /dev/null and b/blockchains/ethereum/assets/0xa9f2C8EF5Eeb27dC7819cD1712f02e816dB02056/logo.png differ diff --git a/blockchains/ethereum/assets/0xa9fC65Da36064cE545e87690e06f5de10C52C690/info.json b/blockchains/ethereum/assets/0xa9fC65Da36064cE545e87690e06f5de10C52C690/info.json new file mode 100644 index 00000000..c00b9d06 --- /dev/null +++ b/blockchains/ethereum/assets/0xa9fC65Da36064cE545e87690e06f5de10C52C690/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Short Bitcoin Cash Token", + "symbol": "BCHBEAR", + "type": "ERC20", + "decimals": 18, + "description": "3X Short Bitcoin Cash Token (BCHBEAR) is an ERC20 token which seeks a return that corresponds to -3 times the daily return of Bitcoin Cash.", + "website": "https://ftx.com/tokens/BCHBEAR", + "explorer": "https://etherscan.io/token/0xa9fC65Da36064cE545e87690e06f5de10C52C690", + "status": "active", + "id": "0xa9fC65Da36064cE545e87690e06f5de10C52C690" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa9fC65Da36064cE545e87690e06f5de10C52C690/logo.png b/blockchains/ethereum/assets/0xa9fC65Da36064cE545e87690e06f5de10C52C690/logo.png new file mode 100644 index 00000000..a8cc1f57 Binary files /dev/null and b/blockchains/ethereum/assets/0xa9fC65Da36064cE545e87690e06f5de10C52C690/logo.png differ diff --git a/blockchains/ethereum/assets/0xaA0CA4C5447101BfaE2c79f4cc4d91CD360f33a4/info.json b/blockchains/ethereum/assets/0xaA0CA4C5447101BfaE2c79f4cc4d91CD360f33a4/info.json new file mode 100644 index 00000000..9749eea3 --- /dev/null +++ b/blockchains/ethereum/assets/0xaA0CA4C5447101BfaE2c79f4cc4d91CD360f33a4/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZTAR COIN", + "symbol": "ZTAR", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaA0CA4C5447101BfaE2c79f4cc4d91CD360f33a4", + "status": "abandoned", + "id": "0xaA0CA4C5447101BfaE2c79f4cc4d91CD360f33a4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaA0CA4C5447101BfaE2c79f4cc4d91CD360f33a4/logo.png b/blockchains/ethereum/assets/0xaA0CA4C5447101BfaE2c79f4cc4d91CD360f33a4/logo.png new file mode 100644 index 00000000..fa0ed3fb Binary files /dev/null and b/blockchains/ethereum/assets/0xaA0CA4C5447101BfaE2c79f4cc4d91CD360f33a4/logo.png differ diff --git a/blockchains/ethereum/assets/0xaA19673aA1b483a5c4f73B446B4f851629a7e7D6/info.json b/blockchains/ethereum/assets/0xaA19673aA1b483a5c4f73B446B4f851629a7e7D6/info.json new file mode 100644 index 00000000..7a236dd0 --- /dev/null +++ b/blockchains/ethereum/assets/0xaA19673aA1b483a5c4f73B446B4f851629a7e7D6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xplosive Ethereum", + "website": "https://xeth.finance/", + "description": "A Rebase-Inflationary, Burn Deflationary Currency.", + "explorer": "https://etherscan.io/token/0xaA19673aA1b483a5c4f73B446B4f851629a7e7D6", + "type": "ERC20", + "symbol": "xETH", + "decimals": 18, + "status": "active", + "id": "0xaA19673aA1b483a5c4f73B446B4f851629a7e7D6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaA19673aA1b483a5c4f73B446B4f851629a7e7D6/logo.png b/blockchains/ethereum/assets/0xaA19673aA1b483a5c4f73B446B4f851629a7e7D6/logo.png new file mode 100644 index 00000000..ae146f35 Binary files /dev/null and b/blockchains/ethereum/assets/0xaA19673aA1b483a5c4f73B446B4f851629a7e7D6/logo.png differ diff --git a/blockchains/ethereum/assets/0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB/info.json b/blockchains/ethereum/assets/0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB/info.json new file mode 100644 index 00000000..4b09689c --- /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 00000000..5fcf2080 Binary files /dev/null and b/blockchains/ethereum/assets/0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB/logo.png differ diff --git a/blockchains/ethereum/assets/0xaA2529228a3BB2434939a92Dea21aC736dF125ce/info.json b/blockchains/ethereum/assets/0xaA2529228a3BB2434939a92Dea21aC736dF125ce/info.json new file mode 100644 index 00000000..5a08892b --- /dev/null +++ b/blockchains/ethereum/assets/0xaA2529228a3BB2434939a92Dea21aC736dF125ce/info.json @@ -0,0 +1,11 @@ +{ + "name": "World currency conference coin", + "symbol": "WCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaA2529228a3BB2434939a92Dea21aC736dF125ce", + "status": "abandoned", + "id": "0xaA2529228a3BB2434939a92Dea21aC736dF125ce" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaA2529228a3BB2434939a92Dea21aC736dF125ce/logo.png b/blockchains/ethereum/assets/0xaA2529228a3BB2434939a92Dea21aC736dF125ce/logo.png new file mode 100644 index 00000000..8cc8b220 Binary files /dev/null and b/blockchains/ethereum/assets/0xaA2529228a3BB2434939a92Dea21aC736dF125ce/logo.png differ diff --git a/blockchains/ethereum/assets/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F/info.json b/blockchains/ethereum/assets/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F/info.json new file mode 100644 index 00000000..f577c908 --- /dev/null +++ b/blockchains/ethereum/assets/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trace Token", + "symbol": "TRAC", + "type": "ERC20", + "decimals": 18, + "description": "OriginTrail provides a helpful protocol solution to the problem of maintaining trust among all players involved in bringing a product to market by making the “chain” in “supply chain” more literal. Using blockchain technology, OriginTrail can append immutable data to products as they take each step along the supply route.", + "website": "https://origintrail.io/", + "explorer": "https://etherscan.io/token/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F", + "status": "active", + "id": "0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F/logo.png b/blockchains/ethereum/assets/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F/logo.png new file mode 100755 index 00000000..49bab918 Binary files /dev/null and b/blockchains/ethereum/assets/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F/logo.png differ diff --git a/blockchains/ethereum/assets/0xaA8330FB2B4D5D07ABFE7A72262752a8505C6B37/info.json b/blockchains/ethereum/assets/0xaA8330FB2B4D5D07ABFE7A72262752a8505C6B37/info.json new file mode 100644 index 00000000..5310d694 --- /dev/null +++ b/blockchains/ethereum/assets/0xaA8330FB2B4D5D07ABFE7A72262752a8505C6B37/info.json @@ -0,0 +1,21 @@ +{ + "name": "Polka City", + "type": "ERC20", + "symbol": "POLC", + "decimals": 18, + "website": "https://www.polkacity.io", + "description": "PolkaCity is a unique fully contract-based metaverse project which combines NFT, DeFi and gaming worlds!", + "explorer": "https://etherscan.io/token/0xaa8330fb2b4d5d07abfe7a72262752a8505c6b37", + "status": "active", + "id": "0xaA8330FB2B4D5D07ABFE7A72262752a8505C6B37", + "links": [ + { + "name": "x", + "url": "https://x.com/PolkaCity" + }, + { + "name": "telegram", + "url": "https://t.me/Polkacity" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaA8330FB2B4D5D07ABFE7A72262752a8505C6B37/logo.png b/blockchains/ethereum/assets/0xaA8330FB2B4D5D07ABFE7A72262752a8505C6B37/logo.png new file mode 100644 index 00000000..5380c730 Binary files /dev/null and b/blockchains/ethereum/assets/0xaA8330FB2B4D5D07ABFE7A72262752a8505C6B37/logo.png differ diff --git a/blockchains/ethereum/assets/0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a/info.json b/blockchains/ethereum/assets/0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a/info.json new file mode 100644 index 00000000..43d1cab0 --- /dev/null +++ b/blockchains/ethereum/assets/0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Monolith TKN", + "symbol": "TKN", + "type": "ERC20", + "decimals": 8, + "description": "Monolith is an Ethereum-powered solution allowing users to spend ETH and ERC-20 in real-life, the way users are used to: with a debit card accepted anywhere.", + "website": "https://monolith.xyz", + "explorer": "https://etherscan.io/token/0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a", + "status": "active", + "id": "0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a/logo.png b/blockchains/ethereum/assets/0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a/logo.png new file mode 100644 index 00000000..2e843802 Binary files /dev/null and b/blockchains/ethereum/assets/0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a/logo.png differ diff --git a/blockchains/ethereum/assets/0xaAcC1c5AF6d46A374428bEAECf90948EC5322eA3/info.json b/blockchains/ethereum/assets/0xaAcC1c5AF6d46A374428bEAECf90948EC5322eA3/info.json new file mode 100644 index 00000000..25bed956 --- /dev/null +++ b/blockchains/ethereum/assets/0xaAcC1c5AF6d46A374428bEAECf90948EC5322eA3/info.json @@ -0,0 +1,11 @@ +{ + "name": "1irst", + "symbol": "FST", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaAcC1c5AF6d46A374428bEAECf90948EC5322eA3", + "status": "abandoned", + "id": "0xaAcC1c5AF6d46A374428bEAECf90948EC5322eA3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaAcC1c5AF6d46A374428bEAECf90948EC5322eA3/logo.png b/blockchains/ethereum/assets/0xaAcC1c5AF6d46A374428bEAECf90948EC5322eA3/logo.png new file mode 100644 index 00000000..3472f6c4 Binary files /dev/null and b/blockchains/ethereum/assets/0xaAcC1c5AF6d46A374428bEAECf90948EC5322eA3/logo.png differ diff --git a/blockchains/ethereum/assets/0xaB02fc332e9278eBCbbC6B4a8038050c01D15F69/info.json b/blockchains/ethereum/assets/0xaB02fc332e9278eBCbbC6B4a8038050c01D15F69/info.json new file mode 100644 index 00000000..91ccd847 --- /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 00000000..a181e631 Binary files /dev/null and b/blockchains/ethereum/assets/0xaB02fc332e9278eBCbbC6B4a8038050c01D15F69/logo.png differ diff --git a/blockchains/ethereum/assets/0xaB2282E27533749d7883E24F82dc8DFa2B3e3C85/info.json b/blockchains/ethereum/assets/0xaB2282E27533749d7883E24F82dc8DFa2B3e3C85/info.json new file mode 100644 index 00000000..bdf0f396 --- /dev/null +++ b/blockchains/ethereum/assets/0xaB2282E27533749d7883E24F82dc8DFa2B3e3C85/info.json @@ -0,0 +1,11 @@ +{ + "name": "STELLAR CLASSIC", + "symbol": "XLMX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaB2282E27533749d7883E24F82dc8DFa2B3e3C85", + "status": "abandoned", + "id": "0xaB2282E27533749d7883E24F82dc8DFa2B3e3C85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaB2282E27533749d7883E24F82dc8DFa2B3e3C85/logo.png b/blockchains/ethereum/assets/0xaB2282E27533749d7883E24F82dc8DFa2B3e3C85/logo.png new file mode 100755 index 00000000..bfe28294 Binary files /dev/null and b/blockchains/ethereum/assets/0xaB2282E27533749d7883E24F82dc8DFa2B3e3C85/logo.png differ diff --git a/blockchains/ethereum/assets/0xaBbBB6447B68ffD6141DA77C18c7B5876eD6c5ab/info.json b/blockchains/ethereum/assets/0xaBbBB6447B68ffD6141DA77C18c7B5876eD6c5ab/info.json new file mode 100644 index 00000000..df92aaf7 --- /dev/null +++ b/blockchains/ethereum/assets/0xaBbBB6447B68ffD6141DA77C18c7B5876eD6c5ab/info.json @@ -0,0 +1,11 @@ +{ + "name": "DATx", + "symbol": "DATx", + "type": "ERC20", + "decimals": 18, + "description": "DATx (DATX) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.datx.co/#home", + "explorer": "https://etherscan.io/token/0xaBbBB6447B68ffD6141DA77C18c7B5876eD6c5ab", + "status": "active", + "id": "0xaBbBB6447B68ffD6141DA77C18c7B5876eD6c5ab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaBbBB6447B68ffD6141DA77C18c7B5876eD6c5ab/logo.png b/blockchains/ethereum/assets/0xaBbBB6447B68ffD6141DA77C18c7B5876eD6c5ab/logo.png new file mode 100644 index 00000000..f2e1a90a Binary files /dev/null and b/blockchains/ethereum/assets/0xaBbBB6447B68ffD6141DA77C18c7B5876eD6c5ab/logo.png differ diff --git a/blockchains/ethereum/assets/0xaBe89ba71e9Cd504c7EE22B018908B76213Dc2aB/info.json b/blockchains/ethereum/assets/0xaBe89ba71e9Cd504c7EE22B018908B76213Dc2aB/info.json new file mode 100644 index 00000000..0e010eb5 --- /dev/null +++ b/blockchains/ethereum/assets/0xaBe89ba71e9Cd504c7EE22B018908B76213Dc2aB/info.json @@ -0,0 +1,11 @@ +{ + "name": "COFC Cash", + "symbol": "COFC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaBe89ba71e9Cd504c7EE22B018908B76213Dc2aB", + "status": "abandoned", + "id": "0xaBe89ba71e9Cd504c7EE22B018908B76213Dc2aB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaBe89ba71e9Cd504c7EE22B018908B76213Dc2aB/logo.png b/blockchains/ethereum/assets/0xaBe89ba71e9Cd504c7EE22B018908B76213Dc2aB/logo.png new file mode 100644 index 00000000..5f680912 Binary files /dev/null and b/blockchains/ethereum/assets/0xaBe89ba71e9Cd504c7EE22B018908B76213Dc2aB/logo.png differ diff --git a/blockchains/ethereum/assets/0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0/info.json b/blockchains/ethereum/assets/0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0/info.json new file mode 100644 index 00000000..4bc881a3 --- /dev/null +++ b/blockchains/ethereum/assets/0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0/info.json @@ -0,0 +1,33 @@ +{ + "name": "Crowns", + "type": "ERC20", + "symbol": "CWS", + "decimals": 18, + "website": "https://www.seascape.network", + "description": "Crowns are the official token of the Seascape Network. They are designed to reward all key stakeholders within the network. The Seascape Network is an incentivized ecosystem consisting of gamers, developers, and influencers with the purpose of bringing DeFi gaming to a broader userbase.", + "explorer": "https://etherscan.io/token/0xac0104cca91d167873b8601d2e71eb3d4d8c33e0", + "status": "active", + "id": "0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0", + "links": [ + { + "name": "github", + "url": "https://github.com/blocklords/seascape-smartcontracts" + }, + { + "name": "x", + "url": "https://x.com/SeascapeNetwork" + }, + { + "name": "telegram", + "url": "https://t.me/seascapenetwork" + }, + { + "name": "discord", + "url": "https://discord.com/invite/qG2Vynh" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SeascapeNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0/logo.png b/blockchains/ethereum/assets/0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0/logo.png new file mode 100644 index 00000000..145f5293 Binary files /dev/null and b/blockchains/ethereum/assets/0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0/logo.png differ diff --git a/blockchains/ethereum/assets/0xaC0741127CAC11E4455C7943b654bcCeD7FDD5A4/info.json b/blockchains/ethereum/assets/0xaC0741127CAC11E4455C7943b654bcCeD7FDD5A4/info.json new file mode 100644 index 00000000..ed026d29 --- /dev/null +++ b/blockchains/ethereum/assets/0xaC0741127CAC11E4455C7943b654bcCeD7FDD5A4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ejoy Coin", + "symbol": "EJOY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaC0741127CAC11E4455C7943b654bcCeD7FDD5A4", + "status": "abandoned", + "id": "0xaC0741127CAC11E4455C7943b654bcCeD7FDD5A4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaC0741127CAC11E4455C7943b654bcCeD7FDD5A4/logo.png b/blockchains/ethereum/assets/0xaC0741127CAC11E4455C7943b654bcCeD7FDD5A4/logo.png new file mode 100755 index 00000000..202852ca Binary files /dev/null and b/blockchains/ethereum/assets/0xaC0741127CAC11E4455C7943b654bcCeD7FDD5A4/logo.png differ diff --git a/blockchains/ethereum/assets/0xaC37c20C1d0E5285035e056101a64e263Ff94a41/info.json b/blockchains/ethereum/assets/0xaC37c20C1d0E5285035e056101a64e263Ff94a41/info.json new file mode 100644 index 00000000..92c8932b --- /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 00000000..61b11abb Binary files /dev/null and b/blockchains/ethereum/assets/0xaC37c20C1d0E5285035e056101a64e263Ff94a41/logo.png differ diff --git a/blockchains/ethereum/assets/0xaC6Df26a590F08dcC95D5a4705ae8abbc88509Ef/info.json b/blockchains/ethereum/assets/0xaC6Df26a590F08dcC95D5a4705ae8abbc88509Ef/info.json new file mode 100644 index 00000000..955863e4 --- /dev/null +++ b/blockchains/ethereum/assets/0xaC6Df26a590F08dcC95D5a4705ae8abbc88509Ef/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave ENJ", + "symbol": "aENJ", + "type": "ERC20", + "decimals": 18, + "description": "Aave ENJ is an interest bearing token pegged 1:1 to the underlying ENJ deposited in Aave. aENJ accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xaC6Df26a590F08dcC95D5a4705ae8abbc88509Ef", + "status": "active", + "id": "0xaC6Df26a590F08dcC95D5a4705ae8abbc88509Ef" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaC6Df26a590F08dcC95D5a4705ae8abbc88509Ef/logo.png b/blockchains/ethereum/assets/0xaC6Df26a590F08dcC95D5a4705ae8abbc88509Ef/logo.png new file mode 100644 index 00000000..a2c47e09 Binary files /dev/null and b/blockchains/ethereum/assets/0xaC6Df26a590F08dcC95D5a4705ae8abbc88509Ef/logo.png differ diff --git a/blockchains/ethereum/assets/0xaC838aEe2F650A6B970ecEa56d4651653c1f84A1/info.json b/blockchains/ethereum/assets/0xaC838aEe2F650A6B970ecEa56d4651653c1f84A1/info.json new file mode 100644 index 00000000..9cbba14d --- /dev/null +++ b/blockchains/ethereum/assets/0xaC838aEe2F650A6B970ecEa56d4651653c1f84A1/info.json @@ -0,0 +1,11 @@ +{ + "name": "ClearCoin", + "symbol": "CLR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaC838aEe2F650A6B970ecEa56d4651653c1f84A1", + "status": "abandoned", + "id": "0xaC838aEe2F650A6B970ecEa56d4651653c1f84A1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaC838aEe2F650A6B970ecEa56d4651653c1f84A1/logo.png b/blockchains/ethereum/assets/0xaC838aEe2F650A6B970ecEa56d4651653c1f84A1/logo.png new file mode 100755 index 00000000..1364cb4e Binary files /dev/null and b/blockchains/ethereum/assets/0xaC838aEe2F650A6B970ecEa56d4651653c1f84A1/logo.png differ diff --git a/blockchains/ethereum/assets/0xaC9749c854b31bBa3B3e71B30FDd7AEa4fCC0db9/info.json b/blockchains/ethereum/assets/0xaC9749c854b31bBa3B3e71B30FDd7AEa4fCC0db9/info.json new file mode 100644 index 00000000..86b5dbbe --- /dev/null +++ b/blockchains/ethereum/assets/0xaC9749c854b31bBa3B3e71B30FDd7AEa4fCC0db9/info.json @@ -0,0 +1,11 @@ +{ + "name": "FightBackCoin", + "symbol": "FBC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://fightbackcoin.com/", + "explorer": "https://etherscan.io/token/0xaC9749c854b31bBa3B3e71B30FDd7AEa4fCC0db9", + "status": "abandoned", + "id": "0xaC9749c854b31bBa3B3e71B30FDd7AEa4fCC0db9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaC9749c854b31bBa3B3e71B30FDd7AEa4fCC0db9/logo.png b/blockchains/ethereum/assets/0xaC9749c854b31bBa3B3e71B30FDd7AEa4fCC0db9/logo.png new file mode 100644 index 00000000..ae89302a Binary files /dev/null and b/blockchains/ethereum/assets/0xaC9749c854b31bBa3B3e71B30FDd7AEa4fCC0db9/logo.png differ diff --git a/blockchains/ethereum/assets/0xaC9Bb427953aC7FDDC562ADcA86CF42D988047Fd/info.json b/blockchains/ethereum/assets/0xaC9Bb427953aC7FDDC562ADcA86CF42D988047Fd/info.json new file mode 100644 index 00000000..f21bcb79 --- /dev/null +++ b/blockchains/ethereum/assets/0xaC9Bb427953aC7FDDC562ADcA86CF42D988047Fd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Scatter.cx", + "symbol": "STT", + "type": "ERC20", + "decimals": 18, + "description": "An experimental ERC-20 token designed to reach as many wallets as possible. Spread Scatter Token to earn STT with every token transaction. The more ETH addresses you infect with STT the more you can earn. A novel method of minting and token distribution.", + "website": "https://scatter.cx/", + "explorer": "https://etherscan.io/token/0xaC9Bb427953aC7FDDC562ADcA86CF42D988047Fd", + "status": "active", + "id": "0xaC9Bb427953aC7FDDC562ADcA86CF42D988047Fd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaC9Bb427953aC7FDDC562ADcA86CF42D988047Fd/logo.png b/blockchains/ethereum/assets/0xaC9Bb427953aC7FDDC562ADcA86CF42D988047Fd/logo.png new file mode 100644 index 00000000..1896b5da Binary files /dev/null and b/blockchains/ethereum/assets/0xaC9Bb427953aC7FDDC562ADcA86CF42D988047Fd/logo.png differ diff --git a/blockchains/ethereum/assets/0xaCf3FECAA787F268351A86409C3bD3b96Ef924fb/info.json b/blockchains/ethereum/assets/0xaCf3FECAA787F268351A86409C3bD3b96Ef924fb/info.json new file mode 100644 index 00000000..dcb7118e --- /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 00000000..2e8d3686 Binary files /dev/null and b/blockchains/ethereum/assets/0xaCf3FECAA787F268351A86409C3bD3b96Ef924fb/logo.png differ diff --git a/blockchains/ethereum/assets/0xaCf5C0101cbBe8476E87c652E0bEF33684Cc94D6/info.json b/blockchains/ethereum/assets/0xaCf5C0101cbBe8476E87c652E0bEF33684Cc94D6/info.json new file mode 100644 index 00000000..9bf6e2a1 --- /dev/null +++ b/blockchains/ethereum/assets/0xaCf5C0101cbBe8476E87c652E0bEF33684Cc94D6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Synth sETH", + "symbol": "sETH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaCf5C0101cbBe8476E87c652E0bEF33684Cc94D6", + "status": "abandoned", + "id": "0xaCf5C0101cbBe8476E87c652E0bEF33684Cc94D6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaCf5C0101cbBe8476E87c652E0bEF33684Cc94D6/logo.png b/blockchains/ethereum/assets/0xaCf5C0101cbBe8476E87c652E0bEF33684Cc94D6/logo.png new file mode 100644 index 00000000..efebce98 Binary files /dev/null and b/blockchains/ethereum/assets/0xaCf5C0101cbBe8476E87c652E0bEF33684Cc94D6/logo.png differ diff --git a/blockchains/ethereum/assets/0xaD1741e65cc2a5da47cA6a844E2774bd08c3DB14/info.json b/blockchains/ethereum/assets/0xaD1741e65cc2a5da47cA6a844E2774bd08c3DB14/info.json new file mode 100644 index 00000000..f6582107 --- /dev/null +++ b/blockchains/ethereum/assets/0xaD1741e65cc2a5da47cA6a844E2774bd08c3DB14/info.json @@ -0,0 +1,11 @@ +{ + "name": "PIET Token", + "symbol": "PIET", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaD1741e65cc2a5da47cA6a844E2774bd08c3DB14", + "status": "abandoned", + "id": "0xaD1741e65cc2a5da47cA6a844E2774bd08c3DB14" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaD1741e65cc2a5da47cA6a844E2774bd08c3DB14/logo.png b/blockchains/ethereum/assets/0xaD1741e65cc2a5da47cA6a844E2774bd08c3DB14/logo.png new file mode 100644 index 00000000..8327684e Binary files /dev/null and b/blockchains/ethereum/assets/0xaD1741e65cc2a5da47cA6a844E2774bd08c3DB14/logo.png differ diff --git a/blockchains/ethereum/assets/0xaD22f63404f7305e4713CcBd4F296f34770513f4/info.json b/blockchains/ethereum/assets/0xaD22f63404f7305e4713CcBd4F296f34770513f4/info.json new file mode 100644 index 00000000..4a420f9e --- /dev/null +++ b/blockchains/ethereum/assets/0xaD22f63404f7305e4713CcBd4F296f34770513f4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Atomic Wallet Token", + "symbol": "AWC", + "type": "ERC20", + "decimals": 8, + "description": "Atomic describes itself as a non-custodial decentralized wallet to manage, exchange, and buy 300+ cryptocurrencies in a single interface. AWC token holders receive benefits such as staking, discounts on exchange services, extra features for trading desks, affiliate and bounty rewards, and dedicated support. It claims to be the first wallet to have implemented cross chain Atomic Swaps.", + "website": "https://atomicwallet.io/", + "explorer": "https://etherscan.io/token/0xaD22f63404f7305e4713CcBd4F296f34770513f4", + "status": "active", + "id": "0xaD22f63404f7305e4713CcBd4F296f34770513f4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaD22f63404f7305e4713CcBd4F296f34770513f4/logo.png b/blockchains/ethereum/assets/0xaD22f63404f7305e4713CcBd4F296f34770513f4/logo.png new file mode 100644 index 00000000..0d2a8ce8 Binary files /dev/null and b/blockchains/ethereum/assets/0xaD22f63404f7305e4713CcBd4F296f34770513f4/logo.png differ diff --git a/blockchains/ethereum/assets/0xaD2aa3C57570AD9811bA8Ee90316f9C73F78035A/info.json b/blockchains/ethereum/assets/0xaD2aa3C57570AD9811bA8Ee90316f9C73F78035A/info.json new file mode 100644 index 00000000..2408f859 --- /dev/null +++ b/blockchains/ethereum/assets/0xaD2aa3C57570AD9811bA8Ee90316f9C73F78035A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Casino Land Network", + "symbol": "CLN", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaD2aa3C57570AD9811bA8Ee90316f9C73F78035A", + "status": "abandoned", + "id": "0xaD2aa3C57570AD9811bA8Ee90316f9C73F78035A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaD2aa3C57570AD9811bA8Ee90316f9C73F78035A/logo.png b/blockchains/ethereum/assets/0xaD2aa3C57570AD9811bA8Ee90316f9C73F78035A/logo.png new file mode 100644 index 00000000..10824da9 Binary files /dev/null and b/blockchains/ethereum/assets/0xaD2aa3C57570AD9811bA8Ee90316f9C73F78035A/logo.png differ diff --git a/blockchains/ethereum/assets/0xaD55aebc9b8c03FC43cd9f62260391c13c23e7c0/info.json b/blockchains/ethereum/assets/0xaD55aebc9b8c03FC43cd9f62260391c13c23e7c0/info.json new file mode 100644 index 00000000..47295c03 --- /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 00000000..e2a52a1b Binary files /dev/null and b/blockchains/ethereum/assets/0xaD55aebc9b8c03FC43cd9f62260391c13c23e7c0/logo.png differ diff --git a/blockchains/ethereum/assets/0xaD5Fe5B0B8eC8fF4565204990E4405B2Da117d8e/info.json b/blockchains/ethereum/assets/0xaD5Fe5B0B8eC8fF4565204990E4405B2Da117d8e/info.json new file mode 100644 index 00000000..a221d2af --- /dev/null +++ b/blockchains/ethereum/assets/0xaD5Fe5B0B8eC8fF4565204990E4405B2Da117d8e/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRONCLASSIC", + "symbol": "TRXC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://www.tronclassic.xyz/", + "explorer": "https://etherscan.io/token/0xaD5Fe5B0B8eC8fF4565204990E4405B2Da117d8e", + "status": "abandoned", + "id": "0xaD5Fe5B0B8eC8fF4565204990E4405B2Da117d8e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaD5Fe5B0B8eC8fF4565204990E4405B2Da117d8e/logo.png b/blockchains/ethereum/assets/0xaD5Fe5B0B8eC8fF4565204990E4405B2Da117d8e/logo.png new file mode 100644 index 00000000..ae288872 Binary files /dev/null and b/blockchains/ethereum/assets/0xaD5Fe5B0B8eC8fF4565204990E4405B2Da117d8e/logo.png differ diff --git a/blockchains/ethereum/assets/0xaD6714bd97CBBd29788f8838Bc865ee71b843Eb8/info.json b/blockchains/ethereum/assets/0xaD6714bd97CBBd29788f8838Bc865ee71b843Eb8/info.json new file mode 100644 index 00000000..67d28aa3 --- /dev/null +++ b/blockchains/ethereum/assets/0xaD6714bd97CBBd29788f8838Bc865ee71b843Eb8/info.json @@ -0,0 +1,11 @@ +{ + "name": "HODL Bucks", + "symbol": "HDLB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaD6714bd97CBBd29788f8838Bc865ee71b843Eb8", + "status": "abandoned", + "id": "0xaD6714bd97CBBd29788f8838Bc865ee71b843Eb8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaD6714bd97CBBd29788f8838Bc865ee71b843Eb8/logo.png b/blockchains/ethereum/assets/0xaD6714bd97CBBd29788f8838Bc865ee71b843Eb8/logo.png new file mode 100644 index 00000000..e9d8eab2 Binary files /dev/null and b/blockchains/ethereum/assets/0xaD6714bd97CBBd29788f8838Bc865ee71b843Eb8/logo.png differ diff --git a/blockchains/ethereum/assets/0xaD9355F782c6Ec75F134B93304b8F9a691a4432a/info.json b/blockchains/ethereum/assets/0xaD9355F782c6Ec75F134B93304b8F9a691a4432a/info.json new file mode 100644 index 00000000..3c1a3158 --- /dev/null +++ b/blockchains/ethereum/assets/0xaD9355F782c6Ec75F134B93304b8F9a691a4432a/info.json @@ -0,0 +1,11 @@ +{ + "name": "TERASU", + "symbol": "TRU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaD9355F782c6Ec75F134B93304b8F9a691a4432a", + "status": "active", + "id": "0xaD9355F782c6Ec75F134B93304b8F9a691a4432a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaD9355F782c6Ec75F134B93304b8F9a691a4432a/logo.png b/blockchains/ethereum/assets/0xaD9355F782c6Ec75F134B93304b8F9a691a4432a/logo.png new file mode 100644 index 00000000..c971638a Binary files /dev/null and b/blockchains/ethereum/assets/0xaD9355F782c6Ec75F134B93304b8F9a691a4432a/logo.png differ diff --git a/blockchains/ethereum/assets/0xaDA62f7CCd6af6cAcff04ACCBC4f56f3D4FFd4Ef/info.json b/blockchains/ethereum/assets/0xaDA62f7CCd6af6cAcff04ACCBC4f56f3D4FFd4Ef/info.json new file mode 100644 index 00000000..5bd2478a --- /dev/null +++ b/blockchains/ethereum/assets/0xaDA62f7CCd6af6cAcff04ACCBC4f56f3D4FFd4Ef/info.json @@ -0,0 +1,11 @@ +{ + "name": "PlayFuel", + "symbol": "PLF", + "type": "ERC20", + "decimals": 18, + "description": "Our vision-focus is tailoring a breakthrough solutionsin the design and creation of blockchain games and NFT based assets.", + "website": "https://playfuel.io", + "explorer": "https://etherscan.io/token/0xaDA62f7CCd6af6cAcff04ACCBC4f56f3D4FFd4Ef", + "status": "active", + "id": "0xaDA62f7CCd6af6cAcff04ACCBC4f56f3D4FFd4Ef" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaDA62f7CCd6af6cAcff04ACCBC4f56f3D4FFd4Ef/logo.png b/blockchains/ethereum/assets/0xaDA62f7CCd6af6cAcff04ACCBC4f56f3D4FFd4Ef/logo.png new file mode 100644 index 00000000..4a0b7215 Binary files /dev/null and b/blockchains/ethereum/assets/0xaDA62f7CCd6af6cAcff04ACCBC4f56f3D4FFd4Ef/logo.png differ diff --git a/blockchains/ethereum/assets/0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0/info.json b/blockchains/ethereum/assets/0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0/info.json new file mode 100644 index 00000000..5eb3ac5e --- /dev/null +++ b/blockchains/ethereum/assets/0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0/info.json @@ -0,0 +1,37 @@ +{ + "name": "UniCrypt", + "website": "https://unicrypt.network", + "description": "UNCX is the governance token of the UniCrypt platform.", + "explorer": "https://etherscan.io/token/0xadb2437e6f65682b85f814fbc12fec0508a7b1d0", + "type": "ERC20", + "symbol": "UNCX", + "decimals": 18, + "status": "active", + "id": "0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0", + "links": [ + { + "name": "x", + "url": "https://x.com/UNCX_token" + }, + { + "name": "medium", + "url": "https://unicrypt.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/uncx_token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uncx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/unicrypt" + }, + { + "name": "docs", + "url": "https://docs.unicrypt.network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0/logo.png b/blockchains/ethereum/assets/0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0/logo.png new file mode 100644 index 00000000..7dd5b728 Binary files /dev/null and b/blockchains/ethereum/assets/0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0/logo.png differ diff --git a/blockchains/ethereum/assets/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c/info.json b/blockchains/ethereum/assets/0xaDDfd192daA492b772EA5c180e79570dEC92fF5c/info.json new file mode 100644 index 00000000..ee41e957 --- /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/0xaDd171460C3c015CA756Ef52A629d926423AdefE/info.json b/blockchains/ethereum/assets/0xaDd171460C3c015CA756Ef52A629d926423AdefE/info.json new file mode 100644 index 00000000..9f3ba545 --- /dev/null +++ b/blockchains/ethereum/assets/0xaDd171460C3c015CA756Ef52A629d926423AdefE/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg11000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaDd171460C3c015CA756Ef52A629d926423AdefE", + "status": "abandoned", + "id": "0xaDd171460C3c015CA756Ef52A629d926423AdefE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaDd171460C3c015CA756Ef52A629d926423AdefE/logo.png b/blockchains/ethereum/assets/0xaDd171460C3c015CA756Ef52A629d926423AdefE/logo.png new file mode 100644 index 00000000..c8ecfbad Binary files /dev/null and b/blockchains/ethereum/assets/0xaDd171460C3c015CA756Ef52A629d926423AdefE/logo.png differ diff --git a/blockchains/ethereum/assets/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12/info.json b/blockchains/ethereum/assets/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12/info.json new file mode 100644 index 00000000..da3968be --- /dev/null +++ b/blockchains/ethereum/assets/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12/info.json @@ -0,0 +1,25 @@ +{ + "name": "TemDAO", + "symbol": "TEM", + "type": "ERC20", + "decimals": 18, + "description": "TemDAO, a community collectively funding and supporting world heritage protection to develop, governed by $TEM hodlers.", + "website": "https://temdao.io/", + "explorer": "https://etherscan.io/token/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12", + "status": "active", + "id": "0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12", + "links": [ + { + "name": "x", + "url": "https://x.com/temdao_info?s=21&t=OuJAK-G0i4s64-_FgcZ6MQ" + }, + { + "name": "telegram", + "url": "https://t.me/RcinmSLkbz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/temdao/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12/logo.png b/blockchains/ethereum/assets/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12/logo.png new file mode 100644 index 00000000..d351ad85 Binary files /dev/null and b/blockchains/ethereum/assets/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12/logo.png differ diff --git a/blockchains/ethereum/assets/0xaE4f56F072c34C0a65B3ae3E4DB797D831439D93/info.json b/blockchains/ethereum/assets/0xaE4f56F072c34C0a65B3ae3E4DB797D831439D93/info.json new file mode 100644 index 00000000..f094c568 --- /dev/null +++ b/blockchains/ethereum/assets/0xaE4f56F072c34C0a65B3ae3E4DB797D831439D93/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gimli Token", + "symbol": "GIM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://gimli.io/", + "explorer": "https://etherscan.io/token/0xaE4f56F072c34C0a65B3ae3E4DB797D831439D93", + "status": "abandoned", + "id": "0xaE4f56F072c34C0a65B3ae3E4DB797D831439D93" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaE4f56F072c34C0a65B3ae3E4DB797D831439D93/logo.png b/blockchains/ethereum/assets/0xaE4f56F072c34C0a65B3ae3E4DB797D831439D93/logo.png new file mode 100755 index 00000000..053ea0ca Binary files /dev/null and b/blockchains/ethereum/assets/0xaE4f56F072c34C0a65B3ae3E4DB797D831439D93/logo.png differ diff --git a/blockchains/ethereum/assets/0xaE616e72D3d89e847f74E8ace41Ca68bbF56af79/info.json b/blockchains/ethereum/assets/0xaE616e72D3d89e847f74E8ace41Ca68bbF56af79/info.json new file mode 100644 index 00000000..e078f42f --- /dev/null +++ b/blockchains/ethereum/assets/0xaE616e72D3d89e847f74E8ace41Ca68bbF56af79/info.json @@ -0,0 +1,11 @@ +{ + "name": "Good Karma", + "symbol": "∞", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaE616e72D3d89e847f74E8ace41Ca68bbF56af79", + "status": "abandoned", + "id": "0xaE616e72D3d89e847f74E8ace41Ca68bbF56af79" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaE616e72D3d89e847f74E8ace41Ca68bbF56af79/logo.png b/blockchains/ethereum/assets/0xaE616e72D3d89e847f74E8ace41Ca68bbF56af79/logo.png new file mode 100644 index 00000000..4ac705bc Binary files /dev/null and b/blockchains/ethereum/assets/0xaE616e72D3d89e847f74E8ace41Ca68bbF56af79/logo.png differ diff --git a/blockchains/ethereum/assets/0xaE697F994Fc5eBC000F8e22EbFfeE04612f98A0d/info.json b/blockchains/ethereum/assets/0xaE697F994Fc5eBC000F8e22EbFfeE04612f98A0d/info.json new file mode 100644 index 00000000..9371c037 --- /dev/null +++ b/blockchains/ethereum/assets/0xaE697F994Fc5eBC000F8e22EbFfeE04612f98A0d/info.json @@ -0,0 +1,11 @@ +{ + "name": "LGCY Network", + "symbol": "LGCY", + "type": "ERC20", + "decimals": 18, + "description": "LGCY (Legacy) Network is a dApp based blockchain running on the Libertas Protocol to engage community participation.", + "website": "https://lgcy.network/", + "explorer": "https://etherscan.io/token/0xaE697F994Fc5eBC000F8e22EbFfeE04612f98A0d", + "status": "active", + "id": "0xaE697F994Fc5eBC000F8e22EbFfeE04612f98A0d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaE697F994Fc5eBC000F8e22EbFfeE04612f98A0d/logo.png b/blockchains/ethereum/assets/0xaE697F994Fc5eBC000F8e22EbFfeE04612f98A0d/logo.png new file mode 100644 index 00000000..fa8e9754 Binary files /dev/null and b/blockchains/ethereum/assets/0xaE697F994Fc5eBC000F8e22EbFfeE04612f98A0d/logo.png differ diff --git a/blockchains/ethereum/assets/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B/info.json b/blockchains/ethereum/assets/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B/info.json new file mode 100644 index 00000000..f4c6b68f --- /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 00000000..7054bba0 Binary files /dev/null and b/blockchains/ethereum/assets/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B/logo.png differ diff --git a/blockchains/ethereum/assets/0xaE73B38d1c9A8b274127ec30160a4927C4d71824/info.json b/blockchains/ethereum/assets/0xaE73B38d1c9A8b274127ec30160a4927C4d71824/info.json new file mode 100644 index 00000000..dc2daaf5 --- /dev/null +++ b/blockchains/ethereum/assets/0xaE73B38d1c9A8b274127ec30160a4927C4d71824/info.json @@ -0,0 +1,11 @@ +{ + "name": "STK Token", + "symbol": "STK", + "type": "ERC20", + "decimals": 18, + "description": "STK (STK) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://stktoken.com", + "explorer": "https://etherscan.io/token/0xaE73B38d1c9A8b274127ec30160a4927C4d71824", + "status": "active", + "id": "0xaE73B38d1c9A8b274127ec30160a4927C4d71824" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaE73B38d1c9A8b274127ec30160a4927C4d71824/logo.png b/blockchains/ethereum/assets/0xaE73B38d1c9A8b274127ec30160a4927C4d71824/logo.png new file mode 100755 index 00000000..7a57b22c Binary files /dev/null and b/blockchains/ethereum/assets/0xaE73B38d1c9A8b274127ec30160a4927C4d71824/logo.png differ diff --git a/blockchains/ethereum/assets/0xaE8488e75493B89A0E1488BF91542208C416f486/info.json b/blockchains/ethereum/assets/0xaE8488e75493B89A0E1488BF91542208C416f486/info.json new file mode 100644 index 00000000..920bf4ba --- /dev/null +++ b/blockchains/ethereum/assets/0xaE8488e75493B89A0E1488BF91542208C416f486/info.json @@ -0,0 +1,11 @@ +{ + "name": "BUZcoin", + "symbol": "BUZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://buzcoin.io/", + "explorer": "https://etherscan.io/token/0xaE8488e75493B89A0E1488BF91542208C416f486", + "status": "abandoned", + "id": "0xaE8488e75493B89A0E1488BF91542208C416f486" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaE8488e75493B89A0E1488BF91542208C416f486/logo.png b/blockchains/ethereum/assets/0xaE8488e75493B89A0E1488BF91542208C416f486/logo.png new file mode 100755 index 00000000..00c86bfa Binary files /dev/null and b/blockchains/ethereum/assets/0xaE8488e75493B89A0E1488BF91542208C416f486/logo.png differ diff --git a/blockchains/ethereum/assets/0xaEaabb69dcB0FE926B1979f0B032FCd17FD7b2E0/info.json b/blockchains/ethereum/assets/0xaEaabb69dcB0FE926B1979f0B032FCd17FD7b2E0/info.json new file mode 100644 index 00000000..fb4517cf --- /dev/null +++ b/blockchains/ethereum/assets/0xaEaabb69dcB0FE926B1979f0B032FCd17FD7b2E0/info.json @@ -0,0 +1,11 @@ +{ + "name": "CYBR - Cyber Security Ecosystem Token", + "symbol": "CYBR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://cybrtoken.io/", + "explorer": "https://etherscan.io/token/0xaEaabb69dcB0FE926B1979f0B032FCd17FD7b2E0", + "status": "abandoned", + "id": "0xaEaabb69dcB0FE926B1979f0B032FCd17FD7b2E0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaEaabb69dcB0FE926B1979f0B032FCd17FD7b2E0/logo.png b/blockchains/ethereum/assets/0xaEaabb69dcB0FE926B1979f0B032FCd17FD7b2E0/logo.png new file mode 100755 index 00000000..a2127ffe Binary files /dev/null and b/blockchains/ethereum/assets/0xaEaabb69dcB0FE926B1979f0B032FCd17FD7b2E0/logo.png differ diff --git a/blockchains/ethereum/assets/0xaEc98A708810414878c3BCDF46Aad31dEd4a4557/info.json b/blockchains/ethereum/assets/0xaEc98A708810414878c3BCDF46Aad31dEd4a4557/info.json new file mode 100644 index 00000000..b6a00eb2 --- /dev/null +++ b/blockchains/ethereum/assets/0xaEc98A708810414878c3BCDF46Aad31dEd4a4557/info.json @@ -0,0 +1,11 @@ +{ + "name": "300 Token", + "symbol": "300", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaEc98A708810414878c3BCDF46Aad31dEd4a4557", + "status": "abandoned", + "id": "0xaEc98A708810414878c3BCDF46Aad31dEd4a4557" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaEc98A708810414878c3BCDF46Aad31dEd4a4557/logo.png b/blockchains/ethereum/assets/0xaEc98A708810414878c3BCDF46Aad31dEd4a4557/logo.png new file mode 100755 index 00000000..795d2640 Binary files /dev/null and b/blockchains/ethereum/assets/0xaEc98A708810414878c3BCDF46Aad31dEd4a4557/logo.png differ diff --git a/blockchains/ethereum/assets/0xaF1250fa68D7DECD34fD75dE8742Bc03B29BD58e/info.json b/blockchains/ethereum/assets/0xaF1250fa68D7DECD34fD75dE8742Bc03B29BD58e/info.json new file mode 100644 index 00000000..d1a65629 --- /dev/null +++ b/blockchains/ethereum/assets/0xaF1250fa68D7DECD34fD75dE8742Bc03B29BD58e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Invictus Hyperion", + "symbol": "IHF", + "type": "ERC20", + "decimals": 18, + "description": "The Hyperion Fund is a closed-end blockchain-based venture capital fund.", + "website": "https://invictuscapital.com/en/hyperion", + "explorer": "https://etherscan.io/token/0xaF1250fa68D7DECD34fD75dE8742Bc03B29BD58e", + "status": "active", + "id": "0xaF1250fa68D7DECD34fD75dE8742Bc03B29BD58e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaF1250fa68D7DECD34fD75dE8742Bc03B29BD58e/logo.png b/blockchains/ethereum/assets/0xaF1250fa68D7DECD34fD75dE8742Bc03B29BD58e/logo.png new file mode 100644 index 00000000..3edc00e1 Binary files /dev/null and b/blockchains/ethereum/assets/0xaF1250fa68D7DECD34fD75dE8742Bc03B29BD58e/logo.png differ diff --git a/blockchains/ethereum/assets/0xaF179683e07d6F9A8B0FdaF0E19d7825DE1f8807/info.json b/blockchains/ethereum/assets/0xaF179683e07d6F9A8B0FdaF0E19d7825DE1f8807/info.json new file mode 100644 index 00000000..9426e3a5 --- /dev/null +++ b/blockchains/ethereum/assets/0xaF179683e07d6F9A8B0FdaF0E19d7825DE1f8807/info.json @@ -0,0 +1,11 @@ +{ + "name": "KYRRA", + "symbol": "KYR", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaF179683e07d6F9A8B0FdaF0E19d7825DE1f8807", + "status": "abandoned", + "id": "0xaF179683e07d6F9A8B0FdaF0E19d7825DE1f8807" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaF179683e07d6F9A8B0FdaF0E19d7825DE1f8807/logo.png b/blockchains/ethereum/assets/0xaF179683e07d6F9A8B0FdaF0E19d7825DE1f8807/logo.png new file mode 100644 index 00000000..774d6806 Binary files /dev/null and b/blockchains/ethereum/assets/0xaF179683e07d6F9A8B0FdaF0E19d7825DE1f8807/logo.png differ diff --git a/blockchains/ethereum/assets/0xaF3573E1E223c601340AdE1f1D52cd106B264367/info.json b/blockchains/ethereum/assets/0xaF3573E1E223c601340AdE1f1D52cd106B264367/info.json new file mode 100644 index 00000000..2f2e5172 --- /dev/null +++ b/blockchains/ethereum/assets/0xaF3573E1E223c601340AdE1f1D52cd106B264367/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trifolium Coin", + "symbol": "TRF", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaF3573E1E223c601340AdE1f1D52cd106B264367", + "status": "abandoned", + "id": "0xaF3573E1E223c601340AdE1f1D52cd106B264367" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaF3573E1E223c601340AdE1f1D52cd106B264367/logo.png b/blockchains/ethereum/assets/0xaF3573E1E223c601340AdE1f1D52cd106B264367/logo.png new file mode 100644 index 00000000..63acf79d Binary files /dev/null and b/blockchains/ethereum/assets/0xaF3573E1E223c601340AdE1f1D52cd106B264367/logo.png differ diff --git a/blockchains/ethereum/assets/0xaF4DcE16Da2877f8c9e00544c93B62Ac40631F16/info.json b/blockchains/ethereum/assets/0xaF4DcE16Da2877f8c9e00544c93B62Ac40631F16/info.json new file mode 100644 index 00000000..29653228 --- /dev/null +++ b/blockchains/ethereum/assets/0xaF4DcE16Da2877f8c9e00544c93B62Ac40631F16/info.json @@ -0,0 +1,11 @@ +{ + "name": "Monetha", + "symbol": "MTH", + "type": "ERC20", + "decimals": 5, + "description": "Pioneering the frontiers of data exchange and fraud detection.", + "website": "https://www.monetha.io", + "explorer": "https://etherscan.io/token/0xaF4DcE16Da2877f8c9e00544c93B62Ac40631F16", + "status": "active", + "id": "0xaF4DcE16Da2877f8c9e00544c93B62Ac40631F16" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaF4DcE16Da2877f8c9e00544c93B62Ac40631F16/logo.png b/blockchains/ethereum/assets/0xaF4DcE16Da2877f8c9e00544c93B62Ac40631F16/logo.png new file mode 100644 index 00000000..c89de8ee Binary files /dev/null and b/blockchains/ethereum/assets/0xaF4DcE16Da2877f8c9e00544c93B62Ac40631F16/logo.png differ diff --git a/blockchains/ethereum/assets/0xaFBeC4D65BC7b116d85107FD05d912491029Bf46/info.json b/blockchains/ethereum/assets/0xaFBeC4D65BC7b116d85107FD05d912491029Bf46/info.json new file mode 100644 index 00000000..ee299d01 --- /dev/null +++ b/blockchains/ethereum/assets/0xaFBeC4D65BC7b116d85107FD05d912491029Bf46/info.json @@ -0,0 +1,11 @@ +{ + "name": "ARBITRAGE", + "symbol": "ARB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaFBeC4D65BC7b116d85107FD05d912491029Bf46", + "status": "abandoned", + "id": "0xaFBeC4D65BC7b116d85107FD05d912491029Bf46" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaFBeC4D65BC7b116d85107FD05d912491029Bf46/logo.png b/blockchains/ethereum/assets/0xaFBeC4D65BC7b116d85107FD05d912491029Bf46/logo.png new file mode 100644 index 00000000..4485fc8f Binary files /dev/null and b/blockchains/ethereum/assets/0xaFBeC4D65BC7b116d85107FD05d912491029Bf46/logo.png differ diff --git a/blockchains/ethereum/assets/0xaFC39788c51f0c1Ff7B55317f3e70299e521Fff6/info.json b/blockchains/ethereum/assets/0xaFC39788c51f0c1Ff7B55317f3e70299e521Fff6/info.json new file mode 100644 index 00000000..3c4bd17b --- /dev/null +++ b/blockchains/ethereum/assets/0xaFC39788c51f0c1Ff7B55317f3e70299e521Fff6/info.json @@ -0,0 +1,11 @@ +{ + "name": "eBitcoinCash", + "symbol": "eBCH", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaFC39788c51f0c1Ff7B55317f3e70299e521Fff6", + "status": "abandoned", + "id": "0xaFC39788c51f0c1Ff7B55317f3e70299e521Fff6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaFC39788c51f0c1Ff7B55317f3e70299e521Fff6/logo.png b/blockchains/ethereum/assets/0xaFC39788c51f0c1Ff7B55317f3e70299e521Fff6/logo.png new file mode 100755 index 00000000..245ef8f9 Binary files /dev/null and b/blockchains/ethereum/assets/0xaFC39788c51f0c1Ff7B55317f3e70299e521Fff6/logo.png differ diff --git a/blockchains/ethereum/assets/0xaFF7d8a6E42568062b97961d9361075E38658037/info.json b/blockchains/ethereum/assets/0xaFF7d8a6E42568062b97961d9361075E38658037/info.json new file mode 100644 index 00000000..94304944 --- /dev/null +++ b/blockchains/ethereum/assets/0xaFF7d8a6E42568062b97961d9361075E38658037/info.json @@ -0,0 +1,11 @@ +{ + "name": "ORIENTUM PLUS", + "symbol": "ORTP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaFF7d8a6E42568062b97961d9361075E38658037", + "status": "abandoned", + "id": "0xaFF7d8a6E42568062b97961d9361075E38658037" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaFF7d8a6E42568062b97961d9361075E38658037/logo.png b/blockchains/ethereum/assets/0xaFF7d8a6E42568062b97961d9361075E38658037/logo.png new file mode 100644 index 00000000..03886440 Binary files /dev/null and b/blockchains/ethereum/assets/0xaFF7d8a6E42568062b97961d9361075E38658037/logo.png differ diff --git a/blockchains/ethereum/assets/0xaa26931EBbA45B69834Eb35fe3315caB4b1e97fe/info.json b/blockchains/ethereum/assets/0xaa26931EBbA45B69834Eb35fe3315caB4b1e97fe/info.json new file mode 100644 index 00000000..139ecbf4 --- /dev/null +++ b/blockchains/ethereum/assets/0xaa26931EBbA45B69834Eb35fe3315caB4b1e97fe/info.json @@ -0,0 +1,11 @@ +{ + "name": "AWARE Token", + "symbol": "AT", + "type": "ERC20", + "decimals": 8, + "description": "AWARE is a decentralized token investment-management community (TIC) aiming to make innovative assets more liquid and to serve blockchain entrepreneurs and investors across the globe.", + "website": "https://at.top/", + "explorer": "https://etherscan.io/token/0xaa26931EBbA45B69834Eb35fe3315caB4b1e97fe", + "status": "active", + "id": "0xaa26931EBbA45B69834Eb35fe3315caB4b1e97fe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaa26931EBbA45B69834Eb35fe3315caB4b1e97fe/logo.png b/blockchains/ethereum/assets/0xaa26931EBbA45B69834Eb35fe3315caB4b1e97fe/logo.png new file mode 100644 index 00000000..9b5d6427 Binary files /dev/null and b/blockchains/ethereum/assets/0xaa26931EBbA45B69834Eb35fe3315caB4b1e97fe/logo.png differ diff --git a/blockchains/ethereum/assets/0xaa67aE9BBeCb151f278bcFAc3570E7c97159d579/info.json b/blockchains/ethereum/assets/0xaa67aE9BBeCb151f278bcFAc3570E7c97159d579/info.json new file mode 100644 index 00000000..3b88ae05 --- /dev/null +++ b/blockchains/ethereum/assets/0xaa67aE9BBeCb151f278bcFAc3570E7c97159d579/info.json @@ -0,0 +1,11 @@ +{ + "name": "V-PALADINI TEST 6", + "symbol": "V", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaa67aE9BBeCb151f278bcFAc3570E7c97159d579", + "status": "abandoned", + "id": "0xaa67aE9BBeCb151f278bcFAc3570E7c97159d579" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaa67aE9BBeCb151f278bcFAc3570E7c97159d579/logo.png b/blockchains/ethereum/assets/0xaa67aE9BBeCb151f278bcFAc3570E7c97159d579/logo.png new file mode 100644 index 00000000..524681e0 Binary files /dev/null and b/blockchains/ethereum/assets/0xaa67aE9BBeCb151f278bcFAc3570E7c97159d579/logo.png differ diff --git a/blockchains/ethereum/assets/0xaa7FB1c8cE6F18d4fD4Aabb61A2193d4D441c54F/info.json b/blockchains/ethereum/assets/0xaa7FB1c8cE6F18d4fD4Aabb61A2193d4D441c54F/info.json new file mode 100644 index 00000000..8ddcd8f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xaa7FB1c8cE6F18d4fD4Aabb61A2193d4D441c54F/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShitCoin", + "symbol": "SHIT", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://shitcoin.fun/", + "explorer": "https://etherscan.io/token/0xaa7FB1c8cE6F18d4fD4Aabb61A2193d4D441c54F", + "status": "abandoned", + "id": "0xaa7FB1c8cE6F18d4fD4Aabb61A2193d4D441c54F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaa7FB1c8cE6F18d4fD4Aabb61A2193d4D441c54F/logo.png b/blockchains/ethereum/assets/0xaa7FB1c8cE6F18d4fD4Aabb61A2193d4D441c54F/logo.png new file mode 100644 index 00000000..a40e66e3 Binary files /dev/null and b/blockchains/ethereum/assets/0xaa7FB1c8cE6F18d4fD4Aabb61A2193d4D441c54F/logo.png differ diff --git a/blockchains/ethereum/assets/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18/info.json b/blockchains/ethereum/assets/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18/info.json new file mode 100644 index 00000000..16153d16 --- /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 00000000..640d73c7 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 new file mode 100644 index 00000000..56214646 --- /dev/null +++ b/blockchains/ethereum/assets/0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d/info.json @@ -0,0 +1,41 @@ +{ + "name": "Celsius", + "website": "https://celsius.network", + "description": "The Celsius Network will be the next generation of lending and borrowing for the cryptocurrency community.", + "explorer": "https://etherscan.io/token/0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d", + "type": "ERC20", + "symbol": "CEL", + "decimals": 4, + "status": "active", + "id": "0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d", + "links": [ + { + "name": "github", + "url": "https://github.com/CelsiusNetwork" + }, + { + "name": "x", + "url": "https://x.com/celsiusnetwork" + }, + { + "name": "facebook", + "url": "https://facebook.com/CelsiusNetwork" + }, + { + "name": "blog", + "url": "https://celsius.network/blog/" + }, + { + "name": "telegram", + "url": "https://t.me/CelsiusNetwork" + }, + { + "name": "whitepaper", + "url": "https://celsius.network/wp-content/uploads/2018/04/celsius_whitepaper-march21.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/celsius-degree-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d/logo.png b/blockchains/ethereum/assets/0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d/logo.png new file mode 100644 index 00000000..4f9c14d9 Binary files /dev/null and b/blockchains/ethereum/assets/0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d/logo.png differ diff --git a/blockchains/ethereum/assets/0xaaca4e6eFDd63A9116aecD31eE929D0f778Be0c0/info.json b/blockchains/ethereum/assets/0xaaca4e6eFDd63A9116aecD31eE929D0f778Be0c0/info.json new file mode 100644 index 00000000..7d2fe7fe --- /dev/null +++ b/blockchains/ethereum/assets/0xaaca4e6eFDd63A9116aecD31eE929D0f778Be0c0/info.json @@ -0,0 +1,11 @@ +{ + "name": "AgroLyte Token", + "symbol": "AGLT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaaca4e6eFDd63A9116aecD31eE929D0f778Be0c0", + "status": "abandoned", + "id": "0xaaca4e6eFDd63A9116aecD31eE929D0f778Be0c0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaaca4e6eFDd63A9116aecD31eE929D0f778Be0c0/logo.png b/blockchains/ethereum/assets/0xaaca4e6eFDd63A9116aecD31eE929D0f778Be0c0/logo.png new file mode 100644 index 00000000..d30448a0 Binary files /dev/null and b/blockchains/ethereum/assets/0xaaca4e6eFDd63A9116aecD31eE929D0f778Be0c0/logo.png differ diff --git a/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/info.json b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/info.json new file mode 100644 index 00000000..108fd870 --- /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 00000000..fb84f1e8 Binary files /dev/null and b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/logo.png differ diff --git a/blockchains/ethereum/assets/0xab09D6D45350BeC652e817859e180F59DDa77603/info.json b/blockchains/ethereum/assets/0xab09D6D45350BeC652e817859e180F59DDa77603/info.json new file mode 100644 index 00000000..479c7127 --- /dev/null +++ b/blockchains/ethereum/assets/0xab09D6D45350BeC652e817859e180F59DDa77603/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-26/30M56", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xab09D6D45350BeC652e817859e180F59DDa77603", + "status": "abandoned", + "id": "0xab09D6D45350BeC652e817859e180F59DDa77603" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xab09D6D45350BeC652e817859e180F59DDa77603/logo.png b/blockchains/ethereum/assets/0xab09D6D45350BeC652e817859e180F59DDa77603/logo.png new file mode 100644 index 00000000..129c2151 Binary files /dev/null and b/blockchains/ethereum/assets/0xab09D6D45350BeC652e817859e180F59DDa77603/logo.png differ diff --git a/blockchains/ethereum/assets/0xab0bd01101877597C1360a82f515515FEb178B9E/info.json b/blockchains/ethereum/assets/0xab0bd01101877597C1360a82f515515FEb178B9E/info.json new file mode 100644 index 00000000..b4eb2a54 --- /dev/null +++ b/blockchains/ethereum/assets/0xab0bd01101877597C1360a82f515515FEb178B9E/info.json @@ -0,0 +1,21 @@ +{ + "name": "FF", + "website": "https://babaoshu.com", + "description": "FF is a digital asset produced in the CryptoTree crypto collectible game.", + "explorer": "https://etherscan.io/token/0xab0bd01101877597C1360a82f515515FEb178B9E", + "type": "ERC20", + "symbol": "FF", + "decimals": 18, + "status": "active", + "id": "0xab0bd01101877597C1360a82f515515FEb178B9E", + "links": [ + { + "name": "github", + "url": "https://github.com/fudeshu" + }, + { + "name": "whitepaper", + "url": "https://www.babaoshu.com/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xab0bd01101877597C1360a82f515515FEb178B9E/logo.png b/blockchains/ethereum/assets/0xab0bd01101877597C1360a82f515515FEb178B9E/logo.png new file mode 100644 index 00000000..633ea0bb Binary files /dev/null and b/blockchains/ethereum/assets/0xab0bd01101877597C1360a82f515515FEb178B9E/logo.png differ diff --git a/blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/info.json b/blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/info.json new file mode 100644 index 00000000..82cad706 --- /dev/null +++ b/blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/info.json @@ -0,0 +1,41 @@ +{ + "name": "Shibnobi", + "type": "ERC20", + "symbol": "SHINJA", + "decimals": 9, + "website": "https://shibnobi.com", + "description": "SHIBNOBI is a community-driven token / platform that wants to develop a cross-chain token swap for the next generation of investors and make crypto simple and safe for everyone.", + "explorer": "https://etherscan.io/token/0xab167e816e4d76089119900e941befdfa37d6b32", + "status": "abandoned", + "id": "0xab167E816E4d76089119900e941BEfdfA37d6b32", + "links": [ + { + "name": "x", + "url": "https://x.com/Shib_nobi" + }, + { + "name": "telegram", + "url": "https://t.me/ShibnobiCommunity" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shibnobi/" + }, + { + "name": "facebook", + "url": "https://facebook.com/Shibnobi" + }, + { + "name": "medium", + "url": "https://medium.com/@Shibnobi" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Shibnobi/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shibnobi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xab5c04BBE42667610a2Da07aC98ea9FA6e4a9514/info.json b/blockchains/ethereum/assets/0xab5c04BBE42667610a2Da07aC98ea9FA6e4a9514/info.json new file mode 100644 index 00000000..5743b5c4 --- /dev/null +++ b/blockchains/ethereum/assets/0xab5c04BBE42667610a2Da07aC98ea9FA6e4a9514/info.json @@ -0,0 +1,11 @@ +{ + "name": "IZEROIUM", + "symbol": "IZER", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://izeroium.com/", + "explorer": "https://etherscan.io/token/0xab5c04BBE42667610a2Da07aC98ea9FA6e4a9514", + "status": "abandoned", + "id": "0xab5c04BBE42667610a2Da07aC98ea9FA6e4a9514" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xab5c04BBE42667610a2Da07aC98ea9FA6e4a9514/logo.png b/blockchains/ethereum/assets/0xab5c04BBE42667610a2Da07aC98ea9FA6e4a9514/logo.png new file mode 100644 index 00000000..c5456a88 Binary files /dev/null and b/blockchains/ethereum/assets/0xab5c04BBE42667610a2Da07aC98ea9FA6e4a9514/logo.png differ diff --git a/blockchains/ethereum/assets/0xab79C29008f763ba2C79414a1ae919d3BC46d664/info.json b/blockchains/ethereum/assets/0xab79C29008f763ba2C79414a1ae919d3BC46d664/info.json new file mode 100644 index 00000000..bbaec04e --- /dev/null +++ b/blockchains/ethereum/assets/0xab79C29008f763ba2C79414a1ae919d3BC46d664/info.json @@ -0,0 +1,11 @@ +{ + "name": "WCSF Token", + "symbol": "WCSF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xab79C29008f763ba2C79414a1ae919d3BC46d664", + "status": "abandoned", + "id": "0xab79C29008f763ba2C79414a1ae919d3BC46d664" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xab79C29008f763ba2C79414a1ae919d3BC46d664/logo.png b/blockchains/ethereum/assets/0xab79C29008f763ba2C79414a1ae919d3BC46d664/logo.png new file mode 100644 index 00000000..a6f7ca65 Binary files /dev/null and b/blockchains/ethereum/assets/0xab79C29008f763ba2C79414a1ae919d3BC46d664/logo.png differ diff --git a/blockchains/ethereum/assets/0xab7E084Ad30a359006C4cdb7Ba796fA79c936B33/info.json b/blockchains/ethereum/assets/0xab7E084Ad30a359006C4cdb7Ba796fA79c936B33/info.json new file mode 100644 index 00000000..3404b4cc --- /dev/null +++ b/blockchains/ethereum/assets/0xab7E084Ad30a359006C4cdb7Ba796fA79c936B33/info.json @@ -0,0 +1,11 @@ +{ + "name": "Litecointoken", + "symbol": "LTK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xab7E084Ad30a359006C4cdb7Ba796fA79c936B33", + "status": "abandoned", + "id": "0xab7E084Ad30a359006C4cdb7Ba796fA79c936B33" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xab7E084Ad30a359006C4cdb7Ba796fA79c936B33/logo.png b/blockchains/ethereum/assets/0xab7E084Ad30a359006C4cdb7Ba796fA79c936B33/logo.png new file mode 100644 index 00000000..e798218d Binary files /dev/null and b/blockchains/ethereum/assets/0xab7E084Ad30a359006C4cdb7Ba796fA79c936B33/logo.png differ diff --git a/blockchains/ethereum/assets/0xab85900CFa8a8a577fa5371cb7968aF0906B902d/info.json b/blockchains/ethereum/assets/0xab85900CFa8a8a577fa5371cb7968aF0906B902d/info.json new file mode 100644 index 00000000..255b452b --- /dev/null +++ b/blockchains/ethereum/assets/0xab85900CFa8a8a577fa5371cb7968aF0906B902d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Health, Technology & Agriculture Token", + "type": "ERC20", + "symbol": "HTA", + "decimals": 10, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0xab85900cfa8a8a577fa5371cb7968af0906b902d", + "status": "active", + "id": "0xab85900CFa8a8a577fa5371cb7968aF0906B902d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xab85900CFa8a8a577fa5371cb7968aF0906B902d/logo.png b/blockchains/ethereum/assets/0xab85900CFa8a8a577fa5371cb7968aF0906B902d/logo.png new file mode 100644 index 00000000..cc385966 Binary files /dev/null and b/blockchains/ethereum/assets/0xab85900CFa8a8a577fa5371cb7968aF0906B902d/logo.png differ diff --git a/blockchains/ethereum/assets/0xab95E915c123fdEd5BDfB6325e35ef5515F1EA69/info.json b/blockchains/ethereum/assets/0xab95E915c123fdEd5BDfB6325e35ef5515F1EA69/info.json new file mode 100644 index 00000000..b9b99c94 --- /dev/null +++ b/blockchains/ethereum/assets/0xab95E915c123fdEd5BDfB6325e35ef5515F1EA69/info.json @@ -0,0 +1,11 @@ +{ + "name": "XENON", + "symbol": "XNN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://xenon.network/", + "explorer": "https://etherscan.io/token/0xab95E915c123fdEd5BDfB6325e35ef5515F1EA69", + "status": "abandoned", + "id": "0xab95E915c123fdEd5BDfB6325e35ef5515F1EA69" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xab95E915c123fdEd5BDfB6325e35ef5515F1EA69/logo.png b/blockchains/ethereum/assets/0xab95E915c123fdEd5BDfB6325e35ef5515F1EA69/logo.png new file mode 100755 index 00000000..53dc7251 Binary files /dev/null and b/blockchains/ethereum/assets/0xab95E915c123fdEd5BDfB6325e35ef5515F1EA69/logo.png differ diff --git a/blockchains/ethereum/assets/0xabC1280A0187a2020cC675437aed400185F86Db6/info.json b/blockchains/ethereum/assets/0xabC1280A0187a2020cC675437aed400185F86Db6/info.json new file mode 100644 index 00000000..d0b83d3f --- /dev/null +++ b/blockchains/ethereum/assets/0xabC1280A0187a2020cC675437aed400185F86Db6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Smart Application Chain", + "symbol": "SAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.sachain.net/", + "explorer": "https://etherscan.io/token/0xabC1280A0187a2020cC675437aed400185F86Db6", + "status": "abandoned", + "id": "0xabC1280A0187a2020cC675437aed400185F86Db6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xabC1280A0187a2020cC675437aed400185F86Db6/logo.png b/blockchains/ethereum/assets/0xabC1280A0187a2020cC675437aed400185F86Db6/logo.png new file mode 100644 index 00000000..9d89cff3 Binary files /dev/null and b/blockchains/ethereum/assets/0xabC1280A0187a2020cC675437aed400185F86Db6/logo.png differ diff --git a/blockchains/ethereum/assets/0xaba2b920DB501dbEB8651bcec8660CB871CeCaC1/info.json b/blockchains/ethereum/assets/0xaba2b920DB501dbEB8651bcec8660CB871CeCaC1/info.json new file mode 100644 index 00000000..5d8df50d --- /dev/null +++ b/blockchains/ethereum/assets/0xaba2b920DB501dbEB8651bcec8660CB871CeCaC1/info.json @@ -0,0 +1,11 @@ +{ + "name": "James McCall", + "symbol": "TIME", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaba2b920DB501dbEB8651bcec8660CB871CeCaC1", + "status": "abandoned", + "id": "0xaba2b920DB501dbEB8651bcec8660CB871CeCaC1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaba2b920DB501dbEB8651bcec8660CB871CeCaC1/logo.png b/blockchains/ethereum/assets/0xaba2b920DB501dbEB8651bcec8660CB871CeCaC1/logo.png new file mode 100644 index 00000000..c101eed5 Binary files /dev/null and b/blockchains/ethereum/assets/0xaba2b920DB501dbEB8651bcec8660CB871CeCaC1/logo.png differ diff --git a/blockchains/ethereum/assets/0xabecB60867D304C9D69C21A332F2643cF76dFeDb/info.json b/blockchains/ethereum/assets/0xabecB60867D304C9D69C21A332F2643cF76dFeDb/info.json new file mode 100644 index 00000000..e44adb7c --- /dev/null +++ b/blockchains/ethereum/assets/0xabecB60867D304C9D69C21A332F2643cF76dFeDb/info.json @@ -0,0 +1,11 @@ +{ + "name": "TOHKA COIN", + "symbol": "TOHKA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xabecB60867D304C9D69C21A332F2643cF76dFeDb", + "status": "abandoned", + "id": "0xabecB60867D304C9D69C21A332F2643cF76dFeDb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xabecB60867D304C9D69C21A332F2643cF76dFeDb/logo.png b/blockchains/ethereum/assets/0xabecB60867D304C9D69C21A332F2643cF76dFeDb/logo.png new file mode 100644 index 00000000..1141f056 Binary files /dev/null and b/blockchains/ethereum/assets/0xabecB60867D304C9D69C21A332F2643cF76dFeDb/logo.png differ diff --git a/blockchains/ethereum/assets/0xac2e58A06E6265F1Cf5084EE58da68e5d75b49CA/info.json b/blockchains/ethereum/assets/0xac2e58A06E6265F1Cf5084EE58da68e5d75b49CA/info.json new file mode 100644 index 00000000..efc62711 --- /dev/null +++ b/blockchains/ethereum/assets/0xac2e58A06E6265F1Cf5084EE58da68e5d75b49CA/info.json @@ -0,0 +1,11 @@ +{ + "name": "ORS Token", + "symbol": "ORS", + "type": "ERC20", + "decimals": 18, + "description": "ORS GROUP is connecting A.I. and Blockchain through Hypersmart Contracts, to provide access to more than 1,000 proprietary algorithms and hundreds of software solutions entrepreneurs worldwide.", + "website": "https://www.orsgroup.io/", + "explorer": "https://etherscan.io/token/0xac2e58A06E6265F1Cf5084EE58da68e5d75b49CA", + "status": "active", + "id": "0xac2e58A06E6265F1Cf5084EE58da68e5d75b49CA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xac2e58A06E6265F1Cf5084EE58da68e5d75b49CA/logo.png b/blockchains/ethereum/assets/0xac2e58A06E6265F1Cf5084EE58da68e5d75b49CA/logo.png new file mode 100755 index 00000000..6155e2bd Binary files /dev/null and b/blockchains/ethereum/assets/0xac2e58A06E6265F1Cf5084EE58da68e5d75b49CA/logo.png differ diff --git a/blockchains/ethereum/assets/0xac3211a5025414Af2866FF09c23FC18bc97e79b1/info.json b/blockchains/ethereum/assets/0xac3211a5025414Af2866FF09c23FC18bc97e79b1/info.json new file mode 100644 index 00000000..6d0d0265 --- /dev/null +++ b/blockchains/ethereum/assets/0xac3211a5025414Af2866FF09c23FC18bc97e79b1/info.json @@ -0,0 +1,11 @@ +{ + "name": "DOVU", + "website": "https://dovu.io", + "description": "A unified Token, Wallet and HUB for Carbon Offsetting", + "explorer": "https://etherscan.io/token/0xac3211a5025414Af2866FF09c23FC18bc97e79b1", + "type": "ERC20", + "symbol": "DOV", + "decimals": 18, + "status": "active", + "id": "0xac3211a5025414Af2866FF09c23FC18bc97e79b1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xac3211a5025414Af2866FF09c23FC18bc97e79b1/logo.png b/blockchains/ethereum/assets/0xac3211a5025414Af2866FF09c23FC18bc97e79b1/logo.png new file mode 100644 index 00000000..b75f1cfd Binary files /dev/null and b/blockchains/ethereum/assets/0xac3211a5025414Af2866FF09c23FC18bc97e79b1/logo.png differ diff --git a/blockchains/ethereum/assets/0xac4cE3D16bb77511d0A2cB8bEFd3983142B858E0/info.json b/blockchains/ethereum/assets/0xac4cE3D16bb77511d0A2cB8bEFd3983142B858E0/info.json new file mode 100644 index 00000000..89dd88d0 --- /dev/null +++ b/blockchains/ethereum/assets/0xac4cE3D16bb77511d0A2cB8bEFd3983142B858E0/info.json @@ -0,0 +1,11 @@ +{ + "name": "King Token", + "symbol": "KJK", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xac4cE3D16bb77511d0A2cB8bEFd3983142B858E0", + "status": "abandoned", + "id": "0xac4cE3D16bb77511d0A2cB8bEFd3983142B858E0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xac4cE3D16bb77511d0A2cB8bEFd3983142B858E0/logo.png b/blockchains/ethereum/assets/0xac4cE3D16bb77511d0A2cB8bEFd3983142B858E0/logo.png new file mode 100644 index 00000000..7b3ad8a4 Binary files /dev/null and b/blockchains/ethereum/assets/0xac4cE3D16bb77511d0A2cB8bEFd3983142B858E0/logo.png differ diff --git a/blockchains/ethereum/assets/0xac5470280C680956b1851F4ef9330F32E6fd243F/info.json b/blockchains/ethereum/assets/0xac5470280C680956b1851F4ef9330F32E6fd243F/info.json new file mode 100644 index 00000000..1e94e929 --- /dev/null +++ b/blockchains/ethereum/assets/0xac5470280C680956b1851F4ef9330F32E6fd243F/info.json @@ -0,0 +1,11 @@ +{ + "name": "KingCoin", + "symbol": "KNG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://kngcoin.org/", + "explorer": "https://etherscan.io/token/0xac5470280C680956b1851F4ef9330F32E6fd243F", + "status": "abandoned", + "id": "0xac5470280C680956b1851F4ef9330F32E6fd243F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xac5470280C680956b1851F4ef9330F32E6fd243F/logo.png b/blockchains/ethereum/assets/0xac5470280C680956b1851F4ef9330F32E6fd243F/logo.png new file mode 100644 index 00000000..2b7968e6 Binary files /dev/null and b/blockchains/ethereum/assets/0xac5470280C680956b1851F4ef9330F32E6fd243F/logo.png differ diff --git a/blockchains/ethereum/assets/0xac6DB8954b73EbF10e84278AC8b9B22a781615D9/info.json b/blockchains/ethereum/assets/0xac6DB8954b73EbF10e84278AC8b9B22a781615D9/info.json new file mode 100644 index 00000000..ced622a6 --- /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 00000000..e35d5a3e Binary files /dev/null and b/blockchains/ethereum/assets/0xac6DB8954b73EbF10e84278AC8b9B22a781615D9/logo.png differ diff --git a/blockchains/ethereum/assets/0xac7D1Cb8B4950e127148c515D5eFB5599388Fa59/info.json b/blockchains/ethereum/assets/0xac7D1Cb8B4950e127148c515D5eFB5599388Fa59/info.json new file mode 100644 index 00000000..ed4b4290 --- /dev/null +++ b/blockchains/ethereum/assets/0xac7D1Cb8B4950e127148c515D5eFB5599388Fa59/info.json @@ -0,0 +1,11 @@ +{ + "name": "SG Dev London", + "symbol": "SGDL", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xac7D1Cb8B4950e127148c515D5eFB5599388Fa59", + "status": "abandoned", + "id": "0xac7D1Cb8B4950e127148c515D5eFB5599388Fa59" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xac7D1Cb8B4950e127148c515D5eFB5599388Fa59/logo.png b/blockchains/ethereum/assets/0xac7D1Cb8B4950e127148c515D5eFB5599388Fa59/logo.png new file mode 100644 index 00000000..03f70eda Binary files /dev/null and b/blockchains/ethereum/assets/0xac7D1Cb8B4950e127148c515D5eFB5599388Fa59/logo.png differ diff --git a/blockchains/ethereum/assets/0xac914BfE8cd7CDF89D67549be7225AfAd83E147C/info.json b/blockchains/ethereum/assets/0xac914BfE8cd7CDF89D67549be7225AfAd83E147C/info.json new file mode 100644 index 00000000..0acbcdb3 --- /dev/null +++ b/blockchains/ethereum/assets/0xac914BfE8cd7CDF89D67549be7225AfAd83E147C/info.json @@ -0,0 +1,11 @@ +{ + "name": "FuzeClassic", + "symbol": "XFZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xac914BfE8cd7CDF89D67549be7225AfAd83E147C", + "status": "abandoned", + "id": "0xac914BfE8cd7CDF89D67549be7225AfAd83E147C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xac914BfE8cd7CDF89D67549be7225AfAd83E147C/logo.png b/blockchains/ethereum/assets/0xac914BfE8cd7CDF89D67549be7225AfAd83E147C/logo.png new file mode 100644 index 00000000..0edf41af Binary files /dev/null and b/blockchains/ethereum/assets/0xac914BfE8cd7CDF89D67549be7225AfAd83E147C/logo.png differ diff --git a/blockchains/ethereum/assets/0xacACa5b8805636608e14C64b0bFFfC2Deb2C6cEc/info.json b/blockchains/ethereum/assets/0xacACa5b8805636608e14C64b0bFFfC2Deb2C6cEc/info.json new file mode 100644 index 00000000..e0d202f8 --- /dev/null +++ b/blockchains/ethereum/assets/0xacACa5b8805636608e14C64b0bFFfC2Deb2C6cEc/info.json @@ -0,0 +1,11 @@ +{ + "name": "ROMToken", + "symbol": "ROM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://romchain.io/", + "explorer": "https://etherscan.io/token/0xacACa5b8805636608e14C64b0bFFfC2Deb2C6cEc", + "status": "abandoned", + "id": "0xacACa5b8805636608e14C64b0bFFfC2Deb2C6cEc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xacACa5b8805636608e14C64b0bFFfC2Deb2C6cEc/logo.png b/blockchains/ethereum/assets/0xacACa5b8805636608e14C64b0bFFfC2Deb2C6cEc/logo.png new file mode 100644 index 00000000..8f2289d9 Binary files /dev/null and b/blockchains/ethereum/assets/0xacACa5b8805636608e14C64b0bFFfC2Deb2C6cEc/logo.png differ diff --git a/blockchains/ethereum/assets/0xacF79E1bEb54703bcf14B4C7012dDD4e6b360905/info.json b/blockchains/ethereum/assets/0xacF79E1bEb54703bcf14B4C7012dDD4e6b360905/info.json new file mode 100644 index 00000000..966dfd4b --- /dev/null +++ b/blockchains/ethereum/assets/0xacF79E1bEb54703bcf14B4C7012dDD4e6b360905/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sense", + "symbol": "SNS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xacF79E1bEb54703bcf14B4C7012dDD4e6b360905", + "status": "abandoned", + "id": "0xacF79E1bEb54703bcf14B4C7012dDD4e6b360905" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xacF79E1bEb54703bcf14B4C7012dDD4e6b360905/logo.png b/blockchains/ethereum/assets/0xacF79E1bEb54703bcf14B4C7012dDD4e6b360905/logo.png new file mode 100644 index 00000000..79becea3 Binary files /dev/null and b/blockchains/ethereum/assets/0xacF79E1bEb54703bcf14B4C7012dDD4e6b360905/logo.png differ diff --git a/blockchains/ethereum/assets/0xacFe45C352C902ae3A3F9B6bfE6eC994c5D791BF/info.json b/blockchains/ethereum/assets/0xacFe45C352C902ae3A3F9B6bfE6eC994c5D791BF/info.json new file mode 100644 index 00000000..19c20718 --- /dev/null +++ b/blockchains/ethereum/assets/0xacFe45C352C902ae3A3F9B6bfE6eC994c5D791BF/info.json @@ -0,0 +1,12 @@ +{ + "name": "megaBONK", + "website": "https://www.megabonk.com/", + "description": "megaBONK is a community defi project focused on creating & minting NFTs with a one-click NFT minter.", + "explorer": "https://etherscan.io/token/0xacfe45c352c902ae3a3f9b6bfe6ec994c5d791bf", + "research": "https://bonktoken.medium.com/", + "type": "ERC20", + "symbol": "mBONK", + "decimals": 18, + "status": "active", + "id": "0xacFe45C352C902ae3A3F9B6bfE6eC994c5D791BF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xacFe45C352C902ae3A3F9B6bfE6eC994c5D791BF/logo.png b/blockchains/ethereum/assets/0xacFe45C352C902ae3A3F9B6bfE6eC994c5D791BF/logo.png new file mode 100644 index 00000000..d2fe5b1b Binary files /dev/null and b/blockchains/ethereum/assets/0xacFe45C352C902ae3A3F9B6bfE6eC994c5D791BF/logo.png differ diff --git a/blockchains/ethereum/assets/0xad29D26B081204Ba2D1Da9e86101DDa69ec835D5/info.json b/blockchains/ethereum/assets/0xad29D26B081204Ba2D1Da9e86101DDa69ec835D5/info.json new file mode 100644 index 00000000..f2563975 --- /dev/null +++ b/blockchains/ethereum/assets/0xad29D26B081204Ba2D1Da9e86101DDa69ec835D5/info.json @@ -0,0 +1,11 @@ +{ + "name": "OBXCoin", + "symbol": "OBX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xad29D26B081204Ba2D1Da9e86101DDa69ec835D5", + "status": "abandoned", + "id": "0xad29D26B081204Ba2D1Da9e86101DDa69ec835D5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xad29D26B081204Ba2D1Da9e86101DDa69ec835D5/logo.png b/blockchains/ethereum/assets/0xad29D26B081204Ba2D1Da9e86101DDa69ec835D5/logo.png new file mode 100644 index 00000000..491f5064 Binary files /dev/null and b/blockchains/ethereum/assets/0xad29D26B081204Ba2D1Da9e86101DDa69ec835D5/logo.png differ diff --git a/blockchains/ethereum/assets/0xad3E3Fc59dff318BecEaAb7D00EB4F68b1EcF195/info.json b/blockchains/ethereum/assets/0xad3E3Fc59dff318BecEaAb7D00EB4F68b1EcF195/info.json new file mode 100644 index 00000000..32f361d6 --- /dev/null +++ b/blockchains/ethereum/assets/0xad3E3Fc59dff318BecEaAb7D00EB4F68b1EcF195/info.json @@ -0,0 +1,11 @@ +{ + "name": "wCUSD", + "website": "https://www.wrapped.com", + "description": "Wrapped Celo Dollar is a 1:1 equivalent of the Celo Dollar on the Ethereum network", + "explorer": "https://etherscan.io/token/0xad3E3Fc59dff318BecEaAb7D00EB4F68b1EcF195", + "type": "ERC20", + "symbol": "wCUSD", + "decimals": 18, + "status": "active", + "id": "0xad3E3Fc59dff318BecEaAb7D00EB4F68b1EcF195" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xad3E3Fc59dff318BecEaAb7D00EB4F68b1EcF195/logo.png b/blockchains/ethereum/assets/0xad3E3Fc59dff318BecEaAb7D00EB4F68b1EcF195/logo.png new file mode 100644 index 00000000..765bf3aa Binary files /dev/null and b/blockchains/ethereum/assets/0xad3E3Fc59dff318BecEaAb7D00EB4F68b1EcF195/logo.png differ diff --git a/blockchains/ethereum/assets/0xad5307C84B31F0B4E1C8bCaA67704F57FbdAe74F/info.json b/blockchains/ethereum/assets/0xad5307C84B31F0B4E1C8bCaA67704F57FbdAe74F/info.json new file mode 100644 index 00000000..c2fc6bf4 --- /dev/null +++ b/blockchains/ethereum/assets/0xad5307C84B31F0B4E1C8bCaA67704F57FbdAe74F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wellness Cash Coin", + "symbol": "WCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xad5307C84B31F0B4E1C8bCaA67704F57FbdAe74F", + "status": "abandoned", + "id": "0xad5307C84B31F0B4E1C8bCaA67704F57FbdAe74F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xad5307C84B31F0B4E1C8bCaA67704F57FbdAe74F/logo.png b/blockchains/ethereum/assets/0xad5307C84B31F0B4E1C8bCaA67704F57FbdAe74F/logo.png new file mode 100644 index 00000000..402ce6a3 Binary files /dev/null and b/blockchains/ethereum/assets/0xad5307C84B31F0B4E1C8bCaA67704F57FbdAe74F/logo.png differ diff --git a/blockchains/ethereum/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json b/blockchains/ethereum/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json new file mode 100644 index 00000000..2f73fedb --- /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 00000000..6d22d110 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 00000000..29461a4f --- /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 00000000..b0e3b0d0 Binary files /dev/null and b/blockchains/ethereum/assets/0xadd39272E83895E7d3f244f696B7a25635F34234/logo.png differ diff --git a/blockchains/ethereum/assets/0xae353DaEed8DCc7a9a12027F7e070c0A50B7b6A4/info.json b/blockchains/ethereum/assets/0xae353DaEed8DCc7a9a12027F7e070c0A50B7b6A4/info.json new file mode 100644 index 00000000..a1970c26 --- /dev/null +++ b/blockchains/ethereum/assets/0xae353DaEed8DCc7a9a12027F7e070c0A50B7b6A4/info.json @@ -0,0 +1,11 @@ +{ + "name": "InnovaMinex", + "symbol": "MINX", + "type": "ERC20", + "decimals": 6, + "description": "InnovaMinex is an innovative business model that uses blockchain technology to guarantee the traceability of precious metals. By applying a set of procedures, it is possible to certify the whole process, from its origin in the mines, to the refinery and the commercialization to the end consumer.", + "website": "https://innovaminex.com/en/inx", + "explorer": "https://etherscan.io/token/0xae353DaEed8DCc7a9a12027F7e070c0A50B7b6A4", + "status": "active", + "id": "0xae353DaEed8DCc7a9a12027F7e070c0A50B7b6A4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xae353DaEed8DCc7a9a12027F7e070c0A50B7b6A4/logo.png b/blockchains/ethereum/assets/0xae353DaEed8DCc7a9a12027F7e070c0A50B7b6A4/logo.png new file mode 100644 index 00000000..b634e16e Binary files /dev/null and b/blockchains/ethereum/assets/0xae353DaEed8DCc7a9a12027F7e070c0A50B7b6A4/logo.png differ diff --git a/blockchains/ethereum/assets/0xae41b275aaAF484b541A5881a2dDED9515184CCA/info.json b/blockchains/ethereum/assets/0xae41b275aaAF484b541A5881a2dDED9515184CCA/info.json new file mode 100644 index 00000000..7e7db901 --- /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 00000000..a2e7afd0 Binary files /dev/null and b/blockchains/ethereum/assets/0xae41b275aaAF484b541A5881a2dDED9515184CCA/logo.png differ diff --git a/blockchains/ethereum/assets/0xae690cF07C85BFB2de29aB32080c0EA182ae82B5/info.json b/blockchains/ethereum/assets/0xae690cF07C85BFB2de29aB32080c0EA182ae82B5/info.json new file mode 100644 index 00000000..f52e1751 --- /dev/null +++ b/blockchains/ethereum/assets/0xae690cF07C85BFB2de29aB32080c0EA182ae82B5/info.json @@ -0,0 +1,11 @@ +{ + "name": "REBITCOIN", + "website": "https://rebitcoin.com", + "description": "REBITCOIN token.", + "explorer": "https://etherscan.io/token/0xae690cF07C85BFB2de29aB32080c0EA182ae82B5", + "type": "ERC20", + "symbol": "RBTC", + "decimals": 8, + "status": "abandoned", + "id": "0xae690cF07C85BFB2de29aB32080c0EA182ae82B5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xae690cF07C85BFB2de29aB32080c0EA182ae82B5/logo.png b/blockchains/ethereum/assets/0xae690cF07C85BFB2de29aB32080c0EA182ae82B5/logo.png new file mode 100644 index 00000000..5183329e Binary files /dev/null and b/blockchains/ethereum/assets/0xae690cF07C85BFB2de29aB32080c0EA182ae82B5/logo.png differ diff --git a/blockchains/ethereum/assets/0xae746520FfDB15d0505e32f1d6e9a2b4ab866572/info.json b/blockchains/ethereum/assets/0xae746520FfDB15d0505e32f1d6e9a2b4ab866572/info.json new file mode 100644 index 00000000..cfa5abba --- /dev/null +++ b/blockchains/ethereum/assets/0xae746520FfDB15d0505e32f1d6e9a2b4ab866572/info.json @@ -0,0 +1,11 @@ +{ + "name": "MorCrypto Coin 2", + "symbol": "MOR", + "type": "ERC20", + "decimals": 18, + "description": "MorCrypto Coin 2 (MOR) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://morcrypto-exchange.com", + "explorer": "https://etherscan.io/token/0xae746520FfDB15d0505e32f1d6e9a2b4ab866572", + "status": "active", + "id": "0xae746520FfDB15d0505e32f1d6e9a2b4ab866572" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xae746520FfDB15d0505e32f1d6e9a2b4ab866572/logo.png b/blockchains/ethereum/assets/0xae746520FfDB15d0505e32f1d6e9a2b4ab866572/logo.png new file mode 100644 index 00000000..66a594bb Binary files /dev/null and b/blockchains/ethereum/assets/0xae746520FfDB15d0505e32f1d6e9a2b4ab866572/logo.png differ diff --git a/blockchains/ethereum/assets/0xae75116eaCb982b6CD08A567eBaFBb9e3718f123/info.json b/blockchains/ethereum/assets/0xae75116eaCb982b6CD08A567eBaFBb9e3718f123/info.json new file mode 100644 index 00000000..bd29343c --- /dev/null +++ b/blockchains/ethereum/assets/0xae75116eaCb982b6CD08A567eBaFBb9e3718f123/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eqwity Token", + "symbol": "EQY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xae75116eaCb982b6CD08A567eBaFBb9e3718f123", + "status": "abandoned", + "id": "0xae75116eaCb982b6CD08A567eBaFBb9e3718f123" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xae75116eaCb982b6CD08A567eBaFBb9e3718f123/logo.png b/blockchains/ethereum/assets/0xae75116eaCb982b6CD08A567eBaFBb9e3718f123/logo.png new file mode 100644 index 00000000..7d3f9d33 Binary files /dev/null and b/blockchains/ethereum/assets/0xae75116eaCb982b6CD08A567eBaFBb9e3718f123/logo.png differ diff --git a/blockchains/ethereum/assets/0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84/info.json b/blockchains/ethereum/assets/0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84/info.json new file mode 100644 index 00000000..50f03600 --- /dev/null +++ b/blockchains/ethereum/assets/0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84/info.json @@ -0,0 +1,11 @@ +{ + "name": "stETH", + "website": "https://stake.lido.fi", + "description": "stETH is a token that represents staked ether in Lido.", + "explorer": "https://etherscan.io/token/0xae7ab96520de3a18e5e111b5eaab095312d7fe84", + "type": "ERC20", + "symbol": "stETH", + "decimals": 18, + "status": "active", + "id": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84/logo.png b/blockchains/ethereum/assets/0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84/logo.png new file mode 100644 index 00000000..57ed5b71 Binary files /dev/null and b/blockchains/ethereum/assets/0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84/logo.png differ diff --git a/blockchains/ethereum/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json b/blockchains/ethereum/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json new file mode 100644 index 00000000..3e38d877 --- /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 00000000..fb7784c7 Binary files /dev/null and b/blockchains/ethereum/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/logo.png differ diff --git a/blockchains/ethereum/assets/0xaeC2E87E0A235266D9C5ADc9DEb4b2E29b54D009/info.json b/blockchains/ethereum/assets/0xaeC2E87E0A235266D9C5ADc9DEb4b2E29b54D009/info.json new file mode 100644 index 00000000..7b46b435 --- /dev/null +++ b/blockchains/ethereum/assets/0xaeC2E87E0A235266D9C5ADc9DEb4b2E29b54D009/info.json @@ -0,0 +1,11 @@ +{ + "name": "SingularDTV", + "symbol": "SNGLS", + "type": "ERC20", + "decimals": 0, + "description": "The snglsDAO will be the non-profit governance layer of the SNGLS Protocol. It will be established by SingularDTV as an independent and objective organization to guide the development of the SNGLS Protocol. Its number one objective will be to uphold the tenets of decentralization and instill them into the programming of the protocol.", + "website": "https://snglsdao.io/", + "explorer": "https://etherscan.io/token/0xaeC2E87E0A235266D9C5ADc9DEb4b2E29b54D009", + "status": "active", + "id": "0xaeC2E87E0A235266D9C5ADc9DEb4b2E29b54D009" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaeC2E87E0A235266D9C5ADc9DEb4b2E29b54D009/logo.png b/blockchains/ethereum/assets/0xaeC2E87E0A235266D9C5ADc9DEb4b2E29b54D009/logo.png new file mode 100644 index 00000000..8d6be8e3 Binary files /dev/null and b/blockchains/ethereum/assets/0xaeC2E87E0A235266D9C5ADc9DEb4b2E29b54D009/logo.png differ diff --git a/blockchains/ethereum/assets/0xaeD1248AA72050cbF72F02467Ce611dEA2cE0305/info.json b/blockchains/ethereum/assets/0xaeD1248AA72050cbF72F02467Ce611dEA2cE0305/info.json new file mode 100644 index 00000000..54a98eb7 --- /dev/null +++ b/blockchains/ethereum/assets/0xaeD1248AA72050cbF72F02467Ce611dEA2cE0305/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gulfcoin Gold", + "symbol": "GCG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaeD1248AA72050cbF72F02467Ce611dEA2cE0305", + "status": "abandoned", + "id": "0xaeD1248AA72050cbF72F02467Ce611dEA2cE0305" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaeD1248AA72050cbF72F02467Ce611dEA2cE0305/logo.png b/blockchains/ethereum/assets/0xaeD1248AA72050cbF72F02467Ce611dEA2cE0305/logo.png new file mode 100755 index 00000000..2a2dc146 Binary files /dev/null and b/blockchains/ethereum/assets/0xaeD1248AA72050cbF72F02467Ce611dEA2cE0305/logo.png differ diff --git a/blockchains/ethereum/assets/0xaeDf386B755465871fF874E3E37Af5976E247064/info.json b/blockchains/ethereum/assets/0xaeDf386B755465871fF874E3E37Af5976E247064/info.json new file mode 100644 index 00000000..547d60f8 --- /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 00000000..50d27007 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 new file mode 100644 index 00000000..9e943e76 --- /dev/null +++ b/blockchains/ethereum/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/info.json @@ -0,0 +1,25 @@ +{ + "name": "PontoonToken", + "website": "https://pontoon.fi/", + "description": "Cross-chain liquidity mirror protocol", + "links": [ + { + "name": "x", + "url": "https://x.com/pontoonfi/" + }, + { + "name": "telegram", + "url": "https://t.me/pontoon_fi" + }, + { + "name": "medium", + "url": "https://pontoonfi.medium.com/" + } + ], + "explorer": "https://etherscan.io/token/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02", + "type": "ERC20", + "symbol": "TOON", + "decimals": 18, + "status": "active", + "id": "0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/logo.png b/blockchains/ethereum/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/logo.png new file mode 100755 index 00000000..0dec3fdb Binary files /dev/null and b/blockchains/ethereum/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/logo.png differ diff --git a/blockchains/ethereum/assets/0xaeF0496e109a296b7929092394ff5d3AA2EAcbe4/info.json b/blockchains/ethereum/assets/0xaeF0496e109a296b7929092394ff5d3AA2EAcbe4/info.json new file mode 100644 index 00000000..e1752264 --- /dev/null +++ b/blockchains/ethereum/assets/0xaeF0496e109a296b7929092394ff5d3AA2EAcbe4/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R908633 ", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaeF0496e109a296b7929092394ff5d3AA2EAcbe4", + "status": "abandoned", + "id": "0xaeF0496e109a296b7929092394ff5d3AA2EAcbe4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaeF0496e109a296b7929092394ff5d3AA2EAcbe4/logo.png b/blockchains/ethereum/assets/0xaeF0496e109a296b7929092394ff5d3AA2EAcbe4/logo.png new file mode 100755 index 00000000..8d501e32 Binary files /dev/null and b/blockchains/ethereum/assets/0xaeF0496e109a296b7929092394ff5d3AA2EAcbe4/logo.png differ diff --git a/blockchains/ethereum/assets/0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85/info.json b/blockchains/ethereum/assets/0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85/info.json new file mode 100644 index 00000000..2142e874 --- /dev/null +++ b/blockchains/ethereum/assets/0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85/info.json @@ -0,0 +1,12 @@ +{ + "name": "Fetch.ai", + "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", + "research": "https://research.binance.com/en/projects/fetch-ai", + "type": "ERC20", + "symbol": "FET", + "decimals": 18, + "status": "active", + "id": "0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85/logo.png b/blockchains/ethereum/assets/0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85/logo.png new file mode 100644 index 00000000..d5c525f6 Binary files /dev/null and b/blockchains/ethereum/assets/0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85/logo.png differ diff --git a/blockchains/ethereum/assets/0xaebe5B3780860147DE62BC67339f0386c4A13d87/info.json b/blockchains/ethereum/assets/0xaebe5B3780860147DE62BC67339f0386c4A13d87/info.json new file mode 100644 index 00000000..e6675987 --- /dev/null +++ b/blockchains/ethereum/assets/0xaebe5B3780860147DE62BC67339f0386c4A13d87/info.json @@ -0,0 +1,11 @@ +{ + "name": "NTer Coin", + "symbol": "NTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaebe5B3780860147DE62BC67339f0386c4A13d87", + "status": "abandoned", + "id": "0xaebe5B3780860147DE62BC67339f0386c4A13d87" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaebe5B3780860147DE62BC67339f0386c4A13d87/logo.png b/blockchains/ethereum/assets/0xaebe5B3780860147DE62BC67339f0386c4A13d87/logo.png new file mode 100644 index 00000000..b1858060 Binary files /dev/null and b/blockchains/ethereum/assets/0xaebe5B3780860147DE62BC67339f0386c4A13d87/logo.png differ diff --git a/blockchains/ethereum/assets/0xaf364474803E89250A46D592fef4cC4eF8270DD8/info.json b/blockchains/ethereum/assets/0xaf364474803E89250A46D592fef4cC4eF8270DD8/info.json new file mode 100644 index 00000000..ae54cc83 --- /dev/null +++ b/blockchains/ethereum/assets/0xaf364474803E89250A46D592fef4cC4eF8270DD8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Apollon Token", + "symbol": "APO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaf364474803E89250A46D592fef4cC4eF8270DD8", + "status": "abandoned", + "id": "0xaf364474803E89250A46D592fef4cC4eF8270DD8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaf364474803E89250A46D592fef4cC4eF8270DD8/logo.png b/blockchains/ethereum/assets/0xaf364474803E89250A46D592fef4cC4eF8270DD8/logo.png new file mode 100644 index 00000000..b9e19b22 Binary files /dev/null and b/blockchains/ethereum/assets/0xaf364474803E89250A46D592fef4cC4eF8270DD8/logo.png differ diff --git a/blockchains/ethereum/assets/0xaf79C4c4106b7C35c2FeC72D130783524f821D89/info.json b/blockchains/ethereum/assets/0xaf79C4c4106b7C35c2FeC72D130783524f821D89/info.json new file mode 100644 index 00000000..af5c28a4 --- /dev/null +++ b/blockchains/ethereum/assets/0xaf79C4c4106b7C35c2FeC72D130783524f821D89/info.json @@ -0,0 +1,11 @@ +{ + "name": "FINANCIAL INVESTMENT TOKEN", + "symbol": "FIT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaf79C4c4106b7C35c2FeC72D130783524f821D89", + "status": "abandoned", + "id": "0xaf79C4c4106b7C35c2FeC72D130783524f821D89" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaf79C4c4106b7C35c2FeC72D130783524f821D89/logo.png b/blockchains/ethereum/assets/0xaf79C4c4106b7C35c2FeC72D130783524f821D89/logo.png new file mode 100644 index 00000000..cf8890fe Binary files /dev/null and b/blockchains/ethereum/assets/0xaf79C4c4106b7C35c2FeC72D130783524f821D89/logo.png differ diff --git a/blockchains/ethereum/assets/0xaf9CE02409C5E1549a1637446035dAB83ab8aE70/info.json b/blockchains/ethereum/assets/0xaf9CE02409C5E1549a1637446035dAB83ab8aE70/info.json new file mode 100644 index 00000000..6f11a893 --- /dev/null +++ b/blockchains/ethereum/assets/0xaf9CE02409C5E1549a1637446035dAB83ab8aE70/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitdeal Coin", + "symbol": "BDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xaf9CE02409C5E1549a1637446035dAB83ab8aE70", + "status": "abandoned", + "id": "0xaf9CE02409C5E1549a1637446035dAB83ab8aE70" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaf9CE02409C5E1549a1637446035dAB83ab8aE70/logo.png b/blockchains/ethereum/assets/0xaf9CE02409C5E1549a1637446035dAB83ab8aE70/logo.png new file mode 100755 index 00000000..d119b676 Binary files /dev/null and b/blockchains/ethereum/assets/0xaf9CE02409C5E1549a1637446035dAB83ab8aE70/logo.png differ diff --git a/blockchains/ethereum/assets/0xaf9f549774ecEDbD0966C52f250aCc548D3F36E5/info.json b/blockchains/ethereum/assets/0xaf9f549774ecEDbD0966C52f250aCc548D3F36E5/info.json new file mode 100644 index 00000000..ebffe257 --- /dev/null +++ b/blockchains/ethereum/assets/0xaf9f549774ecEDbD0966C52f250aCc548D3F36E5/info.json @@ -0,0 +1,17 @@ +{ + "name": "Rio Fuel Token", + "website": "https://riochain.io", + "description": "Our core technology is a next generation Blockchain infrastructure called Rio Chain.", + "explorer": "https://etherscan.io/token/0xaf9f549774ecEDbD0966C52f250aCc548D3F36E5", + "type": "ERC20", + "symbol": "RFuel", + "decimals": 18, + "status": "active", + "id": "0xaf9f549774ecEDbD0966C52f250aCc548D3F36E5", + "links": [ + { + "name": "medium", + "url": "https://medium.com/@riodefiofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaf9f549774ecEDbD0966C52f250aCc548D3F36E5/logo.png b/blockchains/ethereum/assets/0xaf9f549774ecEDbD0966C52f250aCc548D3F36E5/logo.png new file mode 100644 index 00000000..760fc919 Binary files /dev/null and b/blockchains/ethereum/assets/0xaf9f549774ecEDbD0966C52f250aCc548D3F36E5/logo.png differ diff --git a/blockchains/ethereum/assets/0xafCBd4b0132FEbAaeeb9C8288E1E2a2Bae63e21B/info.json b/blockchains/ethereum/assets/0xafCBd4b0132FEbAaeeb9C8288E1E2a2Bae63e21B/info.json new file mode 100644 index 00000000..5c536e46 --- /dev/null +++ b/blockchains/ethereum/assets/0xafCBd4b0132FEbAaeeb9C8288E1E2a2Bae63e21B/info.json @@ -0,0 +1,11 @@ +{ + "name": "SALAM COIN", + "symbol": "SLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xafCBd4b0132FEbAaeeb9C8288E1E2a2Bae63e21B", + "status": "abandoned", + "id": "0xafCBd4b0132FEbAaeeb9C8288E1E2a2Bae63e21B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xafCBd4b0132FEbAaeeb9C8288E1E2a2Bae63e21B/logo.png b/blockchains/ethereum/assets/0xafCBd4b0132FEbAaeeb9C8288E1E2a2Bae63e21B/logo.png new file mode 100755 index 00000000..8bf56dfd Binary files /dev/null and b/blockchains/ethereum/assets/0xafCBd4b0132FEbAaeeb9C8288E1E2a2Bae63e21B/logo.png differ diff --git a/blockchains/ethereum/assets/0xafb1eF73cC478461cD6A5Ab41D92550439071ece/info.json b/blockchains/ethereum/assets/0xafb1eF73cC478461cD6A5Ab41D92550439071ece/info.json new file mode 100644 index 00000000..4a631566 --- /dev/null +++ b/blockchains/ethereum/assets/0xafb1eF73cC478461cD6A5Ab41D92550439071ece/info.json @@ -0,0 +1,11 @@ +{ + "name": "PandaCoin", + "symbol": "Panda", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xafb1eF73cC478461cD6A5Ab41D92550439071ece", + "status": "abandoned", + "id": "0xafb1eF73cC478461cD6A5Ab41D92550439071ece" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xafb1eF73cC478461cD6A5Ab41D92550439071ece/logo.png b/blockchains/ethereum/assets/0xafb1eF73cC478461cD6A5Ab41D92550439071ece/logo.png new file mode 100755 index 00000000..411ddc50 Binary files /dev/null and b/blockchains/ethereum/assets/0xafb1eF73cC478461cD6A5Ab41D92550439071ece/logo.png differ diff --git a/blockchains/ethereum/assets/0xafcCbdA168681038419908470e79E2353a798E1f/info.json b/blockchains/ethereum/assets/0xafcCbdA168681038419908470e79E2353a798E1f/info.json new file mode 100644 index 00000000..de840d02 --- /dev/null +++ b/blockchains/ethereum/assets/0xafcCbdA168681038419908470e79E2353a798E1f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mythril Ore", + "symbol": "ORE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xafcCbdA168681038419908470e79E2353a798E1f", + "status": "abandoned", + "id": "0xafcCbdA168681038419908470e79E2353a798E1f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xafcCbdA168681038419908470e79E2353a798E1f/logo.png b/blockchains/ethereum/assets/0xafcCbdA168681038419908470e79E2353a798E1f/logo.png new file mode 100644 index 00000000..8e02b882 Binary files /dev/null and b/blockchains/ethereum/assets/0xafcCbdA168681038419908470e79E2353a798E1f/logo.png differ diff --git a/blockchains/ethereum/assets/0xaff84e86d72EDb971341a6A66eb2dA209446FA14/info.json b/blockchains/ethereum/assets/0xaff84e86d72EDb971341a6A66eb2dA209446FA14/info.json new file mode 100644 index 00000000..ce4204ad --- /dev/null +++ b/blockchains/ethereum/assets/0xaff84e86d72EDb971341a6A66eb2dA209446FA14/info.json @@ -0,0 +1,11 @@ +{ + "name": "TheCurrencyAnalytics", + "symbol": "TCAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://thecurrencyanalytics.com/", + "explorer": "https://etherscan.io/token/0xaff84e86d72EDb971341a6A66eb2dA209446FA14", + "status": "abandoned", + "id": "0xaff84e86d72EDb971341a6A66eb2dA209446FA14" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaff84e86d72EDb971341a6A66eb2dA209446FA14/logo.png b/blockchains/ethereum/assets/0xaff84e86d72EDb971341a6A66eb2dA209446FA14/logo.png new file mode 100644 index 00000000..a6829abe Binary files /dev/null and b/blockchains/ethereum/assets/0xaff84e86d72EDb971341a6A66eb2dA209446FA14/logo.png differ diff --git a/blockchains/ethereum/assets/0xb0280743b44bF7db4B6bE482b2Ba7b75E5dA096C/info.json b/blockchains/ethereum/assets/0xb0280743b44bF7db4B6bE482b2Ba7b75E5dA096C/info.json new file mode 100644 index 00000000..da37d349 --- /dev/null +++ b/blockchains/ethereum/assets/0xb0280743b44bF7db4B6bE482b2Ba7b75E5dA096C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Transcodium", + "symbol": "TNS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://transcodium.com", + "explorer": "https://etherscan.io/token/0xb0280743b44bF7db4B6bE482b2Ba7b75E5dA096C", + "status": "active", + "id": "0xb0280743b44bF7db4B6bE482b2Ba7b75E5dA096C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb0280743b44bF7db4B6bE482b2Ba7b75E5dA096C/logo.png b/blockchains/ethereum/assets/0xb0280743b44bF7db4B6bE482b2Ba7b75E5dA096C/logo.png new file mode 100755 index 00000000..8ef2a173 Binary files /dev/null and b/blockchains/ethereum/assets/0xb0280743b44bF7db4B6bE482b2Ba7b75E5dA096C/logo.png differ diff --git a/blockchains/ethereum/assets/0xb035c3d5083bdc80074F380aeBc9Fcb68aBa0A28/info.json b/blockchains/ethereum/assets/0xb035c3d5083bdc80074F380aeBc9Fcb68aBa0A28/info.json new file mode 100644 index 00000000..25fb6cc3 --- /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 00000000..3537e046 Binary files /dev/null and b/blockchains/ethereum/assets/0xb035c3d5083bdc80074F380aeBc9Fcb68aBa0A28/logo.png differ diff --git a/blockchains/ethereum/assets/0xb05097849BCA421A3f51B249BA6CCa4aF4b97cb9/info.json b/blockchains/ethereum/assets/0xb05097849BCA421A3f51B249BA6CCa4aF4b97cb9/info.json new file mode 100644 index 00000000..40f38419 --- /dev/null +++ b/blockchains/ethereum/assets/0xb05097849BCA421A3f51B249BA6CCa4aF4b97cb9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Float Protocol: FLOAT", + "website": "https://floatprotocol.com/", + "description": "FLOAT - a non-pegged stabilised coin that defends purchasing power in the long-run.", + "explorer": "https://etherscan.io/token/0xb05097849bca421a3f51b249ba6cca4af4b97cb9", + "type": "ERC20", + "symbol": "FLOAT", + "decimals": 18, + "status": "active", + "id": "0xb05097849BCA421A3f51B249BA6CCa4aF4b97cb9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb05097849BCA421A3f51B249BA6CCa4aF4b97cb9/logo.png b/blockchains/ethereum/assets/0xb05097849BCA421A3f51B249BA6CCa4aF4b97cb9/logo.png new file mode 100644 index 00000000..16289e41 Binary files /dev/null and b/blockchains/ethereum/assets/0xb05097849BCA421A3f51B249BA6CCa4aF4b97cb9/logo.png differ diff --git a/blockchains/ethereum/assets/0xb052F8A33D8bb068414EaDE06AF6955199f9f010/info.json b/blockchains/ethereum/assets/0xb052F8A33D8bb068414EaDE06AF6955199f9f010/info.json new file mode 100644 index 00000000..7f650fa0 --- /dev/null +++ b/blockchains/ethereum/assets/0xb052F8A33D8bb068414EaDE06AF6955199f9f010/info.json @@ -0,0 +1,11 @@ +{ + "name": "EcoRealEstate", + "symbol": "ECOREAL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ecoreal.estate/", + "explorer": "https://etherscan.io/token/0xb052F8A33D8bb068414EaDE06AF6955199f9f010", + "status": "abandoned", + "id": "0xb052F8A33D8bb068414EaDE06AF6955199f9f010" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb052F8A33D8bb068414EaDE06AF6955199f9f010/logo.png b/blockchains/ethereum/assets/0xb052F8A33D8bb068414EaDE06AF6955199f9f010/logo.png new file mode 100755 index 00000000..30f18ea4 Binary files /dev/null and b/blockchains/ethereum/assets/0xb052F8A33D8bb068414EaDE06AF6955199f9f010/logo.png differ diff --git a/blockchains/ethereum/assets/0xb056c38f6b7Dc4064367403E26424CD2c60655e1/info.json b/blockchains/ethereum/assets/0xb056c38f6b7Dc4064367403E26424CD2c60655e1/info.json new file mode 100644 index 00000000..74456b51 --- /dev/null +++ b/blockchains/ethereum/assets/0xb056c38f6b7Dc4064367403E26424CD2c60655e1/info.json @@ -0,0 +1,11 @@ +{ + "name": "CEEK", + "symbol": "CEEK", + "type": "ERC20", + "decimals": 18, + "description": "CEEK VR (CEEK) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.ceek.io", + "explorer": "https://etherscan.io/token/0xb056c38f6b7Dc4064367403E26424CD2c60655e1", + "status": "active", + "id": "0xb056c38f6b7Dc4064367403E26424CD2c60655e1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb056c38f6b7Dc4064367403E26424CD2c60655e1/logo.png b/blockchains/ethereum/assets/0xb056c38f6b7Dc4064367403E26424CD2c60655e1/logo.png new file mode 100644 index 00000000..c1021deb Binary files /dev/null and b/blockchains/ethereum/assets/0xb056c38f6b7Dc4064367403E26424CD2c60655e1/logo.png differ diff --git a/blockchains/ethereum/assets/0xb05AF453011d7ad68a92b0065FFD9d1277eD2741/info.json b/blockchains/ethereum/assets/0xb05AF453011d7ad68a92b0065FFD9d1277eD2741/info.json new file mode 100644 index 00000000..8860cb24 --- /dev/null +++ b/blockchains/ethereum/assets/0xb05AF453011d7ad68a92b0065FFD9d1277eD2741/info.json @@ -0,0 +1,11 @@ +{ + "name": "Team Finance", + "website": "https://team.finance", + "description": "Founder token vesting and liquidity token locking solution.", + "explorer": "https://etherscan.io/token/0xb05AF453011d7ad68a92b0065FFD9d1277eD2741", + "type": "ERC20", + "symbol": "TEAM", + "decimals": 18, + "status": "active", + "id": "0xb05AF453011d7ad68a92b0065FFD9d1277eD2741" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb05AF453011d7ad68a92b0065FFD9d1277eD2741/logo.png b/blockchains/ethereum/assets/0xb05AF453011d7ad68a92b0065FFD9d1277eD2741/logo.png new file mode 100644 index 00000000..7e4562a0 Binary files /dev/null and b/blockchains/ethereum/assets/0xb05AF453011d7ad68a92b0065FFD9d1277eD2741/logo.png differ diff --git a/blockchains/ethereum/assets/0xb06de6eAab9fE283aBC9Bd2D1084E4896051D6Dc/info.json b/blockchains/ethereum/assets/0xb06de6eAab9fE283aBC9Bd2D1084E4896051D6Dc/info.json new file mode 100644 index 00000000..aa6857ff --- /dev/null +++ b/blockchains/ethereum/assets/0xb06de6eAab9fE283aBC9Bd2D1084E4896051D6Dc/info.json @@ -0,0 +1,11 @@ +{ + "name": "iEXCToken", + "symbol": "iEXC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb06de6eAab9fE283aBC9Bd2D1084E4896051D6Dc", + "status": "abandoned", + "id": "0xb06de6eAab9fE283aBC9Bd2D1084E4896051D6Dc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb06de6eAab9fE283aBC9Bd2D1084E4896051D6Dc/logo.png b/blockchains/ethereum/assets/0xb06de6eAab9fE283aBC9Bd2D1084E4896051D6Dc/logo.png new file mode 100644 index 00000000..7cdac3ec Binary files /dev/null and b/blockchains/ethereum/assets/0xb06de6eAab9fE283aBC9Bd2D1084E4896051D6Dc/logo.png differ diff --git a/blockchains/ethereum/assets/0xb0AC2b5a73da0e67A8e5489Ba922B3f8d582e058/info.json b/blockchains/ethereum/assets/0xb0AC2b5a73da0e67A8e5489Ba922B3f8d582e058/info.json new file mode 100644 index 00000000..07b3add7 --- /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 00000000..ced190b9 Binary files /dev/null and b/blockchains/ethereum/assets/0xb0AC2b5a73da0e67A8e5489Ba922B3f8d582e058/logo.png differ diff --git a/blockchains/ethereum/assets/0xb0D926c1BC3d78064F3e1075D5bD9A24F35Ae6C5/info.json b/blockchains/ethereum/assets/0xb0D926c1BC3d78064F3e1075D5bD9A24F35Ae6C5/info.json new file mode 100644 index 00000000..a01358aa --- /dev/null +++ b/blockchains/ethereum/assets/0xb0D926c1BC3d78064F3e1075D5bD9A24F35Ae6C5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Assistive Reality ARX", + "symbol": "ARX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb0D926c1BC3d78064F3e1075D5bD9A24F35Ae6C5", + "status": "abandoned", + "id": "0xb0D926c1BC3d78064F3e1075D5bD9A24F35Ae6C5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb0D926c1BC3d78064F3e1075D5bD9A24F35Ae6C5/logo.png b/blockchains/ethereum/assets/0xb0D926c1BC3d78064F3e1075D5bD9A24F35Ae6C5/logo.png new file mode 100644 index 00000000..371f63ce Binary files /dev/null and b/blockchains/ethereum/assets/0xb0D926c1BC3d78064F3e1075D5bD9A24F35Ae6C5/logo.png differ diff --git a/blockchains/ethereum/assets/0xb0DC7fdB068aBA78Cd79e1BF9006196fF3299C8f/info.json b/blockchains/ethereum/assets/0xb0DC7fdB068aBA78Cd79e1BF9006196fF3299C8f/info.json new file mode 100644 index 00000000..0da11202 --- /dev/null +++ b/blockchains/ethereum/assets/0xb0DC7fdB068aBA78Cd79e1BF9006196fF3299C8f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digital Dollar Coin", + "symbol": "DDCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb0DC7fdB068aBA78Cd79e1BF9006196fF3299C8f", + "status": "abandoned", + "id": "0xb0DC7fdB068aBA78Cd79e1BF9006196fF3299C8f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb0DC7fdB068aBA78Cd79e1BF9006196fF3299C8f/logo.png b/blockchains/ethereum/assets/0xb0DC7fdB068aBA78Cd79e1BF9006196fF3299C8f/logo.png new file mode 100644 index 00000000..adc60217 Binary files /dev/null and b/blockchains/ethereum/assets/0xb0DC7fdB068aBA78Cd79e1BF9006196fF3299C8f/logo.png differ diff --git a/blockchains/ethereum/assets/0xb0a0a070640B450eB136DC377208469ee4F49fbc/info.json b/blockchains/ethereum/assets/0xb0a0a070640B450eB136DC377208469ee4F49fbc/info.json new file mode 100644 index 00000000..6a832338 --- /dev/null +++ b/blockchains/ethereum/assets/0xb0a0a070640B450eB136DC377208469ee4F49fbc/info.json @@ -0,0 +1,11 @@ +{ + "name": "FUTURE1COIN", + "symbol": "F1C", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://future1coin.com/", + "explorer": "https://etherscan.io/token/0xb0a0a070640B450eB136DC377208469ee4F49fbc", + "status": "abandoned", + "id": "0xb0a0a070640B450eB136DC377208469ee4F49fbc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb0a0a070640B450eB136DC377208469ee4F49fbc/logo.png b/blockchains/ethereum/assets/0xb0a0a070640B450eB136DC377208469ee4F49fbc/logo.png new file mode 100644 index 00000000..5b4701d2 Binary files /dev/null and b/blockchains/ethereum/assets/0xb0a0a070640B450eB136DC377208469ee4F49fbc/logo.png differ diff --git a/blockchains/ethereum/assets/0xb0dFd28d3CF7A5897C694904Ace292539242f858/info.json b/blockchains/ethereum/assets/0xb0dFd28d3CF7A5897C694904Ace292539242f858/info.json new file mode 100644 index 00000000..80b8532b --- /dev/null +++ b/blockchains/ethereum/assets/0xb0dFd28d3CF7A5897C694904Ace292539242f858/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lotto", + "website": "https://www.lotto.finance/", + "description": "A massive lottery between everyone in the DeFi space where tokens are automatically removed from all wallets, pooled together, and given to one user at random!", + "explorer": "https://etherscan.io/token/0xb0dfd28d3cf7a5897c694904ace292539242f858", + "type": "ERC20", + "symbol": "LOTTO", + "decimals": 18, + "status": "active", + "id": "0xb0dFd28d3CF7A5897C694904Ace292539242f858" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb0dFd28d3CF7A5897C694904Ace292539242f858/logo.png b/blockchains/ethereum/assets/0xb0dFd28d3CF7A5897C694904Ace292539242f858/logo.png new file mode 100644 index 00000000..ef22f6e5 Binary files /dev/null and b/blockchains/ethereum/assets/0xb0dFd28d3CF7A5897C694904Ace292539242f858/logo.png differ diff --git a/blockchains/ethereum/assets/0xb0ecc7f33973D8aCd6296Ab40f37718015b98345/info.json b/blockchains/ethereum/assets/0xb0ecc7f33973D8aCd6296Ab40f37718015b98345/info.json new file mode 100644 index 00000000..e989f73a --- /dev/null +++ b/blockchains/ethereum/assets/0xb0ecc7f33973D8aCd6296Ab40f37718015b98345/info.json @@ -0,0 +1,11 @@ +{ + "name": "I-PRO TOKEN", + "symbol": "IPR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb0ecc7f33973D8aCd6296Ab40f37718015b98345", + "status": "abandoned", + "id": "0xb0ecc7f33973D8aCd6296Ab40f37718015b98345" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb0ecc7f33973D8aCd6296Ab40f37718015b98345/logo.png b/blockchains/ethereum/assets/0xb0ecc7f33973D8aCd6296Ab40f37718015b98345/logo.png new file mode 100755 index 00000000..dc8a8ef5 Binary files /dev/null and b/blockchains/ethereum/assets/0xb0ecc7f33973D8aCd6296Ab40f37718015b98345/logo.png differ diff --git a/blockchains/ethereum/assets/0xb1208A19C8ba2de7B3f9EdDbB032B28D586b9590/info.json b/blockchains/ethereum/assets/0xb1208A19C8ba2de7B3f9EdDbB032B28D586b9590/info.json new file mode 100644 index 00000000..92b8d331 --- /dev/null +++ b/blockchains/ethereum/assets/0xb1208A19C8ba2de7B3f9EdDbB032B28D586b9590/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLASTSCRYPT", + "symbol": "BLAST", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb1208A19C8ba2de7B3f9EdDbB032B28D586b9590", + "status": "abandoned", + "id": "0xb1208A19C8ba2de7B3f9EdDbB032B28D586b9590" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb1208A19C8ba2de7B3f9EdDbB032B28D586b9590/logo.png b/blockchains/ethereum/assets/0xb1208A19C8ba2de7B3f9EdDbB032B28D586b9590/logo.png new file mode 100644 index 00000000..2654deac Binary files /dev/null and b/blockchains/ethereum/assets/0xb1208A19C8ba2de7B3f9EdDbB032B28D586b9590/logo.png differ diff --git a/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/info.json b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/info.json new file mode 100644 index 00000000..4c91e4a7 --- /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 00000000..2db61d5f Binary files /dev/null and b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/logo.png differ diff --git a/blockchains/ethereum/assets/0xb140A429c342083E97Daf42d5D82634bd7Ade7d4/info.json b/blockchains/ethereum/assets/0xb140A429c342083E97Daf42d5D82634bd7Ade7d4/info.json new file mode 100644 index 00000000..75af6fc2 --- /dev/null +++ b/blockchains/ethereum/assets/0xb140A429c342083E97Daf42d5D82634bd7Ade7d4/info.json @@ -0,0 +1,18 @@ +{ + "name": "WAXG", + "website": "https://wax.io", + "description": "WAX Governance Token", + "explorer": "https://etherscan.io/token/0xb140A429c342083E97Daf42d5D82634bd7Ade7d4", + "research": "https://wax.io/blog/tags/technical", + "type": "ERC20", + "symbol": "WAXG", + "decimals": 8, + "status": "active", + "id": "0xb140A429c342083E97Daf42d5D82634bd7Ade7d4", + "links": [ + { + "name": "whitepaper", + "url": "https://github.com/worldwide-asset-exchange/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb140A429c342083E97Daf42d5D82634bd7Ade7d4/logo.png b/blockchains/ethereum/assets/0xb140A429c342083E97Daf42d5D82634bd7Ade7d4/logo.png new file mode 100644 index 00000000..93721fd5 Binary files /dev/null and b/blockchains/ethereum/assets/0xb140A429c342083E97Daf42d5D82634bd7Ade7d4/logo.png differ diff --git a/blockchains/ethereum/assets/0xb15F63a517e40F599e7331F825A0775001915Fb6/info.json b/blockchains/ethereum/assets/0xb15F63a517e40F599e7331F825A0775001915Fb6/info.json new file mode 100644 index 00000000..367e8f05 --- /dev/null +++ b/blockchains/ethereum/assets/0xb15F63a517e40F599e7331F825A0775001915Fb6/info.json @@ -0,0 +1,11 @@ +{ + "name": "DORON", + "symbol": "DRN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://dorontoken.simdif.com", + "explorer": "https://etherscan.io/token/0xb15F63a517e40F599e7331F825A0775001915Fb6", + "status": "abandoned", + "id": "0xb15F63a517e40F599e7331F825A0775001915Fb6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb15F63a517e40F599e7331F825A0775001915Fb6/logo.png b/blockchains/ethereum/assets/0xb15F63a517e40F599e7331F825A0775001915Fb6/logo.png new file mode 100644 index 00000000..083b4f1b Binary files /dev/null and b/blockchains/ethereum/assets/0xb15F63a517e40F599e7331F825A0775001915Fb6/logo.png differ diff --git a/blockchains/ethereum/assets/0xb187BeeD5012ea4D6D98A16C53AacBA1B15506BD/info.json b/blockchains/ethereum/assets/0xb187BeeD5012ea4D6D98A16C53AacBA1B15506BD/info.json new file mode 100644 index 00000000..d536bebb --- /dev/null +++ b/blockchains/ethereum/assets/0xb187BeeD5012ea4D6D98A16C53AacBA1B15506BD/info.json @@ -0,0 +1,11 @@ +{ + "name": "MybillCash", + "symbol": "XSB", + "type": "ERC20", + "decimals": 11, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb187BeeD5012ea4D6D98A16C53AacBA1B15506BD", + "status": "abandoned", + "id": "0xb187BeeD5012ea4D6D98A16C53AacBA1B15506BD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb187BeeD5012ea4D6D98A16C53AacBA1B15506BD/logo.png b/blockchains/ethereum/assets/0xb187BeeD5012ea4D6D98A16C53AacBA1B15506BD/logo.png new file mode 100644 index 00000000..d48318b7 Binary files /dev/null and b/blockchains/ethereum/assets/0xb187BeeD5012ea4D6D98A16C53AacBA1B15506BD/logo.png differ diff --git a/blockchains/ethereum/assets/0xb19c93702070C1355e007fb63f3Dc077C9Fad7FF/info.json b/blockchains/ethereum/assets/0xb19c93702070C1355e007fb63f3Dc077C9Fad7FF/info.json new file mode 100644 index 00000000..079fa07f --- /dev/null +++ b/blockchains/ethereum/assets/0xb19c93702070C1355e007fb63f3Dc077C9Fad7FF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Soma", + "symbol": "SOMA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb19c93702070C1355e007fb63f3Dc077C9Fad7FF", + "status": "abandoned", + "id": "0xb19c93702070C1355e007fb63f3Dc077C9Fad7FF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb19c93702070C1355e007fb63f3Dc077C9Fad7FF/logo.png b/blockchains/ethereum/assets/0xb19c93702070C1355e007fb63f3Dc077C9Fad7FF/logo.png new file mode 100755 index 00000000..e9ed1169 Binary files /dev/null and b/blockchains/ethereum/assets/0xb19c93702070C1355e007fb63f3Dc077C9Fad7FF/logo.png differ diff --git a/blockchains/ethereum/assets/0xb1EC548F296270BC96B8A1b3b3C8F3f04b494215/info.json b/blockchains/ethereum/assets/0xb1EC548F296270BC96B8A1b3b3C8F3f04b494215/info.json new file mode 100644 index 00000000..273a50ec --- /dev/null +++ b/blockchains/ethereum/assets/0xb1EC548F296270BC96B8A1b3b3C8F3f04b494215/info.json @@ -0,0 +1,17 @@ +{ + "name": "Foresight", + "website": "https://foresightdefi.io", + "description": "Foresight provides DAO-Governed Cryptocurrency Insurance.", + "explorer": "https://etherscan.io/token/0xb1EC548F296270BC96B8A1b3b3C8F3f04b494215", + "type": "ERC20", + "symbol": "FORS", + "decimals": 18, + "status": "active", + "id": "0xb1EC548F296270BC96B8A1b3b3C8F3f04b494215", + "links": [ + { + "name": "whitepaper", + "url": "https://foresightdefi.io/Foresight-Litepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb1EC548F296270BC96B8A1b3b3C8F3f04b494215/logo.png b/blockchains/ethereum/assets/0xb1EC548F296270BC96B8A1b3b3C8F3f04b494215/logo.png new file mode 100644 index 00000000..58daf4df Binary files /dev/null and b/blockchains/ethereum/assets/0xb1EC548F296270BC96B8A1b3b3C8F3f04b494215/logo.png differ diff --git a/blockchains/ethereum/assets/0xb1ED41dc1Fe9b723a31137aFdd1201D17917FE91/info.json b/blockchains/ethereum/assets/0xb1ED41dc1Fe9b723a31137aFdd1201D17917FE91/info.json new file mode 100644 index 00000000..f5f65a40 --- /dev/null +++ b/blockchains/ethereum/assets/0xb1ED41dc1Fe9b723a31137aFdd1201D17917FE91/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alttex", + "symbol": "ALTX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb1ED41dc1Fe9b723a31137aFdd1201D17917FE91", + "status": "abandoned", + "id": "0xb1ED41dc1Fe9b723a31137aFdd1201D17917FE91" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb1ED41dc1Fe9b723a31137aFdd1201D17917FE91/logo.png b/blockchains/ethereum/assets/0xb1ED41dc1Fe9b723a31137aFdd1201D17917FE91/logo.png new file mode 100644 index 00000000..c4e6b7f9 Binary files /dev/null and b/blockchains/ethereum/assets/0xb1ED41dc1Fe9b723a31137aFdd1201D17917FE91/logo.png differ diff --git a/blockchains/ethereum/assets/0xb1c1Cb8C7c1992dba24e628bF7d38E71daD46aeB/info.json b/blockchains/ethereum/assets/0xb1c1Cb8C7c1992dba24e628bF7d38E71daD46aeB/info.json new file mode 100644 index 00000000..056bf8ab --- /dev/null +++ b/blockchains/ethereum/assets/0xb1c1Cb8C7c1992dba24e628bF7d38E71daD46aeB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cloudbric", + "symbol": "CLB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.cloudbric.io/", + "explorer": "https://etherscan.io/token/0xb1c1Cb8C7c1992dba24e628bF7d38E71daD46aeB", + "status": "abandoned", + "id": "0xb1c1Cb8C7c1992dba24e628bF7d38E71daD46aeB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb1c1Cb8C7c1992dba24e628bF7d38E71daD46aeB/logo.png b/blockchains/ethereum/assets/0xb1c1Cb8C7c1992dba24e628bF7d38E71daD46aeB/logo.png new file mode 100644 index 00000000..e5685a52 Binary files /dev/null and b/blockchains/ethereum/assets/0xb1c1Cb8C7c1992dba24e628bF7d38E71daD46aeB/logo.png differ diff --git a/blockchains/ethereum/assets/0xb1c8022Ddf5010DA0816B3E53C610B5168e5245B/info.json b/blockchains/ethereum/assets/0xb1c8022Ddf5010DA0816B3E53C610B5168e5245B/info.json new file mode 100644 index 00000000..2dcd3bb7 --- /dev/null +++ b/blockchains/ethereum/assets/0xb1c8022Ddf5010DA0816B3E53C610B5168e5245B/info.json @@ -0,0 +1,11 @@ +{ + "name": "AIMAKERY", + "symbol": "AIM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb1c8022Ddf5010DA0816B3E53C610B5168e5245B", + "status": "abandoned", + "id": "0xb1c8022Ddf5010DA0816B3E53C610B5168e5245B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb1c8022Ddf5010DA0816B3E53C610B5168e5245B/logo.png b/blockchains/ethereum/assets/0xb1c8022Ddf5010DA0816B3E53C610B5168e5245B/logo.png new file mode 100644 index 00000000..221ebd31 Binary files /dev/null and b/blockchains/ethereum/assets/0xb1c8022Ddf5010DA0816B3E53C610B5168e5245B/logo.png differ diff --git a/blockchains/ethereum/assets/0xb1c9bc94aCd2fAE6aABf4ffae4429B93512a81D2/info.json b/blockchains/ethereum/assets/0xb1c9bc94aCd2fAE6aABf4ffae4429B93512a81D2/info.json new file mode 100644 index 00000000..cc8998c8 --- /dev/null +++ b/blockchains/ethereum/assets/0xb1c9bc94aCd2fAE6aABf4ffae4429B93512a81D2/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ariadne", + "symbol": "ARDN", + "type": "ERC20", + "decimals": 18, + "description": "Ariadne is a cross-chain DeFi marketplace that is lowering the fees to enter/exit farms on multiple blockchains and saves swaps and bridges costs for both EVM and non-EVM chains.", + "website": "https://ariadne.finance", + "explorer": "https://etherscan.io/token/0xb1c9bc94aCd2fAE6aABf4ffae4429B93512a81D2", + "status": "active", + "id": "0xb1c9bc94aCd2fAE6aABf4ffae4429B93512a81D2", + "links": [ + { + "name": "medium", + "url": "https://medium.com/ariadne-project" + }, + { + "name": "x", + "url": "https://x.com/ariadne_finance" + }, + { + "name": "telegram", + "url": "https://t.me/ariadne_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ariadne/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb1c9bc94aCd2fAE6aABf4ffae4429B93512a81D2/logo.png b/blockchains/ethereum/assets/0xb1c9bc94aCd2fAE6aABf4ffae4429B93512a81D2/logo.png new file mode 100644 index 00000000..fcefa0fa Binary files /dev/null and b/blockchains/ethereum/assets/0xb1c9bc94aCd2fAE6aABf4ffae4429B93512a81D2/logo.png differ diff --git a/blockchains/ethereum/assets/0xb1cA3106051a217D84b380e6c32b7dB2f51F6A15/info.json b/blockchains/ethereum/assets/0xb1cA3106051a217D84b380e6c32b7dB2f51F6A15/info.json new file mode 100644 index 00000000..d84868ff --- /dev/null +++ b/blockchains/ethereum/assets/0xb1cA3106051a217D84b380e6c32b7dB2f51F6A15/info.json @@ -0,0 +1,11 @@ +{ + "name": "Arcadium X", + "symbol": "ACDX", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb1cA3106051a217D84b380e6c32b7dB2f51F6A15", + "status": "abandoned", + "id": "0xb1cA3106051a217D84b380e6c32b7dB2f51F6A15" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb1cA3106051a217D84b380e6c32b7dB2f51F6A15/logo.png b/blockchains/ethereum/assets/0xb1cA3106051a217D84b380e6c32b7dB2f51F6A15/logo.png new file mode 100644 index 00000000..9c4c2423 Binary files /dev/null and b/blockchains/ethereum/assets/0xb1cA3106051a217D84b380e6c32b7dB2f51F6A15/logo.png differ diff --git a/blockchains/ethereum/assets/0xb2089A7069861C8D90c8dA3aaCAB8e9188C0C531/info.json b/blockchains/ethereum/assets/0xb2089A7069861C8D90c8dA3aaCAB8e9188C0C531/info.json new file mode 100644 index 00000000..9b6502d2 --- /dev/null +++ b/blockchains/ethereum/assets/0xb2089A7069861C8D90c8dA3aaCAB8e9188C0C531/info.json @@ -0,0 +1,25 @@ +{ + "name": "Green", + "type": "ERC20", + "symbol": "GREEN", + "decimals": 8, + "website": "https://share.green/", + "description": "Green is the utility token powering the Green ecosystem. Green is a paradigm shift in blockchain technology. The revolutionary Green Smart Node can be operated on any device enabling users around the globe to mine digital rewards by converting and sharing electricity using software capable of running on any connected device.", + "explorer": "https://etherscan.io/token/0xb2089A7069861C8D90c8dA3aaCAB8e9188C0C531", + "status": "active", + "id": "0xb2089A7069861C8D90c8dA3aaCAB8e9188C0C531", + "links": [ + { + "name": "x", + "url": "https://x.com/setpowerfree" + }, + { + "name": "github", + "url": "https://github.com/green-blockchain" + }, + { + "name": "facebook", + "url": "https://facebook.com/setpowerfree" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb2089A7069861C8D90c8dA3aaCAB8e9188C0C531/logo.png b/blockchains/ethereum/assets/0xb2089A7069861C8D90c8dA3aaCAB8e9188C0C531/logo.png new file mode 100644 index 00000000..241acf12 Binary files /dev/null and b/blockchains/ethereum/assets/0xb2089A7069861C8D90c8dA3aaCAB8e9188C0C531/logo.png differ diff --git a/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/info.json b/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/info.json new file mode 100644 index 00000000..7010c2f2 --- /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 00000000..1aea1924 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 00000000..ae0cb8c4 --- /dev/null +++ b/blockchains/ethereum/assets/0xb2617246d0c6c0087f18703d576831899ca94f01/info.json @@ -0,0 +1,52 @@ +{ + "name": "ZigCoin (ZIG)", + "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 00000000..f5410d74 Binary files /dev/null and b/blockchains/ethereum/assets/0xb2617246d0c6c0087f18703d576831899ca94f01/logo.png differ diff --git a/blockchains/ethereum/assets/0xb28f9C9B71B0C3885AE441A3c0F51027b760a991/info.json b/blockchains/ethereum/assets/0xb28f9C9B71B0C3885AE441A3c0F51027b760a991/info.json new file mode 100644 index 00000000..25bb605b --- /dev/null +++ b/blockchains/ethereum/assets/0xb28f9C9B71B0C3885AE441A3c0F51027b760a991/info.json @@ -0,0 +1,11 @@ +{ + "name": "MADCAP", + "symbol": "MADCAP", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb28f9C9B71B0C3885AE441A3c0F51027b760a991", + "status": "abandoned", + "id": "0xb28f9C9B71B0C3885AE441A3c0F51027b760a991" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb28f9C9B71B0C3885AE441A3c0F51027b760a991/logo.png b/blockchains/ethereum/assets/0xb28f9C9B71B0C3885AE441A3c0F51027b760a991/logo.png new file mode 100644 index 00000000..c938fde9 Binary files /dev/null and b/blockchains/ethereum/assets/0xb28f9C9B71B0C3885AE441A3c0F51027b760a991/logo.png differ diff --git a/blockchains/ethereum/assets/0xb2C822a1b923E06Dbd193d2cFc7ad15388EA09DD/info.json b/blockchains/ethereum/assets/0xb2C822a1b923E06Dbd193d2cFc7ad15388EA09DD/info.json new file mode 100644 index 00000000..fbe0c5f1 --- /dev/null +++ b/blockchains/ethereum/assets/0xb2C822a1b923E06Dbd193d2cFc7ad15388EA09DD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vampire Protocol", + "website": "https://vampire.finance/", + "description": "VAMP is native token for Vampire Protocol. VAMP gains value by rebasing and farming tokens & items. MANA Token - a token that grants a holder an enhanced rebase.", + "explorer": "https://etherscan.io/token/0xb2C822a1b923E06Dbd193d2cFc7ad15388EA09DD", + "type": "ERC20", + "symbol": "VAMP", + "decimals": 18, + "status": "active", + "id": "0xb2C822a1b923E06Dbd193d2cFc7ad15388EA09DD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb2C822a1b923E06Dbd193d2cFc7ad15388EA09DD/logo.png b/blockchains/ethereum/assets/0xb2C822a1b923E06Dbd193d2cFc7ad15388EA09DD/logo.png new file mode 100644 index 00000000..e0e2a151 Binary files /dev/null and b/blockchains/ethereum/assets/0xb2C822a1b923E06Dbd193d2cFc7ad15388EA09DD/logo.png differ diff --git a/blockchains/ethereum/assets/0xb2F7EB1f2c37645bE61d73953035360e768D81E6/info.json b/blockchains/ethereum/assets/0xb2F7EB1f2c37645bE61d73953035360e768D81E6/info.json new file mode 100644 index 00000000..ff1f2e94 --- /dev/null +++ b/blockchains/ethereum/assets/0xb2F7EB1f2c37645bE61d73953035360e768D81E6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cobinhood Token", + "symbol": "COB", + "type": "ERC20", + "decimals": 18, + "description": "Cobinhood (COB) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.cobinhood.com", + "explorer": "https://etherscan.io/token/0xb2F7EB1f2c37645bE61d73953035360e768D81E6", + "status": "active", + "id": "0xb2F7EB1f2c37645bE61d73953035360e768D81E6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb2F7EB1f2c37645bE61d73953035360e768D81E6/logo.png b/blockchains/ethereum/assets/0xb2F7EB1f2c37645bE61d73953035360e768D81E6/logo.png new file mode 100755 index 00000000..28fb1c8b Binary files /dev/null and b/blockchains/ethereum/assets/0xb2F7EB1f2c37645bE61d73953035360e768D81E6/logo.png differ diff --git a/blockchains/ethereum/assets/0xb2d25d27f3f8F2265beDC400f00dac8B7521106a/info.json b/blockchains/ethereum/assets/0xb2d25d27f3f8F2265beDC400f00dac8B7521106a/info.json new file mode 100644 index 00000000..4be3ae90 --- /dev/null +++ b/blockchains/ethereum/assets/0xb2d25d27f3f8F2265beDC400f00dac8B7521106a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gift Card: Starbucks", + "symbol": "GCSTAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb2d25d27f3f8F2265beDC400f00dac8B7521106a", + "status": "abandoned", + "id": "0xb2d25d27f3f8F2265beDC400f00dac8B7521106a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb2d25d27f3f8F2265beDC400f00dac8B7521106a/logo.png b/blockchains/ethereum/assets/0xb2d25d27f3f8F2265beDC400f00dac8B7521106a/logo.png new file mode 100644 index 00000000..5475a83e Binary files /dev/null and b/blockchains/ethereum/assets/0xb2d25d27f3f8F2265beDC400f00dac8B7521106a/logo.png differ diff --git a/blockchains/ethereum/assets/0xb2fDd1a08c08714Ce3Ccd38fde3D9b9f300Fa9Cc/info.json b/blockchains/ethereum/assets/0xb2fDd1a08c08714Ce3Ccd38fde3D9b9f300Fa9Cc/info.json new file mode 100644 index 00000000..8ad711e5 --- /dev/null +++ b/blockchains/ethereum/assets/0xb2fDd1a08c08714Ce3Ccd38fde3D9b9f300Fa9Cc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kork Token", + "symbol": "Kork", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb2fDd1a08c08714Ce3Ccd38fde3D9b9f300Fa9Cc", + "status": "abandoned", + "id": "0xb2fDd1a08c08714Ce3Ccd38fde3D9b9f300Fa9Cc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb2fDd1a08c08714Ce3Ccd38fde3D9b9f300Fa9Cc/logo.png b/blockchains/ethereum/assets/0xb2fDd1a08c08714Ce3Ccd38fde3D9b9f300Fa9Cc/logo.png new file mode 100755 index 00000000..47b02b30 Binary files /dev/null and b/blockchains/ethereum/assets/0xb2fDd1a08c08714Ce3Ccd38fde3D9b9f300Fa9Cc/logo.png differ diff --git a/blockchains/ethereum/assets/0xb30fAE8C3496455dfa29C171096e9B55076B1561/info.json b/blockchains/ethereum/assets/0xb30fAE8C3496455dfa29C171096e9B55076B1561/info.json new file mode 100644 index 00000000..e60f7aba --- /dev/null +++ b/blockchains/ethereum/assets/0xb30fAE8C3496455dfa29C171096e9B55076B1561/info.json @@ -0,0 +1,11 @@ +{ + "name": "New Era 2020", + "symbol": "ERA20", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb30fAE8C3496455dfa29C171096e9B55076B1561", + "status": "abandoned", + "id": "0xb30fAE8C3496455dfa29C171096e9B55076B1561" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb30fAE8C3496455dfa29C171096e9B55076B1561/logo.png b/blockchains/ethereum/assets/0xb30fAE8C3496455dfa29C171096e9B55076B1561/logo.png new file mode 100644 index 00000000..47fa2c71 Binary files /dev/null and b/blockchains/ethereum/assets/0xb30fAE8C3496455dfa29C171096e9B55076B1561/logo.png differ diff --git a/blockchains/ethereum/assets/0xb3104b4B9Da82025E8b9F8Fb28b3553ce2f67069/info.json b/blockchains/ethereum/assets/0xb3104b4B9Da82025E8b9F8Fb28b3553ce2f67069/info.json new file mode 100644 index 00000000..561aa2c1 --- /dev/null +++ b/blockchains/ethereum/assets/0xb3104b4B9Da82025E8b9F8Fb28b3553ce2f67069/info.json @@ -0,0 +1,11 @@ +{ + "name": "BIX Token", + "symbol": "BIX", + "type": "ERC20", + "decimals": 18, + "description": "The Bibox Token (BIX) is a cryptocurrency built by the Bibox exchange.", + "website": "https://www.bibox.com", + "explorer": "https://etherscan.io/token/0xb3104b4B9Da82025E8b9F8Fb28b3553ce2f67069", + "status": "active", + "id": "0xb3104b4B9Da82025E8b9F8Fb28b3553ce2f67069" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb3104b4B9Da82025E8b9F8Fb28b3553ce2f67069/logo.png b/blockchains/ethereum/assets/0xb3104b4B9Da82025E8b9F8Fb28b3553ce2f67069/logo.png new file mode 100755 index 00000000..c92d6243 Binary files /dev/null and b/blockchains/ethereum/assets/0xb3104b4B9Da82025E8b9F8Fb28b3553ce2f67069/logo.png differ diff --git a/blockchains/ethereum/assets/0xb3203DB25a01fa7950a860B42b899Ad7Da52DDD6/info.json b/blockchains/ethereum/assets/0xb3203DB25a01fa7950a860B42b899Ad7Da52DDD6/info.json new file mode 100644 index 00000000..55eccce2 --- /dev/null +++ b/blockchains/ethereum/assets/0xb3203DB25a01fa7950a860B42b899Ad7Da52DDD6/info.json @@ -0,0 +1,11 @@ +{ + "name": "PlexCoin", + "symbol": "PLX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb3203DB25a01fa7950a860B42b899Ad7Da52DDD6", + "status": "abandoned", + "id": "0xb3203DB25a01fa7950a860B42b899Ad7Da52DDD6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb3203DB25a01fa7950a860B42b899Ad7Da52DDD6/logo.png b/blockchains/ethereum/assets/0xb3203DB25a01fa7950a860B42b899Ad7Da52DDD6/logo.png new file mode 100644 index 00000000..4dde97a2 Binary files /dev/null and b/blockchains/ethereum/assets/0xb3203DB25a01fa7950a860B42b899Ad7Da52DDD6/logo.png differ diff --git a/blockchains/ethereum/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/info.json b/blockchains/ethereum/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/info.json new file mode 100644 index 00000000..ef1e8ea5 --- /dev/null +++ b/blockchains/ethereum/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/info.json @@ -0,0 +1,29 @@ +{ + "name": "OpenSwap", + "website": "https://openswap.xyz", + "description": "OpenSwap is an integrated one-stop DeFi hub designed to revolutionize on-chain liquidity.", + "explorer": "https://etherscan.io/token/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93", + "type": "ERC20", + "symbol": "OSWAP", + "decimals": 18, + "status": "active", + "id": "0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93", + "links": [ + { + "name": "x", + "url": "https://x.com/openswapdex" + }, + { + "name": "blog", + "url": "https://openswapdex.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/openswapdex" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/logo.png b/blockchains/ethereum/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/logo.png new file mode 100644 index 00000000..6b4601ea Binary files /dev/null and b/blockchains/ethereum/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/logo.png differ diff --git a/blockchains/ethereum/assets/0xb339FcA531367067e98d7c4f9303Ffeadff7B881/info.json b/blockchains/ethereum/assets/0xb339FcA531367067e98d7c4f9303Ffeadff7B881/info.json new file mode 100644 index 00000000..784ebcc8 --- /dev/null +++ b/blockchains/ethereum/assets/0xb339FcA531367067e98d7c4f9303Ffeadff7B881/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aludra Network", + "website": "https://aludra.network", + "description": "Aludra is a Decentralized Network where Financial Instruments are Traded. We Provide Services and Trust in OTC Sales for Cryptocurrency", + "explorer": "https://etherscan.io/token/0xb339FcA531367067e98d7c4f9303Ffeadff7B881", + "type": "ERC20", + "symbol": "ALD", + "decimals": 18, + "status": "active", + "id": "0xb339FcA531367067e98d7c4f9303Ffeadff7B881" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb339FcA531367067e98d7c4f9303Ffeadff7B881/logo.png b/blockchains/ethereum/assets/0xb339FcA531367067e98d7c4f9303Ffeadff7B881/logo.png new file mode 100644 index 00000000..57303450 Binary files /dev/null and b/blockchains/ethereum/assets/0xb339FcA531367067e98d7c4f9303Ffeadff7B881/logo.png differ diff --git a/blockchains/ethereum/assets/0xb33D999469a7e6b9EbC25A3a05248287b855eD46/info.json b/blockchains/ethereum/assets/0xb33D999469a7e6b9EbC25A3a05248287b855eD46/info.json new file mode 100644 index 00000000..8112fad3 --- /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 00000000..ea955241 Binary files /dev/null and b/blockchains/ethereum/assets/0xb33D999469a7e6b9EbC25A3a05248287b855eD46/logo.png differ diff --git a/blockchains/ethereum/assets/0xb3465621DEaA4bDEC59f8c9eFd265aD2fe44c36B/info.json b/blockchains/ethereum/assets/0xb3465621DEaA4bDEC59f8c9eFd265aD2fe44c36B/info.json new file mode 100644 index 00000000..57b49aa6 --- /dev/null +++ b/blockchains/ethereum/assets/0xb3465621DEaA4bDEC59f8c9eFd265aD2fe44c36B/info.json @@ -0,0 +1,11 @@ +{ + "name": "DAT", + "symbol": "DAT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb3465621DEaA4bDEC59f8c9eFd265aD2fe44c36B", + "status": "abandoned", + "id": "0xb3465621DEaA4bDEC59f8c9eFd265aD2fe44c36B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb3465621DEaA4bDEC59f8c9eFd265aD2fe44c36B/logo.png b/blockchains/ethereum/assets/0xb3465621DEaA4bDEC59f8c9eFd265aD2fe44c36B/logo.png new file mode 100644 index 00000000..c68d491a Binary files /dev/null and b/blockchains/ethereum/assets/0xb3465621DEaA4bDEC59f8c9eFd265aD2fe44c36B/logo.png differ diff --git a/blockchains/ethereum/assets/0xb35e3E3E8A95Fd245d5C912118045459AaB9243b/info.json b/blockchains/ethereum/assets/0xb35e3E3E8A95Fd245d5C912118045459AaB9243b/info.json new file mode 100644 index 00000000..c69c8ca5 --- /dev/null +++ b/blockchains/ethereum/assets/0xb35e3E3E8A95Fd245d5C912118045459AaB9243b/info.json @@ -0,0 +1,11 @@ +{ + "name": "SmartIDentity.io", + "symbol": "SID", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb35e3E3E8A95Fd245d5C912118045459AaB9243b", + "status": "abandoned", + "id": "0xb35e3E3E8A95Fd245d5C912118045459AaB9243b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb35e3E3E8A95Fd245d5C912118045459AaB9243b/logo.png b/blockchains/ethereum/assets/0xb35e3E3E8A95Fd245d5C912118045459AaB9243b/logo.png new file mode 100644 index 00000000..7827f228 Binary files /dev/null and b/blockchains/ethereum/assets/0xb35e3E3E8A95Fd245d5C912118045459AaB9243b/logo.png differ diff --git a/blockchains/ethereum/assets/0xb3616550aBc8AF79c7A5902DEF9Efa3bC9A95200/info.json b/blockchains/ethereum/assets/0xb3616550aBc8AF79c7A5902DEF9Efa3bC9A95200/info.json new file mode 100644 index 00000000..ec6755d6 --- /dev/null +++ b/blockchains/ethereum/assets/0xb3616550aBc8AF79c7A5902DEF9Efa3bC9A95200/info.json @@ -0,0 +1,11 @@ +{ + "name": "Telex", + "symbol": "TLX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb3616550aBc8AF79c7A5902DEF9Efa3bC9A95200", + "status": "abandoned", + "id": "0xb3616550aBc8AF79c7A5902DEF9Efa3bC9A95200" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb3616550aBc8AF79c7A5902DEF9Efa3bC9A95200/logo.png b/blockchains/ethereum/assets/0xb3616550aBc8AF79c7A5902DEF9Efa3bC9A95200/logo.png new file mode 100755 index 00000000..7c38ac81 Binary files /dev/null and b/blockchains/ethereum/assets/0xb3616550aBc8AF79c7A5902DEF9Efa3bC9A95200/logo.png differ diff --git a/blockchains/ethereum/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json b/blockchains/ethereum/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json new file mode 100644 index 00000000..8f699788 --- /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 00000000..85dccc98 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 00000000..ea5bfc47 --- /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 00000000..47cb1e7b Binary files /dev/null and b/blockchains/ethereum/assets/0xb3999F658C0391d94A37f7FF328F3feC942BcADC/logo.png differ diff --git a/blockchains/ethereum/assets/0xb3BACe433288645114FE8e8aA91F87659CBF665b/info.json b/blockchains/ethereum/assets/0xb3BACe433288645114FE8e8aA91F87659CBF665b/info.json new file mode 100644 index 00000000..e2a0aab5 --- /dev/null +++ b/blockchains/ethereum/assets/0xb3BACe433288645114FE8e8aA91F87659CBF665b/info.json @@ -0,0 +1,11 @@ +{ + "name": "WalletPlusX", + "symbol": "WPX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://wplus.io/", + "explorer": "https://etherscan.io/token/0xb3BACe433288645114FE8e8aA91F87659CBF665b", + "status": "abandoned", + "id": "0xb3BACe433288645114FE8e8aA91F87659CBF665b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb3BACe433288645114FE8e8aA91F87659CBF665b/logo.png b/blockchains/ethereum/assets/0xb3BACe433288645114FE8e8aA91F87659CBF665b/logo.png new file mode 100644 index 00000000..51dda262 Binary files /dev/null and b/blockchains/ethereum/assets/0xb3BACe433288645114FE8e8aA91F87659CBF665b/logo.png differ diff --git a/blockchains/ethereum/assets/0xb3Bd49E28f8F832b8d1E246106991e546c323502/info.json b/blockchains/ethereum/assets/0xb3Bd49E28f8F832b8d1E246106991e546c323502/info.json new file mode 100644 index 00000000..0060d2a8 --- /dev/null +++ b/blockchains/ethereum/assets/0xb3Bd49E28f8F832b8d1E246106991e546c323502/info.json @@ -0,0 +1,11 @@ +{ + "name": "Global Messaging Token", + "symbol": "GMT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.mercuryprotocol.com/", + "explorer": "https://etherscan.io/token/0xb3Bd49E28f8F832b8d1E246106991e546c323502", + "status": "abandoned", + "id": "0xb3Bd49E28f8F832b8d1E246106991e546c323502" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb3Bd49E28f8F832b8d1E246106991e546c323502/logo.png b/blockchains/ethereum/assets/0xb3Bd49E28f8F832b8d1E246106991e546c323502/logo.png new file mode 100644 index 00000000..656d4f4b Binary files /dev/null and b/blockchains/ethereum/assets/0xb3Bd49E28f8F832b8d1E246106991e546c323502/logo.png differ diff --git a/blockchains/ethereum/assets/0xb4058411967D5046f3510943103805be61f0600E/info.json b/blockchains/ethereum/assets/0xb4058411967D5046f3510943103805be61f0600E/info.json new file mode 100644 index 00000000..c585381e --- /dev/null +++ b/blockchains/ethereum/assets/0xb4058411967D5046f3510943103805be61f0600E/info.json @@ -0,0 +1,11 @@ +{ + "name": "STONK", + "symbol": "STONK", + "type": "ERC20", + "decimals": 18, + "description": "$STONK is an indicator for DeFi. $STONK's value is derived from a balancer pool of DeFi's class leading protocol-layer contracts, consisting of COMP, LINK , KNC, ETH, SNX, REP, LRC. By investing in $STONK, you are investing in an index fund of DeFi's leading projects. Value in $STONK and value in the pool directly benefits all DeFi projects involved.", + "website": "https://stonk.dev/", + "explorer": "https://etherscan.io/token/0xb4058411967D5046f3510943103805be61f0600E", + "status": "active", + "id": "0xb4058411967D5046f3510943103805be61f0600E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb4058411967D5046f3510943103805be61f0600E/logo.png b/blockchains/ethereum/assets/0xb4058411967D5046f3510943103805be61f0600E/logo.png new file mode 100644 index 00000000..d38d1809 Binary files /dev/null and b/blockchains/ethereum/assets/0xb4058411967D5046f3510943103805be61f0600E/logo.png differ diff --git a/blockchains/ethereum/assets/0xb40E02f0E11081140a062f06b6692180c0199Dd9/info.json b/blockchains/ethereum/assets/0xb40E02f0E11081140a062f06b6692180c0199Dd9/info.json new file mode 100644 index 00000000..6645d083 --- /dev/null +++ b/blockchains/ethereum/assets/0xb40E02f0E11081140a062f06b6692180c0199Dd9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short ZRX-DAI v2", + "symbol": "dsZRX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb40E02f0E11081140a062f06b6692180c0199Dd9", + "status": "abandoned", + "id": "0xb40E02f0E11081140a062f06b6692180c0199Dd9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb40E02f0E11081140a062f06b6692180c0199Dd9/logo.png b/blockchains/ethereum/assets/0xb40E02f0E11081140a062f06b6692180c0199Dd9/logo.png new file mode 100644 index 00000000..5d44a2af Binary files /dev/null and b/blockchains/ethereum/assets/0xb40E02f0E11081140a062f06b6692180c0199Dd9/logo.png differ diff --git a/blockchains/ethereum/assets/0xb41654a43Aae0D7d17701C612567b4243aa9cD6C/info.json b/blockchains/ethereum/assets/0xb41654a43Aae0D7d17701C612567b4243aa9cD6C/info.json new file mode 100644 index 00000000..3f489556 --- /dev/null +++ b/blockchains/ethereum/assets/0xb41654a43Aae0D7d17701C612567b4243aa9cD6C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Play Win Collect Protocol", + "symbol": "PWCP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb41654a43Aae0D7d17701C612567b4243aa9cD6C", + "status": "abandoned", + "id": "0xb41654a43Aae0D7d17701C612567b4243aa9cD6C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb41654a43Aae0D7d17701C612567b4243aa9cD6C/logo.png b/blockchains/ethereum/assets/0xb41654a43Aae0D7d17701C612567b4243aa9cD6C/logo.png new file mode 100644 index 00000000..00059c7b Binary files /dev/null and b/blockchains/ethereum/assets/0xb41654a43Aae0D7d17701C612567b4243aa9cD6C/logo.png differ diff --git a/blockchains/ethereum/assets/0xb41f09a973a85c7F497c10B00a939dE667B55a78/info.json b/blockchains/ethereum/assets/0xb41f09a973a85c7F497c10B00a939dE667B55a78/info.json new file mode 100644 index 00000000..31825135 --- /dev/null +++ b/blockchains/ethereum/assets/0xb41f09a973a85c7F497c10B00a939dE667B55a78/info.json @@ -0,0 +1,11 @@ +{ + "name": "KNOW", + "symbol": "KNOW", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "https://kryptono.exchange/k/accounts/home", + "explorer": "https://etherscan.io/token/0xb41f09a973a85c7F497c10B00a939dE667B55a78", + "status": "abandoned", + "id": "0xb41f09a973a85c7F497c10B00a939dE667B55a78" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb41f09a973a85c7F497c10B00a939dE667B55a78/logo.png b/blockchains/ethereum/assets/0xb41f09a973a85c7F497c10B00a939dE667B55a78/logo.png new file mode 100644 index 00000000..178590e4 Binary files /dev/null and b/blockchains/ethereum/assets/0xb41f09a973a85c7F497c10B00a939dE667B55a78/logo.png differ diff --git a/blockchains/ethereum/assets/0xb444208cB0516C150178fCf9a52604BC04A1aCEa/info.json b/blockchains/ethereum/assets/0xb444208cB0516C150178fCf9a52604BC04A1aCEa/info.json new file mode 100644 index 00000000..dbc1a07e --- /dev/null +++ b/blockchains/ethereum/assets/0xb444208cB0516C150178fCf9a52604BC04A1aCEa/info.json @@ -0,0 +1,11 @@ +{ + "name": "GreenMed", + "symbol": "GRMD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb444208cB0516C150178fCf9a52604BC04A1aCEa", + "status": "abandoned", + "id": "0xb444208cB0516C150178fCf9a52604BC04A1aCEa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb444208cB0516C150178fCf9a52604BC04A1aCEa/logo.png b/blockchains/ethereum/assets/0xb444208cB0516C150178fCf9a52604BC04A1aCEa/logo.png new file mode 100755 index 00000000..9dd3cf46 Binary files /dev/null and b/blockchains/ethereum/assets/0xb444208cB0516C150178fCf9a52604BC04A1aCEa/logo.png differ diff --git a/blockchains/ethereum/assets/0xb48E0F69e6A3064f5498D495F77AD83e0874ab28/info.json b/blockchains/ethereum/assets/0xb48E0F69e6A3064f5498D495F77AD83e0874ab28/info.json new file mode 100644 index 00000000..478cccc9 --- /dev/null +++ b/blockchains/ethereum/assets/0xb48E0F69e6A3064f5498D495F77AD83e0874ab28/info.json @@ -0,0 +1,21 @@ +{ + "name": "CXN Network", + "website": "https://cxn.network", + "description": "CXN Network is a research-and-deploy start-up, which aims to build products around centralized and decentralized finance", + "explorer": "https://etherscan.io/token/0xb48E0F69e6A3064f5498D495F77AD83e0874ab28", + "type": "ERC20", + "symbol": "CXN", + "decimals": 18, + "status": "active", + "id": "0xb48E0F69e6A3064f5498D495F77AD83e0874ab28", + "links": [ + { + "name": "source_code", + "url": "https://gitlab.com/beejay141/cxnsol" + }, + { + "name": "whitepaper", + "url": "https://cxn.network/files/Whitepaper-CXN.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb48E0F69e6A3064f5498D495F77AD83e0874ab28/logo.png b/blockchains/ethereum/assets/0xb48E0F69e6A3064f5498D495F77AD83e0874ab28/logo.png new file mode 100644 index 00000000..9e991feb Binary files /dev/null and b/blockchains/ethereum/assets/0xb48E0F69e6A3064f5498D495F77AD83e0874ab28/logo.png differ diff --git a/blockchains/ethereum/assets/0xb4a525631FB867cE79e6DD07B86B9A098501acd5/info.json b/blockchains/ethereum/assets/0xb4a525631FB867cE79e6DD07B86B9A098501acd5/info.json new file mode 100644 index 00000000..f8e4514e --- /dev/null +++ b/blockchains/ethereum/assets/0xb4a525631FB867cE79e6DD07B86B9A098501acd5/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoMarketCloud", + "symbol": "CMC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb4a525631FB867cE79e6DD07B86B9A098501acd5", + "status": "abandoned", + "id": "0xb4a525631FB867cE79e6DD07B86B9A098501acd5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb4a525631FB867cE79e6DD07B86B9A098501acd5/logo.png b/blockchains/ethereum/assets/0xb4a525631FB867cE79e6DD07B86B9A098501acd5/logo.png new file mode 100644 index 00000000..1a102631 Binary files /dev/null and b/blockchains/ethereum/assets/0xb4a525631FB867cE79e6DD07B86B9A098501acd5/logo.png differ diff --git a/blockchains/ethereum/assets/0xb4d0FDFC8497AEF97d3c2892AE682eE06064A2BC/info.json b/blockchains/ethereum/assets/0xb4d0FDFC8497AEF97d3c2892AE682eE06064A2BC/info.json new file mode 100644 index 00000000..d9cdae13 --- /dev/null +++ b/blockchains/ethereum/assets/0xb4d0FDFC8497AEF97d3c2892AE682eE06064A2BC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Formosa Financial Token", + "symbol": "FMF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb4d0FDFC8497AEF97d3c2892AE682eE06064A2BC", + "status": "abandoned", + "id": "0xb4d0FDFC8497AEF97d3c2892AE682eE06064A2BC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb4d0FDFC8497AEF97d3c2892AE682eE06064A2BC/logo.png b/blockchains/ethereum/assets/0xb4d0FDFC8497AEF97d3c2892AE682eE06064A2BC/logo.png new file mode 100644 index 00000000..0e76b6d8 Binary files /dev/null and b/blockchains/ethereum/assets/0xb4d0FDFC8497AEF97d3c2892AE682eE06064A2BC/logo.png differ diff --git a/blockchains/ethereum/assets/0xb4eA1e0E82814B8D357Dcf864083980972CE62AA/info.json b/blockchains/ethereum/assets/0xb4eA1e0E82814B8D357Dcf864083980972CE62AA/info.json new file mode 100644 index 00000000..17418316 --- /dev/null +++ b/blockchains/ethereum/assets/0xb4eA1e0E82814B8D357Dcf864083980972CE62AA/info.json @@ -0,0 +1,11 @@ +{ + "name": "KITE COIN", + "symbol": "KITE", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb4eA1e0E82814B8D357Dcf864083980972CE62AA", + "status": "abandoned", + "id": "0xb4eA1e0E82814B8D357Dcf864083980972CE62AA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb4eA1e0E82814B8D357Dcf864083980972CE62AA/logo.png b/blockchains/ethereum/assets/0xb4eA1e0E82814B8D357Dcf864083980972CE62AA/logo.png new file mode 100644 index 00000000..f1368965 Binary files /dev/null and b/blockchains/ethereum/assets/0xb4eA1e0E82814B8D357Dcf864083980972CE62AA/logo.png differ diff --git a/blockchains/ethereum/assets/0xb51925A39d3d9e81Bb77407CD38468797B5be6d2/info.json b/blockchains/ethereum/assets/0xb51925A39d3d9e81Bb77407CD38468797B5be6d2/info.json new file mode 100644 index 00000000..068d3904 --- /dev/null +++ b/blockchains/ethereum/assets/0xb51925A39d3d9e81Bb77407CD38468797B5be6d2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Golassocoin", + "symbol": "GSN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb51925A39d3d9e81Bb77407CD38468797B5be6d2", + "status": "abandoned", + "id": "0xb51925A39d3d9e81Bb77407CD38468797B5be6d2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb51925A39d3d9e81Bb77407CD38468797B5be6d2/logo.png b/blockchains/ethereum/assets/0xb51925A39d3d9e81Bb77407CD38468797B5be6d2/logo.png new file mode 100644 index 00000000..5f2f027b Binary files /dev/null and b/blockchains/ethereum/assets/0xb51925A39d3d9e81Bb77407CD38468797B5be6d2/logo.png differ diff --git a/blockchains/ethereum/assets/0xb51b3DC407D8722FEAecA9229D42EAdf5fCcdcEC/info.json b/blockchains/ethereum/assets/0xb51b3DC407D8722FEAecA9229D42EAdf5fCcdcEC/info.json new file mode 100644 index 00000000..afa3889f --- /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 00000000..6f45efda --- /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 00000000..50198ae8 Binary files /dev/null and b/blockchains/ethereum/assets/0xb51db25c920C16F2865C37011c3Eec91Db946B07/logo.png differ diff --git a/blockchains/ethereum/assets/0xb525Ecee288B99216CD481C56b6EFbdbE9bF90b5/info.json b/blockchains/ethereum/assets/0xb525Ecee288B99216CD481C56b6EFbdbE9bF90b5/info.json new file mode 100644 index 00000000..f8ed8d99 --- /dev/null +++ b/blockchains/ethereum/assets/0xb525Ecee288B99216CD481C56b6EFbdbE9bF90b5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kuma Inu Token", + "website": "https://kumatoken.com", + "description": "Decentralized Meme Tokens that grew into a vibrant ecosystem.", + "explorer": "https://etherscan.io/token/0xb525Ecee288B99216CD481C56b6EFbdbE9bF90b5", + "type": "ERC20", + "symbol": "KUMA", + "decimals": 18, + "status": "abandoned", + "id": "0xb525Ecee288B99216CD481C56b6EFbdbE9bF90b5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb525Ecee288B99216CD481C56b6EFbdbE9bF90b5/logo.png b/blockchains/ethereum/assets/0xb525Ecee288B99216CD481C56b6EFbdbE9bF90b5/logo.png new file mode 100644 index 00000000..277a8ec6 Binary files /dev/null and b/blockchains/ethereum/assets/0xb525Ecee288B99216CD481C56b6EFbdbE9bF90b5/logo.png differ diff --git a/blockchains/ethereum/assets/0xb526FD41360c98929006f3bDcBd16d55dE4b0069/info.json b/blockchains/ethereum/assets/0xb526FD41360c98929006f3bDcBd16d55dE4b0069/info.json new file mode 100644 index 00000000..d2223d65 --- /dev/null +++ b/blockchains/ethereum/assets/0xb526FD41360c98929006f3bDcBd16d55dE4b0069/info.json @@ -0,0 +1,21 @@ +{ + "name": "THIRM", + "website": "https://thirm.com", + "description": "THIRM PROTOCOL is a Cross-chain & Cross-platform Lending Protocol built on Ethereum. Thirm Protocol automatically lends pooled user cryptocurrencies to the highest paying protocol and generates the highest possible APY.", + "explorer": "https://etherscan.io/token/0xb526FD41360c98929006f3bDcBd16d55dE4b0069", + "type": "ERC20", + "symbol": "THIRM", + "decimals": 18, + "status": "active", + "id": "0xb526FD41360c98929006f3bDcBd16d55dE4b0069", + "links": [ + { + "name": "github", + "url": "https://github.com/thirmtoken" + }, + { + "name": "x", + "url": "https://x.com/thirmprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb526FD41360c98929006f3bDcBd16d55dE4b0069/logo.png b/blockchains/ethereum/assets/0xb526FD41360c98929006f3bDcBd16d55dE4b0069/logo.png new file mode 100644 index 00000000..7ef7f7ef Binary files /dev/null and b/blockchains/ethereum/assets/0xb526FD41360c98929006f3bDcBd16d55dE4b0069/logo.png differ diff --git a/blockchains/ethereum/assets/0xb53A96bcBdD9CF78dfF20BAB6C2be7bAec8f00f8/info.json b/blockchains/ethereum/assets/0xb53A96bcBdD9CF78dfF20BAB6C2be7bAec8f00f8/info.json new file mode 100644 index 00000000..adbf3790 --- /dev/null +++ b/blockchains/ethereum/assets/0xb53A96bcBdD9CF78dfF20BAB6C2be7bAec8f00f8/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETHGAS", + "symbol": "eGAS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb53A96bcBdD9CF78dfF20BAB6C2be7bAec8f00f8", + "status": "abandoned", + "id": "0xb53A96bcBdD9CF78dfF20BAB6C2be7bAec8f00f8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb53A96bcBdD9CF78dfF20BAB6C2be7bAec8f00f8/logo.png b/blockchains/ethereum/assets/0xb53A96bcBdD9CF78dfF20BAB6C2be7bAec8f00f8/logo.png new file mode 100644 index 00000000..648add2f Binary files /dev/null and b/blockchains/ethereum/assets/0xb53A96bcBdD9CF78dfF20BAB6C2be7bAec8f00f8/logo.png differ diff --git a/blockchains/ethereum/assets/0xb54be748DEE3955aFb28B50beEd24f9db8992Cab/info.json b/blockchains/ethereum/assets/0xb54be748DEE3955aFb28B50beEd24f9db8992Cab/info.json new file mode 100644 index 00000000..a911c7d3 --- /dev/null +++ b/blockchains/ethereum/assets/0xb54be748DEE3955aFb28B50beEd24f9db8992Cab/info.json @@ -0,0 +1,11 @@ +{ + "name": "Serenity", + "symbol": "SET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb54be748DEE3955aFb28B50beEd24f9db8992Cab", + "status": "abandoned", + "id": "0xb54be748DEE3955aFb28B50beEd24f9db8992Cab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb54be748DEE3955aFb28B50beEd24f9db8992Cab/logo.png b/blockchains/ethereum/assets/0xb54be748DEE3955aFb28B50beEd24f9db8992Cab/logo.png new file mode 100644 index 00000000..8ec6c1f0 Binary files /dev/null and b/blockchains/ethereum/assets/0xb54be748DEE3955aFb28B50beEd24f9db8992Cab/logo.png differ diff --git a/blockchains/ethereum/assets/0xb562EC0261a9cB550A5fbcB46030088F1d6a53cF/info.json b/blockchains/ethereum/assets/0xb562EC0261a9cB550A5fbcB46030088F1d6a53cF/info.json new file mode 100644 index 00000000..b2a559ab --- /dev/null +++ b/blockchains/ethereum/assets/0xb562EC0261a9cB550A5fbcB46030088F1d6a53cF/info.json @@ -0,0 +1,11 @@ +{ + "name": "EOSpace", + "type": "ERC20", + "symbol": "EOP", + "decimals": 18, + "website": "", + "description": "-", + "explorer": "https://etherscan.io/token/0xb562ec0261a9cb550a5fbcb46030088f1d6a53cf", + "status": "active", + "id": "0xb562EC0261a9cB550A5fbcB46030088F1d6a53cF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb562EC0261a9cB550A5fbcB46030088F1d6a53cF/logo.png b/blockchains/ethereum/assets/0xb562EC0261a9cB550A5fbcB46030088F1d6a53cF/logo.png new file mode 100644 index 00000000..92977a39 Binary files /dev/null and b/blockchains/ethereum/assets/0xb562EC0261a9cB550A5fbcB46030088F1d6a53cF/logo.png differ diff --git a/blockchains/ethereum/assets/0xb581E3a7dB80fBAA821AB39342E9Cbfd2ce33c23/info.json b/blockchains/ethereum/assets/0xb581E3a7dB80fBAA821AB39342E9Cbfd2ce33c23/info.json new file mode 100644 index 00000000..54da3f25 --- /dev/null +++ b/blockchains/ethereum/assets/0xb581E3a7dB80fBAA821AB39342E9Cbfd2ce33c23/info.json @@ -0,0 +1,17 @@ +{ + "name": "Arcade Token", + "website": "https://arcade.city", + "description": "Arcade Token (ARCD) is the official cryptocurrency of Arcade City, the decentralized gig marketplace for rides, deliveries and more.", + "explorer": "https://etherscan.io/token/0xb581E3a7dB80fBAA821AB39342E9Cbfd2ce33c23", + "type": "ERC20", + "symbol": "ARCD", + "decimals": 18, + "status": "active", + "id": "0xb581E3a7dB80fBAA821AB39342E9Cbfd2ce33c23", + "links": [ + { + "name": "github", + "url": "https://github.com/ArcadeCity/arcd-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb581E3a7dB80fBAA821AB39342E9Cbfd2ce33c23/logo.png b/blockchains/ethereum/assets/0xb581E3a7dB80fBAA821AB39342E9Cbfd2ce33c23/logo.png new file mode 100644 index 00000000..20201f94 Binary files /dev/null and b/blockchains/ethereum/assets/0xb581E3a7dB80fBAA821AB39342E9Cbfd2ce33c23/logo.png differ diff --git a/blockchains/ethereum/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/info.json b/blockchains/ethereum/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/info.json new file mode 100644 index 00000000..88086f31 --- /dev/null +++ b/blockchains/ethereum/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/info.json @@ -0,0 +1,29 @@ +{ + "name": "Litentry", + "website": "https://www.litentry.com", + "description": "Decentralized identity authentication and user activity data management Infrastructure.", + "explorer": "https://etherscan.io/token/0xb59490ab09a0f526cc7305822ac65f2ab12f9723", + "type": "ERC20", + "symbol": "LIT", + "decimals": 18, + "status": "active", + "id": "0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723", + "links": [ + { + "name": "x", + "url": "https://x.com/litentry" + }, + { + "name": "github", + "url": "https://github.com/litentry/" + }, + { + "name": "telegram", + "url": "https://t.me/litentry" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/litentry/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/logo.png b/blockchains/ethereum/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/logo.png new file mode 100644 index 00000000..ec014d66 Binary files /dev/null and b/blockchains/ethereum/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/logo.png differ diff --git a/blockchains/ethereum/assets/0xb5A5F22694352C15B00323844aD545ABb2B11028/info.json b/blockchains/ethereum/assets/0xb5A5F22694352C15B00323844aD545ABb2B11028/info.json new file mode 100644 index 00000000..bc44776c --- /dev/null +++ b/blockchains/ethereum/assets/0xb5A5F22694352C15B00323844aD545ABb2B11028/info.json @@ -0,0 +1,11 @@ +{ + "name": "ICON", + "symbol": "ICX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb5A5F22694352C15B00323844aD545ABb2B11028", + "status": "abandoned", + "id": "0xb5A5F22694352C15B00323844aD545ABb2B11028" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb5A5F22694352C15B00323844aD545ABb2B11028/logo.png b/blockchains/ethereum/assets/0xb5A5F22694352C15B00323844aD545ABb2B11028/logo.png new file mode 100755 index 00000000..a5727ae6 Binary files /dev/null and b/blockchains/ethereum/assets/0xb5A5F22694352C15B00323844aD545ABb2B11028/logo.png differ diff --git a/blockchains/ethereum/assets/0xb5BB48567BfD0bFE9e4B08EF8b7f91556CC2a112/info.json b/blockchains/ethereum/assets/0xb5BB48567BfD0bFE9e4B08EF8b7f91556CC2a112/info.json new file mode 100644 index 00000000..d0ba0307 --- /dev/null +++ b/blockchains/ethereum/assets/0xb5BB48567BfD0bFE9e4B08EF8b7f91556CC2a112/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bankcoin", + "symbol": "BCASH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bankcoinbcash.com/", + "explorer": "https://etherscan.io/token/0xb5BB48567BfD0bFE9e4B08EF8b7f91556CC2a112", + "status": "abandoned", + "id": "0xb5BB48567BfD0bFE9e4B08EF8b7f91556CC2a112" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb5BB48567BfD0bFE9e4B08EF8b7f91556CC2a112/logo.png b/blockchains/ethereum/assets/0xb5BB48567BfD0bFE9e4B08EF8b7f91556CC2a112/logo.png new file mode 100755 index 00000000..8057f9ee Binary files /dev/null and b/blockchains/ethereum/assets/0xb5BB48567BfD0bFE9e4B08EF8b7f91556CC2a112/logo.png differ diff --git a/blockchains/ethereum/assets/0xb5a4ac5b04E777230bA3381195EfF6a60c3934F2/info.json b/blockchains/ethereum/assets/0xb5a4ac5b04E777230bA3381195EfF6a60c3934F2/info.json new file mode 100644 index 00000000..6060484d --- /dev/null +++ b/blockchains/ethereum/assets/0xb5a4ac5b04E777230bA3381195EfF6a60c3934F2/info.json @@ -0,0 +1,11 @@ +{ + "name": "inSure", + "symbol": "SURE", + "type": "ERC20", + "decimals": 18, + "description": "inSure (SURE) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://insuretoken.net", + "explorer": "https://etherscan.io/token/0xb5a4ac5b04E777230bA3381195EfF6a60c3934F2", + "status": "abandoned", + "id": "0xb5a4ac5b04E777230bA3381195EfF6a60c3934F2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb5b8F5616Fe42d5ceCA3e87F3FddbDd8F496d760/info.json b/blockchains/ethereum/assets/0xb5b8F5616Fe42d5ceCA3e87F3FddbDd8F496d760/info.json new file mode 100644 index 00000000..16f94a08 --- /dev/null +++ b/blockchains/ethereum/assets/0xb5b8F5616Fe42d5ceCA3e87F3FddbDd8F496d760/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZperToken", + "symbol": "ZPR", + "type": "ERC20", + "decimals": 18, + "description": "Decentralized Ecosystem for P2P Finance.", + "website": "https://zper.io/#", + "explorer": "https://etherscan.io/token/0xb5b8F5616Fe42d5ceCA3e87F3FddbDd8F496d760", + "status": "active", + "id": "0xb5b8F5616Fe42d5ceCA3e87F3FddbDd8F496d760" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb5b8F5616Fe42d5ceCA3e87F3FddbDd8F496d760/logo.png b/blockchains/ethereum/assets/0xb5b8F5616Fe42d5ceCA3e87F3FddbDd8F496d760/logo.png new file mode 100644 index 00000000..07bcab4f Binary files /dev/null and b/blockchains/ethereum/assets/0xb5b8F5616Fe42d5ceCA3e87F3FddbDd8F496d760/logo.png differ diff --git a/blockchains/ethereum/assets/0xb5f278Ee11811eFEC0692EC61b1e9f9984f2de11/info.json b/blockchains/ethereum/assets/0xb5f278Ee11811eFEC0692EC61b1e9f9984f2de11/info.json new file mode 100644 index 00000000..bd65e225 --- /dev/null +++ b/blockchains/ethereum/assets/0xb5f278Ee11811eFEC0692EC61b1e9f9984f2de11/info.json @@ -0,0 +1,11 @@ +{ + "name": "SmartMint BondFiat StableToken", + "symbol": "EMIT", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb5f278Ee11811eFEC0692EC61b1e9f9984f2de11", + "status": "abandoned", + "id": "0xb5f278Ee11811eFEC0692EC61b1e9f9984f2de11" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb5f278Ee11811eFEC0692EC61b1e9f9984f2de11/logo.png b/blockchains/ethereum/assets/0xb5f278Ee11811eFEC0692EC61b1e9f9984f2de11/logo.png new file mode 100644 index 00000000..7c6c919d Binary files /dev/null and b/blockchains/ethereum/assets/0xb5f278Ee11811eFEC0692EC61b1e9f9984f2de11/logo.png differ diff --git a/blockchains/ethereum/assets/0xb5fDe360d9d6D4Dddf6093a39F725081F9C601ae/info.json b/blockchains/ethereum/assets/0xb5fDe360d9d6D4Dddf6093a39F725081F9C601ae/info.json new file mode 100644 index 00000000..834efbf5 --- /dev/null +++ b/blockchains/ethereum/assets/0xb5fDe360d9d6D4Dddf6093a39F725081F9C601ae/info.json @@ -0,0 +1,20 @@ +{ + "name": "Initia", + "symbol": "INI", + "type": "ERC20", + "decimals": 4, + "description": "The INITIA Project will solve onboarding into the Metaverse/Crypto space by providing unique and novel event concepts.", + "website": "https://app.tryroll.com/token/INI", + "explorer": "https://etherscan.io/token/0xb5fDe360d9d6D4Dddf6093a39F725081F9C601ae", + "status": "active", + "id": "0xb5fDe360d9d6D4Dddf6093a39F725081F9C601ae", + "links": [ + { + "name": "docs", + "url": "https://app.tryroll.com/token/INI" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/ethereum/assets/0xb5fDe360d9d6D4Dddf6093a39F725081F9C601ae/logo.png b/blockchains/ethereum/assets/0xb5fDe360d9d6D4Dddf6093a39F725081F9C601ae/logo.png new file mode 100644 index 00000000..77f4b3fb Binary files /dev/null and b/blockchains/ethereum/assets/0xb5fDe360d9d6D4Dddf6093a39F725081F9C601ae/logo.png differ diff --git a/blockchains/ethereum/assets/0xb60Fde5D798236fBF1e2697B2A0645380921FccF/info.json b/blockchains/ethereum/assets/0xb60Fde5D798236fBF1e2697B2A0645380921FccF/info.json new file mode 100644 index 00000000..d970f3e5 --- /dev/null +++ b/blockchains/ethereum/assets/0xb60Fde5D798236fBF1e2697B2A0645380921FccF/info.json @@ -0,0 +1,11 @@ +{ + "name": "STONK", + "symbol": "STONK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb60Fde5D798236fBF1e2697B2A0645380921FccF", + "status": "abandoned", + "id": "0xb60Fde5D798236fBF1e2697B2A0645380921FccF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb60Fde5D798236fBF1e2697B2A0645380921FccF/logo.png b/blockchains/ethereum/assets/0xb60Fde5D798236fBF1e2697B2A0645380921FccF/logo.png new file mode 100644 index 00000000..d38d1809 Binary files /dev/null and b/blockchains/ethereum/assets/0xb60Fde5D798236fBF1e2697B2A0645380921FccF/logo.png differ diff --git a/blockchains/ethereum/assets/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2/info.json b/blockchains/ethereum/assets/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2/info.json new file mode 100644 index 00000000..342d368f --- /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 00000000..cfd787a6 Binary files /dev/null and b/blockchains/ethereum/assets/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2/logo.png differ diff --git a/blockchains/ethereum/assets/0xb6177A82b416F888D10c72b450Cd5442651d749a/info.json b/blockchains/ethereum/assets/0xb6177A82b416F888D10c72b450Cd5442651d749a/info.json new file mode 100644 index 00000000..742c48ec --- /dev/null +++ b/blockchains/ethereum/assets/0xb6177A82b416F888D10c72b450Cd5442651d749a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Horizon0x", + "symbol": "Hr0x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb6177A82b416F888D10c72b450Cd5442651d749a", + "status": "abandoned", + "id": "0xb6177A82b416F888D10c72b450Cd5442651d749a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb6177A82b416F888D10c72b450Cd5442651d749a/logo.png b/blockchains/ethereum/assets/0xb6177A82b416F888D10c72b450Cd5442651d749a/logo.png new file mode 100644 index 00000000..7df4b534 Binary files /dev/null and b/blockchains/ethereum/assets/0xb6177A82b416F888D10c72b450Cd5442651d749a/logo.png differ diff --git a/blockchains/ethereum/assets/0xb628919a5456fd746A6b7a9f1003040Ca63e6d45/info.json b/blockchains/ethereum/assets/0xb628919a5456fd746A6b7a9f1003040Ca63e6d45/info.json new file mode 100644 index 00000000..7aa347f2 --- /dev/null +++ b/blockchains/ethereum/assets/0xb628919a5456fd746A6b7a9f1003040Ca63e6d45/info.json @@ -0,0 +1,11 @@ +{ + "name": "Produce Pay", + "symbol": "PP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://producepay.io", + "explorer": "https://etherscan.io/token/0xb628919a5456fd746A6b7a9f1003040Ca63e6d45", + "status": "abandoned", + "id": "0xb628919a5456fd746A6b7a9f1003040Ca63e6d45" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb628919a5456fd746A6b7a9f1003040Ca63e6d45/logo.png b/blockchains/ethereum/assets/0xb628919a5456fd746A6b7a9f1003040Ca63e6d45/logo.png new file mode 100644 index 00000000..199f0004 Binary files /dev/null and b/blockchains/ethereum/assets/0xb628919a5456fd746A6b7a9f1003040Ca63e6d45/logo.png differ diff --git a/blockchains/ethereum/assets/0xb62d18DeA74045E822352CE4B3EE77319DC5ff2F/info.json b/blockchains/ethereum/assets/0xb62d18DeA74045E822352CE4B3EE77319DC5ff2F/info.json new file mode 100644 index 00000000..e56d2c0d --- /dev/null +++ b/blockchains/ethereum/assets/0xb62d18DeA74045E822352CE4B3EE77319DC5ff2F/info.json @@ -0,0 +1,11 @@ +{ + "name": "EventChain", + "symbol": "EVC", + "type": "ERC20", + "decimals": 18, + "description": "EventChain (EVC) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://eventchain.io", + "explorer": "https://etherscan.io/token/0xb62d18DeA74045E822352CE4B3EE77319DC5ff2F", + "status": "active", + "id": "0xb62d18DeA74045E822352CE4B3EE77319DC5ff2F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb62d18DeA74045E822352CE4B3EE77319DC5ff2F/logo.png b/blockchains/ethereum/assets/0xb62d18DeA74045E822352CE4B3EE77319DC5ff2F/logo.png new file mode 100644 index 00000000..602b49b0 Binary files /dev/null and b/blockchains/ethereum/assets/0xb62d18DeA74045E822352CE4B3EE77319DC5ff2F/logo.png differ diff --git a/blockchains/ethereum/assets/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC/info.json b/blockchains/ethereum/assets/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC/info.json new file mode 100644 index 00000000..972a1378 --- /dev/null +++ b/blockchains/ethereum/assets/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC/info.json @@ -0,0 +1,20 @@ +{ + "name": "Hearts", + "symbol": "HRTS", + "type": "ERC20", + "decimals": 4, + "description": "Nifty Hearts is the first NFT collection of original artworks energized with artist social tokens on Charged Particles.", + "website": "https://app.tryroll.com/token/HRTS", + "explorer": "https://etherscan.io/token/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC", + "status": "active", + "id": "0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC", + "links": [ + { + "name": "x", + "url": "https://x.com/NFTHearts" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC/logo.png b/blockchains/ethereum/assets/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC/logo.png new file mode 100644 index 00000000..dd0c47f5 Binary files /dev/null and b/blockchains/ethereum/assets/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC/logo.png differ diff --git a/blockchains/ethereum/assets/0xb683D83a532e2Cb7DFa5275eED3698436371cc9f/info.json b/blockchains/ethereum/assets/0xb683D83a532e2Cb7DFa5275eED3698436371cc9f/info.json new file mode 100644 index 00000000..f767ba61 --- /dev/null +++ b/blockchains/ethereum/assets/0xb683D83a532e2Cb7DFa5275eED3698436371cc9f/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTU Protocol", + "symbol": "BTU", + "type": "ERC20", + "decimals": 18, + "description": "BTU Protocol is a peer-to-peer booking protocol.", + "website": "https://www.btu-protocol.com", + "explorer": "https://etherscan.io/token/0xb683D83a532e2Cb7DFa5275eED3698436371cc9f", + "status": "active", + "id": "0xb683D83a532e2Cb7DFa5275eED3698436371cc9f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb683D83a532e2Cb7DFa5275eED3698436371cc9f/logo.png b/blockchains/ethereum/assets/0xb683D83a532e2Cb7DFa5275eED3698436371cc9f/logo.png new file mode 100644 index 00000000..5c748b8e Binary files /dev/null and b/blockchains/ethereum/assets/0xb683D83a532e2Cb7DFa5275eED3698436371cc9f/logo.png differ diff --git a/blockchains/ethereum/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json b/blockchains/ethereum/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json new file mode 100644 index 00000000..c23e2740 --- /dev/null +++ b/blockchains/ethereum/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json @@ -0,0 +1,28 @@ +{ + "name": "pTokens TLOS", + "symbol": "TLOS", + "type": "ERC20", + "decimals": 18, + "description": "pNetwork enables cross-chain movement of assets and data.", + "website": "https://ptokens.io/", + "explorer": "https://etherscan.io/token/0xb6C53431608E626AC81a9776ac3e999c5556717c", + "status": "active", + "id": "0xb6C53431608E626AC81a9776ac3e999c5556717c", + "links": [ + { + "name": "x", + "url": "https://x.com/pNetworkDeFi" + }, + { + "name": "github", + "url": "https://github.com/provable-things" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/telos/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/logo.png b/blockchains/ethereum/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/logo.png new file mode 100644 index 00000000..cc526a26 Binary files /dev/null and b/blockchains/ethereum/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/logo.png differ diff --git a/blockchains/ethereum/assets/0xb6E362a39db703f0F7cF582C9fc043A51624e53d/info.json b/blockchains/ethereum/assets/0xb6E362a39db703f0F7cF582C9fc043A51624e53d/info.json new file mode 100644 index 00000000..eabf1d35 --- /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 00000000..b1097ce8 Binary files /dev/null and b/blockchains/ethereum/assets/0xb6E362a39db703f0F7cF582C9fc043A51624e53d/logo.png differ diff --git a/blockchains/ethereum/assets/0xb6EE9668771a79be7967ee29a63D4184F8097143/info.json b/blockchains/ethereum/assets/0xb6EE9668771a79be7967ee29a63D4184F8097143/info.json new file mode 100644 index 00000000..65ca83f5 --- /dev/null +++ b/blockchains/ethereum/assets/0xb6EE9668771a79be7967ee29a63D4184F8097143/info.json @@ -0,0 +1,11 @@ +{ + "name": "CargoX Token", + "symbol": "CXO", + "type": "ERC20", + "decimals": 18, + "description": "CargoX aims to disrupt the global logistics industry by replacing legacy paper Bill of Lading documents with Smart B/L Contract based on blockchain technology to able to state and transfer cargo ownership rights without the hassle of handling paper.", + "website": "https://cargox.io/", + "explorer": "https://etherscan.io/token/0xb6EE9668771a79be7967ee29a63D4184F8097143", + "status": "active", + "id": "0xb6EE9668771a79be7967ee29a63D4184F8097143" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb6EE9668771a79be7967ee29a63D4184F8097143/logo.png b/blockchains/ethereum/assets/0xb6EE9668771a79be7967ee29a63D4184F8097143/logo.png new file mode 100644 index 00000000..931bbdeb Binary files /dev/null and b/blockchains/ethereum/assets/0xb6EE9668771a79be7967ee29a63D4184F8097143/logo.png differ diff --git a/blockchains/ethereum/assets/0xb6F2C2cc130473f88E3d887F42339Eb787475873/info.json b/blockchains/ethereum/assets/0xb6F2C2cc130473f88E3d887F42339Eb787475873/info.json new file mode 100644 index 00000000..9467c15f --- /dev/null +++ b/blockchains/ethereum/assets/0xb6F2C2cc130473f88E3d887F42339Eb787475873/info.json @@ -0,0 +1,11 @@ +{ + "name": "VILENET", + "symbol": "VLT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb6F2C2cc130473f88E3d887F42339Eb787475873", + "status": "abandoned", + "id": "0xb6F2C2cc130473f88E3d887F42339Eb787475873" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb6F2C2cc130473f88E3d887F42339Eb787475873/logo.png b/blockchains/ethereum/assets/0xb6F2C2cc130473f88E3d887F42339Eb787475873/logo.png new file mode 100644 index 00000000..17601b07 Binary files /dev/null and b/blockchains/ethereum/assets/0xb6F2C2cc130473f88E3d887F42339Eb787475873/logo.png differ diff --git a/blockchains/ethereum/assets/0xb6F43025B29196Af2dddd69b0a58AFBa079cD600/info.json b/blockchains/ethereum/assets/0xb6F43025B29196Af2dddd69b0a58AFBa079cD600/info.json new file mode 100644 index 00000000..bd8864bc --- /dev/null +++ b/blockchains/ethereum/assets/0xb6F43025B29196Af2dddd69b0a58AFBa079cD600/info.json @@ -0,0 +1,11 @@ +{ + "name": "智投链", + "symbol": "IIC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.iicoin.io/", + "explorer": "https://etherscan.io/token/0xb6F43025B29196Af2dddd69b0a58AFBa079cD600", + "status": "abandoned", + "id": "0xb6F43025B29196Af2dddd69b0a58AFBa079cD600" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb6F43025B29196Af2dddd69b0a58AFBa079cD600/logo.png b/blockchains/ethereum/assets/0xb6F43025B29196Af2dddd69b0a58AFBa079cD600/logo.png new file mode 100755 index 00000000..0003c7d0 Binary files /dev/null and b/blockchains/ethereum/assets/0xb6F43025B29196Af2dddd69b0a58AFBa079cD600/logo.png differ diff --git a/blockchains/ethereum/assets/0xb6c4267C4877BB0D6b1685Cfd85b0FBe82F105ec/info.json b/blockchains/ethereum/assets/0xb6c4267C4877BB0D6b1685Cfd85b0FBe82F105ec/info.json new file mode 100644 index 00000000..df6cb6dc --- /dev/null +++ b/blockchains/ethereum/assets/0xb6c4267C4877BB0D6b1685Cfd85b0FBe82F105ec/info.json @@ -0,0 +1,11 @@ +{ + "name": "Relevant", + "symbol": "REL", + "type": "ERC20", + "decimals": 18, + "description": "Relevant is an app for curating information based on quality, not clicks. Relevant uses a reputation system and economic incentives to encourage users to rank and organize content within topic-based communities. It’s based on the principle of inclusive hierarchy — anyone can participate but not everyone’s vote holds the same weight.", + "website": "https://relevant.community/", + "explorer": "https://etherscan.io/token/0xb6c4267C4877BB0D6b1685Cfd85b0FBe82F105ec", + "status": "active", + "id": "0xb6c4267C4877BB0D6b1685Cfd85b0FBe82F105ec" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb6c4267C4877BB0D6b1685Cfd85b0FBe82F105ec/logo.png b/blockchains/ethereum/assets/0xb6c4267C4877BB0D6b1685Cfd85b0FBe82F105ec/logo.png new file mode 100644 index 00000000..d21e0d12 Binary files /dev/null and b/blockchains/ethereum/assets/0xb6c4267C4877BB0D6b1685Cfd85b0FBe82F105ec/logo.png differ diff --git a/blockchains/ethereum/assets/0xb72E76cCf005313868DB7b48070901a44629da98/info.json b/blockchains/ethereum/assets/0xb72E76cCf005313868DB7b48070901a44629da98/info.json new file mode 100644 index 00000000..99794d54 --- /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 00000000..d59e742f Binary files /dev/null and b/blockchains/ethereum/assets/0xb72E76cCf005313868DB7b48070901a44629da98/logo.png differ diff --git a/blockchains/ethereum/assets/0xb7355bc855Dc4959e90316e25E592D38C480ab6f/info.json b/blockchains/ethereum/assets/0xb7355bc855Dc4959e90316e25E592D38C480ab6f/info.json new file mode 100644 index 00000000..cc07d7d1 --- /dev/null +++ b/blockchains/ethereum/assets/0xb7355bc855Dc4959e90316e25E592D38C480ab6f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pundi X Classic", + "symbol": "NPXC", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb7355bc855Dc4959e90316e25E592D38C480ab6f", + "status": "abandoned", + "id": "0xb7355bc855Dc4959e90316e25E592D38C480ab6f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb7355bc855Dc4959e90316e25E592D38C480ab6f/logo.png b/blockchains/ethereum/assets/0xb7355bc855Dc4959e90316e25E592D38C480ab6f/logo.png new file mode 100644 index 00000000..0baa8990 Binary files /dev/null and b/blockchains/ethereum/assets/0xb7355bc855Dc4959e90316e25E592D38C480ab6f/logo.png differ diff --git a/blockchains/ethereum/assets/0xb736bA66aAd83ADb2322D1f199Bfa32B3962f13C/info.json b/blockchains/ethereum/assets/0xb736bA66aAd83ADb2322D1f199Bfa32B3962f13C/info.json new file mode 100644 index 00000000..dd60b78d --- /dev/null +++ b/blockchains/ethereum/assets/0xb736bA66aAd83ADb2322D1f199Bfa32B3962f13C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bridge Protocol Token (ERC20)", + "website": "https://bridgeprotocol.io/", + "description": "Bridge Protocol ERC-20 utility token (BRDG) on the Ethereum network", + "explorer": "https://etherscan.io/token/0xb736bA66aAd83ADb2322D1f199Bfa32B3962f13C", + "type": "ERC20", + "symbol": "BRDG", + "decimals": 18, + "status": "active", + "id": "0xb736bA66aAd83ADb2322D1f199Bfa32B3962f13C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb736bA66aAd83ADb2322D1f199Bfa32B3962f13C/logo.png b/blockchains/ethereum/assets/0xb736bA66aAd83ADb2322D1f199Bfa32B3962f13C/logo.png new file mode 100644 index 00000000..7e1309cb Binary files /dev/null and b/blockchains/ethereum/assets/0xb736bA66aAd83ADb2322D1f199Bfa32B3962f13C/logo.png differ diff --git a/blockchains/ethereum/assets/0xb74C03ad08363613b6fB4e56D1F6DDFBe990e5eb/info.json b/blockchains/ethereum/assets/0xb74C03ad08363613b6fB4e56D1F6DDFBe990e5eb/info.json new file mode 100644 index 00000000..cf2d41bb --- /dev/null +++ b/blockchains/ethereum/assets/0xb74C03ad08363613b6fB4e56D1F6DDFBe990e5eb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Duarte Soberano", + "symbol": "DSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb74C03ad08363613b6fB4e56D1F6DDFBe990e5eb", + "status": "abandoned", + "id": "0xb74C03ad08363613b6fB4e56D1F6DDFBe990e5eb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb74C03ad08363613b6fB4e56D1F6DDFBe990e5eb/logo.png b/blockchains/ethereum/assets/0xb74C03ad08363613b6fB4e56D1F6DDFBe990e5eb/logo.png new file mode 100644 index 00000000..d8faa69e Binary files /dev/null and b/blockchains/ethereum/assets/0xb74C03ad08363613b6fB4e56D1F6DDFBe990e5eb/logo.png differ diff --git a/blockchains/ethereum/assets/0xb753428af26E81097e7fD17f40c88aaA3E04902c/info.json b/blockchains/ethereum/assets/0xb753428af26E81097e7fD17f40c88aaA3E04902c/info.json new file mode 100644 index 00000000..286b79f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xb753428af26E81097e7fD17f40c88aaA3E04902c/info.json @@ -0,0 +1,33 @@ +{ + "name": "saffron.finance", + "website": "https://saffron.finance", + "description": "Asset collateralization and risk customization protocol", + "explorer": "https://etherscan.io/token/0xb753428af26E81097e7fD17f40c88aaA3E04902c", + "type": "ERC20", + "symbol": "SFI", + "decimals": 18, + "status": "active", + "id": "0xb753428af26E81097e7fD17f40c88aaA3E04902c", + "links": [ + { + "name": "github", + "url": "https://github.com/saffron-finance/saffron" + }, + { + "name": "x", + "url": "https://x.com/saffron.finance" + }, + { + "name": "telegram", + "url": "https://t.me/saffronfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/pDXpXKY" + }, + { + "name": "medium", + "url": "https://medium.com/saffron-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb753428af26E81097e7fD17f40c88aaA3E04902c/logo.png b/blockchains/ethereum/assets/0xb753428af26E81097e7fD17f40c88aaA3E04902c/logo.png new file mode 100644 index 00000000..075a3d93 Binary files /dev/null and b/blockchains/ethereum/assets/0xb753428af26E81097e7fD17f40c88aaA3E04902c/logo.png differ diff --git a/blockchains/ethereum/assets/0xb7679F548DeCc6d047ad9263Ea6a4cF6c680ecbc/info.json b/blockchains/ethereum/assets/0xb7679F548DeCc6d047ad9263Ea6a4cF6c680ecbc/info.json new file mode 100644 index 00000000..db22854d --- /dev/null +++ b/blockchains/ethereum/assets/0xb7679F548DeCc6d047ad9263Ea6a4cF6c680ecbc/info.json @@ -0,0 +1,11 @@ +{ + "name": "IACO GAN", + "symbol": "IACO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb7679F548DeCc6d047ad9263Ea6a4cF6c680ecbc", + "status": "abandoned", + "id": "0xb7679F548DeCc6d047ad9263Ea6a4cF6c680ecbc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb7679F548DeCc6d047ad9263Ea6a4cF6c680ecbc/logo.png b/blockchains/ethereum/assets/0xb7679F548DeCc6d047ad9263Ea6a4cF6c680ecbc/logo.png new file mode 100644 index 00000000..a9f05cbe Binary files /dev/null and b/blockchains/ethereum/assets/0xb7679F548DeCc6d047ad9263Ea6a4cF6c680ecbc/logo.png differ diff --git a/blockchains/ethereum/assets/0xb7742216e874C7c33f608c41e625B01A6f323570/info.json b/blockchains/ethereum/assets/0xb7742216e874C7c33f608c41e625B01A6f323570/info.json new file mode 100644 index 00000000..f7ea2d7c --- /dev/null +++ b/blockchains/ethereum/assets/0xb7742216e874C7c33f608c41e625B01A6f323570/info.json @@ -0,0 +1,11 @@ +{ + "name": "Atomic Ethereum", + "symbol": "AETH", + "type": "ERC20", + "decimals": 1, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb7742216e874C7c33f608c41e625B01A6f323570", + "status": "abandoned", + "id": "0xb7742216e874C7c33f608c41e625B01A6f323570" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb7742216e874C7c33f608c41e625B01A6f323570/logo.png b/blockchains/ethereum/assets/0xb7742216e874C7c33f608c41e625B01A6f323570/logo.png new file mode 100644 index 00000000..ef34c34d Binary files /dev/null and b/blockchains/ethereum/assets/0xb7742216e874C7c33f608c41e625B01A6f323570/logo.png differ diff --git a/blockchains/ethereum/assets/0xb787d4eAc8899730bb8C57fc3c998c49c5244ec0/info.json b/blockchains/ethereum/assets/0xb787d4eAc8899730bb8C57fc3c998c49c5244ec0/info.json new file mode 100644 index 00000000..ff278d7a --- /dev/null +++ b/blockchains/ethereum/assets/0xb787d4eAc8899730bb8C57fc3c998c49c5244ec0/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinPulseToken", + "symbol": "CPEX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb787d4eAc8899730bb8C57fc3c998c49c5244ec0", + "status": "abandoned", + "id": "0xb787d4eAc8899730bb8C57fc3c998c49c5244ec0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb787d4eAc8899730bb8C57fc3c998c49c5244ec0/logo.png b/blockchains/ethereum/assets/0xb787d4eAc8899730bb8C57fc3c998c49c5244ec0/logo.png new file mode 100755 index 00000000..b8c8ff60 Binary files /dev/null and b/blockchains/ethereum/assets/0xb787d4eAc8899730bb8C57fc3c998c49c5244ec0/logo.png differ diff --git a/blockchains/ethereum/assets/0xb78B3320493a4EFaa1028130C5Ba26f0B6085Ef8/info.json b/blockchains/ethereum/assets/0xb78B3320493a4EFaa1028130C5Ba26f0B6085Ef8/info.json new file mode 100644 index 00000000..59ad626b --- /dev/null +++ b/blockchains/ethereum/assets/0xb78B3320493a4EFaa1028130C5Ba26f0B6085Ef8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dracula Protocol", + "website": "https://dracula.sucks/", + "description": "One tool to farm everything in Defi.", + "explorer": "https://etherscan.io/token/0xb78B3320493a4EFaa1028130C5Ba26f0B6085Ef8", + "type": "ERC20", + "symbol": "DRC", + "decimals": 18, + "status": "active", + "id": "0xb78B3320493a4EFaa1028130C5Ba26f0B6085Ef8", + "links": [ + { + "name": "github", + "url": "https://github.com/Dracula-Protocol/" + }, + { + "name": "whitepaper", + "url": "https://medium.com/@DraculaProtocol/the-dracula-protocol-919a80fcb09" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb78B3320493a4EFaa1028130C5Ba26f0B6085Ef8/logo.png b/blockchains/ethereum/assets/0xb78B3320493a4EFaa1028130C5Ba26f0B6085Ef8/logo.png new file mode 100644 index 00000000..920ba599 Binary files /dev/null and b/blockchains/ethereum/assets/0xb78B3320493a4EFaa1028130C5Ba26f0B6085Ef8/logo.png differ diff --git a/blockchains/ethereum/assets/0xb7C86bBb0cE3F993E2C7076FB3505EA28D583FCE/info.json b/blockchains/ethereum/assets/0xb7C86bBb0cE3F993E2C7076FB3505EA28D583FCE/info.json new file mode 100644 index 00000000..0a7cbb33 --- /dev/null +++ b/blockchains/ethereum/assets/0xb7C86bBb0cE3F993E2C7076FB3505EA28D583FCE/info.json @@ -0,0 +1,11 @@ +{ + "name": "BWCToken", + "symbol": "BWC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb7C86bBb0cE3F993E2C7076FB3505EA28D583FCE", + "status": "abandoned", + "id": "0xb7C86bBb0cE3F993E2C7076FB3505EA28D583FCE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb7C86bBb0cE3F993E2C7076FB3505EA28D583FCE/logo.png b/blockchains/ethereum/assets/0xb7C86bBb0cE3F993E2C7076FB3505EA28D583FCE/logo.png new file mode 100644 index 00000000..89d0f41a Binary files /dev/null and b/blockchains/ethereum/assets/0xb7C86bBb0cE3F993E2C7076FB3505EA28D583FCE/logo.png differ diff --git a/blockchains/ethereum/assets/0xb7ba8461664dE526A3ae44189727DFC768625902/info.json b/blockchains/ethereum/assets/0xb7ba8461664dE526A3ae44189727DFC768625902/info.json new file mode 100644 index 00000000..163242df --- /dev/null +++ b/blockchains/ethereum/assets/0xb7ba8461664dE526A3ae44189727DFC768625902/info.json @@ -0,0 +1,25 @@ +{ + "name": "YMPL", + "website": "https://ymplprotocol.com", + "description": "YMPL is a probabilistic DeFi protocol that rebases the token supply in a set of intervals based on probabilistic model. YMPL s not a stablecoin, no price target of $1. Its price discovery is purely based on the demands and supply of the market and chances.", + "explorer": "https://etherscan.io/token/0xb7ba8461664dE526A3ae44189727DFC768625902", + "type": "ERC20", + "symbol": "YMPL", + "decimals": 9, + "status": "active", + "id": "0xb7ba8461664dE526A3ae44189727DFC768625902", + "links": [ + { + "name": "github", + "url": "https://github.com/ympl-protocol" + }, + { + "name": "x", + "url": "https://x.com/ymplofficial" + }, + { + "name": "medium", + "url": "https://medium.com/ympl" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb7ba8461664dE526A3ae44189727DFC768625902/logo.png b/blockchains/ethereum/assets/0xb7ba8461664dE526A3ae44189727DFC768625902/logo.png new file mode 100644 index 00000000..6c971501 Binary files /dev/null and b/blockchains/ethereum/assets/0xb7ba8461664dE526A3ae44189727DFC768625902/logo.png differ diff --git a/blockchains/ethereum/assets/0xb7e77aEbBe0687d2EfF24Cc90c41A3b6eA74bdAB/info.json b/blockchains/ethereum/assets/0xb7e77aEbBe0687d2EfF24Cc90c41A3b6eA74bdAB/info.json new file mode 100644 index 00000000..c355dc44 --- /dev/null +++ b/blockchains/ethereum/assets/0xb7e77aEbBe0687d2EfF24Cc90c41A3b6eA74bdAB/info.json @@ -0,0 +1,11 @@ +{ + "name": "ProjectWITH", + "symbol": "WIKEN", + "type": "ERC20", + "decimals": 18, + "description": "ProjectWITH (WIKEN) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://projectwith.io", + "explorer": "https://etherscan.io/token/0xb7e77aEbBe0687d2EfF24Cc90c41A3b6eA74bdAB", + "status": "active", + "id": "0xb7e77aEbBe0687d2EfF24Cc90c41A3b6eA74bdAB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb7e77aEbBe0687d2EfF24Cc90c41A3b6eA74bdAB/logo.png b/blockchains/ethereum/assets/0xb7e77aEbBe0687d2EfF24Cc90c41A3b6eA74bdAB/logo.png new file mode 100644 index 00000000..712e1843 Binary files /dev/null and b/blockchains/ethereum/assets/0xb7e77aEbBe0687d2EfF24Cc90c41A3b6eA74bdAB/logo.png differ diff --git a/blockchains/ethereum/assets/0xb810Ad9007E4F2d9Aab2e7181A0385d02437eA6e/info.json b/blockchains/ethereum/assets/0xb810Ad9007E4F2d9Aab2e7181A0385d02437eA6e/info.json new file mode 100644 index 00000000..3da827a7 --- /dev/null +++ b/blockchains/ethereum/assets/0xb810Ad9007E4F2d9Aab2e7181A0385d02437eA6e/info.json @@ -0,0 +1,11 @@ +{ + "name": "KingOfCandy", + "symbol": "KFC!", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb810Ad9007E4F2d9Aab2e7181A0385d02437eA6e", + "status": "abandoned", + "id": "0xb810Ad9007E4F2d9Aab2e7181A0385d02437eA6e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb810Ad9007E4F2d9Aab2e7181A0385d02437eA6e/logo.png b/blockchains/ethereum/assets/0xb810Ad9007E4F2d9Aab2e7181A0385d02437eA6e/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0xb810Ad9007E4F2d9Aab2e7181A0385d02437eA6e/logo.png differ diff --git a/blockchains/ethereum/assets/0xb83Cd8d39462B761bb0092437d38b37812dd80A2/info.json b/blockchains/ethereum/assets/0xb83Cd8d39462B761bb0092437d38b37812dd80A2/info.json new file mode 100644 index 00000000..a48cafb3 --- /dev/null +++ b/blockchains/ethereum/assets/0xb83Cd8d39462B761bb0092437d38b37812dd80A2/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoldenRatio", + "symbol": "GRT", + "type": "ERC20", + "decimals": 18, + "description": "GoldenRatio Token (GRT) project is an experiment which has no funding, to prove the importance of a quality community in a crypto related project.", + "website": "https://goldenratiotoken.site/", + "explorer": "https://etherscan.io/token/0xb83Cd8d39462B761bb0092437d38b37812dd80A2", + "status": "active", + "id": "0xb83Cd8d39462B761bb0092437d38b37812dd80A2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb83Cd8d39462B761bb0092437d38b37812dd80A2/logo.png b/blockchains/ethereum/assets/0xb83Cd8d39462B761bb0092437d38b37812dd80A2/logo.png new file mode 100644 index 00000000..53926f49 Binary files /dev/null and b/blockchains/ethereum/assets/0xb83Cd8d39462B761bb0092437d38b37812dd80A2/logo.png differ diff --git a/blockchains/ethereum/assets/0xb882ed6B8Ec5fa4B3eA83C32C5aFaf9824be38eC/info.json b/blockchains/ethereum/assets/0xb882ed6B8Ec5fa4B3eA83C32C5aFaf9824be38eC/info.json new file mode 100644 index 00000000..3da9efd3 --- /dev/null +++ b/blockchains/ethereum/assets/0xb882ed6B8Ec5fa4B3eA83C32C5aFaf9824be38eC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Culture eXchange Coin", + "symbol": "CXC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb882ed6B8Ec5fa4B3eA83C32C5aFaf9824be38eC", + "status": "abandoned", + "id": "0xb882ed6B8Ec5fa4B3eA83C32C5aFaf9824be38eC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb882ed6B8Ec5fa4B3eA83C32C5aFaf9824be38eC/logo.png b/blockchains/ethereum/assets/0xb882ed6B8Ec5fa4B3eA83C32C5aFaf9824be38eC/logo.png new file mode 100644 index 00000000..3b4c6b4a Binary files /dev/null and b/blockchains/ethereum/assets/0xb882ed6B8Ec5fa4B3eA83C32C5aFaf9824be38eC/logo.png differ diff --git a/blockchains/ethereum/assets/0xb8FD7D979573fcAa5f3f2F4F7ba22772b1821Ff8/info.json b/blockchains/ethereum/assets/0xb8FD7D979573fcAa5f3f2F4F7ba22772b1821Ff8/info.json new file mode 100644 index 00000000..fbcb253d --- /dev/null +++ b/blockchains/ethereum/assets/0xb8FD7D979573fcAa5f3f2F4F7ba22772b1821Ff8/info.json @@ -0,0 +1,11 @@ +{ + "name": "KingCoinMaster", + "symbol": "KCM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb8FD7D979573fcAa5f3f2F4F7ba22772b1821Ff8", + "status": "abandoned", + "id": "0xb8FD7D979573fcAa5f3f2F4F7ba22772b1821Ff8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb8FD7D979573fcAa5f3f2F4F7ba22772b1821Ff8/logo.png b/blockchains/ethereum/assets/0xb8FD7D979573fcAa5f3f2F4F7ba22772b1821Ff8/logo.png new file mode 100644 index 00000000..8f0d5b90 Binary files /dev/null and b/blockchains/ethereum/assets/0xb8FD7D979573fcAa5f3f2F4F7ba22772b1821Ff8/logo.png differ diff --git a/blockchains/ethereum/assets/0xb8c6ad2586bB71d518C2aaf510Efe91f82022F58/info.json b/blockchains/ethereum/assets/0xb8c6ad2586bB71d518C2aaf510Efe91f82022F58/info.json new file mode 100644 index 00000000..fb5ce299 --- /dev/null +++ b/blockchains/ethereum/assets/0xb8c6ad2586bB71d518C2aaf510Efe91f82022F58/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gomics", + "symbol": "GOM", + "type": "ERC20", + "decimals": 18, + "description": "Gomics aims to provide a blockchain entertainment platform to facilitate the process of producing and consuming content.", + "website": "http://gomics.io/", + "explorer": "https://etherscan.io/token/0xb8c6ad2586bB71d518C2aaf510Efe91f82022F58", + "status": "active", + "id": "0xb8c6ad2586bB71d518C2aaf510Efe91f82022F58" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb8c6ad2586bB71d518C2aaf510Efe91f82022F58/logo.png b/blockchains/ethereum/assets/0xb8c6ad2586bB71d518C2aaf510Efe91f82022F58/logo.png new file mode 100644 index 00000000..37577282 Binary files /dev/null and b/blockchains/ethereum/assets/0xb8c6ad2586bB71d518C2aaf510Efe91f82022F58/logo.png differ diff --git a/blockchains/ethereum/assets/0xb8e103b60A33597136EA9511F46b6dBeB643a3a5/info.json b/blockchains/ethereum/assets/0xb8e103b60A33597136EA9511F46b6dBeB643a3a5/info.json new file mode 100644 index 00000000..ad80b153 --- /dev/null +++ b/blockchains/ethereum/assets/0xb8e103b60A33597136EA9511F46b6dBeB643a3a5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Siambitcoin", + "symbol": "sBTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.siambitcoin.com/", + "explorer": "https://etherscan.io/token/0xb8e103b60A33597136EA9511F46b6dBeB643a3a5", + "status": "abandoned", + "id": "0xb8e103b60A33597136EA9511F46b6dBeB643a3a5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb8e103b60A33597136EA9511F46b6dBeB643a3a5/logo.png b/blockchains/ethereum/assets/0xb8e103b60A33597136EA9511F46b6dBeB643a3a5/logo.png new file mode 100644 index 00000000..becde1e2 Binary files /dev/null and b/blockchains/ethereum/assets/0xb8e103b60A33597136EA9511F46b6dBeB643a3a5/logo.png differ diff --git a/blockchains/ethereum/assets/0xb8e2AdaA6857e74BaA3EfD84320614C832588AA3/info.json b/blockchains/ethereum/assets/0xb8e2AdaA6857e74BaA3EfD84320614C832588AA3/info.json new file mode 100644 index 00000000..f36179b6 --- /dev/null +++ b/blockchains/ethereum/assets/0xb8e2AdaA6857e74BaA3EfD84320614C832588AA3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Business Incubator Coin", + "symbol": "BIC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb8e2AdaA6857e74BaA3EfD84320614C832588AA3", + "status": "abandoned", + "id": "0xb8e2AdaA6857e74BaA3EfD84320614C832588AA3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb8e2AdaA6857e74BaA3EfD84320614C832588AA3/logo.png b/blockchains/ethereum/assets/0xb8e2AdaA6857e74BaA3EfD84320614C832588AA3/logo.png new file mode 100644 index 00000000..ad3e87ee Binary files /dev/null and b/blockchains/ethereum/assets/0xb8e2AdaA6857e74BaA3EfD84320614C832588AA3/logo.png differ diff --git a/blockchains/ethereum/assets/0xb92f51CE4045212EeF8008C2f665DA713035267B/info.json b/blockchains/ethereum/assets/0xb92f51CE4045212EeF8008C2f665DA713035267B/info.json new file mode 100644 index 00000000..ad9ec3e3 --- /dev/null +++ b/blockchains/ethereum/assets/0xb92f51CE4045212EeF8008C2f665DA713035267B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rentledger", + "symbol": "RTL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb92f51CE4045212EeF8008C2f665DA713035267B", + "status": "abandoned", + "id": "0xb92f51CE4045212EeF8008C2f665DA713035267B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb92f51CE4045212EeF8008C2f665DA713035267B/logo.png b/blockchains/ethereum/assets/0xb92f51CE4045212EeF8008C2f665DA713035267B/logo.png new file mode 100644 index 00000000..cf659b66 Binary files /dev/null and b/blockchains/ethereum/assets/0xb92f51CE4045212EeF8008C2f665DA713035267B/logo.png differ diff --git a/blockchains/ethereum/assets/0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8/info.json b/blockchains/ethereum/assets/0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8/info.json new file mode 100644 index 00000000..f96f3884 --- /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 00000000..5ae86e16 Binary files /dev/null and b/blockchains/ethereum/assets/0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8/logo.png differ diff --git a/blockchains/ethereum/assets/0xb941eF1f4f9593e211e4CA47B11cb5C2de43Ba38/info.json b/blockchains/ethereum/assets/0xb941eF1f4f9593e211e4CA47B11cb5C2de43Ba38/info.json new file mode 100644 index 00000000..9ba1960d --- /dev/null +++ b/blockchains/ethereum/assets/0xb941eF1f4f9593e211e4CA47B11cb5C2de43Ba38/info.json @@ -0,0 +1,11 @@ +{ + "name": "Free Fair Chain Token", + "symbol": "FFC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb941eF1f4f9593e211e4CA47B11cb5C2de43Ba38", + "status": "abandoned", + "id": "0xb941eF1f4f9593e211e4CA47B11cb5C2de43Ba38" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb941eF1f4f9593e211e4CA47B11cb5C2de43Ba38/logo.png b/blockchains/ethereum/assets/0xb941eF1f4f9593e211e4CA47B11cb5C2de43Ba38/logo.png new file mode 100755 index 00000000..62fb2975 Binary files /dev/null and b/blockchains/ethereum/assets/0xb941eF1f4f9593e211e4CA47B11cb5C2de43Ba38/logo.png differ diff --git a/blockchains/ethereum/assets/0xb9440022a095343B440D590FCD2d7A3794Bd76c8/info.json b/blockchains/ethereum/assets/0xb9440022a095343B440D590FCD2d7A3794Bd76c8/info.json new file mode 100644 index 00000000..06347267 --- /dev/null +++ b/blockchains/ethereum/assets/0xb9440022a095343B440D590FCD2d7A3794Bd76c8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Saturn DAO Token", + "symbol": "SATURN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "https://saturn.network/", + "explorer": "https://etherscan.io/token/0xb9440022a095343B440D590FCD2d7A3794Bd76c8", + "status": "abandoned", + "id": "0xb9440022a095343B440D590FCD2d7A3794Bd76c8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb9440022a095343B440D590FCD2d7A3794Bd76c8/logo.png b/blockchains/ethereum/assets/0xb9440022a095343B440D590FCD2d7A3794Bd76c8/logo.png new file mode 100644 index 00000000..ba6ad6b8 Binary files /dev/null and b/blockchains/ethereum/assets/0xb9440022a095343B440D590FCD2d7A3794Bd76c8/logo.png differ diff --git a/blockchains/ethereum/assets/0xb96207E0a45a953953109B6E2DCB8F4b72eC7462/info.json b/blockchains/ethereum/assets/0xb96207E0a45a953953109B6E2DCB8F4b72eC7462/info.json new file mode 100644 index 00000000..1642cea4 --- /dev/null +++ b/blockchains/ethereum/assets/0xb96207E0a45a953953109B6E2DCB8F4b72eC7462/info.json @@ -0,0 +1,11 @@ +{ + "name": "Insure Network", + "symbol": "ISNK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb96207E0a45a953953109B6E2DCB8F4b72eC7462", + "status": "abandoned", + "id": "0xb96207E0a45a953953109B6E2DCB8F4b72eC7462" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb96207E0a45a953953109B6E2DCB8F4b72eC7462/logo.png b/blockchains/ethereum/assets/0xb96207E0a45a953953109B6E2DCB8F4b72eC7462/logo.png new file mode 100644 index 00000000..5fcd1d67 Binary files /dev/null and b/blockchains/ethereum/assets/0xb96207E0a45a953953109B6E2DCB8F4b72eC7462/logo.png differ diff --git a/blockchains/ethereum/assets/0xb977ee318010A5252774171494a1bCB98E7fab65/info.json b/blockchains/ethereum/assets/0xb977ee318010A5252774171494a1bCB98E7fab65/info.json new file mode 100644 index 00000000..3850eab8 --- /dev/null +++ b/blockchains/ethereum/assets/0xb977ee318010A5252774171494a1bCB98E7fab65/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave UniUSDT", + "website": "https://aave.com", + "description": "Aave UniUSDT is an interest bearing token pegged 1:1 to the underlying USDT deposited in the Uniswap Market of Aave Protocol.", + "explorer": "https://etherscan.io/token/0xb977ee318010A5252774171494a1bCB98E7fab65", + "type": "ERC20", + "symbol": "aUniUSDT", + "decimals": 6, + "status": "active", + "id": "0xb977ee318010A5252774171494a1bCB98E7fab65" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb977ee318010A5252774171494a1bCB98E7fab65/logo.png b/blockchains/ethereum/assets/0xb977ee318010A5252774171494a1bCB98E7fab65/logo.png new file mode 100644 index 00000000..dd49fbf4 Binary files /dev/null and b/blockchains/ethereum/assets/0xb977ee318010A5252774171494a1bCB98E7fab65/logo.png differ diff --git a/blockchains/ethereum/assets/0xb9871cB10738eADA636432E86FC0Cb920Dc3De24/info.json b/blockchains/ethereum/assets/0xb9871cB10738eADA636432E86FC0Cb920Dc3De24/info.json new file mode 100644 index 00000000..3c654d37 --- /dev/null +++ b/blockchains/ethereum/assets/0xb9871cB10738eADA636432E86FC0Cb920Dc3De24/info.json @@ -0,0 +1,17 @@ +{ + "name": "PRIA", + "website": "https://pria.eth.link", + "description": "PRIA is a fully automated and decentralized digital asset that implements and manages a perpetual ultra-deflationary monetary policy favourable to inflation arbitrage by market participants.", + "explorer": "https://etherscan.io/token/0xb9871cB10738eADA636432E86FC0Cb920Dc3De24", + "type": "ERC20", + "symbol": "PRIA", + "decimals": 18, + "status": "active", + "id": "0xb9871cB10738eADA636432E86FC0Cb920Dc3De24", + "links": [ + { + "name": "whitepaper", + "url": "https://pria.eth.link" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb9871cB10738eADA636432E86FC0Cb920Dc3De24/logo.png b/blockchains/ethereum/assets/0xb9871cB10738eADA636432E86FC0Cb920Dc3De24/logo.png new file mode 100644 index 00000000..0c632644 Binary files /dev/null and b/blockchains/ethereum/assets/0xb9871cB10738eADA636432E86FC0Cb920Dc3De24/logo.png differ diff --git a/blockchains/ethereum/assets/0xb9C0c6852EeDa726cC8563900b0D66f8dB3ED199/info.json b/blockchains/ethereum/assets/0xb9C0c6852EeDa726cC8563900b0D66f8dB3ED199/info.json new file mode 100644 index 00000000..d779254a --- /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/0xb9EF770B6A5e12E45983C5D80545258aA38F3B78/info.json b/blockchains/ethereum/assets/0xb9EF770B6A5e12E45983C5D80545258aA38F3B78/info.json new file mode 100644 index 00000000..1cfac94a --- /dev/null +++ b/blockchains/ethereum/assets/0xb9EF770B6A5e12E45983C5D80545258aA38F3B78/info.json @@ -0,0 +1,11 @@ +{ + "name": "0chain", + "symbol": "ZCN", + "type": "ERC20", + "decimals": 10, + "description": "0Chain is pronounced as zero chain, and it is a decentralized storage platform that aims to makes data breaches impossible and as such can reduce legal discovery and compliance costs.", + "website": "https://0chain.net", + "explorer": "https://etherscan.io/token/0xb9EF770B6A5e12E45983C5D80545258aA38F3B78", + "status": "active", + "id": "0xb9EF770B6A5e12E45983C5D80545258aA38F3B78" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb9EF770B6A5e12E45983C5D80545258aA38F3B78/logo.png b/blockchains/ethereum/assets/0xb9EF770B6A5e12E45983C5D80545258aA38F3B78/logo.png new file mode 100755 index 00000000..08af803a Binary files /dev/null and b/blockchains/ethereum/assets/0xb9EF770B6A5e12E45983C5D80545258aA38F3B78/logo.png differ diff --git a/blockchains/ethereum/assets/0xb9F747162AB1E95d07361f9048BcDF6eDdA9eEA7/info.json b/blockchains/ethereum/assets/0xb9F747162AB1E95d07361f9048BcDF6eDdA9eEA7/info.json new file mode 100644 index 00000000..9bef2488 --- /dev/null +++ b/blockchains/ethereum/assets/0xb9F747162AB1E95d07361f9048BcDF6eDdA9eEA7/info.json @@ -0,0 +1,14 @@ +{ + "name": "Star Atlas (Portal)", + "type": "ERC20", + "symbol": "ATLAS", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://staratlas.com", + "explorer": "https://etherscan.io/token/0xb9F747162AB1E95d07361f9048BcDF6eDdA9eEA7", + "status": "active", + "id": "0xb9F747162AB1E95d07361f9048BcDF6eDdA9eEA7", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb9F747162AB1E95d07361f9048BcDF6eDdA9eEA7/logo.png b/blockchains/ethereum/assets/0xb9F747162AB1E95d07361f9048BcDF6eDdA9eEA7/logo.png new file mode 100644 index 00000000..8cd9b22a Binary files /dev/null and b/blockchains/ethereum/assets/0xb9F747162AB1E95d07361f9048BcDF6eDdA9eEA7/logo.png differ diff --git a/blockchains/ethereum/assets/0xb9b5467B8F8ce1e4E48796E4c24758EfFf512352/info.json b/blockchains/ethereum/assets/0xb9b5467B8F8ce1e4E48796E4c24758EfFf512352/info.json new file mode 100644 index 00000000..b035cfcb --- /dev/null +++ b/blockchains/ethereum/assets/0xb9b5467B8F8ce1e4E48796E4c24758EfFf512352/info.json @@ -0,0 +1,11 @@ +{ + "name": "NLC Token", + "symbol": "NLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xb9b5467B8F8ce1e4E48796E4c24758EfFf512352", + "status": "abandoned", + "id": "0xb9b5467B8F8ce1e4E48796E4c24758EfFf512352" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb9b5467B8F8ce1e4E48796E4c24758EfFf512352/logo.png b/blockchains/ethereum/assets/0xb9b5467B8F8ce1e4E48796E4c24758EfFf512352/logo.png new file mode 100644 index 00000000..0a87104b Binary files /dev/null and b/blockchains/ethereum/assets/0xb9b5467B8F8ce1e4E48796E4c24758EfFf512352/logo.png differ diff --git a/blockchains/ethereum/assets/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E/info.json b/blockchains/ethereum/assets/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E/info.json new file mode 100644 index 00000000..7226d14e --- /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 00000000..0837fd2a Binary files /dev/null and b/blockchains/ethereum/assets/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E/logo.png differ diff --git a/blockchains/ethereum/assets/0xbA23485a04B897C957918FdE2DabD4867838140b/info.json b/blockchains/ethereum/assets/0xbA23485a04B897C957918FdE2DabD4867838140b/info.json new file mode 100644 index 00000000..b801c659 --- /dev/null +++ b/blockchains/ethereum/assets/0xbA23485a04B897C957918FdE2DabD4867838140b/info.json @@ -0,0 +1,11 @@ +{ + "name": "MARKET Protocol Token", + "symbol": "MKT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbA23485a04B897C957918FdE2DabD4867838140b", + "status": "abandoned", + "id": "0xbA23485a04B897C957918FdE2DabD4867838140b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbA23485a04B897C957918FdE2DabD4867838140b/logo.png b/blockchains/ethereum/assets/0xbA23485a04B897C957918FdE2DabD4867838140b/logo.png new file mode 100644 index 00000000..cce536e0 Binary files /dev/null and b/blockchains/ethereum/assets/0xbA23485a04B897C957918FdE2DabD4867838140b/logo.png differ diff --git a/blockchains/ethereum/assets/0xbA32286b0296F0a86111644B74472D8AAbaE3027/info.json b/blockchains/ethereum/assets/0xbA32286b0296F0a86111644B74472D8AAbaE3027/info.json new file mode 100644 index 00000000..3bbfee13 --- /dev/null +++ b/blockchains/ethereum/assets/0xbA32286b0296F0a86111644B74472D8AAbaE3027/info.json @@ -0,0 +1,11 @@ +{ + "name": "SLEEVES", + "symbol": "SEV", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbA32286b0296F0a86111644B74472D8AAbaE3027", + "status": "abandoned", + "id": "0xbA32286b0296F0a86111644B74472D8AAbaE3027" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbA32286b0296F0a86111644B74472D8AAbaE3027/logo.png b/blockchains/ethereum/assets/0xbA32286b0296F0a86111644B74472D8AAbaE3027/logo.png new file mode 100644 index 00000000..1a32de05 Binary files /dev/null and b/blockchains/ethereum/assets/0xbA32286b0296F0a86111644B74472D8AAbaE3027/logo.png differ diff --git a/blockchains/ethereum/assets/0xbA47214eDd2bb43099611b208f75E4b42FDcfEDc/info.json b/blockchains/ethereum/assets/0xbA47214eDd2bb43099611b208f75E4b42FDcfEDc/info.json new file mode 100644 index 00000000..5be60148 --- /dev/null +++ b/blockchains/ethereum/assets/0xbA47214eDd2bb43099611b208f75E4b42FDcfEDc/info.json @@ -0,0 +1,24 @@ +{ + "name": "Alphabet Class A (Ondo Tokenized)", + "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 00000000..3badc167 Binary files /dev/null and b/blockchains/ethereum/assets/0xbA47214eDd2bb43099611b208f75E4b42FDcfEDc/logo.png differ diff --git a/blockchains/ethereum/assets/0xbA62B1499b3Ac0D24e691f21097D5DA56809ED16/info.json b/blockchains/ethereum/assets/0xbA62B1499b3Ac0D24e691f21097D5DA56809ED16/info.json new file mode 100644 index 00000000..101a9cf0 --- /dev/null +++ b/blockchains/ethereum/assets/0xbA62B1499b3Ac0D24e691f21097D5DA56809ED16/info.json @@ -0,0 +1,11 @@ +{ + "name": "CHAMMILA KNTL", + "symbol": "CHAJING", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbA62B1499b3Ac0D24e691f21097D5DA56809ED16", + "status": "abandoned", + "id": "0xbA62B1499b3Ac0D24e691f21097D5DA56809ED16" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbA62B1499b3Ac0D24e691f21097D5DA56809ED16/logo.png b/blockchains/ethereum/assets/0xbA62B1499b3Ac0D24e691f21097D5DA56809ED16/logo.png new file mode 100755 index 00000000..19283f8f Binary files /dev/null and b/blockchains/ethereum/assets/0xbA62B1499b3Ac0D24e691f21097D5DA56809ED16/logo.png differ diff --git a/blockchains/ethereum/assets/0xbA745513ACEbcBb977497C569D4F7d340f2A936B/info.json b/blockchains/ethereum/assets/0xbA745513ACEbcBb977497C569D4F7d340f2A936B/info.json new file mode 100644 index 00000000..3b1c9849 --- /dev/null +++ b/blockchains/ethereum/assets/0xbA745513ACEbcBb977497C569D4F7d340f2A936B/info.json @@ -0,0 +1,25 @@ +{ + "name": "Mainstream For The Underground", + "website": "https://mftu.net", + "description": "Utility token to pay Independent Musicians as a Distributed Ledger Performance Rights Organization.", + "explorer": "https://etherscan.io/token/0xbA745513ACEbcBb977497C569D4F7d340f2A936B", + "type": "ERC20", + "symbol": "MFTU", + "decimals": 18, + "status": "active", + "id": "0xbA745513ACEbcBb977497C569D4F7d340f2A936B", + "links": [ + { + "name": "github", + "url": "https://github.com/CyberFM/" + }, + { + "name": "x", + "url": "https://x.com/Mainstream For The Underground" + }, + { + "name": "telegram", + "url": "https://t.me/mftudotnet" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbA745513ACEbcBb977497C569D4F7d340f2A936B/logo.png b/blockchains/ethereum/assets/0xbA745513ACEbcBb977497C569D4F7d340f2A936B/logo.png new file mode 100755 index 00000000..5b712369 Binary files /dev/null and b/blockchains/ethereum/assets/0xbA745513ACEbcBb977497C569D4F7d340f2A936B/logo.png differ diff --git a/blockchains/ethereum/assets/0xbAB6F30C81209433a3cEd28cA8E19256440547d9/info.json b/blockchains/ethereum/assets/0xbAB6F30C81209433a3cEd28cA8E19256440547d9/info.json new file mode 100644 index 00000000..5cb73093 --- /dev/null +++ b/blockchains/ethereum/assets/0xbAB6F30C81209433a3cEd28cA8E19256440547d9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yu Gi Oh", + "symbol": "YGO", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbAB6F30C81209433a3cEd28cA8E19256440547d9", + "status": "abandoned", + "id": "0xbAB6F30C81209433a3cEd28cA8E19256440547d9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbAB6F30C81209433a3cEd28cA8E19256440547d9/logo.png b/blockchains/ethereum/assets/0xbAB6F30C81209433a3cEd28cA8E19256440547d9/logo.png new file mode 100644 index 00000000..2f0b7fab Binary files /dev/null and b/blockchains/ethereum/assets/0xbAB6F30C81209433a3cEd28cA8E19256440547d9/logo.png differ diff --git a/blockchains/ethereum/assets/0xbACA8D824f471a6b20fdbac25E9e8943B9cD743B/info.json b/blockchains/ethereum/assets/0xbACA8D824f471a6b20fdbac25E9e8943B9cD743B/info.json new file mode 100644 index 00000000..59b3fde8 --- /dev/null +++ b/blockchains/ethereum/assets/0xbACA8D824f471a6b20fdbac25E9e8943B9cD743B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lukiu Media", + "symbol": "LKU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbACA8D824f471a6b20fdbac25E9e8943B9cD743B", + "status": "abandoned", + "id": "0xbACA8D824f471a6b20fdbac25E9e8943B9cD743B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbACA8D824f471a6b20fdbac25E9e8943B9cD743B/logo.png b/blockchains/ethereum/assets/0xbACA8D824f471a6b20fdbac25E9e8943B9cD743B/logo.png new file mode 100644 index 00000000..b38b8cc1 Binary files /dev/null and b/blockchains/ethereum/assets/0xbACA8D824f471a6b20fdbac25E9e8943B9cD743B/logo.png differ diff --git a/blockchains/ethereum/assets/0xbADf67237e1b8Cb8481445220e86536E1648FE3e/info.json b/blockchains/ethereum/assets/0xbADf67237e1b8Cb8481445220e86536E1648FE3e/info.json new file mode 100644 index 00000000..04e3d9c3 --- /dev/null +++ b/blockchains/ethereum/assets/0xbADf67237e1b8Cb8481445220e86536E1648FE3e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yoga Community Token", + "symbol": "YOGEE", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbADf67237e1b8Cb8481445220e86536E1648FE3e", + "status": "abandoned", + "id": "0xbADf67237e1b8Cb8481445220e86536E1648FE3e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbADf67237e1b8Cb8481445220e86536E1648FE3e/logo.png b/blockchains/ethereum/assets/0xbADf67237e1b8Cb8481445220e86536E1648FE3e/logo.png new file mode 100644 index 00000000..2e5cef00 Binary files /dev/null and b/blockchains/ethereum/assets/0xbADf67237e1b8Cb8481445220e86536E1648FE3e/logo.png differ diff --git a/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/info.json b/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/info.json new file mode 100644 index 00000000..91985bc1 --- /dev/null +++ b/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZEDXION", + "type": "ERC20", + "symbol": "ZEDXION", + "decimals": 18, + "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": "abandoned", + "id": "0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbAe1AdC451FcAfbB2E6850D163A8663F419CB420/info.json b/blockchains/ethereum/assets/0xbAe1AdC451FcAfbB2E6850D163A8663F419CB420/info.json new file mode 100644 index 00000000..29c7e5cd --- /dev/null +++ b/blockchains/ethereum/assets/0xbAe1AdC451FcAfbB2E6850D163A8663F419CB420/info.json @@ -0,0 +1,11 @@ +{ + "name": "PNGold", + "symbol": "PNG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbAe1AdC451FcAfbB2E6850D163A8663F419CB420", + "status": "abandoned", + "id": "0xbAe1AdC451FcAfbB2E6850D163A8663F419CB420" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbAe1AdC451FcAfbB2E6850D163A8663F419CB420/logo.png b/blockchains/ethereum/assets/0xbAe1AdC451FcAfbB2E6850D163A8663F419CB420/logo.png new file mode 100644 index 00000000..53c8bd48 Binary files /dev/null and b/blockchains/ethereum/assets/0xbAe1AdC451FcAfbB2E6850D163A8663F419CB420/logo.png differ diff --git a/blockchains/ethereum/assets/0xbAe226690D7DCe1Da1823f0BF811529b8229134a/info.json b/blockchains/ethereum/assets/0xbAe226690D7DCe1Da1823f0BF811529b8229134a/info.json new file mode 100644 index 00000000..af747d9c --- /dev/null +++ b/blockchains/ethereum/assets/0xbAe226690D7DCe1Da1823f0BF811529b8229134a/info.json @@ -0,0 +1,11 @@ +{ + "name": "IMO", + "website": "https://imoex.top", + "description": "IMO Token is the platform token of IMO ecosystem, which enables the project to obtain investment in stages through continuous limited private sales.", + "explorer": "https://etherscan.io/token/0xbAe226690D7DCe1Da1823f0BF811529b8229134a", + "type": "ERC20", + "symbol": "IMO", + "decimals": 18, + "status": "active", + "id": "0xbAe226690D7DCe1Da1823f0BF811529b8229134a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbAe226690D7DCe1Da1823f0BF811529b8229134a/logo.png b/blockchains/ethereum/assets/0xbAe226690D7DCe1Da1823f0BF811529b8229134a/logo.png new file mode 100644 index 00000000..e379ef2d Binary files /dev/null and b/blockchains/ethereum/assets/0xbAe226690D7DCe1Da1823f0BF811529b8229134a/logo.png differ diff --git a/blockchains/ethereum/assets/0xbB9322256863538d4D330346DaeB6AC19130E298/info.json b/blockchains/ethereum/assets/0xbB9322256863538d4D330346DaeB6AC19130E298/info.json new file mode 100644 index 00000000..fe53012a --- /dev/null +++ b/blockchains/ethereum/assets/0xbB9322256863538d4D330346DaeB6AC19130E298/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C565988", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbB9322256863538d4D330346DaeB6AC19130E298", + "status": "abandoned", + "id": "0xbB9322256863538d4D330346DaeB6AC19130E298" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbB9322256863538d4D330346DaeB6AC19130E298/logo.png b/blockchains/ethereum/assets/0xbB9322256863538d4D330346DaeB6AC19130E298/logo.png new file mode 100644 index 00000000..e4d93f06 Binary files /dev/null and b/blockchains/ethereum/assets/0xbB9322256863538d4D330346DaeB6AC19130E298/logo.png differ diff --git a/blockchains/ethereum/assets/0xbB98Fc1fD1080D2B8bdaD75c51D30B50c6F59b62/info.json b/blockchains/ethereum/assets/0xbB98Fc1fD1080D2B8bdaD75c51D30B50c6F59b62/info.json new file mode 100644 index 00000000..e8a41cc3 --- /dev/null +++ b/blockchains/ethereum/assets/0xbB98Fc1fD1080D2B8bdaD75c51D30B50c6F59b62/info.json @@ -0,0 +1,11 @@ +{ + "name": "PYGOZ", + "symbol": "PYGOZ", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbB98Fc1fD1080D2B8bdaD75c51D30B50c6F59b62", + "status": "abandoned", + "id": "0xbB98Fc1fD1080D2B8bdaD75c51D30B50c6F59b62" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbB98Fc1fD1080D2B8bdaD75c51D30B50c6F59b62/logo.png b/blockchains/ethereum/assets/0xbB98Fc1fD1080D2B8bdaD75c51D30B50c6F59b62/logo.png new file mode 100644 index 00000000..056e0ee4 Binary files /dev/null and b/blockchains/ethereum/assets/0xbB98Fc1fD1080D2B8bdaD75c51D30B50c6F59b62/logo.png differ diff --git a/blockchains/ethereum/assets/0xbBB17c3D1f581dab947144C31387774c1BbEa900/info.json b/blockchains/ethereum/assets/0xbBB17c3D1f581dab947144C31387774c1BbEa900/info.json new file mode 100644 index 00000000..a065ecc5 --- /dev/null +++ b/blockchains/ethereum/assets/0xbBB17c3D1f581dab947144C31387774c1BbEa900/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg25000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbBB17c3D1f581dab947144C31387774c1BbEa900", + "status": "abandoned", + "id": "0xbBB17c3D1f581dab947144C31387774c1BbEa900" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbBB17c3D1f581dab947144C31387774c1BbEa900/logo.png b/blockchains/ethereum/assets/0xbBB17c3D1f581dab947144C31387774c1BbEa900/logo.png new file mode 100644 index 00000000..6087a781 Binary files /dev/null and b/blockchains/ethereum/assets/0xbBB17c3D1f581dab947144C31387774c1BbEa900/logo.png differ diff --git a/blockchains/ethereum/assets/0xbBB38bE7c6D954320c0297c06Ab3265a950CDF89/info.json b/blockchains/ethereum/assets/0xbBB38bE7c6D954320c0297c06Ab3265a950CDF89/info.json new file mode 100644 index 00000000..8ef718b3 --- /dev/null +++ b/blockchains/ethereum/assets/0xbBB38bE7c6D954320c0297c06Ab3265a950CDF89/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped BOMB", + "symbol": "WBOMB", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbBB38bE7c6D954320c0297c06Ab3265a950CDF89", + "status": "abandoned", + "id": "0xbBB38bE7c6D954320c0297c06Ab3265a950CDF89" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbBB38bE7c6D954320c0297c06Ab3265a950CDF89/logo.png b/blockchains/ethereum/assets/0xbBB38bE7c6D954320c0297c06Ab3265a950CDF89/logo.png new file mode 100644 index 00000000..c0093a96 Binary files /dev/null and b/blockchains/ethereum/assets/0xbBB38bE7c6D954320c0297c06Ab3265a950CDF89/logo.png differ diff --git a/blockchains/ethereum/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json b/blockchains/ethereum/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json new file mode 100644 index 00000000..d74bf218 --- /dev/null +++ b/blockchains/ethereum/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json @@ -0,0 +1,47 @@ +{ + "name": "EverRise Rewards", + "type": "ERC20", + "symbol": "claimRISE", + "decimals": 18, + "website": "https://www.everrise.com/", + "description": "Virtual token that allows unclaimed rewards from EverRise Staking NFTs and its Vote Escrowed (ve) EverRise to display in wallet balances.", + "explorer": "https://etherscan.io/token/0xbBD7B847C6d0d0B5691518a363194D71426475F1", + "status": "active", + "id": "0xbBD7B847C6d0d0B5691518a363194D71426475F1", + "links": [ + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png b/blockchains/ethereum/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png new file mode 100644 index 00000000..efff8d00 Binary files /dev/null and b/blockchains/ethereum/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png differ diff --git a/blockchains/ethereum/assets/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396/info.json b/blockchains/ethereum/assets/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396/info.json new file mode 100644 index 00000000..f723d21b --- /dev/null +++ b/blockchains/ethereum/assets/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396/info.json @@ -0,0 +1,56 @@ +{ + "name": "DynETHc DynaSet", + "type": "ERC20", + "symbol": "dynETHc", + "decimals": 18, + "website": "https://singularitydao.ai/dynalab/dynETHc", + "description": "dynETHc gives users exposure to Ethereum using long only strategies managed by the Dynamic Asset Manager with less fees & expenses. dynETHc tokens can then be used as collateral on 3rd party protocols. Powered by SingularityDAO.ai.", + "explorer": "https://etherscan.io/token/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396", + "status": "active", + "id": "0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396", + "links": [ + { + "name": "x", + "url": "https://x.com/SingularityDao" + }, + { + "name": "telegram", + "url": "https://t.me/chatsight_bot?start=dmVyaWZ5OjotMTAwMTI4NzAxNjEzNw==" + }, + { + "name": "telegram_news", + "url": "https://t.me/sdaoann" + }, + { + "name": "discord", + "url": "https://discord.com/invite/singularitydao" + }, + { + "name": "github", + "url": "https://github.com/Singularity-DAO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/singularitydao" + }, + { + "name": "youtube", + "url": "https://youtube.com/@SingularityDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/singularitydao/" + }, + { + "name": "medium", + "url": "https://medium.com/singularitydao" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SingularityDAO/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396/logo.png b/blockchains/ethereum/assets/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396/logo.png new file mode 100644 index 00000000..962f15a8 Binary files /dev/null and b/blockchains/ethereum/assets/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396/logo.png differ diff --git a/blockchains/ethereum/assets/0xbBc2045D335Cb224228f1850b29173d9d7D7b989/info.json b/blockchains/ethereum/assets/0xbBc2045D335Cb224228f1850b29173d9d7D7b989/info.json new file mode 100644 index 00000000..c1cf106b --- /dev/null +++ b/blockchains/ethereum/assets/0xbBc2045D335Cb224228f1850b29173d9d7D7b989/info.json @@ -0,0 +1,11 @@ +{ + "name": "HELP", + "symbol": "HELP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://gohelpfund.com/", + "explorer": "https://etherscan.io/token/0xbBc2045D335Cb224228f1850b29173d9d7D7b989", + "status": "abandoned", + "id": "0xbBc2045D335Cb224228f1850b29173d9d7D7b989" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbBc2045D335Cb224228f1850b29173d9d7D7b989/logo.png b/blockchains/ethereum/assets/0xbBc2045D335Cb224228f1850b29173d9d7D7b989/logo.png new file mode 100644 index 00000000..5096c98f Binary files /dev/null and b/blockchains/ethereum/assets/0xbBc2045D335Cb224228f1850b29173d9d7D7b989/logo.png differ diff --git a/blockchains/ethereum/assets/0xbC32bE9115c3D2309ccF643f64C119bBc97a5280/info.json b/blockchains/ethereum/assets/0xbC32bE9115c3D2309ccF643f64C119bBc97a5280/info.json new file mode 100644 index 00000000..f156b976 --- /dev/null +++ b/blockchains/ethereum/assets/0xbC32bE9115c3D2309ccF643f64C119bBc97a5280/info.json @@ -0,0 +1,11 @@ +{ + "name": "Myers Exchange", + "symbol": "MYE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbC32bE9115c3D2309ccF643f64C119bBc97a5280", + "status": "abandoned", + "id": "0xbC32bE9115c3D2309ccF643f64C119bBc97a5280" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbC32bE9115c3D2309ccF643f64C119bBc97a5280/logo.png b/blockchains/ethereum/assets/0xbC32bE9115c3D2309ccF643f64C119bBc97a5280/logo.png new file mode 100644 index 00000000..2cbccb17 Binary files /dev/null and b/blockchains/ethereum/assets/0xbC32bE9115c3D2309ccF643f64C119bBc97a5280/logo.png differ diff --git a/blockchains/ethereum/assets/0xbC396689893D065F41bc2C6EcbeE5e0085233447/info.json b/blockchains/ethereum/assets/0xbC396689893D065F41bc2C6EcbeE5e0085233447/info.json new file mode 100644 index 00000000..58b72413 --- /dev/null +++ b/blockchains/ethereum/assets/0xbC396689893D065F41bc2C6EcbeE5e0085233447/info.json @@ -0,0 +1,24 @@ +{ + "name": "Perpetual", + "website": "https://perp.fi", + "description": "Decentralized Perpetual Contract for Every Assets", + "explorer": "https://etherscan.io/token/0xbC396689893D065F41bc2C6EcbeE5e0085233447", + "type": "ERC20", + "symbol": "PERP", + "decimals": 18, + "status": "active", + "id": "0xbC396689893D065F41bc2C6EcbeE5e0085233447", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/perpetual-protocol" + }, + { + "name": "whitepaper", + "url": "https://docs.perp.fi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbC396689893D065F41bc2C6EcbeE5e0085233447/logo.png b/blockchains/ethereum/assets/0xbC396689893D065F41bc2C6EcbeE5e0085233447/logo.png new file mode 100644 index 00000000..d6e78f42 Binary files /dev/null and b/blockchains/ethereum/assets/0xbC396689893D065F41bc2C6EcbeE5e0085233447/logo.png differ diff --git a/blockchains/ethereum/assets/0xbC647aAd10114B89564c0a7aabE542bd0cf2C5aF/info.json b/blockchains/ethereum/assets/0xbC647aAd10114B89564c0a7aabE542bd0cf2C5aF/info.json new file mode 100644 index 00000000..7fbbe63c --- /dev/null +++ b/blockchains/ethereum/assets/0xbC647aAd10114B89564c0a7aabE542bd0cf2C5aF/info.json @@ -0,0 +1,11 @@ +{ + "name": "IONChain Token", + "symbol": "IONC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.ionchain.org", + "explorer": "https://etherscan.io/token/0xbC647aAd10114B89564c0a7aabE542bd0cf2C5aF", + "status": "active", + "id": "0xbC647aAd10114B89564c0a7aabE542bd0cf2C5aF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbC647aAd10114B89564c0a7aabE542bd0cf2C5aF/logo.png b/blockchains/ethereum/assets/0xbC647aAd10114B89564c0a7aabE542bd0cf2C5aF/logo.png new file mode 100644 index 00000000..29448460 Binary files /dev/null and b/blockchains/ethereum/assets/0xbC647aAd10114B89564c0a7aabE542bd0cf2C5aF/logo.png differ diff --git a/blockchains/ethereum/assets/0xbC7Ed0c8cf986ae62337fc8DF3B02C6EC87310Ed/info.json b/blockchains/ethereum/assets/0xbC7Ed0c8cf986ae62337fc8DF3B02C6EC87310Ed/info.json new file mode 100644 index 00000000..b7c681c5 --- /dev/null +++ b/blockchains/ethereum/assets/0xbC7Ed0c8cf986ae62337fc8DF3B02C6EC87310Ed/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xpayment", + "symbol": "XPAY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbC7Ed0c8cf986ae62337fc8DF3B02C6EC87310Ed", + "status": "abandoned", + "id": "0xbC7Ed0c8cf986ae62337fc8DF3B02C6EC87310Ed" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbC7Ed0c8cf986ae62337fc8DF3B02C6EC87310Ed/logo.png b/blockchains/ethereum/assets/0xbC7Ed0c8cf986ae62337fc8DF3B02C6EC87310Ed/logo.png new file mode 100644 index 00000000..35dfd5a8 Binary files /dev/null and b/blockchains/ethereum/assets/0xbC7Ed0c8cf986ae62337fc8DF3B02C6EC87310Ed/logo.png differ diff --git a/blockchains/ethereum/assets/0xbCa3C97837A39099eC3082DF97e28CE91BE14472/info.json b/blockchains/ethereum/assets/0xbCa3C97837A39099eC3082DF97e28CE91BE14472/info.json new file mode 100644 index 00000000..35c5d8c4 --- /dev/null +++ b/blockchains/ethereum/assets/0xbCa3C97837A39099eC3082DF97e28CE91BE14472/info.json @@ -0,0 +1,11 @@ +{ + "name": "Distant Universe Stardust Token", + "symbol": "DUST", + "type": "ERC20", + "decimals": 8, + "description": "DUST is the official currency of the Mutant Universe. It can be earned by contributions to the Mutant cause and used for mining new mutants, as a payment method in NFT marketplaces or games.", + "website": "https://dust-token.com/", + "explorer": "https://etherscan.io/token/0xbCa3C97837A39099eC3082DF97e28CE91BE14472", + "status": "active", + "id": "0xbCa3C97837A39099eC3082DF97e28CE91BE14472" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbCa3C97837A39099eC3082DF97e28CE91BE14472/logo.png b/blockchains/ethereum/assets/0xbCa3C97837A39099eC3082DF97e28CE91BE14472/logo.png new file mode 100644 index 00000000..8bf39155 Binary files /dev/null and b/blockchains/ethereum/assets/0xbCa3C97837A39099eC3082DF97e28CE91BE14472/logo.png differ diff --git a/blockchains/ethereum/assets/0xbCa51cC851000537ac63F7dEFf0BdcF4070D26b5/info.json b/blockchains/ethereum/assets/0xbCa51cC851000537ac63F7dEFf0BdcF4070D26b5/info.json new file mode 100644 index 00000000..2f2b2a9d --- /dev/null +++ b/blockchains/ethereum/assets/0xbCa51cC851000537ac63F7dEFf0BdcF4070D26b5/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoMez", + "symbol": "CMPAY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbCa51cC851000537ac63F7dEFf0BdcF4070D26b5", + "status": "abandoned", + "id": "0xbCa51cC851000537ac63F7dEFf0BdcF4070D26b5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbCa51cC851000537ac63F7dEFf0BdcF4070D26b5/logo.png b/blockchains/ethereum/assets/0xbCa51cC851000537ac63F7dEFf0BdcF4070D26b5/logo.png new file mode 100644 index 00000000..140ef560 Binary files /dev/null and b/blockchains/ethereum/assets/0xbCa51cC851000537ac63F7dEFf0BdcF4070D26b5/logo.png differ diff --git a/blockchains/ethereum/assets/0xbCdfE338D55c061C084D81fD793Ded00A27F226D/info.json b/blockchains/ethereum/assets/0xbCdfE338D55c061C084D81fD793Ded00A27F226D/info.json new file mode 100644 index 00000000..183e7d36 --- /dev/null +++ b/blockchains/ethereum/assets/0xbCdfE338D55c061C084D81fD793Ded00A27F226D/info.json @@ -0,0 +1,11 @@ +{ + "name": "DML Token", + "symbol": "DML", + "type": "ERC20", + "decimals": 18, + "description": "Decentralized Machine. Learning Unleash untapped private data, idle processing power and crowdsourced algorithms.", + "website": "https://decentralizedml.com", + "explorer": "https://etherscan.io/token/0xbCdfE338D55c061C084D81fD793Ded00A27F226D", + "status": "active", + "id": "0xbCdfE338D55c061C084D81fD793Ded00A27F226D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbCdfE338D55c061C084D81fD793Ded00A27F226D/logo.png b/blockchains/ethereum/assets/0xbCdfE338D55c061C084D81fD793Ded00A27F226D/logo.png new file mode 100755 index 00000000..a24d4774 Binary files /dev/null and b/blockchains/ethereum/assets/0xbCdfE338D55c061C084D81fD793Ded00A27F226D/logo.png differ diff --git a/blockchains/ethereum/assets/0xbD03BD923c7D51019Fd84571D84e4eBcf7213509/info.json b/blockchains/ethereum/assets/0xbD03BD923c7D51019Fd84571D84e4eBcf7213509/info.json new file mode 100644 index 00000000..add84a79 --- /dev/null +++ b/blockchains/ethereum/assets/0xbD03BD923c7D51019Fd84571D84e4eBcf7213509/info.json @@ -0,0 +1,25 @@ +{ + "name": "Rocket Token", + "website": "https://rockettoken.net/", + "description": "Rocket is a state of the art DeFi financial system that implements advanced token economics including token burn and staking into its fee structure.", + "explorer": "https://etherscan.io/token/0xbD03BD923c7D51019Fd84571D84e4eBcf7213509", + "type": "ERC20", + "symbol": "RCKT", + "decimals": 18, + "status": "active", + "id": "0xbD03BD923c7D51019Fd84571D84e4eBcf7213509", + "links": [ + { + "name": "github", + "url": "https://github.com/XenoTrades/rockettoken" + }, + { + "name": "x", + "url": "https://x.com/RocketToken" + }, + { + "name": "telegram", + "url": "https://t.me/RocketToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbD03BD923c7D51019Fd84571D84e4eBcf7213509/logo.png b/blockchains/ethereum/assets/0xbD03BD923c7D51019Fd84571D84e4eBcf7213509/logo.png new file mode 100644 index 00000000..9fcd1065 Binary files /dev/null and b/blockchains/ethereum/assets/0xbD03BD923c7D51019Fd84571D84e4eBcf7213509/logo.png differ diff --git a/blockchains/ethereum/assets/0xbD0a4bf098261673d5E6e600Fd87ddcd756e6764/info.json b/blockchains/ethereum/assets/0xbD0a4bf098261673d5E6e600Fd87ddcd756e6764/info.json new file mode 100644 index 00000000..08f3bebd --- /dev/null +++ b/blockchains/ethereum/assets/0xbD0a4bf098261673d5E6e600Fd87ddcd756e6764/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hina Inu Token", + "website": "https://www.realhinainu.com/", + "description": "HINA is a decentralized, peer-to-peer deflationary meme token that passively rewards its holders with a 2% tax redistribution for all transactions.", + "explorer": "https://etherscan.io/token/0xbD0a4bf098261673d5E6e600Fd87ddcd756e6764", + "type": "ERC20", + "symbol": "HINA", + "decimals": 9, + "status": "active", + "id": "0xbD0a4bf098261673d5E6e600Fd87ddcd756e6764" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbD0a4bf098261673d5E6e600Fd87ddcd756e6764/logo.png b/blockchains/ethereum/assets/0xbD0a4bf098261673d5E6e600Fd87ddcd756e6764/logo.png new file mode 100644 index 00000000..6ce3b82e Binary files /dev/null and b/blockchains/ethereum/assets/0xbD0a4bf098261673d5E6e600Fd87ddcd756e6764/logo.png differ diff --git a/blockchains/ethereum/assets/0xbD149D3F7614B52f8A5E7e8986aFd77E5d0E57CF/info.json b/blockchains/ethereum/assets/0xbD149D3F7614B52f8A5E7e8986aFd77E5d0E57CF/info.json new file mode 100644 index 00000000..9dffa68c --- /dev/null +++ b/blockchains/ethereum/assets/0xbD149D3F7614B52f8A5E7e8986aFd77E5d0E57CF/info.json @@ -0,0 +1,11 @@ +{ + "name": "BuckHathCoin", + "symbol": "BHIG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbD149D3F7614B52f8A5E7e8986aFd77E5d0E57CF", + "status": "abandoned", + "id": "0xbD149D3F7614B52f8A5E7e8986aFd77E5d0E57CF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbD149D3F7614B52f8A5E7e8986aFd77E5d0E57CF/logo.png b/blockchains/ethereum/assets/0xbD149D3F7614B52f8A5E7e8986aFd77E5d0E57CF/logo.png new file mode 100644 index 00000000..55594a27 Binary files /dev/null and b/blockchains/ethereum/assets/0xbD149D3F7614B52f8A5E7e8986aFd77E5d0E57CF/logo.png differ diff --git a/blockchains/ethereum/assets/0xbD168CbF9d3a375B38dC51A202B5E8a4E52069Ed/info.json b/blockchains/ethereum/assets/0xbD168CbF9d3a375B38dC51A202B5E8a4E52069Ed/info.json new file mode 100644 index 00000000..41c56584 --- /dev/null +++ b/blockchains/ethereum/assets/0xbD168CbF9d3a375B38dC51A202B5E8a4E52069Ed/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlueWhaleToken", + "symbol": "BWX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbD168CbF9d3a375B38dC51A202B5E8a4E52069Ed", + "status": "abandoned", + "id": "0xbD168CbF9d3a375B38dC51A202B5E8a4E52069Ed" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbD168CbF9d3a375B38dC51A202B5E8a4E52069Ed/logo.png b/blockchains/ethereum/assets/0xbD168CbF9d3a375B38dC51A202B5E8a4E52069Ed/logo.png new file mode 100644 index 00000000..09bcae5d Binary files /dev/null and b/blockchains/ethereum/assets/0xbD168CbF9d3a375B38dC51A202B5E8a4E52069Ed/logo.png differ diff --git a/blockchains/ethereum/assets/0xbD3a1fa2BFba9E21A844564451C77cAF09663ef4/info.json b/blockchains/ethereum/assets/0xbD3a1fa2BFba9E21A844564451C77cAF09663ef4/info.json new file mode 100644 index 00000000..e0a886d3 --- /dev/null +++ b/blockchains/ethereum/assets/0xbD3a1fa2BFba9E21A844564451C77cAF09663ef4/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C540809", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbD3a1fa2BFba9E21A844564451C77cAF09663ef4", + "status": "abandoned", + "id": "0xbD3a1fa2BFba9E21A844564451C77cAF09663ef4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbD3a1fa2BFba9E21A844564451C77cAF09663ef4/logo.png b/blockchains/ethereum/assets/0xbD3a1fa2BFba9E21A844564451C77cAF09663ef4/logo.png new file mode 100644 index 00000000..c1be4774 Binary files /dev/null and b/blockchains/ethereum/assets/0xbD3a1fa2BFba9E21A844564451C77cAF09663ef4/logo.png differ diff --git a/blockchains/ethereum/assets/0xbD4AB8b9C26c4888e2792cAC6d5793Efea9eBb20/info.json b/blockchains/ethereum/assets/0xbD4AB8b9C26c4888e2792cAC6d5793Efea9eBb20/info.json new file mode 100644 index 00000000..37562a6d --- /dev/null +++ b/blockchains/ethereum/assets/0xbD4AB8b9C26c4888e2792cAC6d5793Efea9eBb20/info.json @@ -0,0 +1,11 @@ +{ + "name": "KARTIY", + "symbol": "KRTY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbD4AB8b9C26c4888e2792cAC6d5793Efea9eBb20", + "status": "abandoned", + "id": "0xbD4AB8b9C26c4888e2792cAC6d5793Efea9eBb20" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbD4AB8b9C26c4888e2792cAC6d5793Efea9eBb20/logo.png b/blockchains/ethereum/assets/0xbD4AB8b9C26c4888e2792cAC6d5793Efea9eBb20/logo.png new file mode 100644 index 00000000..ccae2355 Binary files /dev/null and b/blockchains/ethereum/assets/0xbD4AB8b9C26c4888e2792cAC6d5793Efea9eBb20/logo.png differ diff --git a/blockchains/ethereum/assets/0xbD4B60a138b3fce3584EA01f50c0908c18f9677A/info.json b/blockchains/ethereum/assets/0xbD4B60a138b3fce3584EA01f50c0908c18f9677A/info.json new file mode 100644 index 00000000..69f7a1d9 --- /dev/null +++ b/blockchains/ethereum/assets/0xbD4B60a138b3fce3584EA01f50c0908c18f9677A/info.json @@ -0,0 +1,11 @@ +{ + "name": "FinTab", + "symbol": "FNTB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://fintab.io/", + "explorer": "https://etherscan.io/token/0xbD4B60a138b3fce3584EA01f50c0908c18f9677A", + "status": "abandoned", + "id": "0xbD4B60a138b3fce3584EA01f50c0908c18f9677A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbD4B60a138b3fce3584EA01f50c0908c18f9677A/logo.png b/blockchains/ethereum/assets/0xbD4B60a138b3fce3584EA01f50c0908c18f9677A/logo.png new file mode 100644 index 00000000..6c2f158d Binary files /dev/null and b/blockchains/ethereum/assets/0xbD4B60a138b3fce3584EA01f50c0908c18f9677A/logo.png differ diff --git a/blockchains/ethereum/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json b/blockchains/ethereum/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json new file mode 100644 index 00000000..92357773 --- /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 00000000..ec248062 Binary files /dev/null and b/blockchains/ethereum/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/logo.png differ diff --git a/blockchains/ethereum/assets/0xbDCDf13e7ECE3dFBe926979d2fc9942648A4083d/info.json b/blockchains/ethereum/assets/0xbDCDf13e7ECE3dFBe926979d2fc9942648A4083d/info.json new file mode 100644 index 00000000..501e0171 --- /dev/null +++ b/blockchains/ethereum/assets/0xbDCDf13e7ECE3dFBe926979d2fc9942648A4083d/info.json @@ -0,0 +1,11 @@ +{ + "name": "AGI BANK", + "symbol": "AGIB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbDCDf13e7ECE3dFBe926979d2fc9942648A4083d", + "status": "abandoned", + "id": "0xbDCDf13e7ECE3dFBe926979d2fc9942648A4083d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbDCDf13e7ECE3dFBe926979d2fc9942648A4083d/logo.png b/blockchains/ethereum/assets/0xbDCDf13e7ECE3dFBe926979d2fc9942648A4083d/logo.png new file mode 100644 index 00000000..57ddcd30 Binary files /dev/null and b/blockchains/ethereum/assets/0xbDCDf13e7ECE3dFBe926979d2fc9942648A4083d/logo.png differ diff --git a/blockchains/ethereum/assets/0xbDEC45952B5E234EdDC2981B43eeD360826D5087/info.json b/blockchains/ethereum/assets/0xbDEC45952B5E234EdDC2981B43eeD360826D5087/info.json new file mode 100644 index 00000000..c615265f --- /dev/null +++ b/blockchains/ethereum/assets/0xbDEC45952B5E234EdDC2981B43eeD360826D5087/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mogu Token", + "symbol": "MOGX", + "type": "ERC20", + "decimals": 18, + "description": "The Mogu Token(MOGX) is the blockchain-based medium in the Mogu ecosystem, that is fully optimised for distribution, finance, shopping, security by using blockchain technology.", + "website": "https://mogutech.io/", + "explorer": "https://etherscan.io/token/0xbDEC45952B5E234EdDC2981B43eeD360826D5087", + "status": "active", + "id": "0xbDEC45952B5E234EdDC2981B43eeD360826D5087" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbDEC45952B5E234EdDC2981B43eeD360826D5087/logo.png b/blockchains/ethereum/assets/0xbDEC45952B5E234EdDC2981B43eeD360826D5087/logo.png new file mode 100644 index 00000000..eb04c65a Binary files /dev/null and b/blockchains/ethereum/assets/0xbDEC45952B5E234EdDC2981B43eeD360826D5087/logo.png differ diff --git a/blockchains/ethereum/assets/0xbDc4dD4B2f62c446485a1D2E39569466A2Fbd829/info.json b/blockchains/ethereum/assets/0xbDc4dD4B2f62c446485a1D2E39569466A2Fbd829/info.json new file mode 100644 index 00000000..fff28276 --- /dev/null +++ b/blockchains/ethereum/assets/0xbDc4dD4B2f62c446485a1D2E39569466A2Fbd829/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xbitcash", + "symbol": "XTC", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbDc4dD4B2f62c446485a1D2E39569466A2Fbd829", + "status": "abandoned", + "id": "0xbDc4dD4B2f62c446485a1D2E39569466A2Fbd829" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbDc4dD4B2f62c446485a1D2E39569466A2Fbd829/logo.png b/blockchains/ethereum/assets/0xbDc4dD4B2f62c446485a1D2E39569466A2Fbd829/logo.png new file mode 100644 index 00000000..76ea5b1f Binary files /dev/null and b/blockchains/ethereum/assets/0xbDc4dD4B2f62c446485a1D2E39569466A2Fbd829/logo.png differ diff --git a/blockchains/ethereum/assets/0xbDda280Ee7bcCC68F3be60a369b6B1eAee02493C/info.json b/blockchains/ethereum/assets/0xbDda280Ee7bcCC68F3be60a369b6B1eAee02493C/info.json new file mode 100644 index 00000000..3134932b --- /dev/null +++ b/blockchains/ethereum/assets/0xbDda280Ee7bcCC68F3be60a369b6B1eAee02493C/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitoxTokens", + "symbol": "BITOX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbDda280Ee7bcCC68F3be60a369b6B1eAee02493C", + "status": "abandoned", + "id": "0xbDda280Ee7bcCC68F3be60a369b6B1eAee02493C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbDda280Ee7bcCC68F3be60a369b6B1eAee02493C/logo.png b/blockchains/ethereum/assets/0xbDda280Ee7bcCC68F3be60a369b6B1eAee02493C/logo.png new file mode 100644 index 00000000..971263c5 Binary files /dev/null and b/blockchains/ethereum/assets/0xbDda280Ee7bcCC68F3be60a369b6B1eAee02493C/logo.png differ diff --git a/blockchains/ethereum/assets/0xbE0aE3C18b985f65d539Ca2Db3f888E06c0cB124/info.json b/blockchains/ethereum/assets/0xbE0aE3C18b985f65d539Ca2Db3f888E06c0cB124/info.json new file mode 100644 index 00000000..40d41a9d --- /dev/null +++ b/blockchains/ethereum/assets/0xbE0aE3C18b985f65d539Ca2Db3f888E06c0cB124/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kaleido", + "symbol": "KAL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbE0aE3C18b985f65d539Ca2Db3f888E06c0cB124", + "status": "abandoned", + "id": "0xbE0aE3C18b985f65d539Ca2Db3f888E06c0cB124" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbE0aE3C18b985f65d539Ca2Db3f888E06c0cB124/logo.png b/blockchains/ethereum/assets/0xbE0aE3C18b985f65d539Ca2Db3f888E06c0cB124/logo.png new file mode 100644 index 00000000..4f15bee8 Binary files /dev/null and b/blockchains/ethereum/assets/0xbE0aE3C18b985f65d539Ca2Db3f888E06c0cB124/logo.png differ diff --git a/blockchains/ethereum/assets/0xbE47f50c85d9f3da055bc8CddAA33DEa16926D9D/info.json b/blockchains/ethereum/assets/0xbE47f50c85d9f3da055bc8CddAA33DEa16926D9D/info.json new file mode 100644 index 00000000..c7e4eb6a --- /dev/null +++ b/blockchains/ethereum/assets/0xbE47f50c85d9f3da055bc8CddAA33DEa16926D9D/info.json @@ -0,0 +1,11 @@ +{ + "name": "YUNG", + "symbol": "YUNG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbE47f50c85d9f3da055bc8CddAA33DEa16926D9D", + "status": "abandoned", + "id": "0xbE47f50c85d9f3da055bc8CddAA33DEa16926D9D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbE47f50c85d9f3da055bc8CddAA33DEa16926D9D/logo.png b/blockchains/ethereum/assets/0xbE47f50c85d9f3da055bc8CddAA33DEa16926D9D/logo.png new file mode 100644 index 00000000..bf67cdc4 Binary files /dev/null and b/blockchains/ethereum/assets/0xbE47f50c85d9f3da055bc8CddAA33DEa16926D9D/logo.png differ diff --git a/blockchains/ethereum/assets/0xbE8F047Fc2EB324911e8eF9040f175984DC2DC18/info.json b/blockchains/ethereum/assets/0xbE8F047Fc2EB324911e8eF9040f175984DC2DC18/info.json new file mode 100644 index 00000000..9c6a5146 --- /dev/null +++ b/blockchains/ethereum/assets/0xbE8F047Fc2EB324911e8eF9040f175984DC2DC18/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nextar Standard", + "symbol": "NEX", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbE8F047Fc2EB324911e8eF9040f175984DC2DC18", + "status": "abandoned", + "id": "0xbE8F047Fc2EB324911e8eF9040f175984DC2DC18" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbE8F047Fc2EB324911e8eF9040f175984DC2DC18/logo.png b/blockchains/ethereum/assets/0xbE8F047Fc2EB324911e8eF9040f175984DC2DC18/logo.png new file mode 100644 index 00000000..65263e04 Binary files /dev/null and b/blockchains/ethereum/assets/0xbE8F047Fc2EB324911e8eF9040f175984DC2DC18/logo.png differ diff --git a/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/info.json b/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/info.json new file mode 100644 index 00000000..723128ac --- /dev/null +++ b/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/info.json @@ -0,0 +1,25 @@ +{ + "name": "StormX", + "website": "https://stormx.io", + "description": "Earn crypto when you shop online.", + "explorer": "https://etherscan.io/token/0xbe9375c6a420d2eeb258962efb95551a5b722803", + "type": "ERC20", + "symbol": "STMX", + "decimals": 18, + "status": "abandoned", + "id": "0xbE9375C6a420D2eEB258962efB95551A5b722803", + "links": [ + { + "name": "x", + "url": "https://x.com/Stormxio" + }, + { + "name": "telegram", + "url": "https://t.me/stormxapp" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/stormxio/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb/info.json b/blockchains/ethereum/assets/0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb/info.json new file mode 100644 index 00000000..1a4e1d66 --- /dev/null +++ b/blockchains/ethereum/assets/0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb/info.json @@ -0,0 +1,52 @@ +{ + "name": "GYSR", + "website": "https://gysr.io", + "description": "GYSR is an open platform for on-chain incentives.", + "explorer": "https://etherscan.io/token/0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb", + "type": "ERC20", + "symbol": "GYSR", + "decimals": 18, + "status": "active", + "id": "0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb", + "links": [ + { + "name": "github", + "url": "https://github.com/gysr-io" + }, + { + "name": "x", + "url": "https://x.com/gysr_io" + }, + { + "name": "telegram", + "url": "https://t.me/gysr_io" + }, + { + "name": "discord", + "url": "https://discord.com/invite/qjWa7JB" + }, + { + "name": "medium", + "url": "https://medium.com/gysr" + }, + { + "name": "blog", + "url": "https://gysr.substack.com" + }, + { + "name": "whitepaper", + "url": "https://resources.gysr.io/gysr_v2_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gysr" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/geyser" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb/logo.png b/blockchains/ethereum/assets/0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb/logo.png new file mode 100644 index 00000000..18ceeb85 Binary files /dev/null and b/blockchains/ethereum/assets/0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb/logo.png differ diff --git a/blockchains/ethereum/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json b/blockchains/ethereum/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json new file mode 100644 index 00000000..7a36a0d5 --- /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 00000000..ce91cfbf Binary files /dev/null and b/blockchains/ethereum/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/logo.png differ diff --git a/blockchains/ethereum/assets/0xbEe9Cf658702527b0AcB2719c1FAA29EdC006a92/info.json b/blockchains/ethereum/assets/0xbEe9Cf658702527b0AcB2719c1FAA29EdC006a92/info.json new file mode 100644 index 00000000..065fb427 --- /dev/null +++ b/blockchains/ethereum/assets/0xbEe9Cf658702527b0AcB2719c1FAA29EdC006a92/info.json @@ -0,0 +1,11 @@ +{ + "name": "Strike ETH", + "symbol": "sETH", + "type": "ERC20", + "decimals": 18, + "description": "Strike Finance collateral cryptocurrency", + "explorer": "https://etherscan.io/token/0xbEe9Cf658702527b0AcB2719c1FAA29EdC006a92", + "status": "active", + "id": "0xbEe9Cf658702527b0AcB2719c1FAA29EdC006a92", + "website": "https://strike.org" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbEe9Cf658702527b0AcB2719c1FAA29EdC006a92/logo.png b/blockchains/ethereum/assets/0xbEe9Cf658702527b0AcB2719c1FAA29EdC006a92/logo.png new file mode 100644 index 00000000..529cc94e Binary files /dev/null and b/blockchains/ethereum/assets/0xbEe9Cf658702527b0AcB2719c1FAA29EdC006a92/logo.png differ diff --git a/blockchains/ethereum/assets/0xbF18F246B9301F231e9561B35A3879769BB46375/info.json b/blockchains/ethereum/assets/0xbF18F246B9301F231e9561B35A3879769BB46375/info.json new file mode 100644 index 00000000..63665c7b --- /dev/null +++ b/blockchains/ethereum/assets/0xbF18F246B9301F231e9561B35A3879769BB46375/info.json @@ -0,0 +1,11 @@ +{ + "name": "Token Care", + "symbol": "CARE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbF18F246B9301F231e9561B35A3879769BB46375", + "status": "abandoned", + "id": "0xbF18F246B9301F231e9561B35A3879769BB46375" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbF18F246B9301F231e9561B35A3879769BB46375/logo.png b/blockchains/ethereum/assets/0xbF18F246B9301F231e9561B35A3879769BB46375/logo.png new file mode 100644 index 00000000..af03dcb2 Binary files /dev/null and b/blockchains/ethereum/assets/0xbF18F246B9301F231e9561B35A3879769BB46375/logo.png differ diff --git a/blockchains/ethereum/assets/0xbF24a875BF58a2473005f9271Bd023b656721D3e/info.json b/blockchains/ethereum/assets/0xbF24a875BF58a2473005f9271Bd023b656721D3e/info.json new file mode 100644 index 00000000..9c8bf307 --- /dev/null +++ b/blockchains/ethereum/assets/0xbF24a875BF58a2473005f9271Bd023b656721D3e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Colorado Coin", + "symbol": "COLO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbF24a875BF58a2473005f9271Bd023b656721D3e", + "status": "abandoned", + "id": "0xbF24a875BF58a2473005f9271Bd023b656721D3e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbF24a875BF58a2473005f9271Bd023b656721D3e/logo.png b/blockchains/ethereum/assets/0xbF24a875BF58a2473005f9271Bd023b656721D3e/logo.png new file mode 100755 index 00000000..180048ca Binary files /dev/null and b/blockchains/ethereum/assets/0xbF24a875BF58a2473005f9271Bd023b656721D3e/logo.png differ diff --git a/blockchains/ethereum/assets/0xbF4a2DdaA16148a9D0fA2093FfAC450ADb7cd4aa/info.json b/blockchains/ethereum/assets/0xbF4a2DdaA16148a9D0fA2093FfAC450ADb7cd4aa/info.json new file mode 100644 index 00000000..66f66d7c --- /dev/null +++ b/blockchains/ethereum/assets/0xbF4a2DdaA16148a9D0fA2093FfAC450ADb7cd4aa/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Money", + "symbol": "ETHMNY", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "https://ethmny.net", + "explorer": "https://etherscan.io/token/0xbF4a2DdaA16148a9D0fA2093FfAC450ADb7cd4aa", + "status": "abandoned", + "id": "0xbF4a2DdaA16148a9D0fA2093FfAC450ADb7cd4aa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbF4a2DdaA16148a9D0fA2093FfAC450ADb7cd4aa/logo.png b/blockchains/ethereum/assets/0xbF4a2DdaA16148a9D0fA2093FfAC450ADb7cd4aa/logo.png new file mode 100644 index 00000000..52f11f5f Binary files /dev/null and b/blockchains/ethereum/assets/0xbF4a2DdaA16148a9D0fA2093FfAC450ADb7cd4aa/logo.png differ diff --git a/blockchains/ethereum/assets/0xbF5496122CF1bB778E0cBE5eaB936f2BE5fC0940/info.json b/blockchains/ethereum/assets/0xbF5496122CF1bB778E0cBE5eaB936f2BE5fC0940/info.json new file mode 100644 index 00000000..4f4c7b65 --- /dev/null +++ b/blockchains/ethereum/assets/0xbF5496122CF1bB778E0cBE5eaB936f2BE5fC0940/info.json @@ -0,0 +1,11 @@ +{ + "name": "FundToken", + "symbol": "FUNDZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbF5496122CF1bB778E0cBE5eaB936f2BE5fC0940", + "status": "abandoned", + "id": "0xbF5496122CF1bB778E0cBE5eaB936f2BE5fC0940" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbF5496122CF1bB778E0cBE5eaB936f2BE5fC0940/logo.png b/blockchains/ethereum/assets/0xbF5496122CF1bB778E0cBE5eaB936f2BE5fC0940/logo.png new file mode 100644 index 00000000..7111983b Binary files /dev/null and b/blockchains/ethereum/assets/0xbF5496122CF1bB778E0cBE5eaB936f2BE5fC0940/logo.png differ diff --git a/blockchains/ethereum/assets/0xbF59e6fe2Bc4eE8D303E493390b4aacab16fcc91/info.json b/blockchains/ethereum/assets/0xbF59e6fe2Bc4eE8D303E493390b4aacab16fcc91/info.json new file mode 100644 index 00000000..7d717fe3 --- /dev/null +++ b/blockchains/ethereum/assets/0xbF59e6fe2Bc4eE8D303E493390b4aacab16fcc91/info.json @@ -0,0 +1,11 @@ +{ + "name": "Clipper Coin Capital", + "symbol": "CCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbF59e6fe2Bc4eE8D303E493390b4aacab16fcc91", + "status": "abandoned", + "id": "0xbF59e6fe2Bc4eE8D303E493390b4aacab16fcc91" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbF59e6fe2Bc4eE8D303E493390b4aacab16fcc91/logo.png b/blockchains/ethereum/assets/0xbF59e6fe2Bc4eE8D303E493390b4aacab16fcc91/logo.png new file mode 100644 index 00000000..720d5e1b Binary files /dev/null and b/blockchains/ethereum/assets/0xbF59e6fe2Bc4eE8D303E493390b4aacab16fcc91/logo.png differ diff --git a/blockchains/ethereum/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json b/blockchains/ethereum/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json new file mode 100644 index 00000000..fcaea46f --- /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 00000000..d66f3d33 Binary files /dev/null and b/blockchains/ethereum/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/logo.png differ diff --git a/blockchains/ethereum/assets/0xba100000625a3754423978a60c9317c58a424e3D/info.json b/blockchains/ethereum/assets/0xba100000625a3754423978a60c9317c58a424e3D/info.json new file mode 100644 index 00000000..5646aa0c --- /dev/null +++ b/blockchains/ethereum/assets/0xba100000625a3754423978a60c9317c58a424e3D/info.json @@ -0,0 +1,12 @@ +{ + "name": "Balancer", + "website": "https://balancer.finance", + "description": "Balancer is a non-custodial portfolio manager, liquidity provider, and price sensor.", + "explorer": "https://etherscan.io/token/0xba100000625a3754423978a60c9317c58a424e3D", + "research": "https://research.binance.com/en/projects/balancer", + "type": "ERC20", + "symbol": "BAL", + "decimals": 18, + "status": "active", + "id": "0xba100000625a3754423978a60c9317c58a424e3D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xba100000625a3754423978a60c9317c58a424e3D/logo.png b/blockchains/ethereum/assets/0xba100000625a3754423978a60c9317c58a424e3D/logo.png new file mode 100644 index 00000000..81d5c063 Binary files /dev/null and b/blockchains/ethereum/assets/0xba100000625a3754423978a60c9317c58a424e3D/logo.png differ diff --git a/blockchains/ethereum/assets/0xba2184520A1cC49a6159c57e61E1844E085615B6/info.json b/blockchains/ethereum/assets/0xba2184520A1cC49a6159c57e61E1844E085615B6/info.json new file mode 100644 index 00000000..fc464679 --- /dev/null +++ b/blockchains/ethereum/assets/0xba2184520A1cC49a6159c57e61E1844E085615B6/info.json @@ -0,0 +1,11 @@ +{ + "name": "HelloGold Token", + "symbol": "HGT", + "type": "ERC20", + "decimals": 8, + "description": "GOLDX app lets you buy investment grade gold and turn it into an Ethereum compatible asset from your phone, from as low as 1 USDC.", + "website": "https://www.hgfoundation.io", + "explorer": "https://etherscan.io/token/0xba2184520A1cC49a6159c57e61E1844E085615B6", + "status": "active", + "id": "0xba2184520A1cC49a6159c57e61E1844E085615B6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xba2184520A1cC49a6159c57e61E1844E085615B6/logo.png b/blockchains/ethereum/assets/0xba2184520A1cC49a6159c57e61E1844E085615B6/logo.png new file mode 100644 index 00000000..6b22398c Binary files /dev/null and b/blockchains/ethereum/assets/0xba2184520A1cC49a6159c57e61E1844E085615B6/logo.png differ diff --git a/blockchains/ethereum/assets/0xba358B6f5b4c0215650444B8C30D870B55050D2D/info.json b/blockchains/ethereum/assets/0xba358B6f5b4c0215650444B8C30D870B55050D2D/info.json new file mode 100644 index 00000000..aad781a9 --- /dev/null +++ b/blockchains/ethereum/assets/0xba358B6f5b4c0215650444B8C30D870B55050D2D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hub", + "website": "https://hubtoken.org", + "description": "Hub, the Human Trust Protocol, solves endemic trust problems and provides verifiable and portable trust. The HUB token’s aim is to encode identity and reputation on the blockchain, to become the next digital identity protocol interoperable across multiple platforms.", + "explorer": "https://etherscan.io/token/0xba358B6f5b4c0215650444B8C30D870B55050D2D", + "type": "ERC20", + "symbol": "HUB", + "decimals": 18, + "status": "active", + "id": "0xba358B6f5b4c0215650444B8C30D870B55050D2D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xba358B6f5b4c0215650444B8C30D870B55050D2D/logo.png b/blockchains/ethereum/assets/0xba358B6f5b4c0215650444B8C30D870B55050D2D/logo.png new file mode 100644 index 00000000..ca264af3 Binary files /dev/null and b/blockchains/ethereum/assets/0xba358B6f5b4c0215650444B8C30D870B55050D2D/logo.png differ diff --git a/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/info.json b/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/info.json new file mode 100644 index 00000000..6b6f178c --- /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 00000000..c14967e2 Binary files /dev/null and b/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/logo.png differ diff --git a/blockchains/ethereum/assets/0xba3BEB53b4e82fCFB15fD890F7213dc22C4883a5/info.json b/blockchains/ethereum/assets/0xba3BEB53b4e82fCFB15fD890F7213dc22C4883a5/info.json new file mode 100644 index 00000000..cb683bab --- /dev/null +++ b/blockchains/ethereum/assets/0xba3BEB53b4e82fCFB15fD890F7213dc22C4883a5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blue Live Coin", + "symbol": "BLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xba3BEB53b4e82fCFB15fD890F7213dc22C4883a5", + "status": "abandoned", + "id": "0xba3BEB53b4e82fCFB15fD890F7213dc22C4883a5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xba3BEB53b4e82fCFB15fD890F7213dc22C4883a5/logo.png b/blockchains/ethereum/assets/0xba3BEB53b4e82fCFB15fD890F7213dc22C4883a5/logo.png new file mode 100644 index 00000000..8b29d199 Binary files /dev/null and b/blockchains/ethereum/assets/0xba3BEB53b4e82fCFB15fD890F7213dc22C4883a5/logo.png differ diff --git a/blockchains/ethereum/assets/0xba3D9687Cf50fE253cd2e1cFeEdE1d6787344Ed5/info.json b/blockchains/ethereum/assets/0xba3D9687Cf50fE253cd2e1cFeEdE1d6787344Ed5/info.json new file mode 100644 index 00000000..5286a9bb --- /dev/null +++ b/blockchains/ethereum/assets/0xba3D9687Cf50fE253cd2e1cFeEdE1d6787344Ed5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave AAVE V1", + "symbol": "aAAVE V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave AAVE V1 is an interest bearing token pegged 1:1 to the underlying AAVE deposited in Aave V1. aAAVE V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xba3D9687Cf50fE253cd2e1cFeEdE1d6787344Ed5", + "status": "active", + "id": "0xba3D9687Cf50fE253cd2e1cFeEdE1d6787344Ed5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xba3D9687Cf50fE253cd2e1cFeEdE1d6787344Ed5/logo.png b/blockchains/ethereum/assets/0xba3D9687Cf50fE253cd2e1cFeEdE1d6787344Ed5/logo.png new file mode 100644 index 00000000..c0a121c9 Binary files /dev/null and b/blockchains/ethereum/assets/0xba3D9687Cf50fE253cd2e1cFeEdE1d6787344Ed5/logo.png differ diff --git a/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/info.json b/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/info.json new file mode 100644 index 00000000..05582765 --- /dev/null +++ b/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/info.json @@ -0,0 +1,28 @@ +{ + "name": "SuperRare", + "website": "https://superrare.com/", + "description": "A network owned & governed by artists, collectors and curators", + "explorer": "https://etherscan.io/token/0xba5BDe662c17e2aDFF1075610382B9B691296350", + "type": "ERC20", + "symbol": "RARE", + "decimals": 18, + "status": "active", + "id": "0xba5BDe662c17e2aDFF1075610382B9B691296350", + "links": [ + { + "name": "x", + "url": "https://x.com/SuperRare" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/superrare/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/superrare/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/logo.png b/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/logo.png new file mode 100644 index 00000000..e4996ed3 Binary files /dev/null and b/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/logo.png differ diff --git a/blockchains/ethereum/assets/0xba7435A4b4C747E0101780073eedA872a69Bdcd4/info.json b/blockchains/ethereum/assets/0xba7435A4b4C747E0101780073eedA872a69Bdcd4/info.json new file mode 100644 index 00000000..3108b3fd --- /dev/null +++ b/blockchains/ethereum/assets/0xba7435A4b4C747E0101780073eedA872a69Bdcd4/info.json @@ -0,0 +1,11 @@ +{ + "name": "AirdropToken", + "symbol": "AIRDROP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xba7435A4b4C747E0101780073eedA872a69Bdcd4", + "status": "abandoned", + "id": "0xba7435A4b4C747E0101780073eedA872a69Bdcd4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xba7435A4b4C747E0101780073eedA872a69Bdcd4/logo.png b/blockchains/ethereum/assets/0xba7435A4b4C747E0101780073eedA872a69Bdcd4/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0xba7435A4b4C747E0101780073eedA872a69Bdcd4/logo.png differ diff --git a/blockchains/ethereum/assets/0xba7b2C094C1A4757f9534a37d296a3BeD7f544DC/info.json b/blockchains/ethereum/assets/0xba7b2C094C1A4757f9534a37d296a3BeD7f544DC/info.json new file mode 100644 index 00000000..91ab9b16 --- /dev/null +++ b/blockchains/ethereum/assets/0xba7b2C094C1A4757f9534a37d296a3BeD7f544DC/info.json @@ -0,0 +1,11 @@ +{ + "name": "HLAND", + "website": "https://htw.land/", + "description": "World Best Crypto DeFi Yield Farming", + "explorer": "https://etherscan.io/token/0xba7b2C094C1A4757f9534a37d296a3BeD7f544DC", + "type": "ERC20", + "symbol": "HLAND", + "decimals": 18, + "status": "active", + "id": "0xba7b2C094C1A4757f9534a37d296a3BeD7f544DC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xba7b2C094C1A4757f9534a37d296a3BeD7f544DC/logo.png b/blockchains/ethereum/assets/0xba7b2C094C1A4757f9534a37d296a3BeD7f544DC/logo.png new file mode 100644 index 00000000..9b76b721 Binary files /dev/null and b/blockchains/ethereum/assets/0xba7b2C094C1A4757f9534a37d296a3BeD7f544DC/logo.png differ diff --git a/blockchains/ethereum/assets/0xba83b5ed3f12Bfa44f066f03eE0433419B74f469/info.json b/blockchains/ethereum/assets/0xba83b5ed3f12Bfa44f066f03eE0433419B74f469/info.json new file mode 100644 index 00000000..a7b2f546 --- /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 00000000..363019da 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 new file mode 100644 index 00000000..6436cab6 --- /dev/null +++ b/blockchains/ethereum/assets/0xba9d4199faB4f26eFE3551D490E3821486f135Ba/info.json @@ -0,0 +1,41 @@ +{ + "name": "SwissBorg", + "website": "https://swissborg.com", + "description": "SwissBorg is a wealthtech offering Swiss-made crypto investment solutions to the world.", + "explorer": "https://etherscan.io/token/0xba9d4199faB4f26eFE3551D490E3821486f135Ba", + "type": "ERC20", + "symbol": "CHSB", + "decimals": 8, + "status": "active", + "id": "0xba9d4199faB4f26eFE3551D490E3821486f135Ba", + "links": [ + { + "name": "github", + "url": "https://github.com/SwissBorg" + }, + { + "name": "x", + "url": "https://x.com/swissborg" + }, + { + "name": "blog", + "url": "https://medium.com/swissborg" + }, + { + "name": "facebook", + "url": "https://facebook.com/swissborg" + }, + { + "name": "telegram", + "url": "https://t.me/SwissBorgChat" + }, + { + "name": "whitepaper", + "url": "https://swissborg.com/en/documents.html" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/swissborg/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xba9d4199faB4f26eFE3551D490E3821486f135Ba/logo.png b/blockchains/ethereum/assets/0xba9d4199faB4f26eFE3551D490E3821486f135Ba/logo.png new file mode 100755 index 00000000..aec10f6f Binary files /dev/null and b/blockchains/ethereum/assets/0xba9d4199faB4f26eFE3551D490E3821486f135Ba/logo.png differ diff --git a/blockchains/ethereum/assets/0xbb1EE07d6c7BAeB702949904080eb61f5D5e7732/info.json b/blockchains/ethereum/assets/0xbb1EE07d6c7BAeB702949904080eb61f5D5e7732/info.json new file mode 100644 index 00000000..99e0303d --- /dev/null +++ b/blockchains/ethereum/assets/0xbb1EE07d6c7BAeB702949904080eb61f5D5e7732/info.json @@ -0,0 +1,14 @@ +{ + "name": "Dogey-Inu", + "type": "ERC20", + "symbol": "DINU", + "decimals": 18, + "website": "https://dogeyinu.com/", + "description": "An experiment in decentralized community building around a simple erc-20 token. ", + "explorer": "https://etherscan.io/token/0xbb1ee07d6c7baeb702949904080eb61f5d5e7732", + "status": "active", + "id": "0xbb1EE07d6c7BAeB702949904080eb61f5D5e7732", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbb1EE07d6c7BAeB702949904080eb61f5D5e7732/logo.png b/blockchains/ethereum/assets/0xbb1EE07d6c7BAeB702949904080eb61f5D5e7732/logo.png new file mode 100644 index 00000000..3ea69e10 Binary files /dev/null and b/blockchains/ethereum/assets/0xbb1EE07d6c7BAeB702949904080eb61f5D5e7732/logo.png differ diff --git a/blockchains/ethereum/assets/0xbb2B6dB3d2B52db9edF9C2F6a6ed3742Cc0Adf82/info.json b/blockchains/ethereum/assets/0xbb2B6dB3d2B52db9edF9C2F6a6ed3742Cc0Adf82/info.json new file mode 100644 index 00000000..3bf5965c --- /dev/null +++ b/blockchains/ethereum/assets/0xbb2B6dB3d2B52db9edF9C2F6a6ed3742Cc0Adf82/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniversalGlobalIntegral", + "symbol": "UGI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbb2B6dB3d2B52db9edF9C2F6a6ed3742Cc0Adf82", + "status": "abandoned", + "id": "0xbb2B6dB3d2B52db9edF9C2F6a6ed3742Cc0Adf82" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbb2B6dB3d2B52db9edF9C2F6a6ed3742Cc0Adf82/logo.png b/blockchains/ethereum/assets/0xbb2B6dB3d2B52db9edF9C2F6a6ed3742Cc0Adf82/logo.png new file mode 100755 index 00000000..e4953745 Binary files /dev/null and b/blockchains/ethereum/assets/0xbb2B6dB3d2B52db9edF9C2F6a6ed3742Cc0Adf82/logo.png differ diff --git a/blockchains/ethereum/assets/0xbb2f95F286ec090555dCa7c0BB49948C59494FdC/info.json b/blockchains/ethereum/assets/0xbb2f95F286ec090555dCa7c0BB49948C59494FdC/info.json new file mode 100644 index 00000000..4c632899 --- /dev/null +++ b/blockchains/ethereum/assets/0xbb2f95F286ec090555dCa7c0BB49948C59494FdC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rupiah Coin", + "symbol": "IDRC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbb2f95F286ec090555dCa7c0BB49948C59494FdC", + "status": "abandoned", + "id": "0xbb2f95F286ec090555dCa7c0BB49948C59494FdC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbb2f95F286ec090555dCa7c0BB49948C59494FdC/logo.png b/blockchains/ethereum/assets/0xbb2f95F286ec090555dCa7c0BB49948C59494FdC/logo.png new file mode 100644 index 00000000..0c7c144b Binary files /dev/null and b/blockchains/ethereum/assets/0xbb2f95F286ec090555dCa7c0BB49948C59494FdC/logo.png differ diff --git a/blockchains/ethereum/assets/0xbb325121a2BE1294b51C10ec56989e5693D0F59D/info.json b/blockchains/ethereum/assets/0xbb325121a2BE1294b51C10ec56989e5693D0F59D/info.json new file mode 100644 index 00000000..c739aed1 --- /dev/null +++ b/blockchains/ethereum/assets/0xbb325121a2BE1294b51C10ec56989e5693D0F59D/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniversalCoin", + "symbol": "UNV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbb325121a2BE1294b51C10ec56989e5693D0F59D", + "status": "abandoned", + "id": "0xbb325121a2BE1294b51C10ec56989e5693D0F59D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbb325121a2BE1294b51C10ec56989e5693D0F59D/logo.png b/blockchains/ethereum/assets/0xbb325121a2BE1294b51C10ec56989e5693D0F59D/logo.png new file mode 100755 index 00000000..f7a45b4a Binary files /dev/null and b/blockchains/ethereum/assets/0xbb325121a2BE1294b51C10ec56989e5693D0F59D/logo.png differ diff --git a/blockchains/ethereum/assets/0xbb8774FB97436d23d74C1b882E8E9A69322cFD31/info.json b/blockchains/ethereum/assets/0xbb8774FB97436d23d74C1b882E8E9A69322cFD31/info.json new file mode 100644 index 00000000..799a95e0 --- /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 00000000..958a37b0 Binary files /dev/null and b/blockchains/ethereum/assets/0xbb8774FB97436d23d74C1b882E8E9A69322cFD31/logo.png differ diff --git a/blockchains/ethereum/assets/0xbb92579DE560A2d7D300648A3e7c685e80A757d0/info.json b/blockchains/ethereum/assets/0xbb92579DE560A2d7D300648A3e7c685e80A757d0/info.json new file mode 100644 index 00000000..85342fce --- /dev/null +++ b/blockchains/ethereum/assets/0xbb92579DE560A2d7D300648A3e7c685e80A757d0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neutron", + "symbol": "NTN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbb92579DE560A2d7D300648A3e7c685e80A757d0", + "status": "abandoned", + "id": "0xbb92579DE560A2d7D300648A3e7c685e80A757d0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbb92579DE560A2d7D300648A3e7c685e80A757d0/logo.png b/blockchains/ethereum/assets/0xbb92579DE560A2d7D300648A3e7c685e80A757d0/logo.png new file mode 100644 index 00000000..9fabf184 Binary files /dev/null and b/blockchains/ethereum/assets/0xbb92579DE560A2d7D300648A3e7c685e80A757d0/logo.png differ diff --git a/blockchains/ethereum/assets/0xbbC13c862d9C5377bed1113BB5AF585912CAAd5f/info.json b/blockchains/ethereum/assets/0xbbC13c862d9C5377bed1113BB5AF585912CAAd5f/info.json new file mode 100644 index 00000000..925ff9ab --- /dev/null +++ b/blockchains/ethereum/assets/0xbbC13c862d9C5377bed1113BB5AF585912CAAd5f/info.json @@ -0,0 +1,11 @@ +{ + "name": "NEOBANKTOKEN", + "symbol": "NOC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbbC13c862d9C5377bed1113BB5AF585912CAAd5f", + "status": "abandoned", + "id": "0xbbC13c862d9C5377bed1113BB5AF585912CAAd5f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbbC13c862d9C5377bed1113BB5AF585912CAAd5f/logo.png b/blockchains/ethereum/assets/0xbbC13c862d9C5377bed1113BB5AF585912CAAd5f/logo.png new file mode 100644 index 00000000..d7438163 Binary files /dev/null and b/blockchains/ethereum/assets/0xbbC13c862d9C5377bed1113BB5AF585912CAAd5f/logo.png differ diff --git a/blockchains/ethereum/assets/0xbbEE07B3e8121227AfCFe1E2B82772246226128e/info.json b/blockchains/ethereum/assets/0xbbEE07B3e8121227AfCFe1E2B82772246226128e/info.json new file mode 100644 index 00000000..9d7cd5ff --- /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 00000000..c0f06e25 Binary files /dev/null and b/blockchains/ethereum/assets/0xbbEE07B3e8121227AfCFe1E2B82772246226128e/logo.png differ diff --git a/blockchains/ethereum/assets/0xbbFF862d906E348E9946Bfb2132ecB157Da3D4b4/info.json b/blockchains/ethereum/assets/0xbbFF862d906E348E9946Bfb2132ecB157Da3D4b4/info.json new file mode 100644 index 00000000..564a34ed --- /dev/null +++ b/blockchains/ethereum/assets/0xbbFF862d906E348E9946Bfb2132ecB157Da3D4b4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sharder", + "website": "https://sharder.org", + "description": "Sharder is a multi-chain storage & validation network.", + "explorer": "https://etherscan.io/token/0xbbFF862d906E348E9946Bfb2132ecB157Da3D4b4", + "type": "ERC20", + "symbol": "SS", + "decimals": 18, + "status": "active", + "id": "0xbbFF862d906E348E9946Bfb2132ecB157Da3D4b4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbbFF862d906E348E9946Bfb2132ecB157Da3D4b4/logo.png b/blockchains/ethereum/assets/0xbbFF862d906E348E9946Bfb2132ecB157Da3D4b4/logo.png new file mode 100644 index 00000000..c794dc10 Binary files /dev/null and b/blockchains/ethereum/assets/0xbbFF862d906E348E9946Bfb2132ecB157Da3D4b4/logo.png differ diff --git a/blockchains/ethereum/assets/0xbbd227e805b90b8FE8f4c01A3f4E48bdAE0599af/info.json b/blockchains/ethereum/assets/0xbbd227e805b90b8FE8f4c01A3f4E48bdAE0599af/info.json new file mode 100644 index 00000000..0452409d --- /dev/null +++ b/blockchains/ethereum/assets/0xbbd227e805b90b8FE8f4c01A3f4E48bdAE0599af/info.json @@ -0,0 +1,11 @@ +{ + "name": "Phoneum Token", + "symbol": "PHT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "https://phoneum.io", + "explorer": "https://etherscan.io/token/0xbbd227e805b90b8FE8f4c01A3f4E48bdAE0599af", + "status": "abandoned", + "id": "0xbbd227e805b90b8FE8f4c01A3f4E48bdAE0599af" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbbd227e805b90b8FE8f4c01A3f4E48bdAE0599af/logo.png b/blockchains/ethereum/assets/0xbbd227e805b90b8FE8f4c01A3f4E48bdAE0599af/logo.png new file mode 100644 index 00000000..c8e5e9a3 Binary files /dev/null and b/blockchains/ethereum/assets/0xbbd227e805b90b8FE8f4c01A3f4E48bdAE0599af/logo.png differ diff --git a/blockchains/ethereum/assets/0xbc16da9df0A22f01A16BC0620a27e7D6d6488550/info.json b/blockchains/ethereum/assets/0xbc16da9df0A22f01A16BC0620a27e7D6d6488550/info.json new file mode 100644 index 00000000..78381266 --- /dev/null +++ b/blockchains/ethereum/assets/0xbc16da9df0A22f01A16BC0620a27e7D6d6488550/info.json @@ -0,0 +1,17 @@ +{ + "name": "Percent", + "website": "https://percent.finance/", + "description": "Percent is a fork of Compound, owned 100% by the community.", + "explorer": "https://etherscan.io/token/0xbc16da9df0A22f01A16BC0620a27e7D6d6488550", + "type": "ERC20", + "symbol": "PCT", + "decimals": 18, + "status": "active", + "id": "0xbc16da9df0A22f01A16BC0620a27e7D6d6488550", + "links": [ + { + "name": "github", + "url": "https://github.com/percent-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbc16da9df0A22f01A16BC0620a27e7D6d6488550/logo.png b/blockchains/ethereum/assets/0xbc16da9df0A22f01A16BC0620a27e7D6d6488550/logo.png new file mode 100644 index 00000000..21abd6d4 Binary files /dev/null and b/blockchains/ethereum/assets/0xbc16da9df0A22f01A16BC0620a27e7D6d6488550/logo.png differ diff --git a/blockchains/ethereum/assets/0xbc27d7C5d79c3868c969EFdE3a0912F79a914eB7/info.json b/blockchains/ethereum/assets/0xbc27d7C5d79c3868c969EFdE3a0912F79a914eB7/info.json new file mode 100644 index 00000000..0780e151 --- /dev/null +++ b/blockchains/ethereum/assets/0xbc27d7C5d79c3868c969EFdE3a0912F79a914eB7/info.json @@ -0,0 +1,11 @@ +{ + "name": "YAM", + "symbol": "YAM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbc27d7C5d79c3868c969EFdE3a0912F79a914eB7", + "status": "abandoned", + "id": "0xbc27d7C5d79c3868c969EFdE3a0912F79a914eB7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbc27d7C5d79c3868c969EFdE3a0912F79a914eB7/logo.png b/blockchains/ethereum/assets/0xbc27d7C5d79c3868c969EFdE3a0912F79a914eB7/logo.png new file mode 100644 index 00000000..547a1d71 Binary files /dev/null and b/blockchains/ethereum/assets/0xbc27d7C5d79c3868c969EFdE3a0912F79a914eB7/logo.png differ diff --git a/blockchains/ethereum/assets/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d/info.json b/blockchains/ethereum/assets/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d/info.json new file mode 100644 index 00000000..a4fe032c --- /dev/null +++ b/blockchains/ethereum/assets/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d/info.json @@ -0,0 +1,28 @@ +{ + "name": "Dorayaki", + "type": "ERC20", + "symbol": "DORA", + "decimals": 18, + "website": "https://dorafactory.org/", + "description": "Dora Factory is a programmable DAO-as-a-Service open infrastructure on Substrate. All cool features regrading on-chain governance can be built on this infrastructure as pallets by the developers, and they can be rewarded in a SaaS model when DAOs launched on Dora Factory deploy them.", + "explorer": "https://etherscan.io/token/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d", + "status": "active", + "id": "0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d", + "links": [ + { + "name": "x", + "url": "https://x.com/DoraFactory" + }, + { + "name": "telegram", + "url": "https://t.me/dorafactory" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dora-factory/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d/logo.png b/blockchains/ethereum/assets/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d/logo.png new file mode 100644 index 00000000..a6cab14d Binary files /dev/null and b/blockchains/ethereum/assets/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d/logo.png differ diff --git a/blockchains/ethereum/assets/0xbc41d05287498DEc58129560De6bd1b8d4E3aC1d/info.json b/blockchains/ethereum/assets/0xbc41d05287498DEc58129560De6bd1b8d4E3aC1d/info.json new file mode 100644 index 00000000..b94bc05e --- /dev/null +++ b/blockchains/ethereum/assets/0xbc41d05287498DEc58129560De6bd1b8d4E3aC1d/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Short Tezos Token", + "symbol": "XTZBEAR", + "type": "ERC20", + "decimals": 18, + "description": "3X Short Tezos Token (XTZBEAR) is an ERC20 token which seeks a return that corresponds to -3 times the daily return of Tezos.", + "website": "https://ftx.com/tokens/XTZBEAR", + "explorer": "https://etherscan.io/token/0xbc41d05287498DEc58129560De6bd1b8d4E3aC1d", + "status": "active", + "id": "0xbc41d05287498DEc58129560De6bd1b8d4E3aC1d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbc41d05287498DEc58129560De6bd1b8d4E3aC1d/logo.png b/blockchains/ethereum/assets/0xbc41d05287498DEc58129560De6bd1b8d4E3aC1d/logo.png new file mode 100644 index 00000000..a8cc1f57 Binary files /dev/null and b/blockchains/ethereum/assets/0xbc41d05287498DEc58129560De6bd1b8d4E3aC1d/logo.png differ diff --git a/blockchains/ethereum/assets/0xbc843b147DB4C7E00721d76037b8b92e13AfE13f/info.json b/blockchains/ethereum/assets/0xbc843b147DB4C7E00721d76037b8b92e13AfE13f/info.json new file mode 100644 index 00000000..7f8c4fba --- /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 00000000..b9eb124a Binary files /dev/null and b/blockchains/ethereum/assets/0xbc843b147DB4C7E00721d76037b8b92e13AfE13f/logo.png differ diff --git a/blockchains/ethereum/assets/0xbcC7026CdE024c6a97d2DF6e40613217d946279C/info.json b/blockchains/ethereum/assets/0xbcC7026CdE024c6a97d2DF6e40613217d946279C/info.json new file mode 100644 index 00000000..edb4a193 --- /dev/null +++ b/blockchains/ethereum/assets/0xbcC7026CdE024c6a97d2DF6e40613217d946279C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ala", + "symbol": "ALA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://alatoken.org/", + "explorer": "https://etherscan.io/token/0xbcC7026CdE024c6a97d2DF6e40613217d946279C", + "status": "abandoned", + "id": "0xbcC7026CdE024c6a97d2DF6e40613217d946279C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbcC7026CdE024c6a97d2DF6e40613217d946279C/logo.png b/blockchains/ethereum/assets/0xbcC7026CdE024c6a97d2DF6e40613217d946279C/logo.png new file mode 100644 index 00000000..34165cf6 Binary files /dev/null and b/blockchains/ethereum/assets/0xbcC7026CdE024c6a97d2DF6e40613217d946279C/logo.png differ diff --git a/blockchains/ethereum/assets/0xbcD4b7dE6fde81025f74426D43165a5b0D790Fdd/info.json b/blockchains/ethereum/assets/0xbcD4b7dE6fde81025f74426D43165a5b0D790Fdd/info.json new file mode 100644 index 00000000..62a2a3a7 --- /dev/null +++ b/blockchains/ethereum/assets/0xbcD4b7dE6fde81025f74426D43165a5b0D790Fdd/info.json @@ -0,0 +1,11 @@ +{ + "name": "SpiderDAO", + "website": "https://spiderdao.io", + "description": "SpiderDAO is about protecting your internet privacy while browsing the internet. With our innovative Hardware DAO concept we introduce a dual-governance model which bundles together hardware and software tools with on-chain elements, providing a “whale-resistant” governance solution.", + "explorer": "https://etherscan.io/token/0xbcd4b7de6fde81025f74426d43165a5b0d790fdd", + "type": "ERC20", + "symbol": "SPDR", + "decimals": 18, + "status": "active", + "id": "0xbcD4b7dE6fde81025f74426D43165a5b0D790Fdd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbcD4b7dE6fde81025f74426D43165a5b0D790Fdd/logo.png b/blockchains/ethereum/assets/0xbcD4b7dE6fde81025f74426D43165a5b0D790Fdd/logo.png new file mode 100644 index 00000000..c5d1f871 Binary files /dev/null and b/blockchains/ethereum/assets/0xbcD4b7dE6fde81025f74426D43165a5b0D790Fdd/logo.png differ diff --git a/blockchains/ethereum/assets/0xbcE7BD79558dda90B261506768f265c5543A9f90/info.json b/blockchains/ethereum/assets/0xbcE7BD79558dda90B261506768f265c5543A9f90/info.json new file mode 100644 index 00000000..4aec6177 --- /dev/null +++ b/blockchains/ethereum/assets/0xbcE7BD79558dda90B261506768f265c5543A9f90/info.json @@ -0,0 +1,11 @@ +{ + "name": "TKNT", + "description": "TKN Betting Platform", + "website": "https://tknt.io", + "explorer": "https://etherscan.io/token/0xbce7bd79558dda90b261506768f265c5543a9f90", + "type": "ERC20", + "symbol": "TKNT", + "decimals": 18, + "status": "active", + "id": "0xbcE7BD79558dda90B261506768f265c5543A9f90" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbcE7BD79558dda90B261506768f265c5543A9f90/logo.png b/blockchains/ethereum/assets/0xbcE7BD79558dda90B261506768f265c5543A9f90/logo.png new file mode 100644 index 00000000..f8825a9e Binary files /dev/null and b/blockchains/ethereum/assets/0xbcE7BD79558dda90B261506768f265c5543A9f90/logo.png differ diff --git a/blockchains/ethereum/assets/0xbd181f52a86a46dBe03da96064Eb9fe2E1dB5308/info.json b/blockchains/ethereum/assets/0xbd181f52a86a46dBe03da96064Eb9fe2E1dB5308/info.json new file mode 100644 index 00000000..0913f0b4 --- /dev/null +++ b/blockchains/ethereum/assets/0xbd181f52a86a46dBe03da96064Eb9fe2E1dB5308/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-16/30M16", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbd181f52a86a46dBe03da96064Eb9fe2E1dB5308", + "status": "abandoned", + "id": "0xbd181f52a86a46dBe03da96064Eb9fe2E1dB5308" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbd181f52a86a46dBe03da96064Eb9fe2E1dB5308/logo.png b/blockchains/ethereum/assets/0xbd181f52a86a46dBe03da96064Eb9fe2E1dB5308/logo.png new file mode 100644 index 00000000..7bc523d4 Binary files /dev/null and b/blockchains/ethereum/assets/0xbd181f52a86a46dBe03da96064Eb9fe2E1dB5308/logo.png differ diff --git a/blockchains/ethereum/assets/0xbd1848e1491d4308Ad18287A745DD4DB2A4BD55B/info.json b/blockchains/ethereum/assets/0xbd1848e1491d4308Ad18287A745DD4DB2A4BD55B/info.json new file mode 100644 index 00000000..1f973572 --- /dev/null +++ b/blockchains/ethereum/assets/0xbd1848e1491d4308Ad18287A745DD4DB2A4BD55B/info.json @@ -0,0 +1,11 @@ +{ + "name": "MOchi MArket", + "symbol": "MOMA", + "type": "ERC20", + "decimals": 18, + "description": "The multi-chain decentralized exchange ecosystem for non-fungible tokens", + "website": "https://mochi.market", + "explorer": "https://etherscan.io/token/0xbd1848e1491d4308Ad18287A745DD4DB2A4BD55B", + "status": "active", + "id": "0xbd1848e1491d4308Ad18287A745DD4DB2A4BD55B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbd1848e1491d4308Ad18287A745DD4DB2A4BD55B/logo.png b/blockchains/ethereum/assets/0xbd1848e1491d4308Ad18287A745DD4DB2A4BD55B/logo.png new file mode 100644 index 00000000..18286489 Binary files /dev/null and b/blockchains/ethereum/assets/0xbd1848e1491d4308Ad18287A745DD4DB2A4BD55B/logo.png differ diff --git a/blockchains/ethereum/assets/0xbd31EA8212119f94A611FA969881CBa3EA06Fa3d/info.json b/blockchains/ethereum/assets/0xbd31EA8212119f94A611FA969881CBa3EA06Fa3d/info.json new file mode 100644 index 00000000..598173bc --- /dev/null +++ b/blockchains/ethereum/assets/0xbd31EA8212119f94A611FA969881CBa3EA06Fa3d/info.json @@ -0,0 +1,14 @@ +{ + "name": "LUNA (Portal)", + "type": "ERC20", + "symbol": "LUNA", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://terra.money", + "explorer": "https://etherscan.io/token/0xbd31EA8212119f94A611FA969881CBa3EA06Fa3d", + "status": "active", + "id": "0xbd31EA8212119f94A611FA969881CBa3EA06Fa3d", + "tags": [ + "wrapped" + ] +} diff --git a/blockchains/ethereum/assets/0xbd31EA8212119f94A611FA969881CBa3EA06Fa3d/logo.png b/blockchains/ethereum/assets/0xbd31EA8212119f94A611FA969881CBa3EA06Fa3d/logo.png new file mode 100644 index 00000000..2a885151 Binary files /dev/null and b/blockchains/ethereum/assets/0xbd31EA8212119f94A611FA969881CBa3EA06Fa3d/logo.png differ diff --git a/blockchains/ethereum/assets/0xbd660e96D45e7C175512d1ed0cCc119Cb980b81a/info.json b/blockchains/ethereum/assets/0xbd660e96D45e7C175512d1ed0cCc119Cb980b81a/info.json new file mode 100644 index 00000000..eb353a8d --- /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 00000000..2ce033b0 Binary files /dev/null and b/blockchains/ethereum/assets/0xbd660e96D45e7C175512d1ed0cCc119Cb980b81a/logo.png differ diff --git a/blockchains/ethereum/assets/0xbd95145EE25E4203d90592834c688C92653532A6/info.json b/blockchains/ethereum/assets/0xbd95145EE25E4203d90592834c688C92653532A6/info.json new file mode 100644 index 00000000..737f5020 --- /dev/null +++ b/blockchains/ethereum/assets/0xbd95145EE25E4203d90592834c688C92653532A6/info.json @@ -0,0 +1,11 @@ +{ + "name": "UPO", + "symbol": "UPO", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbd95145EE25E4203d90592834c688C92653532A6", + "status": "abandoned", + "id": "0xbd95145EE25E4203d90592834c688C92653532A6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbd95145EE25E4203d90592834c688C92653532A6/logo.png b/blockchains/ethereum/assets/0xbd95145EE25E4203d90592834c688C92653532A6/logo.png new file mode 100644 index 00000000..97f966ec Binary files /dev/null and b/blockchains/ethereum/assets/0xbd95145EE25E4203d90592834c688C92653532A6/logo.png differ diff --git a/blockchains/ethereum/assets/0xbdBF67D9bcb35e2bb7e4951002c6D70013196972/info.json b/blockchains/ethereum/assets/0xbdBF67D9bcb35e2bb7e4951002c6D70013196972/info.json new file mode 100644 index 00000000..d2232057 --- /dev/null +++ b/blockchains/ethereum/assets/0xbdBF67D9bcb35e2bb7e4951002c6D70013196972/info.json @@ -0,0 +1,11 @@ +{ + "name": "Scott Stevenson Legal Engineering", + "symbol": "SSLE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbdBF67D9bcb35e2bb7e4951002c6D70013196972", + "status": "abandoned", + "id": "0xbdBF67D9bcb35e2bb7e4951002c6D70013196972" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbdBF67D9bcb35e2bb7e4951002c6D70013196972/logo.png b/blockchains/ethereum/assets/0xbdBF67D9bcb35e2bb7e4951002c6D70013196972/logo.png new file mode 100644 index 00000000..3fa276cf Binary files /dev/null and b/blockchains/ethereum/assets/0xbdBF67D9bcb35e2bb7e4951002c6D70013196972/logo.png differ diff --git a/blockchains/ethereum/assets/0xbdC7c08592Ee4aa51D06C27Ee23D5087D65aDbcD/info.json b/blockchains/ethereum/assets/0xbdC7c08592Ee4aa51D06C27Ee23D5087D65aDbcD/info.json new file mode 100644 index 00000000..e0275212 --- /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 00000000..8dcaf8e6 Binary files /dev/null and b/blockchains/ethereum/assets/0xbdC7c08592Ee4aa51D06C27Ee23D5087D65aDbcD/logo.png differ diff --git a/blockchains/ethereum/assets/0xbdEB4b83251Fb146687fa19D1C660F99411eefe3/info.json b/blockchains/ethereum/assets/0xbdEB4b83251Fb146687fa19D1C660F99411eefe3/info.json new file mode 100644 index 00000000..25f3467a --- /dev/null +++ b/blockchains/ethereum/assets/0xbdEB4b83251Fb146687fa19D1C660F99411eefe3/info.json @@ -0,0 +1,11 @@ +{ + "name": "savedroid", + "symbol": "SVD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ico.savedroid.com/", + "explorer": "https://etherscan.io/token/0xbdEB4b83251Fb146687fa19D1C660F99411eefe3", + "status": "abandoned", + "id": "0xbdEB4b83251Fb146687fa19D1C660F99411eefe3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbdEB4b83251Fb146687fa19D1C660F99411eefe3/logo.png b/blockchains/ethereum/assets/0xbdEB4b83251Fb146687fa19D1C660F99411eefe3/logo.png new file mode 100755 index 00000000..6d3dc40e Binary files /dev/null and b/blockchains/ethereum/assets/0xbdEB4b83251Fb146687fa19D1C660F99411eefe3/logo.png differ diff --git a/blockchains/ethereum/assets/0xbdF2e5D2DaCD341c2aaD8E73c83495FaBFFf3E5f/info.json b/blockchains/ethereum/assets/0xbdF2e5D2DaCD341c2aaD8E73c83495FaBFFf3E5f/info.json new file mode 100644 index 00000000..9b4be3d9 --- /dev/null +++ b/blockchains/ethereum/assets/0xbdF2e5D2DaCD341c2aaD8E73c83495FaBFFf3E5f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Plutaneum Gaming Exchange", + "symbol": "PGE", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbdF2e5D2DaCD341c2aaD8E73c83495FaBFFf3E5f", + "status": "abandoned", + "id": "0xbdF2e5D2DaCD341c2aaD8E73c83495FaBFFf3E5f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbdF2e5D2DaCD341c2aaD8E73c83495FaBFFf3E5f/logo.png b/blockchains/ethereum/assets/0xbdF2e5D2DaCD341c2aaD8E73c83495FaBFFf3E5f/logo.png new file mode 100644 index 00000000..b714d608 Binary files /dev/null and b/blockchains/ethereum/assets/0xbdF2e5D2DaCD341c2aaD8E73c83495FaBFFf3E5f/logo.png differ diff --git a/blockchains/ethereum/assets/0xbdbC2a5B32F3a5141ACd18C39883066E4daB9774/info.json b/blockchains/ethereum/assets/0xbdbC2a5B32F3a5141ACd18C39883066E4daB9774/info.json new file mode 100644 index 00000000..f80880ea --- /dev/null +++ b/blockchains/ethereum/assets/0xbdbC2a5B32F3a5141ACd18C39883066E4daB9774/info.json @@ -0,0 +1,11 @@ +{ + "name": "Emirex Token", + "symbol": "EMRX", + "type": "ERC20", + "decimals": 8, + "description": "EMRX Token has been designed to incentivize the traders, investors, issuers and partners within the Emirex ecosystem.", + "website": "https://emirex.com", + "explorer": "https://etherscan.io/token/0xbdbC2a5B32F3a5141ACd18C39883066E4daB9774", + "status": "active", + "id": "0xbdbC2a5B32F3a5141ACd18C39883066E4daB9774" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbdbC2a5B32F3a5141ACd18C39883066E4daB9774/logo.png b/blockchains/ethereum/assets/0xbdbC2a5B32F3a5141ACd18C39883066E4daB9774/logo.png new file mode 100644 index 00000000..1819c9cf Binary files /dev/null and b/blockchains/ethereum/assets/0xbdbC2a5B32F3a5141ACd18C39883066E4daB9774/logo.png differ diff --git a/blockchains/ethereum/assets/0xbdeD3f7537E75D6c38C036a3A788A549AfdE12B1/info.json b/blockchains/ethereum/assets/0xbdeD3f7537E75D6c38C036a3A788A549AfdE12B1/info.json new file mode 100644 index 00000000..ba7d66c6 --- /dev/null +++ b/blockchains/ethereum/assets/0xbdeD3f7537E75D6c38C036a3A788A549AfdE12B1/info.json @@ -0,0 +1,11 @@ +{ + "name": "DCS TOKEN", + "symbol": "DCS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://ico.dcsmarketcap.com", + "explorer": "https://etherscan.io/token/0xbdeD3f7537E75D6c38C036a3A788A549AfdE12B1", + "status": "abandoned", + "id": "0xbdeD3f7537E75D6c38C036a3A788A549AfdE12B1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbdeD3f7537E75D6c38C036a3A788A549AfdE12B1/logo.png b/blockchains/ethereum/assets/0xbdeD3f7537E75D6c38C036a3A788A549AfdE12B1/logo.png new file mode 100644 index 00000000..01ffb291 Binary files /dev/null and b/blockchains/ethereum/assets/0xbdeD3f7537E75D6c38C036a3A788A549AfdE12B1/logo.png differ diff --git a/blockchains/ethereum/assets/0xbe038A2FDfec62Cf1beD852f141A43005035edcC/info.json b/blockchains/ethereum/assets/0xbe038A2FDfec62Cf1beD852f141A43005035edcC/info.json new file mode 100644 index 00000000..009362ea --- /dev/null +++ b/blockchains/ethereum/assets/0xbe038A2FDfec62Cf1beD852f141A43005035edcC/info.json @@ -0,0 +1,22 @@ +{ + "name": "Intchain", + "website": "https://intchain.io/", + "description": "INT is an INT Chain cross-chain asset based on Ethereum network, and INT Chain is a blockchain application platform and interactive standard based on the economic driving mode.", + "explorer": "https://etherscan.io/token/0xbe038A2FDfec62Cf1beD852f141A43005035edcC", + "explorer-ETH": "https://etherscan.io/token/0xbe038A2FDfec62Cf1beD852f141A43005035edcC", + "type": "ERC20", + "symbol": "INT", + "decimals": 18, + "status": "active", + "id": "0xbe038A2FDfec62Cf1beD852f141A43005035edcC", + "links": [ + { + "name": "github", + "url": "https://github.com/intfoundation/int" + }, + { + "name": "whitepaper", + "url": "https://intchain.io/whitepaper/INT-whitepaper-release-EN.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbe038A2FDfec62Cf1beD852f141A43005035edcC/logo.png b/blockchains/ethereum/assets/0xbe038A2FDfec62Cf1beD852f141A43005035edcC/logo.png new file mode 100644 index 00000000..d273f885 Binary files /dev/null and b/blockchains/ethereum/assets/0xbe038A2FDfec62Cf1beD852f141A43005035edcC/logo.png differ diff --git a/blockchains/ethereum/assets/0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B/info.json b/blockchains/ethereum/assets/0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B/info.json new file mode 100644 index 00000000..623dfbba --- /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 00000000..e5efd01e Binary files /dev/null and b/blockchains/ethereum/assets/0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B/logo.png differ diff --git a/blockchains/ethereum/assets/0xbe15c4Ebb73A67DDD94b83B237D2bdDe5a5079Ba/info.json b/blockchains/ethereum/assets/0xbe15c4Ebb73A67DDD94b83B237D2bdDe5a5079Ba/info.json new file mode 100644 index 00000000..0730f834 --- /dev/null +++ b/blockchains/ethereum/assets/0xbe15c4Ebb73A67DDD94b83B237D2bdDe5a5079Ba/info.json @@ -0,0 +1,11 @@ +{ + "name": "Complete New Commerce Chain", + "symbol": "CNCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbe15c4Ebb73A67DDD94b83B237D2bdDe5a5079Ba", + "status": "abandoned", + "id": "0xbe15c4Ebb73A67DDD94b83B237D2bdDe5a5079Ba" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbe15c4Ebb73A67DDD94b83B237D2bdDe5a5079Ba/logo.png b/blockchains/ethereum/assets/0xbe15c4Ebb73A67DDD94b83B237D2bdDe5a5079Ba/logo.png new file mode 100644 index 00000000..b3b945ca Binary files /dev/null and b/blockchains/ethereum/assets/0xbe15c4Ebb73A67DDD94b83B237D2bdDe5a5079Ba/logo.png differ diff --git a/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json b/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json new file mode 100644 index 00000000..d89cfee4 --- /dev/null +++ b/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json @@ -0,0 +1,32 @@ +{ + "name": "FEG Token", + "type": "ERC20", + "symbol": "FEG", + "decimals": 18, + "website": "https://fegtoken.com/", + "description": "Building an ecosystem and passive income around a governance token. Trade your crypto assets using our non-custodial peer-to-peer trading protocol and earn a passive income with our asset-backed governance token.", + "explorer": "https://etherscan.io/token/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11", + "status": "active", + "id": "0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fegtoken-v2/" + }, + { + "name": "x", + "url": "https://x.com/FEGtoken" + }, + { + "name": "telegram", + "url": "https://t.me/FEGchat" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/feg-token" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/logo.png b/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/logo.png new file mode 100644 index 00000000..94405ed8 Binary files /dev/null and b/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/logo.png differ diff --git a/blockchains/ethereum/assets/0xbf05571988dAaB22D33C28bbB13566eae9DeE626/info.json b/blockchains/ethereum/assets/0xbf05571988dAaB22D33C28bbB13566eae9DeE626/info.json new file mode 100644 index 00000000..b09721c7 --- /dev/null +++ b/blockchains/ethereum/assets/0xbf05571988dAaB22D33C28bbB13566eae9DeE626/info.json @@ -0,0 +1,11 @@ +{ + "name": "999", + "symbol": "999", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "https://coin999.cash/", + "explorer": "https://etherscan.io/token/0xbf05571988dAaB22D33C28bbB13566eae9DeE626", + "status": "abandoned", + "id": "0xbf05571988dAaB22D33C28bbB13566eae9DeE626" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbf05571988dAaB22D33C28bbB13566eae9DeE626/logo.png b/blockchains/ethereum/assets/0xbf05571988dAaB22D33C28bbB13566eae9DeE626/logo.png new file mode 100644 index 00000000..75c7fe08 Binary files /dev/null and b/blockchains/ethereum/assets/0xbf05571988dAaB22D33C28bbB13566eae9DeE626/logo.png differ diff --git a/blockchains/ethereum/assets/0xbf0f3cCB8fA385A287106FbA22e6BB722F94d686/info.json b/blockchains/ethereum/assets/0xbf0f3cCB8fA385A287106FbA22e6BB722F94d686/info.json new file mode 100644 index 00000000..ed0c8a2d --- /dev/null +++ b/blockchains/ethereum/assets/0xbf0f3cCB8fA385A287106FbA22e6BB722F94d686/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zytara USD", + "website": "https://zytara.capital", + "description": "ZUSD (Zytara USD) is digital money that you can send and receive like email. ZUSD is issued by a regulated financial institution and redeemable on a 1:1 basis for US dollars.", + "explorer": "https://etherscan.io/token/0xbf0f3ccb8fa385a287106fba22e6bb722f94d686", + "type": "ERC20", + "symbol": "ZUSD", + "decimals": 6, + "status": "active", + "id": "0xbf0f3cCB8fA385A287106FbA22e6BB722F94d686" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbf0f3cCB8fA385A287106FbA22e6BB722F94d686/logo.png b/blockchains/ethereum/assets/0xbf0f3cCB8fA385A287106FbA22e6BB722F94d686/logo.png new file mode 100644 index 00000000..8ac75698 Binary files /dev/null and b/blockchains/ethereum/assets/0xbf0f3cCB8fA385A287106FbA22e6BB722F94d686/logo.png differ diff --git a/blockchains/ethereum/assets/0xbf11447c29071B562C54522875D0C9E3E21240aE/info.json b/blockchains/ethereum/assets/0xbf11447c29071B562C54522875D0C9E3E21240aE/info.json new file mode 100644 index 00000000..c0c2a5f3 --- /dev/null +++ b/blockchains/ethereum/assets/0xbf11447c29071B562C54522875D0C9E3E21240aE/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C559013", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbf11447c29071B562C54522875D0C9E3E21240aE", + "status": "abandoned", + "id": "0xbf11447c29071B562C54522875D0C9E3E21240aE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbf11447c29071B562C54522875D0C9E3E21240aE/logo.png b/blockchains/ethereum/assets/0xbf11447c29071B562C54522875D0C9E3E21240aE/logo.png new file mode 100644 index 00000000..aec4bc49 Binary files /dev/null and b/blockchains/ethereum/assets/0xbf11447c29071B562C54522875D0C9E3E21240aE/logo.png differ diff --git a/blockchains/ethereum/assets/0xbf2179859fc6D5BEE9Bf9158632Dc51678a4100e/info.json b/blockchains/ethereum/assets/0xbf2179859fc6D5BEE9Bf9158632Dc51678a4100e/info.json new file mode 100644 index 00000000..5736a0b9 --- /dev/null +++ b/blockchains/ethereum/assets/0xbf2179859fc6D5BEE9Bf9158632Dc51678a4100e/info.json @@ -0,0 +1,12 @@ +{ + "name": "aelf", + "website": "http://aelf.io", + "description": "Aelf (ELF) is an enterprise-focused blockchain platform powered by cloud computing. Leveraging cloud nodes and parallel processing, Aelf is reportedly able to achieve secure transactions at scale for commercial use cases.", + "explorer": "https://etherscan.io/token/0xbf2179859fc6D5BEE9Bf9158632Dc51678a4100e", + "research": "https://research.binance.com/en/projects/aelf", + "type": "ERC20", + "symbol": "ELF", + "decimals": 18, + "status": "active", + "id": "0xbf2179859fc6D5BEE9Bf9158632Dc51678a4100e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbf2179859fc6D5BEE9Bf9158632Dc51678a4100e/logo.png b/blockchains/ethereum/assets/0xbf2179859fc6D5BEE9Bf9158632Dc51678a4100e/logo.png new file mode 100644 index 00000000..0aacaaa8 Binary files /dev/null and b/blockchains/ethereum/assets/0xbf2179859fc6D5BEE9Bf9158632Dc51678a4100e/logo.png differ diff --git a/blockchains/ethereum/assets/0xbf3CAa1A66f5E5fd4eE4eda7391871DBb06B8DC1/info.json b/blockchains/ethereum/assets/0xbf3CAa1A66f5E5fd4eE4eda7391871DBb06B8DC1/info.json new file mode 100644 index 00000000..3a1b7754 --- /dev/null +++ b/blockchains/ethereum/assets/0xbf3CAa1A66f5E5fd4eE4eda7391871DBb06B8DC1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Btt Token", + "symbol": "TOT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbf3CAa1A66f5E5fd4eE4eda7391871DBb06B8DC1", + "status": "abandoned", + "id": "0xbf3CAa1A66f5E5fd4eE4eda7391871DBb06B8DC1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbf3CAa1A66f5E5fd4eE4eda7391871DBb06B8DC1/logo.png b/blockchains/ethereum/assets/0xbf3CAa1A66f5E5fd4eE4eda7391871DBb06B8DC1/logo.png new file mode 100644 index 00000000..708d9a90 Binary files /dev/null and b/blockchains/ethereum/assets/0xbf3CAa1A66f5E5fd4eE4eda7391871DBb06B8DC1/logo.png differ diff --git a/blockchains/ethereum/assets/0xbf52F2ab39e26E0951d2a02b49B7702aBe30406a/info.json b/blockchains/ethereum/assets/0xbf52F2ab39e26E0951d2a02b49B7702aBe30406a/info.json new file mode 100644 index 00000000..21373a84 --- /dev/null +++ b/blockchains/ethereum/assets/0xbf52F2ab39e26E0951d2a02b49B7702aBe30406a/info.json @@ -0,0 +1,11 @@ +{ + "name": "ODEM", + "website": "https://odem.io", + "description": "ODEM, short for 'On-Demand Education Marketplace', is a blockchain-based distributed network that allows university students to interact with their professors and academic partners without intermediaries.", + "explorer": "https://etherscan.io/token/0xbf52F2ab39e26E0951d2a02b49B7702aBe30406a", + "type": "ERC20", + "symbol": "ODEM", + "decimals": 18, + "status": "active", + "id": "0xbf52F2ab39e26E0951d2a02b49B7702aBe30406a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbf52F2ab39e26E0951d2a02b49B7702aBe30406a/logo.png b/blockchains/ethereum/assets/0xbf52F2ab39e26E0951d2a02b49B7702aBe30406a/logo.png new file mode 100755 index 00000000..d8a83f0b Binary files /dev/null and b/blockchains/ethereum/assets/0xbf52F2ab39e26E0951d2a02b49B7702aBe30406a/logo.png differ diff --git a/blockchains/ethereum/assets/0xbf5495Efe5DB9ce00f80364C8B423567e58d2110/info.json b/blockchains/ethereum/assets/0xbf5495Efe5DB9ce00f80364C8B423567e58d2110/info.json new file mode 100644 index 00000000..7ee82852 --- /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 00000000..48e5c5ac Binary files /dev/null and b/blockchains/ethereum/assets/0xbf5495Efe5DB9ce00f80364C8B423567e58d2110/logo.png differ diff --git a/blockchains/ethereum/assets/0xbf8739f1c903974b90D758Fd0bbB2Bfc79022E8F/info.json b/blockchains/ethereum/assets/0xbf8739f1c903974b90D758Fd0bbB2Bfc79022E8F/info.json new file mode 100644 index 00000000..bda9255c --- /dev/null +++ b/blockchains/ethereum/assets/0xbf8739f1c903974b90D758Fd0bbB2Bfc79022E8F/info.json @@ -0,0 +1,11 @@ +{ + "name": "SandBox", + "symbol": "SBOX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xbf8739f1c903974b90D758Fd0bbB2Bfc79022E8F", + "status": "abandoned", + "id": "0xbf8739f1c903974b90D758Fd0bbB2Bfc79022E8F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbf8739f1c903974b90D758Fd0bbB2Bfc79022E8F/logo.png b/blockchains/ethereum/assets/0xbf8739f1c903974b90D758Fd0bbB2Bfc79022E8F/logo.png new file mode 100644 index 00000000..1aa31ca2 Binary files /dev/null and b/blockchains/ethereum/assets/0xbf8739f1c903974b90D758Fd0bbB2Bfc79022E8F/logo.png differ diff --git a/blockchains/ethereum/assets/0xbf8fB919A8bbF28e590852AeF2D284494eBC0657/info.json b/blockchains/ethereum/assets/0xbf8fB919A8bbF28e590852AeF2D284494eBC0657/info.json new file mode 100644 index 00000000..7302a88a --- /dev/null +++ b/blockchains/ethereum/assets/0xbf8fB919A8bbF28e590852AeF2D284494eBC0657/info.json @@ -0,0 +1,11 @@ +{ + "name": "ABCC Token", + "symbol": "AT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://abcc.com/", + "explorer": "https://etherscan.io/token/0xbf8fB919A8bbF28e590852AeF2D284494eBC0657", + "status": "abandoned", + "id": "0xbf8fB919A8bbF28e590852AeF2D284494eBC0657" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbf8fB919A8bbF28e590852AeF2D284494eBC0657/logo.png b/blockchains/ethereum/assets/0xbf8fB919A8bbF28e590852AeF2D284494eBC0657/logo.png new file mode 100644 index 00000000..e3d7aab4 Binary files /dev/null and b/blockchains/ethereum/assets/0xbf8fB919A8bbF28e590852AeF2D284494eBC0657/logo.png differ diff --git a/blockchains/ethereum/assets/0xbfFe4FDCD397e7942Fd7c9F99255e0AA34E4B3FB/info.json b/blockchains/ethereum/assets/0xbfFe4FDCD397e7942Fd7c9F99255e0AA34E4B3FB/info.json new file mode 100644 index 00000000..117e80ad --- /dev/null +++ b/blockchains/ethereum/assets/0xbfFe4FDCD397e7942Fd7c9F99255e0AA34E4B3FB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tranium", + "symbol": "TRM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.tranium.org", + "explorer": "https://etherscan.io/token/0xbfFe4FDCD397e7942Fd7c9F99255e0AA34E4B3FB", + "status": "abandoned", + "id": "0xbfFe4FDCD397e7942Fd7c9F99255e0AA34E4B3FB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbfFe4FDCD397e7942Fd7c9F99255e0AA34E4B3FB/logo.png b/blockchains/ethereum/assets/0xbfFe4FDCD397e7942Fd7c9F99255e0AA34E4B3FB/logo.png new file mode 100644 index 00000000..8d15573e Binary files /dev/null and b/blockchains/ethereum/assets/0xbfFe4FDCD397e7942Fd7c9F99255e0AA34E4B3FB/logo.png differ diff --git a/blockchains/ethereum/assets/0xc00e94Cb662C3520282E6f5717214004A7f26888/info.json b/blockchains/ethereum/assets/0xc00e94Cb662C3520282E6f5717214004A7f26888/info.json new file mode 100644 index 00000000..50f6fee6 --- /dev/null +++ b/blockchains/ethereum/assets/0xc00e94Cb662C3520282E6f5717214004A7f26888/info.json @@ -0,0 +1,29 @@ +{ + "name": "Compound", + "website": "https://compound.finance", + "description": "Compound is the governance token for the Compound protocol.", + "explorer": "https://etherscan.io/token/0xc00e94Cb662C3520282E6f5717214004A7f26888", + "research": "https://research.binance.com/en/projects/compound", + "type": "ERC20", + "symbol": "COMP", + "decimals": 18, + "status": "active", + "id": "0xc00e94Cb662C3520282E6f5717214004A7f26888", + "tags": [ + "defi" + ], + "links": [ + { + "name": "blog", + "url": "https://medium.com/compound-finance" + }, + { + "name": "x", + "url": "https://x.com/compoundfinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/compound-governance-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc00e94Cb662C3520282E6f5717214004A7f26888/logo.png b/blockchains/ethereum/assets/0xc00e94Cb662C3520282E6f5717214004A7f26888/logo.png new file mode 100644 index 00000000..5011b1a3 Binary files /dev/null and b/blockchains/ethereum/assets/0xc00e94Cb662C3520282E6f5717214004A7f26888/logo.png differ diff --git a/blockchains/ethereum/assets/0xc020c00e45dd3529e18012282657A1136C2B13E6/info.json b/blockchains/ethereum/assets/0xc020c00e45dd3529e18012282657A1136C2B13E6/info.json new file mode 100644 index 00000000..c2b97e47 --- /dev/null +++ b/blockchains/ethereum/assets/0xc020c00e45dd3529e18012282657A1136C2B13E6/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R885758", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc020c00e45dd3529e18012282657A1136C2B13E6", + "status": "abandoned", + "id": "0xc020c00e45dd3529e18012282657A1136C2B13E6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc020c00e45dd3529e18012282657A1136C2B13E6/logo.png b/blockchains/ethereum/assets/0xc020c00e45dd3529e18012282657A1136C2B13E6/logo.png new file mode 100644 index 00000000..54260f9b Binary files /dev/null and b/blockchains/ethereum/assets/0xc020c00e45dd3529e18012282657A1136C2B13E6/logo.png differ diff --git a/blockchains/ethereum/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/info.json b/blockchains/ethereum/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/info.json new file mode 100644 index 00000000..14b9e0b2 --- /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 00000000..e63fc80b Binary files /dev/null and b/blockchains/ethereum/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/logo.png differ diff --git a/blockchains/ethereum/assets/0xc06993e3EEE6313235C0BC74a0ebB687C9e10E01/info.json b/blockchains/ethereum/assets/0xc06993e3EEE6313235C0BC74a0ebB687C9e10E01/info.json new file mode 100644 index 00000000..e52348c4 --- /dev/null +++ b/blockchains/ethereum/assets/0xc06993e3EEE6313235C0BC74a0ebB687C9e10E01/info.json @@ -0,0 +1,11 @@ +{ + "name": "AZ Signals", + "symbol": "AZS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc06993e3EEE6313235C0BC74a0ebB687C9e10E01", + "status": "abandoned", + "id": "0xc06993e3EEE6313235C0BC74a0ebB687C9e10E01" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc06993e3EEE6313235C0BC74a0ebB687C9e10E01/logo.png b/blockchains/ethereum/assets/0xc06993e3EEE6313235C0BC74a0ebB687C9e10E01/logo.png new file mode 100644 index 00000000..3bf2c4fa Binary files /dev/null and b/blockchains/ethereum/assets/0xc06993e3EEE6313235C0BC74a0ebB687C9e10E01/logo.png differ diff --git a/blockchains/ethereum/assets/0xc06aEc5191bE16b94FfC97B6Fc01393527367365/info.json b/blockchains/ethereum/assets/0xc06aEc5191bE16b94FfC97B6Fc01393527367365/info.json new file mode 100644 index 00000000..f99a7d11 --- /dev/null +++ b/blockchains/ethereum/assets/0xc06aEc5191bE16b94FfC97B6Fc01393527367365/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTC ETH Equal Weight Set", + "symbol": "BTCETH5050", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.tokensets.com/set/btceth5050", + "explorer": "https://etherscan.io/token/0xc06aEc5191bE16b94FfC97B6Fc01393527367365", + "status": "abandoned", + "id": "0xc06aEc5191bE16b94FfC97B6Fc01393527367365" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc06aEc5191bE16b94FfC97B6Fc01393527367365/logo.png b/blockchains/ethereum/assets/0xc06aEc5191bE16b94FfC97B6Fc01393527367365/logo.png new file mode 100644 index 00000000..81d6f813 Binary files /dev/null and b/blockchains/ethereum/assets/0xc06aEc5191bE16b94FfC97B6Fc01393527367365/logo.png differ diff --git a/blockchains/ethereum/assets/0xc074Dd87663b97097f06d805A164b6B271158738/info.json b/blockchains/ethereum/assets/0xc074Dd87663b97097f06d805A164b6B271158738/info.json new file mode 100644 index 00000000..008f9eda --- /dev/null +++ b/blockchains/ethereum/assets/0xc074Dd87663b97097f06d805A164b6B271158738/info.json @@ -0,0 +1,11 @@ +{ + "name": "SOON TOKEN", + "symbol": "SOON", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc074Dd87663b97097f06d805A164b6B271158738", + "status": "abandoned", + "id": "0xc074Dd87663b97097f06d805A164b6B271158738" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc074Dd87663b97097f06d805A164b6B271158738/logo.png b/blockchains/ethereum/assets/0xc074Dd87663b97097f06d805A164b6B271158738/logo.png new file mode 100644 index 00000000..ea69c430 Binary files /dev/null and b/blockchains/ethereum/assets/0xc074Dd87663b97097f06d805A164b6B271158738/logo.png differ diff --git a/blockchains/ethereum/assets/0xc076Ad93c21710ef5B5934C64Ef7FF5290Ef726A/info.json b/blockchains/ethereum/assets/0xc076Ad93c21710ef5B5934C64Ef7FF5290Ef726A/info.json new file mode 100644 index 00000000..fd3ed6ed --- /dev/null +++ b/blockchains/ethereum/assets/0xc076Ad93c21710ef5B5934C64Ef7FF5290Ef726A/info.json @@ -0,0 +1,11 @@ +{ + "name": "BAEcoin", + "symbol": "BAE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc076Ad93c21710ef5B5934C64Ef7FF5290Ef726A", + "status": "abandoned", + "id": "0xc076Ad93c21710ef5B5934C64Ef7FF5290Ef726A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc076Ad93c21710ef5B5934C64Ef7FF5290Ef726A/logo.png b/blockchains/ethereum/assets/0xc076Ad93c21710ef5B5934C64Ef7FF5290Ef726A/logo.png new file mode 100644 index 00000000..ac68e78a Binary files /dev/null and b/blockchains/ethereum/assets/0xc076Ad93c21710ef5B5934C64Ef7FF5290Ef726A/logo.png differ diff --git a/blockchains/ethereum/assets/0xc07A150ECAdF2cc352f5586396e344A6b17625EB/info.json b/blockchains/ethereum/assets/0xc07A150ECAdF2cc352f5586396e344A6b17625EB/info.json new file mode 100644 index 00000000..1d45e45b --- /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 00000000..c8656855 Binary files /dev/null and b/blockchains/ethereum/assets/0xc07A150ECAdF2cc352f5586396e344A6b17625EB/logo.png differ diff --git a/blockchains/ethereum/assets/0xc0829421C1d260BD3cB3E0F06cfE2D52db2cE315/info.json b/blockchains/ethereum/assets/0xc0829421C1d260BD3cB3E0F06cfE2D52db2cE315/info.json new file mode 100644 index 00000000..10da554d --- /dev/null +++ b/blockchains/ethereum/assets/0xc0829421C1d260BD3cB3E0F06cfE2D52db2cE315/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ether Token", + "symbol": "ETH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc0829421C1d260BD3cB3E0F06cfE2D52db2cE315", + "status": "abandoned", + "id": "0xc0829421C1d260BD3cB3E0F06cfE2D52db2cE315" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc0829421C1d260BD3cB3E0F06cfE2D52db2cE315/logo.png b/blockchains/ethereum/assets/0xc0829421C1d260BD3cB3E0F06cfE2D52db2cE315/logo.png new file mode 100644 index 00000000..956a1b86 Binary files /dev/null and b/blockchains/ethereum/assets/0xc0829421C1d260BD3cB3E0F06cfE2D52db2cE315/logo.png differ diff --git a/blockchains/ethereum/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/info.json b/blockchains/ethereum/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/info.json new file mode 100644 index 00000000..0d4ca9c8 --- /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 00000000..3700a2b1 Binary files /dev/null and b/blockchains/ethereum/assets/0xc08Cd26474722cE93F4D0c34D16201461c10AA8C/logo.png differ diff --git a/blockchains/ethereum/assets/0xc0984810873C9D1546afB0286Ae996a370E05f16/info.json b/blockchains/ethereum/assets/0xc0984810873C9D1546afB0286Ae996a370E05f16/info.json new file mode 100644 index 00000000..4633582c --- /dev/null +++ b/blockchains/ethereum/assets/0xc0984810873C9D1546afB0286Ae996a370E05f16/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bit Ether", + "symbol": "BIR", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc0984810873C9D1546afB0286Ae996a370E05f16", + "status": "abandoned", + "id": "0xc0984810873C9D1546afB0286Ae996a370E05f16" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc0984810873C9D1546afB0286Ae996a370E05f16/logo.png b/blockchains/ethereum/assets/0xc0984810873C9D1546afB0286Ae996a370E05f16/logo.png new file mode 100644 index 00000000..cc020831 Binary files /dev/null and b/blockchains/ethereum/assets/0xc0984810873C9D1546afB0286Ae996a370E05f16/logo.png differ diff --git a/blockchains/ethereum/assets/0xc0B1FeF4Bd44f25BdCFF517d0CEcA25D202058f9/info.json b/blockchains/ethereum/assets/0xc0B1FeF4Bd44f25BdCFF517d0CEcA25D202058f9/info.json new file mode 100644 index 00000000..1ae54111 --- /dev/null +++ b/blockchains/ethereum/assets/0xc0B1FeF4Bd44f25BdCFF517d0CEcA25D202058f9/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoshenCoinCash", + "symbol": "GCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc0B1FeF4Bd44f25BdCFF517d0CEcA25D202058f9", + "status": "abandoned", + "id": "0xc0B1FeF4Bd44f25BdCFF517d0CEcA25D202058f9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc0B1FeF4Bd44f25BdCFF517d0CEcA25D202058f9/logo.png b/blockchains/ethereum/assets/0xc0B1FeF4Bd44f25BdCFF517d0CEcA25D202058f9/logo.png new file mode 100755 index 00000000..86616bab Binary files /dev/null and b/blockchains/ethereum/assets/0xc0B1FeF4Bd44f25BdCFF517d0CEcA25D202058f9/logo.png differ diff --git a/blockchains/ethereum/assets/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a/info.json b/blockchains/ethereum/assets/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a/info.json new file mode 100644 index 00000000..2c31ddbd --- /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 00000000..5265de65 Binary files /dev/null and b/blockchains/ethereum/assets/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a/logo.png differ diff --git a/blockchains/ethereum/assets/0xc0ea83113038987d974FE667831a36E442e661E7/info.json b/blockchains/ethereum/assets/0xc0ea83113038987d974FE667831a36E442e661E7/info.json new file mode 100644 index 00000000..5de029c2 --- /dev/null +++ b/blockchains/ethereum/assets/0xc0ea83113038987d974FE667831a36E442e661E7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Libfx", + "symbol": "Libfx", + "type": "ERC20", + "decimals": 18, + "description": "Liber exchange platform uses LIBFX to mobilize the support from the community serving to expand the market for Liber exchange platform and use LIBFX as the main payment method of Liber.", + "website": "https://libermx.com/", + "explorer": "https://etherscan.io/token/0xc0ea83113038987d974FE667831a36E442e661E7", + "status": "active", + "id": "0xc0ea83113038987d974FE667831a36E442e661E7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc0ea83113038987d974FE667831a36E442e661E7/logo.png b/blockchains/ethereum/assets/0xc0ea83113038987d974FE667831a36E442e661E7/logo.png new file mode 100644 index 00000000..1647a3d9 Binary files /dev/null and b/blockchains/ethereum/assets/0xc0ea83113038987d974FE667831a36E442e661E7/logo.png differ diff --git a/blockchains/ethereum/assets/0xc12d099be31567add4e4e4d0D45691C3F58f5663/info.json b/blockchains/ethereum/assets/0xc12d099be31567add4e4e4d0D45691C3F58f5663/info.json new file mode 100644 index 00000000..8fc40380 --- /dev/null +++ b/blockchains/ethereum/assets/0xc12d099be31567add4e4e4d0D45691C3F58f5663/info.json @@ -0,0 +1,11 @@ +{ + "name": "Auctus", + "website": "https://auctus.org", + "description": "Auctus will be the utility token at the heart of the DeFi products developed by Auctus.", + "explorer": "https://etherscan.io/token/0xc12d099be31567add4e4e4d0D45691C3F58f5663", + "type": "ERC20", + "symbol": "AUC", + "decimals": 18, + "status": "active", + "id": "0xc12d099be31567add4e4e4d0D45691C3F58f5663" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc12d099be31567add4e4e4d0D45691C3F58f5663/logo.png b/blockchains/ethereum/assets/0xc12d099be31567add4e4e4d0D45691C3F58f5663/logo.png new file mode 100755 index 00000000..e4a222cb Binary files /dev/null and b/blockchains/ethereum/assets/0xc12d099be31567add4e4e4d0D45691C3F58f5663/logo.png differ diff --git a/blockchains/ethereum/assets/0xc14338C0eaa4bf7E4473C9DD7226001C8ae3B454/info.json b/blockchains/ethereum/assets/0xc14338C0eaa4bf7E4473C9DD7226001C8ae3B454/info.json new file mode 100644 index 00000000..d63e81dc --- /dev/null +++ b/blockchains/ethereum/assets/0xc14338C0eaa4bf7E4473C9DD7226001C8ae3B454/info.json @@ -0,0 +1,11 @@ +{ + "name": "WARP", + "symbol": "WARP", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc14338C0eaa4bf7E4473C9DD7226001C8ae3B454", + "status": "abandoned", + "id": "0xc14338C0eaa4bf7E4473C9DD7226001C8ae3B454" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc14338C0eaa4bf7E4473C9DD7226001C8ae3B454/logo.png b/blockchains/ethereum/assets/0xc14338C0eaa4bf7E4473C9DD7226001C8ae3B454/logo.png new file mode 100644 index 00000000..7e9164cb Binary files /dev/null and b/blockchains/ethereum/assets/0xc14338C0eaa4bf7E4473C9DD7226001C8ae3B454/logo.png differ diff --git a/blockchains/ethereum/assets/0xc15A399c4eA7815fE36857C9E290EE452A5D6B21/info.json b/blockchains/ethereum/assets/0xc15A399c4eA7815fE36857C9E290EE452A5D6B21/info.json new file mode 100644 index 00000000..747f2d9a --- /dev/null +++ b/blockchains/ethereum/assets/0xc15A399c4eA7815fE36857C9E290EE452A5D6B21/info.json @@ -0,0 +1,11 @@ +{ + "name": "BoatPilot Token", + "symbol": "NAVI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://boatpilot.io/", + "explorer": "https://etherscan.io/token/0xc15A399c4eA7815fE36857C9E290EE452A5D6B21", + "status": "abandoned", + "id": "0xc15A399c4eA7815fE36857C9E290EE452A5D6B21" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc15A399c4eA7815fE36857C9E290EE452A5D6B21/logo.png b/blockchains/ethereum/assets/0xc15A399c4eA7815fE36857C9E290EE452A5D6B21/logo.png new file mode 100755 index 00000000..e59c57f9 Binary files /dev/null and b/blockchains/ethereum/assets/0xc15A399c4eA7815fE36857C9E290EE452A5D6B21/logo.png differ diff --git a/blockchains/ethereum/assets/0xc175E77b04F2341517334Ea3Ed0b198A01A97383/info.json b/blockchains/ethereum/assets/0xc175E77b04F2341517334Ea3Ed0b198A01A97383/info.json new file mode 100644 index 00000000..eef7f3eb --- /dev/null +++ b/blockchains/ethereum/assets/0xc175E77b04F2341517334Ea3Ed0b198A01A97383/info.json @@ -0,0 +1,11 @@ +{ + "name": "3X Long TRX Token", + "symbol": "TRXBULL", + "type": "ERC20", + "decimals": 18, + "description": "3X Long TRX Token (TRXBULL) is an ERC20 token which seeks a return that corresponds to 3 times the daily return of TRON.", + "website": "https://ftx.com/tokens/TRXBULL", + "explorer": "https://etherscan.io/token/0xc175E77b04F2341517334Ea3Ed0b198A01A97383", + "status": "active", + "id": "0xc175E77b04F2341517334Ea3Ed0b198A01A97383" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc175E77b04F2341517334Ea3Ed0b198A01A97383/logo.png b/blockchains/ethereum/assets/0xc175E77b04F2341517334Ea3Ed0b198A01A97383/logo.png new file mode 100644 index 00000000..a8cc1f57 Binary files /dev/null and b/blockchains/ethereum/assets/0xc175E77b04F2341517334Ea3Ed0b198A01A97383/logo.png differ diff --git a/blockchains/ethereum/assets/0xc1C7883eA017B083B6167040dbB9c156A8E6B9e9/info.json b/blockchains/ethereum/assets/0xc1C7883eA017B083B6167040dbB9c156A8E6B9e9/info.json new file mode 100644 index 00000000..857650e9 --- /dev/null +++ b/blockchains/ethereum/assets/0xc1C7883eA017B083B6167040dbB9c156A8E6B9e9/info.json @@ -0,0 +1,11 @@ +{ + "name": "ArmBlockchainBank", + "symbol": "ABB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://abbtoken.xyz/", + "explorer": "https://etherscan.io/token/0xc1C7883eA017B083B6167040dbB9c156A8E6B9e9", + "status": "abandoned", + "id": "0xc1C7883eA017B083B6167040dbB9c156A8E6B9e9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc1C7883eA017B083B6167040dbB9c156A8E6B9e9/logo.png b/blockchains/ethereum/assets/0xc1C7883eA017B083B6167040dbB9c156A8E6B9e9/logo.png new file mode 100644 index 00000000..c387ee95 Binary files /dev/null and b/blockchains/ethereum/assets/0xc1C7883eA017B083B6167040dbB9c156A8E6B9e9/logo.png differ diff --git a/blockchains/ethereum/assets/0xc1FA038a78D1498bB5DC28875c695Fd48C19E9f5/info.json b/blockchains/ethereum/assets/0xc1FA038a78D1498bB5DC28875c695Fd48C19E9f5/info.json new file mode 100644 index 00000000..9e72f563 --- /dev/null +++ b/blockchains/ethereum/assets/0xc1FA038a78D1498bB5DC28875c695Fd48C19E9f5/info.json @@ -0,0 +1,11 @@ +{ + "name": "EDOLLAS", + "symbol": "ELS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc1FA038a78D1498bB5DC28875c695Fd48C19E9f5", + "status": "abandoned", + "id": "0xc1FA038a78D1498bB5DC28875c695Fd48C19E9f5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc1FA038a78D1498bB5DC28875c695Fd48C19E9f5/logo.png b/blockchains/ethereum/assets/0xc1FA038a78D1498bB5DC28875c695Fd48C19E9f5/logo.png new file mode 100644 index 00000000..15ee4be4 Binary files /dev/null and b/blockchains/ethereum/assets/0xc1FA038a78D1498bB5DC28875c695Fd48C19E9f5/logo.png differ diff --git a/blockchains/ethereum/assets/0xc1a29a42876ff31D6c30341f5CF400dD8e766d91/info.json b/blockchains/ethereum/assets/0xc1a29a42876ff31D6c30341f5CF400dD8e766d91/info.json new file mode 100644 index 00000000..b225a8a9 --- /dev/null +++ b/blockchains/ethereum/assets/0xc1a29a42876ff31D6c30341f5CF400dD8e766d91/info.json @@ -0,0 +1,11 @@ +{ + "name": "SetoCoin", + "symbol": "SET", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc1a29a42876ff31D6c30341f5CF400dD8e766d91", + "status": "abandoned", + "id": "0xc1a29a42876ff31D6c30341f5CF400dD8e766d91" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc1a29a42876ff31D6c30341f5CF400dD8e766d91/logo.png b/blockchains/ethereum/assets/0xc1a29a42876ff31D6c30341f5CF400dD8e766d91/logo.png new file mode 100644 index 00000000..fb6f499e Binary files /dev/null and b/blockchains/ethereum/assets/0xc1a29a42876ff31D6c30341f5CF400dD8e766d91/logo.png differ diff --git a/blockchains/ethereum/assets/0xc1d74a3AA1AA5AD95345299E0D0e36076B0ceE3D/info.json b/blockchains/ethereum/assets/0xc1d74a3AA1AA5AD95345299E0D0e36076B0ceE3D/info.json new file mode 100644 index 00000000..6fb351bc --- /dev/null +++ b/blockchains/ethereum/assets/0xc1d74a3AA1AA5AD95345299E0D0e36076B0ceE3D/info.json @@ -0,0 +1,11 @@ +{ + "name": "FacelightX", + "symbol": "FHD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc1d74a3AA1AA5AD95345299E0D0e36076B0ceE3D", + "status": "abandoned", + "id": "0xc1d74a3AA1AA5AD95345299E0D0e36076B0ceE3D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc1d74a3AA1AA5AD95345299E0D0e36076B0ceE3D/logo.png b/blockchains/ethereum/assets/0xc1d74a3AA1AA5AD95345299E0D0e36076B0ceE3D/logo.png new file mode 100644 index 00000000..4c562212 Binary files /dev/null and b/blockchains/ethereum/assets/0xc1d74a3AA1AA5AD95345299E0D0e36076B0ceE3D/logo.png differ diff --git a/blockchains/ethereum/assets/0xc1f976B91217E240885536aF8b63bc8b5269a9BE/info.json b/blockchains/ethereum/assets/0xc1f976B91217E240885536aF8b63bc8b5269a9BE/info.json new file mode 100644 index 00000000..2c768f29 --- /dev/null +++ b/blockchains/ethereum/assets/0xc1f976B91217E240885536aF8b63bc8b5269a9BE/info.json @@ -0,0 +1,11 @@ +{ + "name": "PIN", + "type": "ERC20", + "symbol": "PIN", + "decimals": 18, + "website": "https://publicindex.network", + "description": "PIN📌is a proof-of-work cryptocurrency designed to index web3 metadata. PIN also exists as a wrapped token on Ethereum, Binance Smart Chain, and Polygon.", + "explorer": "https://etherscan.io/token/0xc1f976B91217E240885536aF8b63bc8b5269a9BE", + "status": "active", + "id": "0xc1f976B91217E240885536aF8b63bc8b5269a9BE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc1f976B91217E240885536aF8b63bc8b5269a9BE/logo.png b/blockchains/ethereum/assets/0xc1f976B91217E240885536aF8b63bc8b5269a9BE/logo.png new file mode 100644 index 00000000..32bff312 Binary files /dev/null and b/blockchains/ethereum/assets/0xc1f976B91217E240885536aF8b63bc8b5269a9BE/logo.png differ diff --git a/blockchains/ethereum/assets/0xc20464e0C373486d2B3335576e83a218b1618A5E/info.json b/blockchains/ethereum/assets/0xc20464e0C373486d2B3335576e83a218b1618A5E/info.json new file mode 100644 index 00000000..f6a777c1 --- /dev/null +++ b/blockchains/ethereum/assets/0xc20464e0C373486d2B3335576e83a218b1618A5E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Datarius Credit", + "symbol": "DTRC", + "type": "ERC20", + "decimals": 18, + "description": "Datarius cryptobank is a decentralized partially closed system.", + "website": "https://datarius.io", + "explorer": "https://etherscan.io/token/0xc20464e0C373486d2B3335576e83a218b1618A5E", + "status": "active", + "id": "0xc20464e0C373486d2B3335576e83a218b1618A5E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc20464e0C373486d2B3335576e83a218b1618A5E/logo.png b/blockchains/ethereum/assets/0xc20464e0C373486d2B3335576e83a218b1618A5E/logo.png new file mode 100755 index 00000000..19023c96 Binary files /dev/null and b/blockchains/ethereum/assets/0xc20464e0C373486d2B3335576e83a218b1618A5E/logo.png differ diff --git a/blockchains/ethereum/assets/0xc21dBEE65D62770953035f0434C532d578a666c9/info.json b/blockchains/ethereum/assets/0xc21dBEE65D62770953035f0434C532d578a666c9/info.json new file mode 100644 index 00000000..e07f55e0 --- /dev/null +++ b/blockchains/ethereum/assets/0xc21dBEE65D62770953035f0434C532d578a666c9/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoEnergy", + "symbol": "CNRG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://cryptoenergy.io/", + "explorer": "https://etherscan.io/token/0xc21dBEE65D62770953035f0434C532d578a666c9", + "status": "abandoned", + "id": "0xc21dBEE65D62770953035f0434C532d578a666c9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc21dBEE65D62770953035f0434C532d578a666c9/logo.png b/blockchains/ethereum/assets/0xc21dBEE65D62770953035f0434C532d578a666c9/logo.png new file mode 100644 index 00000000..5d12dcb0 Binary files /dev/null and b/blockchains/ethereum/assets/0xc21dBEE65D62770953035f0434C532d578a666c9/logo.png differ diff --git a/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/info.json b/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/info.json new file mode 100644 index 00000000..7793897c --- /dev/null +++ b/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/info.json @@ -0,0 +1,32 @@ +{ + "name": "Wrapped Centrifuge", + "type": "ERC20", + "symbol": "WCFG", + "decimals": 18, + "website": "https://centrifuge.io/", + "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": "abandoned", + "id": "0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0", + "links": [ + { + "name": "x", + "url": "https://x.com/centrifuge" + }, + { + "name": "github", + "url": "https://github.com/centrifuge" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/centrifuge/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/centrifuge" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc24d52E3d3a36e9481AF0715180E530CBe4667CA/info.json b/blockchains/ethereum/assets/0xc24d52E3d3a36e9481AF0715180E530CBe4667CA/info.json new file mode 100644 index 00000000..5ef43ea1 --- /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 00000000..ee2fb686 Binary files /dev/null and b/blockchains/ethereum/assets/0xc24d52E3d3a36e9481AF0715180E530CBe4667CA/logo.png differ diff --git a/blockchains/ethereum/assets/0xc265407A9a1641e8c1b8aDA4A5840db9Fb19E22c/info.json b/blockchains/ethereum/assets/0xc265407A9a1641e8c1b8aDA4A5840db9Fb19E22c/info.json new file mode 100644 index 00000000..c6369d3f --- /dev/null +++ b/blockchains/ethereum/assets/0xc265407A9a1641e8c1b8aDA4A5840db9Fb19E22c/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R885759", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc265407A9a1641e8c1b8aDA4A5840db9Fb19E22c", + "status": "abandoned", + "id": "0xc265407A9a1641e8c1b8aDA4A5840db9Fb19E22c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc265407A9a1641e8c1b8aDA4A5840db9Fb19E22c/logo.png b/blockchains/ethereum/assets/0xc265407A9a1641e8c1b8aDA4A5840db9Fb19E22c/logo.png new file mode 100644 index 00000000..ea847989 Binary files /dev/null and b/blockchains/ethereum/assets/0xc265407A9a1641e8c1b8aDA4A5840db9Fb19E22c/logo.png differ diff --git a/blockchains/ethereum/assets/0xc27A2F05fa577a83BA0fDb4c38443c0718356501/info.json b/blockchains/ethereum/assets/0xc27A2F05fa577a83BA0fDb4c38443c0718356501/info.json new file mode 100644 index 00000000..b97543ee --- /dev/null +++ b/blockchains/ethereum/assets/0xc27A2F05fa577a83BA0fDb4c38443c0718356501/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lamden Tau", + "symbol": "TAU", + "type": "ERC20", + "decimals": 18, + "description": "Lamden is the performant Python-Based blockchain platform that makes using and creating the next generation of dApps easy for everyone.", + "website": "https://lamden.io", + "explorer": "https://etherscan.io/token/0xc27A2F05fa577a83BA0fDb4c38443c0718356501", + "status": "active", + "id": "0xc27A2F05fa577a83BA0fDb4c38443c0718356501" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc27A2F05fa577a83BA0fDb4c38443c0718356501/logo.png b/blockchains/ethereum/assets/0xc27A2F05fa577a83BA0fDb4c38443c0718356501/logo.png new file mode 100644 index 00000000..dc1eae57 Binary files /dev/null and b/blockchains/ethereum/assets/0xc27A2F05fa577a83BA0fDb4c38443c0718356501/logo.png differ diff --git a/blockchains/ethereum/assets/0xc29004Ab38334dc7A9ecA1b89d6D4BF9f564d5Cf/info.json b/blockchains/ethereum/assets/0xc29004Ab38334dc7A9ecA1b89d6D4BF9f564d5Cf/info.json new file mode 100644 index 00000000..7846d3d5 --- /dev/null +++ b/blockchains/ethereum/assets/0xc29004Ab38334dc7A9ecA1b89d6D4BF9f564d5Cf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Omnes Coin", + "symbol": "OMNES", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc29004Ab38334dc7A9ecA1b89d6D4BF9f564d5Cf", + "status": "abandoned", + "id": "0xc29004Ab38334dc7A9ecA1b89d6D4BF9f564d5Cf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc29004Ab38334dc7A9ecA1b89d6D4BF9f564d5Cf/logo.png b/blockchains/ethereum/assets/0xc29004Ab38334dc7A9ecA1b89d6D4BF9f564d5Cf/logo.png new file mode 100644 index 00000000..241baaee Binary files /dev/null and b/blockchains/ethereum/assets/0xc29004Ab38334dc7A9ecA1b89d6D4BF9f564d5Cf/logo.png differ diff --git a/blockchains/ethereum/assets/0xc2Cd3D241096d29FD7D477327e9109B1C5bf8293/info.json b/blockchains/ethereum/assets/0xc2Cd3D241096d29FD7D477327e9109B1C5bf8293/info.json new file mode 100644 index 00000000..515b42b2 --- /dev/null +++ b/blockchains/ethereum/assets/0xc2Cd3D241096d29FD7D477327e9109B1C5bf8293/info.json @@ -0,0 +1,11 @@ +{ + "name": "DigiCash", + "symbol": "DGX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc2Cd3D241096d29FD7D477327e9109B1C5bf8293", + "status": "abandoned", + "id": "0xc2Cd3D241096d29FD7D477327e9109B1C5bf8293" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc2Cd3D241096d29FD7D477327e9109B1C5bf8293/logo.png b/blockchains/ethereum/assets/0xc2Cd3D241096d29FD7D477327e9109B1C5bf8293/logo.png new file mode 100644 index 00000000..524f764c Binary files /dev/null and b/blockchains/ethereum/assets/0xc2Cd3D241096d29FD7D477327e9109B1C5bf8293/logo.png differ diff --git a/blockchains/ethereum/assets/0xc2DD62b809de9409fDa30D5c222B1f30A850ed84/info.json b/blockchains/ethereum/assets/0xc2DD62b809de9409fDa30D5c222B1f30A850ed84/info.json new file mode 100644 index 00000000..c0edf37e --- /dev/null +++ b/blockchains/ethereum/assets/0xc2DD62b809de9409fDa30D5c222B1f30A850ed84/info.json @@ -0,0 +1,11 @@ +{ + "name": "aomucoin", + "symbol": "aomu", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc2DD62b809de9409fDa30D5c222B1f30A850ed84", + "status": "abandoned", + "id": "0xc2DD62b809de9409fDa30D5c222B1f30A850ed84" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc2DD62b809de9409fDa30D5c222B1f30A850ed84/logo.png b/blockchains/ethereum/assets/0xc2DD62b809de9409fDa30D5c222B1f30A850ed84/logo.png new file mode 100644 index 00000000..cdc2481d Binary files /dev/null and b/blockchains/ethereum/assets/0xc2DD62b809de9409fDa30D5c222B1f30A850ed84/logo.png differ diff --git a/blockchains/ethereum/assets/0xc2b58812c24020EA924c3d7C241C441605F12E75/info.json b/blockchains/ethereum/assets/0xc2b58812c24020EA924c3d7C241C441605F12E75/info.json new file mode 100644 index 00000000..9db2e8fd --- /dev/null +++ b/blockchains/ethereum/assets/0xc2b58812c24020EA924c3d7C241C441605F12E75/info.json @@ -0,0 +1,11 @@ +{ + "name": "Entherfound", + "symbol": "ETF", + "type": "ERC20", + "decimals": 8, + "description": "Entherfound is a startup that has the permits and concessions for the cultivation of Psychoactive and Non-Psychoactive cannabis.", + "website": "https://entherfound.io/", + "explorer": "https://etherscan.io/token/0xc2b58812c24020EA924c3d7C241C441605F12E75", + "status": "active", + "id": "0xc2b58812c24020EA924c3d7C241C441605F12E75" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc2b58812c24020EA924c3d7C241C441605F12E75/logo.png b/blockchains/ethereum/assets/0xc2b58812c24020EA924c3d7C241C441605F12E75/logo.png new file mode 100644 index 00000000..28390ad0 Binary files /dev/null and b/blockchains/ethereum/assets/0xc2b58812c24020EA924c3d7C241C441605F12E75/logo.png differ diff --git a/blockchains/ethereum/assets/0xc2d3843102a19cD8178ac2BC6826FccD4B6B4340/info.json b/blockchains/ethereum/assets/0xc2d3843102a19cD8178ac2BC6826FccD4B6B4340/info.json new file mode 100644 index 00000000..1d5a7088 --- /dev/null +++ b/blockchains/ethereum/assets/0xc2d3843102a19cD8178ac2BC6826FccD4B6B4340/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C507162", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc2d3843102a19cD8178ac2BC6826FccD4B6B4340", + "status": "abandoned", + "id": "0xc2d3843102a19cD8178ac2BC6826FccD4B6B4340" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc2d3843102a19cD8178ac2BC6826FccD4B6B4340/logo.png b/blockchains/ethereum/assets/0xc2d3843102a19cD8178ac2BC6826FccD4B6B4340/logo.png new file mode 100644 index 00000000..e87711e7 Binary files /dev/null and b/blockchains/ethereum/assets/0xc2d3843102a19cD8178ac2BC6826FccD4B6B4340/logo.png differ diff --git a/blockchains/ethereum/assets/0xc2dBFE026f17e7BbC17a9e41F9b8D69531887d47/info.json b/blockchains/ethereum/assets/0xc2dBFE026f17e7BbC17a9e41F9b8D69531887d47/info.json new file mode 100644 index 00000000..f0cfdc98 --- /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 00000000..f54067fe Binary files /dev/null and b/blockchains/ethereum/assets/0xc2dBFE026f17e7BbC17a9e41F9b8D69531887d47/logo.png differ diff --git a/blockchains/ethereum/assets/0xc301F0a7f62b5EF5CfA8454AF23A688DA5a65eC8/info.json b/blockchains/ethereum/assets/0xc301F0a7f62b5EF5CfA8454AF23A688DA5a65eC8/info.json new file mode 100644 index 00000000..cf90c4b3 --- /dev/null +++ b/blockchains/ethereum/assets/0xc301F0a7f62b5EF5CfA8454AF23A688DA5a65eC8/info.json @@ -0,0 +1,11 @@ +{ + "name": "WORLD MEDICAL COINS", + "symbol": "WMC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc301F0a7f62b5EF5CfA8454AF23A688DA5a65eC8", + "status": "abandoned", + "id": "0xc301F0a7f62b5EF5CfA8454AF23A688DA5a65eC8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc301F0a7f62b5EF5CfA8454AF23A688DA5a65eC8/logo.png b/blockchains/ethereum/assets/0xc301F0a7f62b5EF5CfA8454AF23A688DA5a65eC8/logo.png new file mode 100644 index 00000000..55e8c2a0 Binary files /dev/null and b/blockchains/ethereum/assets/0xc301F0a7f62b5EF5CfA8454AF23A688DA5a65eC8/logo.png differ diff --git a/blockchains/ethereum/assets/0xc314b0E758D5FF74f63e307A86EbfE183C95767b/info.json b/blockchains/ethereum/assets/0xc314b0E758D5FF74f63e307A86EbfE183C95767b/info.json new file mode 100644 index 00000000..c996ed11 --- /dev/null +++ b/blockchains/ethereum/assets/0xc314b0E758D5FF74f63e307A86EbfE183C95767b/info.json @@ -0,0 +1,28 @@ +{ + "name": "Adappter Token", + "type": "ERC20", + "symbol": "ADP", + "decimals": 18, + "website": "https://adappter.io/eng.html", + "description": "Adappter creates ‘the Pleasant World’ connected by a Blockchain where users, partners, and everyone together improve value based on the spirit of fairness, sharing, and trust.", + "explorer": "https://etherscan.io/token/0xc314b0e758d5ff74f63e307a86ebfe183c95767b", + "status": "active", + "id": "0xc314b0E758D5FF74f63e307A86EbfE183C95767b", + "links": [ + { + "name": "x", + "url": "https://x.com/Adappter_io" + }, + { + "name": "telegram", + "url": "https://t.me/AdappterOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/adappter-token/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc314b0E758D5FF74f63e307A86EbfE183C95767b/logo.png b/blockchains/ethereum/assets/0xc314b0E758D5FF74f63e307A86EbfE183C95767b/logo.png new file mode 100644 index 00000000..e7332202 Binary files /dev/null and b/blockchains/ethereum/assets/0xc314b0E758D5FF74f63e307A86EbfE183C95767b/logo.png differ diff --git a/blockchains/ethereum/assets/0xc324a2f6b05880503444451B8b27e6f9e63287Cb/info.json b/blockchains/ethereum/assets/0xc324a2f6b05880503444451B8b27e6f9e63287Cb/info.json new file mode 100644 index 00000000..c36a0dc7 --- /dev/null +++ b/blockchains/ethereum/assets/0xc324a2f6b05880503444451B8b27e6f9e63287Cb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Exchange Union Coin", + "symbol": "XUC", + "type": "ERC20", + "decimals": 18, + "description": "Exchange Union is a “decentralized network” that connects individual digital asset exchanges from around the world. The team is on a mission to solve one of crypto’s most prominent issues – illiquidity.", + "website": "https://www.exchangeunion.com/", + "explorer": "https://etherscan.io/token/0xc324a2f6b05880503444451B8b27e6f9e63287Cb", + "status": "active", + "id": "0xc324a2f6b05880503444451B8b27e6f9e63287Cb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc324a2f6b05880503444451B8b27e6f9e63287Cb/logo.png b/blockchains/ethereum/assets/0xc324a2f6b05880503444451B8b27e6f9e63287Cb/logo.png new file mode 100644 index 00000000..359130d3 Binary files /dev/null and b/blockchains/ethereum/assets/0xc324a2f6b05880503444451B8b27e6f9e63287Cb/logo.png differ diff --git a/blockchains/ethereum/assets/0xc327DaF071fb374dcB2AfD28797fC58F096A8b1F/info.json b/blockchains/ethereum/assets/0xc327DaF071fb374dcB2AfD28797fC58F096A8b1F/info.json new file mode 100644 index 00000000..5df60a8f --- /dev/null +++ b/blockchains/ethereum/assets/0xc327DaF071fb374dcB2AfD28797fC58F096A8b1F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aroma Token", + "symbol": "ART", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc327DaF071fb374dcB2AfD28797fC58F096A8b1F", + "status": "active", + "id": "0xc327DaF071fb374dcB2AfD28797fC58F096A8b1F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc327DaF071fb374dcB2AfD28797fC58F096A8b1F/logo.png b/blockchains/ethereum/assets/0xc327DaF071fb374dcB2AfD28797fC58F096A8b1F/logo.png new file mode 100644 index 00000000..9949df35 Binary files /dev/null and b/blockchains/ethereum/assets/0xc327DaF071fb374dcB2AfD28797fC58F096A8b1F/logo.png differ diff --git a/blockchains/ethereum/assets/0xc328a59E7321747aEBBc49FD28d1b32C1af8d3b2/info.json b/blockchains/ethereum/assets/0xc328a59E7321747aEBBc49FD28d1b32C1af8d3b2/info.json new file mode 100644 index 00000000..8c35ada1 --- /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 00000000..124966d9 Binary files /dev/null and b/blockchains/ethereum/assets/0xc328a59E7321747aEBBc49FD28d1b32C1af8d3b2/logo.png differ diff --git a/blockchains/ethereum/assets/0xc3469460CA6260d81ad508773f3B691ae4753Ae2/info.json b/blockchains/ethereum/assets/0xc3469460CA6260d81ad508773f3B691ae4753Ae2/info.json new file mode 100644 index 00000000..e0f8d6f1 --- /dev/null +++ b/blockchains/ethereum/assets/0xc3469460CA6260d81ad508773f3B691ae4753Ae2/info.json @@ -0,0 +1,11 @@ +{ + "name": "SERVICEZONE", + "symbol": "SVZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc3469460CA6260d81ad508773f3B691ae4753Ae2", + "status": "abandoned", + "id": "0xc3469460CA6260d81ad508773f3B691ae4753Ae2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc3469460CA6260d81ad508773f3B691ae4753Ae2/logo.png b/blockchains/ethereum/assets/0xc3469460CA6260d81ad508773f3B691ae4753Ae2/logo.png new file mode 100644 index 00000000..47f3459f Binary files /dev/null and b/blockchains/ethereum/assets/0xc3469460CA6260d81ad508773f3B691ae4753Ae2/logo.png differ diff --git a/blockchains/ethereum/assets/0xc34Ef872a751A10E2a80243eF826ec0942fE3F14/info.json b/blockchains/ethereum/assets/0xc34Ef872a751A10E2a80243eF826ec0942fE3F14/info.json new file mode 100644 index 00000000..f7cf6b8e --- /dev/null +++ b/blockchains/ethereum/assets/0xc34Ef872a751A10E2a80243eF826ec0942fE3F14/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Uniswap", + "website": "https://bitcoinuniswap.org", + "description": "Bitcoin Uniswap is based on the design of Bitcoin. It comes with a rarer amount, faster transfer speed, and lower fees.", + "explorer": "https://etherscan.io/token/0xc34Ef872a751A10E2a80243eF826ec0942fE3F14", + "type": "ERC20", + "symbol": "BTCu", + "decimals": 18, + "status": "active", + "id": "0xc34Ef872a751A10E2a80243eF826ec0942fE3F14" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc34Ef872a751A10E2a80243eF826ec0942fE3F14/logo.png b/blockchains/ethereum/assets/0xc34Ef872a751A10E2a80243eF826ec0942fE3F14/logo.png new file mode 100644 index 00000000..e32fc1c7 Binary files /dev/null and b/blockchains/ethereum/assets/0xc34Ef872a751A10E2a80243eF826ec0942fE3F14/logo.png differ diff --git a/blockchains/ethereum/assets/0xc36e2C02e64585c15794B8e25E826d50b15fd878/info.json b/blockchains/ethereum/assets/0xc36e2C02e64585c15794B8e25E826d50b15fd878/info.json new file mode 100644 index 00000000..825303f1 --- /dev/null +++ b/blockchains/ethereum/assets/0xc36e2C02e64585c15794B8e25E826d50b15fd878/info.json @@ -0,0 +1,11 @@ +{ + "name": "Animeyen", + "symbol": "ANIME", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://animeyen.com", + "explorer": "https://etherscan.io/token/0xc36e2C02e64585c15794B8e25E826d50b15fd878", + "status": "abandoned", + "id": "0xc36e2C02e64585c15794B8e25E826d50b15fd878" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc36e2C02e64585c15794B8e25E826d50b15fd878/logo.png b/blockchains/ethereum/assets/0xc36e2C02e64585c15794B8e25E826d50b15fd878/logo.png new file mode 100644 index 00000000..d97e9b91 Binary files /dev/null and b/blockchains/ethereum/assets/0xc36e2C02e64585c15794B8e25E826d50b15fd878/logo.png differ diff --git a/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/info.json b/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/info.json new file mode 100644 index 00000000..8d55d520 --- /dev/null +++ b/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/info.json @@ -0,0 +1,14 @@ +{ + "name": "ERC20", + "symbol": "ERC20", + "type": "ERC20", + "decimals": 18, + "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": "abandoned", + "id": "0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc3771d47E2Ab5A519E2917E61e23078d0C05Ed7f/info.json b/blockchains/ethereum/assets/0xc3771d47E2Ab5A519E2917E61e23078d0C05Ed7f/info.json new file mode 100644 index 00000000..1c78931e --- /dev/null +++ b/blockchains/ethereum/assets/0xc3771d47E2Ab5A519E2917E61e23078d0C05Ed7f/info.json @@ -0,0 +1,36 @@ +{ + "name": "Gather", + "website": "https://gather.network", + "description": "Gather is a platform that allows publishers to monetize without ads and provides businesses & developers access to cheap and reliable processing power.", + "explorer": "https://etherscan.io/token/0xc3771d47E2Ab5A519E2917E61e23078d0C05Ed7f", + "type": "ERC20", + "symbol": "GTH", + "decimals": 18, + "status": "abandoned", + "id": "0xc3771d47E2Ab5A519E2917E61e23078d0C05Ed7f", + "tags": [ + "governance" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/Gather_Network" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/GatherNetwork" + }, + { + "name": "medium", + "url": "https://medium.com/@GatherNetwork" + }, + { + "name": "whitepaper", + "url": "https://gather.network/whitepaper.html" + } + ], + "migrate": { + "asset_id": "c60_t0xeb986DA994E4a118d5956b02d8b7c3C7CE373674", + "url": "https://x.com/Gather_Network/status/1479180753967915008" + } +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc37DF6DA3f7fd8290d7e1122B91Dd1aCC402F0E4/info.json b/blockchains/ethereum/assets/0xc37DF6DA3f7fd8290d7e1122B91Dd1aCC402F0E4/info.json new file mode 100644 index 00000000..30bbe349 --- /dev/null +++ b/blockchains/ethereum/assets/0xc37DF6DA3f7fd8290d7e1122B91Dd1aCC402F0E4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rise VS Fall", + "symbol": "RVF", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc37DF6DA3f7fd8290d7e1122B91Dd1aCC402F0E4", + "status": "abandoned", + "id": "0xc37DF6DA3f7fd8290d7e1122B91Dd1aCC402F0E4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc37DF6DA3f7fd8290d7e1122B91Dd1aCC402F0E4/logo.png b/blockchains/ethereum/assets/0xc37DF6DA3f7fd8290d7e1122B91Dd1aCC402F0E4/logo.png new file mode 100755 index 00000000..0748e61f Binary files /dev/null and b/blockchains/ethereum/assets/0xc37DF6DA3f7fd8290d7e1122B91Dd1aCC402F0E4/logo.png differ diff --git a/blockchains/ethereum/assets/0xc37E8a31BA2d110c12f09f0239954A68b00bC599/info.json b/blockchains/ethereum/assets/0xc37E8a31BA2d110c12f09f0239954A68b00bC599/info.json new file mode 100644 index 00000000..bd8dba37 --- /dev/null +++ b/blockchains/ethereum/assets/0xc37E8a31BA2d110c12f09f0239954A68b00bC599/info.json @@ -0,0 +1,11 @@ +{ + "name": "EUB Chain", + "symbol": "EUBC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://eubchain.com/", + "explorer": "https://etherscan.io/token/0xc37E8a31BA2d110c12f09f0239954A68b00bC599", + "status": "abandoned", + "id": "0xc37E8a31BA2d110c12f09f0239954A68b00bC599" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc37E8a31BA2d110c12f09f0239954A68b00bC599/logo.png b/blockchains/ethereum/assets/0xc37E8a31BA2d110c12f09f0239954A68b00bC599/logo.png new file mode 100644 index 00000000..04a54f44 Binary files /dev/null and b/blockchains/ethereum/assets/0xc37E8a31BA2d110c12f09f0239954A68b00bC599/logo.png differ diff --git a/blockchains/ethereum/assets/0xc398891b43F1B91158dCa87c63a88b80d000C248/info.json b/blockchains/ethereum/assets/0xc398891b43F1B91158dCa87c63a88b80d000C248/info.json new file mode 100644 index 00000000..b9495e4b --- /dev/null +++ b/blockchains/ethereum/assets/0xc398891b43F1B91158dCa87c63a88b80d000C248/info.json @@ -0,0 +1,11 @@ +{ + "name": "INDOBIT", + "symbol": "IBIT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc398891b43F1B91158dCa87c63a88b80d000C248", + "status": "abandoned", + "id": "0xc398891b43F1B91158dCa87c63a88b80d000C248" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc398891b43F1B91158dCa87c63a88b80d000C248/logo.png b/blockchains/ethereum/assets/0xc398891b43F1B91158dCa87c63a88b80d000C248/logo.png new file mode 100644 index 00000000..8564829b Binary files /dev/null and b/blockchains/ethereum/assets/0xc398891b43F1B91158dCa87c63a88b80d000C248/logo.png differ diff --git a/blockchains/ethereum/assets/0xc398e9A33288831a64F28F2E01065B17C25B6cD3/info.json b/blockchains/ethereum/assets/0xc398e9A33288831a64F28F2E01065B17C25B6cD3/info.json new file mode 100644 index 00000000..a0766b74 --- /dev/null +++ b/blockchains/ethereum/assets/0xc398e9A33288831a64F28F2E01065B17C25B6cD3/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-15/30M15", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc398e9A33288831a64F28F2E01065B17C25B6cD3", + "status": "abandoned", + "id": "0xc398e9A33288831a64F28F2E01065B17C25B6cD3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc398e9A33288831a64F28F2E01065B17C25B6cD3/logo.png b/blockchains/ethereum/assets/0xc398e9A33288831a64F28F2E01065B17C25B6cD3/logo.png new file mode 100644 index 00000000..1f694b27 Binary files /dev/null and b/blockchains/ethereum/assets/0xc398e9A33288831a64F28F2E01065B17C25B6cD3/logo.png differ diff --git a/blockchains/ethereum/assets/0xc3Ad35D351B33783f27777E2Ee1a4b6f96e4EE34/info.json b/blockchains/ethereum/assets/0xc3Ad35D351B33783f27777E2Ee1a4b6f96e4EE34/info.json new file mode 100644 index 00000000..a6e5762a --- /dev/null +++ b/blockchains/ethereum/assets/0xc3Ad35D351B33783f27777E2Ee1a4b6f96e4EE34/info.json @@ -0,0 +1,11 @@ +{ + "name": "E25_Booster", + "symbol": "E25", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc3Ad35D351B33783f27777E2Ee1a4b6f96e4EE34", + "status": "abandoned", + "id": "0xc3Ad35D351B33783f27777E2Ee1a4b6f96e4EE34" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc3Ad35D351B33783f27777E2Ee1a4b6f96e4EE34/logo.png b/blockchains/ethereum/assets/0xc3Ad35D351B33783f27777E2Ee1a4b6f96e4EE34/logo.png new file mode 100644 index 00000000..2b5ed708 Binary files /dev/null and b/blockchains/ethereum/assets/0xc3Ad35D351B33783f27777E2Ee1a4b6f96e4EE34/logo.png differ diff --git a/blockchains/ethereum/assets/0xc3D93B45249E8E06cfeB01d25A96337E8893265d/info.json b/blockchains/ethereum/assets/0xc3D93B45249E8E06cfeB01d25A96337E8893265d/info.json new file mode 100644 index 00000000..5bf2b9b5 --- /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 00000000..99e55b45 Binary files /dev/null and b/blockchains/ethereum/assets/0xc3D93B45249E8E06cfeB01d25A96337E8893265d/logo.png differ diff --git a/blockchains/ethereum/assets/0xc3DbBD550199Cd4E8F54737d0B05697609B12fb5/info.json b/blockchains/ethereum/assets/0xc3DbBD550199Cd4E8F54737d0B05697609B12fb5/info.json new file mode 100644 index 00000000..1f652024 --- /dev/null +++ b/blockchains/ethereum/assets/0xc3DbBD550199Cd4E8F54737d0B05697609B12fb5/info.json @@ -0,0 +1,11 @@ +{ + "name": "OBIT Coin", + "symbol": "OBIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc3DbBD550199Cd4E8F54737d0B05697609B12fb5", + "status": "abandoned", + "id": "0xc3DbBD550199Cd4E8F54737d0B05697609B12fb5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc3DbBD550199Cd4E8F54737d0B05697609B12fb5/logo.png b/blockchains/ethereum/assets/0xc3DbBD550199Cd4E8F54737d0B05697609B12fb5/logo.png new file mode 100644 index 00000000..34ed6740 Binary files /dev/null and b/blockchains/ethereum/assets/0xc3DbBD550199Cd4E8F54737d0B05697609B12fb5/logo.png differ diff --git a/blockchains/ethereum/assets/0xc3E329cA5380C6b416CF095Ed1a662c378A2B630/info.json b/blockchains/ethereum/assets/0xc3E329cA5380C6b416CF095Ed1a662c378A2B630/info.json new file mode 100644 index 00000000..2e3e7341 --- /dev/null +++ b/blockchains/ethereum/assets/0xc3E329cA5380C6b416CF095Ed1a662c378A2B630/info.json @@ -0,0 +1,11 @@ +{ + "name": "TaurusPay", + "symbol": "TAPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc3E329cA5380C6b416CF095Ed1a662c378A2B630", + "status": "abandoned", + "id": "0xc3E329cA5380C6b416CF095Ed1a662c378A2B630" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc3E329cA5380C6b416CF095Ed1a662c378A2B630/logo.png b/blockchains/ethereum/assets/0xc3E329cA5380C6b416CF095Ed1a662c378A2B630/logo.png new file mode 100755 index 00000000..a5c1fc70 Binary files /dev/null and b/blockchains/ethereum/assets/0xc3E329cA5380C6b416CF095Ed1a662c378A2B630/logo.png differ diff --git a/blockchains/ethereum/assets/0xc3EdD7443563bF2D2d1f5a9c286CDDDC70e41587/info.json b/blockchains/ethereum/assets/0xc3EdD7443563bF2D2d1f5a9c286CDDDC70e41587/info.json new file mode 100644 index 00000000..9b11db15 --- /dev/null +++ b/blockchains/ethereum/assets/0xc3EdD7443563bF2D2d1f5a9c286CDDDC70e41587/info.json @@ -0,0 +1,11 @@ +{ + "name": "The B Network Group", + "symbol": "TBNG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc3EdD7443563bF2D2d1f5a9c286CDDDC70e41587", + "status": "abandoned", + "id": "0xc3EdD7443563bF2D2d1f5a9c286CDDDC70e41587" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc3EdD7443563bF2D2d1f5a9c286CDDDC70e41587/logo.png b/blockchains/ethereum/assets/0xc3EdD7443563bF2D2d1f5a9c286CDDDC70e41587/logo.png new file mode 100644 index 00000000..f22dedb6 Binary files /dev/null and b/blockchains/ethereum/assets/0xc3EdD7443563bF2D2d1f5a9c286CDDDC70e41587/logo.png differ diff --git a/blockchains/ethereum/assets/0xc3a3cA5D1d4e3Fb804D1AB5212678ccbe0815074/info.json b/blockchains/ethereum/assets/0xc3a3cA5D1d4e3Fb804D1AB5212678ccbe0815074/info.json new file mode 100644 index 00000000..2140548f --- /dev/null +++ b/blockchains/ethereum/assets/0xc3a3cA5D1d4e3Fb804D1AB5212678ccbe0815074/info.json @@ -0,0 +1,11 @@ +{ + "name": "MCC ico token", + "symbol": "MCC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc3a3cA5D1d4e3Fb804D1AB5212678ccbe0815074", + "status": "abandoned", + "id": "0xc3a3cA5D1d4e3Fb804D1AB5212678ccbe0815074" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc3a3cA5D1d4e3Fb804D1AB5212678ccbe0815074/logo.png b/blockchains/ethereum/assets/0xc3a3cA5D1d4e3Fb804D1AB5212678ccbe0815074/logo.png new file mode 100644 index 00000000..e315c08d Binary files /dev/null and b/blockchains/ethereum/assets/0xc3a3cA5D1d4e3Fb804D1AB5212678ccbe0815074/logo.png differ diff --git a/blockchains/ethereum/assets/0xc3d2Fae2FbEc8dB5Ef4A43C8b53276aB21Bc1ce2/info.json b/blockchains/ethereum/assets/0xc3d2Fae2FbEc8dB5Ef4A43C8b53276aB21Bc1ce2/info.json new file mode 100644 index 00000000..55ed778d --- /dev/null +++ b/blockchains/ethereum/assets/0xc3d2Fae2FbEc8dB5Ef4A43C8b53276aB21Bc1ce2/info.json @@ -0,0 +1,11 @@ +{ + "name": "SecretCoin", + "symbol": "SCR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc3d2Fae2FbEc8dB5Ef4A43C8b53276aB21Bc1ce2", + "status": "abandoned", + "id": "0xc3d2Fae2FbEc8dB5Ef4A43C8b53276aB21Bc1ce2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc3d2Fae2FbEc8dB5Ef4A43C8b53276aB21Bc1ce2/logo.png b/blockchains/ethereum/assets/0xc3d2Fae2FbEc8dB5Ef4A43C8b53276aB21Bc1ce2/logo.png new file mode 100755 index 00000000..cf9e962e Binary files /dev/null and b/blockchains/ethereum/assets/0xc3d2Fae2FbEc8dB5Ef4A43C8b53276aB21Bc1ce2/logo.png differ diff --git a/blockchains/ethereum/assets/0xc3dD23A0a854b4f9aE80670f528094E9Eb607CCb/info.json b/blockchains/ethereum/assets/0xc3dD23A0a854b4f9aE80670f528094E9Eb607CCb/info.json new file mode 100644 index 00000000..a0720688 --- /dev/null +++ b/blockchains/ethereum/assets/0xc3dD23A0a854b4f9aE80670f528094E9Eb607CCb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trendering", + "symbol": "TRND", + "type": "ERC20", + "decimals": 18, + "description": "Trendering uses realtime Ethereum blockchain analysis to predict market movements of ERC20 tokens & more.", + "website": "https://trendering.com/", + "explorer": "https://etherscan.io/token/0xc3dD23A0a854b4f9aE80670f528094E9Eb607CCb", + "status": "active", + "id": "0xc3dD23A0a854b4f9aE80670f528094E9Eb607CCb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc3dD23A0a854b4f9aE80670f528094E9Eb607CCb/logo.png b/blockchains/ethereum/assets/0xc3dD23A0a854b4f9aE80670f528094E9Eb607CCb/logo.png new file mode 100644 index 00000000..02ed034f Binary files /dev/null and b/blockchains/ethereum/assets/0xc3dD23A0a854b4f9aE80670f528094E9Eb607CCb/logo.png differ diff --git a/blockchains/ethereum/assets/0xc3e2de0b661cF58F66BdE8E896905399ded58af5/info.json b/blockchains/ethereum/assets/0xc3e2de0b661cF58F66BdE8E896905399ded58af5/info.json new file mode 100644 index 00000000..0b3b9cb8 --- /dev/null +++ b/blockchains/ethereum/assets/0xc3e2de0b661cF58F66BdE8E896905399ded58af5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Matrexcoin", + "symbol": "MAC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://matrexcoin.com/", + "explorer": "https://etherscan.io/token/0xc3e2de0b661cF58F66BdE8E896905399ded58af5", + "status": "abandoned", + "id": "0xc3e2de0b661cF58F66BdE8E896905399ded58af5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc3e2de0b661cF58F66BdE8E896905399ded58af5/logo.png b/blockchains/ethereum/assets/0xc3e2de0b661cF58F66BdE8E896905399ded58af5/logo.png new file mode 100644 index 00000000..39b3865b Binary files /dev/null and b/blockchains/ethereum/assets/0xc3e2de0b661cF58F66BdE8E896905399ded58af5/logo.png differ diff --git a/blockchains/ethereum/assets/0xc4199fB6FFDb30A829614becA030f9042f1c3992/info.json b/blockchains/ethereum/assets/0xc4199fB6FFDb30A829614becA030f9042f1c3992/info.json new file mode 100644 index 00000000..bb92bfbd --- /dev/null +++ b/blockchains/ethereum/assets/0xc4199fB6FFDb30A829614becA030f9042f1c3992/info.json @@ -0,0 +1,11 @@ +{ + "name": "snglsDAO Governance Token", + "website": "https://snglsDAO.io", + "description": "snglsDAO Governance Token is the reputation token for the snglsDAO. Join the revolution of unstoppable media and the fight for freedom from censorship!", + "explorer": "https://etherscan.io/token/0xc4199fB6FFDb30A829614becA030f9042f1c3992", + "type": "ERC20", + "symbol": "SGT", + "decimals": 18, + "status": "active", + "id": "0xc4199fB6FFDb30A829614becA030f9042f1c3992" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc4199fB6FFDb30A829614becA030f9042f1c3992/logo.png b/blockchains/ethereum/assets/0xc4199fB6FFDb30A829614becA030f9042f1c3992/logo.png new file mode 100644 index 00000000..045723aa Binary files /dev/null and b/blockchains/ethereum/assets/0xc4199fB6FFDb30A829614becA030f9042f1c3992/logo.png differ diff --git a/blockchains/ethereum/assets/0xc42209aCcC14029c1012fB5680D95fBd6036E2a0/info.json b/blockchains/ethereum/assets/0xc42209aCcC14029c1012fB5680D95fBd6036E2a0/info.json new file mode 100644 index 00000000..5d3e80e5 --- /dev/null +++ b/blockchains/ethereum/assets/0xc42209aCcC14029c1012fB5680D95fBd6036E2a0/info.json @@ -0,0 +1,11 @@ +{ + "name": "PayPie", + "symbol": "PPP", + "type": "ERC20", + "decimals": 18, + "description": "PayPie (PPP) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.paypie.com", + "explorer": "https://etherscan.io/token/0xc42209aCcC14029c1012fB5680D95fBd6036E2a0", + "status": "active", + "id": "0xc42209aCcC14029c1012fB5680D95fBd6036E2a0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc42209aCcC14029c1012fB5680D95fBd6036E2a0/logo.png b/blockchains/ethereum/assets/0xc42209aCcC14029c1012fB5680D95fBd6036E2a0/logo.png new file mode 100644 index 00000000..453b09e2 Binary files /dev/null and b/blockchains/ethereum/assets/0xc42209aCcC14029c1012fB5680D95fBd6036E2a0/logo.png differ diff --git a/blockchains/ethereum/assets/0xc429E7B63dc30B51f5A7E4BE23Fd5eB4BAF8A1C3/info.json b/blockchains/ethereum/assets/0xc429E7B63dc30B51f5A7E4BE23Fd5eB4BAF8A1C3/info.json new file mode 100644 index 00000000..28774874 --- /dev/null +++ b/blockchains/ethereum/assets/0xc429E7B63dc30B51f5A7E4BE23Fd5eB4BAF8A1C3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitibu", + "symbol": "BTB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc429E7B63dc30B51f5A7E4BE23Fd5eB4BAF8A1C3", + "status": "abandoned", + "id": "0xc429E7B63dc30B51f5A7E4BE23Fd5eB4BAF8A1C3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc429E7B63dc30B51f5A7E4BE23Fd5eB4BAF8A1C3/logo.png b/blockchains/ethereum/assets/0xc429E7B63dc30B51f5A7E4BE23Fd5eB4BAF8A1C3/logo.png new file mode 100644 index 00000000..028ed356 Binary files /dev/null and b/blockchains/ethereum/assets/0xc429E7B63dc30B51f5A7E4BE23Fd5eB4BAF8A1C3/logo.png differ diff --git a/blockchains/ethereum/assets/0xc434B0584355039392BBa077B2B58AE614B6f18c/info.json b/blockchains/ethereum/assets/0xc434B0584355039392BBa077B2B58AE614B6f18c/info.json new file mode 100644 index 00000000..73be0c7b --- /dev/null +++ b/blockchains/ethereum/assets/0xc434B0584355039392BBa077B2B58AE614B6f18c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shares", + "symbol": "SHR", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc434B0584355039392BBa077B2B58AE614B6f18c", + "status": "abandoned", + "id": "0xc434B0584355039392BBa077B2B58AE614B6f18c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc434B0584355039392BBa077B2B58AE614B6f18c/logo.png b/blockchains/ethereum/assets/0xc434B0584355039392BBa077B2B58AE614B6f18c/logo.png new file mode 100644 index 00000000..8aa15c73 Binary files /dev/null and b/blockchains/ethereum/assets/0xc434B0584355039392BBa077B2B58AE614B6f18c/logo.png differ diff --git a/blockchains/ethereum/assets/0xc43C6bfeDA065fE2c4c11765Bf838789bd0BB5dE/info.json b/blockchains/ethereum/assets/0xc43C6bfeDA065fE2c4c11765Bf838789bd0BB5dE/info.json new file mode 100644 index 00000000..2866123d --- /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 00000000..94d53001 Binary files /dev/null and b/blockchains/ethereum/assets/0xc43C6bfeDA065fE2c4c11765Bf838789bd0BB5dE/logo.png differ diff --git a/blockchains/ethereum/assets/0xc44948cbbaF37A4D7f1315C08972B4338080bf59/info.json b/blockchains/ethereum/assets/0xc44948cbbaF37A4D7f1315C08972B4338080bf59/info.json new file mode 100644 index 00000000..63ad02e1 --- /dev/null +++ b/blockchains/ethereum/assets/0xc44948cbbaF37A4D7f1315C08972B4338080bf59/info.json @@ -0,0 +1,11 @@ +{ + "name": "turepay", + "symbol": "TUP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc44948cbbaF37A4D7f1315C08972B4338080bf59", + "status": "abandoned", + "id": "0xc44948cbbaF37A4D7f1315C08972B4338080bf59" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc44948cbbaF37A4D7f1315C08972B4338080bf59/logo.png b/blockchains/ethereum/assets/0xc44948cbbaF37A4D7f1315C08972B4338080bf59/logo.png new file mode 100644 index 00000000..7bb40071 Binary files /dev/null and b/blockchains/ethereum/assets/0xc44948cbbaF37A4D7f1315C08972B4338080bf59/logo.png differ diff --git a/blockchains/ethereum/assets/0xc45D5E5c83101B1873354694B95089981fB9F7ca/info.json b/blockchains/ethereum/assets/0xc45D5E5c83101B1873354694B95089981fB9F7ca/info.json new file mode 100644 index 00000000..f4711da3 --- /dev/null +++ b/blockchains/ethereum/assets/0xc45D5E5c83101B1873354694B95089981fB9F7ca/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 181-CN48", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc45D5E5c83101B1873354694B95089981fB9F7ca", + "status": "abandoned", + "id": "0xc45D5E5c83101B1873354694B95089981fB9F7ca" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc45D5E5c83101B1873354694B95089981fB9F7ca/logo.png b/blockchains/ethereum/assets/0xc45D5E5c83101B1873354694B95089981fB9F7ca/logo.png new file mode 100644 index 00000000..716338ba Binary files /dev/null and b/blockchains/ethereum/assets/0xc45D5E5c83101B1873354694B95089981fB9F7ca/logo.png differ diff --git a/blockchains/ethereum/assets/0xc49451103d26EEAC37D94bf5d4c4EB5FA3184e28/info.json b/blockchains/ethereum/assets/0xc49451103d26EEAC37D94bf5d4c4EB5FA3184e28/info.json new file mode 100644 index 00000000..a43b139a --- /dev/null +++ b/blockchains/ethereum/assets/0xc49451103d26EEAC37D94bf5d4c4EB5FA3184e28/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPORTSCRYPTO", + "symbol": "SPCR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc49451103d26EEAC37D94bf5d4c4EB5FA3184e28", + "status": "abandoned", + "id": "0xc49451103d26EEAC37D94bf5d4c4EB5FA3184e28" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc49451103d26EEAC37D94bf5d4c4EB5FA3184e28/logo.png b/blockchains/ethereum/assets/0xc49451103d26EEAC37D94bf5d4c4EB5FA3184e28/logo.png new file mode 100644 index 00000000..d3da737f Binary files /dev/null and b/blockchains/ethereum/assets/0xc49451103d26EEAC37D94bf5d4c4EB5FA3184e28/logo.png differ diff --git a/blockchains/ethereum/assets/0xc4AF083E9Ce938b0f4644B6fbAaDe8d52F050494/info.json b/blockchains/ethereum/assets/0xc4AF083E9Ce938b0f4644B6fbAaDe8d52F050494/info.json new file mode 100644 index 00000000..2cb69150 --- /dev/null +++ b/blockchains/ethereum/assets/0xc4AF083E9Ce938b0f4644B6fbAaDe8d52F050494/info.json @@ -0,0 +1,11 @@ +{ + "name": "Daniubi", + "symbol": "DNB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc4AF083E9Ce938b0f4644B6fbAaDe8d52F050494", + "status": "abandoned", + "id": "0xc4AF083E9Ce938b0f4644B6fbAaDe8d52F050494" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc4AF083E9Ce938b0f4644B6fbAaDe8d52F050494/logo.png b/blockchains/ethereum/assets/0xc4AF083E9Ce938b0f4644B6fbAaDe8d52F050494/logo.png new file mode 100644 index 00000000..b9e365ba Binary files /dev/null and b/blockchains/ethereum/assets/0xc4AF083E9Ce938b0f4644B6fbAaDe8d52F050494/logo.png differ diff --git a/blockchains/ethereum/assets/0xc4d586ef7Be9EBe80bD5eE4FBd228fe2Db5F2C4e/info.json b/blockchains/ethereum/assets/0xc4d586ef7Be9EBe80bD5eE4FBd228fe2Db5F2C4e/info.json new file mode 100644 index 00000000..edea1931 --- /dev/null +++ b/blockchains/ethereum/assets/0xc4d586ef7Be9EBe80bD5eE4FBd228fe2Db5F2C4e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Papa Shiba", + "type": "ERC20", + "symbol": "PHIBA", + "decimals": 9, + "website": "https://papashiba.finance", + "description": "Add PHIBA- Papa Shiba logo and info", + "explorer": "https://etherscan.io/token/0xc4d586ef7be9ebe80bd5ee4fbd228fe2db5f2c4e", + "status": "active", + "id": "0xc4d586ef7Be9EBe80bD5eE4FBd228fe2Db5F2C4e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc4d586ef7Be9EBe80bD5eE4FBd228fe2Db5F2C4e/logo.png b/blockchains/ethereum/assets/0xc4d586ef7Be9EBe80bD5eE4FBd228fe2Db5F2C4e/logo.png new file mode 100644 index 00000000..d3b01604 Binary files /dev/null and b/blockchains/ethereum/assets/0xc4d586ef7Be9EBe80bD5eE4FBd228fe2Db5F2C4e/logo.png differ diff --git a/blockchains/ethereum/assets/0xc4e41117B773599971907172b82FE85afe6A1a21/info.json b/blockchains/ethereum/assets/0xc4e41117B773599971907172b82FE85afe6A1a21/info.json new file mode 100644 index 00000000..3196c17c --- /dev/null +++ b/blockchains/ethereum/assets/0xc4e41117B773599971907172b82FE85afe6A1a21/info.json @@ -0,0 +1,11 @@ +{ + "name": "Silver", + "symbol": "CSC-SI", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc4e41117B773599971907172b82FE85afe6A1a21", + "status": "abandoned", + "id": "0xc4e41117B773599971907172b82FE85afe6A1a21" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc4e41117B773599971907172b82FE85afe6A1a21/logo.png b/blockchains/ethereum/assets/0xc4e41117B773599971907172b82FE85afe6A1a21/logo.png new file mode 100755 index 00000000..fc3ce694 Binary files /dev/null and b/blockchains/ethereum/assets/0xc4e41117B773599971907172b82FE85afe6A1a21/logo.png differ diff --git a/blockchains/ethereum/assets/0xc4e6E80295154D3968519851F73f8Dc1a227286F/info.json b/blockchains/ethereum/assets/0xc4e6E80295154D3968519851F73f8Dc1a227286F/info.json new file mode 100644 index 00000000..6e570c31 --- /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 00000000..138c9f7d 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 new file mode 100644 index 00000000..dab6aea0 --- /dev/null +++ b/blockchains/ethereum/assets/0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC/info.json @@ -0,0 +1,40 @@ +{ + "name": "Hop", + "type": "ERC20", + "symbol": "HOP", + "decimals": 18, + "website": "https://app.hop.exchange/", + "description": "A protocol for sending tokens across rollups and their shared layer-1 network in a quick and trustless manner", + "explorer": "https://etherscan.io/token/0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC", + "status": "active", + "id": "0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC", + "links": [ + { + "name": "x", + "url": "https://x.com/HopProtocol" + }, + { + "name": "github", + "url": "https://github.com/hop-protocol" + }, + { + "name": "docs", + "url": "https://docs.hop.exchange/" + }, + { + "name": "whitepaper", + "url": "https://app.hop.exchange/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hop-exchange/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/hop-protocol" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC/logo.png b/blockchains/ethereum/assets/0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC/logo.png new file mode 100644 index 00000000..a74baaf4 Binary files /dev/null and b/blockchains/ethereum/assets/0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC/logo.png differ diff --git a/blockchains/ethereum/assets/0xc5167c11aE8Bccee3EccCE34892014fe8DB84e83/info.json b/blockchains/ethereum/assets/0xc5167c11aE8Bccee3EccCE34892014fe8DB84e83/info.json new file mode 100644 index 00000000..8875bec4 --- /dev/null +++ b/blockchains/ethereum/assets/0xc5167c11aE8Bccee3EccCE34892014fe8DB84e83/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 321-CN25", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc5167c11aE8Bccee3EccCE34892014fe8DB84e83", + "status": "abandoned", + "id": "0xc5167c11aE8Bccee3EccCE34892014fe8DB84e83" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc5167c11aE8Bccee3EccCE34892014fe8DB84e83/logo.png b/blockchains/ethereum/assets/0xc5167c11aE8Bccee3EccCE34892014fe8DB84e83/logo.png new file mode 100644 index 00000000..ae2d680a Binary files /dev/null and b/blockchains/ethereum/assets/0xc5167c11aE8Bccee3EccCE34892014fe8DB84e83/logo.png differ diff --git a/blockchains/ethereum/assets/0xc528c28FEC0A90C083328BC45f587eE215760A0F/info.json b/blockchains/ethereum/assets/0xc528c28FEC0A90C083328BC45f587eE215760A0F/info.json new file mode 100644 index 00000000..72072ab2 --- /dev/null +++ b/blockchains/ethereum/assets/0xc528c28FEC0A90C083328BC45f587eE215760A0F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Endor Protocol Token", + "symbol": "EDR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.endor.com", + "explorer": "https://etherscan.io/token/0xc528c28FEC0A90C083328BC45f587eE215760A0F", + "status": "active", + "id": "0xc528c28FEC0A90C083328BC45f587eE215760A0F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc528c28FEC0A90C083328BC45f587eE215760A0F/logo.png b/blockchains/ethereum/assets/0xc528c28FEC0A90C083328BC45f587eE215760A0F/logo.png new file mode 100755 index 00000000..8a2cc766 Binary files /dev/null and b/blockchains/ethereum/assets/0xc528c28FEC0A90C083328BC45f587eE215760A0F/logo.png differ diff --git a/blockchains/ethereum/assets/0xc53f6C2Ac35D30cc47Ddf3C320874b21dFA38791/info.json b/blockchains/ethereum/assets/0xc53f6C2Ac35D30cc47Ddf3C320874b21dFA38791/info.json new file mode 100644 index 00000000..abe06171 --- /dev/null +++ b/blockchains/ethereum/assets/0xc53f6C2Ac35D30cc47Ddf3C320874b21dFA38791/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gcash", + "symbol": "GCASH", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc53f6C2Ac35D30cc47Ddf3C320874b21dFA38791", + "status": "abandoned", + "id": "0xc53f6C2Ac35D30cc47Ddf3C320874b21dFA38791" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc53f6C2Ac35D30cc47Ddf3C320874b21dFA38791/logo.png b/blockchains/ethereum/assets/0xc53f6C2Ac35D30cc47Ddf3C320874b21dFA38791/logo.png new file mode 100644 index 00000000..148b1a6c Binary files /dev/null and b/blockchains/ethereum/assets/0xc53f6C2Ac35D30cc47Ddf3C320874b21dFA38791/logo.png differ diff --git a/blockchains/ethereum/assets/0xc54083e77F913a4f99E1232Ae80c318ff03c9D17/info.json b/blockchains/ethereum/assets/0xc54083e77F913a4f99E1232Ae80c318ff03c9D17/info.json new file mode 100644 index 00000000..20529342 --- /dev/null +++ b/blockchains/ethereum/assets/0xc54083e77F913a4f99E1232Ae80c318ff03c9D17/info.json @@ -0,0 +1,11 @@ +{ + "name": "CariNet Token", + "symbol": "CIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.carinet.io/", + "explorer": "https://etherscan.io/token/0xc54083e77F913a4f99E1232Ae80c318ff03c9D17", + "status": "abandoned", + "id": "0xc54083e77F913a4f99E1232Ae80c318ff03c9D17" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc54083e77F913a4f99E1232Ae80c318ff03c9D17/logo.png b/blockchains/ethereum/assets/0xc54083e77F913a4f99E1232Ae80c318ff03c9D17/logo.png new file mode 100644 index 00000000..779fc190 Binary files /dev/null and b/blockchains/ethereum/assets/0xc54083e77F913a4f99E1232Ae80c318ff03c9D17/logo.png differ diff --git a/blockchains/ethereum/assets/0xc544197d2b5862B996317dD471544f00769902b5/info.json b/blockchains/ethereum/assets/0xc544197d2b5862B996317dD471544f00769902b5/info.json new file mode 100644 index 00000000..5ea308c2 --- /dev/null +++ b/blockchains/ethereum/assets/0xc544197d2b5862B996317dD471544f00769902b5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hydro Token", + "symbol": "XHT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc544197d2b5862B996317dD471544f00769902b5", + "status": "abandoned", + "id": "0xc544197d2b5862B996317dD471544f00769902b5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc544197d2b5862B996317dD471544f00769902b5/logo.png b/blockchains/ethereum/assets/0xc544197d2b5862B996317dD471544f00769902b5/logo.png new file mode 100644 index 00000000..973bb521 Binary files /dev/null and b/blockchains/ethereum/assets/0xc544197d2b5862B996317dD471544f00769902b5/logo.png differ diff --git a/blockchains/ethereum/assets/0xc5451c3b432687A5a796c4DafD0cb4702874F92D/info.json b/blockchains/ethereum/assets/0xc5451c3b432687A5a796c4DafD0cb4702874F92D/info.json new file mode 100644 index 00000000..f2532df5 --- /dev/null +++ b/blockchains/ethereum/assets/0xc5451c3b432687A5a796c4DafD0cb4702874F92D/info.json @@ -0,0 +1,11 @@ +{ + "name": "ARTDOTCOIN", + "symbol": "ADC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc5451c3b432687A5a796c4DafD0cb4702874F92D", + "status": "abandoned", + "id": "0xc5451c3b432687A5a796c4DafD0cb4702874F92D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc5451c3b432687A5a796c4DafD0cb4702874F92D/logo.png b/blockchains/ethereum/assets/0xc5451c3b432687A5a796c4DafD0cb4702874F92D/logo.png new file mode 100644 index 00000000..781c8838 Binary files /dev/null and b/blockchains/ethereum/assets/0xc5451c3b432687A5a796c4DafD0cb4702874F92D/logo.png differ diff --git a/blockchains/ethereum/assets/0xc5594d84B996A68326d89FB35E4B89b3323ef37d/info.json b/blockchains/ethereum/assets/0xc5594d84B996A68326d89FB35E4B89b3323ef37d/info.json new file mode 100644 index 00000000..4d624f5e --- /dev/null +++ b/blockchains/ethereum/assets/0xc5594d84B996A68326d89FB35E4B89b3323ef37d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Epocum", + "symbol": "EPM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc5594d84B996A68326d89FB35E4B89b3323ef37d", + "status": "abandoned", + "id": "0xc5594d84B996A68326d89FB35E4B89b3323ef37d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc5594d84B996A68326d89FB35E4B89b3323ef37d/logo.png b/blockchains/ethereum/assets/0xc5594d84B996A68326d89FB35E4B89b3323ef37d/logo.png new file mode 100644 index 00000000..dc65c488 Binary files /dev/null and b/blockchains/ethereum/assets/0xc5594d84B996A68326d89FB35E4B89b3323ef37d/logo.png differ diff --git a/blockchains/ethereum/assets/0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8/info.json b/blockchains/ethereum/assets/0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8/info.json new file mode 100644 index 00000000..f197f4c4 --- /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 00000000..4b8ecb0f Binary files /dev/null and b/blockchains/ethereum/assets/0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8/logo.png differ diff --git a/blockchains/ethereum/assets/0xc56b13ebbCFfa67cFb7979b900b736b3fb480D78/info.json b/blockchains/ethereum/assets/0xc56b13ebbCFfa67cFb7979b900b736b3fb480D78/info.json new file mode 100644 index 00000000..c4fb78f8 --- /dev/null +++ b/blockchains/ethereum/assets/0xc56b13ebbCFfa67cFb7979b900b736b3fb480D78/info.json @@ -0,0 +1,11 @@ +{ + "name": "Social Activity Token", + "symbol": "SAT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://sphere.social/", + "explorer": "https://etherscan.io/token/0xc56b13ebbCFfa67cFb7979b900b736b3fb480D78", + "status": "abandoned", + "id": "0xc56b13ebbCFfa67cFb7979b900b736b3fb480D78" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc56b13ebbCFfa67cFb7979b900b736b3fb480D78/logo.png b/blockchains/ethereum/assets/0xc56b13ebbCFfa67cFb7979b900b736b3fb480D78/logo.png new file mode 100644 index 00000000..d7ecb949 Binary files /dev/null and b/blockchains/ethereum/assets/0xc56b13ebbCFfa67cFb7979b900b736b3fb480D78/logo.png differ diff --git a/blockchains/ethereum/assets/0xc575BD129848Ce06A460A19466c30E1D0328F52C/info.json b/blockchains/ethereum/assets/0xc575BD129848Ce06A460A19466c30E1D0328F52C/info.json new file mode 100644 index 00000000..eb459a3c --- /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 00000000..9d18db16 Binary files /dev/null and b/blockchains/ethereum/assets/0xc575BD129848Ce06A460A19466c30E1D0328F52C/logo.png differ diff --git a/blockchains/ethereum/assets/0xc58c0Fca06908E66540102356f2E91edCaEB8D81/info.json b/blockchains/ethereum/assets/0xc58c0Fca06908E66540102356f2E91edCaEB8D81/info.json new file mode 100644 index 00000000..bc3bfcb2 --- /dev/null +++ b/blockchains/ethereum/assets/0xc58c0Fca06908E66540102356f2E91edCaEB8D81/info.json @@ -0,0 +1,11 @@ +{ + "name": "HalfLife", + "symbol": "NUKE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://nuketoken.com/", + "explorer": "https://etherscan.io/token/0xc58c0Fca06908E66540102356f2E91edCaEB8D81", + "status": "abandoned", + "id": "0xc58c0Fca06908E66540102356f2E91edCaEB8D81" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc58c0Fca06908E66540102356f2E91edCaEB8D81/logo.png b/blockchains/ethereum/assets/0xc58c0Fca06908E66540102356f2E91edCaEB8D81/logo.png new file mode 100644 index 00000000..cabc0a5a Binary files /dev/null and b/blockchains/ethereum/assets/0xc58c0Fca06908E66540102356f2E91edCaEB8D81/logo.png differ diff --git a/blockchains/ethereum/assets/0xc59fB1211F8226fD716180fCfA29D0A2FeE00FeD/info.json b/blockchains/ethereum/assets/0xc59fB1211F8226fD716180fCfA29D0A2FeE00FeD/info.json new file mode 100644 index 00000000..6c8a846b --- /dev/null +++ b/blockchains/ethereum/assets/0xc59fB1211F8226fD716180fCfA29D0A2FeE00FeD/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLANK", + "symbol": "BLANK", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc59fB1211F8226fD716180fCfA29D0A2FeE00FeD", + "status": "abandoned", + "id": "0xc59fB1211F8226fD716180fCfA29D0A2FeE00FeD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc59fB1211F8226fD716180fCfA29D0A2FeE00FeD/logo.png b/blockchains/ethereum/assets/0xc59fB1211F8226fD716180fCfA29D0A2FeE00FeD/logo.png new file mode 100644 index 00000000..6b545896 Binary files /dev/null and b/blockchains/ethereum/assets/0xc59fB1211F8226fD716180fCfA29D0A2FeE00FeD/logo.png differ diff --git a/blockchains/ethereum/assets/0xc5F4F79A8446FD80c646bC624Cc2CcA30fEf55FB/info.json b/blockchains/ethereum/assets/0xc5F4F79A8446FD80c646bC624Cc2CcA30fEf55FB/info.json new file mode 100644 index 00000000..1266f692 --- /dev/null +++ b/blockchains/ethereum/assets/0xc5F4F79A8446FD80c646bC624Cc2CcA30fEf55FB/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 110-CN32", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc5F4F79A8446FD80c646bC624Cc2CcA30fEf55FB", + "status": "abandoned", + "id": "0xc5F4F79A8446FD80c646bC624Cc2CcA30fEf55FB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc5F4F79A8446FD80c646bC624Cc2CcA30fEf55FB/logo.png b/blockchains/ethereum/assets/0xc5F4F79A8446FD80c646bC624Cc2CcA30fEf55FB/logo.png new file mode 100644 index 00000000..579b54c4 Binary files /dev/null and b/blockchains/ethereum/assets/0xc5F4F79A8446FD80c646bC624Cc2CcA30fEf55FB/logo.png differ diff --git a/blockchains/ethereum/assets/0xc5Fdd3E4665b5d7bC4dc9102622D7cb0Fe510b65/info.json b/blockchains/ethereum/assets/0xc5Fdd3E4665b5d7bC4dc9102622D7cb0Fe510b65/info.json new file mode 100644 index 00000000..dcea530c --- /dev/null +++ b/blockchains/ethereum/assets/0xc5Fdd3E4665b5d7bC4dc9102622D7cb0Fe510b65/info.json @@ -0,0 +1,11 @@ +{ + "name": "sanmaricoin", + "symbol": "SMC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc5Fdd3E4665b5d7bC4dc9102622D7cb0Fe510b65", + "status": "abandoned", + "id": "0xc5Fdd3E4665b5d7bC4dc9102622D7cb0Fe510b65" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc5Fdd3E4665b5d7bC4dc9102622D7cb0Fe510b65/logo.png b/blockchains/ethereum/assets/0xc5Fdd3E4665b5d7bC4dc9102622D7cb0Fe510b65/logo.png new file mode 100755 index 00000000..fa8bd534 Binary files /dev/null and b/blockchains/ethereum/assets/0xc5Fdd3E4665b5d7bC4dc9102622D7cb0Fe510b65/logo.png differ diff --git a/blockchains/ethereum/assets/0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54/info.json b/blockchains/ethereum/assets/0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54/info.json new file mode 100644 index 00000000..7e9528d7 --- /dev/null +++ b/blockchains/ethereum/assets/0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tradepower Dex", + "website": "https://tradepower.io", + "description": "Frictionless Token Swap Experience. Automated liquidity pools deployment. TDEX dividends sharing program and Staking Dapp.", + "explorer": "https://etherscan.io/token/0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54", + "type": "ERC20", + "symbol": "TDEX", + "decimals": 18, + "status": "active", + "id": "0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54", + "links": [ + { + "name": "x", + "url": "https://x.com/TradePowerToken" + }, + { + "name": "discord", + "url": "https://discord.com/invite/yyc6wY" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54/logo.png b/blockchains/ethereum/assets/0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54/logo.png new file mode 100644 index 00000000..c531816e Binary files /dev/null and b/blockchains/ethereum/assets/0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54/logo.png differ diff --git a/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json b/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json new file mode 100644 index 00000000..1c510cac --- /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 00000000..5d54b8a4 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 new file mode 100644 index 00000000..1ed00a9c --- /dev/null +++ b/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/info.json @@ -0,0 +1,52 @@ +{ + "name": "Dejitaru TSUKA", + "type": "ERC20", + "symbol": "TSUKA", + "decimals": 9, + "website": "https://www.dejitarutsuka.io", + "description": "JAPANESE LORE DESTINE THE DEJITARU TSŪKA DRAGON TO BREATHE VAST FLAMES OF WISDOM AND PROSPERITY TO ALL WHO EMBRACE ITS FEROCITY AND STRENGTH. IT IS THE HARBINGER OF ABUNDANCE AND WEALTH. THE DEJITARU TSŪKA DRAGON IS COVETED BY THE KNOWING AND REVERED BY THE LESSER. IT INSTILLS FEAR AND TERROR IN THE HEARTS AND MINDS OF THOSE WHO QUESTION. SEAL YOUR FATE AND FORTUNE BY HARNESSING THE UNRIVALED POWER OF THE DEJITARU TSŪKA DRAGON.", + "explorer": "https://etherscan.io/token/0xc5fb36dd2fb59d3b98deff88425a3f425ee469ed", + "status": "active", + "id": "0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD", + "links": [ + { + "name": "x", + "url": "https://x.com/dejitaru_tsuka" + }, + { + "name": "telegram", + "url": "https://t.me/Tsukaresearch" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dejitaru-tsuka" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dejitaru-tsuka/" + }, + { + "name": "medium", + "url": "https://medium.com/@DejitaruTsukaSangha" + }, + { + "name": "discord", + "url": "https://discord.com/invite/uQyKc4nYkX" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/TSUKA_OFFICIAL/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCqn1UP4kPJXQ_ed5lDr_Uzw" + }, + { + "name": "docs", + "url": "https://linktr.ee/dejitarutsuka" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/logo.png b/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/logo.png new file mode 100644 index 00000000..0ee02b15 Binary files /dev/null and b/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/logo.png differ diff --git a/blockchains/ethereum/assets/0xc6358C02A4BaFcbcd85360ae046e6bEe556429c1/info.json b/blockchains/ethereum/assets/0xc6358C02A4BaFcbcd85360ae046e6bEe556429c1/info.json new file mode 100644 index 00000000..6e5fd455 --- /dev/null +++ b/blockchains/ethereum/assets/0xc6358C02A4BaFcbcd85360ae046e6bEe556429c1/info.json @@ -0,0 +1,17 @@ +{ + "name": "AllWin", + "website": "https://allwindefi.com", + "description": "Allwin DeFi is a decentralized finance farming P2P gaming platform built on Ethereum Blockchain.", + "explorer": "https://etherscan.io/token/0xc6358c02a4bafcbcd85360ae046e6bee556429c1", + "type": "ERC20", + "symbol": "AllWin", + "decimals": 6, + "status": "active", + "id": "0xc6358C02A4BaFcbcd85360ae046e6bEe556429c1", + "links": [ + { + "name": "whitepaper", + "url": "https://allwindefi.com/AllwinDeFi(WPv1.0).pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc6358C02A4BaFcbcd85360ae046e6bEe556429c1/logo.png b/blockchains/ethereum/assets/0xc6358C02A4BaFcbcd85360ae046e6bEe556429c1/logo.png new file mode 100644 index 00000000..7a1da7d4 Binary files /dev/null and b/blockchains/ethereum/assets/0xc6358C02A4BaFcbcd85360ae046e6bEe556429c1/logo.png differ diff --git a/blockchains/ethereum/assets/0xc666081073E8DfF8D3d1c2292A29aE1A2153eC09/info.json b/blockchains/ethereum/assets/0xc666081073E8DfF8D3d1c2292A29aE1A2153eC09/info.json new file mode 100644 index 00000000..f88811fb --- /dev/null +++ b/blockchains/ethereum/assets/0xc666081073E8DfF8D3d1c2292A29aE1A2153eC09/info.json @@ -0,0 +1,11 @@ +{ + "name": "DigitexFutures", + "website": "https://digitexfutures.com/", + "description": "The DGTX Token is a protocol token which value derives from its utility as a vehicle for commission-free trading of futures contracts on the price of Bitcoin, Ethereum and Litecoin against the US Dollar.", + "explorer": "https://etherscan.io/token/0xc666081073E8DfF8D3d1c2292A29aE1A2153eC09", + "type": "ERC20", + "symbol": "DGTX", + "decimals": 18, + "status": "active", + "id": "0xc666081073E8DfF8D3d1c2292A29aE1A2153eC09" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc666081073E8DfF8D3d1c2292A29aE1A2153eC09/logo.png b/blockchains/ethereum/assets/0xc666081073E8DfF8D3d1c2292A29aE1A2153eC09/logo.png new file mode 100644 index 00000000..5b3c7a6d Binary files /dev/null and b/blockchains/ethereum/assets/0xc666081073E8DfF8D3d1c2292A29aE1A2153eC09/logo.png differ diff --git a/blockchains/ethereum/assets/0xc6689EB9a6D724B8D7B1d923fFd65B7005dA1b62/info.json b/blockchains/ethereum/assets/0xc6689EB9a6D724B8D7B1d923fFd65B7005dA1b62/info.json new file mode 100644 index 00000000..2f0e1878 --- /dev/null +++ b/blockchains/ethereum/assets/0xc6689EB9a6D724B8D7B1d923fFd65B7005dA1b62/info.json @@ -0,0 +1,11 @@ +{ + "name": "SEC", + "symbol": "SEC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc6689EB9a6D724B8D7B1d923fFd65B7005dA1b62", + "status": "abandoned", + "id": "0xc6689EB9a6D724B8D7B1d923fFd65B7005dA1b62" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc6689EB9a6D724B8D7B1d923fFd65B7005dA1b62/logo.png b/blockchains/ethereum/assets/0xc6689EB9a6D724B8D7B1d923fFd65B7005dA1b62/logo.png new file mode 100644 index 00000000..1c9c15f0 Binary files /dev/null and b/blockchains/ethereum/assets/0xc6689EB9a6D724B8D7B1d923fFd65B7005dA1b62/logo.png differ diff --git a/blockchains/ethereum/assets/0xc677b05c5Dade99c0bFd8561095382f7D648a1Ea/info.json b/blockchains/ethereum/assets/0xc677b05c5Dade99c0bFd8561095382f7D648a1Ea/info.json new file mode 100644 index 00000000..63c8e20e --- /dev/null +++ b/blockchains/ethereum/assets/0xc677b05c5Dade99c0bFd8561095382f7D648a1Ea/info.json @@ -0,0 +1,11 @@ +{ + "name": "tor.finance", + "symbol": "TOR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc677b05c5Dade99c0bFd8561095382f7D648a1Ea", + "status": "abandoned", + "id": "0xc677b05c5Dade99c0bFd8561095382f7D648a1Ea" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc677b05c5Dade99c0bFd8561095382f7D648a1Ea/logo.png b/blockchains/ethereum/assets/0xc677b05c5Dade99c0bFd8561095382f7D648a1Ea/logo.png new file mode 100644 index 00000000..05afe445 Binary files /dev/null and b/blockchains/ethereum/assets/0xc677b05c5Dade99c0bFd8561095382f7D648a1Ea/logo.png differ diff --git a/blockchains/ethereum/assets/0xc67d5cfb933c4A1c6d2CA4CbdAE2ed9f017eE9e5/info.json b/blockchains/ethereum/assets/0xc67d5cfb933c4A1c6d2CA4CbdAE2ed9f017eE9e5/info.json new file mode 100644 index 00000000..ece48a76 --- /dev/null +++ b/blockchains/ethereum/assets/0xc67d5cfb933c4A1c6d2CA4CbdAE2ed9f017eE9e5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lipchain", + "symbol": "LIPS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.lipchain.io/", + "explorer": "https://etherscan.io/token/0xc67d5cfb933c4A1c6d2CA4CbdAE2ed9f017eE9e5", + "status": "abandoned", + "id": "0xc67d5cfb933c4A1c6d2CA4CbdAE2ed9f017eE9e5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc67d5cfb933c4A1c6d2CA4CbdAE2ed9f017eE9e5/logo.png b/blockchains/ethereum/assets/0xc67d5cfb933c4A1c6d2CA4CbdAE2ed9f017eE9e5/logo.png new file mode 100644 index 00000000..08eae1f1 Binary files /dev/null and b/blockchains/ethereum/assets/0xc67d5cfb933c4A1c6d2CA4CbdAE2ed9f017eE9e5/logo.png differ diff --git a/blockchains/ethereum/assets/0xc687Cbe21Da4374597ac5a020D79A7c39536512C/info.json b/blockchains/ethereum/assets/0xc687Cbe21Da4374597ac5a020D79A7c39536512C/info.json new file mode 100644 index 00000000..87d5dcfe --- /dev/null +++ b/blockchains/ethereum/assets/0xc687Cbe21Da4374597ac5a020D79A7c39536512C/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAL", + "symbol": "SAL", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc687Cbe21Da4374597ac5a020D79A7c39536512C", + "status": "abandoned", + "id": "0xc687Cbe21Da4374597ac5a020D79A7c39536512C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc687Cbe21Da4374597ac5a020D79A7c39536512C/logo.png b/blockchains/ethereum/assets/0xc687Cbe21Da4374597ac5a020D79A7c39536512C/logo.png new file mode 100644 index 00000000..ca5cc094 Binary files /dev/null and b/blockchains/ethereum/assets/0xc687Cbe21Da4374597ac5a020D79A7c39536512C/logo.png differ diff --git a/blockchains/ethereum/assets/0xc68B73D9509F5343602480656F5dA512a5A20b9e/info.json b/blockchains/ethereum/assets/0xc68B73D9509F5343602480656F5dA512a5A20b9e/info.json new file mode 100644 index 00000000..8e4252a1 --- /dev/null +++ b/blockchains/ethereum/assets/0xc68B73D9509F5343602480656F5dA512a5A20b9e/info.json @@ -0,0 +1,11 @@ +{ + "name": "ACIDTOKEN", + "symbol": "ACID", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc68B73D9509F5343602480656F5dA512a5A20b9e", + "status": "abandoned", + "id": "0xc68B73D9509F5343602480656F5dA512a5A20b9e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc68B73D9509F5343602480656F5dA512a5A20b9e/logo.png b/blockchains/ethereum/assets/0xc68B73D9509F5343602480656F5dA512a5A20b9e/logo.png new file mode 100644 index 00000000..09dca7c2 Binary files /dev/null and b/blockchains/ethereum/assets/0xc68B73D9509F5343602480656F5dA512a5A20b9e/logo.png differ diff --git a/blockchains/ethereum/assets/0xc690F7C7FcfFA6a82b79faB7508c466FEfdfc8c5/info.json b/blockchains/ethereum/assets/0xc690F7C7FcfFA6a82b79faB7508c466FEfdfc8c5/info.json new file mode 100644 index 00000000..1d6cbed5 --- /dev/null +++ b/blockchains/ethereum/assets/0xc690F7C7FcfFA6a82b79faB7508c466FEfdfc8c5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lympo tokens", + "symbol": "LYM", + "type": "ERC20", + "decimals": 18, + "description": "Lympo is a sports and health ecosystem powered by priceless user-generated and user-controlled data which can help generate exponential returns for industry stakeholders and users alike.", + "website": "https://lympo.io/", + "explorer": "https://etherscan.io/token/0xc690F7C7FcfFA6a82b79faB7508c466FEfdfc8c5", + "status": "active", + "id": "0xc690F7C7FcfFA6a82b79faB7508c466FEfdfc8c5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc690F7C7FcfFA6a82b79faB7508c466FEfdfc8c5/logo.png b/blockchains/ethereum/assets/0xc690F7C7FcfFA6a82b79faB7508c466FEfdfc8c5/logo.png new file mode 100644 index 00000000..95cca1c6 Binary files /dev/null and b/blockchains/ethereum/assets/0xc690F7C7FcfFA6a82b79faB7508c466FEfdfc8c5/logo.png differ diff --git a/blockchains/ethereum/assets/0xc6A18790d4D3988D28cc1E274E2c696602ea4343/info.json b/blockchains/ethereum/assets/0xc6A18790d4D3988D28cc1E274E2c696602ea4343/info.json new file mode 100644 index 00000000..60738c35 --- /dev/null +++ b/blockchains/ethereum/assets/0xc6A18790d4D3988D28cc1E274E2c696602ea4343/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coinrobots", + "symbol": "ROBOT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc6A18790d4D3988D28cc1E274E2c696602ea4343", + "status": "abandoned", + "id": "0xc6A18790d4D3988D28cc1E274E2c696602ea4343" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc6A18790d4D3988D28cc1E274E2c696602ea4343/logo.png b/blockchains/ethereum/assets/0xc6A18790d4D3988D28cc1E274E2c696602ea4343/logo.png new file mode 100644 index 00000000..b69b4ce9 Binary files /dev/null and b/blockchains/ethereum/assets/0xc6A18790d4D3988D28cc1E274E2c696602ea4343/logo.png differ diff --git a/blockchains/ethereum/assets/0xc6AbF3C09341741Ac6041B0B08195701bdFD460C/info.json b/blockchains/ethereum/assets/0xc6AbF3C09341741Ac6041B0B08195701bdFD460C/info.json new file mode 100644 index 00000000..dffcdc23 --- /dev/null +++ b/blockchains/ethereum/assets/0xc6AbF3C09341741Ac6041B0B08195701bdFD460C/info.json @@ -0,0 +1,11 @@ +{ + "name": "OSAToken", + "symbol": "OSA", + "type": "ERC20", + "decimals": 18, + "description": "Optimal Shelf Availability Token (OSA) is a decentralized, AI-driven blockchain platform that collects and analyzes data from retailers, manufacturers, consumers and open sources purportedly in real-time.", + "website": "https://token.osadc.io/en", + "explorer": "https://etherscan.io/token/0xc6AbF3C09341741Ac6041B0B08195701bdFD460C", + "status": "active", + "id": "0xc6AbF3C09341741Ac6041B0B08195701bdFD460C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc6AbF3C09341741Ac6041B0B08195701bdFD460C/logo.png b/blockchains/ethereum/assets/0xc6AbF3C09341741Ac6041B0B08195701bdFD460C/logo.png new file mode 100644 index 00000000..ff2c439d Binary files /dev/null and b/blockchains/ethereum/assets/0xc6AbF3C09341741Ac6041B0B08195701bdFD460C/logo.png differ diff --git a/blockchains/ethereum/assets/0xc6E2970cf8b1943fb58dB5b3c19CFc2ee146f376/info.json b/blockchains/ethereum/assets/0xc6E2970cf8b1943fb58dB5b3c19CFc2ee146f376/info.json new file mode 100644 index 00000000..ffb44805 --- /dev/null +++ b/blockchains/ethereum/assets/0xc6E2970cf8b1943fb58dB5b3c19CFc2ee146f376/info.json @@ -0,0 +1,11 @@ +{ + "name": "Future Plan Crypto Currency", + "symbol": "FPCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc6E2970cf8b1943fb58dB5b3c19CFc2ee146f376", + "status": "abandoned", + "id": "0xc6E2970cf8b1943fb58dB5b3c19CFc2ee146f376" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc6E2970cf8b1943fb58dB5b3c19CFc2ee146f376/logo.png b/blockchains/ethereum/assets/0xc6E2970cf8b1943fb58dB5b3c19CFc2ee146f376/logo.png new file mode 100644 index 00000000..e220b99a Binary files /dev/null and b/blockchains/ethereum/assets/0xc6E2970cf8b1943fb58dB5b3c19CFc2ee146f376/logo.png differ diff --git a/blockchains/ethereum/assets/0xc713e5E149D5D0715DcD1c156a020976e7E56B88/info.json b/blockchains/ethereum/assets/0xc713e5E149D5D0715DcD1c156a020976e7E56B88/info.json new file mode 100644 index 00000000..0ef1bd39 --- /dev/null +++ b/blockchains/ethereum/assets/0xc713e5E149D5D0715DcD1c156a020976e7E56B88/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave MKR", + "symbol": "aMKR", + "type": "ERC20", + "decimals": 18, + "description": "Aave MKR is an interest bearing token pegged 1:1 to the underlying MKR deposited in Aave. aMKR accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xc713e5E149D5D0715DcD1c156a020976e7E56B88", + "status": "active", + "id": "0xc713e5E149D5D0715DcD1c156a020976e7E56B88" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc713e5E149D5D0715DcD1c156a020976e7E56B88/logo.png b/blockchains/ethereum/assets/0xc713e5E149D5D0715DcD1c156a020976e7E56B88/logo.png new file mode 100644 index 00000000..c21d402f Binary files /dev/null and b/blockchains/ethereum/assets/0xc713e5E149D5D0715DcD1c156a020976e7E56B88/logo.png differ diff --git a/blockchains/ethereum/assets/0xc719d010B63E5bbF2C0551872CD5316ED26AcD83/info.json b/blockchains/ethereum/assets/0xc719d010B63E5bbF2C0551872CD5316ED26AcD83/info.json new file mode 100644 index 00000000..72a8eb0b --- /dev/null +++ b/blockchains/ethereum/assets/0xc719d010B63E5bbF2C0551872CD5316ED26AcD83/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decentralized Insurance Protocol", + "symbol": "DIP", + "type": "ERC20", + "decimals": 18, + "description": "Etherisc claims to be building a platform for decentralized insurance applications.", + "website": "https://etherisc.com", + "explorer": "https://etherscan.io/token/0xc719d010B63E5bbF2C0551872CD5316ED26AcD83", + "status": "active", + "id": "0xc719d010B63E5bbF2C0551872CD5316ED26AcD83" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc719d010B63E5bbF2C0551872CD5316ED26AcD83/logo.png b/blockchains/ethereum/assets/0xc719d010B63E5bbF2C0551872CD5316ED26AcD83/logo.png new file mode 100644 index 00000000..46d3e680 Binary files /dev/null and b/blockchains/ethereum/assets/0xc719d010B63E5bbF2C0551872CD5316ED26AcD83/logo.png differ diff --git a/blockchains/ethereum/assets/0xc7283b66Eb1EB5FB86327f08e1B5816b0720212B/info.json b/blockchains/ethereum/assets/0xc7283b66Eb1EB5FB86327f08e1B5816b0720212B/info.json new file mode 100644 index 00000000..7dc2cf61 --- /dev/null +++ b/blockchains/ethereum/assets/0xc7283b66Eb1EB5FB86327f08e1B5816b0720212B/info.json @@ -0,0 +1,16 @@ +{ + "name": "Tribe", + "type": "ERC20", + "symbol": "TRIBE", + "decimals": 18, + "website": "https://fei.money", + "description": "The governance token for Fei Protocol", + "explorer": "https://etherscan.io/token/0xc7283b66Eb1EB5FB86327f08e1B5816b0720212B", + "status": "active", + "id": "0xc7283b66Eb1EB5FB86327f08e1B5816b0720212B", + "tags": [ + "defi", + "stablecoin", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc7283b66Eb1EB5FB86327f08e1B5816b0720212B/logo.png b/blockchains/ethereum/assets/0xc7283b66Eb1EB5FB86327f08e1B5816b0720212B/logo.png new file mode 100644 index 00000000..0a82bc64 Binary files /dev/null and b/blockchains/ethereum/assets/0xc7283b66Eb1EB5FB86327f08e1B5816b0720212B/logo.png differ diff --git a/blockchains/ethereum/assets/0xc72fe8e3Dd5BeF0F9f31f259399F301272eF2a2D/info.json b/blockchains/ethereum/assets/0xc72fe8e3Dd5BeF0F9f31f259399F301272eF2a2D/info.json new file mode 100644 index 00000000..617e1574 --- /dev/null +++ b/blockchains/ethereum/assets/0xc72fe8e3Dd5BeF0F9f31f259399F301272eF2a2D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Insights Network", + "symbol": "INSTAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc72fe8e3Dd5BeF0F9f31f259399F301272eF2a2D", + "status": "abandoned", + "id": "0xc72fe8e3Dd5BeF0F9f31f259399F301272eF2a2D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc72fe8e3Dd5BeF0F9f31f259399F301272eF2a2D/logo.png b/blockchains/ethereum/assets/0xc72fe8e3Dd5BeF0F9f31f259399F301272eF2a2D/logo.png new file mode 100755 index 00000000..c12b303b Binary files /dev/null and b/blockchains/ethereum/assets/0xc72fe8e3Dd5BeF0F9f31f259399F301272eF2a2D/logo.png differ diff --git a/blockchains/ethereum/assets/0xc73C167E7a4Ba109e4052f70D5466D0C312A344D/info.json b/blockchains/ethereum/assets/0xc73C167E7a4Ba109e4052f70D5466D0C312A344D/info.json new file mode 100644 index 00000000..6659b59b --- /dev/null +++ b/blockchains/ethereum/assets/0xc73C167E7a4Ba109e4052f70D5466D0C312A344D/info.json @@ -0,0 +1,12 @@ +{ + "name": "Sanshu Inu", + "website": "https://sanshuinu.finance", + "description": "Sanshu Inu is a community-focused decentralized transaction network", + "explorer": "https://etherscan.io/token/0xc73C167E7a4Ba109e4052f70D5466D0C312A344D", + "research": "https://research.binance.com/en/projects/binance-usd", + "type": "ERC20", + "symbol": "SANSHU", + "decimals": 9, + "status": "active", + "id": "0xc73C167E7a4Ba109e4052f70D5466D0C312A344D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc73C167E7a4Ba109e4052f70D5466D0C312A344D/logo.png b/blockchains/ethereum/assets/0xc73C167E7a4Ba109e4052f70D5466D0C312A344D/logo.png new file mode 100644 index 00000000..eac2ef2c Binary files /dev/null and b/blockchains/ethereum/assets/0xc73C167E7a4Ba109e4052f70D5466D0C312A344D/logo.png differ diff --git a/blockchains/ethereum/assets/0xc73C3f689F5E10aBb4278d4546e1Cd1F7D045be1/info.json b/blockchains/ethereum/assets/0xc73C3f689F5E10aBb4278d4546e1Cd1F7D045be1/info.json new file mode 100644 index 00000000..61535c07 --- /dev/null +++ b/blockchains/ethereum/assets/0xc73C3f689F5E10aBb4278d4546e1Cd1F7D045be1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Transferencias y Remesas Internacionales", + "symbol": "TRI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc73C3f689F5E10aBb4278d4546e1Cd1F7D045be1", + "status": "abandoned", + "id": "0xc73C3f689F5E10aBb4278d4546e1Cd1F7D045be1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc73C3f689F5E10aBb4278d4546e1Cd1F7D045be1/logo.png b/blockchains/ethereum/assets/0xc73C3f689F5E10aBb4278d4546e1Cd1F7D045be1/logo.png new file mode 100644 index 00000000..ca65bb17 Binary files /dev/null and b/blockchains/ethereum/assets/0xc73C3f689F5E10aBb4278d4546e1Cd1F7D045be1/logo.png differ diff --git a/blockchains/ethereum/assets/0xc73f2474001aD1D6aEd615aF53631148CF98dE6b/info.json b/blockchains/ethereum/assets/0xc73f2474001aD1D6aEd615aF53631148CF98dE6b/info.json new file mode 100644 index 00000000..ad66ba32 --- /dev/null +++ b/blockchains/ethereum/assets/0xc73f2474001aD1D6aEd615aF53631148CF98dE6b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Billionaire Ambition", + "symbol": "BAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc73f2474001aD1D6aEd615aF53631148CF98dE6b", + "status": "abandoned", + "id": "0xc73f2474001aD1D6aEd615aF53631148CF98dE6b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc73f2474001aD1D6aEd615aF53631148CF98dE6b/logo.png b/blockchains/ethereum/assets/0xc73f2474001aD1D6aEd615aF53631148CF98dE6b/logo.png new file mode 100644 index 00000000..76b2430e Binary files /dev/null and b/blockchains/ethereum/assets/0xc73f2474001aD1D6aEd615aF53631148CF98dE6b/logo.png differ diff --git a/blockchains/ethereum/assets/0xc7579bB99Af590EC71c316E1Ac4436C535039594/info.json b/blockchains/ethereum/assets/0xc7579bB99Af590EC71c316E1Ac4436C535039594/info.json new file mode 100644 index 00000000..7c5cf6e9 --- /dev/null +++ b/blockchains/ethereum/assets/0xc7579bB99Af590EC71c316E1Ac4436C535039594/info.json @@ -0,0 +1,11 @@ +{ + "name": "Titanium BAR Token", + "symbol": "BAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc7579bB99Af590EC71c316E1Ac4436C535039594", + "status": "abandoned", + "id": "0xc7579bB99Af590EC71c316E1Ac4436C535039594" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc7579bB99Af590EC71c316E1Ac4436C535039594/logo.png b/blockchains/ethereum/assets/0xc7579bB99Af590EC71c316E1Ac4436C535039594/logo.png new file mode 100755 index 00000000..4d3905a7 Binary files /dev/null and b/blockchains/ethereum/assets/0xc7579bB99Af590EC71c316E1Ac4436C535039594/logo.png differ diff --git a/blockchains/ethereum/assets/0xc75F15AdA581219c95485c578E124df3985e4CE0/info.json b/blockchains/ethereum/assets/0xc75F15AdA581219c95485c578E124df3985e4CE0/info.json new file mode 100644 index 00000000..90fa5fe5 --- /dev/null +++ b/blockchains/ethereum/assets/0xc75F15AdA581219c95485c578E124df3985e4CE0/info.json @@ -0,0 +1,11 @@ +{ + "name": "zzz.finance", + "symbol": "ZZZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://zzz.finance/", + "explorer": "https://etherscan.io/token/0xc75F15AdA581219c95485c578E124df3985e4CE0", + "status": "abandoned", + "id": "0xc75F15AdA581219c95485c578E124df3985e4CE0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc75F15AdA581219c95485c578E124df3985e4CE0/logo.png b/blockchains/ethereum/assets/0xc75F15AdA581219c95485c578E124df3985e4CE0/logo.png new file mode 100644 index 00000000..eb9b5a65 Binary files /dev/null and b/blockchains/ethereum/assets/0xc75F15AdA581219c95485c578E124df3985e4CE0/logo.png differ diff --git a/blockchains/ethereum/assets/0xc75fBBA6f5Ec3AcDb60307b8278De1D2AAc99471/info.json b/blockchains/ethereum/assets/0xc75fBBA6f5Ec3AcDb60307b8278De1D2AAc99471/info.json new file mode 100644 index 00000000..c8ff68ab --- /dev/null +++ b/blockchains/ethereum/assets/0xc75fBBA6f5Ec3AcDb60307b8278De1D2AAc99471/info.json @@ -0,0 +1,17 @@ +{ + "name": "TelFx", + "website": "https://telfx.io/", + "description": "TelFx is a commission-free futures exchange with its own native cryptocurrency, the TelFx token.", + "explorer": "https://etherscan.io/token/0xc75fBBA6f5Ec3AcDb60307b8278De1D2AAc99471", + "type": "ERC20", + "symbol": "TelFx", + "decimals": 18, + "status": "active", + "id": "0xc75fBBA6f5Ec3AcDb60307b8278De1D2AAc99471", + "links": [ + { + "name": "whitepaper", + "url": "https://telfx.io/white-paper" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc75fBBA6f5Ec3AcDb60307b8278De1D2AAc99471/logo.png b/blockchains/ethereum/assets/0xc75fBBA6f5Ec3AcDb60307b8278De1D2AAc99471/logo.png new file mode 100644 index 00000000..76f172f7 Binary files /dev/null and b/blockchains/ethereum/assets/0xc75fBBA6f5Ec3AcDb60307b8278De1D2AAc99471/logo.png differ diff --git a/blockchains/ethereum/assets/0xc769791B5b8690076dAd0E97247A842Aa6711B9B/info.json b/blockchains/ethereum/assets/0xc769791B5b8690076dAd0E97247A842Aa6711B9B/info.json new file mode 100644 index 00000000..1d061e22 --- /dev/null +++ b/blockchains/ethereum/assets/0xc769791B5b8690076dAd0E97247A842Aa6711B9B/info.json @@ -0,0 +1,11 @@ +{ + "name": "PHAM VU DUNG'S COIN", + "symbol": "PVD", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc769791B5b8690076dAd0E97247A842Aa6711B9B", + "status": "abandoned", + "id": "0xc769791B5b8690076dAd0E97247A842Aa6711B9B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc769791B5b8690076dAd0E97247A842Aa6711B9B/logo.png b/blockchains/ethereum/assets/0xc769791B5b8690076dAd0E97247A842Aa6711B9B/logo.png new file mode 100755 index 00000000..d8991fa0 Binary files /dev/null and b/blockchains/ethereum/assets/0xc769791B5b8690076dAd0E97247A842Aa6711B9B/logo.png differ diff --git a/blockchains/ethereum/assets/0xc770EEfAd204B5180dF6a14Ee197D99d808ee52d/info.json b/blockchains/ethereum/assets/0xc770EEfAd204B5180dF6a14Ee197D99d808ee52d/info.json new file mode 100644 index 00000000..db05c33e --- /dev/null +++ b/blockchains/ethereum/assets/0xc770EEfAd204B5180dF6a14Ee197D99d808ee52d/info.json @@ -0,0 +1,11 @@ +{ + "name": "FOX", + "symbol": "FOX", + "type": "ERC20", + "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://etherscan.io/token/0xc770EEfAd204B5180dF6a14Ee197D99d808ee52d", + "status": "active", + "id": "0xc770EEfAd204B5180dF6a14Ee197D99d808ee52d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc770EEfAd204B5180dF6a14Ee197D99d808ee52d/logo.png b/blockchains/ethereum/assets/0xc770EEfAd204B5180dF6a14Ee197D99d808ee52d/logo.png new file mode 100644 index 00000000..dcc88f6d Binary files /dev/null and b/blockchains/ethereum/assets/0xc770EEfAd204B5180dF6a14Ee197D99d808ee52d/logo.png differ diff --git a/blockchains/ethereum/assets/0xc785D0F0b131Ee3A9507c3B97Db49Ba0E78a4F66/info.json b/blockchains/ethereum/assets/0xc785D0F0b131Ee3A9507c3B97Db49Ba0E78a4F66/info.json new file mode 100644 index 00000000..618d78b9 --- /dev/null +++ b/blockchains/ethereum/assets/0xc785D0F0b131Ee3A9507c3B97Db49Ba0E78a4F66/info.json @@ -0,0 +1,11 @@ +{ + "name": "Netareum", + "symbol": "NETA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc785D0F0b131Ee3A9507c3B97Db49Ba0E78a4F66", + "status": "abandoned", + "id": "0xc785D0F0b131Ee3A9507c3B97Db49Ba0E78a4F66" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc785D0F0b131Ee3A9507c3B97Db49Ba0E78a4F66/logo.png b/blockchains/ethereum/assets/0xc785D0F0b131Ee3A9507c3B97Db49Ba0E78a4F66/logo.png new file mode 100755 index 00000000..ec731aac Binary files /dev/null and b/blockchains/ethereum/assets/0xc785D0F0b131Ee3A9507c3B97Db49Ba0E78a4F66/logo.png differ diff --git a/blockchains/ethereum/assets/0xc78B628b060258300218740B1A7a5b3c82b3bd9f/info.json b/blockchains/ethereum/assets/0xc78B628b060258300218740B1A7a5b3c82b3bd9f/info.json new file mode 100644 index 00000000..db621828 --- /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 00000000..fb82b175 Binary files /dev/null and b/blockchains/ethereum/assets/0xc78B628b060258300218740B1A7a5b3c82b3bd9f/logo.png differ diff --git a/blockchains/ethereum/assets/0xc7A729D6d010FfdEA743092a97898E450eC1ED33/info.json b/blockchains/ethereum/assets/0xc7A729D6d010FfdEA743092a97898E450eC1ED33/info.json new file mode 100644 index 00000000..7fe20658 --- /dev/null +++ b/blockchains/ethereum/assets/0xc7A729D6d010FfdEA743092a97898E450eC1ED33/info.json @@ -0,0 +1,11 @@ +{ + "name": "Uniswap V2", + "symbol": "UNI-V2", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc7A729D6d010FfdEA743092a97898E450eC1ED33", + "status": "abandoned", + "id": "0xc7A729D6d010FfdEA743092a97898E450eC1ED33" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc7A729D6d010FfdEA743092a97898E450eC1ED33/logo.png b/blockchains/ethereum/assets/0xc7A729D6d010FfdEA743092a97898E450eC1ED33/logo.png new file mode 100644 index 00000000..c768cba8 Binary files /dev/null and b/blockchains/ethereum/assets/0xc7A729D6d010FfdEA743092a97898E450eC1ED33/logo.png differ diff --git a/blockchains/ethereum/assets/0xc7BbA5b765581eFb2Cdd2679DB5Bea9eE79b201f/info.json b/blockchains/ethereum/assets/0xc7BbA5b765581eFb2Cdd2679DB5Bea9eE79b201f/info.json new file mode 100644 index 00000000..a7f93002 --- /dev/null +++ b/blockchains/ethereum/assets/0xc7BbA5b765581eFb2Cdd2679DB5Bea9eE79b201f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gems Token", + "symbol": "GEM", + "type": "ERC20", + "decimals": 18, + "description": "Gems (GEM) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://gems.org", + "explorer": "https://etherscan.io/token/0xc7BbA5b765581eFb2Cdd2679DB5Bea9eE79b201f", + "status": "active", + "id": "0xc7BbA5b765581eFb2Cdd2679DB5Bea9eE79b201f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc7BbA5b765581eFb2Cdd2679DB5Bea9eE79b201f/logo.png b/blockchains/ethereum/assets/0xc7BbA5b765581eFb2Cdd2679DB5Bea9eE79b201f/logo.png new file mode 100644 index 00000000..06d841cc Binary files /dev/null and b/blockchains/ethereum/assets/0xc7BbA5b765581eFb2Cdd2679DB5Bea9eE79b201f/logo.png differ diff --git a/blockchains/ethereum/assets/0xc7C03B8a3FC5719066E185ea616e87B88eba44a3/info.json b/blockchains/ethereum/assets/0xc7C03B8a3FC5719066E185ea616e87B88eba44a3/info.json new file mode 100644 index 00000000..671f1ef2 --- /dev/null +++ b/blockchains/ethereum/assets/0xc7C03B8a3FC5719066E185ea616e87B88eba44a3/info.json @@ -0,0 +1,11 @@ +{ + "name": "EligmaToken", + "symbol": "ELI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://gocrypto.com/", + "explorer": "https://etherscan.io/token/0xc7C03B8a3FC5719066E185ea616e87B88eba44a3", + "status": "abandoned", + "id": "0xc7C03B8a3FC5719066E185ea616e87B88eba44a3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc7C03B8a3FC5719066E185ea616e87B88eba44a3/logo.png b/blockchains/ethereum/assets/0xc7C03B8a3FC5719066E185ea616e87B88eba44a3/logo.png new file mode 100644 index 00000000..1bb3f318 Binary files /dev/null and b/blockchains/ethereum/assets/0xc7C03B8a3FC5719066E185ea616e87B88eba44a3/logo.png differ diff --git a/blockchains/ethereum/assets/0xc7C21F8A739b448051c6e054E2Ef0739B742B22e/info.json b/blockchains/ethereum/assets/0xc7C21F8A739b448051c6e054E2Ef0739B742B22e/info.json new file mode 100644 index 00000000..a557438c --- /dev/null +++ b/blockchains/ethereum/assets/0xc7C21F8A739b448051c6e054E2Ef0739B742B22e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tokamak Network", + "symbol": "TON", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc7C21F8A739b448051c6e054E2Ef0739B742B22e", + "status": "abandoned", + "id": "0xc7C21F8A739b448051c6e054E2Ef0739B742B22e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc7C21F8A739b448051c6e054E2Ef0739B742B22e/logo.png b/blockchains/ethereum/assets/0xc7C21F8A739b448051c6e054E2Ef0739B742B22e/logo.png new file mode 100644 index 00000000..e06f629b Binary files /dev/null and b/blockchains/ethereum/assets/0xc7C21F8A739b448051c6e054E2Ef0739B742B22e/logo.png differ diff --git a/blockchains/ethereum/assets/0xc7Dbe96b060C78358Cb5904B6eaB55B81ea86b5d/info.json b/blockchains/ethereum/assets/0xc7Dbe96b060C78358Cb5904B6eaB55B81ea86b5d/info.json new file mode 100644 index 00000000..d7572503 --- /dev/null +++ b/blockchains/ethereum/assets/0xc7Dbe96b060C78358Cb5904B6eaB55B81ea86b5d/info.json @@ -0,0 +1,11 @@ +{ + "name": "CYFToken", + "symbol": "CYF", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc7Dbe96b060C78358Cb5904B6eaB55B81ea86b5d", + "status": "abandoned", + "id": "0xc7Dbe96b060C78358Cb5904B6eaB55B81ea86b5d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc7Dbe96b060C78358Cb5904B6eaB55B81ea86b5d/logo.png b/blockchains/ethereum/assets/0xc7Dbe96b060C78358Cb5904B6eaB55B81ea86b5d/logo.png new file mode 100644 index 00000000..7934c591 Binary files /dev/null and b/blockchains/ethereum/assets/0xc7Dbe96b060C78358Cb5904B6eaB55B81ea86b5d/logo.png differ diff --git a/blockchains/ethereum/assets/0xc7Df14a8289EFe7A2d3399387302FDF86E7adC4e/info.json b/blockchains/ethereum/assets/0xc7Df14a8289EFe7A2d3399387302FDF86E7adC4e/info.json new file mode 100644 index 00000000..4461fb8e --- /dev/null +++ b/blockchains/ethereum/assets/0xc7Df14a8289EFe7A2d3399387302FDF86E7adC4e/info.json @@ -0,0 +1,11 @@ +{ + "name": "IX", + "symbol": "IX", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc7Df14a8289EFe7A2d3399387302FDF86E7adC4e", + "status": "abandoned", + "id": "0xc7Df14a8289EFe7A2d3399387302FDF86E7adC4e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc7Df14a8289EFe7A2d3399387302FDF86E7adC4e/logo.png b/blockchains/ethereum/assets/0xc7Df14a8289EFe7A2d3399387302FDF86E7adC4e/logo.png new file mode 100755 index 00000000..8de8dc76 Binary files /dev/null and b/blockchains/ethereum/assets/0xc7Df14a8289EFe7A2d3399387302FDF86E7adC4e/logo.png differ diff --git a/blockchains/ethereum/assets/0xc7E9445a701FbE8bfc21C70b62Ad777e4173dB54/info.json b/blockchains/ethereum/assets/0xc7E9445a701FbE8bfc21C70b62Ad777e4173dB54/info.json new file mode 100644 index 00000000..bd45bdc7 --- /dev/null +++ b/blockchains/ethereum/assets/0xc7E9445a701FbE8bfc21C70b62Ad777e4173dB54/info.json @@ -0,0 +1,11 @@ +{ + "name": "EternalCoin ", + "symbol": "EIS", + "type": "ERC20", + "decimals": 7, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc7E9445a701FbE8bfc21C70b62Ad777e4173dB54", + "status": "abandoned", + "id": "0xc7E9445a701FbE8bfc21C70b62Ad777e4173dB54" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc7E9445a701FbE8bfc21C70b62Ad777e4173dB54/logo.png b/blockchains/ethereum/assets/0xc7E9445a701FbE8bfc21C70b62Ad777e4173dB54/logo.png new file mode 100644 index 00000000..5578dff7 Binary files /dev/null and b/blockchains/ethereum/assets/0xc7E9445a701FbE8bfc21C70b62Ad777e4173dB54/logo.png differ diff --git a/blockchains/ethereum/assets/0xc80C91BC6215E1333eA98314b8671d6e26c58470/info.json b/blockchains/ethereum/assets/0xc80C91BC6215E1333eA98314b8671d6e26c58470/info.json new file mode 100644 index 00000000..c30f4101 --- /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 00000000..4da81882 Binary files /dev/null and b/blockchains/ethereum/assets/0xc80C91BC6215E1333eA98314b8671d6e26c58470/logo.png differ diff --git a/blockchains/ethereum/assets/0xc813EA5e3b48BEbeedb796ab42A30C5599b01740/info.json b/blockchains/ethereum/assets/0xc813EA5e3b48BEbeedb796ab42A30C5599b01740/info.json new file mode 100644 index 00000000..393ed3ec --- /dev/null +++ b/blockchains/ethereum/assets/0xc813EA5e3b48BEbeedb796ab42A30C5599b01740/info.json @@ -0,0 +1,11 @@ +{ + "name": "NIOX", + "website": "https://autonio.foundation", + "description": "Autonio Foundation a decentralized autonomous organization built around developing accessible, easy to use and afordable trading tools and services for the DeFi ecosystem. These tools make it easier for crypto traders to conduct trading analysis, deploy trading algorithms, exchange crypto currencies, sell their strategies and pool funds for trading purposes, all with profitability, security and ease.", + "explorer": "https://etherscan.io/token/0xc813EA5e3b48BEbeedb796ab42A30C5599b01740", + "type": "ERC20", + "symbol": "NIOX", + "decimals": 4, + "status": "active", + "id": "0xc813EA5e3b48BEbeedb796ab42A30C5599b01740" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc813EA5e3b48BEbeedb796ab42A30C5599b01740/logo.png b/blockchains/ethereum/assets/0xc813EA5e3b48BEbeedb796ab42A30C5599b01740/logo.png new file mode 100644 index 00000000..b548f628 Binary files /dev/null and b/blockchains/ethereum/assets/0xc813EA5e3b48BEbeedb796ab42A30C5599b01740/logo.png differ diff --git a/blockchains/ethereum/assets/0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50/info.json b/blockchains/ethereum/assets/0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50/info.json new file mode 100644 index 00000000..8ce8d42f --- /dev/null +++ b/blockchains/ethereum/assets/0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50/info.json @@ -0,0 +1,11 @@ +{ + "name": "Convergence", + "symbol": "CONV", + "type": "ERC20", + "decimals": 18, + "description": "Convergence Finance is a decentralized interchangeable assets protocol designed to bridge real-world asset exposure with the liquidity of decentralized finance (DeFi). It essentially allows DeFi participants to gain exposure to real-world assets.", + "website": "https://conv.finance/", + "explorer": "https://etherscan.io/token/0xc834fa996fa3bec7aad3693af486ae53d8aa8b50", + "status": "active", + "id": "0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50/logo.png b/blockchains/ethereum/assets/0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50/logo.png new file mode 100644 index 00000000..805abb6f Binary files /dev/null and b/blockchains/ethereum/assets/0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50/logo.png differ diff --git a/blockchains/ethereum/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json b/blockchains/ethereum/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json new file mode 100644 index 00000000..ea2dab55 --- /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 00000000..b7945306 Binary files /dev/null and b/blockchains/ethereum/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/logo.png differ diff --git a/blockchains/ethereum/assets/0xc84F7ABE4904ee4f20a8c5dFA3cC4BF1829330AB/info.json b/blockchains/ethereum/assets/0xc84F7ABE4904ee4f20a8c5dFA3cC4BF1829330AB/info.json new file mode 100644 index 00000000..f3a72724 --- /dev/null +++ b/blockchains/ethereum/assets/0xc84F7ABE4904ee4f20a8c5dFA3cC4BF1829330AB/info.json @@ -0,0 +1,11 @@ +{ + "name": "YFN", + "website": "https://yen.finance", + "description": "YFN is Decentralized Wallet, Exchange, And Stake in one platform. In addition, to yield farming strategies via smart contract YFN provides security services for inexperienced users as a DeFi gateway and shows all on Blockchain to users for transparency purposes.", + "explorer": "https://etherscan.io/token/0xc84F7ABE4904ee4f20a8c5dFA3cC4BF1829330AB", + "type": "ERC20", + "symbol": "YFN", + "decimals": 18, + "status": "active", + "id": "0xc84F7ABE4904ee4f20a8c5dFA3cC4BF1829330AB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc84F7ABE4904ee4f20a8c5dFA3cC4BF1829330AB/logo.png b/blockchains/ethereum/assets/0xc84F7ABE4904ee4f20a8c5dFA3cC4BF1829330AB/logo.png new file mode 100644 index 00000000..9ee4dccf Binary files /dev/null and b/blockchains/ethereum/assets/0xc84F7ABE4904ee4f20a8c5dFA3cC4BF1829330AB/logo.png differ diff --git a/blockchains/ethereum/assets/0xc85dCC81B96bd683Fe773F04aFB31232599EDE7b/info.json b/blockchains/ethereum/assets/0xc85dCC81B96bd683Fe773F04aFB31232599EDE7b/info.json new file mode 100644 index 00000000..5273adaf --- /dev/null +++ b/blockchains/ethereum/assets/0xc85dCC81B96bd683Fe773F04aFB31232599EDE7b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Global Crypto Gate", + "symbol": "GCG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc85dCC81B96bd683Fe773F04aFB31232599EDE7b", + "status": "abandoned", + "id": "0xc85dCC81B96bd683Fe773F04aFB31232599EDE7b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc85dCC81B96bd683Fe773F04aFB31232599EDE7b/logo.png b/blockchains/ethereum/assets/0xc85dCC81B96bd683Fe773F04aFB31232599EDE7b/logo.png new file mode 100644 index 00000000..2ed90352 Binary files /dev/null and b/blockchains/ethereum/assets/0xc85dCC81B96bd683Fe773F04aFB31232599EDE7b/logo.png differ diff --git a/blockchains/ethereum/assets/0xc88Be04c809856B75E3DfE19eB4dCf0a3B15317a/info.json b/blockchains/ethereum/assets/0xc88Be04c809856B75E3DfE19eB4dCf0a3B15317a/info.json new file mode 100644 index 00000000..b8bb95af --- /dev/null +++ b/blockchains/ethereum/assets/0xc88Be04c809856B75E3DfE19eB4dCf0a3B15317a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bankcoin Cash", + "symbol": "BKC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://bankcoin-cash.com/", + "explorer": "https://etherscan.io/token/0xc88Be04c809856B75E3DfE19eB4dCf0a3B15317a", + "status": "abandoned", + "id": "0xc88Be04c809856B75E3DfE19eB4dCf0a3B15317a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc88Be04c809856B75E3DfE19eB4dCf0a3B15317a/logo.png b/blockchains/ethereum/assets/0xc88Be04c809856B75E3DfE19eB4dCf0a3B15317a/logo.png new file mode 100644 index 00000000..e7356dbf Binary files /dev/null and b/blockchains/ethereum/assets/0xc88Be04c809856B75E3DfE19eB4dCf0a3B15317a/logo.png differ diff --git a/blockchains/ethereum/assets/0xc88ebbf7C523f38Ef3eB8A151273C0F0dA421e63/info.json b/blockchains/ethereum/assets/0xc88ebbf7C523f38Ef3eB8A151273C0F0dA421e63/info.json new file mode 100644 index 00000000..e43ca6ea --- /dev/null +++ b/blockchains/ethereum/assets/0xc88ebbf7C523f38Ef3eB8A151273C0F0dA421e63/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave UniLENDETH", + "website": "https://aave.com", + "description": "Aave UniLENDETH is an interest bearing token pegged 1:1 to the underlying LEND and ETH deposited in the Uniswap Market of Aave Protocol.", + "explorer": "https://etherscan.io/token/0xc88ebbf7C523f38Ef3eB8A151273C0F0dA421e63", + "type": "ERC20", + "symbol": "aUniLENDETH", + "decimals": 18, + "status": "active", + "id": "0xc88ebbf7C523f38Ef3eB8A151273C0F0dA421e63" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc88ebbf7C523f38Ef3eB8A151273C0F0dA421e63/logo.png b/blockchains/ethereum/assets/0xc88ebbf7C523f38Ef3eB8A151273C0F0dA421e63/logo.png new file mode 100644 index 00000000..4b8c089c Binary files /dev/null and b/blockchains/ethereum/assets/0xc88ebbf7C523f38Ef3eB8A151273C0F0dA421e63/logo.png differ diff --git a/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/info.json b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/info.json new file mode 100644 index 00000000..f0acf6fc --- /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 00000000..e49a73eb Binary files /dev/null and b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/logo.png differ diff --git a/blockchains/ethereum/assets/0xc8C6A31A4A806d3710A7B38b7B296D2fABCCDBA8/info.json b/blockchains/ethereum/assets/0xc8C6A31A4A806d3710A7B38b7B296D2fABCCDBA8/info.json new file mode 100644 index 00000000..cf6fd6b5 --- /dev/null +++ b/blockchains/ethereum/assets/0xc8C6A31A4A806d3710A7B38b7B296D2fABCCDBA8/info.json @@ -0,0 +1,11 @@ +{ + "name": "elixir", + "symbol": "ELIX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc8C6A31A4A806d3710A7B38b7B296D2fABCCDBA8", + "status": "abandoned", + "id": "0xc8C6A31A4A806d3710A7B38b7B296D2fABCCDBA8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc8C6A31A4A806d3710A7B38b7B296D2fABCCDBA8/logo.png b/blockchains/ethereum/assets/0xc8C6A31A4A806d3710A7B38b7B296D2fABCCDBA8/logo.png new file mode 100644 index 00000000..32730590 Binary files /dev/null and b/blockchains/ethereum/assets/0xc8C6A31A4A806d3710A7B38b7B296D2fABCCDBA8/logo.png differ diff --git a/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/info.json b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/info.json new file mode 100644 index 00000000..7c6ba192 --- /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 00000000..a9db922b Binary files /dev/null and b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/logo.png differ diff --git a/blockchains/ethereum/assets/0xc92D6E3E64302C59d734f3292E2A13A13D7E1817/info.json b/blockchains/ethereum/assets/0xc92D6E3E64302C59d734f3292E2A13A13D7E1817/info.json new file mode 100644 index 00000000..d75c8c92 --- /dev/null +++ b/blockchains/ethereum/assets/0xc92D6E3E64302C59d734f3292E2A13A13D7E1817/info.json @@ -0,0 +1,11 @@ +{ + "name": "FUTURAX", + "symbol": "FXC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://futurax.global", + "explorer": "https://etherscan.io/token/0xc92D6E3E64302C59d734f3292E2A13A13D7E1817", + "status": "abandoned", + "id": "0xc92D6E3E64302C59d734f3292E2A13A13D7E1817" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc92D6E3E64302C59d734f3292E2A13A13D7E1817/logo.png b/blockchains/ethereum/assets/0xc92D6E3E64302C59d734f3292E2A13A13D7E1817/logo.png new file mode 100755 index 00000000..87c076d0 Binary files /dev/null and b/blockchains/ethereum/assets/0xc92D6E3E64302C59d734f3292E2A13A13D7E1817/logo.png differ diff --git a/blockchains/ethereum/assets/0xc92e74b131D7b1D46E60e07F3FaE5d8877Dd03F0/info.json b/blockchains/ethereum/assets/0xc92e74b131D7b1D46E60e07F3FaE5d8877Dd03F0/info.json new file mode 100644 index 00000000..ecc54737 --- /dev/null +++ b/blockchains/ethereum/assets/0xc92e74b131D7b1D46E60e07F3FaE5d8877Dd03F0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Minereum", + "symbol": "MNE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.minereum.com", + "explorer": "https://etherscan.io/token/0xc92e74b131D7b1D46E60e07F3FaE5d8877Dd03F0", + "status": "abandoned", + "id": "0xc92e74b131D7b1D46E60e07F3FaE5d8877Dd03F0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc92e74b131D7b1D46E60e07F3FaE5d8877Dd03F0/logo.png b/blockchains/ethereum/assets/0xc92e74b131D7b1D46E60e07F3FaE5d8877Dd03F0/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0xc92e74b131D7b1D46E60e07F3FaE5d8877Dd03F0/logo.png differ diff --git a/blockchains/ethereum/assets/0xc944E90C64B2c07662A292be6244BDf05Cda44a7/info.json b/blockchains/ethereum/assets/0xc944E90C64B2c07662A292be6244BDf05Cda44a7/info.json new file mode 100644 index 00000000..c69f8d58 --- /dev/null +++ b/blockchains/ethereum/assets/0xc944E90C64B2c07662A292be6244BDf05Cda44a7/info.json @@ -0,0 +1,37 @@ +{ + "name": "The Graph", + "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://etherscan.io/token/0xc944E90C64B2c07662A292be6244BDf05Cda44a7", + "research": "https://github.com/graphprotocol/research", + "type": "ERC20", + "symbol": "GRT", + "decimals": 18, + "status": "active", + "id": "0xc944E90C64B2c07662A292be6244BDf05Cda44a7", + "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/ethereum/assets/0xc944E90C64B2c07662A292be6244BDf05Cda44a7/logo.png b/blockchains/ethereum/assets/0xc944E90C64B2c07662A292be6244BDf05Cda44a7/logo.png new file mode 100644 index 00000000..9cbb487c Binary files /dev/null and b/blockchains/ethereum/assets/0xc944E90C64B2c07662A292be6244BDf05Cda44a7/logo.png differ diff --git a/blockchains/ethereum/assets/0xc956fDB88D2E5b71E22D63313624e42d4757E7f9/info.json b/blockchains/ethereum/assets/0xc956fDB88D2E5b71E22D63313624e42d4757E7f9/info.json new file mode 100644 index 00000000..36fbbdbe --- /dev/null +++ b/blockchains/ethereum/assets/0xc956fDB88D2E5b71E22D63313624e42d4757E7f9/info.json @@ -0,0 +1,11 @@ +{ + "name": "ApeCash Coin", + "symbol": "APEc", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc956fDB88D2E5b71E22D63313624e42d4757E7f9", + "status": "abandoned", + "id": "0xc956fDB88D2E5b71E22D63313624e42d4757E7f9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc956fDB88D2E5b71E22D63313624e42d4757E7f9/logo.png b/blockchains/ethereum/assets/0xc956fDB88D2E5b71E22D63313624e42d4757E7f9/logo.png new file mode 100644 index 00000000..4fe4335b Binary files /dev/null and b/blockchains/ethereum/assets/0xc956fDB88D2E5b71E22D63313624e42d4757E7f9/logo.png differ diff --git a/blockchains/ethereum/assets/0xc95c9e3fA311664b5e744B3C2716547BEc2Ba7dA/info.json b/blockchains/ethereum/assets/0xc95c9e3fA311664b5e744B3C2716547BEc2Ba7dA/info.json new file mode 100644 index 00000000..27ae9eee --- /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 00000000..ba8cb66e Binary files /dev/null and b/blockchains/ethereum/assets/0xc95c9e3fA311664b5e744B3C2716547BEc2Ba7dA/logo.png differ diff --git a/blockchains/ethereum/assets/0xc962ad021a69D457564e985738C719aE3f79B707/info.json b/blockchains/ethereum/assets/0xc962ad021a69D457564e985738C719aE3f79B707/info.json new file mode 100644 index 00000000..3d8a7442 --- /dev/null +++ b/blockchains/ethereum/assets/0xc962ad021a69D457564e985738C719aE3f79B707/info.json @@ -0,0 +1,11 @@ +{ + "name": "IFX24", + "symbol": "IFX24", + "type": "ERC20", + "decimals": 18, + "description": "IFX24 is an erc20 token that combines decentralized governance, and a self-funding treasury.", + "website": "https://ifx24.com", + "explorer": "https://etherscan.io/token/0xc962ad021a69D457564e985738C719aE3f79B707", + "status": "active", + "id": "0xc962ad021a69D457564e985738C719aE3f79B707" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc962ad021a69D457564e985738C719aE3f79B707/logo.png b/blockchains/ethereum/assets/0xc962ad021a69D457564e985738C719aE3f79B707/logo.png new file mode 100644 index 00000000..5132146a Binary files /dev/null and b/blockchains/ethereum/assets/0xc962ad021a69D457564e985738C719aE3f79B707/logo.png differ diff --git a/blockchains/ethereum/assets/0xc96DF921009B790dfFcA412375251ed1A2b75c60/info.json b/blockchains/ethereum/assets/0xc96DF921009B790dfFcA412375251ed1A2b75c60/info.json new file mode 100644 index 00000000..18e56a90 --- /dev/null +++ b/blockchains/ethereum/assets/0xc96DF921009B790dfFcA412375251ed1A2b75c60/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ormeus Coin", + "symbol": "ORME", + "type": "ERC20", + "decimals": 8, + "description": "Ormeus Coin is a new digital money system backed by an industrial crypto mining operation.", + "website": "https://ormeuscoin.com/", + "explorer": "https://etherscan.io/token/0xc96DF921009B790dfFcA412375251ed1A2b75c60", + "status": "active", + "id": "0xc96DF921009B790dfFcA412375251ed1A2b75c60" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc96DF921009B790dfFcA412375251ed1A2b75c60/logo.png b/blockchains/ethereum/assets/0xc96DF921009B790dfFcA412375251ed1A2b75c60/logo.png new file mode 100644 index 00000000..7016e1b3 Binary files /dev/null and b/blockchains/ethereum/assets/0xc96DF921009B790dfFcA412375251ed1A2b75c60/logo.png differ diff --git a/blockchains/ethereum/assets/0xc97A5cdF41BAfD51c8dBE82270097e704d748b92/info.json b/blockchains/ethereum/assets/0xc97A5cdF41BAfD51c8dBE82270097e704d748b92/info.json new file mode 100644 index 00000000..ef607f95 --- /dev/null +++ b/blockchains/ethereum/assets/0xc97A5cdF41BAfD51c8dBE82270097e704d748b92/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ether Clown", + "symbol": "KLOWN", + "type": "ERC20", + "decimals": 7, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc97A5cdF41BAfD51c8dBE82270097e704d748b92", + "status": "abandoned", + "id": "0xc97A5cdF41BAfD51c8dBE82270097e704d748b92" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc97A5cdF41BAfD51c8dBE82270097e704d748b92/logo.png b/blockchains/ethereum/assets/0xc97A5cdF41BAfD51c8dBE82270097e704d748b92/logo.png new file mode 100644 index 00000000..a11a971d Binary files /dev/null and b/blockchains/ethereum/assets/0xc97A5cdF41BAfD51c8dBE82270097e704d748b92/logo.png differ diff --git a/blockchains/ethereum/assets/0xc9859fccC876e6b4B3C749C5D29EA04F48aCb74F/info.json b/blockchains/ethereum/assets/0xc9859fccC876e6b4B3C749C5D29EA04F48aCb74F/info.json new file mode 100644 index 00000000..9dbac18b --- /dev/null +++ b/blockchains/ethereum/assets/0xc9859fccC876e6b4B3C749C5D29EA04F48aCb74F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ino Coin", + "symbol": "INO", + "type": "ERC20", + "decimals": 0, + "description": "Secure & Easy to invest in your future by helping digital startups.", + "website": "https://inocoin.eu", + "explorer": "https://etherscan.io/token/0xc9859fccC876e6b4B3C749C5D29EA04F48aCb74F", + "status": "active", + "id": "0xc9859fccC876e6b4B3C749C5D29EA04F48aCb74F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc9859fccC876e6b4B3C749C5D29EA04F48aCb74F/logo.png b/blockchains/ethereum/assets/0xc9859fccC876e6b4B3C749C5D29EA04F48aCb74F/logo.png new file mode 100755 index 00000000..6dcd7d11 Binary files /dev/null and b/blockchains/ethereum/assets/0xc9859fccC876e6b4B3C749C5D29EA04F48aCb74F/logo.png differ diff --git a/blockchains/ethereum/assets/0xc98D64DA73a6616c42117b582e832812e7B8D57F/info.json b/blockchains/ethereum/assets/0xc98D64DA73a6616c42117b582e832812e7B8D57F/info.json new file mode 100644 index 00000000..5f411a7b --- /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 00000000..d5ce5c66 Binary files /dev/null and b/blockchains/ethereum/assets/0xc98D64DA73a6616c42117b582e832812e7B8D57F/logo.png differ diff --git a/blockchains/ethereum/assets/0xc98e0639c6d2EC037A615341c369666B110e80E5/info.json b/blockchains/ethereum/assets/0xc98e0639c6d2EC037A615341c369666B110e80E5/info.json new file mode 100644 index 00000000..af83f12d --- /dev/null +++ b/blockchains/ethereum/assets/0xc98e0639c6d2EC037A615341c369666B110e80E5/info.json @@ -0,0 +1,11 @@ +{ + "name": "EXMR", + "symbol": "EXMR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://exmrfoundation.org", + "explorer": "https://etherscan.io/token/0xc98e0639c6d2EC037A615341c369666B110e80E5", + "status": "abandoned", + "id": "0xc98e0639c6d2EC037A615341c369666B110e80E5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc98e0639c6d2EC037A615341c369666B110e80E5/logo.png b/blockchains/ethereum/assets/0xc98e0639c6d2EC037A615341c369666B110e80E5/logo.png new file mode 100644 index 00000000..8a2b8b51 Binary files /dev/null and b/blockchains/ethereum/assets/0xc98e0639c6d2EC037A615341c369666B110e80E5/logo.png differ diff --git a/blockchains/ethereum/assets/0xc994a2dEb02543Db1f48688438b9903c4b305ce3/info.json b/blockchains/ethereum/assets/0xc994a2dEb02543Db1f48688438b9903c4b305ce3/info.json new file mode 100644 index 00000000..3a898866 --- /dev/null +++ b/blockchains/ethereum/assets/0xc994a2dEb02543Db1f48688438b9903c4b305ce3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Augmint Euro", + "symbol": "AEUR", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc994a2dEb02543Db1f48688438b9903c4b305ce3", + "status": "abandoned", + "id": "0xc994a2dEb02543Db1f48688438b9903c4b305ce3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc994a2dEb02543Db1f48688438b9903c4b305ce3/logo.png b/blockchains/ethereum/assets/0xc994a2dEb02543Db1f48688438b9903c4b305ce3/logo.png new file mode 100644 index 00000000..d1619db8 Binary files /dev/null and b/blockchains/ethereum/assets/0xc994a2dEb02543Db1f48688438b9903c4b305ce3/logo.png differ diff --git a/blockchains/ethereum/assets/0xc9DC2952D061C6Ff13CA3d8AC3c4d627b52811b9/info.json b/blockchains/ethereum/assets/0xc9DC2952D061C6Ff13CA3d8AC3c4d627b52811b9/info.json new file mode 100644 index 00000000..72da3575 --- /dev/null +++ b/blockchains/ethereum/assets/0xc9DC2952D061C6Ff13CA3d8AC3c4d627b52811b9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ground Token", + "symbol": "GRND", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "Https://GRNDtoken.com", + "explorer": "https://etherscan.io/token/0xc9DC2952D061C6Ff13CA3d8AC3c4d627b52811b9", + "status": "abandoned", + "id": "0xc9DC2952D061C6Ff13CA3d8AC3c4d627b52811b9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc9DC2952D061C6Ff13CA3d8AC3c4d627b52811b9/logo.png b/blockchains/ethereum/assets/0xc9DC2952D061C6Ff13CA3d8AC3c4d627b52811b9/logo.png new file mode 100644 index 00000000..64ff7cef Binary files /dev/null and b/blockchains/ethereum/assets/0xc9DC2952D061C6Ff13CA3d8AC3c4d627b52811b9/logo.png differ diff --git a/blockchains/ethereum/assets/0xc9De4B7F0C3d991e967158E4D4bFA4b51Ec0b114/info.json b/blockchains/ethereum/assets/0xc9De4B7F0C3d991e967158E4D4bFA4b51Ec0b114/info.json new file mode 100644 index 00000000..7d4687fd --- /dev/null +++ b/blockchains/ethereum/assets/0xc9De4B7F0C3d991e967158E4D4bFA4b51Ec0b114/info.json @@ -0,0 +1,11 @@ +{ + "name": "ROK Token", + "symbol": "ROK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc9De4B7F0C3d991e967158E4D4bFA4b51Ec0b114", + "status": "abandoned", + "id": "0xc9De4B7F0C3d991e967158E4D4bFA4b51Ec0b114" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc9De4B7F0C3d991e967158E4D4bFA4b51Ec0b114/logo.png b/blockchains/ethereum/assets/0xc9De4B7F0C3d991e967158E4D4bFA4b51Ec0b114/logo.png new file mode 100755 index 00000000..b178d26b Binary files /dev/null and b/blockchains/ethereum/assets/0xc9De4B7F0C3d991e967158E4D4bFA4b51Ec0b114/logo.png differ diff --git a/blockchains/ethereum/assets/0xc9c69a216568dE4d5B991b05cc9C382494FfA62e/info.json b/blockchains/ethereum/assets/0xc9c69a216568dE4d5B991b05cc9C382494FfA62e/info.json new file mode 100644 index 00000000..bf34149b --- /dev/null +++ b/blockchains/ethereum/assets/0xc9c69a216568dE4d5B991b05cc9C382494FfA62e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Okayama", + "symbol": "YAMA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xc9c69a216568dE4d5B991b05cc9C382494FfA62e", + "status": "abandoned", + "id": "0xc9c69a216568dE4d5B991b05cc9C382494FfA62e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc9c69a216568dE4d5B991b05cc9C382494FfA62e/logo.png b/blockchains/ethereum/assets/0xc9c69a216568dE4d5B991b05cc9C382494FfA62e/logo.png new file mode 100644 index 00000000..0b66fb5b Binary files /dev/null and b/blockchains/ethereum/assets/0xc9c69a216568dE4d5B991b05cc9C382494FfA62e/logo.png differ diff --git a/blockchains/ethereum/assets/0xc9eef266834730340A55B6CC24621B31BAF55581/info.json b/blockchains/ethereum/assets/0xc9eef266834730340A55B6CC24621B31BAF55581/info.json new file mode 100644 index 00000000..927917b0 --- /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 00000000..eaa561f8 Binary files /dev/null and b/blockchains/ethereum/assets/0xc9eef266834730340A55B6CC24621B31BAF55581/logo.png differ diff --git a/blockchains/ethereum/assets/0xcA2796F9F61dc7b238Aab043971e49c6164DF375/info.json b/blockchains/ethereum/assets/0xcA2796F9F61dc7b238Aab043971e49c6164DF375/info.json new file mode 100644 index 00000000..a3f0989f --- /dev/null +++ b/blockchains/ethereum/assets/0xcA2796F9F61dc7b238Aab043971e49c6164DF375/info.json @@ -0,0 +1,11 @@ +{ + "name": "YGGDRASH", + "symbol": "YEED", + "type": "ERC20", + "decimals": 18, + "description": "XMCS is thoroughly designed utility token to maximize trader’s profit by presenting privileges and special features to the holders of XMCS on the MCS cryptocurrency derivatives trading platform and the entire MCS Ecosystem.", + "website": "https://yggdrash.io", + "explorer": "https://etherscan.io/token/0xcA2796F9F61dc7b238Aab043971e49c6164DF375", + "status": "active", + "id": "0xcA2796F9F61dc7b238Aab043971e49c6164DF375" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcA2796F9F61dc7b238Aab043971e49c6164DF375/logo.png b/blockchains/ethereum/assets/0xcA2796F9F61dc7b238Aab043971e49c6164DF375/logo.png new file mode 100644 index 00000000..c67cc8fd Binary files /dev/null and b/blockchains/ethereum/assets/0xcA2796F9F61dc7b238Aab043971e49c6164DF375/logo.png differ diff --git a/blockchains/ethereum/assets/0xcA37530E7c5968627BE470081d1C993eb1dEaf90/info.json b/blockchains/ethereum/assets/0xcA37530E7c5968627BE470081d1C993eb1dEaf90/info.json new file mode 100644 index 00000000..3f43750f --- /dev/null +++ b/blockchains/ethereum/assets/0xcA37530E7c5968627BE470081d1C993eb1dEaf90/info.json @@ -0,0 +1,36 @@ +{ + "name": "Stable DODO", + "website": "app.ichi.org", + "description": "oneDODO is an ICHI-created stablecoin for DODO.", + "explorer": "https://etherscan.io/token/0xcA37530E7c5968627BE470081d1C993eb1dEaf90", + "type": "ERC20", + "symbol": "oneDODO", + "decimals": 18, + "status": "active", + "id": "0xcA37530E7c5968627BE470081d1C993eb1dEaf90", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm/ichi-oneToken" + }, + { + "name": "x", + "url": "https://x.com/ichifarm" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + }, + { + "name": "discord", + "url": "https://discord.com/invite/DvsYCfK8" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcA37530E7c5968627BE470081d1C993eb1dEaf90/logo.png b/blockchains/ethereum/assets/0xcA37530E7c5968627BE470081d1C993eb1dEaf90/logo.png new file mode 100644 index 00000000..0e09f9d6 Binary files /dev/null and b/blockchains/ethereum/assets/0xcA37530E7c5968627BE470081d1C993eb1dEaf90/logo.png differ diff --git a/blockchains/ethereum/assets/0xcA3Ea3061d638E02113aA960340c98343b5aCd62/info.json b/blockchains/ethereum/assets/0xcA3Ea3061d638E02113aA960340c98343b5aCd62/info.json new file mode 100644 index 00000000..1690c9bc --- /dev/null +++ b/blockchains/ethereum/assets/0xcA3Ea3061d638E02113aA960340c98343b5aCd62/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bittwatt", + "symbol": "BWT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ico.bittwatt.com/", + "explorer": "https://etherscan.io/token/0xcA3Ea3061d638E02113aA960340c98343b5aCd62", + "status": "abandoned", + "id": "0xcA3Ea3061d638E02113aA960340c98343b5aCd62" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcA3Ea3061d638E02113aA960340c98343b5aCd62/logo.png b/blockchains/ethereum/assets/0xcA3Ea3061d638E02113aA960340c98343b5aCd62/logo.png new file mode 100755 index 00000000..ea558b10 Binary files /dev/null and b/blockchains/ethereum/assets/0xcA3Ea3061d638E02113aA960340c98343b5aCd62/logo.png differ diff --git a/blockchains/ethereum/assets/0xcA6aA46F253D553e752F4Bf6BC977555225cDA8A/info.json b/blockchains/ethereum/assets/0xcA6aA46F253D553e752F4Bf6BC977555225cDA8A/info.json new file mode 100644 index 00000000..5470f055 --- /dev/null +++ b/blockchains/ethereum/assets/0xcA6aA46F253D553e752F4Bf6BC977555225cDA8A/info.json @@ -0,0 +1,11 @@ +{ + "name": "SoftChain", + "symbol": "SFC", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcA6aA46F253D553e752F4Bf6BC977555225cDA8A", + "status": "abandoned", + "id": "0xcA6aA46F253D553e752F4Bf6BC977555225cDA8A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcA6aA46F253D553e752F4Bf6BC977555225cDA8A/logo.png b/blockchains/ethereum/assets/0xcA6aA46F253D553e752F4Bf6BC977555225cDA8A/logo.png new file mode 100755 index 00000000..9320089e Binary files /dev/null and b/blockchains/ethereum/assets/0xcA6aA46F253D553e752F4Bf6BC977555225cDA8A/logo.png differ diff --git a/blockchains/ethereum/assets/0xcAaa93712BDAc37f736C323C93D4D5fDEFCc31CC/info.json b/blockchains/ethereum/assets/0xcAaa93712BDAc37f736C323C93D4D5fDEFCc31CC/info.json new file mode 100644 index 00000000..c480c5d0 --- /dev/null +++ b/blockchains/ethereum/assets/0xcAaa93712BDAc37f736C323C93D4D5fDEFCc31CC/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptalDash", + "symbol": "CRD", + "type": "ERC20", + "decimals": 18, + "description": "The CRD network is taking a multipronged approach to building out its network and enabling Cryptocurrency and Defi adoption.", + "website": "https://www.cryptaldash.com", + "explorer": "https://etherscan.io/token/0xcAaa93712BDAc37f736C323C93D4D5fDEFCc31CC", + "status": "active", + "id": "0xcAaa93712BDAc37f736C323C93D4D5fDEFCc31CC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcAaa93712BDAc37f736C323C93D4D5fDEFCc31CC/logo.png b/blockchains/ethereum/assets/0xcAaa93712BDAc37f736C323C93D4D5fDEFCc31CC/logo.png new file mode 100644 index 00000000..790b8489 Binary files /dev/null and b/blockchains/ethereum/assets/0xcAaa93712BDAc37f736C323C93D4D5fDEFCc31CC/logo.png differ diff --git a/blockchains/ethereum/assets/0xcAbf96A41a4D98EE91d4fb1004dC4B3b8548CB53/info.json b/blockchains/ethereum/assets/0xcAbf96A41a4D98EE91d4fb1004dC4B3b8548CB53/info.json new file mode 100644 index 00000000..f2503aec --- /dev/null +++ b/blockchains/ethereum/assets/0xcAbf96A41a4D98EE91d4fb1004dC4B3b8548CB53/info.json @@ -0,0 +1,11 @@ +{ + "name": "BffDoom", + "symbol": "BFF", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcAbf96A41a4D98EE91d4fb1004dC4B3b8548CB53", + "status": "abandoned", + "id": "0xcAbf96A41a4D98EE91d4fb1004dC4B3b8548CB53" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcAbf96A41a4D98EE91d4fb1004dC4B3b8548CB53/logo.png b/blockchains/ethereum/assets/0xcAbf96A41a4D98EE91d4fb1004dC4B3b8548CB53/logo.png new file mode 100644 index 00000000..03a324e5 Binary files /dev/null and b/blockchains/ethereum/assets/0xcAbf96A41a4D98EE91d4fb1004dC4B3b8548CB53/logo.png differ diff --git a/blockchains/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json b/blockchains/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json new file mode 100644 index 00000000..e9329c77 --- /dev/null +++ b/blockchains/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json @@ -0,0 +1,28 @@ +{ + "name": "ParaSwap", + "type": "ERC20", + "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://etherscan.io/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/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/logo.png b/blockchains/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/logo.png new file mode 100644 index 00000000..6a8b61f4 Binary files /dev/null and b/blockchains/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/logo.png differ diff --git a/blockchains/ethereum/assets/0xcB3F902bf97626391bF8bA87264bbC3DC13469be/info.json b/blockchains/ethereum/assets/0xcB3F902bf97626391bF8bA87264bbC3DC13469be/info.json new file mode 100644 index 00000000..22e07acd --- /dev/null +++ b/blockchains/ethereum/assets/0xcB3F902bf97626391bF8bA87264bbC3DC13469be/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Real Coin", + "symbol": "TRC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcB3F902bf97626391bF8bA87264bbC3DC13469be", + "status": "abandoned", + "id": "0xcB3F902bf97626391bF8bA87264bbC3DC13469be" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcB3F902bf97626391bF8bA87264bbC3DC13469be/logo.png b/blockchains/ethereum/assets/0xcB3F902bf97626391bF8bA87264bbC3DC13469be/logo.png new file mode 100644 index 00000000..e6572544 Binary files /dev/null and b/blockchains/ethereum/assets/0xcB3F902bf97626391bF8bA87264bbC3DC13469be/logo.png differ diff --git a/blockchains/ethereum/assets/0xcB3d242954bba77Ac71DF0fBE309F67e71138Ac7/info.json b/blockchains/ethereum/assets/0xcB3d242954bba77Ac71DF0fBE309F67e71138Ac7/info.json new file mode 100644 index 00000000..93d875df --- /dev/null +++ b/blockchains/ethereum/assets/0xcB3d242954bba77Ac71DF0fBE309F67e71138Ac7/info.json @@ -0,0 +1,11 @@ +{ + "name": "POP Missions", + "symbol": "POPM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcB3d242954bba77Ac71DF0fBE309F67e71138Ac7", + "status": "abandoned", + "id": "0xcB3d242954bba77Ac71DF0fBE309F67e71138Ac7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcB3d242954bba77Ac71DF0fBE309F67e71138Ac7/logo.png b/blockchains/ethereum/assets/0xcB3d242954bba77Ac71DF0fBE309F67e71138Ac7/logo.png new file mode 100644 index 00000000..89a02fbf Binary files /dev/null and b/blockchains/ethereum/assets/0xcB3d242954bba77Ac71DF0fBE309F67e71138Ac7/logo.png differ diff --git a/blockchains/ethereum/assets/0xcB3df3108635932D912632ef7132d03EcFC39080/info.json b/blockchains/ethereum/assets/0xcB3df3108635932D912632ef7132d03EcFC39080/info.json new file mode 100644 index 00000000..dd1fc3c4 --- /dev/null +++ b/blockchains/ethereum/assets/0xcB3df3108635932D912632ef7132d03EcFC39080/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wings", + "symbol": "WING", + "type": "ERC20", + "decimals": 18, + "description": "Hyper deflationary token with unique rewards and burning protocol.", + "website": "https://wingshop.io/", + "explorer": "https://etherscan.io/token/0xcB3df3108635932D912632ef7132d03EcFC39080", + "status": "active", + "id": "0xcB3df3108635932D912632ef7132d03EcFC39080" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcB3df3108635932D912632ef7132d03EcFC39080/logo.png b/blockchains/ethereum/assets/0xcB3df3108635932D912632ef7132d03EcFC39080/logo.png new file mode 100644 index 00000000..0213eb2b Binary files /dev/null and b/blockchains/ethereum/assets/0xcB3df3108635932D912632ef7132d03EcFC39080/logo.png differ diff --git a/blockchains/ethereum/assets/0xcB97e65F07DA24D46BcDD078EBebd7C6E6E3d750/info.json b/blockchains/ethereum/assets/0xcB97e65F07DA24D46BcDD078EBebd7C6E6E3d750/info.json new file mode 100644 index 00000000..d1ca92fb --- /dev/null +++ b/blockchains/ethereum/assets/0xcB97e65F07DA24D46BcDD078EBebd7C6E6E3d750/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bytom", + "symbol": "BTM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcB97e65F07DA24D46BcDD078EBebd7C6E6E3d750", + "status": "abandoned", + "id": "0xcB97e65F07DA24D46BcDD078EBebd7C6E6E3d750" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcB97e65F07DA24D46BcDD078EBebd7C6E6E3d750/logo.png b/blockchains/ethereum/assets/0xcB97e65F07DA24D46BcDD078EBebd7C6E6E3d750/logo.png new file mode 100644 index 00000000..a1366da8 Binary files /dev/null and b/blockchains/ethereum/assets/0xcB97e65F07DA24D46BcDD078EBebd7C6E6E3d750/logo.png differ diff --git a/blockchains/ethereum/assets/0xcB9f39C69ACc924D90757e566fA3D2fd7021d35f/info.json b/blockchains/ethereum/assets/0xcB9f39C69ACc924D90757e566fA3D2fd7021d35f/info.json new file mode 100644 index 00000000..eb64e2d0 --- /dev/null +++ b/blockchains/ethereum/assets/0xcB9f39C69ACc924D90757e566fA3D2fd7021d35f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Khmining", + "symbol": "KHM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcB9f39C69ACc924D90757e566fA3D2fd7021d35f", + "status": "abandoned", + "id": "0xcB9f39C69ACc924D90757e566fA3D2fd7021d35f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcB9f39C69ACc924D90757e566fA3D2fd7021d35f/logo.png b/blockchains/ethereum/assets/0xcB9f39C69ACc924D90757e566fA3D2fd7021d35f/logo.png new file mode 100644 index 00000000..2554316c Binary files /dev/null and b/blockchains/ethereum/assets/0xcB9f39C69ACc924D90757e566fA3D2fd7021d35f/logo.png differ diff --git a/blockchains/ethereum/assets/0xcBB8f1BDA10b9696c57E13BC128Fe674769DCEc0/info.json b/blockchains/ethereum/assets/0xcBB8f1BDA10b9696c57E13BC128Fe674769DCEc0/info.json new file mode 100644 index 00000000..b8248c62 --- /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 00000000..20c7da55 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 new file mode 100644 index 00000000..33380592 --- /dev/null +++ b/blockchains/ethereum/assets/0xcBeD554Ad21B9dce19BDa9A57C3b62C9d3fF72e2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Curve.finance yDAI/yUSDC/yUSDT/yTUSD ", + "symbol": "yDAI+yUSDC+yUSDT+yTUSD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcBeD554Ad21B9dce19BDa9A57C3b62C9d3fF72e2", + "status": "abandoned", + "id": "0xcBeD554Ad21B9dce19BDa9A57C3b62C9d3fF72e2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcBeD554Ad21B9dce19BDa9A57C3b62C9d3fF72e2/logo.png b/blockchains/ethereum/assets/0xcBeD554Ad21B9dce19BDa9A57C3b62C9d3fF72e2/logo.png new file mode 100644 index 00000000..742a2521 Binary files /dev/null and b/blockchains/ethereum/assets/0xcBeD554Ad21B9dce19BDa9A57C3b62C9d3fF72e2/logo.png differ diff --git a/blockchains/ethereum/assets/0xcC16745A1773dD95aB9Ed98599b8D9B835e42E25/info.json b/blockchains/ethereum/assets/0xcC16745A1773dD95aB9Ed98599b8D9B835e42E25/info.json new file mode 100644 index 00000000..a743faa8 --- /dev/null +++ b/blockchains/ethereum/assets/0xcC16745A1773dD95aB9Ed98599b8D9B835e42E25/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long LINK-DAI 4x v2", + "symbol": "dLLINK4x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcC16745A1773dD95aB9Ed98599b8D9B835e42E25", + "status": "abandoned", + "id": "0xcC16745A1773dD95aB9Ed98599b8D9B835e42E25" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcC16745A1773dD95aB9Ed98599b8D9B835e42E25/logo.png b/blockchains/ethereum/assets/0xcC16745A1773dD95aB9Ed98599b8D9B835e42E25/logo.png new file mode 100644 index 00000000..051cfaa3 Binary files /dev/null and b/blockchains/ethereum/assets/0xcC16745A1773dD95aB9Ed98599b8D9B835e42E25/logo.png differ diff --git a/blockchains/ethereum/assets/0xcC275e3543D42b8A31dCF8EC859f2fBd384B4B57/info.json b/blockchains/ethereum/assets/0xcC275e3543D42b8A31dCF8EC859f2fBd384B4B57/info.json new file mode 100644 index 00000000..5e9588ad --- /dev/null +++ b/blockchains/ethereum/assets/0xcC275e3543D42b8A31dCF8EC859f2fBd384B4B57/info.json @@ -0,0 +1,11 @@ +{ + "name": "FOMO Gaming Token", + "symbol": "FMG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcC275e3543D42b8A31dCF8EC859f2fBd384B4B57", + "status": "abandoned", + "id": "0xcC275e3543D42b8A31dCF8EC859f2fBd384B4B57" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcC275e3543D42b8A31dCF8EC859f2fBd384B4B57/logo.png b/blockchains/ethereum/assets/0xcC275e3543D42b8A31dCF8EC859f2fBd384B4B57/logo.png new file mode 100644 index 00000000..a65fe779 Binary files /dev/null and b/blockchains/ethereum/assets/0xcC275e3543D42b8A31dCF8EC859f2fBd384B4B57/logo.png differ diff --git a/blockchains/ethereum/assets/0xcC40965d3621362C3EE1dD946bA98d6A708ea86B/info.json b/blockchains/ethereum/assets/0xcC40965d3621362C3EE1dD946bA98d6A708ea86B/info.json new file mode 100644 index 00000000..bdaeb1ea --- /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 00000000..7bde4f2c Binary files /dev/null and b/blockchains/ethereum/assets/0xcC40965d3621362C3EE1dD946bA98d6A708ea86B/logo.png differ diff --git a/blockchains/ethereum/assets/0xcC483Cb8c15F7A90320d6CC1ddDC8757f47Bd8f9/info.json b/blockchains/ethereum/assets/0xcC483Cb8c15F7A90320d6CC1ddDC8757f47Bd8f9/info.json new file mode 100644 index 00000000..0c89bb72 --- /dev/null +++ b/blockchains/ethereum/assets/0xcC483Cb8c15F7A90320d6CC1ddDC8757f47Bd8f9/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 298-CN39", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcC483Cb8c15F7A90320d6CC1ddDC8757f47Bd8f9", + "status": "abandoned", + "id": "0xcC483Cb8c15F7A90320d6CC1ddDC8757f47Bd8f9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcC483Cb8c15F7A90320d6CC1ddDC8757f47Bd8f9/logo.png b/blockchains/ethereum/assets/0xcC483Cb8c15F7A90320d6CC1ddDC8757f47Bd8f9/logo.png new file mode 100644 index 00000000..64d5f8b1 Binary files /dev/null and b/blockchains/ethereum/assets/0xcC483Cb8c15F7A90320d6CC1ddDC8757f47Bd8f9/logo.png differ diff --git a/blockchains/ethereum/assets/0xcC4eF9EEAF656aC1a2Ab886743E98e97E090ed38/info.json b/blockchains/ethereum/assets/0xcC4eF9EEAF656aC1a2Ab886743E98e97E090ed38/info.json new file mode 100644 index 00000000..907d3512 --- /dev/null +++ b/blockchains/ethereum/assets/0xcC4eF9EEAF656aC1a2Ab886743E98e97E090ed38/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digital Developers Fund Token", + "symbol": "DDF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcC4eF9EEAF656aC1a2Ab886743E98e97E090ed38", + "status": "abandoned", + "id": "0xcC4eF9EEAF656aC1a2Ab886743E98e97E090ed38" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcC4eF9EEAF656aC1a2Ab886743E98e97E090ed38/logo.png b/blockchains/ethereum/assets/0xcC4eF9EEAF656aC1a2Ab886743E98e97E090ed38/logo.png new file mode 100755 index 00000000..86b0ce14 Binary files /dev/null and b/blockchains/ethereum/assets/0xcC4eF9EEAF656aC1a2Ab886743E98e97E090ed38/logo.png differ diff --git a/blockchains/ethereum/assets/0xcCAe8843E26259278C200C6506F6E5A3bdD524cd/info.json b/blockchains/ethereum/assets/0xcCAe8843E26259278C200C6506F6E5A3bdD524cd/info.json new file mode 100644 index 00000000..89ea42de --- /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 00000000..0ccfbac7 Binary files /dev/null and b/blockchains/ethereum/assets/0xcCAe8843E26259278C200C6506F6E5A3bdD524cd/logo.png differ diff --git a/blockchains/ethereum/assets/0xcCeD5B8288086BE8c38E23567e684C3740be4D48/info.json b/blockchains/ethereum/assets/0xcCeD5B8288086BE8c38E23567e684C3740be4D48/info.json new file mode 100644 index 00000000..0592ee9c --- /dev/null +++ b/blockchains/ethereum/assets/0xcCeD5B8288086BE8c38E23567e684C3740be4D48/info.json @@ -0,0 +1,11 @@ +{ + "name": "Roulette Token", + "symbol": "RLT", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "https://smartplay.tech/#", + "explorer": "https://etherscan.io/token/0xcCeD5B8288086BE8c38E23567e684C3740be4D48", + "status": "abandoned", + "id": "0xcCeD5B8288086BE8c38E23567e684C3740be4D48" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcCeD5B8288086BE8c38E23567e684C3740be4D48/logo.png b/blockchains/ethereum/assets/0xcCeD5B8288086BE8c38E23567e684C3740be4D48/logo.png new file mode 100644 index 00000000..8f1f6304 Binary files /dev/null and b/blockchains/ethereum/assets/0xcCeD5B8288086BE8c38E23567e684C3740be4D48/logo.png differ diff --git a/blockchains/ethereum/assets/0xcD2d415835D4746f5498950F3Fc48e01e64F89f9/info.json b/blockchains/ethereum/assets/0xcD2d415835D4746f5498950F3Fc48e01e64F89f9/info.json new file mode 100644 index 00000000..9b39b3e7 --- /dev/null +++ b/blockchains/ethereum/assets/0xcD2d415835D4746f5498950F3Fc48e01e64F89f9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Niuupeak", + "symbol": "nuu", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcD2d415835D4746f5498950F3Fc48e01e64F89f9", + "status": "abandoned", + "id": "0xcD2d415835D4746f5498950F3Fc48e01e64F89f9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcD2d415835D4746f5498950F3Fc48e01e64F89f9/logo.png b/blockchains/ethereum/assets/0xcD2d415835D4746f5498950F3Fc48e01e64F89f9/logo.png new file mode 100644 index 00000000..32983166 Binary files /dev/null and b/blockchains/ethereum/assets/0xcD2d415835D4746f5498950F3Fc48e01e64F89f9/logo.png differ diff --git a/blockchains/ethereum/assets/0xcD3673aF09e76C74d889aaBab68cA0645566A3a1/info.json b/blockchains/ethereum/assets/0xcD3673aF09e76C74d889aaBab68cA0645566A3a1/info.json new file mode 100644 index 00000000..d57988ed --- /dev/null +++ b/blockchains/ethereum/assets/0xcD3673aF09e76C74d889aaBab68cA0645566A3a1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unicorn Candy Coin", + "symbol": "Candy", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcD3673aF09e76C74d889aaBab68cA0645566A3a1", + "status": "abandoned", + "id": "0xcD3673aF09e76C74d889aaBab68cA0645566A3a1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcD3673aF09e76C74d889aaBab68cA0645566A3a1/logo.png b/blockchains/ethereum/assets/0xcD3673aF09e76C74d889aaBab68cA0645566A3a1/logo.png new file mode 100755 index 00000000..ffadff85 Binary files /dev/null and b/blockchains/ethereum/assets/0xcD3673aF09e76C74d889aaBab68cA0645566A3a1/logo.png differ diff --git a/blockchains/ethereum/assets/0xcD62b1C403fa761BAadFC74C525ce2B51780b184/info.json b/blockchains/ethereum/assets/0xcD62b1C403fa761BAadFC74C525ce2B51780b184/info.json new file mode 100644 index 00000000..6d6a532a --- /dev/null +++ b/blockchains/ethereum/assets/0xcD62b1C403fa761BAadFC74C525ce2B51780b184/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aragon Network Juror", + "symbol": "ANJ", + "type": "ERC20", + "decimals": 18, + "description": "Aragon Court handles subjective disputes that require the judgment of human jurors. These jurors stake a token called ANJ which allows them to be drafted into juries and earn fees for successfully adjudicating disputes.", + "website": "https://anj.aragon.org", + "explorer": "https://etherscan.io/token/0xcD62b1C403fa761BAadFC74C525ce2B51780b184", + "status": "active", + "id": "0xcD62b1C403fa761BAadFC74C525ce2B51780b184" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcD62b1C403fa761BAadFC74C525ce2B51780b184/logo.png b/blockchains/ethereum/assets/0xcD62b1C403fa761BAadFC74C525ce2B51780b184/logo.png new file mode 100644 index 00000000..d3c021b0 Binary files /dev/null and b/blockchains/ethereum/assets/0xcD62b1C403fa761BAadFC74C525ce2B51780b184/logo.png differ diff --git a/blockchains/ethereum/assets/0xcD8544DefeDEc7c6b60b5a4232320365b1B21fCc/info.json b/blockchains/ethereum/assets/0xcD8544DefeDEc7c6b60b5a4232320365b1B21fCc/info.json new file mode 100644 index 00000000..6a1ce41e --- /dev/null +++ b/blockchains/ethereum/assets/0xcD8544DefeDEc7c6b60b5a4232320365b1B21fCc/info.json @@ -0,0 +1,11 @@ +{ + "name": "GAPS", + "symbol": "GAP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcD8544DefeDEc7c6b60b5a4232320365b1B21fCc", + "status": "abandoned", + "id": "0xcD8544DefeDEc7c6b60b5a4232320365b1B21fCc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcD8544DefeDEc7c6b60b5a4232320365b1B21fCc/logo.png b/blockchains/ethereum/assets/0xcD8544DefeDEc7c6b60b5a4232320365b1B21fCc/logo.png new file mode 100644 index 00000000..b6324c72 Binary files /dev/null and b/blockchains/ethereum/assets/0xcD8544DefeDEc7c6b60b5a4232320365b1B21fCc/logo.png differ diff --git a/blockchains/ethereum/assets/0xcDD60D15125bf3362b6838D2506b0Fa33bc1a515/info.json b/blockchains/ethereum/assets/0xcDD60D15125bf3362b6838D2506b0Fa33bc1a515/info.json new file mode 100644 index 00000000..80f12e55 --- /dev/null +++ b/blockchains/ethereum/assets/0xcDD60D15125bf3362b6838D2506b0Fa33bc1a515/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)", + "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 00000000..8adf5788 Binary files /dev/null and b/blockchains/ethereum/assets/0xcDD60D15125bf3362b6838D2506b0Fa33bc1a515/logo.png differ diff --git a/blockchains/ethereum/assets/0xcDd0A6B15B49A9eb3Ce011CCE22FAc2ccf09ecE6/info.json b/blockchains/ethereum/assets/0xcDd0A6B15B49A9eb3Ce011CCE22FAc2ccf09ecE6/info.json new file mode 100644 index 00000000..b4021b8c --- /dev/null +++ b/blockchains/ethereum/assets/0xcDd0A6B15B49A9eb3Ce011CCE22FAc2ccf09ecE6/info.json @@ -0,0 +1,11 @@ +{ + "name": "ARMTOKEN", + "symbol": "TARM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://armtoken.io/", + "explorer": "https://etherscan.io/token/0xcDd0A6B15B49A9eb3Ce011CCE22FAc2ccf09ecE6", + "status": "abandoned", + "id": "0xcDd0A6B15B49A9eb3Ce011CCE22FAc2ccf09ecE6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcDd0A6B15B49A9eb3Ce011CCE22FAc2ccf09ecE6/logo.png b/blockchains/ethereum/assets/0xcDd0A6B15B49A9eb3Ce011CCE22FAc2ccf09ecE6/logo.png new file mode 100644 index 00000000..cf67205c Binary files /dev/null and b/blockchains/ethereum/assets/0xcDd0A6B15B49A9eb3Ce011CCE22FAc2ccf09ecE6/logo.png differ diff --git a/blockchains/ethereum/assets/0xcDf6e7D170Fe40cfF11639dC89AF9F96589B2527/info.json b/blockchains/ethereum/assets/0xcDf6e7D170Fe40cfF11639dC89AF9F96589B2527/info.json new file mode 100644 index 00000000..b89e4114 --- /dev/null +++ b/blockchains/ethereum/assets/0xcDf6e7D170Fe40cfF11639dC89AF9F96589B2527/info.json @@ -0,0 +1,11 @@ +{ + "name": "Empower Solutions Inc.", + "symbol": "EMBS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcDf6e7D170Fe40cfF11639dC89AF9F96589B2527", + "status": "abandoned", + "id": "0xcDf6e7D170Fe40cfF11639dC89AF9F96589B2527" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcDf6e7D170Fe40cfF11639dC89AF9F96589B2527/logo.png b/blockchains/ethereum/assets/0xcDf6e7D170Fe40cfF11639dC89AF9F96589B2527/logo.png new file mode 100755 index 00000000..33c6ce45 Binary files /dev/null and b/blockchains/ethereum/assets/0xcDf6e7D170Fe40cfF11639dC89AF9F96589B2527/logo.png differ diff --git a/blockchains/ethereum/assets/0xcE1d3dA32e3a45d27dC841781f09E40C41CAC677/info.json b/blockchains/ethereum/assets/0xcE1d3dA32e3a45d27dC841781f09E40C41CAC677/info.json new file mode 100644 index 00000000..55ec2dfa --- /dev/null +++ b/blockchains/ethereum/assets/0xcE1d3dA32e3a45d27dC841781f09E40C41CAC677/info.json @@ -0,0 +1,11 @@ +{ + "name": "Data link base", + "symbol": "DLB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcE1d3dA32e3a45d27dC841781f09E40C41CAC677", + "status": "abandoned", + "id": "0xcE1d3dA32e3a45d27dC841781f09E40C41CAC677" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcE1d3dA32e3a45d27dC841781f09E40C41CAC677/logo.png b/blockchains/ethereum/assets/0xcE1d3dA32e3a45d27dC841781f09E40C41CAC677/logo.png new file mode 100644 index 00000000..ee004ea6 Binary files /dev/null and b/blockchains/ethereum/assets/0xcE1d3dA32e3a45d27dC841781f09E40C41CAC677/logo.png differ diff --git a/blockchains/ethereum/assets/0xcE27A2388D2ba7a9995fa0960FB168568e2a7923/info.json b/blockchains/ethereum/assets/0xcE27A2388D2ba7a9995fa0960FB168568e2a7923/info.json new file mode 100644 index 00000000..160fc0ea --- /dev/null +++ b/blockchains/ethereum/assets/0xcE27A2388D2ba7a9995fa0960FB168568e2a7923/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cinder", + "symbol": "CNR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcE27A2388D2ba7a9995fa0960FB168568e2a7923", + "status": "abandoned", + "id": "0xcE27A2388D2ba7a9995fa0960FB168568e2a7923" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcE27A2388D2ba7a9995fa0960FB168568e2a7923/logo.png b/blockchains/ethereum/assets/0xcE27A2388D2ba7a9995fa0960FB168568e2a7923/logo.png new file mode 100644 index 00000000..3ccb3d6d Binary files /dev/null and b/blockchains/ethereum/assets/0xcE27A2388D2ba7a9995fa0960FB168568e2a7923/logo.png differ diff --git a/blockchains/ethereum/assets/0xcE2834171F0FC397b46963E10331B38Ff635003d/info.json b/blockchains/ethereum/assets/0xcE2834171F0FC397b46963E10331B38Ff635003d/info.json new file mode 100644 index 00000000..fc4a6d55 --- /dev/null +++ b/blockchains/ethereum/assets/0xcE2834171F0FC397b46963E10331B38Ff635003d/info.json @@ -0,0 +1,11 @@ +{ + "name": "UTXO Token", + "symbol": "UTB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcE2834171F0FC397b46963E10331B38Ff635003d", + "status": "abandoned", + "id": "0xcE2834171F0FC397b46963E10331B38Ff635003d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcE2834171F0FC397b46963E10331B38Ff635003d/logo.png b/blockchains/ethereum/assets/0xcE2834171F0FC397b46963E10331B38Ff635003d/logo.png new file mode 100644 index 00000000..de193451 Binary files /dev/null and b/blockchains/ethereum/assets/0xcE2834171F0FC397b46963E10331B38Ff635003d/logo.png differ diff --git a/blockchains/ethereum/assets/0xcE8089fF023dF2db04b56d2d5156681144a86b82/info.json b/blockchains/ethereum/assets/0xcE8089fF023dF2db04b56d2d5156681144a86b82/info.json new file mode 100644 index 00000000..76328e35 --- /dev/null +++ b/blockchains/ethereum/assets/0xcE8089fF023dF2db04b56d2d5156681144a86b82/info.json @@ -0,0 +1,11 @@ +{ + "name": "Good Game Gold", + "symbol": "GGG", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcE8089fF023dF2db04b56d2d5156681144a86b82", + "status": "abandoned", + "id": "0xcE8089fF023dF2db04b56d2d5156681144a86b82" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcE8089fF023dF2db04b56d2d5156681144a86b82/logo.png b/blockchains/ethereum/assets/0xcE8089fF023dF2db04b56d2d5156681144a86b82/logo.png new file mode 100644 index 00000000..d0c0b333 Binary files /dev/null and b/blockchains/ethereum/assets/0xcE8089fF023dF2db04b56d2d5156681144a86b82/logo.png differ diff --git a/blockchains/ethereum/assets/0xcEbc84E329467D4feA6351e9670d18819D6C9B9B/info.json b/blockchains/ethereum/assets/0xcEbc84E329467D4feA6351e9670d18819D6C9B9B/info.json new file mode 100644 index 00000000..6a6466df --- /dev/null +++ b/blockchains/ethereum/assets/0xcEbc84E329467D4feA6351e9670d18819D6C9B9B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Industry Chain", + "symbol": "DTC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcEbc84E329467D4feA6351e9670d18819D6C9B9B", + "status": "abandoned", + "id": "0xcEbc84E329467D4feA6351e9670d18819D6C9B9B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcEbc84E329467D4feA6351e9670d18819D6C9B9B/logo.png b/blockchains/ethereum/assets/0xcEbc84E329467D4feA6351e9670d18819D6C9B9B/logo.png new file mode 100644 index 00000000..55eea66a Binary files /dev/null and b/blockchains/ethereum/assets/0xcEbc84E329467D4feA6351e9670d18819D6C9B9B/logo.png differ diff --git a/blockchains/ethereum/assets/0xcEf46305D096fa876Dd23048bf80F9345282e3fc/info.json b/blockchains/ethereum/assets/0xcEf46305D096fa876Dd23048bf80F9345282e3fc/info.json new file mode 100644 index 00000000..00eded32 --- /dev/null +++ b/blockchains/ethereum/assets/0xcEf46305D096fa876Dd23048bf80F9345282e3fc/info.json @@ -0,0 +1,11 @@ +{ + "name": "BANQUEUNIVERSAL", + "symbol": "CBU", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://bankuniversal.org", + "explorer": "https://etherscan.io/token/0xcEf46305D096fa876Dd23048bf80F9345282e3fc", + "status": "abandoned", + "id": "0xcEf46305D096fa876Dd23048bf80F9345282e3fc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcEf46305D096fa876Dd23048bf80F9345282e3fc/logo.png b/blockchains/ethereum/assets/0xcEf46305D096fa876Dd23048bf80F9345282e3fc/logo.png new file mode 100644 index 00000000..4dc49d64 Binary files /dev/null and b/blockchains/ethereum/assets/0xcEf46305D096fa876Dd23048bf80F9345282e3fc/logo.png differ diff --git a/blockchains/ethereum/assets/0xcF1D879e7016d654584Bfa0487e10714d24c5eff/info.json b/blockchains/ethereum/assets/0xcF1D879e7016d654584Bfa0487e10714d24c5eff/info.json new file mode 100644 index 00000000..6eb3e21f --- /dev/null +++ b/blockchains/ethereum/assets/0xcF1D879e7016d654584Bfa0487e10714d24c5eff/info.json @@ -0,0 +1,11 @@ +{ + "name": "SEED SECURITY TOKEN INVESTMENT", + "symbol": "SEED", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcF1D879e7016d654584Bfa0487e10714d24c5eff", + "status": "abandoned", + "id": "0xcF1D879e7016d654584Bfa0487e10714d24c5eff" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcF1D879e7016d654584Bfa0487e10714d24c5eff/logo.png b/blockchains/ethereum/assets/0xcF1D879e7016d654584Bfa0487e10714d24c5eff/logo.png new file mode 100755 index 00000000..b0a8fbdd Binary files /dev/null and b/blockchains/ethereum/assets/0xcF1D879e7016d654584Bfa0487e10714d24c5eff/logo.png differ diff --git a/blockchains/ethereum/assets/0xcF5A0010072ef3B791792F2D0Ea9A07ed84695d1/info.json b/blockchains/ethereum/assets/0xcF5A0010072ef3B791792F2D0Ea9A07ed84695d1/info.json new file mode 100644 index 00000000..02f289ed --- /dev/null +++ b/blockchains/ethereum/assets/0xcF5A0010072ef3B791792F2D0Ea9A07ed84695d1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Krakatau Token", + "symbol": "KKT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcF5A0010072ef3B791792F2D0Ea9A07ed84695d1", + "status": "abandoned", + "id": "0xcF5A0010072ef3B791792F2D0Ea9A07ed84695d1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcF5A0010072ef3B791792F2D0Ea9A07ed84695d1/logo.png b/blockchains/ethereum/assets/0xcF5A0010072ef3B791792F2D0Ea9A07ed84695d1/logo.png new file mode 100644 index 00000000..1ebba33c Binary files /dev/null and b/blockchains/ethereum/assets/0xcF5A0010072ef3B791792F2D0Ea9A07ed84695d1/logo.png differ diff --git a/blockchains/ethereum/assets/0xcF6A236226DDE0C1eD87BbF933F75f44A8B6FA38/info.json b/blockchains/ethereum/assets/0xcF6A236226DDE0C1eD87BbF933F75f44A8B6FA38/info.json new file mode 100644 index 00000000..cc07c8da --- /dev/null +++ b/blockchains/ethereum/assets/0xcF6A236226DDE0C1eD87BbF933F75f44A8B6FA38/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unity", + "symbol": "UNITY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcF6A236226DDE0C1eD87BbF933F75f44A8B6FA38", + "status": "abandoned", + "id": "0xcF6A236226DDE0C1eD87BbF933F75f44A8B6FA38" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcF6A236226DDE0C1eD87BbF933F75f44A8B6FA38/logo.png b/blockchains/ethereum/assets/0xcF6A236226DDE0C1eD87BbF933F75f44A8B6FA38/logo.png new file mode 100644 index 00000000..adb506da Binary files /dev/null and b/blockchains/ethereum/assets/0xcF6A236226DDE0C1eD87BbF933F75f44A8B6FA38/logo.png differ diff --git a/blockchains/ethereum/assets/0xcF78C7dD70d6F30F6E3609e905e78305Da98c863/info.json b/blockchains/ethereum/assets/0xcF78C7dD70d6F30F6E3609e905e78305Da98c863/info.json new file mode 100644 index 00000000..ebc41f53 --- /dev/null +++ b/blockchains/ethereum/assets/0xcF78C7dD70d6F30F6E3609e905e78305Da98c863/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ownix", + "type": "ERC20", + "symbol": "ONX", + "decimals": 18, + "website": "https://ownix.com/", + "description": "Forget everything you know About owning things. ownix - The most dynamic NFT platform of our digital era. Presenting a huge collection of artworks, moments and digital assets - a total experience for the creators and collectors around the world", + "explorer": "https://etherscan.io/token/0xcF78C7dD70d6F30F6E3609e905e78305Da98c863", + "status": "active", + "id": "0xcF78C7dD70d6F30F6E3609e905e78305Da98c863", + "links": [ + { + "name": "x", + "url": "https://x.com/Ownix_nft" + }, + { + "name": "telegram", + "url": "https://t.me/ownixglobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcF78C7dD70d6F30F6E3609e905e78305Da98c863/logo.png b/blockchains/ethereum/assets/0xcF78C7dD70d6F30F6E3609e905e78305Da98c863/logo.png new file mode 100644 index 00000000..f506d974 Binary files /dev/null and b/blockchains/ethereum/assets/0xcF78C7dD70d6F30F6E3609e905e78305Da98c863/logo.png differ diff --git a/blockchains/ethereum/assets/0xcF7d119BCb6822283003adc7c1a40E9ae7097B75/info.json b/blockchains/ethereum/assets/0xcF7d119BCb6822283003adc7c1a40E9ae7097B75/info.json new file mode 100644 index 00000000..507ec4b7 --- /dev/null +++ b/blockchains/ethereum/assets/0xcF7d119BCb6822283003adc7c1a40E9ae7097B75/info.json @@ -0,0 +1,11 @@ +{ + "name": "Star Pacific Coin", + "symbol": "💲PC", + "type": "ERC20", + "decimals": 1, + "description": "Star Pacific Coin is an ERC20 Token design to make crypto mining and crypto trading easier for everyone, using our genetic algorithm trained machine learning technology computer with even low configure are capable of mining crypto too.", + "website": "https://www.starpacific.trade/", + "explorer": "https://etherscan.io/token/0xcF7d119BCb6822283003adc7c1a40E9ae7097B75", + "status": "active", + "id": "0xcF7d119BCb6822283003adc7c1a40E9ae7097B75" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcF7d119BCb6822283003adc7c1a40E9ae7097B75/logo.png b/blockchains/ethereum/assets/0xcF7d119BCb6822283003adc7c1a40E9ae7097B75/logo.png new file mode 100644 index 00000000..955e8786 Binary files /dev/null and b/blockchains/ethereum/assets/0xcF7d119BCb6822283003adc7c1a40E9ae7097B75/logo.png differ diff --git a/blockchains/ethereum/assets/0xcFD6Ae8BF13f42DE14867351eAff7A8A3b9FbBe7/info.json b/blockchains/ethereum/assets/0xcFD6Ae8BF13f42DE14867351eAff7A8A3b9FbBe7/info.json new file mode 100644 index 00000000..32b72521 --- /dev/null +++ b/blockchains/ethereum/assets/0xcFD6Ae8BF13f42DE14867351eAff7A8A3b9FbBe7/info.json @@ -0,0 +1,11 @@ +{ + "name": "SINERGIA", + "symbol": "SNG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://sinergiablockchain.org/ICOPROJECT/ICO.html", + "explorer": "https://etherscan.io/token/0xcFD6Ae8BF13f42DE14867351eAff7A8A3b9FbBe7", + "status": "abandoned", + "id": "0xcFD6Ae8BF13f42DE14867351eAff7A8A3b9FbBe7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcFD6Ae8BF13f42DE14867351eAff7A8A3b9FbBe7/logo.png b/blockchains/ethereum/assets/0xcFD6Ae8BF13f42DE14867351eAff7A8A3b9FbBe7/logo.png new file mode 100644 index 00000000..8a086ad0 Binary files /dev/null and b/blockchains/ethereum/assets/0xcFD6Ae8BF13f42DE14867351eAff7A8A3b9FbBe7/logo.png differ diff --git a/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/info.json b/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/info.json new file mode 100644 index 00000000..e51a783b --- /dev/null +++ b/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/info.json @@ -0,0 +1,44 @@ +{ + "name": "vEmpire DDAO", + "type": "ERC20", + "symbol": "VEMP", + "decimals": 18, + "website": "https://v-empire.digital", + "description": "vEmpire DDAO is the world’s largest Decentralized Metaverse Investment Organization. The official vEmpire protocol incorporates different strategies to incentivize Metaverse token staking to fund the battle against centralisation.", + "explorer": "https://etherscan.io/token/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC", + "status": "active", + "id": "0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vempire-ddao/" + }, + { + "name": "x", + "url": "https://x.com/vEmpiredigital" + }, + { + "name": "telegram", + "url": "https://t.me/vEmpirediscussion" + }, + { + "name": "facebook", + "url": "https://facebook.com/vEmpireDDAO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vempire-ddao/" + }, + { + "name": "whitepaper", + "url": "https://v-empire.digital/whitepaper" + }, + { + "name": "blog", + "url": "https://medium.com/@v-empire.digital" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/logo.png b/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/logo.png new file mode 100644 index 00000000..a83d58a2 Binary files /dev/null and b/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/logo.png differ diff --git a/blockchains/ethereum/assets/0xcFbf70e33d5163E25B0dad73955c1BD9E8cd8BA2/info.json b/blockchains/ethereum/assets/0xcFbf70e33d5163E25B0dad73955c1BD9E8cd8BA2/info.json new file mode 100644 index 00000000..ec593689 --- /dev/null +++ b/blockchains/ethereum/assets/0xcFbf70e33d5163E25B0dad73955c1BD9E8cd8BA2/info.json @@ -0,0 +1,11 @@ +{ + "name": "WINS LIVE", + "symbol": "WNL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://winstars.live", + "explorer": "https://etherscan.io/token/0xcFbf70e33d5163E25B0dad73955c1BD9E8cd8BA2", + "status": "active", + "id": "0xcFbf70e33d5163E25B0dad73955c1BD9E8cd8BA2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcFbf70e33d5163E25B0dad73955c1BD9E8cd8BA2/logo.png b/blockchains/ethereum/assets/0xcFbf70e33d5163E25B0dad73955c1BD9E8cd8BA2/logo.png new file mode 100644 index 00000000..15bd4919 Binary files /dev/null and b/blockchains/ethereum/assets/0xcFbf70e33d5163E25B0dad73955c1BD9E8cd8BA2/logo.png differ diff --git a/blockchains/ethereum/assets/0xca00bC15f67Ebea4b20DfaAa847CAcE113cc5501/info.json b/blockchains/ethereum/assets/0xca00bC15f67Ebea4b20DfaAa847CAcE113cc5501/info.json new file mode 100644 index 00000000..f2295dd6 --- /dev/null +++ b/blockchains/ethereum/assets/0xca00bC15f67Ebea4b20DfaAa847CAcE113cc5501/info.json @@ -0,0 +1,11 @@ +{ + "name": "CapdaxToken", + "symbol": "XCD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.capdax.com/", + "explorer": "https://etherscan.io/token/0xca00bC15f67Ebea4b20DfaAa847CAcE113cc5501", + "status": "abandoned", + "id": "0xca00bC15f67Ebea4b20DfaAa847CAcE113cc5501" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xca00bC15f67Ebea4b20DfaAa847CAcE113cc5501/logo.png b/blockchains/ethereum/assets/0xca00bC15f67Ebea4b20DfaAa847CAcE113cc5501/logo.png new file mode 100644 index 00000000..25d22c03 Binary files /dev/null and b/blockchains/ethereum/assets/0xca00bC15f67Ebea4b20DfaAa847CAcE113cc5501/logo.png differ diff --git a/blockchains/ethereum/assets/0xca0cB90D02a43C673ACb6927C496980d369c9F89/info.json b/blockchains/ethereum/assets/0xca0cB90D02a43C673ACb6927C496980d369c9F89/info.json new file mode 100644 index 00000000..74874ba2 --- /dev/null +++ b/blockchains/ethereum/assets/0xca0cB90D02a43C673ACb6927C496980d369c9F89/info.json @@ -0,0 +1,11 @@ +{ + "name": "MOSAIC", + "symbol": "MOS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xca0cB90D02a43C673ACb6927C496980d369c9F89", + "status": "abandoned", + "id": "0xca0cB90D02a43C673ACb6927C496980d369c9F89" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xca0cB90D02a43C673ACb6927C496980d369c9F89/logo.png b/blockchains/ethereum/assets/0xca0cB90D02a43C673ACb6927C496980d369c9F89/logo.png new file mode 100644 index 00000000..48d247aa Binary files /dev/null and b/blockchains/ethereum/assets/0xca0cB90D02a43C673ACb6927C496980d369c9F89/logo.png differ diff --git a/blockchains/ethereum/assets/0xca1207647Ff814039530D7d35df0e1Dd2e91Fa84/info.json b/blockchains/ethereum/assets/0xca1207647Ff814039530D7d35df0e1Dd2e91Fa84/info.json new file mode 100644 index 00000000..48f5c4dd --- /dev/null +++ b/blockchains/ethereum/assets/0xca1207647Ff814039530D7d35df0e1Dd2e91Fa84/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://etherscan.io/token/0xca1207647Ff814039530D7d35df0e1Dd2e91Fa84", + "type": "ERC20", + "symbol": "DHT", + "decimals": 18, + "status": "active", + "id": "0xca1207647Ff814039530D7d35df0e1Dd2e91Fa84", + "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/ethereum/assets/0xca1207647Ff814039530D7d35df0e1Dd2e91Fa84/logo.png b/blockchains/ethereum/assets/0xca1207647Ff814039530D7d35df0e1Dd2e91Fa84/logo.png new file mode 100644 index 00000000..8bdc36d7 Binary files /dev/null and b/blockchains/ethereum/assets/0xca1207647Ff814039530D7d35df0e1Dd2e91Fa84/logo.png differ diff --git a/blockchains/ethereum/assets/0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A/info.json b/blockchains/ethereum/assets/0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A/info.json new file mode 100644 index 00000000..5d48f3dd --- /dev/null +++ b/blockchains/ethereum/assets/0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Big Oily Orange Boob", + "type": "ERC20", + "symbol": "$BOOB", + "decimals": 9, + "website": "https://coinboob.com", + "description": "Big Oily Orange Boob ($BOOB) is an innovative community token with a serious motive: we intend to raise awareness & funds for breast cancer. Indeed, women have been left out of most projects so far. Buy building partnerships with influent female role model, we will change that.", + "explorer": "https://etherscan.io/token/0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A", + "status": "active", + "id": "0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A/logo.png b/blockchains/ethereum/assets/0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A/logo.png new file mode 100644 index 00000000..2f7d004f Binary files /dev/null and b/blockchains/ethereum/assets/0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A/logo.png differ diff --git a/blockchains/ethereum/assets/0xca694eb79eF355eA0999485d211E68F39aE98493/info.json b/blockchains/ethereum/assets/0xca694eb79eF355eA0999485d211E68F39aE98493/info.json new file mode 100644 index 00000000..4f1a1086 --- /dev/null +++ b/blockchains/ethereum/assets/0xca694eb79eF355eA0999485d211E68F39aE98493/info.json @@ -0,0 +1,11 @@ +{ + "name": "Traceability Chain Coin", + "symbol": "TAC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://tacchain.io/", + "explorer": "https://etherscan.io/token/0xca694eb79eF355eA0999485d211E68F39aE98493", + "status": "abandoned", + "id": "0xca694eb79eF355eA0999485d211E68F39aE98493" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xca694eb79eF355eA0999485d211E68F39aE98493/logo.png b/blockchains/ethereum/assets/0xca694eb79eF355eA0999485d211E68F39aE98493/logo.png new file mode 100644 index 00000000..4f20c1c5 Binary files /dev/null and b/blockchains/ethereum/assets/0xca694eb79eF355eA0999485d211E68F39aE98493/logo.png differ diff --git a/blockchains/ethereum/assets/0xca9d97c6C7D5a0cE89371880037cc23866e2264d/info.json b/blockchains/ethereum/assets/0xca9d97c6C7D5a0cE89371880037cc23866e2264d/info.json new file mode 100644 index 00000000..ef6125e6 --- /dev/null +++ b/blockchains/ethereum/assets/0xca9d97c6C7D5a0cE89371880037cc23866e2264d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coinance X Token", + "symbol": "CXT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xca9d97c6C7D5a0cE89371880037cc23866e2264d", + "status": "abandoned", + "id": "0xca9d97c6C7D5a0cE89371880037cc23866e2264d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xca9d97c6C7D5a0cE89371880037cc23866e2264d/logo.png b/blockchains/ethereum/assets/0xca9d97c6C7D5a0cE89371880037cc23866e2264d/logo.png new file mode 100644 index 00000000..5d544d4d Binary files /dev/null and b/blockchains/ethereum/assets/0xca9d97c6C7D5a0cE89371880037cc23866e2264d/logo.png differ diff --git a/blockchains/ethereum/assets/0xcaD49C39B72c37B32cEe8b14F33F316D3a8bC335/info.json b/blockchains/ethereum/assets/0xcaD49C39B72c37B32cEe8b14F33F316D3a8bC335/info.json new file mode 100644 index 00000000..2bb0b016 --- /dev/null +++ b/blockchains/ethereum/assets/0xcaD49C39B72c37B32cEe8b14F33F316D3a8bC335/info.json @@ -0,0 +1,11 @@ +{ + "name": "SODA Coin", + "symbol": "SOC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcaD49C39B72c37B32cEe8b14F33F316D3a8bC335", + "status": "abandoned", + "id": "0xcaD49C39B72c37B32cEe8b14F33F316D3a8bC335" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcaD49C39B72c37B32cEe8b14F33F316D3a8bC335/logo.png b/blockchains/ethereum/assets/0xcaD49C39B72c37B32cEe8b14F33F316D3a8bC335/logo.png new file mode 100644 index 00000000..fe3a8e37 Binary files /dev/null and b/blockchains/ethereum/assets/0xcaD49C39B72c37B32cEe8b14F33F316D3a8bC335/logo.png differ diff --git a/blockchains/ethereum/assets/0xcafdC517691FCf4d1186953F02F19cEd50EFc9E2/info.json b/blockchains/ethereum/assets/0xcafdC517691FCf4d1186953F02F19cEd50EFc9E2/info.json new file mode 100644 index 00000000..ca148407 --- /dev/null +++ b/blockchains/ethereum/assets/0xcafdC517691FCf4d1186953F02F19cEd50EFc9E2/info.json @@ -0,0 +1,11 @@ +{ + "name": "ExhibitToken", + "symbol": "EXBT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://exitoken.co/", + "explorer": "https://etherscan.io/token/0xcafdC517691FCf4d1186953F02F19cEd50EFc9E2", + "status": "abandoned", + "id": "0xcafdC517691FCf4d1186953F02F19cEd50EFc9E2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcafdC517691FCf4d1186953F02F19cEd50EFc9E2/logo.png b/blockchains/ethereum/assets/0xcafdC517691FCf4d1186953F02F19cEd50EFc9E2/logo.png new file mode 100755 index 00000000..3ea4b132 Binary files /dev/null and b/blockchains/ethereum/assets/0xcafdC517691FCf4d1186953F02F19cEd50EFc9E2/logo.png differ diff --git a/blockchains/ethereum/assets/0xcb03bec536843D338ac138205a6689d4cDc11046/info.json b/blockchains/ethereum/assets/0xcb03bec536843D338ac138205a6689d4cDc11046/info.json new file mode 100644 index 00000000..ae1c4e1b --- /dev/null +++ b/blockchains/ethereum/assets/0xcb03bec536843D338ac138205a6689d4cDc11046/info.json @@ -0,0 +1,11 @@ +{ + "name": "ABPT Crypto", + "symbol": "ABPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcb03bec536843D338ac138205a6689d4cDc11046", + "status": "abandoned", + "id": "0xcb03bec536843D338ac138205a6689d4cDc11046" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcb03bec536843D338ac138205a6689d4cDc11046/logo.png b/blockchains/ethereum/assets/0xcb03bec536843D338ac138205a6689d4cDc11046/logo.png new file mode 100644 index 00000000..b7932332 Binary files /dev/null and b/blockchains/ethereum/assets/0xcb03bec536843D338ac138205a6689d4cDc11046/logo.png differ diff --git a/blockchains/ethereum/assets/0xcb0797AAca2fd4eDd3BF07E7157d40322629Af8B/info.json b/blockchains/ethereum/assets/0xcb0797AAca2fd4eDd3BF07E7157d40322629Af8B/info.json new file mode 100644 index 00000000..0d02e1ea --- /dev/null +++ b/blockchains/ethereum/assets/0xcb0797AAca2fd4eDd3BF07E7157d40322629Af8B/info.json @@ -0,0 +1,11 @@ +{ + "name": "SlowMist Zone Token", + "symbol": "SLOWMIST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcb0797AAca2fd4eDd3BF07E7157d40322629Af8B", + "status": "abandoned", + "id": "0xcb0797AAca2fd4eDd3BF07E7157d40322629Af8B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcb0797AAca2fd4eDd3BF07E7157d40322629Af8B/logo.png b/blockchains/ethereum/assets/0xcb0797AAca2fd4eDd3BF07E7157d40322629Af8B/logo.png new file mode 100644 index 00000000..113ffe1d Binary files /dev/null and b/blockchains/ethereum/assets/0xcb0797AAca2fd4eDd3BF07E7157d40322629Af8B/logo.png differ diff --git a/blockchains/ethereum/assets/0xcb1592591996765Ec0eFc1f92599A19767ee5ffA/info.json b/blockchains/ethereum/assets/0xcb1592591996765Ec0eFc1f92599A19767ee5ffA/info.json new file mode 100644 index 00000000..916a9db5 --- /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 00000000..872b92a5 Binary files /dev/null and b/blockchains/ethereum/assets/0xcb1592591996765Ec0eFc1f92599A19767ee5ffA/logo.png differ diff --git a/blockchains/ethereum/assets/0xcb17cD357c7acD594717D899ecb9df540F633F27/info.json b/blockchains/ethereum/assets/0xcb17cD357c7acD594717D899ecb9df540F633F27/info.json new file mode 100644 index 00000000..65b36610 --- /dev/null +++ b/blockchains/ethereum/assets/0xcb17cD357c7acD594717D899ecb9df540F633F27/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinDeal Token", + "symbol": "CDL", + "type": "ERC20", + "decimals": 18, + "description": "CoinDeal presents one of the easiest options to earn money on the exchange.", + "website": "https://token.coindeal.com", + "explorer": "https://etherscan.io/token/0xcb17cD357c7acD594717D899ecb9df540F633F27", + "status": "active", + "id": "0xcb17cD357c7acD594717D899ecb9df540F633F27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcb17cD357c7acD594717D899ecb9df540F633F27/logo.png b/blockchains/ethereum/assets/0xcb17cD357c7acD594717D899ecb9df540F633F27/logo.png new file mode 100644 index 00000000..56b21879 Binary files /dev/null and b/blockchains/ethereum/assets/0xcb17cD357c7acD594717D899ecb9df540F633F27/logo.png differ diff --git a/blockchains/ethereum/assets/0xcb33BA014340AAc7644184772c4C5f431b3e1aD9/info.json b/blockchains/ethereum/assets/0xcb33BA014340AAc7644184772c4C5f431b3e1aD9/info.json new file mode 100644 index 00000000..c35b86b1 --- /dev/null +++ b/blockchains/ethereum/assets/0xcb33BA014340AAc7644184772c4C5f431b3e1aD9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Basic business chain", + "symbol": "BBC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcb33BA014340AAc7644184772c4C5f431b3e1aD9", + "status": "abandoned", + "id": "0xcb33BA014340AAc7644184772c4C5f431b3e1aD9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcb33BA014340AAc7644184772c4C5f431b3e1aD9/logo.png b/blockchains/ethereum/assets/0xcb33BA014340AAc7644184772c4C5f431b3e1aD9/logo.png new file mode 100644 index 00000000..25f12d7b Binary files /dev/null and b/blockchains/ethereum/assets/0xcb33BA014340AAc7644184772c4C5f431b3e1aD9/logo.png differ diff --git a/blockchains/ethereum/assets/0xcb46C550539ac3DB72dc7aF7c89B11c306C727c2/info.json b/blockchains/ethereum/assets/0xcb46C550539ac3DB72dc7aF7c89B11c306C727c2/info.json new file mode 100644 index 00000000..6b559ad1 --- /dev/null +++ b/blockchains/ethereum/assets/0xcb46C550539ac3DB72dc7aF7c89B11c306C727c2/info.json @@ -0,0 +1,15 @@ +{ + "name": "Poly Ontology Token", + "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", + "research": "https://research.binance.com/en/projects/ontology", + "type": "ERC20", + "symbol": "ONT", + "decimals": 18, + "status": "active", + "id": "0xcb46C550539ac3DB72dc7aF7c89B11c306C727c2", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcb46C550539ac3DB72dc7aF7c89B11c306C727c2/logo.png b/blockchains/ethereum/assets/0xcb46C550539ac3DB72dc7aF7c89B11c306C727c2/logo.png new file mode 100644 index 00000000..25ffd17b Binary files /dev/null and b/blockchains/ethereum/assets/0xcb46C550539ac3DB72dc7aF7c89B11c306C727c2/logo.png differ diff --git a/blockchains/ethereum/assets/0xcb86c6A22CB56B6cf40CaFEDb06BA0DF188a416E/info.json b/blockchains/ethereum/assets/0xcb86c6A22CB56B6cf40CaFEDb06BA0DF188a416E/info.json new file mode 100644 index 00000000..324fd778 --- /dev/null +++ b/blockchains/ethereum/assets/0xcb86c6A22CB56B6cf40CaFEDb06BA0DF188a416E/info.json @@ -0,0 +1,14 @@ +{ + "name": "inSure", + "type": "ERC20", + "symbol": "SURE", + "decimals": 18, + "website": "https://insuretoken.net/", + "description": "inSure DeFi is a Decentralized Insurance Ecosystem, trusted by thousands of community members to protect their crypto portfolios from scams, exchange closures, and drastic devaluations. inSure DeFi provides insurance solutions for the crypto space to stabilize and secure Crypto & DeFi portfolios.", + "explorer": "https://etherscan.io/token/0xcb86c6a22cb56b6cf40cafedb06ba0df188a416e", + "status": "active", + "id": "0xcb86c6A22CB56B6cf40CaFEDb06BA0DF188a416E", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcb86c6A22CB56B6cf40CaFEDb06BA0DF188a416E/logo.png b/blockchains/ethereum/assets/0xcb86c6A22CB56B6cf40CaFEDb06BA0DF188a416E/logo.png new file mode 100644 index 00000000..5fbabcc4 Binary files /dev/null and b/blockchains/ethereum/assets/0xcb86c6A22CB56B6cf40CaFEDb06BA0DF188a416E/logo.png differ diff --git a/blockchains/ethereum/assets/0xcbCC0F036ED4788F63FC0fEE32873d6A7487b908/info.json b/blockchains/ethereum/assets/0xcbCC0F036ED4788F63FC0fEE32873d6A7487b908/info.json new file mode 100644 index 00000000..7eb15cbe --- /dev/null +++ b/blockchains/ethereum/assets/0xcbCC0F036ED4788F63FC0fEE32873d6A7487b908/info.json @@ -0,0 +1,11 @@ +{ + "name": "Humaniq", + "symbol": "HMQ", + "type": "ERC20", + "decimals": 8, + "description": "Humaniq (HMQ) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://humaniq.co", + "explorer": "https://etherscan.io/token/0xcbCC0F036ED4788F63FC0fEE32873d6A7487b908", + "status": "active", + "id": "0xcbCC0F036ED4788F63FC0fEE32873d6A7487b908" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcbCC0F036ED4788F63FC0fEE32873d6A7487b908/logo.png b/blockchains/ethereum/assets/0xcbCC0F036ED4788F63FC0fEE32873d6A7487b908/logo.png new file mode 100755 index 00000000..45d7b1ec Binary files /dev/null and b/blockchains/ethereum/assets/0xcbCC0F036ED4788F63FC0fEE32873d6A7487b908/logo.png differ diff --git a/blockchains/ethereum/assets/0xcbE771323587EA16dACB6016e269D7F08A7ACC4E/info.json b/blockchains/ethereum/assets/0xcbE771323587EA16dACB6016e269D7F08A7ACC4E/info.json new file mode 100644 index 00000000..54666a50 --- /dev/null +++ b/blockchains/ethereum/assets/0xcbE771323587EA16dACB6016e269D7F08A7ACC4E/info.json @@ -0,0 +1,29 @@ +{ + "name": "SPO Token", + "website": "https://spores.app", + "description": "SPO token is designed for community governance and DeFi utilization with NFT-creator-centricity and DeFi-community-driven purpose. SPO is used to incentivize NFT creators, buyers, agents, liquidity providers across the ecosystem.", + "explorer": "https://etherscan.io/token/0xcbe771323587ea16dacb6016e269d7f08a7acc4e", + "type": "ERC20", + "symbol": "SPO", + "decimals": 18, + "status": "active", + "id": "0xcbE771323587EA16dACB6016e269D7F08A7ACC4E", + "links": [ + { + "name": "x", + "url": "https://x.com/Spores_Network" + }, + { + "name": "medium", + "url": "https://spores.medium.com" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/spores-network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spores-network" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcbE771323587EA16dACB6016e269D7F08A7ACC4E/logo.png b/blockchains/ethereum/assets/0xcbE771323587EA16dACB6016e269D7F08A7ACC4E/logo.png new file mode 100644 index 00000000..755e925c Binary files /dev/null and b/blockchains/ethereum/assets/0xcbE771323587EA16dACB6016e269D7F08A7ACC4E/logo.png differ diff --git a/blockchains/ethereum/assets/0xcbd55D4fFc43467142761A764763652b48b969ff/info.json b/blockchains/ethereum/assets/0xcbd55D4fFc43467142761A764763652b48b969ff/info.json new file mode 100644 index 00000000..78003599 --- /dev/null +++ b/blockchains/ethereum/assets/0xcbd55D4fFc43467142761A764763652b48b969ff/info.json @@ -0,0 +1,29 @@ +{ + "name": "AstroTools", + "website": "https://astrotools.io/", + "description": "AstroTools is a DeFi dashboard that bridges the information gap between centralized and decentralized exchanges.", + "explorer": "https://etherscan.io/token/0xcbd55D4fFc43467142761A764763652b48b969ff", + "type": "ERC20", + "symbol": "ASTRO", + "decimals": 18, + "status": "active", + "id": "0xcbd55D4fFc43467142761A764763652b48b969ff", + "links": [ + { + "name": "telegram", + "url": "https://t.me/astrotoolsio" + }, + { + "name": "x", + "url": "https://x.com/Astro_Tools" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/astrotools/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/astrotools/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcbd55D4fFc43467142761A764763652b48b969ff/logo.png b/blockchains/ethereum/assets/0xcbd55D4fFc43467142761A764763652b48b969ff/logo.png new file mode 100644 index 00000000..bc7a7f85 Binary files /dev/null and b/blockchains/ethereum/assets/0xcbd55D4fFc43467142761A764763652b48b969ff/logo.png differ diff --git a/blockchains/ethereum/assets/0xcbdFAD49DAD16A992978f2767506a0f3f11aE9C7/info.json b/blockchains/ethereum/assets/0xcbdFAD49DAD16A992978f2767506a0f3f11aE9C7/info.json new file mode 100644 index 00000000..86b73a10 --- /dev/null +++ b/blockchains/ethereum/assets/0xcbdFAD49DAD16A992978f2767506a0f3f11aE9C7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Game Magic", + "symbol": "GAME", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcbdFAD49DAD16A992978f2767506a0f3f11aE9C7", + "status": "abandoned", + "id": "0xcbdFAD49DAD16A992978f2767506a0f3f11aE9C7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcbdFAD49DAD16A992978f2767506a0f3f11aE9C7/logo.png b/blockchains/ethereum/assets/0xcbdFAD49DAD16A992978f2767506a0f3f11aE9C7/logo.png new file mode 100755 index 00000000..fce19053 Binary files /dev/null and b/blockchains/ethereum/assets/0xcbdFAD49DAD16A992978f2767506a0f3f11aE9C7/logo.png differ diff --git a/blockchains/ethereum/assets/0xcbeAEc699431857FDB4d37aDDBBdc20E132D4903/info.json b/blockchains/ethereum/assets/0xcbeAEc699431857FDB4d37aDDBBdc20E132D4903/info.json new file mode 100644 index 00000000..03ebd4b8 --- /dev/null +++ b/blockchains/ethereum/assets/0xcbeAEc699431857FDB4d37aDDBBdc20E132D4903/info.json @@ -0,0 +1,11 @@ +{ + "name": "YOYOW Token", + "symbol": "YOYOW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://yoyow.org/", + "explorer": "https://etherscan.io/token/0xcbeAEc699431857FDB4d37aDDBBdc20E132D4903", + "status": "abandoned", + "id": "0xcbeAEc699431857FDB4d37aDDBBdc20E132D4903" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcbeAEc699431857FDB4d37aDDBBdc20E132D4903/logo.png b/blockchains/ethereum/assets/0xcbeAEc699431857FDB4d37aDDBBdc20E132D4903/logo.png new file mode 100755 index 00000000..231bed93 Binary files /dev/null and b/blockchains/ethereum/assets/0xcbeAEc699431857FDB4d37aDDBBdc20E132D4903/logo.png differ diff --git a/blockchains/ethereum/assets/0xcbf15FB8246F679F9Df0135881CB29a3746f734b/info.json b/blockchains/ethereum/assets/0xcbf15FB8246F679F9Df0135881CB29a3746f734b/info.json new file mode 100644 index 00000000..749aeefc --- /dev/null +++ b/blockchains/ethereum/assets/0xcbf15FB8246F679F9Df0135881CB29a3746f734b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bither Platform Token", + "symbol": "BTR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcbf15FB8246F679F9Df0135881CB29a3746f734b", + "status": "abandoned", + "id": "0xcbf15FB8246F679F9Df0135881CB29a3746f734b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcbf15FB8246F679F9Df0135881CB29a3746f734b/logo.png b/blockchains/ethereum/assets/0xcbf15FB8246F679F9Df0135881CB29a3746f734b/logo.png new file mode 100644 index 00000000..df2dcf18 Binary files /dev/null and b/blockchains/ethereum/assets/0xcbf15FB8246F679F9Df0135881CB29a3746f734b/logo.png differ diff --git a/blockchains/ethereum/assets/0xcc0eC876191558De23c8D122483F30382651674F/info.json b/blockchains/ethereum/assets/0xcc0eC876191558De23c8D122483F30382651674F/info.json new file mode 100644 index 00000000..fe88b1b1 --- /dev/null +++ b/blockchains/ethereum/assets/0xcc0eC876191558De23c8D122483F30382651674F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Exodo", + "symbol": "EXD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcc0eC876191558De23c8D122483F30382651674F", + "status": "abandoned", + "id": "0xcc0eC876191558De23c8D122483F30382651674F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcc0eC876191558De23c8D122483F30382651674F/logo.png b/blockchains/ethereum/assets/0xcc0eC876191558De23c8D122483F30382651674F/logo.png new file mode 100644 index 00000000..e4fec97a Binary files /dev/null and b/blockchains/ethereum/assets/0xcc0eC876191558De23c8D122483F30382651674F/logo.png differ diff --git a/blockchains/ethereum/assets/0xcc53C2E5e2421cb5a5307Ed1C229816d71266292/info.json b/blockchains/ethereum/assets/0xcc53C2E5e2421cb5a5307Ed1C229816d71266292/info.json new file mode 100644 index 00000000..154bf2f8 --- /dev/null +++ b/blockchains/ethereum/assets/0xcc53C2E5e2421cb5a5307Ed1C229816d71266292/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoinus", + "symbol": "BITS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcc53C2E5e2421cb5a5307Ed1C229816d71266292", + "status": "abandoned", + "id": "0xcc53C2E5e2421cb5a5307Ed1C229816d71266292" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcc53C2E5e2421cb5a5307Ed1C229816d71266292/logo.png b/blockchains/ethereum/assets/0xcc53C2E5e2421cb5a5307Ed1C229816d71266292/logo.png new file mode 100644 index 00000000..54d8abf8 Binary files /dev/null and b/blockchains/ethereum/assets/0xcc53C2E5e2421cb5a5307Ed1C229816d71266292/logo.png differ diff --git a/blockchains/ethereum/assets/0xcc7ab8d78dBA187dC95bF3bB86e65E0C26d0041f/info.json b/blockchains/ethereum/assets/0xcc7ab8d78dBA187dC95bF3bB86e65E0C26d0041f/info.json new file mode 100644 index 00000000..ad81c3b5 --- /dev/null +++ b/blockchains/ethereum/assets/0xcc7ab8d78dBA187dC95bF3bB86e65E0C26d0041f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Spacelens", + "type": "ERC20", + "symbol": "SPACE", + "decimals": 18, + "website": "https://spacetoken.spacelens.com", + "description": "Spacelens is a decentralized eCommerce platform that allows anyone to buy and sell physical products, digital goods, and services around the world.", + "explorer": "https://etherscan.io/token/0xcc7ab8d78dba187dc95bf3bb86e65e0c26d0041f", + "status": "active", + "id": "0xcc7ab8d78dBA187dC95bF3bB86e65E0C26d0041f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcc7ab8d78dBA187dC95bF3bB86e65E0C26d0041f/logo.png b/blockchains/ethereum/assets/0xcc7ab8d78dBA187dC95bF3bB86e65E0C26d0041f/logo.png new file mode 100644 index 00000000..d6b6f476 Binary files /dev/null and b/blockchains/ethereum/assets/0xcc7ab8d78dBA187dC95bF3bB86e65E0C26d0041f/logo.png differ diff --git a/blockchains/ethereum/assets/0xccB365D2e11aE4D6d74715c680f56cf58bF4bF10/info.json b/blockchains/ethereum/assets/0xccB365D2e11aE4D6d74715c680f56cf58bF4bF10/info.json new file mode 100644 index 00000000..4b3e9468 --- /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 00000000..12b6fc91 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 new file mode 100644 index 00000000..b7322ca7 --- /dev/null +++ b/blockchains/ethereum/assets/0xccC8cb5229B0ac8069C51fd58367Fd1e622aFD97/info.json @@ -0,0 +1,28 @@ +{ + "name": "Gods Unchained", + "website": "https://godsunchained.com", + "description": "THE TRADING CARD GAME THAT PAYS TO PLAY", + "explorer": "https://etherscan.io/token/0xccc8cb5229b0ac8069c51fd58367fd1e622afd97", + "type": "ERC20", + "symbol": "GODS", + "decimals": 18, + "status": "active", + "id": "0xccC8cb5229B0ac8069C51fd58367Fd1e622aFD97", + "tags": [ + "gamefi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/GodsUnchained" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/GodsUnchained/" + }, + { + "name": "facebook", + "url": "https://facebook.com/godsunchained/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xccC8cb5229B0ac8069C51fd58367Fd1e622aFD97/logo.png b/blockchains/ethereum/assets/0xccC8cb5229B0ac8069C51fd58367Fd1e622aFD97/logo.png new file mode 100644 index 00000000..55b737ad Binary files /dev/null and b/blockchains/ethereum/assets/0xccC8cb5229B0ac8069C51fd58367Fd1e622aFD97/logo.png differ diff --git a/blockchains/ethereum/assets/0xcca0c9c383076649604eE31b20248BC04FdF61cA/info.json b/blockchains/ethereum/assets/0xcca0c9c383076649604eE31b20248BC04FdF61cA/info.json new file mode 100644 index 00000000..e7e8cfb8 --- /dev/null +++ b/blockchains/ethereum/assets/0xcca0c9c383076649604eE31b20248BC04FdF61cA/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitMax token", + "symbol": "BTMX", + "type": "ERC20", + "decimals": 18, + "description": "BitMax Token (BTMX) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://bitmax.io/#/home", + "explorer": "https://etherscan.io/token/0xcca0c9c383076649604eE31b20248BC04FdF61cA", + "status": "active", + "id": "0xcca0c9c383076649604eE31b20248BC04FdF61cA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcca0c9c383076649604eE31b20248BC04FdF61cA/logo.png b/blockchains/ethereum/assets/0xcca0c9c383076649604eE31b20248BC04FdF61cA/logo.png new file mode 100644 index 00000000..cb73e805 Binary files /dev/null and b/blockchains/ethereum/assets/0xcca0c9c383076649604eE31b20248BC04FdF61cA/logo.png differ diff --git a/blockchains/ethereum/assets/0xcd23Ef2cBa177A1B5f5D3818d055868E4B599d18/info.json b/blockchains/ethereum/assets/0xcd23Ef2cBa177A1B5f5D3818d055868E4B599d18/info.json new file mode 100644 index 00000000..3b20bd30 --- /dev/null +++ b/blockchains/ethereum/assets/0xcd23Ef2cBa177A1B5f5D3818d055868E4B599d18/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moon Money Chain", + "symbol": "MM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://moonx.pro/", + "explorer": "https://etherscan.io/token/0xcd23Ef2cBa177A1B5f5D3818d055868E4B599d18", + "status": "abandoned", + "id": "0xcd23Ef2cBa177A1B5f5D3818d055868E4B599d18" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcd23Ef2cBa177A1B5f5D3818d055868E4B599d18/logo.png b/blockchains/ethereum/assets/0xcd23Ef2cBa177A1B5f5D3818d055868E4B599d18/logo.png new file mode 100644 index 00000000..2ee47ab9 Binary files /dev/null and b/blockchains/ethereum/assets/0xcd23Ef2cBa177A1B5f5D3818d055868E4B599d18/logo.png differ diff --git a/blockchains/ethereum/assets/0xcd607FDD69931675F50eA43D3488785367322B4e/info.json b/blockchains/ethereum/assets/0xcd607FDD69931675F50eA43D3488785367322B4e/info.json new file mode 100644 index 00000000..8046d9ac --- /dev/null +++ b/blockchains/ethereum/assets/0xcd607FDD69931675F50eA43D3488785367322B4e/info.json @@ -0,0 +1,11 @@ +{ + "name": "QuantumPay", + "symbol": "QPAY", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcd607FDD69931675F50eA43D3488785367322B4e", + "status": "abandoned", + "id": "0xcd607FDD69931675F50eA43D3488785367322B4e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcd607FDD69931675F50eA43D3488785367322B4e/logo.png b/blockchains/ethereum/assets/0xcd607FDD69931675F50eA43D3488785367322B4e/logo.png new file mode 100755 index 00000000..c086db73 Binary files /dev/null and b/blockchains/ethereum/assets/0xcd607FDD69931675F50eA43D3488785367322B4e/logo.png differ diff --git a/blockchains/ethereum/assets/0xcd7593259d601232f0BEe575bFaE3EE3cEF8280E/info.json b/blockchains/ethereum/assets/0xcd7593259d601232f0BEe575bFaE3EE3cEF8280E/info.json new file mode 100644 index 00000000..d1814d30 --- /dev/null +++ b/blockchains/ethereum/assets/0xcd7593259d601232f0BEe575bFaE3EE3cEF8280E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Smart Gear", + "symbol": "Gear", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcd7593259d601232f0BEe575bFaE3EE3cEF8280E", + "status": "abandoned", + "id": "0xcd7593259d601232f0BEe575bFaE3EE3cEF8280E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcd7593259d601232f0BEe575bFaE3EE3cEF8280E/logo.png b/blockchains/ethereum/assets/0xcd7593259d601232f0BEe575bFaE3EE3cEF8280E/logo.png new file mode 100644 index 00000000..604a0a11 Binary files /dev/null and b/blockchains/ethereum/assets/0xcd7593259d601232f0BEe575bFaE3EE3cEF8280E/logo.png differ diff --git a/blockchains/ethereum/assets/0xcd8352A5D8033C724C496c76aA3DFeeaE2141d0f/info.json b/blockchains/ethereum/assets/0xcd8352A5D8033C724C496c76aA3DFeeaE2141d0f/info.json new file mode 100644 index 00000000..f8baa485 --- /dev/null +++ b/blockchains/ethereum/assets/0xcd8352A5D8033C724C496c76aA3DFeeaE2141d0f/info.json @@ -0,0 +1,11 @@ +{ + "name": "goldfi.finance", + "symbol": "GOLD", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcd8352A5D8033C724C496c76aA3DFeeaE2141d0f", + "status": "abandoned", + "id": "0xcd8352A5D8033C724C496c76aA3DFeeaE2141d0f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcd8352A5D8033C724C496c76aA3DFeeaE2141d0f/logo.png b/blockchains/ethereum/assets/0xcd8352A5D8033C724C496c76aA3DFeeaE2141d0f/logo.png new file mode 100644 index 00000000..41321e46 Binary files /dev/null and b/blockchains/ethereum/assets/0xcd8352A5D8033C724C496c76aA3DFeeaE2141d0f/logo.png differ diff --git a/blockchains/ethereum/assets/0xcd9DE7C910cB7a435E4d3640f4398094DA876A5A/info.json b/blockchains/ethereum/assets/0xcd9DE7C910cB7a435E4d3640f4398094DA876A5A/info.json new file mode 100644 index 00000000..ab146096 --- /dev/null +++ b/blockchains/ethereum/assets/0xcd9DE7C910cB7a435E4d3640f4398094DA876A5A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Marconi Protocol", + "symbol": "MPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcd9DE7C910cB7a435E4d3640f4398094DA876A5A", + "status": "abandoned", + "id": "0xcd9DE7C910cB7a435E4d3640f4398094DA876A5A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcd9DE7C910cB7a435E4d3640f4398094DA876A5A/logo.png b/blockchains/ethereum/assets/0xcd9DE7C910cB7a435E4d3640f4398094DA876A5A/logo.png new file mode 100644 index 00000000..e6fd00ac Binary files /dev/null and b/blockchains/ethereum/assets/0xcd9DE7C910cB7a435E4d3640f4398094DA876A5A/logo.png differ diff --git a/blockchains/ethereum/assets/0xce11D811C7BdbDDbbAADcF11668551205d23AD6e/info.json b/blockchains/ethereum/assets/0xce11D811C7BdbDDbbAADcF11668551205d23AD6e/info.json new file mode 100644 index 00000000..e175029c --- /dev/null +++ b/blockchains/ethereum/assets/0xce11D811C7BdbDDbbAADcF11668551205d23AD6e/info.json @@ -0,0 +1,11 @@ +{ + "name": "All Beauty Community Gold", + "symbol": "ABCG", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xce11D811C7BdbDDbbAADcF11668551205d23AD6e", + "status": "abandoned", + "id": "0xce11D811C7BdbDDbbAADcF11668551205d23AD6e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xce11D811C7BdbDDbbAADcF11668551205d23AD6e/logo.png b/blockchains/ethereum/assets/0xce11D811C7BdbDDbbAADcF11668551205d23AD6e/logo.png new file mode 100755 index 00000000..b66ea436 Binary files /dev/null and b/blockchains/ethereum/assets/0xce11D811C7BdbDDbbAADcF11668551205d23AD6e/logo.png differ diff --git a/blockchains/ethereum/assets/0xce5114d7fa8361F0c088EE26FA3A5446C4a1f50b/info.json b/blockchains/ethereum/assets/0xce5114d7fa8361F0c088EE26FA3A5446C4a1f50b/info.json new file mode 100644 index 00000000..7d3d0a57 --- /dev/null +++ b/blockchains/ethereum/assets/0xce5114d7fa8361F0c088EE26FA3A5446C4a1f50b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blue Whale eXchange", + "symbol": "BWX", + "type": "ERC20", + "decimals": 18, + "description": "Our Blueprint for Decentralized Sharing Economy and Smart City Engine!", + "website": "https://www.bluewhale.foundation", + "explorer": "https://etherscan.io/token/0xce5114d7fa8361F0c088EE26FA3A5446C4a1f50b", + "status": "active", + "id": "0xce5114d7fa8361F0c088EE26FA3A5446C4a1f50b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xce5114d7fa8361F0c088EE26FA3A5446C4a1f50b/logo.png b/blockchains/ethereum/assets/0xce5114d7fa8361F0c088EE26FA3A5446C4a1f50b/logo.png new file mode 100644 index 00000000..09bcae5d Binary files /dev/null and b/blockchains/ethereum/assets/0xce5114d7fa8361F0c088EE26FA3A5446C4a1f50b/logo.png differ diff --git a/blockchains/ethereum/assets/0xce853db3359326dB6D03981C9fb42983BbCdd007/info.json b/blockchains/ethereum/assets/0xce853db3359326dB6D03981C9fb42983BbCdd007/info.json new file mode 100644 index 00000000..d17368c4 --- /dev/null +++ b/blockchains/ethereum/assets/0xce853db3359326dB6D03981C9fb42983BbCdd007/info.json @@ -0,0 +1,11 @@ +{ + "name": "Penis", + "symbol": "PNS", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "https://penis.supply", + "explorer": "https://etherscan.io/token/0xce853db3359326dB6D03981C9fb42983BbCdd007", + "status": "abandoned", + "id": "0xce853db3359326dB6D03981C9fb42983BbCdd007" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xce853db3359326dB6D03981C9fb42983BbCdd007/logo.png b/blockchains/ethereum/assets/0xce853db3359326dB6D03981C9fb42983BbCdd007/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0xce853db3359326dB6D03981C9fb42983BbCdd007/logo.png differ diff --git a/blockchains/ethereum/assets/0xce9e84a26Ddb9E2283De164F7eD595E0D27E32b3/info.json b/blockchains/ethereum/assets/0xce9e84a26Ddb9E2283De164F7eD595E0D27E32b3/info.json new file mode 100644 index 00000000..a106d902 --- /dev/null +++ b/blockchains/ethereum/assets/0xce9e84a26Ddb9E2283De164F7eD595E0D27E32b3/info.json @@ -0,0 +1,11 @@ +{ + "name": "TLS Token", + "symbol": "TLS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xce9e84a26Ddb9E2283De164F7eD595E0D27E32b3", + "status": "abandoned", + "id": "0xce9e84a26Ddb9E2283De164F7eD595E0D27E32b3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xce9e84a26Ddb9E2283De164F7eD595E0D27E32b3/logo.png b/blockchains/ethereum/assets/0xce9e84a26Ddb9E2283De164F7eD595E0D27E32b3/logo.png new file mode 100644 index 00000000..fd77c867 Binary files /dev/null and b/blockchains/ethereum/assets/0xce9e84a26Ddb9E2283De164F7eD595E0D27E32b3/logo.png differ diff --git a/blockchains/ethereum/assets/0xceB43cc2625db7Eb86c3a3A69A97d3DA1931A9A3/info.json b/blockchains/ethereum/assets/0xceB43cc2625db7Eb86c3a3A69A97d3DA1931A9A3/info.json new file mode 100644 index 00000000..612e5379 --- /dev/null +++ b/blockchains/ethereum/assets/0xceB43cc2625db7Eb86c3a3A69A97d3DA1931A9A3/info.json @@ -0,0 +1,11 @@ +{ + "name": "CST Token", + "symbol": "CST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xceB43cc2625db7Eb86c3a3A69A97d3DA1931A9A3", + "status": "abandoned", + "id": "0xceB43cc2625db7Eb86c3a3A69A97d3DA1931A9A3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xceB43cc2625db7Eb86c3a3A69A97d3DA1931A9A3/logo.png b/blockchains/ethereum/assets/0xceB43cc2625db7Eb86c3a3A69A97d3DA1931A9A3/logo.png new file mode 100644 index 00000000..b9dc4a76 Binary files /dev/null and b/blockchains/ethereum/assets/0xceB43cc2625db7Eb86c3a3A69A97d3DA1931A9A3/logo.png differ diff --git a/blockchains/ethereum/assets/0xceB8652de51C77245226eA8b35858114D41F1B99/info.json b/blockchains/ethereum/assets/0xceB8652de51C77245226eA8b35858114D41F1B99/info.json new file mode 100644 index 00000000..1170fbf4 --- /dev/null +++ b/blockchains/ethereum/assets/0xceB8652de51C77245226eA8b35858114D41F1B99/info.json @@ -0,0 +1,11 @@ +{ + "name": "Redin international co. Ltd.", + "symbol": "Redin", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xceB8652de51C77245226eA8b35858114D41F1B99", + "status": "abandoned", + "id": "0xceB8652de51C77245226eA8b35858114D41F1B99" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xceB8652de51C77245226eA8b35858114D41F1B99/logo.png b/blockchains/ethereum/assets/0xceB8652de51C77245226eA8b35858114D41F1B99/logo.png new file mode 100644 index 00000000..9f21d75d Binary files /dev/null and b/blockchains/ethereum/assets/0xceB8652de51C77245226eA8b35858114D41F1B99/logo.png differ diff --git a/blockchains/ethereum/assets/0xceF1cA19d053e35509501D0f45408297845d8C18/info.json b/blockchains/ethereum/assets/0xceF1cA19d053e35509501D0f45408297845d8C18/info.json new file mode 100644 index 00000000..24f27fbe --- /dev/null +++ b/blockchains/ethereum/assets/0xceF1cA19d053e35509501D0f45408297845d8C18/info.json @@ -0,0 +1,11 @@ +{ + "name": "V-PALADINI TEST 1", + "symbol": "V", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xceF1cA19d053e35509501D0f45408297845d8C18", + "status": "abandoned", + "id": "0xceF1cA19d053e35509501D0f45408297845d8C18" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xceF1cA19d053e35509501D0f45408297845d8C18/logo.png b/blockchains/ethereum/assets/0xceF1cA19d053e35509501D0f45408297845d8C18/logo.png new file mode 100644 index 00000000..10990994 Binary files /dev/null and b/blockchains/ethereum/assets/0xceF1cA19d053e35509501D0f45408297845d8C18/logo.png differ diff --git a/blockchains/ethereum/assets/0xcec38306558a31cdbb2a9d6285947C5b44A24f3e/info.json b/blockchains/ethereum/assets/0xcec38306558a31cdbb2a9d6285947C5b44A24f3e/info.json new file mode 100644 index 00000000..38760025 --- /dev/null +++ b/blockchains/ethereum/assets/0xcec38306558a31cdbb2a9d6285947C5b44A24f3e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fantasy Sports", + "symbol": "DFS", + "type": "ERC20", + "decimals": 18, + "description": "DFS is a global payment option that is fully decentralized built on the Ethereum Blockchain.", + "website": "https://www.digitalfantasysports.com", + "explorer": "https://etherscan.io/token/0xcec38306558a31cdbb2a9d6285947C5b44A24f3e", + "status": "active", + "id": "0xcec38306558a31cdbb2a9d6285947C5b44A24f3e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcec38306558a31cdbb2a9d6285947C5b44A24f3e/logo.png b/blockchains/ethereum/assets/0xcec38306558a31cdbb2a9d6285947C5b44A24f3e/logo.png new file mode 100644 index 00000000..5f60e80f Binary files /dev/null and b/blockchains/ethereum/assets/0xcec38306558a31cdbb2a9d6285947C5b44A24f3e/logo.png differ diff --git a/blockchains/ethereum/assets/0xcecede5A20645EAc6ca2032eeEb1063572D63c29/info.json b/blockchains/ethereum/assets/0xcecede5A20645EAc6ca2032eeEb1063572D63c29/info.json new file mode 100644 index 00000000..22ebc737 --- /dev/null +++ b/blockchains/ethereum/assets/0xcecede5A20645EAc6ca2032eeEb1063572D63c29/info.json @@ -0,0 +1,11 @@ +{ + "name": "P2P Global Network", + "symbol": "P2PX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://p2pglobal.io/", + "explorer": "https://etherscan.io/token/0xcecede5A20645EAc6ca2032eeEb1063572D63c29", + "status": "abandoned", + "id": "0xcecede5A20645EAc6ca2032eeEb1063572D63c29" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcecede5A20645EAc6ca2032eeEb1063572D63c29/logo.png b/blockchains/ethereum/assets/0xcecede5A20645EAc6ca2032eeEb1063572D63c29/logo.png new file mode 100644 index 00000000..4c7b4f3c Binary files /dev/null and b/blockchains/ethereum/assets/0xcecede5A20645EAc6ca2032eeEb1063572D63c29/logo.png differ diff --git a/blockchains/ethereum/assets/0xcf0425a35f1FA900bb347Cb996D3094D1dF3Cd48/info.json b/blockchains/ethereum/assets/0xcf0425a35f1FA900bb347Cb996D3094D1dF3Cd48/info.json new file mode 100644 index 00000000..62f14341 --- /dev/null +++ b/blockchains/ethereum/assets/0xcf0425a35f1FA900bb347Cb996D3094D1dF3Cd48/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moose", + "symbol": "MM", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcf0425a35f1FA900bb347Cb996D3094D1dF3Cd48", + "status": "abandoned", + "id": "0xcf0425a35f1FA900bb347Cb996D3094D1dF3Cd48" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcf0425a35f1FA900bb347Cb996D3094D1dF3Cd48/logo.png b/blockchains/ethereum/assets/0xcf0425a35f1FA900bb347Cb996D3094D1dF3Cd48/logo.png new file mode 100644 index 00000000..8b5b0537 Binary files /dev/null and b/blockchains/ethereum/assets/0xcf0425a35f1FA900bb347Cb996D3094D1dF3Cd48/logo.png differ diff --git a/blockchains/ethereum/assets/0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E/info.json b/blockchains/ethereum/assets/0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E/info.json new file mode 100644 index 00000000..81d10f0e --- /dev/null +++ b/blockchains/ethereum/assets/0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E/info.json @@ -0,0 +1,44 @@ +{ + "name": "FLOKI", + "type": "ERC20", + "symbol": "FLOKI", + "decimals": 9, + "website": "https://floki.com", + "description": "The people's cryptocurrency. By combining the power of memes with real utility and charitability, FLOKI gives power and opportunity to the people — to the underdogs — instead of venture capitalists and hedge funds. FLOKI aims to be the most known and most used cryptocurrency in the world.", + "explorer": "https://etherscan.io/token/0xcf0c122c6b73ff809c693db761e7baebe62b6a2e", + "status": "active", + "id": "0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E", + "tags": [ + "memes" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/FlokiInuToken" + }, + { + "name": "x", + "url": "https://x.com/realflokiinu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/floki-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/floki-inu" + }, + { + "name": "discord", + "url": "https://discord.com/invite/floki" + }, + { + "name": "medium", + "url": "https://realflokiinu.medium.com/" + }, + { + "name": "whitepaper", + "url": "https://docs.theflokiinu.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E/logo.png b/blockchains/ethereum/assets/0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E/logo.png new file mode 100644 index 00000000..271d32ee Binary files /dev/null and b/blockchains/ethereum/assets/0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E/logo.png differ diff --git a/blockchains/ethereum/assets/0xcf17a46a463E55B366672807245397999592365c/info.json b/blockchains/ethereum/assets/0xcf17a46a463E55B366672807245397999592365c/info.json new file mode 100644 index 00000000..27a6ed25 --- /dev/null +++ b/blockchains/ethereum/assets/0xcf17a46a463E55B366672807245397999592365c/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-22/30M22", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcf17a46a463E55B366672807245397999592365c", + "status": "abandoned", + "id": "0xcf17a46a463E55B366672807245397999592365c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcf17a46a463E55B366672807245397999592365c/logo.png b/blockchains/ethereum/assets/0xcf17a46a463E55B366672807245397999592365c/logo.png new file mode 100644 index 00000000..bade9948 Binary files /dev/null and b/blockchains/ethereum/assets/0xcf17a46a463E55B366672807245397999592365c/logo.png differ diff --git a/blockchains/ethereum/assets/0xcfAD57a67689809CdA997f655802a119838c9ceC/info.json b/blockchains/ethereum/assets/0xcfAD57a67689809CdA997f655802a119838c9ceC/info.json new file mode 100644 index 00000000..cbdcf59c --- /dev/null +++ b/blockchains/ethereum/assets/0xcfAD57a67689809CdA997f655802a119838c9ceC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Benscoin", + "symbol": "BSC", + "type": "ERC20", + "decimals": 7, + "description": "Benscoin Crypto are made by Mr. Bens the businessman from Aceh, Indonesia, this Cryptoken are made for Investment for Economics in Aceh.", + "website": "https://benscoin.org/", + "explorer": "https://etherscan.io/token/0xcfAD57a67689809CdA997f655802a119838c9ceC", + "status": "active", + "id": "0xcfAD57a67689809CdA997f655802a119838c9ceC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcfAD57a67689809CdA997f655802a119838c9ceC/logo.png b/blockchains/ethereum/assets/0xcfAD57a67689809CdA997f655802a119838c9ceC/logo.png new file mode 100644 index 00000000..aebd28d0 Binary files /dev/null and b/blockchains/ethereum/assets/0xcfAD57a67689809CdA997f655802a119838c9ceC/logo.png differ diff --git a/blockchains/ethereum/assets/0xcfCA01488643501CAb56d1855921c897D5EE4b1B/info.json b/blockchains/ethereum/assets/0xcfCA01488643501CAb56d1855921c897D5EE4b1B/info.json new file mode 100644 index 00000000..c5af1ab9 --- /dev/null +++ b/blockchains/ethereum/assets/0xcfCA01488643501CAb56d1855921c897D5EE4b1B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Inw ", + "symbol": "BCW", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xcfCA01488643501CAb56d1855921c897D5EE4b1B", + "status": "abandoned", + "id": "0xcfCA01488643501CAb56d1855921c897D5EE4b1B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xcfCA01488643501CAb56d1855921c897D5EE4b1B/logo.png b/blockchains/ethereum/assets/0xcfCA01488643501CAb56d1855921c897D5EE4b1B/logo.png new file mode 100644 index 00000000..992f979c Binary files /dev/null and b/blockchains/ethereum/assets/0xcfCA01488643501CAb56d1855921c897D5EE4b1B/logo.png differ diff --git a/blockchains/ethereum/assets/0xd01409314aCb3b245CEa9500eCE3F6Fd4d70ea30/info.json b/blockchains/ethereum/assets/0xd01409314aCb3b245CEa9500eCE3F6Fd4d70ea30/info.json new file mode 100644 index 00000000..9011b170 --- /dev/null +++ b/blockchains/ethereum/assets/0xd01409314aCb3b245CEa9500eCE3F6Fd4d70ea30/info.json @@ -0,0 +1,61 @@ +{ + "name": "LTO Network", + "type": "ERC20", + "symbol": "LTO", + "decimals": 8, + "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://etherscan.io/token/0xd01409314acb3b245cea9500ece3f6fd4d70ea30", + "status": "active", + "id": "0xd01409314aCb3b245CEa9500eCE3F6Fd4d70ea30", + "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/ethereum/assets/0xd01409314aCb3b245CEa9500eCE3F6Fd4d70ea30/logo.png b/blockchains/ethereum/assets/0xd01409314aCb3b245CEa9500eCE3F6Fd4d70ea30/logo.png new file mode 100644 index 00000000..9737b417 Binary files /dev/null and b/blockchains/ethereum/assets/0xd01409314aCb3b245CEa9500eCE3F6Fd4d70ea30/logo.png differ diff --git a/blockchains/ethereum/assets/0xd0207f76A97aD3779b7731ab1fc4cF926a508E87/info.json b/blockchains/ethereum/assets/0xd0207f76A97aD3779b7731ab1fc4cF926a508E87/info.json new file mode 100644 index 00000000..3ed27310 --- /dev/null +++ b/blockchains/ethereum/assets/0xd0207f76A97aD3779b7731ab1fc4cF926a508E87/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digitrade Online", + "symbol": "DTO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd0207f76A97aD3779b7731ab1fc4cF926a508E87", + "status": "abandoned", + "id": "0xd0207f76A97aD3779b7731ab1fc4cF926a508E87" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd0207f76A97aD3779b7731ab1fc4cF926a508E87/logo.png b/blockchains/ethereum/assets/0xd0207f76A97aD3779b7731ab1fc4cF926a508E87/logo.png new file mode 100644 index 00000000..85881963 Binary files /dev/null and b/blockchains/ethereum/assets/0xd0207f76A97aD3779b7731ab1fc4cF926a508E87/logo.png differ diff --git a/blockchains/ethereum/assets/0xd037a81B22e7F814bC6f87D50e5bd67d8c329Fa2/info.json b/blockchains/ethereum/assets/0xd037a81B22e7F814bC6f87D50e5bd67d8c329Fa2/info.json new file mode 100644 index 00000000..0886b8cb --- /dev/null +++ b/blockchains/ethereum/assets/0xd037a81B22e7F814bC6f87D50e5bd67d8c329Fa2/info.json @@ -0,0 +1,11 @@ +{ + "name": "EMO tokens", + "symbol": "EMO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd037a81B22e7F814bC6f87D50e5bd67d8c329Fa2", + "status": "spam", + "id": "0xd037a81B22e7F814bC6f87D50e5bd67d8c329Fa2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd037a81B22e7F814bC6f87D50e5bd67d8c329Fa2/logo.png b/blockchains/ethereum/assets/0xd037a81B22e7F814bC6f87D50e5bd67d8c329Fa2/logo.png new file mode 100644 index 00000000..1745a853 Binary files /dev/null and b/blockchains/ethereum/assets/0xd037a81B22e7F814bC6f87D50e5bd67d8c329Fa2/logo.png differ diff --git a/blockchains/ethereum/assets/0xd0464A1985edB76Ba82602534a2d89d8cCf3B7Ec/info.json b/blockchains/ethereum/assets/0xd0464A1985edB76Ba82602534a2d89d8cCf3B7Ec/info.json new file mode 100644 index 00000000..d1c3876c --- /dev/null +++ b/blockchains/ethereum/assets/0xd0464A1985edB76Ba82602534a2d89d8cCf3B7Ec/info.json @@ -0,0 +1,11 @@ +{ + "name": "GlobalEdu", + "symbol": "GEFT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "https://globaledufoundation.org/", + "explorer": "https://etherscan.io/token/0xd0464A1985edB76Ba82602534a2d89d8cCf3B7Ec", + "status": "abandoned", + "id": "0xd0464A1985edB76Ba82602534a2d89d8cCf3B7Ec" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd0464A1985edB76Ba82602534a2d89d8cCf3B7Ec/logo.png b/blockchains/ethereum/assets/0xd0464A1985edB76Ba82602534a2d89d8cCf3B7Ec/logo.png new file mode 100644 index 00000000..100b1be2 Binary files /dev/null and b/blockchains/ethereum/assets/0xd0464A1985edB76Ba82602534a2d89d8cCf3B7Ec/logo.png differ diff --git a/blockchains/ethereum/assets/0xd0658324074D6249a51876438916f7C423075451/info.json b/blockchains/ethereum/assets/0xd0658324074D6249a51876438916f7C423075451/info.json new file mode 100644 index 00000000..3b4937e6 --- /dev/null +++ b/blockchains/ethereum/assets/0xd0658324074D6249a51876438916f7C423075451/info.json @@ -0,0 +1,21 @@ +{ + "name": "Yearn Land", + "website": "https://yland.finance", + "description": "Yearn Land upgraded the old Yearn making some important adjustments in first layer protocols.", + "explorer": "https://etherscan.io/token/0xd0658324074D6249a51876438916f7C423075451", + "type": "ERC20", + "symbol": "yLand", + "decimals": 18, + "status": "active", + "id": "0xd0658324074D6249a51876438916f7C423075451", + "links": [ + { + "name": "github", + "url": "https://github.com/ylandfinance/yLand-token/blob/master/yLand-token.sol" + }, + { + "name": "whitepaper", + "url": "https://docs.yland.finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd0658324074D6249a51876438916f7C423075451/logo.png b/blockchains/ethereum/assets/0xd0658324074D6249a51876438916f7C423075451/logo.png new file mode 100644 index 00000000..ee5dfca6 Binary files /dev/null and b/blockchains/ethereum/assets/0xd0658324074D6249a51876438916f7C423075451/logo.png differ diff --git a/blockchains/ethereum/assets/0xd06D21Aa6F3fa754CEE7f9C720a8a826E8322328/info.json b/blockchains/ethereum/assets/0xd06D21Aa6F3fa754CEE7f9C720a8a826E8322328/info.json new file mode 100644 index 00000000..7106e39b --- /dev/null +++ b/blockchains/ethereum/assets/0xd06D21Aa6F3fa754CEE7f9C720a8a826E8322328/info.json @@ -0,0 +1,11 @@ +{ + "name": "TokenChain", + "symbol": "TCT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd06D21Aa6F3fa754CEE7f9C720a8a826E8322328", + "status": "abandoned", + "id": "0xd06D21Aa6F3fa754CEE7f9C720a8a826E8322328" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd06D21Aa6F3fa754CEE7f9C720a8a826E8322328/logo.png b/blockchains/ethereum/assets/0xd06D21Aa6F3fa754CEE7f9C720a8a826E8322328/logo.png new file mode 100644 index 00000000..42290953 Binary files /dev/null and b/blockchains/ethereum/assets/0xd06D21Aa6F3fa754CEE7f9C720a8a826E8322328/logo.png differ diff --git a/blockchains/ethereum/assets/0xd07D9Fe2d2cc067015E2b4917D24933804f42cFA/info.json b/blockchains/ethereum/assets/0xd07D9Fe2d2cc067015E2b4917D24933804f42cFA/info.json new file mode 100644 index 00000000..6272c6ef --- /dev/null +++ b/blockchains/ethereum/assets/0xd07D9Fe2d2cc067015E2b4917D24933804f42cFA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tolar Token", + "symbol": "TOL", + "type": "ERC20", + "decimals": 18, + "description": "Tolar is an open source, community governed crypto-currency featuring scalable, fast, secure, and fair transactions.", + "website": "https://www.tolar.io/", + "explorer": "https://etherscan.io/token/0xd07D9Fe2d2cc067015E2b4917D24933804f42cFA", + "status": "active", + "id": "0xd07D9Fe2d2cc067015E2b4917D24933804f42cFA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd07D9Fe2d2cc067015E2b4917D24933804f42cFA/logo.png b/blockchains/ethereum/assets/0xd07D9Fe2d2cc067015E2b4917D24933804f42cFA/logo.png new file mode 100644 index 00000000..0cbef8d1 Binary files /dev/null and b/blockchains/ethereum/assets/0xd07D9Fe2d2cc067015E2b4917D24933804f42cFA/logo.png differ diff --git a/blockchains/ethereum/assets/0xd0834d08c83dbE216811AAea0EEfFb2349E57634/info.json b/blockchains/ethereum/assets/0xd0834d08c83dbE216811AAea0EEfFb2349E57634/info.json new file mode 100644 index 00000000..431eaf52 --- /dev/null +++ b/blockchains/ethereum/assets/0xd0834d08c83dbE216811AAea0EEfFb2349E57634/info.json @@ -0,0 +1,11 @@ +{ + "name": "GreenCapTOKEN", + "symbol": "GreenCap", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd0834d08c83dbE216811AAea0EEfFb2349E57634", + "status": "abandoned", + "id": "0xd0834d08c83dbE216811AAea0EEfFb2349E57634" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd0834d08c83dbE216811AAea0EEfFb2349E57634/logo.png b/blockchains/ethereum/assets/0xd0834d08c83dbE216811AAea0EEfFb2349E57634/logo.png new file mode 100644 index 00000000..89c62138 Binary files /dev/null and b/blockchains/ethereum/assets/0xd0834d08c83dbE216811AAea0EEfFb2349E57634/logo.png differ diff --git a/blockchains/ethereum/assets/0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988/info.json b/blockchains/ethereum/assets/0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988/info.json new file mode 100644 index 00000000..6975e9f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988/info.json @@ -0,0 +1,26 @@ +{ + "name": "Terra Virtua Kolect", + "website": "https://terravirtua.io", + "description": "TVK is the fuel of Terra Virtua, opening up a whole world of privileges, experiences and opportunities. Use TVK to get exclusive NFTs, drops, discounts, staking and other privileges.", + "explorer": "https://etherscan.io/token/0xd084b83c305dafd76ae3e1b4e1f1fe2ecccb3988", + "research": "", + "type": "ERC20", + "symbol": "TVK", + "decimals": 18, + "status": "active", + "id": "0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/terra-virtua-kolect/" + }, + { + "name": "x", + "url": "https://x.com/terra_virtua" + }, + { + "name": "telegram", + "url": "https://t.me/terravirtua" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988/logo.png b/blockchains/ethereum/assets/0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988/logo.png new file mode 100644 index 00000000..127ab64b Binary files /dev/null and b/blockchains/ethereum/assets/0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988/logo.png differ diff --git a/blockchains/ethereum/assets/0xd08575F5F4DE7212123731088980D069CB75873D/info.json b/blockchains/ethereum/assets/0xd08575F5F4DE7212123731088980D069CB75873D/info.json new file mode 100644 index 00000000..8b8a0b6a --- /dev/null +++ b/blockchains/ethereum/assets/0xd08575F5F4DE7212123731088980D069CB75873D/info.json @@ -0,0 +1,11 @@ +{ + "name": "BetSwap Token", + "symbol": "BSWP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd08575F5F4DE7212123731088980D069CB75873D", + "status": "abandoned", + "id": "0xd08575F5F4DE7212123731088980D069CB75873D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd08575F5F4DE7212123731088980D069CB75873D/logo.png b/blockchains/ethereum/assets/0xd08575F5F4DE7212123731088980D069CB75873D/logo.png new file mode 100644 index 00000000..73467ccb Binary files /dev/null and b/blockchains/ethereum/assets/0xd08575F5F4DE7212123731088980D069CB75873D/logo.png differ diff --git a/blockchains/ethereum/assets/0xd0929d411954c47438dc1d871dd6081F5C5e149c/info.json b/blockchains/ethereum/assets/0xd0929d411954c47438dc1d871dd6081F5C5e149c/info.json new file mode 100644 index 00000000..def46c24 --- /dev/null +++ b/blockchains/ethereum/assets/0xd0929d411954c47438dc1d871dd6081F5C5e149c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Refereum", + "symbol": "RFR", + "type": "ERC20", + "decimals": 4, + "description": "Refereum uses the blockchain to directly connect developers and influencers, resulting in lower marketing costs and increased profits for everyone. In addition to more effective growth, Refereum strengthens engagement by offering cash prizes — enabling rewards for anything from an in-game high score to an eSports grand prize.", + "website": "https://refereum.com/", + "explorer": "https://etherscan.io/token/0xd0929d411954c47438dc1d871dd6081F5C5e149c", + "status": "active", + "id": "0xd0929d411954c47438dc1d871dd6081F5C5e149c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd0929d411954c47438dc1d871dd6081F5C5e149c/logo.png b/blockchains/ethereum/assets/0xd0929d411954c47438dc1d871dd6081F5C5e149c/logo.png new file mode 100644 index 00000000..14dd4619 Binary files /dev/null and b/blockchains/ethereum/assets/0xd0929d411954c47438dc1d871dd6081F5C5e149c/logo.png differ diff --git a/blockchains/ethereum/assets/0xd0983dD6a0334c71d0478255D1F794508026b888/info.json b/blockchains/ethereum/assets/0xd0983dD6a0334c71d0478255D1F794508026b888/info.json new file mode 100644 index 00000000..45d2b9f8 --- /dev/null +++ b/blockchains/ethereum/assets/0xd0983dD6a0334c71d0478255D1F794508026b888/info.json @@ -0,0 +1,17 @@ +{ + "name": "EGG Protocol", + "website": "https://cocoricos.io/", + "description": "EGG Protocol is a suite of smart contracts focused on creating a simple way to generate rewards on various assets via best-in-class liquidity pools, soft staking, proof of stake (PoS) and airdrops.", + "explorer": "https://etherscan.io/token/0xd0983dd6a0334c71d0478255d1f794508026b888", + "type": "ERC20", + "symbol": "EGG", + "decimals": 18, + "status": "active", + "id": "0xd0983dD6a0334c71d0478255D1F794508026b888", + "links": [ + { + "name": "github", + "url": "https://github.com/Cocoricos/EGG" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd0983dD6a0334c71d0478255D1F794508026b888/logo.png b/blockchains/ethereum/assets/0xd0983dD6a0334c71d0478255D1F794508026b888/logo.png new file mode 100644 index 00000000..580b2caa Binary files /dev/null and b/blockchains/ethereum/assets/0xd0983dD6a0334c71d0478255D1F794508026b888/logo.png differ diff --git a/blockchains/ethereum/assets/0xd09B4a4Cc6F092959478C693F3933cD27dA75244/info.json b/blockchains/ethereum/assets/0xd09B4a4Cc6F092959478C693F3933cD27dA75244/info.json new file mode 100644 index 00000000..55d815b7 --- /dev/null +++ b/blockchains/ethereum/assets/0xd09B4a4Cc6F092959478C693F3933cD27dA75244/info.json @@ -0,0 +1,11 @@ +{ + "name": "Compound Zai", + "symbol": "cZAI", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd09B4a4Cc6F092959478C693F3933cD27dA75244", + "status": "abandoned", + "id": "0xd09B4a4Cc6F092959478C693F3933cD27dA75244" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd09B4a4Cc6F092959478C693F3933cD27dA75244/logo.png b/blockchains/ethereum/assets/0xd09B4a4Cc6F092959478C693F3933cD27dA75244/logo.png new file mode 100644 index 00000000..1b01aabe Binary files /dev/null and b/blockchains/ethereum/assets/0xd09B4a4Cc6F092959478C693F3933cD27dA75244/logo.png differ diff --git a/blockchains/ethereum/assets/0xd0Df3b1Cf729A29B7404c40D61C750008E631bA7/info.json b/blockchains/ethereum/assets/0xd0Df3b1Cf729A29B7404c40D61C750008E631bA7/info.json new file mode 100644 index 00000000..21f5b651 --- /dev/null +++ b/blockchains/ethereum/assets/0xd0Df3b1Cf729A29B7404c40D61C750008E631bA7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rug", + "website": "http://rug.money", + "description": "Rug is a deflationary ERC-20 token that incentivizes staking and viral marketing, ensuring that risktakers are rewarded through dividends and access to the pool's liquidity.", + "explorer": "https://etherscan.io/token/0xd0Df3b1Cf729A29B7404c40D61C750008E631bA7", + "type": "ERC20", + "symbol": "RUG", + "decimals": 18, + "status": "active", + "id": "0xd0Df3b1Cf729A29B7404c40D61C750008E631bA7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd0Df3b1Cf729A29B7404c40D61C750008E631bA7/logo.png b/blockchains/ethereum/assets/0xd0Df3b1Cf729A29B7404c40D61C750008E631bA7/logo.png new file mode 100644 index 00000000..ea3ff214 Binary files /dev/null and b/blockchains/ethereum/assets/0xd0Df3b1Cf729A29B7404c40D61C750008E631bA7/logo.png differ diff --git a/blockchains/ethereum/assets/0xd0c59798F986d333554688cD667033d469C2398e/info.json b/blockchains/ethereum/assets/0xd0c59798F986d333554688cD667033d469C2398e/info.json new file mode 100644 index 00000000..2f3a45a7 --- /dev/null +++ b/blockchains/ethereum/assets/0xd0c59798F986d333554688cD667033d469C2398e/info.json @@ -0,0 +1,11 @@ +{ + "name": "YMEN", + "website": "https://ymen.finance", + "description": "YMEN token is deflationary, and it's used to farm Mutant token that is the governance token that can be sold into YMEN/MUTANT pool.", + "explorer": "https://etherscan.io/token/0xd0c59798F986d333554688cD667033d469C2398e", + "type": "ERC20", + "symbol": "YMEN", + "decimals": 18, + "status": "active", + "id": "0xd0c59798F986d333554688cD667033d469C2398e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd0c59798F986d333554688cD667033d469C2398e/logo.png b/blockchains/ethereum/assets/0xd0c59798F986d333554688cD667033d469C2398e/logo.png new file mode 100644 index 00000000..e7fcd78e Binary files /dev/null and b/blockchains/ethereum/assets/0xd0c59798F986d333554688cD667033d469C2398e/logo.png differ diff --git a/blockchains/ethereum/assets/0xd111BCb8C30a600c12F4AF8314235F628EA2Cb3C/info.json b/blockchains/ethereum/assets/0xd111BCb8C30a600c12F4AF8314235F628EA2Cb3C/info.json new file mode 100644 index 00000000..aba9c67b --- /dev/null +++ b/blockchains/ethereum/assets/0xd111BCb8C30a600c12F4AF8314235F628EA2Cb3C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Webflix Token", + "symbol": "WFX", + "type": "ERC20", + "decimals": 18, + "description": "Webflix describes itself as a blockchain-based broadcasting platform that connects broadcasters with users.", + "website": "http://www.webflix.io", + "explorer": "https://etherscan.io/token/0xd111BCb8C30a600c12F4AF8314235F628EA2Cb3C", + "status": "active", + "id": "0xd111BCb8C30a600c12F4AF8314235F628EA2Cb3C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd111BCb8C30a600c12F4AF8314235F628EA2Cb3C/logo.png b/blockchains/ethereum/assets/0xd111BCb8C30a600c12F4AF8314235F628EA2Cb3C/logo.png new file mode 100644 index 00000000..7cb5c9d8 Binary files /dev/null and b/blockchains/ethereum/assets/0xd111BCb8C30a600c12F4AF8314235F628EA2Cb3C/logo.png differ diff --git a/blockchains/ethereum/assets/0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94/info.json b/blockchains/ethereum/assets/0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94/info.json new file mode 100644 index 00000000..06ed6366 --- /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 00000000..5f93e39c Binary files /dev/null and b/blockchains/ethereum/assets/0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94/logo.png differ diff --git a/blockchains/ethereum/assets/0xd152C6AABF7B6736bb345A2e3E8E1E956241fdb1/info.json b/blockchains/ethereum/assets/0xd152C6AABF7B6736bb345A2e3E8E1E956241fdb1/info.json new file mode 100644 index 00000000..8b2a490f --- /dev/null +++ b/blockchains/ethereum/assets/0xd152C6AABF7B6736bb345A2e3E8E1E956241fdb1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xena", + "symbol": "XENA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd152C6AABF7B6736bb345A2e3E8E1E956241fdb1", + "status": "abandoned", + "id": "0xd152C6AABF7B6736bb345A2e3E8E1E956241fdb1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd152C6AABF7B6736bb345A2e3E8E1E956241fdb1/logo.png b/blockchains/ethereum/assets/0xd152C6AABF7B6736bb345A2e3E8E1E956241fdb1/logo.png new file mode 100644 index 00000000..dc7dccb0 Binary files /dev/null and b/blockchains/ethereum/assets/0xd152C6AABF7B6736bb345A2e3E8E1E956241fdb1/logo.png differ diff --git a/blockchains/ethereum/assets/0xd156a737eea5B2Bc7b6Ef6BF96F3DCc42447B55f/info.json b/blockchains/ethereum/assets/0xd156a737eea5B2Bc7b6Ef6BF96F3DCc42447B55f/info.json new file mode 100644 index 00000000..ce3a5ec1 --- /dev/null +++ b/blockchains/ethereum/assets/0xd156a737eea5B2Bc7b6Ef6BF96F3DCc42447B55f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Metrin Data Platform", + "symbol": "MDP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd156a737eea5B2Bc7b6Ef6BF96F3DCc42447B55f", + "status": "abandoned", + "id": "0xd156a737eea5B2Bc7b6Ef6BF96F3DCc42447B55f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd156a737eea5B2Bc7b6Ef6BF96F3DCc42447B55f/logo.png b/blockchains/ethereum/assets/0xd156a737eea5B2Bc7b6Ef6BF96F3DCc42447B55f/logo.png new file mode 100644 index 00000000..bcd21fda Binary files /dev/null and b/blockchains/ethereum/assets/0xd156a737eea5B2Bc7b6Ef6BF96F3DCc42447B55f/logo.png differ diff --git a/blockchains/ethereum/assets/0xd15EB3e486AAdF5e77244f7732a3C5Fc8Fa44Ec0/info.json b/blockchains/ethereum/assets/0xd15EB3e486AAdF5e77244f7732a3C5Fc8Fa44Ec0/info.json new file mode 100644 index 00000000..aa8c31ee --- /dev/null +++ b/blockchains/ethereum/assets/0xd15EB3e486AAdF5e77244f7732a3C5Fc8Fa44Ec0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long ETH-WBTC 2x v2", + "symbol": "LETHwBTC2x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd15EB3e486AAdF5e77244f7732a3C5Fc8Fa44Ec0", + "status": "abandoned", + "id": "0xd15EB3e486AAdF5e77244f7732a3C5Fc8Fa44Ec0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd15EB3e486AAdF5e77244f7732a3C5Fc8Fa44Ec0/logo.png b/blockchains/ethereum/assets/0xd15EB3e486AAdF5e77244f7732a3C5Fc8Fa44Ec0/logo.png new file mode 100644 index 00000000..d035a8e3 Binary files /dev/null and b/blockchains/ethereum/assets/0xd15EB3e486AAdF5e77244f7732a3C5Fc8Fa44Ec0/logo.png differ diff --git a/blockchains/ethereum/assets/0xd15eCDCF5Ea68e3995b2D0527A0aE0a3258302F8/info.json b/blockchains/ethereum/assets/0xd15eCDCF5Ea68e3995b2D0527A0aE0a3258302F8/info.json new file mode 100644 index 00000000..df2c83ae --- /dev/null +++ b/blockchains/ethereum/assets/0xd15eCDCF5Ea68e3995b2D0527A0aE0a3258302F8/info.json @@ -0,0 +1,11 @@ +{ + "name": "MachiX Token", + "symbol": "MCX", + "type": "ERC20", + "decimals": 18, + "description": "Machi X claims to be a collective of artists and patrons, curating and trading digital art. The Machi X DAO is a member-directed organization where members pool resources, create proposals to improve Machi X, and approve governance changes for the Machi X ecosystem.", + "website": "https://machix.com/", + "explorer": "https://etherscan.io/token/0xd15eCDCF5Ea68e3995b2D0527A0aE0a3258302F8", + "status": "active", + "id": "0xd15eCDCF5Ea68e3995b2D0527A0aE0a3258302F8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd15eCDCF5Ea68e3995b2D0527A0aE0a3258302F8/logo.png b/blockchains/ethereum/assets/0xd15eCDCF5Ea68e3995b2D0527A0aE0a3258302F8/logo.png new file mode 100644 index 00000000..7e77024f Binary files /dev/null and b/blockchains/ethereum/assets/0xd15eCDCF5Ea68e3995b2D0527A0aE0a3258302F8/logo.png differ diff --git a/blockchains/ethereum/assets/0xd18C0586A6FbB922489e33A55b494650A41BC5bB/info.json b/blockchains/ethereum/assets/0xd18C0586A6FbB922489e33A55b494650A41BC5bB/info.json new file mode 100644 index 00000000..25a004eb --- /dev/null +++ b/blockchains/ethereum/assets/0xd18C0586A6FbB922489e33A55b494650A41BC5bB/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-7/30M37", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd18C0586A6FbB922489e33A55b494650A41BC5bB", + "status": "spam", + "id": "0xd18C0586A6FbB922489e33A55b494650A41BC5bB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd18C0586A6FbB922489e33A55b494650A41BC5bB/logo.png b/blockchains/ethereum/assets/0xd18C0586A6FbB922489e33A55b494650A41BC5bB/logo.png new file mode 100644 index 00000000..4bc187e2 Binary files /dev/null and b/blockchains/ethereum/assets/0xd18C0586A6FbB922489e33A55b494650A41BC5bB/logo.png differ diff --git a/blockchains/ethereum/assets/0xd19e0D42973fB89c619a83883D7Bf454A6052827/info.json b/blockchains/ethereum/assets/0xd19e0D42973fB89c619a83883D7Bf454A6052827/info.json new file mode 100644 index 00000000..7ed0164d --- /dev/null +++ b/blockchains/ethereum/assets/0xd19e0D42973fB89c619a83883D7Bf454A6052827/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vectro Network", + "symbol": "VCTN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd19e0D42973fB89c619a83883D7Bf454A6052827", + "status": "abandoned", + "id": "0xd19e0D42973fB89c619a83883D7Bf454A6052827" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd19e0D42973fB89c619a83883D7Bf454A6052827/logo.png b/blockchains/ethereum/assets/0xd19e0D42973fB89c619a83883D7Bf454A6052827/logo.png new file mode 100644 index 00000000..a9899f25 Binary files /dev/null and b/blockchains/ethereum/assets/0xd19e0D42973fB89c619a83883D7Bf454A6052827/logo.png differ diff --git a/blockchains/ethereum/assets/0xd1AFBCCC9A2c2187ea544363B986EA0AB6EF08B5/info.json b/blockchains/ethereum/assets/0xd1AFBCCC9A2c2187ea544363B986EA0AB6EF08B5/info.json new file mode 100644 index 00000000..80cf9718 --- /dev/null +++ b/blockchains/ethereum/assets/0xd1AFBCCC9A2c2187ea544363B986EA0AB6EF08B5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum Yield", + "website": "https://ethereumyield.farm", + "description": "ETHY describes itself as Ethereum's powerful yield farming coin. ETHY's vault smart-contract executes strategies to maximize APY, reward holders, and punish weak-hands.", + "explorer": "https://etherscan.io/token/0xd1AFBCCC9A2c2187ea544363B986EA0AB6EF08B5", + "type": "ERC20", + "symbol": "ETHY", + "decimals": 18, + "status": "active", + "id": "0xd1AFBCCC9A2c2187ea544363B986EA0AB6EF08B5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd1AFBCCC9A2c2187ea544363B986EA0AB6EF08B5/logo.png b/blockchains/ethereum/assets/0xd1AFBCCC9A2c2187ea544363B986EA0AB6EF08B5/logo.png new file mode 100644 index 00000000..9db98e48 Binary files /dev/null and b/blockchains/ethereum/assets/0xd1AFBCCC9A2c2187ea544363B986EA0AB6EF08B5/logo.png differ diff --git a/blockchains/ethereum/assets/0xd1B183f425F7E6A0C83aB1cd84cFDE2d84Ba049d/info.json b/blockchains/ethereum/assets/0xd1B183f425F7E6A0C83aB1cd84cFDE2d84Ba049d/info.json new file mode 100644 index 00000000..59c32af8 --- /dev/null +++ b/blockchains/ethereum/assets/0xd1B183f425F7E6A0C83aB1cd84cFDE2d84Ba049d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tingles", + "symbol": "TING", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd1B183f425F7E6A0C83aB1cd84cFDE2d84Ba049d", + "status": "abandoned", + "id": "0xd1B183f425F7E6A0C83aB1cd84cFDE2d84Ba049d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd1B183f425F7E6A0C83aB1cd84cFDE2d84Ba049d/logo.png b/blockchains/ethereum/assets/0xd1B183f425F7E6A0C83aB1cd84cFDE2d84Ba049d/logo.png new file mode 100644 index 00000000..c07127cc Binary files /dev/null and b/blockchains/ethereum/assets/0xd1B183f425F7E6A0C83aB1cd84cFDE2d84Ba049d/logo.png differ diff --git a/blockchains/ethereum/assets/0xd1F1c5Ff90Fb6F3b0D57F5f6AD4AAF7400F4B39b/info.json b/blockchains/ethereum/assets/0xd1F1c5Ff90Fb6F3b0D57F5f6AD4AAF7400F4B39b/info.json new file mode 100644 index 00000000..494b0721 --- /dev/null +++ b/blockchains/ethereum/assets/0xd1F1c5Ff90Fb6F3b0D57F5f6AD4AAF7400F4B39b/info.json @@ -0,0 +1,11 @@ +{ + "name": "EXtereum", + "symbol": "EX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd1F1c5Ff90Fb6F3b0D57F5f6AD4AAF7400F4B39b", + "status": "abandoned", + "id": "0xd1F1c5Ff90Fb6F3b0D57F5f6AD4AAF7400F4B39b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd1F1c5Ff90Fb6F3b0D57F5f6AD4AAF7400F4B39b/logo.png b/blockchains/ethereum/assets/0xd1F1c5Ff90Fb6F3b0D57F5f6AD4AAF7400F4B39b/logo.png new file mode 100644 index 00000000..0aa7d1a2 Binary files /dev/null and b/blockchains/ethereum/assets/0xd1F1c5Ff90Fb6F3b0D57F5f6AD4AAF7400F4B39b/logo.png differ diff --git a/blockchains/ethereum/assets/0xd1F579cc0a5405D7610346b371371bEd1528D18b/info.json b/blockchains/ethereum/assets/0xd1F579cc0a5405D7610346b371371bEd1528D18b/info.json new file mode 100644 index 00000000..eea68d59 --- /dev/null +++ b/blockchains/ethereum/assets/0xd1F579cc0a5405D7610346b371371bEd1528D18b/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAHARA", + "symbol": "IMG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd1F579cc0a5405D7610346b371371bEd1528D18b", + "status": "abandoned", + "id": "0xd1F579cc0a5405D7610346b371371bEd1528D18b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd1F579cc0a5405D7610346b371371bEd1528D18b/logo.png b/blockchains/ethereum/assets/0xd1F579cc0a5405D7610346b371371bEd1528D18b/logo.png new file mode 100644 index 00000000..58c27805 Binary files /dev/null and b/blockchains/ethereum/assets/0xd1F579cc0a5405D7610346b371371bEd1528D18b/logo.png differ diff --git a/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/info.json b/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/info.json new file mode 100644 index 00000000..d7b4a474 --- /dev/null +++ b/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/info.json @@ -0,0 +1,37 @@ +{ + "name": "Gala", + "website": "https://gala.games", + "description": "GALA is the utility token powering the Gala Games ecosystem.", + "explorer": "https://etherscan.io/token/0xd1d2Eb1B1e90B638588728b4130137D262C87cae", + "type": "ERC20", + "symbol": "GALA", + "decimals": 8, + "status": "active", + "id": "0xd1d2Eb1B1e90B638588728b4130137D262C87cae", + "tags": [ + "nft", + "gamefi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/GoGalaGames" + }, + { + "name": "telegram", + "url": "https://t.me/GoGalaGames" + }, + { + "name": "discord", + "url": "https://discord.com/GoGalaGames" + }, + { + "name": "facebook", + "url": "https://facebook.com/GoGalaGames" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/GoGalaGames" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/logo.png b/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/logo.png new file mode 100644 index 00000000..2467cb03 Binary files /dev/null and b/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/logo.png differ diff --git a/blockchains/ethereum/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/info.json b/blockchains/ethereum/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/info.json new file mode 100644 index 00000000..4382a2ed --- /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 00000000..22f02541 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 new file mode 100644 index 00000000..c7a35512 --- /dev/null +++ b/blockchains/ethereum/assets/0xd1e2d5085b39B80C9948AeB1b9aA83AF6756bcc5/info.json @@ -0,0 +1,26 @@ +{ + "name": "Wrapped Oxen", + "website": "https://oxen.io", + "description": "Oxen is a private cryptocurrency with an incentivised service node network. The decentralised service node network is leveraged to create a whole suite of privacy tools including an anonymous private messenger (Session) and an anonymous onion router (Lokinet).", + "explorer": "https://etherscan.io/token/0xd1e2d5085b39b80c9948aeb1b9aa83af6756bcc5", + "research": "", + "type": "ERC20", + "symbol": "wOXEN", + "decimals": 9, + "status": "active", + "id": "0xd1e2d5085b39B80C9948AeB1b9aA83AF6756bcc5", + "links": [ + { + "name": "github", + "url": "https://github.com/oxen-io/oxen-core" + }, + { + "name": "x", + "url": "https://x.com/Oxen_io" + }, + { + "name": "whitepaper", + "url": "https://loki.network/wp-content/uploads/2018/10/LokiWhitepaperV3_1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd1e2d5085b39B80C9948AeB1b9aA83AF6756bcc5/logo.png b/blockchains/ethereum/assets/0xd1e2d5085b39B80C9948AeB1b9aA83AF6756bcc5/logo.png new file mode 100644 index 00000000..f3147dfb Binary files /dev/null and b/blockchains/ethereum/assets/0xd1e2d5085b39B80C9948AeB1b9aA83AF6756bcc5/logo.png differ diff --git a/blockchains/ethereum/assets/0xd234BF2410a0009dF9c3C63b610c09738f18ccD7/info.json b/blockchains/ethereum/assets/0xd234BF2410a0009dF9c3C63b610c09738f18ccD7/info.json new file mode 100644 index 00000000..a28bb037 --- /dev/null +++ b/blockchains/ethereum/assets/0xd234BF2410a0009dF9c3C63b610c09738f18ccD7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dynamic Trading Rights", + "symbol": "DTR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.tokens.net/", + "explorer": "https://etherscan.io/token/0xd234BF2410a0009dF9c3C63b610c09738f18ccD7", + "status": "abandoned", + "id": "0xd234BF2410a0009dF9c3C63b610c09738f18ccD7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd234BF2410a0009dF9c3C63b610c09738f18ccD7/logo.png b/blockchains/ethereum/assets/0xd234BF2410a0009dF9c3C63b610c09738f18ccD7/logo.png new file mode 100644 index 00000000..a4d9585e Binary files /dev/null and b/blockchains/ethereum/assets/0xd234BF2410a0009dF9c3C63b610c09738f18ccD7/logo.png differ diff --git a/blockchains/ethereum/assets/0xd248B0D48E44aaF9c49aea0312be7E13a6dc1468/info.json b/blockchains/ethereum/assets/0xd248B0D48E44aaF9c49aea0312be7E13a6dc1468/info.json new file mode 100644 index 00000000..44f45eaa --- /dev/null +++ b/blockchains/ethereum/assets/0xd248B0D48E44aaF9c49aea0312be7E13a6dc1468/info.json @@ -0,0 +1,11 @@ +{ + "name": "Status Genesis Token", + "symbol": "SGT", + "type": "ERC20", + "decimals": 1, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd248B0D48E44aaF9c49aea0312be7E13a6dc1468", + "status": "abandoned", + "id": "0xd248B0D48E44aaF9c49aea0312be7E13a6dc1468" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd248B0D48E44aaF9c49aea0312be7E13a6dc1468/logo.png b/blockchains/ethereum/assets/0xd248B0D48E44aaF9c49aea0312be7E13a6dc1468/logo.png new file mode 100644 index 00000000..3e429d69 Binary files /dev/null and b/blockchains/ethereum/assets/0xd248B0D48E44aaF9c49aea0312be7E13a6dc1468/logo.png differ diff --git a/blockchains/ethereum/assets/0xd24DFf6117936B6ff97108CF26c1dD8865743d87/info.json b/blockchains/ethereum/assets/0xd24DFf6117936B6ff97108CF26c1dD8865743d87/info.json new file mode 100644 index 00000000..6b76406e --- /dev/null +++ b/blockchains/ethereum/assets/0xd24DFf6117936B6ff97108CF26c1dD8865743d87/info.json @@ -0,0 +1,11 @@ +{ + "name": "Medium Token", + "symbol": "MDM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://themedium.io/en/index.do", + "explorer": "https://etherscan.io/token/0xd24DFf6117936B6ff97108CF26c1dD8865743d87", + "status": "abandoned", + "id": "0xd24DFf6117936B6ff97108CF26c1dD8865743d87" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd24DFf6117936B6ff97108CF26c1dD8865743d87/logo.png b/blockchains/ethereum/assets/0xd24DFf6117936B6ff97108CF26c1dD8865743d87/logo.png new file mode 100644 index 00000000..cd7b9865 Binary files /dev/null and b/blockchains/ethereum/assets/0xd24DFf6117936B6ff97108CF26c1dD8865743d87/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2567afbA8704547466d32336A23777232AE18cA/info.json b/blockchains/ethereum/assets/0xd2567afbA8704547466d32336A23777232AE18cA/info.json new file mode 100644 index 00000000..5ed4e72e --- /dev/null +++ b/blockchains/ethereum/assets/0xd2567afbA8704547466d32336A23777232AE18cA/info.json @@ -0,0 +1,17 @@ +{ + "name": "TelFx", + "website": "https://telfx.io/", + "description": "TelFx is a commission-free futures exchange with its own native cryptocurrency, the TelFx token.", + "explorer": "https://etherscan.io/token/0xd2567afbA8704547466d32336A23777232AE18cA", + "type": "ERC20", + "symbol": "TelFx", + "decimals": 18, + "status": "active", + "id": "0xd2567afbA8704547466d32336A23777232AE18cA", + "links": [ + { + "name": "whitepaper", + "url": "https://telfx.io/white-paper" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2567afbA8704547466d32336A23777232AE18cA/logo.png b/blockchains/ethereum/assets/0xd2567afbA8704547466d32336A23777232AE18cA/logo.png new file mode 100644 index 00000000..76f172f7 Binary files /dev/null and b/blockchains/ethereum/assets/0xd2567afbA8704547466d32336A23777232AE18cA/logo.png differ diff --git a/blockchains/ethereum/assets/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07/info.json b/blockchains/ethereum/assets/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07/info.json new file mode 100644 index 00000000..cfcc117a --- /dev/null +++ b/blockchains/ethereum/assets/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07/info.json @@ -0,0 +1,41 @@ +{ + "name": "OMG Network", + "website": "https://omg.network", + "description": "OMG Network, formerly known as OmiseGO, is a non-custodial, layer-2 scaling solution built for the Ethereum blockchain. As an Ethereum scaling solution, OMG Network is designed to allow users to transfer ETH and ERC-20 tokens significantly faster and cheaper than when transacting directly on the Ethereum network.", + "explorer": "https://etherscan.io/token/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07", + "type": "ERC20", + "symbol": "OMG", + "decimals": 18, + "status": "active", + "id": "0xd26114cd6EE289AccF82350c8d8487fedB8A0C07", + "links": [ + { + "name": "github", + "url": "https://github.com/omgnetwork" + }, + { + "name": "x", + "url": "https://x.com/omgnetworkhq" + }, + { + "name": "blog", + "url": "https://omg.network/blog" + }, + { + "name": "facebook", + "url": "https://facebook.com/omgnetworkhq" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/omisego/" + }, + { + "name": "whitepaper", + "url": "https://docs.omg.network/" + }, + { + "name": "source_code", + "url": "https://github.com/omgnetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07/logo.png b/blockchains/ethereum/assets/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07/logo.png new file mode 100644 index 00000000..66536e8a Binary files /dev/null and b/blockchains/ethereum/assets/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07/logo.png differ diff --git a/blockchains/ethereum/assets/0xd26a9C3437f7D121098c8C05C7413F5Cc70BB070/info.json b/blockchains/ethereum/assets/0xd26a9C3437f7D121098c8C05C7413F5Cc70BB070/info.json new file mode 100644 index 00000000..8c160348 --- /dev/null +++ b/blockchains/ethereum/assets/0xd26a9C3437f7D121098c8C05C7413F5Cc70BB070/info.json @@ -0,0 +1,25 @@ +{ + "name": "Azuma coin", + "website": "https://azumacoin.io/", + "description": "Azuma Games is a crypto game development company striving to integrate AAA graphics, exciting game-play, and crypto rewards. Azuma Coin is our native token.", + "explorer": "https://etherscan.io/token/0xd26a9C3437f7D121098c8C05C7413F5Cc70BB070", + "type": "ERC20", + "symbol": "AZUM", + "decimals": 18, + "status": "active", + "id": "0xd26a9C3437f7D121098c8C05C7413F5Cc70BB070", + "links": [ + { + "name": "x", + "url": "https://x.com/GamesAzuma" + }, + { + "name": "telegram", + "url": "https://t.me/azumagames" + }, + { + "name": "whitepaper", + "url": "https://www.azumacoin.io/static/Azuma_WP_Sep17-2b944767e8ac9abe89bd3ae0fdf6cfa1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd26a9C3437f7D121098c8C05C7413F5Cc70BB070/logo.png b/blockchains/ethereum/assets/0xd26a9C3437f7D121098c8C05C7413F5Cc70BB070/logo.png new file mode 100644 index 00000000..83f9c09e Binary files /dev/null and b/blockchains/ethereum/assets/0xd26a9C3437f7D121098c8C05C7413F5Cc70BB070/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9/info.json b/blockchains/ethereum/assets/0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9/info.json new file mode 100644 index 00000000..4fb2b24e --- /dev/null +++ b/blockchains/ethereum/assets/0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9/info.json @@ -0,0 +1,29 @@ +{ + "name": "Terra", + "website": "https://terra.money", + "description": "Luna is the native staking token recognized by the Terra protocol.", + "explorer": "https://etherscan.io/token/0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9", + "type": "ERC20", + "symbol": "LUNA", + "decimals": 18, + "status": "active", + "id": "0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9", + "links": [ + { + "name": "x", + "url": "https://x.com/TerraMoney" + }, + { + "name": "telegram", + "url": "https://t.me/terra_announcements" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bYfyhUT" + }, + { + "name": "medium", + "url": "https://medium.com/terra-money" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9/logo.png b/blockchains/ethereum/assets/0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9/logo.png new file mode 100644 index 00000000..f111bbe1 Binary files /dev/null and b/blockchains/ethereum/assets/0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9/logo.png differ diff --git a/blockchains/ethereum/assets/0xd287beD5c9CdB8f8792b398Aa2A159E90e468FE8/info.json b/blockchains/ethereum/assets/0xd287beD5c9CdB8f8792b398Aa2A159E90e468FE8/info.json new file mode 100644 index 00000000..de76be67 --- /dev/null +++ b/blockchains/ethereum/assets/0xd287beD5c9CdB8f8792b398Aa2A159E90e468FE8/info.json @@ -0,0 +1,11 @@ +{ + "name": "PYRAMIDOS", + "symbol": "PIR", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd287beD5c9CdB8f8792b398Aa2A159E90e468FE8", + "status": "abandoned", + "id": "0xd287beD5c9CdB8f8792b398Aa2A159E90e468FE8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd287beD5c9CdB8f8792b398Aa2A159E90e468FE8/logo.png b/blockchains/ethereum/assets/0xd287beD5c9CdB8f8792b398Aa2A159E90e468FE8/logo.png new file mode 100644 index 00000000..d41faacf Binary files /dev/null and b/blockchains/ethereum/assets/0xd287beD5c9CdB8f8792b398Aa2A159E90e468FE8/logo.png differ diff --git a/blockchains/ethereum/assets/0xd28cFec79dB8d0A225767D06140aee280718AB7E/info.json b/blockchains/ethereum/assets/0xd28cFec79dB8d0A225767D06140aee280718AB7E/info.json new file mode 100644 index 00000000..6cd44ba7 --- /dev/null +++ b/blockchains/ethereum/assets/0xd28cFec79dB8d0A225767D06140aee280718AB7E/info.json @@ -0,0 +1,11 @@ +{ + "name": "BIZKEY", + "symbol": "BZKY", + "type": "ERC20", + "decimals": 16, + "description": "-", + "website": "https://bizkey.io", + "explorer": "https://etherscan.io/token/0xd28cFec79dB8d0A225767D06140aee280718AB7E", + "status": "abandoned", + "id": "0xd28cFec79dB8d0A225767D06140aee280718AB7E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd28cFec79dB8d0A225767D06140aee280718AB7E/logo.png b/blockchains/ethereum/assets/0xd28cFec79dB8d0A225767D06140aee280718AB7E/logo.png new file mode 100644 index 00000000..e4fa4ab2 Binary files /dev/null and b/blockchains/ethereum/assets/0xd28cFec79dB8d0A225767D06140aee280718AB7E/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2946be786F35c3Cc402C29b323647aBda799071/info.json b/blockchains/ethereum/assets/0xd2946be786F35c3Cc402C29b323647aBda799071/info.json new file mode 100644 index 00000000..47ff1123 --- /dev/null +++ b/blockchains/ethereum/assets/0xd2946be786F35c3Cc402C29b323647aBda799071/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vikky Token", + "symbol": "VIKKY", + "type": "ERC20", + "decimals": 8, + "description": "VikkyToken (VIKKY) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://ico.vikky.io", + "explorer": "https://etherscan.io/token/0xd2946be786F35c3Cc402C29b323647aBda799071", + "status": "active", + "id": "0xd2946be786F35c3Cc402C29b323647aBda799071" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2946be786F35c3Cc402C29b323647aBda799071/logo.png b/blockchains/ethereum/assets/0xd2946be786F35c3Cc402C29b323647aBda799071/logo.png new file mode 100644 index 00000000..3f6eb73d Binary files /dev/null and b/blockchains/ethereum/assets/0xd2946be786F35c3Cc402C29b323647aBda799071/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2A1d068bAAC0B06a8e2b1dc924a43D81a6Da325/info.json b/blockchains/ethereum/assets/0xd2A1d068bAAC0B06a8e2b1dc924a43D81a6Da325/info.json new file mode 100644 index 00000000..435cdff2 --- /dev/null +++ b/blockchains/ethereum/assets/0xd2A1d068bAAC0B06a8e2b1dc924a43D81a6Da325/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Short ETH-DAI v2", + "symbol": "dsETH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd2A1d068bAAC0B06a8e2b1dc924a43D81a6Da325", + "status": "abandoned", + "id": "0xd2A1d068bAAC0B06a8e2b1dc924a43D81a6Da325" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2A1d068bAAC0B06a8e2b1dc924a43D81a6Da325/logo.png b/blockchains/ethereum/assets/0xd2A1d068bAAC0B06a8e2b1dc924a43D81a6Da325/logo.png new file mode 100644 index 00000000..2128b2ee Binary files /dev/null and b/blockchains/ethereum/assets/0xd2A1d068bAAC0B06a8e2b1dc924a43D81a6Da325/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2Bfec3f80b7D966D7657A2ecC5982EE2f49336A/info.json b/blockchains/ethereum/assets/0xd2Bfec3f80b7D966D7657A2ecC5982EE2f49336A/info.json new file mode 100644 index 00000000..6b6639f4 --- /dev/null +++ b/blockchains/ethereum/assets/0xd2Bfec3f80b7D966D7657A2ecC5982EE2f49336A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gosama", + "symbol": "GOS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd2Bfec3f80b7D966D7657A2ecC5982EE2f49336A", + "status": "abandoned", + "id": "0xd2Bfec3f80b7D966D7657A2ecC5982EE2f49336A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2Bfec3f80b7D966D7657A2ecC5982EE2f49336A/logo.png b/blockchains/ethereum/assets/0xd2Bfec3f80b7D966D7657A2ecC5982EE2f49336A/logo.png new file mode 100644 index 00000000..554092e3 Binary files /dev/null and b/blockchains/ethereum/assets/0xd2Bfec3f80b7D966D7657A2ecC5982EE2f49336A/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2C6738D45b090ec05210fE8DCeEF4D8fc392892/info.json b/blockchains/ethereum/assets/0xd2C6738D45b090ec05210fE8DCeEF4D8fc392892/info.json new file mode 100644 index 00000000..bfe66287 --- /dev/null +++ b/blockchains/ethereum/assets/0xd2C6738D45b090ec05210fE8DCeEF4D8fc392892/info.json @@ -0,0 +1,11 @@ +{ + "name": "PointSet", + "symbol": "SET", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd2C6738D45b090ec05210fE8DCeEF4D8fc392892", + "status": "abandoned", + "id": "0xd2C6738D45b090ec05210fE8DCeEF4D8fc392892" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2C6738D45b090ec05210fE8DCeEF4D8fc392892/logo.png b/blockchains/ethereum/assets/0xd2C6738D45b090ec05210fE8DCeEF4D8fc392892/logo.png new file mode 100644 index 00000000..04c2660b Binary files /dev/null and b/blockchains/ethereum/assets/0xd2C6738D45b090ec05210fE8DCeEF4D8fc392892/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2D762335Cf27eFC747a904cDAE33E5AdceB43AC/info.json b/blockchains/ethereum/assets/0xd2D762335Cf27eFC747a904cDAE33E5AdceB43AC/info.json new file mode 100644 index 00000000..3b51639f --- /dev/null +++ b/blockchains/ethereum/assets/0xd2D762335Cf27eFC747a904cDAE33E5AdceB43AC/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R805398", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd2D762335Cf27eFC747a904cDAE33E5AdceB43AC", + "status": "abandoned", + "id": "0xd2D762335Cf27eFC747a904cDAE33E5AdceB43AC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2D762335Cf27eFC747a904cDAE33E5AdceB43AC/logo.png b/blockchains/ethereum/assets/0xd2D762335Cf27eFC747a904cDAE33E5AdceB43AC/logo.png new file mode 100644 index 00000000..d23c8364 Binary files /dev/null and b/blockchains/ethereum/assets/0xd2D762335Cf27eFC747a904cDAE33E5AdceB43AC/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2Fa8f92Ea72AbB35dBD6DECa57173d22db2BA49/info.json b/blockchains/ethereum/assets/0xd2Fa8f92Ea72AbB35dBD6DECa57173d22db2BA49/info.json new file mode 100644 index 00000000..d4349a27 --- /dev/null +++ b/blockchains/ethereum/assets/0xd2Fa8f92Ea72AbB35dBD6DECa57173d22db2BA49/info.json @@ -0,0 +1,11 @@ +{ + "name": "Origami Network", + "symbol": "ORI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://ori.network", + "explorer": "https://etherscan.io/token/0xd2Fa8f92Ea72AbB35dBD6DECa57173d22db2BA49", + "status": "abandoned", + "id": "0xd2Fa8f92Ea72AbB35dBD6DECa57173d22db2BA49" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2Fa8f92Ea72AbB35dBD6DECa57173d22db2BA49/logo.png b/blockchains/ethereum/assets/0xd2Fa8f92Ea72AbB35dBD6DECa57173d22db2BA49/logo.png new file mode 100755 index 00000000..1c792ade Binary files /dev/null and b/blockchains/ethereum/assets/0xd2Fa8f92Ea72AbB35dBD6DECa57173d22db2BA49/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/info.json b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/info.json new file mode 100644 index 00000000..4c25d1cb --- /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 00000000..63be5587 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 00000000..8d6b61e7 --- /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/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368/logo.png b/blockchains/ethereum/assets/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368/logo.png new file mode 100644 index 00000000..cfafcd41 Binary files /dev/null and b/blockchains/ethereum/assets/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2c0038e8A70900afEbCAA54155a8Fb590506BfB/info.json b/blockchains/ethereum/assets/0xd2c0038e8A70900afEbCAA54155a8Fb590506BfB/info.json new file mode 100644 index 00000000..0243124c --- /dev/null +++ b/blockchains/ethereum/assets/0xd2c0038e8A70900afEbCAA54155a8Fb590506BfB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bost Token", + "symbol": "BOST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd2c0038e8A70900afEbCAA54155a8Fb590506BfB", + "status": "abandoned", + "id": "0xd2c0038e8A70900afEbCAA54155a8Fb590506BfB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2c0038e8A70900afEbCAA54155a8Fb590506BfB/logo.png b/blockchains/ethereum/assets/0xd2c0038e8A70900afEbCAA54155a8Fb590506BfB/logo.png new file mode 100644 index 00000000..69eb1fa2 Binary files /dev/null and b/blockchains/ethereum/assets/0xd2c0038e8A70900afEbCAA54155a8Fb590506BfB/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2d0f85B690604C245F61513bf4679b24ed64C35/info.json b/blockchains/ethereum/assets/0xd2d0f85B690604C245F61513bf4679b24ed64C35/info.json new file mode 100644 index 00000000..b893e8a0 --- /dev/null +++ b/blockchains/ethereum/assets/0xd2d0f85B690604C245F61513bf4679b24ed64C35/info.json @@ -0,0 +1,11 @@ +{ + "name": "BFDToken", + "symbol": "BFDT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd2d0f85B690604C245F61513bf4679b24ed64C35", + "status": "abandoned", + "id": "0xd2d0f85B690604C245F61513bf4679b24ed64C35" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2d0f85B690604C245F61513bf4679b24ed64C35/logo.png b/blockchains/ethereum/assets/0xd2d0f85B690604C245F61513bf4679b24ed64C35/logo.png new file mode 100644 index 00000000..9d13e353 Binary files /dev/null and b/blockchains/ethereum/assets/0xd2d0f85B690604C245F61513bf4679b24ed64C35/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2d6158683aeE4Cc838067727209a0aAF4359de3/info.json b/blockchains/ethereum/assets/0xd2d6158683aeE4Cc838067727209a0aAF4359de3/info.json new file mode 100644 index 00000000..9c83e27b --- /dev/null +++ b/blockchains/ethereum/assets/0xd2d6158683aeE4Cc838067727209a0aAF4359de3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bounty0x Token", + "symbol": "BNTY", + "type": "ERC20", + "decimals": 18, + "description": "Bounty0x (BNTY) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://bounty0x.io", + "explorer": "https://etherscan.io/token/0xd2d6158683aeE4Cc838067727209a0aAF4359de3", + "status": "active", + "id": "0xd2d6158683aeE4Cc838067727209a0aAF4359de3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2d6158683aeE4Cc838067727209a0aAF4359de3/logo.png b/blockchains/ethereum/assets/0xd2d6158683aeE4Cc838067727209a0aAF4359de3/logo.png new file mode 100644 index 00000000..3914097d Binary files /dev/null and b/blockchains/ethereum/assets/0xd2d6158683aeE4Cc838067727209a0aAF4359de3/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2f68556348A9d4D5b0b019b3C22f856d0c9eD9A/info.json b/blockchains/ethereum/assets/0xd2f68556348A9d4D5b0b019b3C22f856d0c9eD9A/info.json new file mode 100644 index 00000000..7c5c6000 --- /dev/null +++ b/blockchains/ethereum/assets/0xd2f68556348A9d4D5b0b019b3C22f856d0c9eD9A/info.json @@ -0,0 +1,11 @@ +{ + "name": "WinBlockChainNetwork", + "symbol": "WIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd2f68556348A9d4D5b0b019b3C22f856d0c9eD9A", + "status": "abandoned", + "id": "0xd2f68556348A9d4D5b0b019b3C22f856d0c9eD9A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2f68556348A9d4D5b0b019b3C22f856d0c9eD9A/logo.png b/blockchains/ethereum/assets/0xd2f68556348A9d4D5b0b019b3C22f856d0c9eD9A/logo.png new file mode 100644 index 00000000..efa011a6 Binary files /dev/null and b/blockchains/ethereum/assets/0xd2f68556348A9d4D5b0b019b3C22f856d0c9eD9A/logo.png differ diff --git a/blockchains/ethereum/assets/0xd3006F35C0286F5485971F935B87F84e72e8e43F/info.json b/blockchains/ethereum/assets/0xd3006F35C0286F5485971F935B87F84e72e8e43F/info.json new file mode 100644 index 00000000..2ae8f558 --- /dev/null +++ b/blockchains/ethereum/assets/0xd3006F35C0286F5485971F935B87F84e72e8e43F/info.json @@ -0,0 +1,11 @@ +{ + "name": "VIP Tokens", + "symbol": "VIP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd3006F35C0286F5485971F935B87F84e72e8e43F", + "status": "abandoned", + "id": "0xd3006F35C0286F5485971F935B87F84e72e8e43F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd3006F35C0286F5485971F935B87F84e72e8e43F/logo.png b/blockchains/ethereum/assets/0xd3006F35C0286F5485971F935B87F84e72e8e43F/logo.png new file mode 100644 index 00000000..7afbfef0 Binary files /dev/null and b/blockchains/ethereum/assets/0xd3006F35C0286F5485971F935B87F84e72e8e43F/logo.png differ diff --git a/blockchains/ethereum/assets/0xd30581895B8320c356aFc6f80B07dfB468a65b69/info.json b/blockchains/ethereum/assets/0xd30581895B8320c356aFc6f80B07dfB468a65b69/info.json new file mode 100644 index 00000000..af2eceb8 --- /dev/null +++ b/blockchains/ethereum/assets/0xd30581895B8320c356aFc6f80B07dfB468a65b69/info.json @@ -0,0 +1,11 @@ +{ + "name": "Loonie Token", + "symbol": "LNI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd30581895B8320c356aFc6f80B07dfB468a65b69", + "status": "abandoned", + "id": "0xd30581895B8320c356aFc6f80B07dfB468a65b69" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd30581895B8320c356aFc6f80B07dfB468a65b69/logo.png b/blockchains/ethereum/assets/0xd30581895B8320c356aFc6f80B07dfB468a65b69/logo.png new file mode 100755 index 00000000..47e48429 Binary files /dev/null and b/blockchains/ethereum/assets/0xd30581895B8320c356aFc6f80B07dfB468a65b69/logo.png differ diff --git a/blockchains/ethereum/assets/0xd30a2e9347Ad48Ea208ee563a9CdfD80E962a727/info.json b/blockchains/ethereum/assets/0xd30a2e9347Ad48Ea208ee563a9CdfD80E962a727/info.json new file mode 100644 index 00000000..a51c3793 --- /dev/null +++ b/blockchains/ethereum/assets/0xd30a2e9347Ad48Ea208ee563a9CdfD80E962a727/info.json @@ -0,0 +1,11 @@ +{ + "name": "RoyaltyCOIN", + "symbol": "RYLT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd30a2e9347Ad48Ea208ee563a9CdfD80E962a727", + "status": "abandoned", + "id": "0xd30a2e9347Ad48Ea208ee563a9CdfD80E962a727" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd30a2e9347Ad48Ea208ee563a9CdfD80E962a727/logo.png b/blockchains/ethereum/assets/0xd30a2e9347Ad48Ea208ee563a9CdfD80E962a727/logo.png new file mode 100755 index 00000000..350be480 Binary files /dev/null and b/blockchains/ethereum/assets/0xd30a2e9347Ad48Ea208ee563a9CdfD80E962a727/logo.png differ diff --git a/blockchains/ethereum/assets/0xd31695a1d35E489252CE57b129FD4b1B05E6AcaC/info.json b/blockchains/ethereum/assets/0xd31695a1d35E489252CE57b129FD4b1B05E6AcaC/info.json new file mode 100644 index 00000000..7046105f --- /dev/null +++ b/blockchains/ethereum/assets/0xd31695a1d35E489252CE57b129FD4b1B05E6AcaC/info.json @@ -0,0 +1,11 @@ +{ + "name": "TOKPIE", + "symbol": "TKP", + "type": "ERC20", + "decimals": 18, + "description": "TOKPIE is the First Cryptocurrency Exchange Platform with BOUNTY STAKES TRADING service. Holders of the TOKPIE (TKP) token can get up to 500% discount on fees, regular airdrops from newly listed projects, up to 70% referral bonus, access to the bounty stakes depositing and trading, P2P loans with TKP pledged as collateral under 90% LTV, and income from TKP lending (staking). Also, TKP is accepted on Tokpie IEO Launchpad.", + "website": "https://tokpie.io", + "explorer": "https://etherscan.io/token/0xd31695a1d35E489252CE57b129FD4b1B05E6AcaC", + "status": "active", + "id": "0xd31695a1d35E489252CE57b129FD4b1B05E6AcaC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd31695a1d35E489252CE57b129FD4b1B05E6AcaC/logo.png b/blockchains/ethereum/assets/0xd31695a1d35E489252CE57b129FD4b1B05E6AcaC/logo.png new file mode 100644 index 00000000..8a319622 Binary files /dev/null and b/blockchains/ethereum/assets/0xd31695a1d35E489252CE57b129FD4b1B05E6AcaC/logo.png differ diff --git a/blockchains/ethereum/assets/0xd321Ca7Cd7A233483b8CD5a11a89E9337e70Df84/info.json b/blockchains/ethereum/assets/0xd321Ca7Cd7A233483b8CD5a11a89E9337e70Df84/info.json new file mode 100644 index 00000000..e4cf0f86 --- /dev/null +++ b/blockchains/ethereum/assets/0xd321Ca7Cd7A233483b8CD5a11a89E9337e70Df84/info.json @@ -0,0 +1,11 @@ +{ + "name": "VI", + "symbol": "VI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://vid.camera/", + "explorer": "https://etherscan.io/token/0xd321Ca7Cd7A233483b8CD5a11a89E9337e70Df84", + "status": "abandoned", + "id": "0xd321Ca7Cd7A233483b8CD5a11a89E9337e70Df84" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd321Ca7Cd7A233483b8CD5a11a89E9337e70Df84/logo.png b/blockchains/ethereum/assets/0xd321Ca7Cd7A233483b8CD5a11a89E9337e70Df84/logo.png new file mode 100644 index 00000000..828882e0 Binary files /dev/null and b/blockchains/ethereum/assets/0xd321Ca7Cd7A233483b8CD5a11a89E9337e70Df84/logo.png differ diff --git a/blockchains/ethereum/assets/0xd32540c0d54A7fCDD9500bfa57D3Ba1e604581D7/info.json b/blockchains/ethereum/assets/0xd32540c0d54A7fCDD9500bfa57D3Ba1e604581D7/info.json new file mode 100644 index 00000000..b4b5e8fa --- /dev/null +++ b/blockchains/ethereum/assets/0xd32540c0d54A7fCDD9500bfa57D3Ba1e604581D7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jules", + "symbol": "JULES", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd32540c0d54A7fCDD9500bfa57D3Ba1e604581D7", + "status": "abandoned", + "id": "0xd32540c0d54A7fCDD9500bfa57D3Ba1e604581D7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd32540c0d54A7fCDD9500bfa57D3Ba1e604581D7/logo.png b/blockchains/ethereum/assets/0xd32540c0d54A7fCDD9500bfa57D3Ba1e604581D7/logo.png new file mode 100644 index 00000000..3baf0966 Binary files /dev/null and b/blockchains/ethereum/assets/0xd32540c0d54A7fCDD9500bfa57D3Ba1e604581D7/logo.png differ diff --git a/blockchains/ethereum/assets/0xd340Bc93d2cf0df662347E6D72eaf6174C613A3C/info.json b/blockchains/ethereum/assets/0xd340Bc93d2cf0df662347E6D72eaf6174C613A3C/info.json new file mode 100644 index 00000000..86497e0f --- /dev/null +++ b/blockchains/ethereum/assets/0xd340Bc93d2cf0df662347E6D72eaf6174C613A3C/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-2/30M2", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd340Bc93d2cf0df662347E6D72eaf6174C613A3C", + "status": "abandoned", + "id": "0xd340Bc93d2cf0df662347E6D72eaf6174C613A3C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd340Bc93d2cf0df662347E6D72eaf6174C613A3C/logo.png b/blockchains/ethereum/assets/0xd340Bc93d2cf0df662347E6D72eaf6174C613A3C/logo.png new file mode 100644 index 00000000..029f77f2 Binary files /dev/null and b/blockchains/ethereum/assets/0xd340Bc93d2cf0df662347E6D72eaf6174C613A3C/logo.png differ diff --git a/blockchains/ethereum/assets/0xd341d1680Eeee3255b8C4c75bCCE7EB57f144dAe/info.json b/blockchains/ethereum/assets/0xd341d1680Eeee3255b8C4c75bCCE7EB57f144dAe/info.json new file mode 100644 index 00000000..264f5b1e --- /dev/null +++ b/blockchains/ethereum/assets/0xd341d1680Eeee3255b8C4c75bCCE7EB57f144dAe/info.json @@ -0,0 +1,11 @@ +{ + "name": "onG", + "symbol": "ONG", + "type": "ERC20", + "decimals": 18, + "description": "SoMee.Social (ONG) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://SoMee.social", + "explorer": "https://etherscan.io/token/0xd341d1680Eeee3255b8C4c75bCCE7EB57f144dAe", + "status": "active", + "id": "0xd341d1680Eeee3255b8C4c75bCCE7EB57f144dAe" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd341d1680Eeee3255b8C4c75bCCE7EB57f144dAe/logo.png b/blockchains/ethereum/assets/0xd341d1680Eeee3255b8C4c75bCCE7EB57f144dAe/logo.png new file mode 100755 index 00000000..8032dcdb Binary files /dev/null and b/blockchains/ethereum/assets/0xd341d1680Eeee3255b8C4c75bCCE7EB57f144dAe/logo.png differ diff --git a/blockchains/ethereum/assets/0xd3516ecB852037a33bAD2372D52b638D6D534516/info.json b/blockchains/ethereum/assets/0xd3516ecB852037a33bAD2372D52b638D6D534516/info.json new file mode 100644 index 00000000..988553b7 --- /dev/null +++ b/blockchains/ethereum/assets/0xd3516ecB852037a33bAD2372D52b638D6D534516/info.json @@ -0,0 +1,11 @@ +{ + "name": "Auto Make Money", + "symbol": "AMM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd3516ecB852037a33bAD2372D52b638D6D534516", + "status": "abandoned", + "id": "0xd3516ecB852037a33bAD2372D52b638D6D534516" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd3516ecB852037a33bAD2372D52b638D6D534516/logo.png b/blockchains/ethereum/assets/0xd3516ecB852037a33bAD2372D52b638D6D534516/logo.png new file mode 100644 index 00000000..09327bb8 Binary files /dev/null and b/blockchains/ethereum/assets/0xd3516ecB852037a33bAD2372D52b638D6D534516/logo.png differ diff --git a/blockchains/ethereum/assets/0xd35833f9255FB28cC6b91aCB8A66Ba6429D6Ef5A/info.json b/blockchains/ethereum/assets/0xd35833f9255FB28cC6b91aCB8A66Ba6429D6Ef5A/info.json new file mode 100644 index 00000000..eb213749 --- /dev/null +++ b/blockchains/ethereum/assets/0xd35833f9255FB28cC6b91aCB8A66Ba6429D6Ef5A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hypnoxys", + "symbol": "HYPX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://hypnoxys.com/", + "explorer": "https://etherscan.io/token/0xd35833f9255FB28cC6b91aCB8A66Ba6429D6Ef5A", + "status": "abandoned", + "id": "0xd35833f9255FB28cC6b91aCB8A66Ba6429D6Ef5A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd35833f9255FB28cC6b91aCB8A66Ba6429D6Ef5A/logo.png b/blockchains/ethereum/assets/0xd35833f9255FB28cC6b91aCB8A66Ba6429D6Ef5A/logo.png new file mode 100755 index 00000000..a148c841 Binary files /dev/null and b/blockchains/ethereum/assets/0xd35833f9255FB28cC6b91aCB8A66Ba6429D6Ef5A/logo.png differ diff --git a/blockchains/ethereum/assets/0xd36932143F6eBDEDD872D5Fb0651f4B72Fd15a84/info.json b/blockchains/ethereum/assets/0xd36932143F6eBDEDD872D5Fb0651f4B72Fd15a84/info.json new file mode 100644 index 00000000..ce820668 --- /dev/null +++ b/blockchains/ethereum/assets/0xd36932143F6eBDEDD872D5Fb0651f4B72Fd15a84/info.json @@ -0,0 +1,32 @@ +{ + "name": "mAAPL Token", + "website": "https://mirror.finance", + "description": "Wrapped Mirror AAPL Token.", + "explorer": "https://etherscan.io/token/0xd36932143F6eBDEDD872D5Fb0651f4B72Fd15a84", + "type": "ERC20", + "symbol": "mAAPL", + "decimals": 18, + "status": "active", + "id": "0xd36932143F6eBDEDD872D5Fb0651f4B72Fd15a84", + "tags": [ + "wrapped" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MirrorProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/mirror_protocol" + }, + { + "name": "discord", + "url": "https://discord.com/MirrorProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/@mirror-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd36932143F6eBDEDD872D5Fb0651f4B72Fd15a84/logo.png b/blockchains/ethereum/assets/0xd36932143F6eBDEDD872D5Fb0651f4B72Fd15a84/logo.png new file mode 100644 index 00000000..20d5f718 Binary files /dev/null and b/blockchains/ethereum/assets/0xd36932143F6eBDEDD872D5Fb0651f4B72Fd15a84/logo.png differ diff --git a/blockchains/ethereum/assets/0xd36E9F8F194A47B10aF16C7656a68EBa1DFe88e4/info.json b/blockchains/ethereum/assets/0xd36E9F8F194A47B10aF16C7656a68EBa1DFe88e4/info.json new file mode 100644 index 00000000..f62004c9 --- /dev/null +++ b/blockchains/ethereum/assets/0xd36E9F8F194A47B10aF16C7656a68EBa1DFe88e4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Atlas Token", + "symbol": "ATLS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://atlas.world/", + "explorer": "https://etherscan.io/token/0xd36E9F8F194A47B10aF16C7656a68EBa1DFe88e4", + "status": "abandoned", + "id": "0xd36E9F8F194A47B10aF16C7656a68EBa1DFe88e4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd36E9F8F194A47B10aF16C7656a68EBa1DFe88e4/logo.png b/blockchains/ethereum/assets/0xd36E9F8F194A47B10aF16C7656a68EBa1DFe88e4/logo.png new file mode 100644 index 00000000..f4d9b93b Binary files /dev/null and b/blockchains/ethereum/assets/0xd36E9F8F194A47B10aF16C7656a68EBa1DFe88e4/logo.png differ diff --git a/blockchains/ethereum/assets/0xd37532D304214D588aeeaC4c365E8F1d72e2304A/info.json b/blockchains/ethereum/assets/0xd37532D304214D588aeeaC4c365E8F1d72e2304A/info.json new file mode 100644 index 00000000..03e5b3db --- /dev/null +++ b/blockchains/ethereum/assets/0xd37532D304214D588aeeaC4c365E8F1d72e2304A/info.json @@ -0,0 +1,11 @@ +{ + "name": "FCoin Token (Released)", + "symbol": "FT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd37532D304214D588aeeaC4c365E8F1d72e2304A", + "status": "abandoned", + "id": "0xd37532D304214D588aeeaC4c365E8F1d72e2304A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd37532D304214D588aeeaC4c365E8F1d72e2304A/logo.png b/blockchains/ethereum/assets/0xd37532D304214D588aeeaC4c365E8F1d72e2304A/logo.png new file mode 100755 index 00000000..1d376cd4 Binary files /dev/null and b/blockchains/ethereum/assets/0xd37532D304214D588aeeaC4c365E8F1d72e2304A/logo.png differ diff --git a/blockchains/ethereum/assets/0xd379700999F4805Ce80aa32DB46A94dF64561108/info.json b/blockchains/ethereum/assets/0xd379700999F4805Ce80aa32DB46A94dF64561108/info.json new file mode 100644 index 00000000..ca6e213f --- /dev/null +++ b/blockchains/ethereum/assets/0xd379700999F4805Ce80aa32DB46A94dF64561108/info.json @@ -0,0 +1,17 @@ +{ + "name": "Dextrust", + "website": "https://dextrust.org/", + "description": "A community driven decentralized exchange platform", + "explorer": "https://etherscan.io/token/0xd379700999F4805Ce80aa32DB46A94dF64561108", + "type": "ERC20", + "symbol": "DETS", + "decimals": 18, + "status": "active", + "id": "0xd379700999F4805Ce80aa32DB46A94dF64561108", + "links": [ + { + "name": "github", + "url": "https://github.com/dextrustdefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd379700999F4805Ce80aa32DB46A94dF64561108/logo.png b/blockchains/ethereum/assets/0xd379700999F4805Ce80aa32DB46A94dF64561108/logo.png new file mode 100644 index 00000000..d325a8a4 Binary files /dev/null and b/blockchains/ethereum/assets/0xd379700999F4805Ce80aa32DB46A94dF64561108/logo.png differ diff --git a/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/info.json b/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/info.json new file mode 100644 index 00000000..99b9ad86 --- /dev/null +++ b/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/info.json @@ -0,0 +1,32 @@ +{ + "name": "Symbiosis", + "type": "ERC20", + "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://etherscan.io/token/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9", + "status": "active", + "id": "0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9", + "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/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/logo.png b/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/logo.png new file mode 100644 index 00000000..26f3dbd5 Binary files /dev/null and b/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/logo.png differ diff --git a/blockchains/ethereum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/ethereum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json new file mode 100644 index 00000000..a844e61f --- /dev/null +++ b/blockchains/ethereum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json @@ -0,0 +1,36 @@ +{ + "name": "Okcash", + "type": "ERC20", + "symbol": "OK", + "decimals": 18, + "website": "https://okcash.co", + "description": "OK is the leading multi chain PoS, web3 + NFTs open source electronic cash, its design is public, nobody owns or controls Okcash and everyone can take part.", + "explorer": "https://etherscan.io/token/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", + "status": "active", + "id": "0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", + "links": [ + { + "name": "x", + "url": "https://x.com/OkcashCrypto" + }, + { + "name": "github", + "url": "https://github.com/okcashpro" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/okcash/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/okcash" + }, + { + "name": "medium", + "url": "https://medium.com/okcash" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png b/blockchains/ethereum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png new file mode 100644 index 00000000..a3b20074 Binary files /dev/null and b/blockchains/ethereum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png differ diff --git a/blockchains/ethereum/assets/0xd3CC9d8f3689B83c91b7B59cAB4946B063EB894A/info.json b/blockchains/ethereum/assets/0xd3CC9d8f3689B83c91b7B59cAB4946B063EB894A/info.json new file mode 100644 index 00000000..a381e60c --- /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 00000000..283ae45b Binary files /dev/null and b/blockchains/ethereum/assets/0xd3CC9d8f3689B83c91b7B59cAB4946B063EB894A/logo.png differ diff --git a/blockchains/ethereum/assets/0xd3CDc4e75750DC1e59F8342200742B6B29490e70/info.json b/blockchains/ethereum/assets/0xd3CDc4e75750DC1e59F8342200742B6B29490e70/info.json new file mode 100644 index 00000000..1ed668bb --- /dev/null +++ b/blockchains/ethereum/assets/0xd3CDc4e75750DC1e59F8342200742B6B29490e70/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decurian", + "symbol": "ECU", + "type": "ERC20", + "decimals": 3, + "description": "Decurian will be known as a competitive video gaming challenge token. Most commonly, e-sports takes the form of organized, multiplayer video game competitions, particularly between professional players. E-sports is a relatively young industry, yet, it is experiencing extraordinary growth.", + "website": "https://ecucoins.com/", + "explorer": "https://etherscan.io/token/0xd3CDc4e75750DC1e59F8342200742B6B29490e70", + "status": "active", + "id": "0xd3CDc4e75750DC1e59F8342200742B6B29490e70" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd3CDc4e75750DC1e59F8342200742B6B29490e70/logo.png b/blockchains/ethereum/assets/0xd3CDc4e75750DC1e59F8342200742B6B29490e70/logo.png new file mode 100644 index 00000000..c0f2d931 Binary files /dev/null and b/blockchains/ethereum/assets/0xd3CDc4e75750DC1e59F8342200742B6B29490e70/logo.png differ diff --git a/blockchains/ethereum/assets/0xd3E41Fd8BbCd3D512119608Cf4a687a1Fda9807D/info.json b/blockchains/ethereum/assets/0xd3E41Fd8BbCd3D512119608Cf4a687a1Fda9807D/info.json new file mode 100644 index 00000000..d971ee31 --- /dev/null +++ b/blockchains/ethereum/assets/0xd3E41Fd8BbCd3D512119608Cf4a687a1Fda9807D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kapow", + "symbol": "KPW", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd3E41Fd8BbCd3D512119608Cf4a687a1Fda9807D", + "status": "abandoned", + "id": "0xd3E41Fd8BbCd3D512119608Cf4a687a1Fda9807D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd3E41Fd8BbCd3D512119608Cf4a687a1Fda9807D/logo.png b/blockchains/ethereum/assets/0xd3E41Fd8BbCd3D512119608Cf4a687a1Fda9807D/logo.png new file mode 100644 index 00000000..9c2dff7e Binary files /dev/null and b/blockchains/ethereum/assets/0xd3E41Fd8BbCd3D512119608Cf4a687a1Fda9807D/logo.png differ diff --git a/blockchains/ethereum/assets/0xd3E4Ba569045546D09CF021ECC5dFe42b1d7f6E4/info.json b/blockchains/ethereum/assets/0xd3E4Ba569045546D09CF021ECC5dFe42b1d7f6E4/info.json new file mode 100644 index 00000000..5ced2194 --- /dev/null +++ b/blockchains/ethereum/assets/0xd3E4Ba569045546D09CF021ECC5dFe42b1d7f6E4/info.json @@ -0,0 +1,25 @@ +{ + "name": "Morpheus.Network", + "website": "https://morpheus.network/", + "description": "The Morpheus.Network is a full-service, global, automated, supply chain platform for the global trading industry utilizing blockchain technology. This is achieved with Smart Contracts driving the supply chain with predetermined, automated work contracts, shipping & customs documents as well.", + "explorer": "https://etherscan.io/token/0xd3e4ba569045546d09cf021ecc5dfe42b1d7f6e4", + "symbol": "MNW", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0xd3E4Ba569045546D09CF021ECC5dFe42b1d7f6E4", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/morpheus-network/" + }, + { + "name": "x", + "url": "https://x.com/MNWSupplyChain" + }, + { + "name": "telegram", + "url": "https://t.me/themorpheusnetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd3E4Ba569045546D09CF021ECC5dFe42b1d7f6E4/logo.png b/blockchains/ethereum/assets/0xd3E4Ba569045546D09CF021ECC5dFe42b1d7f6E4/logo.png new file mode 100644 index 00000000..376f2689 Binary files /dev/null and b/blockchains/ethereum/assets/0xd3E4Ba569045546D09CF021ECC5dFe42b1d7f6E4/logo.png differ diff --git a/blockchains/ethereum/assets/0xd3E8695d2Bef061EAb38B5EF526c0f714108119C/info.json b/blockchains/ethereum/assets/0xd3E8695d2Bef061EAb38B5EF526c0f714108119C/info.json new file mode 100644 index 00000000..5a9443c6 --- /dev/null +++ b/blockchains/ethereum/assets/0xd3E8695d2Bef061EAb38B5EF526c0f714108119C/info.json @@ -0,0 +1,17 @@ +{ + "name": "YFIVE.FINANCE", + "website": "https://yfive.finance/", + "description": "YFIVE is a community driven DeFi-project by the people and for the people, the decisions and actions of YFIVE are made by its community through voting to assure equity and fairness for all.", + "explorer": "https://etherscan.io/token/0xd3E8695d2Bef061EAb38B5EF526c0f714108119C", + "type": "ERC20", + "symbol": "YFIVE", + "decimals": 18, + "status": "active", + "id": "0xd3E8695d2Bef061EAb38B5EF526c0f714108119C", + "links": [ + { + "name": "x", + "url": "https://x.com/YFIVEfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd3E8695d2Bef061EAb38B5EF526c0f714108119C/logo.png b/blockchains/ethereum/assets/0xd3E8695d2Bef061EAb38B5EF526c0f714108119C/logo.png new file mode 100644 index 00000000..554454ef Binary files /dev/null and b/blockchains/ethereum/assets/0xd3E8695d2Bef061EAb38B5EF526c0f714108119C/logo.png differ diff --git a/blockchains/ethereum/assets/0xd3b5a4ca369a8E68dA6218ee322467ccec4Dd800/info.json b/blockchains/ethereum/assets/0xd3b5a4ca369a8E68dA6218ee322467ccec4Dd800/info.json new file mode 100644 index 00000000..92aeed83 --- /dev/null +++ b/blockchains/ethereum/assets/0xd3b5a4ca369a8E68dA6218ee322467ccec4Dd800/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoRiyal", + "symbol": "CR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd3b5a4ca369a8E68dA6218ee322467ccec4Dd800", + "status": "abandoned", + "id": "0xd3b5a4ca369a8E68dA6218ee322467ccec4Dd800" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd3b5a4ca369a8E68dA6218ee322467ccec4Dd800/logo.png b/blockchains/ethereum/assets/0xd3b5a4ca369a8E68dA6218ee322467ccec4Dd800/logo.png new file mode 100644 index 00000000..834a9a23 Binary files /dev/null and b/blockchains/ethereum/assets/0xd3b5a4ca369a8E68dA6218ee322467ccec4Dd800/logo.png differ diff --git a/blockchains/ethereum/assets/0xd408Df4116248a737cEF94917Ab6C609B37280BC/info.json b/blockchains/ethereum/assets/0xd408Df4116248a737cEF94917Ab6C609B37280BC/info.json new file mode 100644 index 00000000..0e422d1d --- /dev/null +++ b/blockchains/ethereum/assets/0xd408Df4116248a737cEF94917Ab6C609B37280BC/info.json @@ -0,0 +1,11 @@ +{ + "name": "CXMF", + "symbol": "CXMF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd408Df4116248a737cEF94917Ab6C609B37280BC", + "status": "abandoned", + "id": "0xd408Df4116248a737cEF94917Ab6C609B37280BC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd408Df4116248a737cEF94917Ab6C609B37280BC/logo.png b/blockchains/ethereum/assets/0xd408Df4116248a737cEF94917Ab6C609B37280BC/logo.png new file mode 100644 index 00000000..17f6de50 Binary files /dev/null and b/blockchains/ethereum/assets/0xd408Df4116248a737cEF94917Ab6C609B37280BC/logo.png differ diff --git a/blockchains/ethereum/assets/0xd42b6A26ba742C11bED321B418Ca5d9842cE17CE/info.json b/blockchains/ethereum/assets/0xd42b6A26ba742C11bED321B418Ca5d9842cE17CE/info.json new file mode 100644 index 00000000..8353dbbe --- /dev/null +++ b/blockchains/ethereum/assets/0xd42b6A26ba742C11bED321B418Ca5d9842cE17CE/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitxmenStock", + "symbol": "BXMS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd42b6A26ba742C11bED321B418Ca5d9842cE17CE", + "status": "abandoned", + "id": "0xd42b6A26ba742C11bED321B418Ca5d9842cE17CE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd42b6A26ba742C11bED321B418Ca5d9842cE17CE/logo.png b/blockchains/ethereum/assets/0xd42b6A26ba742C11bED321B418Ca5d9842cE17CE/logo.png new file mode 100644 index 00000000..02b73994 Binary files /dev/null and b/blockchains/ethereum/assets/0xd42b6A26ba742C11bED321B418Ca5d9842cE17CE/logo.png differ diff --git a/blockchains/ethereum/assets/0xd42debE4eDc92Bd5a3FBb4243e1ecCf6d63A4A5d/info.json b/blockchains/ethereum/assets/0xd42debE4eDc92Bd5a3FBb4243e1ecCf6d63A4A5d/info.json new file mode 100644 index 00000000..c83d5cfb --- /dev/null +++ b/blockchains/ethereum/assets/0xd42debE4eDc92Bd5a3FBb4243e1ecCf6d63A4A5d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Carboneum", + "symbol": "C8", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.carboneum.io/", + "explorer": "https://etherscan.io/token/0xd42debE4eDc92Bd5a3FBb4243e1ecCf6d63A4A5d", + "status": "abandoned", + "id": "0xd42debE4eDc92Bd5a3FBb4243e1ecCf6d63A4A5d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd42debE4eDc92Bd5a3FBb4243e1ecCf6d63A4A5d/logo.png b/blockchains/ethereum/assets/0xd42debE4eDc92Bd5a3FBb4243e1ecCf6d63A4A5d/logo.png new file mode 100644 index 00000000..28e5dd55 Binary files /dev/null and b/blockchains/ethereum/assets/0xd42debE4eDc92Bd5a3FBb4243e1ecCf6d63A4A5d/logo.png differ diff --git a/blockchains/ethereum/assets/0xd433138d12beB9929FF6fd583DC83663eea6Aaa5/info.json b/blockchains/ethereum/assets/0xd433138d12beB9929FF6fd583DC83663eea6Aaa5/info.json new file mode 100644 index 00000000..26cabc06 --- /dev/null +++ b/blockchains/ethereum/assets/0xd433138d12beB9929FF6fd583DC83663eea6Aaa5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitrue Coin", + "symbol": "BTR", + "type": "ERC20", + "decimals": 18, + "description": "Bitrue Coin (BTR) is the native asset on the Bitrue exchange. BTR is designed to support all Bitrue businesses such as trading fee deductions, cash deposits by projects, voting for listings, wealth management programs, and loan programs.", + "website": "https://www.bitrue.com/", + "explorer": "https://etherscan.io/token/0xd433138d12beB9929FF6fd583DC83663eea6Aaa5", + "status": "active", + "id": "0xd433138d12beB9929FF6fd583DC83663eea6Aaa5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd433138d12beB9929FF6fd583DC83663eea6Aaa5/logo.png b/blockchains/ethereum/assets/0xd433138d12beB9929FF6fd583DC83663eea6Aaa5/logo.png new file mode 100644 index 00000000..0bb0f065 Binary files /dev/null and b/blockchains/ethereum/assets/0xd433138d12beB9929FF6fd583DC83663eea6Aaa5/logo.png differ diff --git a/blockchains/ethereum/assets/0xd44bb6663936CAb1310584A277f7DAa6943d4904/info.json b/blockchains/ethereum/assets/0xd44bb6663936CAb1310584A277f7DAa6943d4904/info.json new file mode 100644 index 00000000..cace3ad3 --- /dev/null +++ b/blockchains/ethereum/assets/0xd44bb6663936CAb1310584A277f7DAa6943d4904/info.json @@ -0,0 +1,11 @@ +{ + "name": "Winco", + "symbol": "WCO", + "type": "ERC20", + "decimals": 8, + "description": "Winco (WCO) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://winco.io", + "explorer": "https://etherscan.io/token/0xd44bb6663936CAb1310584A277f7DAa6943d4904", + "status": "active", + "id": "0xd44bb6663936CAb1310584A277f7DAa6943d4904" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd44bb6663936CAb1310584A277f7DAa6943d4904/logo.png b/blockchains/ethereum/assets/0xd44bb6663936CAb1310584A277f7DAa6943d4904/logo.png new file mode 100644 index 00000000..97c6d1e7 Binary files /dev/null and b/blockchains/ethereum/assets/0xd44bb6663936CAb1310584A277f7DAa6943d4904/logo.png differ diff --git a/blockchains/ethereum/assets/0xd459ECeddafcc1d876a3be7290A2E16e801073a3/info.json b/blockchains/ethereum/assets/0xd459ECeddafcc1d876a3be7290A2E16e801073a3/info.json new file mode 100644 index 00000000..bfd5ebb5 --- /dev/null +++ b/blockchains/ethereum/assets/0xd459ECeddafcc1d876a3be7290A2E16e801073a3/info.json @@ -0,0 +1,25 @@ +{ + "name": "BounceBit Token", + "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 00000000..a6aa6c5b Binary files /dev/null and b/blockchains/ethereum/assets/0xd459ECeddafcc1d876a3be7290A2E16e801073a3/logo.png differ diff --git a/blockchains/ethereum/assets/0xd47334b79333aF70AF1013276876D735151BDC19/info.json b/blockchains/ethereum/assets/0xd47334b79333aF70AF1013276876D735151BDC19/info.json new file mode 100644 index 00000000..d2fd4f73 --- /dev/null +++ b/blockchains/ethereum/assets/0xd47334b79333aF70AF1013276876D735151BDC19/info.json @@ -0,0 +1,11 @@ +{ + "name": "HalifaXBurn Token", + "symbol": "HXB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd47334b79333aF70AF1013276876D735151BDC19", + "status": "abandoned", + "id": "0xd47334b79333aF70AF1013276876D735151BDC19" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd47334b79333aF70AF1013276876D735151BDC19/logo.png b/blockchains/ethereum/assets/0xd47334b79333aF70AF1013276876D735151BDC19/logo.png new file mode 100644 index 00000000..aa4bf6c8 Binary files /dev/null and b/blockchains/ethereum/assets/0xd47334b79333aF70AF1013276876D735151BDC19/logo.png differ diff --git a/blockchains/ethereum/assets/0xd48F5F8bAFC473cE7611d3c915050d2e78A0AF3E/info.json b/blockchains/ethereum/assets/0xd48F5F8bAFC473cE7611d3c915050d2e78A0AF3E/info.json new file mode 100644 index 00000000..bdddb2af --- /dev/null +++ b/blockchains/ethereum/assets/0xd48F5F8bAFC473cE7611d3c915050d2e78A0AF3E/info.json @@ -0,0 +1,11 @@ +{ + "name": "TITANIUM NETWORKS", + "symbol": "$TTN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd48F5F8bAFC473cE7611d3c915050d2e78A0AF3E", + "status": "abandoned", + "id": "0xd48F5F8bAFC473cE7611d3c915050d2e78A0AF3E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd48F5F8bAFC473cE7611d3c915050d2e78A0AF3E/logo.png b/blockchains/ethereum/assets/0xd48F5F8bAFC473cE7611d3c915050d2e78A0AF3E/logo.png new file mode 100755 index 00000000..935f2b62 Binary files /dev/null and b/blockchains/ethereum/assets/0xd48F5F8bAFC473cE7611d3c915050d2e78A0AF3E/logo.png differ diff --git a/blockchains/ethereum/assets/0xd4a293aE8bB9E0BE12E99eB19d48239e8c83a136/info.json b/blockchains/ethereum/assets/0xd4a293aE8bB9E0BE12E99eB19d48239e8c83a136/info.json new file mode 100644 index 00000000..21377fb0 --- /dev/null +++ b/blockchains/ethereum/assets/0xd4a293aE8bB9E0BE12E99eB19d48239e8c83a136/info.json @@ -0,0 +1,11 @@ +{ + "name": "Insureum Token", + "symbol": "ISR", + "type": "ERC20", + "decimals": 18, + "description": "Insureum (ISR) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://insureum.co/product", + "explorer": "https://etherscan.io/token/0xd4a293aE8bB9E0BE12E99eB19d48239e8c83a136", + "status": "active", + "id": "0xd4a293aE8bB9E0BE12E99eB19d48239e8c83a136" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd4a293aE8bB9E0BE12E99eB19d48239e8c83a136/logo.png b/blockchains/ethereum/assets/0xd4a293aE8bB9E0BE12E99eB19d48239e8c83a136/logo.png new file mode 100644 index 00000000..524171d9 Binary files /dev/null and b/blockchains/ethereum/assets/0xd4a293aE8bB9E0BE12E99eB19d48239e8c83a136/logo.png differ diff --git a/blockchains/ethereum/assets/0xd4c435F5B09F855C3317c8524Cb1F586E42795fa/info.json b/blockchains/ethereum/assets/0xd4c435F5B09F855C3317c8524Cb1F586E42795fa/info.json new file mode 100644 index 00000000..ae7e2b0e --- /dev/null +++ b/blockchains/ethereum/assets/0xd4c435F5B09F855C3317c8524Cb1F586E42795fa/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cindicator Token", + "symbol": "CND", + "type": "ERC20", + "decimals": 18, + "description": "Meet Stoic — Cindicator's newest crypto trading product.", + "website": "https://cindicator.com", + "explorer": "https://etherscan.io/token/0xd4c435F5B09F855C3317c8524Cb1F586E42795fa", + "status": "active", + "id": "0xd4c435F5B09F855C3317c8524Cb1F586E42795fa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd4c435F5B09F855C3317c8524Cb1F586E42795fa/logo.png b/blockchains/ethereum/assets/0xd4c435F5B09F855C3317c8524Cb1F586E42795fa/logo.png new file mode 100755 index 00000000..856acf44 Binary files /dev/null and b/blockchains/ethereum/assets/0xd4c435F5B09F855C3317c8524Cb1F586E42795fa/logo.png differ diff --git a/blockchains/ethereum/assets/0xd4cA5c2AFf1eeFb0BeA9e9Eab16f88DB2990C183/info.json b/blockchains/ethereum/assets/0xd4cA5c2AFf1eeFb0BeA9e9Eab16f88DB2990C183/info.json new file mode 100644 index 00000000..5c38843c --- /dev/null +++ b/blockchains/ethereum/assets/0xd4cA5c2AFf1eeFb0BeA9e9Eab16f88DB2990C183/info.json @@ -0,0 +1,11 @@ +{ + "name": "XRP CLASSIC", + "symbol": "XRPC", + "type": "ERC20", + "decimals": 8, + "description": "XRP CLASSIC presents a decentralized accessible blockchain and cryptocurrency infrastructure; it is absolutely open source content management system. XRP CLASSIC is promoting a smart contract platform, the main goal of which is to provide the most progressive properties no other platform is able to offer right now.", + "website": "https://xrpclassic.io/", + "explorer": "https://etherscan.io/token/0xd4cA5c2AFf1eeFb0BeA9e9Eab16f88DB2990C183", + "status": "active", + "id": "0xd4cA5c2AFf1eeFb0BeA9e9Eab16f88DB2990C183" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd4cA5c2AFf1eeFb0BeA9e9Eab16f88DB2990C183/logo.png b/blockchains/ethereum/assets/0xd4cA5c2AFf1eeFb0BeA9e9Eab16f88DB2990C183/logo.png new file mode 100644 index 00000000..65a1241c Binary files /dev/null and b/blockchains/ethereum/assets/0xd4cA5c2AFf1eeFb0BeA9e9Eab16f88DB2990C183/logo.png differ diff --git a/blockchains/ethereum/assets/0xd4deD7a563B7032b46EF6A484663CA053ded7E20/info.json b/blockchains/ethereum/assets/0xd4deD7a563B7032b46EF6A484663CA053ded7E20/info.json new file mode 100644 index 00000000..eac9fbe8 --- /dev/null +++ b/blockchains/ethereum/assets/0xd4deD7a563B7032b46EF6A484663CA053ded7E20/info.json @@ -0,0 +1,11 @@ +{ + "name": "iHDVi", + "symbol": "iHDVi", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd4deD7a563B7032b46EF6A484663CA053ded7E20", + "status": "abandoned", + "id": "0xd4deD7a563B7032b46EF6A484663CA053ded7E20" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd4deD7a563B7032b46EF6A484663CA053ded7E20/logo.png b/blockchains/ethereum/assets/0xd4deD7a563B7032b46EF6A484663CA053ded7E20/logo.png new file mode 100644 index 00000000..1bc3fd8c Binary files /dev/null and b/blockchains/ethereum/assets/0xd4deD7a563B7032b46EF6A484663CA053ded7E20/logo.png differ diff --git a/blockchains/ethereum/assets/0xd4fa1460F537bb9085d22C7bcCB5DD450Ef28e3a/info.json b/blockchains/ethereum/assets/0xd4fa1460F537bb9085d22C7bcCB5DD450Ef28e3a/info.json new file mode 100644 index 00000000..22db9f46 --- /dev/null +++ b/blockchains/ethereum/assets/0xd4fa1460F537bb9085d22C7bcCB5DD450Ef28e3a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Populous", + "website": "https://populous.world", + "description": "The idea behind Populous is to allow enterprise owners the opportunity for liquidity on invoices for durations up to 90 days using a peer-to-peer invoice financing platform.", + "explorer": "https://etherscan.io/token/0xd4fa1460F537bb9085d22C7bcCB5DD450Ef28e3a", + "type": "ERC20", + "symbol": "PPT", + "decimals": 8, + "status": "active", + "id": "0xd4fa1460F537bb9085d22C7bcCB5DD450Ef28e3a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd4fa1460F537bb9085d22C7bcCB5DD450Ef28e3a/logo.png b/blockchains/ethereum/assets/0xd4fa1460F537bb9085d22C7bcCB5DD450Ef28e3a/logo.png new file mode 100644 index 00000000..d4038c1a Binary files /dev/null and b/blockchains/ethereum/assets/0xd4fa1460F537bb9085d22C7bcCB5DD450Ef28e3a/logo.png differ diff --git a/blockchains/ethereum/assets/0xd50649AAb1D39d68BC965E0F6D1cfe0010e4908b/info.json b/blockchains/ethereum/assets/0xd50649AAb1D39d68BC965E0F6D1cfe0010e4908b/info.json new file mode 100644 index 00000000..08464344 --- /dev/null +++ b/blockchains/ethereum/assets/0xd50649AAb1D39d68BC965E0F6D1cfe0010e4908b/info.json @@ -0,0 +1,11 @@ +{ + "name": "TOSC", + "symbol": "TOSC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd50649AAb1D39d68BC965E0F6D1cfe0010e4908b", + "status": "abandoned", + "id": "0xd50649AAb1D39d68BC965E0F6D1cfe0010e4908b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd50649AAb1D39d68BC965E0F6D1cfe0010e4908b/logo.png b/blockchains/ethereum/assets/0xd50649AAb1D39d68BC965E0F6D1cfe0010e4908b/logo.png new file mode 100644 index 00000000..885a0ac0 Binary files /dev/null and b/blockchains/ethereum/assets/0xd50649AAb1D39d68BC965E0F6D1cfe0010e4908b/logo.png differ diff --git a/blockchains/ethereum/assets/0xd511a64BfC1039Eccf503aC0Ef111c6C1c630B95/info.json b/blockchains/ethereum/assets/0xd511a64BfC1039Eccf503aC0Ef111c6C1c630B95/info.json new file mode 100644 index 00000000..da365319 --- /dev/null +++ b/blockchains/ethereum/assets/0xd511a64BfC1039Eccf503aC0Ef111c6C1c630B95/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fort Knox", + "symbol": "La-li-lu-le-lo", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd511a64BfC1039Eccf503aC0Ef111c6C1c630B95", + "status": "abandoned", + "id": "0xd511a64BfC1039Eccf503aC0Ef111c6C1c630B95" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd511a64BfC1039Eccf503aC0Ef111c6C1c630B95/logo.png b/blockchains/ethereum/assets/0xd511a64BfC1039Eccf503aC0Ef111c6C1c630B95/logo.png new file mode 100644 index 00000000..021380e3 Binary files /dev/null and b/blockchains/ethereum/assets/0xd511a64BfC1039Eccf503aC0Ef111c6C1c630B95/logo.png differ diff --git a/blockchains/ethereum/assets/0xd51e852630DeBC24E9e1041a03d80A0107F8Ef0C/info.json b/blockchains/ethereum/assets/0xd51e852630DeBC24E9e1041a03d80A0107F8Ef0C/info.json new file mode 100644 index 00000000..524ad075 --- /dev/null +++ b/blockchains/ethereum/assets/0xd51e852630DeBC24E9e1041a03d80A0107F8Ef0C/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "ORM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://oriumcoin.com/", + "explorer": "https://etherscan.io/token/0xd51e852630DeBC24E9e1041a03d80A0107F8Ef0C", + "status": "abandoned", + "id": "0xd51e852630DeBC24E9e1041a03d80A0107F8Ef0C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd51e852630DeBC24E9e1041a03d80A0107F8Ef0C/logo.png b/blockchains/ethereum/assets/0xd51e852630DeBC24E9e1041a03d80A0107F8Ef0C/logo.png new file mode 100755 index 00000000..d6f03953 Binary files /dev/null and b/blockchains/ethereum/assets/0xd51e852630DeBC24E9e1041a03d80A0107F8Ef0C/logo.png differ diff --git a/blockchains/ethereum/assets/0xd52C2f7D213192E3Ea1e0DF8952a49423587fc87/info.json b/blockchains/ethereum/assets/0xd52C2f7D213192E3Ea1e0DF8952a49423587fc87/info.json new file mode 100644 index 00000000..bc56090d --- /dev/null +++ b/blockchains/ethereum/assets/0xd52C2f7D213192E3Ea1e0DF8952a49423587fc87/info.json @@ -0,0 +1,11 @@ +{ + "name": "Josh", + "symbol": "JOSH", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd52C2f7D213192E3Ea1e0DF8952a49423587fc87", + "status": "abandoned", + "id": "0xd52C2f7D213192E3Ea1e0DF8952a49423587fc87" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd52C2f7D213192E3Ea1e0DF8952a49423587fc87/logo.png b/blockchains/ethereum/assets/0xd52C2f7D213192E3Ea1e0DF8952a49423587fc87/logo.png new file mode 100644 index 00000000..0a53fe26 Binary files /dev/null and b/blockchains/ethereum/assets/0xd52C2f7D213192E3Ea1e0DF8952a49423587fc87/logo.png differ diff --git a/blockchains/ethereum/assets/0xd53370AcF66044910BB49CbcfE8f3cD020337f60/info.json b/blockchains/ethereum/assets/0xd53370AcF66044910BB49CbcfE8f3cD020337f60/info.json new file mode 100644 index 00000000..758a51b1 --- /dev/null +++ b/blockchains/ethereum/assets/0xd53370AcF66044910BB49CbcfE8f3cD020337f60/info.json @@ -0,0 +1,11 @@ +{ + "name": "Consensus Token", + "symbol": "SEN", + "type": "ERC20", + "decimals": 18, + "description": "Consensus is the open-sourced, decentralized artificial intelligence platform, powered by native cryptocurrency, and built with the vision to improve the governance mechanisms at all levels of organizational structures: community, startup, non-profit, enterprise, city, county or the entire country.", + "website": "https://consensus.ai/", + "explorer": "https://etherscan.io/token/0xd53370AcF66044910BB49CbcfE8f3cD020337f60", + "status": "active", + "id": "0xd53370AcF66044910BB49CbcfE8f3cD020337f60" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd53370AcF66044910BB49CbcfE8f3cD020337f60/logo.png b/blockchains/ethereum/assets/0xd53370AcF66044910BB49CbcfE8f3cD020337f60/logo.png new file mode 100644 index 00000000..44dd87dc Binary files /dev/null and b/blockchains/ethereum/assets/0xd53370AcF66044910BB49CbcfE8f3cD020337f60/logo.png differ diff --git a/blockchains/ethereum/assets/0xd54e6C3336ba57E3394B20Ff60bf3dC4B387517a/info.json b/blockchains/ethereum/assets/0xd54e6C3336ba57E3394B20Ff60bf3dC4B387517a/info.json new file mode 100644 index 00000000..d37e5673 --- /dev/null +++ b/blockchains/ethereum/assets/0xd54e6C3336ba57E3394B20Ff60bf3dC4B387517a/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 127-CN43", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd54e6C3336ba57E3394B20Ff60bf3dC4B387517a", + "status": "abandoned", + "id": "0xd54e6C3336ba57E3394B20Ff60bf3dC4B387517a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd54e6C3336ba57E3394B20Ff60bf3dC4B387517a/logo.png b/blockchains/ethereum/assets/0xd54e6C3336ba57E3394B20Ff60bf3dC4B387517a/logo.png new file mode 100644 index 00000000..0afc3b29 Binary files /dev/null and b/blockchains/ethereum/assets/0xd54e6C3336ba57E3394B20Ff60bf3dC4B387517a/logo.png differ diff --git a/blockchains/ethereum/assets/0xd5527579226E4ebC8864906E49D05d4458CcF47f/info.json b/blockchains/ethereum/assets/0xd5527579226E4ebC8864906E49D05d4458CcF47f/info.json new file mode 100644 index 00000000..1ba897fb --- /dev/null +++ b/blockchains/ethereum/assets/0xd5527579226E4ebC8864906E49D05d4458CcF47f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kubera token", + "symbol": "KBR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd5527579226E4ebC8864906E49D05d4458CcF47f", + "status": "abandoned", + "id": "0xd5527579226E4ebC8864906E49D05d4458CcF47f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd5527579226E4ebC8864906E49D05d4458CcF47f/logo.png b/blockchains/ethereum/assets/0xd5527579226E4ebC8864906E49D05d4458CcF47f/logo.png new file mode 100644 index 00000000..2fab293b Binary files /dev/null and b/blockchains/ethereum/assets/0xd5527579226E4ebC8864906E49D05d4458CcF47f/logo.png differ diff --git a/blockchains/ethereum/assets/0xd555498a524612c67f286dF0e0a9a64a73a7Cdc7/info.json b/blockchains/ethereum/assets/0xd555498a524612c67f286dF0e0a9a64a73a7Cdc7/info.json new file mode 100644 index 00000000..0b74c709 --- /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/0xd559f20296FF4895da39b5bd9ADd54b442596a61/info.json b/blockchains/ethereum/assets/0xd559f20296FF4895da39b5bd9ADd54b442596a61/info.json new file mode 100644 index 00000000..94891c1f --- /dev/null +++ b/blockchains/ethereum/assets/0xd559f20296FF4895da39b5bd9ADd54b442596a61/info.json @@ -0,0 +1,11 @@ +{ + "name": "FintruX Network", + "symbol": "FTX", + "type": "ERC20", + "decimals": 18, + "description": "The Global P2P Lending Ecosystem Powered By Ethereum And No-Code Development.", + "website": "https://www.fintrux.com", + "explorer": "https://etherscan.io/token/0xd559f20296FF4895da39b5bd9ADd54b442596a61", + "status": "active", + "id": "0xd559f20296FF4895da39b5bd9ADd54b442596a61" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd559f20296FF4895da39b5bd9ADd54b442596a61/logo.png b/blockchains/ethereum/assets/0xd559f20296FF4895da39b5bd9ADd54b442596a61/logo.png new file mode 100644 index 00000000..73c5dfa2 Binary files /dev/null and b/blockchains/ethereum/assets/0xd559f20296FF4895da39b5bd9ADd54b442596a61/logo.png differ diff --git a/blockchains/ethereum/assets/0xd55BD2C12B30075b325Bc35aEf0B46363B3818f8/info.json b/blockchains/ethereum/assets/0xd55BD2C12B30075b325Bc35aEf0B46363B3818f8/info.json new file mode 100644 index 00000000..4a572dbc --- /dev/null +++ b/blockchains/ethereum/assets/0xd55BD2C12B30075b325Bc35aEf0B46363B3818f8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zombie.Finance(ZOMBIE)", + "website": "https://zombie.finance/", + "description": "Zombie is an decentralized experiment to see how people will react having power over one another.", + "explorer": "https://etherscan.io/token/0xd55BD2C12B30075b325Bc35aEf0B46363B3818f8", + "type": "ERC20", + "symbol": "ZOMBIE", + "decimals": 18, + "status": "active", + "id": "0xd55BD2C12B30075b325Bc35aEf0B46363B3818f8", + "links": [ + { + "name": "github", + "url": "https://github.com/zombie-finance/zombie-protocol" + }, + { + "name": "x", + "url": "https://x.com/Zombie.Finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd55BD2C12B30075b325Bc35aEf0B46363B3818f8/logo.png b/blockchains/ethereum/assets/0xd55BD2C12B30075b325Bc35aEf0B46363B3818f8/logo.png new file mode 100644 index 00000000..ab5652a8 Binary files /dev/null and b/blockchains/ethereum/assets/0xd55BD2C12B30075b325Bc35aEf0B46363B3818f8/logo.png differ diff --git a/blockchains/ethereum/assets/0xd5C5B2883735Fa9B658Dd52e2FCC8d7c0f1A42Ce/info.json b/blockchains/ethereum/assets/0xd5C5B2883735Fa9B658Dd52e2FCC8d7c0f1A42Ce/info.json new file mode 100644 index 00000000..bed654ad --- /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 00000000..4a67b3a0 Binary files /dev/null and b/blockchains/ethereum/assets/0xd5C5B2883735Fa9B658Dd52e2FCC8d7c0f1A42Ce/logo.png differ diff --git a/blockchains/ethereum/assets/0xd5Cfa997a1052464e4B9Af462f9D5facE9b1f730/info.json b/blockchains/ethereum/assets/0xd5Cfa997a1052464e4B9Af462f9D5facE9b1f730/info.json new file mode 100644 index 00000000..83dea625 --- /dev/null +++ b/blockchains/ethereum/assets/0xd5Cfa997a1052464e4B9Af462f9D5facE9b1f730/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yobtc Token", + "symbol": "YOBTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd5Cfa997a1052464e4B9Af462f9D5facE9b1f730", + "status": "abandoned", + "id": "0xd5Cfa997a1052464e4B9Af462f9D5facE9b1f730" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd5Cfa997a1052464e4B9Af462f9D5facE9b1f730/logo.png b/blockchains/ethereum/assets/0xd5Cfa997a1052464e4B9Af462f9D5facE9b1f730/logo.png new file mode 100644 index 00000000..851f1d4f Binary files /dev/null and b/blockchains/ethereum/assets/0xd5Cfa997a1052464e4B9Af462f9D5facE9b1f730/logo.png differ diff --git a/blockchains/ethereum/assets/0xd5f788ca0de8f17cBDe1D1E35aA8F005A87fa00b/info.json b/blockchains/ethereum/assets/0xd5f788ca0de8f17cBDe1D1E35aA8F005A87fa00b/info.json new file mode 100644 index 00000000..d177f86e --- /dev/null +++ b/blockchains/ethereum/assets/0xd5f788ca0de8f17cBDe1D1E35aA8F005A87fa00b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shivers", + "symbol": "SHVR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "http://shivers.io", + "explorer": "https://etherscan.io/token/0xd5f788ca0de8f17cBDe1D1E35aA8F005A87fa00b", + "status": "abandoned", + "id": "0xd5f788ca0de8f17cBDe1D1E35aA8F005A87fa00b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd5f788ca0de8f17cBDe1D1E35aA8F005A87fa00b/logo.png b/blockchains/ethereum/assets/0xd5f788ca0de8f17cBDe1D1E35aA8F005A87fa00b/logo.png new file mode 100644 index 00000000..25cb4679 Binary files /dev/null and b/blockchains/ethereum/assets/0xd5f788ca0de8f17cBDe1D1E35aA8F005A87fa00b/logo.png differ diff --git a/blockchains/ethereum/assets/0xd61eEAcFe8035B5737c33cbc6F68Bbf28a5dB615/info.json b/blockchains/ethereum/assets/0xd61eEAcFe8035B5737c33cbc6F68Bbf28a5dB615/info.json new file mode 100644 index 00000000..7a0ada4d --- /dev/null +++ b/blockchains/ethereum/assets/0xd61eEAcFe8035B5737c33cbc6F68Bbf28a5dB615/info.json @@ -0,0 +1,11 @@ +{ + "name": "Premium", + "symbol": "PRE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd61eEAcFe8035B5737c33cbc6F68Bbf28a5dB615", + "status": "abandoned", + "id": "0xd61eEAcFe8035B5737c33cbc6F68Bbf28a5dB615" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd61eEAcFe8035B5737c33cbc6F68Bbf28a5dB615/logo.png b/blockchains/ethereum/assets/0xd61eEAcFe8035B5737c33cbc6F68Bbf28a5dB615/logo.png new file mode 100755 index 00000000..23986ea5 Binary files /dev/null and b/blockchains/ethereum/assets/0xd61eEAcFe8035B5737c33cbc6F68Bbf28a5dB615/logo.png differ diff --git a/blockchains/ethereum/assets/0xd6203889C22D9fe5e938a9200f50FDFFE9dD8e02/info.json b/blockchains/ethereum/assets/0xd6203889C22D9fe5e938a9200f50FDFFE9dD8e02/info.json new file mode 100644 index 00000000..28a0f0b1 --- /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 00000000..f3a58bfa Binary files /dev/null and b/blockchains/ethereum/assets/0xd6203889C22D9fe5e938a9200f50FDFFE9dD8e02/logo.png differ diff --git a/blockchains/ethereum/assets/0xd6327ce1fb9D6020E8C2c0E124A1eC23DCAb7536/info.json b/blockchains/ethereum/assets/0xd6327ce1fb9D6020E8C2c0E124A1eC23DCAb7536/info.json new file mode 100644 index 00000000..be7842e9 --- /dev/null +++ b/blockchains/ethereum/assets/0xd6327ce1fb9D6020E8C2c0E124A1eC23DCAb7536/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cum Inu", + "type": "ERC20", + "symbol": "CUMINU", + "decimals": 18, + "website": "https://cuminu.io/", + "description": "UMINU’s mission is to combine the best features of the major adult content sites into a ‘one stop shop’, entirely cryptocurrency based. CUMINU will differentiate itself from competitors by offering lower fees for models, a next-gen platform and new and novel content and ways for fans to interact with their favorite stars.", + "explorer": "https://etherscan.io/token/0xd6327ce1fb9D6020E8C2c0E124A1eC23DCAb7536", + "status": "active", + "id": "0xd6327ce1fb9D6020E8C2c0E124A1eC23DCAb7536" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd6327ce1fb9D6020E8C2c0E124A1eC23DCAb7536/logo.png b/blockchains/ethereum/assets/0xd6327ce1fb9D6020E8C2c0E124A1eC23DCAb7536/logo.png new file mode 100644 index 00000000..d59a0d79 Binary files /dev/null and b/blockchains/ethereum/assets/0xd6327ce1fb9D6020E8C2c0E124A1eC23DCAb7536/logo.png differ diff --git a/blockchains/ethereum/assets/0xd64904232b4674c24fA59170D12fC7df20f5880e/info.json b/blockchains/ethereum/assets/0xd64904232b4674c24fA59170D12fC7df20f5880e/info.json new file mode 100644 index 00000000..1a46b9f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xd64904232b4674c24fA59170D12fC7df20f5880e/info.json @@ -0,0 +1,11 @@ +{ + "name": "VEDX TOKEN", + "symbol": "VEDX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd64904232b4674c24fA59170D12fC7df20f5880e", + "status": "abandoned", + "id": "0xd64904232b4674c24fA59170D12fC7df20f5880e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd64904232b4674c24fA59170D12fC7df20f5880e/logo.png b/blockchains/ethereum/assets/0xd64904232b4674c24fA59170D12fC7df20f5880e/logo.png new file mode 100644 index 00000000..5aae429e Binary files /dev/null and b/blockchains/ethereum/assets/0xd64904232b4674c24fA59170D12fC7df20f5880e/logo.png differ diff --git a/blockchains/ethereum/assets/0xd6875274b000462F59e9327cbDe2cEf637914569/info.json b/blockchains/ethereum/assets/0xd6875274b000462F59e9327cbDe2cEf637914569/info.json new file mode 100644 index 00000000..11fe4602 --- /dev/null +++ b/blockchains/ethereum/assets/0xd6875274b000462F59e9327cbDe2cEf637914569/info.json @@ -0,0 +1,11 @@ +{ + "name": "QUSD", + "symbol": "QUSD", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://qusd.co.uk", + "explorer": "https://etherscan.io/token/0xd6875274b000462F59e9327cbDe2cEf637914569", + "status": "abandoned", + "id": "0xd6875274b000462F59e9327cbDe2cEf637914569" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd6875274b000462F59e9327cbDe2cEf637914569/logo.png b/blockchains/ethereum/assets/0xd6875274b000462F59e9327cbDe2cEf637914569/logo.png new file mode 100644 index 00000000..51aa247c Binary files /dev/null and b/blockchains/ethereum/assets/0xd6875274b000462F59e9327cbDe2cEf637914569/logo.png differ diff --git a/blockchains/ethereum/assets/0xd68F761Ae71467996B65522711357e5cfC1045B3/info.json b/blockchains/ethereum/assets/0xd68F761Ae71467996B65522711357e5cfC1045B3/info.json new file mode 100644 index 00000000..df583d90 --- /dev/null +++ b/blockchains/ethereum/assets/0xd68F761Ae71467996B65522711357e5cfC1045B3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Velox", + "symbol": "VLX", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd68F761Ae71467996B65522711357e5cfC1045B3", + "status": "abandoned", + "id": "0xd68F761Ae71467996B65522711357e5cfC1045B3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd68F761Ae71467996B65522711357e5cfC1045B3/logo.png b/blockchains/ethereum/assets/0xd68F761Ae71467996B65522711357e5cfC1045B3/logo.png new file mode 100644 index 00000000..9ed85fcb Binary files /dev/null and b/blockchains/ethereum/assets/0xd68F761Ae71467996B65522711357e5cfC1045B3/logo.png differ diff --git a/blockchains/ethereum/assets/0xd690AA91dc5C68E3967495E9533E09930c723E73/info.json b/blockchains/ethereum/assets/0xd690AA91dc5C68E3967495E9533E09930c723E73/info.json new file mode 100644 index 00000000..ffd214af --- /dev/null +++ b/blockchains/ethereum/assets/0xd690AA91dc5C68E3967495E9533E09930c723E73/info.json @@ -0,0 +1,11 @@ +{ + "name": "HapTap", + "symbol": "HTP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd690AA91dc5C68E3967495E9533E09930c723E73", + "status": "abandoned", + "id": "0xd690AA91dc5C68E3967495E9533E09930c723E73" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd690AA91dc5C68E3967495E9533E09930c723E73/logo.png b/blockchains/ethereum/assets/0xd690AA91dc5C68E3967495E9533E09930c723E73/logo.png new file mode 100644 index 00000000..58988e41 Binary files /dev/null and b/blockchains/ethereum/assets/0xd690AA91dc5C68E3967495E9533E09930c723E73/logo.png differ diff --git a/blockchains/ethereum/assets/0xd6A81D7A8B4D1Cc947138d9e4ACA5D3cdE33a170/info.json b/blockchains/ethereum/assets/0xd6A81D7A8B4D1Cc947138d9e4ACA5D3cdE33a170/info.json new file mode 100644 index 00000000..07ed873c --- /dev/null +++ b/blockchains/ethereum/assets/0xd6A81D7A8B4D1Cc947138d9e4ACA5D3cdE33a170/info.json @@ -0,0 +1,11 @@ +{ + "name": "Credo ICO Token", + "symbol": "CREDOICO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd6A81D7A8B4D1Cc947138d9e4ACA5D3cdE33a170", + "status": "abandoned", + "id": "0xd6A81D7A8B4D1Cc947138d9e4ACA5D3cdE33a170" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd6A81D7A8B4D1Cc947138d9e4ACA5D3cdE33a170/logo.png b/blockchains/ethereum/assets/0xd6A81D7A8B4D1Cc947138d9e4ACA5D3cdE33a170/logo.png new file mode 100644 index 00000000..cec09f60 Binary files /dev/null and b/blockchains/ethereum/assets/0xd6A81D7A8B4D1Cc947138d9e4ACA5D3cdE33a170/logo.png differ diff --git a/blockchains/ethereum/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/info.json b/blockchains/ethereum/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/info.json new file mode 100644 index 00000000..e888a5f7 --- /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 00000000..918d5d94 Binary files /dev/null and b/blockchains/ethereum/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/logo.png differ diff --git a/blockchains/ethereum/assets/0xd6aD7a6750A7593E092a9B218d66C0A814a3436e/info.json b/blockchains/ethereum/assets/0xd6aD7a6750A7593E092a9B218d66C0A814a3436e/info.json new file mode 100644 index 00000000..84a21782 --- /dev/null +++ b/blockchains/ethereum/assets/0xd6aD7a6750A7593E092a9B218d66C0A814a3436e/info.json @@ -0,0 +1,11 @@ +{ + "name": "iearn USDC", + "symbol": "yUSDC", + "type": "ERC20", + "decimals": 6, + "description": "Simple auto interest rate switching tokens for Compound, Fulcrum, Aave, and dYdX.", + "website": "https://docs.yearn.finance/", + "explorer": "https://etherscan.io/token/0xd6aD7a6750A7593E092a9B218d66C0A814a3436e", + "status": "active", + "id": "0xd6aD7a6750A7593E092a9B218d66C0A814a3436e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd6aD7a6750A7593E092a9B218d66C0A814a3436e/logo.png b/blockchains/ethereum/assets/0xd6aD7a6750A7593E092a9B218d66C0A814a3436e/logo.png new file mode 100644 index 00000000..9aa9d5c0 Binary files /dev/null and b/blockchains/ethereum/assets/0xd6aD7a6750A7593E092a9B218d66C0A814a3436e/logo.png differ diff --git a/blockchains/ethereum/assets/0xd6bD97a26232bA02172Ff86b055d5D7bE789335B/info.json b/blockchains/ethereum/assets/0xd6bD97a26232bA02172Ff86b055d5D7bE789335B/info.json new file mode 100644 index 00000000..ce4dbcf6 --- /dev/null +++ b/blockchains/ethereum/assets/0xd6bD97a26232bA02172Ff86b055d5D7bE789335B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ormeus Cash", + "website": "https://ormeuscash.com/", + "description": "Ormeus Cash is a True Transactional Coin for a New Era of Commerce", + "explorer": "https://etherscan.io/token/0xd6bD97a26232bA02172Ff86b055d5D7bE789335B", + "type": "ERC20", + "symbol": "OMC", + "decimals": 18, + "status": "active", + "id": "0xd6bD97a26232bA02172Ff86b055d5D7bE789335B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd6bD97a26232bA02172Ff86b055d5D7bE789335B/logo.png b/blockchains/ethereum/assets/0xd6bD97a26232bA02172Ff86b055d5D7bE789335B/logo.png new file mode 100644 index 00000000..7f5dff76 Binary files /dev/null and b/blockchains/ethereum/assets/0xd6bD97a26232bA02172Ff86b055d5D7bE789335B/logo.png differ diff --git a/blockchains/ethereum/assets/0xd6c730B861F9A4DED3C20105ad152Accd7621F9b/info.json b/blockchains/ethereum/assets/0xd6c730B861F9A4DED3C20105ad152Accd7621F9b/info.json new file mode 100644 index 00000000..5b8f36c3 --- /dev/null +++ b/blockchains/ethereum/assets/0xd6c730B861F9A4DED3C20105ad152Accd7621F9b/info.json @@ -0,0 +1,11 @@ +{ + "name": "TTX", + "symbol": "TTX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd6c730B861F9A4DED3C20105ad152Accd7621F9b", + "status": "abandoned", + "id": "0xd6c730B861F9A4DED3C20105ad152Accd7621F9b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd6c730B861F9A4DED3C20105ad152Accd7621F9b/logo.png b/blockchains/ethereum/assets/0xd6c730B861F9A4DED3C20105ad152Accd7621F9b/logo.png new file mode 100644 index 00000000..f88992ee Binary files /dev/null and b/blockchains/ethereum/assets/0xd6c730B861F9A4DED3C20105ad152Accd7621F9b/logo.png differ diff --git a/blockchains/ethereum/assets/0xd6cAF5Bd23CF057f5FcCCE295Dcc50C01C198707/info.json b/blockchains/ethereum/assets/0xd6cAF5Bd23CF057f5FcCCE295Dcc50C01C198707/info.json new file mode 100644 index 00000000..fffc32ce --- /dev/null +++ b/blockchains/ethereum/assets/0xd6cAF5Bd23CF057f5FcCCE295Dcc50C01C198707/info.json @@ -0,0 +1,11 @@ +{ + "name": "Evanesco Network", + "type": "ERC20", + "symbol": "EVA", + "decimals": 18, + "website": "https://www.evanesco.org/", + "description": "Layer0 Network Infrastructure & Private Finance Protocol Platform for Web3", + "explorer": "https://etherscan.io/token/0xd6caf5bd23cf057f5fccce295dcc50c01c198707", + "status": "active", + "id": "0xd6cAF5Bd23CF057f5FcCCE295Dcc50C01C198707" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd6cAF5Bd23CF057f5FcCCE295Dcc50C01C198707/logo.png b/blockchains/ethereum/assets/0xd6cAF5Bd23CF057f5FcCCE295Dcc50C01C198707/logo.png new file mode 100644 index 00000000..d089209e Binary files /dev/null and b/blockchains/ethereum/assets/0xd6cAF5Bd23CF057f5FcCCE295Dcc50C01C198707/logo.png differ diff --git a/blockchains/ethereum/assets/0xd6e7870B7B4b3990ee3Bdd80641827BF0B58246a/info.json b/blockchains/ethereum/assets/0xd6e7870B7B4b3990ee3Bdd80641827BF0B58246a/info.json new file mode 100644 index 00000000..c518f67a --- /dev/null +++ b/blockchains/ethereum/assets/0xd6e7870B7B4b3990ee3Bdd80641827BF0B58246a/info.json @@ -0,0 +1,11 @@ +{ + "name": "BrazilMinerioCoin", + "symbol": "BMC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd6e7870B7B4b3990ee3Bdd80641827BF0B58246a", + "status": "abandoned", + "id": "0xd6e7870B7B4b3990ee3Bdd80641827BF0B58246a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd6e7870B7B4b3990ee3Bdd80641827BF0B58246a/logo.png b/blockchains/ethereum/assets/0xd6e7870B7B4b3990ee3Bdd80641827BF0B58246a/logo.png new file mode 100644 index 00000000..b7e3792d Binary files /dev/null and b/blockchains/ethereum/assets/0xd6e7870B7B4b3990ee3Bdd80641827BF0B58246a/logo.png differ diff --git a/blockchains/ethereum/assets/0xd6f4815213D6212Bd2B0ec80F2df084e5B9dbDAb/info.json b/blockchains/ethereum/assets/0xd6f4815213D6212Bd2B0ec80F2df084e5B9dbDAb/info.json new file mode 100644 index 00000000..05f17891 --- /dev/null +++ b/blockchains/ethereum/assets/0xd6f4815213D6212Bd2B0ec80F2df084e5B9dbDAb/info.json @@ -0,0 +1,11 @@ +{ + "name": "AARON", + "symbol": "AARON", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd6f4815213D6212Bd2B0ec80F2df084e5B9dbDAb", + "status": "abandoned", + "id": "0xd6f4815213D6212Bd2B0ec80F2df084e5B9dbDAb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd6f4815213D6212Bd2B0ec80F2df084e5B9dbDAb/logo.png b/blockchains/ethereum/assets/0xd6f4815213D6212Bd2B0ec80F2df084e5B9dbDAb/logo.png new file mode 100644 index 00000000..08658547 Binary files /dev/null and b/blockchains/ethereum/assets/0xd6f4815213D6212Bd2B0ec80F2df084e5B9dbDAb/logo.png differ diff --git a/blockchains/ethereum/assets/0xd7631787B4dCc87b1254cfd1e5cE48e96823dEe8/info.json b/blockchains/ethereum/assets/0xd7631787B4dCc87b1254cfd1e5cE48e96823dEe8/info.json new file mode 100644 index 00000000..1f63e0a0 --- /dev/null +++ b/blockchains/ethereum/assets/0xd7631787B4dCc87b1254cfd1e5cE48e96823dEe8/info.json @@ -0,0 +1,11 @@ +{ + "name": "SOCIAL", + "symbol": "SCL", + "type": "ERC20", + "decimals": 8, + "description": "Sociall (SCL) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://sociall.io", + "explorer": "https://etherscan.io/token/0xd7631787B4dCc87b1254cfd1e5cE48e96823dEe8", + "status": "active", + "id": "0xd7631787B4dCc87b1254cfd1e5cE48e96823dEe8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd7631787B4dCc87b1254cfd1e5cE48e96823dEe8/logo.png b/blockchains/ethereum/assets/0xd7631787B4dCc87b1254cfd1e5cE48e96823dEe8/logo.png new file mode 100644 index 00000000..a3ce2f3c Binary files /dev/null and b/blockchains/ethereum/assets/0xd7631787B4dCc87b1254cfd1e5cE48e96823dEe8/logo.png differ diff --git a/blockchains/ethereum/assets/0xd77604D92cFC8D51C945A52908b8532aB7bD19D2/info.json b/blockchains/ethereum/assets/0xd77604D92cFC8D51C945A52908b8532aB7bD19D2/info.json new file mode 100644 index 00000000..8edd3487 --- /dev/null +++ b/blockchains/ethereum/assets/0xd77604D92cFC8D51C945A52908b8532aB7bD19D2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Exchain Global", + "symbol": "EXG", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd77604D92cFC8D51C945A52908b8532aB7bD19D2", + "status": "abandoned", + "id": "0xd77604D92cFC8D51C945A52908b8532aB7bD19D2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd77604D92cFC8D51C945A52908b8532aB7bD19D2/logo.png b/blockchains/ethereum/assets/0xd77604D92cFC8D51C945A52908b8532aB7bD19D2/logo.png new file mode 100644 index 00000000..cfc89afd Binary files /dev/null and b/blockchains/ethereum/assets/0xd77604D92cFC8D51C945A52908b8532aB7bD19D2/logo.png differ diff --git a/blockchains/ethereum/assets/0xd77bcd9cf4212A41DEFBcd2E2fF0F50fEa2BE643/info.json b/blockchains/ethereum/assets/0xd77bcd9cf4212A41DEFBcd2E2fF0F50fEa2BE643/info.json new file mode 100644 index 00000000..8814249d --- /dev/null +++ b/blockchains/ethereum/assets/0xd77bcd9cf4212A41DEFBcd2E2fF0F50fEa2BE643/info.json @@ -0,0 +1,11 @@ +{ + "name": "GA_chain", + "symbol": "GA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd77bcd9cf4212A41DEFBcd2E2fF0F50fEa2BE643", + "status": "spam", + "id": "0xd77bcd9cf4212A41DEFBcd2E2fF0F50fEa2BE643" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd77bcd9cf4212A41DEFBcd2E2fF0F50fEa2BE643/logo.png b/blockchains/ethereum/assets/0xd77bcd9cf4212A41DEFBcd2E2fF0F50fEa2BE643/logo.png new file mode 100644 index 00000000..4336180c Binary files /dev/null and b/blockchains/ethereum/assets/0xd77bcd9cf4212A41DEFBcd2E2fF0F50fEa2BE643/logo.png differ diff --git a/blockchains/ethereum/assets/0xd780Ae2Bf04cD96E577D3D014762f831d97129d0/info.json b/blockchains/ethereum/assets/0xd780Ae2Bf04cD96E577D3D014762f831d97129d0/info.json new file mode 100644 index 00000000..b7b2f9d8 --- /dev/null +++ b/blockchains/ethereum/assets/0xd780Ae2Bf04cD96E577D3D014762f831d97129d0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Envion", + "symbol": "EVN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.envion.org/en/", + "explorer": "https://etherscan.io/token/0xd780Ae2Bf04cD96E577D3D014762f831d97129d0", + "status": "abandoned", + "id": "0xd780Ae2Bf04cD96E577D3D014762f831d97129d0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd780Ae2Bf04cD96E577D3D014762f831d97129d0/logo.png b/blockchains/ethereum/assets/0xd780Ae2Bf04cD96E577D3D014762f831d97129d0/logo.png new file mode 100644 index 00000000..ac9c1d22 Binary files /dev/null and b/blockchains/ethereum/assets/0xd780Ae2Bf04cD96E577D3D014762f831d97129d0/logo.png differ diff --git a/blockchains/ethereum/assets/0xd7CDdD45629934c2f6ED3B63217bD8085D7C14A8/info.json b/blockchains/ethereum/assets/0xd7CDdD45629934c2f6ED3B63217bD8085D7C14A8/info.json new file mode 100644 index 00000000..2d560694 --- /dev/null +++ b/blockchains/ethereum/assets/0xd7CDdD45629934c2f6ED3B63217bD8085D7C14A8/info.json @@ -0,0 +1,11 @@ +{ + "name": "AVH", + "symbol": "AVH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd7CDdD45629934c2f6ED3B63217bD8085D7C14A8", + "status": "abandoned", + "id": "0xd7CDdD45629934c2f6ED3B63217bD8085D7C14A8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd7CDdD45629934c2f6ED3B63217bD8085D7C14A8/logo.png b/blockchains/ethereum/assets/0xd7CDdD45629934c2f6ED3B63217bD8085D7C14A8/logo.png new file mode 100644 index 00000000..744b3b10 Binary files /dev/null and b/blockchains/ethereum/assets/0xd7CDdD45629934c2f6ED3B63217bD8085D7C14A8/logo.png differ diff --git a/blockchains/ethereum/assets/0xd7E11234aa8993897055600e605a45DC01b516AE/info.json b/blockchains/ethereum/assets/0xd7E11234aa8993897055600e605a45DC01b516AE/info.json new file mode 100644 index 00000000..c8cd9e3c --- /dev/null +++ b/blockchains/ethereum/assets/0xd7E11234aa8993897055600e605a45DC01b516AE/info.json @@ -0,0 +1,11 @@ +{ + "name": "BIT AGORA", + "symbol": "BAA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd7E11234aa8993897055600e605a45DC01b516AE", + "status": "abandoned", + "id": "0xd7E11234aa8993897055600e605a45DC01b516AE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd7E11234aa8993897055600e605a45DC01b516AE/logo.png b/blockchains/ethereum/assets/0xd7E11234aa8993897055600e605a45DC01b516AE/logo.png new file mode 100755 index 00000000..680d1ea7 Binary files /dev/null and b/blockchains/ethereum/assets/0xd7E11234aa8993897055600e605a45DC01b516AE/logo.png differ diff --git a/blockchains/ethereum/assets/0xd7E1e4530D95717506633E58437f056A49c1FABB/info.json b/blockchains/ethereum/assets/0xd7E1e4530D95717506633E58437f056A49c1FABB/info.json new file mode 100644 index 00000000..91290568 --- /dev/null +++ b/blockchains/ethereum/assets/0xd7E1e4530D95717506633E58437f056A49c1FABB/info.json @@ -0,0 +1,11 @@ +{ + "name": "AMA Token", + "symbol": "AMA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://amaten.io/", + "explorer": "https://etherscan.io/token/0xd7E1e4530D95717506633E58437f056A49c1FABB", + "status": "abandoned", + "id": "0xd7E1e4530D95717506633E58437f056A49c1FABB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd7E1e4530D95717506633E58437f056A49c1FABB/logo.png b/blockchains/ethereum/assets/0xd7E1e4530D95717506633E58437f056A49c1FABB/logo.png new file mode 100644 index 00000000..dd0167f3 Binary files /dev/null and b/blockchains/ethereum/assets/0xd7E1e4530D95717506633E58437f056A49c1FABB/logo.png differ diff --git a/blockchains/ethereum/assets/0xd7F4AEA7c2b8d633D88C449EAb91d7d5Ef89427e/info.json b/blockchains/ethereum/assets/0xd7F4AEA7c2b8d633D88C449EAb91d7d5Ef89427e/info.json new file mode 100644 index 00000000..61fae919 --- /dev/null +++ b/blockchains/ethereum/assets/0xd7F4AEA7c2b8d633D88C449EAb91d7d5Ef89427e/info.json @@ -0,0 +1,11 @@ +{ + "name": "EDAX", + "symbol": "ED", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd7F4AEA7c2b8d633D88C449EAb91d7d5Ef89427e", + "status": "abandoned", + "id": "0xd7F4AEA7c2b8d633D88C449EAb91d7d5Ef89427e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd7F4AEA7c2b8d633D88C449EAb91d7d5Ef89427e/logo.png b/blockchains/ethereum/assets/0xd7F4AEA7c2b8d633D88C449EAb91d7d5Ef89427e/logo.png new file mode 100644 index 00000000..8c69c5a8 Binary files /dev/null and b/blockchains/ethereum/assets/0xd7F4AEA7c2b8d633D88C449EAb91d7d5Ef89427e/logo.png differ diff --git a/blockchains/ethereum/assets/0xd7F84CA8cC776Bc4f4d395252F68ccaAA6454a9f/info.json b/blockchains/ethereum/assets/0xd7F84CA8cC776Bc4f4d395252F68ccaAA6454a9f/info.json new file mode 100644 index 00000000..6f4c5afd --- /dev/null +++ b/blockchains/ethereum/assets/0xd7F84CA8cC776Bc4f4d395252F68ccaAA6454a9f/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR 500", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd7F84CA8cC776Bc4f4d395252F68ccaAA6454a9f", + "status": "abandoned", + "id": "0xd7F84CA8cC776Bc4f4d395252F68ccaAA6454a9f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd7F84CA8cC776Bc4f4d395252F68ccaAA6454a9f/logo.png b/blockchains/ethereum/assets/0xd7F84CA8cC776Bc4f4d395252F68ccaAA6454a9f/logo.png new file mode 100644 index 00000000..13e9aaf8 Binary files /dev/null and b/blockchains/ethereum/assets/0xd7F84CA8cC776Bc4f4d395252F68ccaAA6454a9f/logo.png differ diff --git a/blockchains/ethereum/assets/0xd7FC2Da6B1e60748F18dA01A80360B696518991A/info.json b/blockchains/ethereum/assets/0xd7FC2Da6B1e60748F18dA01A80360B696518991A/info.json new file mode 100644 index 00000000..9007630d --- /dev/null +++ b/blockchains/ethereum/assets/0xd7FC2Da6B1e60748F18dA01A80360B696518991A/info.json @@ -0,0 +1,11 @@ +{ + "name": "UOM MITU F564-JH89", + "symbol": "UOM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd7FC2Da6B1e60748F18dA01A80360B696518991A", + "status": "abandoned", + "id": "0xd7FC2Da6B1e60748F18dA01A80360B696518991A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd7FC2Da6B1e60748F18dA01A80360B696518991A/logo.png b/blockchains/ethereum/assets/0xd7FC2Da6B1e60748F18dA01A80360B696518991A/logo.png new file mode 100644 index 00000000..627ab391 Binary files /dev/null and b/blockchains/ethereum/assets/0xd7FC2Da6B1e60748F18dA01A80360B696518991A/logo.png differ diff --git a/blockchains/ethereum/assets/0xd7a150D2eDfE324166436ea0766294634B811Bb5/info.json b/blockchains/ethereum/assets/0xd7a150D2eDfE324166436ea0766294634B811Bb5/info.json new file mode 100644 index 00000000..388c2fe6 --- /dev/null +++ b/blockchains/ethereum/assets/0xd7a150D2eDfE324166436ea0766294634B811Bb5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Asset Compliance", + "symbol": "DARSA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd7a150D2eDfE324166436ea0766294634B811Bb5", + "status": "abandoned", + "id": "0xd7a150D2eDfE324166436ea0766294634B811Bb5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd7a150D2eDfE324166436ea0766294634B811Bb5/logo.png b/blockchains/ethereum/assets/0xd7a150D2eDfE324166436ea0766294634B811Bb5/logo.png new file mode 100644 index 00000000..98100f7e Binary files /dev/null and b/blockchains/ethereum/assets/0xd7a150D2eDfE324166436ea0766294634B811Bb5/logo.png differ diff --git a/blockchains/ethereum/assets/0xd7c49CEE7E9188cCa6AD8FF264C1DA2e69D4Cf3B/info.json b/blockchains/ethereum/assets/0xd7c49CEE7E9188cCa6AD8FF264C1DA2e69D4Cf3B/info.json new file mode 100644 index 00000000..c1717590 --- /dev/null +++ b/blockchains/ethereum/assets/0xd7c49CEE7E9188cCa6AD8FF264C1DA2e69D4Cf3B/info.json @@ -0,0 +1,15 @@ +{ + "name": "NXM", + "website": "https://nexusmutual.io", + "description": "Nexus Mutual uses Ethereum so that people can pool risk together without the need for an insurance company.", + "explorer": "https://etherscan.io/token/0xd7c49CEE7E9188cCa6AD8FF264C1DA2e69D4Cf3B", + "research": "", + "type": "ERC20", + "symbol": "NXM", + "decimals": 18, + "status": "active", + "id": "0xd7c49CEE7E9188cCa6AD8FF264C1DA2e69D4Cf3B", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd7c49CEE7E9188cCa6AD8FF264C1DA2e69D4Cf3B/logo.png b/blockchains/ethereum/assets/0xd7c49CEE7E9188cCa6AD8FF264C1DA2e69D4Cf3B/logo.png new file mode 100644 index 00000000..aa3f5d3a Binary files /dev/null and b/blockchains/ethereum/assets/0xd7c49CEE7E9188cCa6AD8FF264C1DA2e69D4Cf3B/logo.png differ diff --git a/blockchains/ethereum/assets/0xd80e558027Ee753a0b95757dC3521d0326F13DA2/info.json b/blockchains/ethereum/assets/0xd80e558027Ee753a0b95757dC3521d0326F13DA2/info.json new file mode 100644 index 00000000..f575a31a --- /dev/null +++ b/blockchains/ethereum/assets/0xd80e558027Ee753a0b95757dC3521d0326F13DA2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fulcrum Perpetual Long ETH-DAI 2x v2", + "symbol": "dLETH2x", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd80e558027Ee753a0b95757dC3521d0326F13DA2", + "status": "abandoned", + "id": "0xd80e558027Ee753a0b95757dC3521d0326F13DA2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd80e558027Ee753a0b95757dC3521d0326F13DA2/logo.png b/blockchains/ethereum/assets/0xd80e558027Ee753a0b95757dC3521d0326F13DA2/logo.png new file mode 100644 index 00000000..1cf5bfbd Binary files /dev/null and b/blockchains/ethereum/assets/0xd80e558027Ee753a0b95757dC3521d0326F13DA2/logo.png differ diff --git a/blockchains/ethereum/assets/0xd811250b7fE83150cBB3d70a892fCE6189fB3e08/info.json b/blockchains/ethereum/assets/0xd811250b7fE83150cBB3d70a892fCE6189fB3e08/info.json new file mode 100644 index 00000000..7cbcf067 --- /dev/null +++ b/blockchains/ethereum/assets/0xd811250b7fE83150cBB3d70a892fCE6189fB3e08/info.json @@ -0,0 +1,11 @@ +{ + "name": "Virtual Mind Chain", + "symbol": "VMC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd811250b7fE83150cBB3d70a892fCE6189fB3e08", + "status": "abandoned", + "id": "0xd811250b7fE83150cBB3d70a892fCE6189fB3e08" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd811250b7fE83150cBB3d70a892fCE6189fB3e08/logo.png b/blockchains/ethereum/assets/0xd811250b7fE83150cBB3d70a892fCE6189fB3e08/logo.png new file mode 100644 index 00000000..10f6c243 Binary files /dev/null and b/blockchains/ethereum/assets/0xd811250b7fE83150cBB3d70a892fCE6189fB3e08/logo.png differ diff --git a/blockchains/ethereum/assets/0xd82Df0ABD3f51425Eb15ef7580fDA55727875f14/info.json b/blockchains/ethereum/assets/0xd82Df0ABD3f51425Eb15ef7580fDA55727875f14/info.json new file mode 100644 index 00000000..70db9734 --- /dev/null +++ b/blockchains/ethereum/assets/0xd82Df0ABD3f51425Eb15ef7580fDA55727875f14/info.json @@ -0,0 +1,11 @@ +{ + "name": "DAV Token", + "symbol": "DAV", + "type": "ERC20", + "decimals": 18, + "description": "Enabling a Decentralized, Peer-to-Peer, Global Transportation Network", + "website": "https://dav.network", + "explorer": "https://etherscan.io/token/0xd82Df0ABD3f51425Eb15ef7580fDA55727875f14", + "status": "active", + "id": "0xd82Df0ABD3f51425Eb15ef7580fDA55727875f14" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd82Df0ABD3f51425Eb15ef7580fDA55727875f14/logo.png b/blockchains/ethereum/assets/0xd82Df0ABD3f51425Eb15ef7580fDA55727875f14/logo.png new file mode 100644 index 00000000..30fc7ade Binary files /dev/null and b/blockchains/ethereum/assets/0xd82Df0ABD3f51425Eb15ef7580fDA55727875f14/logo.png differ diff --git a/blockchains/ethereum/assets/0xd83C569268930fadAd4cdE6D0cB64450fef32b65/info.json b/blockchains/ethereum/assets/0xd83C569268930fadAd4cdE6D0cB64450fef32b65/info.json new file mode 100644 index 00000000..c111de8c --- /dev/null +++ b/blockchains/ethereum/assets/0xd83C569268930fadAd4cdE6D0cB64450fef32b65/info.json @@ -0,0 +1,11 @@ +{ + "name": "InvictusCapital.com Token", + "symbol": "ICAP", + "type": "ERC20", + "decimals": 18, + "description": "The invictuscapital.com token is a community token to reward investors. The token incentivizes long-term holders by aligning them with Invictus Capital, as a portion of all fees earned across all funds will be rebated into a pool to buy and burn ICAP off the market each week.", + "website": "https://invictuscapital.com/en/icap", + "explorer": "https://etherscan.io/token/0xd83C569268930fadAd4cdE6D0cB64450fef32b65", + "status": "active", + "id": "0xd83C569268930fadAd4cdE6D0cB64450fef32b65" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd83C569268930fadAd4cdE6D0cB64450fef32b65/logo.png b/blockchains/ethereum/assets/0xd83C569268930fadAd4cdE6D0cB64450fef32b65/logo.png new file mode 100644 index 00000000..c507a76b Binary files /dev/null and b/blockchains/ethereum/assets/0xd83C569268930fadAd4cdE6D0cB64450fef32b65/logo.png differ diff --git a/blockchains/ethereum/assets/0xd8446236FA95b9b5f9fd0f8E7Df1a944823c683d/info.json b/blockchains/ethereum/assets/0xd8446236FA95b9b5f9fd0f8E7Df1a944823c683d/info.json new file mode 100644 index 00000000..752c1e33 --- /dev/null +++ b/blockchains/ethereum/assets/0xd8446236FA95b9b5f9fd0f8E7Df1a944823c683d/info.json @@ -0,0 +1,11 @@ +{ + "name": "NEEO", + "symbol": "NEEO", + "type": "ERC20", + "decimals": 18, + "description": "NEEO Messenger immediately translates text messages from more than a hundred foreign languages into your native language. NEEO Play application is a gaming platform where you can earn NEEO tokens. Inside you can find seven different exciting games designed especially for the project NEEO Play.", + "website": "http://neeoico.com/", + "explorer": "https://etherscan.io/token/0xd8446236FA95b9b5f9fd0f8E7Df1a944823c683d", + "status": "active", + "id": "0xd8446236FA95b9b5f9fd0f8E7Df1a944823c683d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd8446236FA95b9b5f9fd0f8E7Df1a944823c683d/logo.png b/blockchains/ethereum/assets/0xd8446236FA95b9b5f9fd0f8E7Df1a944823c683d/logo.png new file mode 100644 index 00000000..9e376290 Binary files /dev/null and b/blockchains/ethereum/assets/0xd8446236FA95b9b5f9fd0f8E7Df1a944823c683d/logo.png differ diff --git a/blockchains/ethereum/assets/0xd8950fDeaa10304B7A7Fd03a2FC66BC39f3c711a/info.json b/blockchains/ethereum/assets/0xd8950fDeaa10304B7A7Fd03a2FC66BC39f3c711a/info.json new file mode 100644 index 00000000..6287d6e7 --- /dev/null +++ b/blockchains/ethereum/assets/0xd8950fDeaa10304B7A7Fd03a2FC66BC39f3c711a/info.json @@ -0,0 +1,11 @@ +{ + "name": "wys Token", + "symbol": "WYS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://wystoken.org", + "explorer": "https://etherscan.io/token/0xd8950fDeaa10304B7A7Fd03a2FC66BC39f3c711a", + "status": "abandoned", + "id": "0xd8950fDeaa10304B7A7Fd03a2FC66BC39f3c711a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd8950fDeaa10304B7A7Fd03a2FC66BC39f3c711a/logo.png b/blockchains/ethereum/assets/0xd8950fDeaa10304B7A7Fd03a2FC66BC39f3c711a/logo.png new file mode 100644 index 00000000..26d8780c Binary files /dev/null and b/blockchains/ethereum/assets/0xd8950fDeaa10304B7A7Fd03a2FC66BC39f3c711a/logo.png differ diff --git a/blockchains/ethereum/assets/0xd8B8E1Eca89dA014E67fDbc2014eaA8E171079bF/info.json b/blockchains/ethereum/assets/0xd8B8E1Eca89dA014E67fDbc2014eaA8E171079bF/info.json new file mode 100644 index 00000000..25359706 --- /dev/null +++ b/blockchains/ethereum/assets/0xd8B8E1Eca89dA014E67fDbc2014eaA8E171079bF/info.json @@ -0,0 +1,11 @@ +{ + "name": "FreldoCoinX", + "symbol": "FRECNX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd8B8E1Eca89dA014E67fDbc2014eaA8E171079bF", + "status": "abandoned", + "id": "0xd8B8E1Eca89dA014E67fDbc2014eaA8E171079bF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd8B8E1Eca89dA014E67fDbc2014eaA8E171079bF/logo.png b/blockchains/ethereum/assets/0xd8B8E1Eca89dA014E67fDbc2014eaA8E171079bF/logo.png new file mode 100644 index 00000000..ed7fb368 Binary files /dev/null and b/blockchains/ethereum/assets/0xd8B8E1Eca89dA014E67fDbc2014eaA8E171079bF/logo.png differ diff --git a/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json b/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json new file mode 100644 index 00000000..a13238e3 --- /dev/null +++ b/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json @@ -0,0 +1,36 @@ +{ + "name": "SquidGrow", + "type": "ERC20", + "symbol": "SquidGrow", + "decimals": 9, + "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": "abandoned", + "id": "0xd8Fa690304D2B2824D918C0c7376e2823704557A", + "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/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/squidgrow" + }, + { + "name": "discord", + "url": "https://discord.com/HgsgryRpwB" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd8FcAb3cB8c766Ea1aE85c624c650588958F9666/info.json b/blockchains/ethereum/assets/0xd8FcAb3cB8c766Ea1aE85c624c650588958F9666/info.json new file mode 100644 index 00000000..606be1f1 --- /dev/null +++ b/blockchains/ethereum/assets/0xd8FcAb3cB8c766Ea1aE85c624c650588958F9666/info.json @@ -0,0 +1,11 @@ +{ + "name": "Midas Gold", + "symbol": "MDG", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd8FcAb3cB8c766Ea1aE85c624c650588958F9666", + "status": "abandoned", + "id": "0xd8FcAb3cB8c766Ea1aE85c624c650588958F9666" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd8FcAb3cB8c766Ea1aE85c624c650588958F9666/logo.png b/blockchains/ethereum/assets/0xd8FcAb3cB8c766Ea1aE85c624c650588958F9666/logo.png new file mode 100644 index 00000000..2901cb18 Binary files /dev/null and b/blockchains/ethereum/assets/0xd8FcAb3cB8c766Ea1aE85c624c650588958F9666/logo.png differ diff --git a/blockchains/ethereum/assets/0xd8dc1070B5510583728eE2AFD6934877ea2dE474/info.json b/blockchains/ethereum/assets/0xd8dc1070B5510583728eE2AFD6934877ea2dE474/info.json new file mode 100644 index 00000000..7a528075 --- /dev/null +++ b/blockchains/ethereum/assets/0xd8dc1070B5510583728eE2AFD6934877ea2dE474/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aigo Payment", + "symbol": "XGP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd8dc1070B5510583728eE2AFD6934877ea2dE474", + "status": "abandoned", + "id": "0xd8dc1070B5510583728eE2AFD6934877ea2dE474" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd8dc1070B5510583728eE2AFD6934877ea2dE474/logo.png b/blockchains/ethereum/assets/0xd8dc1070B5510583728eE2AFD6934877ea2dE474/logo.png new file mode 100644 index 00000000..d4898d9a Binary files /dev/null and b/blockchains/ethereum/assets/0xd8dc1070B5510583728eE2AFD6934877ea2dE474/logo.png differ diff --git a/blockchains/ethereum/assets/0xd8e1bb9123DFc3cc27f7120d503ad914A317325c/info.json b/blockchains/ethereum/assets/0xd8e1bb9123DFc3cc27f7120d503ad914A317325c/info.json new file mode 100644 index 00000000..541a976b --- /dev/null +++ b/blockchains/ethereum/assets/0xd8e1bb9123DFc3cc27f7120d503ad914A317325c/info.json @@ -0,0 +1,11 @@ +{ + "name": "XE Currency Converter", + "symbol": "XCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd8e1bb9123DFc3cc27f7120d503ad914A317325c", + "status": "abandoned", + "id": "0xd8e1bb9123DFc3cc27f7120d503ad914A317325c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd8e1bb9123DFc3cc27f7120d503ad914A317325c/logo.png b/blockchains/ethereum/assets/0xd8e1bb9123DFc3cc27f7120d503ad914A317325c/logo.png new file mode 100644 index 00000000..43af3b72 Binary files /dev/null and b/blockchains/ethereum/assets/0xd8e1bb9123DFc3cc27f7120d503ad914A317325c/logo.png differ diff --git a/blockchains/ethereum/assets/0xd947b0ceab2A8885866B9A04A06AE99DE852a3d4/info.json b/blockchains/ethereum/assets/0xd947b0ceab2A8885866B9A04A06AE99DE852a3d4/info.json new file mode 100644 index 00000000..63e50ca3 --- /dev/null +++ b/blockchains/ethereum/assets/0xd947b0ceab2A8885866B9A04A06AE99DE852a3d4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trade Token X", + "symbol": "TIOx", + "type": "ERC20", + "decimals": 18, + "description": "The Trade Token is a utility token that enables frictionless transactions of a wide range of assets on the trade.io exchange whilst also acting as a medium of exchange and a store of value that could become more valuable in line with the growth of users and increasing use of the trading platform.", + "website": "https://trade.io", + "explorer": "https://etherscan.io/token/0xd947b0ceab2A8885866B9A04A06AE99DE852a3d4", + "status": "active", + "id": "0xd947b0ceab2A8885866B9A04A06AE99DE852a3d4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd947b0ceab2A8885866B9A04A06AE99DE852a3d4/logo.png b/blockchains/ethereum/assets/0xd947b0ceab2A8885866B9A04A06AE99DE852a3d4/logo.png new file mode 100644 index 00000000..e7a3a4c8 Binary files /dev/null and b/blockchains/ethereum/assets/0xd947b0ceab2A8885866B9A04A06AE99DE852a3d4/logo.png differ diff --git a/blockchains/ethereum/assets/0xd9485499499d66B175Cf5ED54c0a19f1a6Bcb61A/info.json b/blockchains/ethereum/assets/0xd9485499499d66B175Cf5ED54c0a19f1a6Bcb61A/info.json new file mode 100644 index 00000000..f29f92c1 --- /dev/null +++ b/blockchains/ethereum/assets/0xd9485499499d66B175Cf5ED54c0a19f1a6Bcb61A/info.json @@ -0,0 +1,11 @@ +{ + "name": "UseChain Token", + "symbol": "USE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.usechain.net/", + "explorer": "https://etherscan.io/token/0xd9485499499d66B175Cf5ED54c0a19f1a6Bcb61A", + "status": "abandoned", + "id": "0xd9485499499d66B175Cf5ED54c0a19f1a6Bcb61A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd9485499499d66B175Cf5ED54c0a19f1a6Bcb61A/logo.png b/blockchains/ethereum/assets/0xd9485499499d66B175Cf5ED54c0a19f1a6Bcb61A/logo.png new file mode 100644 index 00000000..774c00d5 Binary files /dev/null and b/blockchains/ethereum/assets/0xd9485499499d66B175Cf5ED54c0a19f1a6Bcb61A/logo.png differ diff --git a/blockchains/ethereum/assets/0xd94F2778e2B3913C53637Ae60647598bE588c570/info.json b/blockchains/ethereum/assets/0xd94F2778e2B3913C53637Ae60647598bE588c570/info.json new file mode 100644 index 00000000..5cef959a --- /dev/null +++ b/blockchains/ethereum/assets/0xd94F2778e2B3913C53637Ae60647598bE588c570/info.json @@ -0,0 +1,11 @@ +{ + "name": "Purpose", + "symbol": "PRPS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd94F2778e2B3913C53637Ae60647598bE588c570", + "status": "abandoned", + "id": "0xd94F2778e2B3913C53637Ae60647598bE588c570" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd94F2778e2B3913C53637Ae60647598bE588c570/logo.png b/blockchains/ethereum/assets/0xd94F2778e2B3913C53637Ae60647598bE588c570/logo.png new file mode 100755 index 00000000..6ef68dcf Binary files /dev/null and b/blockchains/ethereum/assets/0xd94F2778e2B3913C53637Ae60647598bE588c570/logo.png differ diff --git a/blockchains/ethereum/assets/0xd9555279B1c18b7aa388F053EBc0ab22e2497964/info.json b/blockchains/ethereum/assets/0xd9555279B1c18b7aa388F053EBc0ab22e2497964/info.json new file mode 100644 index 00000000..e0902f9b --- /dev/null +++ b/blockchains/ethereum/assets/0xd9555279B1c18b7aa388F053EBc0ab22e2497964/info.json @@ -0,0 +1,11 @@ +{ + "name": "Reactioon", + "symbol": "RTN", + "type": "ERC20", + "decimals": 0, + "description": "Reactioon is a tool over a distributed network to process, analyze and serve data, focused on cryptomarket. Without transfer funds, without division and totally transparent.", + "website": "https://www.reactioon.com/", + "explorer": "https://etherscan.io/token/0xd9555279B1c18b7aa388F053EBc0ab22e2497964", + "status": "active", + "id": "0xd9555279B1c18b7aa388F053EBc0ab22e2497964" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd9555279B1c18b7aa388F053EBc0ab22e2497964/logo.png b/blockchains/ethereum/assets/0xd9555279B1c18b7aa388F053EBc0ab22e2497964/logo.png new file mode 100644 index 00000000..4a342fec Binary files /dev/null and b/blockchains/ethereum/assets/0xd9555279B1c18b7aa388F053EBc0ab22e2497964/logo.png differ diff --git a/blockchains/ethereum/assets/0xd957E08ac5421E2C28510586B57d095E5094836a/info.json b/blockchains/ethereum/assets/0xd957E08ac5421E2C28510586B57d095E5094836a/info.json new file mode 100644 index 00000000..5b7cffb5 --- /dev/null +++ b/blockchains/ethereum/assets/0xd957E08ac5421E2C28510586B57d095E5094836a/info.json @@ -0,0 +1,11 @@ +{ + "name": "VorteX Network", + "symbol": "VTX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://vortexnetworkvtx.com", + "explorer": "https://etherscan.io/token/0xd957E08ac5421E2C28510586B57d095E5094836a", + "status": "abandoned", + "id": "0xd957E08ac5421E2C28510586B57d095E5094836a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd957E08ac5421E2C28510586B57d095E5094836a/logo.png b/blockchains/ethereum/assets/0xd957E08ac5421E2C28510586B57d095E5094836a/logo.png new file mode 100644 index 00000000..9bb6548d Binary files /dev/null and b/blockchains/ethereum/assets/0xd957E08ac5421E2C28510586B57d095E5094836a/logo.png differ diff --git a/blockchains/ethereum/assets/0xd967d9F941CD316Ab238d3EE761F80b7cAec7819/info.json b/blockchains/ethereum/assets/0xd967d9F941CD316Ab238d3EE761F80b7cAec7819/info.json new file mode 100644 index 00000000..14f5bc4e --- /dev/null +++ b/blockchains/ethereum/assets/0xd967d9F941CD316Ab238d3EE761F80b7cAec7819/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rendezvous", + "symbol": "RDV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd967d9F941CD316Ab238d3EE761F80b7cAec7819", + "status": "abandoned", + "id": "0xd967d9F941CD316Ab238d3EE761F80b7cAec7819" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd967d9F941CD316Ab238d3EE761F80b7cAec7819/logo.png b/blockchains/ethereum/assets/0xd967d9F941CD316Ab238d3EE761F80b7cAec7819/logo.png new file mode 100644 index 00000000..9a841b8b Binary files /dev/null and b/blockchains/ethereum/assets/0xd967d9F941CD316Ab238d3EE761F80b7cAec7819/logo.png differ diff --git a/blockchains/ethereum/assets/0xd97579Cea3fE2473682a4C42648134BB982433B9/info.json b/blockchains/ethereum/assets/0xd97579Cea3fE2473682a4C42648134BB982433B9/info.json new file mode 100644 index 00000000..f2097e31 --- /dev/null +++ b/blockchains/ethereum/assets/0xd97579Cea3fE2473682a4C42648134BB982433B9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lightcoin", + "symbol": "Light", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd97579Cea3fE2473682a4C42648134BB982433B9", + "status": "abandoned", + "id": "0xd97579Cea3fE2473682a4C42648134BB982433B9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd97579Cea3fE2473682a4C42648134BB982433B9/logo.png b/blockchains/ethereum/assets/0xd97579Cea3fE2473682a4C42648134BB982433B9/logo.png new file mode 100644 index 00000000..895325dc Binary files /dev/null and b/blockchains/ethereum/assets/0xd97579Cea3fE2473682a4C42648134BB982433B9/logo.png differ diff --git a/blockchains/ethereum/assets/0xd98F75b1A3261dab9eEd4956c93F33749027a964/info.json b/blockchains/ethereum/assets/0xd98F75b1A3261dab9eEd4956c93F33749027a964/info.json new file mode 100644 index 00000000..33f68746 --- /dev/null +++ b/blockchains/ethereum/assets/0xd98F75b1A3261dab9eEd4956c93F33749027a964/info.json @@ -0,0 +1,33 @@ +{ + "name": "ShareToken", + "website": "https://sharering.network", + "description": "ShareRing is the first global sharing ecosystem that makes services and goods more accessible for everyone.", + "explorer": "https://etherscan.io/token/0xd98f75b1a3261dab9eed4956c93f33749027a964", + "type": "ERC20", + "symbol": "SHR", + "decimals": 2, + "status": "active", + "id": "0xd98F75b1A3261dab9eEd4956c93F33749027a964", + "links": [ + { + "name": "github", + "url": "https://github.com/ShareRing" + }, + { + "name": "x", + "url": "https://x.com/shareringglobal" + }, + { + "name": "telegram", + "url": "https://t.me/sharering" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ShareRing/" + }, + { + "name": "whitepaper", + "url": "https://sharering.network/public/sharetoken-whitepaper-en-web-v1.2.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd98F75b1A3261dab9eEd4956c93F33749027a964/logo.png b/blockchains/ethereum/assets/0xd98F75b1A3261dab9eEd4956c93F33749027a964/logo.png new file mode 100644 index 00000000..0765877e Binary files /dev/null and b/blockchains/ethereum/assets/0xd98F75b1A3261dab9eEd4956c93F33749027a964/logo.png differ diff --git a/blockchains/ethereum/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/info.json b/blockchains/ethereum/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/info.json new file mode 100644 index 00000000..6c5bd522 --- /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 00000000..c4974d79 Binary files /dev/null and b/blockchains/ethereum/assets/0xd9913208647671Fe0F48F7F260076B2C6F310Aac/logo.png differ diff --git a/blockchains/ethereum/assets/0xd99b8A7fA48E25Cce83B81812220A3E03Bf64e5f/info.json b/blockchains/ethereum/assets/0xd99b8A7fA48E25Cce83B81812220A3E03Bf64e5f/info.json new file mode 100644 index 00000000..26ce0725 --- /dev/null +++ b/blockchains/ethereum/assets/0xd99b8A7fA48E25Cce83B81812220A3E03Bf64e5f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Skrumble Token", + "symbol": "SKM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd99b8A7fA48E25Cce83B81812220A3E03Bf64e5f", + "status": "abandoned", + "id": "0xd99b8A7fA48E25Cce83B81812220A3E03Bf64e5f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd99b8A7fA48E25Cce83B81812220A3E03Bf64e5f/logo.png b/blockchains/ethereum/assets/0xd99b8A7fA48E25Cce83B81812220A3E03Bf64e5f/logo.png new file mode 100755 index 00000000..df657648 Binary files /dev/null and b/blockchains/ethereum/assets/0xd99b8A7fA48E25Cce83B81812220A3E03Bf64e5f/logo.png differ diff --git a/blockchains/ethereum/assets/0xd9A4cB9dc9296e111c66dFACAb8Be034EE2E1c2C/info.json b/blockchains/ethereum/assets/0xd9A4cB9dc9296e111c66dFACAb8Be034EE2E1c2C/info.json new file mode 100644 index 00000000..55f2bd7c --- /dev/null +++ b/blockchains/ethereum/assets/0xd9A4cB9dc9296e111c66dFACAb8Be034EE2E1c2C/info.json @@ -0,0 +1,12 @@ +{ + "name": "AdEx Loyalty", + "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. ADX-LOYALTY is it's governance token.", + "explorer": "https://etherscan.io/token/0xd9A4cB9dc9296e111c66dFACAb8Be034EE2E1c2C", + "research": "https://research.binance.com/en/projects/adex-network", + "type": "ERC20", + "symbol": "ADX-LOYALTY", + "decimals": 18, + "status": "active", + "id": "0xd9A4cB9dc9296e111c66dFACAb8Be034EE2E1c2C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd9A4cB9dc9296e111c66dFACAb8Be034EE2E1c2C/logo.png b/blockchains/ethereum/assets/0xd9A4cB9dc9296e111c66dFACAb8Be034EE2E1c2C/logo.png new file mode 100644 index 00000000..cc326c3c Binary files /dev/null and b/blockchains/ethereum/assets/0xd9A4cB9dc9296e111c66dFACAb8Be034EE2E1c2C/logo.png differ diff --git a/blockchains/ethereum/assets/0xd9A8cfe21C232D485065cb62a96866799d4645f7/info.json b/blockchains/ethereum/assets/0xd9A8cfe21C232D485065cb62a96866799d4645f7/info.json new file mode 100644 index 00000000..8752f3ce --- /dev/null +++ b/blockchains/ethereum/assets/0xd9A8cfe21C232D485065cb62a96866799d4645f7/info.json @@ -0,0 +1,11 @@ +{ + "name": "FingerPrint", + "symbol": "FGP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://fingerprintcoin.org/", + "explorer": "https://etherscan.io/token/0xd9A8cfe21C232D485065cb62a96866799d4645f7", + "status": "abandoned", + "id": "0xd9A8cfe21C232D485065cb62a96866799d4645f7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd9A8cfe21C232D485065cb62a96866799d4645f7/logo.png b/blockchains/ethereum/assets/0xd9A8cfe21C232D485065cb62a96866799d4645f7/logo.png new file mode 100644 index 00000000..86e2ad6e Binary files /dev/null and b/blockchains/ethereum/assets/0xd9A8cfe21C232D485065cb62a96866799d4645f7/logo.png differ diff --git a/blockchains/ethereum/assets/0xd9D2b9c61AdeCAd2d04472E0cafA275Dde03a3cd/info.json b/blockchains/ethereum/assets/0xd9D2b9c61AdeCAd2d04472E0cafA275Dde03a3cd/info.json new file mode 100644 index 00000000..fa118fac --- /dev/null +++ b/blockchains/ethereum/assets/0xd9D2b9c61AdeCAd2d04472E0cafA275Dde03a3cd/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R737324", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd9D2b9c61AdeCAd2d04472E0cafA275Dde03a3cd", + "status": "abandoned", + "id": "0xd9D2b9c61AdeCAd2d04472E0cafA275Dde03a3cd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd9D2b9c61AdeCAd2d04472E0cafA275Dde03a3cd/logo.png b/blockchains/ethereum/assets/0xd9D2b9c61AdeCAd2d04472E0cafA275Dde03a3cd/logo.png new file mode 100644 index 00000000..ce06f540 Binary files /dev/null and b/blockchains/ethereum/assets/0xd9D2b9c61AdeCAd2d04472E0cafA275Dde03a3cd/logo.png differ diff --git a/blockchains/ethereum/assets/0xd9E2fD73B1fe445AC7eD133e03d7983a7e660B50/info.json b/blockchains/ethereum/assets/0xd9E2fD73B1fe445AC7eD133e03d7983a7e660B50/info.json new file mode 100644 index 00000000..b7946797 --- /dev/null +++ b/blockchains/ethereum/assets/0xd9E2fD73B1fe445AC7eD133e03d7983a7e660B50/info.json @@ -0,0 +1,11 @@ +{ + "name": "Token9", + "symbol": "T9", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd9E2fD73B1fe445AC7eD133e03d7983a7e660B50", + "status": "abandoned", + "id": "0xd9E2fD73B1fe445AC7eD133e03d7983a7e660B50" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd9E2fD73B1fe445AC7eD133e03d7983a7e660B50/logo.png b/blockchains/ethereum/assets/0xd9E2fD73B1fe445AC7eD133e03d7983a7e660B50/logo.png new file mode 100644 index 00000000..675a41c0 Binary files /dev/null and b/blockchains/ethereum/assets/0xd9E2fD73B1fe445AC7eD133e03d7983a7e660B50/logo.png differ diff --git a/blockchains/ethereum/assets/0xd9F30228884d3212528540aC0136489047bE5734/info.json b/blockchains/ethereum/assets/0xd9F30228884d3212528540aC0136489047bE5734/info.json new file mode 100644 index 00000000..af0f5e9c --- /dev/null +++ b/blockchains/ethereum/assets/0xd9F30228884d3212528540aC0136489047bE5734/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eaglebits", + "symbol": "EEB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd9F30228884d3212528540aC0136489047bE5734", + "status": "abandoned", + "id": "0xd9F30228884d3212528540aC0136489047bE5734" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd9F30228884d3212528540aC0136489047bE5734/logo.png b/blockchains/ethereum/assets/0xd9F30228884d3212528540aC0136489047bE5734/logo.png new file mode 100644 index 00000000..eaf1f6ef Binary files /dev/null and b/blockchains/ethereum/assets/0xd9F30228884d3212528540aC0136489047bE5734/logo.png differ diff --git a/blockchains/ethereum/assets/0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b/info.json b/blockchains/ethereum/assets/0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b/info.json new file mode 100644 index 00000000..45ba6bf3 --- /dev/null +++ b/blockchains/ethereum/assets/0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b/info.json @@ -0,0 +1,28 @@ +{ + "name": "Euler", + "type": "ERC20", + "symbol": "EUL", + "decimals": 18, + "website": "https://www.euler.finance/", + "description": "Euler is a non-custodial permissionless lending protocol on Ethereum that helps users to earn interest on their crypto assets or hedge against volatile markets without the need for a trusted third-party.", + "explorer": "https://etherscan.io/token/0xd9fcd98c322942075a5c3860693e9f4f03aae07b", + "status": "active", + "id": "0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b", + "links": [ + { + "name": "x", + "url": "https://x.com/eulerfinance" + }, + { + "name": "telegram", + "url": "https://t.me/eulerfinance_official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/euler-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b/logo.png b/blockchains/ethereum/assets/0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b/logo.png new file mode 100644 index 00000000..6fda6afd Binary files /dev/null and b/blockchains/ethereum/assets/0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b/logo.png differ diff --git a/blockchains/ethereum/assets/0xd9af2d11d788da0097076f4Eb21bd1C5533743D9/info.json b/blockchains/ethereum/assets/0xd9af2d11d788da0097076f4Eb21bd1C5533743D9/info.json new file mode 100644 index 00000000..73fbfab5 --- /dev/null +++ b/blockchains/ethereum/assets/0xd9af2d11d788da0097076f4Eb21bd1C5533743D9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Legal Block Token", + "symbol": "LBK", + "type": "ERC20", + "decimals": 18, + "description": "The LBK project is set out to address the blind spot in the legal market and seeks to provide online based legal services. Clients can receive legal advice related to contracts online, enter into contracts, and contracts that are signed online are stored on the Ethereum network as hash values to prevent forgery.", + "website": "https://legal-block.com/", + "explorer": "https://etherscan.io/token/0xd9af2d11d788da0097076f4Eb21bd1C5533743D9", + "status": "active", + "id": "0xd9af2d11d788da0097076f4Eb21bd1C5533743D9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd9af2d11d788da0097076f4Eb21bd1C5533743D9/logo.png b/blockchains/ethereum/assets/0xd9af2d11d788da0097076f4Eb21bd1C5533743D9/logo.png new file mode 100644 index 00000000..85c89ad0 Binary files /dev/null and b/blockchains/ethereum/assets/0xd9af2d11d788da0097076f4Eb21bd1C5533743D9/logo.png differ diff --git a/blockchains/ethereum/assets/0xd9b38068cf4eA5EF9A9FE8922f21c8Ae52F016b8/info.json b/blockchains/ethereum/assets/0xd9b38068cf4eA5EF9A9FE8922f21c8Ae52F016b8/info.json new file mode 100644 index 00000000..02c071e9 --- /dev/null +++ b/blockchains/ethereum/assets/0xd9b38068cf4eA5EF9A9FE8922f21c8Ae52F016b8/info.json @@ -0,0 +1,11 @@ +{ + "name": "DANIEL", + "symbol": "DANIEL", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xd9b38068cf4eA5EF9A9FE8922f21c8Ae52F016b8", + "status": "abandoned", + "id": "0xd9b38068cf4eA5EF9A9FE8922f21c8Ae52F016b8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd9b38068cf4eA5EF9A9FE8922f21c8Ae52F016b8/logo.png b/blockchains/ethereum/assets/0xd9b38068cf4eA5EF9A9FE8922f21c8Ae52F016b8/logo.png new file mode 100644 index 00000000..c865c5ca Binary files /dev/null and b/blockchains/ethereum/assets/0xd9b38068cf4eA5EF9A9FE8922f21c8Ae52F016b8/logo.png differ diff --git a/blockchains/ethereum/assets/0xd9d01D4Cb824219A8F482a0FAd479cB971Fd0628/info.json b/blockchains/ethereum/assets/0xd9d01D4Cb824219A8F482a0FAd479cB971Fd0628/info.json new file mode 100644 index 00000000..937b08b7 --- /dev/null +++ b/blockchains/ethereum/assets/0xd9d01D4Cb824219A8F482a0FAd479cB971Fd0628/info.json @@ -0,0 +1,11 @@ +{ + "name": "EnterCoin", + "symbol": "ENTRC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://entercoin.net", + "explorer": "https://etherscan.io/token/0xd9d01D4Cb824219A8F482a0FAd479cB971Fd0628", + "status": "active", + "id": "0xd9d01D4Cb824219A8F482a0FAd479cB971Fd0628" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd9d01D4Cb824219A8F482a0FAd479cB971Fd0628/logo.png b/blockchains/ethereum/assets/0xd9d01D4Cb824219A8F482a0FAd479cB971Fd0628/logo.png new file mode 100644 index 00000000..ccb23148 Binary files /dev/null and b/blockchains/ethereum/assets/0xd9d01D4Cb824219A8F482a0FAd479cB971Fd0628/logo.png differ diff --git a/blockchains/ethereum/assets/0xd9ebbC7970e26B4eCeD7323b9331763E8272D011/info.json b/blockchains/ethereum/assets/0xd9ebbC7970e26B4eCeD7323b9331763E8272D011/info.json new file mode 100644 index 00000000..ffc9dfca --- /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 00000000..d1ecd77b 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 new file mode 100644 index 00000000..91c3986c --- /dev/null +++ b/blockchains/ethereum/assets/0xdA1E53E088023Fe4D1DC5a418581748f52CBd1b8/info.json @@ -0,0 +1,29 @@ +{ + "name": "Aidi Finance", + "website": "https://aidiverse.com", + "description": "AIDI is an ERC20 token, 100% decentralized, and the first token of the Aidiverse ecosystem. We are bringing together complete Decentralised Finance solutions and integrating them with Blockchain gaming and NFTs.", + "explorer": "https://etherscan.io/token/0xdA1E53E088023Fe4D1DC5a418581748f52CBd1b8", + "type": "ERC20", + "symbol": "AIDI", + "decimals": 9, + "status": "active", + "id": "0xdA1E53E088023Fe4D1DC5a418581748f52CBd1b8", + "links": [ + { + "name": "x", + "url": "https://x.com/AidiToken" + }, + { + "name": "github", + "url": "https://github.com/AidiFinance/Aidiverse-Contracts" + }, + { + "name": "telegram", + "url": "https://t.me/aidi_official" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aidi-inu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdA1E53E088023Fe4D1DC5a418581748f52CBd1b8/logo.png b/blockchains/ethereum/assets/0xdA1E53E088023Fe4D1DC5a418581748f52CBd1b8/logo.png new file mode 100644 index 00000000..6893b4ec Binary files /dev/null and b/blockchains/ethereum/assets/0xdA1E53E088023Fe4D1DC5a418581748f52CBd1b8/logo.png differ diff --git a/blockchains/ethereum/assets/0xdA30f261a962d5AAe94C9ecd170544600d193766/info.json b/blockchains/ethereum/assets/0xdA30f261a962d5AAe94C9ecd170544600d193766/info.json new file mode 100644 index 00000000..fbc50fee --- /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 00000000..9e725803 Binary files /dev/null and b/blockchains/ethereum/assets/0xdA30f261a962d5AAe94C9ecd170544600d193766/logo.png differ diff --git a/blockchains/ethereum/assets/0xdA32d3814b10Aee35dcba4dE4f6B2259916F9cBB/info.json b/blockchains/ethereum/assets/0xdA32d3814b10Aee35dcba4dE4f6B2259916F9cBB/info.json new file mode 100644 index 00000000..e5834360 --- /dev/null +++ b/blockchains/ethereum/assets/0xdA32d3814b10Aee35dcba4dE4f6B2259916F9cBB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Swap", + "symbol": "SWAP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdA32d3814b10Aee35dcba4dE4f6B2259916F9cBB", + "status": "abandoned", + "id": "0xdA32d3814b10Aee35dcba4dE4f6B2259916F9cBB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdA32d3814b10Aee35dcba4dE4f6B2259916F9cBB/logo.png b/blockchains/ethereum/assets/0xdA32d3814b10Aee35dcba4dE4f6B2259916F9cBB/logo.png new file mode 100644 index 00000000..e796fdb6 Binary files /dev/null and b/blockchains/ethereum/assets/0xdA32d3814b10Aee35dcba4dE4f6B2259916F9cBB/logo.png differ diff --git a/blockchains/ethereum/assets/0xdA4129919F964a3A526D3182Bb03E6449e5a8872/info.json b/blockchains/ethereum/assets/0xdA4129919F964a3A526D3182Bb03E6449e5a8872/info.json new file mode 100644 index 00000000..e586587c --- /dev/null +++ b/blockchains/ethereum/assets/0xdA4129919F964a3A526D3182Bb03E6449e5a8872/info.json @@ -0,0 +1,11 @@ +{ + "name": "1irstgold", + "symbol": "GOLD", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdA4129919F964a3A526D3182Bb03E6449e5a8872", + "status": "abandoned", + "id": "0xdA4129919F964a3A526D3182Bb03E6449e5a8872" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdA4129919F964a3A526D3182Bb03E6449e5a8872/logo.png b/blockchains/ethereum/assets/0xdA4129919F964a3A526D3182Bb03E6449e5a8872/logo.png new file mode 100644 index 00000000..8cc70a91 Binary files /dev/null and b/blockchains/ethereum/assets/0xdA4129919F964a3A526D3182Bb03E6449e5a8872/logo.png differ diff --git a/blockchains/ethereum/assets/0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6/info.json b/blockchains/ethereum/assets/0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6/info.json new file mode 100644 index 00000000..7b5207d8 --- /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 00000000..c2366d35 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 00000000..81144aa3 --- /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 00000000..15357053 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 new file mode 100644 index 00000000..6f43639b --- /dev/null +++ b/blockchains/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/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://etherscan.io/token/0xdAC17F958D2ee523a2206206994597C13D831ec7", + "type": "ERC20", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "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/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/logo.png b/blockchains/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/logo.png new file mode 100644 index 00000000..4b302730 Binary files /dev/null and b/blockchains/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/logo.png differ diff --git a/blockchains/ethereum/assets/0xdB096cC19b8227E2115855c5B39Dcc247470013C/info.json b/blockchains/ethereum/assets/0xdB096cC19b8227E2115855c5B39Dcc247470013C/info.json new file mode 100644 index 00000000..ef7c963b --- /dev/null +++ b/blockchains/ethereum/assets/0xdB096cC19b8227E2115855c5B39Dcc247470013C/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITFEX", + "symbol": "BFX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.bitfex.com/", + "explorer": "https://etherscan.io/token/0xdB096cC19b8227E2115855c5B39Dcc247470013C", + "status": "abandoned", + "id": "0xdB096cC19b8227E2115855c5B39Dcc247470013C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdB096cC19b8227E2115855c5B39Dcc247470013C/logo.png b/blockchains/ethereum/assets/0xdB096cC19b8227E2115855c5B39Dcc247470013C/logo.png new file mode 100644 index 00000000..c56d000b Binary files /dev/null and b/blockchains/ethereum/assets/0xdB096cC19b8227E2115855c5B39Dcc247470013C/logo.png differ diff --git a/blockchains/ethereum/assets/0xdB11F6Fc8E16c02719e9c2Eb3c4C762feE8F5C5b/info.json b/blockchains/ethereum/assets/0xdB11F6Fc8E16c02719e9c2Eb3c4C762feE8F5C5b/info.json new file mode 100644 index 00000000..2f9f95c6 --- /dev/null +++ b/blockchains/ethereum/assets/0xdB11F6Fc8E16c02719e9c2Eb3c4C762feE8F5C5b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nydronia", + "symbol": "NIA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdB11F6Fc8E16c02719e9c2Eb3c4C762feE8F5C5b", + "status": "abandoned", + "id": "0xdB11F6Fc8E16c02719e9c2Eb3c4C762feE8F5C5b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdB11F6Fc8E16c02719e9c2Eb3c4C762feE8F5C5b/logo.png b/blockchains/ethereum/assets/0xdB11F6Fc8E16c02719e9c2Eb3c4C762feE8F5C5b/logo.png new file mode 100644 index 00000000..b35cf6cf Binary files /dev/null and b/blockchains/ethereum/assets/0xdB11F6Fc8E16c02719e9c2Eb3c4C762feE8F5C5b/logo.png differ diff --git a/blockchains/ethereum/assets/0xdB147d66851Fa80CD40A51E81E16Da26bA4Ea6B0/info.json b/blockchains/ethereum/assets/0xdB147d66851Fa80CD40A51E81E16Da26bA4Ea6B0/info.json new file mode 100644 index 00000000..02b6dffb --- /dev/null +++ b/blockchains/ethereum/assets/0xdB147d66851Fa80CD40A51E81E16Da26bA4Ea6B0/info.json @@ -0,0 +1,11 @@ +{ + "name": "All Things Blockchain", + "symbol": "ATB", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdB147d66851Fa80CD40A51E81E16Da26bA4Ea6B0", + "status": "abandoned", + "id": "0xdB147d66851Fa80CD40A51E81E16Da26bA4Ea6B0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdB147d66851Fa80CD40A51E81E16Da26bA4Ea6B0/logo.png b/blockchains/ethereum/assets/0xdB147d66851Fa80CD40A51E81E16Da26bA4Ea6B0/logo.png new file mode 100644 index 00000000..a46ae0a2 Binary files /dev/null and b/blockchains/ethereum/assets/0xdB147d66851Fa80CD40A51E81E16Da26bA4Ea6B0/logo.png differ diff --git a/blockchains/ethereum/assets/0xdB209c97e0De799bbf14E3377307780Ddc26BE4E/info.json b/blockchains/ethereum/assets/0xdB209c97e0De799bbf14E3377307780Ddc26BE4E/info.json new file mode 100644 index 00000000..114745d6 --- /dev/null +++ b/blockchains/ethereum/assets/0xdB209c97e0De799bbf14E3377307780Ddc26BE4E/info.json @@ -0,0 +1,11 @@ +{ + "name": "DarkPay Wallet", + "symbol": "DPW", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdB209c97e0De799bbf14E3377307780Ddc26BE4E", + "status": "abandoned", + "id": "0xdB209c97e0De799bbf14E3377307780Ddc26BE4E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdB209c97e0De799bbf14E3377307780Ddc26BE4E/logo.png b/blockchains/ethereum/assets/0xdB209c97e0De799bbf14E3377307780Ddc26BE4E/logo.png new file mode 100644 index 00000000..730140fb Binary files /dev/null and b/blockchains/ethereum/assets/0xdB209c97e0De799bbf14E3377307780Ddc26BE4E/logo.png differ diff --git a/blockchains/ethereum/assets/0xdB25f211AB05b1c97D595516F45794528a807ad8/info.json b/blockchains/ethereum/assets/0xdB25f211AB05b1c97D595516F45794528a807ad8/info.json new file mode 100644 index 00000000..13cecfe1 --- /dev/null +++ b/blockchains/ethereum/assets/0xdB25f211AB05b1c97D595516F45794528a807ad8/info.json @@ -0,0 +1,14 @@ +{ + "name": "STASIS EURO", + "website": "https://stasis.net", + "description": "Produced by STASIS, EURS was developed to tokenize the traditional fiat asset known around the world as the Euro.", + "explorer": "https://etherscan.io/token/0xdB25f211AB05b1c97D595516F45794528a807ad8", + "type": "ERC20", + "symbol": "EURS", + "decimals": 2, + "status": "active", + "id": "0xdB25f211AB05b1c97D595516F45794528a807ad8", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdB25f211AB05b1c97D595516F45794528a807ad8/logo.png b/blockchains/ethereum/assets/0xdB25f211AB05b1c97D595516F45794528a807ad8/logo.png new file mode 100644 index 00000000..41334714 Binary files /dev/null and b/blockchains/ethereum/assets/0xdB25f211AB05b1c97D595516F45794528a807ad8/logo.png differ diff --git a/blockchains/ethereum/assets/0xdB2F2bCCe3efa95EDA95a233aF45F3e0d4f00e2A/info.json b/blockchains/ethereum/assets/0xdB2F2bCCe3efa95EDA95a233aF45F3e0d4f00e2A/info.json new file mode 100644 index 00000000..76b649ce --- /dev/null +++ b/blockchains/ethereum/assets/0xdB2F2bCCe3efa95EDA95a233aF45F3e0d4f00e2A/info.json @@ -0,0 +1,22 @@ +{ + "name": "Aegis", + "website": "https://aegis.finance/", + "description": "Aegis As a DeFi 2.0 protocol, Aegis features more diversified lending services besides over-collateralized lending, such as micro-lending and Unsecured Borrowing. Aegis uses a proprietary AI-powered credit scoring algorithm to assess users’ creditworthiness based on the data provided, and assign an “Aegis Score” to each user, which is similar to traditional risk profile assessments.", + "explorer": "https://etherscan.io/token/0xdB2F2bCCe3efa95EDA95a233aF45F3e0d4f00e2A", + "research": "", + "type": "ERC20", + "symbol": "AGS", + "decimals": 8, + "status": "active", + "id": "0xdB2F2bCCe3efa95EDA95a233aF45F3e0d4f00e2A", + "links": [ + { + "name": "github", + "url": "https://github.com/AegisDeFi" + }, + { + "name": "whitepaper", + "url": "https://aegis.finance/whitepage/AegisNetworkLitepaperEN.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdB2F2bCCe3efa95EDA95a233aF45F3e0d4f00e2A/logo.png b/blockchains/ethereum/assets/0xdB2F2bCCe3efa95EDA95a233aF45F3e0d4f00e2A/logo.png new file mode 100644 index 00000000..af43523c Binary files /dev/null and b/blockchains/ethereum/assets/0xdB2F2bCCe3efa95EDA95a233aF45F3e0d4f00e2A/logo.png differ diff --git a/blockchains/ethereum/assets/0xdB3C2515Da400e11Bcaf84f3b5286f18ffF1868F/info.json b/blockchains/ethereum/assets/0xdB3C2515Da400e11Bcaf84f3b5286f18ffF1868F/info.json new file mode 100644 index 00000000..3d8fd328 --- /dev/null +++ b/blockchains/ethereum/assets/0xdB3C2515Da400e11Bcaf84f3b5286f18ffF1868F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped TON Crystal", + "symbol": "WTON", + "type": "ERC20", + "decimals": 9, + "description": "Wrapped FreeTON native Crystal token", + "website": "https://docs.tonbridge.io/wton/", + "explorer": "https://etherscan.io/token/0xdB3C2515Da400e11Bcaf84f3b5286f18ffF1868F", + "status": "active", + "id": "0xdB3C2515Da400e11Bcaf84f3b5286f18ffF1868F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdB3C2515Da400e11Bcaf84f3b5286f18ffF1868F/logo.png b/blockchains/ethereum/assets/0xdB3C2515Da400e11Bcaf84f3b5286f18ffF1868F/logo.png new file mode 100644 index 00000000..c08ab4da Binary files /dev/null and b/blockchains/ethereum/assets/0xdB3C2515Da400e11Bcaf84f3b5286f18ffF1868F/logo.png differ diff --git a/blockchains/ethereum/assets/0xdB52a87cda28EdA00f8aDd1C79c9DB4a50a70457/info.json b/blockchains/ethereum/assets/0xdB52a87cda28EdA00f8aDd1C79c9DB4a50a70457/info.json new file mode 100644 index 00000000..84b22822 --- /dev/null +++ b/blockchains/ethereum/assets/0xdB52a87cda28EdA00f8aDd1C79c9DB4a50a70457/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trader Cash", + "symbol": "TRC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://tradercash.org", + "explorer": "https://etherscan.io/token/0xdB52a87cda28EdA00f8aDd1C79c9DB4a50a70457", + "status": "abandoned", + "id": "0xdB52a87cda28EdA00f8aDd1C79c9DB4a50a70457" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdB52a87cda28EdA00f8aDd1C79c9DB4a50a70457/logo.png b/blockchains/ethereum/assets/0xdB52a87cda28EdA00f8aDd1C79c9DB4a50a70457/logo.png new file mode 100644 index 00000000..b43e63c5 Binary files /dev/null and b/blockchains/ethereum/assets/0xdB52a87cda28EdA00f8aDd1C79c9DB4a50a70457/logo.png differ diff --git a/blockchains/ethereum/assets/0xdB57d9C14e357Fc01E49035a808779Df41E9B4e2/info.json b/blockchains/ethereum/assets/0xdB57d9C14e357Fc01E49035a808779Df41E9B4e2/info.json new file mode 100644 index 00000000..51979d93 --- /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 00000000..6f961b66 Binary files /dev/null and b/blockchains/ethereum/assets/0xdB57d9C14e357Fc01E49035a808779Df41E9B4e2/logo.png differ diff --git a/blockchains/ethereum/assets/0xdB70949d01Dc647B973e865A570361c223dAf358/info.json b/blockchains/ethereum/assets/0xdB70949d01Dc647B973e865A570361c223dAf358/info.json new file mode 100644 index 00000000..07a0387d --- /dev/null +++ b/blockchains/ethereum/assets/0xdB70949d01Dc647B973e865A570361c223dAf358/info.json @@ -0,0 +1,11 @@ +{ + "name": "BBG", + "website": "https://bigbingo.network/", + "description": "BigBingo is a leading AI platform and service provider dedicated to empowering business and people with AI.", + "explorer": "https://etherscan.io/token/0xdB70949d01Dc647B973e865A570361c223dAf358", + "type": "ERC20", + "symbol": "BBG", + "decimals": 0, + "status": "active", + "id": "0xdB70949d01Dc647B973e865A570361c223dAf358" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdB70949d01Dc647B973e865A570361c223dAf358/logo.png b/blockchains/ethereum/assets/0xdB70949d01Dc647B973e865A570361c223dAf358/logo.png new file mode 100644 index 00000000..ecd031e6 Binary files /dev/null and b/blockchains/ethereum/assets/0xdB70949d01Dc647B973e865A570361c223dAf358/logo.png differ diff --git a/blockchains/ethereum/assets/0xdBA8e8021FE321af91FC3A08e223EF15908cB2bB/info.json b/blockchains/ethereum/assets/0xdBA8e8021FE321af91FC3A08e223EF15908cB2bB/info.json new file mode 100644 index 00000000..2393b758 --- /dev/null +++ b/blockchains/ethereum/assets/0xdBA8e8021FE321af91FC3A08e223EF15908cB2bB/info.json @@ -0,0 +1,11 @@ +{ + "name": "SilverDollar", + "symbol": "SLVD", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdBA8e8021FE321af91FC3A08e223EF15908cB2bB", + "status": "abandoned", + "id": "0xdBA8e8021FE321af91FC3A08e223EF15908cB2bB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdBA8e8021FE321af91FC3A08e223EF15908cB2bB/logo.png b/blockchains/ethereum/assets/0xdBA8e8021FE321af91FC3A08e223EF15908cB2bB/logo.png new file mode 100755 index 00000000..6ee0dc2d Binary files /dev/null and b/blockchains/ethereum/assets/0xdBA8e8021FE321af91FC3A08e223EF15908cB2bB/logo.png differ diff --git a/blockchains/ethereum/assets/0xdBB2F12CB89Af05516768C2c69A771D92A25D17c/info.json b/blockchains/ethereum/assets/0xdBB2F12CB89Af05516768C2c69A771D92A25D17c/info.json new file mode 100644 index 00000000..cb07c687 --- /dev/null +++ b/blockchains/ethereum/assets/0xdBB2F12CB89Af05516768C2c69A771D92A25D17c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Beast DAO", + "website": "https://beast.finance", + "description": "Beast DAO is a decentralized incubator and platform for developers to deploy, and raise capital with cross-chain interoperability.", + "explorer": "https://etherscan.io/token/0xdbb2f12cb89af05516768c2c69a771d92a25d17c", + "type": "ERC20", + "symbol": "BEAST", + "decimals": 18, + "status": "active", + "id": "0xdBB2F12CB89Af05516768C2c69A771D92A25D17c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdBB2F12CB89Af05516768C2c69A771D92A25D17c/logo.png b/blockchains/ethereum/assets/0xdBB2F12CB89Af05516768C2c69A771D92A25D17c/logo.png new file mode 100644 index 00000000..7810652e Binary files /dev/null and b/blockchains/ethereum/assets/0xdBB2F12CB89Af05516768C2c69A771D92A25D17c/logo.png differ diff --git a/blockchains/ethereum/assets/0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa/info.json b/blockchains/ethereum/assets/0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa/info.json new file mode 100644 index 00000000..157b6812 --- /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 00000000..69d770fb 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 00000000..34c2a350 --- /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 00000000..1ba3899b Binary files /dev/null and b/blockchains/ethereum/assets/0xdBDE08d475bd50E2D1A6af34c7b10DD430D8396e/logo.png differ diff --git a/blockchains/ethereum/assets/0xdBDE8e7739CB273Ce5B32Cb5A28d1440E77B00A5/info.json b/blockchains/ethereum/assets/0xdBDE8e7739CB273Ce5B32Cb5A28d1440E77B00A5/info.json new file mode 100644 index 00000000..51b3a36a --- /dev/null +++ b/blockchains/ethereum/assets/0xdBDE8e7739CB273Ce5B32Cb5A28d1440E77B00A5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Relentless", + "symbol": "RLSS", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdBDE8e7739CB273Ce5B32Cb5A28d1440E77B00A5", + "status": "abandoned", + "id": "0xdBDE8e7739CB273Ce5B32Cb5A28d1440E77B00A5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdBDE8e7739CB273Ce5B32Cb5A28d1440E77B00A5/logo.png b/blockchains/ethereum/assets/0xdBDE8e7739CB273Ce5B32Cb5A28d1440E77B00A5/logo.png new file mode 100644 index 00000000..4b4c308f Binary files /dev/null and b/blockchains/ethereum/assets/0xdBDE8e7739CB273Ce5B32Cb5A28d1440E77B00A5/logo.png differ diff --git a/blockchains/ethereum/assets/0xdBee1d8C452c781C17Ea20115CbaD0d5f627a680/info.json b/blockchains/ethereum/assets/0xdBee1d8C452c781C17Ea20115CbaD0d5f627a680/info.json new file mode 100644 index 00000000..a4402d04 --- /dev/null +++ b/blockchains/ethereum/assets/0xdBee1d8C452c781C17Ea20115CbaD0d5f627a680/info.json @@ -0,0 +1,11 @@ +{ + "name": "Strike SXP", + "symbol": "sSXP", + "type": "ERC20", + "decimals": 18, + "description": "Strike Finance collateral cryptocurrency", + "explorer": "https://etherscan.io/token/0xdBee1d8C452c781C17Ea20115CbaD0d5f627a680", + "status": "active", + "id": "0xdBee1d8C452c781C17Ea20115CbaD0d5f627a680", + "website": "https://strike.org" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdBee1d8C452c781C17Ea20115CbaD0d5f627a680/logo.png b/blockchains/ethereum/assets/0xdBee1d8C452c781C17Ea20115CbaD0d5f627a680/logo.png new file mode 100644 index 00000000..759e2462 Binary files /dev/null and b/blockchains/ethereum/assets/0xdBee1d8C452c781C17Ea20115CbaD0d5f627a680/logo.png differ diff --git a/blockchains/ethereum/assets/0xdC035D45d973E3EC169d2276DDab16f1e407384F/info.json b/blockchains/ethereum/assets/0xdC035D45d973E3EC169d2276DDab16f1e407384F/info.json new file mode 100644 index 00000000..bafb50bd --- /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 00000000..69d96d66 Binary files /dev/null and b/blockchains/ethereum/assets/0xdC035D45d973E3EC169d2276DDab16f1e407384F/logo.png differ diff --git a/blockchains/ethereum/assets/0xdC314366CE447c39348Db014ADD5B2b37329f5Be/info.json b/blockchains/ethereum/assets/0xdC314366CE447c39348Db014ADD5B2b37329f5Be/info.json new file mode 100644 index 00000000..02f891e2 --- /dev/null +++ b/blockchains/ethereum/assets/0xdC314366CE447c39348Db014ADD5B2b37329f5Be/info.json @@ -0,0 +1,11 @@ +{ + "name": "NOVUS1", + "symbol": "NVS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdC314366CE447c39348Db014ADD5B2b37329f5Be", + "status": "abandoned", + "id": "0xdC314366CE447c39348Db014ADD5B2b37329f5Be" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdC314366CE447c39348Db014ADD5B2b37329f5Be/logo.png b/blockchains/ethereum/assets/0xdC314366CE447c39348Db014ADD5B2b37329f5Be/logo.png new file mode 100644 index 00000000..a38f5a84 Binary files /dev/null and b/blockchains/ethereum/assets/0xdC314366CE447c39348Db014ADD5B2b37329f5Be/logo.png differ diff --git a/blockchains/ethereum/assets/0xdC3c4f132FEA66947CfDd57e287c1fbb94252677/info.json b/blockchains/ethereum/assets/0xdC3c4f132FEA66947CfDd57e287c1fbb94252677/info.json new file mode 100644 index 00000000..3932254a --- /dev/null +++ b/blockchains/ethereum/assets/0xdC3c4f132FEA66947CfDd57e287c1fbb94252677/info.json @@ -0,0 +1,11 @@ +{ + "name": "MissionBoss", + "symbol": "MOB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdC3c4f132FEA66947CfDd57e287c1fbb94252677", + "status": "abandoned", + "id": "0xdC3c4f132FEA66947CfDd57e287c1fbb94252677" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdC3c4f132FEA66947CfDd57e287c1fbb94252677/logo.png b/blockchains/ethereum/assets/0xdC3c4f132FEA66947CfDd57e287c1fbb94252677/logo.png new file mode 100644 index 00000000..197e6a28 Binary files /dev/null and b/blockchains/ethereum/assets/0xdC3c4f132FEA66947CfDd57e287c1fbb94252677/logo.png differ diff --git a/blockchains/ethereum/assets/0xdC5938384Ae01489C5C8D071706E90dd42E33427/info.json b/blockchains/ethereum/assets/0xdC5938384Ae01489C5C8D071706E90dd42E33427/info.json new file mode 100644 index 00000000..f8bdf6e0 --- /dev/null +++ b/blockchains/ethereum/assets/0xdC5938384Ae01489C5C8D071706E90dd42E33427/info.json @@ -0,0 +1,11 @@ +{ + "name": "Luna", + "symbol": "LUNA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdC5938384Ae01489C5C8D071706E90dd42E33427", + "status": "abandoned", + "id": "0xdC5938384Ae01489C5C8D071706E90dd42E33427" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdC5938384Ae01489C5C8D071706E90dd42E33427/logo.png b/blockchains/ethereum/assets/0xdC5938384Ae01489C5C8D071706E90dd42E33427/logo.png new file mode 100644 index 00000000..5968814b Binary files /dev/null and b/blockchains/ethereum/assets/0xdC5938384Ae01489C5C8D071706E90dd42E33427/logo.png differ diff --git a/blockchains/ethereum/assets/0xdCAad9Fd9a74144d226DbF94ce6162ca9f09ED7e/info.json b/blockchains/ethereum/assets/0xdCAad9Fd9a74144d226DbF94ce6162ca9f09ED7e/info.json new file mode 100644 index 00000000..c3e6c770 --- /dev/null +++ b/blockchains/ethereum/assets/0xdCAad9Fd9a74144d226DbF94ce6162ca9f09ED7e/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoStrikers", + "symbol": "STRK", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdCAad9Fd9a74144d226DbF94ce6162ca9f09ED7e", + "status": "abandoned", + "id": "0xdCAad9Fd9a74144d226DbF94ce6162ca9f09ED7e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdCAad9Fd9a74144d226DbF94ce6162ca9f09ED7e/logo.png b/blockchains/ethereum/assets/0xdCAad9Fd9a74144d226DbF94ce6162ca9f09ED7e/logo.png new file mode 100755 index 00000000..b4ef3300 Binary files /dev/null and b/blockchains/ethereum/assets/0xdCAad9Fd9a74144d226DbF94ce6162ca9f09ED7e/logo.png differ diff --git a/blockchains/ethereum/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json b/blockchains/ethereum/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json new file mode 100644 index 00000000..8a5b762e --- /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 00000000..448e7266 Binary files /dev/null and b/blockchains/ethereum/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/logo.png differ diff --git a/blockchains/ethereum/assets/0xdCCCdE236b35676ba945D27f93986050197D1e14/info.json b/blockchains/ethereum/assets/0xdCCCdE236b35676ba945D27f93986050197D1e14/info.json new file mode 100644 index 00000000..a194fb9a --- /dev/null +++ b/blockchains/ethereum/assets/0xdCCCdE236b35676ba945D27f93986050197D1e14/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zivio", + "symbol": "ZIO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdCCCdE236b35676ba945D27f93986050197D1e14", + "status": "abandoned", + "id": "0xdCCCdE236b35676ba945D27f93986050197D1e14" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdCCCdE236b35676ba945D27f93986050197D1e14/logo.png b/blockchains/ethereum/assets/0xdCCCdE236b35676ba945D27f93986050197D1e14/logo.png new file mode 100644 index 00000000..02b73e60 Binary files /dev/null and b/blockchains/ethereum/assets/0xdCCCdE236b35676ba945D27f93986050197D1e14/logo.png differ diff --git a/blockchains/ethereum/assets/0xdD349046eE302f843dEAbc61e3618Ab48eC19F5F/info.json b/blockchains/ethereum/assets/0xdD349046eE302f843dEAbc61e3618Ab48eC19F5F/info.json new file mode 100644 index 00000000..0809043a --- /dev/null +++ b/blockchains/ethereum/assets/0xdD349046eE302f843dEAbc61e3618Ab48eC19F5F/info.json @@ -0,0 +1,11 @@ +{ + "name": "DarkBlueChain", + "symbol": "DBCH", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdD349046eE302f843dEAbc61e3618Ab48eC19F5F", + "status": "abandoned", + "id": "0xdD349046eE302f843dEAbc61e3618Ab48eC19F5F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdD349046eE302f843dEAbc61e3618Ab48eC19F5F/logo.png b/blockchains/ethereum/assets/0xdD349046eE302f843dEAbc61e3618Ab48eC19F5F/logo.png new file mode 100644 index 00000000..a2ed4697 Binary files /dev/null and b/blockchains/ethereum/assets/0xdD349046eE302f843dEAbc61e3618Ab48eC19F5F/logo.png differ diff --git a/blockchains/ethereum/assets/0xdD41fBd1Ae95C5D9B198174A28e04Be6b3d1aa27/info.json b/blockchains/ethereum/assets/0xdD41fBd1Ae95C5D9B198174A28e04Be6b3d1aa27/info.json new file mode 100644 index 00000000..0ebbf419 --- /dev/null +++ b/blockchains/ethereum/assets/0xdD41fBd1Ae95C5D9B198174A28e04Be6b3d1aa27/info.json @@ -0,0 +1,11 @@ +{ + "name": "LIGHTYEARS", + "symbol": "LYS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdD41fBd1Ae95C5D9B198174A28e04Be6b3d1aa27", + "status": "abandoned", + "id": "0xdD41fBd1Ae95C5D9B198174A28e04Be6b3d1aa27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdD41fBd1Ae95C5D9B198174A28e04Be6b3d1aa27/logo.png b/blockchains/ethereum/assets/0xdD41fBd1Ae95C5D9B198174A28e04Be6b3d1aa27/logo.png new file mode 100755 index 00000000..785dea2a Binary files /dev/null and b/blockchains/ethereum/assets/0xdD41fBd1Ae95C5D9B198174A28e04Be6b3d1aa27/logo.png differ diff --git a/blockchains/ethereum/assets/0xdD6Bf56CA2ada24c683FAC50E37783e55B57AF9F/info.json b/blockchains/ethereum/assets/0xdD6Bf56CA2ada24c683FAC50E37783e55B57AF9F/info.json new file mode 100644 index 00000000..5f33ce86 --- /dev/null +++ b/blockchains/ethereum/assets/0xdD6Bf56CA2ada24c683FAC50E37783e55B57AF9F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Brave New Coin", + "symbol": "BNC", + "type": "ERC20", + "decimals": 12, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdD6Bf56CA2ada24c683FAC50E37783e55B57AF9F", + "status": "abandoned", + "id": "0xdD6Bf56CA2ada24c683FAC50E37783e55B57AF9F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdD6Bf56CA2ada24c683FAC50E37783e55B57AF9F/logo.png b/blockchains/ethereum/assets/0xdD6Bf56CA2ada24c683FAC50E37783e55B57AF9F/logo.png new file mode 100644 index 00000000..65c4a6c1 Binary files /dev/null and b/blockchains/ethereum/assets/0xdD6Bf56CA2ada24c683FAC50E37783e55B57AF9F/logo.png differ diff --git a/blockchains/ethereum/assets/0xdD7790EF5E928E683a79B2A1F49Bd9F0a5c6dAa8/info.json b/blockchains/ethereum/assets/0xdD7790EF5E928E683a79B2A1F49Bd9F0a5c6dAa8/info.json new file mode 100644 index 00000000..793c9332 --- /dev/null +++ b/blockchains/ethereum/assets/0xdD7790EF5E928E683a79B2A1F49Bd9F0a5c6dAa8/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoAlphaToken", + "symbol": "CAL", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdD7790EF5E928E683a79B2A1F49Bd9F0a5c6dAa8", + "status": "abandoned", + "id": "0xdD7790EF5E928E683a79B2A1F49Bd9F0a5c6dAa8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdD7790EF5E928E683a79B2A1F49Bd9F0a5c6dAa8/logo.png b/blockchains/ethereum/assets/0xdD7790EF5E928E683a79B2A1F49Bd9F0a5c6dAa8/logo.png new file mode 100644 index 00000000..d67e2671 Binary files /dev/null and b/blockchains/ethereum/assets/0xdD7790EF5E928E683a79B2A1F49Bd9F0a5c6dAa8/logo.png differ diff --git a/blockchains/ethereum/assets/0xdD94842C15abfe4c9bAFE4222adE02896Beb064c/info.json b/blockchains/ethereum/assets/0xdD94842C15abfe4c9bAFE4222adE02896Beb064c/info.json new file mode 100644 index 00000000..d9679d1b --- /dev/null +++ b/blockchains/ethereum/assets/0xdD94842C15abfe4c9bAFE4222adE02896Beb064c/info.json @@ -0,0 +1,11 @@ +{ + "name": "W GREEN PAY", + "symbol": "WGP", + "type": "ERC20", + "decimals": 18, + "description": "W-Foundation leverages blockchain to promote environmental sustainability through its HOOXI mobile application, which is a gamified mobile social network service that encourages the public to reduce greenhouse gas emissions.", + "website": "http://wpay.sg/", + "explorer": "https://etherscan.io/token/0xdD94842C15abfe4c9bAFE4222adE02896Beb064c", + "status": "active", + "id": "0xdD94842C15abfe4c9bAFE4222adE02896Beb064c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdD94842C15abfe4c9bAFE4222adE02896Beb064c/logo.png b/blockchains/ethereum/assets/0xdD94842C15abfe4c9bAFE4222adE02896Beb064c/logo.png new file mode 100644 index 00000000..85300092 Binary files /dev/null and b/blockchains/ethereum/assets/0xdD94842C15abfe4c9bAFE4222adE02896Beb064c/logo.png differ diff --git a/blockchains/ethereum/assets/0xdDAaf4A0702a03A4505F2352a1abA001fFc344be/info.json b/blockchains/ethereum/assets/0xdDAaf4A0702a03A4505F2352a1abA001fFc344be/info.json new file mode 100644 index 00000000..02271e00 --- /dev/null +++ b/blockchains/ethereum/assets/0xdDAaf4A0702a03A4505F2352a1abA001fFc344be/info.json @@ -0,0 +1,11 @@ +{ + "name": "ATCCOIN", + "symbol": "ATCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdDAaf4A0702a03A4505F2352a1abA001fFc344be", + "status": "active", + "id": "0xdDAaf4A0702a03A4505F2352a1abA001fFc344be" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdDAaf4A0702a03A4505F2352a1abA001fFc344be/logo.png b/blockchains/ethereum/assets/0xdDAaf4A0702a03A4505F2352a1abA001fFc344be/logo.png new file mode 100644 index 00000000..90601b26 Binary files /dev/null and b/blockchains/ethereum/assets/0xdDAaf4A0702a03A4505F2352a1abA001fFc344be/logo.png differ diff --git a/blockchains/ethereum/assets/0xdE1289e68aD9e65Ccf50D800C0CEC2D514B80A40/info.json b/blockchains/ethereum/assets/0xdE1289e68aD9e65Ccf50D800C0CEC2D514B80A40/info.json new file mode 100644 index 00000000..4e6e4bdc --- /dev/null +++ b/blockchains/ethereum/assets/0xdE1289e68aD9e65Ccf50D800C0CEC2D514B80A40/info.json @@ -0,0 +1,11 @@ +{ + "name": "Krios Token", + "symbol": "KRI", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.krios.io/", + "explorer": "https://etherscan.io/token/0xdE1289e68aD9e65Ccf50D800C0CEC2D514B80A40", + "status": "abandoned", + "id": "0xdE1289e68aD9e65Ccf50D800C0CEC2D514B80A40" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdE1289e68aD9e65Ccf50D800C0CEC2D514B80A40/logo.png b/blockchains/ethereum/assets/0xdE1289e68aD9e65Ccf50D800C0CEC2D514B80A40/logo.png new file mode 100644 index 00000000..bc444296 Binary files /dev/null and b/blockchains/ethereum/assets/0xdE1289e68aD9e65Ccf50D800C0CEC2D514B80A40/logo.png differ diff --git a/blockchains/ethereum/assets/0xdE522a2778E4554707E6a8Df36a4871ce9967BB5/info.json b/blockchains/ethereum/assets/0xdE522a2778E4554707E6a8Df36a4871ce9967BB5/info.json new file mode 100644 index 00000000..e1900955 --- /dev/null +++ b/blockchains/ethereum/assets/0xdE522a2778E4554707E6a8Df36a4871ce9967BB5/info.json @@ -0,0 +1,11 @@ +{ + "name": "FormulA", + "symbol": "FML", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://fml-x.org/", + "explorer": "https://etherscan.io/token/0xdE522a2778E4554707E6a8Df36a4871ce9967BB5", + "status": "abandoned", + "id": "0xdE522a2778E4554707E6a8Df36a4871ce9967BB5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdE522a2778E4554707E6a8Df36a4871ce9967BB5/logo.png b/blockchains/ethereum/assets/0xdE522a2778E4554707E6a8Df36a4871ce9967BB5/logo.png new file mode 100644 index 00000000..a2efba3e Binary files /dev/null and b/blockchains/ethereum/assets/0xdE522a2778E4554707E6a8Df36a4871ce9967BB5/logo.png differ diff --git a/blockchains/ethereum/assets/0xdEb3C23f93349229823A006657CfE1a6552B6340/info.json b/blockchains/ethereum/assets/0xdEb3C23f93349229823A006657CfE1a6552B6340/info.json new file mode 100644 index 00000000..3458e617 --- /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 00000000..b9a1bc9b Binary files /dev/null and b/blockchains/ethereum/assets/0xdEb3C23f93349229823A006657CfE1a6552B6340/logo.png differ diff --git a/blockchains/ethereum/assets/0xdEcad07BCba1A655D908307617d7Cc48e6228B99/info.json b/blockchains/ethereum/assets/0xdEcad07BCba1A655D908307617d7Cc48e6228B99/info.json new file mode 100644 index 00000000..db4d84e1 --- /dev/null +++ b/blockchains/ethereum/assets/0xdEcad07BCba1A655D908307617d7Cc48e6228B99/info.json @@ -0,0 +1,11 @@ +{ + "name": "TPS+", + "symbol": "TPS+", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdEcad07BCba1A655D908307617d7Cc48e6228B99", + "status": "abandoned", + "id": "0xdEcad07BCba1A655D908307617d7Cc48e6228B99" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdEcad07BCba1A655D908307617d7Cc48e6228B99/logo.png b/blockchains/ethereum/assets/0xdEcad07BCba1A655D908307617d7Cc48e6228B99/logo.png new file mode 100644 index 00000000..87a70a23 Binary files /dev/null and b/blockchains/ethereum/assets/0xdEcad07BCba1A655D908307617d7Cc48e6228B99/logo.png differ diff --git a/blockchains/ethereum/assets/0xdF1D6405df92d981a2fB3ce68F6A03baC6C0E41F/info.json b/blockchains/ethereum/assets/0xdF1D6405df92d981a2fB3ce68F6A03baC6C0E41F/info.json new file mode 100644 index 00000000..78cd7811 --- /dev/null +++ b/blockchains/ethereum/assets/0xdF1D6405df92d981a2fB3ce68F6A03baC6C0E41F/info.json @@ -0,0 +1,11 @@ +{ + "name": "VRA (old ERC-20)", + "symbol": "VRA", + "type": "ERC20", + "decimals": 18, + "description": "Verasity", + "website": "https://verasity.io", + "explorer": "https://etherscan.io/token/0xdF1D6405df92d981a2fB3ce68F6A03baC6C0E41F", + "status": "abandoned", + "id": "0xdF1D6405df92d981a2fB3ce68F6A03baC6C0E41F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdF1D6405df92d981a2fB3ce68F6A03baC6C0E41F/logo.png b/blockchains/ethereum/assets/0xdF1D6405df92d981a2fB3ce68F6A03baC6C0E41F/logo.png new file mode 100644 index 00000000..77946622 Binary files /dev/null and b/blockchains/ethereum/assets/0xdF1D6405df92d981a2fB3ce68F6A03baC6C0E41F/logo.png differ diff --git a/blockchains/ethereum/assets/0xdF1d11025F2A22b9DC01C7A100B4F6DdEBAc82A3/info.json b/blockchains/ethereum/assets/0xdF1d11025F2A22b9DC01C7A100B4F6DdEBAc82A3/info.json new file mode 100644 index 00000000..e12b7ca2 --- /dev/null +++ b/blockchains/ethereum/assets/0xdF1d11025F2A22b9DC01C7A100B4F6DdEBAc82A3/info.json @@ -0,0 +1,11 @@ +{ + "name": "AirDance", + "symbol": "DANCE", + "type": "ERC20", + "decimals": 2, + "description": "AirDance's mission is to develop and promote dance globally, providing online access to the knowledge and experience of legendary dancers of our time.", + "website": "http://airdance.live/en/", + "explorer": "https://etherscan.io/token/0xdF1d11025F2A22b9DC01C7A100B4F6DdEBAc82A3", + "status": "active", + "id": "0xdF1d11025F2A22b9DC01C7A100B4F6DdEBAc82A3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdF1d11025F2A22b9DC01C7A100B4F6DdEBAc82A3/logo.png b/blockchains/ethereum/assets/0xdF1d11025F2A22b9DC01C7A100B4F6DdEBAc82A3/logo.png new file mode 100644 index 00000000..7a304003 Binary files /dev/null and b/blockchains/ethereum/assets/0xdF1d11025F2A22b9DC01C7A100B4F6DdEBAc82A3/logo.png differ diff --git a/blockchains/ethereum/assets/0xdF30C7f5B368c0e251754E5DC50FBf91C5Dfa479/info.json b/blockchains/ethereum/assets/0xdF30C7f5B368c0e251754E5DC50FBf91C5Dfa479/info.json new file mode 100644 index 00000000..1d3b329b --- /dev/null +++ b/blockchains/ethereum/assets/0xdF30C7f5B368c0e251754E5DC50FBf91C5Dfa479/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tyche Chip", + "symbol": "TCH", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdF30C7f5B368c0e251754E5DC50FBf91C5Dfa479", + "status": "abandoned", + "id": "0xdF30C7f5B368c0e251754E5DC50FBf91C5Dfa479" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdF30C7f5B368c0e251754E5DC50FBf91C5Dfa479/logo.png b/blockchains/ethereum/assets/0xdF30C7f5B368c0e251754E5DC50FBf91C5Dfa479/logo.png new file mode 100644 index 00000000..db60e41f Binary files /dev/null and b/blockchains/ethereum/assets/0xdF30C7f5B368c0e251754E5DC50FBf91C5Dfa479/logo.png differ diff --git a/blockchains/ethereum/assets/0xdF44A80c17813789f60090638827aEb23698B122/info.json b/blockchains/ethereum/assets/0xdF44A80c17813789f60090638827aEb23698B122/info.json new file mode 100644 index 00000000..783ef465 --- /dev/null +++ b/blockchains/ethereum/assets/0xdF44A80c17813789f60090638827aEb23698B122/info.json @@ -0,0 +1,11 @@ +{ + "name": "stableDEX", + "symbol": "STDEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdF44A80c17813789f60090638827aEb23698B122", + "status": "abandoned", + "id": "0xdF44A80c17813789f60090638827aEb23698B122" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdF44A80c17813789f60090638827aEb23698B122/logo.png b/blockchains/ethereum/assets/0xdF44A80c17813789f60090638827aEb23698B122/logo.png new file mode 100644 index 00000000..f50874c8 Binary files /dev/null and b/blockchains/ethereum/assets/0xdF44A80c17813789f60090638827aEb23698B122/logo.png differ diff --git a/blockchains/ethereum/assets/0xdF508b47D277C9469cB29f0791Fe3b784a60CFC2/info.json b/blockchains/ethereum/assets/0xdF508b47D277C9469cB29f0791Fe3b784a60CFC2/info.json new file mode 100644 index 00000000..0bea5827 --- /dev/null +++ b/blockchains/ethereum/assets/0xdF508b47D277C9469cB29f0791Fe3b784a60CFC2/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITDOLLAR", + "symbol": "BTD", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdF508b47D277C9469cB29f0791Fe3b784a60CFC2", + "status": "abandoned", + "id": "0xdF508b47D277C9469cB29f0791Fe3b784a60CFC2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdF508b47D277C9469cB29f0791Fe3b784a60CFC2/logo.png b/blockchains/ethereum/assets/0xdF508b47D277C9469cB29f0791Fe3b784a60CFC2/logo.png new file mode 100755 index 00000000..101c0841 Binary files /dev/null and b/blockchains/ethereum/assets/0xdF508b47D277C9469cB29f0791Fe3b784a60CFC2/logo.png differ diff --git a/blockchains/ethereum/assets/0xdF574c24545E5FfEcb9a659c229253D4111d87e1/info.json b/blockchains/ethereum/assets/0xdF574c24545E5FfEcb9a659c229253D4111d87e1/info.json new file mode 100644 index 00000000..60552696 --- /dev/null +++ b/blockchains/ethereum/assets/0xdF574c24545E5FfEcb9a659c229253D4111d87e1/info.json @@ -0,0 +1,32 @@ +{ + "name": "HUSD", + "symbol": "HUSD", + "type": "ERC20", + "decimals": 8, + "description": "The Safe and Secure Stablecoin.", + "website": "https://www.stcoins.com", + "explorer": "https://etherscan.io/token/0xdF574c24545E5FfEcb9a659c229253D4111d87e1", + "status": "active", + "id": "0xdF574c24545E5FfEcb9a659c229253D4111d87e1", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/stcoins/HUSD" + }, + { + "name": "x", + "url": "https://x.com/Stablecoin_HUSD" + }, + { + "name": "blog", + "url": "https://medium.com/@Stablecoin_HUSD" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/husd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdF574c24545E5FfEcb9a659c229253D4111d87e1/logo.png b/blockchains/ethereum/assets/0xdF574c24545E5FfEcb9a659c229253D4111d87e1/logo.png new file mode 100644 index 00000000..ef49cb21 Binary files /dev/null and b/blockchains/ethereum/assets/0xdF574c24545E5FfEcb9a659c229253D4111d87e1/logo.png differ diff --git a/blockchains/ethereum/assets/0xdF6D916F89936d67543998E03dB40d79870bE41E/info.json b/blockchains/ethereum/assets/0xdF6D916F89936d67543998E03dB40d79870bE41E/info.json new file mode 100644 index 00000000..94aae656 --- /dev/null +++ b/blockchains/ethereum/assets/0xdF6D916F89936d67543998E03dB40d79870bE41E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptocurrency 50 Index", + "symbol": "C50", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdF6D916F89936d67543998E03dB40d79870bE41E", + "status": "abandoned", + "id": "0xdF6D916F89936d67543998E03dB40d79870bE41E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdF6D916F89936d67543998E03dB40d79870bE41E/logo.png b/blockchains/ethereum/assets/0xdF6D916F89936d67543998E03dB40d79870bE41E/logo.png new file mode 100644 index 00000000..899146d4 Binary files /dev/null and b/blockchains/ethereum/assets/0xdF6D916F89936d67543998E03dB40d79870bE41E/logo.png differ diff --git a/blockchains/ethereum/assets/0xdF9307DFf0a1B57660F60f9457D32027a55ca0B2/info.json b/blockchains/ethereum/assets/0xdF9307DFf0a1B57660F60f9457D32027a55ca0B2/info.json new file mode 100644 index 00000000..daf00a0a --- /dev/null +++ b/blockchains/ethereum/assets/0xdF9307DFf0a1B57660F60f9457D32027a55ca0B2/info.json @@ -0,0 +1,11 @@ +{ + "name": "DMM: ETH", + "symbol": "mETH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdF9307DFf0a1B57660F60f9457D32027a55ca0B2", + "status": "abandoned", + "id": "0xdF9307DFf0a1B57660F60f9457D32027a55ca0B2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdF9307DFf0a1B57660F60f9457D32027a55ca0B2/logo.png b/blockchains/ethereum/assets/0xdF9307DFf0a1B57660F60f9457D32027a55ca0B2/logo.png new file mode 100644 index 00000000..9278a73e Binary files /dev/null and b/blockchains/ethereum/assets/0xdF9307DFf0a1B57660F60f9457D32027a55ca0B2/logo.png differ diff --git a/blockchains/ethereum/assets/0xda038eFdada1112992d2E7f4e14e44DE47eb2C7C/info.json b/blockchains/ethereum/assets/0xda038eFdada1112992d2E7f4e14e44DE47eb2C7C/info.json new file mode 100644 index 00000000..b2f3d602 --- /dev/null +++ b/blockchains/ethereum/assets/0xda038eFdada1112992d2E7f4e14e44DE47eb2C7C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Monkash", + "symbol": "MKS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xda038eFdada1112992d2E7f4e14e44DE47eb2C7C", + "status": "abandoned", + "id": "0xda038eFdada1112992d2E7f4e14e44DE47eb2C7C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xda038eFdada1112992d2E7f4e14e44DE47eb2C7C/logo.png b/blockchains/ethereum/assets/0xda038eFdada1112992d2E7f4e14e44DE47eb2C7C/logo.png new file mode 100644 index 00000000..27443777 Binary files /dev/null and b/blockchains/ethereum/assets/0xda038eFdada1112992d2E7f4e14e44DE47eb2C7C/logo.png differ diff --git a/blockchains/ethereum/assets/0xda6bAE24e98dB8Ec03151d5Edcf9aDe67e442B6D/info.json b/blockchains/ethereum/assets/0xda6bAE24e98dB8Ec03151d5Edcf9aDe67e442B6D/info.json new file mode 100644 index 00000000..cdeaabc6 --- /dev/null +++ b/blockchains/ethereum/assets/0xda6bAE24e98dB8Ec03151d5Edcf9aDe67e442B6D/info.json @@ -0,0 +1,11 @@ +{ + "name": "StealthCrypto", + "symbol": "QMN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xda6bAE24e98dB8Ec03151d5Edcf9aDe67e442B6D", + "status": "abandoned", + "id": "0xda6bAE24e98dB8Ec03151d5Edcf9aDe67e442B6D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xda6bAE24e98dB8Ec03151d5Edcf9aDe67e442B6D/logo.png b/blockchains/ethereum/assets/0xda6bAE24e98dB8Ec03151d5Edcf9aDe67e442B6D/logo.png new file mode 100644 index 00000000..5ef8f9fc Binary files /dev/null and b/blockchains/ethereum/assets/0xda6bAE24e98dB8Ec03151d5Edcf9aDe67e442B6D/logo.png differ diff --git a/blockchains/ethereum/assets/0xdaE1Baf249964bc4b6aC98c3122f0e3E785fd279/info.json b/blockchains/ethereum/assets/0xdaE1Baf249964bc4b6aC98c3122f0e3E785fd279/info.json new file mode 100644 index 00000000..05370fba --- /dev/null +++ b/blockchains/ethereum/assets/0xdaE1Baf249964bc4b6aC98c3122f0e3E785fd279/info.json @@ -0,0 +1,11 @@ +{ + "name": "TokiaToken", + "symbol": "TKA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdaE1Baf249964bc4b6aC98c3122f0e3E785fd279", + "status": "abandoned", + "id": "0xdaE1Baf249964bc4b6aC98c3122f0e3E785fd279" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdaE1Baf249964bc4b6aC98c3122f0e3E785fd279/logo.png b/blockchains/ethereum/assets/0xdaE1Baf249964bc4b6aC98c3122f0e3E785fd279/logo.png new file mode 100755 index 00000000..2e64075d Binary files /dev/null and b/blockchains/ethereum/assets/0xdaE1Baf249964bc4b6aC98c3122f0e3E785fd279/logo.png differ diff --git a/blockchains/ethereum/assets/0xdaaDdd808EBC16f7bfCc62f09cf7231f26d8ea4A/info.json b/blockchains/ethereum/assets/0xdaaDdd808EBC16f7bfCc62f09cf7231f26d8ea4A/info.json new file mode 100644 index 00000000..617bb360 --- /dev/null +++ b/blockchains/ethereum/assets/0xdaaDdd808EBC16f7bfCc62f09cf7231f26d8ea4A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hip Hop Coin", + "symbol": "HHC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdaaDdd808EBC16f7bfCc62f09cf7231f26d8ea4A", + "status": "abandoned", + "id": "0xdaaDdd808EBC16f7bfCc62f09cf7231f26d8ea4A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdaaDdd808EBC16f7bfCc62f09cf7231f26d8ea4A/logo.png b/blockchains/ethereum/assets/0xdaaDdd808EBC16f7bfCc62f09cf7231f26d8ea4A/logo.png new file mode 100644 index 00000000..115440de Binary files /dev/null and b/blockchains/ethereum/assets/0xdaaDdd808EBC16f7bfCc62f09cf7231f26d8ea4A/logo.png differ diff --git a/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/info.json b/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/info.json new file mode 100644 index 00000000..47e03e5d --- /dev/null +++ b/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/info.json @@ -0,0 +1,28 @@ +{ + "name": "Goldfinch", + "type": "ERC20", + "symbol": "GFI", + "decimals": 18, + "website": "https://goldfinch.finance/", + "description": "Connect the world’s capital with the world’s growth.", + "explorer": "https://etherscan.io/token/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b", + "status": "active", + "id": "0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b", + "links": [ + { + "name": "x", + "url": "https://x.com/goldfinch_fi" + }, + { + "name": "github", + "url": "https://github.com/goldfinch-eng" + }, + { + "name": "forum", + "url": "https://gov.goldfinch.finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/logo.png b/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/logo.png new file mode 100644 index 00000000..81b5b64e Binary files /dev/null and b/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/logo.png differ diff --git a/blockchains/ethereum/assets/0xdacD69347dE42baBfAEcD09dC88958378780FB62/info.json b/blockchains/ethereum/assets/0xdacD69347dE42baBfAEcD09dC88958378780FB62/info.json new file mode 100644 index 00000000..9384a29b --- /dev/null +++ b/blockchains/ethereum/assets/0xdacD69347dE42baBfAEcD09dC88958378780FB62/info.json @@ -0,0 +1,11 @@ +{ + "name": "Atari Token", + "website": "https://atarichain.com", + "description": "It was designed by Atari Chain Ltd. — a subsidiary of the video game and consumer electronics firm Atari Interactive — specifically for the needs of the interactive entertainment industry.", + "explorer": "https://etherscan.io/token/0xdacD69347dE42baBfAEcD09dC88958378780FB62", + "type": "ERC20", + "symbol": "ATRI", + "decimals": 0, + "status": "active", + "id": "0xdacD69347dE42baBfAEcD09dC88958378780FB62" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdacD69347dE42baBfAEcD09dC88958378780FB62/logo.png b/blockchains/ethereum/assets/0xdacD69347dE42baBfAEcD09dC88958378780FB62/logo.png new file mode 100644 index 00000000..f024e471 Binary files /dev/null and b/blockchains/ethereum/assets/0xdacD69347dE42baBfAEcD09dC88958378780FB62/logo.png differ diff --git a/blockchains/ethereum/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/info.json b/blockchains/ethereum/assets/0xdadfb355c6110eda0908740d52c834d6C2BCDDc7/info.json new file mode 100644 index 00000000..756ce522 --- /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 00000000..857fe690 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 00000000..183abc96 --- /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 00000000..179b22a7 Binary files /dev/null and b/blockchains/ethereum/assets/0xdb0482cfaD4789798623E64b15eebA01b16e917C/logo.png differ diff --git a/blockchains/ethereum/assets/0xdb0F69306FF8F949f258E83f6b87ee5D052d0b23/info.json b/blockchains/ethereum/assets/0xdb0F69306FF8F949f258E83f6b87ee5D052d0b23/info.json new file mode 100644 index 00000000..841f4e90 --- /dev/null +++ b/blockchains/ethereum/assets/0xdb0F69306FF8F949f258E83f6b87ee5D052d0b23/info.json @@ -0,0 +1,11 @@ +{ + "name": "GlobCoin Crypto Platform", + "symbol": "GCP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://globcoin.io", + "explorer": "https://etherscan.io/token/0xdb0F69306FF8F949f258E83f6b87ee5D052d0b23", + "status": "abandoned", + "id": "0xdb0F69306FF8F949f258E83f6b87ee5D052d0b23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdb0F69306FF8F949f258E83f6b87ee5D052d0b23/logo.png b/blockchains/ethereum/assets/0xdb0F69306FF8F949f258E83f6b87ee5D052d0b23/logo.png new file mode 100755 index 00000000..821fa3fc Binary files /dev/null and b/blockchains/ethereum/assets/0xdb0F69306FF8F949f258E83f6b87ee5D052d0b23/logo.png differ diff --git a/blockchains/ethereum/assets/0xdb0aCC14396D108b3C5574483aCB817855C9dc8d/info.json b/blockchains/ethereum/assets/0xdb0aCC14396D108b3C5574483aCB817855C9dc8d/info.json new file mode 100644 index 00000000..1860e2cc --- /dev/null +++ b/blockchains/ethereum/assets/0xdb0aCC14396D108b3C5574483aCB817855C9dc8d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Emblem (EMB)", + "type": "ERC20", + "symbol": "EMB", + "decimals": 8, + "website": "https://overline.network", + "description": "Overline is a protocol designed to foster innovation by connecting blockchain technologies with liquidity and interoperability. Overline is built on top of a unique proof-of-work algorithm called “Proof-of-Distance” and uses mining hash power from it’s network to build a \"blockchain of blockchains”, or multichain, by weaving together the states of all connected blockchain networks and recording this information into a single immutable ledger.", + "explorer": "https://etherscan.io/token/0xdb0acc14396d108b3c5574483acb817855c9dc8d", + "status": "active", + "id": "0xdb0aCC14396D108b3C5574483aCB817855C9dc8d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdb0aCC14396D108b3C5574483aCB817855C9dc8d/logo.png b/blockchains/ethereum/assets/0xdb0aCC14396D108b3C5574483aCB817855C9dc8d/logo.png new file mode 100644 index 00000000..7954f328 Binary files /dev/null and b/blockchains/ethereum/assets/0xdb0aCC14396D108b3C5574483aCB817855C9dc8d/logo.png differ diff --git a/blockchains/ethereum/assets/0xdb352e55DaAd68B632554410F2D392263fF22b06/info.json b/blockchains/ethereum/assets/0xdb352e55DaAd68B632554410F2D392263fF22b06/info.json new file mode 100644 index 00000000..0b05efb9 --- /dev/null +++ b/blockchains/ethereum/assets/0xdb352e55DaAd68B632554410F2D392263fF22b06/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlockRock", + "symbol": "BR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdb352e55DaAd68B632554410F2D392263fF22b06", + "status": "abandoned", + "id": "0xdb352e55DaAd68B632554410F2D392263fF22b06" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdb352e55DaAd68B632554410F2D392263fF22b06/logo.png b/blockchains/ethereum/assets/0xdb352e55DaAd68B632554410F2D392263fF22b06/logo.png new file mode 100644 index 00000000..13920e9a Binary files /dev/null and b/blockchains/ethereum/assets/0xdb352e55DaAd68B632554410F2D392263fF22b06/logo.png differ diff --git a/blockchains/ethereum/assets/0xdb455c71C1bC2de4e80cA451184041Ef32054001/info.json b/blockchains/ethereum/assets/0xdb455c71C1bC2de4e80cA451184041Ef32054001/info.json new file mode 100644 index 00000000..0ac6fce9 --- /dev/null +++ b/blockchains/ethereum/assets/0xdb455c71C1bC2de4e80cA451184041Ef32054001/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jury.Online Token", + "symbol": "JOT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdb455c71C1bC2de4e80cA451184041Ef32054001", + "status": "abandoned", + "id": "0xdb455c71C1bC2de4e80cA451184041Ef32054001" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdb455c71C1bC2de4e80cA451184041Ef32054001/logo.png b/blockchains/ethereum/assets/0xdb455c71C1bC2de4e80cA451184041Ef32054001/logo.png new file mode 100644 index 00000000..29139548 Binary files /dev/null and b/blockchains/ethereum/assets/0xdb455c71C1bC2de4e80cA451184041Ef32054001/logo.png differ diff --git a/blockchains/ethereum/assets/0xdb4837C9d84315ABCDE80A865f15178F86DB3966/info.json b/blockchains/ethereum/assets/0xdb4837C9d84315ABCDE80A865f15178F86DB3966/info.json new file mode 100644 index 00000000..eae74be7 --- /dev/null +++ b/blockchains/ethereum/assets/0xdb4837C9d84315ABCDE80A865f15178F86DB3966/info.json @@ -0,0 +1,11 @@ +{ + "name": "LOCKEDiN", + "symbol": "LCK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdb4837C9d84315ABCDE80A865f15178F86DB3966", + "status": "abandoned", + "id": "0xdb4837C9d84315ABCDE80A865f15178F86DB3966" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdb4837C9d84315ABCDE80A865f15178F86DB3966/logo.png b/blockchains/ethereum/assets/0xdb4837C9d84315ABCDE80A865f15178F86DB3966/logo.png new file mode 100755 index 00000000..4414f51c Binary files /dev/null and b/blockchains/ethereum/assets/0xdb4837C9d84315ABCDE80A865f15178F86DB3966/logo.png differ diff --git a/blockchains/ethereum/assets/0xdb4D1099D53e92593430e33483Db41c63525f55F/info.json b/blockchains/ethereum/assets/0xdb4D1099D53e92593430e33483Db41c63525f55F/info.json new file mode 100644 index 00000000..07429abb --- /dev/null +++ b/blockchains/ethereum/assets/0xdb4D1099D53e92593430e33483Db41c63525f55F/info.json @@ -0,0 +1,37 @@ +{ + "name": "JoyStick Games", + "type": "ERC20", + "symbol": "JOY", + "decimals": 18, + "website": "https://joystickgames.com", + "description": "Joystick empowers players to make money playing the games they love.", + "explorer": "https://etherscan.io/token/0xdb4D1099D53e92593430e33483Db41c63525f55F", + "status": "active", + "id": "0xdb4D1099D53e92593430e33483Db41c63525f55F", + "links": [ + { + "name": "x", + "url": "https://x.com/joystickpros" + }, + { + "name": "telegram", + "url": "https://t.me/JoystickCommunity" + }, + { + "name": "discord", + "url": "https://discord.com/JoystickGames" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/joystick-games/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/joystick-games" + } + ], + "tags": [ + "defi", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdb4D1099D53e92593430e33483Db41c63525f55F/logo.png b/blockchains/ethereum/assets/0xdb4D1099D53e92593430e33483Db41c63525f55F/logo.png new file mode 100644 index 00000000..3369020a Binary files /dev/null and b/blockchains/ethereum/assets/0xdb4D1099D53e92593430e33483Db41c63525f55F/logo.png differ diff --git a/blockchains/ethereum/assets/0xdb5af0e326B5f6417bc9Db89d76fB2390393287F/info.json b/blockchains/ethereum/assets/0xdb5af0e326B5f6417bc9Db89d76fB2390393287F/info.json new file mode 100644 index 00000000..13e678f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xdb5af0e326B5f6417bc9Db89d76fB2390393287F/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-2/30M62", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdb5af0e326B5f6417bc9Db89d76fB2390393287F", + "status": "abandoned", + "id": "0xdb5af0e326B5f6417bc9Db89d76fB2390393287F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdb5af0e326B5f6417bc9Db89d76fB2390393287F/logo.png b/blockchains/ethereum/assets/0xdb5af0e326B5f6417bc9Db89d76fB2390393287F/logo.png new file mode 100644 index 00000000..906c6b73 Binary files /dev/null and b/blockchains/ethereum/assets/0xdb5af0e326B5f6417bc9Db89d76fB2390393287F/logo.png differ diff --git a/blockchains/ethereum/assets/0xdb85f6685950E285b1E611037BEBe5B34e2B7d78/info.json b/blockchains/ethereum/assets/0xdb85f6685950E285b1E611037BEBe5B34e2B7d78/info.json new file mode 100644 index 00000000..ed8d4c1a --- /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 00000000..d022e8f2 Binary files /dev/null and b/blockchains/ethereum/assets/0xdb85f6685950E285b1E611037BEBe5B34e2B7d78/logo.png differ diff --git a/blockchains/ethereum/assets/0xdb8646F5b487B5Dd979FAC618350e85018F557d4/info.json b/blockchains/ethereum/assets/0xdb8646F5b487B5Dd979FAC618350e85018F557d4/info.json new file mode 100644 index 00000000..382a1961 --- /dev/null +++ b/blockchains/ethereum/assets/0xdb8646F5b487B5Dd979FAC618350e85018F557d4/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitcoinToken", + "symbol": "BTK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdb8646F5b487B5Dd979FAC618350e85018F557d4", + "status": "abandoned", + "id": "0xdb8646F5b487B5Dd979FAC618350e85018F557d4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdb8646F5b487B5Dd979FAC618350e85018F557d4/logo.png b/blockchains/ethereum/assets/0xdb8646F5b487B5Dd979FAC618350e85018F557d4/logo.png new file mode 100755 index 00000000..9609e447 Binary files /dev/null and b/blockchains/ethereum/assets/0xdb8646F5b487B5Dd979FAC618350e85018F557d4/logo.png differ diff --git a/blockchains/ethereum/assets/0xdb9953028eFB8b659C255B5B676b912c57f37e4b/info.json b/blockchains/ethereum/assets/0xdb9953028eFB8b659C255B5B676b912c57f37e4b/info.json new file mode 100644 index 00000000..978482f3 --- /dev/null +++ b/blockchains/ethereum/assets/0xdb9953028eFB8b659C255B5B676b912c57f37e4b/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "NTV-b", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdb9953028eFB8b659C255B5B676b912c57f37e4b", + "status": "abandoned", + "id": "0xdb9953028eFB8b659C255B5B676b912c57f37e4b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdb9953028eFB8b659C255B5B676b912c57f37e4b/logo.png b/blockchains/ethereum/assets/0xdb9953028eFB8b659C255B5B676b912c57f37e4b/logo.png new file mode 100644 index 00000000..a8628bfa Binary files /dev/null and b/blockchains/ethereum/assets/0xdb9953028eFB8b659C255B5B676b912c57f37e4b/logo.png differ diff --git a/blockchains/ethereum/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/info.json b/blockchains/ethereum/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/info.json new file mode 100644 index 00000000..269076b1 --- /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 00000000..3b7a5c57 Binary files /dev/null and b/blockchains/ethereum/assets/0xdbA228936F4079DaF9Aa906fd48a87f2300405F4/logo.png differ diff --git a/blockchains/ethereum/assets/0xdbA934811A10d2cfe5f33736Cc56C42E7b8FD067/info.json b/blockchains/ethereum/assets/0xdbA934811A10d2cfe5f33736Cc56C42E7b8FD067/info.json new file mode 100644 index 00000000..576f2ea8 --- /dev/null +++ b/blockchains/ethereum/assets/0xdbA934811A10d2cfe5f33736Cc56C42E7b8FD067/info.json @@ -0,0 +1,11 @@ +{ + "name": "HAMDAN", + "symbol": "HAMDAN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdbA934811A10d2cfe5f33736Cc56C42E7b8FD067", + "status": "abandoned", + "id": "0xdbA934811A10d2cfe5f33736Cc56C42E7b8FD067" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdbA934811A10d2cfe5f33736Cc56C42E7b8FD067/logo.png b/blockchains/ethereum/assets/0xdbA934811A10d2cfe5f33736Cc56C42E7b8FD067/logo.png new file mode 100644 index 00000000..746e756b Binary files /dev/null and b/blockchains/ethereum/assets/0xdbA934811A10d2cfe5f33736Cc56C42E7b8FD067/logo.png differ diff --git a/blockchains/ethereum/assets/0xdbf0fac1499a931ed6e5F6122dbbCD3B80f66c7E/info.json b/blockchains/ethereum/assets/0xdbf0fac1499a931ed6e5F6122dbbCD3B80f66c7E/info.json new file mode 100644 index 00000000..b68d4280 --- /dev/null +++ b/blockchains/ethereum/assets/0xdbf0fac1499a931ed6e5F6122dbbCD3B80f66c7E/info.json @@ -0,0 +1,11 @@ +{ + "name": "RocketFuel", + "symbol": "RKFL", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdbf0fac1499a931ed6e5F6122dbbCD3B80f66c7E", + "status": "abandoned", + "id": "0xdbf0fac1499a931ed6e5F6122dbbCD3B80f66c7E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdbf0fac1499a931ed6e5F6122dbbCD3B80f66c7E/logo.png b/blockchains/ethereum/assets/0xdbf0fac1499a931ed6e5F6122dbbCD3B80f66c7E/logo.png new file mode 100644 index 00000000..5e413436 Binary files /dev/null and b/blockchains/ethereum/assets/0xdbf0fac1499a931ed6e5F6122dbbCD3B80f66c7E/logo.png differ diff --git a/blockchains/ethereum/assets/0xdc8092AaF83e00Ebf9B01A2e90b7B7eF867ba503/info.json b/blockchains/ethereum/assets/0xdc8092AaF83e00Ebf9B01A2e90b7B7eF867ba503/info.json new file mode 100644 index 00000000..11b94577 --- /dev/null +++ b/blockchains/ethereum/assets/0xdc8092AaF83e00Ebf9B01A2e90b7B7eF867ba503/info.json @@ -0,0 +1,11 @@ +{ + "name": "Calvin", + "symbol": "CALVIN", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdc8092AaF83e00Ebf9B01A2e90b7B7eF867ba503", + "status": "abandoned", + "id": "0xdc8092AaF83e00Ebf9B01A2e90b7B7eF867ba503" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdc8092AaF83e00Ebf9B01A2e90b7B7eF867ba503/logo.png b/blockchains/ethereum/assets/0xdc8092AaF83e00Ebf9B01A2e90b7B7eF867ba503/logo.png new file mode 100644 index 00000000..c36fa05c Binary files /dev/null and b/blockchains/ethereum/assets/0xdc8092AaF83e00Ebf9B01A2e90b7B7eF867ba503/logo.png differ diff --git a/blockchains/ethereum/assets/0xdc8a7Db05EA704227D56F5D4a4b77A2d1bbA29c0/info.json b/blockchains/ethereum/assets/0xdc8a7Db05EA704227D56F5D4a4b77A2d1bbA29c0/info.json new file mode 100644 index 00000000..57e8f8e9 --- /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 00000000..4aa234d3 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 new file mode 100644 index 00000000..e3c714a0 --- /dev/null +++ b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json @@ -0,0 +1,12 @@ +{ + "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", + "research": "https://research.binance.com/en/projects/utrust", + "type": "ERC20", + "symbol": "UTK", + "decimals": 18, + "status": "active", + "id": "0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png new file mode 100644 index 00000000..c42fa100 Binary files /dev/null and b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png differ diff --git a/blockchains/ethereum/assets/0xdcD85914b8aE28c1E62f1C488E1D968D5aaFfE2b/info.json b/blockchains/ethereum/assets/0xdcD85914b8aE28c1E62f1C488E1D968D5aaFfE2b/info.json new file mode 100644 index 00000000..76151104 --- /dev/null +++ b/blockchains/ethereum/assets/0xdcD85914b8aE28c1E62f1C488E1D968D5aaFfE2b/info.json @@ -0,0 +1,11 @@ +{ + "name": "TOP Network", + "symbol": "TOP", + "type": "ERC20", + "decimals": 18, + "description": "TOP Network is a decentralized open communication network that provides cloud communication services on the blockchain.", + "website": "https://www.topnetwork.org/", + "explorer": "https://etherscan.io/token/0xdcD85914b8aE28c1E62f1C488E1D968D5aaFfE2b", + "status": "active", + "id": "0xdcD85914b8aE28c1E62f1C488E1D968D5aaFfE2b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdcD85914b8aE28c1E62f1C488E1D968D5aaFfE2b/logo.png b/blockchains/ethereum/assets/0xdcD85914b8aE28c1E62f1C488E1D968D5aaFfE2b/logo.png new file mode 100644 index 00000000..73fba9fa Binary files /dev/null and b/blockchains/ethereum/assets/0xdcD85914b8aE28c1E62f1C488E1D968D5aaFfE2b/logo.png differ diff --git a/blockchains/ethereum/assets/0xdd007278B667F6bef52fD0a4c23604aA1f96039a/info.json b/blockchains/ethereum/assets/0xdd007278B667F6bef52fD0a4c23604aA1f96039a/info.json new file mode 100644 index 00000000..ee151249 --- /dev/null +++ b/blockchains/ethereum/assets/0xdd007278B667F6bef52fD0a4c23604aA1f96039a/info.json @@ -0,0 +1,11 @@ +{ + "name": "RiptideCoin", + "symbol": "RIPT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://riptidecoin.com/", + "explorer": "https://etherscan.io/token/0xdd007278B667F6bef52fD0a4c23604aA1f96039a", + "status": "abandoned", + "id": "0xdd007278B667F6bef52fD0a4c23604aA1f96039a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdd007278B667F6bef52fD0a4c23604aA1f96039a/logo.png b/blockchains/ethereum/assets/0xdd007278B667F6bef52fD0a4c23604aA1f96039a/logo.png new file mode 100755 index 00000000..acad4dfc Binary files /dev/null and b/blockchains/ethereum/assets/0xdd007278B667F6bef52fD0a4c23604aA1f96039a/logo.png differ diff --git a/blockchains/ethereum/assets/0xdd0E1e6162666a210905fFE8d368661B313c00e9/info.json b/blockchains/ethereum/assets/0xdd0E1e6162666a210905fFE8d368661B313c00e9/info.json new file mode 100644 index 00000000..b9fc36a3 --- /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 00000000..d57bb66b 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 00000000..76540a33 --- /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 new file mode 100644 index 00000000..56ee3e96 --- /dev/null +++ b/blockchains/ethereum/assets/0xdd690D8824c00C84d64606FFb12640e932C1AF56/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tavittcoin", + "website": "https://tavitt.co.jp", + "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.", + "explorer": "https://etherscan.io/token/0xdd690D8824c00C84d64606FFb12640e932C1AF56", + "type": "ERC20", + "symbol": "TAVITT", + "decimals": 8, + "status": "active", + "id": "0xdd690D8824c00C84d64606FFb12640e932C1AF56", + "links": [ + { + "name": "whitepaper", + "url": "https://tavitt.co.jp/TAVITT_WP_En_ver2.01.pdf" + }, + { + "name": "github", + "url": "https://github.com/Tavitt/token" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdd690D8824c00C84d64606FFb12640e932C1AF56/logo.png b/blockchains/ethereum/assets/0xdd690D8824c00C84d64606FFb12640e932C1AF56/logo.png new file mode 100644 index 00000000..f82a5070 Binary files /dev/null and b/blockchains/ethereum/assets/0xdd690D8824c00C84d64606FFb12640e932C1AF56/logo.png differ diff --git a/blockchains/ethereum/assets/0xdd7eD58e68F31c1478b59aBA156F61795EEb232a/info.json b/blockchains/ethereum/assets/0xdd7eD58e68F31c1478b59aBA156F61795EEb232a/info.json new file mode 100644 index 00000000..44678ade --- /dev/null +++ b/blockchains/ethereum/assets/0xdd7eD58e68F31c1478b59aBA156F61795EEb232a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Radincacoin", + "symbol": "RDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdd7eD58e68F31c1478b59aBA156F61795EEb232a", + "status": "abandoned", + "id": "0xdd7eD58e68F31c1478b59aBA156F61795EEb232a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdd7eD58e68F31c1478b59aBA156F61795EEb232a/logo.png b/blockchains/ethereum/assets/0xdd7eD58e68F31c1478b59aBA156F61795EEb232a/logo.png new file mode 100644 index 00000000..c032135a Binary files /dev/null and b/blockchains/ethereum/assets/0xdd7eD58e68F31c1478b59aBA156F61795EEb232a/logo.png differ diff --git a/blockchains/ethereum/assets/0xdd96e83861b8bf7c413265D9131CbE68e442e02f/info.json b/blockchains/ethereum/assets/0xdd96e83861b8bf7c413265D9131CbE68e442e02f/info.json new file mode 100644 index 00000000..c8b46a56 --- /dev/null +++ b/blockchains/ethereum/assets/0xdd96e83861b8bf7c413265D9131CbE68e442e02f/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-22/30M82", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdd96e83861b8bf7c413265D9131CbE68e442e02f", + "status": "abandoned", + "id": "0xdd96e83861b8bf7c413265D9131CbE68e442e02f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdd96e83861b8bf7c413265D9131CbE68e442e02f/logo.png b/blockchains/ethereum/assets/0xdd96e83861b8bf7c413265D9131CbE68e442e02f/logo.png new file mode 100644 index 00000000..5673ce16 Binary files /dev/null and b/blockchains/ethereum/assets/0xdd96e83861b8bf7c413265D9131CbE68e442e02f/logo.png differ diff --git a/blockchains/ethereum/assets/0xdd974D5C2e2928deA5F71b9825b8b646686BD200/info.json b/blockchains/ethereum/assets/0xdd974D5C2e2928deA5F71b9825b8b646686BD200/info.json new file mode 100644 index 00000000..f61c75b1 --- /dev/null +++ b/blockchains/ethereum/assets/0xdd974D5C2e2928deA5F71b9825b8b646686BD200/info.json @@ -0,0 +1,33 @@ +{ + "name": "Kyber Network Crystal Legacy", + "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://etherscan.io/token/0xdd974D5C2e2928deA5F71b9825b8b646686BD200", + "type": "ERC20", + "symbol": "KNCL", + "decimals": 18, + "status": "abandoned", + "id": "0xdd974D5C2e2928deA5F71b9825b8b646686BD200", + "links": [ + { + "name": "github", + "url": "https://github.com/KyberNetwork" + }, + { + "name": "x", + "url": "https://x.com/KyberNetwork" + }, + { + "name": "blog", + "url": "https://blog.kyber.network/" + }, + { + "name": "whitepaper", + "url": "https://kyber.network/assets/KyberNetworkWhitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kyber-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdd974D5C2e2928deA5F71b9825b8b646686BD200/logo.png b/blockchains/ethereum/assets/0xdd974D5C2e2928deA5F71b9825b8b646686BD200/logo.png new file mode 100644 index 00000000..1bb05023 Binary files /dev/null and b/blockchains/ethereum/assets/0xdd974D5C2e2928deA5F71b9825b8b646686BD200/logo.png differ diff --git a/blockchains/ethereum/assets/0xddb3Db2DFdD8705e606959637477AEE7B0Cc22F1/info.json b/blockchains/ethereum/assets/0xddb3Db2DFdD8705e606959637477AEE7B0Cc22F1/info.json new file mode 100644 index 00000000..527d8a02 --- /dev/null +++ b/blockchains/ethereum/assets/0xddb3Db2DFdD8705e606959637477AEE7B0Cc22F1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tyercoin", + "symbol": "TRC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.tyercoin.com/", + "explorer": "https://etherscan.io/token/0xddb3Db2DFdD8705e606959637477AEE7B0Cc22F1", + "status": "abandoned", + "id": "0xddb3Db2DFdD8705e606959637477AEE7B0Cc22F1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xddb3Db2DFdD8705e606959637477AEE7B0Cc22F1/logo.png b/blockchains/ethereum/assets/0xddb3Db2DFdD8705e606959637477AEE7B0Cc22F1/logo.png new file mode 100644 index 00000000..bac3cc66 Binary files /dev/null and b/blockchains/ethereum/assets/0xddb3Db2DFdD8705e606959637477AEE7B0Cc22F1/logo.png differ diff --git a/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/info.json b/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/info.json new file mode 100644 index 00000000..1d7427cb --- /dev/null +++ b/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/info.json @@ -0,0 +1,37 @@ +{ + "name": "DeXe", + "type": "ERC20", + "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://etherscan.io/token/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6", + "id": "0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6", + "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/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/logo.png b/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/logo.png new file mode 100644 index 00000000..9b717a97 Binary files /dev/null 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 00000000..c1b473e5 --- /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 00000000..c0d1e5fc 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 00000000..314cd28f --- /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 00000000..e4717c44 Binary files /dev/null and b/blockchains/ethereum/assets/0xde6AcEAF7F2dCEB3d425643C5F85351f2B38FcdE/logo.png differ diff --git a/blockchains/ethereum/assets/0xde865ED1C50E753D248a0f2c9C5AE02b9E41B6Ae/info.json b/blockchains/ethereum/assets/0xde865ED1C50E753D248a0f2c9C5AE02b9E41B6Ae/info.json new file mode 100644 index 00000000..b75c7a99 --- /dev/null +++ b/blockchains/ethereum/assets/0xde865ED1C50E753D248a0f2c9C5AE02b9E41B6Ae/info.json @@ -0,0 +1,11 @@ +{ + "name": "Revolt Token", + "symbol": "RVLT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xde865ED1C50E753D248a0f2c9C5AE02b9E41B6Ae", + "status": "abandoned", + "id": "0xde865ED1C50E753D248a0f2c9C5AE02b9E41B6Ae" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xde865ED1C50E753D248a0f2c9C5AE02b9E41B6Ae/logo.png b/blockchains/ethereum/assets/0xde865ED1C50E753D248a0f2c9C5AE02b9E41B6Ae/logo.png new file mode 100644 index 00000000..4a27dd3c Binary files /dev/null and b/blockchains/ethereum/assets/0xde865ED1C50E753D248a0f2c9C5AE02b9E41B6Ae/logo.png differ diff --git a/blockchains/ethereum/assets/0xdeAdDB9958627B660b0feEFCaE6b60349e10A4F5/info.json b/blockchains/ethereum/assets/0xdeAdDB9958627B660b0feEFCaE6b60349e10A4F5/info.json new file mode 100644 index 00000000..0154f959 --- /dev/null +++ b/blockchains/ethereum/assets/0xdeAdDB9958627B660b0feEFCaE6b60349e10A4F5/info.json @@ -0,0 +1,11 @@ +{ + "name": "DTOCoin", + "symbol": "DTO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdeAdDB9958627B660b0feEFCaE6b60349e10A4F5", + "status": "abandoned", + "id": "0xdeAdDB9958627B660b0feEFCaE6b60349e10A4F5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdeAdDB9958627B660b0feEFCaE6b60349e10A4F5/logo.png b/blockchains/ethereum/assets/0xdeAdDB9958627B660b0feEFCaE6b60349e10A4F5/logo.png new file mode 100644 index 00000000..05ec4932 Binary files /dev/null and b/blockchains/ethereum/assets/0xdeAdDB9958627B660b0feEFCaE6b60349e10A4F5/logo.png differ diff --git a/blockchains/ethereum/assets/0xdeB6B89088cA9B7d7756087c8a0F7C6DF46f319C/info.json b/blockchains/ethereum/assets/0xdeB6B89088cA9B7d7756087c8a0F7C6DF46f319C/info.json new file mode 100644 index 00000000..8c53804f --- /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 00000000..85171c99 Binary files /dev/null and b/blockchains/ethereum/assets/0xdeB6B89088cA9B7d7756087c8a0F7C6DF46f319C/logo.png differ diff --git a/blockchains/ethereum/assets/0xdeCF7Be29F8832E9C2Ddf0388c9778B8Ba76af43/info.json b/blockchains/ethereum/assets/0xdeCF7Be29F8832E9C2Ddf0388c9778B8Ba76af43/info.json new file mode 100644 index 00000000..5c0fdf18 --- /dev/null +++ b/blockchains/ethereum/assets/0xdeCF7Be29F8832E9C2Ddf0388c9778B8Ba76af43/info.json @@ -0,0 +1,11 @@ +{ + "name": "BonusCloud Token", + "symbol": "BxC", + "type": "ERC20", + "decimals": 18, + "description": "BonusCloud develops an exclusive encrypted network on the basis of Kademlia network, also can be divided and aggregated based on features of the user’s basic network.", + "website": "https://bonuscloud.io", + "explorer": "https://etherscan.io/token/0xdeCF7Be29F8832E9C2Ddf0388c9778B8Ba76af43", + "status": "active", + "id": "0xdeCF7Be29F8832E9C2Ddf0388c9778B8Ba76af43" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdeCF7Be29F8832E9C2Ddf0388c9778B8Ba76af43/logo.png b/blockchains/ethereum/assets/0xdeCF7Be29F8832E9C2Ddf0388c9778B8Ba76af43/logo.png new file mode 100644 index 00000000..99f940c9 Binary files /dev/null and b/blockchains/ethereum/assets/0xdeCF7Be29F8832E9C2Ddf0388c9778B8Ba76af43/logo.png differ diff --git a/blockchains/ethereum/assets/0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202/info.json b/blockchains/ethereum/assets/0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202/info.json new file mode 100644 index 00000000..85def621 --- /dev/null +++ b/blockchains/ethereum/assets/0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202/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://etherscan.io/token/0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202", + "type": "ERC20", + "symbol": "KNC", + "decimals": 18, + "status": "active", + "id": "0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202", + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202/logo.png b/blockchains/ethereum/assets/0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202/logo.png new file mode 100644 index 00000000..c397707b Binary files /dev/null and b/blockchains/ethereum/assets/0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202/logo.png differ diff --git a/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/info.json b/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/info.json new file mode 100644 index 00000000..eb6084d5 --- /dev/null +++ b/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/info.json @@ -0,0 +1,28 @@ +{ + "name": "ALTAVA", + "type": "ERC20", + "symbol": "TAVA", + "decimals": 18, + "website": "https://altava.com", + "description": "We bring culture defining brands into the metaverse through our virtual platforms and access to others", + "explorer": "https://etherscan.io/token/0xdebe620609674F21B1089042527F420372eA98A5", + "status": "active", + "id": "0xdebe620609674F21B1089042527F420372eA98A5", + "links": [ + { + "name": "x", + "url": "https://x.com/altavagroup" + }, + { + "name": "medium", + "url": "https://medium.com/@altavagroup" + }, + { + "name": "telegram", + "url": "https://t.me/altavaofficial" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/logo.png b/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/logo.png new file mode 100644 index 00000000..c763e1fe Binary files /dev/null and b/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/logo.png differ diff --git a/blockchains/ethereum/assets/0xdef058a630354E1081c7F3608F081E951d2A5570/info.json b/blockchains/ethereum/assets/0xdef058a630354E1081c7F3608F081E951d2A5570/info.json new file mode 100644 index 00000000..ca74d38c --- /dev/null +++ b/blockchains/ethereum/assets/0xdef058a630354E1081c7F3608F081E951d2A5570/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitLand", + "symbol": "BIL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdef058a630354E1081c7F3608F081E951d2A5570", + "status": "abandoned", + "id": "0xdef058a630354E1081c7F3608F081E951d2A5570" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdef058a630354E1081c7F3608F081E951d2A5570/logo.png b/blockchains/ethereum/assets/0xdef058a630354E1081c7F3608F081E951d2A5570/logo.png new file mode 100644 index 00000000..c85b8bee Binary files /dev/null and b/blockchains/ethereum/assets/0xdef058a630354E1081c7F3608F081E951d2A5570/logo.png differ diff --git a/blockchains/ethereum/assets/0xdf09a216Fac5ADC3e640Db418C0b956076509503/info.json b/blockchains/ethereum/assets/0xdf09a216Fac5ADC3e640Db418C0b956076509503/info.json new file mode 100644 index 00000000..04b18943 --- /dev/null +++ b/blockchains/ethereum/assets/0xdf09a216Fac5ADC3e640Db418C0b956076509503/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pokmi", + "website": "https://pokmi.com/", + "description": "Pokmi is a social platform to share uncensored creativity with advanced user protection thanks to the Poken wallet", + "explorer": "https://etherscan.io/token/0xdf09a216Fac5ADC3e640Db418C0b956076509503", + "type": "ERC20", + "symbol": "PKN", + "decimals": 18, + "status": "active", + "id": "0xdf09a216Fac5ADC3e640Db418C0b956076509503", + "links": [ + { + "name": "x", + "url": "https://x.com/PokmiHQ" + }, + { + "name": "telegram", + "url": "https://t.me/RarePorn_Fr" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdf09a216Fac5ADC3e640Db418C0b956076509503/logo.png b/blockchains/ethereum/assets/0xdf09a216Fac5ADC3e640Db418C0b956076509503/logo.png new file mode 100644 index 00000000..a0e982b4 Binary files /dev/null and b/blockchains/ethereum/assets/0xdf09a216Fac5ADC3e640Db418C0b956076509503/logo.png differ diff --git a/blockchains/ethereum/assets/0xdf1338FbAfe7aF1789151627B886781ba556eF9a/info.json b/blockchains/ethereum/assets/0xdf1338FbAfe7aF1789151627B886781ba556eF9a/info.json new file mode 100644 index 00000000..1fe106d3 --- /dev/null +++ b/blockchains/ethereum/assets/0xdf1338FbAfe7aF1789151627B886781ba556eF9a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kuende Token", + "symbol": "KUE", + "type": "ERC20", + "decimals": 18, + "description": "Kuende describes itself as a blockchain-fueled social media platform that encourages its users to engage in real-life interactions through Gamified Challenges. Kuende's Gamified Challenges actively encourage people to engage in activities that lead to real-life interactions.", + "website": "https://ico.kuende.com/", + "explorer": "https://etherscan.io/token/0xdf1338FbAfe7aF1789151627B886781ba556eF9a", + "status": "active", + "id": "0xdf1338FbAfe7aF1789151627B886781ba556eF9a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdf1338FbAfe7aF1789151627B886781ba556eF9a/logo.png b/blockchains/ethereum/assets/0xdf1338FbAfe7aF1789151627B886781ba556eF9a/logo.png new file mode 100644 index 00000000..865ebd16 Binary files /dev/null and b/blockchains/ethereum/assets/0xdf1338FbAfe7aF1789151627B886781ba556eF9a/logo.png differ diff --git a/blockchains/ethereum/assets/0xdf22Da9a8C1D80095175Ae601d182A734923F01A/info.json b/blockchains/ethereum/assets/0xdf22Da9a8C1D80095175Ae601d182A734923F01A/info.json new file mode 100644 index 00000000..953512ec --- /dev/null +++ b/blockchains/ethereum/assets/0xdf22Da9a8C1D80095175Ae601d182A734923F01A/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitpakcoinToken", + "symbol": "BPAKC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.bitpakcoin.com/", + "explorer": "https://etherscan.io/token/0xdf22Da9a8C1D80095175Ae601d182A734923F01A", + "status": "abandoned", + "id": "0xdf22Da9a8C1D80095175Ae601d182A734923F01A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdf22Da9a8C1D80095175Ae601d182A734923F01A/logo.png b/blockchains/ethereum/assets/0xdf22Da9a8C1D80095175Ae601d182A734923F01A/logo.png new file mode 100644 index 00000000..a277e207 Binary files /dev/null and b/blockchains/ethereum/assets/0xdf22Da9a8C1D80095175Ae601d182A734923F01A/logo.png differ diff --git a/blockchains/ethereum/assets/0xdfB410994b66778Bd6cC2C82E8ffe4f7B2870006/info.json b/blockchains/ethereum/assets/0xdfB410994b66778Bd6cC2C82E8ffe4f7B2870006/info.json new file mode 100644 index 00000000..e79eb8ab --- /dev/null +++ b/blockchains/ethereum/assets/0xdfB410994b66778Bd6cC2C82E8ffe4f7B2870006/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kinguin Krowns", + "symbol": "KRS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.kinguin.net/krowns", + "explorer": "https://etherscan.io/token/0xdfB410994b66778Bd6cC2C82E8ffe4f7B2870006", + "status": "abandoned", + "id": "0xdfB410994b66778Bd6cC2C82E8ffe4f7B2870006" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdfB410994b66778Bd6cC2C82E8ffe4f7B2870006/logo.png b/blockchains/ethereum/assets/0xdfB410994b66778Bd6cC2C82E8ffe4f7B2870006/logo.png new file mode 100755 index 00000000..09b914a3 Binary files /dev/null and b/blockchains/ethereum/assets/0xdfB410994b66778Bd6cC2C82E8ffe4f7B2870006/logo.png differ diff --git a/blockchains/ethereum/assets/0xdfB78a5de31cF30c295808BE6B17b95f2927302D/info.json b/blockchains/ethereum/assets/0xdfB78a5de31cF30c295808BE6B17b95f2927302D/info.json new file mode 100644 index 00000000..180b2a22 --- /dev/null +++ b/blockchains/ethereum/assets/0xdfB78a5de31cF30c295808BE6B17b95f2927302D/info.json @@ -0,0 +1,11 @@ +{ + "name": "OJO Coin", + "symbol": "OJO", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdfB78a5de31cF30c295808BE6B17b95f2927302D", + "status": "abandoned", + "id": "0xdfB78a5de31cF30c295808BE6B17b95f2927302D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdfB78a5de31cF30c295808BE6B17b95f2927302D/logo.png b/blockchains/ethereum/assets/0xdfB78a5de31cF30c295808BE6B17b95f2927302D/logo.png new file mode 100644 index 00000000..fc98e620 Binary files /dev/null and b/blockchains/ethereum/assets/0xdfB78a5de31cF30c295808BE6B17b95f2927302D/logo.png differ diff --git a/blockchains/ethereum/assets/0xdfBd6A960a55bCfCf59d5925351E05a51498BCeF/info.json b/blockchains/ethereum/assets/0xdfBd6A960a55bCfCf59d5925351E05a51498BCeF/info.json new file mode 100644 index 00000000..6da24917 --- /dev/null +++ b/blockchains/ethereum/assets/0xdfBd6A960a55bCfCf59d5925351E05a51498BCeF/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "\"\"", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://icerockmining.io", + "explorer": "https://etherscan.io/token/0xdfBd6A960a55bCfCf59d5925351E05a51498BCeF", + "status": "abandoned", + "id": "0xdfBd6A960a55bCfCf59d5925351E05a51498BCeF" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdfBd6A960a55bCfCf59d5925351E05a51498BCeF/logo.png b/blockchains/ethereum/assets/0xdfBd6A960a55bCfCf59d5925351E05a51498BCeF/logo.png new file mode 100644 index 00000000..d0f497e2 Binary files /dev/null and b/blockchains/ethereum/assets/0xdfBd6A960a55bCfCf59d5925351E05a51498BCeF/logo.png differ diff --git a/blockchains/ethereum/assets/0xdfbc9050F5B01DF53512DCC39B4f2B2BBaCD517A/info.json b/blockchains/ethereum/assets/0xdfbc9050F5B01DF53512DCC39B4f2B2BBaCD517A/info.json new file mode 100644 index 00000000..2012581c --- /dev/null +++ b/blockchains/ethereum/assets/0xdfbc9050F5B01DF53512DCC39B4f2B2BBaCD517A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jobchain", + "symbol": "JOB", + "type": "ERC20", + "decimals": 8, + "description": "Jobchain is an ecosystem that enables anybody to find jobs or hire personnel anytime, anywhere while earning salary in cryptocurrency.", + "website": "https://www.jobchain.com/", + "explorer": "https://etherscan.io/token/0xdfbc9050F5B01DF53512DCC39B4f2B2BBaCD517A", + "status": "active", + "id": "0xdfbc9050F5B01DF53512DCC39B4f2B2BBaCD517A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdfbc9050F5B01DF53512DCC39B4f2B2BBaCD517A/logo.png b/blockchains/ethereum/assets/0xdfbc9050F5B01DF53512DCC39B4f2B2BBaCD517A/logo.png new file mode 100644 index 00000000..bec75951 Binary files /dev/null and b/blockchains/ethereum/assets/0xdfbc9050F5B01DF53512DCC39B4f2B2BBaCD517A/logo.png differ diff --git a/blockchains/ethereum/assets/0xdfdc0D82d96F8fd40ca0CFB4A288955bECEc2088/info.json b/blockchains/ethereum/assets/0xdfdc0D82d96F8fd40ca0CFB4A288955bECEc2088/info.json new file mode 100644 index 00000000..f422d88f --- /dev/null +++ b/blockchains/ethereum/assets/0xdfdc0D82d96F8fd40ca0CFB4A288955bECEc2088/info.json @@ -0,0 +1,11 @@ +{ + "name": "MTC Mesh Network", + "symbol": "MTC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xdfdc0D82d96F8fd40ca0CFB4A288955bECEc2088", + "status": "abandoned", + "id": "0xdfdc0D82d96F8fd40ca0CFB4A288955bECEc2088" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdfdc0D82d96F8fd40ca0CFB4A288955bECEc2088/logo.png b/blockchains/ethereum/assets/0xdfdc0D82d96F8fd40ca0CFB4A288955bECEc2088/logo.png new file mode 100755 index 00000000..a557b897 Binary files /dev/null and b/blockchains/ethereum/assets/0xdfdc0D82d96F8fd40ca0CFB4A288955bECEc2088/logo.png differ diff --git a/blockchains/ethereum/assets/0xdfe691F37b6264a90Ff507EB359C45d55037951C/info.json b/blockchains/ethereum/assets/0xdfe691F37b6264a90Ff507EB359C45d55037951C/info.json new file mode 100644 index 00000000..59f78de5 --- /dev/null +++ b/blockchains/ethereum/assets/0xdfe691F37b6264a90Ff507EB359C45d55037951C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Karma", + "symbol": "KARMA", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "http://karma.link/", + "explorer": "https://etherscan.io/token/0xdfe691F37b6264a90Ff507EB359C45d55037951C", + "status": "abandoned", + "id": "0xdfe691F37b6264a90Ff507EB359C45d55037951C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdfe691F37b6264a90Ff507EB359C45d55037951C/logo.png b/blockchains/ethereum/assets/0xdfe691F37b6264a90Ff507EB359C45d55037951C/logo.png new file mode 100644 index 00000000..ccb0681e Binary files /dev/null and b/blockchains/ethereum/assets/0xdfe691F37b6264a90Ff507EB359C45d55037951C/logo.png differ diff --git a/blockchains/ethereum/assets/0xe0089BfD703a711bB211fF62bdD76Cd9032F237A/info.json b/blockchains/ethereum/assets/0xe0089BfD703a711bB211fF62bdD76Cd9032F237A/info.json new file mode 100644 index 00000000..d52315fc --- /dev/null +++ b/blockchains/ethereum/assets/0xe0089BfD703a711bB211fF62bdD76Cd9032F237A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Planetagro-Exchange", + "symbol": "SOYBEAN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe0089BfD703a711bB211fF62bdD76Cd9032F237A", + "status": "abandoned", + "id": "0xe0089BfD703a711bB211fF62bdD76Cd9032F237A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe0089BfD703a711bB211fF62bdD76Cd9032F237A/logo.png b/blockchains/ethereum/assets/0xe0089BfD703a711bB211fF62bdD76Cd9032F237A/logo.png new file mode 100755 index 00000000..4e77b9cb Binary files /dev/null and b/blockchains/ethereum/assets/0xe0089BfD703a711bB211fF62bdD76Cd9032F237A/logo.png differ diff --git a/blockchains/ethereum/assets/0xe02A8b1D7B2A85a3cb20a902783c9557423691C5/info.json b/blockchains/ethereum/assets/0xe02A8b1D7B2A85a3cb20a902783c9557423691C5/info.json new file mode 100644 index 00000000..4b98755c --- /dev/null +++ b/blockchains/ethereum/assets/0xe02A8b1D7B2A85a3cb20a902783c9557423691C5/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C559009", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe02A8b1D7B2A85a3cb20a902783c9557423691C5", + "status": "abandoned", + "id": "0xe02A8b1D7B2A85a3cb20a902783c9557423691C5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe02A8b1D7B2A85a3cb20a902783c9557423691C5/logo.png b/blockchains/ethereum/assets/0xe02A8b1D7B2A85a3cb20a902783c9557423691C5/logo.png new file mode 100644 index 00000000..0fdc36a3 Binary files /dev/null and b/blockchains/ethereum/assets/0xe02A8b1D7B2A85a3cb20a902783c9557423691C5/logo.png differ diff --git a/blockchains/ethereum/assets/0xe02b2Ad63eFF3Ac1D5827cBd7AB9DD3DaC4f4AD0/info.json b/blockchains/ethereum/assets/0xe02b2Ad63eFF3Ac1D5827cBd7AB9DD3DaC4f4AD0/info.json new file mode 100644 index 00000000..85604684 --- /dev/null +++ b/blockchains/ethereum/assets/0xe02b2Ad63eFF3Ac1D5827cBd7AB9DD3DaC4f4AD0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave UniUSDC", + "website": "https://aave.com", + "description": "Aave UniUSDC is an interest bearing token pegged 1:1 to the underlying USDC deposited in the Uniswap Market of Aave Protocol.", + "explorer": "https://etherscan.io/token/0xe02b2Ad63eFF3Ac1D5827cBd7AB9DD3DaC4f4AD0", + "type": "ERC20", + "symbol": "aUniUSDC", + "decimals": 6, + "status": "active", + "id": "0xe02b2Ad63eFF3Ac1D5827cBd7AB9DD3DaC4f4AD0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe02b2Ad63eFF3Ac1D5827cBd7AB9DD3DaC4f4AD0/logo.png b/blockchains/ethereum/assets/0xe02b2Ad63eFF3Ac1D5827cBd7AB9DD3DaC4f4AD0/logo.png new file mode 100644 index 00000000..65e1effe Binary files /dev/null and b/blockchains/ethereum/assets/0xe02b2Ad63eFF3Ac1D5827cBd7AB9DD3DaC4f4AD0/logo.png differ diff --git a/blockchains/ethereum/assets/0xe047705117Eb07e712C3d684f5B18E74577e83aC/info.json b/blockchains/ethereum/assets/0xe047705117Eb07e712C3d684f5B18E74577e83aC/info.json new file mode 100644 index 00000000..5946aa66 --- /dev/null +++ b/blockchains/ethereum/assets/0xe047705117Eb07e712C3d684f5B18E74577e83aC/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitcashPay Token", + "website": "https://bitcashpay.net/", + "description": "Staking and Yield Farming, Decentralized Lending, DEX with FIAT Cash-in/Cash-out, Crypto Academy, Payment Solution, Remittance. The ALL-in-ONE DEFI PLATFORM", + "explorer": "https://etherscan.io/token/0xe047705117Eb07e712C3d684f5B18E74577e83aC", + "type": "ERC20", + "symbol": "BCP", + "decimals": 18, + "status": "active", + "id": "0xe047705117Eb07e712C3d684f5B18E74577e83aC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe047705117Eb07e712C3d684f5B18E74577e83aC/logo.png b/blockchains/ethereum/assets/0xe047705117Eb07e712C3d684f5B18E74577e83aC/logo.png new file mode 100644 index 00000000..53580f42 Binary files /dev/null and b/blockchains/ethereum/assets/0xe047705117Eb07e712C3d684f5B18E74577e83aC/logo.png differ diff --git a/blockchains/ethereum/assets/0xe05Be272d67eE58a57b38B48c791B586e1220B94/info.json b/blockchains/ethereum/assets/0xe05Be272d67eE58a57b38B48c791B586e1220B94/info.json new file mode 100644 index 00000000..2ef3a9ad --- /dev/null +++ b/blockchains/ethereum/assets/0xe05Be272d67eE58a57b38B48c791B586e1220B94/info.json @@ -0,0 +1,11 @@ +{ + "name": "RH123456", + "symbol": "RH", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe05Be272d67eE58a57b38B48c791B586e1220B94", + "status": "abandoned", + "id": "0xe05Be272d67eE58a57b38B48c791B586e1220B94" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe05Be272d67eE58a57b38B48c791B586e1220B94/logo.png b/blockchains/ethereum/assets/0xe05Be272d67eE58a57b38B48c791B586e1220B94/logo.png new file mode 100644 index 00000000..1aa93d1f Binary files /dev/null and b/blockchains/ethereum/assets/0xe05Be272d67eE58a57b38B48c791B586e1220B94/logo.png differ diff --git a/blockchains/ethereum/assets/0xe05C99fd798C09C066B87d841eCF89Dac4B4856E/info.json b/blockchains/ethereum/assets/0xe05C99fd798C09C066B87d841eCF89Dac4B4856E/info.json new file mode 100644 index 00000000..0fbfbc69 --- /dev/null +++ b/blockchains/ethereum/assets/0xe05C99fd798C09C066B87d841eCF89Dac4B4856E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bard", + "symbol": "BARD", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe05C99fd798C09C066B87d841eCF89Dac4B4856E", + "status": "abandoned", + "id": "0xe05C99fd798C09C066B87d841eCF89Dac4B4856E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe05C99fd798C09C066B87d841eCF89Dac4B4856E/logo.png b/blockchains/ethereum/assets/0xe05C99fd798C09C066B87d841eCF89Dac4B4856E/logo.png new file mode 100644 index 00000000..222d4761 Binary files /dev/null and b/blockchains/ethereum/assets/0xe05C99fd798C09C066B87d841eCF89Dac4B4856E/logo.png differ diff --git a/blockchains/ethereum/assets/0xe05D803fa0c5832Fa2262465290abB25d6C2bFA3/info.json b/blockchains/ethereum/assets/0xe05D803fa0c5832Fa2262465290abB25d6C2bFA3/info.json new file mode 100644 index 00000000..7a532942 --- /dev/null +++ b/blockchains/ethereum/assets/0xe05D803fa0c5832Fa2262465290abB25d6C2bFA3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Synth sXAU", + "symbol": "sXAU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe05D803fa0c5832Fa2262465290abB25d6C2bFA3", + "status": "abandoned", + "id": "0xe05D803fa0c5832Fa2262465290abB25d6C2bFA3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe05D803fa0c5832Fa2262465290abB25d6C2bFA3/logo.png b/blockchains/ethereum/assets/0xe05D803fa0c5832Fa2262465290abB25d6C2bFA3/logo.png new file mode 100644 index 00000000..a463c216 Binary files /dev/null and b/blockchains/ethereum/assets/0xe05D803fa0c5832Fa2262465290abB25d6C2bFA3/logo.png differ diff --git a/blockchains/ethereum/assets/0xe06Af951086EC3c488b50E31BE29c07F8a260cA3/info.json b/blockchains/ethereum/assets/0xe06Af951086EC3c488b50E31BE29c07F8a260cA3/info.json new file mode 100644 index 00000000..4db30a8b --- /dev/null +++ b/blockchains/ethereum/assets/0xe06Af951086EC3c488b50E31BE29c07F8a260cA3/info.json @@ -0,0 +1,11 @@ +{ + "name": "EXU Protocol", + "symbol": "EXU", + "type": "ERC20", + "decimals": 16, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe06Af951086EC3c488b50E31BE29c07F8a260cA3", + "status": "abandoned", + "id": "0xe06Af951086EC3c488b50E31BE29c07F8a260cA3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe06Af951086EC3c488b50E31BE29c07F8a260cA3/logo.png b/blockchains/ethereum/assets/0xe06Af951086EC3c488b50E31BE29c07F8a260cA3/logo.png new file mode 100644 index 00000000..f9f2eb5f Binary files /dev/null and b/blockchains/ethereum/assets/0xe06Af951086EC3c488b50E31BE29c07F8a260cA3/logo.png differ diff --git a/blockchains/ethereum/assets/0xe06eda7435bA749b047380CEd49121ddE93334Ae/info.json b/blockchains/ethereum/assets/0xe06eda7435bA749b047380CEd49121ddE93334Ae/info.json new file mode 100644 index 00000000..5267b442 --- /dev/null +++ b/blockchains/ethereum/assets/0xe06eda7435bA749b047380CEd49121ddE93334Ae/info.json @@ -0,0 +1,11 @@ +{ + "name": "Transferable Sydney Ethereum Token", + "symbol": "SET", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe06eda7435bA749b047380CEd49121ddE93334Ae", + "status": "abandoned", + "id": "0xe06eda7435bA749b047380CEd49121ddE93334Ae" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe06eda7435bA749b047380CEd49121ddE93334Ae/logo.png b/blockchains/ethereum/assets/0xe06eda7435bA749b047380CEd49121ddE93334Ae/logo.png new file mode 100644 index 00000000..c2c32382 Binary files /dev/null and b/blockchains/ethereum/assets/0xe06eda7435bA749b047380CEd49121ddE93334Ae/logo.png differ diff --git a/blockchains/ethereum/assets/0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A/info.json b/blockchains/ethereum/assets/0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A/info.json new file mode 100644 index 00000000..5416bc92 --- /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 00000000..47291c61 Binary files /dev/null and b/blockchains/ethereum/assets/0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A/logo.png differ diff --git a/blockchains/ethereum/assets/0xe089CeEb88086d7DD5153cf0357525069Cb27a4a/info.json b/blockchains/ethereum/assets/0xe089CeEb88086d7DD5153cf0357525069Cb27a4a/info.json new file mode 100644 index 00000000..74eea2af --- /dev/null +++ b/blockchains/ethereum/assets/0xe089CeEb88086d7DD5153cf0357525069Cb27a4a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Farmer", + "symbol": "FARMER", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe089CeEb88086d7DD5153cf0357525069Cb27a4a", + "status": "abandoned", + "id": "0xe089CeEb88086d7DD5153cf0357525069Cb27a4a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe089CeEb88086d7DD5153cf0357525069Cb27a4a/logo.png b/blockchains/ethereum/assets/0xe089CeEb88086d7DD5153cf0357525069Cb27a4a/logo.png new file mode 100644 index 00000000..298af530 Binary files /dev/null and b/blockchains/ethereum/assets/0xe089CeEb88086d7DD5153cf0357525069Cb27a4a/logo.png differ diff --git a/blockchains/ethereum/assets/0xe0B9a2C3E9f40CF74B2C7F591B2b0CCa055c3112/info.json b/blockchains/ethereum/assets/0xe0B9a2C3E9f40CF74B2C7F591B2b0CCa055c3112/info.json new file mode 100644 index 00000000..e447813e --- /dev/null +++ b/blockchains/ethereum/assets/0xe0B9a2C3E9f40CF74B2C7F591B2b0CCa055c3112/info.json @@ -0,0 +1,11 @@ +{ + "name": "GenShards", + "website": "https://genshards.com", + "description": "Genesis Shards transforms NFTs into a liquidity vehicle for Pre-IDO tokens and a whole new suite of DeFi products across multiple blockchains.", + "explorer": "https://etherscan.io/token/0xe0B9a2C3E9f40CF74B2C7F591B2b0CCa055c3112", + "type": "ERC20", + "symbol": "GS", + "decimals": 18, + "status": "active", + "id": "0xe0B9a2C3E9f40CF74B2C7F591B2b0CCa055c3112" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe0B9a2C3E9f40CF74B2C7F591B2b0CCa055c3112/logo.png b/blockchains/ethereum/assets/0xe0B9a2C3E9f40CF74B2C7F591B2b0CCa055c3112/logo.png new file mode 100644 index 00000000..fe0359c8 Binary files /dev/null and b/blockchains/ethereum/assets/0xe0B9a2C3E9f40CF74B2C7F591B2b0CCa055c3112/logo.png differ diff --git a/blockchains/ethereum/assets/0xe0D95530820aAfc51b1d98023AA1Ff000b78d8b2/info.json b/blockchains/ethereum/assets/0xe0D95530820aAfc51b1d98023AA1Ff000b78d8b2/info.json new file mode 100644 index 00000000..2bcc347d --- /dev/null +++ b/blockchains/ethereum/assets/0xe0D95530820aAfc51b1d98023AA1Ff000b78d8b2/info.json @@ -0,0 +1,11 @@ +{ + "name": "PressOne Token", + "symbol": "PRS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://press.one", + "explorer": "https://etherscan.io/token/0xe0D95530820aAfc51b1d98023AA1Ff000b78d8b2", + "status": "active", + "id": "0xe0D95530820aAfc51b1d98023AA1Ff000b78d8b2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe0D95530820aAfc51b1d98023AA1Ff000b78d8b2/logo.png b/blockchains/ethereum/assets/0xe0D95530820aAfc51b1d98023AA1Ff000b78d8b2/logo.png new file mode 100644 index 00000000..5d0662b1 Binary files /dev/null and b/blockchains/ethereum/assets/0xe0D95530820aAfc51b1d98023AA1Ff000b78d8b2/logo.png differ diff --git a/blockchains/ethereum/assets/0xe0E705C9bFf67188a79dc5F59f0b2675031a6055/info.json b/blockchains/ethereum/assets/0xe0E705C9bFf67188a79dc5F59f0b2675031a6055/info.json new file mode 100644 index 00000000..a9fcfbd8 --- /dev/null +++ b/blockchains/ethereum/assets/0xe0E705C9bFf67188a79dc5F59f0b2675031a6055/info.json @@ -0,0 +1,11 @@ +{ + "name": "QuadCore Chain", + "symbol": "QUAD", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe0E705C9bFf67188a79dc5F59f0b2675031a6055", + "status": "abandoned", + "id": "0xe0E705C9bFf67188a79dc5F59f0b2675031a6055" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe0E705C9bFf67188a79dc5F59f0b2675031a6055/logo.png b/blockchains/ethereum/assets/0xe0E705C9bFf67188a79dc5F59f0b2675031a6055/logo.png new file mode 100755 index 00000000..0155fd5d Binary files /dev/null and b/blockchains/ethereum/assets/0xe0E705C9bFf67188a79dc5F59f0b2675031a6055/logo.png differ diff --git a/blockchains/ethereum/assets/0xe0b9BcD54bF8A730EA5d3f1fFCe0885E911a502c/info.json b/blockchains/ethereum/assets/0xe0b9BcD54bF8A730EA5d3f1fFCe0885E911a502c/info.json new file mode 100644 index 00000000..330623f9 --- /dev/null +++ b/blockchains/ethereum/assets/0xe0b9BcD54bF8A730EA5d3f1fFCe0885E911a502c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zum Token", + "symbol": "ZUM", + "type": "ERC20", + "decimals": 8, + "description": "ZUM TOKEN aims to become a currency used in special tournaments for Telegram games.", + "website": "https://zum-token.com/", + "explorer": "https://etherscan.io/token/0xe0b9BcD54bF8A730EA5d3f1fFCe0885E911a502c", + "status": "active", + "id": "0xe0b9BcD54bF8A730EA5d3f1fFCe0885E911a502c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe0b9BcD54bF8A730EA5d3f1fFCe0885E911a502c/logo.png b/blockchains/ethereum/assets/0xe0b9BcD54bF8A730EA5d3f1fFCe0885E911a502c/logo.png new file mode 100644 index 00000000..30575bc9 Binary files /dev/null and b/blockchains/ethereum/assets/0xe0b9BcD54bF8A730EA5d3f1fFCe0885E911a502c/logo.png differ diff --git a/blockchains/ethereum/assets/0xe0bA8B69c32b5c1601784f1DeAe4762c26E59d0F/info.json b/blockchains/ethereum/assets/0xe0bA8B69c32b5c1601784f1DeAe4762c26E59d0F/info.json new file mode 100644 index 00000000..4fad73d4 --- /dev/null +++ b/blockchains/ethereum/assets/0xe0bA8B69c32b5c1601784f1DeAe4762c26E59d0F/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-30/30M30", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe0bA8B69c32b5c1601784f1DeAe4762c26E59d0F", + "status": "abandoned", + "id": "0xe0bA8B69c32b5c1601784f1DeAe4762c26E59d0F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe0bA8B69c32b5c1601784f1DeAe4762c26E59d0F/logo.png b/blockchains/ethereum/assets/0xe0bA8B69c32b5c1601784f1DeAe4762c26E59d0F/logo.png new file mode 100644 index 00000000..c7a9fe3e Binary files /dev/null and b/blockchains/ethereum/assets/0xe0bA8B69c32b5c1601784f1DeAe4762c26E59d0F/logo.png differ diff --git a/blockchains/ethereum/assets/0xe0c6CE3e73029F201e5C0Bedb97F67572A93711C/info.json b/blockchains/ethereum/assets/0xe0c6CE3e73029F201e5C0Bedb97F67572A93711C/info.json new file mode 100644 index 00000000..b1d13cf6 --- /dev/null +++ b/blockchains/ethereum/assets/0xe0c6CE3e73029F201e5C0Bedb97F67572A93711C/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETHplode", + "symbol": "ETHPLO", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "https://ethplode.org/", + "explorer": "https://etherscan.io/token/0xe0c6CE3e73029F201e5C0Bedb97F67572A93711C", + "status": "abandoned", + "id": "0xe0c6CE3e73029F201e5C0Bedb97F67572A93711C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe0c6CE3e73029F201e5C0Bedb97F67572A93711C/logo.png b/blockchains/ethereum/assets/0xe0c6CE3e73029F201e5C0Bedb97F67572A93711C/logo.png new file mode 100644 index 00000000..b27086ed Binary files /dev/null and b/blockchains/ethereum/assets/0xe0c6CE3e73029F201e5C0Bedb97F67572A93711C/logo.png differ diff --git a/blockchains/ethereum/assets/0xe0c8087CE1a17bdd5D6c12eb52F8d7efF7791987/info.json b/blockchains/ethereum/assets/0xe0c8087CE1a17bdd5D6c12eb52F8d7efF7791987/info.json new file mode 100644 index 00000000..e29be61e --- /dev/null +++ b/blockchains/ethereum/assets/0xe0c8087CE1a17bdd5D6c12eb52F8d7efF7791987/info.json @@ -0,0 +1,11 @@ +{ + "name": "Linfinity", + "symbol": "LFT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.linfinity.io/", + "explorer": "https://etherscan.io/token/0xe0c8087CE1a17bdd5D6c12eb52F8d7efF7791987", + "status": "abandoned", + "id": "0xe0c8087CE1a17bdd5D6c12eb52F8d7efF7791987" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe0c8087CE1a17bdd5D6c12eb52F8d7efF7791987/logo.png b/blockchains/ethereum/assets/0xe0c8087CE1a17bdd5D6c12eb52F8d7efF7791987/logo.png new file mode 100644 index 00000000..19f0307e Binary files /dev/null and b/blockchains/ethereum/assets/0xe0c8087CE1a17bdd5D6c12eb52F8d7efF7791987/logo.png differ diff --git a/blockchains/ethereum/assets/0xe0feCb16153deE0CA3F85f692F4bB27FA8C0af65/info.json b/blockchains/ethereum/assets/0xe0feCb16153deE0CA3F85f692F4bB27FA8C0af65/info.json new file mode 100644 index 00000000..a8b371c9 --- /dev/null +++ b/blockchains/ethereum/assets/0xe0feCb16153deE0CA3F85f692F4bB27FA8C0af65/info.json @@ -0,0 +1,11 @@ +{ + "name": "GroupAd Dollar", + "symbol": "GAD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe0feCb16153deE0CA3F85f692F4bB27FA8C0af65", + "status": "abandoned", + "id": "0xe0feCb16153deE0CA3F85f692F4bB27FA8C0af65" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe0feCb16153deE0CA3F85f692F4bB27FA8C0af65/logo.png b/blockchains/ethereum/assets/0xe0feCb16153deE0CA3F85f692F4bB27FA8C0af65/logo.png new file mode 100755 index 00000000..fafa2fd6 Binary files /dev/null and b/blockchains/ethereum/assets/0xe0feCb16153deE0CA3F85f692F4bB27FA8C0af65/logo.png differ diff --git a/blockchains/ethereum/assets/0xe1030B48b2033314979143766d7dC1F40ef8CE11/info.json b/blockchains/ethereum/assets/0xe1030B48b2033314979143766d7dC1F40ef8CE11/info.json new file mode 100644 index 00000000..c6557677 --- /dev/null +++ b/blockchains/ethereum/assets/0xe1030B48b2033314979143766d7dC1F40ef8CE11/info.json @@ -0,0 +1,29 @@ +{ + "name": "The People's Coin", + "website": "https://thepeoplescoin.money/", + "description": "PEEPS is a community-driven coin built by people within that very same community. It will host an ever-adapting ecosystem built with the visibility and security of the ETH network. The transparency and welcoming community will both allow organic growth and the promotion of ideas to improve the existing crypto landscape.", + "explorer": "https://etherscan.io/token/0xe1030B48b2033314979143766d7dC1F40ef8CE11", + "type": "ERC20", + "symbol": "PEEPS", + "decimals": 18, + "status": "abandoned", + "id": "0xe1030B48b2033314979143766d7dC1F40ef8CE11", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/groups/thepeoplescoin/" + }, + { + "name": "x", + "url": "https://x.com/ThePeoples_Coin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/PEEPScoin/" + }, + { + "name": "telegram", + "url": "https://t.me/ThePeoplesCoinOfficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe11609b9a51CAF7d32A55896386aC52ED90e66F1/info.json b/blockchains/ethereum/assets/0xe11609b9a51CAF7d32A55896386aC52ED90e66F1/info.json new file mode 100644 index 00000000..d261ee25 --- /dev/null +++ b/blockchains/ethereum/assets/0xe11609b9a51CAF7d32A55896386aC52ED90e66F1/info.json @@ -0,0 +1,11 @@ +{ + "name": "COMIKETCOIN", + "symbol": "CMIT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://cmitcoin.com/en/", + "explorer": "https://etherscan.io/token/0xe11609b9a51CAF7d32A55896386aC52ED90e66F1", + "status": "abandoned", + "id": "0xe11609b9a51CAF7d32A55896386aC52ED90e66F1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe11609b9a51CAF7d32A55896386aC52ED90e66F1/logo.png b/blockchains/ethereum/assets/0xe11609b9a51CAF7d32A55896386aC52ED90e66F1/logo.png new file mode 100644 index 00000000..29edfa17 Binary files /dev/null and b/blockchains/ethereum/assets/0xe11609b9a51CAF7d32A55896386aC52ED90e66F1/logo.png differ diff --git a/blockchains/ethereum/assets/0xe120c1ECBfdFeA7F0A8f0Ee30063491E8c26fedf/info.json b/blockchains/ethereum/assets/0xe120c1ECBfdFeA7F0A8f0Ee30063491E8c26fedf/info.json new file mode 100644 index 00000000..a237dd3e --- /dev/null +++ b/blockchains/ethereum/assets/0xe120c1ECBfdFeA7F0A8f0Ee30063491E8c26fedf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Suretly", + "symbol": "SUR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.suretly.com/", + "explorer": "https://etherscan.io/token/0xe120c1ECBfdFeA7F0A8f0Ee30063491E8c26fedf", + "status": "abandoned", + "id": "0xe120c1ECBfdFeA7F0A8f0Ee30063491E8c26fedf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe120c1ECBfdFeA7F0A8f0Ee30063491E8c26fedf/logo.png b/blockchains/ethereum/assets/0xe120c1ECBfdFeA7F0A8f0Ee30063491E8c26fedf/logo.png new file mode 100644 index 00000000..25ddf8f7 Binary files /dev/null and b/blockchains/ethereum/assets/0xe120c1ECBfdFeA7F0A8f0Ee30063491E8c26fedf/logo.png differ diff --git a/blockchains/ethereum/assets/0xe12128D653B62F08fbED56BdeB65dB729B6691C3/info.json b/blockchains/ethereum/assets/0xe12128D653B62F08fbED56BdeB65dB729B6691C3/info.json new file mode 100644 index 00000000..27e275f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xe12128D653B62F08fbED56BdeB65dB729B6691C3/info.json @@ -0,0 +1,11 @@ +{ + "name": "BreezeCoin", + "symbol": "BRZC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe12128D653B62F08fbED56BdeB65dB729B6691C3", + "status": "abandoned", + "id": "0xe12128D653B62F08fbED56BdeB65dB729B6691C3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe12128D653B62F08fbED56BdeB65dB729B6691C3/logo.png b/blockchains/ethereum/assets/0xe12128D653B62F08fbED56BdeB65dB729B6691C3/logo.png new file mode 100644 index 00000000..f8515d78 Binary files /dev/null and b/blockchains/ethereum/assets/0xe12128D653B62F08fbED56BdeB65dB729B6691C3/logo.png differ diff --git a/blockchains/ethereum/assets/0xe138FDa441fC31B36171122397a8A11d6cd2c479/info.json b/blockchains/ethereum/assets/0xe138FDa441fC31B36171122397a8A11d6cd2c479/info.json new file mode 100644 index 00000000..dea83cb3 --- /dev/null +++ b/blockchains/ethereum/assets/0xe138FDa441fC31B36171122397a8A11d6cd2c479/info.json @@ -0,0 +1,11 @@ +{ + "name": "GTIB", + "symbol": "GTC", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://gtibcoin.com", + "explorer": "https://etherscan.io/token/0xe138FDa441fC31B36171122397a8A11d6cd2c479", + "status": "abandoned", + "id": "0xe138FDa441fC31B36171122397a8A11d6cd2c479" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe138FDa441fC31B36171122397a8A11d6cd2c479/logo.png b/blockchains/ethereum/assets/0xe138FDa441fC31B36171122397a8A11d6cd2c479/logo.png new file mode 100644 index 00000000..1a1fcc84 Binary files /dev/null and b/blockchains/ethereum/assets/0xe138FDa441fC31B36171122397a8A11d6cd2c479/logo.png differ diff --git a/blockchains/ethereum/assets/0xe142f2af4A5bC4a24D97AFe227b94230BAbB1065/info.json b/blockchains/ethereum/assets/0xe142f2af4A5bC4a24D97AFe227b94230BAbB1065/info.json new file mode 100644 index 00000000..98c53ea2 --- /dev/null +++ b/blockchains/ethereum/assets/0xe142f2af4A5bC4a24D97AFe227b94230BAbB1065/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C526642", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe142f2af4A5bC4a24D97AFe227b94230BAbB1065", + "status": "abandoned", + "id": "0xe142f2af4A5bC4a24D97AFe227b94230BAbB1065" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe142f2af4A5bC4a24D97AFe227b94230BAbB1065/logo.png b/blockchains/ethereum/assets/0xe142f2af4A5bC4a24D97AFe227b94230BAbB1065/logo.png new file mode 100644 index 00000000..32b89743 Binary files /dev/null and b/blockchains/ethereum/assets/0xe142f2af4A5bC4a24D97AFe227b94230BAbB1065/logo.png differ diff --git a/blockchains/ethereum/assets/0xe15254a13D34F9700320330abcb7c7F857aF2Fb7/info.json b/blockchains/ethereum/assets/0xe15254a13D34F9700320330abcb7c7F857aF2Fb7/info.json new file mode 100644 index 00000000..f2ea4f5a --- /dev/null +++ b/blockchains/ethereum/assets/0xe15254a13D34F9700320330abcb7c7F857aF2Fb7/info.json @@ -0,0 +1,11 @@ +{ + "name": "KAPA COIN", + "symbol": "KAPA", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe15254a13D34F9700320330abcb7c7F857aF2Fb7", + "status": "abandoned", + "id": "0xe15254a13D34F9700320330abcb7c7F857aF2Fb7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe15254a13D34F9700320330abcb7c7F857aF2Fb7/logo.png b/blockchains/ethereum/assets/0xe15254a13D34F9700320330abcb7c7F857aF2Fb7/logo.png new file mode 100644 index 00000000..32beb3c0 Binary files /dev/null and b/blockchains/ethereum/assets/0xe15254a13D34F9700320330abcb7c7F857aF2Fb7/logo.png differ diff --git a/blockchains/ethereum/assets/0xe172F366678EC7B559F6C2913a437BaaDfd4e6c8/info.json b/blockchains/ethereum/assets/0xe172F366678EC7B559F6C2913a437BaaDfd4e6c8/info.json new file mode 100644 index 00000000..66cfc5bb --- /dev/null +++ b/blockchains/ethereum/assets/0xe172F366678EC7B559F6C2913a437BaaDfd4e6c8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kauri", + "website": "https://kauricrypto.com", + "description": "Kauri token is main utility medium within British Asset Investment Ecosystem built, on the Ethereum platform.", + "explorer": "https://etherscan.io/token/0xe172f366678ec7b559f6c2913a437baadfd4e6c8", + "type": "ERC20", + "symbol": "KAU", + "decimals": 8, + "status": "active", + "id": "0xe172F366678EC7B559F6C2913a437BaaDfd4e6c8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe172F366678EC7B559F6C2913a437BaaDfd4e6c8/logo.png b/blockchains/ethereum/assets/0xe172F366678EC7B559F6C2913a437BaaDfd4e6c8/logo.png new file mode 100644 index 00000000..18d07550 Binary files /dev/null and b/blockchains/ethereum/assets/0xe172F366678EC7B559F6C2913a437BaaDfd4e6c8/logo.png differ diff --git a/blockchains/ethereum/assets/0xe18AF2C54B852AC2260834534CE70661ABbB321B/info.json b/blockchains/ethereum/assets/0xe18AF2C54B852AC2260834534CE70661ABbB321B/info.json new file mode 100644 index 00000000..209ab2d9 --- /dev/null +++ b/blockchains/ethereum/assets/0xe18AF2C54B852AC2260834534CE70661ABbB321B/info.json @@ -0,0 +1,11 @@ +{ + "name": "BDAO", + "website": "https://bdao.network", + "description": "BDAO Network is a decentralized and autonomous reward platform that runs on the Ethereum blockchain through smart contracts.", + "explorer": "https://etherscan.io/token/0xe18AF2C54B852AC2260834534CE70661ABbB321B", + "type": "ERC20", + "symbol": "BDAO", + "decimals": 18, + "status": "active", + "id": "0xe18AF2C54B852AC2260834534CE70661ABbB321B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe18AF2C54B852AC2260834534CE70661ABbB321B/logo.png b/blockchains/ethereum/assets/0xe18AF2C54B852AC2260834534CE70661ABbB321B/logo.png new file mode 100644 index 00000000..fc65c3ff Binary files /dev/null and b/blockchains/ethereum/assets/0xe18AF2C54B852AC2260834534CE70661ABbB321B/logo.png differ diff --git a/blockchains/ethereum/assets/0xe1A178B681BD05964d3e3Ed33AE731577d9d96dD/info.json b/blockchains/ethereum/assets/0xe1A178B681BD05964d3e3Ed33AE731577d9d96dD/info.json new file mode 100644 index 00000000..c0de33a8 --- /dev/null +++ b/blockchains/ethereum/assets/0xe1A178B681BD05964d3e3Ed33AE731577d9d96dD/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOX Token", + "symbol": "BOX", + "type": "ERC20", + "decimals": 18, + "description": "BOX offers a secure, convenient and streamlined crypto asset management system for institutional investment, audit risk control and crypto-exchange platforms.", + "website": "https://box.la", + "explorer": "https://etherscan.io/token/0xe1A178B681BD05964d3e3Ed33AE731577d9d96dD", + "status": "active", + "id": "0xe1A178B681BD05964d3e3Ed33AE731577d9d96dD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe1A178B681BD05964d3e3Ed33AE731577d9d96dD/logo.png b/blockchains/ethereum/assets/0xe1A178B681BD05964d3e3Ed33AE731577d9d96dD/logo.png new file mode 100644 index 00000000..53e130fd Binary files /dev/null and b/blockchains/ethereum/assets/0xe1A178B681BD05964d3e3Ed33AE731577d9d96dD/logo.png differ diff --git a/blockchains/ethereum/assets/0xe1A26d61f8AC0d22A355eDBc5053f01C5992190c/info.json b/blockchains/ethereum/assets/0xe1A26d61f8AC0d22A355eDBc5053f01C5992190c/info.json new file mode 100644 index 00000000..e4d81aa5 --- /dev/null +++ b/blockchains/ethereum/assets/0xe1A26d61f8AC0d22A355eDBc5053f01C5992190c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Inspeer", + "symbol": "INSP", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe1A26d61f8AC0d22A355eDBc5053f01C5992190c", + "status": "abandoned", + "id": "0xe1A26d61f8AC0d22A355eDBc5053f01C5992190c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe1A26d61f8AC0d22A355eDBc5053f01C5992190c/logo.png b/blockchains/ethereum/assets/0xe1A26d61f8AC0d22A355eDBc5053f01C5992190c/logo.png new file mode 100755 index 00000000..998245f5 Binary files /dev/null and b/blockchains/ethereum/assets/0xe1A26d61f8AC0d22A355eDBc5053f01C5992190c/logo.png differ diff --git a/blockchains/ethereum/assets/0xe1D5C2cBe00CCE58Ebd3a2Ede42F2ea3018ad199/info.json b/blockchains/ethereum/assets/0xe1D5C2cBe00CCE58Ebd3a2Ede42F2ea3018ad199/info.json new file mode 100644 index 00000000..b6e53af5 --- /dev/null +++ b/blockchains/ethereum/assets/0xe1D5C2cBe00CCE58Ebd3a2Ede42F2ea3018ad199/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitWex", + "symbol": "BXW", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe1D5C2cBe00CCE58Ebd3a2Ede42F2ea3018ad199", + "status": "abandoned", + "id": "0xe1D5C2cBe00CCE58Ebd3a2Ede42F2ea3018ad199" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe1D5C2cBe00CCE58Ebd3a2Ede42F2ea3018ad199/logo.png b/blockchains/ethereum/assets/0xe1D5C2cBe00CCE58Ebd3a2Ede42F2ea3018ad199/logo.png new file mode 100644 index 00000000..fd07f417 Binary files /dev/null and b/blockchains/ethereum/assets/0xe1D5C2cBe00CCE58Ebd3a2Ede42F2ea3018ad199/logo.png differ diff --git a/blockchains/ethereum/assets/0xe1E70407c8cdB588425fe7736e30DF139110949F/info.json b/blockchains/ethereum/assets/0xe1E70407c8cdB588425fe7736e30DF139110949F/info.json new file mode 100644 index 00000000..a8dbf428 --- /dev/null +++ b/blockchains/ethereum/assets/0xe1E70407c8cdB588425fe7736e30DF139110949F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Protocol", + "symbol": "BTP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe1E70407c8cdB588425fe7736e30DF139110949F", + "status": "abandoned", + "id": "0xe1E70407c8cdB588425fe7736e30DF139110949F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe1E70407c8cdB588425fe7736e30DF139110949F/logo.png b/blockchains/ethereum/assets/0xe1E70407c8cdB588425fe7736e30DF139110949F/logo.png new file mode 100644 index 00000000..5ad247e0 Binary files /dev/null and b/blockchains/ethereum/assets/0xe1E70407c8cdB588425fe7736e30DF139110949F/logo.png differ diff --git a/blockchains/ethereum/assets/0xe1F4328DEF6AE4aE2EEAc62D58BaEaEcF05E8d30/info.json b/blockchains/ethereum/assets/0xe1F4328DEF6AE4aE2EEAc62D58BaEaEcF05E8d30/info.json new file mode 100644 index 00000000..09c547a8 --- /dev/null +++ b/blockchains/ethereum/assets/0xe1F4328DEF6AE4aE2EEAc62D58BaEaEcF05E8d30/info.json @@ -0,0 +1,11 @@ +{ + "name": "Serve", + "symbol": "SERV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe1F4328DEF6AE4aE2EEAc62D58BaEaEcF05E8d30", + "status": "abandoned", + "id": "0xe1F4328DEF6AE4aE2EEAc62D58BaEaEcF05E8d30" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe1F4328DEF6AE4aE2EEAc62D58BaEaEcF05E8d30/logo.png b/blockchains/ethereum/assets/0xe1F4328DEF6AE4aE2EEAc62D58BaEaEcF05E8d30/logo.png new file mode 100644 index 00000000..9bd9adb4 Binary files /dev/null and b/blockchains/ethereum/assets/0xe1F4328DEF6AE4aE2EEAc62D58BaEaEcF05E8d30/logo.png differ diff --git a/blockchains/ethereum/assets/0xe20cd43391aB47AFc6B4cDDc45840E45688a73ab/info.json b/blockchains/ethereum/assets/0xe20cd43391aB47AFc6B4cDDc45840E45688a73ab/info.json new file mode 100644 index 00000000..bfbaeae0 --- /dev/null +++ b/blockchains/ethereum/assets/0xe20cd43391aB47AFc6B4cDDc45840E45688a73ab/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 329-CN36", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe20cd43391aB47AFc6B4cDDc45840E45688a73ab", + "status": "abandoned", + "id": "0xe20cd43391aB47AFc6B4cDDc45840E45688a73ab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe20cd43391aB47AFc6B4cDDc45840E45688a73ab/logo.png b/blockchains/ethereum/assets/0xe20cd43391aB47AFc6B4cDDc45840E45688a73ab/logo.png new file mode 100644 index 00000000..cff8d8f9 Binary files /dev/null and b/blockchains/ethereum/assets/0xe20cd43391aB47AFc6B4cDDc45840E45688a73ab/logo.png differ diff --git a/blockchains/ethereum/assets/0xe23cd160761f63FC3a1cF78Aa034b6cdF97d3E0C/info.json b/blockchains/ethereum/assets/0xe23cd160761f63FC3a1cF78Aa034b6cdF97d3E0C/info.json new file mode 100644 index 00000000..1c12a7f4 --- /dev/null +++ b/blockchains/ethereum/assets/0xe23cd160761f63FC3a1cF78Aa034b6cdF97d3E0C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mainstreet Token", + "symbol": "MIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe23cd160761f63FC3a1cF78Aa034b6cdF97d3E0C", + "status": "abandoned", + "id": "0xe23cd160761f63FC3a1cF78Aa034b6cdF97d3E0C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe23cd160761f63FC3a1cF78Aa034b6cdF97d3E0C/logo.png b/blockchains/ethereum/assets/0xe23cd160761f63FC3a1cF78Aa034b6cdF97d3E0C/logo.png new file mode 100644 index 00000000..aa34d4c1 Binary files /dev/null and b/blockchains/ethereum/assets/0xe23cd160761f63FC3a1cF78Aa034b6cdF97d3E0C/logo.png differ diff --git a/blockchains/ethereum/assets/0xe24f25746FFf8b66AB6ac47DE2B082012DCA303D/info.json b/blockchains/ethereum/assets/0xe24f25746FFf8b66AB6ac47DE2B082012DCA303D/info.json new file mode 100644 index 00000000..002b21b9 --- /dev/null +++ b/blockchains/ethereum/assets/0xe24f25746FFf8b66AB6ac47DE2B082012DCA303D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Globo Token", + "symbol": "GLO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.globocrypto.co", + "explorer": "https://etherscan.io/token/0xe24f25746FFf8b66AB6ac47DE2B082012DCA303D", + "status": "abandoned", + "id": "0xe24f25746FFf8b66AB6ac47DE2B082012DCA303D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe24f25746FFf8b66AB6ac47DE2B082012DCA303D/logo.png b/blockchains/ethereum/assets/0xe24f25746FFf8b66AB6ac47DE2B082012DCA303D/logo.png new file mode 100644 index 00000000..5ff2e4df Binary files /dev/null and b/blockchains/ethereum/assets/0xe24f25746FFf8b66AB6ac47DE2B082012DCA303D/logo.png differ diff --git a/blockchains/ethereum/assets/0xe25b0BBA01Dc5630312B6A21927E578061A13f55/info.json b/blockchains/ethereum/assets/0xe25b0BBA01Dc5630312B6A21927E578061A13f55/info.json new file mode 100644 index 00000000..51c4f6dc --- /dev/null +++ b/blockchains/ethereum/assets/0xe25b0BBA01Dc5630312B6A21927E578061A13f55/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShipChain SHIP", + "symbol": "SHIP", + "type": "ERC20", + "decimals": 18, + "description": "ShipChain (SHIP) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://www.shipchain.io", + "explorer": "https://etherscan.io/token/0xe25b0BBA01Dc5630312B6A21927E578061A13f55", + "status": "active", + "id": "0xe25b0BBA01Dc5630312B6A21927E578061A13f55" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe25b0BBA01Dc5630312B6A21927E578061A13f55/logo.png b/blockchains/ethereum/assets/0xe25b0BBA01Dc5630312B6A21927E578061A13f55/logo.png new file mode 100644 index 00000000..aab290e0 Binary files /dev/null and b/blockchains/ethereum/assets/0xe25b0BBA01Dc5630312B6A21927E578061A13f55/logo.png differ diff --git a/blockchains/ethereum/assets/0xe25bCec5D3801cE3a794079BF94adF1B8cCD802D/info.json b/blockchains/ethereum/assets/0xe25bCec5D3801cE3a794079BF94adF1B8cCD802D/info.json new file mode 100644 index 00000000..c5ab9ee6 --- /dev/null +++ b/blockchains/ethereum/assets/0xe25bCec5D3801cE3a794079BF94adF1B8cCD802D/info.json @@ -0,0 +1,11 @@ +{ + "name": "MATRIX AI Network", + "symbol": "MAN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.matrix.io/", + "explorer": "https://etherscan.io/token/0xe25bCec5D3801cE3a794079BF94adF1B8cCD802D", + "status": "abandoned", + "id": "0xe25bCec5D3801cE3a794079BF94adF1B8cCD802D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe25bCec5D3801cE3a794079BF94adF1B8cCD802D/logo.png b/blockchains/ethereum/assets/0xe25bCec5D3801cE3a794079BF94adF1B8cCD802D/logo.png new file mode 100755 index 00000000..abdfd63c Binary files /dev/null and b/blockchains/ethereum/assets/0xe25bCec5D3801cE3a794079BF94adF1B8cCD802D/logo.png differ diff --git a/blockchains/ethereum/assets/0xe26517A9967299453d3F1B48Aa005E6127e67210/info.json b/blockchains/ethereum/assets/0xe26517A9967299453d3F1B48Aa005E6127e67210/info.json new file mode 100644 index 00000000..bd06ada2 --- /dev/null +++ b/blockchains/ethereum/assets/0xe26517A9967299453d3F1B48Aa005E6127e67210/info.json @@ -0,0 +1,11 @@ +{ + "name": "NIMFA Token", + "symbol": "NIMFA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe26517A9967299453d3F1B48Aa005E6127e67210", + "status": "abandoned", + "id": "0xe26517A9967299453d3F1B48Aa005E6127e67210" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe26517A9967299453d3F1B48Aa005E6127e67210/logo.png b/blockchains/ethereum/assets/0xe26517A9967299453d3F1B48Aa005E6127e67210/logo.png new file mode 100644 index 00000000..a1ac4ace Binary files /dev/null and b/blockchains/ethereum/assets/0xe26517A9967299453d3F1B48Aa005E6127e67210/logo.png differ diff --git a/blockchains/ethereum/assets/0xe26F68c8Bc955C781DB91BD4db704C9c7cb39098/info.json b/blockchains/ethereum/assets/0xe26F68c8Bc955C781DB91BD4db704C9c7cb39098/info.json new file mode 100644 index 00000000..aeb4a73e --- /dev/null +++ b/blockchains/ethereum/assets/0xe26F68c8Bc955C781DB91BD4db704C9c7cb39098/info.json @@ -0,0 +1,11 @@ +{ + "name": "LOANCOIN", + "symbol": "LOAN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe26F68c8Bc955C781DB91BD4db704C9c7cb39098", + "status": "abandoned", + "id": "0xe26F68c8Bc955C781DB91BD4db704C9c7cb39098" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe26F68c8Bc955C781DB91BD4db704C9c7cb39098/logo.png b/blockchains/ethereum/assets/0xe26F68c8Bc955C781DB91BD4db704C9c7cb39098/logo.png new file mode 100644 index 00000000..cd8cfcd3 Binary files /dev/null and b/blockchains/ethereum/assets/0xe26F68c8Bc955C781DB91BD4db704C9c7cb39098/logo.png differ diff --git a/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/info.json b/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/info.json new file mode 100644 index 00000000..c0a0d897 --- /dev/null +++ b/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/info.json @@ -0,0 +1,15 @@ +{ + "name": "Injective", + "website": "https://injectiveprotocol.com", + "description": "The Universal Layer-2 DeFi Protocol for Cross-Chain Derivatives Trading.", + "explorer": "https://etherscan.io/token/0xe28b3b32b6c345a34ff64674606124dd5aceca30", + "research": "https://research.binance.com/en/projects/injective-protocol", + "type": "ERC20", + "symbol": "INJ", + "decimals": 18, + "status": "active", + "id": "0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/logo.png b/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/logo.png new file mode 100644 index 00000000..e9a2fe6b Binary files /dev/null and b/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/logo.png differ diff --git a/blockchains/ethereum/assets/0xe2D0612710af166fdeB63b792E3CEd8Da4A52830/info.json b/blockchains/ethereum/assets/0xe2D0612710af166fdeB63b792E3CEd8Da4A52830/info.json new file mode 100644 index 00000000..f1aae5e7 --- /dev/null +++ b/blockchains/ethereum/assets/0xe2D0612710af166fdeB63b792E3CEd8Da4A52830/info.json @@ -0,0 +1,11 @@ +{ + "name": "Missile", + "symbol": "MISLE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe2D0612710af166fdeB63b792E3CEd8Da4A52830", + "status": "abandoned", + "id": "0xe2D0612710af166fdeB63b792E3CEd8Da4A52830" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe2D0612710af166fdeB63b792E3CEd8Da4A52830/logo.png b/blockchains/ethereum/assets/0xe2D0612710af166fdeB63b792E3CEd8Da4A52830/logo.png new file mode 100644 index 00000000..c350deb8 Binary files /dev/null and b/blockchains/ethereum/assets/0xe2D0612710af166fdeB63b792E3CEd8Da4A52830/logo.png differ diff --git a/blockchains/ethereum/assets/0xe2Ed8B2beb61C85BeafF764cb5c2F2a93e0179e2/info.json b/blockchains/ethereum/assets/0xe2Ed8B2beb61C85BeafF764cb5c2F2a93e0179e2/info.json new file mode 100644 index 00000000..6efa817c --- /dev/null +++ b/blockchains/ethereum/assets/0xe2Ed8B2beb61C85BeafF764cb5c2F2a93e0179e2/info.json @@ -0,0 +1,11 @@ +{ + "name": "BuidlersFund", + "symbol": "FOXHOUND", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe2Ed8B2beb61C85BeafF764cb5c2F2a93e0179e2", + "status": "abandoned", + "id": "0xe2Ed8B2beb61C85BeafF764cb5c2F2a93e0179e2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe2Ed8B2beb61C85BeafF764cb5c2F2a93e0179e2/logo.png b/blockchains/ethereum/assets/0xe2Ed8B2beb61C85BeafF764cb5c2F2a93e0179e2/logo.png new file mode 100644 index 00000000..cd3f4894 Binary files /dev/null and b/blockchains/ethereum/assets/0xe2Ed8B2beb61C85BeafF764cb5c2F2a93e0179e2/logo.png differ diff --git a/blockchains/ethereum/assets/0xe2F120ecAB0Ac0dB6081F96Ea7bb4503763b8C42/info.json b/blockchains/ethereum/assets/0xe2F120ecAB0Ac0dB6081F96Ea7bb4503763b8C42/info.json new file mode 100644 index 00000000..c41efb7a --- /dev/null +++ b/blockchains/ethereum/assets/0xe2F120ecAB0Ac0dB6081F96Ea7bb4503763b8C42/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg8500", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe2F120ecAB0Ac0dB6081F96Ea7bb4503763b8C42", + "status": "abandoned", + "id": "0xe2F120ecAB0Ac0dB6081F96Ea7bb4503763b8C42" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe2F120ecAB0Ac0dB6081F96Ea7bb4503763b8C42/logo.png b/blockchains/ethereum/assets/0xe2F120ecAB0Ac0dB6081F96Ea7bb4503763b8C42/logo.png new file mode 100644 index 00000000..f41d5058 Binary files /dev/null and b/blockchains/ethereum/assets/0xe2F120ecAB0Ac0dB6081F96Ea7bb4503763b8C42/logo.png differ diff --git a/blockchains/ethereum/assets/0xe2f2a5C287993345a840Db3B0845fbC70f5935a5/info.json b/blockchains/ethereum/assets/0xe2f2a5C287993345a840Db3B0845fbC70f5935a5/info.json new file mode 100644 index 00000000..409515d5 --- /dev/null +++ b/blockchains/ethereum/assets/0xe2f2a5C287993345a840Db3B0845fbC70f5935a5/info.json @@ -0,0 +1,20 @@ +{ + "name": "mStable USD", + "website": "https://mstable.org", + "description": "mStable unites stablecoins, lending and swapping into one standard.", + "explorer": "https://etherscan.io/token/0xe2f2a5C287993345a840Db3B0845fbC70f5935a5", + "type": "ERC20", + "symbol": "mUSD", + "decimals": 18, + "status": "active", + "id": "0xe2f2a5C287993345a840Db3B0845fbC70f5935a5", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/mstable_" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe2f2a5C287993345a840Db3B0845fbC70f5935a5/logo.png b/blockchains/ethereum/assets/0xe2f2a5C287993345a840Db3B0845fbC70f5935a5/logo.png new file mode 100644 index 00000000..424b20d3 Binary files /dev/null and b/blockchains/ethereum/assets/0xe2f2a5C287993345a840Db3B0845fbC70f5935a5/logo.png differ diff --git a/blockchains/ethereum/assets/0xe30e02f049957e2A5907589e06Ba646fB2c321bA/info.json b/blockchains/ethereum/assets/0xe30e02f049957e2A5907589e06Ba646fB2c321bA/info.json new file mode 100644 index 00000000..545712fd --- /dev/null +++ b/blockchains/ethereum/assets/0xe30e02f049957e2A5907589e06Ba646fB2c321bA/info.json @@ -0,0 +1,11 @@ +{ + "name": "DRP Utility", + "symbol": "DRPU", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe30e02f049957e2A5907589e06Ba646fB2c321bA", + "status": "abandoned", + "id": "0xe30e02f049957e2A5907589e06Ba646fB2c321bA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe30e02f049957e2A5907589e06Ba646fB2c321bA/logo.png b/blockchains/ethereum/assets/0xe30e02f049957e2A5907589e06Ba646fB2c321bA/logo.png new file mode 100644 index 00000000..4fcef278 Binary files /dev/null and b/blockchains/ethereum/assets/0xe30e02f049957e2A5907589e06Ba646fB2c321bA/logo.png differ diff --git a/blockchains/ethereum/assets/0xe3152D33c08807Ba9C301c5110e78B9203137C0c/info.json b/blockchains/ethereum/assets/0xe3152D33c08807Ba9C301c5110e78B9203137C0c/info.json new file mode 100644 index 00000000..33dbe078 --- /dev/null +++ b/blockchains/ethereum/assets/0xe3152D33c08807Ba9C301c5110e78B9203137C0c/info.json @@ -0,0 +1,11 @@ +{ + "name": "AzureGold242", + "symbol": "ATG20", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe3152D33c08807Ba9C301c5110e78B9203137C0c", + "status": "abandoned", + "id": "0xe3152D33c08807Ba9C301c5110e78B9203137C0c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe3152D33c08807Ba9C301c5110e78B9203137C0c/logo.png b/blockchains/ethereum/assets/0xe3152D33c08807Ba9C301c5110e78B9203137C0c/logo.png new file mode 100644 index 00000000..d6dd72ca Binary files /dev/null and b/blockchains/ethereum/assets/0xe3152D33c08807Ba9C301c5110e78B9203137C0c/logo.png differ diff --git a/blockchains/ethereum/assets/0xe318cb668eeC37370a1BC9DF70a855aC2Db9f014/info.json b/blockchains/ethereum/assets/0xe318cb668eeC37370a1BC9DF70a855aC2Db9f014/info.json new file mode 100644 index 00000000..1091d052 --- /dev/null +++ b/blockchains/ethereum/assets/0xe318cb668eeC37370a1BC9DF70a855aC2Db9f014/info.json @@ -0,0 +1,11 @@ +{ + "name": "FITNESSCOIN", + "symbol": "FITNESS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe318cb668eeC37370a1BC9DF70a855aC2Db9f014", + "status": "abandoned", + "id": "0xe318cb668eeC37370a1BC9DF70a855aC2Db9f014" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe318cb668eeC37370a1BC9DF70a855aC2Db9f014/logo.png b/blockchains/ethereum/assets/0xe318cb668eeC37370a1BC9DF70a855aC2Db9f014/logo.png new file mode 100755 index 00000000..931ea39f Binary files /dev/null and b/blockchains/ethereum/assets/0xe318cb668eeC37370a1BC9DF70a855aC2Db9f014/logo.png differ diff --git a/blockchains/ethereum/assets/0xe31DEbd7AbFF90B06bCA21010dD860d8701fd901/info.json b/blockchains/ethereum/assets/0xe31DEbd7AbFF90B06bCA21010dD860d8701fd901/info.json new file mode 100644 index 00000000..abc347ce --- /dev/null +++ b/blockchains/ethereum/assets/0xe31DEbd7AbFF90B06bCA21010dD860d8701fd901/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniBomb", + "symbol": "UBOMB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe31DEbd7AbFF90B06bCA21010dD860d8701fd901", + "status": "abandoned", + "id": "0xe31DEbd7AbFF90B06bCA21010dD860d8701fd901" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe31DEbd7AbFF90B06bCA21010dD860d8701fd901/logo.png b/blockchains/ethereum/assets/0xe31DEbd7AbFF90B06bCA21010dD860d8701fd901/logo.png new file mode 100644 index 00000000..e49d72b6 Binary files /dev/null and b/blockchains/ethereum/assets/0xe31DEbd7AbFF90B06bCA21010dD860d8701fd901/logo.png differ diff --git a/blockchains/ethereum/assets/0xe3278DF3eB2085bA9B6899812A99a10f9CA5E0Df/info.json b/blockchains/ethereum/assets/0xe3278DF3eB2085bA9B6899812A99a10f9CA5E0Df/info.json new file mode 100644 index 00000000..0288e509 --- /dev/null +++ b/blockchains/ethereum/assets/0xe3278DF3eB2085bA9B6899812A99a10f9CA5E0Df/info.json @@ -0,0 +1,11 @@ +{ + "name": "TouristToken", + "symbol": "TOTO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://globaltourist.io/", + "explorer": "https://etherscan.io/token/0xe3278DF3eB2085bA9B6899812A99a10f9CA5E0Df", + "status": "abandoned", + "id": "0xe3278DF3eB2085bA9B6899812A99a10f9CA5E0Df" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe3278DF3eB2085bA9B6899812A99a10f9CA5E0Df/logo.png b/blockchains/ethereum/assets/0xe3278DF3eB2085bA9B6899812A99a10f9CA5E0Df/logo.png new file mode 100644 index 00000000..1b406081 Binary files /dev/null and b/blockchains/ethereum/assets/0xe3278DF3eB2085bA9B6899812A99a10f9CA5E0Df/logo.png differ diff --git a/blockchains/ethereum/assets/0xe32eB0fdb7CD7C824dEA0Acfa4bB49f23d7Ef345/info.json b/blockchains/ethereum/assets/0xe32eB0fdb7CD7C824dEA0Acfa4bB49f23d7Ef345/info.json new file mode 100644 index 00000000..6c3317ba --- /dev/null +++ b/blockchains/ethereum/assets/0xe32eB0fdb7CD7C824dEA0Acfa4bB49f23d7Ef345/info.json @@ -0,0 +1,11 @@ +{ + "name": "DSD Token", + "symbol": "DSD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe32eB0fdb7CD7C824dEA0Acfa4bB49f23d7Ef345", + "status": "abandoned", + "id": "0xe32eB0fdb7CD7C824dEA0Acfa4bB49f23d7Ef345" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe32eB0fdb7CD7C824dEA0Acfa4bB49f23d7Ef345/logo.png b/blockchains/ethereum/assets/0xe32eB0fdb7CD7C824dEA0Acfa4bB49f23d7Ef345/logo.png new file mode 100644 index 00000000..4f0dd07c Binary files /dev/null and b/blockchains/ethereum/assets/0xe32eB0fdb7CD7C824dEA0Acfa4bB49f23d7Ef345/logo.png differ diff --git a/blockchains/ethereum/assets/0xe343167631d89B6Ffc58B88d6b7fB0228795491D/info.json b/blockchains/ethereum/assets/0xe343167631d89B6Ffc58B88d6b7fB0228795491D/info.json new file mode 100644 index 00000000..8a0a750d --- /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 00000000..0650c14a Binary files /dev/null and b/blockchains/ethereum/assets/0xe343167631d89B6Ffc58B88d6b7fB0228795491D/logo.png differ diff --git a/blockchains/ethereum/assets/0xe35a92B24439329E864921E0BeD78166b7EF2194/info.json b/blockchains/ethereum/assets/0xe35a92B24439329E864921E0BeD78166b7EF2194/info.json new file mode 100644 index 00000000..4cb0fbf7 --- /dev/null +++ b/blockchains/ethereum/assets/0xe35a92B24439329E864921E0BeD78166b7EF2194/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-4/30M34", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe35a92B24439329E864921E0BeD78166b7EF2194", + "status": "abandoned", + "id": "0xe35a92B24439329E864921E0BeD78166b7EF2194" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe35a92B24439329E864921E0BeD78166b7EF2194/logo.png b/blockchains/ethereum/assets/0xe35a92B24439329E864921E0BeD78166b7EF2194/logo.png new file mode 100644 index 00000000..39b8aef2 Binary files /dev/null and b/blockchains/ethereum/assets/0xe35a92B24439329E864921E0BeD78166b7EF2194/logo.png differ diff --git a/blockchains/ethereum/assets/0xe3818504c1B32bF1557b16C238B2E01Fd3149C17/info.json b/blockchains/ethereum/assets/0xe3818504c1B32bF1557b16C238B2E01Fd3149C17/info.json new file mode 100644 index 00000000..829631cc --- /dev/null +++ b/blockchains/ethereum/assets/0xe3818504c1B32bF1557b16C238B2E01Fd3149C17/info.json @@ -0,0 +1,11 @@ +{ + "name": "PILLAR", + "symbol": "PLR", + "type": "ERC20", + "decimals": 18, + "description": "Starting with a cryptocurrency wallet, Pillar will evolve into an open-source ecosystem where you control what, when, and with who you share your personal information.", + "website": "https://pillarproject.io/", + "explorer": "https://etherscan.io/token/0xe3818504c1B32bF1557b16C238B2E01Fd3149C17", + "status": "active", + "id": "0xe3818504c1B32bF1557b16C238B2E01Fd3149C17" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe3818504c1B32bF1557b16C238B2E01Fd3149C17/logo.png b/blockchains/ethereum/assets/0xe3818504c1B32bF1557b16C238B2E01Fd3149C17/logo.png new file mode 100644 index 00000000..782fcd48 Binary files /dev/null and b/blockchains/ethereum/assets/0xe3818504c1B32bF1557b16C238B2E01Fd3149C17/logo.png differ diff --git a/blockchains/ethereum/assets/0xe3831c5A982B279A198456D577cfb90424cb6340/info.json b/blockchains/ethereum/assets/0xe3831c5A982B279A198456D577cfb90424cb6340/info.json new file mode 100644 index 00000000..379d919b --- /dev/null +++ b/blockchains/ethereum/assets/0xe3831c5A982B279A198456D577cfb90424cb6340/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "\"\"", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe3831c5A982B279A198456D577cfb90424cb6340", + "status": "abandoned", + "id": "0xe3831c5A982B279A198456D577cfb90424cb6340" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe3831c5A982B279A198456D577cfb90424cb6340/logo.png b/blockchains/ethereum/assets/0xe3831c5A982B279A198456D577cfb90424cb6340/logo.png new file mode 100644 index 00000000..4acae176 Binary files /dev/null and b/blockchains/ethereum/assets/0xe3831c5A982B279A198456D577cfb90424cb6340/logo.png differ diff --git a/blockchains/ethereum/assets/0xe3b80F1F907878Ca1F6da0645d9DbCA2f0b76A81/info.json b/blockchains/ethereum/assets/0xe3b80F1F907878Ca1F6da0645d9DbCA2f0b76A81/info.json new file mode 100644 index 00000000..07266555 --- /dev/null +++ b/blockchains/ethereum/assets/0xe3b80F1F907878Ca1F6da0645d9DbCA2f0b76A81/info.json @@ -0,0 +1,11 @@ +{ + "name": "Black Diamond", + "symbol": "BKD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe3b80F1F907878Ca1F6da0645d9DbCA2f0b76A81", + "status": "abandoned", + "id": "0xe3b80F1F907878Ca1F6da0645d9DbCA2f0b76A81" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe3b80F1F907878Ca1F6da0645d9DbCA2f0b76A81/logo.png b/blockchains/ethereum/assets/0xe3b80F1F907878Ca1F6da0645d9DbCA2f0b76A81/logo.png new file mode 100644 index 00000000..6eed3041 Binary files /dev/null and b/blockchains/ethereum/assets/0xe3b80F1F907878Ca1F6da0645d9DbCA2f0b76A81/logo.png differ diff --git a/blockchains/ethereum/assets/0xe3c408BD53c31C085a1746AF401A4042954ff740/info.json b/blockchains/ethereum/assets/0xe3c408BD53c31C085a1746AF401A4042954ff740/info.json new file mode 100644 index 00000000..aec20954 --- /dev/null +++ b/blockchains/ethereum/assets/0xe3c408BD53c31C085a1746AF401A4042954ff740/info.json @@ -0,0 +1,25 @@ +{ + "name": "GreenMetaverseToken", + "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 00000000..9037e29d Binary files /dev/null and b/blockchains/ethereum/assets/0xe3c408BD53c31C085a1746AF401A4042954ff740/logo.png differ diff --git a/blockchains/ethereum/assets/0xe3cDB92b094a3BeF3f16103b53bECfb17A3558ad/info.json b/blockchains/ethereum/assets/0xe3cDB92b094a3BeF3f16103b53bECfb17A3558ad/info.json new file mode 100644 index 00000000..98bdff77 --- /dev/null +++ b/blockchains/ethereum/assets/0xe3cDB92b094a3BeF3f16103b53bECfb17A3558ad/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEG Wrapped BTC", + "symbol": "fBTC", + "type": "ERC20", + "decimals": 8, + "description": "FEG Wrapped BTC", + "website": "https://fegtoken.com", + "explorer": "https://etherscan.io/token/0xe3cdb92b094a3bef3f16103b53becfb17a3558ad", + "status": "active", + "id": "0xe3cDB92b094a3BeF3f16103b53bECfb17A3558ad" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe3cDB92b094a3BeF3f16103b53bECfb17A3558ad/logo.png b/blockchains/ethereum/assets/0xe3cDB92b094a3BeF3f16103b53bECfb17A3558ad/logo.png new file mode 100644 index 00000000..c42da6a9 Binary files /dev/null and b/blockchains/ethereum/assets/0xe3cDB92b094a3BeF3f16103b53bECfb17A3558ad/logo.png differ diff --git a/blockchains/ethereum/assets/0xe40aFd59DaF2e6bF3A2116409cc3329958E1b667/info.json b/blockchains/ethereum/assets/0xe40aFd59DaF2e6bF3A2116409cc3329958E1b667/info.json new file mode 100644 index 00000000..e489f0f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xe40aFd59DaF2e6bF3A2116409cc3329958E1b667/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bit Holding", + "symbol": "BHLD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe40aFd59DaF2e6bF3A2116409cc3329958E1b667", + "status": "abandoned", + "id": "0xe40aFd59DaF2e6bF3A2116409cc3329958E1b667" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe40aFd59DaF2e6bF3A2116409cc3329958E1b667/logo.png b/blockchains/ethereum/assets/0xe40aFd59DaF2e6bF3A2116409cc3329958E1b667/logo.png new file mode 100644 index 00000000..3dff3574 Binary files /dev/null and b/blockchains/ethereum/assets/0xe40aFd59DaF2e6bF3A2116409cc3329958E1b667/logo.png differ diff --git a/blockchains/ethereum/assets/0xe431a4c5DB8B73c773e06cf2587dA1EB53c41373/info.json b/blockchains/ethereum/assets/0xe431a4c5DB8B73c773e06cf2587dA1EB53c41373/info.json new file mode 100644 index 00000000..e06326dd --- /dev/null +++ b/blockchains/ethereum/assets/0xe431a4c5DB8B73c773e06cf2587dA1EB53c41373/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trias Token", + "symbol": "TRY", + "type": "ERC20", + "decimals": 18, + "description": "TRIAS aims to create a new-generation public chain that will support the execution of general-purpose native-applications on all platforms.", + "website": "https://www.trias.one", + "explorer": "https://etherscan.io/token/0xe431a4c5DB8B73c773e06cf2587dA1EB53c41373", + "status": "abandoned", + "id": "0xe431a4c5DB8B73c773e06cf2587dA1EB53c41373" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe455D0862B18B9106141F733e85f3336A38e3D78/info.json b/blockchains/ethereum/assets/0xe455D0862B18B9106141F733e85f3336A38e3D78/info.json new file mode 100644 index 00000000..9283a805 --- /dev/null +++ b/blockchains/ethereum/assets/0xe455D0862B18B9106141F733e85f3336A38e3D78/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decentralized Loan of Finance", + "symbol": "DLAF", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe455D0862B18B9106141F733e85f3336A38e3D78", + "status": "abandoned", + "id": "0xe455D0862B18B9106141F733e85f3336A38e3D78" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe455D0862B18B9106141F733e85f3336A38e3D78/logo.png b/blockchains/ethereum/assets/0xe455D0862B18B9106141F733e85f3336A38e3D78/logo.png new file mode 100644 index 00000000..39eca401 Binary files /dev/null and b/blockchains/ethereum/assets/0xe455D0862B18B9106141F733e85f3336A38e3D78/logo.png differ diff --git a/blockchains/ethereum/assets/0xe469c4473af82217B30CF17b10BcDb6C8c796e75/info.json b/blockchains/ethereum/assets/0xe469c4473af82217B30CF17b10BcDb6C8c796e75/info.json new file mode 100644 index 00000000..3e5f1fa0 --- /dev/null +++ b/blockchains/ethereum/assets/0xe469c4473af82217B30CF17b10BcDb6C8c796e75/info.json @@ -0,0 +1,11 @@ +{ + "name": "EXRP Network", + "symbol": "EXRN", + "type": "ERC20", + "decimals": 0, + "description": "Connecting the blockchains using crosschain gateway built with smart contracts.", + "website": "https://exrnchain.com/", + "explorer": "https://etherscan.io/token/0xe469c4473af82217B30CF17b10BcDb6C8c796e75", + "status": "active", + "id": "0xe469c4473af82217B30CF17b10BcDb6C8c796e75" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe469c4473af82217B30CF17b10BcDb6C8c796e75/logo.png b/blockchains/ethereum/assets/0xe469c4473af82217B30CF17b10BcDb6C8c796e75/logo.png new file mode 100644 index 00000000..cc15c4c7 Binary files /dev/null and b/blockchains/ethereum/assets/0xe469c4473af82217B30CF17b10BcDb6C8c796e75/logo.png differ diff --git a/blockchains/ethereum/assets/0xe47EE8d2A389EE924C5d0fE88296D6FAd55DA573/info.json b/blockchains/ethereum/assets/0xe47EE8d2A389EE924C5d0fE88296D6FAd55DA573/info.json new file mode 100644 index 00000000..b116b142 --- /dev/null +++ b/blockchains/ethereum/assets/0xe47EE8d2A389EE924C5d0fE88296D6FAd55DA573/info.json @@ -0,0 +1,11 @@ +{ + "name": "PAHUEG", + "symbol": "PAHUEG", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe47EE8d2A389EE924C5d0fE88296D6FAd55DA573", + "status": "abandoned", + "id": "0xe47EE8d2A389EE924C5d0fE88296D6FAd55DA573" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe47EE8d2A389EE924C5d0fE88296D6FAd55DA573/logo.png b/blockchains/ethereum/assets/0xe47EE8d2A389EE924C5d0fE88296D6FAd55DA573/logo.png new file mode 100644 index 00000000..1cc231da Binary files /dev/null and b/blockchains/ethereum/assets/0xe47EE8d2A389EE924C5d0fE88296D6FAd55DA573/logo.png differ diff --git a/blockchains/ethereum/assets/0xe481f2311C774564D517d015e678c2736A25Ddd3/info.json b/blockchains/ethereum/assets/0xe481f2311C774564D517d015e678c2736A25Ddd3/info.json new file mode 100644 index 00000000..78cbc59e --- /dev/null +++ b/blockchains/ethereum/assets/0xe481f2311C774564D517d015e678c2736A25Ddd3/info.json @@ -0,0 +1,11 @@ +{ + "name": "DefHold", + "symbol": "DEFO", + "type": "ERC20", + "decimals": 18, + "description": "DefHold is a non-inflationary DeFi ecosystem aiming to provide yield generating investments’ strategies for long-term crypto holders.", + "website": "https://defhold.com/", + "explorer": "https://etherscan.io/token/0xe481f2311C774564D517d015e678c2736A25Ddd3", + "status": "active", + "id": "0xe481f2311C774564D517d015e678c2736A25Ddd3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe481f2311C774564D517d015e678c2736A25Ddd3/logo.png b/blockchains/ethereum/assets/0xe481f2311C774564D517d015e678c2736A25Ddd3/logo.png new file mode 100644 index 00000000..a8144593 Binary files /dev/null and b/blockchains/ethereum/assets/0xe481f2311C774564D517d015e678c2736A25Ddd3/logo.png differ diff --git a/blockchains/ethereum/assets/0xe498ED9b64f2a21060FF2B0Af8C84cfd4653D672/info.json b/blockchains/ethereum/assets/0xe498ED9b64f2a21060FF2B0Af8C84cfd4653D672/info.json new file mode 100644 index 00000000..53179759 --- /dev/null +++ b/blockchains/ethereum/assets/0xe498ED9b64f2a21060FF2B0Af8C84cfd4653D672/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 191-CN13", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe498ED9b64f2a21060FF2B0Af8C84cfd4653D672", + "status": "abandoned", + "id": "0xe498ED9b64f2a21060FF2B0Af8C84cfd4653D672" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe498ED9b64f2a21060FF2B0Af8C84cfd4653D672/logo.png b/blockchains/ethereum/assets/0xe498ED9b64f2a21060FF2B0Af8C84cfd4653D672/logo.png new file mode 100644 index 00000000..cda34799 Binary files /dev/null and b/blockchains/ethereum/assets/0xe498ED9b64f2a21060FF2B0Af8C84cfd4653D672/logo.png differ diff --git a/blockchains/ethereum/assets/0xe4DCF361733d07ab6252B5ed13E237b5cE2a9ABa/info.json b/blockchains/ethereum/assets/0xe4DCF361733d07ab6252B5ed13E237b5cE2a9ABa/info.json new file mode 100644 index 00000000..56e2a099 --- /dev/null +++ b/blockchains/ethereum/assets/0xe4DCF361733d07ab6252B5ed13E237b5cE2a9ABa/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg6500", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe4DCF361733d07ab6252B5ed13E237b5cE2a9ABa", + "status": "abandoned", + "id": "0xe4DCF361733d07ab6252B5ed13E237b5cE2a9ABa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe4DCF361733d07ab6252B5ed13E237b5cE2a9ABa/logo.png b/blockchains/ethereum/assets/0xe4DCF361733d07ab6252B5ed13E237b5cE2a9ABa/logo.png new file mode 100644 index 00000000..1725e69d Binary files /dev/null and b/blockchains/ethereum/assets/0xe4DCF361733d07ab6252B5ed13E237b5cE2a9ABa/logo.png differ diff --git a/blockchains/ethereum/assets/0xe4aa52842a0d6752853DBE30eC5472eF4C8de7b7/info.json b/blockchains/ethereum/assets/0xe4aa52842a0d6752853DBE30eC5472eF4C8de7b7/info.json new file mode 100644 index 00000000..3c1c8b67 --- /dev/null +++ b/blockchains/ethereum/assets/0xe4aa52842a0d6752853DBE30eC5472eF4C8de7b7/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TEST mg4000", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe4aa52842a0d6752853DBE30eC5472eF4C8de7b7", + "status": "abandoned", + "id": "0xe4aa52842a0d6752853DBE30eC5472eF4C8de7b7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe4aa52842a0d6752853DBE30eC5472eF4C8de7b7/logo.png b/blockchains/ethereum/assets/0xe4aa52842a0d6752853DBE30eC5472eF4C8de7b7/logo.png new file mode 100644 index 00000000..06ef9a7e Binary files /dev/null and b/blockchains/ethereum/assets/0xe4aa52842a0d6752853DBE30eC5472eF4C8de7b7/logo.png differ diff --git a/blockchains/ethereum/assets/0xe4eAddFE3DF04C6B17db43148DC1D29C4Da06857/info.json b/blockchains/ethereum/assets/0xe4eAddFE3DF04C6B17db43148DC1D29C4Da06857/info.json new file mode 100644 index 00000000..73ff31a2 --- /dev/null +++ b/blockchains/ethereum/assets/0xe4eAddFE3DF04C6B17db43148DC1D29C4Da06857/info.json @@ -0,0 +1,11 @@ +{ + "name": "G8C", + "symbol": "GAEC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe4eAddFE3DF04C6B17db43148DC1D29C4Da06857", + "status": "abandoned", + "id": "0xe4eAddFE3DF04C6B17db43148DC1D29C4Da06857" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe4eAddFE3DF04C6B17db43148DC1D29C4Da06857/logo.png b/blockchains/ethereum/assets/0xe4eAddFE3DF04C6B17db43148DC1D29C4Da06857/logo.png new file mode 100644 index 00000000..116081e9 Binary files /dev/null and b/blockchains/ethereum/assets/0xe4eAddFE3DF04C6B17db43148DC1D29C4Da06857/logo.png differ diff --git a/blockchains/ethereum/assets/0xe4f1bCaE296FF9385842Fc24cc7D18ab94121223/info.json b/blockchains/ethereum/assets/0xe4f1bCaE296FF9385842Fc24cc7D18ab94121223/info.json new file mode 100644 index 00000000..43148f79 --- /dev/null +++ b/blockchains/ethereum/assets/0xe4f1bCaE296FF9385842Fc24cc7D18ab94121223/info.json @@ -0,0 +1,11 @@ +{ + "name": "BiTing", + "symbol": "BTFM", + "type": "ERC20", + "decimals": 5, + "description": "-", + "website": "https://www.bitingfm.com/", + "explorer": "https://etherscan.io/token/0xe4f1bCaE296FF9385842Fc24cc7D18ab94121223", + "status": "abandoned", + "id": "0xe4f1bCaE296FF9385842Fc24cc7D18ab94121223" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe4f1bCaE296FF9385842Fc24cc7D18ab94121223/logo.png b/blockchains/ethereum/assets/0xe4f1bCaE296FF9385842Fc24cc7D18ab94121223/logo.png new file mode 100755 index 00000000..084b2f99 Binary files /dev/null and b/blockchains/ethereum/assets/0xe4f1bCaE296FF9385842Fc24cc7D18ab94121223/logo.png differ diff --git a/blockchains/ethereum/assets/0xe4f7A608B0eEdC93A97d1249c8bbDa0e98077d29/info.json b/blockchains/ethereum/assets/0xe4f7A608B0eEdC93A97d1249c8bbDa0e98077d29/info.json new file mode 100644 index 00000000..f4413d20 --- /dev/null +++ b/blockchains/ethereum/assets/0xe4f7A608B0eEdC93A97d1249c8bbDa0e98077d29/info.json @@ -0,0 +1,11 @@ +{ + "name": "REVO", + "symbol": "REV", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe4f7A608B0eEdC93A97d1249c8bbDa0e98077d29", + "status": "abandoned", + "id": "0xe4f7A608B0eEdC93A97d1249c8bbDa0e98077d29" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe4f7A608B0eEdC93A97d1249c8bbDa0e98077d29/logo.png b/blockchains/ethereum/assets/0xe4f7A608B0eEdC93A97d1249c8bbDa0e98077d29/logo.png new file mode 100644 index 00000000..c73a943e Binary files /dev/null and b/blockchains/ethereum/assets/0xe4f7A608B0eEdC93A97d1249c8bbDa0e98077d29/logo.png differ diff --git a/blockchains/ethereum/assets/0xe5018913F2fdf33971864804dDB5fcA25C539032/info.json b/blockchains/ethereum/assets/0xe5018913F2fdf33971864804dDB5fcA25C539032/info.json new file mode 100644 index 00000000..6fb5b77d --- /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 00000000..6a274d6d Binary files /dev/null and b/blockchains/ethereum/assets/0xe5018913F2fdf33971864804dDB5fcA25C539032/logo.png differ diff --git a/blockchains/ethereum/assets/0xe530441f4f73bDB6DC2fA5aF7c3fC5fD551Ec838/info.json b/blockchains/ethereum/assets/0xe530441f4f73bDB6DC2fA5aF7c3fC5fD551Ec838/info.json new file mode 100644 index 00000000..14f53c4f --- /dev/null +++ b/blockchains/ethereum/assets/0xe530441f4f73bDB6DC2fA5aF7c3fC5fD551Ec838/info.json @@ -0,0 +1,11 @@ +{ + "name": "GSENetwork", + "symbol": "GSE", + "type": "ERC20", + "decimals": 4, + "description": "GSENetwork is committed to establishing a transparent and secure phenomenon-level decentralized credit network. With the help of the Internet of Things technology, the pass incentive system, and the composite pass economy design, smart contract services can be implemented through the sharing economy to achieve credit recovery and redefine classical sharing.", + "website": "https://gse.network", + "explorer": "https://etherscan.io/token/0xe530441f4f73bDB6DC2fA5aF7c3fC5fD551Ec838", + "status": "active", + "id": "0xe530441f4f73bDB6DC2fA5aF7c3fC5fD551Ec838" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe530441f4f73bDB6DC2fA5aF7c3fC5fD551Ec838/logo.png b/blockchains/ethereum/assets/0xe530441f4f73bDB6DC2fA5aF7c3fC5fD551Ec838/logo.png new file mode 100644 index 00000000..70afba4d Binary files /dev/null and b/blockchains/ethereum/assets/0xe530441f4f73bDB6DC2fA5aF7c3fC5fD551Ec838/logo.png differ diff --git a/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/info.json b/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/info.json new file mode 100644 index 00000000..4a590661 --- /dev/null +++ b/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/info.json @@ -0,0 +1,34 @@ +{ + "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 new file mode 100644 index 00000000..c154830e Binary files /dev/null and b/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/logo.png differ diff --git a/blockchains/ethereum/assets/0xe541504417670FB76b612B41B4392d967a1956c7/info.json b/blockchains/ethereum/assets/0xe541504417670FB76b612B41B4392d967a1956c7/info.json new file mode 100644 index 00000000..4e98ba3a --- /dev/null +++ b/blockchains/ethereum/assets/0xe541504417670FB76b612B41B4392d967a1956c7/info.json @@ -0,0 +1,11 @@ +{ + "name": "BSC", + "symbol": "BSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bitsonic.co.kr", + "explorer": "https://etherscan.io/token/0xe541504417670FB76b612B41B4392d967a1956c7", + "status": "abandoned", + "id": "0xe541504417670FB76b612B41B4392d967a1956c7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe541504417670FB76b612B41B4392d967a1956c7/logo.png b/blockchains/ethereum/assets/0xe541504417670FB76b612B41B4392d967a1956c7/logo.png new file mode 100644 index 00000000..49ed32cc Binary files /dev/null and b/blockchains/ethereum/assets/0xe541504417670FB76b612B41B4392d967a1956c7/logo.png differ diff --git a/blockchains/ethereum/assets/0xe541b34f73a4789a033A962ad43655221B4E516e/info.json b/blockchains/ethereum/assets/0xe541b34f73a4789a033A962ad43655221B4E516e/info.json new file mode 100644 index 00000000..9fb6040b --- /dev/null +++ b/blockchains/ethereum/assets/0xe541b34f73a4789a033A962ad43655221B4E516e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Creatanium", + "symbol": "CMB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.plmp-fintech.com.sg/", + "explorer": "https://etherscan.io/token/0xe541b34f73a4789a033A962ad43655221B4E516e", + "status": "abandoned", + "id": "0xe541b34f73a4789a033A962ad43655221B4E516e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe541b34f73a4789a033A962ad43655221B4E516e/logo.png b/blockchains/ethereum/assets/0xe541b34f73a4789a033A962ad43655221B4E516e/logo.png new file mode 100644 index 00000000..24488183 Binary files /dev/null and b/blockchains/ethereum/assets/0xe541b34f73a4789a033A962ad43655221B4E516e/logo.png differ diff --git a/blockchains/ethereum/assets/0xe571519185098b2f4914cA973d48c090426D69ee/info.json b/blockchains/ethereum/assets/0xe571519185098b2f4914cA973d48c090426D69ee/info.json new file mode 100644 index 00000000..507dc312 --- /dev/null +++ b/blockchains/ethereum/assets/0xe571519185098b2f4914cA973d48c090426D69ee/info.json @@ -0,0 +1,11 @@ +{ + "name": "Miraz token", + "symbol": "MRZ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe571519185098b2f4914cA973d48c090426D69ee", + "status": "abandoned", + "id": "0xe571519185098b2f4914cA973d48c090426D69ee" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe571519185098b2f4914cA973d48c090426D69ee/logo.png b/blockchains/ethereum/assets/0xe571519185098b2f4914cA973d48c090426D69ee/logo.png new file mode 100644 index 00000000..b8ed4ed4 Binary files /dev/null and b/blockchains/ethereum/assets/0xe571519185098b2f4914cA973d48c090426D69ee/logo.png differ diff --git a/blockchains/ethereum/assets/0xe574c0c33A7A67d9b09F9F0AdDBB3dCA71A8F3E0/info.json b/blockchains/ethereum/assets/0xe574c0c33A7A67d9b09F9F0AdDBB3dCA71A8F3E0/info.json new file mode 100644 index 00000000..0d8546b7 --- /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 00000000..cd7eb288 Binary files /dev/null and b/blockchains/ethereum/assets/0xe574c0c33A7A67d9b09F9F0AdDBB3dCA71A8F3E0/logo.png differ diff --git a/blockchains/ethereum/assets/0xe577e0B200d00eBdecbFc1cd3F7E8E04C70476BE/info.json b/blockchains/ethereum/assets/0xe577e0B200d00eBdecbFc1cd3F7E8E04C70476BE/info.json new file mode 100644 index 00000000..83dee8e3 --- /dev/null +++ b/blockchains/ethereum/assets/0xe577e0B200d00eBdecbFc1cd3F7E8E04C70476BE/info.json @@ -0,0 +1,11 @@ +{ + "name": "xEuro", + "symbol": "xEUR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://xeuro.online/", + "explorer": "https://etherscan.io/token/0xe577e0B200d00eBdecbFc1cd3F7E8E04C70476BE", + "status": "abandoned", + "id": "0xe577e0B200d00eBdecbFc1cd3F7E8E04C70476BE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe577e0B200d00eBdecbFc1cd3F7E8E04C70476BE/logo.png b/blockchains/ethereum/assets/0xe577e0B200d00eBdecbFc1cd3F7E8E04C70476BE/logo.png new file mode 100644 index 00000000..343aff01 Binary files /dev/null and b/blockchains/ethereum/assets/0xe577e0B200d00eBdecbFc1cd3F7E8E04C70476BE/logo.png differ diff --git a/blockchains/ethereum/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json b/blockchains/ethereum/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json new file mode 100644 index 00000000..7ed6e9aa --- /dev/null +++ b/blockchains/ethereum/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json @@ -0,0 +1,44 @@ +{ + "name": "PayBolt", + "type": "ERC20", + "symbol": "PAY", + "decimals": 18, + "website": "https://www.paybolt.io/", + "description": "Pay expenses, earn $PAY rewards with your crypto tokens in near-instant time. Start spending your tokens at cafe, restaurant and everywhere.", + "explorer": "https://etherscan.io/token/0xe580074A10360404AF3ABfe2d524D5806D993ea3", + "status": "active", + "id": "0xe580074A10360404AF3ABfe2d524D5806D993ea3", + "links": [ + { + "name": "telegram", + "url": "https://t.me/PayBolt" + }, + { + "name": "x", + "url": "https://x.com/PayBoltofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/PayBolt" + }, + { + "name": "facebook", + "url": "https://facebook.com/PayBolt" + }, + { + "name": "whitepaper", + "url": "https://file.paybolt.io/paybolt_whitepaper.pdf" + }, + { + "name": "github", + "url": "https://github.com/paybolt" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/paybolt/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/logo.png b/blockchains/ethereum/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/logo.png new file mode 100644 index 00000000..83f7a479 Binary files /dev/null and b/blockchains/ethereum/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/logo.png differ diff --git a/blockchains/ethereum/assets/0xe5865adE1E2C1EE9a7CdD0c57a035b13EDd2d72C/info.json b/blockchains/ethereum/assets/0xe5865adE1E2C1EE9a7CdD0c57a035b13EDd2d72C/info.json new file mode 100644 index 00000000..24a298c6 --- /dev/null +++ b/blockchains/ethereum/assets/0xe5865adE1E2C1EE9a7CdD0c57a035b13EDd2d72C/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C572417", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe5865adE1E2C1EE9a7CdD0c57a035b13EDd2d72C", + "status": "abandoned", + "id": "0xe5865adE1E2C1EE9a7CdD0c57a035b13EDd2d72C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe5865adE1E2C1EE9a7CdD0c57a035b13EDd2d72C/logo.png b/blockchains/ethereum/assets/0xe5865adE1E2C1EE9a7CdD0c57a035b13EDd2d72C/logo.png new file mode 100644 index 00000000..496ff2d3 Binary files /dev/null and b/blockchains/ethereum/assets/0xe5865adE1E2C1EE9a7CdD0c57a035b13EDd2d72C/logo.png differ diff --git a/blockchains/ethereum/assets/0xe5A1Dd911C289B087202AED0dD85AfbA80373eed/info.json b/blockchains/ethereum/assets/0xe5A1Dd911C289B087202AED0dD85AfbA80373eed/info.json new file mode 100644 index 00000000..c25e2c5f --- /dev/null +++ b/blockchains/ethereum/assets/0xe5A1Dd911C289B087202AED0dD85AfbA80373eed/info.json @@ -0,0 +1,11 @@ +{ + "name": "\bÃy ", + "symbol": "\"\"", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe5A1Dd911C289B087202AED0dD85AfbA80373eed", + "status": "abandoned", + "id": "0xe5A1Dd911C289B087202AED0dD85AfbA80373eed" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe5A1Dd911C289B087202AED0dD85AfbA80373eed/logo.png b/blockchains/ethereum/assets/0xe5A1Dd911C289B087202AED0dD85AfbA80373eed/logo.png new file mode 100644 index 00000000..db60e41f Binary files /dev/null and b/blockchains/ethereum/assets/0xe5A1Dd911C289B087202AED0dD85AfbA80373eed/logo.png differ diff --git a/blockchains/ethereum/assets/0xe5b26BA77E6a4d79a7c54a5296d81254269D9700/info.json b/blockchains/ethereum/assets/0xe5b26BA77E6a4d79a7c54a5296d81254269D9700/info.json new file mode 100644 index 00000000..0796055e --- /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 00000000..cc372823 Binary files /dev/null and b/blockchains/ethereum/assets/0xe5b26BA77E6a4d79a7c54a5296d81254269D9700/logo.png differ diff --git a/blockchains/ethereum/assets/0xe5bC04919C2B373417B303d488Ac3fee75dbE3a6/info.json b/blockchains/ethereum/assets/0xe5bC04919C2B373417B303d488Ac3fee75dbE3a6/info.json new file mode 100644 index 00000000..7afcd010 --- /dev/null +++ b/blockchains/ethereum/assets/0xe5bC04919C2B373417B303d488Ac3fee75dbE3a6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dollar Lending Protocol", + "symbol": "DLP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe5bC04919C2B373417B303d488Ac3fee75dbE3a6", + "status": "abandoned", + "id": "0xe5bC04919C2B373417B303d488Ac3fee75dbE3a6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe5bC04919C2B373417B303d488Ac3fee75dbE3a6/logo.png b/blockchains/ethereum/assets/0xe5bC04919C2B373417B303d488Ac3fee75dbE3a6/logo.png new file mode 100644 index 00000000..917fee49 Binary files /dev/null and b/blockchains/ethereum/assets/0xe5bC04919C2B373417B303d488Ac3fee75dbE3a6/logo.png differ diff --git a/blockchains/ethereum/assets/0xe6179bB571D2d69837bE731da88C76e377ec4738/info.json b/blockchains/ethereum/assets/0xe6179bB571D2d69837bE731da88C76e377ec4738/info.json new file mode 100644 index 00000000..35219cfa --- /dev/null +++ b/blockchains/ethereum/assets/0xe6179bB571D2d69837bE731da88C76e377ec4738/info.json @@ -0,0 +1,17 @@ +{ + "name": "Wormhole.Finance", + "website": "https://wormhole.finance", + "description": "The first Trade to Farm DeFi coin on the Ethereum Blockchain", + "explorer": "https://etherscan.io/token/0xe6179bB571D2d69837bE731da88C76e377ec4738", + "type": "ERC20", + "symbol": "WHOLE", + "decimals": 18, + "status": "active", + "id": "0xe6179bB571D2d69837bE731da88C76e377ec4738", + "links": [ + { + "name": "x", + "url": "https://x.com/wormhole_group" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe6179bB571D2d69837bE731da88C76e377ec4738/logo.png b/blockchains/ethereum/assets/0xe6179bB571D2d69837bE731da88C76e377ec4738/logo.png new file mode 100644 index 00000000..1c9fe0fe Binary files /dev/null and b/blockchains/ethereum/assets/0xe6179bB571D2d69837bE731da88C76e377ec4738/logo.png differ diff --git a/blockchains/ethereum/assets/0xe61eECfDBa2aD1669cee138f1919D08cEd070B83/info.json b/blockchains/ethereum/assets/0xe61eECfDBa2aD1669cee138f1919D08cEd070B83/info.json new file mode 100644 index 00000000..e5425aef --- /dev/null +++ b/blockchains/ethereum/assets/0xe61eECfDBa2aD1669cee138f1919D08cEd070B83/info.json @@ -0,0 +1,21 @@ +{ + "name": "VGTGToken", + "website": "http://vgtgtoken.com", + "description": "VGTGToken Gold is a part of VGT Project. It is bringing the power of blockchain to the gaming industry.", + "explorer": "https://etherscan.io/token/0xe61eECfDBa2aD1669cee138f1919D08cEd070B83", + "type": "ERC20", + "symbol": "VGTG", + "decimals": 18, + "status": "active", + "id": "0xe61eECfDBa2aD1669cee138f1919D08cEd070B83", + "links": [ + { + "name": "x", + "url": "https://x.com/VideoGamesToken" + }, + { + "name": "telegram", + "url": "https://t.me/VideoGamesToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe61eECfDBa2aD1669cee138f1919D08cEd070B83/logo.png b/blockchains/ethereum/assets/0xe61eECfDBa2aD1669cee138f1919D08cEd070B83/logo.png new file mode 100644 index 00000000..2429125c Binary files /dev/null and b/blockchains/ethereum/assets/0xe61eECfDBa2aD1669cee138f1919D08cEd070B83/logo.png differ diff --git a/blockchains/ethereum/assets/0xe6410569602124506658Ff992F258616Ea2D4A3D/info.json b/blockchains/ethereum/assets/0xe6410569602124506658Ff992F258616Ea2D4A3D/info.json new file mode 100644 index 00000000..8a3b9a82 --- /dev/null +++ b/blockchains/ethereum/assets/0xe6410569602124506658Ff992F258616Ea2D4A3D/info.json @@ -0,0 +1,29 @@ +{ + "name": "KatanaToken", + "website": "https://katana.finance/", + "description": "Katana is a DeFi Yield Farming platform that helps users to have profit as much as possible from their crypto assets.", + "explorer": "https://etherscan.io/token/0xe6410569602124506658Ff992F258616Ea2D4A3D", + "type": "ERC20", + "symbol": "KATANA", + "decimals": 18, + "status": "active", + "id": "0xe6410569602124506658Ff992F258616Ea2D4A3D", + "links": [ + { + "name": "github", + "url": "https://github.com/katanafinance" + }, + { + "name": "x", + "url": "https://x.com/katanafinance" + }, + { + "name": "telegram", + "url": "https://t.me/katanafinance" + }, + { + "name": "medium", + "url": "https://medium.com/katanafinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe6410569602124506658Ff992F258616Ea2D4A3D/logo.png b/blockchains/ethereum/assets/0xe6410569602124506658Ff992F258616Ea2D4A3D/logo.png new file mode 100644 index 00000000..35992ca6 Binary files /dev/null and b/blockchains/ethereum/assets/0xe6410569602124506658Ff992F258616Ea2D4A3D/logo.png differ diff --git a/blockchains/ethereum/assets/0xe64b47931f28f89Cc7A0C6965Ecf89EaDB4975f5/info.json b/blockchains/ethereum/assets/0xe64b47931f28f89Cc7A0C6965Ecf89EaDB4975f5/info.json new file mode 100644 index 00000000..a70e1f63 --- /dev/null +++ b/blockchains/ethereum/assets/0xe64b47931f28f89Cc7A0C6965Ecf89EaDB4975f5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ludos Protocol", + "symbol": "LUD", + "type": "ERC20", + "decimals": 18, + "description": "The Ludos Protocol is a decentralized solution game ecosystem. The protocol is mainly composed of three parts:Main chain + multi-sidechain infrastructure, Toolbox for game developers, DApps, and incentivized game ecosystem.", + "website": "http://ludos.one/", + "explorer": "https://etherscan.io/token/0xe64b47931f28f89Cc7A0C6965Ecf89EaDB4975f5", + "status": "active", + "id": "0xe64b47931f28f89Cc7A0C6965Ecf89EaDB4975f5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe64b47931f28f89Cc7A0C6965Ecf89EaDB4975f5/logo.png b/blockchains/ethereum/assets/0xe64b47931f28f89Cc7A0C6965Ecf89EaDB4975f5/logo.png new file mode 100755 index 00000000..428ece88 Binary files /dev/null and b/blockchains/ethereum/assets/0xe64b47931f28f89Cc7A0C6965Ecf89EaDB4975f5/logo.png differ diff --git a/blockchains/ethereum/assets/0xe6710e0CdA178f3D921f456902707B0d4C4A332B/info.json b/blockchains/ethereum/assets/0xe6710e0CdA178f3D921f456902707B0d4C4A332B/info.json new file mode 100644 index 00000000..d0bf4cd5 --- /dev/null +++ b/blockchains/ethereum/assets/0xe6710e0CdA178f3D921f456902707B0d4C4A332B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Julien", + "symbol": "JULIEN", + "type": "ERC20", + "decimals": 4, + "description": "$JULIEN token is social token of Julien Bouteloup. You can exchange $JULIEN token for DeFI lessons: smart contract coding, arbitrage, cryptoeconomics, investment etc", + "website": "https://app.tryroll.com/rewards/JULIEN", + "explorer": "https://etherscan.io/token/0xe6710e0CdA178f3D921f456902707B0d4C4A332B", + "status": "active", + "id": "0xe6710e0CdA178f3D921f456902707B0d4C4A332B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe6710e0CdA178f3D921f456902707B0d4C4A332B/logo.png b/blockchains/ethereum/assets/0xe6710e0CdA178f3D921f456902707B0d4C4A332B/logo.png new file mode 100644 index 00000000..72e02ee5 Binary files /dev/null and b/blockchains/ethereum/assets/0xe6710e0CdA178f3D921f456902707B0d4C4A332B/logo.png differ diff --git a/blockchains/ethereum/assets/0xe6Be436DF1Ff96956dfe0b2b77FAB84EDe30236F/info.json b/blockchains/ethereum/assets/0xe6Be436DF1Ff96956dfe0b2b77FAB84EDe30236F/info.json new file mode 100644 index 00000000..6341e69b --- /dev/null +++ b/blockchains/ethereum/assets/0xe6Be436DF1Ff96956dfe0b2b77FAB84EDe30236F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Revelation Coin", + "symbol": "REV", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://revelationcoin.org", + "explorer": "https://etherscan.io/token/0xe6Be436DF1Ff96956dfe0b2b77FAB84EDe30236F", + "status": "abandoned", + "id": "0xe6Be436DF1Ff96956dfe0b2b77FAB84EDe30236F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe6Be436DF1Ff96956dfe0b2b77FAB84EDe30236F/logo.png b/blockchains/ethereum/assets/0xe6Be436DF1Ff96956dfe0b2b77FAB84EDe30236F/logo.png new file mode 100644 index 00000000..38e6840a Binary files /dev/null and b/blockchains/ethereum/assets/0xe6Be436DF1Ff96956dfe0b2b77FAB84EDe30236F/logo.png differ diff --git a/blockchains/ethereum/assets/0xe6dd6d2AAf061F3558127621cC5384D1aF7cd022/info.json b/blockchains/ethereum/assets/0xe6dd6d2AAf061F3558127621cC5384D1aF7cd022/info.json new file mode 100644 index 00000000..991d7a44 --- /dev/null +++ b/blockchains/ethereum/assets/0xe6dd6d2AAf061F3558127621cC5384D1aF7cd022/info.json @@ -0,0 +1,11 @@ +{ + "name": "HSSD coin", + "symbol": "HSSD", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe6dd6d2AAf061F3558127621cC5384D1aF7cd022", + "status": "abandoned", + "id": "0xe6dd6d2AAf061F3558127621cC5384D1aF7cd022" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe6dd6d2AAf061F3558127621cC5384D1aF7cd022/logo.png b/blockchains/ethereum/assets/0xe6dd6d2AAf061F3558127621cC5384D1aF7cd022/logo.png new file mode 100644 index 00000000..341e9a1a Binary files /dev/null and b/blockchains/ethereum/assets/0xe6dd6d2AAf061F3558127621cC5384D1aF7cd022/logo.png differ diff --git a/blockchains/ethereum/assets/0xe6f74dcfa0E20883008d8C16b6d9a329189D0C30/info.json b/blockchains/ethereum/assets/0xe6f74dcfa0E20883008d8C16b6d9a329189D0C30/info.json new file mode 100644 index 00000000..c7fdc029 --- /dev/null +++ b/blockchains/ethereum/assets/0xe6f74dcfa0E20883008d8C16b6d9a329189D0C30/info.json @@ -0,0 +1,11 @@ +{ + "name": "FinTech Coin", + "symbol": "FTC", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe6f74dcfa0E20883008d8C16b6d9a329189D0C30", + "status": "abandoned", + "id": "0xe6f74dcfa0E20883008d8C16b6d9a329189D0C30" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe6f74dcfa0E20883008d8C16b6d9a329189D0C30/logo.png b/blockchains/ethereum/assets/0xe6f74dcfa0E20883008d8C16b6d9a329189D0C30/logo.png new file mode 100755 index 00000000..c2f769d2 Binary files /dev/null and b/blockchains/ethereum/assets/0xe6f74dcfa0E20883008d8C16b6d9a329189D0C30/logo.png differ diff --git a/blockchains/ethereum/assets/0xe6fd75ff38Adca4B97FBCD938c86b98772431867/info.json b/blockchains/ethereum/assets/0xe6fd75ff38Adca4B97FBCD938c86b98772431867/info.json new file mode 100644 index 00000000..17e5132f --- /dev/null +++ b/blockchains/ethereum/assets/0xe6fd75ff38Adca4B97FBCD938c86b98772431867/info.json @@ -0,0 +1,29 @@ +{ + "name": "ELA on Ethereum", + "website": "https://elastos.info", + "description": "Elastos is not an entity – it’s a global movement to build an internet that works for everyone. Starting with open source, decentralized web services, developers can build applications where all data is exchanged peer-to-peer, stored in a decentralized fashion, and secured by its owners via verifiable blockchain immutability and smart contract execution. This is an Internet of Value – with Values.", + "explorer": "https://etherscan.io/token/0xe6fd75ff38Adca4B97FBCD938c86b98772431867", + "type": "ERC20", + "symbol": "ELA", + "decimals": 18, + "status": "active", + "id": "0xe6fd75ff38Adca4B97FBCD938c86b98772431867", + "links": [ + { + "name": "github", + "url": "https://github.com/elastos" + }, + { + "name": "x", + "url": "https://x.com/ElastosInfo" + }, + { + "name": "telegram", + "url": "https://t.me/elastosgroup" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Elastos" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe6fd75ff38Adca4B97FBCD938c86b98772431867/logo.png b/blockchains/ethereum/assets/0xe6fd75ff38Adca4B97FBCD938c86b98772431867/logo.png new file mode 100644 index 00000000..674707da Binary files /dev/null and b/blockchains/ethereum/assets/0xe6fd75ff38Adca4B97FBCD938c86b98772431867/logo.png differ diff --git a/blockchains/ethereum/assets/0xe7049114562C759d5E9D1d25783773Ccd61C0a65/info.json b/blockchains/ethereum/assets/0xe7049114562C759d5E9D1d25783773Ccd61C0a65/info.json new file mode 100644 index 00000000..a155cfbd --- /dev/null +++ b/blockchains/ethereum/assets/0xe7049114562C759d5E9D1d25783773Ccd61C0a65/info.json @@ -0,0 +1,11 @@ +{ + "name": "Balance token", + "symbol": "BAL", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe7049114562C759d5E9D1d25783773Ccd61C0a65", + "status": "abandoned", + "id": "0xe7049114562C759d5E9D1d25783773Ccd61C0a65" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe7049114562C759d5E9D1d25783773Ccd61C0a65/logo.png b/blockchains/ethereum/assets/0xe7049114562C759d5E9D1d25783773Ccd61C0a65/logo.png new file mode 100644 index 00000000..006f9994 Binary files /dev/null and b/blockchains/ethereum/assets/0xe7049114562C759d5E9D1d25783773Ccd61C0a65/logo.png differ diff --git a/blockchains/ethereum/assets/0xe707d9D42ba282811c985085080aC103cF544043/info.json b/blockchains/ethereum/assets/0xe707d9D42ba282811c985085080aC103cF544043/info.json new file mode 100644 index 00000000..32ee4817 --- /dev/null +++ b/blockchains/ethereum/assets/0xe707d9D42ba282811c985085080aC103cF544043/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tokenestate Equity", + "symbol": "TEM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe707d9D42ba282811c985085080aC103cF544043", + "status": "abandoned", + "id": "0xe707d9D42ba282811c985085080aC103cF544043" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe707d9D42ba282811c985085080aC103cF544043/logo.png b/blockchains/ethereum/assets/0xe707d9D42ba282811c985085080aC103cF544043/logo.png new file mode 100644 index 00000000..639aca43 Binary files /dev/null and b/blockchains/ethereum/assets/0xe707d9D42ba282811c985085080aC103cF544043/logo.png differ diff --git a/blockchains/ethereum/assets/0xe737f948bDFe3bEAe9423292853EC0579173cebB/info.json b/blockchains/ethereum/assets/0xe737f948bDFe3bEAe9423292853EC0579173cebB/info.json new file mode 100644 index 00000000..47896fa4 --- /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 00000000..4fac0bda Binary files /dev/null and b/blockchains/ethereum/assets/0xe737f948bDFe3bEAe9423292853EC0579173cebB/logo.png differ diff --git a/blockchains/ethereum/assets/0xe74d6339890d6640eF12e6FBcaF7116f331D6d5D/info.json b/blockchains/ethereum/assets/0xe74d6339890d6640eF12e6FBcaF7116f331D6d5D/info.json new file mode 100644 index 00000000..ee266557 --- /dev/null +++ b/blockchains/ethereum/assets/0xe74d6339890d6640eF12e6FBcaF7116f331D6d5D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Triatics", + "symbol": "TRA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe74d6339890d6640eF12e6FBcaF7116f331D6d5D", + "status": "abandoned", + "id": "0xe74d6339890d6640eF12e6FBcaF7116f331D6d5D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe74d6339890d6640eF12e6FBcaF7116f331D6d5D/logo.png b/blockchains/ethereum/assets/0xe74d6339890d6640eF12e6FBcaF7116f331D6d5D/logo.png new file mode 100644 index 00000000..ad9ca451 Binary files /dev/null and b/blockchains/ethereum/assets/0xe74d6339890d6640eF12e6FBcaF7116f331D6d5D/logo.png differ diff --git a/blockchains/ethereum/assets/0xe75ad3aAB14E4B0dF8c5da4286608DaBb21Bd864/info.json b/blockchains/ethereum/assets/0xe75ad3aAB14E4B0dF8c5da4286608DaBb21Bd864/info.json new file mode 100644 index 00000000..18ebe852 --- /dev/null +++ b/blockchains/ethereum/assets/0xe75ad3aAB14E4B0dF8c5da4286608DaBb21Bd864/info.json @@ -0,0 +1,11 @@ +{ + "name": "AcuteAngleCoin", + "symbol": "AAC", + "type": "ERC20", + "decimals": 5, + "description": "Acute Angle Cloud (AAC) is a cryptocurrency and operates on the Ethereum platform.", + "website": "http://acuteangle.com", + "explorer": "https://etherscan.io/token/0xe75ad3aAB14E4B0dF8c5da4286608DaBb21Bd864", + "status": "active", + "id": "0xe75ad3aAB14E4B0dF8c5da4286608DaBb21Bd864" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe75ad3aAB14E4B0dF8c5da4286608DaBb21Bd864/logo.png b/blockchains/ethereum/assets/0xe75ad3aAB14E4B0dF8c5da4286608DaBb21Bd864/logo.png new file mode 100644 index 00000000..f2937071 Binary files /dev/null and b/blockchains/ethereum/assets/0xe75ad3aAB14E4B0dF8c5da4286608DaBb21Bd864/logo.png differ diff --git a/blockchains/ethereum/assets/0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D/info.json b/blockchains/ethereum/assets/0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D/info.json new file mode 100644 index 00000000..86cf7f87 --- /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 00000000..41b1d4f3 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 00000000..9950565d --- /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 00000000..50437376 Binary files /dev/null and b/blockchains/ethereum/assets/0xe77f6aCD24185e149e329C1C0F479201b9Ec2f4B/logo.png differ diff --git a/blockchains/ethereum/assets/0xe7Bf3aEE922367c10c8acEc3793fE7D809A38eef/info.json b/blockchains/ethereum/assets/0xe7Bf3aEE922367c10c8acEc3793fE7D809A38eef/info.json new file mode 100644 index 00000000..ca78acc2 --- /dev/null +++ b/blockchains/ethereum/assets/0xe7Bf3aEE922367c10c8acEc3793fE7D809A38eef/info.json @@ -0,0 +1,11 @@ +{ + "name": "BAGS", + "symbol": "BAGS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe7Bf3aEE922367c10c8acEc3793fE7D809A38eef", + "status": "abandoned", + "id": "0xe7Bf3aEE922367c10c8acEc3793fE7D809A38eef" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe7Bf3aEE922367c10c8acEc3793fE7D809A38eef/logo.png b/blockchains/ethereum/assets/0xe7Bf3aEE922367c10c8acEc3793fE7D809A38eef/logo.png new file mode 100644 index 00000000..5364d681 Binary files /dev/null and b/blockchains/ethereum/assets/0xe7Bf3aEE922367c10c8acEc3793fE7D809A38eef/logo.png differ diff --git a/blockchains/ethereum/assets/0xe7D3e4413E29ae35B0893140F4500965c74365e5/info.json b/blockchains/ethereum/assets/0xe7D3e4413E29ae35B0893140F4500965c74365e5/info.json new file mode 100644 index 00000000..97b0c324 --- /dev/null +++ b/blockchains/ethereum/assets/0xe7D3e4413E29ae35B0893140F4500965c74365e5/info.json @@ -0,0 +1,11 @@ +{ + "name": "B2BCoin", + "symbol": "BBC", + "type": "ERC20", + "decimals": 18, + "description": "Unlock corporate demand for a token based business-to-business (B2B) marketing, sales, and trade platform.", + "website": "https://www.tradove.com/b2bcoin", + "explorer": "https://etherscan.io/token/0xe7D3e4413E29ae35B0893140F4500965c74365e5", + "status": "active", + "id": "0xe7D3e4413E29ae35B0893140F4500965c74365e5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe7D3e4413E29ae35B0893140F4500965c74365e5/logo.png b/blockchains/ethereum/assets/0xe7D3e4413E29ae35B0893140F4500965c74365e5/logo.png new file mode 100755 index 00000000..11119bf1 Binary files /dev/null and b/blockchains/ethereum/assets/0xe7D3e4413E29ae35B0893140F4500965c74365e5/logo.png differ diff --git a/blockchains/ethereum/assets/0xe7D7b37e72510309Db27C460378f957B1B04Bd5d/info.json b/blockchains/ethereum/assets/0xe7D7b37e72510309Db27C460378f957B1B04Bd5d/info.json new file mode 100644 index 00000000..06bdbf94 --- /dev/null +++ b/blockchains/ethereum/assets/0xe7D7b37e72510309Db27C460378f957B1B04Bd5d/info.json @@ -0,0 +1,11 @@ +{ + "name": "empowr", + "symbol": "EMPR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.empowr.com", + "explorer": "https://etherscan.io/token/0xe7D7b37e72510309Db27C460378f957B1B04Bd5d", + "status": "abandoned", + "id": "0xe7D7b37e72510309Db27C460378f957B1B04Bd5d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe7D7b37e72510309Db27C460378f957B1B04Bd5d/logo.png b/blockchains/ethereum/assets/0xe7D7b37e72510309Db27C460378f957B1B04Bd5d/logo.png new file mode 100644 index 00000000..92e4dd30 Binary files /dev/null and b/blockchains/ethereum/assets/0xe7D7b37e72510309Db27C460378f957B1B04Bd5d/logo.png differ diff --git a/blockchains/ethereum/assets/0xe7E4279b80D319EDe2889855135A22021baf0907/info.json b/blockchains/ethereum/assets/0xe7E4279b80D319EDe2889855135A22021baf0907/info.json new file mode 100644 index 00000000..76234eec --- /dev/null +++ b/blockchains/ethereum/assets/0xe7E4279b80D319EDe2889855135A22021baf0907/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZeusNetwork", + "symbol": "\"\"", + "type": "ERC20", + "decimals": 18, + "description": "Cryptocurrency that allows people to raise crypto for events to challenging circumstances like accidents and illnesses or real world emergencies. 'The GoFundMe of Crypto'", + "website": "https://zeusfundme.com", + "explorer": "https://etherscan.io/token/0xe7E4279b80D319EDe2889855135A22021baf0907", + "status": "active", + "id": "0xe7E4279b80D319EDe2889855135A22021baf0907" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe7E4279b80D319EDe2889855135A22021baf0907/logo.png b/blockchains/ethereum/assets/0xe7E4279b80D319EDe2889855135A22021baf0907/logo.png new file mode 100644 index 00000000..5b1cfe9b Binary files /dev/null and b/blockchains/ethereum/assets/0xe7E4279b80D319EDe2889855135A22021baf0907/logo.png differ diff --git a/blockchains/ethereum/assets/0xe7aE6D0C56CACaf007b7e4d312f9af686a9E9a04/info.json b/blockchains/ethereum/assets/0xe7aE6D0C56CACaf007b7e4d312f9af686a9E9a04/info.json new file mode 100644 index 00000000..9649ba6c --- /dev/null +++ b/blockchains/ethereum/assets/0xe7aE6D0C56CACaf007b7e4d312f9af686a9E9a04/info.json @@ -0,0 +1,53 @@ +{ + "name": "Vabble", + "symbol": "VAB", + "type": "ERC20", + "decimals": 18, + "description": "Vabble is an interactive, social based streaming platform. Vabble ecosystem supports the film industry both from a view of independent film creators or larger production studios.", + "website": "https://vabble.com/", + "explorer": "https://etherscan.io/token/0xe7aE6D0C56CACaf007b7e4d312f9af686a9E9a04", + "status": "active", + "id": "0xe7aE6D0C56CACaf007b7e4d312f9af686a9E9a04", + "links": [ + { + "name": "github", + "url": "https://github.com/vabble" + }, + { + "name": "x", + "url": "https://x.com/VabbleApp" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Vabble/" + }, + { + "name": "blog", + "url": "https://vabble.com/blog" + }, + { + "name": "whitepaper", + "url": "https://vabble.com/whitepaper" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vabble" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vabble/" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/GeD0nhU5rkAWg3Bq" + }, + { + "name": "discord", + "url": "https://discord.com/invite/GXZFMgPxeK" + }, + { + "name": "facebook", + "url": "https://facebook.com/VabbleApp/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe7aE6D0C56CACaf007b7e4d312f9af686a9E9a04/logo.png b/blockchains/ethereum/assets/0xe7aE6D0C56CACaf007b7e4d312f9af686a9E9a04/logo.png new file mode 100644 index 00000000..6a5266cf Binary files /dev/null and b/blockchains/ethereum/assets/0xe7aE6D0C56CACaf007b7e4d312f9af686a9E9a04/logo.png differ diff --git a/blockchains/ethereum/assets/0xe7beA371284F7091D836172e8c7e006FC21347ce/info.json b/blockchains/ethereum/assets/0xe7beA371284F7091D836172e8c7e006FC21347ce/info.json new file mode 100644 index 00000000..4c1eb7eb --- /dev/null +++ b/blockchains/ethereum/assets/0xe7beA371284F7091D836172e8c7e006FC21347ce/info.json @@ -0,0 +1,11 @@ +{ + "name": "Malaysia Token", + "symbol": "MYRT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe7beA371284F7091D836172e8c7e006FC21347ce", + "status": "abandoned", + "id": "0xe7beA371284F7091D836172e8c7e006FC21347ce" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe7beA371284F7091D836172e8c7e006FC21347ce/logo.png b/blockchains/ethereum/assets/0xe7beA371284F7091D836172e8c7e006FC21347ce/logo.png new file mode 100644 index 00000000..ec2a4555 Binary files /dev/null and b/blockchains/ethereum/assets/0xe7beA371284F7091D836172e8c7e006FC21347ce/logo.png differ diff --git a/blockchains/ethereum/assets/0xe7cf604976Ca5D11d0E267Eb90bDDfB6e33eCa53/info.json b/blockchains/ethereum/assets/0xe7cf604976Ca5D11d0E267Eb90bDDfB6e33eCa53/info.json new file mode 100644 index 00000000..1d7c8470 --- /dev/null +++ b/blockchains/ethereum/assets/0xe7cf604976Ca5D11d0E267Eb90bDDfB6e33eCa53/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tronipay Gold", + "symbol": "TRPG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe7cf604976Ca5D11d0E267Eb90bDDfB6e33eCa53", + "status": "abandoned", + "id": "0xe7cf604976Ca5D11d0E267Eb90bDDfB6e33eCa53" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe7cf604976Ca5D11d0E267Eb90bDDfB6e33eCa53/logo.png b/blockchains/ethereum/assets/0xe7cf604976Ca5D11d0E267Eb90bDDfB6e33eCa53/logo.png new file mode 100644 index 00000000..a7553816 Binary files /dev/null and b/blockchains/ethereum/assets/0xe7cf604976Ca5D11d0E267Eb90bDDfB6e33eCa53/logo.png differ diff --git a/blockchains/ethereum/assets/0xe7da4034D6bf12909E5D0198c3784F55a06e0210/info.json b/blockchains/ethereum/assets/0xe7da4034D6bf12909E5D0198c3784F55a06e0210/info.json new file mode 100644 index 00000000..56770582 --- /dev/null +++ b/blockchains/ethereum/assets/0xe7da4034D6bf12909E5D0198c3784F55a06e0210/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cash on Delivery", + "symbol": "COD", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe7da4034D6bf12909E5D0198c3784F55a06e0210", + "status": "abandoned", + "id": "0xe7da4034D6bf12909E5D0198c3784F55a06e0210" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe7da4034D6bf12909E5D0198c3784F55a06e0210/logo.png b/blockchains/ethereum/assets/0xe7da4034D6bf12909E5D0198c3784F55a06e0210/logo.png new file mode 100644 index 00000000..7bae022c Binary files /dev/null and b/blockchains/ethereum/assets/0xe7da4034D6bf12909E5D0198c3784F55a06e0210/logo.png differ diff --git a/blockchains/ethereum/assets/0xe7ee911172bDD557B9Ab6Be7701F86BBc8FD772E/info.json b/blockchains/ethereum/assets/0xe7ee911172bDD557B9Ab6Be7701F86BBc8FD772E/info.json new file mode 100644 index 00000000..0c92e657 --- /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 00000000..d56552e0 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 new file mode 100644 index 00000000..f150085f --- /dev/null +++ b/blockchains/ethereum/assets/0xe803178b48A0e560C2b19F3b3d4e504f79D229ce/info.json @@ -0,0 +1,60 @@ +{ + "name": "Bobcoin", + "type": "ERC20", + "symbol": "BOBC", + "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://etherscan.io/token/0xe803178b48A0e560C2b19F3b3d4e504f79D229ce", + "status": "active", + "id": "0xe803178b48A0e560C2b19F3b3d4e504f79D229ce", + "links": [ + { + "name": "x", + "url": "https://x.com/BobEcoOfficial" + }, + { + "name": "github", + "url": "https://github.com/CryptoMechanics/bobc-token" + }, + { + "name": "telegram", + "url": "https://t.me/bobEco" + }, + { + "name": "telegram_news", + "url": "https://t.me/" + }, + { + "name": "blog", + "url": "https://bob.eco/news" + }, + { + "name": "medium", + "url": "https://medium.com/@BobEco" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bobcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bobcoin/" + }, + { + "name": "facebook", + "url": "https://facebook.com/Bobecoltd" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCr7ea3KYY7UUAD2iWowQGLw" + }, + { + "name": "whitepaper", + "url": "https://bob.eco/Bob_eco_Whitepaper.pdf" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe803178b48A0e560C2b19F3b3d4e504f79D229ce/logo.png b/blockchains/ethereum/assets/0xe803178b48A0e560C2b19F3b3d4e504f79D229ce/logo.png new file mode 100644 index 00000000..a0cd1709 Binary files /dev/null and b/blockchains/ethereum/assets/0xe803178b48A0e560C2b19F3b3d4e504f79D229ce/logo.png differ diff --git a/blockchains/ethereum/assets/0xe81D72D14B1516e68ac3190a46C93302Cc8eD60f/info.json b/blockchains/ethereum/assets/0xe81D72D14B1516e68ac3190a46C93302Cc8eD60f/info.json new file mode 100644 index 00000000..8868d2af --- /dev/null +++ b/blockchains/ethereum/assets/0xe81D72D14B1516e68ac3190a46C93302Cc8eD60f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coinlancer", + "symbol": "CL", + "type": "ERC20", + "decimals": 18, + "description": "Coinlancer is an Ethereum based platform where freelancers and clients connect remotely through smart contracts. On Coinlancer, clients post job opportunities and job seekers avail the same. Payments for a job offer are made in CL token once the rules set in the smart contracts are met.", + "website": "https://www.coinlancer.com", + "explorer": "https://etherscan.io/token/0xe81D72D14B1516e68ac3190a46C93302Cc8eD60f", + "status": "active", + "id": "0xe81D72D14B1516e68ac3190a46C93302Cc8eD60f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe81D72D14B1516e68ac3190a46C93302Cc8eD60f/logo.png b/blockchains/ethereum/assets/0xe81D72D14B1516e68ac3190a46C93302Cc8eD60f/logo.png new file mode 100644 index 00000000..747a9864 Binary files /dev/null and b/blockchains/ethereum/assets/0xe81D72D14B1516e68ac3190a46C93302Cc8eD60f/logo.png differ diff --git a/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 00000000..42b22014 --- /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 00000000..9259df4c Binary files /dev/null and b/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png differ diff --git a/blockchains/ethereum/assets/0xe8414CB00b804A55B41dad0ACBbAd71c6179dFBB/info.json b/blockchains/ethereum/assets/0xe8414CB00b804A55B41dad0ACBbAd71c6179dFBB/info.json new file mode 100644 index 00000000..87c1d8a7 --- /dev/null +++ b/blockchains/ethereum/assets/0xe8414CB00b804A55B41dad0ACBbAd71c6179dFBB/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR TESTmg22", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe8414CB00b804A55B41dad0ACBbAd71c6179dFBB", + "status": "abandoned", + "id": "0xe8414CB00b804A55B41dad0ACBbAd71c6179dFBB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe8414CB00b804A55B41dad0ACBbAd71c6179dFBB/logo.png b/blockchains/ethereum/assets/0xe8414CB00b804A55B41dad0ACBbAd71c6179dFBB/logo.png new file mode 100644 index 00000000..e85a448f Binary files /dev/null and b/blockchains/ethereum/assets/0xe8414CB00b804A55B41dad0ACBbAd71c6179dFBB/logo.png differ diff --git a/blockchains/ethereum/assets/0xe85eD250E3d91fdE61bF32E22C54F04754E695c5/info.json b/blockchains/ethereum/assets/0xe85eD250E3d91fdE61bF32E22C54F04754E695c5/info.json new file mode 100644 index 00000000..784416e7 --- /dev/null +++ b/blockchains/ethereum/assets/0xe85eD250E3d91fdE61bF32E22C54F04754E695c5/info.json @@ -0,0 +1,11 @@ +{ + "name": "SDC", + "symbol": "SDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe85eD250E3d91fdE61bF32E22C54F04754E695c5", + "status": "abandoned", + "id": "0xe85eD250E3d91fdE61bF32E22C54F04754E695c5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe85eD250E3d91fdE61bF32E22C54F04754E695c5/logo.png b/blockchains/ethereum/assets/0xe85eD250E3d91fdE61bF32E22C54F04754E695c5/logo.png new file mode 100755 index 00000000..6308bc89 Binary files /dev/null and b/blockchains/ethereum/assets/0xe85eD250E3d91fdE61bF32E22C54F04754E695c5/logo.png differ diff --git a/blockchains/ethereum/assets/0xe875c61d4721424A6988E5fA2dFB8d6CA6af5c64/info.json b/blockchains/ethereum/assets/0xe875c61d4721424A6988E5fA2dFB8d6CA6af5c64/info.json new file mode 100644 index 00000000..7c933abf --- /dev/null +++ b/blockchains/ethereum/assets/0xe875c61d4721424A6988E5fA2dFB8d6CA6af5c64/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pi Futures", + "website": "https://pifutures.org", + "description": "Pi Futures is the derivative of the cryptocurrency of Pi Network. It is created by a group of early miners of Pi, who understand and believe the future value of Pi Network.", + "explorer": "https://etherscan.io/token/0xe875c61d4721424A6988E5fA2dFB8d6CA6af5c64", + "type": "ERC20", + "symbol": "Pi", + "decimals": 18, + "status": "active", + "id": "0xe875c61d4721424A6988E5fA2dFB8d6CA6af5c64" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe875c61d4721424A6988E5fA2dFB8d6CA6af5c64/logo.png b/blockchains/ethereum/assets/0xe875c61d4721424A6988E5fA2dFB8d6CA6af5c64/logo.png new file mode 100644 index 00000000..ee11c2c6 Binary files /dev/null and b/blockchains/ethereum/assets/0xe875c61d4721424A6988E5fA2dFB8d6CA6af5c64/logo.png differ diff --git a/blockchains/ethereum/assets/0xe8780B48bdb05F928697A5e8155f672ED91462F7/info.json b/blockchains/ethereum/assets/0xe8780B48bdb05F928697A5e8155f672ED91462F7/info.json new file mode 100644 index 00000000..f48ca63a --- /dev/null +++ b/blockchains/ethereum/assets/0xe8780B48bdb05F928697A5e8155f672ED91462F7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cashaa", + "symbol": "CAS", + "type": "ERC20", + "decimals": 18, + "website": "https://cashaa.com", + "description": "Cashaa is a global banking solution for the crypto industry. It’s the world’s first banking platform that enables the seamless transaction of both fiat and crypto from the one account dashboard.", + "explorer": "https://etherscan.io/token/0xe8780B48bdb05F928697A5e8155f672ED91462F7", + "status": "active", + "id": "0xe8780B48bdb05F928697A5e8155f672ED91462F7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe8780B48bdb05F928697A5e8155f672ED91462F7/logo.png b/blockchains/ethereum/assets/0xe8780B48bdb05F928697A5e8155f672ED91462F7/logo.png new file mode 100644 index 00000000..187866ed Binary files /dev/null and b/blockchains/ethereum/assets/0xe8780B48bdb05F928697A5e8155f672ED91462F7/logo.png differ diff --git a/blockchains/ethereum/assets/0xe87C957A697cDA8d7610B17a93a529F0dB6cA7fd/info.json b/blockchains/ethereum/assets/0xe87C957A697cDA8d7610B17a93a529F0dB6cA7fd/info.json new file mode 100644 index 00000000..4f1443b8 --- /dev/null +++ b/blockchains/ethereum/assets/0xe87C957A697cDA8d7610B17a93a529F0dB6cA7fd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Oratium", + "symbol": "ORT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe87C957A697cDA8d7610B17a93a529F0dB6cA7fd", + "status": "abandoned", + "id": "0xe87C957A697cDA8d7610B17a93a529F0dB6cA7fd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe87C957A697cDA8d7610B17a93a529F0dB6cA7fd/logo.png b/blockchains/ethereum/assets/0xe87C957A697cDA8d7610B17a93a529F0dB6cA7fd/logo.png new file mode 100755 index 00000000..5aa99589 Binary files /dev/null and b/blockchains/ethereum/assets/0xe87C957A697cDA8d7610B17a93a529F0dB6cA7fd/logo.png differ diff --git a/blockchains/ethereum/assets/0xe87e15B9c7d989474Cb6d8c56b3DB4eFAD5b21E8/info.json b/blockchains/ethereum/assets/0xe87e15B9c7d989474Cb6d8c56b3DB4eFAD5b21E8/info.json new file mode 100644 index 00000000..237fe482 --- /dev/null +++ b/blockchains/ethereum/assets/0xe87e15B9c7d989474Cb6d8c56b3DB4eFAD5b21E8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hokkaidu Inu", + "website": "https://hokk.finance/", + "description": "Leveraging community to build an inclusive financial ecosystem. We are Meme Utility", + "explorer": "https://etherscan.io/token/0xe87e15B9c7d989474Cb6d8c56b3DB4eFAD5b21E8", + "type": "ERC20", + "symbol": "HOKK", + "decimals": 18, + "status": "active", + "id": "0xe87e15B9c7d989474Cb6d8c56b3DB4eFAD5b21E8", + "links": [ + { + "name": "telegram", + "url": "https://t.me/HokkaidoInu" + }, + { + "name": "x", + "url": "https://x.com/hokkaiduinu" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe87e15B9c7d989474Cb6d8c56b3DB4eFAD5b21E8/logo.png b/blockchains/ethereum/assets/0xe87e15B9c7d989474Cb6d8c56b3DB4eFAD5b21E8/logo.png new file mode 100644 index 00000000..a4f0a864 Binary files /dev/null and b/blockchains/ethereum/assets/0xe87e15B9c7d989474Cb6d8c56b3DB4eFAD5b21E8/logo.png differ diff --git a/blockchains/ethereum/assets/0xe8A1Df958bE379045E2B46a31A98B93A2eCDfDeD/info.json b/blockchains/ethereum/assets/0xe8A1Df958bE379045E2B46a31A98B93A2eCDfDeD/info.json new file mode 100644 index 00000000..a75842a4 --- /dev/null +++ b/blockchains/ethereum/assets/0xe8A1Df958bE379045E2B46a31A98B93A2eCDfDeD/info.json @@ -0,0 +1,11 @@ +{ + "name": "ESZCoin", + "symbol": "ESZ", + "type": "ERC20", + "decimals": 18, + "description": "EtherSportz is being developed as an online based eSports tournament platform for popular games.", + "website": "https://ethersportz.com", + "explorer": "https://etherscan.io/token/0xe8A1Df958bE379045E2B46a31A98B93A2eCDfDeD", + "status": "active", + "id": "0xe8A1Df958bE379045E2B46a31A98B93A2eCDfDeD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe8A1Df958bE379045E2B46a31A98B93A2eCDfDeD/logo.png b/blockchains/ethereum/assets/0xe8A1Df958bE379045E2B46a31A98B93A2eCDfDeD/logo.png new file mode 100755 index 00000000..be2787a1 Binary files /dev/null and b/blockchains/ethereum/assets/0xe8A1Df958bE379045E2B46a31A98B93A2eCDfDeD/logo.png differ diff --git a/blockchains/ethereum/assets/0xe8B09e8175AEcB35A171Fa059647434fE47F114c/info.json b/blockchains/ethereum/assets/0xe8B09e8175AEcB35A171Fa059647434fE47F114c/info.json new file mode 100644 index 00000000..a6f00a36 --- /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 00000000..f88c3aa8 Binary files /dev/null and b/blockchains/ethereum/assets/0xe8B09e8175AEcB35A171Fa059647434fE47F114c/logo.png differ diff --git a/blockchains/ethereum/assets/0xe8Bad244f2a9881d3D7e826C5Ec23E5391f3166C/info.json b/blockchains/ethereum/assets/0xe8Bad244f2a9881d3D7e826C5Ec23E5391f3166C/info.json new file mode 100644 index 00000000..e4c9739a --- /dev/null +++ b/blockchains/ethereum/assets/0xe8Bad244f2a9881d3D7e826C5Ec23E5391f3166C/info.json @@ -0,0 +1,11 @@ +{ + "name": "PIXBYTOKEN", + "symbol": "PXB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe8Bad244f2a9881d3D7e826C5Ec23E5391f3166C", + "status": "abandoned", + "id": "0xe8Bad244f2a9881d3D7e826C5Ec23E5391f3166C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe8Bad244f2a9881d3D7e826C5Ec23E5391f3166C/logo.png b/blockchains/ethereum/assets/0xe8Bad244f2a9881d3D7e826C5Ec23E5391f3166C/logo.png new file mode 100644 index 00000000..a1c8bc4b Binary files /dev/null and b/blockchains/ethereum/assets/0xe8Bad244f2a9881d3D7e826C5Ec23E5391f3166C/logo.png differ diff --git a/blockchains/ethereum/assets/0xe8Ff5C9c75dEb346acAc493C463C8950Be03Dfba/info.json b/blockchains/ethereum/assets/0xe8Ff5C9c75dEb346acAc493C463C8950Be03Dfba/info.json new file mode 100644 index 00000000..a0bed86d --- /dev/null +++ b/blockchains/ethereum/assets/0xe8Ff5C9c75dEb346acAc493C463C8950Be03Dfba/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vibe Coin", + "symbol": "VIBE", + "type": "ERC20", + "decimals": 18, + "description": "Creating next generation NFTs and developing new standards for gaming on the blockchain. Built for users & developers on the layer 2 solution VIBENet. Powered by the VIBE token.", + "website": "https://www.vibehub.io", + "explorer": "https://etherscan.io/token/0xe8Ff5C9c75dEb346acAc493C463C8950Be03Dfba", + "status": "active", + "id": "0xe8Ff5C9c75dEb346acAc493C463C8950Be03Dfba" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe8Ff5C9c75dEb346acAc493C463C8950Be03Dfba/logo.png b/blockchains/ethereum/assets/0xe8Ff5C9c75dEb346acAc493C463C8950Be03Dfba/logo.png new file mode 100644 index 00000000..dadab341 Binary files /dev/null and b/blockchains/ethereum/assets/0xe8Ff5C9c75dEb346acAc493C463C8950Be03Dfba/logo.png differ diff --git a/blockchains/ethereum/assets/0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93/info.json b/blockchains/ethereum/assets/0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93/info.json new file mode 100644 index 00000000..360cd867 --- /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 00000000..95859ef3 Binary files /dev/null and b/blockchains/ethereum/assets/0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93/logo.png differ diff --git a/blockchains/ethereum/assets/0xe9184c970BcFBB05d8A38762d073320E622a3E28/info.json b/blockchains/ethereum/assets/0xe9184c970BcFBB05d8A38762d073320E622a3E28/info.json new file mode 100644 index 00000000..8bfd3f35 --- /dev/null +++ b/blockchains/ethereum/assets/0xe9184c970BcFBB05d8A38762d073320E622a3E28/info.json @@ -0,0 +1,11 @@ +{ + "name": "CChain CCHN", + "symbol": "CCHN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe9184c970BcFBB05d8A38762d073320E622a3E28", + "status": "abandoned", + "id": "0xe9184c970BcFBB05d8A38762d073320E622a3E28" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe9184c970BcFBB05d8A38762d073320E622a3E28/logo.png b/blockchains/ethereum/assets/0xe9184c970BcFBB05d8A38762d073320E622a3E28/logo.png new file mode 100644 index 00000000..a0c4d557 Binary files /dev/null and b/blockchains/ethereum/assets/0xe9184c970BcFBB05d8A38762d073320E622a3E28/logo.png differ diff --git a/blockchains/ethereum/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/info.json b/blockchains/ethereum/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/info.json new file mode 100644 index 00000000..3000f73d --- /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 00000000..6d985419 Binary files /dev/null and b/blockchains/ethereum/assets/0xe92f673Ca36C5E2Efd2DE7628f815f84807e803F/logo.png differ diff --git a/blockchains/ethereum/assets/0xe9406953401344819dF0392ECdfF238C5396C2A2/info.json b/blockchains/ethereum/assets/0xe9406953401344819dF0392ECdfF238C5396C2A2/info.json new file mode 100644 index 00000000..fd9527a6 --- /dev/null +++ b/blockchains/ethereum/assets/0xe9406953401344819dF0392ECdfF238C5396C2A2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kode", + "symbol": "KODE", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe9406953401344819dF0392ECdfF238C5396C2A2", + "status": "abandoned", + "id": "0xe9406953401344819dF0392ECdfF238C5396C2A2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe9406953401344819dF0392ECdfF238C5396C2A2/logo.png b/blockchains/ethereum/assets/0xe9406953401344819dF0392ECdfF238C5396C2A2/logo.png new file mode 100644 index 00000000..271e96a4 Binary files /dev/null and b/blockchains/ethereum/assets/0xe9406953401344819dF0392ECdfF238C5396C2A2/logo.png differ diff --git a/blockchains/ethereum/assets/0xe947b388fbE682784170B62F2Bd4665f9719a285/info.json b/blockchains/ethereum/assets/0xe947b388fbE682784170B62F2Bd4665f9719a285/info.json new file mode 100644 index 00000000..b99ae5bf --- /dev/null +++ b/blockchains/ethereum/assets/0xe947b388fbE682784170B62F2Bd4665f9719a285/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rally Coin", + "symbol": "RALLY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.rallyapp.com/", + "explorer": "https://etherscan.io/token/0xe947b388fbE682784170B62F2Bd4665f9719a285", + "status": "abandoned", + "id": "0xe947b388fbE682784170B62F2Bd4665f9719a285" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe947b388fbE682784170B62F2Bd4665f9719a285/logo.png b/blockchains/ethereum/assets/0xe947b388fbE682784170B62F2Bd4665f9719a285/logo.png new file mode 100644 index 00000000..98f6dd89 Binary files /dev/null and b/blockchains/ethereum/assets/0xe947b388fbE682784170B62F2Bd4665f9719a285/logo.png differ diff --git a/blockchains/ethereum/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/info.json b/blockchains/ethereum/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/info.json new file mode 100644 index 00000000..0d8fc42e --- /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 00000000..0c6d1b72 Binary files /dev/null and b/blockchains/ethereum/assets/0xe95ab205e333443D7970336D5fD827eF9eD97608/logo.png differ diff --git a/blockchains/ethereum/assets/0xe96F2c381E267a96C29bbB8ab05AB7d3527b45Ab/info.json b/blockchains/ethereum/assets/0xe96F2c381E267a96C29bbB8ab05AB7d3527b45Ab/info.json new file mode 100644 index 00000000..a0f21278 --- /dev/null +++ b/blockchains/ethereum/assets/0xe96F2c381E267a96C29bbB8ab05AB7d3527b45Ab/info.json @@ -0,0 +1,11 @@ +{ + "name": "SatoExchange", + "symbol": "SATX", + "type": "ERC20", + "decimals": 8, + "description": "SATX is the official token of the SatoExchange platform. A Crypto currency exchange trading alt coins in BTC, ETH, SATX, LTC and DOGE pairs.", + "website": "https://www.satoexchange.com/SATX/", + "explorer": "https://etherscan.io/token/0xe96F2c381E267a96C29bbB8ab05AB7d3527b45Ab", + "status": "active", + "id": "0xe96F2c381E267a96C29bbB8ab05AB7d3527b45Ab" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe96F2c381E267a96C29bbB8ab05AB7d3527b45Ab/logo.png b/blockchains/ethereum/assets/0xe96F2c381E267a96C29bbB8ab05AB7d3527b45Ab/logo.png new file mode 100644 index 00000000..96034c26 Binary files /dev/null and b/blockchains/ethereum/assets/0xe96F2c381E267a96C29bbB8ab05AB7d3527b45Ab/logo.png differ diff --git a/blockchains/ethereum/assets/0xe984ADE4D5daFA623180460759F4073b6a470656/info.json b/blockchains/ethereum/assets/0xe984ADE4D5daFA623180460759F4073b6a470656/info.json new file mode 100644 index 00000000..f94c77bf --- /dev/null +++ b/blockchains/ethereum/assets/0xe984ADE4D5daFA623180460759F4073b6a470656/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "0xzx", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe984ADE4D5daFA623180460759F4073b6a470656", + "status": "abandoned", + "id": "0xe984ADE4D5daFA623180460759F4073b6a470656" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe984ADE4D5daFA623180460759F4073b6a470656/logo.png b/blockchains/ethereum/assets/0xe984ADE4D5daFA623180460759F4073b6a470656/logo.png new file mode 100644 index 00000000..a4bffb65 Binary files /dev/null and b/blockchains/ethereum/assets/0xe984ADE4D5daFA623180460759F4073b6a470656/logo.png differ diff --git a/blockchains/ethereum/assets/0xe9E561F59CF0a15652eDb3C62731778f5E4bc10C/info.json b/blockchains/ethereum/assets/0xe9E561F59CF0a15652eDb3C62731778f5E4bc10C/info.json new file mode 100644 index 00000000..b06444e0 --- /dev/null +++ b/blockchains/ethereum/assets/0xe9E561F59CF0a15652eDb3C62731778f5E4bc10C/info.json @@ -0,0 +1,11 @@ +{ + "name": "XXXcoin", + "symbol": "XCN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe9E561F59CF0a15652eDb3C62731778f5E4bc10C", + "status": "abandoned", + "id": "0xe9E561F59CF0a15652eDb3C62731778f5E4bc10C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe9E561F59CF0a15652eDb3C62731778f5E4bc10C/logo.png b/blockchains/ethereum/assets/0xe9E561F59CF0a15652eDb3C62731778f5E4bc10C/logo.png new file mode 100755 index 00000000..d5f42a52 Binary files /dev/null and b/blockchains/ethereum/assets/0xe9E561F59CF0a15652eDb3C62731778f5E4bc10C/logo.png differ diff --git a/blockchains/ethereum/assets/0xe9F9547C17fc9539DF99a42dcB6ec38165994c45/info.json b/blockchains/ethereum/assets/0xe9F9547C17fc9539DF99a42dcB6ec38165994c45/info.json new file mode 100644 index 00000000..bf8e8c59 --- /dev/null +++ b/blockchains/ethereum/assets/0xe9F9547C17fc9539DF99a42dcB6ec38165994c45/info.json @@ -0,0 +1,11 @@ +{ + "name": "BouncyCoinToken", + "symbol": "BOUNCY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe9F9547C17fc9539DF99a42dcB6ec38165994c45", + "status": "abandoned", + "id": "0xe9F9547C17fc9539DF99a42dcB6ec38165994c45" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe9F9547C17fc9539DF99a42dcB6ec38165994c45/logo.png b/blockchains/ethereum/assets/0xe9F9547C17fc9539DF99a42dcB6ec38165994c45/logo.png new file mode 100644 index 00000000..1cb70c9c Binary files /dev/null and b/blockchains/ethereum/assets/0xe9F9547C17fc9539DF99a42dcB6ec38165994c45/logo.png differ diff --git a/blockchains/ethereum/assets/0xe9cF449a925985242Ed60D0Cc02e3F355b21a88c/info.json b/blockchains/ethereum/assets/0xe9cF449a925985242Ed60D0Cc02e3F355b21a88c/info.json new file mode 100644 index 00000000..06983b2d --- /dev/null +++ b/blockchains/ethereum/assets/0xe9cF449a925985242Ed60D0Cc02e3F355b21a88c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lethereum ", + "symbol": "LETH", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe9cF449a925985242Ed60D0Cc02e3F355b21a88c", + "status": "abandoned", + "id": "0xe9cF449a925985242Ed60D0Cc02e3F355b21a88c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe9cF449a925985242Ed60D0Cc02e3F355b21a88c/logo.png b/blockchains/ethereum/assets/0xe9cF449a925985242Ed60D0Cc02e3F355b21a88c/logo.png new file mode 100644 index 00000000..2726eb7b Binary files /dev/null and b/blockchains/ethereum/assets/0xe9cF449a925985242Ed60D0Cc02e3F355b21a88c/logo.png differ diff --git a/blockchains/ethereum/assets/0xe9dE1C630753A15d7021Cc563429c21d4887506F/info.json b/blockchains/ethereum/assets/0xe9dE1C630753A15d7021Cc563429c21d4887506F/info.json new file mode 100644 index 00000000..3cc8b70b --- /dev/null +++ b/blockchains/ethereum/assets/0xe9dE1C630753A15d7021Cc563429c21d4887506F/info.json @@ -0,0 +1,11 @@ +{ + "name": "OPEN", + "symbol": "OPEN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe9dE1C630753A15d7021Cc563429c21d4887506F", + "status": "abandoned", + "id": "0xe9dE1C630753A15d7021Cc563429c21d4887506F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe9dE1C630753A15d7021Cc563429c21d4887506F/logo.png b/blockchains/ethereum/assets/0xe9dE1C630753A15d7021Cc563429c21d4887506F/logo.png new file mode 100644 index 00000000..42deb750 Binary files /dev/null and b/blockchains/ethereum/assets/0xe9dE1C630753A15d7021Cc563429c21d4887506F/logo.png differ diff --git a/blockchains/ethereum/assets/0xe9eE5925D6CB6881630cF8Aa82f1CD6087cec41b/info.json b/blockchains/ethereum/assets/0xe9eE5925D6CB6881630cF8Aa82f1CD6087cec41b/info.json new file mode 100644 index 00000000..10e34209 --- /dev/null +++ b/blockchains/ethereum/assets/0xe9eE5925D6CB6881630cF8Aa82f1CD6087cec41b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gold FX", + "symbol": "GFX", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xe9eE5925D6CB6881630cF8Aa82f1CD6087cec41b", + "status": "abandoned", + "id": "0xe9eE5925D6CB6881630cF8Aa82f1CD6087cec41b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe9eE5925D6CB6881630cF8Aa82f1CD6087cec41b/logo.png b/blockchains/ethereum/assets/0xe9eE5925D6CB6881630cF8Aa82f1CD6087cec41b/logo.png new file mode 100644 index 00000000..0ebab204 Binary files /dev/null and b/blockchains/ethereum/assets/0xe9eE5925D6CB6881630cF8Aa82f1CD6087cec41b/logo.png differ diff --git a/blockchains/ethereum/assets/0xe9fa21E671BcfB04E6868784b89C19d5aa2424Ea/info.json b/blockchains/ethereum/assets/0xe9fa21E671BcfB04E6868784b89C19d5aa2424Ea/info.json new file mode 100644 index 00000000..566be091 --- /dev/null +++ b/blockchains/ethereum/assets/0xe9fa21E671BcfB04E6868784b89C19d5aa2424Ea/info.json @@ -0,0 +1,11 @@ +{ + "name": "EurocoinToken", + "symbol": "ECTE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://eurocoinpay.io/", + "explorer": "https://etherscan.io/token/0xe9fa21E671BcfB04E6868784b89C19d5aa2424Ea", + "status": "abandoned", + "id": "0xe9fa21E671BcfB04E6868784b89C19d5aa2424Ea" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe9fa21E671BcfB04E6868784b89C19d5aa2424Ea/logo.png b/blockchains/ethereum/assets/0xe9fa21E671BcfB04E6868784b89C19d5aa2424Ea/logo.png new file mode 100644 index 00000000..25ffdad1 Binary files /dev/null and b/blockchains/ethereum/assets/0xe9fa21E671BcfB04E6868784b89C19d5aa2424Ea/logo.png differ diff --git a/blockchains/ethereum/assets/0xeA0bea4d852687c45fdC57F6B06A8a92302baaBc/info.json b/blockchains/ethereum/assets/0xeA0bea4d852687c45fdC57F6B06A8a92302baaBc/info.json new file mode 100644 index 00000000..963b3ded --- /dev/null +++ b/blockchains/ethereum/assets/0xeA0bea4d852687c45fdC57F6B06A8a92302baaBc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Counsel", + "symbol": "CNSL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeA0bea4d852687c45fdC57F6B06A8a92302baaBc", + "status": "abandoned", + "id": "0xeA0bea4d852687c45fdC57F6B06A8a92302baaBc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeA0bea4d852687c45fdC57F6B06A8a92302baaBc/logo.png b/blockchains/ethereum/assets/0xeA0bea4d852687c45fdC57F6B06A8a92302baaBc/logo.png new file mode 100644 index 00000000..2927e88d Binary files /dev/null and b/blockchains/ethereum/assets/0xeA0bea4d852687c45fdC57F6B06A8a92302baaBc/logo.png differ diff --git a/blockchains/ethereum/assets/0xeAA2287290544eD9F481012aa348619A4D2F9e51/info.json b/blockchains/ethereum/assets/0xeAA2287290544eD9F481012aa348619A4D2F9e51/info.json new file mode 100644 index 00000000..fd12608c --- /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 00000000..69cee97e 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 00000000..928b39a2 --- /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 00000000..4ca5efce Binary files /dev/null and b/blockchains/ethereum/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/logo.png differ diff --git a/blockchains/ethereum/assets/0xeAb43193CF0623073Ca89DB9B712796356FA7414/info.json b/blockchains/ethereum/assets/0xeAb43193CF0623073Ca89DB9B712796356FA7414/info.json new file mode 100644 index 00000000..6d9e4afd --- /dev/null +++ b/blockchains/ethereum/assets/0xeAb43193CF0623073Ca89DB9B712796356FA7414/info.json @@ -0,0 +1,11 @@ +{ + "name": "GOLDX", + "symbol": "GOLDX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeAb43193CF0623073Ca89DB9B712796356FA7414", + "status": "abandoned", + "id": "0xeAb43193CF0623073Ca89DB9B712796356FA7414" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeAb43193CF0623073Ca89DB9B712796356FA7414/logo.png b/blockchains/ethereum/assets/0xeAb43193CF0623073Ca89DB9B712796356FA7414/logo.png new file mode 100644 index 00000000..44b5cdec Binary files /dev/null and b/blockchains/ethereum/assets/0xeAb43193CF0623073Ca89DB9B712796356FA7414/logo.png differ diff --git a/blockchains/ethereum/assets/0xeB04983Ab864B43322f393e621D3856cCAC889F1/info.json b/blockchains/ethereum/assets/0xeB04983Ab864B43322f393e621D3856cCAC889F1/info.json new file mode 100644 index 00000000..a34eb5dc --- /dev/null +++ b/blockchains/ethereum/assets/0xeB04983Ab864B43322f393e621D3856cCAC889F1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Blue", + "symbol": "BBC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeB04983Ab864B43322f393e621D3856cCAC889F1", + "status": "abandoned", + "id": "0xeB04983Ab864B43322f393e621D3856cCAC889F1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeB04983Ab864B43322f393e621D3856cCAC889F1/logo.png b/blockchains/ethereum/assets/0xeB04983Ab864B43322f393e621D3856cCAC889F1/logo.png new file mode 100644 index 00000000..7703d23a Binary files /dev/null and b/blockchains/ethereum/assets/0xeB04983Ab864B43322f393e621D3856cCAC889F1/logo.png differ diff --git a/blockchains/ethereum/assets/0xeB66ACc3d011056B00ea521F8203580C2E5d3991/info.json b/blockchains/ethereum/assets/0xeB66ACc3d011056B00ea521F8203580C2E5d3991/info.json new file mode 100644 index 00000000..b219b082 --- /dev/null +++ b/blockchains/ethereum/assets/0xeB66ACc3d011056B00ea521F8203580C2E5d3991/info.json @@ -0,0 +1,11 @@ +{ + "name": "IdleUSDC", + "symbol": "IDLEUSDC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeB66ACc3d011056B00ea521F8203580C2E5d3991", + "status": "abandoned", + "id": "0xeB66ACc3d011056B00ea521F8203580C2E5d3991" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeB66ACc3d011056B00ea521F8203580C2E5d3991/logo.png b/blockchains/ethereum/assets/0xeB66ACc3d011056B00ea521F8203580C2E5d3991/logo.png new file mode 100644 index 00000000..f34db2c6 Binary files /dev/null and b/blockchains/ethereum/assets/0xeB66ACc3d011056B00ea521F8203580C2E5d3991/logo.png differ diff --git a/blockchains/ethereum/assets/0xeB7C20027172E5d143fB030d50f91Cece2D1485D/info.json b/blockchains/ethereum/assets/0xeB7C20027172E5d143fB030d50f91Cece2D1485D/info.json new file mode 100644 index 00000000..b6f1510c --- /dev/null +++ b/blockchains/ethereum/assets/0xeB7C20027172E5d143fB030d50f91Cece2D1485D/info.json @@ -0,0 +1,11 @@ +{ + "name": "eBTC", + "symbol": "EBTC", + "type": "ERC20", + "decimals": 8, + "description": "eBitcoin is a tokenized version of Bitcoin on the Ethereum blockchain.", + "website": "https://ebitcoin.org/", + "explorer": "https://etherscan.io/token/0xeB7C20027172E5d143fB030d50f91Cece2D1485D", + "status": "active", + "id": "0xeB7C20027172E5d143fB030d50f91Cece2D1485D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeB7C20027172E5d143fB030d50f91Cece2D1485D/logo.png b/blockchains/ethereum/assets/0xeB7C20027172E5d143fB030d50f91Cece2D1485D/logo.png new file mode 100755 index 00000000..c256f3a2 Binary files /dev/null and b/blockchains/ethereum/assets/0xeB7C20027172E5d143fB030d50f91Cece2D1485D/logo.png differ diff --git a/blockchains/ethereum/assets/0xeBF4CA5319F406602EEFf68da16261f1216011B5/info.json b/blockchains/ethereum/assets/0xeBF4CA5319F406602EEFf68da16261f1216011B5/info.json new file mode 100644 index 00000000..05fe11c3 --- /dev/null +++ b/blockchains/ethereum/assets/0xeBF4CA5319F406602EEFf68da16261f1216011B5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yo Token", + "symbol": "YOT", + "type": "ERC20", + "decimals": 18, + "description": "Yobit Token (YO) is the native asset of Yobit Exchange.", + "website": "https://yobit.net/en/", + "explorer": "https://etherscan.io/token/0xeBF4CA5319F406602EEFf68da16261f1216011B5", + "status": "active", + "id": "0xeBF4CA5319F406602EEFf68da16261f1216011B5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeBF4CA5319F406602EEFf68da16261f1216011B5/logo.png b/blockchains/ethereum/assets/0xeBF4CA5319F406602EEFf68da16261f1216011B5/logo.png new file mode 100644 index 00000000..f84df82a Binary files /dev/null and b/blockchains/ethereum/assets/0xeBF4CA5319F406602EEFf68da16261f1216011B5/logo.png differ diff --git a/blockchains/ethereum/assets/0xeBb66a88cEdd12bfE3a289df6DFEe377F2963F12/info.json b/blockchains/ethereum/assets/0xeBb66a88cEdd12bfE3a289df6DFEe377F2963F12/info.json new file mode 100644 index 00000000..bd7b1a3a --- /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 00000000..115b632a Binary files /dev/null and b/blockchains/ethereum/assets/0xeBb66a88cEdd12bfE3a289df6DFEe377F2963F12/logo.png differ diff --git a/blockchains/ethereum/assets/0xeC1cad815B5e8F0f86bb8fB2ADd2774886e79CF0/info.json b/blockchains/ethereum/assets/0xeC1cad815B5e8F0f86bb8fB2ADd2774886e79CF0/info.json new file mode 100644 index 00000000..ae693bf8 --- /dev/null +++ b/blockchains/ethereum/assets/0xeC1cad815B5e8F0f86bb8fB2ADd2774886e79CF0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Free Crypto Lotto", + "symbol": "FCL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeC1cad815B5e8F0f86bb8fB2ADd2774886e79CF0", + "status": "abandoned", + "id": "0xeC1cad815B5e8F0f86bb8fB2ADd2774886e79CF0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeC1cad815B5e8F0f86bb8fB2ADd2774886e79CF0/logo.png b/blockchains/ethereum/assets/0xeC1cad815B5e8F0f86bb8fB2ADd2774886e79CF0/logo.png new file mode 100644 index 00000000..d6d532f1 Binary files /dev/null and b/blockchains/ethereum/assets/0xeC1cad815B5e8F0f86bb8fB2ADd2774886e79CF0/logo.png differ diff --git a/blockchains/ethereum/assets/0xeC21890967a8CEb3e55a3F79dAc4E90673ba3C2E/info.json b/blockchains/ethereum/assets/0xeC21890967a8CEb3e55a3F79dAc4E90673ba3C2E/info.json new file mode 100644 index 00000000..a822e6fd --- /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 00000000..aa5c8ae2 Binary files /dev/null and b/blockchains/ethereum/assets/0xeC21890967a8CEb3e55a3F79dAc4E90673ba3C2E/logo.png differ diff --git a/blockchains/ethereum/assets/0xeC46f8207D766012454c408De210BCBc2243E71c/info.json b/blockchains/ethereum/assets/0xeC46f8207D766012454c408De210BCBc2243E71c/info.json new file mode 100644 index 00000000..7ce0f1dd --- /dev/null +++ b/blockchains/ethereum/assets/0xeC46f8207D766012454c408De210BCBc2243E71c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nitro", + "symbol": "NOX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.nitro.live/", + "explorer": "https://etherscan.io/token/0xeC46f8207D766012454c408De210BCBc2243E71c", + "status": "abandoned", + "id": "0xeC46f8207D766012454c408De210BCBc2243E71c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeC46f8207D766012454c408De210BCBc2243E71c/logo.png b/blockchains/ethereum/assets/0xeC46f8207D766012454c408De210BCBc2243E71c/logo.png new file mode 100644 index 00000000..0a740b6f Binary files /dev/null and b/blockchains/ethereum/assets/0xeC46f8207D766012454c408De210BCBc2243E71c/logo.png differ diff --git a/blockchains/ethereum/assets/0xeC5293d858e4971861Ef1E60C4E25bDcfe5868cf/info.json b/blockchains/ethereum/assets/0xeC5293d858e4971861Ef1E60C4E25bDcfe5868cf/info.json new file mode 100644 index 00000000..0fb259ca --- /dev/null +++ b/blockchains/ethereum/assets/0xeC5293d858e4971861Ef1E60C4E25bDcfe5868cf/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRE W WIND TOKEN", + "symbol": "TRE W", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeC5293d858e4971861Ef1E60C4E25bDcfe5868cf", + "status": "abandoned", + "id": "0xeC5293d858e4971861Ef1E60C4E25bDcfe5868cf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeC5293d858e4971861Ef1E60C4E25bDcfe5868cf/logo.png b/blockchains/ethereum/assets/0xeC5293d858e4971861Ef1E60C4E25bDcfe5868cf/logo.png new file mode 100644 index 00000000..20a0aa6a Binary files /dev/null and b/blockchains/ethereum/assets/0xeC5293d858e4971861Ef1E60C4E25bDcfe5868cf/logo.png differ diff --git a/blockchains/ethereum/assets/0xeC7B47714196caf09fDC7A983DC6b250eff851fC/info.json b/blockchains/ethereum/assets/0xeC7B47714196caf09fDC7A983DC6b250eff851fC/info.json new file mode 100644 index 00000000..7d9c5705 --- /dev/null +++ b/blockchains/ethereum/assets/0xeC7B47714196caf09fDC7A983DC6b250eff851fC/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR 600", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeC7B47714196caf09fDC7A983DC6b250eff851fC", + "status": "abandoned", + "id": "0xeC7B47714196caf09fDC7A983DC6b250eff851fC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeC7B47714196caf09fDC7A983DC6b250eff851fC/logo.png b/blockchains/ethereum/assets/0xeC7B47714196caf09fDC7A983DC6b250eff851fC/logo.png new file mode 100644 index 00000000..5ddfe1fb Binary files /dev/null and b/blockchains/ethereum/assets/0xeC7B47714196caf09fDC7A983DC6b250eff851fC/logo.png differ diff --git a/blockchains/ethereum/assets/0xeCd1de1eF1169594825034117532ed4F7FA2e5D9/info.json b/blockchains/ethereum/assets/0xeCd1de1eF1169594825034117532ed4F7FA2e5D9/info.json new file mode 100644 index 00000000..581299dc --- /dev/null +++ b/blockchains/ethereum/assets/0xeCd1de1eF1169594825034117532ed4F7FA2e5D9/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 327-CN17", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeCd1de1eF1169594825034117532ed4F7FA2e5D9", + "status": "abandoned", + "id": "0xeCd1de1eF1169594825034117532ed4F7FA2e5D9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeCd1de1eF1169594825034117532ed4F7FA2e5D9/logo.png b/blockchains/ethereum/assets/0xeCd1de1eF1169594825034117532ed4F7FA2e5D9/logo.png new file mode 100644 index 00000000..3b2c2fda Binary files /dev/null and b/blockchains/ethereum/assets/0xeCd1de1eF1169594825034117532ed4F7FA2e5D9/logo.png differ diff --git a/blockchains/ethereum/assets/0xeD0F59d483977b2bdE55fEcC81E7534FE7e605E7/info.json b/blockchains/ethereum/assets/0xeD0F59d483977b2bdE55fEcC81E7534FE7e605E7/info.json new file mode 100644 index 00000000..66da0054 --- /dev/null +++ b/blockchains/ethereum/assets/0xeD0F59d483977b2bdE55fEcC81E7534FE7e605E7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ganja Token", + "symbol": "GNJ", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://ganja.com", + "explorer": "https://etherscan.io/token/0xeD0F59d483977b2bdE55fEcC81E7534FE7e605E7", + "status": "abandoned", + "id": "0xeD0F59d483977b2bdE55fEcC81E7534FE7e605E7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeD0F59d483977b2bdE55fEcC81E7534FE7e605E7/logo.png b/blockchains/ethereum/assets/0xeD0F59d483977b2bdE55fEcC81E7534FE7e605E7/logo.png new file mode 100644 index 00000000..17547d6e Binary files /dev/null and b/blockchains/ethereum/assets/0xeD0F59d483977b2bdE55fEcC81E7534FE7e605E7/logo.png differ diff --git a/blockchains/ethereum/assets/0xeD351575b9869AADA94435e0066ba38E08800b60/info.json b/blockchains/ethereum/assets/0xeD351575b9869AADA94435e0066ba38E08800b60/info.json new file mode 100644 index 00000000..5da06e7d --- /dev/null +++ b/blockchains/ethereum/assets/0xeD351575b9869AADA94435e0066ba38E08800b60/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mcr Stablecoin", + "symbol": "MCR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeD351575b9869AADA94435e0066ba38E08800b60", + "status": "abandoned", + "id": "0xeD351575b9869AADA94435e0066ba38E08800b60" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeD351575b9869AADA94435e0066ba38E08800b60/logo.png b/blockchains/ethereum/assets/0xeD351575b9869AADA94435e0066ba38E08800b60/logo.png new file mode 100644 index 00000000..4165fe36 Binary files /dev/null and b/blockchains/ethereum/assets/0xeD351575b9869AADA94435e0066ba38E08800b60/logo.png differ diff --git a/blockchains/ethereum/assets/0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e/info.json b/blockchains/ethereum/assets/0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e/info.json new file mode 100644 index 00000000..c92794e4 --- /dev/null +++ b/blockchains/ethereum/assets/0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e/info.json @@ -0,0 +1,32 @@ +{ + "name": "OMI Token", + "type": "ERC20", + "symbol": "OMI", + "decimals": 18, + "website": "https://www.ecomi.com/", + "description": "The OMI token underpins transactions on the VeVe digital collectible NFT platform, offering premium licensed NFTs to millions of users around the world from more than 200+ brand partners and artists, including Disney, Marvel, General Motors, Cartoon Network, Pixar, Sony, Universal and more", + "explorer": "https://etherscan.io/token/0xed35af169af46a02ee13b9d79eb57d6d68c1749e", + "status": "active", + "id": "0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e", + "links": [ + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1UNE-EvjuMIaWJUfvF3qQiTe0OKLFAJXV/view" + }, + { + "name": "facebook", + "url": "https://facebook.com/veve.digital.collectibles" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ecomi-new/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ecomi/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e/logo.png b/blockchains/ethereum/assets/0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e/logo.png new file mode 100644 index 00000000..9aa7d1c1 Binary files /dev/null and b/blockchains/ethereum/assets/0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e/logo.png differ diff --git a/blockchains/ethereum/assets/0xeD3618Bb8778F8eBBe2f241Da532227591771D04/info.json b/blockchains/ethereum/assets/0xeD3618Bb8778F8eBBe2f241Da532227591771D04/info.json new file mode 100644 index 00000000..c3220834 --- /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 00000000..731ceba6 Binary files /dev/null and b/blockchains/ethereum/assets/0xeD3618Bb8778F8eBBe2f241Da532227591771D04/logo.png differ diff --git a/blockchains/ethereum/assets/0xeD42CeDcADbFbCAA3E6F411B09567C2C0b5AD28F/info.json b/blockchains/ethereum/assets/0xeD42CeDcADbFbCAA3E6F411B09567C2C0b5AD28F/info.json new file mode 100644 index 00000000..ec5453fb --- /dev/null +++ b/blockchains/ethereum/assets/0xeD42CeDcADbFbCAA3E6F411B09567C2C0b5AD28F/info.json @@ -0,0 +1,11 @@ +{ + "name": "RealToken 9336 Patton Street Detroit MI", + "symbol": "REALTOKEN-9336-PATTON-ST-DETROIT-MI", + "type": "ERC20", + "decimals": 18, + "description": "9336 Patton Street is a single-family home located in the Franklin Park neighborhood of the greater Detroit area. Patton is a mid-century 3 bed, 1 bath, single floor property.", + "website": "https://realt.co/product/9336-patton-st-detroit-mi-48228/", + "explorer": "https://etherscan.io/token/0xeD42CeDcADbFbCAA3E6F411B09567C2C0b5AD28F", + "status": "active", + "id": "0xeD42CeDcADbFbCAA3E6F411B09567C2C0b5AD28F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeD42CeDcADbFbCAA3E6F411B09567C2C0b5AD28F/logo.png b/blockchains/ethereum/assets/0xeD42CeDcADbFbCAA3E6F411B09567C2C0b5AD28F/logo.png new file mode 100644 index 00000000..4617b23e Binary files /dev/null and b/blockchains/ethereum/assets/0xeD42CeDcADbFbCAA3E6F411B09567C2C0b5AD28F/logo.png differ diff --git a/blockchains/ethereum/assets/0xeDA2A392E668e174F2E6CA2Ae544a6c86E3E681B/info.json b/blockchains/ethereum/assets/0xeDA2A392E668e174F2E6CA2Ae544a6c86E3E681B/info.json new file mode 100644 index 00000000..a2950a50 --- /dev/null +++ b/blockchains/ethereum/assets/0xeDA2A392E668e174F2E6CA2Ae544a6c86E3E681B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitsavereum", + "symbol": "BVM", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeDA2A392E668e174F2E6CA2Ae544a6c86E3E681B", + "status": "abandoned", + "id": "0xeDA2A392E668e174F2E6CA2Ae544a6c86E3E681B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeDA2A392E668e174F2E6CA2Ae544a6c86E3E681B/logo.png b/blockchains/ethereum/assets/0xeDA2A392E668e174F2E6CA2Ae544a6c86E3E681B/logo.png new file mode 100644 index 00000000..0b09d5d2 Binary files /dev/null and b/blockchains/ethereum/assets/0xeDA2A392E668e174F2E6CA2Ae544a6c86E3E681B/logo.png differ diff --git a/blockchains/ethereum/assets/0xeDBaF3c5100302dCddA53269322f3730b1F0416d/info.json b/blockchains/ethereum/assets/0xeDBaF3c5100302dCddA53269322f3730b1F0416d/info.json new file mode 100644 index 00000000..1ef1c904 --- /dev/null +++ b/blockchains/ethereum/assets/0xeDBaF3c5100302dCddA53269322f3730b1F0416d/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "\"\"", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeDBaF3c5100302dCddA53269322f3730b1F0416d", + "status": "abandoned", + "id": "0xeDBaF3c5100302dCddA53269322f3730b1F0416d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeDBaF3c5100302dCddA53269322f3730b1F0416d/logo.png b/blockchains/ethereum/assets/0xeDBaF3c5100302dCddA53269322f3730b1F0416d/logo.png new file mode 100755 index 00000000..d91a4bb6 Binary files /dev/null and b/blockchains/ethereum/assets/0xeDBaF3c5100302dCddA53269322f3730b1F0416d/logo.png differ diff --git a/blockchains/ethereum/assets/0xeDEec5691f23E4914cF0183A4196bBEb30d027a0/info.json b/blockchains/ethereum/assets/0xeDEec5691f23E4914cF0183A4196bBEb30d027a0/info.json new file mode 100644 index 00000000..ae68f427 --- /dev/null +++ b/blockchains/ethereum/assets/0xeDEec5691f23E4914cF0183A4196bBEb30d027a0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped Statera", + "website": "https://stateratoken.com", + "description": "Wrapped Statera is a wrapper for Statera to enable its successful usage on Dex aggregators and multi-token pools", + "explorer": "https://etherscan.io/token/0xedeec5691f23e4914cf0183a4196bbeb30d027a0", + "type": "ERC20", + "symbol": "WSTA", + "decimals": 18, + "status": "active", + "id": "0xeDEec5691f23E4914cF0183A4196bBEb30d027a0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeDEec5691f23E4914cF0183A4196bBEb30d027a0/logo.png b/blockchains/ethereum/assets/0xeDEec5691f23E4914cF0183A4196bBEb30d027a0/logo.png new file mode 100644 index 00000000..7df8d8e6 Binary files /dev/null and b/blockchains/ethereum/assets/0xeDEec5691f23E4914cF0183A4196bBEb30d027a0/logo.png differ diff --git a/blockchains/ethereum/assets/0xeDbcC06B603ea1f512720A4073a62CC4fdefCb86/info.json b/blockchains/ethereum/assets/0xeDbcC06B603ea1f512720A4073a62CC4fdefCb86/info.json new file mode 100644 index 00000000..3ad23bdf --- /dev/null +++ b/blockchains/ethereum/assets/0xeDbcC06B603ea1f512720A4073a62CC4fdefCb86/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hashtrust", + "symbol": "HTX", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://hashtrust.io/", + "explorer": "https://etherscan.io/token/0xeDbcC06B603ea1f512720A4073a62CC4fdefCb86", + "status": "abandoned", + "id": "0xeDbcC06B603ea1f512720A4073a62CC4fdefCb86" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeDbcC06B603ea1f512720A4073a62CC4fdefCb86/logo.png b/blockchains/ethereum/assets/0xeDbcC06B603ea1f512720A4073a62CC4fdefCb86/logo.png new file mode 100755 index 00000000..b3d9e32f Binary files /dev/null and b/blockchains/ethereum/assets/0xeDbcC06B603ea1f512720A4073a62CC4fdefCb86/logo.png differ diff --git a/blockchains/ethereum/assets/0xeE0f286776639cD363Da810DAF3e0623F82576b0/info.json b/blockchains/ethereum/assets/0xeE0f286776639cD363Da810DAF3e0623F82576b0/info.json new file mode 100644 index 00000000..09e5b4ae --- /dev/null +++ b/blockchains/ethereum/assets/0xeE0f286776639cD363Da810DAF3e0623F82576b0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lung Protocol", + "symbol": "L2P", + "type": "ERC20", + "decimals": 18, + "description": "Lung protocol is a platform created for buyers and sellers all over the world.With an easy-to-use online store builder Platform, any seller is able to create their own storefront to sell their things, while making use of the Lung protocol platform’s wide range of features for a minimal fee.", + "website": "https://lungprotocol.info/", + "explorer": "https://etherscan.io/token/0xeE0f286776639cD363Da810DAF3e0623F82576b0", + "status": "active", + "id": "0xeE0f286776639cD363Da810DAF3e0623F82576b0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeE0f286776639cD363Da810DAF3e0623F82576b0/logo.png b/blockchains/ethereum/assets/0xeE0f286776639cD363Da810DAF3e0623F82576b0/logo.png new file mode 100644 index 00000000..97437301 Binary files /dev/null and b/blockchains/ethereum/assets/0xeE0f286776639cD363Da810DAF3e0623F82576b0/logo.png differ diff --git a/blockchains/ethereum/assets/0xeE31F758b803b61Dfe2A56c6782C605d9131417e/info.json b/blockchains/ethereum/assets/0xeE31F758b803b61Dfe2A56c6782C605d9131417e/info.json new file mode 100644 index 00000000..18f928bf --- /dev/null +++ b/blockchains/ethereum/assets/0xeE31F758b803b61Dfe2A56c6782C605d9131417e/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R916852", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeE31F758b803b61Dfe2A56c6782C605d9131417e", + "status": "abandoned", + "id": "0xeE31F758b803b61Dfe2A56c6782C605d9131417e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeE31F758b803b61Dfe2A56c6782C605d9131417e/logo.png b/blockchains/ethereum/assets/0xeE31F758b803b61Dfe2A56c6782C605d9131417e/logo.png new file mode 100644 index 00000000..685d3388 Binary files /dev/null and b/blockchains/ethereum/assets/0xeE31F758b803b61Dfe2A56c6782C605d9131417e/logo.png differ diff --git a/blockchains/ethereum/assets/0xeE3b9B531F4C564c70e14B7b3BB7D516f33513ff/info.json b/blockchains/ethereum/assets/0xeE3b9B531F4C564c70e14B7b3BB7D516f33513ff/info.json new file mode 100644 index 00000000..69c15f69 --- /dev/null +++ b/blockchains/ethereum/assets/0xeE3b9B531F4C564c70e14B7b3BB7D516f33513ff/info.json @@ -0,0 +1,11 @@ +{ + "name": "DeFi Omega", + "symbol": "DFIO", + "type": "ERC20", + "decimals": 18, + "description": "DeFi Omega comprises an elite network of individuals in decentralized finance, with common goals, values, and objectives. DeFi Omega is a global network, a DeFi thinktank, and a group policymakers with the goal of shaping future policy in decentralized finance.", + "website": "https://defiomega.com/", + "explorer": "https://etherscan.io/token/0xeE3b9B531F4C564c70e14B7b3BB7D516f33513ff", + "status": "active", + "id": "0xeE3b9B531F4C564c70e14B7b3BB7D516f33513ff" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeE3b9B531F4C564c70e14B7b3BB7D516f33513ff/logo.png b/blockchains/ethereum/assets/0xeE3b9B531F4C564c70e14B7b3BB7D516f33513ff/logo.png new file mode 100644 index 00000000..dbb77e66 Binary files /dev/null and b/blockchains/ethereum/assets/0xeE3b9B531F4C564c70e14B7b3BB7D516f33513ff/logo.png differ diff --git a/blockchains/ethereum/assets/0xeE4458e052B533b1aABD493B5f8c4d85D7B263Dc/info.json b/blockchains/ethereum/assets/0xeE4458e052B533b1aABD493B5f8c4d85D7B263Dc/info.json new file mode 100644 index 00000000..8baeb138 --- /dev/null +++ b/blockchains/ethereum/assets/0xeE4458e052B533b1aABD493B5f8c4d85D7B263Dc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockpass", + "symbol": "PASS", + "type": "ERC20", + "decimals": 6, + "description": "Blockpass, the pioneer of On-chain KYC(TM), is a fast, fully comprehensive KYC & AML screening software-as-a-service for blockchains, Crypto, Defi and other regulated industries. With Blockpass, you get compliance functionality that includes pay-as-you-go, no setup cost, no integration necessary, free testing, immediate launch and at the lowest cost.", + "website": "https://blockpass.org/", + "explorer": "https://etherscan.io/token/0xeE4458e052B533b1aABD493B5f8c4d85D7B263Dc", + "status": "active", + "id": "0xeE4458e052B533b1aABD493B5f8c4d85D7B263Dc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeE4458e052B533b1aABD493B5f8c4d85D7B263Dc/logo.png b/blockchains/ethereum/assets/0xeE4458e052B533b1aABD493B5f8c4d85D7B263Dc/logo.png new file mode 100644 index 00000000..5dddf733 Binary files /dev/null and b/blockchains/ethereum/assets/0xeE4458e052B533b1aABD493B5f8c4d85D7B263Dc/logo.png differ diff --git a/blockchains/ethereum/assets/0xeE6a3cD161bbDa18300c03ed1A7B33544c5dfC3c/info.json b/blockchains/ethereum/assets/0xeE6a3cD161bbDa18300c03ed1A7B33544c5dfC3c/info.json new file mode 100644 index 00000000..8c798fb9 --- /dev/null +++ b/blockchains/ethereum/assets/0xeE6a3cD161bbDa18300c03ed1A7B33544c5dfC3c/info.json @@ -0,0 +1,11 @@ +{ + "name": "NLC Token", + "symbol": "NLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeE6a3cD161bbDa18300c03ed1A7B33544c5dfC3c", + "status": "abandoned", + "id": "0xeE6a3cD161bbDa18300c03ed1A7B33544c5dfC3c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeE6a3cD161bbDa18300c03ed1A7B33544c5dfC3c/logo.png b/blockchains/ethereum/assets/0xeE6a3cD161bbDa18300c03ed1A7B33544c5dfC3c/logo.png new file mode 100644 index 00000000..1a34c5ac Binary files /dev/null and b/blockchains/ethereum/assets/0xeE6a3cD161bbDa18300c03ed1A7B33544c5dfC3c/logo.png differ diff --git a/blockchains/ethereum/assets/0xeE8D611d2dEcc2AcB30191353A8e04496fC02090/info.json b/blockchains/ethereum/assets/0xeE8D611d2dEcc2AcB30191353A8e04496fC02090/info.json new file mode 100644 index 00000000..5caa3596 --- /dev/null +++ b/blockchains/ethereum/assets/0xeE8D611d2dEcc2AcB30191353A8e04496fC02090/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRYPTOVENO", + "symbol": "VENO2", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeE8D611d2dEcc2AcB30191353A8e04496fC02090", + "status": "abandoned", + "id": "0xeE8D611d2dEcc2AcB30191353A8e04496fC02090" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeE8D611d2dEcc2AcB30191353A8e04496fC02090/logo.png b/blockchains/ethereum/assets/0xeE8D611d2dEcc2AcB30191353A8e04496fC02090/logo.png new file mode 100755 index 00000000..e8a41f55 Binary files /dev/null and b/blockchains/ethereum/assets/0xeE8D611d2dEcc2AcB30191353A8e04496fC02090/logo.png differ diff --git a/blockchains/ethereum/assets/0xeE9d859eEaEc3d8E3Ff176a89b18EDfC62c23728/info.json b/blockchains/ethereum/assets/0xeE9d859eEaEc3d8E3Ff176a89b18EDfC62c23728/info.json new file mode 100644 index 00000000..43206e50 --- /dev/null +++ b/blockchains/ethereum/assets/0xeE9d859eEaEc3d8E3Ff176a89b18EDfC62c23728/info.json @@ -0,0 +1,11 @@ +{ + "name": "Flippers", + "symbol": "PEEP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeE9d859eEaEc3d8E3Ff176a89b18EDfC62c23728", + "status": "abandoned", + "id": "0xeE9d859eEaEc3d8E3Ff176a89b18EDfC62c23728" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeE9d859eEaEc3d8E3Ff176a89b18EDfC62c23728/logo.png b/blockchains/ethereum/assets/0xeE9d859eEaEc3d8E3Ff176a89b18EDfC62c23728/logo.png new file mode 100644 index 00000000..4cac2233 Binary files /dev/null and b/blockchains/ethereum/assets/0xeE9d859eEaEc3d8E3Ff176a89b18EDfC62c23728/logo.png differ diff --git a/blockchains/ethereum/assets/0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107/info.json b/blockchains/ethereum/assets/0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107/info.json new file mode 100644 index 00000000..558c55ad --- /dev/null +++ b/blockchains/ethereum/assets/0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107/info.json @@ -0,0 +1,11 @@ +{ + "name": "GOVI", + "website": "https://cvi.finance", + "description": "GOVI token is a governance token for the protocol and platform.", + "explorer": "https://etherscan.io/token/0xeeaa40b28a2d1b0b08f6f97bb1dd4b75316c6107", + "type": "ERC20", + "symbol": "GOVI", + "decimals": 18, + "status": "active", + "id": "0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107/logo.png b/blockchains/ethereum/assets/0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107/logo.png new file mode 100644 index 00000000..b8678b8d Binary files /dev/null and b/blockchains/ethereum/assets/0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107/logo.png differ diff --git a/blockchains/ethereum/assets/0xeEEE2a622330E6d2036691e983DEe87330588603/info.json b/blockchains/ethereum/assets/0xeEEE2a622330E6d2036691e983DEe87330588603/info.json new file mode 100644 index 00000000..99ae872d --- /dev/null +++ b/blockchains/ethereum/assets/0xeEEE2a622330E6d2036691e983DEe87330588603/info.json @@ -0,0 +1,11 @@ +{ + "name": "Asko", + "website": "https://askobar-network.com", + "description": "A community based project that drives the adoption of crypto which will attract new comers to the industry.", + "explorer": "https://etherscan.io/token/0xeeee2a622330e6d2036691e983dee87330588603", + "type": "ERC20", + "symbol": "ASKO", + "decimals": 18, + "status": "active", + "id": "0xeEEE2a622330E6d2036691e983DEe87330588603" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeEEE2a622330E6d2036691e983DEe87330588603/logo.png b/blockchains/ethereum/assets/0xeEEE2a622330E6d2036691e983DEe87330588603/logo.png new file mode 100644 index 00000000..84033fa0 Binary files /dev/null and b/blockchains/ethereum/assets/0xeEEE2a622330E6d2036691e983DEe87330588603/logo.png differ diff --git a/blockchains/ethereum/assets/0xeEFd6996b400693Ff7bD98d653c19BD418E8cE7c/info.json b/blockchains/ethereum/assets/0xeEFd6996b400693Ff7bD98d653c19BD418E8cE7c/info.json new file mode 100644 index 00000000..a4b455c1 --- /dev/null +++ b/blockchains/ethereum/assets/0xeEFd6996b400693Ff7bD98d653c19BD418E8cE7c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Loans Token", + "symbol": "LBP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeEFd6996b400693Ff7bD98d653c19BD418E8cE7c", + "status": "abandoned", + "id": "0xeEFd6996b400693Ff7bD98d653c19BD418E8cE7c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeEFd6996b400693Ff7bD98d653c19BD418E8cE7c/logo.png b/blockchains/ethereum/assets/0xeEFd6996b400693Ff7bD98d653c19BD418E8cE7c/logo.png new file mode 100644 index 00000000..01c26645 Binary files /dev/null and b/blockchains/ethereum/assets/0xeEFd6996b400693Ff7bD98d653c19BD418E8cE7c/logo.png differ diff --git a/blockchains/ethereum/assets/0xeF1344bDf80BEf3Ff4428d8bECEC3eea4A2cF574/info.json b/blockchains/ethereum/assets/0xeF1344bDf80BEf3Ff4428d8bECEC3eea4A2cF574/info.json new file mode 100644 index 00000000..e4b7fa29 --- /dev/null +++ b/blockchains/ethereum/assets/0xeF1344bDf80BEf3Ff4428d8bECEC3eea4A2cF574/info.json @@ -0,0 +1,11 @@ +{ + "name": "Era Swap", + "symbol": "ES", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://eraswaptoken.io/", + "explorer": "https://etherscan.io/token/0xeF1344bDf80BEf3Ff4428d8bECEC3eea4A2cF574", + "status": "abandoned", + "id": "0xeF1344bDf80BEf3Ff4428d8bECEC3eea4A2cF574" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeF1344bDf80BEf3Ff4428d8bECEC3eea4A2cF574/logo.png b/blockchains/ethereum/assets/0xeF1344bDf80BEf3Ff4428d8bECEC3eea4A2cF574/logo.png new file mode 100644 index 00000000..b90ba3fa Binary files /dev/null and b/blockchains/ethereum/assets/0xeF1344bDf80BEf3Ff4428d8bECEC3eea4A2cF574/logo.png differ diff --git a/blockchains/ethereum/assets/0xeF38DafB6D215EDe5Fb3766c07388F8110Cecf24/info.json b/blockchains/ethereum/assets/0xeF38DafB6D215EDe5Fb3766c07388F8110Cecf24/info.json new file mode 100644 index 00000000..6f24ff9f --- /dev/null +++ b/blockchains/ethereum/assets/0xeF38DafB6D215EDe5Fb3766c07388F8110Cecf24/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R891399", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeF38DafB6D215EDe5Fb3766c07388F8110Cecf24", + "status": "abandoned", + "id": "0xeF38DafB6D215EDe5Fb3766c07388F8110Cecf24" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeF38DafB6D215EDe5Fb3766c07388F8110Cecf24/logo.png b/blockchains/ethereum/assets/0xeF38DafB6D215EDe5Fb3766c07388F8110Cecf24/logo.png new file mode 100644 index 00000000..e3b41ca0 Binary files /dev/null and b/blockchains/ethereum/assets/0xeF38DafB6D215EDe5Fb3766c07388F8110Cecf24/logo.png differ diff --git a/blockchains/ethereum/assets/0xeF4461891DfB3AC8572cCf7C794664A8DD927945/info.json b/blockchains/ethereum/assets/0xeF4461891DfB3AC8572cCf7C794664A8DD927945/info.json new file mode 100644 index 00000000..85766a73 --- /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 00000000..dd09bc1d Binary files /dev/null and b/blockchains/ethereum/assets/0xeF4461891DfB3AC8572cCf7C794664A8DD927945/logo.png differ diff --git a/blockchains/ethereum/assets/0xeF65887a05415bF6316204b5ffB350d4d1a19BBA/info.json b/blockchains/ethereum/assets/0xeF65887a05415bF6316204b5ffB350d4d1a19BBA/info.json new file mode 100644 index 00000000..03118268 --- /dev/null +++ b/blockchains/ethereum/assets/0xeF65887a05415bF6316204b5ffB350d4d1a19BBA/info.json @@ -0,0 +1,11 @@ +{ + "name": "ExtStock Token", + "symbol": "XT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://extstock.com/", + "explorer": "https://etherscan.io/token/0xeF65887a05415bF6316204b5ffB350d4d1a19BBA", + "status": "abandoned", + "id": "0xeF65887a05415bF6316204b5ffB350d4d1a19BBA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeF65887a05415bF6316204b5ffB350d4d1a19BBA/logo.png b/blockchains/ethereum/assets/0xeF65887a05415bF6316204b5ffB350d4d1a19BBA/logo.png new file mode 100644 index 00000000..3673bbb0 Binary files /dev/null and b/blockchains/ethereum/assets/0xeF65887a05415bF6316204b5ffB350d4d1a19BBA/logo.png differ diff --git a/blockchains/ethereum/assets/0xeF764855F98C5Ef9cbe29b908510dd4e101616d1/info.json b/blockchains/ethereum/assets/0xeF764855F98C5Ef9cbe29b908510dd4e101616d1/info.json new file mode 100644 index 00000000..172d005f --- /dev/null +++ b/blockchains/ethereum/assets/0xeF764855F98C5Ef9cbe29b908510dd4e101616d1/info.json @@ -0,0 +1,11 @@ +{ + "name": "FIRA", + "symbol": "FIRA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeF764855F98C5Ef9cbe29b908510dd4e101616d1", + "status": "active", + "id": "0xeF764855F98C5Ef9cbe29b908510dd4e101616d1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeF764855F98C5Ef9cbe29b908510dd4e101616d1/logo.png b/blockchains/ethereum/assets/0xeF764855F98C5Ef9cbe29b908510dd4e101616d1/logo.png new file mode 100644 index 00000000..23be39ee Binary files /dev/null and b/blockchains/ethereum/assets/0xeF764855F98C5Ef9cbe29b908510dd4e101616d1/logo.png differ diff --git a/blockchains/ethereum/assets/0xeF80158b7Db893E74fac82fE32415d9420e60ffd/info.json b/blockchains/ethereum/assets/0xeF80158b7Db893E74fac82fE32415d9420e60ffd/info.json new file mode 100644 index 00000000..41813132 --- /dev/null +++ b/blockchains/ethereum/assets/0xeF80158b7Db893E74fac82fE32415d9420e60ffd/info.json @@ -0,0 +1,11 @@ +{ + "name": "BananaFundCoin", + "symbol": "BAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeF80158b7Db893E74fac82fE32415d9420e60ffd", + "status": "abandoned", + "id": "0xeF80158b7Db893E74fac82fE32415d9420e60ffd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeF80158b7Db893E74fac82fE32415d9420e60ffd/logo.png b/blockchains/ethereum/assets/0xeF80158b7Db893E74fac82fE32415d9420e60ffd/logo.png new file mode 100644 index 00000000..d7fdfc46 Binary files /dev/null and b/blockchains/ethereum/assets/0xeF80158b7Db893E74fac82fE32415d9420e60ffd/logo.png differ diff --git a/blockchains/ethereum/assets/0xeF8bA8cBa86f81B3108f60186FCe9c81B5096D5c/info.json b/blockchains/ethereum/assets/0xeF8bA8cBa86f81B3108f60186FCe9c81B5096D5c/info.json new file mode 100644 index 00000000..0fe51ce0 --- /dev/null +++ b/blockchains/ethereum/assets/0xeF8bA8cBa86f81B3108f60186FCe9c81B5096D5c/info.json @@ -0,0 +1,11 @@ +{ + "name": "YFII GOLD", + "website": "https://yfiigold.finance", + "description": "YFII Gold is the world's first and only YFI pludges elastic token supply defi-protocol", + "explorer": "https://etherscan.io/token/0xeF8bA8cBa86f81B3108f60186FCe9c81B5096D5c", + "type": "ERC20", + "symbol": "YFIIG", + "decimals": 18, + "status": "active", + "id": "0xeF8bA8cBa86f81B3108f60186FCe9c81B5096D5c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeF8bA8cBa86f81B3108f60186FCe9c81B5096D5c/logo.png b/blockchains/ethereum/assets/0xeF8bA8cBa86f81B3108f60186FCe9c81B5096D5c/logo.png new file mode 100644 index 00000000..9fff1cb2 Binary files /dev/null and b/blockchains/ethereum/assets/0xeF8bA8cBa86f81B3108f60186FCe9c81B5096D5c/logo.png differ diff --git a/blockchains/ethereum/assets/0xeF9Cd7882c067686691B6fF49e650b43AFBBCC6B/info.json b/blockchains/ethereum/assets/0xeF9Cd7882c067686691B6fF49e650b43AFBBCC6B/info.json new file mode 100644 index 00000000..d616b8ba --- /dev/null +++ b/blockchains/ethereum/assets/0xeF9Cd7882c067686691B6fF49e650b43AFBBCC6B/info.json @@ -0,0 +1,11 @@ +{ + "name": "FNX Token", + "website": "https://finnexus.io/", + "description": "FNX is the token of FinNexus, the project building a network of multi-chain protocol clusters to power innovative cross-chain DeFi products.", + "explorer": "https://etherscan.io/token/0xeF9Cd7882c067686691B6fF49e650b43AFBBCC6B", + "type": "ERC20", + "symbol": "FNX", + "decimals": 18, + "status": "active", + "id": "0xeF9Cd7882c067686691B6fF49e650b43AFBBCC6B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeF9Cd7882c067686691B6fF49e650b43AFBBCC6B/logo.png b/blockchains/ethereum/assets/0xeF9Cd7882c067686691B6fF49e650b43AFBBCC6B/logo.png new file mode 100644 index 00000000..3564bf8e Binary files /dev/null and b/blockchains/ethereum/assets/0xeF9Cd7882c067686691B6fF49e650b43AFBBCC6B/logo.png differ diff --git a/blockchains/ethereum/assets/0xeFCAfD4A1e76d392d683d4A79cD0E4a751d0BE75/info.json b/blockchains/ethereum/assets/0xeFCAfD4A1e76d392d683d4A79cD0E4a751d0BE75/info.json new file mode 100644 index 00000000..ca08da33 --- /dev/null +++ b/blockchains/ethereum/assets/0xeFCAfD4A1e76d392d683d4A79cD0E4a751d0BE75/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlockChainStore Token", + "symbol": "BCST", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeFCAfD4A1e76d392d683d4A79cD0E4a751d0BE75", + "status": "abandoned", + "id": "0xeFCAfD4A1e76d392d683d4A79cD0E4a751d0BE75" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeFCAfD4A1e76d392d683d4A79cD0E4a751d0BE75/logo.png b/blockchains/ethereum/assets/0xeFCAfD4A1e76d392d683d4A79cD0E4a751d0BE75/logo.png new file mode 100644 index 00000000..713c2bf5 Binary files /dev/null and b/blockchains/ethereum/assets/0xeFCAfD4A1e76d392d683d4A79cD0E4a751d0BE75/logo.png differ diff --git a/blockchains/ethereum/assets/0xea004e8FA3701B8E58E41b78D50996e0f7176CbD/info.json b/blockchains/ethereum/assets/0xea004e8FA3701B8E58E41b78D50996e0f7176CbD/info.json new file mode 100644 index 00000000..63c5d106 --- /dev/null +++ b/blockchains/ethereum/assets/0xea004e8FA3701B8E58E41b78D50996e0f7176CbD/info.json @@ -0,0 +1,29 @@ +{ + "name": "yffc.finance", + "website": "https://yffc.finance/", + "description": "YFFC is active now with the currently products what are launching like STAKE, FARM, GOVERNANCE, and other products are coming. With GOVERNANCE, YFFC will be a community-governed Automated Market Maker, focused on safety and value capture for the robust community of YFFC hodlers. The YFFC platform is packed with unique features aimed at addressing the pain points faced by DEFI of our time", + "explorer": "https://etherscan.io/token/0xea004e8FA3701B8E58E41b78D50996e0f7176CbD", + "type": "ERC20", + "symbol": "YFFC", + "decimals": 18, + "status": "active", + "id": "0xea004e8FA3701B8E58E41b78D50996e0f7176CbD", + "links": [ + { + "name": "github", + "url": "https://github.com/yffcfinance" + }, + { + "name": "x", + "url": "https://x.com/yffc_finance" + }, + { + "name": "telegram", + "url": "https://t.me/yffcfinance" + }, + { + "name": "medium", + "url": "https://medium.com/@yffc.finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xea004e8FA3701B8E58E41b78D50996e0f7176CbD/logo.png b/blockchains/ethereum/assets/0xea004e8FA3701B8E58E41b78D50996e0f7176CbD/logo.png new file mode 100644 index 00000000..89c68195 Binary files /dev/null and b/blockchains/ethereum/assets/0xea004e8FA3701B8E58E41b78D50996e0f7176CbD/logo.png differ diff --git a/blockchains/ethereum/assets/0xea0Db24174739aC14110FA992da89d2dAa98E50E/info.json b/blockchains/ethereum/assets/0xea0Db24174739aC14110FA992da89d2dAa98E50E/info.json new file mode 100644 index 00000000..cce0aac3 --- /dev/null +++ b/blockchains/ethereum/assets/0xea0Db24174739aC14110FA992da89d2dAa98E50E/info.json @@ -0,0 +1,11 @@ +{ + "name": "upbtcToken", + "symbol": "UP", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xea0Db24174739aC14110FA992da89d2dAa98E50E", + "status": "abandoned", + "id": "0xea0Db24174739aC14110FA992da89d2dAa98E50E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xea0Db24174739aC14110FA992da89d2dAa98E50E/logo.png b/blockchains/ethereum/assets/0xea0Db24174739aC14110FA992da89d2dAa98E50E/logo.png new file mode 100644 index 00000000..bb9782f4 Binary files /dev/null and b/blockchains/ethereum/assets/0xea0Db24174739aC14110FA992da89d2dAa98E50E/logo.png differ diff --git a/blockchains/ethereum/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/info.json b/blockchains/ethereum/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/info.json new file mode 100644 index 00000000..fa7debf7 --- /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 00000000..446373ce Binary files /dev/null and b/blockchains/ethereum/assets/0xea17Df5Cf6D172224892B5477A16ACb111182478/logo.png differ diff --git a/blockchains/ethereum/assets/0xea3983Fc6D0fbbC41fb6F6091f68F3e08894dC06/info.json b/blockchains/ethereum/assets/0xea3983Fc6D0fbbC41fb6F6091f68F3e08894dC06/info.json new file mode 100644 index 00000000..5c4de353 --- /dev/null +++ b/blockchains/ethereum/assets/0xea3983Fc6D0fbbC41fb6F6091f68F3e08894dC06/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unido", + "website": "https://www.unido.us", + "description": "Unido is a technology ecosystem that addresses the governance, security and accessibility challenges of decentralized applications - enabling enterprises to manage crypto assets and capitalize on DeFi.", + "explorer": "https://etherscan.io/token/0xea3983Fc6D0fbbC41fb6F6091f68F3e08894dC06", + "type": "ERC20", + "symbol": "UDO", + "decimals": 18, + "status": "active", + "id": "0xea3983Fc6D0fbbC41fb6F6091f68F3e08894dC06" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xea3983Fc6D0fbbC41fb6F6091f68F3e08894dC06/logo.png b/blockchains/ethereum/assets/0xea3983Fc6D0fbbC41fb6F6091f68F3e08894dC06/logo.png new file mode 100644 index 00000000..07a67695 Binary files /dev/null and b/blockchains/ethereum/assets/0xea3983Fc6D0fbbC41fb6F6091f68F3e08894dC06/logo.png differ diff --git a/blockchains/ethereum/assets/0xea5eB17d519a9165Fd2d7E024D83856f314958d1/info.json b/blockchains/ethereum/assets/0xea5eB17d519a9165Fd2d7E024D83856f314958d1/info.json new file mode 100644 index 00000000..c89f61c4 --- /dev/null +++ b/blockchains/ethereum/assets/0xea5eB17d519a9165Fd2d7E024D83856f314958d1/info.json @@ -0,0 +1,11 @@ +{ + "name": "CYBERGAME", + "symbol": "CYBG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xea5eB17d519a9165Fd2d7E024D83856f314958d1", + "status": "abandoned", + "id": "0xea5eB17d519a9165Fd2d7E024D83856f314958d1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xea5eB17d519a9165Fd2d7E024D83856f314958d1/logo.png b/blockchains/ethereum/assets/0xea5eB17d519a9165Fd2d7E024D83856f314958d1/logo.png new file mode 100644 index 00000000..70e0fe1d Binary files /dev/null and b/blockchains/ethereum/assets/0xea5eB17d519a9165Fd2d7E024D83856f314958d1/logo.png differ diff --git a/blockchains/ethereum/assets/0xea5f88E54d982Cbb0c441cde4E79bC305e5b43Bc/info.json b/blockchains/ethereum/assets/0xea5f88E54d982Cbb0c441cde4E79bC305e5b43Bc/info.json new file mode 100644 index 00000000..913cc80f --- /dev/null +++ b/blockchains/ethereum/assets/0xea5f88E54d982Cbb0c441cde4E79bC305e5b43Bc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pareto Network Token", + "symbol": "PARETO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://pareto.network/", + "explorer": "https://etherscan.io/token/0xea5f88E54d982Cbb0c441cde4E79bC305e5b43Bc", + "status": "abandoned", + "id": "0xea5f88E54d982Cbb0c441cde4E79bC305e5b43Bc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xea5f88E54d982Cbb0c441cde4E79bC305e5b43Bc/logo.png b/blockchains/ethereum/assets/0xea5f88E54d982Cbb0c441cde4E79bC305e5b43Bc/logo.png new file mode 100644 index 00000000..1c86b63a Binary files /dev/null and b/blockchains/ethereum/assets/0xea5f88E54d982Cbb0c441cde4E79bC305e5b43Bc/logo.png differ diff --git a/blockchains/ethereum/assets/0xea6393d81DC1871ad758b21CB8C72a410bA4f609/info.json b/blockchains/ethereum/assets/0xea6393d81DC1871ad758b21CB8C72a410bA4f609/info.json new file mode 100644 index 00000000..f003c199 --- /dev/null +++ b/blockchains/ethereum/assets/0xea6393d81DC1871ad758b21CB8C72a410bA4f609/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R797551", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xea6393d81DC1871ad758b21CB8C72a410bA4f609", + "status": "abandoned", + "id": "0xea6393d81DC1871ad758b21CB8C72a410bA4f609" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xea6393d81DC1871ad758b21CB8C72a410bA4f609/logo.png b/blockchains/ethereum/assets/0xea6393d81DC1871ad758b21CB8C72a410bA4f609/logo.png new file mode 100644 index 00000000..25f89aa2 Binary files /dev/null and b/blockchains/ethereum/assets/0xea6393d81DC1871ad758b21CB8C72a410bA4f609/logo.png differ diff --git a/blockchains/ethereum/assets/0xea6412Fb370e8d1605E6aEeAA21aD07C3C7e9F24/info.json b/blockchains/ethereum/assets/0xea6412Fb370e8d1605E6aEeAA21aD07C3C7e9F24/info.json new file mode 100644 index 00000000..fc2d549e --- /dev/null +++ b/blockchains/ethereum/assets/0xea6412Fb370e8d1605E6aEeAA21aD07C3C7e9F24/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mushroom (MUSH)", + "type": "ERC20", + "symbol": "MUSH", + "decimals": 18, + "website": "https://www.mushroom.community/", + "description": "Mushroom is a community-driven digital currency supporting financial freedom.", + "explorer": "https://etherscan.io/token/0xea6412Fb370e8d1605E6aEeAA21aD07C3C7e9F24", + "status": "active", + "id": "0xea6412Fb370e8d1605E6aEeAA21aD07C3C7e9F24" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xea6412Fb370e8d1605E6aEeAA21aD07C3C7e9F24/logo.png b/blockchains/ethereum/assets/0xea6412Fb370e8d1605E6aEeAA21aD07C3C7e9F24/logo.png new file mode 100644 index 00000000..9f1c8560 Binary files /dev/null and b/blockchains/ethereum/assets/0xea6412Fb370e8d1605E6aEeAA21aD07C3C7e9F24/logo.png differ diff --git a/blockchains/ethereum/assets/0xea69223de647CbB2e7dfB6b0C9615A0b9d0d497A/info.json b/blockchains/ethereum/assets/0xea69223de647CbB2e7dfB6b0C9615A0b9d0d497A/info.json new file mode 100644 index 00000000..3ba3ccfa --- /dev/null +++ b/blockchains/ethereum/assets/0xea69223de647CbB2e7dfB6b0C9615A0b9d0d497A/info.json @@ -0,0 +1,11 @@ +{ + "name": "GC2019", + "symbol": "GC2019", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xea69223de647CbB2e7dfB6b0C9615A0b9d0d497A", + "status": "abandoned", + "id": "0xea69223de647CbB2e7dfB6b0C9615A0b9d0d497A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xea69223de647CbB2e7dfB6b0C9615A0b9d0d497A/logo.png b/blockchains/ethereum/assets/0xea69223de647CbB2e7dfB6b0C9615A0b9d0d497A/logo.png new file mode 100755 index 00000000..58fc53f3 Binary files /dev/null and b/blockchains/ethereum/assets/0xea69223de647CbB2e7dfB6b0C9615A0b9d0d497A/logo.png differ diff --git a/blockchains/ethereum/assets/0xeaf61FC150CD5c3BeA75744e830D916E60EA5A9F/info.json b/blockchains/ethereum/assets/0xeaf61FC150CD5c3BeA75744e830D916E60EA5A9F/info.json new file mode 100644 index 00000000..c5b92234 --- /dev/null +++ b/blockchains/ethereum/assets/0xeaf61FC150CD5c3BeA75744e830D916E60EA5A9F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Typerium", + "symbol": "TYPE", + "type": "ERC20", + "decimals": 4, + "description": "Create design on a whole new level in just minutes. Download the Typerium APP free now.", + "website": "https://www.typerium.io", + "explorer": "https://etherscan.io/token/0xeaf61FC150CD5c3BeA75744e830D916E60EA5A9F", + "status": "active", + "id": "0xeaf61FC150CD5c3BeA75744e830D916E60EA5A9F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeaf61FC150CD5c3BeA75744e830D916E60EA5A9F/logo.png b/blockchains/ethereum/assets/0xeaf61FC150CD5c3BeA75744e830D916E60EA5A9F/logo.png new file mode 100644 index 00000000..a45f7f12 Binary files /dev/null and b/blockchains/ethereum/assets/0xeaf61FC150CD5c3BeA75744e830D916E60EA5A9F/logo.png differ diff --git a/blockchains/ethereum/assets/0xeb021DD3E42dc6FDb6CdE54d0C4a09f82a6bcA29/info.json b/blockchains/ethereum/assets/0xeb021DD3E42dc6FDb6CdE54d0C4a09f82a6bcA29/info.json new file mode 100644 index 00000000..d1cfb8d4 --- /dev/null +++ b/blockchains/ethereum/assets/0xeb021DD3E42dc6FDb6CdE54d0C4a09f82a6bcA29/info.json @@ -0,0 +1,11 @@ +{ + "name": "FNKOSToken", + "symbol": "FNKOS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeb021DD3E42dc6FDb6CdE54d0C4a09f82a6bcA29", + "status": "abandoned", + "id": "0xeb021DD3E42dc6FDb6CdE54d0C4a09f82a6bcA29" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeb021DD3E42dc6FDb6CdE54d0C4a09f82a6bcA29/logo.png b/blockchains/ethereum/assets/0xeb021DD3E42dc6FDb6CdE54d0C4a09f82a6bcA29/logo.png new file mode 100644 index 00000000..66c1a54d Binary files /dev/null and b/blockchains/ethereum/assets/0xeb021DD3E42dc6FDb6CdE54d0C4a09f82a6bcA29/logo.png differ diff --git a/blockchains/ethereum/assets/0xeb05aa5d9AA6EA4858b8ea63926cB2ec4c94bD8D/info.json b/blockchains/ethereum/assets/0xeb05aa5d9AA6EA4858b8ea63926cB2ec4c94bD8D/info.json new file mode 100644 index 00000000..f85631a1 --- /dev/null +++ b/blockchains/ethereum/assets/0xeb05aa5d9AA6EA4858b8ea63926cB2ec4c94bD8D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Epic Protocol", + "symbol": "EPP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeb05aa5d9AA6EA4858b8ea63926cB2ec4c94bD8D", + "status": "abandoned", + "id": "0xeb05aa5d9AA6EA4858b8ea63926cB2ec4c94bD8D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeb05aa5d9AA6EA4858b8ea63926cB2ec4c94bD8D/logo.png b/blockchains/ethereum/assets/0xeb05aa5d9AA6EA4858b8ea63926cB2ec4c94bD8D/logo.png new file mode 100644 index 00000000..2751364b Binary files /dev/null and b/blockchains/ethereum/assets/0xeb05aa5d9AA6EA4858b8ea63926cB2ec4c94bD8D/logo.png differ diff --git a/blockchains/ethereum/assets/0xeb08d539Be0f6a6C90eA24276196E348f5688A02/info.json b/blockchains/ethereum/assets/0xeb08d539Be0f6a6C90eA24276196E348f5688A02/info.json new file mode 100644 index 00000000..f134670f --- /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 00000000..1e2bfeca Binary files /dev/null and b/blockchains/ethereum/assets/0xeb08d539Be0f6a6C90eA24276196E348f5688A02/logo.png differ diff --git a/blockchains/ethereum/assets/0xeb269732ab75A6fD61Ea60b06fE994cD32a83549/info.json b/blockchains/ethereum/assets/0xeb269732ab75A6fD61Ea60b06fE994cD32a83549/info.json new file mode 100644 index 00000000..00ad0a0b --- /dev/null +++ b/blockchains/ethereum/assets/0xeb269732ab75A6fD61Ea60b06fE994cD32a83549/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"", + "symbol": "USDx", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://dforce.network/", + "explorer": "https://etherscan.io/token/0xeb269732ab75A6fD61Ea60b06fE994cD32a83549", + "status": "abandoned", + "id": "0xeb269732ab75A6fD61Ea60b06fE994cD32a83549" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeb269732ab75A6fD61Ea60b06fE994cD32a83549/logo.png b/blockchains/ethereum/assets/0xeb269732ab75A6fD61Ea60b06fE994cD32a83549/logo.png new file mode 100644 index 00000000..1c01facd Binary files /dev/null and b/blockchains/ethereum/assets/0xeb269732ab75A6fD61Ea60b06fE994cD32a83549/logo.png differ diff --git a/blockchains/ethereum/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/info.json b/blockchains/ethereum/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/info.json new file mode 100644 index 00000000..33ff9280 --- /dev/null +++ b/blockchains/ethereum/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/info.json @@ -0,0 +1,32 @@ +{ + "name": "Gather", + "website": "https://gather.network", + "description": "Gather is a platform that allows publishers to monetize without ads and provides businesses & developers access to cheap and reliable processing power.", + "explorer": "https://etherscan.io/token/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674", + "type": "ERC20", + "symbol": "GTH", + "decimals": 18, + "status": "active", + "id": "0xeb986DA994E4a118d5956b02d8b7c3C7CE373674", + "tags": [ + "governance" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/Gather_Network" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/GatherNetwork" + }, + { + "name": "medium", + "url": "https://medium.com/@GatherNetwork" + }, + { + "name": "whitepaper", + "url": "https://gather.network/whitepaper.html" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/logo.png b/blockchains/ethereum/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/logo.png new file mode 100644 index 00000000..e88e23c8 Binary files /dev/null and b/blockchains/ethereum/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/logo.png differ diff --git a/blockchains/ethereum/assets/0xeb9b5D44BA6225EB74101549fc1c45576Cb3C42e/info.json b/blockchains/ethereum/assets/0xeb9b5D44BA6225EB74101549fc1c45576Cb3C42e/info.json new file mode 100644 index 00000000..dd429258 --- /dev/null +++ b/blockchains/ethereum/assets/0xeb9b5D44BA6225EB74101549fc1c45576Cb3C42e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dragon Token", + "symbol": "DRGT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xeb9b5D44BA6225EB74101549fc1c45576Cb3C42e", + "status": "abandoned", + "id": "0xeb9b5D44BA6225EB74101549fc1c45576Cb3C42e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeb9b5D44BA6225EB74101549fc1c45576Cb3C42e/logo.png b/blockchains/ethereum/assets/0xeb9b5D44BA6225EB74101549fc1c45576Cb3C42e/logo.png new file mode 100644 index 00000000..9e19f581 Binary files /dev/null and b/blockchains/ethereum/assets/0xeb9b5D44BA6225EB74101549fc1c45576Cb3C42e/logo.png differ diff --git a/blockchains/ethereum/assets/0xebC7cd2684DD96619841C7994343c5a8bdA94B10/info.json b/blockchains/ethereum/assets/0xebC7cd2684DD96619841C7994343c5a8bdA94B10/info.json new file mode 100644 index 00000000..9269b21d --- /dev/null +++ b/blockchains/ethereum/assets/0xebC7cd2684DD96619841C7994343c5a8bdA94B10/info.json @@ -0,0 +1,11 @@ +{ + "name": "KWHCoin", + "symbol": "KWH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xebC7cd2684DD96619841C7994343c5a8bdA94B10", + "status": "abandoned", + "id": "0xebC7cd2684DD96619841C7994343c5a8bdA94B10" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xebC7cd2684DD96619841C7994343c5a8bdA94B10/logo.png b/blockchains/ethereum/assets/0xebC7cd2684DD96619841C7994343c5a8bdA94B10/logo.png new file mode 100644 index 00000000..f7feddac Binary files /dev/null and b/blockchains/ethereum/assets/0xebC7cd2684DD96619841C7994343c5a8bdA94B10/logo.png differ diff --git a/blockchains/ethereum/assets/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83/info.json b/blockchains/ethereum/assets/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83/info.json new file mode 100644 index 00000000..d154ec6c --- /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 00000000..cf339719 Binary files /dev/null and b/blockchains/ethereum/assets/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83/logo.png differ diff --git a/blockchains/ethereum/assets/0xec67005c4E498Ec7f55E092bd1d35cbC47C91892/info.json b/blockchains/ethereum/assets/0xec67005c4E498Ec7f55E092bd1d35cbC47C91892/info.json new file mode 100644 index 00000000..cfb06fa0 --- /dev/null +++ b/blockchains/ethereum/assets/0xec67005c4E498Ec7f55E092bd1d35cbC47C91892/info.json @@ -0,0 +1,11 @@ +{ + "name": "Enzyme", + "website": "https://melonport.com", + "description": "Melon is an Ethereum-based protocol for decentralized on-chain asset management.", + "explorer": "https://etherscan.io/token/0xec67005c4E498Ec7f55E092bd1d35cbC47C91892", + "type": "ERC20", + "symbol": "MLN", + "decimals": 18, + "status": "active", + "id": "0xec67005c4E498Ec7f55E092bd1d35cbC47C91892" +} diff --git a/blockchains/ethereum/assets/0xec67005c4E498Ec7f55E092bd1d35cbC47C91892/logo.png b/blockchains/ethereum/assets/0xec67005c4E498Ec7f55E092bd1d35cbC47C91892/logo.png new file mode 100644 index 00000000..91064fc9 Binary files /dev/null and b/blockchains/ethereum/assets/0xec67005c4E498Ec7f55E092bd1d35cbC47C91892/logo.png differ diff --git a/blockchains/ethereum/assets/0xec97494eE4d697e7AB3D7682062bF564CeB9D08A/info.json b/blockchains/ethereum/assets/0xec97494eE4d697e7AB3D7682062bF564CeB9D08A/info.json new file mode 100644 index 00000000..ec1c1880 --- /dev/null +++ b/blockchains/ethereum/assets/0xec97494eE4d697e7AB3D7682062bF564CeB9D08A/info.json @@ -0,0 +1,11 @@ +{ + "name": "LSToken", + "symbol": "LST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xec97494eE4d697e7AB3D7682062bF564CeB9D08A", + "status": "abandoned", + "id": "0xec97494eE4d697e7AB3D7682062bF564CeB9D08A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xec97494eE4d697e7AB3D7682062bF564CeB9D08A/logo.png b/blockchains/ethereum/assets/0xec97494eE4d697e7AB3D7682062bF564CeB9D08A/logo.png new file mode 100644 index 00000000..05cf8841 Binary files /dev/null and b/blockchains/ethereum/assets/0xec97494eE4d697e7AB3D7682062bF564CeB9D08A/logo.png differ diff --git a/blockchains/ethereum/assets/0xecA1DBf27b2553eE02f2783467e0CAc491e08222/info.json b/blockchains/ethereum/assets/0xecA1DBf27b2553eE02f2783467e0CAc491e08222/info.json new file mode 100644 index 00000000..23b6cd84 --- /dev/null +++ b/blockchains/ethereum/assets/0xecA1DBf27b2553eE02f2783467e0CAc491e08222/info.json @@ -0,0 +1,11 @@ +{ + "name": "MHIMG1-13/30M13", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xecA1DBf27b2553eE02f2783467e0CAc491e08222", + "status": "abandoned", + "id": "0xecA1DBf27b2553eE02f2783467e0CAc491e08222" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xecA1DBf27b2553eE02f2783467e0CAc491e08222/logo.png b/blockchains/ethereum/assets/0xecA1DBf27b2553eE02f2783467e0CAc491e08222/logo.png new file mode 100644 index 00000000..4503809a Binary files /dev/null and b/blockchains/ethereum/assets/0xecA1DBf27b2553eE02f2783467e0CAc491e08222/logo.png differ diff --git a/blockchains/ethereum/assets/0xecC0F1F860a82aB3b442382D93853C02d6384389/info.json b/blockchains/ethereum/assets/0xecC0F1F860a82aB3b442382D93853C02d6384389/info.json new file mode 100644 index 00000000..94f1504a --- /dev/null +++ b/blockchains/ethereum/assets/0xecC0F1F860a82aB3b442382D93853C02d6384389/info.json @@ -0,0 +1,11 @@ +{ + "name": "AXIS DeFi", + "website": "https://axisdefi.com", + "description": "The World’s First Lightspeed DeFi Dedicated Interoperable Superchain", + "explorer": "https://etherscan.io/token/0xecC0F1F860a82aB3b442382D93853C02d6384389", + "type": "ERC20", + "symbol": "AXIS", + "decimals": 18, + "status": "active", + "id": "0xecC0F1F860a82aB3b442382D93853C02d6384389" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xecC0F1F860a82aB3b442382D93853C02d6384389/logo.png b/blockchains/ethereum/assets/0xecC0F1F860a82aB3b442382D93853C02d6384389/logo.png new file mode 100644 index 00000000..b93430f2 Binary files /dev/null and b/blockchains/ethereum/assets/0xecC0F1F860a82aB3b442382D93853C02d6384389/logo.png differ diff --git a/blockchains/ethereum/assets/0xeca82185adCE47f39c684352B0439f030f860318/info.json b/blockchains/ethereum/assets/0xeca82185adCE47f39c684352B0439f030f860318/info.json new file mode 100644 index 00000000..fe4047f8 --- /dev/null +++ b/blockchains/ethereum/assets/0xeca82185adCE47f39c684352B0439f030f860318/info.json @@ -0,0 +1,11 @@ +{ + "name": "Perlin", + "symbol": "PERL", + "type": "ERC20", + "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://etherscan.io/token/0xeca82185adCE47f39c684352B0439f030f860318", + "status": "active", + "id": "0xeca82185adCE47f39c684352B0439f030f860318" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xeca82185adCE47f39c684352B0439f030f860318/logo.png b/blockchains/ethereum/assets/0xeca82185adCE47f39c684352B0439f030f860318/logo.png new file mode 100644 index 00000000..31e0db4a Binary files /dev/null and b/blockchains/ethereum/assets/0xeca82185adCE47f39c684352B0439f030f860318/logo.png differ diff --git a/blockchains/ethereum/assets/0xecd570bBf74761b960Fa04Cc10fe2c4e86FfDA36/info.json b/blockchains/ethereum/assets/0xecd570bBf74761b960Fa04Cc10fe2c4e86FfDA36/info.json new file mode 100644 index 00000000..f07055eb --- /dev/null +++ b/blockchains/ethereum/assets/0xecd570bBf74761b960Fa04Cc10fe2c4e86FfDA36/info.json @@ -0,0 +1,11 @@ +{ + "name": "STASHPAY", + "symbol": "STP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xecd570bBf74761b960Fa04Cc10fe2c4e86FfDA36", + "status": "abandoned", + "id": "0xecd570bBf74761b960Fa04Cc10fe2c4e86FfDA36" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xecd570bBf74761b960Fa04Cc10fe2c4e86FfDA36/logo.png b/blockchains/ethereum/assets/0xecd570bBf74761b960Fa04Cc10fe2c4e86FfDA36/logo.png new file mode 100755 index 00000000..359adab2 Binary files /dev/null and b/blockchains/ethereum/assets/0xecd570bBf74761b960Fa04Cc10fe2c4e86FfDA36/logo.png differ diff --git a/blockchains/ethereum/assets/0xed0849BF46CfB9845a2d900A0A4E593F2dD3673c/info.json b/blockchains/ethereum/assets/0xed0849BF46CfB9845a2d900A0A4E593F2dD3673c/info.json new file mode 100644 index 00000000..f09cc58f --- /dev/null +++ b/blockchains/ethereum/assets/0xed0849BF46CfB9845a2d900A0A4E593F2dD3673c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Saga", + "symbol": "SGA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.saga.org/", + "explorer": "https://etherscan.io/token/0xed0849BF46CfB9845a2d900A0A4E593F2dD3673c", + "status": "abandoned", + "id": "0xed0849BF46CfB9845a2d900A0A4E593F2dD3673c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xed0849BF46CfB9845a2d900A0A4E593F2dD3673c/logo.png b/blockchains/ethereum/assets/0xed0849BF46CfB9845a2d900A0A4E593F2dD3673c/logo.png new file mode 100644 index 00000000..c81ac5b8 Binary files /dev/null and b/blockchains/ethereum/assets/0xed0849BF46CfB9845a2d900A0A4E593F2dD3673c/logo.png differ diff --git a/blockchains/ethereum/assets/0xed0d5747A9AB03a75fBfEC3228cd55848245B75d/info.json b/blockchains/ethereum/assets/0xed0d5747A9AB03a75fBfEC3228cd55848245B75d/info.json new file mode 100644 index 00000000..4418755b --- /dev/null +++ b/blockchains/ethereum/assets/0xed0d5747A9AB03a75fBfEC3228cd55848245B75d/info.json @@ -0,0 +1,11 @@ +{ + "name": "e-Money NGM staking token", + "website": "https://e-money.com", + "description": "ERC20 version of the e-Money NGM staking token", + "explorer": "https://etherscan.io/token/0xed0d5747A9AB03a75fBfEC3228cd55848245B75d", + "type": "ERC20", + "symbol": "NGM", + "decimals": 6, + "status": "active", + "id": "0xed0d5747A9AB03a75fBfEC3228cd55848245B75d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xed0d5747A9AB03a75fBfEC3228cd55848245B75d/logo.png b/blockchains/ethereum/assets/0xed0d5747A9AB03a75fBfEC3228cd55848245B75d/logo.png new file mode 100644 index 00000000..dc81836d Binary files /dev/null and b/blockchains/ethereum/assets/0xed0d5747A9AB03a75fBfEC3228cd55848245B75d/logo.png differ diff --git a/blockchains/ethereum/assets/0xed328E9C1179a30ddC1E7595E036AEd8760C22aF/info.json b/blockchains/ethereum/assets/0xed328E9C1179a30ddC1E7595E036AEd8760C22aF/info.json new file mode 100644 index 00000000..b1e15f67 --- /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 00000000..c7e167fa Binary files /dev/null and b/blockchains/ethereum/assets/0xed328E9C1179a30ddC1E7595E036AEd8760C22aF/logo.png differ diff --git a/blockchains/ethereum/assets/0xed5b8eC6b1f60A4b08ef72FB160fFe422064c227/info.json b/blockchains/ethereum/assets/0xed5b8eC6b1f60A4b08ef72FB160fFe422064c227/info.json new file mode 100644 index 00000000..0d2dea54 --- /dev/null +++ b/blockchains/ethereum/assets/0xed5b8eC6b1f60A4b08ef72FB160fFe422064c227/info.json @@ -0,0 +1,11 @@ +{ + "name": "Trendering xYield", + "symbol": "xTRND", + "type": "ERC20", + "decimals": 18, + "description": "Trendering uses realtime Ethereum blockchain analysis to predict market movements of ERC20 tokens & more!", + "website": "https://trendering.com/", + "explorer": "https://etherscan.io/token/0xed5b8eC6b1f60A4b08ef72FB160fFe422064c227", + "status": "active", + "id": "0xed5b8eC6b1f60A4b08ef72FB160fFe422064c227" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xed5b8eC6b1f60A4b08ef72FB160fFe422064c227/logo.png b/blockchains/ethereum/assets/0xed5b8eC6b1f60A4b08ef72FB160fFe422064c227/logo.png new file mode 100644 index 00000000..01c149b0 Binary files /dev/null and b/blockchains/ethereum/assets/0xed5b8eC6b1f60A4b08ef72FB160fFe422064c227/logo.png differ diff --git a/blockchains/ethereum/assets/0xed6b0dC3AA8dE5908aB857a70Cb2Ff657d9b6C5d/info.json b/blockchains/ethereum/assets/0xed6b0dC3AA8dE5908aB857a70Cb2Ff657d9b6C5d/info.json new file mode 100644 index 00000000..637fbbe1 --- /dev/null +++ b/blockchains/ethereum/assets/0xed6b0dC3AA8dE5908aB857a70Cb2Ff657d9b6C5d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Practical Official", + "symbol": "PCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xed6b0dC3AA8dE5908aB857a70Cb2Ff657d9b6C5d", + "status": "abandoned", + "id": "0xed6b0dC3AA8dE5908aB857a70Cb2Ff657d9b6C5d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xed6b0dC3AA8dE5908aB857a70Cb2Ff657d9b6C5d/logo.png b/blockchains/ethereum/assets/0xed6b0dC3AA8dE5908aB857a70Cb2Ff657d9b6C5d/logo.png new file mode 100644 index 00000000..86a37009 Binary files /dev/null and b/blockchains/ethereum/assets/0xed6b0dC3AA8dE5908aB857a70Cb2Ff657d9b6C5d/logo.png differ diff --git a/blockchains/ethereum/assets/0xedC87caB8bd12ca39088DeAF9fdfb63503f19f85/info.json b/blockchains/ethereum/assets/0xedC87caB8bd12ca39088DeAF9fdfb63503f19f85/info.json new file mode 100644 index 00000000..736e5386 --- /dev/null +++ b/blockchains/ethereum/assets/0xedC87caB8bd12ca39088DeAF9fdfb63503f19f85/info.json @@ -0,0 +1,11 @@ +{ + "name": "Universe Coin", + "symbol": "UNIS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xedC87caB8bd12ca39088DeAF9fdfb63503f19f85", + "status": "abandoned", + "id": "0xedC87caB8bd12ca39088DeAF9fdfb63503f19f85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xedC87caB8bd12ca39088DeAF9fdfb63503f19f85/logo.png b/blockchains/ethereum/assets/0xedC87caB8bd12ca39088DeAF9fdfb63503f19f85/logo.png new file mode 100644 index 00000000..5c02b467 Binary files /dev/null and b/blockchains/ethereum/assets/0xedC87caB8bd12ca39088DeAF9fdfb63503f19f85/logo.png differ diff --git a/blockchains/ethereum/assets/0xedE9aEfe83bb8C81B67B3eB5826bE2dC5235d34c/info.json b/blockchains/ethereum/assets/0xedE9aEfe83bb8C81B67B3eB5826bE2dC5235d34c/info.json new file mode 100644 index 00000000..91bbd0d0 --- /dev/null +++ b/blockchains/ethereum/assets/0xedE9aEfe83bb8C81B67B3eB5826bE2dC5235d34c/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQUOMINER", + "symbol": "EQR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xedE9aEfe83bb8C81B67B3eB5826bE2dC5235d34c", + "status": "abandoned", + "id": "0xedE9aEfe83bb8C81B67B3eB5826bE2dC5235d34c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xedE9aEfe83bb8C81B67B3eB5826bE2dC5235d34c/logo.png b/blockchains/ethereum/assets/0xedE9aEfe83bb8C81B67B3eB5826bE2dC5235d34c/logo.png new file mode 100644 index 00000000..ae0d4b5a Binary files /dev/null and b/blockchains/ethereum/assets/0xedE9aEfe83bb8C81B67B3eB5826bE2dC5235d34c/logo.png differ diff --git a/blockchains/ethereum/assets/0xedacc3cBcDF37fCefd16F02670c51C9cf2720015/info.json b/blockchains/ethereum/assets/0xedacc3cBcDF37fCefd16F02670c51C9cf2720015/info.json new file mode 100644 index 00000000..7795a7f4 --- /dev/null +++ b/blockchains/ethereum/assets/0xedacc3cBcDF37fCefd16F02670c51C9cf2720015/info.json @@ -0,0 +1,11 @@ +{ + "name": "ALL LIVES MATTER", + "symbol": "HUMAN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xedacc3cBcDF37fCefd16F02670c51C9cf2720015", + "status": "abandoned", + "id": "0xedacc3cBcDF37fCefd16F02670c51C9cf2720015" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xedacc3cBcDF37fCefd16F02670c51C9cf2720015/logo.png b/blockchains/ethereum/assets/0xedacc3cBcDF37fCefd16F02670c51C9cf2720015/logo.png new file mode 100644 index 00000000..332b287f Binary files /dev/null and b/blockchains/ethereum/assets/0xedacc3cBcDF37fCefd16F02670c51C9cf2720015/logo.png differ diff --git a/blockchains/ethereum/assets/0xee22E781Ff9Ce6Eda078E6E319DC5Bb99a34aF8C/info.json b/blockchains/ethereum/assets/0xee22E781Ff9Ce6Eda078E6E319DC5Bb99a34aF8C/info.json new file mode 100644 index 00000000..1b62a7d0 --- /dev/null +++ b/blockchains/ethereum/assets/0xee22E781Ff9Ce6Eda078E6E319DC5Bb99a34aF8C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Business Coin", + "symbol": "BNC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xee22E781Ff9Ce6Eda078E6E319DC5Bb99a34aF8C", + "status": "abandoned", + "id": "0xee22E781Ff9Ce6Eda078E6E319DC5Bb99a34aF8C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xee22E781Ff9Ce6Eda078E6E319DC5Bb99a34aF8C/logo.png b/blockchains/ethereum/assets/0xee22E781Ff9Ce6Eda078E6E319DC5Bb99a34aF8C/logo.png new file mode 100644 index 00000000..725480db Binary files /dev/null and b/blockchains/ethereum/assets/0xee22E781Ff9Ce6Eda078E6E319DC5Bb99a34aF8C/logo.png differ diff --git a/blockchains/ethereum/assets/0xee573a945B01B788B9287CE062A0CFC15bE9fd86/info.json b/blockchains/ethereum/assets/0xee573a945B01B788B9287CE062A0CFC15bE9fd86/info.json new file mode 100644 index 00000000..6ece8f59 --- /dev/null +++ b/blockchains/ethereum/assets/0xee573a945B01B788B9287CE062A0CFC15bE9fd86/info.json @@ -0,0 +1,17 @@ +{ + "name": "Exeedme", + "website": "https://exeedme.com/", + "description": "New Revenue Streams for Gamers", + "explorer": "https://etherscan.io/token/0xee573a945B01B788B9287CE062A0CFC15bE9fd86", + "type": "ERC20", + "symbol": "XED", + "decimals": 18, + "status": "active", + "id": "0xee573a945B01B788B9287CE062A0CFC15bE9fd86", + "links": [ + { + "name": "github", + "url": "https://github.com/exeedme" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xee573a945B01B788B9287CE062A0CFC15bE9fd86/logo.png b/blockchains/ethereum/assets/0xee573a945B01B788B9287CE062A0CFC15bE9fd86/logo.png new file mode 100644 index 00000000..ea085bf6 Binary files /dev/null and b/blockchains/ethereum/assets/0xee573a945B01B788B9287CE062A0CFC15bE9fd86/logo.png differ diff --git a/blockchains/ethereum/assets/0xee8a2Ecd3F7EdaDc01CCF0731111c294B883F60e/info.json b/blockchains/ethereum/assets/0xee8a2Ecd3F7EdaDc01CCF0731111c294B883F60e/info.json new file mode 100644 index 00000000..35fd9b48 --- /dev/null +++ b/blockchains/ethereum/assets/0xee8a2Ecd3F7EdaDc01CCF0731111c294B883F60e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptovirology Token", + "symbol": "CRY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xee8a2Ecd3F7EdaDc01CCF0731111c294B883F60e", + "status": "abandoned", + "id": "0xee8a2Ecd3F7EdaDc01CCF0731111c294B883F60e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xee8a2Ecd3F7EdaDc01CCF0731111c294B883F60e/logo.png b/blockchains/ethereum/assets/0xee8a2Ecd3F7EdaDc01CCF0731111c294B883F60e/logo.png new file mode 100644 index 00000000..413489b6 Binary files /dev/null and b/blockchains/ethereum/assets/0xee8a2Ecd3F7EdaDc01CCF0731111c294B883F60e/logo.png differ diff --git a/blockchains/ethereum/assets/0xee91e81927bb047eA0f4B24e43Dd5Dc0684827A0/info.json b/blockchains/ethereum/assets/0xee91e81927bb047eA0f4B24e43Dd5Dc0684827A0/info.json new file mode 100644 index 00000000..5bda7e8b --- /dev/null +++ b/blockchains/ethereum/assets/0xee91e81927bb047eA0f4B24e43Dd5Dc0684827A0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoinbing", + "symbol": "BING", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xee91e81927bb047eA0f4B24e43Dd5Dc0684827A0", + "status": "abandoned", + "id": "0xee91e81927bb047eA0f4B24e43Dd5Dc0684827A0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xee91e81927bb047eA0f4B24e43Dd5Dc0684827A0/logo.png b/blockchains/ethereum/assets/0xee91e81927bb047eA0f4B24e43Dd5Dc0684827A0/logo.png new file mode 100644 index 00000000..0eb783c9 Binary files /dev/null and b/blockchains/ethereum/assets/0xee91e81927bb047eA0f4B24e43Dd5Dc0684827A0/logo.png differ diff --git a/blockchains/ethereum/assets/0xeedC48205852E9D83Ea5cA92fa8656597788601f/info.json b/blockchains/ethereum/assets/0xeedC48205852E9D83Ea5cA92fa8656597788601f/info.json new file mode 100644 index 00000000..0740a1df --- /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 00000000..a552db34 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 new file mode 100644 index 00000000..7843af01 --- /dev/null +++ b/blockchains/ethereum/assets/0xef3A930e1FfFFAcd2fc13434aC81bD278B0ecC8d/info.json @@ -0,0 +1,33 @@ +{ + "name": "StaFi", + "website": "https://www.nucypher.com/", + "description": "StaFi is a DeFi protocol unlocking liquidity of staked assets. Users can stake PoS tokens through StaFi and receive rTokens in return, which are available for trading, while still earning staking rewards.", + "explorer": "https://etherscan.io/token/0xef3a930e1ffffacd2fc13434ac81bd278b0ecc8d", + "type": "ERC20", + "symbol": "FIS", + "decimals": 18, + "status": "active", + "id": "0xef3A930e1FfFFAcd2fc13434aC81bD278B0ecC8d", + "links": [ + { + "name": "x", + "url": "https://x.com/StaFi_Protocol" + }, + { + "name": "medium", + "url": "https://medium.com/stafi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stafi/" + }, + { + "name": "github", + "url": "https://github.com/stafiprotocol/stafi-node" + }, + { + "name": "telegram", + "url": "https://t.me/stafi_protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xef3A930e1FfFFAcd2fc13434aC81bD278B0ecC8d/logo.png b/blockchains/ethereum/assets/0xef3A930e1FfFFAcd2fc13434aC81bD278B0ecC8d/logo.png new file mode 100644 index 00000000..5d371dde Binary files /dev/null and b/blockchains/ethereum/assets/0xef3A930e1FfFFAcd2fc13434aC81bD278B0ecC8d/logo.png differ diff --git a/blockchains/ethereum/assets/0xef42d7D6219f4B17f539aEc0f3228C9C37f41536/info.json b/blockchains/ethereum/assets/0xef42d7D6219f4B17f539aEc0f3228C9C37f41536/info.json new file mode 100644 index 00000000..93fd9538 --- /dev/null +++ b/blockchains/ethereum/assets/0xef42d7D6219f4B17f539aEc0f3228C9C37f41536/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-6/30M66", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xef42d7D6219f4B17f539aEc0f3228C9C37f41536", + "status": "abandoned", + "id": "0xef42d7D6219f4B17f539aEc0f3228C9C37f41536" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xef42d7D6219f4B17f539aEc0f3228C9C37f41536/logo.png b/blockchains/ethereum/assets/0xef42d7D6219f4B17f539aEc0f3228C9C37f41536/logo.png new file mode 100644 index 00000000..22abe6f8 Binary files /dev/null and b/blockchains/ethereum/assets/0xef42d7D6219f4B17f539aEc0f3228C9C37f41536/logo.png differ diff --git a/blockchains/ethereum/assets/0xef6344de1fcfC5F48c30234C16c1389e8CdC572C/info.json b/blockchains/ethereum/assets/0xef6344de1fcfC5F48c30234C16c1389e8CdC572C/info.json new file mode 100644 index 00000000..0a9578c8 --- /dev/null +++ b/blockchains/ethereum/assets/0xef6344de1fcfC5F48c30234C16c1389e8CdC572C/info.json @@ -0,0 +1,11 @@ +{ + "name": "EncrypGen", + "website": "https://encrypgen.com", + "description": "DNA is the currency of EncrypGen's genomic marketplace, which allows individuals to share, control, and monetize their DNA data while contributing to scientific research and advancing public health.", + "explorer": "https://etherscan.io/token/0xef6344de1fcfC5F48c30234C16c1389e8CdC572C", + "type": "ERC20", + "symbol": "DNA", + "decimals": 18, + "status": "active", + "id": "0xef6344de1fcfC5F48c30234C16c1389e8CdC572C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xef6344de1fcfC5F48c30234C16c1389e8CdC572C/logo.png b/blockchains/ethereum/assets/0xef6344de1fcfC5F48c30234C16c1389e8CdC572C/logo.png new file mode 100644 index 00000000..5addde66 Binary files /dev/null and b/blockchains/ethereum/assets/0xef6344de1fcfC5F48c30234C16c1389e8CdC572C/logo.png differ diff --git a/blockchains/ethereum/assets/0xef6D51c4Bb5e197bC2005fe49ba475bda5a302C6/info.json b/blockchains/ethereum/assets/0xef6D51c4Bb5e197bC2005fe49ba475bda5a302C6/info.json new file mode 100644 index 00000000..53531908 --- /dev/null +++ b/blockchains/ethereum/assets/0xef6D51c4Bb5e197bC2005fe49ba475bda5a302C6/info.json @@ -0,0 +1,11 @@ +{ + "name": "CoinPaws", + "symbol": "CPS", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xef6D51c4Bb5e197bC2005fe49ba475bda5a302C6", + "status": "abandoned", + "id": "0xef6D51c4Bb5e197bC2005fe49ba475bda5a302C6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xef6D51c4Bb5e197bC2005fe49ba475bda5a302C6/logo.png b/blockchains/ethereum/assets/0xef6D51c4Bb5e197bC2005fe49ba475bda5a302C6/logo.png new file mode 100644 index 00000000..785a7370 Binary files /dev/null and b/blockchains/ethereum/assets/0xef6D51c4Bb5e197bC2005fe49ba475bda5a302C6/logo.png differ diff --git a/blockchains/ethereum/assets/0xef8CF79C21637fc6f951bcaC348915508a639a41/info.json b/blockchains/ethereum/assets/0xef8CF79C21637fc6f951bcaC348915508a639a41/info.json new file mode 100644 index 00000000..931fc720 --- /dev/null +++ b/blockchains/ethereum/assets/0xef8CF79C21637fc6f951bcaC348915508a639a41/info.json @@ -0,0 +1,11 @@ +{ + "name": "SRCOIN", + "symbol": "SRCOIN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xef8CF79C21637fc6f951bcaC348915508a639a41", + "status": "abandoned", + "id": "0xef8CF79C21637fc6f951bcaC348915508a639a41" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xef8CF79C21637fc6f951bcaC348915508a639a41/logo.png b/blockchains/ethereum/assets/0xef8CF79C21637fc6f951bcaC348915508a639a41/logo.png new file mode 100755 index 00000000..d1ed1785 Binary files /dev/null and b/blockchains/ethereum/assets/0xef8CF79C21637fc6f951bcaC348915508a639a41/logo.png differ diff --git a/blockchains/ethereum/assets/0xf028ADEe51533b1B47BEaa890fEb54a457f51E89/info.json b/blockchains/ethereum/assets/0xf028ADEe51533b1B47BEaa890fEb54a457f51E89/info.json new file mode 100644 index 00000000..4b894c99 --- /dev/null +++ b/blockchains/ethereum/assets/0xf028ADEe51533b1B47BEaa890fEb54a457f51E89/info.json @@ -0,0 +1,11 @@ +{ + "name": "BMChain Token", + "symbol": "BMT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://bmchain.io/", + "explorer": "https://etherscan.io/token/0xf028ADEe51533b1B47BEaa890fEb54a457f51E89", + "status": "abandoned", + "id": "0xf028ADEe51533b1B47BEaa890fEb54a457f51E89" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf028ADEe51533b1B47BEaa890fEb54a457f51E89/logo.png b/blockchains/ethereum/assets/0xf028ADEe51533b1B47BEaa890fEb54a457f51E89/logo.png new file mode 100755 index 00000000..2d12a934 Binary files /dev/null and b/blockchains/ethereum/assets/0xf028ADEe51533b1B47BEaa890fEb54a457f51E89/logo.png differ diff --git a/blockchains/ethereum/assets/0xf03bfb08a807716e3340e175B98b388d2DC56DE0/info.json b/blockchains/ethereum/assets/0xf03bfb08a807716e3340e175B98b388d2DC56DE0/info.json new file mode 100644 index 00000000..37c01eb8 --- /dev/null +++ b/blockchains/ethereum/assets/0xf03bfb08a807716e3340e175B98b388d2DC56DE0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neodium Network", + "symbol": "NN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://neodium.network", + "explorer": "https://etherscan.io/token/0xf03bfb08a807716e3340e175B98b388d2DC56DE0", + "status": "abandoned", + "id": "0xf03bfb08a807716e3340e175B98b388d2DC56DE0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf03bfb08a807716e3340e175B98b388d2DC56DE0/logo.png b/blockchains/ethereum/assets/0xf03bfb08a807716e3340e175B98b388d2DC56DE0/logo.png new file mode 100755 index 00000000..b7443127 Binary files /dev/null and b/blockchains/ethereum/assets/0xf03bfb08a807716e3340e175B98b388d2DC56DE0/logo.png differ diff --git a/blockchains/ethereum/assets/0xf04a8ac553FceDB5BA99A64799155826C136b0Be/info.json b/blockchains/ethereum/assets/0xf04a8ac553FceDB5BA99A64799155826C136b0Be/info.json new file mode 100644 index 00000000..63344358 --- /dev/null +++ b/blockchains/ethereum/assets/0xf04a8ac553FceDB5BA99A64799155826C136b0Be/info.json @@ -0,0 +1,11 @@ +{ + "name": "Flixx", + "symbol": "FLIXX", + "type": "ERC20", + "decimals": 18, + "description": "FLIXX is an ERC20 token issued by Flixxo, a video distribution platform.", + "website": "https://www.flixxo.com", + "explorer": "https://etherscan.io/token/0xf04a8ac553FceDB5BA99A64799155826C136b0Be", + "status": "active", + "id": "0xf04a8ac553FceDB5BA99A64799155826C136b0Be" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf04a8ac553FceDB5BA99A64799155826C136b0Be/logo.png b/blockchains/ethereum/assets/0xf04a8ac553FceDB5BA99A64799155826C136b0Be/logo.png new file mode 100755 index 00000000..5edd6ca0 Binary files /dev/null and b/blockchains/ethereum/assets/0xf04a8ac553FceDB5BA99A64799155826C136b0Be/logo.png differ diff --git a/blockchains/ethereum/assets/0xf050E54d2b50c055C9919a4B856A195221D3DB71/info.json b/blockchains/ethereum/assets/0xf050E54d2b50c055C9919a4B856A195221D3DB71/info.json new file mode 100644 index 00000000..b3eddfeb --- /dev/null +++ b/blockchains/ethereum/assets/0xf050E54d2b50c055C9919a4B856A195221D3DB71/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rutile", + "symbol": "RUT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf050E54d2b50c055C9919a4B856A195221D3DB71", + "status": "abandoned", + "id": "0xf050E54d2b50c055C9919a4B856A195221D3DB71" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf050E54d2b50c055C9919a4B856A195221D3DB71/logo.png b/blockchains/ethereum/assets/0xf050E54d2b50c055C9919a4B856A195221D3DB71/logo.png new file mode 100644 index 00000000..6d58281d Binary files /dev/null and b/blockchains/ethereum/assets/0xf050E54d2b50c055C9919a4B856A195221D3DB71/logo.png differ diff --git a/blockchains/ethereum/assets/0xf05E35aA089F06aa9382eB3AeDF8508a3C07c4D9/info.json b/blockchains/ethereum/assets/0xf05E35aA089F06aa9382eB3AeDF8508a3C07c4D9/info.json new file mode 100644 index 00000000..cd239415 --- /dev/null +++ b/blockchains/ethereum/assets/0xf05E35aA089F06aa9382eB3AeDF8508a3C07c4D9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yugi", + "symbol": "YUG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf05E35aA089F06aa9382eB3AeDF8508a3C07c4D9", + "status": "abandoned", + "id": "0xf05E35aA089F06aa9382eB3AeDF8508a3C07c4D9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf05E35aA089F06aa9382eB3AeDF8508a3C07c4D9/logo.png b/blockchains/ethereum/assets/0xf05E35aA089F06aa9382eB3AeDF8508a3C07c4D9/logo.png new file mode 100644 index 00000000..93696e14 Binary files /dev/null and b/blockchains/ethereum/assets/0xf05E35aA089F06aa9382eB3AeDF8508a3C07c4D9/logo.png differ diff --git a/blockchains/ethereum/assets/0xf05a9382A4C3F29E2784502754293D88b835109C/info.json b/blockchains/ethereum/assets/0xf05a9382A4C3F29E2784502754293D88b835109C/info.json new file mode 100644 index 00000000..fa684452 --- /dev/null +++ b/blockchains/ethereum/assets/0xf05a9382A4C3F29E2784502754293D88b835109C/info.json @@ -0,0 +1,11 @@ +{ + "name": "REX - Real Estate tokens", + "symbol": "REX", + "type": "ERC20", + "decimals": 18, + "description": "imbrex (REX) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://imbrex.io", + "explorer": "https://etherscan.io/token/0xf05a9382A4C3F29E2784502754293D88b835109C", + "status": "active", + "id": "0xf05a9382A4C3F29E2784502754293D88b835109C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf05a9382A4C3F29E2784502754293D88b835109C/logo.png b/blockchains/ethereum/assets/0xf05a9382A4C3F29E2784502754293D88b835109C/logo.png new file mode 100644 index 00000000..566a5f0f Binary files /dev/null and b/blockchains/ethereum/assets/0xf05a9382A4C3F29E2784502754293D88b835109C/logo.png differ diff --git a/blockchains/ethereum/assets/0xf083F40599741bC576173B492268972CE661E5ec/info.json b/blockchains/ethereum/assets/0xf083F40599741bC576173B492268972CE661E5ec/info.json new file mode 100644 index 00000000..aa3f2f43 --- /dev/null +++ b/blockchains/ethereum/assets/0xf083F40599741bC576173B492268972CE661E5ec/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bit Value Art Bank", + "symbol": "BVB", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf083F40599741bC576173B492268972CE661E5ec", + "status": "abandoned", + "id": "0xf083F40599741bC576173B492268972CE661E5ec" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf083F40599741bC576173B492268972CE661E5ec/logo.png b/blockchains/ethereum/assets/0xf083F40599741bC576173B492268972CE661E5ec/logo.png new file mode 100644 index 00000000..78d5a7e4 Binary files /dev/null and b/blockchains/ethereum/assets/0xf083F40599741bC576173B492268972CE661E5ec/logo.png differ diff --git a/blockchains/ethereum/assets/0xf08c68bD5f4194d994FD70726746Bf529eE5a617/info.json b/blockchains/ethereum/assets/0xf08c68bD5f4194d994FD70726746Bf529eE5a617/info.json new file mode 100644 index 00000000..334ef05a --- /dev/null +++ b/blockchains/ethereum/assets/0xf08c68bD5f4194d994FD70726746Bf529eE5a617/info.json @@ -0,0 +1,11 @@ +{ + "name": "ThoreNext", + "symbol": "THX", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://www.thorenext.com/", + "explorer": "https://etherscan.io/token/0xf08c68bD5f4194d994FD70726746Bf529eE5a617", + "status": "abandoned", + "id": "0xf08c68bD5f4194d994FD70726746Bf529eE5a617" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf08c68bD5f4194d994FD70726746Bf529eE5a617/logo.png b/blockchains/ethereum/assets/0xf08c68bD5f4194d994FD70726746Bf529eE5a617/logo.png new file mode 100644 index 00000000..cde6c321 Binary files /dev/null and b/blockchains/ethereum/assets/0xf08c68bD5f4194d994FD70726746Bf529eE5a617/logo.png differ diff --git a/blockchains/ethereum/assets/0xf091867EC603A6628eD83D274E835539D82e9cc8/info.json b/blockchains/ethereum/assets/0xf091867EC603A6628eD83D274E835539D82e9cc8/info.json new file mode 100644 index 00000000..98117792 --- /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 00000000..b1372629 Binary files /dev/null and b/blockchains/ethereum/assets/0xf091867EC603A6628eD83D274E835539D82e9cc8/logo.png differ diff --git a/blockchains/ethereum/assets/0xf091Cf09c51811819DB705710e9634B8bf18F164/info.json b/blockchains/ethereum/assets/0xf091Cf09c51811819DB705710e9634B8bf18F164/info.json new file mode 100644 index 00000000..9fb1e87e --- /dev/null +++ b/blockchains/ethereum/assets/0xf091Cf09c51811819DB705710e9634B8bf18F164/info.json @@ -0,0 +1,11 @@ +{ + "name": "Couchain", + "symbol": "COU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://couchain.io/", + "explorer": "https://etherscan.io/token/0xf091Cf09c51811819DB705710e9634B8bf18F164", + "status": "abandoned", + "id": "0xf091Cf09c51811819DB705710e9634B8bf18F164" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf091Cf09c51811819DB705710e9634B8bf18F164/logo.png b/blockchains/ethereum/assets/0xf091Cf09c51811819DB705710e9634B8bf18F164/logo.png new file mode 100755 index 00000000..fc67a8e6 Binary files /dev/null and b/blockchains/ethereum/assets/0xf091Cf09c51811819DB705710e9634B8bf18F164/logo.png differ diff --git a/blockchains/ethereum/assets/0xf09209cC5EaE846ee2cc4a493e7B962CA7BCfbbb/info.json b/blockchains/ethereum/assets/0xf09209cC5EaE846ee2cc4a493e7B962CA7BCfbbb/info.json new file mode 100644 index 00000000..c5b29c4d --- /dev/null +++ b/blockchains/ethereum/assets/0xf09209cC5EaE846ee2cc4a493e7B962CA7BCfbbb/info.json @@ -0,0 +1,11 @@ +{ + "name": "iEx.ec Network Token", + "symbol": "RLC", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf09209cC5EaE846ee2cc4a493e7B962CA7BCfbbb", + "status": "abandoned", + "id": "0xf09209cC5EaE846ee2cc4a493e7B962CA7BCfbbb" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf09209cC5EaE846ee2cc4a493e7B962CA7BCfbbb/logo.png b/blockchains/ethereum/assets/0xf09209cC5EaE846ee2cc4a493e7B962CA7BCfbbb/logo.png new file mode 100755 index 00000000..67baeecc Binary files /dev/null and b/blockchains/ethereum/assets/0xf09209cC5EaE846ee2cc4a493e7B962CA7BCfbbb/logo.png differ diff --git a/blockchains/ethereum/assets/0xf0A0F3A6FA6bED75345171a5EA18AbcadF6453BA/info.json b/blockchains/ethereum/assets/0xf0A0F3A6FA6bED75345171a5EA18AbcadF6453BA/info.json new file mode 100644 index 00000000..8af4f4d0 --- /dev/null +++ b/blockchains/ethereum/assets/0xf0A0F3A6FA6bED75345171a5EA18AbcadF6453BA/info.json @@ -0,0 +1,21 @@ +{ + "name": "Yearn Finance Bit", + "website": "https://yfbit.finance/", + "description": "Yearn Finance Bit is a decentralized token under ERC-20 protocol, allows users to stake YFBT, borrow assets, and vote for improvements within the community.", + "explorer": "https://etherscan.io/token/0xf0A0F3A6FA6bED75345171a5EA18AbcadF6453BA", + "type": "ERC20", + "symbol": "YFBT", + "decimals": 18, + "status": "active", + "id": "0xf0A0F3A6FA6bED75345171a5EA18AbcadF6453BA", + "links": [ + { + "name": "github", + "url": "https://github.com/yfbit" + }, + { + "name": "whitepaper", + "url": "https://yfbit.finance/assets/white/YearnFinanceBit_WP_v_1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf0A0F3A6FA6bED75345171a5EA18AbcadF6453BA/logo.png b/blockchains/ethereum/assets/0xf0A0F3A6FA6bED75345171a5EA18AbcadF6453BA/logo.png new file mode 100644 index 00000000..5ff830bc Binary files /dev/null and b/blockchains/ethereum/assets/0xf0A0F3A6FA6bED75345171a5EA18AbcadF6453BA/logo.png differ diff --git a/blockchains/ethereum/assets/0xf0AaBeAcbC2D91BAf21bDA0006C9D65DE736053a/info.json b/blockchains/ethereum/assets/0xf0AaBeAcbC2D91BAf21bDA0006C9D65DE736053a/info.json new file mode 100644 index 00000000..b1837ca4 --- /dev/null +++ b/blockchains/ethereum/assets/0xf0AaBeAcbC2D91BAf21bDA0006C9D65DE736053a/info.json @@ -0,0 +1,11 @@ +{ + "name": "OHFF", + "symbol": "OHFF", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf0AaBeAcbC2D91BAf21bDA0006C9D65DE736053a", + "status": "abandoned", + "id": "0xf0AaBeAcbC2D91BAf21bDA0006C9D65DE736053a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf0AaBeAcbC2D91BAf21bDA0006C9D65DE736053a/logo.png b/blockchains/ethereum/assets/0xf0AaBeAcbC2D91BAf21bDA0006C9D65DE736053a/logo.png new file mode 100644 index 00000000..18d16611 Binary files /dev/null and b/blockchains/ethereum/assets/0xf0AaBeAcbC2D91BAf21bDA0006C9D65DE736053a/logo.png differ diff --git a/blockchains/ethereum/assets/0xf0B0A13d908253D954BA031a425dFd54f94a2e3D/info.json b/blockchains/ethereum/assets/0xf0B0A13d908253D954BA031a425dFd54f94a2e3D/info.json new file mode 100644 index 00000000..5b82c350 --- /dev/null +++ b/blockchains/ethereum/assets/0xf0B0A13d908253D954BA031a425dFd54f94a2e3D/info.json @@ -0,0 +1,11 @@ +{ + "name": "FlashX Advance", + "symbol": "FSXA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.flashxcoinofficial.com/", + "explorer": "https://etherscan.io/token/0xf0B0A13d908253D954BA031a425dFd54f94a2e3D", + "status": "abandoned", + "id": "0xf0B0A13d908253D954BA031a425dFd54f94a2e3D" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf0B0A13d908253D954BA031a425dFd54f94a2e3D/logo.png b/blockchains/ethereum/assets/0xf0B0A13d908253D954BA031a425dFd54f94a2e3D/logo.png new file mode 100644 index 00000000..603c6150 Binary files /dev/null and b/blockchains/ethereum/assets/0xf0B0A13d908253D954BA031a425dFd54f94a2e3D/logo.png differ diff --git a/blockchains/ethereum/assets/0xf0C6521b1F8ad9C33a99Aaf056F6C6247A3862BA/info.json b/blockchains/ethereum/assets/0xf0C6521b1F8ad9C33a99Aaf056F6C6247A3862BA/info.json new file mode 100644 index 00000000..2f7751f5 --- /dev/null +++ b/blockchains/ethereum/assets/0xf0C6521b1F8ad9C33a99Aaf056F6C6247A3862BA/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETH.limiteD", + "symbol": "ELD", + "type": "ERC20", + "decimals": 18, + "description": "ELD is an encryption currency and smart contract that will be created with full compatibility with the ERC20 standard. This complete ETH.Limited is implemented as a dAPP, a smart contract within the Ethereum network.", + "website": "https://eth.limited/", + "explorer": "https://etherscan.io/token/0xf0C6521b1F8ad9C33a99Aaf056F6C6247A3862BA", + "status": "active", + "id": "0xf0C6521b1F8ad9C33a99Aaf056F6C6247A3862BA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf0C6521b1F8ad9C33a99Aaf056F6C6247A3862BA/logo.png b/blockchains/ethereum/assets/0xf0C6521b1F8ad9C33a99Aaf056F6C6247A3862BA/logo.png new file mode 100644 index 00000000..03f82616 Binary files /dev/null and b/blockchains/ethereum/assets/0xf0C6521b1F8ad9C33a99Aaf056F6C6247A3862BA/logo.png differ diff --git a/blockchains/ethereum/assets/0xf0DDD41AC68b71ECbad395AA6240c41c5B55C749/info.json b/blockchains/ethereum/assets/0xf0DDD41AC68b71ECbad395AA6240c41c5B55C749/info.json new file mode 100644 index 00000000..9eac36d8 --- /dev/null +++ b/blockchains/ethereum/assets/0xf0DDD41AC68b71ECbad395AA6240c41c5B55C749/info.json @@ -0,0 +1,11 @@ +{ + "name": "Central Token Exchange", + "symbol": "CTT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf0DDD41AC68b71ECbad395AA6240c41c5B55C749", + "status": "abandoned", + "id": "0xf0DDD41AC68b71ECbad395AA6240c41c5B55C749" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf0DDD41AC68b71ECbad395AA6240c41c5B55C749/logo.png b/blockchains/ethereum/assets/0xf0DDD41AC68b71ECbad395AA6240c41c5B55C749/logo.png new file mode 100644 index 00000000..bf097926 Binary files /dev/null and b/blockchains/ethereum/assets/0xf0DDD41AC68b71ECbad395AA6240c41c5B55C749/logo.png differ diff --git a/blockchains/ethereum/assets/0xf0Ee6b27b759C9893Ce4f094b49ad28fd15A23e4/info.json b/blockchains/ethereum/assets/0xf0Ee6b27b759C9893Ce4f094b49ad28fd15A23e4/info.json new file mode 100644 index 00000000..2a7ce454 --- /dev/null +++ b/blockchains/ethereum/assets/0xf0Ee6b27b759C9893Ce4f094b49ad28fd15A23e4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Enigma", + "symbol": "ENG", + "type": "ERC20", + "decimals": 8, + "description": "Enigma builds and supports groundbreaking privacy-focused technologies and networks.", + "website": "https://enigma.co", + "explorer": "https://etherscan.io/token/0xf0Ee6b27b759C9893Ce4f094b49ad28fd15A23e4", + "status": "active", + "id": "0xf0Ee6b27b759C9893Ce4f094b49ad28fd15A23e4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf0Ee6b27b759C9893Ce4f094b49ad28fd15A23e4/logo.png b/blockchains/ethereum/assets/0xf0Ee6b27b759C9893Ce4f094b49ad28fd15A23e4/logo.png new file mode 100644 index 00000000..559c3b9f Binary files /dev/null and b/blockchains/ethereum/assets/0xf0Ee6b27b759C9893Ce4f094b49ad28fd15A23e4/logo.png differ diff --git a/blockchains/ethereum/assets/0xf0bCc10ABA434B054CC6ec3C87A57491e9473BaC/info.json b/blockchains/ethereum/assets/0xf0bCc10ABA434B054CC6ec3C87A57491e9473BaC/info.json new file mode 100644 index 00000000..0936daa1 --- /dev/null +++ b/blockchains/ethereum/assets/0xf0bCc10ABA434B054CC6ec3C87A57491e9473BaC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethenity", + "website": "http://ethenity.airsite.co", + "description": "Ethereum-based alternative asset for trading,developing innovative and alternative cryptocurrency solutions.", + "explorer": "https://etherscan.io/token/0xf0bCc10ABA434B054CC6ec3C87A57491e9473BaC", + "type": "ERC20", + "symbol": "ETHN", + "decimals": 18, + "status": "active", + "id": "0xf0bCc10ABA434B054CC6ec3C87A57491e9473BaC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf0bCc10ABA434B054CC6ec3C87A57491e9473BaC/logo.png b/blockchains/ethereum/assets/0xf0bCc10ABA434B054CC6ec3C87A57491e9473BaC/logo.png new file mode 100644 index 00000000..81e4c34b Binary files /dev/null and b/blockchains/ethereum/assets/0xf0bCc10ABA434B054CC6ec3C87A57491e9473BaC/logo.png differ diff --git a/blockchains/ethereum/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json b/blockchains/ethereum/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json new file mode 100644 index 00000000..01811852 --- /dev/null +++ b/blockchains/ethereum/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json @@ -0,0 +1,32 @@ +{ + "name": "Cult DAO (CULT)", + "type": "ERC20", + "symbol": "CULT", + "decimals": 18, + "website": "https://cultdao.io", + "description": "CULT is the tradable and liquid token of CULT DAO, transacting CULT will contribute to protocol by filling the DAO treasury slowly, to fund investments into decentralised technologies to fast forward the revolution against centralization. This is achieved due to a 0.4% collection on transactions.", + "explorer": "https://etherscan.io/token/0xf0f9D895aCa5c8678f706FB8216fa22957685A13", + "status": "active", + "id": "0xf0f9D895aCa5c8678f706FB8216fa22957685A13", + "links": [ + { + "name": "x", + "url": "https://x.com/wearecultdao" + }, + { + "name": "github", + "url": "https://github.com/cultdao-developer/cultdao" + }, + { + "name": "telegram", + "url": "https://t.me/cultdao" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cult-dao/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/logo.png b/blockchains/ethereum/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/logo.png new file mode 100644 index 00000000..24ec21b8 Binary files /dev/null and b/blockchains/ethereum/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/logo.png differ diff --git a/blockchains/ethereum/assets/0xf132cA4DBBD2ca2dd7A1178B5F38Bf56b566ff55/info.json b/blockchains/ethereum/assets/0xf132cA4DBBD2ca2dd7A1178B5F38Bf56b566ff55/info.json new file mode 100644 index 00000000..cb195d06 --- /dev/null +++ b/blockchains/ethereum/assets/0xf132cA4DBBD2ca2dd7A1178B5F38Bf56b566ff55/info.json @@ -0,0 +1,11 @@ +{ + "name": "BONUSHAMMER", + "symbol": "BONUS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf132cA4DBBD2ca2dd7A1178B5F38Bf56b566ff55", + "status": "abandoned", + "id": "0xf132cA4DBBD2ca2dd7A1178B5F38Bf56b566ff55" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf132cA4DBBD2ca2dd7A1178B5F38Bf56b566ff55/logo.png b/blockchains/ethereum/assets/0xf132cA4DBBD2ca2dd7A1178B5F38Bf56b566ff55/logo.png new file mode 100644 index 00000000..a47eaa4c Binary files /dev/null and b/blockchains/ethereum/assets/0xf132cA4DBBD2ca2dd7A1178B5F38Bf56b566ff55/logo.png differ diff --git a/blockchains/ethereum/assets/0xf14922001A2FB8541a433905437ae954419C2439/info.json b/blockchains/ethereum/assets/0xf14922001A2FB8541a433905437ae954419C2439/info.json new file mode 100644 index 00000000..4aa757ab --- /dev/null +++ b/blockchains/ethereum/assets/0xf14922001A2FB8541a433905437ae954419C2439/info.json @@ -0,0 +1,11 @@ +{ + "name": "Inmediate", + "symbol": "DIT", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://inmediate.io/", + "explorer": "https://etherscan.io/token/0xf14922001A2FB8541a433905437ae954419C2439", + "status": "abandoned", + "id": "0xf14922001A2FB8541a433905437ae954419C2439" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf14922001A2FB8541a433905437ae954419C2439/logo.png b/blockchains/ethereum/assets/0xf14922001A2FB8541a433905437ae954419C2439/logo.png new file mode 100644 index 00000000..9e59e659 Binary files /dev/null and b/blockchains/ethereum/assets/0xf14922001A2FB8541a433905437ae954419C2439/logo.png differ diff --git a/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json b/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json new file mode 100644 index 00000000..31b53410 --- /dev/null +++ b/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json @@ -0,0 +1,11 @@ +{ + "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/0xf151980E7A781481709e8195744bF2399FB3Cba4", + "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 00000000..91e8d5ca --- /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 00000000..c9f474e3 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 00000000..d780bf6e --- /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 00000000..c2491839 Binary files /dev/null and b/blockchains/ethereum/assets/0xf15FbC1349ab99ABAd63db3f9A510BF413bE3BeF/logo.png differ diff --git a/blockchains/ethereum/assets/0xf16843C8ab59AE17f9481Ec756a1DED049192AF4/info.json b/blockchains/ethereum/assets/0xf16843C8ab59AE17f9481Ec756a1DED049192AF4/info.json new file mode 100644 index 00000000..d659e86c --- /dev/null +++ b/blockchains/ethereum/assets/0xf16843C8ab59AE17f9481Ec756a1DED049192AF4/info.json @@ -0,0 +1,11 @@ +{ + "name": "比特链", + "symbol": "BIT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf16843C8ab59AE17f9481Ec756a1DED049192AF4", + "status": "abandoned", + "id": "0xf16843C8ab59AE17f9481Ec756a1DED049192AF4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf16843C8ab59AE17f9481Ec756a1DED049192AF4/logo.png b/blockchains/ethereum/assets/0xf16843C8ab59AE17f9481Ec756a1DED049192AF4/logo.png new file mode 100755 index 00000000..db9a8ca6 Binary files /dev/null and b/blockchains/ethereum/assets/0xf16843C8ab59AE17f9481Ec756a1DED049192AF4/logo.png differ diff --git a/blockchains/ethereum/assets/0xf16D45806BFb0ABe59087CD8F388E0042ec7D0d3/info.json b/blockchains/ethereum/assets/0xf16D45806BFb0ABe59087CD8F388E0042ec7D0d3/info.json new file mode 100644 index 00000000..46852ce1 --- /dev/null +++ b/blockchains/ethereum/assets/0xf16D45806BFb0ABe59087CD8F388E0042ec7D0d3/info.json @@ -0,0 +1,11 @@ +{ + "name": "FOMOPROTOCOL", + "symbol": "FOM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf16D45806BFb0ABe59087CD8F388E0042ec7D0d3", + "status": "abandoned", + "id": "0xf16D45806BFb0ABe59087CD8F388E0042ec7D0d3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf16D45806BFb0ABe59087CD8F388E0042ec7D0d3/logo.png b/blockchains/ethereum/assets/0xf16D45806BFb0ABe59087CD8F388E0042ec7D0d3/logo.png new file mode 100644 index 00000000..57928b68 Binary files /dev/null and b/blockchains/ethereum/assets/0xf16D45806BFb0ABe59087CD8F388E0042ec7D0d3/logo.png differ diff --git a/blockchains/ethereum/assets/0xf16e81dce15B08F326220742020379B855B87DF9/info.json b/blockchains/ethereum/assets/0xf16e81dce15B08F326220742020379B855B87DF9/info.json new file mode 100644 index 00000000..72ba55c3 --- /dev/null +++ b/blockchains/ethereum/assets/0xf16e81dce15B08F326220742020379B855B87DF9/info.json @@ -0,0 +1,11 @@ +{ + "name": "IceToken", + "website": "https://popsicle.finance", + "description": "Popsicle finance is a next-gen cross-chain liquidity provider (LP) yield optimization platform", + "explorer": "https://etherscan.io/token/0xf16e81dce15B08F326220742020379B855B87DF9", + "type": "ERC20", + "symbol": "ICE", + "decimals": 18, + "status": "active", + "id": "0xf16e81dce15B08F326220742020379B855B87DF9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf16e81dce15B08F326220742020379B855B87DF9/logo.png b/blockchains/ethereum/assets/0xf16e81dce15B08F326220742020379B855B87DF9/logo.png new file mode 100644 index 00000000..8a599ef6 Binary files /dev/null and b/blockchains/ethereum/assets/0xf16e81dce15B08F326220742020379B855B87DF9/logo.png differ diff --git a/blockchains/ethereum/assets/0xf1738912ae7439475712520797583ac784ea9033/info.json b/blockchains/ethereum/assets/0xf1738912ae7439475712520797583ac784ea9033/info.json new file mode 100644 index 00000000..de485549 --- /dev/null +++ b/blockchains/ethereum/assets/0xf1738912ae7439475712520797583ac784ea9033/info.json @@ -0,0 +1,11 @@ +{ + "name": "XionGlobal Token", + "website": "https://xion.finance", + "description": "Xion Global provides a global decentralized ecommerce platform, combining the world of blockchain, the power of DeFi and the ease and UX of ecommerce.", + "explorer": "https://etherscan.io/token/0xf1738912ae7439475712520797583ac784ea9033", + "type": "ERC20", + "symbol": "XGT", + "decimals": 18, + "status": "abandoned", + "id": "0xf1738912ae7439475712520797583ac784ea9033" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf1738912ae7439475712520797583ac784ea9033/logo.png b/blockchains/ethereum/assets/0xf1738912ae7439475712520797583ac784ea9033/logo.png new file mode 100644 index 00000000..59a5a187 Binary files /dev/null and b/blockchains/ethereum/assets/0xf1738912ae7439475712520797583ac784ea9033/logo.png differ diff --git a/blockchains/ethereum/assets/0xf18432Ef894Ef4b2a5726F933718F5A8cf9fF831/info.json b/blockchains/ethereum/assets/0xf18432Ef894Ef4b2a5726F933718F5A8cf9fF831/info.json new file mode 100644 index 00000000..5933c330 --- /dev/null +++ b/blockchains/ethereum/assets/0xf18432Ef894Ef4b2a5726F933718F5A8cf9fF831/info.json @@ -0,0 +1,11 @@ +{ + "name": "BioCrypt", + "symbol": "BIO", + "type": "ERC20", + "decimals": 8, + "description": "BioCrypt uses RFID and NFC technology to make everyday tasks easier and more convenient. These include authentication and verification, essentially allowing keys to become obsolete; supply chain management and item tracking through destination scans; and many more.", + "website": "https://BioCrypt.Tech", + "explorer": "https://etherscan.io/token/0xf18432Ef894Ef4b2a5726F933718F5A8cf9fF831", + "status": "active", + "id": "0xf18432Ef894Ef4b2a5726F933718F5A8cf9fF831" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf18432Ef894Ef4b2a5726F933718F5A8cf9fF831/logo.png b/blockchains/ethereum/assets/0xf18432Ef894Ef4b2a5726F933718F5A8cf9fF831/logo.png new file mode 100644 index 00000000..482590ab Binary files /dev/null and b/blockchains/ethereum/assets/0xf18432Ef894Ef4b2a5726F933718F5A8cf9fF831/logo.png differ diff --git a/blockchains/ethereum/assets/0xf1883461Ec7BD883A3668749c5CF5f351080d059/info.json b/blockchains/ethereum/assets/0xf1883461Ec7BD883A3668749c5CF5f351080d059/info.json new file mode 100644 index 00000000..f5ee5d8c --- /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 00000000..a22bc299 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 00000000..4c26e850 --- /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 00000000..0e4defd0 Binary files /dev/null and b/blockchains/ethereum/assets/0xf192957AE52dB3eb088654403CC2eDeD014ae556/logo.png differ diff --git a/blockchains/ethereum/assets/0xf1937A3ae1a2c6B4E1531682268D89262E82f1Cd/info.json b/blockchains/ethereum/assets/0xf1937A3ae1a2c6B4E1531682268D89262E82f1Cd/info.json new file mode 100644 index 00000000..320fd245 --- /dev/null +++ b/blockchains/ethereum/assets/0xf1937A3ae1a2c6B4E1531682268D89262E82f1Cd/info.json @@ -0,0 +1,11 @@ +{ + "name": "OGCoin E-health Africa", + "symbol": "OGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf1937A3ae1a2c6B4E1531682268D89262E82f1Cd", + "status": "abandoned", + "id": "0xf1937A3ae1a2c6B4E1531682268D89262E82f1Cd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf1937A3ae1a2c6B4E1531682268D89262E82f1Cd/logo.png b/blockchains/ethereum/assets/0xf1937A3ae1a2c6B4E1531682268D89262E82f1Cd/logo.png new file mode 100755 index 00000000..b6f5847b Binary files /dev/null and b/blockchains/ethereum/assets/0xf1937A3ae1a2c6B4E1531682268D89262E82f1Cd/logo.png differ diff --git a/blockchains/ethereum/assets/0xf1BB41F9eD87e6c7E1F70e921b7B4bee1Df7Ae9c/info.json b/blockchains/ethereum/assets/0xf1BB41F9eD87e6c7E1F70e921b7B4bee1Df7Ae9c/info.json new file mode 100644 index 00000000..52bb1aad --- /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 00000000..e7bb97df Binary files /dev/null and b/blockchains/ethereum/assets/0xf1BB41F9eD87e6c7E1F70e921b7B4bee1Df7Ae9c/logo.png differ diff --git a/blockchains/ethereum/assets/0xf1aC7A375429719DE0dde33528e2639B9a206ebA/info.json b/blockchains/ethereum/assets/0xf1aC7A375429719DE0dde33528e2639B9a206ebA/info.json new file mode 100644 index 00000000..287aa6e0 --- /dev/null +++ b/blockchains/ethereum/assets/0xf1aC7A375429719DE0dde33528e2639B9a206ebA/info.json @@ -0,0 +1,11 @@ +{ + "name": "AMGO - Arena Match Gold", + "symbol": "AMGO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://arenamatch.com/amg/", + "explorer": "https://etherscan.io/token/0xf1aC7A375429719DE0dde33528e2639B9a206ebA", + "status": "abandoned", + "id": "0xf1aC7A375429719DE0dde33528e2639B9a206ebA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf1aC7A375429719DE0dde33528e2639B9a206ebA/logo.png b/blockchains/ethereum/assets/0xf1aC7A375429719DE0dde33528e2639B9a206ebA/logo.png new file mode 100644 index 00000000..0bbab71e Binary files /dev/null and b/blockchains/ethereum/assets/0xf1aC7A375429719DE0dde33528e2639B9a206ebA/logo.png differ diff --git a/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/info.json b/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/info.json new file mode 100644 index 00000000..82e50d1d --- /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 00000000..49a7f7fb Binary files /dev/null and b/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/logo.png differ diff --git a/blockchains/ethereum/assets/0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b/info.json b/blockchains/ethereum/assets/0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b/info.json new file mode 100644 index 00000000..671b0bce --- /dev/null +++ b/blockchains/ethereum/assets/0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rally", + "website": "https://rally.io/", + "description": "Cryptocurrency for Creator Communities", + "explorer": "https://etherscan.io/token/0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b", + "type": "ERC20", + "symbol": "RLY", + "decimals": 18, + "status": "active", + "id": "0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b/logo.png b/blockchains/ethereum/assets/0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b/logo.png new file mode 100644 index 00000000..33d1bc5a Binary files /dev/null and b/blockchains/ethereum/assets/0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b/logo.png differ diff --git a/blockchains/ethereum/assets/0xf20E484056d9cb18733eAF6F2865257e23F92af1/info.json b/blockchains/ethereum/assets/0xf20E484056d9cb18733eAF6F2865257e23F92af1/info.json new file mode 100644 index 00000000..aa2feae6 --- /dev/null +++ b/blockchains/ethereum/assets/0xf20E484056d9cb18733eAF6F2865257e23F92af1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eterbase Cash", + "symbol": "XBASE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf20E484056d9cb18733eAF6F2865257e23F92af1", + "status": "abandoned", + "id": "0xf20E484056d9cb18733eAF6F2865257e23F92af1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf20E484056d9cb18733eAF6F2865257e23F92af1/logo.png b/blockchains/ethereum/assets/0xf20E484056d9cb18733eAF6F2865257e23F92af1/logo.png new file mode 100644 index 00000000..24d60d79 Binary files /dev/null and b/blockchains/ethereum/assets/0xf20E484056d9cb18733eAF6F2865257e23F92af1/logo.png differ diff --git a/blockchains/ethereum/assets/0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097/info.json b/blockchains/ethereum/assets/0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097/info.json new file mode 100644 index 00000000..4dd1e829 --- /dev/null +++ b/blockchains/ethereum/assets/0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097/info.json @@ -0,0 +1,20 @@ +{ + "name": "Realio Network", + "website": "https://realio.fund", + "description": "End-to-end platform for compliant issuance, p2p trading and life-cycle management of digital assets.", + "explorer": "https://etherscan.io/token/0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097", + "type": "ERC20", + "symbol": "RIO", + "decimals": 18, + "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/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/info.json b/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/info.json new file mode 100644 index 00000000..55361fc8 --- /dev/null +++ b/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/info.json @@ -0,0 +1,36 @@ +{ + "name": "Tronix (TRX)", + "type": "ERC20", + "symbol": "TRX", + "decimals": 6, + "website": "https://trondao.org/", + "description": "TRON is the protocol dedicated to accelerating the decentralization of the Internet via blockchain technology and decentralized applications, or DApps. Since its inception in 2017, the TRON network has focused on two ideals: empowering developers and putting the power in the hands of the people. TRON network completed full decentralization in Dec 2021 and is now a purely community-governed DAO focused on creating an internet for all.", + "explorer": "https://etherscan.io/token/0xf230b790E05390FC8295F4d3F60332c93BEd42e2", + "status": "active", + "id": "0xf230b790E05390FC8295F4d3F60332c93BEd42e2", + "links": [ + { + "name": "x", + "url": "https://x.com/trondao" + }, + { + "name": "github", + "url": "https://github.com/tronprotocol/" + }, + { + "name": "telegram", + "url": "https://t.me/tronnetworkEN" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/tronix" + }, + { + "name": "discord", + "url": "https://discord.com/invite/pn6WWmXtQV" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/logo.png b/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/logo.png new file mode 100644 index 00000000..26173628 Binary files /dev/null and b/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/logo.png differ diff --git a/blockchains/ethereum/assets/0xf263292e14d9D8ECd55B58dAD1F1dF825a874b7c/info.json b/blockchains/ethereum/assets/0xf263292e14d9D8ECd55B58dAD1F1dF825a874b7c/info.json new file mode 100644 index 00000000..9fc0c706 --- /dev/null +++ b/blockchains/ethereum/assets/0xf263292e14d9D8ECd55B58dAD1F1dF825a874b7c/info.json @@ -0,0 +1,11 @@ +{ + "name": "EduCoin", + "symbol": "EDU", + "type": "ERC20", + "decimals": 18, + "description": "Educoin is a decentralized online skill learning platform for learners to improve their professional skills in future technologies. Educoin is building the future for online education and professional development with blockchain technology.", + "website": "http://www.edu.one/", + "explorer": "https://etherscan.io/token/0xf263292e14d9D8ECd55B58dAD1F1dF825a874b7c", + "status": "active", + "id": "0xf263292e14d9D8ECd55B58dAD1F1dF825a874b7c" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf263292e14d9D8ECd55B58dAD1F1dF825a874b7c/logo.png b/blockchains/ethereum/assets/0xf263292e14d9D8ECd55B58dAD1F1dF825a874b7c/logo.png new file mode 100644 index 00000000..535917f4 Binary files /dev/null and b/blockchains/ethereum/assets/0xf263292e14d9D8ECd55B58dAD1F1dF825a874b7c/logo.png differ diff --git a/blockchains/ethereum/assets/0xf278c1CA969095ffddDED020290cf8B5C424AcE2/info.json b/blockchains/ethereum/assets/0xf278c1CA969095ffddDED020290cf8B5C424AcE2/info.json new file mode 100644 index 00000000..2428627c --- /dev/null +++ b/blockchains/ethereum/assets/0xf278c1CA969095ffddDED020290cf8B5C424AcE2/info.json @@ -0,0 +1,11 @@ +{ + "name": "RUFF", + "symbol": "RUFF", + "type": "ERC20", + "decimals": 18, + "description": "As an architecture combining block chain and internet of things (IoT), Ruff Chain includes a public chain for development as well as a distributed operating system.", + "website": "http://ruffchain.com/", + "explorer": "https://etherscan.io/token/0xf278c1CA969095ffddDED020290cf8B5C424AcE2", + "status": "active", + "id": "0xf278c1CA969095ffddDED020290cf8B5C424AcE2" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf278c1CA969095ffddDED020290cf8B5C424AcE2/logo.png b/blockchains/ethereum/assets/0xf278c1CA969095ffddDED020290cf8B5C424AcE2/logo.png new file mode 100644 index 00000000..d0043571 Binary files /dev/null and b/blockchains/ethereum/assets/0xf278c1CA969095ffddDED020290cf8B5C424AcE2/logo.png differ diff --git a/blockchains/ethereum/assets/0xf280B16EF293D8e534e370794ef26bF312694126/info.json b/blockchains/ethereum/assets/0xf280B16EF293D8e534e370794ef26bF312694126/info.json new file mode 100644 index 00000000..77921342 --- /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 00000000..835ea8a3 Binary files /dev/null and b/blockchains/ethereum/assets/0xf280B16EF293D8e534e370794ef26bF312694126/logo.png differ diff --git a/blockchains/ethereum/assets/0xf28D3dcc9b6582F1b2D49Ca850dB1360571cB633/info.json b/blockchains/ethereum/assets/0xf28D3dcc9b6582F1b2D49Ca850dB1360571cB633/info.json new file mode 100644 index 00000000..b94d2670 --- /dev/null +++ b/blockchains/ethereum/assets/0xf28D3dcc9b6582F1b2D49Ca850dB1360571cB633/info.json @@ -0,0 +1,12 @@ +{ + "name": "Spider Finance", + "website": "https://spider.finance/", + "description": "SPIDER FINANCE IS A FULLY DECENTRALIZED PROTOCOL FOR GAME ON ETHEREUM.", + "explorer": "https://etherscan.io/token/0xf28D3dcc9b6582F1b2D49Ca850dB1360571cB633", + "research": "", + "type": "ERC20", + "symbol": "SPID", + "decimals": 18, + "status": "active", + "id": "0xf28D3dcc9b6582F1b2D49Ca850dB1360571cB633" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf28D3dcc9b6582F1b2D49Ca850dB1360571cB633/logo.png b/blockchains/ethereum/assets/0xf28D3dcc9b6582F1b2D49Ca850dB1360571cB633/logo.png new file mode 100644 index 00000000..8232b02a Binary files /dev/null and b/blockchains/ethereum/assets/0xf28D3dcc9b6582F1b2D49Ca850dB1360571cB633/logo.png differ diff --git a/blockchains/ethereum/assets/0xf293d23BF2CDc05411Ca0edDD588eb1977e8dcd4/info.json b/blockchains/ethereum/assets/0xf293d23BF2CDc05411Ca0edDD588eb1977e8dcd4/info.json new file mode 100644 index 00000000..f552e4f0 --- /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 00000000..a78e43cf Binary files /dev/null and b/blockchains/ethereum/assets/0xf293d23BF2CDc05411Ca0edDD588eb1977e8dcd4/logo.png differ diff --git a/blockchains/ethereum/assets/0xf29e46887FFAE92f1ff87DfE39713875Da541373/info.json b/blockchains/ethereum/assets/0xf29e46887FFAE92f1ff87DfE39713875Da541373/info.json new file mode 100644 index 00000000..29eed53f --- /dev/null +++ b/blockchains/ethereum/assets/0xf29e46887FFAE92f1ff87DfE39713875Da541373/info.json @@ -0,0 +1,11 @@ +{ + "name": "UNC", + "website": "https://unicrypt.network", + "description": "UNC was the initial token of the UniCrypt platform. Please swap it to UNCX (the new token) on the website.", + "explorer": "https://etherscan.io/token/0xf29e46887FFAE92f1ff87DfE39713875Da541373", + "type": "ERC20", + "symbol": "UNC", + "decimals": 18, + "status": "active", + "id": "0xf29e46887FFAE92f1ff87DfE39713875Da541373" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf29e46887FFAE92f1ff87DfE39713875Da541373/logo.png b/blockchains/ethereum/assets/0xf29e46887FFAE92f1ff87DfE39713875Da541373/logo.png new file mode 100644 index 00000000..be90c0e5 Binary files /dev/null and b/blockchains/ethereum/assets/0xf29e46887FFAE92f1ff87DfE39713875Da541373/logo.png differ diff --git a/blockchains/ethereum/assets/0xf2D4A5dd017d78289C404DE98c37cE245e417C7f/info.json b/blockchains/ethereum/assets/0xf2D4A5dd017d78289C404DE98c37cE245e417C7f/info.json new file mode 100644 index 00000000..56d08c40 --- /dev/null +++ b/blockchains/ethereum/assets/0xf2D4A5dd017d78289C404DE98c37cE245e417C7f/info.json @@ -0,0 +1,11 @@ +{ + "name": "PAPARAZZI", + "website": "https://pazzi.world", + "description": "Paparazzi is a photo-centric blockchain-based platform to provide a seamless process of capturing, sharing, and trading a graphic memory.", + "explorer": "https://etherscan.io/token/0xf2d4a5dd017d78289c404de98c37ce245e417c7f", + "type": "ERC20", + "symbol": "PAZZI-N", + "decimals": 18, + "status": "active", + "id": "0xf2D4A5dd017d78289C404DE98c37cE245e417C7f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf2D4A5dd017d78289C404DE98c37cE245e417C7f/logo.png b/blockchains/ethereum/assets/0xf2D4A5dd017d78289C404DE98c37cE245e417C7f/logo.png new file mode 100644 index 00000000..416fb739 Binary files /dev/null and b/blockchains/ethereum/assets/0xf2D4A5dd017d78289C404DE98c37cE245e417C7f/logo.png differ diff --git a/blockchains/ethereum/assets/0xf2EAb3A2034D3f6B63734D2E08262040E3fF7B48/info.json b/blockchains/ethereum/assets/0xf2EAb3A2034D3f6B63734D2E08262040E3fF7B48/info.json new file mode 100644 index 00000000..569c9b7c --- /dev/null +++ b/blockchains/ethereum/assets/0xf2EAb3A2034D3f6B63734D2E08262040E3fF7B48/info.json @@ -0,0 +1,11 @@ +{ + "name": "CANDY", + "symbol": "CANDY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf2EAb3A2034D3f6B63734D2E08262040E3fF7B48", + "status": "abandoned", + "id": "0xf2EAb3A2034D3f6B63734D2E08262040E3fF7B48" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf2EAb3A2034D3f6B63734D2E08262040E3fF7B48/logo.png b/blockchains/ethereum/assets/0xf2EAb3A2034D3f6B63734D2E08262040E3fF7B48/logo.png new file mode 100755 index 00000000..499cfe1f Binary files /dev/null and b/blockchains/ethereum/assets/0xf2EAb3A2034D3f6B63734D2E08262040E3fF7B48/logo.png differ diff --git a/blockchains/ethereum/assets/0xf2a7C7f3932EfCc2ECB6b2C372B84030dE191dB0/info.json b/blockchains/ethereum/assets/0xf2a7C7f3932EfCc2ECB6b2C372B84030dE191dB0/info.json new file mode 100644 index 00000000..32be2608 --- /dev/null +++ b/blockchains/ethereum/assets/0xf2a7C7f3932EfCc2ECB6b2C372B84030dE191dB0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Secondary Data Attestation Token", + "symbol": "SEDA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf2a7C7f3932EfCc2ECB6b2C372B84030dE191dB0", + "status": "abandoned", + "id": "0xf2a7C7f3932EfCc2ECB6b2C372B84030dE191dB0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf2a7C7f3932EfCc2ECB6b2C372B84030dE191dB0/logo.png b/blockchains/ethereum/assets/0xf2a7C7f3932EfCc2ECB6b2C372B84030dE191dB0/logo.png new file mode 100755 index 00000000..c14ffc4d Binary files /dev/null and b/blockchains/ethereum/assets/0xf2a7C7f3932EfCc2ECB6b2C372B84030dE191dB0/logo.png differ diff --git a/blockchains/ethereum/assets/0xf2aeA81b6ad3d0191c11Ce118CbE73D0403Fd51a/info.json b/blockchains/ethereum/assets/0xf2aeA81b6ad3d0191c11Ce118CbE73D0403Fd51a/info.json new file mode 100644 index 00000000..832ad894 --- /dev/null +++ b/blockchains/ethereum/assets/0xf2aeA81b6ad3d0191c11Ce118CbE73D0403Fd51a/info.json @@ -0,0 +1,11 @@ +{ + "name": "EtherUtilityToken", + "symbol": "EUT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf2aeA81b6ad3d0191c11Ce118CbE73D0403Fd51a", + "status": "abandoned", + "id": "0xf2aeA81b6ad3d0191c11Ce118CbE73D0403Fd51a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf2aeA81b6ad3d0191c11Ce118CbE73D0403Fd51a/logo.png b/blockchains/ethereum/assets/0xf2aeA81b6ad3d0191c11Ce118CbE73D0403Fd51a/logo.png new file mode 100644 index 00000000..7f9f097f Binary files /dev/null and b/blockchains/ethereum/assets/0xf2aeA81b6ad3d0191c11Ce118CbE73D0403Fd51a/logo.png differ diff --git a/blockchains/ethereum/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/info.json b/blockchains/ethereum/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/info.json new file mode 100644 index 00000000..7a954e91 --- /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 00000000..9112038e Binary files /dev/null and b/blockchains/ethereum/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/logo.png differ diff --git a/blockchains/ethereum/assets/0xf30547ff2Df1F1CBE5C8DD758B3dd098C856e38f/info.json b/blockchains/ethereum/assets/0xf30547ff2Df1F1CBE5C8DD758B3dd098C856e38f/info.json new file mode 100644 index 00000000..f85d2bdc --- /dev/null +++ b/blockchains/ethereum/assets/0xf30547ff2Df1F1CBE5C8DD758B3dd098C856e38f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rai Finance", + "website": "https://rai.finance", + "description": "RAI Finance is a protocol designed to provide DeFi with a wider range of assets, a higher amount of liquidity, and a diverse set of financial use cases. When this feature set is combined with the cross-chain compatibility of the Polkadot ecosystem, it eliminates fragmentation across the existing DeFi ecosystem by bringing a complement of new assets and a higher amount of liquidity to decentralized finance.", + "explorer": "https://etherscan.io/token/0xf30547ff2Df1F1CBE5C8DD758B3dd098C856e38f", + "type": "ERC20", + "symbol": "Rai", + "decimals": 18, + "status": "active", + "id": "0xf30547ff2Df1F1CBE5C8DD758B3dd098C856e38f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf30547ff2Df1F1CBE5C8DD758B3dd098C856e38f/logo.png b/blockchains/ethereum/assets/0xf30547ff2Df1F1CBE5C8DD758B3dd098C856e38f/logo.png new file mode 100644 index 00000000..687e1736 Binary files /dev/null and b/blockchains/ethereum/assets/0xf30547ff2Df1F1CBE5C8DD758B3dd098C856e38f/logo.png differ diff --git a/blockchains/ethereum/assets/0xf3099f855D5D8Ea97d9862573985C1461c96Fd20/info.json b/blockchains/ethereum/assets/0xf3099f855D5D8Ea97d9862573985C1461c96Fd20/info.json new file mode 100644 index 00000000..3eaab5d9 --- /dev/null +++ b/blockchains/ethereum/assets/0xf3099f855D5D8Ea97d9862573985C1461c96Fd20/info.json @@ -0,0 +1,11 @@ +{ + "name": "Clubfungus", + "symbol": "FUUN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf3099f855D5D8Ea97d9862573985C1461c96Fd20", + "status": "abandoned", + "id": "0xf3099f855D5D8Ea97d9862573985C1461c96Fd20" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf3099f855D5D8Ea97d9862573985C1461c96Fd20/logo.png b/blockchains/ethereum/assets/0xf3099f855D5D8Ea97d9862573985C1461c96Fd20/logo.png new file mode 100755 index 00000000..13245ff3 Binary files /dev/null and b/blockchains/ethereum/assets/0xf3099f855D5D8Ea97d9862573985C1461c96Fd20/logo.png differ diff --git a/blockchains/ethereum/assets/0xf333b2Ace992ac2bBD8798bF57Bc65a06184afBa/info.json b/blockchains/ethereum/assets/0xf333b2Ace992ac2bBD8798bF57Bc65a06184afBa/info.json new file mode 100644 index 00000000..09647e7d --- /dev/null +++ b/blockchains/ethereum/assets/0xf333b2Ace992ac2bBD8798bF57Bc65a06184afBa/info.json @@ -0,0 +1,11 @@ +{ + "name": "SND Token 1.0", + "symbol": "SND", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "https://en.sandcoin.io/", + "explorer": "https://etherscan.io/token/0xf333b2Ace992ac2bBD8798bF57Bc65a06184afBa", + "status": "abandoned", + "id": "0xf333b2Ace992ac2bBD8798bF57Bc65a06184afBa" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf333b2Ace992ac2bBD8798bF57Bc65a06184afBa/logo.png b/blockchains/ethereum/assets/0xf333b2Ace992ac2bBD8798bF57Bc65a06184afBa/logo.png new file mode 100755 index 00000000..a562c3d2 Binary files /dev/null and b/blockchains/ethereum/assets/0xf333b2Ace992ac2bBD8798bF57Bc65a06184afBa/logo.png differ diff --git a/blockchains/ethereum/assets/0xf34845b76015D2952B6E39436bC59Cae3C9ba17d/info.json b/blockchains/ethereum/assets/0xf34845b76015D2952B6E39436bC59Cae3C9ba17d/info.json new file mode 100644 index 00000000..9070158c --- /dev/null +++ b/blockchains/ethereum/assets/0xf34845b76015D2952B6E39436bC59Cae3C9ba17d/info.json @@ -0,0 +1,11 @@ +{ + "name": "GIGS", + "symbol": "GIGS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf34845b76015D2952B6E39436bC59Cae3C9ba17d", + "status": "abandoned", + "id": "0xf34845b76015D2952B6E39436bC59Cae3C9ba17d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf34845b76015D2952B6E39436bC59Cae3C9ba17d/logo.png b/blockchains/ethereum/assets/0xf34845b76015D2952B6E39436bC59Cae3C9ba17d/logo.png new file mode 100644 index 00000000..9971c5c9 Binary files /dev/null and b/blockchains/ethereum/assets/0xf34845b76015D2952B6E39436bC59Cae3C9ba17d/logo.png differ diff --git a/blockchains/ethereum/assets/0xf34960d9d60be18cC1D5Afc1A6F012A723a28811/info.json b/blockchains/ethereum/assets/0xf34960d9d60be18cC1D5Afc1A6F012A723a28811/info.json new file mode 100644 index 00000000..097032f4 --- /dev/null +++ b/blockchains/ethereum/assets/0xf34960d9d60be18cC1D5Afc1A6F012A723a28811/info.json @@ -0,0 +1,37 @@ +{ + "name": "KuCoin Token", + "website": "https://kucoin.com", + "description": "KCS performs as the key to the entire KuCoin ecosystem, and it will also be the native asset on KuCoin’s decentralized financial services as well as the governance token of KuCoin Community.", + "explorer": "https://etherscan.io/token/0xf34960d9d60be18cC1D5Afc1A6F012A723a28811", + "type": "ERC20", + "symbol": "KCS", + "decimals": 6, + "status": "active", + "id": "0xf34960d9d60be18cC1D5Afc1A6F012A723a28811", + "links": [ + { + "name": "github", + "url": "https://github.com/Kucoin" + }, + { + "name": "x", + "url": "https://x.com/KuCoinCom" + }, + { + "name": "facebook", + "url": "https://facebook.com/KuCoinOfficial/" + }, + { + "name": "blog", + "url": "https://medium.com/kucoinexchange" + }, + { + "name": "telegram", + "url": "https://t.me/Kucoin_Exchange" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kucoin-shares/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf34960d9d60be18cC1D5Afc1A6F012A723a28811/logo.png b/blockchains/ethereum/assets/0xf34960d9d60be18cC1D5Afc1A6F012A723a28811/logo.png new file mode 100644 index 00000000..58e8accb Binary files /dev/null and b/blockchains/ethereum/assets/0xf34960d9d60be18cC1D5Afc1A6F012A723a28811/logo.png differ diff --git a/blockchains/ethereum/assets/0xf354a75DB1641D7658628771055199C41e7b4bAd/info.json b/blockchains/ethereum/assets/0xf354a75DB1641D7658628771055199C41e7b4bAd/info.json new file mode 100644 index 00000000..9e01d10a --- /dev/null +++ b/blockchains/ethereum/assets/0xf354a75DB1641D7658628771055199C41e7b4bAd/info.json @@ -0,0 +1,11 @@ +{ + "name": "JAY", + "symbol": "JAY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf354a75DB1641D7658628771055199C41e7b4bAd", + "status": "abandoned", + "id": "0xf354a75DB1641D7658628771055199C41e7b4bAd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf354a75DB1641D7658628771055199C41e7b4bAd/logo.png b/blockchains/ethereum/assets/0xf354a75DB1641D7658628771055199C41e7b4bAd/logo.png new file mode 100644 index 00000000..35b6b445 Binary files /dev/null and b/blockchains/ethereum/assets/0xf354a75DB1641D7658628771055199C41e7b4bAd/logo.png differ diff --git a/blockchains/ethereum/assets/0xf3586684107CE0859c44aa2b2E0fB8cd8731a15a/info.json b/blockchains/ethereum/assets/0xf3586684107CE0859c44aa2b2E0fB8cd8731a15a/info.json new file mode 100644 index 00000000..22ac43e8 --- /dev/null +++ b/blockchains/ethereum/assets/0xf3586684107CE0859c44aa2b2E0fB8cd8731a15a/info.json @@ -0,0 +1,11 @@ +{ + "name": "KaratBank Coin", + "symbol": "KBC", + "type": "ERC20", + "decimals": 7, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf3586684107CE0859c44aa2b2E0fB8cd8731a15a", + "status": "abandoned", + "id": "0xf3586684107CE0859c44aa2b2E0fB8cd8731a15a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf3586684107CE0859c44aa2b2E0fB8cd8731a15a/logo.png b/blockchains/ethereum/assets/0xf3586684107CE0859c44aa2b2E0fB8cd8731a15a/logo.png new file mode 100755 index 00000000..0eedf858 Binary files /dev/null and b/blockchains/ethereum/assets/0xf3586684107CE0859c44aa2b2E0fB8cd8731a15a/logo.png differ diff --git a/blockchains/ethereum/assets/0xf360dDF8a7BC42Eef80AF1E2dAe748F4281f878C/info.json b/blockchains/ethereum/assets/0xf360dDF8a7BC42Eef80AF1E2dAe748F4281f878C/info.json new file mode 100644 index 00000000..5b4352d0 --- /dev/null +++ b/blockchains/ethereum/assets/0xf360dDF8a7BC42Eef80AF1E2dAe748F4281f878C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coin Swap", + "symbol": "CSP", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf360dDF8a7BC42Eef80AF1E2dAe748F4281f878C", + "status": "abandoned", + "id": "0xf360dDF8a7BC42Eef80AF1E2dAe748F4281f878C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf360dDF8a7BC42Eef80AF1E2dAe748F4281f878C/logo.png b/blockchains/ethereum/assets/0xf360dDF8a7BC42Eef80AF1E2dAe748F4281f878C/logo.png new file mode 100644 index 00000000..3c78201a Binary files /dev/null and b/blockchains/ethereum/assets/0xf360dDF8a7BC42Eef80AF1E2dAe748F4281f878C/logo.png differ diff --git a/blockchains/ethereum/assets/0xf3A2ace8e48751c965eA0A1D064303AcA53842b9/info.json b/blockchains/ethereum/assets/0xf3A2ace8e48751c965eA0A1D064303AcA53842b9/info.json new file mode 100644 index 00000000..5f21b597 --- /dev/null +++ b/blockchains/ethereum/assets/0xf3A2ace8e48751c965eA0A1D064303AcA53842b9/info.json @@ -0,0 +1,12 @@ +{ + "name": "HXY Money", + "website": "https://HXY.business", + "description": "HXY Money is brought to you by HXY Business - Our ERC20 incentive token, HXY, acts as the economic core to the HXY.Business DApp eco-system", + "explorer": "https://etherscan.io/token/0xf3A2ace8e48751c965eA0A1D064303AcA53842b9", + "research": "", + "type": "ERC20", + "symbol": "HXY", + "decimals": 8, + "status": "active", + "id": "0xf3A2ace8e48751c965eA0A1D064303AcA53842b9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf3A2ace8e48751c965eA0A1D064303AcA53842b9/logo.png b/blockchains/ethereum/assets/0xf3A2ace8e48751c965eA0A1D064303AcA53842b9/logo.png new file mode 100644 index 00000000..53b4e268 Binary files /dev/null and b/blockchains/ethereum/assets/0xf3A2ace8e48751c965eA0A1D064303AcA53842b9/logo.png differ diff --git a/blockchains/ethereum/assets/0xf3AE5d769e153Ef72b4e3591aC004E89F48107a1/info.json b/blockchains/ethereum/assets/0xf3AE5d769e153Ef72b4e3591aC004E89F48107a1/info.json new file mode 100644 index 00000000..f1883c27 --- /dev/null +++ b/blockchains/ethereum/assets/0xf3AE5d769e153Ef72b4e3591aC004E89F48107a1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Deeper Network", + "website": "https://deeper.network", + "description": "The Decentralized Internet Infrastructure for Web3.0: A more secure, private and fairer internet for everyone", + "explorer": "https://etherscan.io/token/0xf3AE5d769e153Ef72b4e3591aC004E89F48107a1", + "type": "ERC20", + "symbol": "DPR", + "decimals": 18, + "status": "active", + "id": "0xf3AE5d769e153Ef72b4e3591aC004E89F48107a1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf3AE5d769e153Ef72b4e3591aC004E89F48107a1/logo.png b/blockchains/ethereum/assets/0xf3AE5d769e153Ef72b4e3591aC004E89F48107a1/logo.png new file mode 100755 index 00000000..2e4c49df Binary files /dev/null and b/blockchains/ethereum/assets/0xf3AE5d769e153Ef72b4e3591aC004E89F48107a1/logo.png differ diff --git a/blockchains/ethereum/assets/0xf3D923825eEc91d3074C656d9d558e271Ed55aee/info.json b/blockchains/ethereum/assets/0xf3D923825eEc91d3074C656d9d558e271Ed55aee/info.json new file mode 100644 index 00000000..9fbb0ed0 --- /dev/null +++ b/blockchains/ethereum/assets/0xf3D923825eEc91d3074C656d9d558e271Ed55aee/info.json @@ -0,0 +1,11 @@ +{ + "name": "EtherCenter", + "symbol": "ECT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf3D923825eEc91d3074C656d9d558e271Ed55aee", + "status": "abandoned", + "id": "0xf3D923825eEc91d3074C656d9d558e271Ed55aee" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf3D923825eEc91d3074C656d9d558e271Ed55aee/logo.png b/blockchains/ethereum/assets/0xf3D923825eEc91d3074C656d9d558e271Ed55aee/logo.png new file mode 100644 index 00000000..acc1b101 Binary files /dev/null and b/blockchains/ethereum/assets/0xf3D923825eEc91d3074C656d9d558e271Ed55aee/logo.png differ diff --git a/blockchains/ethereum/assets/0xf3DD3aCF1662A564E15D7569Fd80c105596e8846/info.json b/blockchains/ethereum/assets/0xf3DD3aCF1662A564E15D7569Fd80c105596e8846/info.json new file mode 100644 index 00000000..17b57b0d --- /dev/null +++ b/blockchains/ethereum/assets/0xf3DD3aCF1662A564E15D7569Fd80c105596e8846/info.json @@ -0,0 +1,11 @@ +{ + "name": "ALPHAPROTOCOL", + "symbol": "ALP", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf3DD3aCF1662A564E15D7569Fd80c105596e8846", + "status": "abandoned", + "id": "0xf3DD3aCF1662A564E15D7569Fd80c105596e8846" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf3DD3aCF1662A564E15D7569Fd80c105596e8846/logo.png b/blockchains/ethereum/assets/0xf3DD3aCF1662A564E15D7569Fd80c105596e8846/logo.png new file mode 100644 index 00000000..f8688447 Binary files /dev/null and b/blockchains/ethereum/assets/0xf3DD3aCF1662A564E15D7569Fd80c105596e8846/logo.png differ diff --git a/blockchains/ethereum/assets/0xf3Db5Fa2C66B7aF3Eb0C0b782510816cbe4813b8/info.json b/blockchains/ethereum/assets/0xf3Db5Fa2C66B7aF3Eb0C0b782510816cbe4813b8/info.json new file mode 100644 index 00000000..4ecc32e2 --- /dev/null +++ b/blockchains/ethereum/assets/0xf3Db5Fa2C66B7aF3Eb0C0b782510816cbe4813b8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Everex", + "symbol": "EVX", + "type": "ERC20", + "decimals": 4, + "description": "Everex enables you to transfer, borrow, and trade in any fiat currency, anywhere. No Bank account required. With settling times below 30 seconds, transaction costs of a few cents, and global support, the world’s markets are in the palm of your hand.", + "website": "https://www.everex.io/", + "explorer": "https://etherscan.io/token/0xf3Db5Fa2C66B7aF3Eb0C0b782510816cbe4813b8", + "status": "active", + "id": "0xf3Db5Fa2C66B7aF3Eb0C0b782510816cbe4813b8" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf3Db5Fa2C66B7aF3Eb0C0b782510816cbe4813b8/logo.png b/blockchains/ethereum/assets/0xf3Db5Fa2C66B7aF3Eb0C0b782510816cbe4813b8/logo.png new file mode 100755 index 00000000..fe3a826a Binary files /dev/null and b/blockchains/ethereum/assets/0xf3Db5Fa2C66B7aF3Eb0C0b782510816cbe4813b8/logo.png differ diff --git a/blockchains/ethereum/assets/0xf3b9569F82B18aEf890De263B84189bd33EBe452/info.json b/blockchains/ethereum/assets/0xf3b9569F82B18aEf890De263B84189bd33EBe452/info.json new file mode 100644 index 00000000..602852f7 --- /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 00000000..a292833a Binary files /dev/null and b/blockchains/ethereum/assets/0xf3b9569F82B18aEf890De263B84189bd33EBe452/logo.png differ diff --git a/blockchains/ethereum/assets/0xf3bE20da25B31Bd6Ee4CE4496985b2064304C125/info.json b/blockchains/ethereum/assets/0xf3bE20da25B31Bd6Ee4CE4496985b2064304C125/info.json new file mode 100644 index 00000000..353958bf --- /dev/null +++ b/blockchains/ethereum/assets/0xf3bE20da25B31Bd6Ee4CE4496985b2064304C125/info.json @@ -0,0 +1,11 @@ +{ + "name": "MYUBI Token", + "symbol": "MYU", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf3bE20da25B31Bd6Ee4CE4496985b2064304C125", + "status": "abandoned", + "id": "0xf3bE20da25B31Bd6Ee4CE4496985b2064304C125" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf3bE20da25B31Bd6Ee4CE4496985b2064304C125/logo.png b/blockchains/ethereum/assets/0xf3bE20da25B31Bd6Ee4CE4496985b2064304C125/logo.png new file mode 100644 index 00000000..fe19197f Binary files /dev/null and b/blockchains/ethereum/assets/0xf3bE20da25B31Bd6Ee4CE4496985b2064304C125/logo.png differ diff --git a/blockchains/ethereum/assets/0xf3db7560E820834658B590C96234c333Cd3D5E5e/info.json b/blockchains/ethereum/assets/0xf3db7560E820834658B590C96234c333Cd3D5E5e/info.json new file mode 100644 index 00000000..01010e04 --- /dev/null +++ b/blockchains/ethereum/assets/0xf3db7560E820834658B590C96234c333Cd3D5E5e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Poker Chips", + "symbol": "CHP", + "type": "ERC20", + "decimals": 18, + "description": "CoinPoker is a poker room built on blockchain technology that aims to offer fantastic value for both poker players and cryptocurrency community members alike.", + "website": "https://coinpoker.com/", + "explorer": "https://etherscan.io/token/0xf3db7560E820834658B590C96234c333Cd3D5E5e", + "status": "active", + "id": "0xf3db7560E820834658B590C96234c333Cd3D5E5e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf3db7560E820834658B590C96234c333Cd3D5E5e/logo.png b/blockchains/ethereum/assets/0xf3db7560E820834658B590C96234c333Cd3D5E5e/logo.png new file mode 100644 index 00000000..514358fb Binary files /dev/null and b/blockchains/ethereum/assets/0xf3db7560E820834658B590C96234c333Cd3D5E5e/logo.png differ diff --git a/blockchains/ethereum/assets/0xf4065e4477e91C177DED71A7A6fb5ee07DC46BC9/info.json b/blockchains/ethereum/assets/0xf4065e4477e91C177DED71A7A6fb5ee07DC46BC9/info.json new file mode 100644 index 00000000..004dda36 --- /dev/null +++ b/blockchains/ethereum/assets/0xf4065e4477e91C177DED71A7A6fb5ee07DC46BC9/info.json @@ -0,0 +1,11 @@ +{ + "name": "CEDEX", + "symbol": "CEDEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://cedex.com/", + "explorer": "https://etherscan.io/token/0xf4065e4477e91C177DED71A7A6fb5ee07DC46BC9", + "status": "abandoned", + "id": "0xf4065e4477e91C177DED71A7A6fb5ee07DC46BC9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf4065e4477e91C177DED71A7A6fb5ee07DC46BC9/logo.png b/blockchains/ethereum/assets/0xf4065e4477e91C177DED71A7A6fb5ee07DC46BC9/logo.png new file mode 100644 index 00000000..29deb3fc Binary files /dev/null and b/blockchains/ethereum/assets/0xf4065e4477e91C177DED71A7A6fb5ee07DC46BC9/logo.png differ diff --git a/blockchains/ethereum/assets/0xf418588522d5dd018b425E472991E52EBBeEEEEE/info.json b/blockchains/ethereum/assets/0xf418588522d5dd018b425E472991E52EBBeEEEEE/info.json new file mode 100644 index 00000000..8d0ee8e2 --- /dev/null +++ b/blockchains/ethereum/assets/0xf418588522d5dd018b425E472991E52EBBeEEEEE/info.json @@ -0,0 +1,11 @@ +{ + "name": "PUSH", + "website": "https://epns.io/", + "description": "PUSH is Ethereum Push Notification Service (EPNS) native token. EPNS is a Protocol for blockchain based notifications that are platform agnostic and incentivized!", + "explorer": "https://etherscan.io/token/0xf418588522d5dd018b425e472991e52ebbeeeeee", + "type": "ERC20", + "symbol": "PUSH", + "decimals": 18, + "status": "active", + "id": "0xf418588522d5dd018b425E472991E52EBBeEEEEE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf418588522d5dd018b425E472991E52EBBeEEEEE/logo.png b/blockchains/ethereum/assets/0xf418588522d5dd018b425E472991E52EBBeEEEEE/logo.png new file mode 100644 index 00000000..36c76dff Binary files /dev/null and b/blockchains/ethereum/assets/0xf418588522d5dd018b425E472991E52EBBeEEEEE/logo.png differ diff --git a/blockchains/ethereum/assets/0xf4203b8ed8Fc03e2caE2e2De3BC6c5f410849626/info.json b/blockchains/ethereum/assets/0xf4203b8ed8Fc03e2caE2e2De3BC6c5f410849626/info.json new file mode 100644 index 00000000..e5ba3ad1 --- /dev/null +++ b/blockchains/ethereum/assets/0xf4203b8ed8Fc03e2caE2e2De3BC6c5f410849626/info.json @@ -0,0 +1,11 @@ +{ + "name": "YAM2", + "symbol": "YAM2", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf4203b8ed8Fc03e2caE2e2De3BC6c5f410849626", + "status": "abandoned", + "id": "0xf4203b8ed8Fc03e2caE2e2De3BC6c5f410849626" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf4203b8ed8Fc03e2caE2e2De3BC6c5f410849626/logo.png b/blockchains/ethereum/assets/0xf4203b8ed8Fc03e2caE2e2De3BC6c5f410849626/logo.png new file mode 100644 index 00000000..38d37861 Binary files /dev/null and b/blockchains/ethereum/assets/0xf4203b8ed8Fc03e2caE2e2De3BC6c5f410849626/logo.png differ diff --git a/blockchains/ethereum/assets/0xf42De14aBbdA1244D66b12387cb87fC91EfcFE85/info.json b/blockchains/ethereum/assets/0xf42De14aBbdA1244D66b12387cb87fC91EfcFE85/info.json new file mode 100644 index 00000000..66e026f8 --- /dev/null +++ b/blockchains/ethereum/assets/0xf42De14aBbdA1244D66b12387cb87fC91EfcFE85/info.json @@ -0,0 +1,11 @@ +{ + "name": "Steady", + "symbol": "STEADY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf42De14aBbdA1244D66b12387cb87fC91EfcFE85", + "status": "abandoned", + "id": "0xf42De14aBbdA1244D66b12387cb87fC91EfcFE85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf42De14aBbdA1244D66b12387cb87fC91EfcFE85/logo.png b/blockchains/ethereum/assets/0xf42De14aBbdA1244D66b12387cb87fC91EfcFE85/logo.png new file mode 100644 index 00000000..8451147d Binary files /dev/null and b/blockchains/ethereum/assets/0xf42De14aBbdA1244D66b12387cb87fC91EfcFE85/logo.png differ diff --git a/blockchains/ethereum/assets/0xf42E320Cb4755Eaa35F17348f09cC962Ce187Cb9/info.json b/blockchains/ethereum/assets/0xf42E320Cb4755Eaa35F17348f09cC962Ce187Cb9/info.json new file mode 100644 index 00000000..e5bb6c49 --- /dev/null +++ b/blockchains/ethereum/assets/0xf42E320Cb4755Eaa35F17348f09cC962Ce187Cb9/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R931542", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf42E320Cb4755Eaa35F17348f09cC962Ce187Cb9", + "status": "abandoned", + "id": "0xf42E320Cb4755Eaa35F17348f09cC962Ce187Cb9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf42E320Cb4755Eaa35F17348f09cC962Ce187Cb9/logo.png b/blockchains/ethereum/assets/0xf42E320Cb4755Eaa35F17348f09cC962Ce187Cb9/logo.png new file mode 100755 index 00000000..ec0c1ef7 Binary files /dev/null and b/blockchains/ethereum/assets/0xf42E320Cb4755Eaa35F17348f09cC962Ce187Cb9/logo.png differ diff --git a/blockchains/ethereum/assets/0xf434f92a7867025204d1A2419d0731316b3F6c6a/info.json b/blockchains/ethereum/assets/0xf434f92a7867025204d1A2419d0731316b3F6c6a/info.json new file mode 100644 index 00000000..e5522611 --- /dev/null +++ b/blockchains/ethereum/assets/0xf434f92a7867025204d1A2419d0731316b3F6c6a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Derivatives Smart Contract Token", + "symbol": "DSCT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf434f92a7867025204d1A2419d0731316b3F6c6a", + "status": "abandoned", + "id": "0xf434f92a7867025204d1A2419d0731316b3F6c6a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf434f92a7867025204d1A2419d0731316b3F6c6a/logo.png b/blockchains/ethereum/assets/0xf434f92a7867025204d1A2419d0731316b3F6c6a/logo.png new file mode 100644 index 00000000..22f2ae93 Binary files /dev/null and b/blockchains/ethereum/assets/0xf434f92a7867025204d1A2419d0731316b3F6c6a/logo.png differ diff --git a/blockchains/ethereum/assets/0xf44745fBd41F6A1ba151df190db0564c5fCc4410/info.json b/blockchains/ethereum/assets/0xf44745fBd41F6A1ba151df190db0564c5fCc4410/info.json new file mode 100644 index 00000000..828b2072 --- /dev/null +++ b/blockchains/ethereum/assets/0xf44745fBd41F6A1ba151df190db0564c5fCc4410/info.json @@ -0,0 +1,11 @@ +{ + "name": "COPYTRACK Token", + "symbol": "CPY", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://copytrack.io", + "explorer": "https://etherscan.io/token/0xf44745fBd41F6A1ba151df190db0564c5fCc4410", + "status": "abandoned", + "id": "0xf44745fBd41F6A1ba151df190db0564c5fCc4410" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf44745fBd41F6A1ba151df190db0564c5fCc4410/logo.png b/blockchains/ethereum/assets/0xf44745fBd41F6A1ba151df190db0564c5fCc4410/logo.png new file mode 100644 index 00000000..c7486195 Binary files /dev/null and b/blockchains/ethereum/assets/0xf44745fBd41F6A1ba151df190db0564c5fCc4410/logo.png differ diff --git a/blockchains/ethereum/assets/0xf453B5B9d4E0B5c62ffB256BB2378cc2BC8e8a89/info.json b/blockchains/ethereum/assets/0xf453B5B9d4E0B5c62ffB256BB2378cc2BC8e8a89/info.json new file mode 100644 index 00000000..5e2ca02d --- /dev/null +++ b/blockchains/ethereum/assets/0xf453B5B9d4E0B5c62ffB256BB2378cc2BC8e8a89/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mark", + "symbol": "MRK", + "type": "ERC20", + "decimals": 8, + "description": "MARK.SPACE is an open-source platform for the creation of 3D/VR/AR-compatible spaces and objects of any purpose, as well as their quick launch and integration into a unique ecosystem. The platform supports a crypto economy and is powered by Blockchain.", + "website": "http://markspace.io/", + "explorer": "https://etherscan.io/token/0xf453B5B9d4E0B5c62ffB256BB2378cc2BC8e8a89", + "status": "active", + "id": "0xf453B5B9d4E0B5c62ffB256BB2378cc2BC8e8a89" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf453B5B9d4E0B5c62ffB256BB2378cc2BC8e8a89/logo.png b/blockchains/ethereum/assets/0xf453B5B9d4E0B5c62ffB256BB2378cc2BC8e8a89/logo.png new file mode 100755 index 00000000..584c0d5c Binary files /dev/null and b/blockchains/ethereum/assets/0xf453B5B9d4E0B5c62ffB256BB2378cc2BC8e8a89/logo.png differ diff --git a/blockchains/ethereum/assets/0xf477AC7719e2e659001455cDDA0cc8f3aD10b604/info.json b/blockchains/ethereum/assets/0xf477AC7719e2e659001455cDDA0cc8f3aD10b604/info.json new file mode 100644 index 00000000..5c4406d8 --- /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 00000000..c1404d11 Binary files /dev/null and b/blockchains/ethereum/assets/0xf477AC7719e2e659001455cDDA0cc8f3aD10b604/logo.png differ diff --git a/blockchains/ethereum/assets/0xf485C5E679238f9304D986bb2fC28fE3379200e5/info.json b/blockchains/ethereum/assets/0xf485C5E679238f9304D986bb2fC28fE3379200e5/info.json new file mode 100644 index 00000000..956350ec --- /dev/null +++ b/blockchains/ethereum/assets/0xf485C5E679238f9304D986bb2fC28fE3379200e5/info.json @@ -0,0 +1,11 @@ +{ + "name": "UG Coin", + "symbol": "UGC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://www.ugchain.com/", + "explorer": "https://etherscan.io/token/0xf485C5E679238f9304D986bb2fC28fE3379200e5", + "status": "abandoned", + "id": "0xf485C5E679238f9304D986bb2fC28fE3379200e5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf485C5E679238f9304D986bb2fC28fE3379200e5/logo.png b/blockchains/ethereum/assets/0xf485C5E679238f9304D986bb2fC28fE3379200e5/logo.png new file mode 100644 index 00000000..3b8210b3 Binary files /dev/null and b/blockchains/ethereum/assets/0xf485C5E679238f9304D986bb2fC28fE3379200e5/logo.png differ diff --git a/blockchains/ethereum/assets/0xf48ffa222A33E7C6Bed217acD27A68d3509B7E9d/info.json b/blockchains/ethereum/assets/0xf48ffa222A33E7C6Bed217acD27A68d3509B7E9d/info.json new file mode 100644 index 00000000..08b1ce7f --- /dev/null +++ b/blockchains/ethereum/assets/0xf48ffa222A33E7C6Bed217acD27A68d3509B7E9d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Monero White", + "symbol": "XMRW", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf48ffa222A33E7C6Bed217acD27A68d3509B7E9d", + "status": "abandoned", + "id": "0xf48ffa222A33E7C6Bed217acD27A68d3509B7E9d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf48ffa222A33E7C6Bed217acD27A68d3509B7E9d/logo.png b/blockchains/ethereum/assets/0xf48ffa222A33E7C6Bed217acD27A68d3509B7E9d/logo.png new file mode 100644 index 00000000..d404e94c Binary files /dev/null and b/blockchains/ethereum/assets/0xf48ffa222A33E7C6Bed217acD27A68d3509B7E9d/logo.png differ diff --git a/blockchains/ethereum/assets/0xf4922496163E8176CeD096ED80c67ca8ea2168D6/info.json b/blockchains/ethereum/assets/0xf4922496163E8176CeD096ED80c67ca8ea2168D6/info.json new file mode 100644 index 00000000..958e140c --- /dev/null +++ b/blockchains/ethereum/assets/0xf4922496163E8176CeD096ED80c67ca8ea2168D6/info.json @@ -0,0 +1,24 @@ +{ + "name": "Les Collectionneurs", + "symbol": "PINS", + "type": "ERC20", + "decimals": 18, + "description": "Les Collectionneurs is a community of French-speaking enthusiasts who share their knowledge of NFTs. The purpose of this community is to inform, exchange knowledge about NFTs, promote certain projects or artists, and explain the interest and importance of NFTs in the world of crypto-currencies to new members.", + "website": "https://lescollectionneurs.org/", + "explorer": "https://etherscan.io/token/0xf4922496163E8176CeD096ED80c67ca8ea2168D6", + "status": "active", + "id": "0xf4922496163E8176CeD096ED80c67ca8ea2168D6", + "links": [ + { + "name": "x", + "url": "https://x.com/Collections_NFT" + }, + { + "name": "discord", + "url": "https://discord.com/invite/lcnft" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf4922496163E8176CeD096ED80c67ca8ea2168D6/logo.png b/blockchains/ethereum/assets/0xf4922496163E8176CeD096ED80c67ca8ea2168D6/logo.png new file mode 100644 index 00000000..d5758ed2 Binary files /dev/null and b/blockchains/ethereum/assets/0xf4922496163E8176CeD096ED80c67ca8ea2168D6/logo.png differ diff --git a/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/info.json b/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/info.json new file mode 100644 index 00000000..b22f6d33 --- /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 00000000..a4f85e8c 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 new file mode 100644 index 00000000..21c52f97 --- /dev/null +++ b/blockchains/ethereum/assets/0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577/info.json @@ -0,0 +1,20 @@ +{ + "name": "YfDAI.finance", + "website": "https://yfdai.finance/", + "description": "YFDAI is a community centric, innovative DeFi project developed by the people, for the people. The decisions and actions of YFDAI will be made by its members and community to ensure equity and fairness for all. YFDAI is a new form of governance system where innovation, entrepreneurship, and technological advancement is the priority and the goal is delivering a much needed utility focus to DeFi.", + "explorer": "https://etherscan.io/token/0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577", + "type": "ERC20", + "symbol": "Yf-DAI", + "decimals": 18, + "status": "active", + "id": "0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577", + "tags": [ + "governance" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/YfdaiF" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577/logo.png b/blockchains/ethereum/assets/0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577/logo.png new file mode 100644 index 00000000..86fe2578 Binary files /dev/null and b/blockchains/ethereum/assets/0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577/logo.png differ diff --git a/blockchains/ethereum/assets/0xf4c571fb6DD704E58561Cdd275fa4B80cFe82f76/info.json b/blockchains/ethereum/assets/0xf4c571fb6DD704E58561Cdd275fa4B80cFe82f76/info.json new file mode 100644 index 00000000..5beb2ac9 --- /dev/null +++ b/blockchains/ethereum/assets/0xf4c571fb6DD704E58561Cdd275fa4B80cFe82f76/info.json @@ -0,0 +1,11 @@ +{ + "name": "ROTH", + "symbol": "RFX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf4c571fb6DD704E58561Cdd275fa4B80cFe82f76", + "status": "abandoned", + "id": "0xf4c571fb6DD704E58561Cdd275fa4B80cFe82f76" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf4c571fb6DD704E58561Cdd275fa4B80cFe82f76/logo.png b/blockchains/ethereum/assets/0xf4c571fb6DD704E58561Cdd275fa4B80cFe82f76/logo.png new file mode 100644 index 00000000..aab766ce Binary files /dev/null and b/blockchains/ethereum/assets/0xf4c571fb6DD704E58561Cdd275fa4B80cFe82f76/logo.png differ diff --git a/blockchains/ethereum/assets/0xf4c90e18727C5C76499eA6369C856A6d61D3E92E/info.json b/blockchains/ethereum/assets/0xf4c90e18727C5C76499eA6369C856A6d61D3E92E/info.json new file mode 100644 index 00000000..c943d7de --- /dev/null +++ b/blockchains/ethereum/assets/0xf4c90e18727C5C76499eA6369C856A6d61D3E92E/info.json @@ -0,0 +1,11 @@ +{ + "name": "INK token", + "symbol": "INK", + "type": "ERC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf4c90e18727C5C76499eA6369C856A6d61D3E92E", + "status": "abandoned", + "id": "0xf4c90e18727C5C76499eA6369C856A6d61D3E92E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf4c90e18727C5C76499eA6369C856A6d61D3E92E/logo.png b/blockchains/ethereum/assets/0xf4c90e18727C5C76499eA6369C856A6d61D3E92E/logo.png new file mode 100644 index 00000000..60830407 Binary files /dev/null and b/blockchains/ethereum/assets/0xf4c90e18727C5C76499eA6369C856A6d61D3E92E/logo.png differ diff --git a/blockchains/ethereum/assets/0xf4d2888d29D722226FafA5d9B24F9164c092421E/info.json b/blockchains/ethereum/assets/0xf4d2888d29D722226FafA5d9B24F9164c092421E/info.json new file mode 100644 index 00000000..394b813a --- /dev/null +++ b/blockchains/ethereum/assets/0xf4d2888d29D722226FafA5d9B24F9164c092421E/info.json @@ -0,0 +1,29 @@ +{ + "name": "LooksRare", + "symbol": "LOOKS", + "type": "ERC20", + "decimals": 18, + "description": "LooksRare is the community-first NFT marketplace with rewards for participating. ", + "website": "https://looksrare.org", + "explorer": "https://etherscan.io/token/0xf4d2888d29d722226fafa5d9b24f9164c092421e", + "status": "active", + "id": "0xf4d2888d29D722226FafA5d9B24F9164c092421E", + "tags": [ + "nft", + "gamefi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/LooksRareNFT" + }, + { + "name": "github", + "url": "https://github.com/looksrare" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/looksrare/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf4d2888d29D722226FafA5d9B24F9164c092421E/logo.png b/blockchains/ethereum/assets/0xf4d2888d29D722226FafA5d9B24F9164c092421E/logo.png new file mode 100644 index 00000000..ce2b4b51 Binary files /dev/null and b/blockchains/ethereum/assets/0xf4d2888d29D722226FafA5d9B24F9164c092421E/logo.png differ diff --git a/blockchains/ethereum/assets/0xf500e14C35298B7b741a42Fd1f0EFFBaE46d5393/info.json b/blockchains/ethereum/assets/0xf500e14C35298B7b741a42Fd1f0EFFBaE46d5393/info.json new file mode 100644 index 00000000..0de965dc --- /dev/null +++ b/blockchains/ethereum/assets/0xf500e14C35298B7b741a42Fd1f0EFFBaE46d5393/info.json @@ -0,0 +1,11 @@ +{ + "name": "OXITRON", + "symbol": "OTRN", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf500e14C35298B7b741a42Fd1f0EFFBaE46d5393", + "status": "abandoned", + "id": "0xf500e14C35298B7b741a42Fd1f0EFFBaE46d5393" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf500e14C35298B7b741a42Fd1f0EFFBaE46d5393/logo.png b/blockchains/ethereum/assets/0xf500e14C35298B7b741a42Fd1f0EFFBaE46d5393/logo.png new file mode 100644 index 00000000..d8e337d0 Binary files /dev/null and b/blockchains/ethereum/assets/0xf500e14C35298B7b741a42Fd1f0EFFBaE46d5393/logo.png differ diff --git a/blockchains/ethereum/assets/0xf51EBf9a26DbC02B13F8B3a9110dac47a4d62D78/info.json b/blockchains/ethereum/assets/0xf51EBf9a26DbC02B13F8B3a9110dac47a4d62D78/info.json new file mode 100644 index 00000000..1cdbc36d --- /dev/null +++ b/blockchains/ethereum/assets/0xf51EBf9a26DbC02B13F8B3a9110dac47a4d62D78/info.json @@ -0,0 +1,11 @@ +{ + "name": "APIX", + "symbol": "APIX", + "type": "ERC20", + "decimals": 18, + "description": "APIS platform provides service to help effective node management and to deliver better access to Blockchain incentive system.", + "website": "https://apisplatform.io/", + "explorer": "https://etherscan.io/token/0xf51EBf9a26DbC02B13F8B3a9110dac47a4d62D78", + "status": "active", + "id": "0xf51EBf9a26DbC02B13F8B3a9110dac47a4d62D78" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf51EBf9a26DbC02B13F8B3a9110dac47a4d62D78/logo.png b/blockchains/ethereum/assets/0xf51EBf9a26DbC02B13F8B3a9110dac47a4d62D78/logo.png new file mode 100644 index 00000000..cf095cbb Binary files /dev/null and b/blockchains/ethereum/assets/0xf51EBf9a26DbC02B13F8B3a9110dac47a4d62D78/logo.png differ diff --git a/blockchains/ethereum/assets/0xf529d8aF49af0bE3C91d212df306caF163001907/info.json b/blockchains/ethereum/assets/0xf529d8aF49af0bE3C91d212df306caF163001907/info.json new file mode 100644 index 00000000..7b66f0b6 --- /dev/null +++ b/blockchains/ethereum/assets/0xf529d8aF49af0bE3C91d212df306caF163001907/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R815582", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf529d8aF49af0bE3C91d212df306caF163001907", + "status": "abandoned", + "id": "0xf529d8aF49af0bE3C91d212df306caF163001907" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf529d8aF49af0bE3C91d212df306caF163001907/logo.png b/blockchains/ethereum/assets/0xf529d8aF49af0bE3C91d212df306caF163001907/logo.png new file mode 100644 index 00000000..ed600b47 Binary files /dev/null and b/blockchains/ethereum/assets/0xf529d8aF49af0bE3C91d212df306caF163001907/logo.png differ diff --git a/blockchains/ethereum/assets/0xf53C580bC4065405bC649cC077fF4f2F28528f4B/info.json b/blockchains/ethereum/assets/0xf53C580bC4065405bC649cC077fF4f2F28528f4B/info.json new file mode 100644 index 00000000..2622364d --- /dev/null +++ b/blockchains/ethereum/assets/0xf53C580bC4065405bC649cC077fF4f2F28528f4B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bittwatt", + "symbol": "BWT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf53C580bC4065405bC649cC077fF4f2F28528f4B", + "status": "abandoned", + "id": "0xf53C580bC4065405bC649cC077fF4f2F28528f4B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf53C580bC4065405bC649cC077fF4f2F28528f4B/logo.png b/blockchains/ethereum/assets/0xf53C580bC4065405bC649cC077fF4f2F28528f4B/logo.png new file mode 100644 index 00000000..282b8ce2 Binary files /dev/null and b/blockchains/ethereum/assets/0xf53C580bC4065405bC649cC077fF4f2F28528f4B/logo.png differ diff --git a/blockchains/ethereum/assets/0xf552b656022c218C26dAd43ad88881Fc04116F76/info.json b/blockchains/ethereum/assets/0xf552b656022c218C26dAd43ad88881Fc04116F76/info.json new file mode 100644 index 00000000..7066c4b6 --- /dev/null +++ b/blockchains/ethereum/assets/0xf552b656022c218C26dAd43ad88881Fc04116F76/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mork", + "symbol": "MORK", + "type": "ERC20", + "decimals": 4, + "description": "This is a social token listed on Roll.", + "website": "https://app.tryroll.com/token/MORK", + "explorer": "https://etherscan.io/token/0xf552b656022c218C26dAd43ad88881Fc04116F76", + "status": "active", + "id": "0xf552b656022c218C26dAd43ad88881Fc04116F76" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf552b656022c218C26dAd43ad88881Fc04116F76/logo.png b/blockchains/ethereum/assets/0xf552b656022c218C26dAd43ad88881Fc04116F76/logo.png new file mode 100644 index 00000000..541f4f26 Binary files /dev/null and b/blockchains/ethereum/assets/0xf552b656022c218C26dAd43ad88881Fc04116F76/logo.png differ diff --git a/blockchains/ethereum/assets/0xf5593de88c5391722873AFBA0cbe16fEc11066d5/info.json b/blockchains/ethereum/assets/0xf5593de88c5391722873AFBA0cbe16fEc11066d5/info.json new file mode 100644 index 00000000..f473d787 --- /dev/null +++ b/blockchains/ethereum/assets/0xf5593de88c5391722873AFBA0cbe16fEc11066d5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Awkward", + "symbol": "AWKWRD", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf5593de88c5391722873AFBA0cbe16fEc11066d5", + "status": "abandoned", + "id": "0xf5593de88c5391722873AFBA0cbe16fEc11066d5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf5593de88c5391722873AFBA0cbe16fEc11066d5/logo.png b/blockchains/ethereum/assets/0xf5593de88c5391722873AFBA0cbe16fEc11066d5/logo.png new file mode 100644 index 00000000..eecee05b Binary files /dev/null and b/blockchains/ethereum/assets/0xf5593de88c5391722873AFBA0cbe16fEc11066d5/logo.png differ diff --git a/blockchains/ethereum/assets/0xf5774f42b28F35429AAC35f8Eb57541c511fDd49/info.json b/blockchains/ethereum/assets/0xf5774f42b28F35429AAC35f8Eb57541c511fDd49/info.json new file mode 100644 index 00000000..99ef03ba --- /dev/null +++ b/blockchains/ethereum/assets/0xf5774f42b28F35429AAC35f8Eb57541c511fDd49/info.json @@ -0,0 +1,11 @@ +{ + "name": "Arch Crypton Game", + "symbol": "ARCG", + "type": "ERC20", + "decimals": 18, + "description": "Arch Crypton Game is a token based on ERC-20 ethereum game platform powered by blockchain, has new breakthrough in the field of gaming with cryptocurrency, prioritizes our product service for the world,provides an opportunity for everyone to earn money.", + "website": "https://www.archcrypton.com/", + "explorer": "https://etherscan.io/token/0xf5774f42b28F35429AAC35f8Eb57541c511fDd49", + "status": "active", + "id": "0xf5774f42b28F35429AAC35f8Eb57541c511fDd49" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf5774f42b28F35429AAC35f8Eb57541c511fDd49/logo.png b/blockchains/ethereum/assets/0xf5774f42b28F35429AAC35f8Eb57541c511fDd49/logo.png new file mode 100644 index 00000000..77f29653 Binary files /dev/null and b/blockchains/ethereum/assets/0xf5774f42b28F35429AAC35f8Eb57541c511fDd49/logo.png differ diff --git a/blockchains/ethereum/assets/0xf5B815344641412401d8e868790dBD125e6761Ca/info.json b/blockchains/ethereum/assets/0xf5B815344641412401d8e868790dBD125e6761Ca/info.json new file mode 100644 index 00000000..d06a74d5 --- /dev/null +++ b/blockchains/ethereum/assets/0xf5B815344641412401d8e868790dBD125e6761Ca/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pecunio", + "symbol": "PCO", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf5B815344641412401d8e868790dBD125e6761Ca", + "status": "abandoned", + "id": "0xf5B815344641412401d8e868790dBD125e6761Ca" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf5B815344641412401d8e868790dBD125e6761Ca/logo.png b/blockchains/ethereum/assets/0xf5B815344641412401d8e868790dBD125e6761Ca/logo.png new file mode 100644 index 00000000..f1edcd24 Binary files /dev/null and b/blockchains/ethereum/assets/0xf5B815344641412401d8e868790dBD125e6761Ca/logo.png differ diff --git a/blockchains/ethereum/assets/0xf5ED2Dc77f0D1ea7f106ecBd1850e406adC41b51/info.json b/blockchains/ethereum/assets/0xf5ED2Dc77f0D1ea7f106ecBd1850e406adC41b51/info.json new file mode 100644 index 00000000..1781c858 --- /dev/null +++ b/blockchains/ethereum/assets/0xf5ED2Dc77f0D1ea7f106ecBd1850e406adC41b51/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Ocean Token", + "symbol": "OCEAN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf5ED2Dc77f0D1ea7f106ecBd1850e406adC41b51", + "status": "abandoned", + "id": "0xf5ED2Dc77f0D1ea7f106ecBd1850e406adC41b51" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf5ED2Dc77f0D1ea7f106ecBd1850e406adC41b51/logo.png b/blockchains/ethereum/assets/0xf5ED2Dc77f0D1ea7f106ecBd1850e406adC41b51/logo.png new file mode 100755 index 00000000..6d7fcce7 Binary files /dev/null and b/blockchains/ethereum/assets/0xf5ED2Dc77f0D1ea7f106ecBd1850e406adC41b51/logo.png differ diff --git a/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/info.json b/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/info.json new file mode 100644 index 00000000..01ec30f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/info.json @@ -0,0 +1,24 @@ +{ + "name": "Kishimoto Inu", + "type": "ERC20", + "symbol": "KISHIMOTO", + "decimals": 9, + "website": "https://kishimotoinu.com/", + "description": "Kishimoto Inu is the Latest Anime & Inu Based Token released on the ERC20 Network.", + "explorer": "https://etherscan.io/token/0xf5b1fd29d23e98db2d9ebb8435e1082e3b38fb65", + "status": "active", + "id": "0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65", + "links": [ + { + "name": "x", + "url": "https://x.com/KishimotoInu" + }, + { + "name": "telegram", + "url": "https://t.me/Kishimoto_Inu" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/logo.png b/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/logo.png new file mode 100644 index 00000000..90fe4aaf Binary files /dev/null and b/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/logo.png differ diff --git a/blockchains/ethereum/assets/0xf5cB350b40726B5BcF170d12e162B6193b291B41/info.json b/blockchains/ethereum/assets/0xf5cB350b40726B5BcF170d12e162B6193b291B41/info.json new file mode 100644 index 00000000..bd8af3cb --- /dev/null +++ b/blockchains/ethereum/assets/0xf5cB350b40726B5BcF170d12e162B6193b291B41/info.json @@ -0,0 +1,12 @@ +{ + "name": "Wrapped BIS", + "website": "https://bismuth.finance", + "description": "wBIS is a ERC-20 Ethereum Token with 1:1 native BIS counterpart.", + "explorer": "https://etherscan.io/token/0xf5cB350b40726B5BcF170d12e162B6193b291B41", + "research": "https://bismuth.finance/wbis/", + "type": "ERC20", + "symbol": "wBIS", + "decimals": 8, + "status": "active", + "id": "0xf5cB350b40726B5BcF170d12e162B6193b291B41" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf5cB350b40726B5BcF170d12e162B6193b291B41/logo.png b/blockchains/ethereum/assets/0xf5cB350b40726B5BcF170d12e162B6193b291B41/logo.png new file mode 100644 index 00000000..d617a633 Binary files /dev/null and b/blockchains/ethereum/assets/0xf5cB350b40726B5BcF170d12e162B6193b291B41/logo.png differ diff --git a/blockchains/ethereum/assets/0xf5d99B06a813231265B5786a48e58B1FEE0baf84/info.json b/blockchains/ethereum/assets/0xf5d99B06a813231265B5786a48e58B1FEE0baf84/info.json new file mode 100644 index 00000000..4480c4e9 --- /dev/null +++ b/blockchains/ethereum/assets/0xf5d99B06a813231265B5786a48e58B1FEE0baf84/info.json @@ -0,0 +1,11 @@ +{ + "name": "Givet", + "symbol": "GVT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf5d99B06a813231265B5786a48e58B1FEE0baf84", + "status": "abandoned", + "id": "0xf5d99B06a813231265B5786a48e58B1FEE0baf84" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf5d99B06a813231265B5786a48e58B1FEE0baf84/logo.png b/blockchains/ethereum/assets/0xf5d99B06a813231265B5786a48e58B1FEE0baf84/logo.png new file mode 100644 index 00000000..0a8a237e Binary files /dev/null and b/blockchains/ethereum/assets/0xf5d99B06a813231265B5786a48e58B1FEE0baf84/logo.png differ diff --git a/blockchains/ethereum/assets/0xf60cc637D2C501aD6935ffC8C8032963b0Fc419a/info.json b/blockchains/ethereum/assets/0xf60cc637D2C501aD6935ffC8C8032963b0Fc419a/info.json new file mode 100644 index 00000000..d9d8923e --- /dev/null +++ b/blockchains/ethereum/assets/0xf60cc637D2C501aD6935ffC8C8032963b0Fc419a/info.json @@ -0,0 +1,11 @@ +{ + "name": "SSAL TOKEN", + "symbol": "RICE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf60cc637D2C501aD6935ffC8C8032963b0Fc419a", + "status": "abandoned", + "id": "0xf60cc637D2C501aD6935ffC8C8032963b0Fc419a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf60cc637D2C501aD6935ffC8C8032963b0Fc419a/logo.png b/blockchains/ethereum/assets/0xf60cc637D2C501aD6935ffC8C8032963b0Fc419a/logo.png new file mode 100644 index 00000000..1442c7f4 Binary files /dev/null and b/blockchains/ethereum/assets/0xf60cc637D2C501aD6935ffC8C8032963b0Fc419a/logo.png differ diff --git a/blockchains/ethereum/assets/0xf62baa1997f04F165eDD100d78241E07617F6ce6/info.json b/blockchains/ethereum/assets/0xf62baa1997f04F165eDD100d78241E07617F6ce6/info.json new file mode 100644 index 00000000..6e8c4ac9 --- /dev/null +++ b/blockchains/ethereum/assets/0xf62baa1997f04F165eDD100d78241E07617F6ce6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Uservice Token", + "symbol": "UST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf62baa1997f04F165eDD100d78241E07617F6ce6", + "status": "abandoned", + "id": "0xf62baa1997f04F165eDD100d78241E07617F6ce6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf62baa1997f04F165eDD100d78241E07617F6ce6/logo.png b/blockchains/ethereum/assets/0xf62baa1997f04F165eDD100d78241E07617F6ce6/logo.png new file mode 100755 index 00000000..560ee8d9 Binary files /dev/null and b/blockchains/ethereum/assets/0xf62baa1997f04F165eDD100d78241E07617F6ce6/logo.png differ diff --git a/blockchains/ethereum/assets/0xf649c39E7EFdBAC6c9aDb65c43e87894fC14aEDd/info.json b/blockchains/ethereum/assets/0xf649c39E7EFdBAC6c9aDb65c43e87894fC14aEDd/info.json new file mode 100644 index 00000000..41d3dc77 --- /dev/null +++ b/blockchains/ethereum/assets/0xf649c39E7EFdBAC6c9aDb65c43e87894fC14aEDd/info.json @@ -0,0 +1,11 @@ +{ + "name": "All World Coin", + "symbol": "AWC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf649c39E7EFdBAC6c9aDb65c43e87894fC14aEDd", + "status": "abandoned", + "id": "0xf649c39E7EFdBAC6c9aDb65c43e87894fC14aEDd" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf649c39E7EFdBAC6c9aDb65c43e87894fC14aEDd/logo.png b/blockchains/ethereum/assets/0xf649c39E7EFdBAC6c9aDb65c43e87894fC14aEDd/logo.png new file mode 100644 index 00000000..74d65681 Binary files /dev/null and b/blockchains/ethereum/assets/0xf649c39E7EFdBAC6c9aDb65c43e87894fC14aEDd/logo.png differ diff --git a/blockchains/ethereum/assets/0xf6537FE0df7F0Cc0985Cf00792CC98249E73EFa0/info.json b/blockchains/ethereum/assets/0xf6537FE0df7F0Cc0985Cf00792CC98249E73EFa0/info.json new file mode 100644 index 00000000..c81b06e2 --- /dev/null +++ b/blockchains/ethereum/assets/0xf6537FE0df7F0Cc0985Cf00792CC98249E73EFa0/info.json @@ -0,0 +1,21 @@ +{ + "name": "GIVLY Coin", + "website": "https://cryptolocally.com/", + "description": "A non-custodial, smart contract powered P2P gateway to blockchain and DeFi", + "explorer": "https://etherscan.io/token/0xf6537FE0df7F0Cc0985Cf00792CC98249E73EFa0", + "type": "ERC20", + "symbol": "GIV", + "decimals": 8, + "status": "active", + "id": "0xf6537FE0df7F0Cc0985Cf00792CC98249E73EFa0", + "links": [ + { + "name": "github", + "url": "https://github.com/CryptoLocally/Resources" + }, + { + "name": "whitepaper", + "url": "https://cryptolocally.com/en/blog/giv-whitepaper/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf6537FE0df7F0Cc0985Cf00792CC98249E73EFa0/logo.png b/blockchains/ethereum/assets/0xf6537FE0df7F0Cc0985Cf00792CC98249E73EFa0/logo.png new file mode 100644 index 00000000..4382e0fe Binary files /dev/null and b/blockchains/ethereum/assets/0xf6537FE0df7F0Cc0985Cf00792CC98249E73EFa0/logo.png differ diff --git a/blockchains/ethereum/assets/0xf6588A2fACBD07a9f7496fa2A60Eb75a63fd4fC5/info.json b/blockchains/ethereum/assets/0xf6588A2fACBD07a9f7496fa2A60Eb75a63fd4fC5/info.json new file mode 100644 index 00000000..aa76b9c6 --- /dev/null +++ b/blockchains/ethereum/assets/0xf6588A2fACBD07a9f7496fa2A60Eb75a63fd4fC5/info.json @@ -0,0 +1,11 @@ +{ + "name": "DreamTree", + "symbol": "DREAM", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf6588A2fACBD07a9f7496fa2A60Eb75a63fd4fC5", + "status": "abandoned", + "id": "0xf6588A2fACBD07a9f7496fa2A60Eb75a63fd4fC5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf6588A2fACBD07a9f7496fa2A60Eb75a63fd4fC5/logo.png b/blockchains/ethereum/assets/0xf6588A2fACBD07a9f7496fa2A60Eb75a63fd4fC5/logo.png new file mode 100644 index 00000000..9000e92a Binary files /dev/null and b/blockchains/ethereum/assets/0xf6588A2fACBD07a9f7496fa2A60Eb75a63fd4fC5/logo.png differ diff --git a/blockchains/ethereum/assets/0xf67041758D3B6e56D6fDafA5B32038302C3634DA/info.json b/blockchains/ethereum/assets/0xf67041758D3B6e56D6fDafA5B32038302C3634DA/info.json new file mode 100644 index 00000000..34dcfec9 --- /dev/null +++ b/blockchains/ethereum/assets/0xf67041758D3B6e56D6fDafA5B32038302C3634DA/info.json @@ -0,0 +1,11 @@ +{ + "name": "TBC Shopping Token", + "symbol": "TST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf67041758D3B6e56D6fDafA5B32038302C3634DA", + "status": "abandoned", + "id": "0xf67041758D3B6e56D6fDafA5B32038302C3634DA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf67041758D3B6e56D6fDafA5B32038302C3634DA/logo.png b/blockchains/ethereum/assets/0xf67041758D3B6e56D6fDafA5B32038302C3634DA/logo.png new file mode 100644 index 00000000..ee4f8e2c Binary files /dev/null and b/blockchains/ethereum/assets/0xf67041758D3B6e56D6fDafA5B32038302C3634DA/logo.png differ diff --git a/blockchains/ethereum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/ethereum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 00000000..50ff7820 --- /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 00000000..d0c4e5f8 Binary files /dev/null and b/blockchains/ethereum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png differ diff --git a/blockchains/ethereum/assets/0xf67c3000943c74186B64A1Bc84Cb5880E5198661/info.json b/blockchains/ethereum/assets/0xf67c3000943c74186B64A1Bc84Cb5880E5198661/info.json new file mode 100644 index 00000000..7e8eee51 --- /dev/null +++ b/blockchains/ethereum/assets/0xf67c3000943c74186B64A1Bc84Cb5880E5198661/info.json @@ -0,0 +1,11 @@ +{ + "name": "CHF36", + "website": "https://element36.io", + "description": "Our CHF36 tokens are used to connect banking network with ethereum,to send (and receive) EUR and CHF directly with your Smart Contracts. End-users do not need a wallet, because wire-transfers trigger mint/burn at the moment the transfer happens.", + "explorer": "https://etherscan.io/token/0xf67c3000943c74186B64A1Bc84Cb5880E5198661", + "type": "ERC20", + "symbol": "CHF36", + "decimals": 18, + "status": "active", + "id": "0xf67c3000943c74186B64A1Bc84Cb5880E5198661" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf67c3000943c74186B64A1Bc84Cb5880E5198661/logo.png b/blockchains/ethereum/assets/0xf67c3000943c74186B64A1Bc84Cb5880E5198661/logo.png new file mode 100644 index 00000000..89a80e24 Binary files /dev/null and b/blockchains/ethereum/assets/0xf67c3000943c74186B64A1Bc84Cb5880E5198661/logo.png differ diff --git a/blockchains/ethereum/assets/0xf680429328caaaCabee69b7A9FdB21a71419c063/info.json b/blockchains/ethereum/assets/0xf680429328caaaCabee69b7A9FdB21a71419c063/info.json new file mode 100644 index 00000000..0f45a5bd --- /dev/null +++ b/blockchains/ethereum/assets/0xf680429328caaaCabee69b7A9FdB21a71419c063/info.json @@ -0,0 +1,25 @@ +{ + "name": "Butterfly Protocol Governance Token", + "symbol": "BFLY", + "decimals": 18, + "status": "active", + "website": "https://www.butterflyprotocol.io", + "description": "A Decentralized Name System for the New Internet", + "explorer": "https://etherscan.io/token/0xf680429328caaacabee69b7a9fdb21a71419c063", + "type": "ERC20", + "id": "0xf680429328caaaCabee69b7A9FdB21a71419c063", + "links": [ + { + "name": "x", + "url": "https://x.com/butterflyproto" + }, + { + "name": "telegram", + "url": "https://t.me/butterflyprotocol" + }, + { + "name": "medium", + "url": "https://medium.com/@bproto" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf680429328caaaCabee69b7A9FdB21a71419c063/logo.png b/blockchains/ethereum/assets/0xf680429328caaaCabee69b7A9FdB21a71419c063/logo.png new file mode 100644 index 00000000..29fcd494 Binary files /dev/null and b/blockchains/ethereum/assets/0xf680429328caaaCabee69b7A9FdB21a71419c063/logo.png differ diff --git a/blockchains/ethereum/assets/0xf686439C38D621DAB5C02Ff572cA4E3A2EAFb265/info.json b/blockchains/ethereum/assets/0xf686439C38D621DAB5C02Ff572cA4E3A2EAFb265/info.json new file mode 100644 index 00000000..848d083c --- /dev/null +++ b/blockchains/ethereum/assets/0xf686439C38D621DAB5C02Ff572cA4E3A2EAFb265/info.json @@ -0,0 +1,11 @@ +{ + "name": "OnlyLoveChain", + "symbol": "OLC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf686439C38D621DAB5C02Ff572cA4E3A2EAFb265", + "status": "abandoned", + "id": "0xf686439C38D621DAB5C02Ff572cA4E3A2EAFb265" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf686439C38D621DAB5C02Ff572cA4E3A2EAFb265/logo.png b/blockchains/ethereum/assets/0xf686439C38D621DAB5C02Ff572cA4E3A2EAFb265/logo.png new file mode 100644 index 00000000..c7e26608 Binary files /dev/null and b/blockchains/ethereum/assets/0xf686439C38D621DAB5C02Ff572cA4E3A2EAFb265/logo.png differ diff --git a/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json b/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json new file mode 100644 index 00000000..b87fc0b0 --- /dev/null +++ b/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json @@ -0,0 +1,28 @@ +{ + "name": "Coin hub", + "description": "Utility token", + "symbol": "CHB", + "type": "ERC20", + "decimals": 8, + "website": "https://thecoinhub.io/", + "explorer": "https://etherscan.io/token/0xf68D4d917592f3a62417aCE42592F15296cc33A0", + "status": "active", + "id": "0xf68D4d917592f3a62417aCE42592F15296cc33A0", + "links": [ + { + "name": "telegram", + "url": "https://t.me/c0inhub" + }, + { + "name": "x", + "url": "https://x.com/coinhubchb" + }, + { + "name": "facebook", + "url": "https://facebook.com/Thecoinhub-102940902381599" + } + ], + "tags": [ + "staking-native" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/logo.png b/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/logo.png new file mode 100644 index 00000000..0043c489 Binary files /dev/null and b/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/logo.png differ diff --git a/blockchains/ethereum/assets/0xf6923F7d96fc22c4b8010a865e41cF7edfB6379C/info.json b/blockchains/ethereum/assets/0xf6923F7d96fc22c4b8010a865e41cF7edfB6379C/info.json new file mode 100644 index 00000000..3e2b1bd6 --- /dev/null +++ b/blockchains/ethereum/assets/0xf6923F7d96fc22c4b8010a865e41cF7edfB6379C/info.json @@ -0,0 +1,11 @@ +{ + "name": "ioox", + "symbol": "ioox", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "https://www.ioox.me/", + "explorer": "https://etherscan.io/token/0xf6923F7d96fc22c4b8010a865e41cF7edfB6379C", + "status": "abandoned", + "id": "0xf6923F7d96fc22c4b8010a865e41cF7edfB6379C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf6923F7d96fc22c4b8010a865e41cF7edfB6379C/logo.png b/blockchains/ethereum/assets/0xf6923F7d96fc22c4b8010a865e41cF7edfB6379C/logo.png new file mode 100644 index 00000000..23f24752 Binary files /dev/null and b/blockchains/ethereum/assets/0xf6923F7d96fc22c4b8010a865e41cF7edfB6379C/logo.png differ diff --git a/blockchains/ethereum/assets/0xf6ABff616043C2dA572573dCC583B656297b30e7/info.json b/blockchains/ethereum/assets/0xf6ABff616043C2dA572573dCC583B656297b30e7/info.json new file mode 100644 index 00000000..004de989 --- /dev/null +++ b/blockchains/ethereum/assets/0xf6ABff616043C2dA572573dCC583B656297b30e7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Custody Token", + "symbol": "CUST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.xtock.io/custody", + "explorer": "https://etherscan.io/token/0xf6ABff616043C2dA572573dCC583B656297b30e7", + "status": "abandoned", + "id": "0xf6ABff616043C2dA572573dCC583B656297b30e7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf6ABff616043C2dA572573dCC583B656297b30e7/logo.png b/blockchains/ethereum/assets/0xf6ABff616043C2dA572573dCC583B656297b30e7/logo.png new file mode 100644 index 00000000..e8e2714c Binary files /dev/null and b/blockchains/ethereum/assets/0xf6ABff616043C2dA572573dCC583B656297b30e7/logo.png differ diff --git a/blockchains/ethereum/assets/0xf6b1117ec07684D3958caD8BEb1b302bfD21103f/info.json b/blockchains/ethereum/assets/0xf6b1117ec07684D3958caD8BEb1b302bfD21103f/info.json new file mode 100644 index 00000000..1acecfe5 --- /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 00000000..26fbf04b Binary files /dev/null and b/blockchains/ethereum/assets/0xf6b1117ec07684D3958caD8BEb1b302bfD21103f/logo.png differ diff --git a/blockchains/ethereum/assets/0xf6cFe53d6FEbaEEA051f400ff5fc14F0cBBDacA1/info.json b/blockchains/ethereum/assets/0xf6cFe53d6FEbaEEA051f400ff5fc14F0cBBDacA1/info.json new file mode 100644 index 00000000..77e2156c --- /dev/null +++ b/blockchains/ethereum/assets/0xf6cFe53d6FEbaEEA051f400ff5fc14F0cBBDacA1/info.json @@ -0,0 +1,11 @@ +{ + "name": "DigiPulse Token", + "symbol": "DGPT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf6cFe53d6FEbaEEA051f400ff5fc14F0cBBDacA1", + "status": "abandoned", + "id": "0xf6cFe53d6FEbaEEA051f400ff5fc14F0cBBDacA1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf6cFe53d6FEbaEEA051f400ff5fc14F0cBBDacA1/logo.png b/blockchains/ethereum/assets/0xf6cFe53d6FEbaEEA051f400ff5fc14F0cBBDacA1/logo.png new file mode 100644 index 00000000..f249c6cb Binary files /dev/null and b/blockchains/ethereum/assets/0xf6cFe53d6FEbaEEA051f400ff5fc14F0cBBDacA1/logo.png differ diff --git a/blockchains/ethereum/assets/0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF/info.json b/blockchains/ethereum/assets/0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF/info.json new file mode 100644 index 00000000..a8f5599d --- /dev/null +++ b/blockchains/ethereum/assets/0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF/info.json @@ -0,0 +1,28 @@ +{ + "name": "KEK", + "website": "https://www.kingdomofkek.com", + "description": "KEK is a crypto meme project inspired by the ancient Egyptian god Kek, using memetic magic to influence the crypto world.", + "explorer": "https://etherscan.io/token/0xf7168c8abb0ff80116413a8d95396bbdc318a3ff", + "type": "ERC20", + "symbol": "KEKE", + "decimals": 7, + "status": "active", + "id": "0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF", + "links": [ + { + "name": "x", + "url": "https://x.com/kingdomofkek" + }, + { + "name": "telegram", + "url": "https://t.me/kingdomofkek" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/kek/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF/logo.png b/blockchains/ethereum/assets/0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF/logo.png new file mode 100644 index 00000000..4463a710 Binary files /dev/null and b/blockchains/ethereum/assets/0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF/logo.png differ diff --git a/blockchains/ethereum/assets/0xf720E38F678B29B243F7D53B56Acbf5dE98F2385/info.json b/blockchains/ethereum/assets/0xf720E38F678B29B243F7D53B56Acbf5dE98F2385/info.json new file mode 100644 index 00000000..c3c82af2 --- /dev/null +++ b/blockchains/ethereum/assets/0xf720E38F678B29B243F7D53B56Acbf5dE98F2385/info.json @@ -0,0 +1,11 @@ +{ + "name": "Upfire", + "website": "https://www.upfire.com", + "description": "Upfire is a decentralized P2P file-sharing desktop application for Windows, MacOS, and Linux that encrypts and distributes files between peers using a modified bittorrent protocol. Users earn ETH or BNB in exchange for seeding and sharing files.", + "explorer": "https://etherscan.io/token/0xf720e38f678b29b243f7d53b56acbf5de98f2385", + "type": "ERC20", + "symbol": "UPR", + "decimals": 18, + "status": "active", + "id": "0xf720E38F678B29B243F7D53B56Acbf5dE98F2385" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf720E38F678B29B243F7D53B56Acbf5dE98F2385/logo.png b/blockchains/ethereum/assets/0xf720E38F678B29B243F7D53B56Acbf5dE98F2385/logo.png new file mode 100644 index 00000000..5e8c0d9c Binary files /dev/null and b/blockchains/ethereum/assets/0xf720E38F678B29B243F7D53B56Acbf5dE98F2385/logo.png differ diff --git a/blockchains/ethereum/assets/0xf72936FA8afC808c99eb76E620A98DDC6a7A53d1/info.json b/blockchains/ethereum/assets/0xf72936FA8afC808c99eb76E620A98DDC6a7A53d1/info.json new file mode 100644 index 00000000..cd611b8c --- /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 00000000..32e8069f Binary files /dev/null and b/blockchains/ethereum/assets/0xf72936FA8afC808c99eb76E620A98DDC6a7A53d1/logo.png differ diff --git a/blockchains/ethereum/assets/0xf729dE55b9Ca9412F5DD12935AfF0201fdB1Ea8F/info.json b/blockchains/ethereum/assets/0xf729dE55b9Ca9412F5DD12935AfF0201fdB1Ea8F/info.json new file mode 100644 index 00000000..3cbfa092 --- /dev/null +++ b/blockchains/ethereum/assets/0xf729dE55b9Ca9412F5DD12935AfF0201fdB1Ea8F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Starr", + "symbol": "STR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf729dE55b9Ca9412F5DD12935AfF0201fdB1Ea8F", + "status": "abandoned", + "id": "0xf729dE55b9Ca9412F5DD12935AfF0201fdB1Ea8F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf729dE55b9Ca9412F5DD12935AfF0201fdB1Ea8F/logo.png b/blockchains/ethereum/assets/0xf729dE55b9Ca9412F5DD12935AfF0201fdB1Ea8F/logo.png new file mode 100644 index 00000000..0a252961 Binary files /dev/null and b/blockchains/ethereum/assets/0xf729dE55b9Ca9412F5DD12935AfF0201fdB1Ea8F/logo.png differ diff --git a/blockchains/ethereum/assets/0xf72FCd9DCF0190923Fadd44811E240Ef4533fc86/info.json b/blockchains/ethereum/assets/0xf72FCd9DCF0190923Fadd44811E240Ef4533fc86/info.json new file mode 100644 index 00000000..fc3f3f3c --- /dev/null +++ b/blockchains/ethereum/assets/0xf72FCd9DCF0190923Fadd44811E240Ef4533fc86/info.json @@ -0,0 +1,32 @@ +{ + "name": "mVIXY Token", + "website": "https://mirror.finance", + "description": "Wrapped Mirror VIXY Token.", + "explorer": "https://etherscan.io/token/0xf72FCd9DCF0190923Fadd44811E240Ef4533fc86", + "type": "ERC20", + "symbol": "mVIXY", + "decimals": 18, + "status": "active", + "id": "0xf72FCd9DCF0190923Fadd44811E240Ef4533fc86", + "tags": [ + "wrapped" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MirrorProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/mirror_protocol" + }, + { + "name": "discord", + "url": "https://discord.com/MirrorProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/@mirror-protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf72FCd9DCF0190923Fadd44811E240Ef4533fc86/logo.png b/blockchains/ethereum/assets/0xf72FCd9DCF0190923Fadd44811E240Ef4533fc86/logo.png new file mode 100644 index 00000000..55c06a83 Binary files /dev/null and b/blockchains/ethereum/assets/0xf72FCd9DCF0190923Fadd44811E240Ef4533fc86/logo.png differ diff --git a/blockchains/ethereum/assets/0xf72a66BA44F0a321058E3f69F790ec1452Ff987F/info.json b/blockchains/ethereum/assets/0xf72a66BA44F0a321058E3f69F790ec1452Ff987F/info.json new file mode 100644 index 00000000..f352b485 --- /dev/null +++ b/blockchains/ethereum/assets/0xf72a66BA44F0a321058E3f69F790ec1452Ff987F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Marine currency", + "symbol": "MCY ", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf72a66BA44F0a321058E3f69F790ec1452Ff987F", + "status": "abandoned", + "id": "0xf72a66BA44F0a321058E3f69F790ec1452Ff987F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf72a66BA44F0a321058E3f69F790ec1452Ff987F/logo.png b/blockchains/ethereum/assets/0xf72a66BA44F0a321058E3f69F790ec1452Ff987F/logo.png new file mode 100644 index 00000000..b3858b99 Binary files /dev/null and b/blockchains/ethereum/assets/0xf72a66BA44F0a321058E3f69F790ec1452Ff987F/logo.png differ diff --git a/blockchains/ethereum/assets/0xf7413489c474ca4399eeE604716c72879Eea3615/info.json b/blockchains/ethereum/assets/0xf7413489c474ca4399eeE604716c72879Eea3615/info.json new file mode 100644 index 00000000..bccb746c --- /dev/null +++ b/blockchains/ethereum/assets/0xf7413489c474ca4399eeE604716c72879Eea3615/info.json @@ -0,0 +1,11 @@ +{ + "name": "APYSwap", + "type": "ERC20", + "symbol": "APYS", + "decimals": 18, + "website": "https://apyswap.com", + "description": "APYS token is issued by APYSwap to link cross-chain DeFi markets.", + "explorer": "https://etherscan.io/token/0xf7413489c474ca4399eeE604716c72879Eea3615", + "status": "active", + "id": "0xf7413489c474ca4399eeE604716c72879Eea3615" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf7413489c474ca4399eeE604716c72879Eea3615/logo.png b/blockchains/ethereum/assets/0xf7413489c474ca4399eeE604716c72879Eea3615/logo.png new file mode 100644 index 00000000..14ba8105 Binary files /dev/null and b/blockchains/ethereum/assets/0xf7413489c474ca4399eeE604716c72879Eea3615/logo.png differ diff --git a/blockchains/ethereum/assets/0xf75fBfa2f681860B9A6D19FC3FF3D34CB322E2D6/info.json b/blockchains/ethereum/assets/0xf75fBfa2f681860B9A6D19FC3FF3D34CB322E2D6/info.json new file mode 100644 index 00000000..aeb0a342 --- /dev/null +++ b/blockchains/ethereum/assets/0xf75fBfa2f681860B9A6D19FC3FF3D34CB322E2D6/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRYPTORIYA", + "symbol": "CIYA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf75fBfa2f681860B9A6D19FC3FF3D34CB322E2D6", + "status": "abandoned", + "id": "0xf75fBfa2f681860B9A6D19FC3FF3D34CB322E2D6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf75fBfa2f681860B9A6D19FC3FF3D34CB322E2D6/logo.png b/blockchains/ethereum/assets/0xf75fBfa2f681860B9A6D19FC3FF3D34CB322E2D6/logo.png new file mode 100644 index 00000000..61a46130 Binary files /dev/null and b/blockchains/ethereum/assets/0xf75fBfa2f681860B9A6D19FC3FF3D34CB322E2D6/logo.png differ diff --git a/blockchains/ethereum/assets/0xf77f4d0ce6f7b4B06434CF9624cd2f23175691FD/info.json b/blockchains/ethereum/assets/0xf77f4d0ce6f7b4B06434CF9624cd2f23175691FD/info.json new file mode 100644 index 00000000..d7784f1f --- /dev/null +++ b/blockchains/ethereum/assets/0xf77f4d0ce6f7b4B06434CF9624cd2f23175691FD/info.json @@ -0,0 +1,11 @@ +{ + "name": "scoin", + "symbol": "7SNC", + "type": "ERC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf77f4d0ce6f7b4B06434CF9624cd2f23175691FD", + "status": "abandoned", + "id": "0xf77f4d0ce6f7b4B06434CF9624cd2f23175691FD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf77f4d0ce6f7b4B06434CF9624cd2f23175691FD/logo.png b/blockchains/ethereum/assets/0xf77f4d0ce6f7b4B06434CF9624cd2f23175691FD/logo.png new file mode 100644 index 00000000..ba868f6f Binary files /dev/null and b/blockchains/ethereum/assets/0xf77f4d0ce6f7b4B06434CF9624cd2f23175691FD/logo.png differ diff --git a/blockchains/ethereum/assets/0xf786c34106762Ab4Eeb45a51B42a62470E9D5332/info.json b/blockchains/ethereum/assets/0xf786c34106762Ab4Eeb45a51B42a62470E9D5332/info.json new file mode 100644 index 00000000..4a4ec998 --- /dev/null +++ b/blockchains/ethereum/assets/0xf786c34106762Ab4Eeb45a51B42a62470E9D5332/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEG Wrapped ETH", + "website": "https://fegtoken.com", + "description": "FEG Wrapped ETH", + "explorer": "https://etherscan.io/token/0xf786c34106762ab4eeb45a51b42a62470e9d5332", + "type": "ERC20", + "symbol": "fETH", + "decimals": 18, + "status": "active", + "id": "0xf786c34106762Ab4Eeb45a51B42a62470E9D5332" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf786c34106762Ab4Eeb45a51B42a62470E9D5332/logo.png b/blockchains/ethereum/assets/0xf786c34106762Ab4Eeb45a51B42a62470E9D5332/logo.png new file mode 100644 index 00000000..173f5e13 Binary files /dev/null and b/blockchains/ethereum/assets/0xf786c34106762Ab4Eeb45a51B42a62470E9D5332/logo.png differ diff --git a/blockchains/ethereum/assets/0xf7B098298f7C69Fc14610bf71d5e02c60792894C/info.json b/blockchains/ethereum/assets/0xf7B098298f7C69Fc14610bf71d5e02c60792894C/info.json new file mode 100644 index 00000000..3b95362e --- /dev/null +++ b/blockchains/ethereum/assets/0xf7B098298f7C69Fc14610bf71d5e02c60792894C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Guppy", + "symbol": "GUP", + "type": "ERC20", + "decimals": 3, + "description": "-", + "website": "https://matchpool.co/", + "explorer": "https://etherscan.io/token/0xf7B098298f7C69Fc14610bf71d5e02c60792894C", + "status": "abandoned", + "id": "0xf7B098298f7C69Fc14610bf71d5e02c60792894C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf7B098298f7C69Fc14610bf71d5e02c60792894C/logo.png b/blockchains/ethereum/assets/0xf7B098298f7C69Fc14610bf71d5e02c60792894C/logo.png new file mode 100644 index 00000000..319294ab Binary files /dev/null and b/blockchains/ethereum/assets/0xf7B098298f7C69Fc14610bf71d5e02c60792894C/logo.png differ diff --git a/blockchains/ethereum/assets/0xf7D1f35518950E78c18E5A442097cA07962f4D8A/info.json b/blockchains/ethereum/assets/0xf7D1f35518950E78c18E5A442097cA07962f4D8A/info.json new file mode 100644 index 00000000..fcc14af7 --- /dev/null +++ b/blockchains/ethereum/assets/0xf7D1f35518950E78c18E5A442097cA07962f4D8A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Onyx S&P 500 Short", + "symbol": "OSPVS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf7D1f35518950E78c18E5A442097cA07962f4D8A", + "status": "abandoned", + "id": "0xf7D1f35518950E78c18E5A442097cA07962f4D8A" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf7D1f35518950E78c18E5A442097cA07962f4D8A/logo.png b/blockchains/ethereum/assets/0xf7D1f35518950E78c18E5A442097cA07962f4D8A/logo.png new file mode 100644 index 00000000..9e8f09c0 Binary files /dev/null and b/blockchains/ethereum/assets/0xf7D1f35518950E78c18E5A442097cA07962f4D8A/logo.png differ diff --git a/blockchains/ethereum/assets/0xf7F35Fe2ede3aDDee7Cf176f4Ef20D9436E498dc/info.json b/blockchains/ethereum/assets/0xf7F35Fe2ede3aDDee7Cf176f4Ef20D9436E498dc/info.json new file mode 100644 index 00000000..e77b0f4e --- /dev/null +++ b/blockchains/ethereum/assets/0xf7F35Fe2ede3aDDee7Cf176f4Ef20D9436E498dc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Biffys Love", + "website": "https://biffy.ai", + "description": "Biffy is a cybernetic system that lives on the Ethereum blockchain and loves art.", + "explorer": "https://etherscan.io/token/0xf7F35Fe2ede3aDDee7Cf176f4Ef20D9436E498dc", + "type": "ERC20", + "symbol": "LOVE", + "decimals": 18, + "status": "active", + "id": "0xf7F35Fe2ede3aDDee7Cf176f4Ef20D9436E498dc" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf7F35Fe2ede3aDDee7Cf176f4Ef20D9436E498dc/logo.png b/blockchains/ethereum/assets/0xf7F35Fe2ede3aDDee7Cf176f4Ef20D9436E498dc/logo.png new file mode 100644 index 00000000..49e8b735 Binary files /dev/null and b/blockchains/ethereum/assets/0xf7F35Fe2ede3aDDee7Cf176f4Ef20D9436E498dc/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8173a39c56a554837C4C7f104153A005D284D11/info.json b/blockchains/ethereum/assets/0xf8173a39c56a554837C4C7f104153A005D284D11/info.json new file mode 100644 index 00000000..5651c415 --- /dev/null +++ b/blockchains/ethereum/assets/0xf8173a39c56a554837C4C7f104153A005D284D11/info.json @@ -0,0 +1,25 @@ +{ + "name": "EDU Coin", + "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 00000000..27489a3b Binary files /dev/null and b/blockchains/ethereum/assets/0xf8173a39c56a554837C4C7f104153A005D284D11/logo.png differ diff --git a/blockchains/ethereum/assets/0xf817b5C426D4170fcb678f71f4f0B59717ec7AaA/info.json b/blockchains/ethereum/assets/0xf817b5C426D4170fcb678f71f4f0B59717ec7AaA/info.json new file mode 100644 index 00000000..bd8abcbc --- /dev/null +++ b/blockchains/ethereum/assets/0xf817b5C426D4170fcb678f71f4f0B59717ec7AaA/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R885756", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf817b5C426D4170fcb678f71f4f0B59717ec7AaA", + "status": "abandoned", + "id": "0xf817b5C426D4170fcb678f71f4f0B59717ec7AaA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf817b5C426D4170fcb678f71f4f0B59717ec7AaA/logo.png b/blockchains/ethereum/assets/0xf817b5C426D4170fcb678f71f4f0B59717ec7AaA/logo.png new file mode 100644 index 00000000..c3488136 Binary files /dev/null and b/blockchains/ethereum/assets/0xf817b5C426D4170fcb678f71f4f0B59717ec7AaA/logo.png differ diff --git a/blockchains/ethereum/assets/0xf83ae621A52737e3Ef9307af91df834Ed8431aC3/info.json b/blockchains/ethereum/assets/0xf83ae621A52737e3Ef9307af91df834Ed8431aC3/info.json new file mode 100644 index 00000000..d09467a9 --- /dev/null +++ b/blockchains/ethereum/assets/0xf83ae621A52737e3Ef9307af91df834Ed8431aC3/info.json @@ -0,0 +1,11 @@ +{ + "name": "uvwFi.finance", + "symbol": "uvwFi", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf83ae621A52737e3Ef9307af91df834Ed8431aC3", + "status": "abandoned", + "id": "0xf83ae621A52737e3Ef9307af91df834Ed8431aC3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf83ae621A52737e3Ef9307af91df834Ed8431aC3/logo.png b/blockchains/ethereum/assets/0xf83ae621A52737e3Ef9307af91df834Ed8431aC3/logo.png new file mode 100644 index 00000000..17e10d81 Binary files /dev/null and b/blockchains/ethereum/assets/0xf83ae621A52737e3Ef9307af91df834Ed8431aC3/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F/info.json b/blockchains/ethereum/assets/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F/info.json new file mode 100644 index 00000000..7f80d823 --- /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 00000000..e428af92 Binary files /dev/null and b/blockchains/ethereum/assets/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8483E2d6560585C02D46bF7B3186Bf154a96166/info.json b/blockchains/ethereum/assets/0xf8483E2d6560585C02D46bF7B3186Bf154a96166/info.json new file mode 100644 index 00000000..146e1f7a --- /dev/null +++ b/blockchains/ethereum/assets/0xf8483E2d6560585C02D46bF7B3186Bf154a96166/info.json @@ -0,0 +1,11 @@ +{ + "name": "IdeaChain", + "symbol": "ICH", + "type": "ERC20", + "decimals": 8, + "description": "ICH It is a digital currency to support inventors and preserve their rights with smart and innovative solutions.", + "website": "https://ideachaincoin.com/", + "explorer": "https://etherscan.io/token/0xf8483E2d6560585C02D46bF7B3186Bf154a96166", + "status": "active", + "id": "0xf8483E2d6560585C02D46bF7B3186Bf154a96166" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf8483E2d6560585C02D46bF7B3186Bf154a96166/logo.png b/blockchains/ethereum/assets/0xf8483E2d6560585C02D46bF7B3186Bf154a96166/logo.png new file mode 100644 index 00000000..544bcbe2 Binary files /dev/null and b/blockchains/ethereum/assets/0xf8483E2d6560585C02D46bF7B3186Bf154a96166/logo.png differ diff --git a/blockchains/ethereum/assets/0xf860f90E1F55e3528682E18850612cBb45BBF1bC/info.json b/blockchains/ethereum/assets/0xf860f90E1F55e3528682E18850612cBb45BBF1bC/info.json new file mode 100644 index 00000000..60125da7 --- /dev/null +++ b/blockchains/ethereum/assets/0xf860f90E1F55e3528682E18850612cBb45BBF1bC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decentralized Exchange Set", + "symbol": "DEX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf860f90E1F55e3528682E18850612cBb45BBF1bC", + "status": "abandoned", + "id": "0xf860f90E1F55e3528682E18850612cBb45BBF1bC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf860f90E1F55e3528682E18850612cBb45BBF1bC/logo.png b/blockchains/ethereum/assets/0xf860f90E1F55e3528682E18850612cBb45BBF1bC/logo.png new file mode 100755 index 00000000..dc0cbe33 Binary files /dev/null and b/blockchains/ethereum/assets/0xf860f90E1F55e3528682E18850612cBb45BBF1bC/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8A617d786DCB28F5D00f7E81B9F92b0cad617Df/info.json b/blockchains/ethereum/assets/0xf8A617d786DCB28F5D00f7E81B9F92b0cad617Df/info.json new file mode 100644 index 00000000..33b5e1d4 --- /dev/null +++ b/blockchains/ethereum/assets/0xf8A617d786DCB28F5D00f7E81B9F92b0cad617Df/info.json @@ -0,0 +1,11 @@ +{ + "name": "EFINITY Coin", + "symbol": "ETC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf8A617d786DCB28F5D00f7E81B9F92b0cad617Df", + "status": "abandoned", + "id": "0xf8A617d786DCB28F5D00f7E81B9F92b0cad617Df" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf8A617d786DCB28F5D00f7E81B9F92b0cad617Df/logo.png b/blockchains/ethereum/assets/0xf8A617d786DCB28F5D00f7E81B9F92b0cad617Df/logo.png new file mode 100644 index 00000000..d70fc678 Binary files /dev/null and b/blockchains/ethereum/assets/0xf8A617d786DCB28F5D00f7E81B9F92b0cad617Df/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json b/blockchains/ethereum/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json new file mode 100644 index 00000000..a764a636 --- /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 00000000..c1902f7a Binary files /dev/null and b/blockchains/ethereum/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8B8bA4bcb4f7175e35D4a74a63cf79f03D7cd26/info.json b/blockchains/ethereum/assets/0xf8B8bA4bcb4f7175e35D4a74a63cf79f03D7cd26/info.json new file mode 100644 index 00000000..ff53d98a --- /dev/null +++ b/blockchains/ethereum/assets/0xf8B8bA4bcb4f7175e35D4a74a63cf79f03D7cd26/info.json @@ -0,0 +1,11 @@ +{ + "name": "LovelyBonz", + "symbol": "LVLY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf8B8bA4bcb4f7175e35D4a74a63cf79f03D7cd26", + "status": "abandoned", + "id": "0xf8B8bA4bcb4f7175e35D4a74a63cf79f03D7cd26" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf8B8bA4bcb4f7175e35D4a74a63cf79f03D7cd26/logo.png b/blockchains/ethereum/assets/0xf8B8bA4bcb4f7175e35D4a74a63cf79f03D7cd26/logo.png new file mode 100644 index 00000000..bb17ffed Binary files /dev/null and b/blockchains/ethereum/assets/0xf8B8bA4bcb4f7175e35D4a74a63cf79f03D7cd26/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8C3527CC04340b208C854E985240c02F7B7793f/info.json b/blockchains/ethereum/assets/0xf8C3527CC04340b208C854E985240c02F7B7793f/info.json new file mode 100644 index 00000000..7eaff637 --- /dev/null +++ b/blockchains/ethereum/assets/0xf8C3527CC04340b208C854E985240c02F7B7793f/info.json @@ -0,0 +1,33 @@ +{ + "name": "Frontier", + "website": "https://frontier.xyz/", + "description": "Frontier is a chain-agnostic DeFi aggregation layer. With our applications, users can participate in protocol tracking and management, staking, best-rate asset swapping, liquidity provision, CDP creation & monitoring, and more.", + "explorer": "https://etherscan.io/token/0xf8C3527CC04340b208C854E985240c02F7B7793f", + "type": "ERC20", + "symbol": "FRONT", + "decimals": 18, + "status": "active", + "id": "0xf8C3527CC04340b208C854E985240c02F7B7793f", + "links": [ + { + "name": "github", + "url": "https://github.com/frontierwallet" + }, + { + "name": "x", + "url": "https://x.com/FrontierDotXYZ" + }, + { + "name": "telegram", + "url": "https://t.me/FrontierDotXYZ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/frontier/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/frontier-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf8C3527CC04340b208C854E985240c02F7B7793f/logo.png b/blockchains/ethereum/assets/0xf8C3527CC04340b208C854E985240c02F7B7793f/logo.png new file mode 100644 index 00000000..ef5b508b Binary files /dev/null and b/blockchains/ethereum/assets/0xf8C3527CC04340b208C854E985240c02F7B7793f/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8E9F10c22840b613cdA05A0c5Fdb59A4d6cd7eF/info.json b/blockchains/ethereum/assets/0xf8E9F10c22840b613cdA05A0c5Fdb59A4d6cd7eF/info.json new file mode 100644 index 00000000..3e7c8a10 --- /dev/null +++ b/blockchains/ethereum/assets/0xf8E9F10c22840b613cdA05A0c5Fdb59A4d6cd7eF/info.json @@ -0,0 +1,52 @@ +{ + "name": "Dogs Of Elon", + "type": "ERC20", + "symbol": "DOE", + "decimals": 18, + "website": "https://dogsofelon.io", + "description": "$DOE is a community-focused, DeFi cryptocurrency token, and the companion to the Dogs Of Elon NFTs.", + "explorer": "https://etherscan.io/token/0xf8E9F10c22840b613cdA05A0c5Fdb59A4d6cd7eF", + "status": "active", + "id": "0xf8E9F10c22840b613cdA05A0c5Fdb59A4d6cd7eF", + "links": [ + { + "name": "x", + "url": "https://x.com/dogsofelon" + }, + { + "name": "github", + "url": "https://github.com/dogsofelon" + }, + { + "name": "telegram", + "url": "https://t.me/DOEOfficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/dogsofelonupdates" + }, + { + "name": "discord", + "url": "https://discord.com/channels/911728350043705385/911736752379691038" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/OfficialDogsOfElon/" + }, + { + "name": "medium", + "url": "https://medium.com/dogs-of-elon-community" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogs-of-elon/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/dogsofelon" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf8E9F10c22840b613cdA05A0c5Fdb59A4d6cd7eF/logo.png b/blockchains/ethereum/assets/0xf8E9F10c22840b613cdA05A0c5Fdb59A4d6cd7eF/logo.png new file mode 100644 index 00000000..3fd664e1 Binary files /dev/null and b/blockchains/ethereum/assets/0xf8E9F10c22840b613cdA05A0c5Fdb59A4d6cd7eF/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8aD7dFe656188A23e89da09506Adf7ad9290D5d/info.json b/blockchains/ethereum/assets/0xf8aD7dFe656188A23e89da09506Adf7ad9290D5d/info.json new file mode 100644 index 00000000..15da267d --- /dev/null +++ b/blockchains/ethereum/assets/0xf8aD7dFe656188A23e89da09506Adf7ad9290D5d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blocery Token", + "website": "http://blocery.io", + "description": "Utility token used as a medium of motivation to participate and enhance economic activities within the Blocery Food Supply Chain Ecosystem.", + "explorer": "https://etherscan.io/token/0xf8aD7dFe656188A23e89da09506Adf7ad9290D5d", + "type": "ERC20", + "symbol": "BLY", + "decimals": 18, + "status": "active", + "id": "0xf8aD7dFe656188A23e89da09506Adf7ad9290D5d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf8aD7dFe656188A23e89da09506Adf7ad9290D5d/logo.png b/blockchains/ethereum/assets/0xf8aD7dFe656188A23e89da09506Adf7ad9290D5d/logo.png new file mode 100644 index 00000000..b8f97388 Binary files /dev/null and b/blockchains/ethereum/assets/0xf8aD7dFe656188A23e89da09506Adf7ad9290D5d/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8b358b3397a8ea5464f8cc753645d42e14b79EA/info.json b/blockchains/ethereum/assets/0xf8b358b3397a8ea5464f8cc753645d42e14b79EA/info.json new file mode 100644 index 00000000..8d7249cd --- /dev/null +++ b/blockchains/ethereum/assets/0xf8b358b3397a8ea5464f8cc753645d42e14b79EA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Airbloc", + "symbol": "ABL", + "type": "ERC20", + "decimals": 18, + "description": "AIRBLOC is a decentralized personal data protocol where individuals would be able to monetize their data, and advertisers would be able to buy these data to conduct targeted marketing campaigns for higher ROIs.", + "website": "https://www.airbloc.org/", + "explorer": "https://etherscan.io/token/0xf8b358b3397a8ea5464f8cc753645d42e14b79EA", + "status": "active", + "id": "0xf8b358b3397a8ea5464f8cc753645d42e14b79EA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf8b358b3397a8ea5464f8cc753645d42e14b79EA/logo.png b/blockchains/ethereum/assets/0xf8b358b3397a8ea5464f8cc753645d42e14b79EA/logo.png new file mode 100644 index 00000000..4ad1ecb4 Binary files /dev/null and b/blockchains/ethereum/assets/0xf8b358b3397a8ea5464f8cc753645d42e14b79EA/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8e386EDa857484f5a12e4B5DAa9984E06E73705/info.json b/blockchains/ethereum/assets/0xf8e386EDa857484f5a12e4B5DAa9984E06E73705/info.json new file mode 100644 index 00000000..10a92512 --- /dev/null +++ b/blockchains/ethereum/assets/0xf8e386EDa857484f5a12e4B5DAa9984E06E73705/info.json @@ -0,0 +1,11 @@ +{ + "name": "Indorse Token", + "website": "https://indorse.io", + "description": "Utility token for conducting decentralized code reviews and coding assessments.", + "explorer": "https://etherscan.io/token/0xf8e386eda857484f5a12e4b5daa9984e06e73705", + "type": "ERC20", + "symbol": "IND", + "decimals": 18, + "status": "active", + "id": "0xf8e386EDa857484f5a12e4B5DAa9984E06E73705" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf8e386EDa857484f5a12e4B5DAa9984E06E73705/logo.png b/blockchains/ethereum/assets/0xf8e386EDa857484f5a12e4B5DAa9984E06E73705/logo.png new file mode 100644 index 00000000..e7c8848c Binary files /dev/null and b/blockchains/ethereum/assets/0xf8e386EDa857484f5a12e4B5DAa9984E06E73705/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/info.json b/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/info.json new file mode 100644 index 00000000..a64b9835 --- /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 00000000..09b734f7 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 new file mode 100644 index 00000000..5df93786 --- /dev/null +++ b/blockchains/ethereum/assets/0xf911a7ec46a2c6fa49193212fe4a2a9B95851c27/info.json @@ -0,0 +1,38 @@ +{ + "symbol": "XAMP", + "name": "Antiample", + "type": "ERC20", + "address": "0xf911a7ec46a2c6fa49193212fe4a2a9B95851c27", + "ens_address": "", + "decimals": 9, + "website": "https://antiample.org/", + "description": "Ampleforth tries to replicate fiat. We want to destroy it.", + "explorer": "https://etherscan.io/token/0xf911a7ec46a2c6fa49193212fe4a2a9B95851c27", + "logo": { + "src": "https://global-uploads.webflow.com/5f1f9b86fd976556dacaa42b/5f1f9c5354c8e025995fdf60_anarchy-p-500.png", + "width": "500px", + "height": "500px", + "ipfs_hash": "" + }, + "support": { + "email": "", + "url": "" + }, + "social": { + "blog": "", + "chat": "", + "facebook": "", + "forum": "", + "github": "", + "gitter": "", + "instagram": "", + "linkedin": "", + "reddit": "", + "slack": "", + "telegram": "https://t.me/antiample_official", + "x": "https://x.com/burn_the_state", + "youtube": "" + }, + "status": "active", + "id": "0xf911a7ec46a2c6fa49193212fe4a2a9B95851c27" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf911a7ec46a2c6fa49193212fe4a2a9B95851c27/logo.png b/blockchains/ethereum/assets/0xf911a7ec46a2c6fa49193212fe4a2a9B95851c27/logo.png new file mode 100644 index 00000000..3ca7b0e4 Binary files /dev/null and b/blockchains/ethereum/assets/0xf911a7ec46a2c6fa49193212fe4a2a9B95851c27/logo.png differ diff --git a/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/info.json b/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/info.json new file mode 100644 index 00000000..8d546d55 --- /dev/null +++ b/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/info.json @@ -0,0 +1,48 @@ +{ + "name": "BABB", + "website": "https://getbabb.com", + "description": "A decentralised banking platform that leverages blockchain and biometrics to offer anyone in the world access to a UK bank account for peer-to-peer financial services.", + "explorer": "https://etherscan.io/token/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135", + "type": "ERC20", + "symbol": "BAX", + "decimals": 18, + "status": "active", + "id": "0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135", + "tags": [ + "defi" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://getbabb.com/wp-content/uploads/2021/03/BABB-Whitepaper.pdf" + }, + { + "name": "x", + "url": "https://x.com/getbabb" + }, + { + "name": "facebook", + "url": "https://facebook.com/getbabb/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCQtkZd7sfzbEugz7VdFhv4Q" + }, + { + "name": "discord", + "url": "https://discord.com/invite/39rQp2g6JA" + }, + { + "name": "medium", + "url": "https://babb.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/babb/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/babb" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/logo.png b/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/logo.png new file mode 100644 index 00000000..1de309ed Binary files /dev/null and b/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/logo.png differ diff --git a/blockchains/ethereum/assets/0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E/info.json b/blockchains/ethereum/assets/0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E/info.json new file mode 100644 index 00000000..f2a110df --- /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 00000000..6e72a6ae Binary files /dev/null and b/blockchains/ethereum/assets/0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E/logo.png differ diff --git a/blockchains/ethereum/assets/0xf944D7CAA10c74b25A859D42ced6a601195cdeAB/info.json b/blockchains/ethereum/assets/0xf944D7CAA10c74b25A859D42ced6a601195cdeAB/info.json new file mode 100644 index 00000000..44af371a --- /dev/null +++ b/blockchains/ethereum/assets/0xf944D7CAA10c74b25A859D42ced6a601195cdeAB/info.json @@ -0,0 +1,11 @@ +{ + "name": "IAM MDLT C 160-CN30", + "symbol": "IAM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf944D7CAA10c74b25A859D42ced6a601195cdeAB", + "status": "abandoned", + "id": "0xf944D7CAA10c74b25A859D42ced6a601195cdeAB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf944D7CAA10c74b25A859D42ced6a601195cdeAB/logo.png b/blockchains/ethereum/assets/0xf944D7CAA10c74b25A859D42ced6a601195cdeAB/logo.png new file mode 100644 index 00000000..41179a3f Binary files /dev/null and b/blockchains/ethereum/assets/0xf944D7CAA10c74b25A859D42ced6a601195cdeAB/logo.png differ diff --git a/blockchains/ethereum/assets/0xf94e7d0710709388bCe3161C32B4eEA56d3f91CC/info.json b/blockchains/ethereum/assets/0xf94e7d0710709388bCe3161C32B4eEA56d3f91CC/info.json new file mode 100644 index 00000000..4d5ac523 --- /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 00000000..afd4e597 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 00000000..99b8396a --- /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 00000000..9dd2b11b Binary files /dev/null and b/blockchains/ethereum/assets/0xf951E335afb289353dc249e82926178EaC7DEd78/logo.png differ diff --git a/blockchains/ethereum/assets/0xf96AA656eC0E0Ac163590DB372B430Cf3C0d61cA/info.json b/blockchains/ethereum/assets/0xf96AA656eC0E0Ac163590DB372B430Cf3C0d61cA/info.json new file mode 100644 index 00000000..099359ea --- /dev/null +++ b/blockchains/ethereum/assets/0xf96AA656eC0E0Ac163590DB372B430Cf3C0d61cA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Twogap Token", + "symbol": "TGT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf96AA656eC0E0Ac163590DB372B430Cf3C0d61cA", + "status": "abandoned", + "id": "0xf96AA656eC0E0Ac163590DB372B430Cf3C0d61cA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf96AA656eC0E0Ac163590DB372B430Cf3C0d61cA/logo.png b/blockchains/ethereum/assets/0xf96AA656eC0E0Ac163590DB372B430Cf3C0d61cA/logo.png new file mode 100644 index 00000000..3d00424b Binary files /dev/null and b/blockchains/ethereum/assets/0xf96AA656eC0E0Ac163590DB372B430Cf3C0d61cA/logo.png differ diff --git a/blockchains/ethereum/assets/0xf971baEc0FD8B8AD376BCBd5c895336E0786392a/info.json b/blockchains/ethereum/assets/0xf971baEc0FD8B8AD376BCBd5c895336E0786392a/info.json new file mode 100644 index 00000000..3c27b703 --- /dev/null +++ b/blockchains/ethereum/assets/0xf971baEc0FD8B8AD376BCBd5c895336E0786392a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cross Trading System Token", + "symbol": "CTST", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf971baEc0FD8B8AD376BCBd5c895336E0786392a", + "status": "abandoned", + "id": "0xf971baEc0FD8B8AD376BCBd5c895336E0786392a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf971baEc0FD8B8AD376BCBd5c895336E0786392a/logo.png b/blockchains/ethereum/assets/0xf971baEc0FD8B8AD376BCBd5c895336E0786392a/logo.png new file mode 100644 index 00000000..df183302 Binary files /dev/null and b/blockchains/ethereum/assets/0xf971baEc0FD8B8AD376BCBd5c895336E0786392a/logo.png differ diff --git a/blockchains/ethereum/assets/0xf97Ce80cd21e18006dd9c3Edc07c983c158F9371/info.json b/blockchains/ethereum/assets/0xf97Ce80cd21e18006dd9c3Edc07c983c158F9371/info.json new file mode 100644 index 00000000..78740a44 --- /dev/null +++ b/blockchains/ethereum/assets/0xf97Ce80cd21e18006dd9c3Edc07c983c158F9371/info.json @@ -0,0 +1,11 @@ +{ + "name": "DANNY", + "symbol": "DANNY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf97Ce80cd21e18006dd9c3Edc07c983c158F9371", + "status": "abandoned", + "id": "0xf97Ce80cd21e18006dd9c3Edc07c983c158F9371" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf97Ce80cd21e18006dd9c3Edc07c983c158F9371/logo.png b/blockchains/ethereum/assets/0xf97Ce80cd21e18006dd9c3Edc07c983c158F9371/logo.png new file mode 100644 index 00000000..535ac474 Binary files /dev/null and b/blockchains/ethereum/assets/0xf97Ce80cd21e18006dd9c3Edc07c983c158F9371/logo.png differ diff --git a/blockchains/ethereum/assets/0xf98Ec282300892b3518B5cB996012b18d9B7D435/info.json b/blockchains/ethereum/assets/0xf98Ec282300892b3518B5cB996012b18d9B7D435/info.json new file mode 100644 index 00000000..99478466 --- /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 00000000..c9a98e6a Binary files /dev/null and b/blockchains/ethereum/assets/0xf98Ec282300892b3518B5cB996012b18d9B7D435/logo.png differ diff --git a/blockchains/ethereum/assets/0xf9BD51d756a3caF52348f2901B7EFf9Bd03398E7/info.json b/blockchains/ethereum/assets/0xf9BD51d756a3caF52348f2901B7EFf9Bd03398E7/info.json new file mode 100644 index 00000000..47b584a1 --- /dev/null +++ b/blockchains/ethereum/assets/0xf9BD51d756a3caF52348f2901B7EFf9Bd03398E7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digital Zimbabwe", + "symbol": "RTGS", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf9BD51d756a3caF52348f2901B7EFf9Bd03398E7", + "status": "abandoned", + "id": "0xf9BD51d756a3caF52348f2901B7EFf9Bd03398E7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf9BD51d756a3caF52348f2901B7EFf9Bd03398E7/logo.png b/blockchains/ethereum/assets/0xf9BD51d756a3caF52348f2901B7EFf9Bd03398E7/logo.png new file mode 100644 index 00000000..75f03550 Binary files /dev/null and b/blockchains/ethereum/assets/0xf9BD51d756a3caF52348f2901B7EFf9Bd03398E7/logo.png differ diff --git a/blockchains/ethereum/assets/0xf9C54c0E213B3C92ccE44F973192d07EE4fc83e9/info.json b/blockchains/ethereum/assets/0xf9C54c0E213B3C92ccE44F973192d07EE4fc83e9/info.json new file mode 100644 index 00000000..01bfbc64 --- /dev/null +++ b/blockchains/ethereum/assets/0xf9C54c0E213B3C92ccE44F973192d07EE4fc83e9/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R873594", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf9C54c0E213B3C92ccE44F973192d07EE4fc83e9", + "status": "abandoned", + "id": "0xf9C54c0E213B3C92ccE44F973192d07EE4fc83e9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf9C54c0E213B3C92ccE44F973192d07EE4fc83e9/logo.png b/blockchains/ethereum/assets/0xf9C54c0E213B3C92ccE44F973192d07EE4fc83e9/logo.png new file mode 100644 index 00000000..684a191a Binary files /dev/null and b/blockchains/ethereum/assets/0xf9C54c0E213B3C92ccE44F973192d07EE4fc83e9/logo.png differ diff --git a/blockchains/ethereum/assets/0xf9F7c29CFdf19FCf1f2AA6B84aA367Bcf1bD1676/info.json b/blockchains/ethereum/assets/0xf9F7c29CFdf19FCf1f2AA6B84aA367Bcf1bD1676/info.json new file mode 100644 index 00000000..5ea700d6 --- /dev/null +++ b/blockchains/ethereum/assets/0xf9F7c29CFdf19FCf1f2AA6B84aA367Bcf1bD1676/info.json @@ -0,0 +1,11 @@ +{ + "name": "Delphi Technologies Token", + "symbol": "DTT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf9F7c29CFdf19FCf1f2AA6B84aA367Bcf1bD1676", + "status": "abandoned", + "id": "0xf9F7c29CFdf19FCf1f2AA6B84aA367Bcf1bD1676" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf9F7c29CFdf19FCf1f2AA6B84aA367Bcf1bD1676/logo.png b/blockchains/ethereum/assets/0xf9F7c29CFdf19FCf1f2AA6B84aA367Bcf1bD1676/logo.png new file mode 100755 index 00000000..994e2919 Binary files /dev/null and b/blockchains/ethereum/assets/0xf9F7c29CFdf19FCf1f2AA6B84aA367Bcf1bD1676/logo.png differ diff --git a/blockchains/ethereum/assets/0xf9FBE825BFB2bF3E387af0Dc18caC8d87F29DEa8/info.json b/blockchains/ethereum/assets/0xf9FBE825BFB2bF3E387af0Dc18caC8d87F29DEa8/info.json new file mode 100644 index 00000000..f60d9b36 --- /dev/null +++ b/blockchains/ethereum/assets/0xf9FBE825BFB2bF3E387af0Dc18caC8d87F29DEa8/info.json @@ -0,0 +1,27 @@ +{ + "name": "BotOcean", + "type": "ERC20", + "symbol": "BOTS", + "decimals": 18, + "website": "https://botocean.com", + "description": "Bot Ocean democratizes the algorithmic trading market by giving you the tools to navigate your way through the market and earn assets while our bots do their job.", + "short_description": "Accessible algorithmic trading", + "explorer": "https://etherscan.io/token/0xf9fbe825bfb2bf3e387af0dc18cac8d87f29dea8", + "status": "active", + "id": "0xf9FBE825BFB2bF3E387af0Dc18caC8d87F29DEa8", + "research": "https://botocean.com/", + "links": [ + { + "name": "github", + "url": "https://github.com/BotOcean" + }, + { + "name": "x", + "url": "https://x.com/botoceaninc" + }, + { + "name": "whitepaper", + "url": "https://botocean.com/static/media/whitepaper.aff921dc.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf9FBE825BFB2bF3E387af0Dc18caC8d87F29DEa8/logo.png b/blockchains/ethereum/assets/0xf9FBE825BFB2bF3E387af0Dc18caC8d87F29DEa8/logo.png new file mode 100644 index 00000000..790238aa Binary files /dev/null and b/blockchains/ethereum/assets/0xf9FBE825BFB2bF3E387af0Dc18caC8d87F29DEa8/logo.png differ diff --git a/blockchains/ethereum/assets/0xf9d05Cf13A79DaF8A49291cbF5d2947B6812eaa6/info.json b/blockchains/ethereum/assets/0xf9d05Cf13A79DaF8A49291cbF5d2947B6812eaa6/info.json new file mode 100644 index 00000000..2cf86240 --- /dev/null +++ b/blockchains/ethereum/assets/0xf9d05Cf13A79DaF8A49291cbF5d2947B6812eaa6/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-13/30M73", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xf9d05Cf13A79DaF8A49291cbF5d2947B6812eaa6", + "status": "abandoned", + "id": "0xf9d05Cf13A79DaF8A49291cbF5d2947B6812eaa6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf9d05Cf13A79DaF8A49291cbF5d2947B6812eaa6/logo.png b/blockchains/ethereum/assets/0xf9d05Cf13A79DaF8A49291cbF5d2947B6812eaa6/logo.png new file mode 100644 index 00000000..e8a12dd7 Binary files /dev/null and b/blockchains/ethereum/assets/0xf9d05Cf13A79DaF8A49291cbF5d2947B6812eaa6/logo.png differ diff --git a/blockchains/ethereum/assets/0xfA10E13FE555760a5297DC14Eb6562A1A53e4e37/info.json b/blockchains/ethereum/assets/0xfA10E13FE555760a5297DC14Eb6562A1A53e4e37/info.json new file mode 100644 index 00000000..d3d587b0 --- /dev/null +++ b/blockchains/ethereum/assets/0xfA10E13FE555760a5297DC14Eb6562A1A53e4e37/info.json @@ -0,0 +1,11 @@ +{ + "name": "EthereumX May 2018 Set", + "symbol": "ETHX-5-18", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfA10E13FE555760a5297DC14Eb6562A1A53e4e37", + "status": "abandoned", + "id": "0xfA10E13FE555760a5297DC14Eb6562A1A53e4e37" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfA10E13FE555760a5297DC14Eb6562A1A53e4e37/logo.png b/blockchains/ethereum/assets/0xfA10E13FE555760a5297DC14Eb6562A1A53e4e37/logo.png new file mode 100755 index 00000000..831ae179 Binary files /dev/null and b/blockchains/ethereum/assets/0xfA10E13FE555760a5297DC14Eb6562A1A53e4e37/logo.png differ diff --git a/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/info.json b/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/info.json new file mode 100644 index 00000000..363c956e --- /dev/null +++ b/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/info.json @@ -0,0 +1,32 @@ +{ + "name": "Rook", + "type": "ERC20", + "symbol": "ROOK", + "decimals": 18, + "website": "https://rook.fi", + "description": "Rook enables users, protocols, and smart contracts to earn from the MEV their orders create.", + "explorer": "https://etherscan.io/token/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a", + "status": "active", + "id": "0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a", + "links": [ + { + "name": "x", + "url": "https://x.com/rook" + }, + { + "name": "discord", + "url": "https://discord.com/invite/rook" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/keeperdao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/rook" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/logo.png b/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/logo.png new file mode 100644 index 00000000..d192d67e Binary files /dev/null and b/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/logo.png differ diff --git a/blockchains/ethereum/assets/0xfA654D0702ffdAE6FE30272639c83eC4Cbfe6D7d/info.json b/blockchains/ethereum/assets/0xfA654D0702ffdAE6FE30272639c83eC4Cbfe6D7d/info.json new file mode 100644 index 00000000..33993239 --- /dev/null +++ b/blockchains/ethereum/assets/0xfA654D0702ffdAE6FE30272639c83eC4Cbfe6D7d/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRADE YUAN", + "symbol": "CNYT", + "type": "ERC20", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfA654D0702ffdAE6FE30272639c83eC4Cbfe6D7d", + "status": "abandoned", + "id": "0xfA654D0702ffdAE6FE30272639c83eC4Cbfe6D7d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfA654D0702ffdAE6FE30272639c83eC4Cbfe6D7d/logo.png b/blockchains/ethereum/assets/0xfA654D0702ffdAE6FE30272639c83eC4Cbfe6D7d/logo.png new file mode 100644 index 00000000..2af43844 Binary files /dev/null and b/blockchains/ethereum/assets/0xfA654D0702ffdAE6FE30272639c83eC4Cbfe6D7d/logo.png differ diff --git a/blockchains/ethereum/assets/0xfA690b2B6f6b4dA518035F1d0aa8B968c23341bb/info.json b/blockchains/ethereum/assets/0xfA690b2B6f6b4dA518035F1d0aa8B968c23341bb/info.json new file mode 100644 index 00000000..dc4fbc58 --- /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 00000000..34299b5b 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 00000000..8036730e --- /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 00000000..f5ab2960 Binary files /dev/null and b/blockchains/ethereum/assets/0xfA704148D516b209D52C2D75f239274C8f8EAF1A/logo.png differ diff --git a/blockchains/ethereum/assets/0xfAE4Ee59CDd86e3Be9e8b90b53AA866327D7c090/info.json b/blockchains/ethereum/assets/0xfAE4Ee59CDd86e3Be9e8b90b53AA866327D7c090/info.json new file mode 100644 index 00000000..2aac02e1 --- /dev/null +++ b/blockchains/ethereum/assets/0xfAE4Ee59CDd86e3Be9e8b90b53AA866327D7c090/info.json @@ -0,0 +1,11 @@ +{ + "name": "CPChain", + "symbol": "CPC", + "type": "ERC20", + "decimals": 18, + "description": "CPChain is a distributed infrastructure for next-generation IoT. It intends to build a fundamental data platform for IoT systems in combination with distributed storage, encryption computation, and blockchain technologies, providing the whole process solution from data acquisition, storage, sharing to application.", + "website": "http://www.cpchain.io/", + "explorer": "https://etherscan.io/token/0xfAE4Ee59CDd86e3Be9e8b90b53AA866327D7c090", + "status": "active", + "id": "0xfAE4Ee59CDd86e3Be9e8b90b53AA866327D7c090" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfAE4Ee59CDd86e3Be9e8b90b53AA866327D7c090/logo.png b/blockchains/ethereum/assets/0xfAE4Ee59CDd86e3Be9e8b90b53AA866327D7c090/logo.png new file mode 100755 index 00000000..db230942 Binary files /dev/null and b/blockchains/ethereum/assets/0xfAE4Ee59CDd86e3Be9e8b90b53AA866327D7c090/logo.png differ diff --git a/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/info.json b/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/info.json new file mode 100644 index 00000000..855ec894 --- /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 00000000..1aaa5815 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 new file mode 100644 index 00000000..09cbecaa --- /dev/null +++ b/blockchains/ethereum/assets/0xfAd45E47083e4607302aa43c65fB3106F1cd7607/info.json @@ -0,0 +1,40 @@ +{ + "name": "Hoge Finance", + "website": "https://hogefinance.com", + "description": "We Meme Business.", + "explorer": "https://etherscan.io/token/0xfAd45E47083e4607302aa43c65fB3106F1cd7607", + "type": "ERC20", + "symbol": "HOGE", + "decimals": 9, + "status": "active", + "id": "0xfAd45E47083e4607302aa43c65fB3106F1cd7607", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "reddit", + "url": "https://reddit.com/r/hoge" + }, + { + "name": "discord", + "url": "https://discord.com/invite/hoge" + }, + { + "name": "x", + "url": "https://x.com/hogefinance" + }, + { + "name": "telegram", + "url": "https://t.me/hogefinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hoge-finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hoge-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfAd45E47083e4607302aa43c65fB3106F1cd7607/logo.png b/blockchains/ethereum/assets/0xfAd45E47083e4607302aa43c65fB3106F1cd7607/logo.png new file mode 100644 index 00000000..fd2f41b9 Binary files /dev/null and b/blockchains/ethereum/assets/0xfAd45E47083e4607302aa43c65fB3106F1cd7607/logo.png differ diff --git a/blockchains/ethereum/assets/0xfB07c8D601bEA5557d161293746Eb35f65B57E9e/info.json b/blockchains/ethereum/assets/0xfB07c8D601bEA5557d161293746Eb35f65B57E9e/info.json new file mode 100644 index 00000000..fa6dbed2 --- /dev/null +++ b/blockchains/ethereum/assets/0xfB07c8D601bEA5557d161293746Eb35f65B57E9e/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 0R943213", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfB07c8D601bEA5557d161293746Eb35f65B57E9e", + "status": "abandoned", + "id": "0xfB07c8D601bEA5557d161293746Eb35f65B57E9e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfB07c8D601bEA5557d161293746Eb35f65B57E9e/logo.png b/blockchains/ethereum/assets/0xfB07c8D601bEA5557d161293746Eb35f65B57E9e/logo.png new file mode 100644 index 00000000..e2573104 Binary files /dev/null and b/blockchains/ethereum/assets/0xfB07c8D601bEA5557d161293746Eb35f65B57E9e/logo.png differ diff --git a/blockchains/ethereum/assets/0xfB3909c720516aCfA0cFf103BA228c3F2c5a815b/info.json b/blockchains/ethereum/assets/0xfB3909c720516aCfA0cFf103BA228c3F2c5a815b/info.json new file mode 100644 index 00000000..723da4b3 --- /dev/null +++ b/blockchains/ethereum/assets/0xfB3909c720516aCfA0cFf103BA228c3F2c5a815b/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKIMG1-21/30M51", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfB3909c720516aCfA0cFf103BA228c3F2c5a815b", + "status": "abandoned", + "id": "0xfB3909c720516aCfA0cFf103BA228c3F2c5a815b" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfB3909c720516aCfA0cFf103BA228c3F2c5a815b/logo.png b/blockchains/ethereum/assets/0xfB3909c720516aCfA0cFf103BA228c3F2c5a815b/logo.png new file mode 100644 index 00000000..716e12df Binary files /dev/null and b/blockchains/ethereum/assets/0xfB3909c720516aCfA0cFf103BA228c3F2c5a815b/logo.png differ diff --git a/blockchains/ethereum/assets/0xfB45512c89d5818A31f2cd35eFEA652029F225bB/info.json b/blockchains/ethereum/assets/0xfB45512c89d5818A31f2cd35eFEA652029F225bB/info.json new file mode 100644 index 00000000..8d1a2dd0 --- /dev/null +++ b/blockchains/ethereum/assets/0xfB45512c89d5818A31f2cd35eFEA652029F225bB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Financebull", + "symbol": "FB", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfB45512c89d5818A31f2cd35eFEA652029F225bB", + "status": "abandoned", + "id": "0xfB45512c89d5818A31f2cd35eFEA652029F225bB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfB45512c89d5818A31f2cd35eFEA652029F225bB/logo.png b/blockchains/ethereum/assets/0xfB45512c89d5818A31f2cd35eFEA652029F225bB/logo.png new file mode 100644 index 00000000..1eb2212b Binary files /dev/null and b/blockchains/ethereum/assets/0xfB45512c89d5818A31f2cd35eFEA652029F225bB/logo.png differ diff --git a/blockchains/ethereum/assets/0xfB559CE67Ff522ec0b9Ba7f5dC9dc7EF6c139803/info.json b/blockchains/ethereum/assets/0xfB559CE67Ff522ec0b9Ba7f5dC9dc7EF6c139803/info.json new file mode 100644 index 00000000..6245017a --- /dev/null +++ b/blockchains/ethereum/assets/0xfB559CE67Ff522ec0b9Ba7f5dC9dc7EF6c139803/info.json @@ -0,0 +1,11 @@ +{ + "name": "ProBit Token", + "symbol": "PROB", + "type": "ERC20", + "decimals": 18, + "description": "ProBit Exchange is built to be the most professional, global and secure marketplace for digital assets.", + "website": "https://www.probit.com/en-us/token", + "explorer": "https://etherscan.io/token/0xfB559CE67Ff522ec0b9Ba7f5dC9dc7EF6c139803", + "status": "active", + "id": "0xfB559CE67Ff522ec0b9Ba7f5dC9dc7EF6c139803" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfB559CE67Ff522ec0b9Ba7f5dC9dc7EF6c139803/logo.png b/blockchains/ethereum/assets/0xfB559CE67Ff522ec0b9Ba7f5dC9dc7EF6c139803/logo.png new file mode 100644 index 00000000..d3728718 Binary files /dev/null and b/blockchains/ethereum/assets/0xfB559CE67Ff522ec0b9Ba7f5dC9dc7EF6c139803/logo.png differ diff --git a/blockchains/ethereum/assets/0xfB7433Fc085f370254aa6833df2468d6Fc387d39/info.json b/blockchains/ethereum/assets/0xfB7433Fc085f370254aa6833df2468d6Fc387d39/info.json new file mode 100644 index 00000000..a56ed6ed --- /dev/null +++ b/blockchains/ethereum/assets/0xfB7433Fc085f370254aa6833df2468d6Fc387d39/info.json @@ -0,0 +1,11 @@ +{ + "name": "NAZADAX", + "symbol": "NAZA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfB7433Fc085f370254aa6833df2468d6Fc387d39", + "status": "abandoned", + "id": "0xfB7433Fc085f370254aa6833df2468d6Fc387d39" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfB7433Fc085f370254aa6833df2468d6Fc387d39/logo.png b/blockchains/ethereum/assets/0xfB7433Fc085f370254aa6833df2468d6Fc387d39/logo.png new file mode 100644 index 00000000..93c72556 Binary files /dev/null and b/blockchains/ethereum/assets/0xfB7433Fc085f370254aa6833df2468d6Fc387d39/logo.png differ diff --git a/blockchains/ethereum/assets/0xfB7B4564402E5500dB5bB6d63Ae671302777C75a/info.json b/blockchains/ethereum/assets/0xfB7B4564402E5500dB5bB6d63Ae671302777C75a/info.json new file mode 100644 index 00000000..6240d827 --- /dev/null +++ b/blockchains/ethereum/assets/0xfB7B4564402E5500dB5bB6d63Ae671302777C75a/info.json @@ -0,0 +1,17 @@ +{ + "name": "DEXTools", + "website": "https://dextools.io/", + "description": "Ultimate Hub and Defi App For Uniswap and DEX trading.", + "explorer": "https://etherscan.io/token/0xfb7b4564402e5500db5bb6d63ae671302777c75a", + "type": "ERC20", + "symbol": "DEXT", + "decimals": 18, + "status": "active", + "id": "0xfB7B4564402E5500dB5bB6d63Ae671302777C75a", + "links": [ + { + "name": "x", + "url": "https://x.com/DexToolsapp" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfB7B4564402E5500dB5bB6d63Ae671302777C75a/logo.png b/blockchains/ethereum/assets/0xfB7B4564402E5500dB5bB6d63Ae671302777C75a/logo.png new file mode 100644 index 00000000..71daefd7 Binary files /dev/null and b/blockchains/ethereum/assets/0xfB7B4564402E5500dB5bB6d63Ae671302777C75a/logo.png differ diff --git a/blockchains/ethereum/assets/0xfB7dA9863E030495Db8b4D067d665fc8433ffF85/info.json b/blockchains/ethereum/assets/0xfB7dA9863E030495Db8b4D067d665fc8433ffF85/info.json new file mode 100644 index 00000000..fdd9c91c --- /dev/null +++ b/blockchains/ethereum/assets/0xfB7dA9863E030495Db8b4D067d665fc8433ffF85/info.json @@ -0,0 +1,11 @@ +{ + "name": "PCC Token", + "symbol": "PCC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfB7dA9863E030495Db8b4D067d665fc8433ffF85", + "status": "abandoned", + "id": "0xfB7dA9863E030495Db8b4D067d665fc8433ffF85" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfB7dA9863E030495Db8b4D067d665fc8433ffF85/logo.png b/blockchains/ethereum/assets/0xfB7dA9863E030495Db8b4D067d665fc8433ffF85/logo.png new file mode 100644 index 00000000..3ac7f204 Binary files /dev/null and b/blockchains/ethereum/assets/0xfB7dA9863E030495Db8b4D067d665fc8433ffF85/logo.png differ diff --git a/blockchains/ethereum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json b/blockchains/ethereum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/info.json new file mode 100644 index 00000000..2d7343c2 --- /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 00000000..ab73b87a Binary files /dev/null and b/blockchains/ethereum/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/logo.png differ diff --git a/blockchains/ethereum/assets/0xfBc418a8a911E6C294613154Ed16E6F91c00f454/info.json b/blockchains/ethereum/assets/0xfBc418a8a911E6C294613154Ed16E6F91c00f454/info.json new file mode 100644 index 00000000..d7dc5c5d --- /dev/null +++ b/blockchains/ethereum/assets/0xfBc418a8a911E6C294613154Ed16E6F91c00f454/info.json @@ -0,0 +1,11 @@ +{ + "name": "WOO", + "symbol": "WOO", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfBc418a8a911E6C294613154Ed16E6F91c00f454", + "status": "abandoned", + "id": "0xfBc418a8a911E6C294613154Ed16E6F91c00f454" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfBc418a8a911E6C294613154Ed16E6F91c00f454/logo.png b/blockchains/ethereum/assets/0xfBc418a8a911E6C294613154Ed16E6F91c00f454/logo.png new file mode 100644 index 00000000..a78df68a Binary files /dev/null and b/blockchains/ethereum/assets/0xfBc418a8a911E6C294613154Ed16E6F91c00f454/logo.png differ diff --git a/blockchains/ethereum/assets/0xfBd86312F156B0Cc976E558B62dA068bbAfCAf9C/info.json b/blockchains/ethereum/assets/0xfBd86312F156B0Cc976E558B62dA068bbAfCAf9C/info.json new file mode 100644 index 00000000..9cd096ae --- /dev/null +++ b/blockchains/ethereum/assets/0xfBd86312F156B0Cc976E558B62dA068bbAfCAf9C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum wizard", + "symbol": "ETHW", + "type": "ERC20", + "decimals": 12, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfBd86312F156B0Cc976E558B62dA068bbAfCAf9C", + "status": "abandoned", + "id": "0xfBd86312F156B0Cc976E558B62dA068bbAfCAf9C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfBd86312F156B0Cc976E558B62dA068bbAfCAf9C/logo.png b/blockchains/ethereum/assets/0xfBd86312F156B0Cc976E558B62dA068bbAfCAf9C/logo.png new file mode 100755 index 00000000..32ceb0fb Binary files /dev/null and b/blockchains/ethereum/assets/0xfBd86312F156B0Cc976E558B62dA068bbAfCAf9C/logo.png differ diff --git a/blockchains/ethereum/assets/0xfC1E690f61EFd961294b3e1Ce3313fBD8aa4f85d/info.json b/blockchains/ethereum/assets/0xfC1E690f61EFd961294b3e1Ce3313fBD8aa4f85d/info.json new file mode 100644 index 00000000..4c443cd6 --- /dev/null +++ b/blockchains/ethereum/assets/0xfC1E690f61EFd961294b3e1Ce3313fBD8aa4f85d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aave DAI V1", + "symbol": "aDAI V1", + "type": "ERC20", + "decimals": 18, + "description": "Aave DAI V1 is an interest bearing token pegged 1:1 to the underlying DAI deposited in Aave V1. aDAI V1 accrue interest in real time in your wallet.", + "website": "https://aave.com", + "explorer": "https://etherscan.io/token/0xfC1E690f61EFd961294b3e1Ce3313fBD8aa4f85d", + "status": "abandoned", + "id": "0xfC1E690f61EFd961294b3e1Ce3313fBD8aa4f85d" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfC1E690f61EFd961294b3e1Ce3313fBD8aa4f85d/logo.png b/blockchains/ethereum/assets/0xfC1E690f61EFd961294b3e1Ce3313fBD8aa4f85d/logo.png new file mode 100644 index 00000000..f96db61e Binary files /dev/null and b/blockchains/ethereum/assets/0xfC1E690f61EFd961294b3e1Ce3313fBD8aa4f85d/logo.png differ diff --git a/blockchains/ethereum/assets/0xfC4A2Cd574bdcC385173f03A6a52cC3B853BB9d4/info.json b/blockchains/ethereum/assets/0xfC4A2Cd574bdcC385173f03A6a52cC3B853BB9d4/info.json new file mode 100644 index 00000000..307d9aa3 --- /dev/null +++ b/blockchains/ethereum/assets/0xfC4A2Cd574bdcC385173f03A6a52cC3B853BB9d4/info.json @@ -0,0 +1,11 @@ +{ + "name": "LKSCOIN", + "symbol": "LKSC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfC4A2Cd574bdcC385173f03A6a52cC3B853BB9d4", + "status": "active", + "id": "0xfC4A2Cd574bdcC385173f03A6a52cC3B853BB9d4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfC4A2Cd574bdcC385173f03A6a52cC3B853BB9d4/logo.png b/blockchains/ethereum/assets/0xfC4A2Cd574bdcC385173f03A6a52cC3B853BB9d4/logo.png new file mode 100644 index 00000000..3d91fea8 Binary files /dev/null and b/blockchains/ethereum/assets/0xfC4A2Cd574bdcC385173f03A6a52cC3B853BB9d4/logo.png differ diff --git a/blockchains/ethereum/assets/0xfC6Bb0fc3d058804058Bbb092DC594736C496cbD/info.json b/blockchains/ethereum/assets/0xfC6Bb0fc3d058804058Bbb092DC594736C496cbD/info.json new file mode 100644 index 00000000..5838a375 --- /dev/null +++ b/blockchains/ethereum/assets/0xfC6Bb0fc3d058804058Bbb092DC594736C496cbD/info.json @@ -0,0 +1,11 @@ +{ + "name": "ODC", + "symbol": "ODC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfC6Bb0fc3d058804058Bbb092DC594736C496cbD", + "status": "abandoned", + "id": "0xfC6Bb0fc3d058804058Bbb092DC594736C496cbD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfC6Bb0fc3d058804058Bbb092DC594736C496cbD/logo.png b/blockchains/ethereum/assets/0xfC6Bb0fc3d058804058Bbb092DC594736C496cbD/logo.png new file mode 100644 index 00000000..62edc027 Binary files /dev/null and b/blockchains/ethereum/assets/0xfC6Bb0fc3d058804058Bbb092DC594736C496cbD/logo.png differ diff --git a/blockchains/ethereum/assets/0xfC8e0e9d45908FF4D03662a18385ceD37C41Ef8C/info.json b/blockchains/ethereum/assets/0xfC8e0e9d45908FF4D03662a18385ceD37C41Ef8C/info.json new file mode 100644 index 00000000..139c1a45 --- /dev/null +++ b/blockchains/ethereum/assets/0xfC8e0e9d45908FF4D03662a18385ceD37C41Ef8C/info.json @@ -0,0 +1,11 @@ +{ + "name": "MKPUG1-24/30M84", + "symbol": "M", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfC8e0e9d45908FF4D03662a18385ceD37C41Ef8C", + "status": "abandoned", + "id": "0xfC8e0e9d45908FF4D03662a18385ceD37C41Ef8C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfC8e0e9d45908FF4D03662a18385ceD37C41Ef8C/logo.png b/blockchains/ethereum/assets/0xfC8e0e9d45908FF4D03662a18385ceD37C41Ef8C/logo.png new file mode 100644 index 00000000..f951be03 Binary files /dev/null and b/blockchains/ethereum/assets/0xfC8e0e9d45908FF4D03662a18385ceD37C41Ef8C/logo.png differ diff --git a/blockchains/ethereum/assets/0xfC98e825A2264D890F9a1e68ed50E1526abCcacD/info.json b/blockchains/ethereum/assets/0xfC98e825A2264D890F9a1e68ed50E1526abCcacD/info.json new file mode 100644 index 00000000..9a8d125a --- /dev/null +++ b/blockchains/ethereum/assets/0xfC98e825A2264D890F9a1e68ed50E1526abCcacD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moss Carbon Credit", + "website": "https://moss.earth", + "description": "The first truly global Carbon Credit Token, that provides ease, transparency, global scale and security for your carbon footprint compensation.", + "explorer": "https://etherscan.io/token/0xfc98e825a2264d890f9a1e68ed50e1526abccacd", + "type": "ERC20", + "symbol": "MCO2", + "decimals": 18, + "status": "active", + "id": "0xfC98e825A2264D890F9a1e68ed50E1526abCcacD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfC98e825A2264D890F9a1e68ed50E1526abCcacD/logo.png b/blockchains/ethereum/assets/0xfC98e825A2264D890F9a1e68ed50E1526abCcacD/logo.png new file mode 100644 index 00000000..dae6bac6 Binary files /dev/null and b/blockchains/ethereum/assets/0xfC98e825A2264D890F9a1e68ed50E1526abCcacD/logo.png differ diff --git a/blockchains/ethereum/assets/0xfCE9c2DF151745E77150B9f35ab23cC81D3E8004/info.json b/blockchains/ethereum/assets/0xfCE9c2DF151745E77150B9f35ab23cC81D3E8004/info.json new file mode 100644 index 00000000..e15a3c2e --- /dev/null +++ b/blockchains/ethereum/assets/0xfCE9c2DF151745E77150B9f35ab23cC81D3E8004/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hong Kong Republic", + "symbol": "HKR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfCE9c2DF151745E77150B9f35ab23cC81D3E8004", + "status": "abandoned", + "id": "0xfCE9c2DF151745E77150B9f35ab23cC81D3E8004" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfCE9c2DF151745E77150B9f35ab23cC81D3E8004/logo.png b/blockchains/ethereum/assets/0xfCE9c2DF151745E77150B9f35ab23cC81D3E8004/logo.png new file mode 100644 index 00000000..5841c0d9 Binary files /dev/null and b/blockchains/ethereum/assets/0xfCE9c2DF151745E77150B9f35ab23cC81D3E8004/logo.png differ diff --git a/blockchains/ethereum/assets/0xfCb7778C6B0558F3B08bFBB02a3eB3D44D25189a/info.json b/blockchains/ethereum/assets/0xfCb7778C6B0558F3B08bFBB02a3eB3D44D25189a/info.json new file mode 100644 index 00000000..990af788 --- /dev/null +++ b/blockchains/ethereum/assets/0xfCb7778C6B0558F3B08bFBB02a3eB3D44D25189a/info.json @@ -0,0 +1,11 @@ +{ + "name": "CM - 1C460521", + "symbol": "CM", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfCb7778C6B0558F3B08bFBB02a3eB3D44D25189a", + "status": "abandoned", + "id": "0xfCb7778C6B0558F3B08bFBB02a3eB3D44D25189a" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfCb7778C6B0558F3B08bFBB02a3eB3D44D25189a/logo.png b/blockchains/ethereum/assets/0xfCb7778C6B0558F3B08bFBB02a3eB3D44D25189a/logo.png new file mode 100644 index 00000000..4de82d18 Binary files /dev/null and b/blockchains/ethereum/assets/0xfCb7778C6B0558F3B08bFBB02a3eB3D44D25189a/logo.png differ diff --git a/blockchains/ethereum/assets/0xfCdaE8771F8d28E3B9027AB58F4A20749767a097/info.json b/blockchains/ethereum/assets/0xfCdaE8771F8d28E3B9027AB58F4A20749767a097/info.json new file mode 100644 index 00000000..60afe15a --- /dev/null +++ b/blockchains/ethereum/assets/0xfCdaE8771F8d28E3B9027AB58F4A20749767a097/info.json @@ -0,0 +1,11 @@ +{ + "name": "SecureXR", + "symbol": "SXR", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfCdaE8771F8d28E3B9027AB58F4A20749767a097", + "status": "abandoned", + "id": "0xfCdaE8771F8d28E3B9027AB58F4A20749767a097" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfCdaE8771F8d28E3B9027AB58F4A20749767a097/logo.png b/blockchains/ethereum/assets/0xfCdaE8771F8d28E3B9027AB58F4A20749767a097/logo.png new file mode 100644 index 00000000..4fbad630 Binary files /dev/null and b/blockchains/ethereum/assets/0xfCdaE8771F8d28E3B9027AB58F4A20749767a097/logo.png differ diff --git a/blockchains/ethereum/assets/0xfD0D510dc25535112AF6478fd8dCAb0DF9FA4B5E/info.json b/blockchains/ethereum/assets/0xfD0D510dc25535112AF6478fd8dCAb0DF9FA4B5E/info.json new file mode 100644 index 00000000..997c18d3 --- /dev/null +++ b/blockchains/ethereum/assets/0xfD0D510dc25535112AF6478fd8dCAb0DF9FA4B5E/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoldBoxToken", + "symbol": "GOX", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfD0D510dc25535112AF6478fd8dCAb0DF9FA4B5E", + "status": "abandoned", + "id": "0xfD0D510dc25535112AF6478fd8dCAb0DF9FA4B5E" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfD0D510dc25535112AF6478fd8dCAb0DF9FA4B5E/logo.png b/blockchains/ethereum/assets/0xfD0D510dc25535112AF6478fd8dCAb0DF9FA4B5E/logo.png new file mode 100644 index 00000000..867b4e2b Binary files /dev/null and b/blockchains/ethereum/assets/0xfD0D510dc25535112AF6478fd8dCAb0DF9FA4B5E/logo.png differ diff --git a/blockchains/ethereum/assets/0xfD107B473AB90e8Fbd89872144a3DC92C40Fa8C9/info.json b/blockchains/ethereum/assets/0xfD107B473AB90e8Fbd89872144a3DC92C40Fa8C9/info.json new file mode 100644 index 00000000..eae81b5b --- /dev/null +++ b/blockchains/ethereum/assets/0xfD107B473AB90e8Fbd89872144a3DC92C40Fa8C9/info.json @@ -0,0 +1,11 @@ +{ + "name": "LALA", + "symbol": "LALA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfD107B473AB90e8Fbd89872144a3DC92C40Fa8C9", + "status": "abandoned", + "id": "0xfD107B473AB90e8Fbd89872144a3DC92C40Fa8C9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfD107B473AB90e8Fbd89872144a3DC92C40Fa8C9/logo.png b/blockchains/ethereum/assets/0xfD107B473AB90e8Fbd89872144a3DC92C40Fa8C9/logo.png new file mode 100644 index 00000000..dfe1bca2 Binary files /dev/null and b/blockchains/ethereum/assets/0xfD107B473AB90e8Fbd89872144a3DC92C40Fa8C9/logo.png differ diff --git a/blockchains/ethereum/assets/0xfD30E1e687965f2b7AFf7129156a5f50996F8F6B/info.json b/blockchains/ethereum/assets/0xfD30E1e687965f2b7AFf7129156a5f50996F8F6B/info.json new file mode 100644 index 00000000..ec012e95 --- /dev/null +++ b/blockchains/ethereum/assets/0xfD30E1e687965f2b7AFf7129156a5f50996F8F6B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitbucx", + "symbol": "BTCX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfD30E1e687965f2b7AFf7129156a5f50996F8F6B", + "status": "abandoned", + "id": "0xfD30E1e687965f2b7AFf7129156a5f50996F8F6B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfD30E1e687965f2b7AFf7129156a5f50996F8F6B/logo.png b/blockchains/ethereum/assets/0xfD30E1e687965f2b7AFf7129156a5f50996F8F6B/logo.png new file mode 100644 index 00000000..a332c9d4 Binary files /dev/null and b/blockchains/ethereum/assets/0xfD30E1e687965f2b7AFf7129156a5f50996F8F6B/logo.png differ diff --git a/blockchains/ethereum/assets/0xfD66FfDCbF49Aa315c83281758527ECFEf10f9ee/info.json b/blockchains/ethereum/assets/0xfD66FfDCbF49Aa315c83281758527ECFEf10f9ee/info.json new file mode 100644 index 00000000..9f0a103c --- /dev/null +++ b/blockchains/ethereum/assets/0xfD66FfDCbF49Aa315c83281758527ECFEf10f9ee/info.json @@ -0,0 +1,11 @@ +{ + "name": "Omega Chain", + "symbol": "OCN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfD66FfDCbF49Aa315c83281758527ECFEf10f9ee", + "status": "abandoned", + "id": "0xfD66FfDCbF49Aa315c83281758527ECFEf10f9ee" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfD66FfDCbF49Aa315c83281758527ECFEf10f9ee/logo.png b/blockchains/ethereum/assets/0xfD66FfDCbF49Aa315c83281758527ECFEf10f9ee/logo.png new file mode 100644 index 00000000..8efe0fa4 Binary files /dev/null and b/blockchains/ethereum/assets/0xfD66FfDCbF49Aa315c83281758527ECFEf10f9ee/logo.png differ diff --git a/blockchains/ethereum/assets/0xfD6de304b470BF4F909176057116283d81Fa1351/info.json b/blockchains/ethereum/assets/0xfD6de304b470BF4F909176057116283d81Fa1351/info.json new file mode 100644 index 00000000..e4a5d12e --- /dev/null +++ b/blockchains/ethereum/assets/0xfD6de304b470BF4F909176057116283d81Fa1351/info.json @@ -0,0 +1,11 @@ +{ + "name": "Knights Gold", + "symbol": "KNG", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfD6de304b470BF4F909176057116283d81Fa1351", + "status": "abandoned", + "id": "0xfD6de304b470BF4F909176057116283d81Fa1351" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfD6de304b470BF4F909176057116283d81Fa1351/logo.png b/blockchains/ethereum/assets/0xfD6de304b470BF4F909176057116283d81Fa1351/logo.png new file mode 100644 index 00000000..b929c420 Binary files /dev/null and b/blockchains/ethereum/assets/0xfD6de304b470BF4F909176057116283d81Fa1351/logo.png differ diff --git a/blockchains/ethereum/assets/0xfDBc1aDc26F0F8f8606a5d63b7D3a3CD21c22B23/info.json b/blockchains/ethereum/assets/0xfDBc1aDc26F0F8f8606a5d63b7D3a3CD21c22B23/info.json new file mode 100644 index 00000000..45a7f9e1 --- /dev/null +++ b/blockchains/ethereum/assets/0xfDBc1aDc26F0F8f8606a5d63b7D3a3CD21c22B23/info.json @@ -0,0 +1,11 @@ +{ + "name": "1World", + "symbol": "1WO", + "type": "ERC20", + "decimals": 8, + "description": "1World is first of its kind media token and new generation Adsense. 1WO is used for increasing user engagement by sharing 10% ads revenue with participants and for buying ads.", + "website": "https://ico.1worldonline.com/", + "explorer": "https://etherscan.io/token/0xfDBc1aDc26F0F8f8606a5d63b7D3a3CD21c22B23", + "status": "active", + "id": "0xfDBc1aDc26F0F8f8606a5d63b7D3a3CD21c22B23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfDBc1aDc26F0F8f8606a5d63b7D3a3CD21c22B23/logo.png b/blockchains/ethereum/assets/0xfDBc1aDc26F0F8f8606a5d63b7D3a3CD21c22B23/logo.png new file mode 100644 index 00000000..f773a41f Binary files /dev/null and b/blockchains/ethereum/assets/0xfDBc1aDc26F0F8f8606a5d63b7D3a3CD21c22B23/logo.png differ diff --git a/blockchains/ethereum/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json b/blockchains/ethereum/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json new file mode 100644 index 00000000..73eb8ea4 --- /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 00000000..38cc9015 Binary files /dev/null and b/blockchains/ethereum/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/logo.png differ diff --git a/blockchains/ethereum/assets/0xfDF574766BA1A96A553e175aEfFA85ad78063F0B/info.json b/blockchains/ethereum/assets/0xfDF574766BA1A96A553e175aEfFA85ad78063F0B/info.json new file mode 100644 index 00000000..08d31f14 --- /dev/null +++ b/blockchains/ethereum/assets/0xfDF574766BA1A96A553e175aEfFA85ad78063F0B/info.json @@ -0,0 +1,11 @@ +{ + "name": "VANTA Token", + "symbol": "VANTA", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfDF574766BA1A96A553e175aEfFA85ad78063F0B", + "status": "abandoned", + "id": "0xfDF574766BA1A96A553e175aEfFA85ad78063F0B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfDF574766BA1A96A553e175aEfFA85ad78063F0B/logo.png b/blockchains/ethereum/assets/0xfDF574766BA1A96A553e175aEfFA85ad78063F0B/logo.png new file mode 100644 index 00000000..d193a192 Binary files /dev/null and b/blockchains/ethereum/assets/0xfDF574766BA1A96A553e175aEfFA85ad78063F0B/logo.png differ diff --git a/blockchains/ethereum/assets/0xfDFDf5db2F4A72cb754FfA8896EA012dC2cc0F5e/info.json b/blockchains/ethereum/assets/0xfDFDf5db2F4A72cb754FfA8896EA012dC2cc0F5e/info.json new file mode 100644 index 00000000..b0ed7991 --- /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 00000000..c9ccc6c6 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 00000000..fcc68eb7 --- /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 00000000..0d5ffdea Binary files /dev/null and b/blockchains/ethereum/assets/0xfDb46864A7C476F0914c5E82CdED3364a9F56F8a/logo.png differ diff --git a/blockchains/ethereum/assets/0xfDbcD3a491Ca357e8Ce347e6b45c146e28667e23/info.json b/blockchains/ethereum/assets/0xfDbcD3a491Ca357e8Ce347e6b45c146e28667e23/info.json new file mode 100644 index 00000000..0c306918 --- /dev/null +++ b/blockchains/ethereum/assets/0xfDbcD3a491Ca357e8Ce347e6b45c146e28667e23/info.json @@ -0,0 +1,11 @@ +{ + "name": "e-Money CHF stablecoin", + "website": "https://e-money.com", + "description": "ERC20 version of the e-Money CHF stablecoin", + "explorer": "https://etherscan.io/token/0xfDbcD3a491Ca357e8Ce347e6b45c146e28667e23", + "type": "ERC20", + "symbol": "ECHF", + "decimals": 6, + "status": "active", + "id": "0xfDbcD3a491Ca357e8Ce347e6b45c146e28667e23" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfDbcD3a491Ca357e8Ce347e6b45c146e28667e23/logo.png b/blockchains/ethereum/assets/0xfDbcD3a491Ca357e8Ce347e6b45c146e28667e23/logo.png new file mode 100644 index 00000000..dc81836d Binary files /dev/null and b/blockchains/ethereum/assets/0xfDbcD3a491Ca357e8Ce347e6b45c146e28667e23/logo.png differ diff --git a/blockchains/ethereum/assets/0xfDd9933A6A3B17c53AC63959AcA1c4692956077C/info.json b/blockchains/ethereum/assets/0xfDd9933A6A3B17c53AC63959AcA1c4692956077C/info.json new file mode 100644 index 00000000..9aa6a1c2 --- /dev/null +++ b/blockchains/ethereum/assets/0xfDd9933A6A3B17c53AC63959AcA1c4692956077C/info.json @@ -0,0 +1,11 @@ +{ + "name": "EQR V2/3560", + "symbol": "EQR", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfDd9933A6A3B17c53AC63959AcA1c4692956077C", + "status": "abandoned", + "id": "0xfDd9933A6A3B17c53AC63959AcA1c4692956077C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfDd9933A6A3B17c53AC63959AcA1c4692956077C/logo.png b/blockchains/ethereum/assets/0xfDd9933A6A3B17c53AC63959AcA1c4692956077C/logo.png new file mode 100644 index 00000000..974d32c9 Binary files /dev/null and b/blockchains/ethereum/assets/0xfDd9933A6A3B17c53AC63959AcA1c4692956077C/logo.png differ diff --git a/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/info.json b/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/info.json new file mode 100644 index 00000000..aee1d6eb --- /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 00000000..f7ee1d61 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 00000000..7b9883e6 --- /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 00000000..bc67c862 Binary files /dev/null and b/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/logo.png differ diff --git a/blockchains/ethereum/assets/0xfE3A06a947a036EFf9f9E8EC25B385ff4E853c38/info.json b/blockchains/ethereum/assets/0xfE3A06a947a036EFf9f9E8EC25B385ff4E853c38/info.json new file mode 100644 index 00000000..dced83aa --- /dev/null +++ b/blockchains/ethereum/assets/0xfE3A06a947a036EFf9f9E8EC25B385ff4E853c38/info.json @@ -0,0 +1,14 @@ +{ + "name": "Trust Union", + "symbol": "TUT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.tut.credit/", + "explorer": "https://etherscan.io/token/0xfE3A06a947a036EFf9f9E8EC25B385ff4E853c38", + "status": "abandoned", + "id": "0xfE3A06a947a036EFf9f9E8EC25B385ff4E853c38", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfE3A06a947a036EFf9f9E8EC25B385ff4E853c38/logo.png b/blockchains/ethereum/assets/0xfE3A06a947a036EFf9f9E8EC25B385ff4E853c38/logo.png new file mode 100644 index 00000000..7976994f Binary files /dev/null and b/blockchains/ethereum/assets/0xfE3A06a947a036EFf9f9E8EC25B385ff4E853c38/logo.png differ diff --git a/blockchains/ethereum/assets/0xfE4455fd433Ed3CA025ec7c43cb8686eD89826CD/info.json b/blockchains/ethereum/assets/0xfE4455fd433Ed3CA025ec7c43cb8686eD89826CD/info.json new file mode 100644 index 00000000..f8353df9 --- /dev/null +++ b/blockchains/ethereum/assets/0xfE4455fd433Ed3CA025ec7c43cb8686eD89826CD/info.json @@ -0,0 +1,11 @@ +{ + "name": "MZI GOLD", + "symbol": "MZG", + "type": "ERC20", + "decimals": 18, + "description": "Moozicore is revolutionary background music service for venues where music is essential for customers. Moozicore's goal is to evolve places such as bars, restaurants, gyms and any other entertainment venues by creating personalized, social music experience for each customer.", + "website": "https://tokensale.moozicore.com/", + "explorer": "https://etherscan.io/token/0xfE4455fd433Ed3CA025ec7c43cb8686eD89826CD", + "status": "active", + "id": "0xfE4455fd433Ed3CA025ec7c43cb8686eD89826CD" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfE4455fd433Ed3CA025ec7c43cb8686eD89826CD/logo.png b/blockchains/ethereum/assets/0xfE4455fd433Ed3CA025ec7c43cb8686eD89826CD/logo.png new file mode 100644 index 00000000..5abd5293 Binary files /dev/null and b/blockchains/ethereum/assets/0xfE4455fd433Ed3CA025ec7c43cb8686eD89826CD/logo.png differ diff --git a/blockchains/ethereum/assets/0xfE6892654CBB05eB73d28DCc1Ff938f59666Fe9f/info.json b/blockchains/ethereum/assets/0xfE6892654CBB05eB73d28DCc1Ff938f59666Fe9f/info.json new file mode 100644 index 00000000..9fcfb6d6 --- /dev/null +++ b/blockchains/ethereum/assets/0xfE6892654CBB05eB73d28DCc1Ff938f59666Fe9f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pool Sai", + "symbol": "plSai", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfE6892654CBB05eB73d28DCc1Ff938f59666Fe9f", + "status": "abandoned", + "id": "0xfE6892654CBB05eB73d28DCc1Ff938f59666Fe9f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfE6892654CBB05eB73d28DCc1Ff938f59666Fe9f/logo.png b/blockchains/ethereum/assets/0xfE6892654CBB05eB73d28DCc1Ff938f59666Fe9f/logo.png new file mode 100644 index 00000000..bd2e58a9 Binary files /dev/null and b/blockchains/ethereum/assets/0xfE6892654CBB05eB73d28DCc1Ff938f59666Fe9f/logo.png differ diff --git a/blockchains/ethereum/assets/0xfE831929098B5FF5d736105bD68BA9460EF07207/info.json b/blockchains/ethereum/assets/0xfE831929098B5FF5d736105bD68BA9460EF07207/info.json new file mode 100644 index 00000000..2fe40ccc --- /dev/null +++ b/blockchains/ethereum/assets/0xfE831929098B5FF5d736105bD68BA9460EF07207/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cycle", + "symbol": "CYCLE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfE831929098B5FF5d736105bD68BA9460EF07207", + "status": "abandoned", + "id": "0xfE831929098B5FF5d736105bD68BA9460EF07207" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfE831929098B5FF5d736105bD68BA9460EF07207/logo.png b/blockchains/ethereum/assets/0xfE831929098B5FF5d736105bD68BA9460EF07207/logo.png new file mode 100644 index 00000000..d3d93a0b Binary files /dev/null and b/blockchains/ethereum/assets/0xfE831929098B5FF5d736105bD68BA9460EF07207/logo.png differ diff --git a/blockchains/ethereum/assets/0xfE8487E30A07c96370149a0cFEd2627AAEe88142/info.json b/blockchains/ethereum/assets/0xfE8487E30A07c96370149a0cFEd2627AAEe88142/info.json new file mode 100644 index 00000000..20a01470 --- /dev/null +++ b/blockchains/ethereum/assets/0xfE8487E30A07c96370149a0cFEd2627AAEe88142/info.json @@ -0,0 +1,11 @@ +{ + "name": "BRKCOIN", + "symbol": "BRK", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfE8487E30A07c96370149a0cFEd2627AAEe88142", + "status": "active", + "id": "0xfE8487E30A07c96370149a0cFEd2627AAEe88142" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfE8487E30A07c96370149a0cFEd2627AAEe88142/logo.png b/blockchains/ethereum/assets/0xfE8487E30A07c96370149a0cFEd2627AAEe88142/logo.png new file mode 100644 index 00000000..1da904e1 Binary files /dev/null and b/blockchains/ethereum/assets/0xfE8487E30A07c96370149a0cFEd2627AAEe88142/logo.png differ diff --git a/blockchains/ethereum/assets/0xfE94c504D07aDBa98b23AA7C765D35357Bd185a3/info.json b/blockchains/ethereum/assets/0xfE94c504D07aDBa98b23AA7C765D35357Bd185a3/info.json new file mode 100644 index 00000000..966257be --- /dev/null +++ b/blockchains/ethereum/assets/0xfE94c504D07aDBa98b23AA7C765D35357Bd185a3/info.json @@ -0,0 +1,11 @@ +{ + "name": "FLGCToken", + "symbol": "FLGC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfE94c504D07aDBa98b23AA7C765D35357Bd185a3", + "status": "abandoned", + "id": "0xfE94c504D07aDBa98b23AA7C765D35357Bd185a3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfE94c504D07aDBa98b23AA7C765D35357Bd185a3/logo.png b/blockchains/ethereum/assets/0xfE94c504D07aDBa98b23AA7C765D35357Bd185a3/logo.png new file mode 100644 index 00000000..94ee954b Binary files /dev/null and b/blockchains/ethereum/assets/0xfE94c504D07aDBa98b23AA7C765D35357Bd185a3/logo.png differ diff --git a/blockchains/ethereum/assets/0xfEC2583f80eF0889E08Ef4eef6DaEd7CB29E4542/info.json b/blockchains/ethereum/assets/0xfEC2583f80eF0889E08Ef4eef6DaEd7CB29E4542/info.json new file mode 100644 index 00000000..08bb0b08 --- /dev/null +++ b/blockchains/ethereum/assets/0xfEC2583f80eF0889E08Ef4eef6DaEd7CB29E4542/info.json @@ -0,0 +1,11 @@ +{ + "name": "LenDingChain", + "symbol": "LDC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfEC2583f80eF0889E08Ef4eef6DaEd7CB29E4542", + "status": "abandoned", + "id": "0xfEC2583f80eF0889E08Ef4eef6DaEd7CB29E4542" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfEC2583f80eF0889E08Ef4eef6DaEd7CB29E4542/logo.png b/blockchains/ethereum/assets/0xfEC2583f80eF0889E08Ef4eef6DaEd7CB29E4542/logo.png new file mode 100644 index 00000000..c20e7348 Binary files /dev/null and b/blockchains/ethereum/assets/0xfEC2583f80eF0889E08Ef4eef6DaEd7CB29E4542/logo.png differ diff --git a/blockchains/ethereum/assets/0xfEE0d0871EAe9dB0be0362e444d224927149F649/info.json b/blockchains/ethereum/assets/0xfEE0d0871EAe9dB0be0362e444d224927149F649/info.json new file mode 100644 index 00000000..dbe09635 --- /dev/null +++ b/blockchains/ethereum/assets/0xfEE0d0871EAe9dB0be0362e444d224927149F649/info.json @@ -0,0 +1,11 @@ +{ + "name": "EHalal", + "symbol": "HAL", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfEE0d0871EAe9dB0be0362e444d224927149F649", + "status": "active", + "id": "0xfEE0d0871EAe9dB0be0362e444d224927149F649" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfEE0d0871EAe9dB0be0362e444d224927149F649/logo.png b/blockchains/ethereum/assets/0xfEE0d0871EAe9dB0be0362e444d224927149F649/logo.png new file mode 100644 index 00000000..bd9d5eee Binary files /dev/null and b/blockchains/ethereum/assets/0xfEE0d0871EAe9dB0be0362e444d224927149F649/logo.png differ diff --git a/blockchains/ethereum/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json b/blockchains/ethereum/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json new file mode 100644 index 00000000..b2255621 --- /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 00000000..984236e9 Binary files /dev/null and b/blockchains/ethereum/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/logo.png differ diff --git a/blockchains/ethereum/assets/0xfF18DBc487b4c2E3222d115952bABfDa8BA52F5F/info.json b/blockchains/ethereum/assets/0xfF18DBc487b4c2E3222d115952bABfDa8BA52F5F/info.json new file mode 100644 index 00000000..b46a882d --- /dev/null +++ b/blockchains/ethereum/assets/0xfF18DBc487b4c2E3222d115952bABfDa8BA52F5F/info.json @@ -0,0 +1,11 @@ +{ + "name": "PureLifeCoin", + "symbol": "LIFE", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.lifelabs.io/", + "explorer": "https://etherscan.io/token/0xfF18DBc487b4c2E3222d115952bABfDa8BA52F5F", + "status": "abandoned", + "id": "0xfF18DBc487b4c2E3222d115952bABfDa8BA52F5F" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfF18DBc487b4c2E3222d115952bABfDa8BA52F5F/logo.png b/blockchains/ethereum/assets/0xfF18DBc487b4c2E3222d115952bABfDa8BA52F5F/logo.png new file mode 100644 index 00000000..2302e0a8 Binary files /dev/null and b/blockchains/ethereum/assets/0xfF18DBc487b4c2E3222d115952bABfDa8BA52F5F/logo.png differ diff --git a/blockchains/ethereum/assets/0xfF20817765cB7f73d4bde2e66e067E58D11095C2/info.json b/blockchains/ethereum/assets/0xfF20817765cB7f73d4bde2e66e067E58D11095C2/info.json new file mode 100644 index 00000000..12ad98e9 --- /dev/null +++ b/blockchains/ethereum/assets/0xfF20817765cB7f73d4bde2e66e067E58D11095C2/info.json @@ -0,0 +1,29 @@ +{ + "name": "Amp", + "website": "https://amptoken.org", + "description": "Amp is a digital collateral token designed to facilitate fast and efficient value transfer, especially for use cases that prioritize security and irreversibility.", + "explorer": "https://etherscan.io/token/0xfF20817765cB7f73d4bde2e66e067E58D11095C2", + "type": "ERC20", + "symbol": "AMP", + "decimals": 18, + "status": "active", + "id": "0xfF20817765cB7f73d4bde2e66e067E58D11095C2", + "links": [ + { + "name": "github", + "url": "https://github.com/amptoken" + }, + { + "name": "x", + "url": "https://x.com/amptoken" + }, + { + "name": "blog", + "url": "https://medium.com/amptoken" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/amp-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfF20817765cB7f73d4bde2e66e067E58D11095C2/logo.png b/blockchains/ethereum/assets/0xfF20817765cB7f73d4bde2e66e067E58D11095C2/logo.png new file mode 100644 index 00000000..0a755537 Binary files /dev/null and b/blockchains/ethereum/assets/0xfF20817765cB7f73d4bde2e66e067E58D11095C2/logo.png differ diff --git a/blockchains/ethereum/assets/0xfF340f03E226B669c873516755a6B88a45b0B2aC/info.json b/blockchains/ethereum/assets/0xfF340f03E226B669c873516755a6B88a45b0B2aC/info.json new file mode 100644 index 00000000..78a9c975 --- /dev/null +++ b/blockchains/ethereum/assets/0xfF340f03E226B669c873516755a6B88a45b0B2aC/info.json @@ -0,0 +1,11 @@ +{ + "name": "NSRT BRICS", + "website": "https://newsilkroadbrics.com", + "description": "NSRT token works in real sectors of the economy at the global level with the support of state and supranational BRICS structures.", + "explorer": "https://etherscan.io/token/0xfF340f03E226B669c873516755a6B88a45b0B2aC", + "type": "ERC20", + "symbol": "NSRT", + "decimals": 18, + "status": "active", + "id": "0xfF340f03E226B669c873516755a6B88a45b0B2aC" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfF340f03E226B669c873516755a6B88a45b0B2aC/logo.png b/blockchains/ethereum/assets/0xfF340f03E226B669c873516755a6B88a45b0B2aC/logo.png new file mode 100644 index 00000000..55f50130 Binary files /dev/null and b/blockchains/ethereum/assets/0xfF340f03E226B669c873516755a6B88a45b0B2aC/logo.png differ diff --git a/blockchains/ethereum/assets/0xfF5c25D2F40B47C4a37f989DE933E26562Ef0Ac0/info.json b/blockchains/ethereum/assets/0xfF5c25D2F40B47C4a37f989DE933E26562Ef0Ac0/info.json new file mode 100644 index 00000000..c9db3d5b --- /dev/null +++ b/blockchains/ethereum/assets/0xfF5c25D2F40B47C4a37f989DE933E26562Ef0Ac0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kora Network Token", + "symbol": "KNT", + "type": "ERC20", + "decimals": 16, + "description": "-", + "website": "https://kora.network/", + "explorer": "https://etherscan.io/token/0xfF5c25D2F40B47C4a37f989DE933E26562Ef0Ac0", + "status": "abandoned", + "id": "0xfF5c25D2F40B47C4a37f989DE933E26562Ef0Ac0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfF5c25D2F40B47C4a37f989DE933E26562Ef0Ac0/logo.png b/blockchains/ethereum/assets/0xfF5c25D2F40B47C4a37f989DE933E26562Ef0Ac0/logo.png new file mode 100755 index 00000000..d0c74a5d Binary files /dev/null and b/blockchains/ethereum/assets/0xfF5c25D2F40B47C4a37f989DE933E26562Ef0Ac0/logo.png differ diff --git a/blockchains/ethereum/assets/0xfF759254e578bc7F725428CEcb612A502E604f42/info.json b/blockchains/ethereum/assets/0xfF759254e578bc7F725428CEcb612A502E604f42/info.json new file mode 100644 index 00000000..2fd51738 --- /dev/null +++ b/blockchains/ethereum/assets/0xfF759254e578bc7F725428CEcb612A502E604f42/info.json @@ -0,0 +1,11 @@ +{ + "name": "BAT Gold", + "symbol": "BATG", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfF759254e578bc7F725428CEcb612A502E604f42", + "status": "active", + "id": "0xfF759254e578bc7F725428CEcb612A502E604f42" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfF759254e578bc7F725428CEcb612A502E604f42/logo.png b/blockchains/ethereum/assets/0xfF759254e578bc7F725428CEcb612A502E604f42/logo.png new file mode 100644 index 00000000..3823bb5c Binary files /dev/null and b/blockchains/ethereum/assets/0xfF759254e578bc7F725428CEcb612A502E604f42/logo.png differ diff --git a/blockchains/ethereum/assets/0xfF7CF16aA2fFc463b996DB2f7B7cf0130336899D/info.json b/blockchains/ethereum/assets/0xfF7CF16aA2fFc463b996DB2f7B7cf0130336899D/info.json new file mode 100644 index 00000000..0c659646 --- /dev/null +++ b/blockchains/ethereum/assets/0xfF7CF16aA2fFc463b996DB2f7B7cf0130336899D/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core US Aggregate Bond ETF (Ondo Tokenized)", + "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 00000000..731ceba6 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 00000000..50c28001 --- /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 00000000..977f628a Binary files /dev/null and b/blockchains/ethereum/assets/0xfF836A5821E69066c87E268bC51b849FaB94240C/logo.png differ diff --git a/blockchains/ethereum/assets/0xfFe8196bc259E8dEDc544d935786Aa4709eC3E64/info.json b/blockchains/ethereum/assets/0xfFe8196bc259E8dEDc544d935786Aa4709eC3E64/info.json new file mode 100644 index 00000000..e91c48a3 --- /dev/null +++ b/blockchains/ethereum/assets/0xfFe8196bc259E8dEDc544d935786Aa4709eC3E64/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hedge", + "symbol": "HDG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfFe8196bc259E8dEDc544d935786Aa4709eC3E64", + "status": "abandoned", + "id": "0xfFe8196bc259E8dEDc544d935786Aa4709eC3E64" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfFe8196bc259E8dEDc544d935786Aa4709eC3E64/logo.png b/blockchains/ethereum/assets/0xfFe8196bc259E8dEDc544d935786Aa4709eC3E64/logo.png new file mode 100644 index 00000000..2af8097f Binary files /dev/null and b/blockchains/ethereum/assets/0xfFe8196bc259E8dEDc544d935786Aa4709eC3E64/logo.png differ diff --git a/blockchains/ethereum/assets/0xfa05A73FfE78ef8f1a739473e462c54bae6567D9/info.json b/blockchains/ethereum/assets/0xfa05A73FfE78ef8f1a739473e462c54bae6567D9/info.json new file mode 100644 index 00000000..7f7a6aa9 --- /dev/null +++ b/blockchains/ethereum/assets/0xfa05A73FfE78ef8f1a739473e462c54bae6567D9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lunyr Token", + "symbol": "LUN", + "type": "ERC20", + "decimals": 18, + "description": "Lunyr is an Ethereum-based decentralized world knowledge base which rewards users with app tokens for peer-reviewing and contributing information.", + "website": "https://lunyr.com/", + "explorer": "https://etherscan.io/token/0xfa05A73FfE78ef8f1a739473e462c54bae6567D9", + "status": "active", + "id": "0xfa05A73FfE78ef8f1a739473e462c54bae6567D9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfa05A73FfE78ef8f1a739473e462c54bae6567D9/logo.png b/blockchains/ethereum/assets/0xfa05A73FfE78ef8f1a739473e462c54bae6567D9/logo.png new file mode 100644 index 00000000..1d624f3b Binary files /dev/null and b/blockchains/ethereum/assets/0xfa05A73FfE78ef8f1a739473e462c54bae6567D9/logo.png differ diff --git a/blockchains/ethereum/assets/0xfa0f26d2334764cE9f9582d8aD0514B5712589cf/info.json b/blockchains/ethereum/assets/0xfa0f26d2334764cE9f9582d8aD0514B5712589cf/info.json new file mode 100644 index 00000000..eda5c706 --- /dev/null +++ b/blockchains/ethereum/assets/0xfa0f26d2334764cE9f9582d8aD0514B5712589cf/info.json @@ -0,0 +1,11 @@ +{ + "name": "AweCoin", + "symbol": "AWE", + "type": "ERC20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfa0f26d2334764cE9f9582d8aD0514B5712589cf", + "status": "abandoned", + "id": "0xfa0f26d2334764cE9f9582d8aD0514B5712589cf" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfa0f26d2334764cE9f9582d8aD0514B5712589cf/logo.png b/blockchains/ethereum/assets/0xfa0f26d2334764cE9f9582d8aD0514B5712589cf/logo.png new file mode 100644 index 00000000..5a2f1a09 Binary files /dev/null and b/blockchains/ethereum/assets/0xfa0f26d2334764cE9f9582d8aD0514B5712589cf/logo.png differ diff --git a/blockchains/ethereum/assets/0xfa6f7881E52fDF912c4a285D78a3141B089cE859/info.json b/blockchains/ethereum/assets/0xfa6f7881E52fDF912c4a285D78a3141B089cE859/info.json new file mode 100644 index 00000000..78e9c1b3 --- /dev/null +++ b/blockchains/ethereum/assets/0xfa6f7881E52fDF912c4a285D78a3141B089cE859/info.json @@ -0,0 +1,11 @@ +{ + "name": "Avocado", + "symbol": "AVO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfa6f7881E52fDF912c4a285D78a3141B089cE859", + "status": "abandoned", + "id": "0xfa6f7881E52fDF912c4a285D78a3141B089cE859" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfa6f7881E52fDF912c4a285D78a3141B089cE859/logo.png b/blockchains/ethereum/assets/0xfa6f7881E52fDF912c4a285D78a3141B089cE859/logo.png new file mode 100644 index 00000000..179806f8 Binary files /dev/null and b/blockchains/ethereum/assets/0xfa6f7881E52fDF912c4a285D78a3141B089cE859/logo.png differ diff --git a/blockchains/ethereum/assets/0xfa91f4177476633f100C59D336C0f2FfAd414CBA/info.json b/blockchains/ethereum/assets/0xfa91f4177476633f100C59D336C0f2FfAd414CBA/info.json new file mode 100644 index 00000000..828cdcf2 --- /dev/null +++ b/blockchains/ethereum/assets/0xfa91f4177476633f100C59D336C0f2FfAd414CBA/info.json @@ -0,0 +1,11 @@ +{ + "name": "ANALYSX", + "symbol": "XYS", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://analysx.io/", + "explorer": "https://etherscan.io/token/0xfa91f4177476633f100C59D336C0f2FfAd414CBA", + "status": "abandoned", + "id": "0xfa91f4177476633f100C59D336C0f2FfAd414CBA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfa91f4177476633f100C59D336C0f2FfAd414CBA/logo.png b/blockchains/ethereum/assets/0xfa91f4177476633f100C59D336C0f2FfAd414CBA/logo.png new file mode 100644 index 00000000..7257028b Binary files /dev/null and b/blockchains/ethereum/assets/0xfa91f4177476633f100C59D336C0f2FfAd414CBA/logo.png differ diff --git a/blockchains/ethereum/assets/0xfaaf0Ecfb3246902de6A2C77c5B114DA555695A3/info.json b/blockchains/ethereum/assets/0xfaaf0Ecfb3246902de6A2C77c5B114DA555695A3/info.json new file mode 100644 index 00000000..67d1a5f5 --- /dev/null +++ b/blockchains/ethereum/assets/0xfaaf0Ecfb3246902de6A2C77c5B114DA555695A3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Btex Token", + "symbol": "BT", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfaaf0Ecfb3246902de6A2C77c5B114DA555695A3", + "status": "abandoned", + "id": "0xfaaf0Ecfb3246902de6A2C77c5B114DA555695A3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfaaf0Ecfb3246902de6A2C77c5B114DA555695A3/logo.png b/blockchains/ethereum/assets/0xfaaf0Ecfb3246902de6A2C77c5B114DA555695A3/logo.png new file mode 100644 index 00000000..ecd59cc5 Binary files /dev/null and b/blockchains/ethereum/assets/0xfaaf0Ecfb3246902de6A2C77c5B114DA555695A3/logo.png differ diff --git a/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/info.json b/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/info.json new file mode 100644 index 00000000..9ac11d07 --- /dev/null +++ b/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/info.json @@ -0,0 +1,33 @@ +{ + "name": "DogeGF", + "website": "https://www.dogegf.com/", + "description": "Warm-hearted community fuelled by the magic of reciprocity.", + "explorer": "https://etherscan.io/token/0xfb130d93E49DcA13264344966A611dc79a456Bc5", + "type": "ERC20", + "symbol": "DOGEGF", + "decimals": 18, + "status": "active", + "id": "0xfb130d93E49DcA13264344966A611dc79a456Bc5", + "links": [ + { + "name": "medium", + "url": "https://dogegf.medium.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/dogegf/" + }, + { + "name": "x", + "url": "https://x.com/dogegftoken" + }, + { + "name": "telegram", + "url": "https://t.me/DogeGF_Official" + }, + { + "name": "discord", + "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 new file mode 100644 index 00000000..994caabe Binary files /dev/null and b/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/logo.png differ diff --git a/blockchains/ethereum/assets/0xfb4C6e952F2fb4eA3FAEdF5A70A9126f42C78A15/info.json b/blockchains/ethereum/assets/0xfb4C6e952F2fb4eA3FAEdF5A70A9126f42C78A15/info.json new file mode 100644 index 00000000..2bb59734 --- /dev/null +++ b/blockchains/ethereum/assets/0xfb4C6e952F2fb4eA3FAEdF5A70A9126f42C78A15/info.json @@ -0,0 +1,11 @@ +{ + "name": "Beside", + "symbol": "SIDE", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfb4C6e952F2fb4eA3FAEdF5A70A9126f42C78A15", + "status": "abandoned", + "id": "0xfb4C6e952F2fb4eA3FAEdF5A70A9126f42C78A15" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfb4C6e952F2fb4eA3FAEdF5A70A9126f42C78A15/logo.png b/blockchains/ethereum/assets/0xfb4C6e952F2fb4eA3FAEdF5A70A9126f42C78A15/logo.png new file mode 100755 index 00000000..7e60366a Binary files /dev/null and b/blockchains/ethereum/assets/0xfb4C6e952F2fb4eA3FAEdF5A70A9126f42C78A15/logo.png differ diff --git a/blockchains/ethereum/assets/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD/info.json b/blockchains/ethereum/assets/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD/info.json new file mode 100644 index 00000000..a479cc11 --- /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/0xfb6bEcd99282d7CA14D0890F3e4F073D9Dd522e9/info.json b/blockchains/ethereum/assets/0xfb6bEcd99282d7CA14D0890F3e4F073D9Dd522e9/info.json new file mode 100644 index 00000000..f15bac03 --- /dev/null +++ b/blockchains/ethereum/assets/0xfb6bEcd99282d7CA14D0890F3e4F073D9Dd522e9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockchain of Africa", + "symbol": "BOA", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfb6bEcd99282d7CA14D0890F3e4F073D9Dd522e9", + "status": "abandoned", + "id": "0xfb6bEcd99282d7CA14D0890F3e4F073D9Dd522e9" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfb6bEcd99282d7CA14D0890F3e4F073D9Dd522e9/logo.png b/blockchains/ethereum/assets/0xfb6bEcd99282d7CA14D0890F3e4F073D9Dd522e9/logo.png new file mode 100644 index 00000000..062bdc11 Binary files /dev/null and b/blockchains/ethereum/assets/0xfb6bEcd99282d7CA14D0890F3e4F073D9Dd522e9/logo.png differ diff --git a/blockchains/ethereum/assets/0xfc05987bd2be489ACCF0f509E44B0145d68240f7/info.json b/blockchains/ethereum/assets/0xfc05987bd2be489ACCF0f509E44B0145d68240f7/info.json new file mode 100644 index 00000000..a84a2eed --- /dev/null +++ b/blockchains/ethereum/assets/0xfc05987bd2be489ACCF0f509E44B0145d68240f7/info.json @@ -0,0 +1,11 @@ +{ + "name": "ESSENTIA", + "symbol": "ESS", + "type": "ERC20", + "decimals": 18, + "description": "Essentia is a masternoded multi-chained set of protocols connecting centralized and decentralized resources to create new powerful interactions and experiences.", + "website": "https://essentia.one/", + "explorer": "https://etherscan.io/token/0xfc05987bd2be489ACCF0f509E44B0145d68240f7", + "status": "active", + "id": "0xfc05987bd2be489ACCF0f509E44B0145d68240f7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfc05987bd2be489ACCF0f509E44B0145d68240f7/logo.png b/blockchains/ethereum/assets/0xfc05987bd2be489ACCF0f509E44B0145d68240f7/logo.png new file mode 100644 index 00000000..2753f58c Binary files /dev/null and b/blockchains/ethereum/assets/0xfc05987bd2be489ACCF0f509E44B0145d68240f7/logo.png differ diff --git a/blockchains/ethereum/assets/0xfc260E3fAC3CdEf615053dBCDa09Aa184B0361b6/info.json b/blockchains/ethereum/assets/0xfc260E3fAC3CdEf615053dBCDa09Aa184B0361b6/info.json new file mode 100644 index 00000000..05d70dc3 --- /dev/null +++ b/blockchains/ethereum/assets/0xfc260E3fAC3CdEf615053dBCDa09Aa184B0361b6/info.json @@ -0,0 +1,11 @@ +{ + "name": "CRYPTO SPOON", + "symbol": "COSN", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfc260E3fAC3CdEf615053dBCDa09Aa184B0361b6", + "status": "abandoned", + "id": "0xfc260E3fAC3CdEf615053dBCDa09Aa184B0361b6" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfc260E3fAC3CdEf615053dBCDa09Aa184B0361b6/logo.png b/blockchains/ethereum/assets/0xfc260E3fAC3CdEf615053dBCDa09Aa184B0361b6/logo.png new file mode 100755 index 00000000..c65ca97f Binary files /dev/null and b/blockchains/ethereum/assets/0xfc260E3fAC3CdEf615053dBCDa09Aa184B0361b6/logo.png differ diff --git a/blockchains/ethereum/assets/0xfc61c3Fd8caD40c59086dFA86453d29A9362dCf4/info.json b/blockchains/ethereum/assets/0xfc61c3Fd8caD40c59086dFA86453d29A9362dCf4/info.json new file mode 100644 index 00000000..37a71e4e --- /dev/null +++ b/blockchains/ethereum/assets/0xfc61c3Fd8caD40c59086dFA86453d29A9362dCf4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Casey", + "symbol": "CASEY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfc61c3Fd8caD40c59086dFA86453d29A9362dCf4", + "status": "abandoned", + "id": "0xfc61c3Fd8caD40c59086dFA86453d29A9362dCf4" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfc61c3Fd8caD40c59086dFA86453d29A9362dCf4/logo.png b/blockchains/ethereum/assets/0xfc61c3Fd8caD40c59086dFA86453d29A9362dCf4/logo.png new file mode 100644 index 00000000..3c1fb91b Binary files /dev/null and b/blockchains/ethereum/assets/0xfc61c3Fd8caD40c59086dFA86453d29A9362dCf4/logo.png differ diff --git a/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/info.json b/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/info.json new file mode 100644 index 00000000..c9be50ca --- /dev/null +++ b/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/info.json @@ -0,0 +1,54 @@ +{ + "name": "Prom", + "type": "ERC20", + "symbol": "PROM", + "decimals": 18, + "website": "https://prom.io", + "description": "Prom is a gaming NFT marketplace & rental. Completely decentralized, confidential, and safe, it meets the needs of players, metaverse-enthusiasts, NFT owners, guilds, and games.", + "explorer": "https://etherscan.io/token/0xfc82bb4ba86045Af6F327323a46E80412b91b27d", + "status": "active", + "id": "0xfc82bb4ba86045Af6F327323a46E80412b91b27d", + "links": [ + { + "name": "x", + "url": "https://x.com/prom_io" + }, + { + "name": "telegram", + "url": "https://t.me/prom_io" + }, + { + "name": "telegram_news", + "url": "https://t.me/prom_ann" + }, + { + "name": "discord", + "url": "https://discord.com/invite/prom" + }, + { + "name": "whitepaper", + "url": "https://prom.io/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/prom/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/prom" + }, + { + "name": "medium", + "url": "https://prom-io.medium.com/" + }, + { + "name": "github", + "url": "https://github.com/prom-io" + } + ], + "tags": [ + "gamefi", + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/logo.png b/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/logo.png new file mode 100644 index 00000000..b8bd23e7 Binary files /dev/null and b/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/logo.png differ diff --git a/blockchains/ethereum/assets/0xfc8a7f70aF5B19fe96088DC91A7971340d26B414/info.json b/blockchains/ethereum/assets/0xfc8a7f70aF5B19fe96088DC91A7971340d26B414/info.json new file mode 100644 index 00000000..9a5da465 --- /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/0xfcA47962D45ADFdfd1Ab2D972315dB4ce7CCf094/info.json b/blockchains/ethereum/assets/0xfcA47962D45ADFdfd1Ab2D972315dB4ce7CCf094/info.json new file mode 100644 index 00000000..be1b1d4c --- /dev/null +++ b/blockchains/ethereum/assets/0xfcA47962D45ADFdfd1Ab2D972315dB4ce7CCf094/info.json @@ -0,0 +1,11 @@ +{ + "name": "iXledger", + "symbol": "IXT", + "type": "ERC20", + "decimals": 8, + "description": "InsureX is a marketplace for insurers, reinsurers and brokers to trade insurance products directly.", + "website": "https://www.ixledger.com", + "explorer": "https://etherscan.io/token/0xfcA47962D45ADFdfd1Ab2D972315dB4ce7CCf094", + "status": "active", + "id": "0xfcA47962D45ADFdfd1Ab2D972315dB4ce7CCf094" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfcA47962D45ADFdfd1Ab2D972315dB4ce7CCf094/logo.png b/blockchains/ethereum/assets/0xfcA47962D45ADFdfd1Ab2D972315dB4ce7CCf094/logo.png new file mode 100644 index 00000000..4b64fc24 Binary files /dev/null and b/blockchains/ethereum/assets/0xfcA47962D45ADFdfd1Ab2D972315dB4ce7CCf094/logo.png differ diff --git a/blockchains/ethereum/assets/0xfcAC7A7515e9A9d7619fA77A1fa738111f66727e/info.json b/blockchains/ethereum/assets/0xfcAC7A7515e9A9d7619fA77A1fa738111f66727e/info.json new file mode 100644 index 00000000..afe4dec8 --- /dev/null +++ b/blockchains/ethereum/assets/0xfcAC7A7515e9A9d7619fA77A1fa738111f66727e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pitch", + "symbol": "PCH", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfcAC7A7515e9A9d7619fA77A1fa738111f66727e", + "status": "abandoned", + "id": "0xfcAC7A7515e9A9d7619fA77A1fa738111f66727e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfcAC7A7515e9A9d7619fA77A1fa738111f66727e/logo.png b/blockchains/ethereum/assets/0xfcAC7A7515e9A9d7619fA77A1fa738111f66727e/logo.png new file mode 100644 index 00000000..73e33607 Binary files /dev/null and b/blockchains/ethereum/assets/0xfcAC7A7515e9A9d7619fA77A1fa738111f66727e/logo.png differ diff --git a/blockchains/ethereum/assets/0xfce738f60585D79Ddc980C77C9990F7F9B88300e/info.json b/blockchains/ethereum/assets/0xfce738f60585D79Ddc980C77C9990F7F9B88300e/info.json new file mode 100644 index 00000000..2f88e20b --- /dev/null +++ b/blockchains/ethereum/assets/0xfce738f60585D79Ddc980C77C9990F7F9B88300e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shreyas", + "symbol": "SHREY", + "type": "ERC20", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfce738f60585D79Ddc980C77C9990F7F9B88300e", + "status": "abandoned", + "id": "0xfce738f60585D79Ddc980C77C9990F7F9B88300e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfce738f60585D79Ddc980C77C9990F7F9B88300e/logo.png b/blockchains/ethereum/assets/0xfce738f60585D79Ddc980C77C9990F7F9B88300e/logo.png new file mode 100644 index 00000000..af828bbc Binary files /dev/null and b/blockchains/ethereum/assets/0xfce738f60585D79Ddc980C77C9990F7F9B88300e/logo.png differ diff --git a/blockchains/ethereum/assets/0xfcf3740dEe50E5c4AFa16730baFf0E84E2F34aC3/info.json b/blockchains/ethereum/assets/0xfcf3740dEe50E5c4AFa16730baFf0E84E2F34aC3/info.json new file mode 100644 index 00000000..8fd1bc07 --- /dev/null +++ b/blockchains/ethereum/assets/0xfcf3740dEe50E5c4AFa16730baFf0E84E2F34aC3/info.json @@ -0,0 +1,11 @@ +{ + "name": "TetherGo", + "symbol": "TGO", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfcf3740dEe50E5c4AFa16730baFf0E84E2F34aC3", + "status": "abandoned", + "id": "0xfcf3740dEe50E5c4AFa16730baFf0E84E2F34aC3" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfcf3740dEe50E5c4AFa16730baFf0E84E2F34aC3/logo.png b/blockchains/ethereum/assets/0xfcf3740dEe50E5c4AFa16730baFf0E84E2F34aC3/logo.png new file mode 100644 index 00000000..531e250f Binary files /dev/null and b/blockchains/ethereum/assets/0xfcf3740dEe50E5c4AFa16730baFf0E84E2F34aC3/logo.png differ diff --git a/blockchains/ethereum/assets/0xfd1e80508F243E64CE234eA88A5Fd2827c71D4b7/info.json b/blockchains/ethereum/assets/0xfd1e80508F243E64CE234eA88A5Fd2827c71D4b7/info.json new file mode 100644 index 00000000..fee8d708 --- /dev/null +++ b/blockchains/ethereum/assets/0xfd1e80508F243E64CE234eA88A5Fd2827c71D4b7/info.json @@ -0,0 +1,11 @@ +{ + "name": "MEDX TOKEN", + "symbol": "MEDX", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfd1e80508F243E64CE234eA88A5Fd2827c71D4b7", + "status": "abandoned", + "id": "0xfd1e80508F243E64CE234eA88A5Fd2827c71D4b7" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfd1e80508F243E64CE234eA88A5Fd2827c71D4b7/logo.png b/blockchains/ethereum/assets/0xfd1e80508F243E64CE234eA88A5Fd2827c71D4b7/logo.png new file mode 100755 index 00000000..3e403966 Binary files /dev/null and b/blockchains/ethereum/assets/0xfd1e80508F243E64CE234eA88A5Fd2827c71D4b7/logo.png differ diff --git a/blockchains/ethereum/assets/0xfd418e42783382E86Ae91e445406600Ba144D162/info.json b/blockchains/ethereum/assets/0xfd418e42783382E86Ae91e445406600Ba144D162/info.json new file mode 100644 index 00000000..ed31d962 --- /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 00000000..90a9548f Binary files /dev/null and b/blockchains/ethereum/assets/0xfd418e42783382E86Ae91e445406600Ba144D162/logo.png differ diff --git a/blockchains/ethereum/assets/0xfd784DA5c740c617AAFB80399fa81B86e1Da99a5/info.json b/blockchains/ethereum/assets/0xfd784DA5c740c617AAFB80399fa81B86e1Da99a5/info.json new file mode 100644 index 00000000..7109bbd4 --- /dev/null +++ b/blockchains/ethereum/assets/0xfd784DA5c740c617AAFB80399fa81B86e1Da99a5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Intelligent Transportation System", + "symbol": "ITS", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfd784DA5c740c617AAFB80399fa81B86e1Da99a5", + "status": "abandoned", + "id": "0xfd784DA5c740c617AAFB80399fa81B86e1Da99a5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfd784DA5c740c617AAFB80399fa81B86e1Da99a5/logo.png b/blockchains/ethereum/assets/0xfd784DA5c740c617AAFB80399fa81B86e1Da99a5/logo.png new file mode 100644 index 00000000..1b0e3695 Binary files /dev/null and b/blockchains/ethereum/assets/0xfd784DA5c740c617AAFB80399fa81B86e1Da99a5/logo.png differ diff --git a/blockchains/ethereum/assets/0xfd8971d5E8E1740cE2d0A84095fCA4De729d0c16/info.json b/blockchains/ethereum/assets/0xfd8971d5E8E1740cE2d0A84095fCA4De729d0c16/info.json new file mode 100644 index 00000000..ee04c97d --- /dev/null +++ b/blockchains/ethereum/assets/0xfd8971d5E8E1740cE2d0A84095fCA4De729d0c16/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zilla Token", + "symbol": "ZLA", + "type": "ERC20", + "decimals": 18, + "description": "Zilla (ZLA) is a cryptocurrency and operates on the Ethereum platform.", + "website": "https://zla.io", + "explorer": "https://etherscan.io/token/0xfd8971d5E8E1740cE2d0A84095fCA4De729d0c16", + "status": "active", + "id": "0xfd8971d5E8E1740cE2d0A84095fCA4De729d0c16" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfd8971d5E8E1740cE2d0A84095fCA4De729d0c16/logo.png b/blockchains/ethereum/assets/0xfd8971d5E8E1740cE2d0A84095fCA4De729d0c16/logo.png new file mode 100644 index 00000000..e2922738 Binary files /dev/null and b/blockchains/ethereum/assets/0xfd8971d5E8E1740cE2d0A84095fCA4De729d0c16/logo.png differ diff --git a/blockchains/ethereum/assets/0xfdFE8b7aB6CF1bD1E3d14538Ef40686296C42052/info.json b/blockchains/ethereum/assets/0xfdFE8b7aB6CF1bD1E3d14538Ef40686296C42052/info.json new file mode 100644 index 00000000..9c69bf60 --- /dev/null +++ b/blockchains/ethereum/assets/0xfdFE8b7aB6CF1bD1E3d14538Ef40686296C42052/info.json @@ -0,0 +1,11 @@ +{ + "name": "Skraps", + "symbol": "SKRP", + "type": "ERC20", + "decimals": 18, + "description": "A new platform where you can easily invest your spare change from everyday purchases into Bitcoin and other cryptocurrencies.", + "website": "https://skraps.io", + "explorer": "https://etherscan.io/token/0xfdFE8b7aB6CF1bD1E3d14538Ef40686296C42052", + "status": "active", + "id": "0xfdFE8b7aB6CF1bD1E3d14538Ef40686296C42052" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfdFE8b7aB6CF1bD1E3d14538Ef40686296C42052/logo.png b/blockchains/ethereum/assets/0xfdFE8b7aB6CF1bD1E3d14538Ef40686296C42052/logo.png new file mode 100644 index 00000000..cdf4a7d4 Binary files /dev/null and b/blockchains/ethereum/assets/0xfdFE8b7aB6CF1bD1E3d14538Ef40686296C42052/logo.png differ diff --git a/blockchains/ethereum/assets/0xfda1F5278b9aa923b5e581565d599810C78c71f5/info.json b/blockchains/ethereum/assets/0xfda1F5278b9aa923b5e581565d599810C78c71f5/info.json new file mode 100644 index 00000000..40238deb --- /dev/null +++ b/blockchains/ethereum/assets/0xfda1F5278b9aa923b5e581565d599810C78c71f5/info.json @@ -0,0 +1,11 @@ +{ + "name": "KINGS GLOBAL", + "symbol": "KSG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://kingsglobalhub.com", + "explorer": "https://etherscan.io/token/0xfda1F5278b9aa923b5e581565d599810C78c71f5", + "status": "abandoned", + "id": "0xfda1F5278b9aa923b5e581565d599810C78c71f5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfda1F5278b9aa923b5e581565d599810C78c71f5/logo.png b/blockchains/ethereum/assets/0xfda1F5278b9aa923b5e581565d599810C78c71f5/logo.png new file mode 100644 index 00000000..c3a456a7 Binary files /dev/null and b/blockchains/ethereum/assets/0xfda1F5278b9aa923b5e581565d599810C78c71f5/logo.png differ diff --git a/blockchains/ethereum/assets/0xfdd4E938Bb067280a52AC4e02AaF1502Cc882bA6/info.json b/blockchains/ethereum/assets/0xfdd4E938Bb067280a52AC4e02AaF1502Cc882bA6/info.json new file mode 100644 index 00000000..58f1e43a --- /dev/null +++ b/blockchains/ethereum/assets/0xfdd4E938Bb067280a52AC4e02AaF1502Cc882bA6/info.json @@ -0,0 +1,18 @@ +{ + "name": "BET", + "website": "https://earnbet.io", + "description": "EarnBet is a fully decentralized profit-sharing casino", + "explorer": "https://etherscan.io/token/0xfdd4E938Bb067280a52AC4e02AaF1502Cc882bA6", + "research": "https://research.binance.com/en/projects/bitcoin", + "type": "ERC20", + "symbol": "BET", + "decimals": 4, + "status": "active", + "id": "0xfdd4E938Bb067280a52AC4e02AaF1502Cc882bA6", + "links": [ + { + "name": "whitepaper", + "url": "https://earnbet.io/BET" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfdd4E938Bb067280a52AC4e02AaF1502Cc882bA6/logo.png b/blockchains/ethereum/assets/0xfdd4E938Bb067280a52AC4e02AaF1502Cc882bA6/logo.png new file mode 100644 index 00000000..bbf04065 Binary files /dev/null and b/blockchains/ethereum/assets/0xfdd4E938Bb067280a52AC4e02AaF1502Cc882bA6/logo.png differ diff --git a/blockchains/ethereum/assets/0xfdf63Ed4aBDdA6E771C7a396d81Fce60E134395f/info.json b/blockchains/ethereum/assets/0xfdf63Ed4aBDdA6E771C7a396d81Fce60E134395f/info.json new file mode 100644 index 00000000..6777559a --- /dev/null +++ b/blockchains/ethereum/assets/0xfdf63Ed4aBDdA6E771C7a396d81Fce60E134395f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Anarchy Token", + "symbol": "ANAR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfdf63Ed4aBDdA6E771C7a396d81Fce60E134395f", + "status": "abandoned", + "id": "0xfdf63Ed4aBDdA6E771C7a396d81Fce60E134395f" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfdf63Ed4aBDdA6E771C7a396d81Fce60E134395f/logo.png b/blockchains/ethereum/assets/0xfdf63Ed4aBDdA6E771C7a396d81Fce60E134395f/logo.png new file mode 100644 index 00000000..0f24fc52 Binary files /dev/null and b/blockchains/ethereum/assets/0xfdf63Ed4aBDdA6E771C7a396d81Fce60E134395f/logo.png differ diff --git a/blockchains/ethereum/assets/0xfe5D908c9Ad85f651185dAa6a4770726E2b27d09/info.json b/blockchains/ethereum/assets/0xfe5D908c9Ad85f651185dAa6a4770726E2b27d09/info.json new file mode 100644 index 00000000..40d6d8e8 --- /dev/null +++ b/blockchains/ethereum/assets/0xfe5D908c9Ad85f651185dAa6a4770726E2b27d09/info.json @@ -0,0 +1,11 @@ +{ + "name": "BETHER", + "symbol": "BHR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfe5D908c9Ad85f651185dAa6a4770726E2b27d09", + "status": "abandoned", + "id": "0xfe5D908c9Ad85f651185dAa6a4770726E2b27d09" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfe5D908c9Ad85f651185dAa6a4770726E2b27d09/logo.png b/blockchains/ethereum/assets/0xfe5D908c9Ad85f651185dAa6a4770726E2b27d09/logo.png new file mode 100644 index 00000000..f9dd2c87 Binary files /dev/null and b/blockchains/ethereum/assets/0xfe5D908c9Ad85f651185dAa6a4770726E2b27d09/logo.png differ diff --git a/blockchains/ethereum/assets/0xfe5F141Bf94fE84bC28deD0AB966c16B17490657/info.json b/blockchains/ethereum/assets/0xfe5F141Bf94fE84bC28deD0AB966c16B17490657/info.json new file mode 100644 index 00000000..a5b683d6 --- /dev/null +++ b/blockchains/ethereum/assets/0xfe5F141Bf94fE84bC28deD0AB966c16B17490657/info.json @@ -0,0 +1,11 @@ +{ + "name": "LibraToken", + "symbol": "LBA", + "type": "ERC20", + "decimals": 18, + "description": "Libra Credit is a decentralized lending ecosystem that facilitates open access to credit anywhere and anytime based on the Ethereum blockchain. Libra Credit is a global initiative with a mission to provide financial inclusion and lower the cost of financial services.", + "website": "https://www.mycred.io/", + "explorer": "https://etherscan.io/token/0xfe5F141Bf94fE84bC28deD0AB966c16B17490657", + "status": "active", + "id": "0xfe5F141Bf94fE84bC28deD0AB966c16B17490657" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfe5F141Bf94fE84bC28deD0AB966c16B17490657/logo.png b/blockchains/ethereum/assets/0xfe5F141Bf94fE84bC28deD0AB966c16B17490657/logo.png new file mode 100644 index 00000000..e1b84ceb Binary files /dev/null and b/blockchains/ethereum/assets/0xfe5F141Bf94fE84bC28deD0AB966c16B17490657/logo.png differ diff --git a/blockchains/ethereum/assets/0xfe7B915A0bAA0E79f85c5553266513F7C1c03Ed0/info.json b/blockchains/ethereum/assets/0xfe7B915A0bAA0E79f85c5553266513F7C1c03Ed0/info.json new file mode 100644 index 00000000..914fa1b4 --- /dev/null +++ b/blockchains/ethereum/assets/0xfe7B915A0bAA0E79f85c5553266513F7C1c03Ed0/info.json @@ -0,0 +1,11 @@ +{ + "name": "THUG LIFE Coin", + "symbol": "THUG", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "http://thugcoin.cash", + "explorer": "https://etherscan.io/token/0xfe7B915A0bAA0E79f85c5553266513F7C1c03Ed0", + "status": "abandoned", + "id": "0xfe7B915A0bAA0E79f85c5553266513F7C1c03Ed0" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfe7B915A0bAA0E79f85c5553266513F7C1c03Ed0/logo.png b/blockchains/ethereum/assets/0xfe7B915A0bAA0E79f85c5553266513F7C1c03Ed0/logo.png new file mode 100755 index 00000000..838066a3 Binary files /dev/null and b/blockchains/ethereum/assets/0xfe7B915A0bAA0E79f85c5553266513F7C1c03Ed0/logo.png differ diff --git a/blockchains/ethereum/assets/0xfe9A29aB92522D14Fc65880d817214261D8479AE/info.json b/blockchains/ethereum/assets/0xfe9A29aB92522D14Fc65880d817214261D8479AE/info.json new file mode 100644 index 00000000..ea97560e --- /dev/null +++ b/blockchains/ethereum/assets/0xfe9A29aB92522D14Fc65880d817214261D8479AE/info.json @@ -0,0 +1,11 @@ +{ + "name": "SnowSwap", + "symbol": "SNOW", + "type": "ERC20", + "decimals": 18, + "description": "AMM / DEX for yield-bearing LP Token swaps.", + "website": "https://snowswap.org", + "explorer": "https://etherscan.io/token/0xfe9a29ab92522d14fc65880d817214261d8479ae", + "status": "active", + "id": "0xfe9A29aB92522D14Fc65880d817214261D8479AE" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfe9A29aB92522D14Fc65880d817214261D8479AE/logo.png b/blockchains/ethereum/assets/0xfe9A29aB92522D14Fc65880d817214261D8479AE/logo.png new file mode 100644 index 00000000..fb8775e8 Binary files /dev/null and b/blockchains/ethereum/assets/0xfe9A29aB92522D14Fc65880d817214261D8479AE/logo.png differ diff --git a/blockchains/ethereum/assets/0xfeD347E43835Da08F8a00654fb4b38bB1C46E071/info.json b/blockchains/ethereum/assets/0xfeD347E43835Da08F8a00654fb4b38bB1C46E071/info.json new file mode 100644 index 00000000..53b2825a --- /dev/null +++ b/blockchains/ethereum/assets/0xfeD347E43835Da08F8a00654fb4b38bB1C46E071/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sunpay", + "symbol": "SUN", + "type": "ERC20", + "decimals": 10, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfeD347E43835Da08F8a00654fb4b38bB1C46E071", + "status": "abandoned", + "id": "0xfeD347E43835Da08F8a00654fb4b38bB1C46E071" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfeD347E43835Da08F8a00654fb4b38bB1C46E071/logo.png b/blockchains/ethereum/assets/0xfeD347E43835Da08F8a00654fb4b38bB1C46E071/logo.png new file mode 100644 index 00000000..bba3cdaa Binary files /dev/null and b/blockchains/ethereum/assets/0xfeD347E43835Da08F8a00654fb4b38bB1C46E071/logo.png differ diff --git a/blockchains/ethereum/assets/0xfeF4185594457050cC9c23980d301908FE057Bb1/info.json b/blockchains/ethereum/assets/0xfeF4185594457050cC9c23980d301908FE057Bb1/info.json new file mode 100644 index 00000000..77164b65 --- /dev/null +++ b/blockchains/ethereum/assets/0xfeF4185594457050cC9c23980d301908FE057Bb1/info.json @@ -0,0 +1,11 @@ +{ + "name": "VIDT Datalink", + "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://etherscan.io/token/0xfeF4185594457050cC9c23980d301908FE057Bb1", + "type": "ERC20", + "symbol": "VIDT", + "decimals": 18, + "status": "active", + "id": "0xfeF4185594457050cC9c23980d301908FE057Bb1" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfeF4185594457050cC9c23980d301908FE057Bb1/logo.png b/blockchains/ethereum/assets/0xfeF4185594457050cC9c23980d301908FE057Bb1/logo.png new file mode 100644 index 00000000..fe69d865 Binary files /dev/null and b/blockchains/ethereum/assets/0xfeF4185594457050cC9c23980d301908FE057Bb1/logo.png differ diff --git a/blockchains/ethereum/assets/0xfec0cF7fE078a500abf15F1284958F22049c2C7e/info.json b/blockchains/ethereum/assets/0xfec0cF7fE078a500abf15F1284958F22049c2C7e/info.json new file mode 100644 index 00000000..b037fee4 --- /dev/null +++ b/blockchains/ethereum/assets/0xfec0cF7fE078a500abf15F1284958F22049c2C7e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Maecenas ART Token", + "symbol": "ART", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.maecenas.co/", + "explorer": "https://etherscan.io/token/0xfec0cF7fE078a500abf15F1284958F22049c2C7e", + "status": "active", + "id": "0xfec0cF7fE078a500abf15F1284958F22049c2C7e" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfec0cF7fE078a500abf15F1284958F22049c2C7e/logo.png b/blockchains/ethereum/assets/0xfec0cF7fE078a500abf15F1284958F22049c2C7e/logo.png new file mode 100644 index 00000000..a9747198 Binary files /dev/null and b/blockchains/ethereum/assets/0xfec0cF7fE078a500abf15F1284958F22049c2C7e/logo.png differ diff --git a/blockchains/ethereum/assets/0xfeea6031805661daaCAabAfD99412C31D59E8D44/info.json b/blockchains/ethereum/assets/0xfeea6031805661daaCAabAfD99412C31D59E8D44/info.json new file mode 100644 index 00000000..d65c0ea9 --- /dev/null +++ b/blockchains/ethereum/assets/0xfeea6031805661daaCAabAfD99412C31D59E8D44/info.json @@ -0,0 +1,11 @@ +{ + "name": "GAY$", + "symbol": "GAY$", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xfeea6031805661daaCAabAfD99412C31D59E8D44", + "status": "abandoned", + "id": "0xfeea6031805661daaCAabAfD99412C31D59E8D44" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfeea6031805661daaCAabAfD99412C31D59E8D44/logo.png b/blockchains/ethereum/assets/0xfeea6031805661daaCAabAfD99412C31D59E8D44/logo.png new file mode 100755 index 00000000..4e8c0b95 Binary files /dev/null and b/blockchains/ethereum/assets/0xfeea6031805661daaCAabAfD99412C31D59E8D44/logo.png differ diff --git a/blockchains/ethereum/assets/0xfef3bEf71A5EB97E097039038776fD967ae5B106/info.json b/blockchains/ethereum/assets/0xfef3bEf71A5EB97E097039038776fD967ae5B106/info.json new file mode 100644 index 00000000..3dd16fda --- /dev/null +++ b/blockchains/ethereum/assets/0xfef3bEf71A5EB97E097039038776fD967ae5B106/info.json @@ -0,0 +1,11 @@ +{ + "name": "YFMoonshot", + "website": "https://yfmoonshot.com", + "description": "YFMoonshot is the governance token for YFMoonshot, 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/0xfef3bEf71A5EB97E097039038776fD967ae5B106", + "type": "ERC20", + "symbol": "YFMS", + "decimals": 18, + "status": "active", + "id": "0xfef3bEf71A5EB97E097039038776fD967ae5B106" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfef3bEf71A5EB97E097039038776fD967ae5B106/logo.png b/blockchains/ethereum/assets/0xfef3bEf71A5EB97E097039038776fD967ae5B106/logo.png new file mode 100644 index 00000000..fd71268f Binary files /dev/null and b/blockchains/ethereum/assets/0xfef3bEf71A5EB97E097039038776fD967ae5B106/logo.png differ diff --git a/blockchains/ethereum/assets/0xff2b3353c3015E9f1FBF95B9Bda23F58Aa7cE007/info.json b/blockchains/ethereum/assets/0xff2b3353c3015E9f1FBF95B9Bda23F58Aa7cE007/info.json new file mode 100644 index 00000000..384f4e1d --- /dev/null +++ b/blockchains/ethereum/assets/0xff2b3353c3015E9f1FBF95B9Bda23F58Aa7cE007/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitScreenerToken", + "symbol": "BITX", + "type": "ERC20", + "decimals": 18, + "description": "BITX works as the payment method for users to buy advanced data services and the incentive method for the value contributors of the BitScreener ecosystem.", + "website": "https://tokensale.bitscreener.com/", + "explorer": "https://etherscan.io/token/0xff2b3353c3015E9f1FBF95B9Bda23F58Aa7cE007", + "status": "active", + "id": "0xff2b3353c3015E9f1FBF95B9Bda23F58Aa7cE007" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xff2b3353c3015E9f1FBF95B9Bda23F58Aa7cE007/logo.png b/blockchains/ethereum/assets/0xff2b3353c3015E9f1FBF95B9Bda23F58Aa7cE007/logo.png new file mode 100755 index 00000000..9573bc99 Binary files /dev/null and b/blockchains/ethereum/assets/0xff2b3353c3015E9f1FBF95B9Bda23F58Aa7cE007/logo.png differ diff --git a/blockchains/ethereum/assets/0xff56Cc6b1E6dEd347aA0B7676C85AB0B3D08B0FA/info.json b/blockchains/ethereum/assets/0xff56Cc6b1E6dEd347aA0B7676C85AB0B3D08B0FA/info.json new file mode 100644 index 00000000..177794a1 --- /dev/null +++ b/blockchains/ethereum/assets/0xff56Cc6b1E6dEd347aA0B7676C85AB0B3D08B0FA/info.json @@ -0,0 +1,11 @@ +{ + "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://etherscan.io/token/0xff56Cc6b1E6dEd347aA0B7676C85AB0B3D08B0FA", + "type": "ERC20", + "symbol": "ORBS", + "decimals": 18, + "status": "active", + "id": "0xff56Cc6b1E6dEd347aA0B7676C85AB0B3D08B0FA" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xff56Cc6b1E6dEd347aA0B7676C85AB0B3D08B0FA/logo.png b/blockchains/ethereum/assets/0xff56Cc6b1E6dEd347aA0B7676C85AB0B3D08B0FA/logo.png new file mode 100755 index 00000000..dda2afc8 Binary files /dev/null and b/blockchains/ethereum/assets/0xff56Cc6b1E6dEd347aA0B7676C85AB0B3D08B0FA/logo.png differ diff --git a/blockchains/ethereum/assets/0xff8Be4B22CeDC440591dcB1E641EB2a0dd9d25A5/info.json b/blockchains/ethereum/assets/0xff8Be4B22CeDC440591dcB1E641EB2a0dd9d25A5/info.json new file mode 100644 index 00000000..c818e0ba --- /dev/null +++ b/blockchains/ethereum/assets/0xff8Be4B22CeDC440591dcB1E641EB2a0dd9d25A5/info.json @@ -0,0 +1,11 @@ +{ + "name": "URACToken", + "symbol": "URAC", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.uranus.io/", + "explorer": "https://etherscan.io/token/0xff8Be4B22CeDC440591dcB1E641EB2a0dd9d25A5", + "status": "active", + "id": "0xff8Be4B22CeDC440591dcB1E641EB2a0dd9d25A5" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xff8Be4B22CeDC440591dcB1E641EB2a0dd9d25A5/logo.png b/blockchains/ethereum/assets/0xff8Be4B22CeDC440591dcB1E641EB2a0dd9d25A5/logo.png new file mode 100644 index 00000000..91112252 Binary files /dev/null and b/blockchains/ethereum/assets/0xff8Be4B22CeDC440591dcB1E641EB2a0dd9d25A5/logo.png differ diff --git a/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/info.json b/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/info.json new file mode 100644 index 00000000..742fa336 --- /dev/null +++ b/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/info.json @@ -0,0 +1,60 @@ +{ + "name": "Renq Finance (RENQ)", + "type": "ERC20", + "symbol": "RENQ", + "decimals": 18, + "website": "https://renq.io", + "description": "Renq aims to connect all isolated blockchains and establish a cross-chain asset exchange network, providing all necessary underlying support for the DeFi ecosystem. Let every digital asset holder experience a truly safe, free and transparent DeFi service.", + "explorer": "https://etherscan.io/token/0xff8C479134A18918059493243943150776cF8CF2", + "status": "active", + "id": "0xff8C479134A18918059493243943150776cF8CF2", + "links": [ + { + "name": "x", + "url": "https://x.com/RenQ_Finance" + }, + { + "name": "telegram", + "url": "https://t.me/renqfinance" + }, + { + "name": "whitepaper", + "url": "https://renq.io/whitepaper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/renqfinance" + }, + { + "name": "medium", + "url": "https://medium.com/@renq" + }, + { + "name": "youtube", + "url": "https://youtube.com/renqfinance" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/renq" + }, + { + "name": "github", + "url": "https://github.com/renqfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/renq-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/renq-finance" + }, + { + "name": "source_code", + "url": "https://etherscan.io/token/0xff8C479134A18918059493243943150776cF8CF2#code" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/logo.png b/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/logo.png new file mode 100644 index 00000000..dae78516 Binary files /dev/null and b/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/logo.png differ diff --git a/blockchains/ethereum/assets/0xff9Bce8409df637CD3936bA77f8746bf99a4f80B/info.json b/blockchains/ethereum/assets/0xff9Bce8409df637CD3936bA77f8746bf99a4f80B/info.json new file mode 100644 index 00000000..6a03f8fe --- /dev/null +++ b/blockchains/ethereum/assets/0xff9Bce8409df637CD3936bA77f8746bf99a4f80B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Decentralized Ecosystem Coorperation", + "symbol": "DEC", + "type": "ERC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://etherscan.io/token/0xff9Bce8409df637CD3936bA77f8746bf99a4f80B", + "status": "abandoned", + "id": "0xff9Bce8409df637CD3936bA77f8746bf99a4f80B" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xff9Bce8409df637CD3936bA77f8746bf99a4f80B/logo.png b/blockchains/ethereum/assets/0xff9Bce8409df637CD3936bA77f8746bf99a4f80B/logo.png new file mode 100755 index 00000000..dee1565f Binary files /dev/null and b/blockchains/ethereum/assets/0xff9Bce8409df637CD3936bA77f8746bf99a4f80B/logo.png differ diff --git a/blockchains/ethereum/assets/0xffF3ada5A2555a2B59BfF4F44DFad90146CcE8CB/info.json b/blockchains/ethereum/assets/0xffF3ada5A2555a2B59BfF4F44DFad90146CcE8CB/info.json new file mode 100644 index 00000000..351dc6b1 --- /dev/null +++ b/blockchains/ethereum/assets/0xffF3ada5A2555a2B59BfF4F44DFad90146CcE8CB/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEXTER", + "symbol": "DXR", + "type": "ERC20", + "decimals": 18, + "description": "-", + "website": "https://www.dextercoin.io/", + "explorer": "https://etherscan.io/token/0xffF3ada5A2555a2B59BfF4F44DFad90146CcE8CB", + "status": "abandoned", + "id": "0xffF3ada5A2555a2B59BfF4F44DFad90146CcE8CB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xffF3ada5A2555a2B59BfF4F44DFad90146CcE8CB/logo.png b/blockchains/ethereum/assets/0xffF3ada5A2555a2B59BfF4F44DFad90146CcE8CB/logo.png new file mode 100644 index 00000000..f5db05e3 Binary files /dev/null and b/blockchains/ethereum/assets/0xffF3ada5A2555a2B59BfF4F44DFad90146CcE8CB/logo.png differ diff --git a/blockchains/ethereum/assets/0xfffffffFf15AbF397dA76f1dcc1A1604F45126DB/info.json b/blockchains/ethereum/assets/0xfffffffFf15AbF397dA76f1dcc1A1604F45126DB/info.json new file mode 100644 index 00000000..5520e0b4 --- /dev/null +++ b/blockchains/ethereum/assets/0xfffffffFf15AbF397dA76f1dcc1A1604F45126DB/info.json @@ -0,0 +1,11 @@ +{ + "name": "FalconSwap Token", + "website": "https://falconswap.com", + "description": "The Powerhouse for DeFi", + "explorer": "https://etherscan.io/token/0xfffffffFf15AbF397dA76f1dcc1A1604F45126DB", + "type": "ERC20", + "symbol": "FSW", + "decimals": 18, + "status": "active", + "id": "0xfffffffFf15AbF397dA76f1dcc1A1604F45126DB" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfffffffFf15AbF397dA76f1dcc1A1604F45126DB/logo.png b/blockchains/ethereum/assets/0xfffffffFf15AbF397dA76f1dcc1A1604F45126DB/logo.png new file mode 100644 index 00000000..c471570e Binary files /dev/null and b/blockchains/ethereum/assets/0xfffffffFf15AbF397dA76f1dcc1A1604F45126DB/logo.png differ diff --git a/blockchains/ethereum/chainlist.json b/blockchains/ethereum/chainlist.json new file mode 100644 index 00000000..80ea9fd7 --- /dev/null +++ b/blockchains/ethereum/chainlist.json @@ -0,0 +1,160 @@ +{ + "chains":[ + { + "chain": "1", + "coinId": "ethereum" + }, + { + "chain": "10", + "coinId": "optimism" + }, + { + "chain": "61", + "coinId": "classic" + }, + { + "chain": "42161", + "coinId": "arbitrum" + }, + { + "chain": "1313161554", + "coinId": "aurora" + }, + { + "chain": "288", + "coinId": "boba" + }, + { + "chain": "10001", + "coinId": "ethereumpow" + }, + { + "chain": "8217", + "coinId": "kaia" + }, + { + "chain": "42262", + "coinId": "oasis" + }, + { + "chain": "1284", + "coinId": "moonbeam" + }, + { + "chain": "321", + "coinId": "kucoin" + }, + { + "chain": "70", + "coinId": "hoo" + }, + { + "chain": "250", + "coinId": "fantom" + }, + { + "chain": "137", + "coinId": "polygon" + }, + { + "chain": "128", + "coinId": "heco" + }, + { + "chain": "1285", + "coinId": "moonriver" + }, + { + "chain": "43114", + "coinId": "avalanche" + }, + { + "chain": "42220", + "coinId": "celo" + }, + { + "chain": "1666600000", + "coinId": "harmony" + }, + { + "chain": "1088", + "coinId": "metis" + }, + { + "chain": "2222", + "coinId": "kavaevm" + }, + { + "chain": "66", + "coinId": "okx" + }, + { + "chain": "1101", + "coinId": "polygonzkevm" + }, + { + "chain": "324", + "coinId": "zksync" + }, + { + "chain": "5", + "coinId": "goerlitestnet" + }, + { + "chain": "421613", + "coinId": "arbitrumgoerli" + }, + { + "chain": "80001", + "coinId": "polygonmumbai" + }, + { + "chain": "1287", + "coinId": "moonbasealpha" + }, + { + "chain": "4002", + "coinId": "tftm" + }, + { + "chain": "420", + "coinId": "optimismgoerli" + }, + { + "chain": "11155111", + "coinId": "sepolia" + }, + { + "chain": "97", + "coinId": "bnbt" + }, + { + "chain": "43113", + "coinId": "avalanchecfuji" + }, + { + "chain": "5601", + "coinId": "gbnb" + }, + { + "chain": "5611", + "coinId": "opbnb" + }, + { + "chain": "32659", + "coinId": "fusion" + }, + { + "chain": "7700", + "coinId": "canto" + }, + { + "chain": "295", + "coinId": "hedera" + }, + { + "chain": "30", + "coinId": "rootstock" + } + ] +} diff --git a/blockchains/ethereum/info/info.json b/blockchains/ethereum/info/info.json new file mode 100644 index 00000000..f64738f0 --- /dev/null +++ b/blockchains/ethereum/info/info.json @@ -0,0 +1,33 @@ +{ + "name": "Ethereum", + "website": "https://ethereum.org/", + "description": "Open source platform to write and distribute decentralized applications.", + "explorer": "https://etherscan.io/", + "research": "https://research.binance.com/en/projects/ethereum", + "symbol": "ETH", + "type": "coin", + "decimals": 18, + "status": "active", + "tags": [ + "dapp", + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ethereum" + }, + { + "name": "x", + "url": "https://x.com/ethereum" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ethereum" + }, + { + "name": "whitepaper", + "url": "https://github.com/ethereum/wiki/wiki/White-Paper" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/info/logo.png b/blockchains/ethereum/info/logo.png new file mode 100644 index 00000000..bf957d38 Binary files /dev/null and b/blockchains/ethereum/info/logo.png differ diff --git a/blockchains/ethereum/info/square_logo.png b/blockchains/ethereum/info/square_logo.png new file mode 100644 index 00000000..e97cd99b 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 new file mode 100644 index 00000000..f7ea909f --- /dev/null +++ b/blockchains/ethereum/tokenlist-extended.json @@ -0,0 +1,30 @@ +{ + "name": "Trust Wallet: Ethereum Extended List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-01-27T14:33:26.183301", + "tokens": [ + { + "asset": "c60_t0x8E870D67F660D95d5be530380D0eC0bd388289E1", + "type": "ERC20", + "address": "0x8E870D67F660D95d5be530380D0eC0bd388289E1", + "name": "Pax Dollar", + "symbol": "USDP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8E870D67F660D95d5be530380D0eC0bd388289E1/logo.png" + }, + { + "asset": "c60_t0xa47c8bf37f92aBed4A126BDA807A7b7498661acD", + "type": "ERC20", + "address": "0xa47c8bf37f92aBed4A126BDA807A7b7498661acD", + "name": "UST Token", + "symbol": "UST", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/logo.png" + } + ], + "version": { + "major": 6, + "minor": 0, + "patch": 0 + } +} \ No newline at end of file diff --git a/blockchains/ethereum/tokenlist.json b/blockchains/ethereum/tokenlist.json new file mode 100644 index 00000000..ebfa5840 --- /dev/null +++ b/blockchains/ethereum/tokenlist.json @@ -0,0 +1,3428 @@ +{ + "name": "Trust Wallet: Ethereum", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2021-11-09T22:30:24.689Z", + "tokens": [ + { + "chainId": 1, + "asset": "c60_t0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "type": "ERC20", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "name": "WETH", + "symbol": "WETH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2/logo.png", + "pairs": [ + { + "base": "c60_t0x0000000000085d4780B73119b644AE5ecd22b376" + }, + { + "base": "c60_t0x0000000000095413afC295d19EDeb1Ad7B71c952" + }, + { + "base": "c60_t0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7" + }, + { + "base": "c60_t0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1" + }, + { + "base": "c60_t0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a" + }, + { + "base": "c60_t0x03ab458634910AaD20eF5f1C8ee96F1D6ac54919" + }, + { + "base": "c60_t0x09a3EcAFa817268f77BE1283176B946C4ff2E608" + }, + { + "base": "c60_t0x0Ae055097C6d159879521C384F1D2123D1f195e6" + }, + { + "base": "c60_t0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e" + }, + { + "base": "c60_t0x0c7D5ae016f806603CB1782bEa29AC69471CAb9c" + }, + { + "base": "c60_t0x0CDF9acd87E940837ff21BB40c9fd55F68bba059" + }, + { + "base": "c60_t0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e" + }, + { + "base": "c60_t0x0D8775F648430679A709E98d2b0Cb6250d2887EF" + }, + { + "base": "c60_t0x0f51bb10119727a7e5eA3538074fb341F56B09Ad" + }, + { + "base": "c60_t0x0F5D2fB29fb7d3CFeE444a200298f468908cC942" + }, + { + "base": "c60_t0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704" + }, + { + "base": "c60_t0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38" + }, + { + "base": "c60_t0x0fF6ffcFDa92c53F615a4A75D982f399C989366b" + }, + { + "base": "c60_t0x10Be9a8dAe441d276a5027936c3aADEd2d82bC15" + }, + { + "base": "c60_t0x111111111117dC0aa78b770fA6A738034120C302" + }, + { + "base": "c60_t0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a" + }, + { + "base": "c60_t0x1337DEF18C680aF1f9f45cBcab6309562975b1dD" + }, + { + "base": "c60_t0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b" + }, + { + "base": "c60_t0x15874d65e649880c2614e7a480cb7c9A55787FF6" + }, + { + "base": "c60_t0x1614F18Fc94f47967A3Fbe5FfcD46d4e7Da3D787" + }, + { + "base": "c60_t0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8" + }, + { + "base": "c60_t0x18aAA7115705e8be94bfFEBDE57Af9BFc265B998" + }, + { + "base": "c60_t0x1b40183EFB4Dd766f11bDa7A7c3AD8982e998421" + }, + { + "base": "c60_t0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC" + }, + { + "base": "c60_t0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44" + }, + { + "base": "c60_t0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984" + }, + { + "base": "c60_t0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" + }, + { + "base": "c60_t0x226f7b842E0F0120b7E194D05432b3fd14773a9D" + }, + { + "base": "c60_t0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa" + }, + { + "base": "c60_t0x26c8AFBBFE1EBaca03C2bB082E69D0476Bffe099" + }, + { + "base": "c60_t0x27C70Cd1946795B66be9d954418546998b546634" + }, + { + "base": "c60_t0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39" + }, + { + "base": "c60_t0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20" + }, + { + "base": "c60_t0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f" + }, + { + "base": "c60_t0x3845badAde8e6dFF049820680d1F14bD3903a5d0" + }, + { + "base": "c60_t0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1" + }, + { + "base": "c60_t0x408e41876cCCDC0F92210600ef50372656052a38" + }, + { + "base": "c60_t0x40FD72257597aA14C7231A7B1aaa29Fce868F677" + }, + { + "base": "c60_t0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5" + }, + { + "base": "c60_t0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E" + }, + { + "base": "c60_t0x45804880De22913dAFE09f4980848ECE6EcbAf78" + }, + { + "base": "c60_t0x4691937a7508860F876c9c0a2a617E7d9E945D4B" + }, + { + "base": "c60_t0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42" + }, + { + "base": "c60_t0x514910771AF9Ca656af840dff83E8264EcF986CA" + }, + { + "base": "c60_t0x5218E472cFCFE0b64A064F055B43b4cdC9EfD3A6" + }, + { + "base": "c60_t0x5228a22e72ccC52d415EcFd199F99D0665E7733b" + }, + { + "base": "c60_t0x584bC13c7D411c00c01A62e8019472dE68768430" + }, + { + "base": "c60_t0x5BEfBB272290dD5b8521D4a938f6c4757742c430" + }, + { + "base": "c60_t0x607F4C5BB672230e8672085532f7e901544a7375" + }, + { + "base": "c60_t0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7" + }, + { + "base": "c60_t0x6243d8CEA23066d098a15582d81a598b4e8391F4" + }, + { + "base": "c60_t0x63b4f3e3fa4e438698CE330e365E831F7cCD1eF4" + }, + { + "base": "c60_t0x66a0f676479Cee1d7373f3DC2e2952778BfF5bd6" + }, + { + "base": "c60_t0x67c597624B17b16fb77959217360B7cD18284253" + }, + { + "base": "c60_t0x6810e776880C02933D47DB1b9fc05908e5386b96" + }, + { + "base": "c60_t0x6B175474E89094C44Da98b954EedeAC495271d0F" + }, + { + "base": "c60_t0x6B3595068778DD592e39A122f4f5a5cF09C90fE2" + }, + { + "base": "c60_t0x70401dFD142A16dC7031c56E862Fc88Cb9537Ce0" + }, + { + "base": "c60_t0x71F85B2E46976bD21302B64329868fd15eb0D127" + }, + { + "base": "c60_t0x725C263e32c72dDC3A19bEa12C5a0479a81eE688" + }, + { + "base": "c60_t0x72e364F2ABdC788b7E918bc238B21f109Cd634D7" + }, + { + "base": "c60_t0x761D38e5ddf6ccf6Cf7c55759d5210750B5D60F3" + }, + { + "base": "c60_t0x7659CE147D0e714454073a5dd7003544234b6Aa0" + }, + { + "base": "c60_t0x77777FeDdddFfC19Ff86DB637967013e6C6A116C" + }, + { + "base": "c60_t0x7a2Bc711E19ba6aff6cE8246C546E8c4B4944DFD" + }, + { + "base": "c60_t0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0" + }, + { + "base": "c60_t0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7" + }, + { + "base": "c60_t0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB" + }, + { + "base": "c60_t0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9" + }, + { + "base": "c60_t0x7FF4169a6B5122b664c51c95727d87750eC07c84" + }, + { + "base": "c60_t0x8207c1FfC5B6804F6024322CcF34F29c3541Ae26" + }, + { + "base": "c60_t0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa" + }, + { + "base": "c60_t0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e" + }, + { + "base": "c60_t0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419" + }, + { + "base": "c60_t0x853d955aCEf822Db058eb8505911ED77F175b99e" + }, + { + "base": "c60_t0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC" + }, + { + "base": "c60_t0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB" + }, + { + "base": "c60_t0x8a40c222996f9F3431f63Bf80244C36822060f12" + }, + { + "base": "c60_t0x8a854288a5976036A725879164Ca3e91d30c6A1B" + }, + { + "base": "c60_t0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9" + }, + { + "base": "c60_t0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa" + }, + { + "base": "c60_t0x8f8221aFbB33998d8584A2B05749bA73c37a938a" + }, + { + "base": "c60_t0x9355372396e3F6daF13359B7b607a3374cc638e0" + }, + { + "base": "c60_t0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d" + }, + { + "base": "c60_t0x954b890704693af242613edEf1B603825afcD708" + }, + { + "base": "c60_t0x956F47F50A910163D8BF957Cf5846D573E7f87CA" + }, + { + "base": "c60_t0x95a4492F028aa1fd432Ea71146b433E7B4446611" + }, + { + "base": "c60_t0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE" + }, + { + "base": "c60_t0x967da4048cD07aB37855c090aAF366e4ce1b9F48" + }, + { + "base": "c60_t0x990f341946A3fdB507aE7e52d17851B87168017c" + }, + { + "base": "c60_t0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7" + }, + { + "base": "c60_t0x9BE89D2a4cd102D8Fecc6BF9dA793be995C22541" + }, + { + "base": "c60_t0x9EA3b5b4EC044b70375236A281986106457b20EF" + }, + { + "base": "c60_t0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E" + }, + { + "base": "c60_t0x9f7229aF0c4b9740e207Ea283b9094983f78ba04" + }, + { + "base": "c60_t0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2" + }, + { + "base": "c60_t0x9F9c8ec3534c3cE16F928381372BfbFBFb9F4D24" + }, + { + "base": "c60_t0xa0246c9032bC3A600820415aE600c6388619A14D" + }, + { + "base": "c60_t0xa0afAA285Ce85974c3C881256cB7F225e3A1178a" + }, + { + "base": "c60_t0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" + }, + { + "base": "c60_t0xa117000000f279D81A1D3cc75430fAA017FA5A2e" + }, + { + "base": "c60_t0xa393473d64d2F9F026B60b6Df7859A689715d092" + }, + { + "base": "c60_t0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3" + }, + { + "base": "c60_t0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca" + }, + { + "base": "c60_t0xAa6E8127831c9DE45ae56bB1b0d4D4Da6e5665BD" + }, + { + "base": "c60_t0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d" + }, + { + "base": "c60_t0xAd4f86a25bbc20FfB751f2FAC312A0B4d8F88c64" + }, + { + "base": "c60_t0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0" + }, + { + "base": "c60_t0xaE697F994Fc5eBC000F8e22EbFfeE04612f98A0d" + }, + { + "base": "c60_t0x41A3Dba3D677E573636BA691a70ff2D606c29666" + }, + { + "base": "c60_t0xaf9f549774ecEDbD0966C52f250aCc548D3F36E5" + }, + { + "base": "c60_t0xB26631c6dda06aD89B93C71400D25692de89c068" + }, + { + "base": "c60_t0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206" + }, + { + "base": "c60_t0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32" + }, + { + "base": "c60_t0xb753428af26E81097e7fD17f40c88aaA3E04902c" + }, + { + "base": "c60_t0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF" + }, + { + "base": "c60_t0xba100000625a3754423978a60c9317c58a424e3D" + }, + { + "base": "c60_t0xBa21Ef4c9f433Ede00badEFcC2754B8E74bd538A" + }, + { + "base": "c60_t0xBBc2AE13b23d715c30720F079fcd9B4a74093505" + }, + { + "base": "c60_t0xbC396689893D065F41bc2C6EcbeE5e0085233447" + }, + { + "base": "c60_t0xc00e94Cb662C3520282E6f5717214004A7f26888" + }, + { + "base": "c60_t0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F" + }, + { + "base": "c60_t0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F" + }, + { + "base": "c60_t0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72" + }, + { + "base": "c60_t0xC4C2614E694cF534D407Ee49F8E44D125E4681c4" + }, + { + "base": "c60_t0xC52C326331E9Ce41F04484d3B5E5648158028804" + }, + { + "base": "c60_t0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E" + }, + { + "base": "c60_t0xCbfef8fdd706cde6F208460f2Bf39Aa9c785F05D" + }, + { + "base": "c60_t0xCC4304A31d09258b0029eA7FE63d032f52e44EFe" + }, + { + "base": "c60_t0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de" + }, + { + "base": "c60_t0xd26114cd6EE289AccF82350c8d8487fedB8A0C07" + }, + { + "base": "c60_t0xd379700999F4805Ce80aa32DB46A94dF64561108" + }, + { + "base": "c60_t0xD46bA6D942050d489DBd938a2C909A5d5039A161" + }, + { + "base": "c60_t0xD533a949740bb3306d119CC777fa900bA034cd52" + }, + { + "base": "c60_t0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "base": "c60_t0xDDB3422497E61e13543BeA06989C0789117555c5" + }, + { + "base": "c60_t0xE41d2489571d322189246DaFA5ebDe1F4699F498" + }, + { + "base": "c60_t0xE452E6Ea2dDeB012e20dB73bf5d3863A3Ac8d77a" + }, + { + "base": "c60_t0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55" + }, + { + "base": "c60_t0xE61fDAF474Fac07063f2234Fb9e60C1163Cfa850" + }, + { + "base": "c60_t0xE95A203B1a91a908F9B9CE46459d101078c2c3cb" + }, + { + "base": "c60_t0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c" + }, + { + "base": "c60_t0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D" + }, + { + "base": "c60_t0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107" + }, + { + "base": "c60_t0xEec2bE5c91ae7f8a338e1e5f3b5DE49d07AfdC81" + }, + { + "base": "c60_t0xEEF9f339514298C6A857EfCfC1A762aF84438dEE" + }, + { + "base": "c60_t0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b" + }, + { + "base": "c60_t0xf418588522d5dd018b425E472991E52EBBeEEEEE" + }, + { + "base": "c60_t0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577" + }, + { + "base": "c60_t0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c" + }, + { + "base": "c60_t0xF938424F7210f31dF2Aee3011291b658f872e91e" + }, + { + "base": "c60_t0xF94b5C5651c888d928439aB6514B93944eEE6F48" + }, + { + "base": "c60_t0xfF20817765cB7f73d4bde2e66e067E58D11095C2" + }, + { + "base": "c60_t0xf4d2888d29D722226FafA5d9B24F9164c092421E" + }, + { + "base": "c60_t0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96" + }, + { + "base": "c60_t0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A" + }, + { + "base": "c60_t0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb" + } + ] + }, + { + "chainId": 1, + "asset": "c60_t0x0000000000085d4780B73119b644AE5ecd22b376", + "type": "ERC20", + "address": "0x0000000000085d4780B73119b644AE5ecd22b376", + "name": "TrueUSD", + "symbol": "TUSD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x0000000000095413afC295d19EDeb1Ad7B71c952", + "type": "ERC20", + "address": "0x0000000000095413afC295d19EDeb1Ad7B71c952", + "name": "Tokenlon", + "symbol": "LON", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0000000000095413afC295d19EDeb1Ad7B71c952/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7", + "type": "ERC20", + "address": "0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7", + "name": "SKALE Network", + "symbol": "SKL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1", + "type": "ERC20", + "address": "0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1", + "name": "UniLend", + "symbol": "UFT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a", + "type": "ERC20", + "address": "0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a", + "name": "Orion Protocol", + "symbol": "ORN", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x03ab458634910AaD20eF5f1C8ee96F1D6ac54919", + "type": "ERC20", + "address": "0x03ab458634910AaD20eF5f1C8ee96F1D6ac54919", + "name": "Rai Reflex Index", + "symbol": "RAI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x03ab458634910AaD20eF5f1C8ee96F1D6ac54919/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x0488401c3F535193Fa8Df029d9fFe615A06E74E6", + "type": "ERC20", + "address": "0x0488401c3F535193Fa8Df029d9fFe615A06E74E6", + "name": "SparkPoint", + "symbol": "SRK", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0488401c3F535193Fa8Df029d9fFe615A06E74E6/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828", + "type": "ERC20", + "address": "0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828", + "name": "UMA", + "symbol": "UMA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x06A01a4d579479Dd5D884EBf61A31727A3d8D442", + "type": "ERC20", + "address": "0x06A01a4d579479Dd5D884EBf61A31727A3d8D442", + "name": "SmartKey", + "symbol": "Skey", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x06A01a4d579479Dd5D884EBf61A31727A3d8D442/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x07150e919B4De5fD6a63DE1F9384828396f25fDC", + "type": "ERC20", + "address": "0x07150e919B4De5fD6a63DE1F9384828396f25fDC", + "name": "Base Protocol", + "symbol": "BASE", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x09a3EcAFa817268f77BE1283176B946C4ff2E608", + "type": "ERC20", + "address": "0x09a3EcAFa817268f77BE1283176B946C4ff2E608", + "name": "Mirror Protocol", + "symbol": "MIR", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x09a3EcAFa817268f77BE1283176B946C4ff2E608/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x09e64c2B61a5f1690Ee6fbeD9baf5D6990F8dFd0", + "type": "ERC20", + "address": "0x09e64c2B61a5f1690Ee6fbeD9baf5D6990F8dFd0", + "name": "Growth DeFi", + "symbol": "GRO", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x09e64c2B61a5f1690Ee6fbeD9baf5D6990F8dFd0/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x0a50C93c762fDD6E56D86215C24AaAD43aB629aa", + "type": "ERC20", + "address": "0x0a50C93c762fDD6E56D86215C24AaAD43aB629aa", + "name": "LGO Token", + "symbol": "LGO", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0a50C93c762fDD6E56D86215C24AaAD43aB629aa/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x0Ae055097C6d159879521C384F1D2123D1f195e6", + "type": "ERC20", + "address": "0x0Ae055097C6d159879521C384F1D2123D1f195e6", + "name": "xDai", + "symbol": "STAKE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0Ae055097C6d159879521C384F1D2123D1f195e6/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e", + "type": "ERC20", + "address": "0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e", + "name": "yearn.finance", + "symbol": "YFI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x0c7D5ae016f806603CB1782bEa29AC69471CAb9c", + "type": "ERC20", + "address": "0x0c7D5ae016f806603CB1782bEa29AC69471CAb9c", + "name": "Bifrost", + "symbol": "BFC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0c7D5ae016f806603CB1782bEa29AC69471CAb9c/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x0CDF9acd87E940837ff21BB40c9fd55F68bba059", + "type": "ERC20", + "address": "0x0CDF9acd87E940837ff21BB40c9fd55F68bba059", + "name": "Public Mint", + "symbol": "MINT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0CDF9acd87E940837ff21BB40c9fd55F68bba059/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e", + "type": "ERC20", + "address": "0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e", + "name": "PoolTogether", + "symbol": "POOL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x0D8775F648430679A709E98d2b0Cb6250d2887EF", + "type": "ERC20", + "address": "0x0D8775F648430679A709E98d2b0Cb6250d2887EF", + "name": "Basic Attention Token", + "symbol": "BAT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0D8775F648430679A709E98d2b0Cb6250d2887EF/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x0f51bb10119727a7e5eA3538074fb341F56B09Ad", + "type": "ERC20", + "address": "0x0f51bb10119727a7e5eA3538074fb341F56B09Ad", + "name": "DAO Maker", + "symbol": "DAO", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0f51bb10119727a7e5eA3538074fb341F56B09Ad/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x0F5D2fB29fb7d3CFeE444a200298f468908cC942", + "type": "ERC20", + "address": "0x0F5D2fB29fb7d3CFeE444a200298f468908cC942", + "name": "Decentraland", + "symbol": "MANA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0F5D2fB29fb7d3CFeE444a200298f468908cC942/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704", + "type": "ERC20", + "address": "0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704", + "name": "Blockzero Labs", + "symbol": "XIO", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", + "type": "ERC20", + "address": "0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", + "name": "Pundi X", + "symbol": "PUNDIX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x0fF6ffcFDa92c53F615a4A75D982f399C989366b", + "type": "ERC20", + "address": "0x0fF6ffcFDa92c53F615a4A75D982f399C989366b", + "name": "Unilayer", + "symbol": "LAYER", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0fF6ffcFDa92c53F615a4A75D982f399C989366b/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x10Be9a8dAe441d276a5027936c3aADEd2d82bC15", + "type": "ERC20", + "address": "0x10Be9a8dAe441d276a5027936c3aADEd2d82bC15", + "name": "UniMex Network", + "symbol": "UMX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x10Be9a8dAe441d276a5027936c3aADEd2d82bC15/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x111111111117dC0aa78b770fA6A738034120C302", + "type": "ERC20", + "address": "0x111111111117dC0aa78b770fA6A738034120C302", + "name": "1INCH Token", + "symbol": "1INCH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a", + "type": "ERC20", + "address": "0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a", + "name": "ARMOR", + "symbol": "ARMOR", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x1337DEF18C680aF1f9f45cBcab6309562975b1dD", + "type": "ERC20", + "address": "0x1337DEF18C680aF1f9f45cBcab6309562975b1dD", + "name": "Armor NXM", + "symbol": "arNXM", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1337DEF18C680aF1f9f45cBcab6309562975b1dD/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b", + "type": "ERC20", + "address": "0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b", + "name": "DeFi Pulse Index", + "symbol": "DPI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x152687Bc4A7FCC89049cF119F9ac3e5aCF2eE7ef", + "type": "ERC20", + "address": "0x152687Bc4A7FCC89049cF119F9ac3e5aCF2eE7ef", + "name": "DeltaHub Community", + "symbol": "DHC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x152687Bc4A7FCC89049cF119F9ac3e5aCF2eE7ef/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x15874d65e649880c2614e7a480cb7c9A55787FF6", + "type": "ERC20", + "address": "0x15874d65e649880c2614e7a480cb7c9A55787FF6", + "name": "EthereumMax", + "symbol": "eMax", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x15874d65e649880c2614e7a480cb7c9A55787FF6/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x1614F18Fc94f47967A3Fbe5FfcD46d4e7Da3D787", + "type": "ERC20", + "address": "0x1614F18Fc94f47967A3Fbe5FfcD46d4e7Da3D787", + "name": "PAID Network", + "symbol": "PAID", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1614F18Fc94f47967A3Fbe5FfcD46d4e7Da3D787/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8", + "type": "ERC20", + "address": "0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8", + "name": "KIRA Network", + "symbol": "KEX", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x1796ae0b0fa4862485106a0de9b654eFE301D0b2", + "type": "ERC20", + "address": "0x1796ae0b0fa4862485106a0de9b654eFE301D0b2", + "name": "Polychain Monsters", + "symbol": "PMON", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x17aC188e09A7890a1844E5E65471fE8b0CcFadF3", + "type": "ERC20", + "address": "0x17aC188e09A7890a1844E5E65471fE8b0CcFadF3", + "name": "Cryptocurrency Top 10 Tokens Index", + "symbol": "CC10", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x17aC188e09A7890a1844E5E65471fE8b0CcFadF3/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x18aAA7115705e8be94bfFEBDE57Af9BFc265B998", + "type": "ERC20", + "address": "0x18aAA7115705e8be94bfFEBDE57Af9BFc265B998", + "name": "Audius", + "symbol": "AUDIO", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x18aAA7115705e8be94bfFEBDE57Af9BFc265B998/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x1985365e9f78359a9B6AD760e32412f4a445E862", + "type": "ERC20", + "address": "0x1985365e9f78359a9B6AD760e32412f4a445E862", + "name": "Augur", + "symbol": "REP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1985365e9f78359a9B6AD760e32412f4a445E862/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x1b40183EFB4Dd766f11bDa7A7c3AD8982e998421", + "type": "ERC20", + "address": "0x1b40183EFB4Dd766f11bDa7A7c3AD8982e998421", + "name": "Vesper", + "symbol": "VSP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1b40183EFB4Dd766f11bDa7A7c3AD8982e998421/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F", + "type": "ERC20", + "address": "0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F", + "name": "Antimatter.Finance Governance Token", + "symbol": "MATTER", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x1C9922314ED1415c95b9FD453c3818fd41867d0B", + "type": "ERC20", + "address": "0x1C9922314ED1415c95b9FD453c3818fd41867d0B", + "name": "TOWER", + "symbol": "TOWER", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1C9922314ED1415c95b9FD453c3818fd41867d0B/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC", + "type": "ERC20", + "address": "0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC", + "name": "Non-Fungible Yearn", + "symbol": "NFY", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44", + "type": "ERC20", + "address": "0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44", + "name": "Keep3rV1", + "symbol": "KP3R", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x1dD80016e3d4ae146Ee2EBB484e8edD92dacC4ce", + "type": "ERC20", + "address": "0x1dD80016e3d4ae146Ee2EBB484e8edD92dacC4ce", + "name": "Lead Wallet", + "symbol": "LEAD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1dD80016e3d4ae146Ee2EBB484e8edD92dacC4ce/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", + "type": "ERC20", + "address": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", + "name": "Uniswap", + "symbol": "UNI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43", + "type": "ERC20", + "address": "0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43", + "name": "ChainGuardians Governance Token", + "symbol": "CGG", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697", + "type": "ERC20", + "address": "0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697", + "name": "OVR", + "symbol": "OVR", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x221657776846890989a759BA2973e427DfF5C9bB", + "type": "ERC20", + "address": "0x221657776846890989a759BA2973e427DfF5C9bB", + "name": "Reputation", + "symbol": "REPv2", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x221657776846890989a759BA2973e427DfF5C9bB/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "type": "ERC20", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "name": "Wrapped Bitcoin", + "symbol": "WBTC", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x226f7b842E0F0120b7E194D05432b3fd14773a9D", + "type": "ERC20", + "address": "0x226f7b842E0F0120b7E194D05432b3fd14773a9D", + "name": "UNION Protocol Governance Token", + "symbol": "UNN", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x226f7b842E0F0120b7E194D05432b3fd14773a9D/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x23B608675a2B2fB1890d3ABBd85c5775c51691d5", + "type": "ERC20", + "address": "0x23B608675a2B2fB1890d3ABBd85c5775c51691d5", + "name": "Unisocks Edition 0", + "symbol": "SOCKS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x23B608675a2B2fB1890d3ABBd85c5775c51691d5/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa", + "type": "ERC20", + "address": "0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa", + "name": "Bidao", + "symbol": "BID", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x26c8AFBBFE1EBaca03C2bB082E69D0476Bffe099", + "type": "ERC20", + "address": "0x26c8AFBBFE1EBaca03C2bB082E69D0476Bffe099", + "name": "Cellframe", + "symbol": "CELL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x26c8AFBBFE1EBaca03C2bB082E69D0476Bffe099/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x26E43759551333e57F073bb0772F50329A957b30", + "type": "ERC20", + "address": "0x26E43759551333e57F073bb0772F50329A957b30", + "name": "DegenVC", + "symbol": "DGVC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x26E43759551333e57F073bb0772F50329A957b30/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x27C70Cd1946795B66be9d954418546998b546634", + "type": "ERC20", + "address": "0x27C70Cd1946795B66be9d954418546998b546634", + "name": "DOGE KILLER", + "symbol": "LEASH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x27C70Cd1946795B66be9d954418546998b546634/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x29502fE4d233EF0b45C3647101Fa1252cE0634BD", + "type": "ERC20", + "address": "0x29502fE4d233EF0b45C3647101Fa1252cE0634BD", + "name": "Froge Finance", + "symbol": "FROGE", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x29502fE4d233EF0b45C3647101Fa1252cE0634BD/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39", + "type": "ERC20", + "address": "0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39", + "name": "HEX", + "symbol": "HEX", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x2ba592F78dB6436527729929AAf6c908497cB200", + "type": "ERC20", + "address": "0x2ba592F78dB6436527729929AAf6c908497cB200", + "name": "Cream Finance", + "symbol": "CREAM", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x2ba592F78dB6436527729929AAf6c908497cB200/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14", + "type": "ERC20", + "address": "0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14", + "name": "Mettalex", + "symbol": "MTLX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x2e2f3246b6c65CCc4239c9Ee556EC143a7E5DE2c", + "type": "ERC20", + "address": "0x2e2f3246b6c65CCc4239c9Ee556EC143a7E5DE2c", + "name": "Yfi.mobi", + "symbol": "YFIM", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x2e2f3246b6c65CCc4239c9Ee556EC143a7E5DE2c/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5", + "type": "ERC20", + "address": "0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5", + "name": "ZeroSwap", + "symbol": "ZEE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3", + "type": "ERC20", + "address": "0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3", + "name": "Decentr", + "symbol": "DEC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20", + "type": "ERC20", + "address": "0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20", + "name": "Anatha", + "symbol": "wANATHA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f", + "type": "ERC20", + "address": "0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f", + "name": "RAMP DEFI", + "symbol": "RAMP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x3593D125a4f7849a1B059E64F4517A86Dd60c95d", + "type": "ERC20", + "address": "0x3593D125a4f7849a1B059E64F4517A86Dd60c95d", + "name": "MANTRA", + "symbol": "OM", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x362bc847A3a9637d3af6624EeC853618a43ed7D2", + "type": "ERC20", + "address": "0x362bc847A3a9637d3af6624EeC853618a43ed7D2", + "name": "PARSIQ", + "symbol": "PRQ", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x362bc847A3a9637d3af6624EeC853618a43ed7D2/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x3845badAde8e6dFF049820680d1F14bD3903a5d0", + "type": "ERC20", + "address": "0x3845badAde8e6dFF049820680d1F14bD3903a5d0", + "name": "The Sandbox", + "symbol": "SAND", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3845badAde8e6dFF049820680d1F14bD3903a5d0/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1", + "type": "ERC20", + "address": "0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1", + "name": "Concentrated Voting Power", + "symbol": "CVP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe", + "type": "ERC20", + "address": "0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe", + "name": "DSLA", + "symbol": "DSLA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30", + "type": "ERC20", + "address": "0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30", + "name": "Vidya", + "symbol": "VIDYA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x408e41876cCCDC0F92210600ef50372656052a38", + "type": "ERC20", + "address": "0x408e41876cCCDC0F92210600ef50372656052a38", + "name": "Ren", + "symbol": "REN", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x408e41876cCCDC0F92210600ef50372656052a38/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x40FD72257597aA14C7231A7B1aaa29Fce868F677", + "type": "ERC20", + "address": "0x40FD72257597aA14C7231A7B1aaa29Fce868F677", + "name": "SORA", + "symbol": "XOR", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x40FD72257597aA14C7231A7B1aaa29Fce868F677/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b", + "type": "ERC20", + "address": "0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b", + "name": "FunFair", + "symbol": "FUN", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x41A3Dba3D677E573636BA691a70ff2D606c29666", + "type": "ERC20", + "address": "0x41A3Dba3D677E573636BA691a70ff2D606c29666", + "name": "GoBlank", + "symbol": "BLANK", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x41A3Dba3D677E573636BA691a70ff2D606c29666/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5", + "type": "ERC20", + "address": "0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5", + "name": "Pickle Finance", + "symbol": "PICKLE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0", + "type": "ERC20", + "address": "0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0", + "name": "dForce", + "symbol": "DF", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E", + "type": "ERC20", + "address": "0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E", + "name": "FLOKI", + "symbol": "FLOKI", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x4575f41308EC1483f3d399aa9a2826d74Da13Deb", + "type": "ERC20", + "address": "0x4575f41308EC1483f3d399aa9a2826d74Da13Deb", + "name": "Orchid", + "symbol": "OXT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "type": "ERC20", + "address": "0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "name": "PAX Gold", + "symbol": "PAXG", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x45804880De22913dAFE09f4980848ECE6EcbAf78/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x4691937a7508860F876c9c0a2a617E7d9E945D4B", + "type": "ERC20", + "address": "0x4691937a7508860F876c9c0a2a617E7d9E945D4B", + "name": "WOO Network", + "symbol": "WOO", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x4a220E6096B25EADb88358cb44068A3248254675", + "type": "ERC20", + "address": "0x4a220E6096B25EADb88358cb44068A3248254675", + "name": "Quant", + "symbol": "QNT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4a220E6096B25EADb88358cb44068A3248254675/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8", + "type": "ERC20", + "address": "0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8", + "name": "Jupiter", + "symbol": "JUP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x4c11249814f11b9346808179Cf06e71ac328c1b5", + "type": "ERC20", + "address": "0x4c11249814f11b9346808179Cf06e71ac328c1b5", + "name": "Oraichain Token", + "symbol": "ORAI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4c11249814f11b9346808179Cf06e71ac328c1b5/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x4C19596f5aAfF459fA38B0f7eD92F11AE6543784", + "type": "ERC20", + "address": "0x4C19596f5aAfF459fA38B0f7eD92F11AE6543784", + "name": "TrueFi", + "symbol": "TRU", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4C19596f5aAfF459fA38B0f7eD92F11AE6543784/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42", + "type": "ERC20", + "address": "0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42", + "name": "MCDEX Token", + "symbol": "MCB", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x4fE83213D56308330EC302a8BD641f1d0113A4Cc", + "type": "ERC20", + "address": "0x4fE83213D56308330EC302a8BD641f1d0113A4Cc", + "name": "NuCypher", + "symbol": "NU", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4fE83213D56308330EC302a8BD641f1d0113A4Cc/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd", + "type": "ERC20", + "address": "0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd", + "name": "Razor Network", + "symbol": "RAZOR", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x514910771AF9Ca656af840dff83E8264EcF986CA", + "type": "ERC20", + "address": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + "name": "Chainlink", + "symbol": "LINK", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x514910771AF9Ca656af840dff83E8264EcF986CA/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x5218E472cFCFE0b64A064F055B43b4cdC9EfD3A6", + "type": "ERC20", + "address": "0x5218E472cFCFE0b64A064F055B43b4cdC9EfD3A6", + "name": "unFederalReserve", + "symbol": "eRSDL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5218E472cFCFE0b64A064F055B43b4cdC9EfD3A6/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x5228a22e72ccC52d415EcFd199F99D0665E7733b", + "type": "ERC20", + "address": "0x5228a22e72ccC52d415EcFd199F99D0665E7733b", + "name": "pTokens BTC", + "symbol": "pBTC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba", + "type": "ERC20", + "address": "0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba", + "name": "BarterTrade", + "symbol": "BART", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x557B933a7C2c45672B610F8954A3deB39a51A8Ca", + "type": "ERC20", + "address": "0x557B933a7C2c45672B610F8954A3deB39a51A8Ca", + "name": "REVV", + "symbol": "REVV", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x557B933a7C2c45672B610F8954A3deB39a51A8Ca/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x57Ab1ec28D129707052df4dF418D58a2D46d5f51", + "type": "ERC20", + "address": "0x57Ab1ec28D129707052df4dF418D58a2D46d5f51", + "name": "sUSD", + "symbol": "sUSD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x57Ab1ec28D129707052df4dF418D58a2D46d5f51/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x584bC13c7D411c00c01A62e8019472dE68768430", + "type": "ERC20", + "address": "0x584bC13c7D411c00c01A62e8019472dE68768430", + "name": "Hegic", + "symbol": "HEGIC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x584bC13c7D411c00c01A62e8019472dE68768430/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37", + "type": "ERC20", + "address": "0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37", + "name": "UnMarshal", + "symbol": "MARSH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x5BEfBB272290dD5b8521D4a938f6c4757742c430", + "type": "ERC20", + "address": "0x5BEfBB272290dD5b8521D4a938f6c4757742c430", + "name": "Xfinance", + "symbol": "XFI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5BEfBB272290dD5b8521D4a938f6c4757742c430/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26", + "type": "ERC20", + "address": "0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26", + "name": "Dev", + "symbol": "DEV", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x5Dc02Ea99285E17656b8350722694c35154DB1E8", + "type": "ERC20", + "address": "0x5Dc02Ea99285E17656b8350722694c35154DB1E8", + "name": "BOND", + "symbol": "BOND", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5Dc02Ea99285E17656b8350722694c35154DB1E8/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0", + "type": "ERC20", + "address": "0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0", + "name": "DEXTF Token", + "symbol": "DEXTF", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x5f98805A4E8be255a32880FDeC7F6728C6568bA0", + "type": "ERC20", + "address": "0x5f98805A4E8be255a32880FDeC7F6728C6568bA0", + "name": "Liquity USD", + "symbol": "LUSD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5f98805A4E8be255a32880FDeC7F6728C6568bA0/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x607F4C5BB672230e8672085532f7e901544a7375", + "type": "ERC20", + "address": "0x607F4C5BB672230e8672085532f7e901544a7375", + "name": "iExec RLC", + "symbol": "RLC", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x607F4C5BB672230e8672085532f7e901544a7375/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x6149C26Cd2f7b5CCdb32029aF817123F6E37Df5B", + "type": "ERC20", + "address": "0x6149C26Cd2f7b5CCdb32029aF817123F6E37Df5B", + "name": "Launchpool", + "symbol": "LPOOL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6149C26Cd2f7b5CCdb32029aF817123F6E37Df5B/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7", + "type": "ERC20", + "address": "0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7", + "name": "cVault.finance", + "symbol": "CORE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x6243d8CEA23066d098a15582d81a598b4e8391F4", + "type": "ERC20", + "address": "0x6243d8CEA23066d098a15582d81a598b4e8391F4", + "name": "Reflexer Ungovernance Token", + "symbol": "FLX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6243d8CEA23066d098a15582d81a598b4e8391F4/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x626E8036dEB333b408Be468F951bdB42433cBF18", + "type": "ERC20", + "address": "0x626E8036dEB333b408Be468F951bdB42433cBF18", + "name": "AIOZ Network", + "symbol": "AIOZ", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x626E8036dEB333b408Be468F951bdB42433cBF18/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x63b4f3e3fa4e438698CE330e365E831F7cCD1eF4", + "type": "ERC20", + "address": "0x63b4f3e3fa4e438698CE330e365E831F7cCD1eF4", + "name": "CyberFi Token", + "symbol": "CFi", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x63b4f3e3fa4e438698CE330e365E831F7cCD1eF4/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x66a0f676479Cee1d7373f3DC2e2952778BfF5bd6", + "type": "ERC20", + "address": "0x66a0f676479Cee1d7373f3DC2e2952778BfF5bd6", + "name": "Wise Token", + "symbol": "WISE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x66a0f676479Cee1d7373f3DC2e2952778BfF5bd6/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x67B6D479c7bB412C54e03dCA8E1Bc6740ce6b99C", + "type": "ERC20", + "address": "0x67B6D479c7bB412C54e03dCA8E1Bc6740ce6b99C", + "name": "Kylin", + "symbol": "KYL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x67B6D479c7bB412C54e03dCA8E1Bc6740ce6b99C/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x67c597624B17b16fb77959217360B7cD18284253", + "type": "ERC20", + "address": "0x67c597624B17b16fb77959217360B7cD18284253", + "name": "Benchmark Protocol", + "symbol": "MARK", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x67c597624B17b16fb77959217360B7cD18284253/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x6810e776880C02933D47DB1b9fc05908e5386b96", + "type": "ERC20", + "address": "0x6810e776880C02933D47DB1b9fc05908e5386b96", + "name": "Gnosis", + "symbol": "GNO", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6810e776880C02933D47DB1b9fc05908e5386b96/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x69692D3345010a207b759a7D1af6fc7F38b35c5E", + "type": "ERC20", + "address": "0x69692D3345010a207b759a7D1af6fc7F38b35c5E", + "name": "chads.vc", + "symbol": "CHADS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x69692D3345010a207b759a7D1af6fc7F38b35c5E/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074", + "type": "ERC20", + "address": "0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074", + "name": "Mask Network", + "symbol": "MASK", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x6B175474E89094C44Da98b954EedeAC495271d0F", + "type": "ERC20", + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "name": "Dai", + "symbol": "DAI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6B175474E89094C44Da98b954EedeAC495271d0F/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x6B3595068778DD592e39A122f4f5a5cF09C90fE2", + "type": "ERC20", + "address": "0x6B3595068778DD592e39A122f4f5a5cF09C90fE2", + "name": "SushiSwap", + "symbol": "SUSHI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6B3595068778DD592e39A122f4f5a5cF09C90fE2/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x6BFf2fE249601ed0Db3a87424a2E923118BB0312", + "type": "ERC20", + "address": "0x6BFf2fE249601ed0Db3a87424a2E923118BB0312", + "name": "Fyooz", + "symbol": "FYZ", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6BFf2fE249601ed0Db3a87424a2E923118BB0312/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x6c6EE5e31d828De241282B9606C8e98Ea48526E2", + "type": "ERC20", + "address": "0x6c6EE5e31d828De241282B9606C8e98Ea48526E2", + "name": "Holo", + "symbol": "HOT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6c6EE5e31d828De241282B9606C8e98Ea48526E2/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x6e0daDE58D2d89eBBe7aFc384e3E4f15b70b14D8", + "type": "ERC20", + "address": "0x6e0daDE58D2d89eBBe7aFc384e3E4f15b70b14D8", + "name": "QuiverX", + "symbol": "QRX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6e0daDE58D2d89eBBe7aFc384e3E4f15b70b14D8/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x6F87D756DAf0503d08Eb8993686c7Fc01Dc44fB1", + "type": "ERC20", + "address": "0x6F87D756DAf0503d08Eb8993686c7Fc01Dc44fB1", + "name": "UniTrade", + "symbol": "TRADE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6F87D756DAf0503d08Eb8993686c7Fc01Dc44fB1/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x6fC13EACE26590B80cCCAB1ba5d51890577D83B2", + "type": "ERC20", + "address": "0x6fC13EACE26590B80cCCAB1ba5d51890577D83B2", + "name": "Umbrella Network", + "symbol": "UMB", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6fC13EACE26590B80cCCAB1ba5d51890577D83B2/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x70401dFD142A16dC7031c56E862Fc88Cb9537Ce0", + "type": "ERC20", + "address": "0x70401dFD142A16dC7031c56E862Fc88Cb9537Ce0", + "name": "Bird.Money", + "symbol": "BIRD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x70401dFD142A16dC7031c56E862Fc88Cb9537Ce0/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x71F85B2E46976bD21302B64329868fd15eb0D127", + "type": "ERC20", + "address": "0x71F85B2E46976bD21302B64329868fd15eb0D127", + "name": "Axion", + "symbol": "AXN", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x71F85B2E46976bD21302B64329868fd15eb0D127/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x725C263e32c72dDC3A19bEa12C5a0479a81eE688", + "type": "ERC20", + "address": "0x725C263e32c72dDC3A19bEa12C5a0479a81eE688", + "name": "Bridge Mutual", + "symbol": "BMI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x725C263e32c72dDC3A19bEa12C5a0479a81eE688/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x72630B1e3B42874bf335020Ba0249e3E9e47Bafc", + "type": "ERC20", + "address": "0x72630B1e3B42874bf335020Ba0249e3E9e47Bafc", + "name": "Paypolitan Token", + "symbol": "EPAN", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x72630B1e3B42874bf335020Ba0249e3E9e47Bafc/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x72e364F2ABdC788b7E918bc238B21f109Cd634D7", + "type": "ERC20", + "address": "0x72e364F2ABdC788b7E918bc238B21f109Cd634D7", + "name": "Metaverse Index", + "symbol": "MVI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x72e364F2ABdC788b7E918bc238B21f109Cd634D7/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x72e9D9038cE484EE986FEa183f8d8Df93f9aDA13", + "type": "ERC20", + "address": "0x72e9D9038cE484EE986FEa183f8d8Df93f9aDA13", + "name": "SmartCredit Token", + "symbol": "SMARTCREDIT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x72e9D9038cE484EE986FEa183f8d8Df93f9aDA13/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x761D38e5ddf6ccf6Cf7c55759d5210750B5D60F3", + "type": "ERC20", + "address": "0x761D38e5ddf6ccf6Cf7c55759d5210750B5D60F3", + "name": "Dogelon", + "symbol": "ELON", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x761D38e5ddf6ccf6Cf7c55759d5210750B5D60F3/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x7659CE147D0e714454073a5dd7003544234b6Aa0", + "type": "ERC20", + "address": "0x7659CE147D0e714454073a5dd7003544234b6Aa0", + "name": "XCAD Network", + "symbol": "XCAD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7659CE147D0e714454073a5dd7003544234b6Aa0/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x7671904eed7f10808B664fc30BB8693FD7237abF", + "type": "ERC20", + "address": "0x7671904eed7f10808B664fc30BB8693FD7237abF", + "name": "Boolberry", + "symbol": "BBR", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7671904eed7f10808B664fc30BB8693FD7237abF/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x77777FeDdddFfC19Ff86DB637967013e6C6A116C", + "type": "ERC20", + "address": "0x77777FeDdddFfC19Ff86DB637967013e6C6A116C", + "name": "Tornado Cash", + "symbol": "TORN", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x77777FeDdddFfC19Ff86DB637967013e6C6A116C/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x7a2Bc711E19ba6aff6cE8246C546E8c4B4944DFD", + "type": "ERC20", + "address": "0x7a2Bc711E19ba6aff6cE8246C546E8c4B4944DFD", + "name": "WAXE", + "symbol": "WAXE", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7a2Bc711E19ba6aff6cE8246C546E8c4B4944DFD/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x7b123f53421b1bF8533339BFBdc7C98aA94163db", + "type": "ERC20", + "address": "0x7b123f53421b1bF8533339BFBdc7C98aA94163db", + "name": "DFOhub", + "symbol": "buidl", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7b123f53421b1bF8533339BFBdc7C98aA94163db/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0", + "type": "ERC20", + "address": "0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0", + "name": "Polygon", + "symbol": "MATIC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7", + "type": "ERC20", + "address": "0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7", + "name": "Robonomics", + "symbol": "XRT", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB", + "type": "ERC20", + "address": "0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB", + "name": "xToken", + "symbol": "XTK", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "type": "ERC20", + "address": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "name": "Aave", + "symbol": "AAVE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x7FF4169a6B5122b664c51c95727d87750eC07c84", + "type": "ERC20", + "address": "0x7FF4169a6B5122b664c51c95727d87750eC07c84", + "name": "Tenset", + "symbol": "10SET", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7FF4169a6B5122b664c51c95727d87750eC07c84/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x8207c1FfC5B6804F6024322CcF34F29c3541Ae26", + "type": "ERC20", + "address": "0x8207c1FfC5B6804F6024322CcF34F29c3541Ae26", + "name": "Origin Protocol", + "symbol": "OGN", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8207c1FfC5B6804F6024322CcF34F29c3541Ae26/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa", + "type": "ERC20", + "address": "0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa", + "name": "Polkastarter", + "symbol": "POLS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e", + "type": "ERC20", + "address": "0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e", + "name": "Unibright", + "symbol": "UBT", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419", + "type": "ERC20", + "address": "0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419", + "name": "DIA", + "symbol": "DIA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x853d955aCEf822Db058eb8505911ED77F175b99e", + "type": "ERC20", + "address": "0x853d955aCEf822Db058eb8505911ED77F175b99e", + "name": "Frax", + "symbol": "FRAX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x853d955aCEf822Db058eb8505911ED77F175b99e/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC", + "type": "ERC20", + "address": "0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC", + "name": "KEEP Token", + "symbol": "KEEP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x8888801aF4d980682e47f1A9036e589479e835C5", + "type": "ERC20", + "address": "0x8888801aF4d980682e47f1A9036e589479e835C5", + "name": "88mph.app", + "symbol": "MPH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8888801aF4d980682e47f1A9036e589479e835C5/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB", + "type": "ERC20", + "address": "0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB", + "name": "Alchemist", + "symbol": "⚗️", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x89Ab32156e46F46D02ade3FEcbe5Fc4243B9AAeD", + "type": "ERC20", + "address": "0x89Ab32156e46F46D02ade3FEcbe5Fc4243B9AAeD", + "name": "pNetwork", + "symbol": "PNT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x89Ab32156e46F46D02ade3FEcbe5Fc4243B9AAeD/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x8a40c222996f9F3431f63Bf80244C36822060f12", + "type": "ERC20", + "address": "0x8a40c222996f9F3431f63Bf80244C36822060f12", + "name": "Finxflo", + "symbol": "FXF", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x8a854288a5976036A725879164Ca3e91d30c6A1B", + "type": "ERC20", + "address": "0x8a854288a5976036A725879164Ca3e91d30c6A1B", + "name": "GET", + "symbol": "GET", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8a854288a5976036A725879164Ca3e91d30c6A1B/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x8B39B70E39Aa811b69365398e0aACe9bee238AEb", + "type": "ERC20", + "address": "0x8B39B70E39Aa811b69365398e0aACe9bee238AEb", + "name": "PolkaFoundry", + "symbol": "PKF", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8B39B70E39Aa811b69365398e0aACe9bee238AEb/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x8c15Ef5b4B21951d50E53E4fbdA8298FFAD25057", + "type": "ERC20", + "address": "0x8c15Ef5b4B21951d50E53E4fbdA8298FFAD25057", + "name": "Function X", + "symbol": "FX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8c15Ef5b4B21951d50E53E4fbdA8298FFAD25057/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9", + "type": "ERC20", + "address": "0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9", + "name": "Swipe", + "symbol": "SXP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa", + "type": "ERC20", + "address": "0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa", + "name": "tBTC", + "symbol": "TBTC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x5B7533812759B45C2B44C19e320ba2cD2681b542", + "type": "ERC20", + "address": "0x5B7533812759B45C2B44C19e320ba2cD2681b542", + "name": "SingularityNET Token", + "symbol": "AGIX", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x8f8221aFbB33998d8584A2B05749bA73c37a938a", + "type": "ERC20", + "address": "0x8f8221aFbB33998d8584A2B05749bA73c37a938a", + "name": "Request Token", + "symbol": "REQ", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x9355372396e3F6daF13359B7b607a3374cc638e0", + "type": "ERC20", + "address": "0x9355372396e3F6daF13359B7b607a3374cc638e0", + "name": "WHALE", + "symbol": "WHALE", + "decimals": 4, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9355372396e3F6daF13359B7b607a3374cc638e0/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d", + "type": "ERC20", + "address": "0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d", + "name": "Pinakion", + "symbol": "PNK", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x9469D013805bFfB7D3DEBe5E7839237e535ec483", + "type": "ERC20", + "address": "0x9469D013805bFfB7D3DEBe5E7839237e535ec483", + "name": "Evolution Land Global Token", + "symbol": "RING", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9469D013805bFfB7D3DEBe5E7839237e535ec483/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x954b890704693af242613edEf1B603825afcD708", + "type": "ERC20", + "address": "0x954b890704693af242613edEf1B603825afcD708", + "name": "Cardstack", + "symbol": "CARD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x954b890704693af242613edEf1B603825afcD708/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x956F47F50A910163D8BF957Cf5846D573E7f87CA", + "type": "ERC20", + "address": "0x956F47F50A910163D8BF957Cf5846D573E7f87CA", + "name": "Fei USD", + "symbol": "FEI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x956F47F50A910163D8BF957Cf5846D573E7f87CA/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x95a4492F028aa1fd432Ea71146b433E7B4446611", + "type": "ERC20", + "address": "0x95a4492F028aa1fd432Ea71146b433E7B4446611", + "name": "APY.Finance", + "symbol": "APY", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x95a4492F028aa1fd432Ea71146b433E7B4446611/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE", + "type": "ERC20", + "address": "0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE", + "name": "SHIBA INU", + "symbol": "SHIB", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x967da4048cD07aB37855c090aAF366e4ce1b9F48", + "type": "ERC20", + "address": "0x967da4048cD07aB37855c090aAF366e4ce1b9F48", + "name": "Ocean Protocol", + "symbol": "OCEAN", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x967da4048cD07aB37855c090aAF366e4ce1b9F48/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x990f341946A3fdB507aE7e52d17851B87168017c", + "type": "ERC20", + "address": "0x990f341946A3fdB507aE7e52d17851B87168017c", + "name": "Strong", + "symbol": "STRONG", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x990f341946A3fdB507aE7e52d17851B87168017c/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7", + "type": "ERC20", + "address": "0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7", + "name": "Shopping.io", + "symbol": "SPI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x9BE89D2a4cd102D8Fecc6BF9dA793be995C22541", + "type": "ERC20", + "address": "0x9BE89D2a4cd102D8Fecc6BF9dA793be995C22541", + "name": "Binance Wrapped BTC", + "symbol": "BBTC", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9BE89D2a4cd102D8Fecc6BF9dA793be995C22541/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544", + "type": "ERC20", + "address": "0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544", + "name": "Doki Doki Finance", + "symbol": "DOKI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x9EA3b5b4EC044b70375236A281986106457b20EF", + "type": "ERC20", + "address": "0x9EA3b5b4EC044b70375236A281986106457b20EF", + "name": "Delta Financial", + "symbol": "DELTA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9EA3b5b4EC044b70375236A281986106457b20EF/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E", + "type": "ERC20", + "address": "0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E", + "name": "Unistake", + "symbol": "UNISTAKE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x9f7229aF0c4b9740e207Ea283b9094983f78ba04", + "type": "ERC20", + "address": "0x9f7229aF0c4b9740e207Ea283b9094983f78ba04", + "name": "Tadpole", + "symbol": "TAD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9f7229aF0c4b9740e207Ea283b9094983f78ba04/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2", + "type": "ERC20", + "address": "0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2", + "name": "Maker", + "symbol": "MKR", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x9F9c8ec3534c3cE16F928381372BfbFBFb9F4D24", + "type": "ERC20", + "address": "0x9F9c8ec3534c3cE16F928381372BfbFBFb9F4D24", + "name": "GraphLinq", + "symbol": "GLQ", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9F9c8ec3534c3cE16F928381372BfbFBFb9F4D24/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xa0246c9032bC3A600820415aE600c6388619A14D", + "type": "ERC20", + "address": "0xa0246c9032bC3A600820415aE600c6388619A14D", + "name": "Harvest Finance", + "symbol": "FARM", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa0246c9032bC3A600820415aE600c6388619A14D/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xa0afAA285Ce85974c3C881256cB7F225e3A1178a", + "type": "ERC20", + "address": "0xa0afAA285Ce85974c3C881256cB7F225e3A1178a", + "name": "Wrapped CrescoFin", + "symbol": "wCRES", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa0afAA285Ce85974c3C881256cB7F225e3A1178a/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "type": "ERC20", + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xa117000000f279D81A1D3cc75430fAA017FA5A2e", + "type": "ERC20", + "address": "0xa117000000f279D81A1D3cc75430fAA017FA5A2e", + "name": "Aragon", + "symbol": "ANT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa117000000f279D81A1D3cc75430fAA017FA5A2e/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xa1d6Df714F91DeBF4e0802A542E13067f31b8262", + "type": "ERC20", + "address": "0xa1d6Df714F91DeBF4e0802A542E13067f31b8262", + "name": "RFOX", + "symbol": "RFOX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa1d6Df714F91DeBF4e0802A542E13067f31b8262/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xa393473d64d2F9F026B60b6Df7859A689715d092", + "type": "ERC20", + "address": "0xa393473d64d2F9F026B60b6Df7859A689715d092", + "name": "Lattice Token", + "symbol": "LTX", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa393473d64d2F9F026B60b6Df7859A689715d092/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2", + "type": "ERC20", + "address": "0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2", + "name": "Meta", + "symbol": "MTA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3", + "type": "ERC20", + "address": "0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3", + "name": "Rubic", + "symbol": "RBC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xA8b919680258d369114910511cc87595aec0be6D", + "type": "ERC20", + "address": "0xA8b919680258d369114910511cc87595aec0be6D", + "name": "LUKSO", + "symbol": "LYXe", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xA8b919680258d369114910511cc87595aec0be6D/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca", + "type": "ERC20", + "address": "0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca", + "name": "Syntropy", + "symbol": "NOIA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xA91ac63D040dEB1b7A5E4d4134aD23eb0ba07e14", + "type": "ERC20", + "address": "0xA91ac63D040dEB1b7A5E4d4134aD23eb0ba07e14", + "name": "Bella Protocol", + "symbol": "BEL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xA91ac63D040dEB1b7A5E4d4134aD23eb0ba07e14/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xAa6E8127831c9DE45ae56bB1b0d4D4Da6e5665BD", + "type": "ERC20", + "address": "0xAa6E8127831c9DE45ae56bB1b0d4D4Da6e5665BD", + "name": "ETH 2x Flexible Leverage Index", + "symbol": "ETH2x-FLI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xAa6E8127831c9DE45ae56bB1b0d4D4Da6e5665BD/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F", + "type": "ERC20", + "address": "0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F", + "name": "Trace Token", + "symbol": "TRAC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d", + "type": "ERC20", + "address": "0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d", + "name": "Celsius", + "symbol": "CEL", + "decimals": 4, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a", + "type": "ERC20", + "address": "0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a", + "name": "Monolith TKN", + "symbol": "TKN", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0", + "type": "ERC20", + "address": "0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0", + "name": "Crowns", + "symbol": "CWS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xAd4f86a25bbc20FfB751f2FAC312A0B4d8F88c64", + "type": "ERC20", + "address": "0xAd4f86a25bbc20FfB751f2FAC312A0B4d8F88c64", + "name": "OptionRoom Token", + "symbol": "ROOM", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xAd4f86a25bbc20FfB751f2FAC312A0B4d8F88c64/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0", + "type": "ERC20", + "address": "0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0", + "name": "UniCrypt", + "symbol": "UNCX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xADE00C28244d5CE17D72E40330B1c318cD12B7c3", + "type": "ERC20", + "address": "0xADE00C28244d5CE17D72E40330B1c318cD12B7c3", + "name": "heyAura", + "symbol": "ADX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xAE1eaAE3F627AAca434127644371b67B18444051", + "type": "ERC20", + "address": "0xAE1eaAE3F627AAca434127644371b67B18444051", + "name": "YOP", + "symbol": "YOP", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xAE1eaAE3F627AAca434127644371b67B18444051/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xaE697F994Fc5eBC000F8e22EbFfeE04612f98A0d", + "type": "ERC20", + "address": "0xaE697F994Fc5eBC000F8e22EbFfeE04612f98A0d", + "name": "LGCY Network", + "symbol": "LGCY", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xaE697F994Fc5eBC000F8e22EbFfeE04612f98A0d/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xaf9f549774ecEDbD0966C52f250aCc548D3F36E5", + "type": "ERC20", + "address": "0xaf9f549774ecEDbD0966C52f250aCc548D3F36E5", + "name": "Rio Fuel Token", + "symbol": "RFuel", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xaf9f549774ecEDbD0966C52f250aCc548D3F36E5/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xB1e9157c2Fdcc5a856C8DA8b2d89b6C32b3c1229", + "type": "ERC20", + "address": "0xB1e9157c2Fdcc5a856C8DA8b2d89b6C32b3c1229", + "name": "Zenfuse", + "symbol": "ZEFU", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xB1e9157c2Fdcc5a856C8DA8b2d89b6C32b3c1229/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xB26631c6dda06aD89B93C71400D25692de89c068", + "type": "ERC20", + "address": "0xB26631c6dda06aD89B93C71400D25692de89c068", + "name": "Minds", + "symbol": "MINDS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xB26631c6dda06aD89B93C71400D25692de89c068/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x745407c86DF8DB893011912d3aB28e68B62E49B0", + "type": "ERC20", + "address": "0x745407c86DF8DB893011912d3aB28e68B62E49B0", + "name": "MahaDAO", + "symbol": "MAHA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206", + "type": "ERC20", + "address": "0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206", + "name": "Nexo", + "symbol": "NEXO", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32", + "type": "ERC20", + "address": "0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32", + "name": "SYNC", + "symbol": "SYNC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xb753428af26E81097e7fD17f40c88aaA3E04902c", + "type": "ERC20", + "address": "0xb753428af26E81097e7fD17f40c88aaA3E04902c", + "name": "saffron.finance", + "symbol": "SFI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xb753428af26E81097e7fD17f40c88aaA3E04902c/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xB987D48Ed8f2C468D52D6405624EADBa5e76d723", + "type": "ERC20", + "address": "0xB987D48Ed8f2C468D52D6405624EADBa5e76d723", + "name": "Stabilize Token", + "symbol": "STBZ", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xB987D48Ed8f2C468D52D6405624EADBa5e76d723/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF", + "type": "ERC20", + "address": "0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF", + "name": "K21", + "symbol": "K21", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xb9EF770B6A5e12E45983C5D80545258aA38F3B78", + "type": "ERC20", + "address": "0xb9EF770B6A5e12E45983C5D80545258aA38F3B78", + "name": "0chain", + "symbol": "ZCN", + "decimals": 10, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xb9EF770B6A5e12E45983C5D80545258aA38F3B78/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0xba100000625a3754423978a60c9317c58a424e3D", + "type": "ERC20", + "address": "0xba100000625a3754423978a60c9317c58a424e3D", + "name": "Balancer", + "symbol": "BAL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xba100000625a3754423978a60c9317c58a424e3D/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55", + "type": "ERC20", + "address": "0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55", + "name": "Band Protocol", + "symbol": "BAND", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xBa21Ef4c9f433Ede00badEFcC2754B8E74bd538A", + "type": "ERC20", + "address": "0xBa21Ef4c9f433Ede00badEFcC2754B8E74bd538A", + "name": "Swapfolio", + "symbol": "SWFL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xBa21Ef4c9f433Ede00badEFcC2754B8E74bd538A/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD", + "type": "ERC20", + "address": "0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD", + "name": "Loopring", + "symbol": "LRC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xBBc2AE13b23d715c30720F079fcd9B4a74093505", + "type": "ERC20", + "address": "0xBBc2AE13b23d715c30720F079fcd9B4a74093505", + "name": "Ethernity Chain", + "symbol": "ERN", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xbC396689893D065F41bc2C6EcbeE5e0085233447", + "type": "ERC20", + "address": "0xbC396689893D065F41bc2C6EcbeE5e0085233447", + "name": "Perpetual", + "symbol": "PERP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xbC396689893D065F41bc2C6EcbeE5e0085233447/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb", + "type": "ERC20", + "address": "0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb", + "name": "GYSR", + "symbol": "GYSR", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xBF494F02EE3FdE1F20BEE6242bCe2d1ED0c15e47", + "type": "ERC20", + "address": "0xBF494F02EE3FdE1F20BEE6242bCe2d1ED0c15e47", + "name": "World Token", + "symbol": "WORLD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xBF494F02EE3FdE1F20BEE6242bCe2d1ED0c15e47/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0xc00e94Cb662C3520282E6f5717214004A7f26888", + "type": "ERC20", + "address": "0xc00e94Cb662C3520282E6f5717214004A7f26888", + "name": "Compound", + "symbol": "COMP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xc00e94Cb662C3520282E6f5717214004A7f26888/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F", + "type": "ERC20", + "address": "0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F", + "name": "Synthetix", + "symbol": "SNX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets//logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F", + "type": "ERC20", + "address": "0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F", + "name": "DLP Duck Token", + "symbol": "DUCK", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72", + "type": "ERC20", + "address": "0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72", + "name": "Ethereum Name Service", + "symbol": "ENS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xC4C2614E694cF534D407Ee49F8E44D125E4681c4", + "type": "ERC20", + "address": "0xC4C2614E694cF534D407Ee49F8E44D125E4681c4", + "name": "Chain Games", + "symbol": "CHAIN", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xC52C326331E9Ce41F04484d3B5E5648158028804", + "type": "ERC20", + "address": "0xC52C326331E9Ce41F04484d3B5E5648158028804", + "name": "Unizen", + "symbol": "ZCX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xC57d533c50bC22247d49a368880fb49a1caA39F7", + "type": "ERC20", + "address": "0xC57d533c50bC22247d49a368880fb49a1caA39F7", + "name": "PowerTrade Fuel", + "symbol": "PTF", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xC57d533c50bC22247d49a368880fb49a1caA39F7/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xc719d010B63E5bbF2C0551872CD5316ED26AcD83", + "type": "ERC20", + "address": "0xc719d010B63E5bbF2C0551872CD5316ED26AcD83", + "name": "Decentralized Insurance Protocol", + "symbol": "DIP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xc719d010B63E5bbF2C0551872CD5316ED26AcD83/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xc7283b66Eb1EB5FB86327f08e1B5816b0720212B", + "type": "ERC20", + "address": "0xc7283b66Eb1EB5FB86327f08e1B5816b0720212B", + "name": "Tribe", + "symbol": "TRIBE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xc7283b66Eb1EB5FB86327f08e1B5816b0720212B/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50", + "type": "ERC20", + "address": "0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50", + "name": "Convergence", + "symbol": "CONV", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xc944E90C64B2c07662A292be6244BDf05Cda44a7", + "type": "ERC20", + "address": "0xc944E90C64B2c07662A292be6244BDf05Cda44a7", + "name": "The Graph", + "symbol": "GRT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xc944E90C64B2c07662A292be6244BDf05Cda44a7/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E", + "type": "ERC20", + "address": "0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E", + "name": "Rootkit Finance", + "symbol": "ROOT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xCbfef8fdd706cde6F208460f2Bf39Aa9c785F05D", + "type": "ERC20", + "address": "0xCbfef8fdd706cde6F208460f2Bf39Aa9c785F05D", + "name": "Kine Governance Token", + "symbol": "KINE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xCbfef8fdd706cde6F208460f2Bf39Aa9c785F05D/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xCC4304A31d09258b0029eA7FE63d032f52e44EFe", + "type": "ERC20", + "address": "0xCC4304A31d09258b0029eA7FE63d032f52e44EFe", + "name": "TrustSwap Token", + "symbol": "SWAP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xCC4304A31d09258b0029eA7FE63d032f52e44EFe/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xCF3C8Be2e2C42331Da80EF210e9B1b307C03d36A", + "type": "ERC20", + "address": "0xCF3C8Be2e2C42331Da80EF210e9B1b307C03d36A", + "name": "BEPRO Network", + "symbol": "BEPRO", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xCF3C8Be2e2C42331Da80EF210e9B1b307C03d36A/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988", + "type": "ERC20", + "address": "0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988", + "name": "Terra Virtua Kolect", + "symbol": "TVK", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de", + "type": "ERC20", + "address": "0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de", + "name": "SIREN", + "symbol": "SI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0xd26114cd6EE289AccF82350c8d8487fedB8A0C07", + "type": "ERC20", + "address": "0xd26114cd6EE289AccF82350c8d8487fedB8A0C07", + "name": "OMG Network", + "symbol": "OMG", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets//logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9", + "type": "ERC20", + "address": "0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9", + "name": "Terra", + "symbol": "LUNA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xd379700999F4805Ce80aa32DB46A94dF64561108", + "type": "ERC20", + "address": "0xd379700999F4805Ce80aa32DB46A94dF64561108", + "name": "Dextrust", + "symbol": "DETS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xd379700999F4805Ce80aa32DB46A94dF64561108/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0xD46bA6D942050d489DBd938a2C909A5d5039A161", + "type": "ERC20", + "address": "0xD46bA6D942050d489DBd938a2C909A5d5039A161", + "name": "Ampleforth", + "symbol": "AMPL", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets//logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xD478161C952357F05f0292B56012Cd8457F1cfbF", + "type": "ERC20", + "address": "0xD478161C952357F05f0292B56012Cd8457F1cfbF", + "name": "Polkamarkets", + "symbol": "POLK", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xD478161C952357F05f0292B56012Cd8457F1cfbF/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xD533a949740bb3306d119CC777fa900bA034cd52", + "type": "ERC20", + "address": "0xD533a949740bb3306d119CC777fa900bA034cd52", + "name": "Curve DAO Token", + "symbol": "CRV", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xD533a949740bb3306d119CC777fa900bA034cd52/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xD5525D397898e5502075Ea5E830d8914f6F0affe", + "type": "ERC20", + "address": "0xD5525D397898e5502075Ea5E830d8914f6F0affe", + "name": "MEME", + "symbol": "MEME", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xD5525D397898e5502075Ea5E830d8914f6F0affe/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xD6c67B93a7b248dF608a653d82a100556144c5DA", + "type": "ERC20", + "address": "0xD6c67B93a7b248dF608a653d82a100556144c5DA", + "name": "ExNetwork Token", + "symbol": "EXNT", + "decimals": 16, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xD6c67B93a7b248dF608a653d82a100556144c5DA/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0xdAC17F958D2ee523a2206206994597C13D831ec7", + "type": "ERC20", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "name": "Tether", + "symbol": "USDT", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xdacD69347dE42baBfAEcD09dC88958378780FB62", + "type": "ERC20", + "address": "0xdacD69347dE42baBfAEcD09dC88958378780FB62", + "name": "Atari Token", + "symbol": "ATRI", + "decimals": 0, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xdacD69347dE42baBfAEcD09dC88958378780FB62/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xDcB01cc464238396E213a6fDd933E36796eAfF9f", + "type": "ERC20", + "address": "0xDcB01cc464238396E213a6fDd933E36796eAfF9f", + "name": "Yield", + "symbol": "YLD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xDcB01cc464238396E213a6fDd933E36796eAfF9f/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xDDB3422497E61e13543BeA06989C0789117555c5", + "type": "ERC20", + "address": "0xDDB3422497E61e13543BeA06989C0789117555c5", + "name": "COTI", + "symbol": "COTI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xDDB3422497E61e13543BeA06989C0789117555c5/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xE1c7E30C42C24582888C758984f6e382096786bd", + "type": "ERC20", + "address": "0xE1c7E30C42C24582888C758984f6e382096786bd", + "name": "Curate", + "symbol": "XCUR", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xE1c7E30C42C24582888C758984f6e382096786bd/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30", + "type": "ERC20", + "address": "0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30", + "name": "Injective", + "symbol": "INJ", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xe3818504c1B32bF1557b16C238B2E01Fd3149C17", + "type": "ERC20", + "address": "0xe3818504c1B32bF1557b16C238B2E01Fd3149C17", + "name": "PILLAR", + "symbol": "PLR", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xe3818504c1B32bF1557b16C238B2E01Fd3149C17/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0xE41d2489571d322189246DaFA5ebDe1F4699F498", + "type": "ERC20", + "address": "0xE41d2489571d322189246DaFA5ebDe1F4699F498", + "name": "0x", + "symbol": "ZRX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xE41d2489571d322189246DaFA5ebDe1F4699F498/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xE452E6Ea2dDeB012e20dB73bf5d3863A3Ac8d77a", + "type": "ERC20", + "address": "0xE452E6Ea2dDeB012e20dB73bf5d3863A3Ac8d77a", + "name": "WCELO", + "symbol": "WCELO", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xE452E6Ea2dDeB012e20dB73bf5d3863A3Ac8d77a/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", + "type": "ERC20", + "address": "0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", + "name": "SuperVerse", + "symbol": "SUPER", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xE5CAeF4Af8780E59Df925470b050Fb23C43CA68C", + "type": "ERC20", + "address": "0xE5CAeF4Af8780E59Df925470b050Fb23C43CA68C", + "name": "Ferrum Network", + "symbol": "FRM", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xE5CAeF4Af8780E59Df925470b050Fb23C43CA68C/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xE61fDAF474Fac07063f2234Fb9e60C1163Cfa850", + "type": "ERC20", + "address": "0xE61fDAF474Fac07063f2234Fb9e60C1163Cfa850", + "name": "COIN", + "symbol": "COIN", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xE61fDAF474Fac07063f2234Fb9e60C1163Cfa850/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xE95A203B1a91a908F9B9CE46459d101078c2c3cb", + "type": "ERC20", + "address": "0xE95A203B1a91a908F9B9CE46459d101078c2c3cb", + "name": "ankrETH", + "symbol": "aETHc", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xE95A203B1a91a908F9B9CE46459d101078c2c3cb/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71", + "type": "ERC20", + "address": "0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71", + "name": "Modefi", + "symbol": "MOD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c", + "type": "ERC20", + "address": "0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c", + "name": "SURF Finance", + "symbol": "SURF", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D", + "type": "ERC20", + "address": "0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D", + "name": "renBTC", + "symbol": "renBTC", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xEBd9D99A3982d547C5Bb4DB7E3b1F9F14b67Eb83", + "type": "ERC20", + "address": "0xEBd9D99A3982d547C5Bb4DB7E3b1F9F14b67Eb83", + "name": "Everest", + "symbol": "ID", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xEBd9D99A3982d547C5Bb4DB7E3b1F9F14b67Eb83/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xEd91879919B71bB6905f23af0A68d231EcF87b14", + "type": "ERC20", + "address": "0xEd91879919B71bB6905f23af0A68d231EcF87b14", + "name": "DMM: Governance", + "symbol": "DMG", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xEd91879919B71bB6905f23af0A68d231EcF87b14/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xee573a945B01B788B9287CE062A0CFC15bE9fd86", + "type": "ERC20", + "address": "0xee573a945B01B788B9287CE062A0CFC15bE9fd86", + "name": "Exeedme", + "symbol": "XED", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xee573a945B01B788B9287CE062A0CFC15bE9fd86/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107", + "type": "ERC20", + "address": "0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107", + "name": "GOVI", + "symbol": "GOVI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xEec2bE5c91ae7f8a338e1e5f3b5DE49d07AfdC81", + "type": "ERC20", + "address": "0xEec2bE5c91ae7f8a338e1e5f3b5DE49d07AfdC81", + "name": "Dopex Governance Token", + "symbol": "DPX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xEec2bE5c91ae7f8a338e1e5f3b5DE49d07AfdC81/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xEEF9f339514298C6A857EfCfC1A762aF84438dEE", + "type": "ERC20", + "address": "0xEEF9f339514298C6A857EfCfC1A762aF84438dEE", + "name": "Hermez Network Token", + "symbol": "HEZ", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xF063fE1aB7a291c5d06a86e14730b00BF24cB589", + "type": "ERC20", + "address": "0xF063fE1aB7a291c5d06a86e14730b00BF24cB589", + "name": "DxSale Network", + "symbol": "SALE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xF063fE1aB7a291c5d06a86e14730b00BF24cB589/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b", + "type": "ERC20", + "address": "0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b", + "name": "Rally", + "symbol": "RLY", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xF411903cbC70a74d22900a5DE66A2dda66507255", + "type": "ERC20", + "address": "0xF411903cbC70a74d22900a5DE66A2dda66507255", + "name": "Verasity", + "symbol": "VRA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xF411903cbC70a74d22900a5DE66A2dda66507255/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xf418588522d5dd018b425E472991E52EBBeEEEEE", + "type": "ERC20", + "address": "0xf418588522d5dd018b425E472991E52EBBeEEEEE", + "name": "PUSH", + "symbol": "PUSH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xf418588522d5dd018b425E472991E52EBBeEEEEE/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577", + "type": "ERC20", + "address": "0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577", + "name": "YfDAI.finance", + "symbol": "Yf-DAI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xF4d861575ecC9493420A3f5a14F85B13f0b50EB3", + "type": "ERC20", + "address": "0xF4d861575ecC9493420A3f5a14F85B13f0b50EB3", + "name": "Fractal", + "symbol": "FCL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xF4d861575ecC9493420A3f5a14F85B13f0b50EB3/logo.png", + "pairs": [] + }, + { + "chainId": 1, + "asset": "c60_t0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c", + "type": "ERC20", + "address": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c", + "name": "Enjin Coin", + "symbol": "ENJ", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xf6537FE0df7F0Cc0985Cf00792CC98249E73EFa0", + "type": "ERC20", + "address": "0xf6537FE0df7F0Cc0985Cf00792CC98249E73EFa0", + "name": "GIVLY Coin", + "symbol": "GIV", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xf6537FE0df7F0Cc0985Cf00792CC98249E73EFa0/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xF938424F7210f31dF2Aee3011291b658f872e91e", + "type": "ERC20", + "address": "0xF938424F7210f31dF2Aee3011291b658f872e91e", + "name": "Visor.Finance", + "symbol": "VISR", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xF938424F7210f31dF2Aee3011291b658f872e91e/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xF94b5C5651c888d928439aB6514B93944eEE6F48", + "type": "ERC20", + "address": "0xF94b5C5651c888d928439aB6514B93944eEE6F48", + "name": "Yield", + "symbol": "YLD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xF94b5C5651c888d928439aB6514B93944eEE6F48/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xfAd45E47083e4607302aa43c65fB3106F1cd7607", + "type": "ERC20", + "address": "0xfAd45E47083e4607302aa43c65fB3106F1cd7607", + "name": "Hoge Finance", + "symbol": "HOGE", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xfAd45E47083e4607302aa43c65fB3106F1cd7607/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20", + "type": "ERC20", + "address": "0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20", + "name": "DuckDaoDime", + "symbol": "DDIM", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xfC98e825A2264D890F9a1e68ed50E1526abCcacD", + "type": "ERC20", + "address": "0xfC98e825A2264D890F9a1e68ed50E1526abCcacD", + "name": "Moss Carbon Credit", + "symbol": "MCO2", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xfC98e825A2264D890F9a1e68ed50E1526abCcacD/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF", + "type": "ERC20", + "address": "0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF", + "name": "Rarible", + "symbol": "RARI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf", + "type": "ERC20", + "address": "0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf", + "name": "Reef", + "symbol": "REEF", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xfF20817765cB7f73d4bde2e66e067E58D11095C2", + "type": "ERC20", + "address": "0xfF20817765cB7f73d4bde2e66e067E58D11095C2", + "name": "Amp", + "symbol": "AMP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xfF20817765cB7f73d4bde2e66e067E58D11095C2/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xfffffffFf15AbF397dA76f1dcc1A1604F45126DB", + "type": "ERC20", + "address": "0xfffffffFf15AbF397dA76f1dcc1A1604F45126DB", + "name": "FalconSwap Token", + "symbol": "FSW", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xfffffffFf15AbF397dA76f1dcc1A1604F45126DB/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x383518188C0C6d7730D91b2c03a03C837814a899", + "type": "ERC20", + "address": "0x383518188C0C6d7730D91b2c03a03C837814a899", + "name": "OlympusDAO", + "symbol": "OHM", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x383518188C0C6d7730D91b2c03a03C837814a899/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E", + "type": "ERC20", + "address": "0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E", + "name": "Illuvium", + "symbol": "ILV", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xd1d2Eb1B1e90B638588728b4130137D262C87cae", + "type": "ERC20", + "address": "0xd1d2Eb1B1e90B638588728b4130137D262C87cae", + "name": "Gala", + "symbol": "GALA", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B", + "type": "ERC20", + "address": "0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B", + "name": "Convex Token", + "symbol": "CVX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x090185f2135308BaD17527004364eBcC2D37e5F6", + "type": "ERC20", + "address": "0x090185f2135308BaD17527004364eBcC2D37e5F6", + "name": "Spell Token", + "symbol": "SPELL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x090185f2135308BaD17527004364eBcC2D37e5F6/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x3b484b82567a09e2588A13D54D032153f0c0aEe0", + "type": "ERC20", + "address": "0x3b484b82567a09e2588A13D54D032153f0c0aEe0", + "name": "OpenDAO", + "symbol": "SOS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3b484b82567a09e2588A13D54D032153f0c0aEe0/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x6Bba316c48b49BD1eAc44573c5c871ff02958469", + "type": "ERC20", + "address": "0x6Bba316c48b49BD1eAc44573c5c871ff02958469", + "name": "Gas DAO", + "symbol": "GAS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6Bba316c48b49BD1eAc44573c5c871ff02958469/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x4Fabb145d64652a948d72533023f6E7A623C7C53", + "type": "ERC20", + "address": "0x4Fabb145d64652a948d72533023f6E7A623C7C53", + "name": "Binance USD", + "symbol": "BUSD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4Fabb145d64652a948d72533023f6E7A623C7C53/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x9E32b13ce7f2E80A01932B42553652E053D6ed8e", + "type": "ERC20", + "address": "0x9E32b13ce7f2E80A01932B42553652E053D6ed8e", + "name": "MetisDAO", + "symbol": "Metis", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9E32b13ce7f2E80A01932B42553652E053D6ed8e/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xf4d2888d29D722226FafA5d9B24F9164c092421E", + "type": "ERC20", + "address": "0xf4d2888d29D722226FafA5d9B24F9164c092421E", + "name": "LooksRare", + "symbol": "LOOKS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xf4d2888d29D722226FafA5d9B24F9164c092421E/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9", + "type": "ERC20", + "address": "0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9", + "name": "X2Y2Token", + "symbol": "X2Y2", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x4d224452801ACEd8B2F0aebE155379bb5D594381", + "type": "ERC20", + "address": "0x4d224452801ACEd8B2F0aebE155379bb5D594381", + "name": "ApeCoin (APE)", + "symbol": "APE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4d224452801ACEd8B2F0aebE155379bb5D594381/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6", + "type": "ERC20", + "address": "0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6", + "name": "StargateToken", + "symbol": "STG", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96", + "type": "ERC20", + "address": "0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96", + "name": "XSGD", + "symbol": "XSGD", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A", + "type": "ERC20", + "address": "0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A", + "name": "MAGIC", + "symbol": "MAGIC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb", + "type": "ERC20", + "address": "0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb", + "name": "Peter Pan", + "symbol": "PAN", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/logo.png", + "pairs": [] + } + ], + "version": { + "major": 14, + "minor": 0, + "patch": 0 + } +} diff --git a/blockchains/ethereum/validators/assets/0x2401c39d7ba9E283668a53fcC7B8F5FD9e716fdf/logo.png b/blockchains/ethereum/validators/assets/0x2401c39d7ba9E283668a53fcC7B8F5FD9e716fdf/logo.png new file mode 100644 index 00000000..f5f3ada9 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 00000000..2e116f2b --- /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 new file mode 100644 index 00000000..d878ecb1 --- /dev/null +++ b/blockchains/ethereumpow/info/info.json @@ -0,0 +1,24 @@ +{ + "name": "EthereumPoW", + "type": "coin", + "symbol": "ETHW", + "decimals": 18, + "website": "https://ethereumpow.org/", + "description": "The Original Ethereum Blockchain powered by Proof of Work", + "explorer": "https://www.oklink.com/en/ethw", + "status": "active", + "rpc_url": "https://mainnet.ethereumpow.org", + "links": [ + { + "name": "x", + "url": "https://x.com/EthereumPoW" + }, + { + "name": "telegram_news", + "url": "https://t.me/ethereumpow_official" + } + ], + "tags": [ + "pow" + ] +} \ No newline at end of file diff --git a/blockchains/ethereumpow/info/logo.png b/blockchains/ethereumpow/info/logo.png new file mode 100644 index 00000000..dbc9a756 Binary files /dev/null and b/blockchains/ethereumpow/info/logo.png differ diff --git a/blockchains/ethereumpow/info/square_logo.png b/blockchains/ethereumpow/info/square_logo.png new file mode 100644 index 00000000..6e74af09 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 new file mode 100644 index 00000000..b022b5f5 --- /dev/null +++ b/blockchains/everscale/info/info.json @@ -0,0 +1,37 @@ +{ + "name": "Everscale", + "website": "https://everscale.network", + "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", + "type": "coin", + "decimals": 9, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/everscale-org" + }, + { + "name": "x", + "url": "https://x.com/Everscale_net" + }, + { + "name": "telegram", + "url": "https://t.me/everscale" + }, + { + "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/logo.png b/blockchains/everscale/info/logo.png new file mode 100644 index 00000000..6033bec2 Binary files /dev/null and b/blockchains/everscale/info/logo.png differ diff --git a/blockchains/everscale/info/square_logo.png b/blockchains/everscale/info/square_logo.png new file mode 100644 index 00000000..f7cd0287 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 new file mode 100644 index 00000000..1ffc9eb1 --- /dev/null +++ b/blockchains/evmos/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Evmos", + "website": "https://evmos.org", + "description": "Evmos is bringing the world of Ethereum-based applications and assets to the interoperable networks of the Cosmos ecosystem, all while aligning developer and user incentives. Let’s adventure together into the world of innovation where EVM meets interchain composability.", + "explorer": "https://evm.evmos.org", + "research": "", + "symbol": "EVMOS", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/tharsis/evmos" + }, + { + "name": "x", + "url": "https://x.com/EvmosOrg" + }, + { + "name": "discord", + "url": "https://discord.com/invite/evmos" + }, + { + "name": "telegram", + "url": "https://t.me/EvmosOrg" + } + ] +} \ No newline at end of file diff --git a/blockchains/evmos/info/logo.png b/blockchains/evmos/info/logo.png new file mode 100644 index 00000000..e78f6fc0 Binary files /dev/null and b/blockchains/evmos/info/logo.png differ diff --git a/blockchains/evmos/info/square_logo.png b/blockchains/evmos/info/square_logo.png new file mode 100644 index 00000000..259a5423 Binary files /dev/null and b/blockchains/evmos/info/square_logo.png differ diff --git a/blockchains/fantom/assets/0x04068DA6C83AFCFA0e13ba15A6696662335D5B75/info.json b/blockchains/fantom/assets/0x04068DA6C83AFCFA0e13ba15A6696662335D5B75/info.json new file mode 100644 index 00000000..f0fc0f48 --- /dev/null +++ b/blockchains/fantom/assets/0x04068DA6C83AFCFA0e13ba15A6696662335D5B75/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://ftmscan.com/token/0x04068da6c83afcfa0e13ba15a6696662335d5b75", + "type": "FANTOM", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x04068DA6C83AFCFA0e13ba15A6696662335D5B75", + "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/fantom/assets/0x04068DA6C83AFCFA0e13ba15A6696662335D5B75/logo.png b/blockchains/fantom/assets/0x04068DA6C83AFCFA0e13ba15A6696662335D5B75/logo.png new file mode 100644 index 00000000..eafbaac1 Binary files /dev/null and b/blockchains/fantom/assets/0x04068DA6C83AFCFA0e13ba15A6696662335D5B75/logo.png differ diff --git a/blockchains/fantom/assets/0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1/info.json b/blockchains/fantom/assets/0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1/info.json new file mode 100644 index 00000000..bc08adfa --- /dev/null +++ b/blockchains/fantom/assets/0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1/info.json @@ -0,0 +1,56 @@ +{ + "name": "Ankr Network", + "type": "FANTOM", + "symbol": "ANKR", + "decimals": 18, + "website": "https://ankr.com", + "description": "Ankr is building an infrastructure platform and marketplace for Web3-stack deployment", + "explorer": "https://ftmscan.com/token/0x0615dbba33fe61a31c7ed131bda6655ed76748b1", + "status": "active", + "id": "0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1", + "links": [ + { + "name": "x", + "url": "https://x.com/ankr" + }, + { + "name": "github", + "url": "https://github.com/Ankr-network" + }, + { + "name": "telegram", + "url": "https://t.me/ankrnetwork" + }, + { + "name": "docs", + "url": "https://ankr.com/docs/staking/overview" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Ankrofficial/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@AnkrOfficial" + }, + { + "name": "whitepaper", + "url": "https://ankr.com/ankr-whitepaper-2.0.pdf" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ankr" + }, + { + "name": "medium", + "url": "https://medium.com/ankr-network" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ankr-network" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1/logo.png b/blockchains/fantom/assets/0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1/logo.png new file mode 100644 index 00000000..1660741a Binary files /dev/null and b/blockchains/fantom/assets/0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1/logo.png differ diff --git a/blockchains/fantom/assets/0x0E1694483eBB3b74d3054E383840C6cf011e518e/info.json b/blockchains/fantom/assets/0x0E1694483eBB3b74d3054E383840C6cf011e518e/info.json new file mode 100644 index 00000000..1bde944f --- /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 00000000..b26b625a 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 new file mode 100644 index 00000000..3114d4d9 --- /dev/null +++ b/blockchains/fantom/assets/0x1B6382DBDEa11d97f24495C9A90b7c88469134a4/info.json @@ -0,0 +1,69 @@ +{ + "name": "Axelar Wrapped USDC", + "type": "FANTOM", + "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://ftmscan.com/token/0x1B6382DBDEa11d97f24495C9A90b7c88469134a4", + "status": "active", + "id": "0x1B6382DBDEa11d97f24495C9A90b7c88469134a4", + "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/fantom/assets/0x1B6382DBDEa11d97f24495C9A90b7c88469134a4/logo.png b/blockchains/fantom/assets/0x1B6382DBDEa11d97f24495C9A90b7c88469134a4/logo.png new file mode 100644 index 00000000..69911cae Binary files /dev/null and b/blockchains/fantom/assets/0x1B6382DBDEa11d97f24495C9A90b7c88469134a4/logo.png differ diff --git a/blockchains/fantom/assets/0x1E4F97b9f9F913c46F1632781732927B9019C68b/info.json b/blockchains/fantom/assets/0x1E4F97b9f9F913c46F1632781732927B9019C68b/info.json new file mode 100644 index 00000000..17bf4b9b --- /dev/null +++ b/blockchains/fantom/assets/0x1E4F97b9f9F913c46F1632781732927B9019C68b/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/0x1E4F97b9f9F913c46F1632781732927B9019C68b", + "type": "FANTOM", + "symbol": "CRV", + "decimals": 18, + "status": "abandoned", + "id": "0x1E4F97b9f9F913c46F1632781732927B9019C68b", + "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/0x21Ada0D2aC28C3A5Fa3cD2eE30882dA8812279B6/info.json b/blockchains/fantom/assets/0x21Ada0D2aC28C3A5Fa3cD2eE30882dA8812279B6/info.json new file mode 100644 index 00000000..c6bb37a5 --- /dev/null +++ b/blockchains/fantom/assets/0x21Ada0D2aC28C3A5Fa3cD2eE30882dA8812279B6/info.json @@ -0,0 +1,28 @@ +{ + "name": "Oath", + "website": "https://www.bytemasons.com/", + "description": "The Byte Masons are a development collective pursuing open, secure and reliable systems focused on helping users navigate the new web and Decentralized Finance (DeFi).", + "explorer": "https://ftmscan.com/token/0x21ada0d2ac28c3a5fa3cd2ee30882da8812279b6", + "type": "FANTOM", + "symbol": "OATH", + "decimals": 18, + "status": "active", + "id": "0x21Ada0D2aC28C3A5Fa3cD2eE30882dA8812279B6", + "tags": [ + "defi" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oath/" + }, + { + "name": "x", + "url": "https://x.com/ByteMasons" + }, + { + "name": "medium", + "url": "https://medium.com/byte-masons" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x21Ada0D2aC28C3A5Fa3cD2eE30882dA8812279B6/logo.png b/blockchains/fantom/assets/0x21Ada0D2aC28C3A5Fa3cD2eE30882dA8812279B6/logo.png new file mode 100644 index 00000000..7d649234 Binary files /dev/null and b/blockchains/fantom/assets/0x21Ada0D2aC28C3A5Fa3cD2eE30882dA8812279B6/logo.png differ diff --git a/blockchains/fantom/assets/0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83/info.json b/blockchains/fantom/assets/0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83/info.json new file mode 100644 index 00000000..a08a9706 --- /dev/null +++ b/blockchains/fantom/assets/0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83/info.json @@ -0,0 +1,33 @@ +{ + "name": "Wrapped Fantom", + "website": "https://fantom.foundation/defi/", + "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.", + "explorer": "https://ftmscan.com/token/0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83", + "type": "FANTOM", + "symbol": "WFTM", + "decimals": 18, + "status": "active", + "id": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Fantom_English" + }, + { + "name": "x", + "url": "https://x.com/FantomFDN" + }, + { + "name": "medium", + "url": "https://medium.com/fantomfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantom/" + } + ], + "tags": [ + "defi", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83/logo.png b/blockchains/fantom/assets/0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83/logo.png new file mode 100644 index 00000000..1fd67122 Binary files /dev/null and b/blockchains/fantom/assets/0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83/logo.png differ diff --git a/blockchains/fantom/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json b/blockchains/fantom/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json new file mode 100644 index 00000000..51108257 --- /dev/null +++ b/blockchains/fantom/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json @@ -0,0 +1,47 @@ +{ + "name": "EverRise NFT Stakes", + "type": "FANTOM", + "symbol": "nftRISE", + "decimals": 0, + "website": "https://www.everrise.com/", + "description": "EverRise Staking NFTs are containers of Vote Escrowed (ve)EverRise weighted governance tokens. veRISE generates rewards from the auto-buyback with a market driven yield curve, based on the transaction volume of EverRise trades and veEverRise sales.", + "explorer": "https://ftmscan.com/token/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", + "status": "active", + "id": "0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", + "links": [ + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png b/blockchains/fantom/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png new file mode 100644 index 00000000..4272c382 Binary files /dev/null and b/blockchains/fantom/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png differ diff --git a/blockchains/fantom/assets/0x29b0Da86e484E1C0029B56e817912d778aC0EC69/info.json b/blockchains/fantom/assets/0x29b0Da86e484E1C0029B56e817912d778aC0EC69/info.json new file mode 100644 index 00000000..c567e8ec --- /dev/null +++ b/blockchains/fantom/assets/0x29b0Da86e484E1C0029B56e817912d778aC0EC69/info.json @@ -0,0 +1,33 @@ +{ + "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://ftmscan.com/token/0x29b0Da86e484E1C0029B56e817912d778aC0EC69", + "type": "FANTOM", + "symbol": "YFI", + "decimals": 18, + "status": "active", + "id": "0x29b0Da86e484E1C0029B56e817912d778aC0EC69", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/iearn-finance" + }, + { + "name": "x", + "url": "https://x.com/iearnfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/yearn-finance/" + }, + { + "name": "whitepaper", + "url": "https://docs.yearn.finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x29b0Da86e484E1C0029B56e817912d778aC0EC69/logo.png b/blockchains/fantom/assets/0x29b0Da86e484E1C0029B56e817912d778aC0EC69/logo.png new file mode 100644 index 00000000..60faeccc Binary files /dev/null and b/blockchains/fantom/assets/0x29b0Da86e484E1C0029B56e817912d778aC0EC69/logo.png differ diff --git a/blockchains/fantom/assets/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212/info.json b/blockchains/fantom/assets/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212/info.json new file mode 100644 index 00000000..86458150 --- /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 00000000..067502d9 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 00000000..4c9be581 --- /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 00000000..cb6c4903 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 00000000..595bd45f --- /dev/null +++ b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/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://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 00000000..f983849d Binary files /dev/null and b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png differ diff --git a/blockchains/fantom/assets/0x321162Cd933E2Be498Cd2267a90534A804051b11/info.json b/blockchains/fantom/assets/0x321162Cd933E2Be498Cd2267a90534A804051b11/info.json new file mode 100644 index 00000000..c96c4340 --- /dev/null +++ b/blockchains/fantom/assets/0x321162Cd933E2Be498Cd2267a90534A804051b11/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://ftmscan.com/token/0x321162Cd933E2Be498Cd2267a90534A804051b11", + "type": "FANTOM", + "symbol": "BTC", + "decimals": 8, + "status": "active", + "id": "0x321162Cd933E2Be498Cd2267a90534A804051b11", + "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/fantom/assets/0x321162Cd933E2Be498Cd2267a90534A804051b11/logo.png b/blockchains/fantom/assets/0x321162Cd933E2Be498Cd2267a90534A804051b11/logo.png new file mode 100644 index 00000000..702d64a2 Binary files /dev/null and b/blockchains/fantom/assets/0x321162Cd933E2Be498Cd2267a90534A804051b11/logo.png differ diff --git a/blockchains/fantom/assets/0x408e41876cCCDC0F92210600ef50372656052a38/info.json b/blockchains/fantom/assets/0x408e41876cCCDC0F92210600ef50372656052a38/info.json new file mode 100644 index 00000000..3bf5387e --- /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 00000000..8a5543ce 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 00000000..8e35a084 --- /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 00000000..6f22734f 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 00000000..b743e0c7 --- /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 00000000..44c118da 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 new file mode 100644 index 00000000..f37930d9 --- /dev/null +++ b/blockchains/fantom/assets/0x468003B688943977e6130F4F68F23aad939a1040/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://ftmscan.com/token/0x468003b688943977e6130f4f68f23aad939a1040", + "type": "FANTOM", + "symbol": "SPELL", + "decimals": 18, + "status": "active", + "id": "0x468003B688943977e6130F4F68F23aad939a1040", + "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/fantom/assets/0x468003B688943977e6130F4F68F23aad939a1040/logo.png b/blockchains/fantom/assets/0x468003B688943977e6130F4F68F23aad939a1040/logo.png new file mode 100644 index 00000000..fc7438b7 Binary files /dev/null and b/blockchains/fantom/assets/0x468003B688943977e6130F4F68F23aad939a1040/logo.png differ diff --git a/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/info.json b/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/info.json new file mode 100644 index 00000000..12e37f9e --- /dev/null +++ b/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/info.json @@ -0,0 +1,29 @@ +{ + "name": "Band Protocol", + "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", + "research": "https://research.binance.com/en/projects/band-protocol", + "type": "FANTOM", + "symbol": "BAND", + "decimals": 18, + "status": "active", + "id": "0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/BandProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/bandprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/band-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/logo.png b/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/logo.png new file mode 100644 index 00000000..9db68a25 Binary files /dev/null and b/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/logo.png differ diff --git a/blockchains/fantom/assets/0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9/info.json b/blockchains/fantom/assets/0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9/info.json new file mode 100644 index 00000000..5b1d206b --- /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 00000000..5bee9eee 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 new file mode 100644 index 00000000..147c2914 --- /dev/null +++ b/blockchains/fantom/assets/0x4cdF39285D7Ca8eB3f090fDA0C069ba5F4145B37/info.json @@ -0,0 +1,28 @@ +{ + "name": "TSHARE", + "website": "https://tomb.finance/", + "description": "TSHARE holders have voting rights (governance) on proposals to improve the protocol and future use cases within the Tomb finance ecosystem.", + "explorer": "https://ftmscan.com/token/0x4cdf39285d7ca8eb3f090fda0c069ba5f4145b37", + "type": "FANTOM", + "symbol": "TSHARE", + "decimals": 18, + "status": "active", + "id": "0x4cdF39285D7Ca8eB3f090fDA0C069ba5F4145B37", + "tags": [ + "governance" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/tombfinance" + }, + { + "name": "telegram", + "url": "https://t.me/tombfinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/tomb-shares/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x4cdF39285D7Ca8eB3f090fDA0C069ba5F4145B37/logo.png b/blockchains/fantom/assets/0x4cdF39285D7Ca8eB3f090fDA0C069ba5F4145B37/logo.png new file mode 100644 index 00000000..987282bd Binary files /dev/null and b/blockchains/fantom/assets/0x4cdF39285D7Ca8eB3f090fDA0C069ba5F4145B37/logo.png differ diff --git a/blockchains/fantom/assets/0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc/info.json b/blockchains/fantom/assets/0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc/info.json new file mode 100644 index 00000000..d01e509c --- /dev/null +++ b/blockchains/fantom/assets/0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc/info.json @@ -0,0 +1,32 @@ +{ + "name": "Synthetix Network", + "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", + "type": "FANTOM", + "symbol": "SNX", + "decimals": 18, + "status": "active", + "id": "0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/synthetixio" + }, + { + "name": "x", + "url": "https://x.com/synthetix_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/synthetix-network-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/havven/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc/logo.png b/blockchains/fantom/assets/0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc/logo.png new file mode 100644 index 00000000..2a850de0 Binary files /dev/null and b/blockchains/fantom/assets/0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc/logo.png differ diff --git a/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/info.json b/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/info.json new file mode 100644 index 00000000..f95a98b1 --- /dev/null +++ b/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/info.json @@ -0,0 +1,48 @@ +{ + "name": "Hector Finance", + "website": "https://hector.finance", + "description": "Hector Finance is developing a financial center on the Fantom Opera Chain and beyond.", + "explorer": "https://ftmscan.com/token/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0", + "type": "FANTOM", + "symbol": "HEC", + "decimals": 9, + "status": "active", + "id": "0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/HectorDAO_HEC" + }, + { + "name": "medium", + "url": "https://medium.com/@hectordao" + }, + { + "name": "whitepaper", + "url": "https://hector.finance/whitepaper" + }, + { + "name": "telegram", + "url": "https://t.me/hectorDAO" + }, + { + "name": "telegram_news", + "url": "https://t.me/hectordaoann" + }, + { + "name": "github", + "url": "https://github.com/Hector-DAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hector-dao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hector-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/logo.png b/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/logo.png new file mode 100644 index 00000000..46040ed8 Binary files /dev/null and b/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/logo.png differ diff --git a/blockchains/fantom/assets/0x5Cc61A78F164885776AA610fb0FE1257df78E59B/info.json b/blockchains/fantom/assets/0x5Cc61A78F164885776AA610fb0FE1257df78E59B/info.json new file mode 100644 index 00000000..ee319b92 --- /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 00000000..4d44d7f8 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 00000000..60aea8c4 --- /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 00000000..1baed04d 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 new file mode 100644 index 00000000..0cdf90da --- /dev/null +++ b/blockchains/fantom/assets/0x658b0c7613e890EE50B8C4BC6A3f41ef411208aD/info.json @@ -0,0 +1,32 @@ +{ + "name": "fETH", + "website": "https://fantom.foundation/defi/", + "description": "fETH (ETH FETH) is a token issued by Binance on Smart Chain; its price is pegged to Ethereum (ETH) at a ratio of 1:1.", + "explorer": "https://ftmscan.com/token/0x658b0c7613e890ee50b8c4bc6a3f41ef411208ad", + "type": "FANTOM", + "symbol": "FETH", + "decimals": 18, + "status": "active", + "id": "0x658b0c7613e890EE50B8C4BC6A3f41ef411208aD", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Fantom_English" + }, + { + "name": "x", + "url": "https://x.com/FantomFDN" + }, + { + "name": "medium", + "url": "https://medium.com/fantomfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ethereum/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x658b0c7613e890EE50B8C4BC6A3f41ef411208aD/logo.png b/blockchains/fantom/assets/0x658b0c7613e890EE50B8C4BC6A3f41ef411208aD/logo.png new file mode 100644 index 00000000..8651e048 Binary files /dev/null and b/blockchains/fantom/assets/0x658b0c7613e890EE50B8C4BC6A3f41ef411208aD/logo.png differ diff --git a/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/info.json b/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/info.json new file mode 100644 index 00000000..734cfda5 --- /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 00000000..5cd7c399 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 00000000..454a04f1 --- /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 00000000..1f750ac9 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 new file mode 100644 index 00000000..8730bb68 --- /dev/null +++ b/blockchains/fantom/assets/0x69c744D3444202d35a2783929a0F930f2FBB05ad/info.json @@ -0,0 +1,32 @@ +{ + "name": "Staked FTM", + "website": "https://fantom.foundation/defi/", + "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.", + "explorer": "https://ftmscan.com/token/0x69c744d3444202d35a2783929a0f930f2fbb05ad", + "type": "FANTOM", + "symbol": "SFTM", + "decimals": 18, + "status": "active", + "id": "0x69c744D3444202d35a2783929a0F930f2FBB05ad", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Fantom_English" + }, + { + "name": "x", + "url": "https://x.com/FantomFDN" + }, + { + "name": "medium", + "url": "https://medium.com/fantomfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantom/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x69c744D3444202d35a2783929a0F930f2FBB05ad/logo.png b/blockchains/fantom/assets/0x69c744D3444202d35a2783929a0F930f2FBB05ad/logo.png new file mode 100644 index 00000000..9cc9116a Binary files /dev/null and b/blockchains/fantom/assets/0x69c744D3444202d35a2783929a0F930f2FBB05ad/logo.png differ diff --git a/blockchains/fantom/assets/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B/info.json b/blockchains/fantom/assets/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B/info.json new file mode 100644 index 00000000..7d0e6f96 --- /dev/null +++ b/blockchains/fantom/assets/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B/info.json @@ -0,0 +1,51 @@ + +{ + "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://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", + "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/fantom/assets/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B/logo.png b/blockchains/fantom/assets/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B/logo.png new file mode 100644 index 00000000..d53b1142 Binary files /dev/null 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 new file mode 100644 index 00000000..340c0c45 --- /dev/null +++ b/blockchains/fantom/assets/0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e/info.json @@ -0,0 +1,49 @@ +{ + "name": "TOR Stablecoin", + "website": "https://tor.cash", + "description": "TOR is a fully collateralized, backed by the Hector Finance Treasury, stablecoin built on the Fantom Opera Chain.", + "explorer": "https://ftmscan.com/token/0x74e23df9110aa9ea0b6ff2faee01e740ca1c642e", + "type": "FANTOM", + "symbol": "TOR", + "decimals": 18, + "status": "active", + "id": "0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/HectorDAO_HEC" + }, + { + "name": "medium", + "url": "https://medium.com/@hectordao" + }, + { + "name": "whitepaper", + "url": "https://docs.hector.finance/the-tor-stablecoin/the-tor-stablecoin" + }, + { + "name": "telegram", + "url": "https://t.me/hectorDAO" + }, + { + "name": "telegram_news", + "url": "https://t.me/hectordaoann" + }, + { + "name": "github", + "url": "https://github.com/Hector-DAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tor/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tor" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e/logo.png b/blockchains/fantom/assets/0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e/logo.png new file mode 100644 index 00000000..ecd893ef Binary files /dev/null and b/blockchains/fantom/assets/0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e/logo.png differ diff --git a/blockchains/fantom/assets/0x75bdeF24285013387A47775828bEC90b91Ca9a5F/info.json b/blockchains/fantom/assets/0x75bdeF24285013387A47775828bEC90b91Ca9a5F/info.json new file mode 100644 index 00000000..176d62b0 --- /dev/null +++ b/blockchains/fantom/assets/0x75bdeF24285013387A47775828bEC90b91Ca9a5F/info.json @@ -0,0 +1,40 @@ +{ + "name": "Staked Hector", + "website": "https://hector.finance", + "description": "Staked version of Hector (HEC) Token", + "explorer": "https://ftmscan.com/token/0x75bdeF24285013387A47775828bEC90b91Ca9a5F", + "type": "FANTOM", + "symbol": "sHEC", + "decimals": 9, + "status": "active", + "id": "0x75bdeF24285013387A47775828bEC90b91Ca9a5F", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/HectorDAO_HEC" + }, + { + "name": "medium", + "url": "https://medium.com/@hectordao" + }, + { + "name": "whitepaper", + "url": "https://hector.finance/whitepaper" + }, + { + "name": "telegram", + "url": "https://t.me/hectorDAO" + }, + { + "name": "telegram_news", + "url": "https://t.me/hectordaoann" + }, + { + "name": "github", + "url": "https://github.com/Hector-DAO" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x75bdeF24285013387A47775828bEC90b91Ca9a5F/logo.png b/blockchains/fantom/assets/0x75bdeF24285013387A47775828bEC90b91Ca9a5F/logo.png new file mode 100644 index 00000000..ce524bb6 Binary files /dev/null and b/blockchains/fantom/assets/0x75bdeF24285013387A47775828bEC90b91Ca9a5F/logo.png differ diff --git a/blockchains/fantom/assets/0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a/info.json b/blockchains/fantom/assets/0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a/info.json new file mode 100644 index 00000000..bbe80ca0 --- /dev/null +++ b/blockchains/fantom/assets/0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a/info.json @@ -0,0 +1,33 @@ +{ + "name": "Frax Share", + "website": "https://frax.finance/", + "description": "FXS is the value accrual and governance token of the entire Frax ecosystem. Frax is a fractional-algorithmic stablecoin protocol. It aims to provide highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC.", + "explorer": "https://ftmscan.com/token/0x7d016eec9c25232b01f23ef992d98ca97fc2af5a", + "type": "FANTOM", + "symbol": "FXS", + "decimals": 18, + "status": "active", + "id": "0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/fraxfinance/frax-solidity" + }, + { + "name": "x", + "url": "https://x.com/fraxfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/frax-share/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/frax-share/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a/logo.png b/blockchains/fantom/assets/0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a/logo.png new file mode 100644 index 00000000..575ed686 Binary files /dev/null and b/blockchains/fantom/assets/0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a/logo.png differ diff --git a/blockchains/fantom/assets/0x82f0B8B456c1A451378467398982d4834b6829c1/info.json b/blockchains/fantom/assets/0x82f0B8B456c1A451378467398982d4834b6829c1/info.json new file mode 100644 index 00000000..a0cfeac8 --- /dev/null +++ b/blockchains/fantom/assets/0x82f0B8B456c1A451378467398982d4834b6829c1/info.json @@ -0,0 +1,32 @@ +{ + "name": "Magic Internet Money", + "website": "https://abracadabra.money/", + "description": "MIM is a stablecoin backed by interest bearing collateral", + "explorer": "https://ftmscan.com/token/0x82f0b8b456c1a451378467398982d4834b6829c1", + "type": "FANTOM", + "symbol": "MIM", + "decimals": 18, + "status": "active", + "id": "0x82f0B8B456c1A451378467398982d4834b6829c1", + "links": [ + { + "name": "github", + "url": "https://github.com/Abracadabra-money/magic-internet-money" + }, + { + "name": "x", + "url": "https://x.com/MIM_Spell" + }, + { + "name": "medium", + "url": "https://abracadabramoney.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/magic-internet-money/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x82f0B8B456c1A451378467398982d4834b6829c1/logo.png b/blockchains/fantom/assets/0x82f0B8B456c1A451378467398982d4834b6829c1/logo.png new file mode 100644 index 00000000..fa1845e7 Binary files /dev/null and b/blockchains/fantom/assets/0x82f0B8B456c1A451378467398982d4834b6829c1/logo.png differ diff --git a/blockchains/fantom/assets/0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE/info.json b/blockchains/fantom/assets/0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE/info.json new file mode 100644 index 00000000..26a78bcc --- /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 00000000..ef7cade4 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 new file mode 100644 index 00000000..25727a76 --- /dev/null +++ b/blockchains/fantom/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/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://ftmscan.com/token/0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e", + "research": "https://research.binance.com/en/projects/dai", + "type": "FANTOM", + "symbol": "DAI", + "decimals": 18, + "status": "active", + "id": "0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E", + "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/fantom/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/logo.png b/blockchains/fantom/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/logo.png new file mode 100644 index 00000000..836fe787 Binary files /dev/null and b/blockchains/fantom/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/logo.png differ diff --git a/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json b/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json new file mode 100644 index 00000000..1aeacafc --- /dev/null +++ b/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json @@ -0,0 +1,68 @@ +{ + "name": "Axelar", + "type": "FANTOM", + "symbol": "AXL", + "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://ftmscan.com/token/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65", + "status": "active", + "id": "0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65", + "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" + }, + { + "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/axelar/" + }, + { + "name": "blog", + "url": "https://axelar.network/blog" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Axelarcore" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/logo.png b/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/logo.png new file mode 100644 index 00000000..6c156aba Binary files /dev/null and b/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/logo.png differ diff --git a/blockchains/fantom/assets/0x94CcF60f700146BeA8eF7832820800E2dFa92EdA/info.json b/blockchains/fantom/assets/0x94CcF60f700146BeA8eF7832820800E2dFa92EdA/info.json new file mode 100644 index 00000000..e0ff4411 --- /dev/null +++ b/blockchains/fantom/assets/0x94CcF60f700146BeA8eF7832820800E2dFa92EdA/info.json @@ -0,0 +1,48 @@ +{ + "name": "Wrapped sHEC", + "website": "https://hector.finance", + "description": "Wrapped Staked version of Hector Token", + "explorer": "https://ftmscan.com/token/0x94CcF60f700146BeA8eF7832820800E2dFa92EdA", + "type": "FANTOM", + "symbol": "wsHEC", + "decimals": 18, + "status": "active", + "id": "0x94CcF60f700146BeA8eF7832820800E2dFa92EdA", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/HectorDAO_HEC" + }, + { + "name": "medium", + "url": "https://medium.com/@hectordao" + }, + { + "name": "whitepaper", + "url": "https://hector.finance/whitepaper" + }, + { + "name": "telegram", + "url": "https://t.me/hectorDAO" + }, + { + "name": "telegram_news", + "url": "https://t.me/hectordaoann" + }, + { + "name": "github", + "url": "https://github.com/Hector-DAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-staked-hec/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-hec" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x94CcF60f700146BeA8eF7832820800E2dFa92EdA/logo.png b/blockchains/fantom/assets/0x94CcF60f700146BeA8eF7832820800E2dFa92EdA/logo.png new file mode 100644 index 00000000..5335c3e5 Binary files /dev/null and b/blockchains/fantom/assets/0x94CcF60f700146BeA8eF7832820800E2dFa92EdA/logo.png differ diff --git a/blockchains/fantom/assets/0x9564fBfD3B3819D6Fb2DbC88C75E112400bE8F0C/info.json b/blockchains/fantom/assets/0x9564fBfD3B3819D6Fb2DbC88C75E112400bE8F0C/info.json new file mode 100644 index 00000000..ebe0af84 --- /dev/null +++ b/blockchains/fantom/assets/0x9564fBfD3B3819D6Fb2DbC88C75E112400bE8F0C/info.json @@ -0,0 +1,29 @@ +{ + "name": "OWL", + "website": "https://owldao.io", + "description": "OwlDAO - Build the Best Casino Solution on Ethereum Networks.", + "research": "https://docs.owl.games/the-owl-token/tokenomics", + "explorer": "https://ftmscan.com/token/0x9564fbfd3b3819d6fb2dbc88c75e112400be8f0c", + "type": "FANTOM", + "symbol": "OWL", + "decimals": 18, + "status": "active", + "id": "0x9564fBfD3B3819D6Fb2DbC88C75E112400bE8F0C", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/OWLDAOio" + }, + { + "name": "telegram", + "url": "https://t.me/owlDAO" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8MUcukEKnC" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x9564fBfD3B3819D6Fb2DbC88C75E112400bE8F0C/logo.png b/blockchains/fantom/assets/0x9564fBfD3B3819D6Fb2DbC88C75E112400bE8F0C/logo.png new file mode 100644 index 00000000..44b1ce30 Binary files /dev/null and b/blockchains/fantom/assets/0x9564fBfD3B3819D6Fb2DbC88C75E112400bE8F0C/logo.png differ diff --git a/blockchains/fantom/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json b/blockchains/fantom/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json new file mode 100644 index 00000000..b55660ba --- /dev/null +++ b/blockchains/fantom/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json @@ -0,0 +1,33 @@ +{ + "name": "Multichain", + "type": "FANTOM", + "symbol": "MULTI", + "decimals": 18, + "website": "https://multichain.org/", + "description": "Multichain is a cross-chain router protocol (CRP), to be the ultimate router for Web3.", + "explorer": "https://ftmscan.com/token/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3", + "status": "active", + "id": "0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3", + "links": [ + { + "name": "x", + "url": "https://x.com/multichainorg" + }, + { + "name": "github", + "url": "https://github.com/anyswap" + }, + { + "name": "telegram", + "url": "https://t.me/anyswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multichain/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/multichain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/logo.png b/blockchains/fantom/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/logo.png new file mode 100644 index 00000000..9d7b0435 Binary files /dev/null and b/blockchains/fantom/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/logo.png differ diff --git a/blockchains/fantom/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/info.json b/blockchains/fantom/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/info.json new file mode 100644 index 00000000..00d9c6dd --- /dev/null +++ b/blockchains/fantom/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/info.json @@ -0,0 +1,33 @@ +{ + "name": "Band Protocol", + "symbol": "BAND", + "type": "FANTOM", + "decimals": 18, + "description": "Band Protocol is a cross-chain data oracle network that aggregates and connects real-world data and APIs to smart contracts.", + "website": "https://bandprotocol.com", + "explorer": "https://ftmscan.com/token/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55", + "research": "https://research.binance.com/en/projects/band-protocol", + "status": "active", + "id": "0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55", + "links": [ + { + "name": "github", + "url": "https://github.com/bandprotocol" + }, + { + "name": "x", + "url": "https://x.com/BandProtocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/band-protocol/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/band-protocol/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png b/blockchains/fantom/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png new file mode 100644 index 00000000..9db68a25 Binary files /dev/null and b/blockchains/fantom/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png differ diff --git a/blockchains/fantom/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json b/blockchains/fantom/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json new file mode 100644 index 00000000..1d7b0aed --- /dev/null +++ b/blockchains/fantom/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json @@ -0,0 +1,55 @@ +{ + "name": "EverRise", + "type": "FANTOM", + "symbol": "RISE", + "decimals": 18, + "website": "https://www.everrise.com/", + "description": "The Original Buyback Token Powering The EverRise Ecosystem. EverRise token (RISE) is a multi-chain collateralized cryptocurrency that protects both the ecosystem and investors with its innovative buyback and staking protocol.", + "explorer": "https://ftmscan.com/token/0xC17c30e98541188614dF99239cABD40280810cA3", + "status": "active", + "id": "0xC17c30e98541188614dF99239cABD40280810cA3", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/everrise/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/everrise" + }, + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png b/blockchains/fantom/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png new file mode 100644 index 00000000..fb9f7a63 Binary files /dev/null and b/blockchains/fantom/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png differ diff --git a/blockchains/fantom/assets/0xC758295Cd1A564cdb020a78a681a838CF8e0627D/info.json b/blockchains/fantom/assets/0xC758295Cd1A564cdb020a78a681a838CF8e0627D/info.json new file mode 100644 index 00000000..d6282a2d --- /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 00000000..10b1a033 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 new file mode 100644 index 00000000..573b2fad --- /dev/null +++ b/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/info.json @@ -0,0 +1,56 @@ +{ + "name": "Ankr Staked FTM", + "type": "FANTOM", + "symbol": "ankrFTM", + "decimals": 18, + "website": "https://ankr.com", + "description": "ankrFTM represents your staked FTM and provides liquidity for your staked position. All staking rewards are built into the token price, and ankrFTM grows daily in value, but never in number", + "explorer": "https://ftmscan.com/token/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179", + "status": "active", + "id": "0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179", + "links": [ + { + "name": "x", + "url": "https://x.com/ankr" + }, + { + "name": "github", + "url": "https://github.com/Ankr-network" + }, + { + "name": "telegram", + "url": "https://t.me/ankrnetwork" + }, + { + "name": "docs", + "url": "https://ankr.com/docs/staking/overview" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Ankrofficial/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@AnkrOfficial" + }, + { + "name": "whitepaper", + "url": "https://ankr.com/ankr-whitepaper-2.0.pdf" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ankr" + }, + { + "name": "medium", + "url": "https://medium.com/ankr-network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ankr-reward-bearing-ftm/" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/logo.png b/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/logo.png new file mode 100644 index 00000000..bdded7aa Binary files /dev/null and b/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/logo.png differ diff --git a/blockchains/fantom/assets/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E/info.json b/blockchains/fantom/assets/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E/info.json new file mode 100644 index 00000000..17ea5cb6 --- /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 00000000..6ef5918f 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 00000000..e2c31cb7 --- /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 00000000..fd77fd18 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 new file mode 100644 index 00000000..edb89dfe --- /dev/null +++ b/blockchains/fantom/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json @@ -0,0 +1,47 @@ +{ + "name": "Vote-escrowed EverRise", + "type": "FANTOM", + "symbol": "veRISE", + "decimals": 18, + "website": "https://www.everrise.com/", + "description": "Virtual token that allows the Vote Escrowed (ve) EverRise weighted governance tokens from EverRise Staking NFTs to display in wallet balances.", + "explorer": "https://ftmscan.com/token/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", + "status": "active", + "id": "0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", + "links": [ + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png b/blockchains/fantom/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png new file mode 100644 index 00000000..47ffbe08 Binary files /dev/null and b/blockchains/fantom/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png differ diff --git a/blockchains/fantom/assets/0xE55e19Fb4F2D85af758950957714292DAC1e25B2/info.json b/blockchains/fantom/assets/0xE55e19Fb4F2D85af758950957714292DAC1e25B2/info.json new file mode 100644 index 00000000..51734fa8 --- /dev/null +++ b/blockchains/fantom/assets/0xE55e19Fb4F2D85af758950957714292DAC1e25B2/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://ftmscan.com/token/0xe55e19fb4f2d85af758950957714292dac1e25b2", + "type": "FANTOM", + "symbol": "SYN", + "decimals": 18, + "status": "active", + "id": "0xE55e19Fb4F2D85af758950957714292DAC1e25B2", + "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/fantom/assets/0xE55e19Fb4F2D85af758950957714292DAC1e25B2/logo.png b/blockchains/fantom/assets/0xE55e19Fb4F2D85af758950957714292DAC1e25B2/logo.png new file mode 100644 index 00000000..577673c4 Binary files /dev/null and b/blockchains/fantom/assets/0xE55e19Fb4F2D85af758950957714292DAC1e25B2/logo.png differ diff --git a/blockchains/fantom/assets/0xE6c259bc0FCE25b71fE95A00361D3878E16232C3/info.json b/blockchains/fantom/assets/0xE6c259bc0FCE25b71fE95A00361D3878E16232C3/info.json new file mode 100644 index 00000000..21e7db65 --- /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 00000000..b820f250 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 00000000..83369873 --- /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 00000000..9644ff85 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 new file mode 100644 index 00000000..2c9868df --- /dev/null +++ b/blockchains/fantom/assets/0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC/info.json @@ -0,0 +1,32 @@ +{ + "name": "Sushi", + "website": "https://sushiswap.org/", + "description": "The SushiSwap protocol realigns incentives for network participants by introducing revenue sharing and forum-driven network efforts to the popular AMM model.", + "explorer": "https://ftmscan.com/token/0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC", + "type": "FANTOM", + "symbol": "SUSHI", + "decimals": 18, + "status": "active", + "id": "0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/sushiswap" + }, + { + "name": "x", + "url": "https://x.com/sushiswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sushiswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/sushi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC/logo.png b/blockchains/fantom/assets/0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC/logo.png new file mode 100644 index 00000000..37523b87 Binary files /dev/null and b/blockchains/fantom/assets/0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC/logo.png differ diff --git a/blockchains/fantom/assets/0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8/info.json b/blockchains/fantom/assets/0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8/info.json new file mode 100644 index 00000000..e8649991 --- /dev/null +++ b/blockchains/fantom/assets/0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8/info.json @@ -0,0 +1,32 @@ +{ + "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://ftmscan.com/token/0xb3654dc3d10ea7645f8319668e8f54d2574fbdc8", + "type": "FANTOM", + "symbol": "LINK", + "decimals": 18, + "status": "active", + "id": "0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8", + "links": [ + { + "name": "telegram", + "url": "https://t.me/chainlinkofficial" + }, + { + "name": "x", + "url": "https://x.com/chainlink" + }, + { + "name": "blog", + "url": "https://blog.chain.link/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chainlink/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8/logo.png b/blockchains/fantom/assets/0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8/logo.png new file mode 100644 index 00000000..ab55f5e2 Binary files /dev/null and b/blockchains/fantom/assets/0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8/logo.png differ diff --git a/blockchains/fantom/assets/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274/info.json b/blockchains/fantom/assets/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274/info.json new file mode 100644 index 00000000..3fbe69a5 --- /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 00000000..daa8df26 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 new file mode 100644 index 00000000..653f4d2f --- /dev/null +++ b/blockchains/fantom/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json @@ -0,0 +1,47 @@ +{ + "name": "EverRise Rewards", + "type": "FANTOM", + "symbol": "claimRISE", + "decimals": 18, + "website": "https://www.everrise.com/", + "description": "Virtual token that allows unclaimed rewards from EverRise Staking NFTs and its Vote Escrowed (ve) EverRise to display in wallet balances.", + "explorer": "https://ftmscan.com/token/0xbBD7B847C6d0d0B5691518a363194D71426475F1", + "status": "active", + "id": "0xbBD7B847C6d0d0B5691518a363194D71426475F1", + "links": [ + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png b/blockchains/fantom/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png new file mode 100644 index 00000000..efff8d00 Binary files /dev/null and b/blockchains/fantom/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png differ diff --git a/blockchains/fantom/assets/0xc60D7067dfBc6f2caf30523a064f416A5Af52963/info.json b/blockchains/fantom/assets/0xc60D7067dfBc6f2caf30523a064f416A5Af52963/info.json new file mode 100644 index 00000000..215a4cfe --- /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 00000000..99c075fe 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 new file mode 100644 index 00000000..d17d0135 --- /dev/null +++ b/blockchains/fantom/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json @@ -0,0 +1,36 @@ +{ + "name": "Okcash", + "type": "FANTOM", + "symbol": "OK", + "decimals": 18, + "website": "https://okcash.co", + "description": "OK is the leading multi chain PoS, web3 + NFTs open source electronic cash, its design is public, nobody owns or controls Okcash and everyone can take part.", + "explorer": "https://ftmscan.com/token/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", + "status": "active", + "id": "0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", + "links": [ + { + "name": "x", + "url": "https://x.com/OkcashCrypto" + }, + { + "name": "github", + "url": "https://github.com/okcashpro" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/okcash/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/okcash" + }, + { + "name": "medium", + "url": "https://medium.com/okcash" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png b/blockchains/fantom/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png new file mode 100644 index 00000000..a3b20074 Binary files /dev/null and b/blockchains/fantom/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png differ diff --git a/blockchains/fantom/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json b/blockchains/fantom/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json new file mode 100644 index 00000000..62760ab8 --- /dev/null +++ b/blockchains/fantom/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json @@ -0,0 +1,37 @@ +{ + "name": "beefy.finance", + "website": "https://beefy.finance/", + "description": "The Multichain Yield Optimizer", + "explorer": "https://ftmscan.com/token/0xd6070ae98b8069de6b494332d1a1a81b6179d960", + "type": "FANTOM", + "symbol": "BIFI", + "decimals": 18, + "status": "active", + "id": "0xd6070ae98b8069de6B494332d1A1a81B6179D960", + "links": [ + { + "name": "github", + "url": "https://github.com/beefyfinance" + }, + { + "name": "x", + "url": "https://x.com/beefyfinance" + }, + { + "name": "telegram", + "url": "https://t.me/beefyannouncement" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/beefy-finance/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/beefy-finance/" + } + ], + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/logo.png b/blockchains/fantom/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/logo.png new file mode 100644 index 00000000..6c09bb9a Binary files /dev/null and b/blockchains/fantom/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/logo.png differ diff --git a/blockchains/fantom/assets/0xdc301622e621166BD8E82f2cA0A26c13Ad0BE355/info.json b/blockchains/fantom/assets/0xdc301622e621166BD8E82f2cA0A26c13Ad0BE355/info.json new file mode 100644 index 00000000..0fea4af5 --- /dev/null +++ b/blockchains/fantom/assets/0xdc301622e621166BD8E82f2cA0A26c13Ad0BE355/info.json @@ -0,0 +1,33 @@ +{ + "name": "Frax", + "website": "https://frax.finance/", + "description": "Frax is a fractional-algorithmic stablecoin protocol. It aims to provide highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC.", + "explorer": "https://ftmscan.com/token/0xdc301622e621166bd8e82f2ca0a26c13ad0be355", + "type": "FANTOM", + "symbol": "FRAX", + "decimals": 18, + "status": "active", + "id": "0xdc301622e621166BD8E82f2cA0A26c13Ad0BE355", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/fraxfinance/frax-solidity" + }, + { + "name": "x", + "url": "https://x.com/fraxfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/frax/" + }, + { + "name": "whitepaper", + "url": "https://docs.frax.finance/overview" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xdc301622e621166BD8E82f2cA0A26c13Ad0BE355/logo.png b/blockchains/fantom/assets/0xdc301622e621166BD8E82f2cA0A26c13Ad0BE355/logo.png new file mode 100644 index 00000000..39d22853 Binary files /dev/null and b/blockchains/fantom/assets/0xdc301622e621166BD8E82f2cA0A26c13Ad0BE355/logo.png differ diff --git a/blockchains/fantom/assets/0xe1146b9AC456fCbB60644c36Fd3F868A9072fc6E/info.json b/blockchains/fantom/assets/0xe1146b9AC456fCbB60644c36Fd3F868A9072fc6E/info.json new file mode 100644 index 00000000..95ad5388 --- /dev/null +++ b/blockchains/fantom/assets/0xe1146b9AC456fCbB60644c36Fd3F868A9072fc6E/info.json @@ -0,0 +1,32 @@ +{ + "name": "fBTC", + "website": "https://fantom.foundation/defi/", + "description": "Bitcoin FTM (FBTC) is a token on Binance Chain issued by Binance, where the price is pegged to BTC at a rate of 1 FTCB = 1 BTC.", + "explorer": "https://ftmscan.com/token/0xe1146b9ac456fcbb60644c36fd3f868a9072fc6e", + "type": "FANTOM", + "symbol": "FBTC", + "decimals": 18, + "status": "active", + "id": "0xe1146b9AC456fCbB60644c36Fd3F868A9072fc6E", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Fantom_English" + }, + { + "name": "x", + "url": "https://x.com/FantomFDN" + }, + { + "name": "medium", + "url": "https://medium.com/fantomfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcoin/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xe1146b9AC456fCbB60644c36Fd3F868A9072fc6E/logo.png b/blockchains/fantom/assets/0xe1146b9AC456fCbB60644c36Fd3F868A9072fc6E/logo.png new file mode 100644 index 00000000..fb2c6640 Binary files /dev/null and b/blockchains/fantom/assets/0xe1146b9AC456fCbB60644c36Fd3F868A9072fc6E/logo.png differ diff --git a/blockchains/fantom/assets/0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9/info.json b/blockchains/fantom/assets/0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9/info.json new file mode 100644 index 00000000..a9bc00d1 --- /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 00000000..e18dfb5f 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 00000000..c2e3448f --- /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 00000000..9259df4c 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 new file mode 100644 index 00000000..132a3987 --- /dev/null +++ b/blockchains/fantom/info/info.json @@ -0,0 +1,33 @@ +{ + "name": "Fantom", + "website": "https://fantom.foundation", + "description": "A DAG-Based Smart-Contract Platform.", + "explorer": "https://ftmscan.com", + "research": "https://research.binance.com/en/projects/fantom", + "symbol": "FTM", + "type": "coin", + "decimals": 18, + "rpc_url": "https://rpc.ftm.tools", + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/zS4Ek4WByA/" + }, + { + "name": "x", + "url": "https://x.com/FantomFDN" + }, + { + "name": "telegram", + "url": "https://t.me/fantomfoundation" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/FantomFoundation/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/info/logo.png b/blockchains/fantom/info/logo.png new file mode 100644 index 00000000..153c1b30 Binary files /dev/null and b/blockchains/fantom/info/logo.png differ diff --git a/blockchains/fantom/info/square_logo.png b/blockchains/fantom/info/square_logo.png new file mode 100644 index 00000000..7f2cd23f 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 new file mode 100644 index 00000000..ae813027 --- /dev/null +++ b/blockchains/fantom/tokenlist.json @@ -0,0 +1,182 @@ +{ + "name": "Trust Wallet: Fantom List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-07-14T17:19:11.183301", + "tokens": [ + { + "asset": "c10000250_t0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B", + "type": "FANTOM", + "address": "0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B", + "name": "Aave", + "symbol": "AAVE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E", + "type": "FANTOM", + "address": "0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E", + "name": "Dai Stablecoin", + "symbol": "DAI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8", + "type": "FANTOM", + "address": "0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8", + "name": "ChainLink", + "symbol": "LINK", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc", + "type": "FANTOM", + "address": "0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc", + "name": "Synthetix Network", + "symbol": "SNX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC", + "type": "FANTOM", + "address": "0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC", + "name": "Sushi", + "symbol": "SUSHI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0x04068DA6C83AFCFA0e13ba15A6696662335D5B75", + "type": "FANTOM", + "address": "0x04068DA6C83AFCFA0e13ba15A6696662335D5B75", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x04068DA6C83AFCFA0e13ba15A6696662335D5B75/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0x321162Cd933E2Be498Cd2267a90534A804051b11", + "type": "FANTOM", + "address": "0x321162Cd933E2Be498Cd2267a90534A804051b11", + "name": "Wrapped Bitcoin", + "symbol": "BTC", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x321162Cd933E2Be498Cd2267a90534A804051b11/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", + "type": "FANTOM", + "address": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", + "name": "Wrapped Fantom", + "symbol": "WFTM", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0x29b0Da86e484E1C0029B56e817912d778aC0EC69", + "type": "FANTOM", + "address": "0x29b0Da86e484E1C0029B56e817912d778aC0EC69", + "name": "yearn.finance", + "symbol": "YFI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x29b0Da86e484E1C0029B56e817912d778aC0EC69/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0xd6070ae98b8069de6B494332d1A1a81B6179D960", + "type": "FANTOM", + "address": "0xd6070ae98b8069de6B494332d1A1a81B6179D960", + "name": "beefy.finance", + "symbol": "BIFI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0x4cdF39285D7Ca8eB3f090fDA0C069ba5F4145B37", + "type": "FANTOM", + "address": "0x4cdF39285D7Ca8eB3f090fDA0C069ba5F4145B37", + "name": "TSHARE", + "symbol": "TSHARE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x4cdF39285D7Ca8eB3f090fDA0C069ba5F4145B37/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0xdc301622e621166BD8E82f2cA0A26c13Ad0BE355", + "type": "FANTOM", + "address": "0xdc301622e621166BD8E82f2cA0A26c13Ad0BE355", + "name": "Frax", + "symbol": "FRAX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0xdc301622e621166BD8E82f2cA0A26c13Ad0BE355/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0x82f0B8B456c1A451378467398982d4834b6829c1", + "type": "FANTOM", + "address": "0x82f0B8B456c1A451378467398982d4834b6829c1", + "name": "Magic Internet Money", + "symbol": "MIM", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x82f0B8B456c1A451378467398982d4834b6829c1/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0x468003B688943977e6130F4F68F23aad939a1040", + "type": "FANTOM", + "address": "0x468003B688943977e6130F4F68F23aad939a1040", + "name": "Spell Token", + "symbol": "SPELL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x468003B688943977e6130F4F68F23aad939a1040/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0", + "type": "FANTOM", + "address": "0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0", + "name": "Hector Finance", + "symbol": "HEC", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0x94CcF60f700146BeA8eF7832820800E2dFa92EdA", + "type": "FANTOM", + "address": "0x94CcF60f700146BeA8eF7832820800E2dFa92EdA", + "name": "Wrapped sHEC", + "symbol": "wsHEC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x94CcF60f700146BeA8eF7832820800E2dFa92EdA/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e", + "type": "FANTOM", + "address": "0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e", + "name": "TOR Stablecoin", + "symbol": "TOR", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e/logo.png", + "pairs": [] + } + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} diff --git a/blockchains/fetch/info/info.json b/blockchains/fetch/info/info.json new file mode 100644 index 00000000..7621b52c --- /dev/null +++ b/blockchains/fetch/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "FETCH.AI", + "type": "coin", + "symbol": "FET", + "decimals": 18, + "website": "https://fetch.ai/", + "description": "Fetch.ai is building tools and infrastructure to enable a decentralized digital economy by combining AI, multi-agent systems and advanced cryptography.", + "explorer": "https://www.mintscan.io/fetchai", + "status": "active", + "rpc_url": "https://fetch-rpc.polkachu.com/", + "denom": "afet", + "lcd_url": "https://fetch-api.polkachu.com/", + "hrp": "fetch", + "fee_rate": "0.025", + "links": [ + { + "name": "github", + "url": "https://github.com/fetchai" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fetch/" + }, + { + "name": "x", + "url": "https://x.com/fetch_ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/fetch/info/logo.png b/blockchains/fetch/info/logo.png new file mode 100644 index 00000000..eadd40bd Binary files /dev/null and b/blockchains/fetch/info/logo.png differ diff --git a/blockchains/fetch/info/square_logo.png b/blockchains/fetch/info/square_logo.png new file mode 100644 index 00000000..01a93268 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 00000000..e1178170 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 00000000..10205271 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 00000000..02916372 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 00000000..c2cb86a4 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 00000000..bed02519 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 00000000..90f963fe --- /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/info.json b/blockchains/filecoin/info/info.json new file mode 100644 index 00000000..ef71db59 --- /dev/null +++ b/blockchains/filecoin/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "Filecoin", + "website": "https://filecoin.io", + "description": "Filecoin provides a blockchain-based marketplace that aims to revolutionize the global storage economy.", + "explorer": "https://filfox.info/", + "research": "https://research.binance.com/en/projects/filecoin", + "symbol": "FIL", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/filecoin/info/logo.png b/blockchains/filecoin/info/logo.png new file mode 100644 index 00000000..49df0fc2 Binary files /dev/null and b/blockchains/filecoin/info/logo.png differ diff --git a/blockchains/filecoin/info/square_logo.png b/blockchains/filecoin/info/square_logo.png new file mode 100644 index 00000000..ffd62873 Binary files /dev/null and b/blockchains/filecoin/info/square_logo.png differ diff --git a/blockchains/fio/info/info.json b/blockchains/fio/info/info.json new file mode 100644 index 00000000..4e52dc75 --- /dev/null +++ b/blockchains/fio/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "FIO Protocol", + "website": "https://fioprotocol.io", + "description": "FIO Protocol (FIO) is a decentralized blockchain protocol that aims to enable a better way of sending and receiving coins and tokens.", + "explorer": "https://fio.bloks.io", + "research": "https://research.binance.com/en/projects/fio-protocol", + "symbol": "FIO", + "type": "coin", + "decimals": 9, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/fio/info/logo.png b/blockchains/fio/info/logo.png new file mode 100644 index 00000000..019955ed Binary files /dev/null and b/blockchains/fio/info/logo.png differ diff --git a/blockchains/fio/info/square_logo.png b/blockchains/fio/info/square_logo.png new file mode 100644 index 00000000..3f9d080c 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 new file mode 100644 index 00000000..4b7db23e --- /dev/null +++ b/blockchains/firo/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Firo", + "website": "https://firo.org", + "description": "Firo, a decentralized and open source currency that provides financial privacy enabled by the Lelantus protocol. Proven cryptography and auditability.", + "explorer": "http://explorer.firo.org", + "research": "https://research.binance.com/en/projects/firo", + "symbol": "FIRO", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/firoorg/firo" + }, + { + "name": "x", + "url": "https://x.com/firoorg" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/FiroProject/" + }, + { + "name": "whitepaper", + "url": "https://eprint.iacr.org/2019/373.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/firo/info/logo.png b/blockchains/firo/info/logo.png new file mode 100644 index 00000000..adfb3ee6 Binary files /dev/null and b/blockchains/firo/info/logo.png differ diff --git a/blockchains/firo/info/square_logo.png b/blockchains/firo/info/square_logo.png new file mode 100644 index 00000000..6f9e5d23 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 new file mode 100644 index 00000000..152f1dbe --- /dev/null +++ b/blockchains/fusion/info/info.json @@ -0,0 +1,33 @@ +{ + "name": "Fusion", + "type": "coin", + "coin_type": 288, + "symbol": "FSN", + "decimals": 18, + "website": "https://fusion.org/", + "description": "Fusion Protocol is a infrastructure of digital finance. It developed DCRM cross chain technology, time framing technology and Quantum Swap technology to provide an infrastructure of transferring value across different chains, system and time.", + "explorer": "https://blocks.fusionnetwork.io/#", + "rpc_url": "https://mainway.freemoon.xyz", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/FUSIONProtocol" + }, + { + "name": "facebook", + "url": "https://facebook.com/FUSIONProtocol/" + }, + { + "name": "telegram", + "url": "https://t.me/FUSIONFoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fusion/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/fusion/info/logo.png b/blockchains/fusion/info/logo.png new file mode 100644 index 00000000..9c2bb8e2 Binary files /dev/null and b/blockchains/fusion/info/logo.png differ diff --git a/blockchains/fusion/info/square_logo.png b/blockchains/fusion/info/square_logo.png new file mode 100644 index 00000000..41009b1f Binary files /dev/null and b/blockchains/fusion/info/square_logo.png differ diff --git a/blockchains/gbnb/info/info.json b/blockchains/gbnb/info/info.json new file mode 100644 index 00000000..4d534812 --- /dev/null +++ b/blockchains/gbnb/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": "gBNB", + "rpc_url": "https://greenfield-bsc-testnet-ap.nodereal.io", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/gbnb/info/logo.png b/blockchains/gbnb/info/logo.png new file mode 100644 index 00000000..3fe22aa3 Binary files /dev/null and b/blockchains/gbnb/info/logo.png differ diff --git a/blockchains/gbnb/info/square_logo.png b/blockchains/gbnb/info/square_logo.png new file mode 100644 index 00000000..793f7b4a Binary files /dev/null and b/blockchains/gbnb/info/square_logo.png differ diff --git a/blockchains/gochain/assets/0x064353B5C02A9F35979524Ebbfff4042151cF0c6/info.json b/blockchains/gochain/assets/0x064353B5C02A9F35979524Ebbfff4042151cF0c6/info.json new file mode 100644 index 00000000..5028459d --- /dev/null +++ b/blockchains/gochain/assets/0x064353B5C02A9F35979524Ebbfff4042151cF0c6/info.json @@ -0,0 +1,11 @@ +{ + "name": "BosTravel", + "symbol": "BOT", + "type": "GO20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://explorer.gochain.io/addr/0x064353B5C02A9F35979524Ebbfff4042151cF0c6", + "status": "active", + "id": "0x064353B5C02A9F35979524Ebbfff4042151cF0c6" +} \ No newline at end of file diff --git a/blockchains/gochain/assets/0x064353B5C02A9F35979524Ebbfff4042151cF0c6/logo.png b/blockchains/gochain/assets/0x064353B5C02A9F35979524Ebbfff4042151cF0c6/logo.png new file mode 100755 index 00000000..4d5c93dc Binary files /dev/null and b/blockchains/gochain/assets/0x064353B5C02A9F35979524Ebbfff4042151cF0c6/logo.png differ diff --git a/blockchains/gochain/assets/0x473A70391d961D1D81044f7e2b69eeCd59dc355c/info.json b/blockchains/gochain/assets/0x473A70391d961D1D81044f7e2b69eeCd59dc355c/info.json new file mode 100644 index 00000000..ced03188 --- /dev/null +++ b/blockchains/gochain/assets/0x473A70391d961D1D81044f7e2b69eeCd59dc355c/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoDental", + "symbol": "GOD", + "type": "GO20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://explorer.gochain.io/addr/0x473A70391d961D1D81044f7e2b69eeCd59dc355c", + "status": "abandoned", + "id": "0x473A70391d961D1D81044f7e2b69eeCd59dc355c" +} \ No newline at end of file diff --git a/blockchains/gochain/assets/0x473A70391d961D1D81044f7e2b69eeCd59dc355c/logo.png b/blockchains/gochain/assets/0x473A70391d961D1D81044f7e2b69eeCd59dc355c/logo.png new file mode 100644 index 00000000..97d326c6 Binary files /dev/null and b/blockchains/gochain/assets/0x473A70391d961D1D81044f7e2b69eeCd59dc355c/logo.png differ diff --git a/blockchains/gochain/assets/0x5347FDeA6AA4d7770B31734408Da6d34a8a07BdF/info.json b/blockchains/gochain/assets/0x5347FDeA6AA4d7770B31734408Da6d34a8a07BdF/info.json new file mode 100644 index 00000000..a818824e --- /dev/null +++ b/blockchains/gochain/assets/0x5347FDeA6AA4d7770B31734408Da6d34a8a07BdF/info.json @@ -0,0 +1,11 @@ +{ + "name": "ECOMI", + "symbol": "OMI", + "type": "GO20", + "decimals": 18, + "description": "ECOMI’s mission is to create the world’s best platform to purchase, protect and collect premium licensed digital collectibles using Distributed Ledger Technology.", + "website": "https://www.ecomi.com/", + "explorer": "https://explorer.gochain.io/addr/0x5347FDeA6AA4d7770B31734408Da6d34a8a07BdF", + "status": "active", + "id": "0x5347FDeA6AA4d7770B31734408Da6d34a8a07BdF" +} \ No newline at end of file diff --git a/blockchains/gochain/assets/0x5347FDeA6AA4d7770B31734408Da6d34a8a07BdF/logo.png b/blockchains/gochain/assets/0x5347FDeA6AA4d7770B31734408Da6d34a8a07BdF/logo.png new file mode 100644 index 00000000..99cf8a65 Binary files /dev/null and b/blockchains/gochain/assets/0x5347FDeA6AA4d7770B31734408Da6d34a8a07BdF/logo.png differ diff --git a/blockchains/gochain/assets/0x53A6Bec3126BCE4e0dE349a9Ad3D9e4F997E76C4/info.json b/blockchains/gochain/assets/0x53A6Bec3126BCE4e0dE349a9Ad3D9e4F997E76C4/info.json new file mode 100644 index 00000000..e6b1ddaf --- /dev/null +++ b/blockchains/gochain/assets/0x53A6Bec3126BCE4e0dE349a9Ad3D9e4F997E76C4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lam Anh Dental", + "symbol": "LAD", + "type": "GO20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://explorer.gochain.io/addr/0x53A6Bec3126BCE4e0dE349a9Ad3D9e4F997E76C4", + "status": "abandoned", + "id": "0x53A6Bec3126BCE4e0dE349a9Ad3D9e4F997E76C4" +} \ No newline at end of file diff --git a/blockchains/gochain/assets/0x53A6Bec3126BCE4e0dE349a9Ad3D9e4F997E76C4/logo.png b/blockchains/gochain/assets/0x53A6Bec3126BCE4e0dE349a9Ad3D9e4F997E76C4/logo.png new file mode 100644 index 00000000..18e9c198 Binary files /dev/null and b/blockchains/gochain/assets/0x53A6Bec3126BCE4e0dE349a9Ad3D9e4F997E76C4/logo.png differ diff --git a/blockchains/gochain/assets/0x721Cc970CB5A22915f7663a6833E605deDDb7B92/info.json b/blockchains/gochain/assets/0x721Cc970CB5A22915f7663a6833E605deDDb7B92/info.json new file mode 100644 index 00000000..2ed0e41a --- /dev/null +++ b/blockchains/gochain/assets/0x721Cc970CB5A22915f7663a6833E605deDDb7B92/info.json @@ -0,0 +1,11 @@ +{ + "name": "PAZTether", + "symbol": "PAZT", + "type": "GO20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://explorer.gochain.io/addr/0x721Cc970CB5A22915f7663a6833E605deDDb7B92", + "status": "active", + "id": "0x721Cc970CB5A22915f7663a6833E605deDDb7B92" +} \ No newline at end of file diff --git a/blockchains/gochain/assets/0x721Cc970CB5A22915f7663a6833E605deDDb7B92/logo.png b/blockchains/gochain/assets/0x721Cc970CB5A22915f7663a6833E605deDDb7B92/logo.png new file mode 100644 index 00000000..d47d0f82 Binary files /dev/null and b/blockchains/gochain/assets/0x721Cc970CB5A22915f7663a6833E605deDDb7B92/logo.png differ diff --git a/blockchains/gochain/assets/0xB881f9bB7EEa9499073c279D6eAC59B1A9010617/info.json b/blockchains/gochain/assets/0xB881f9bB7EEa9499073c279D6eAC59B1A9010617/info.json new file mode 100644 index 00000000..c136de7e --- /dev/null +++ b/blockchains/gochain/assets/0xB881f9bB7EEa9499073c279D6eAC59B1A9010617/info.json @@ -0,0 +1,11 @@ +{ + "name": "Go A2ZHome", + "symbol": "A2Z", + "type": "GO20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://explorer.gochain.io/addr/0xB881f9bB7EEa9499073c279D6eAC59B1A9010617", + "status": "abandoned", + "id": "0xB881f9bB7EEa9499073c279D6eAC59B1A9010617" +} \ No newline at end of file diff --git a/blockchains/gochain/assets/0xB881f9bB7EEa9499073c279D6eAC59B1A9010617/logo.png b/blockchains/gochain/assets/0xB881f9bB7EEa9499073c279D6eAC59B1A9010617/logo.png new file mode 100644 index 00000000..f906d9ea Binary files /dev/null and b/blockchains/gochain/assets/0xB881f9bB7EEa9499073c279D6eAC59B1A9010617/logo.png differ diff --git a/blockchains/gochain/info/info.json b/blockchains/gochain/info/info.json new file mode 100644 index 00000000..bbd27ca6 --- /dev/null +++ b/blockchains/gochain/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "GoChain", + "website": "https://gochain.io", + "description": "GoChain is a scalable, smart contract blockchain that is fast, secure and green. It enables developers to lift and shift from Ethereum to GoChain for 100x increased performance. ", + "explorer": "https://explorer.gochain.io/home", + "research": "https://research.binance.com/en/projects/gochain", + "symbol": "GO", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/gochain" + }, + { + "name": "x", + "url": "https://x.com/go_chain" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/OfficialGoChain" + }, + { + "name": "whitepaper", + "url": "https://gochain.foundation/gochain-whitepaper-v2.1.2.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/gochain/info/logo.png b/blockchains/gochain/info/logo.png new file mode 100644 index 00000000..b75bc010 Binary files /dev/null and b/blockchains/gochain/info/logo.png differ diff --git a/blockchains/gochain/info/square_logo.png b/blockchains/gochain/info/square_logo.png new file mode 100644 index 00000000..a9c6a1af 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 new file mode 100644 index 00000000..7ca880a6 --- /dev/null +++ b/blockchains/goerlitestnet/info/info.json @@ -0,0 +1,18 @@ +{ + "name": "Goerli Testnet", + "website": "https://goerlifaucet.com", + "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": "tETH", + "rpc_url": "https://eth-goerli.public.blastapi.io", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/community/search/top/goerli-eth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/goerlitestnet/info/logo.png b/blockchains/goerlitestnet/info/logo.png new file mode 100644 index 00000000..ad463789 Binary files /dev/null and b/blockchains/goerlitestnet/info/logo.png differ diff --git a/blockchains/goerlitestnet/info/square_logo.png b/blockchains/goerlitestnet/info/square_logo.png new file mode 100644 index 00000000..793f7b4a 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 00000000..7d7d0e25 --- /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 00000000..0fad6635 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 00000000..eadcabdc 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 new file mode 100644 index 00000000..de0c1247 --- /dev/null +++ b/blockchains/groestlcoin/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Groestlcoin", + "website": "http://groestlcoin.org", + "description": "Groestlcoin (GRS) is a cryptocoin, that is optionally private. Anyone can mine it effectively, with GPU.", + "explorer": "https://grs.tokenview.com/", + "research": "https://research.binance.com/en/projects/groestlcoin", + "symbol": "GRS", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/Groestlcoin" + }, + { + "name": "x", + "url": "https://x.com/GroestlcoinTeam" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/groestlcoin" + }, + { + "name": "whitepaper", + "url": "https://www.groestl.info/groestl-implementation-guide.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/groestlcoin/info/logo.png b/blockchains/groestlcoin/info/logo.png new file mode 100644 index 00000000..2da13be5 Binary files /dev/null and b/blockchains/groestlcoin/info/logo.png differ diff --git a/blockchains/groestlcoin/info/square_logo.png b/blockchains/groestlcoin/info/square_logo.png new file mode 100644 index 00000000..b8149327 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 new file mode 100644 index 00000000..5f68ccc9 --- /dev/null +++ b/blockchains/harmony/info/info.json @@ -0,0 +1,34 @@ +{ + "name": "Harmony", + "website": "https://harmony.one", + "description": "Harmony aims to offer a high-throughput, low-latency, and low-fee consensus platform designed to power decentralized economies of the future.", + "explorer": "https://explorer.harmony.one/", + "research": "https://research.binance.com/en/projects/harmony", + "rpc_url": "https://api.harmony.one", + "coin_type": 1023, + "symbol": "ONE", + "type": "coin", + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/harmony-one" + }, + { + "name": "x", + "url": "https://x.com/harmonyprotocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/harmony_one" + }, + { + "name": "whitepaper", + "url": "https://harmony.one/pdf/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/harmony/info/logo.png b/blockchains/harmony/info/logo.png new file mode 100644 index 00000000..cd16d5e2 Binary files /dev/null and b/blockchains/harmony/info/logo.png differ diff --git a/blockchains/harmony/info/square_logo.png b/blockchains/harmony/info/square_logo.png new file mode 100644 index 00000000..dfab5ab7 Binary files /dev/null and b/blockchains/harmony/info/square_logo.png differ diff --git a/blockchains/harmony/validators/assets/one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9/logo.png b/blockchains/harmony/validators/assets/one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9/logo.png new file mode 100644 index 00000000..a683ea2a Binary files /dev/null and b/blockchains/harmony/validators/assets/one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9/logo.png differ diff --git a/blockchains/harmony/validators/assets/one129gp9e7ghsyecxevp4che033dmk0sew7swvk66/logo.png b/blockchains/harmony/validators/assets/one129gp9e7ghsyecxevp4che033dmk0sew7swvk66/logo.png new file mode 100644 index 00000000..5c279130 Binary files /dev/null and b/blockchains/harmony/validators/assets/one129gp9e7ghsyecxevp4che033dmk0sew7swvk66/logo.png differ diff --git a/blockchains/harmony/validators/assets/one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6/logo.png b/blockchains/harmony/validators/assets/one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6/logo.png new file mode 100644 index 00000000..ec9d08da Binary files /dev/null and b/blockchains/harmony/validators/assets/one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6/logo.png differ diff --git a/blockchains/harmony/validators/assets/one16yvnyrac2nfaapm8tyraesa7khtg3d9tr786pv/logo.png b/blockchains/harmony/validators/assets/one16yvnyrac2nfaapm8tyraesa7khtg3d9tr786pv/logo.png new file mode 100644 index 00000000..25fcc241 Binary files /dev/null and b/blockchains/harmony/validators/assets/one16yvnyrac2nfaapm8tyraesa7khtg3d9tr786pv/logo.png differ diff --git a/blockchains/harmony/validators/assets/one170xqsfzm4xdmuyax54t5pvtp5l5yt66u50ctrp/logo.png b/blockchains/harmony/validators/assets/one170xqsfzm4xdmuyax54t5pvtp5l5yt66u50ctrp/logo.png new file mode 100644 index 00000000..ca4f86e4 Binary files /dev/null and b/blockchains/harmony/validators/assets/one170xqsfzm4xdmuyax54t5pvtp5l5yt66u50ctrp/logo.png differ diff --git a/blockchains/harmony/validators/assets/one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm/logo.png b/blockchains/harmony/validators/assets/one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm/logo.png new file mode 100644 index 00000000..e3816a03 Binary files /dev/null and b/blockchains/harmony/validators/assets/one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm/logo.png differ diff --git a/blockchains/harmony/validators/assets/one18je40sxd9s6awtgx4akhuda8d75km3663eep37/logo.png b/blockchains/harmony/validators/assets/one18je40sxd9s6awtgx4akhuda8d75km3663eep37/logo.png new file mode 100644 index 00000000..9d28fc7b Binary files /dev/null and b/blockchains/harmony/validators/assets/one18je40sxd9s6awtgx4akhuda8d75km3663eep37/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632/logo.png b/blockchains/harmony/validators/assets/one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632/logo.png new file mode 100644 index 00000000..2742f847 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1a0au0p33zrns49h3qw7prn02s4wphu0ggcqrhm/logo.png b/blockchains/harmony/validators/assets/one1a0au0p33zrns49h3qw7prn02s4wphu0ggcqrhm/logo.png new file mode 100644 index 00000000..c08f0c1e Binary files /dev/null and b/blockchains/harmony/validators/assets/one1a0au0p33zrns49h3qw7prn02s4wphu0ggcqrhm/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z/logo.png b/blockchains/harmony/validators/assets/one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z/logo.png new file mode 100644 index 00000000..73a50bc6 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1d2zjm9czlfzdes97pfuzdydflw0t80kspwst0x/logo.png b/blockchains/harmony/validators/assets/one1d2zjm9czlfzdes97pfuzdydflw0t80kspwst0x/logo.png new file mode 100644 index 00000000..c08f0c1e Binary files /dev/null and b/blockchains/harmony/validators/assets/one1d2zjm9czlfzdes97pfuzdydflw0t80kspwst0x/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n/logo.png b/blockchains/harmony/validators/assets/one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n/logo.png new file mode 100644 index 00000000..2d12f762 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1efat5elqnvttf7gm86q9kmt48z69njax464rhv/logo.png b/blockchains/harmony/validators/assets/one1efat5elqnvttf7gm86q9kmt48z69njax464rhv/logo.png new file mode 100644 index 00000000..d50b13ad Binary files /dev/null and b/blockchains/harmony/validators/assets/one1efat5elqnvttf7gm86q9kmt48z69njax464rhv/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1f5yhhwn42qnxkj2n6xucrl5plqgy03082xuw25/logo.png b/blockchains/harmony/validators/assets/one1f5yhhwn42qnxkj2n6xucrl5plqgy03082xuw25/logo.png new file mode 100644 index 00000000..c08f0c1e Binary files /dev/null and b/blockchains/harmony/validators/assets/one1f5yhhwn42qnxkj2n6xucrl5plqgy03082xuw25/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1fllqjv6hq8vfvz5kwyhaknw0f2emvfqmq0s2tu/logo.png b/blockchains/harmony/validators/assets/one1fllqjv6hq8vfvz5kwyhaknw0f2emvfqmq0s2tu/logo.png new file mode 100644 index 00000000..500e397a Binary files /dev/null and b/blockchains/harmony/validators/assets/one1fllqjv6hq8vfvz5kwyhaknw0f2emvfqmq0s2tu/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1gm8xwupd9e77ja46eaxv8tk4ea7re5zknaauvq/logo.png b/blockchains/harmony/validators/assets/one1gm8xwupd9e77ja46eaxv8tk4ea7re5zknaauvq/logo.png new file mode 100644 index 00000000..a394d222 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1gm8xwupd9e77ja46eaxv8tk4ea7re5zknaauvq/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1j9gr0maryak7mmgkgw67gsgz3wxhmnv6cpvnqy/logo.png b/blockchains/harmony/validators/assets/one1j9gr0maryak7mmgkgw67gsgz3wxhmnv6cpvnqy/logo.png new file mode 100644 index 00000000..479a368a Binary files /dev/null and b/blockchains/harmony/validators/assets/one1j9gr0maryak7mmgkgw67gsgz3wxhmnv6cpvnqy/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj/logo.png b/blockchains/harmony/validators/assets/one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj/logo.png new file mode 100644 index 00000000..939fc8df Binary files /dev/null and b/blockchains/harmony/validators/assets/one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7/logo.png b/blockchains/harmony/validators/assets/one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7/logo.png new file mode 100644 index 00000000..cbab6ff4 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3/logo.png b/blockchains/harmony/validators/assets/one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3/logo.png new file mode 100644 index 00000000..0f15bce9 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1lpgxyxvgxnprgflx4myzh5m9se83u0racw22du/logo.png b/blockchains/harmony/validators/assets/one1lpgxyxvgxnprgflx4myzh5m9se83u0racw22du/logo.png new file mode 100644 index 00000000..83a921b3 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1lpgxyxvgxnprgflx4myzh5m9se83u0racw22du/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 00000000..cbc90da9 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1na6669ra9r99wsz39440fxdf6d29vhmz8mkdha/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj/logo.png b/blockchains/harmony/validators/assets/one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj/logo.png new file mode 100644 index 00000000..adf70d74 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1pdv9lrdwl0rg5vglh4xtyrv3wjk3wsqket7zxy/logo.png b/blockchains/harmony/validators/assets/one1pdv9lrdwl0rg5vglh4xtyrv3wjk3wsqket7zxy/logo.png new file mode 100644 index 00000000..cd16d5e2 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1pdv9lrdwl0rg5vglh4xtyrv3wjk3wsqket7zxy/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1pul5cd3hewakyfcewdn2m2xhuk7w0ese9u733s/logo.png b/blockchains/harmony/validators/assets/one1pul5cd3hewakyfcewdn2m2xhuk7w0ese9u733s/logo.png new file mode 100644 index 00000000..479a368a Binary files /dev/null and b/blockchains/harmony/validators/assets/one1pul5cd3hewakyfcewdn2m2xhuk7w0ese9u733s/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7/logo.png b/blockchains/harmony/validators/assets/one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7/logo.png new file mode 100644 index 00000000..63fe5615 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8/logo.png b/blockchains/harmony/validators/assets/one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8/logo.png new file mode 100644 index 00000000..9ce01bf5 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1ryuvxq3mgcvj0a2ukpa5dkuxmlc2gdf7pcc775/logo.png b/blockchains/harmony/validators/assets/one1ryuvxq3mgcvj0a2ukpa5dkuxmlc2gdf7pcc775/logo.png new file mode 100644 index 00000000..479a368a Binary files /dev/null and b/blockchains/harmony/validators/assets/one1ryuvxq3mgcvj0a2ukpa5dkuxmlc2gdf7pcc775/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff/logo.png b/blockchains/harmony/validators/assets/one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff/logo.png new file mode 100644 index 00000000..cddf73cf Binary files /dev/null and b/blockchains/harmony/validators/assets/one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk/logo.png b/blockchains/harmony/validators/assets/one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk/logo.png new file mode 100644 index 00000000..4df4b1cb Binary files /dev/null and b/blockchains/harmony/validators/assets/one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk/logo.png differ diff --git a/blockchains/harmony/validators/assets/one1zdxjy50aa9kk33pxrjy8yerpgz49hx0nhc2r6k/logo.png b/blockchains/harmony/validators/assets/one1zdxjy50aa9kk33pxrjy8yerpgz49hx0nhc2r6k/logo.png new file mode 100644 index 00000000..c08f0c1e Binary files /dev/null and b/blockchains/harmony/validators/assets/one1zdxjy50aa9kk33pxrjy8yerpgz49hx0nhc2r6k/logo.png differ diff --git a/blockchains/harmony/validators/list.json b/blockchains/harmony/validators/list.json new file mode 100644 index 00000000..4edb242c --- /dev/null +++ b/blockchains/harmony/validators/list.json @@ -0,0 +1,158 @@ +[ + { + "id": "one1pdv9lrdwl0rg5vglh4xtyrv3wjk3wsqket7zxy", + "name": "Harmony", + "description": "Harmony Staking", + "website": "https://harmony.one" + }, + { + "id": "one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj", + "name": "Sesameseed", + "description": "Sesameseed is a multi-chain digital asset staking community who's unique rewards structure, fueled by the SEED token, provides stakers better rewards over time. Stakers earn rewards from multiple blockchains by staking to any one of Sesameseed’s nodes or simply by holding SEED.", + "website": "https://sesameseed.org" + }, + { + "id": "one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj", + "name": "🔨P-OPS Team Validator", + "description": "Community run Validator by highly qualified global P-OPS Team. We reconfigure our validator dynamically to ensure the highest possible rewards at every epoch and use extensive backup systems for ensuring uptime. Visit our website for testimonials on our extensive community work.", + "website": "pops.one" + }, + { + "id": "one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9", + "name": "Embiei Low Fee, high APR", + "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", + "description": "We are a team fully dedicated to the best DPoS. We offer our services across a variety of protocols, including Harmony, Tezos, IoTeX and Icon", + "website": "https://stakingteam.com/" + }, + { + "id": "one1d2zjm9czlfzdes97pfuzdydflw0t80kspwst0x", + "name": "KeepNode", + "description": "Keep faith with us", + "website": "keepnode.xyz" + }, + { + "id": "one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm", + "name": "Chainode Tech", + "description": "Chainode Tech is your partner for staking & validating on cutting edge blockchain protocols. Our Validator is run by a team of early contributors that joined the network as Foundational Nodes since the 1st public testnet. Current P-OPS member. Stake with us for best experience!", + "website": "https://chainode.tech/" + }, + { + "id": "one1a0au0p33zrns49h3qw7prn02s4wphu0ggcqrhm", + "name": "KeepNode2", + "description": "KeepNode2", + "website": "keepnode.xyz" + }, + { + "id": "one1zdxjy50aa9kk33pxrjy8yerpgz49hx0nhc2r6k", + "name": "KeepNode3", + "description": "KeepNode3", + "website": "keepnode.xyz" + }, + { + "id": "one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7", + "name": "SNZPool", + "description": "SNZPool is a professional & reliable POS validator for a dozen of projects.", + "website": "https://snzholding.com" + }, + { + "id": "one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8", + "name": "StackedInvest.com", + "description": "Automated Crypto Investing. @StackedCrypto", + "website": "https://stackedinvest.com" + }, + { + "id": "one1efat5elqnvttf7gm86q9kmt48z69njax464rhv", + "name": "G.E.M.", + "description": "Staking with G.E.M.", + "website": "https://staking.harmony.one" + }, + { + "id": "one1lpgxyxvgxnprgflx4myzh5m9se83u0racw22du", + "name": "ALWAYS-ONE", + "description": "ALWAYS ONE Staking - Hosted on Google Cloud Provider - Fees Always 1% - Telegram: @Allayom ", + "website": "Always.harmony.one" + }, + { + "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://x.com/LtcYeti" + }, + { + "id": "one1f5yhhwn42qnxkj2n6xucrl5plqgy03082xuw25", + "name": "KeepNode4", + "description": "KeepNode4", + "website": "keepnode.xyz" + }, + { + "id": "one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n", + "name": "Staking4All", + "description": "Validator for Proof of Stake blockchains. Delegate to us for a easy staking experience", + "website": "https://staking4all.org" + }, + { + "id": "one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7", + "name": "Smart Stake", + "description": "Transparent, professional, and feature rich staking. Smart Stake builds easy to understand and user centric tools for all the network participants. We introduce new performance metrics. Prior work: tools.aionsmartstake.com or cs.smartstake.io or oasis.smartstake.io", + "website": "harmony.smartstake.io" + }, + { + "id": "one129gp9e7ghsyecxevp4che033dmk0sew7swvk66", + "name": "Bit Cat 🐱", + "description": "50 slots backup, Anytime according to the vote expand your profits. The professional PoS team operation and management. 50个slot备选节点,根据投票数自动化调整slot,随时放大你的收益,专业的PoS节点运维管理。", + "website": "https://bitcat365.com" + }, + { + "id": "one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z", + "name": "三潭映月", + "description": "欢迎大家来中国·杭州玩. Welcome to Hangzhou, China", + "website": "https://mainto.cn" + }, + { + "id": "one18je40sxd9s6awtgx4akhuda8d75km3663eep37", + "name": "CryptoMason", + "description": "https://t.me/harmonymason", + "website": "https://t.me/harmonymason" + }, + { + "id": "one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632", + "name": "TurkishGuyInDE", + "description": "A Turkish guy providing you validation services on Harmony blockchain!", + "website": "TurkishGuyIn.de" + }, + { + "id": "one1fllqjv6hq8vfvz5kwyhaknw0f2emvfqmq0s2tu", + "name": "Node of the beholder", + "description": "Beauty is in the eye of the beholder", + "website": "https://en.wikipedia.org/wiki/Beholder_(Dungeons_%26_Dragons)" + }, + { + "id": "one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff", + "name": "UbikCapital", + "description": "Ubik Capital is providing highly resilient and secure staking service for different blockchain projects", + "website": "ubik.capital" + }, + { + "id": "one16yvnyrac2nfaapm8tyraesa7khtg3d9tr786pv", + "name": "Validator.Center", + "description": "Blockchain validator in PoS consensus.", + "website": "https://validator.center" + }, + { + "id": "one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk", + "name": "HarmonyNewsOne 🌎🌏🌍", + "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/0x09006b66d89e5213Fc173403AACBA30620A91F4e/info.json b/blockchains/heco/assets/0x09006b66d89e5213Fc173403AACBA30620A91F4e/info.json new file mode 100644 index 00000000..271cea7c --- /dev/null +++ b/blockchains/heco/assets/0x09006b66d89e5213Fc173403AACBA30620A91F4e/info.json @@ -0,0 +1,21 @@ +{ + "name": "Heco-Peg MANA Token", + "type": "HRC20", + "symbol": "MANA", + "decimals": 18, + "website": "https://www.htokens.finance/zh-cn/", + "description": "Decentraland is a virtual reality platform powered by the Ethereum blockchain. Users can create, experience, and monetize content and applications", + "explorer": "https://hecoinfo.com/token/0x09006b66d89e5213Fc173403AACBA30620A91F4e", + "status": "active", + "id": "0x09006b66d89e5213Fc173403AACBA30620A91F4e", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/coins/decentraland/" + } + ], + "tags": [ + "defi", + "heco-tag" + ] +} diff --git a/blockchains/heco/assets/0x09006b66d89e5213Fc173403AACBA30620A91F4e/logo.png b/blockchains/heco/assets/0x09006b66d89e5213Fc173403AACBA30620A91F4e/logo.png new file mode 100644 index 00000000..2e4e2b57 Binary files /dev/null and b/blockchains/heco/assets/0x09006b66d89e5213Fc173403AACBA30620A91F4e/logo.png differ diff --git a/blockchains/heco/assets/0x202b4936fE1a82A4965220860aE46d7d3939Bb25/info.json b/blockchains/heco/assets/0x202b4936fE1a82A4965220860aE46d7d3939Bb25/info.json new file mode 100644 index 00000000..bb311ae9 --- /dev/null +++ b/blockchains/heco/assets/0x202b4936fE1a82A4965220860aE46d7d3939Bb25/info.json @@ -0,0 +1,21 @@ +{ + "name": "Heco-Peg AAVE Token", + "type": "HRC20", + "symbol": "AAVE", + "decimals": 18, + "website": "https://www.htokens.finance/zh-cn/", + "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. With 16 different assets, 5 of which are stablecoins.", + "explorer": "https://hecoinfo.com/token/0x202b4936fe1a82a4965220860ae46d7d3939bb25", + "status": "active", + "id": "0x202b4936fE1a82A4965220860aE46d7d3939Bb25", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/coins/aave/" + } + ], + "tags": [ + "defi", + "heco-tag" + ] +} \ No newline at end of file diff --git a/blockchains/heco/assets/0x202b4936fE1a82A4965220860aE46d7d3939Bb25/logo.png b/blockchains/heco/assets/0x202b4936fE1a82A4965220860aE46d7d3939Bb25/logo.png new file mode 100644 index 00000000..1e7cef36 Binary files /dev/null and b/blockchains/heco/assets/0x202b4936fE1a82A4965220860aE46d7d3939Bb25/logo.png differ diff --git a/blockchains/heco/assets/0x22C54cE8321A4015740eE1109D9cBc25815C46E6/info.json b/blockchains/heco/assets/0x22C54cE8321A4015740eE1109D9cBc25815C46E6/info.json new file mode 100644 index 00000000..1db377a6 --- /dev/null +++ b/blockchains/heco/assets/0x22C54cE8321A4015740eE1109D9cBc25815C46E6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Heco-Peg UNI Token", + "type": "HRC20", + "symbol": "UNI", + "decimals": 18, + "website": "https://www.htokens.finance/zh-cn/", + "description": "UNI token served as governance token for Uniswap protocol with 1 billion UNI have been minted at genesis. 60% of the UNI genesis supply is allocated to Uniswap community members and remaining for team, investors and advisors.", + "explorer": "https://hecoinfo.com/token/0x22c54ce8321a4015740ee1109d9cbc25815c46e6", + "status": "active", + "id": "0x22C54cE8321A4015740eE1109D9cBc25815C46E6", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/coins/uniswap/" + } + ], + "tags": [ + "defi", + "heco-tag" + ] +} diff --git a/blockchains/heco/assets/0x22C54cE8321A4015740eE1109D9cBc25815C46E6/logo.png b/blockchains/heco/assets/0x22C54cE8321A4015740eE1109D9cBc25815C46E6/logo.png new file mode 100644 index 00000000..893ef55c Binary files /dev/null and b/blockchains/heco/assets/0x22C54cE8321A4015740eE1109D9cBc25815C46E6/logo.png differ diff --git a/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/info.json b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/info.json new file mode 100644 index 00000000..fc681c58 --- /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 00000000..484410a9 Binary files /dev/null and b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/logo.png differ diff --git a/blockchains/heco/assets/0x34D75515090902a513F009f4505A750efaaD63b0/info.json b/blockchains/heco/assets/0x34D75515090902a513F009f4505A750efaaD63b0/info.json new file mode 100644 index 00000000..afa96249 --- /dev/null +++ b/blockchains/heco/assets/0x34D75515090902a513F009f4505A750efaaD63b0/info.json @@ -0,0 +1,21 @@ +{ + "name": "Heco-Peg MKR Token", + "type": "HRC20", + "symbol": "MKR", + "decimals": 18, + "website": "https://www.htokens.finance/zh-cn/", + "description": "Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain", + "explorer": "https://hecoinfo.com/token/0x34d75515090902a513f009f4505a750efaad63b0", + "status": "active", + "id": "0x34D75515090902a513F009f4505A750efaaD63b0", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/coins/maker/" + } + ], + "tags": [ + "defi", + "heco-tag" + ] +} diff --git a/blockchains/heco/assets/0x34D75515090902a513F009f4505A750efaaD63b0/logo.png b/blockchains/heco/assets/0x34D75515090902a513F009f4505A750efaaD63b0/logo.png new file mode 100644 index 00000000..f4582529 Binary files /dev/null and b/blockchains/heco/assets/0x34D75515090902a513F009f4505A750efaaD63b0/logo.png differ diff --git a/blockchains/heco/assets/0x3D760a45D0887DFD89A2F5385a236B29Cb46ED2a/info.json b/blockchains/heco/assets/0x3D760a45D0887DFD89A2F5385a236B29Cb46ED2a/info.json new file mode 100644 index 00000000..6636fd59 --- /dev/null +++ b/blockchains/heco/assets/0x3D760a45D0887DFD89A2F5385a236B29Cb46ED2a/info.json @@ -0,0 +1,22 @@ +{ + "name": "Heco-Peg DAIHECO Token", + "type": "HRC20", + "symbol": "DAI-HECO", + "decimals": 18, + "website": "https://www.htokens.finance/zh-cn/", + "description": "Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.", + "explorer": "https://hecoinfo.com/token/0x3d760a45d0887dfd89a2f5385a236b29cb46ed2a", + "status": "active", + "id": "0x3D760a45D0887DFD89A2F5385a236B29Cb46ED2a", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/coins/dai" + } + ], + "tags": [ + "defi", + "stablecoin", + "heco-tag" + ] +} diff --git a/blockchains/heco/assets/0x3D760a45D0887DFD89A2F5385a236B29Cb46ED2a/logo.png b/blockchains/heco/assets/0x3D760a45D0887DFD89A2F5385a236B29Cb46ED2a/logo.png new file mode 100644 index 00000000..6a5f7e7f Binary files /dev/null and b/blockchains/heco/assets/0x3D760a45D0887DFD89A2F5385a236B29Cb46ED2a/logo.png differ diff --git a/blockchains/heco/assets/0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98/info.json b/blockchains/heco/assets/0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98/info.json new file mode 100644 index 00000000..2c590133 --- /dev/null +++ b/blockchains/heco/assets/0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98/info.json @@ -0,0 +1,33 @@ +{ + "name": "Heco-Peg TUSD Token", + "type": "HRC20", + "symbol": "TUSD", + "decimals": 18, + "website": "https://trueusd.com/", + "description": "TUSD is a regulated, exchange-independent stablecoin backed 1-for-1 with US Dollars.", + "explorer": "https://hecoinfo.com/token/0x5ee41ab6edd38cdfb9f6b4e6cf7f75c87e170d98", + "status": "active", + "id": "0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/coins/true-usd/" + }, + { + "name": "x", + "url": "https://x.com/tusd_official" + }, + { + "name": "telegram", + "url": "https://t.me/TUSDofficial_EN" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trueusd/" + } + ], + "tags": [ + "stablecoin", + "heco-tag" + ] +} \ No newline at end of file diff --git a/blockchains/heco/assets/0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98/logo.png b/blockchains/heco/assets/0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98/logo.png new file mode 100644 index 00000000..0ae677cd Binary files /dev/null and b/blockchains/heco/assets/0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98/logo.png differ diff --git a/blockchains/heco/assets/0x66a79D23E58475D2738179Ca52cd0b41d73f0BEa/info.json b/blockchains/heco/assets/0x66a79D23E58475D2738179Ca52cd0b41d73f0BEa/info.json new file mode 100644 index 00000000..76bcbd6c --- /dev/null +++ b/blockchains/heco/assets/0x66a79D23E58475D2738179Ca52cd0b41d73f0BEa/info.json @@ -0,0 +1,29 @@ +{ + "name": "Heco-Peg HBTC Token", + "type": "HRC20", + "symbol": "HBTC", + "decimals": 18, + "website": "https://www.htokens.finance/zh-cn/", + "description": "BTC is a peer-to-peer digital system, users can transact directly without an intermediary. Transactions are verified by network nodes and recorded in a public distributed ledger called the blockchain.", + "explorer": "https://hecoinfo.com/token/0x66a79d23e58475d2738179ca52cd0b41d73f0bea", + "status": "active", + "id": "0x66a79D23E58475D2738179Ca52cd0b41d73f0BEa", + "tags": [ + "defi", + "heco-tag" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/HBTC_Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/huobi-btc/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/bitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/heco/assets/0x66a79D23E58475D2738179Ca52cd0b41d73f0BEa/logo.png b/blockchains/heco/assets/0x66a79D23E58475D2738179Ca52cd0b41d73f0BEa/logo.png new file mode 100644 index 00000000..cef77647 Binary files /dev/null and b/blockchains/heco/assets/0x66a79D23E58475D2738179Ca52cd0b41d73f0BEa/logo.png differ diff --git a/blockchains/heco/assets/0x70D171d269D964d14aF9617858540061e7bE9EF1/info.json b/blockchains/heco/assets/0x70D171d269D964d14aF9617858540061e7bE9EF1/info.json new file mode 100644 index 00000000..165b4a42 --- /dev/null +++ b/blockchains/heco/assets/0x70D171d269D964d14aF9617858540061e7bE9EF1/info.json @@ -0,0 +1,25 @@ +{ + "name": "Heco-Peg WBTCHECO Token", + "type": "HRC20", + "symbol": "WBTC", + "decimals": 8, + "website": "https://www.htokens.finance/zh-cn/", + "description": "Wrapped Bitcoin (WBTC) is an ERC20 token backed 1:1 with Bitcoin. Completely transparent. 100% verifiable. Community led.", + "explorer": "https://hecoinfo.com/token/0x70d171d269d964d14af9617858540061e7be9ef1", + "status": "active", + "id": "0x70D171d269D964d14aF9617858540061e7bE9EF1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/wrapped-bitcoin/" + } + ], + "tags": [ + "defi", + "heco-tag" + ] +} \ No newline at end of file diff --git a/blockchains/heco/assets/0x70D171d269D964d14aF9617858540061e7bE9EF1/logo.png b/blockchains/heco/assets/0x70D171d269D964d14aF9617858540061e7bE9EF1/logo.png new file mode 100644 index 00000000..702d64a2 Binary files /dev/null and b/blockchains/heco/assets/0x70D171d269D964d14aF9617858540061e7bE9EF1/logo.png differ diff --git a/blockchains/heco/assets/0x765277EebeCA2e31912C9946eAe1021199B39C61/info.json b/blockchains/heco/assets/0x765277EebeCA2e31912C9946eAe1021199B39C61/info.json new file mode 100644 index 00000000..06d88ccc --- /dev/null +++ b/blockchains/heco/assets/0x765277EebeCA2e31912C9946eAe1021199B39C61/info.json @@ -0,0 +1,37 @@ +{ + "name": "beefy.finance", + "website": "https://beefy.finance/", + "description": "The Multichain Yield Optimizer", + "explorer": "https://hecoinfo.com/token/0x765277eebeca2e31912c9946eae1021199b39c61", + "type": "HRC20", + "symbol": "BIFI", + "decimals": 18, + "status": "active", + "id": "0x765277EebeCA2e31912C9946eAe1021199B39C61", + "links": [ + { + "name": "github", + "url": "https://github.com/beefyfinance" + }, + { + "name": "x", + "url": "https://x.com/beefyfinance" + }, + { + "name": "telegram", + "url": "https://t.me/beefyannouncement" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/beefy-finance/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/beefy-finance/" + } + ], + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/heco/assets/0x765277EebeCA2e31912C9946eAe1021199B39C61/logo.png b/blockchains/heco/assets/0x765277EebeCA2e31912C9946eAe1021199B39C61/logo.png new file mode 100644 index 00000000..6c09bb9a Binary files /dev/null and b/blockchains/heco/assets/0x765277EebeCA2e31912C9946eAe1021199B39C61/logo.png differ diff --git a/blockchains/heco/assets/0x9362Bbef4B8313A8Aa9f0c9808B80577Aa26B73B/info.json b/blockchains/heco/assets/0x9362Bbef4B8313A8Aa9f0c9808B80577Aa26B73B/info.json new file mode 100644 index 00000000..f530359e --- /dev/null +++ b/blockchains/heco/assets/0x9362Bbef4B8313A8Aa9f0c9808B80577Aa26B73B/info.json @@ -0,0 +1,21 @@ +{ + "name": "Heco-Peg USDCHECO Token", + "type": "HRC20", + "symbol": "USDC-HECO", + "decimals": 6, + "website": "https://www.htokens.finance/zh-cn/", + "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://hecoinfo.com/token/0x9362bbef4b8313a8aa9f0c9808b80577aa26b73b", + "status": "active", + "id": "0x9362Bbef4B8313A8Aa9f0c9808B80577Aa26B73B", + "tags": [ + "defi", + "heco-tag" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/coins/usd-coin/" + } + ] +} diff --git a/blockchains/heco/assets/0x9362Bbef4B8313A8Aa9f0c9808B80577Aa26B73B/logo.png b/blockchains/heco/assets/0x9362Bbef4B8313A8Aa9f0c9808B80577Aa26B73B/logo.png new file mode 100644 index 00000000..7583d0e6 Binary files /dev/null and b/blockchains/heco/assets/0x9362Bbef4B8313A8Aa9f0c9808B80577Aa26B73B/logo.png differ diff --git a/blockchains/heco/assets/0x9e004545c59D359F6B7BFB06a26390b087717b42/info.json b/blockchains/heco/assets/0x9e004545c59D359F6B7BFB06a26390b087717b42/info.json new file mode 100644 index 00000000..adcdaa99 --- /dev/null +++ b/blockchains/heco/assets/0x9e004545c59D359F6B7BFB06a26390b087717b42/info.json @@ -0,0 +1,21 @@ +{ + "name": "Heco-Peg LINK Token", + "type": "HRC20", + "symbol": "LINK", + "decimals": 18, + "website": "https://www.htokens.finance/zh-cn/", + "description": "A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.", + "explorer": "https://hecoinfo.com/token/0x9e004545c59d359f6b7bfb06a26390b087717b42", + "status": "active", + "id": "0x9e004545c59D359F6B7BFB06a26390b087717b42", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/coins/chainlink" + } + ], + "tags": [ + "defi", + "heco-tag" + ] +} diff --git a/blockchains/heco/assets/0x9e004545c59D359F6B7BFB06a26390b087717b42/logo.png b/blockchains/heco/assets/0x9e004545c59D359F6B7BFB06a26390b087717b42/logo.png new file mode 100644 index 00000000..ab55f5e2 Binary files /dev/null and b/blockchains/heco/assets/0x9e004545c59D359F6B7BFB06a26390b087717b42/logo.png differ diff --git a/blockchains/heco/assets/0xC7f7a54892B78b5c812c58d9Df8035FcE9F4D445/info.json b/blockchains/heco/assets/0xC7f7a54892B78b5c812c58d9Df8035FcE9F4D445/info.json new file mode 100644 index 00000000..301698a9 --- /dev/null +++ b/blockchains/heco/assets/0xC7f7a54892B78b5c812c58d9Df8035FcE9F4D445/info.json @@ -0,0 +1,21 @@ +{ + "name": "Heco-Peg FTT Token", + "type": "HRC20", + "symbol": "FTT", + "decimals": 18, + "website": "https://www.htokens.finance/zh-cn/", + "description": "Cryptocurrency Derivatives Exchange", + "explorer": "https://hecoinfo.com/token/0xc7f7a54892b78b5c812c58d9df8035fce9f4d445", + "status": "active", + "id": "0xC7f7a54892B78b5c812c58d9Df8035FcE9F4D445", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/coins/ftx-token/" + } + ], + "tags": [ + "defi", + "heco-tag" + ] +} \ No newline at end of file diff --git a/blockchains/heco/assets/0xC7f7a54892B78b5c812c58d9Df8035FcE9F4D445/logo.png b/blockchains/heco/assets/0xC7f7a54892B78b5c812c58d9Df8035FcE9F4D445/logo.png new file mode 100644 index 00000000..8476fe01 Binary files /dev/null and b/blockchains/heco/assets/0xC7f7a54892B78b5c812c58d9Df8035FcE9F4D445/logo.png differ diff --git a/blockchains/heco/assets/0xfAdD0c7762c59cEBC5248019dBAC652319CEBDbd/info.json b/blockchains/heco/assets/0xfAdD0c7762c59cEBC5248019dBAC652319CEBDbd/info.json new file mode 100644 index 00000000..0682350f --- /dev/null +++ b/blockchains/heco/assets/0xfAdD0c7762c59cEBC5248019dBAC652319CEBDbd/info.json @@ -0,0 +1,21 @@ +{ + "name": "Heco-Peg GRT Token", + "type": "HRC20", + "symbol": "GRT", + "decimals": 18, + "website": "https://www.htokens.finance/zh-cn/", + "description": "The Graph is an indexing protocol and global API for organizing blockchain data and making it easily accessible with GraphQL.", + "explorer": "https://hecoinfo.com/token/0xfadd0c7762c59cebc5248019dbac652319cebdbd", + "status": "active", + "id": "0xfAdD0c7762c59cEBC5248019dBAC652319CEBDbd", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/coins/the-graph/" + } + ], + "tags": [ + "defi", + "heco-tag" + ] +} \ No newline at end of file diff --git a/blockchains/heco/assets/0xfAdD0c7762c59cEBC5248019dBAC652319CEBDbd/logo.png b/blockchains/heco/assets/0xfAdD0c7762c59cEBC5248019dBAC652319CEBDbd/logo.png new file mode 100644 index 00000000..65453fc0 Binary files /dev/null and b/blockchains/heco/assets/0xfAdD0c7762c59cEBC5248019dBAC652319CEBDbd/logo.png differ diff --git a/blockchains/heco/info/info.json b/blockchains/heco/info/info.json new file mode 100644 index 00000000..2fae149d --- /dev/null +++ b/blockchains/heco/info/info.json @@ -0,0 +1,21 @@ +{ + "name": "Huobi ECO Chain", + "website": "https://www.hecochain.com/en-us/", + "description": "HECO is a decentralized and cost efficient public chain that Ethereum developers can easily get started with and smart contracts are seamlessly compatible.", + "explorer": "https://hecoinfo.com/", + "symbol": "HT", + "type": "coin", + "decimals": 18, + "rpc_url": "https://http-mainnet.hecochain.com", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/HECO_Chain" + }, + { + "name": "telegram", + "url": "https://t.me/Huobiecochainofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/heco/info/logo.png b/blockchains/heco/info/logo.png new file mode 100644 index 00000000..5336fe81 Binary files /dev/null and b/blockchains/heco/info/logo.png differ diff --git a/blockchains/heco/info/square_logo.png b/blockchains/heco/info/square_logo.png new file mode 100644 index 00000000..b408c093 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 00000000..cc3fc0aa --- /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 00000000..cb6c4903 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 new file mode 100644 index 00000000..3ffc1e0f --- /dev/null +++ b/blockchains/hedera/info/info.json @@ -0,0 +1,31 @@ +{ + "name": "Hedera", + "website": "https://hedera.com/", + "description": "The 3rd generation public ledger", + "explorer": "https://hashscan.io/mainnet/dashboard", + "symbol": "HBAR", + "type": "coin", + "decimals": 8, + "status": "active", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/hedera" + }, + { + "name": "github", + "url": "https://github.com/hashgraph" + }, + { + "name": "discord", + "url": "https://discord.com/invite/EC2GY8ueRk" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hedera/" + } + ] +} \ No newline at end of file diff --git a/blockchains/hedera/info/logo.png b/blockchains/hedera/info/logo.png new file mode 100644 index 00000000..e16f7929 Binary files /dev/null and b/blockchains/hedera/info/logo.png differ diff --git a/blockchains/hedera/info/square_logo.png b/blockchains/hedera/info/square_logo.png new file mode 100644 index 00000000..6dde96e7 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 new file mode 100644 index 00000000..91c54ae3 --- /dev/null +++ b/blockchains/hoo/info/info.json @@ -0,0 +1,33 @@ +{ + "name": "Hoo Token", + "type": "coin", + "coin_type": 1170, + "symbol": "HOO", + "decimals": 18, + "website": "https://hoosmartchain.com/", + "description": "HooToken aims to provide safe and reliable assets management and blockchain services to users worldwide.", + "explorer": "https://hooscan.com", + "rpc_url": "https://http-mainnet.hoosmartchain.com", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/Hoo_exchange" + }, + { + "name": "facebook", + "url": "https://facebook.com/hooexchange" + }, + { + "name": "telegram", + "url": "https://t.me/hooChinesegroup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hoo-token/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/hoo/info/logo.png b/blockchains/hoo/info/logo.png new file mode 100644 index 00000000..3a5ff5eb Binary files /dev/null and b/blockchains/hoo/info/logo.png differ diff --git a/blockchains/hoo/info/square_logo.png b/blockchains/hoo/info/square_logo.png new file mode 100644 index 00000000..793f7b4a 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 00000000..e513481b --- /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 00000000..9c7550c4 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 00000000..850dec87 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 00000000..e513481b --- /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 00000000..9c7550c4 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 00000000..850dec87 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 new file mode 100644 index 00000000..e4a8e2f3 --- /dev/null +++ b/blockchains/icon/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "ICON", + "website": "https://icon.foundation", + "description": "ICON is a decentralized blockchain network focused on interoperability. ICON wants to be one of the largest blockchain networks in the world.", + "explorer": "https://tracker.icon.foundation/", + "research": "https://research.binance.com/en/projects/icon", + "symbol": "ICX", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/icon-project" + }, + { + "name": "x", + "url": "https://x.com/helloiconworld" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/helloicon" + }, + { + "name": "whitepaper", + "url": "https://docs.icon.foundation/ICON-Whitepaper-EN-Draft.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/icon/info/logo.png b/blockchains/icon/info/logo.png new file mode 100644 index 00000000..2bddb7a0 Binary files /dev/null and b/blockchains/icon/info/logo.png differ diff --git a/blockchains/icon/info/square_logo.png b/blockchains/icon/info/square_logo.png new file mode 100644 index 00000000..3c082ce6 Binary files /dev/null and b/blockchains/icon/info/square_logo.png differ diff --git a/blockchains/internet_computer/info/info.json b/blockchains/internet_computer/info/info.json new file mode 100644 index 00000000..58a1ac28 --- /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 00000000..07b0d6c6 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 00000000..05fe0c4d 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 new file mode 100644 index 00000000..2c267ab4 --- /dev/null +++ b/blockchains/iost/info/info.json @@ -0,0 +1,29 @@ +{ + "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://explorer.iost.io", + "research": "https://research.binance.com/en/projects/iost", + "symbol": "IOST", + "type": "coin", + "decimals": 2, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/iost-official/go-iost" + }, + { + "name": "x", + "url": "https://x.com/IOST_Official" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/IOStoken" + }, + { + "name": "whitepaper", + "url": "https://iost.io/624/" + } + ] +} \ No newline at end of file diff --git a/blockchains/iost/info/logo.png b/blockchains/iost/info/logo.png new file mode 100644 index 00000000..08dbf297 Binary files /dev/null and b/blockchains/iost/info/logo.png differ diff --git a/blockchains/iost/info/square_logo.png b/blockchains/iost/info/square_logo.png new file mode 100644 index 00000000..e75172da 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 new file mode 100644 index 00000000..202d81d2 --- /dev/null +++ b/blockchains/iotex/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "IoTeX", + "website": "https://iotex.io", + "description": "IOTX will be a Decentralized Network for Internet of Things. Powered by a Privacy-Centric Blockchain.", + "explorer": "https://iotexscan.io/", + "research": "https://research.binance.com/en/projects/iotx", + "symbol": "IOTX", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/iotexproject" + }, + { + "name": "x", + "url": "https://x.com/iotex_io" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/IoTex" + }, + { + "name": "whitepaper", + "url": "https://iotex.io/white-paper" + } + ] +} \ No newline at end of file diff --git a/blockchains/iotex/info/logo.png b/blockchains/iotex/info/logo.png new file mode 100644 index 00000000..2e533fb2 Binary files /dev/null and b/blockchains/iotex/info/logo.png differ diff --git a/blockchains/iotex/info/square_logo.png b/blockchains/iotex/info/square_logo.png new file mode 100644 index 00000000..cea4699b Binary files /dev/null and b/blockchains/iotex/info/square_logo.png differ diff --git a/blockchains/iotex/validators/assets/airfoil/logo.png b/blockchains/iotex/validators/assets/airfoil/logo.png new file mode 100644 index 00000000..2cc73160 Binary files /dev/null and b/blockchains/iotex/validators/assets/airfoil/logo.png differ diff --git a/blockchains/iotex/validators/assets/alphacoin/logo.png b/blockchains/iotex/validators/assets/alphacoin/logo.png new file mode 100644 index 00000000..b483e953 Binary files /dev/null and b/blockchains/iotex/validators/assets/alphacoin/logo.png differ diff --git a/blockchains/iotex/validators/assets/bitwires/logo.png b/blockchains/iotex/validators/assets/bitwires/logo.png new file mode 100644 index 00000000..1d651757 Binary files /dev/null and b/blockchains/iotex/validators/assets/bitwires/logo.png differ diff --git a/blockchains/iotex/validators/assets/blackpool/logo.png b/blockchains/iotex/validators/assets/blackpool/logo.png new file mode 100644 index 00000000..fc5d1566 Binary files /dev/null and b/blockchains/iotex/validators/assets/blackpool/logo.png differ diff --git a/blockchains/iotex/validators/assets/blockboost/logo.png b/blockchains/iotex/validators/assets/blockboost/logo.png new file mode 100644 index 00000000..7c95e2ff Binary files /dev/null and b/blockchains/iotex/validators/assets/blockboost/logo.png differ diff --git a/blockchains/iotex/validators/assets/blockfolio/logo.png b/blockchains/iotex/validators/assets/blockfolio/logo.png new file mode 100644 index 00000000..eebc2ddf Binary files /dev/null and b/blockchains/iotex/validators/assets/blockfolio/logo.png differ diff --git a/blockchains/iotex/validators/assets/capitmu/logo.png b/blockchains/iotex/validators/assets/capitmu/logo.png new file mode 100644 index 00000000..3d5e9acb Binary files /dev/null and b/blockchains/iotex/validators/assets/capitmu/logo.png differ diff --git a/blockchains/iotex/validators/assets/citex2018/logo.png b/blockchains/iotex/validators/assets/citex2018/logo.png new file mode 100644 index 00000000..af38c363 Binary files /dev/null and b/blockchains/iotex/validators/assets/citex2018/logo.png differ diff --git a/blockchains/iotex/validators/assets/cobo/logo.png b/blockchains/iotex/validators/assets/cobo/logo.png new file mode 100644 index 00000000..c9848934 Binary files /dev/null and b/blockchains/iotex/validators/assets/cobo/logo.png differ diff --git a/blockchains/iotex/validators/assets/coingecko/logo.png b/blockchains/iotex/validators/assets/coingecko/logo.png new file mode 100644 index 00000000..645560b4 Binary files /dev/null and b/blockchains/iotex/validators/assets/coingecko/logo.png differ diff --git a/blockchains/iotex/validators/assets/consensusnet/logo.png b/blockchains/iotex/validators/assets/consensusnet/logo.png new file mode 100644 index 00000000..920f657f Binary files /dev/null and b/blockchains/iotex/validators/assets/consensusnet/logo.png differ diff --git a/blockchains/iotex/validators/assets/coredev/logo.png b/blockchains/iotex/validators/assets/coredev/logo.png new file mode 100644 index 00000000..b36f5dce Binary files /dev/null and b/blockchains/iotex/validators/assets/coredev/logo.png differ diff --git a/blockchains/iotex/validators/assets/cpc/logo.png b/blockchains/iotex/validators/assets/cpc/logo.png new file mode 100644 index 00000000..975c7e3a Binary files /dev/null and b/blockchains/iotex/validators/assets/cpc/logo.png differ diff --git a/blockchains/iotex/validators/assets/cryptolionsx/logo.png b/blockchains/iotex/validators/assets/cryptolionsx/logo.png new file mode 100644 index 00000000..c20fcc83 Binary files /dev/null and b/blockchains/iotex/validators/assets/cryptolionsx/logo.png differ diff --git a/blockchains/iotex/validators/assets/draperdragon/logo.png b/blockchains/iotex/validators/assets/draperdragon/logo.png new file mode 100644 index 00000000..727450df Binary files /dev/null and b/blockchains/iotex/validators/assets/draperdragon/logo.png differ diff --git a/blockchains/iotex/validators/assets/droute/logo.png b/blockchains/iotex/validators/assets/droute/logo.png new file mode 100644 index 00000000..d475f960 Binary files /dev/null and b/blockchains/iotex/validators/assets/droute/logo.png differ diff --git a/blockchains/iotex/validators/assets/ducapital/logo.png b/blockchains/iotex/validators/assets/ducapital/logo.png new file mode 100644 index 00000000..ffa51cb8 Binary files /dev/null and b/blockchains/iotex/validators/assets/ducapital/logo.png differ diff --git a/blockchains/iotex/validators/assets/elink/logo.png b/blockchains/iotex/validators/assets/elink/logo.png new file mode 100644 index 00000000..e8cbccdb Binary files /dev/null and b/blockchains/iotex/validators/assets/elink/logo.png differ diff --git a/blockchains/iotex/validators/assets/elitex/logo.png b/blockchains/iotex/validators/assets/elitex/logo.png new file mode 100644 index 00000000..4a10ee9c Binary files /dev/null and b/blockchains/iotex/validators/assets/elitex/logo.png differ diff --git a/blockchains/iotex/validators/assets/enlightiv/logo.png b/blockchains/iotex/validators/assets/enlightiv/logo.png new file mode 100644 index 00000000..0b3df82c Binary files /dev/null and b/blockchains/iotex/validators/assets/enlightiv/logo.png differ diff --git a/blockchains/iotex/validators/assets/eon/logo.png b/blockchains/iotex/validators/assets/eon/logo.png new file mode 100644 index 00000000..f211fd1c Binary files /dev/null and b/blockchains/iotex/validators/assets/eon/logo.png differ diff --git a/blockchains/iotex/validators/assets/everstake/logo.png b/blockchains/iotex/validators/assets/everstake/logo.png new file mode 100644 index 00000000..d41ce208 Binary files /dev/null and b/blockchains/iotex/validators/assets/everstake/logo.png differ diff --git a/blockchains/iotex/validators/assets/gamefantasy#/logo.png b/blockchains/iotex/validators/assets/gamefantasy#/logo.png new file mode 100644 index 00000000..c24fc39f Binary files /dev/null and b/blockchains/iotex/validators/assets/gamefantasy#/logo.png differ diff --git a/blockchains/iotex/validators/assets/hashbuy/logo.png b/blockchains/iotex/validators/assets/hashbuy/logo.png new file mode 100644 index 00000000..f00158a5 Binary files /dev/null and b/blockchains/iotex/validators/assets/hashbuy/logo.png differ diff --git a/blockchains/iotex/validators/assets/hashquark/logo.png b/blockchains/iotex/validators/assets/hashquark/logo.png new file mode 100644 index 00000000..bcbf790a Binary files /dev/null and b/blockchains/iotex/validators/assets/hashquark/logo.png differ diff --git a/blockchains/iotex/validators/assets/hofancrypto/logo.png b/blockchains/iotex/validators/assets/hofancrypto/logo.png new file mode 100644 index 00000000..a246befe Binary files /dev/null and b/blockchains/iotex/validators/assets/hofancrypto/logo.png differ diff --git a/blockchains/iotex/validators/assets/hotbit/logo.png b/blockchains/iotex/validators/assets/hotbit/logo.png new file mode 100644 index 00000000..13250007 Binary files /dev/null and b/blockchains/iotex/validators/assets/hotbit/logo.png differ diff --git a/blockchains/iotex/validators/assets/huobiwallet/logo.png b/blockchains/iotex/validators/assets/huobiwallet/logo.png new file mode 100644 index 00000000..313f0061 Binary files /dev/null and b/blockchains/iotex/validators/assets/huobiwallet/logo.png differ diff --git a/blockchains/iotex/validators/assets/infstones/logo.png b/blockchains/iotex/validators/assets/infstones/logo.png new file mode 100644 index 00000000..6369de7e Binary files /dev/null and b/blockchains/iotex/validators/assets/infstones/logo.png differ diff --git a/blockchains/iotex/validators/assets/iosg/logo.png b/blockchains/iotex/validators/assets/iosg/logo.png new file mode 100644 index 00000000..c2ef0f56 Binary files /dev/null and b/blockchains/iotex/validators/assets/iosg/logo.png differ diff --git a/blockchains/iotex/validators/assets/iotask/logo.png b/blockchains/iotex/validators/assets/iotask/logo.png new file mode 100644 index 00000000..7a488845 Binary files /dev/null and b/blockchains/iotex/validators/assets/iotask/logo.png differ diff --git a/blockchains/iotex/validators/assets/iotexbgogo/logo.png b/blockchains/iotex/validators/assets/iotexbgogo/logo.png new file mode 100644 index 00000000..4d168849 Binary files /dev/null and b/blockchains/iotex/validators/assets/iotexbgogo/logo.png differ diff --git a/blockchains/iotex/validators/assets/iotexcore/logo.png b/blockchains/iotex/validators/assets/iotexcore/logo.png new file mode 100644 index 00000000..7b532a4b Binary files /dev/null and b/blockchains/iotex/validators/assets/iotexcore/logo.png differ diff --git a/blockchains/iotex/validators/assets/iotexgeeks/logo.png b/blockchains/iotex/validators/assets/iotexgeeks/logo.png new file mode 100644 index 00000000..46ae9cb8 Binary files /dev/null and b/blockchains/iotex/validators/assets/iotexgeeks/logo.png differ diff --git a/blockchains/iotex/validators/assets/iotexhub/logo.png b/blockchains/iotex/validators/assets/iotexhub/logo.png new file mode 100644 index 00000000..6e774392 Binary files /dev/null and b/blockchains/iotex/validators/assets/iotexhub/logo.png differ diff --git a/blockchains/iotex/validators/assets/iotexicu/logo.png b/blockchains/iotex/validators/assets/iotexicu/logo.png new file mode 100644 index 00000000..0d803b79 Binary files /dev/null and b/blockchains/iotex/validators/assets/iotexicu/logo.png differ diff --git a/blockchains/iotex/validators/assets/iotexlab/logo.png b/blockchains/iotex/validators/assets/iotexlab/logo.png new file mode 100644 index 00000000..3a1f243d Binary files /dev/null and b/blockchains/iotex/validators/assets/iotexlab/logo.png differ diff --git a/blockchains/iotex/validators/assets/iotexmainnet/logo.png b/blockchains/iotex/validators/assets/iotexmainnet/logo.png new file mode 100644 index 00000000..b56a9643 Binary files /dev/null and b/blockchains/iotex/validators/assets/iotexmainnet/logo.png differ diff --git a/blockchains/iotex/validators/assets/iotexteam/logo.png b/blockchains/iotex/validators/assets/iotexteam/logo.png new file mode 100644 index 00000000..7fc10591 Binary files /dev/null and b/blockchains/iotex/validators/assets/iotexteam/logo.png differ diff --git a/blockchains/iotex/validators/assets/iotexunion/logo.png b/blockchains/iotex/validators/assets/iotexunion/logo.png new file mode 100644 index 00000000..7d027061 Binary files /dev/null and b/blockchains/iotex/validators/assets/iotexunion/logo.png differ diff --git a/blockchains/iotex/validators/assets/iotxplorerio/logo.png b/blockchains/iotex/validators/assets/iotxplorerio/logo.png new file mode 100644 index 00000000..242a4e47 Binary files /dev/null and b/blockchains/iotex/validators/assets/iotxplorerio/logo.png differ diff --git a/blockchains/iotex/validators/assets/keys/logo.png b/blockchains/iotex/validators/assets/keys/logo.png new file mode 100644 index 00000000..814ac8cd Binary files /dev/null and b/blockchains/iotex/validators/assets/keys/logo.png differ diff --git a/blockchains/iotex/validators/assets/lanhu/logo.png b/blockchains/iotex/validators/assets/lanhu/logo.png new file mode 100644 index 00000000..479ee753 Binary files /dev/null and b/blockchains/iotex/validators/assets/lanhu/logo.png differ diff --git a/blockchains/iotex/validators/assets/laomao/logo.png b/blockchains/iotex/validators/assets/laomao/logo.png new file mode 100644 index 00000000..2216480a Binary files /dev/null and b/blockchains/iotex/validators/assets/laomao/logo.png differ diff --git a/blockchains/iotex/validators/assets/link/logo.png b/blockchains/iotex/validators/assets/link/logo.png new file mode 100644 index 00000000..4fcf7602 Binary files /dev/null and b/blockchains/iotex/validators/assets/link/logo.png differ diff --git a/blockchains/iotex/validators/assets/longz/logo.png b/blockchains/iotex/validators/assets/longz/logo.png new file mode 100644 index 00000000..729e09f7 Binary files /dev/null and b/blockchains/iotex/validators/assets/longz/logo.png differ diff --git a/blockchains/iotex/validators/assets/metanyx/logo.png b/blockchains/iotex/validators/assets/metanyx/logo.png new file mode 100644 index 00000000..b2ef21f4 Binary files /dev/null and b/blockchains/iotex/validators/assets/metanyx/logo.png differ diff --git a/blockchains/iotex/validators/assets/meter/logo.png b/blockchains/iotex/validators/assets/meter/logo.png new file mode 100644 index 00000000..6ebb7b29 Binary files /dev/null and b/blockchains/iotex/validators/assets/meter/logo.png differ diff --git a/blockchains/iotex/validators/assets/mrtrump/logo.png b/blockchains/iotex/validators/assets/mrtrump/logo.png new file mode 100644 index 00000000..9c3f52a2 Binary files /dev/null and b/blockchains/iotex/validators/assets/mrtrump/logo.png differ diff --git a/blockchains/iotex/validators/assets/nodeasy/logo.png b/blockchains/iotex/validators/assets/nodeasy/logo.png new file mode 100644 index 00000000..11bb1020 Binary files /dev/null and b/blockchains/iotex/validators/assets/nodeasy/logo.png differ diff --git a/blockchains/iotex/validators/assets/piexgo/logo.png b/blockchains/iotex/validators/assets/piexgo/logo.png new file mode 100644 index 00000000..6feb99e5 Binary files /dev/null and b/blockchains/iotex/validators/assets/piexgo/logo.png differ diff --git a/blockchains/iotex/validators/assets/pnp/logo.png b/blockchains/iotex/validators/assets/pnp/logo.png new file mode 100644 index 00000000..56032116 Binary files /dev/null and b/blockchains/iotex/validators/assets/pnp/logo.png differ diff --git a/blockchains/iotex/validators/assets/preangel/logo.png b/blockchains/iotex/validators/assets/preangel/logo.png new file mode 100644 index 00000000..f923c8e7 Binary files /dev/null and b/blockchains/iotex/validators/assets/preangel/logo.png differ diff --git a/blockchains/iotex/validators/assets/pubxpayments/logo.png b/blockchains/iotex/validators/assets/pubxpayments/logo.png new file mode 100644 index 00000000..76019415 Binary files /dev/null and b/blockchains/iotex/validators/assets/pubxpayments/logo.png differ diff --git a/blockchains/iotex/validators/assets/raketat8/logo.png b/blockchains/iotex/validators/assets/raketat8/logo.png new file mode 100644 index 00000000..2dc101c8 Binary files /dev/null and b/blockchains/iotex/validators/assets/raketat8/logo.png differ diff --git a/blockchains/iotex/validators/assets/ratels/logo.png b/blockchains/iotex/validators/assets/ratels/logo.png new file mode 100644 index 00000000..86e4bff7 Binary files /dev/null and b/blockchains/iotex/validators/assets/ratels/logo.png differ diff --git a/blockchains/iotex/validators/assets/rockx/logo.png b/blockchains/iotex/validators/assets/rockx/logo.png new file mode 100644 index 00000000..e291c8e0 Binary files /dev/null and b/blockchains/iotex/validators/assets/rockx/logo.png differ diff --git a/blockchains/iotex/validators/assets/royalland/logo.png b/blockchains/iotex/validators/assets/royalland/logo.png new file mode 100644 index 00000000..d5d50464 Binary files /dev/null and b/blockchains/iotex/validators/assets/royalland/logo.png differ diff --git a/blockchains/iotex/validators/assets/satoshi/logo.png b/blockchains/iotex/validators/assets/satoshi/logo.png new file mode 100644 index 00000000..e0a03e13 Binary files /dev/null and b/blockchains/iotex/validators/assets/satoshi/logo.png differ diff --git a/blockchains/iotex/validators/assets/slowmist/logo.png b/blockchains/iotex/validators/assets/slowmist/logo.png new file mode 100644 index 00000000..5de6fd93 Binary files /dev/null and b/blockchains/iotex/validators/assets/slowmist/logo.png differ diff --git a/blockchains/iotex/validators/assets/smartstake/logo.png b/blockchains/iotex/validators/assets/smartstake/logo.png new file mode 100644 index 00000000..63fe5615 Binary files /dev/null and b/blockchains/iotex/validators/assets/smartstake/logo.png differ diff --git a/blockchains/iotex/validators/assets/snzholding/logo.png b/blockchains/iotex/validators/assets/snzholding/logo.png new file mode 100644 index 00000000..ff326560 Binary files /dev/null and b/blockchains/iotex/validators/assets/snzholding/logo.png differ diff --git a/blockchains/iotex/validators/assets/superiotex/logo.png b/blockchains/iotex/validators/assets/superiotex/logo.png new file mode 100644 index 00000000..cecadecf Binary files /dev/null and b/blockchains/iotex/validators/assets/superiotex/logo.png differ diff --git a/blockchains/iotex/validators/assets/tgb/logo.png b/blockchains/iotex/validators/assets/tgb/logo.png new file mode 100644 index 00000000..6293ee0f Binary files /dev/null and b/blockchains/iotex/validators/assets/tgb/logo.png differ diff --git a/blockchains/iotex/validators/assets/thebottoken#/logo.png b/blockchains/iotex/validators/assets/thebottoken#/logo.png new file mode 100644 index 00000000..85902824 Binary files /dev/null and b/blockchains/iotex/validators/assets/thebottoken#/logo.png differ diff --git a/blockchains/iotex/validators/assets/wannodes/logo.png b/blockchains/iotex/validators/assets/wannodes/logo.png new file mode 100644 index 00000000..b9f7dd7d Binary files /dev/null and b/blockchains/iotex/validators/assets/wannodes/logo.png differ diff --git a/blockchains/iotex/validators/assets/wetez/logo.png b/blockchains/iotex/validators/assets/wetez/logo.png new file mode 100644 index 00000000..d1b40ad0 Binary files /dev/null and b/blockchains/iotex/validators/assets/wetez/logo.png differ diff --git a/blockchains/iotex/validators/assets/whales/logo.png b/blockchains/iotex/validators/assets/whales/logo.png new file mode 100644 index 00000000..de99d8fc Binary files /dev/null and b/blockchains/iotex/validators/assets/whales/logo.png differ diff --git a/blockchains/iotex/validators/assets/yvalidator/logo.png b/blockchains/iotex/validators/assets/yvalidator/logo.png new file mode 100644 index 00000000..319e3081 Binary files /dev/null and b/blockchains/iotex/validators/assets/yvalidator/logo.png differ diff --git a/blockchains/iotex/validators/assets/zhcapital/logo.png b/blockchains/iotex/validators/assets/zhcapital/logo.png new file mode 100644 index 00000000..c2b5fb87 Binary files /dev/null and b/blockchains/iotex/validators/assets/zhcapital/logo.png differ diff --git a/blockchains/iotex/validators/list.json b/blockchains/iotex/validators/list.json new file mode 100644 index 00000000..bcdb9160 --- /dev/null +++ b/blockchains/iotex/validators/list.json @@ -0,0 +1,422 @@ +[ + { + "id": "longz", + "name": "LongZ (龙猪)", + "description": "", + "website": "https://weibo.com/longzclub" + }, + { + "id": "droute", + "name": "dRoute", + "description": "", + "website": "https://t.me/DRouteCapital" + }, + { + "id": "iotexcore", + "name": "IoTeX Core", + "description": "", + "website": "https://x.com/iotexcore" + }, + { + "id": "royalland", + "name": "Royal Land", + "description": "", + "website": "https://x.com/RoyalLand4" + }, + { + "id": "iotexlab", + "name": "IoTeX Lab", + "description": "", + "website": "https://t.me/iotexlab" + }, + { + "id": "iosg", + "name": "IOSG", + "description": "", + "website": "https://x.com/IOSGVC" + }, + { + "id": "laomao", + "name": "IoTeXLaoMao", + "description": "", + "website": "https://t.me/iotexlaomao" + }, + { + "id": "cpc", + "name": "Stanford", + "description": "", + "website": "https://x.com/cardinalpitch" + }, + { + "id": "infstones", + "name": "Infinity Stones", + "description": "", + "website": "https://x.com/infstones" + }, + { + "id": "pnp", + "name": "PNP", + "description": "", + "website": "https://plugandplaytechcenter.com" + }, + { + "id": "hashbuy", + "name": "Hashbuy", + "description": "", + "website": "https://x.com/hashbuy_iotex" + }, + { + "id": "gamefantasy#", + "name": "GameFantasy", + "description": "", + "website": "https://x.com/wqwqwq219" + }, + { + "id": "airfoil", + "name": "Airfoil Services", + "description": "", + "website": "https://keybase.io/airfoilservices" + }, + { + "id": "link", + "name": "Link", + "description": "", + "website": "https://x.com/chainlink" + }, + { + "id": "metanyx", + "name": "Metanyx", + "description": "", + "website": "https://t.me/metanyx" + }, + { + "id": "ducapital", + "name": "DU Capital", + "description": "", + "website": "https://x.com/DuCapital_SG" + }, + { + "id": "yvalidator", + "name": "Youbi Validator", + "description": "", + "website": "https://x.com/yvalidator" + }, + { + "id": "iotexteam", + "name": "IoTeXTeam", + "description": "", + "website": "https://t.me/IoTexTeam" + }, + { + "id": "rockx", + "name": "RockX", + "description": "", + "website": "https://x.com/rockx_official" + }, + { + "id": "snzholding", + "name": "SNZPool", + "description": "", + "website": "http://snzholding.com/community/" + }, + { + "id": "coingecko", + "name": "CoinGecko", + "description": "", + "website": "https://x.com/coingecko" + }, + { + "id": "draperdragon", + "name": "Homotopic & DraperDragon", + "description": "", + "website": "https://x.com/IotexH" + }, + { + "id": "hotbit", + "name": "Hotbit Exchange", + "description": "", + "website": "https://t.me/Hotbit_Chinese" + }, + { + "id": "iotxplorerio", + "name": "iotxplorer", + "description": "", + "website": "https://x.com/iotxplorer" + }, + { + "id": "pubxpayments", + "name": "Public Payments", + "description": "", + "website": "https://x.com/publicpayments" + }, + { + "id": "blockboost", + "name": "BlockBoost", + "description": "", + "website": "https://x.com/UGotHQ" + }, + { + "id": "elitex", + "name": "EliteX.IoTeX", + "description": "", + "website": "https://t.me/iotexelitex" + }, + { + "id": "whales", + "name": "Whales Capital", + "description": "", + "website": "https://x.com/whalescapital" + }, + { + "id": "preangel", + "name": "PreAngel", + "description": "", + "website": "https://x.com/FundPreangel" + }, + { + "id": "tgb", + "name": "The Giving Block", + "description": "", + "website": "https://x.com/TheGivingBlock/" + }, + { + "id": "enlightiv", + "name": "EnlightiVision", + "description": "", + "website": "https://x.com/enlightivision" + }, + { + "id": "hofancrypto", + "name": "Hofan Crypto Capital", + "description": "", + "website": "https://x.com/hofan_crypto" + }, + { + "id": "blockfolio", + "name": "Blockfolio", + "description": "", + "website": "https://x.com/Blockfolio" + }, + { + "id": "hashquark", + "name": "HashQuark", + "description": "", + "website": "https://x.com/HashQuark" + }, + { + "id": "satoshi", + "name": "Real Satoshi & IOSG", + "description": "", + "website": "https://x.com/IOSGVC" + }, + { + "id": "iotexgeeks", + "name": "IoTeX Geeks", + "description": "", + "website": "https://x.com/iotexgeeks" + }, + { + "id": "ratels", + "name": "RATELS", + "description": "", + "website": "https://iotex.io" + }, + { + "id": "huobiwallet", + "name": "Huobi Wallet", + "description": "", + "website": "https://x.com/HuobiWallet" + }, + { + "id": "capitmu", + "name": "CapitalMu", + "description": "", + "website": "https://t.me/joinchat/HQCA_E6CKPXUM6ZRwiWznQ" + }, + { + "id": "cobo", + "name": "IoTeX Cobo Node", + "description": "", + "website": "https://x.com/Cobo_Wallet" + }, + { + "id": "zhcapital", + "name": "ZH Capital", + "description": "", + "website": "https://x.com/CapitalZh" + }, + { + "id": "iotask", + "name": "IoTASK", + "description": "", + "website": "https://t.me/IoTASK" + }, + { + "id": "coredev", + "name": "Core-Dev", + "description": "", + "website": "https://x.com/iotex_io" + }, + { + "id": "wannodes", + "name": "WanNodes", + "description": "", + "website": "https://x.com/Wannodes" + }, + { + "id": "everstake", + "name": "Everstake", + "description": "", + "website": "https://x.com/everstake_pool" + }, + { + "id": "slowmist", + "name": "SlowMistZone", + "description": "", + "website": "https://x.com/@slowmist_team" + }, + { + "id": "thebottoken#", + "name": "TheBotToken", + "description": "", + "website": "https://x.com/thebottoken" + }, + { + "id": "wetez", + "name": "Wetez", + "description": "", + "website": "https://x.com/wetez_wallet?lang=en" + }, + { + "id": "citex2018", + "name": "CITEX", + "description": "", + "website": "https://x.com/Citexofficial" + }, + { + "id": "mrtrump", + "name": "MrTrump", + "description": "", + "website": "https://x.com/realDonaldTrump" + }, + { + "id": "iotexunion", + "name": "IoTeX Union", + "description": "", + "website": "https://t.me/IoTeX_Union" + }, + { + "id": "consensusnet", + "name": "Consensus Networks", + "description": "", + "website": "https://x.com/ConsensusNet" + }, + { + "id": "iotexicu", + "name": "IoTeX ICU", + "description": "", + "website": "https://iotex.io/" + }, + { + "id": "keys", + "name": "Keys", + "description": "", + "website": "https://t.me/keys_tech" + }, + { + "id": "cryptolionsx", + "name": "CryptoLions", + "description": "", + "website": "https://t.me/romancryptolions" + }, + { + "id": "nodeasy", + "name": "Nodeasy.com", + "description": "", + "website": "https://nodeasy.com" + }, + { + "id": "superiotex", + "name": "Super IoTeX", + "description": "", + "website": "https://t.me/SuperIotexAsia" + }, + { + "id": "piexgo", + "name": "PIEXGO", + "description": "", + "website": "https://x.com/piexgocom" + }, + { + "id": "iotexhub", + "name": "iotexhub", + "description": "", + "website": "https://x.com/iotexhub" + }, + { + "id": "alphacoin", + "name": "AlphaCoin Fund", + "description": "", + "website": "https://x.com/AlphaCoinFund" + }, + { + "id": "blackpool", + "name": "BlackPool", + "description": "", + "website": "https://x.com/BlackPo17368543" + }, + { + "id": "raketat8", + "name": "RKT8", + "description": "", + "website": "https://t.me/RaketaT8" + }, + { + "id": "iotexmainnet", + "name": "IoTeX Mainnet Baikal", + "description": "", + "website": "https://t.me/iotexmainnet" + }, + { + "id": "lanhu", + "name": "Lanhu IoT (蓝狐IoT)", + "description": "", + "website": "https://x.com/lanhu_IoT" + }, + { + "id": "eon", + "name": "EON", + "description": "", + "website": "https://x.com/eon_staking" + }, + { + "id": "iotexbgogo", + "name": "iotex bgogo", + "description": "", + "website": "https://x.com/BgogoExchange" + }, + { + "id": "meter", + "name": "Meter", + "description": "", + "website": "https://x.com/meter_IO" + }, + { + "id": "bitwires", + "name": "Bitwires (币快报)", + "description": "", + "website": "https://t.me/beekan_org" + }, + { + "id": "elink", + "name": "Elink", + "description": "", + "website": "https://x.com/iotex_io" + }, + { + "id": "smartstake", + "name": "Smart Stake", + "description": "Creator of IoTeX Analytics @ iotex.smartstake.io. Automated monitoring & alerts to ensure high uptime. Support @ t.me/SmartStake", + "website": "https://smartstake.io/" + } +] \ No newline at end of file diff --git a/blockchains/iotexevm/info/info.json b/blockchains/iotexevm/info/info.json new file mode 100644 index 00000000..7b933719 --- /dev/null +++ b/blockchains/iotexevm/info/info.json @@ -0,0 +1,21 @@ +{ + "name": "IoTeX Network Mainnet", + "type": "coin", + "symbol": "IOTX", + "decimals": 18, + "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.", + "explorer": "https://iotexscan.io", + "status": "active", + "rpc_url": "https://pokt-api.iotex.io", + "links": [ + { + "name": "github", + "url": "https://github.com/iotexproject" + }, + { + "name": "x", + "url": "https://x.com/iotex_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/iotexevm/info/logo.png b/blockchains/iotexevm/info/logo.png new file mode 100644 index 00000000..fac1be9d Binary files /dev/null and b/blockchains/iotexevm/info/logo.png differ diff --git a/blockchains/iotexevm/info/square_logo.png b/blockchains/iotexevm/info/square_logo.png new file mode 100644 index 00000000..cea4699b 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 new file mode 100644 index 00000000..e98cc00e --- /dev/null +++ b/blockchains/iris/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "IRISnet", + "type": "coin", + "symbol": "IRIS", + "decimals": 6, + "website": "https://www.irisnet.org/", + "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-01.stakeflow.io", + "denom": "uiris", + "lcd_url": "https://api-irisnet-01.stakeflow.io", + "hrp": "iaa", + "fee_rate": "0.025", + "links": [ + { + "name": "telegram", + "url": "https://t.me/irisnetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/irisnet/" + }, + { + "name": "x", + "url": "https://x.com/irisnetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/iris/info/logo.png b/blockchains/iris/info/logo.png new file mode 100644 index 00000000..b4b0d12c Binary files /dev/null and b/blockchains/iris/info/logo.png differ diff --git a/blockchains/iris/info/square_logo.png b/blockchains/iris/info/square_logo.png new file mode 100644 index 00000000..7156574b 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 00000000..4b098137 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 00000000..02916372 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 00000000..10205271 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 00000000..0888af01 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 00000000..90f3f1b9 --- /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 new file mode 100644 index 00000000..2df55659 --- /dev/null +++ b/blockchains/juno/info/info.json @@ -0,0 +1,32 @@ +{ + "name": "Juno", + "type": "coin", + "symbol": "JUNO", + "decimals": 6, + "website": "https://www.junonetwork.io/", + "description": "Juno is an interoperable smart contract network. Highly scalable, robust, secure and easy to deploy.", + "explorer": "https://www.mintscan.io/juno", + "status": "active", + "rpc_url": "https://rpc.juno.interbloc.org", + "denom": "ujuno", + "lcd_url": "https://lcd-juno.itastakers.com", + "hrp": "juno", + "fee_rate": "0.04", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/CosmosContracts" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/juno/" + }, + { + "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 new file mode 100644 index 00000000..dd6c870c Binary files /dev/null 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 00000000..22e631e0 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 00000000..c2cb86a4 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 00000000..c3f41f6b 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 00000000..5f2434df 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 00000000..9a688eab 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 00000000..0f6305d8 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 00000000..ba2f64c9 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 00000000..02916372 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 00000000..bcdec563 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 00000000..0888af01 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 00000000..70c64d1b 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 00000000..9b28ec00 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 00000000..eaf66cb5 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 00000000..b39ad7ed 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 00000000..4ceb06b2 --- /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 new file mode 100644 index 00000000..314d74e5 --- /dev/null +++ b/blockchains/kava/assets/busd/info.json @@ -0,0 +1,24 @@ +{ + "name": "Binance USD", + "symbol": "BUSD", + "type": "KAVA", + "decimals": 8, + "description": "BUSD is a stablecoin issued by Paxos in partnership with Binance.", + "website": "https://www.kava.io", + "explorer": "https://www.mintscan.io/kava", + "status": "active", + "id": "busd", + "tags": [ + "stablecoin" + ], + "links": [ + { + "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/busd/logo.png b/blockchains/kava/assets/busd/logo.png new file mode 100644 index 00000000..af90aaf1 Binary files /dev/null and b/blockchains/kava/assets/busd/logo.png differ diff --git a/blockchains/kava/assets/hard/info.json b/blockchains/kava/assets/hard/info.json new file mode 100644 index 00000000..0b87770d --- /dev/null +++ b/blockchains/kava/assets/hard/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hard", + "symbol": "HARD", + "type": "KAVA", + "decimals": 6, + "description": "HARD Protocol is a decentralized money market built on Kava, enabling the lending and borrowing of cross-chain assets. HARD Protocol supports supply-side deposits for BTC, XRP, BNB, BUSD, and USDX. The platform will allow overcollateralized borrowing for supported assets.", + "website": "https://hard.kava.io/", + "explorer": "https://www.mintscan.io/kava", + "status": "active", + "id": "hard" +} \ No newline at end of file diff --git a/blockchains/kava/assets/hard/logo.png b/blockchains/kava/assets/hard/logo.png new file mode 100644 index 00000000..0e01aaaf Binary files /dev/null and b/blockchains/kava/assets/hard/logo.png differ diff --git a/blockchains/kava/assets/swp/info.json b/blockchains/kava/assets/swp/info.json new file mode 100644 index 00000000..d16fcc38 --- /dev/null +++ b/blockchains/kava/assets/swp/info.json @@ -0,0 +1,49 @@ +{ + "name": "Kava Swap", + "symbol": "SWP", + "type": "KAVA", + "decimals": 6, + "description": "Kava Swap is a cross-chain Autonomous Market Making (AMM) Protocol that leverages the Kava platform’s DeFi infrastructure, cross-chain bridges, and security. Kava Swap delivers users a seamless way to swap between assets of different blockchains and deploy their capital into market making pools where they can earn handsome returns.", + "website": "https://www.kava.io/swap", + "explorer": "https://www.mintscan.io/kava", + "status": "active", + "id": "swp", + "links": [ + { + "name": "github", + "url": "https://github.com/Kava-Labs" + }, + { + "name": "x", + "url": "https://x.com/Kava_Swap" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/kava_platform" + }, + { + "name": "medium", + "url": "https://medium.com/kava-labs" + }, + { + "name": "telegram", + "url": "https://t.me/KavaSwap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kava-swap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kava-swap" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UChauw9EMD1DC-ny_cjoLs8A" + }, + { + "name": "discord", + "url": "https://discord.com/invite/kQzh3Uv" + } + ] +} \ No newline at end of file diff --git a/blockchains/kava/assets/swp/logo.png b/blockchains/kava/assets/swp/logo.png new file mode 100644 index 00000000..f7d472de Binary files /dev/null and b/blockchains/kava/assets/swp/logo.png differ diff --git a/blockchains/kava/assets/usdt/info.json b/blockchains/kava/assets/usdt/info.json new file mode 100644 index 00000000..11f2c5b4 --- /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 00000000..f8ba68a5 Binary files /dev/null and b/blockchains/kava/assets/usdt/logo.png differ diff --git a/blockchains/kava/assets/usdx/info.json b/blockchains/kava/assets/usdx/info.json new file mode 100644 index 00000000..89f2fa3f --- /dev/null +++ b/blockchains/kava/assets/usdx/info.json @@ -0,0 +1,11 @@ +{ + "name": "USDX", + "symbol": "USDX", + "type": "KAVA", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://www.mintscan.io/kava", + "status": "active", + "id": "usdx" +} \ No newline at end of file diff --git a/blockchains/kava/assets/usdx/logo.png b/blockchains/kava/assets/usdx/logo.png new file mode 100644 index 00000000..c0bec169 Binary files /dev/null and b/blockchains/kava/assets/usdx/logo.png differ diff --git a/blockchains/kava/info/info.json b/blockchains/kava/info/info.json new file mode 100644 index 00000000..a04f25b6 --- /dev/null +++ b/blockchains/kava/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Kava", + "website": "https://kava.io", + "description": "Kava is a cross-chain DeFi Lending platform enabling stablecoin loans for users of major cryptocurrencies.", + "explorer": "https://kava.mintscan.io/", + "research": "https://research.binance.com/en/projects/kava", + "symbol": "KAVA", + "type": "coin", + "decimals": 6, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.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/logo.png b/blockchains/kava/info/logo.png new file mode 100644 index 00000000..c3a0556a Binary files /dev/null and b/blockchains/kava/info/logo.png differ diff --git a/blockchains/kava/info/square_logo.png b/blockchains/kava/info/square_logo.png new file mode 100644 index 00000000..0ee58da6 Binary files /dev/null and b/blockchains/kava/info/square_logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper12g40q2parn5z9ewh5xpltmayv6y0q3zs6ddmdg/logo.png b/blockchains/kava/validators/assets/kavavaloper12g40q2parn5z9ewh5xpltmayv6y0q3zs6ddmdg/logo.png new file mode 100644 index 00000000..431d5976 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper12g40q2parn5z9ewh5xpltmayv6y0q3zs6ddmdg/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper13rzkukgxsae26tn2h6vuhlrdxap6rzrc29uhmq/logo.png b/blockchains/kava/validators/assets/kavavaloper13rzkukgxsae26tn2h6vuhlrdxap6rzrc29uhmq/logo.png new file mode 100644 index 00000000..d1959672 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper13rzkukgxsae26tn2h6vuhlrdxap6rzrc29uhmq/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper14fkp35j5nkvtztmxmsxh88jks6p3w8u7p76zs9/logo.png b/blockchains/kava/validators/assets/kavavaloper14fkp35j5nkvtztmxmsxh88jks6p3w8u7p76zs9/logo.png new file mode 100644 index 00000000..bba7c4c5 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper14fkp35j5nkvtztmxmsxh88jks6p3w8u7p76zs9/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper14gfgngrgg0pj494euuuvhygrhfptzf2hxllsev/logo.png b/blockchains/kava/validators/assets/kavavaloper14gfgngrgg0pj494euuuvhygrhfptzf2hxllsev/logo.png new file mode 100644 index 00000000..9ec4e254 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper14gfgngrgg0pj494euuuvhygrhfptzf2hxllsev/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper14vk3997r4ea4m7eej7ugmr503ru768fxwynsmq/logo.png b/blockchains/kava/validators/assets/kavavaloper14vk3997r4ea4m7eej7ugmr503ru768fxwynsmq/logo.png new file mode 100644 index 00000000..2bd3a1e2 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper14vk3997r4ea4m7eej7ugmr503ru768fxwynsmq/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 00000000..bed02519 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 new file mode 100644 index 00000000..e247fab1 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper173l244hzxae6552769k2s3lfy4ue7whxwtkyq4/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper18qaqcev8m7vgkktw256hp74c87mq7mxzje3zkw/logo.png b/blockchains/kava/validators/assets/kavavaloper18qaqcev8m7vgkktw256hp74c87mq7mxzje3zkw/logo.png new file mode 100644 index 00000000..c53de065 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper18qaqcev8m7vgkktw256hp74c87mq7mxzje3zkw/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper195j72kgpuel75kwfpeu0kt7nc7rgzm47tytl7p/logo.png b/blockchains/kava/validators/assets/kavavaloper195j72kgpuel75kwfpeu0kt7nc7rgzm47tytl7p/logo.png new file mode 100644 index 00000000..e157d99c Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper195j72kgpuel75kwfpeu0kt7nc7rgzm47tytl7p/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper196w5nuha6u2ucwr65cqwnqrzxuemsyhv2c0lq8/logo.png b/blockchains/kava/validators/assets/kavavaloper196w5nuha6u2ucwr65cqwnqrzxuemsyhv2c0lq8/logo.png new file mode 100644 index 00000000..145cb3cb Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper196w5nuha6u2ucwr65cqwnqrzxuemsyhv2c0lq8/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1c55g0akwr59sn9ylr76sqzrmy59g068akefkdx/logo.png b/blockchains/kava/validators/assets/kavavaloper1c55g0akwr59sn9ylr76sqzrmy59g068akefkdx/logo.png new file mode 100644 index 00000000..b3f18138 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1c55g0akwr59sn9ylr76sqzrmy59g068akefkdx/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1dede4flaq24j2g9u8f83vkqrqxe6cwzrxt5zsu/logo.png b/blockchains/kava/validators/assets/kavavaloper1dede4flaq24j2g9u8f83vkqrqxe6cwzrxt5zsu/logo.png new file mode 100644 index 00000000..7d9d7432 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1dede4flaq24j2g9u8f83vkqrqxe6cwzrxt5zsu/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1ffcujj05v6220ccxa6qdnpz3j48ng024ykh2df/logo.png b/blockchains/kava/validators/assets/kavavaloper1ffcujj05v6220ccxa6qdnpz3j48ng024ykh2df/logo.png new file mode 100644 index 00000000..d01251cf Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1ffcujj05v6220ccxa6qdnpz3j48ng024ykh2df/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1fwru9at8hsu7hmhu0zypdn3863xvdcg80nm5dv/logo.png b/blockchains/kava/validators/assets/kavavaloper1fwru9at8hsu7hmhu0zypdn3863xvdcg80nm5dv/logo.png new file mode 100644 index 00000000..ab2a9d60 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1fwru9at8hsu7hmhu0zypdn3863xvdcg80nm5dv/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1g20mhvcpjxp6gzlwhtfcphjehwcl2njqydgu7q/logo.png b/blockchains/kava/validators/assets/kavavaloper1g20mhvcpjxp6gzlwhtfcphjehwcl2njqydgu7q/logo.png new file mode 100644 index 00000000..bae6cdf1 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1g20mhvcpjxp6gzlwhtfcphjehwcl2njqydgu7q/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 00000000..02916372 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1h04nz9kjqdj3z40u2x54fwldphx0xmt3s7ycgq/logo.png b/blockchains/kava/validators/assets/kavavaloper1h04nz9kjqdj3z40u2x54fwldphx0xmt3s7ycgq/logo.png new file mode 100644 index 00000000..c51d2ef1 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1h04nz9kjqdj3z40u2x54fwldphx0xmt3s7ycgq/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 00000000..c2cb86a4 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1hztgl202pvetspxch0pcchaqzrduw4qq64q08u/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1j4tymd9r3au3vm508l4jugdg7l892l2lmh4jry/logo.png b/blockchains/kava/validators/assets/kavavaloper1j4tymd9r3au3vm508l4jugdg7l892l2lmh4jry/logo.png new file mode 100644 index 00000000..95674f5f Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1j4tymd9r3au3vm508l4jugdg7l892l2lmh4jry/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1jl42l225565y3hm9dm4my33hjgdzleucqryhlx/logo.png b/blockchains/kava/validators/assets/kavavaloper1jl42l225565y3hm9dm4my33hjgdzleucqryhlx/logo.png new file mode 100644 index 00000000..d263de35 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1jl42l225565y3hm9dm4my33hjgdzleucqryhlx/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1k760ypy9tzhp6l2rmg06sq4n74z0d3rejwwaa0/logo.png b/blockchains/kava/validators/assets/kavavaloper1k760ypy9tzhp6l2rmg06sq4n74z0d3rejwwaa0/logo.png new file mode 100644 index 00000000..bafd6c0d Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1k760ypy9tzhp6l2rmg06sq4n74z0d3rejwwaa0/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1m8428ygqwa4yahjtc9ulp9n7eqwt7dn37n8vas/logo.png b/blockchains/kava/validators/assets/kavavaloper1m8428ygqwa4yahjtc9ulp9n7eqwt7dn37n8vas/logo.png new file mode 100644 index 00000000..8824e537 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1m8428ygqwa4yahjtc9ulp9n7eqwt7dn37n8vas/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1maa34q0gfmw44tayr6r287z9ngrucaw770qu34/logo.png b/blockchains/kava/validators/assets/kavavaloper1maa34q0gfmw44tayr6r287z9ngrucaw770qu34/logo.png new file mode 100644 index 00000000..2e659b1f Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1maa34q0gfmw44tayr6r287z9ngrucaw770qu34/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1ndkn5rdl9n929am6q2zt9ndfhhggcxkhetna90/logo.png b/blockchains/kava/validators/assets/kavavaloper1ndkn5rdl9n929am6q2zt9ndfhhggcxkhetna90/logo.png new file mode 100644 index 00000000..c89ace87 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1ndkn5rdl9n929am6q2zt9ndfhhggcxkhetna90/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1nhcvgj0j7mrvrat3dfhudpypaqn00eaf2dh0gp/logo.png b/blockchains/kava/validators/assets/kavavaloper1nhcvgj0j7mrvrat3dfhudpypaqn00eaf2dh0gp/logo.png new file mode 100644 index 00000000..13423eda Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1nhcvgj0j7mrvrat3dfhudpypaqn00eaf2dh0gp/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 00000000..e1178170 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1nxgg4grsc0fwh893mks62d3x3r6uazgpj3m3cr/logo.png b/blockchains/kava/validators/assets/kavavaloper1nxgg4grsc0fwh893mks62d3x3r6uazgpj3m3cr/logo.png new file mode 100644 index 00000000..2df0ac0e Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1nxgg4grsc0fwh893mks62d3x3r6uazgpj3m3cr/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1ppj7c8tqt2e3rzqtmztsmd6ea6u3nz6qggcp5e/logo.png b/blockchains/kava/validators/assets/kavavaloper1ppj7c8tqt2e3rzqtmztsmd6ea6u3nz6qggcp5e/logo.png new file mode 100644 index 00000000..16dfb3fc Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1ppj7c8tqt2e3rzqtmztsmd6ea6u3nz6qggcp5e/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1ptyzewnns2kn37ewtmv6ppsvhdnmeapvl7z9xh/logo.png b/blockchains/kava/validators/assets/kavavaloper1ptyzewnns2kn37ewtmv6ppsvhdnmeapvl7z9xh/logo.png new file mode 100644 index 00000000..362d6366 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1ptyzewnns2kn37ewtmv6ppsvhdnmeapvl7z9xh/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1q8srckh50n0hygw8ntylkvrtfzgexvf364yule/logo.png b/blockchains/kava/validators/assets/kavavaloper1q8srckh50n0hygw8ntylkvrtfzgexvf364yule/logo.png new file mode 100644 index 00000000..63140c57 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1q8srckh50n0hygw8ntylkvrtfzgexvf364yule/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1st7akgudd4d3x5t4zd3kn0fg948zn9yf4qpa0m/logo.png b/blockchains/kava/validators/assets/kavavaloper1st7akgudd4d3x5t4zd3kn0fg948zn9yf4qpa0m/logo.png new file mode 100644 index 00000000..489f49d8 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1st7akgudd4d3x5t4zd3kn0fg948zn9yf4qpa0m/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 00000000..f5f3ada9 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1t787gjxtyswnncltluwaefg0dfgvwrm87d3g9d/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1ua2yqfjck23vsmynltcgrvvg5rhfkm4cy78vmq/logo.png b/blockchains/kava/validators/assets/kavavaloper1ua2yqfjck23vsmynltcgrvvg5rhfkm4cy78vmq/logo.png new file mode 100644 index 00000000..61ebc9dc Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1ua2yqfjck23vsmynltcgrvvg5rhfkm4cy78vmq/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 00000000..e247fab1 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 new file mode 100644 index 00000000..0888af01 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1wu8m65vqazssv2rh8rthv532hzggfr3h9azwz9/logo.png b/blockchains/kava/validators/assets/kavavaloper1wu8m65vqazssv2rh8rthv532hzggfr3h9azwz9/logo.png new file mode 100644 index 00000000..ca9078ba Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1wu8m65vqazssv2rh8rthv532hzggfr3h9azwz9/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1x9hq3rjc48t5upcsr3c209ycgekfasne3l5nkc/logo.png b/blockchains/kava/validators/assets/kavavaloper1x9hq3rjc48t5upcsr3c209ycgekfasne3l5nkc/logo.png new file mode 100644 index 00000000..8b6a36bd Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1x9hq3rjc48t5upcsr3c209ycgekfasne3l5nkc/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1xfyyvg9v66yef6cea5ruw8kaqw5a84kjd86r75/logo.png b/blockchains/kava/validators/assets/kavavaloper1xfyyvg9v66yef6cea5ruw8kaqw5a84kjd86r75/logo.png new file mode 100644 index 00000000..b17a8fdb Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1xfyyvg9v66yef6cea5ruw8kaqw5a84kjd86r75/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1y8elet4hh0qpl9jq5hlkkejgl2gx845ekmdq55/logo.png b/blockchains/kava/validators/assets/kavavaloper1y8elet4hh0qpl9jq5hlkkejgl2gx845ekmdq55/logo.png new file mode 100644 index 00000000..70ee36d1 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1y8elet4hh0qpl9jq5hlkkejgl2gx845ekmdq55/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1z5gx09hhvhkdkessuj0g9qyx0a78jajcgsmupd/logo.png b/blockchains/kava/validators/assets/kavavaloper1z5gx09hhvhkdkessuj0g9qyx0a78jajcgsmupd/logo.png new file mode 100644 index 00000000..c6945ed5 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1z5gx09hhvhkdkessuj0g9qyx0a78jajcgsmupd/logo.png differ diff --git a/blockchains/kava/validators/list.json b/blockchains/kava/validators/list.json new file mode 100644 index 00000000..19950471 --- /dev/null +++ b/blockchains/kava/validators/list.json @@ -0,0 +1,242 @@ +[ + { + "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 🌻", + "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": "kavavaloper1fwru9at8hsu7hmhu0zypdn3863xvdcg80nm5dv", + "name": "OtterSync", + "description": "Validating with horcurx ditributed signers!", + "website": "https://ottersync.io" + }, + { + "id": "kavavaloper1st7akgudd4d3x5t4zd3kn0fg948zn9yf4qpa0m", + "name": "0% Fee | Mega", + "description": "0% fee delegation! Staking with Mega Validator is the safest and profitable option out there.", + "website": "https://megavalidator.com" + }, + { + "id": "kavavaloper1y8elet4hh0qpl9jq5hlkkejgl2gx845ekmdq55", + "name": "Atomic Nodes", + "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": "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": "kavavaloper1maa34q0gfmw44tayr6r287z9ngrucaw770qu34", + "name": "0% Fee | Asteroid", + "description": "0% fee delegation. Staking with Asteroid is the safest option out there. So delegate on our node now!", + "website": "https://asteroid-staking.com" + }, + { + "id": "kavavaloper13rzkukgxsae26tn2h6vuhlrdxap6rzrc29uhmq", + "name": "MPress 🚀", + "description": "Your Accelerator Validator", + "website": "https://github.com/darealmop" + }, + { + "id": "kavavaloper1nhcvgj0j7mrvrat3dfhudpypaqn00eaf2dh0gp", + "name": "BNB48Club", + "description": "Makes BNB Holders Happy", + "website": "https://bnb48.club" + }, + { + "id": "kavavaloper12g40q2parn5z9ewh5xpltmayv6y0q3zs6ddmdg", + "name": "P2P Validator", + "description": "Simple, secure and intelligent staking service to help you generate rewards on your blockchain assets across 9+ networks within a single interface. One of the winners of Cosmos Game of Stakes. Let’s stake together - p2p.org", + "website": "https://p2p.org" + }, + { + "id": "kavavaloper1ptyzewnns2kn37ewtmv6ppsvhdnmeapvl7z9xh", + "name": "WeStaking", + "description": "Secure Staking as a Service", + "website": "https://westaking.io" + }, + { + "id": "kavavaloper1dede4flaq24j2g9u8f83vkqrqxe6cwzrxt5zsu", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "kavavaloper1ffcujj05v6220ccxa6qdnpz3j48ng024ykh2df", + "name": "🐠stake.fish", + "description": "Leading validator for Proof of Stake blockchains and official winner of the Game of Stakes. Stake your cryptocurrencies with us. We know validating.", + "website": "https://stake.fish/" + }, + { + "id": "kavavaloper1jl42l225565y3hm9dm4my33hjgdzleucqryhlx", + "name": "melea", + "description": "Secure and trusted Validator,Protection against Ddos attacks and high availability-. Validating since 2017", + "website": "https://meleatrust.com" + }, + { + "id": "kavavaloper14fkp35j5nkvtztmxmsxh88jks6p3w8u7p76zs9", + "name": "Bit Cat🐱", + "description": "Secure and stable KAVA validator service from China team", + "website": "https://bitcat365.com" + }, + { + "id": "kavavaloper1k760ypy9tzhp6l2rmg06sq4n74z0d3rejwwaa0", + "name": "Novy", + "description": "Trusted and secured validator, KAVA Russian community manager", + "website": "https://stake.novy.pw" + }, + { + "id": "kavavaloper1x9hq3rjc48t5upcsr3c209ycgekfasne3l5nkc", + "name": "Masternode24.de", + "description": "Investieren Sie mit uns zusammen in die besten Blockchain Projekte", + "website": "https://masternode24.de/" + }, + { + "id": "kavavaloper1ndkn5rdl9n929am6q2zt9ndfhhggcxkhetna90", + "name": "StakeWolf", + "description": "Stake is Money, Stakewolf is Stake", + "website": "https://keybase.io/stakewolf" + }, + { + "id": "kavavaloper1nxgg4grsc0fwh893mks62d3x3r6uazgpj3m3cr", + "name": "Easy 2 Stake", + "description": "Easy.Stake.Trust. As easy and as simple as you would click next. Complete transparency and trust with a secure and stable validator.", + "website": "https://easy2stake.com" + }, + { + "id": "kavavaloper1wu8m65vqazssv2rh8rthv532hzggfr3h9azwz9", + "name": "Binance Staking", + "description": "Binance exchange staking provider", + "website": "https://binance.com" + }, + { + "id": "kavavaloper1g20mhvcpjxp6gzlwhtfcphjehwcl2njqydgu7q", + "name": "openstake.net", + "description": "openstake.net, a trustworth kava validator", + "website": "https://openstake.net" + }, + { + "id": "kavavaloper14gfgngrgg0pj494euuuvhygrhfptzf2hxllsev", + "name": "AUDIT.one", + "description": "Validators of today, Auditors of tomorrow", + "website": "https://audit.one" + }, + { + "id": "kavavaloper195j72kgpuel75kwfpeu0kt7nc7rgzm47tytl7p", + "name": "Anchor Staking", + "description": "Delegate Proof of Staking made easy", + "website": "https://anchorstaking.com" + }, + { + "id": "kavavaloper1c55g0akwr59sn9ylr76sqzrmy59g068akefkdx", + "name": "Stake Systems", + "description": "Building infrastructure to support awesome projects running in the blockchain landscape", + "website": "https://stake.systems" + }, + { + "id": "kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g", + "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", + "name": "SG-1", + "description": "We are the blockchain SG-1 team. Our mission is to validate Cosmos SDK blockchains, develop Software around Cosmos and Tendermint. Our mission is to find new planets and ecosystems.", + "website": "https://sg-1.online" + }, + { + "id": "kavavaloper1z5gx09hhvhkdkessuj0g9qyx0a78jajcgsmupd", + "name": "[ block pane ]", + "description": "🔥 Fast, datacenter-hosted, bare-metal validators 🔥", + "website": "https://blockpane.com" + }, + { + "id": "kavavaloper1h04nz9kjqdj3z40u2x54fwldphx0xmt3s7ycgq", + "name": "Earn Stash", + "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": "kavavaloper1ua2yqfjck23vsmynltcgrvvg5rhfkm4cy78vmq", + "name": "Atlas Staking", + "description": "This strong validator is all about creating passive income together.", + "website": "https://atlas-staking.com" + }, + { + "id": "kavavaloper1m8428ygqwa4yahjtc9ulp9n7eqwt7dn37n8vas", + "name": "Consensus One", + "description": "Delegate to Consensus One to help secure, support and shape KAVA. Secure and highly available, 24/7/365. By delegating, you agree to our terms of service.", + "website": "https://consensus.one" + }, + { + "id": "kavavaloper1q8srckh50n0hygw8ntylkvrtfzgexvf364yule", + "name": "Stakepile", + "description": "Stakepile - Grow your stake reliably with us. We also stake DOT, KSM, OSMO, JUNO, COMDEX, HUAHUA. Say hi at stake(at)stakepile.com", + "website": "https://stakepile.com" + }, + { + "id": "kavavaloper14vk3997r4ea4m7eej7ugmr503ru768fxwynsmq", + "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" + }, + { + "id": "kavavaloper1j4tymd9r3au3vm508l4jugdg7l892l2lmh4jry", + "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 00000000..736b46b8 --- /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 00000000..0a265aff 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 00000000..28287f8e --- /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 00000000..69911cae 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 new file mode 100644 index 00000000..41a3010b --- /dev/null +++ b/blockchains/kavaevm/info/info.json @@ -0,0 +1,46 @@ +{ + "name": "KavaEvm", + "type": "coin", + "symbol": "KAVA", + "decimals": 18, + "website": "https://kava.io", + "research": "https://research.binance.com/en/projects/kava", + "description": "Kava is a cross-chain DeFi Lending platform enabling stablecoin loans for users of major cryptocurrencies.", + "explorer": "https://explorer.kava.io/", + "status": "active", + "rpc_url": "https://evm2.kava.io", + "links": [ + { + "name": "github", + "url": "https://github.com/kava-labs" + }, + { + "name": "x", + "url": "https://x.com/kava_labs" + }, + { + "name": "whitepaper", + "url": "https://docsend.com/view/gwbwpc3" + }, + { + "name": "telegram", + "url": "https://t.me/kavalabs" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/kava_platform" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kava/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kava" + } + ], + "tags": [ + "defi", + "dapp" + ] +} \ No newline at end of file diff --git a/blockchains/kavaevm/info/logo.png b/blockchains/kavaevm/info/logo.png new file mode 100644 index 00000000..c3a0556a Binary files /dev/null and b/blockchains/kavaevm/info/logo.png differ diff --git a/blockchains/kavaevm/info/square_logo.png b/blockchains/kavaevm/info/square_logo.png new file mode 100644 index 00000000..0ee58da6 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 new file mode 100644 index 00000000..78b1af2d --- /dev/null +++ b/blockchains/kcc/assets/0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48/info.json @@ -0,0 +1,24 @@ +{ + "name": "KCC-Peg Tether USD", + "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", + "symbol": "USDT", + "type": "KRC20", + "decimals": 18, + "status": "active", + "id": "0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48", + "links": [ + { + "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/0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48/logo.png b/blockchains/kcc/assets/0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48/logo.png new file mode 100644 index 00000000..2090693b Binary files /dev/null and b/blockchains/kcc/assets/0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48/logo.png differ diff --git a/blockchains/kcc/assets/0x1B8e27ABA297466fc6765Ce55BD12A8E216759da/info.json b/blockchains/kcc/assets/0x1B8e27ABA297466fc6765Ce55BD12A8E216759da/info.json new file mode 100644 index 00000000..ca3a9959 --- /dev/null +++ b/blockchains/kcc/assets/0x1B8e27ABA297466fc6765Ce55BD12A8E216759da/info.json @@ -0,0 +1,21 @@ +{ + "name": "Polygon", + "symbol": "MATIC", + "type": "KRC20", + "decimals": 18, + "description": "Matic Network is a layer-2 scaling solution that uses sidechains for off-chain computation while ensuring asset security using Plasma framework and a decentralized network of Proof-of-Stake (PoS) vailidators.", + "website": "https://polygon.technology", + "explorer": "https://explorer.kcc.io/token/0x1B8e27ABA297466fc6765Ce55BD12A8E216759da", + "status": "active", + "id": "0x1B8e27ABA297466fc6765Ce55BD12A8E216759da", + "links": [ + { + "name": "telegram", + "url": "https://t.me/polygonofficial" + }, + { + "name": "x", + "url": "https://x.com/0xPolygon" + } + ] +} \ No newline at end of file diff --git a/blockchains/kcc/assets/0x1B8e27ABA297466fc6765Ce55BD12A8E216759da/logo.png b/blockchains/kcc/assets/0x1B8e27ABA297466fc6765Ce55BD12A8E216759da/logo.png new file mode 100644 index 00000000..a550c3fa Binary files /dev/null and b/blockchains/kcc/assets/0x1B8e27ABA297466fc6765Ce55BD12A8E216759da/logo.png differ diff --git a/blockchains/kcc/assets/0x2cA48b4eeA5A731c2B54e7C3944DBDB87c0CFB6F/info.json b/blockchains/kcc/assets/0x2cA48b4eeA5A731c2B54e7C3944DBDB87c0CFB6F/info.json new file mode 100644 index 00000000..f0589f55 --- /dev/null +++ b/blockchains/kcc/assets/0x2cA48b4eeA5A731c2B54e7C3944DBDB87c0CFB6F/info.json @@ -0,0 +1,25 @@ +{ + "name": "MojitoToken", + "website": "https://www.mojitoswap.finance/", + "description": "MJT (MojitoToken) is the native token of MojitoSwap, with a total circulation of 100,000,000. MJT is a practical and governance token with rich application scenarios. Holding MJT can not only allow investors to participate in liquidity mining and borrow money to obtain rewards, but also make them owning the governance rights of the future Mojito DAO organization.", + "explorer": "https://explorer.kcc.io/token/0x2cA48b4eeA5A731c2B54e7C3944DBDB87c0CFB6F", + "symbol": "MJT", + "type": "KRC20", + "decimals": 18, + "status": "active", + "id": "0x2cA48b4eeA5A731c2B54e7C3944DBDB87c0CFB6F", + "links": [ + { + "name": "telegram", + "url": "https://t.me/MojitoFinance" + }, + { + "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/0x2cA48b4eeA5A731c2B54e7C3944DBDB87c0CFB6F/logo.png b/blockchains/kcc/assets/0x2cA48b4eeA5A731c2B54e7C3944DBDB87c0CFB6F/logo.png new file mode 100644 index 00000000..3a0c1fac Binary files /dev/null and b/blockchains/kcc/assets/0x2cA48b4eeA5A731c2B54e7C3944DBDB87c0CFB6F/logo.png differ diff --git a/blockchains/kcc/assets/0x4446Fc4eb47f2f6586f9fAAb68B3498F86C07521/info.json b/blockchains/kcc/assets/0x4446Fc4eb47f2f6586f9fAAb68B3498F86C07521/info.json new file mode 100644 index 00000000..764b8d98 --- /dev/null +++ b/blockchains/kcc/assets/0x4446Fc4eb47f2f6586f9fAAb68B3498F86C07521/info.json @@ -0,0 +1,34 @@ +{ + "name": "Wrapped KCS", + "website": "https://www.kcc.io/", + "description": "KCS is the native token of KuCoin, which was launched back in 2017 as a profit-sharing token that allows traders to draw value from the exchange. It was issued as an ERC-20 token running on the Ethereum network and was supported by most Ethereum wallets. The total supply of KCS was set at 200 million, and there is a planned buyback and burn until just 100 million KCS remain. Sooner or later, as the KuCoin decentralized trading solution goes live, KCS will be the native asset of KuCoin's decentralized financial services as well as the governance token of the KuCoin community in the future.", + "explorer": "https://explorer.kcc.io/token/0x4446Fc4eb47f2f6586f9fAAb68B3498F86C07521", + "research": "https://docs.kcc.io/", + "symbol": "WKCS", + "type": "KRC20", + "decimals": 18, + "status": "active", + "id": "0x4446Fc4eb47f2f6586f9fAAb68B3498F86C07521", + "links": [ + { + "name": "telegram", + "url": "https://t.me/KCCOfficialEnglishCommunity" + }, + { + "name": "x", + "url": "https://x.com/KCCOfficialTW" + }, + { + "name": "discord", + "url": "https://discord.com/channels/840784894984060948/840808321270284289" + }, + { + "name": "medium", + "url": "https://kccofficial.medium.com/" + }, + { + "name": "github", + "url": "https://github.com/kcc-community" + } + ] +} \ No newline at end of file diff --git a/blockchains/kcc/assets/0x4446Fc4eb47f2f6586f9fAAb68B3498F86C07521/logo.png b/blockchains/kcc/assets/0x4446Fc4eb47f2f6586f9fAAb68B3498F86C07521/logo.png new file mode 100644 index 00000000..7b7397d4 Binary files /dev/null and b/blockchains/kcc/assets/0x4446Fc4eb47f2f6586f9fAAb68B3498F86C07521/logo.png differ diff --git a/blockchains/kcc/assets/0x652D253b7Ca91810A4a05ACFc39729387c5090C0/info.json b/blockchains/kcc/assets/0x652D253b7Ca91810A4a05ACFc39729387c5090C0/info.json new file mode 100644 index 00000000..6c878ce4 --- /dev/null +++ b/blockchains/kcc/assets/0x652D253b7Ca91810A4a05ACFc39729387c5090C0/info.json @@ -0,0 +1,41 @@ +{ + "name": "Crypto.com Coin", + "symbol": "CRO", + "type": "KRC20", + "decimals": 18, + "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.", + "website": "https://crypto.com/en/chain", + "explorer": "https://explorer.kcc.io/token/0x652D253b7Ca91810A4a05ACFc39729387c5090C0", + "status": "active", + "id": "0x652D253b7Ca91810A4a05ACFc39729387c5090C0", + "links": [ + { + "name": "blog", + "url": "https://medium.com/@crypto.com" + }, + { + "name": "x", + "url": "https://x.com/cryptocom" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Crypto_com/" + }, + { + "name": "facebook", + "url": "https://facebook.com/CryptoComOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoComOfficial" + }, + { + "name": "whitepaper", + "url": "https://crypto.com/images/chain_whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/crypto-com-chain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/kcc/assets/0x652D253b7Ca91810A4a05ACFc39729387c5090C0/logo.png b/blockchains/kcc/assets/0x652D253b7Ca91810A4a05ACFc39729387c5090C0/logo.png new file mode 100644 index 00000000..dc789428 Binary files /dev/null and b/blockchains/kcc/assets/0x652D253b7Ca91810A4a05ACFc39729387c5090C0/logo.png differ diff --git a/blockchains/kcc/assets/0x73b6086955c820370A18002F60E9b51FB67d7e1A/info.json b/blockchains/kcc/assets/0x73b6086955c820370A18002F60E9b51FB67d7e1A/info.json new file mode 100644 index 00000000..b50288b2 --- /dev/null +++ b/blockchains/kcc/assets/0x73b6086955c820370A18002F60E9b51FB67d7e1A/info.json @@ -0,0 +1,29 @@ +{ + "name": "SHIBA INU", + "symbol": "SHIB", + "type": "KRC20", + "decimals": 18, + "description": "According to SHIBA INU, the reasoning behind the creation of SHIBA is that Shibas constantly forget where they bury their treasure. The website proclaims \"Many doggie wars have been waged over precious treasure and delicious goodies.\"", + "website": "https://shibatoken.com/", + "explorer": "https://explorer.kcc.io/token/0x73b6086955c820370A18002F60E9b51FB67d7e1A", + "status": "active", + "id": "0x73b6086955c820370A18002F60E9b51FB67d7e1A", + "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/kcc/assets/0x73b6086955c820370A18002F60E9b51FB67d7e1A/logo.png b/blockchains/kcc/assets/0x73b6086955c820370A18002F60E9b51FB67d7e1A/logo.png new file mode 100644 index 00000000..e4b303c5 Binary files /dev/null and b/blockchains/kcc/assets/0x73b6086955c820370A18002F60E9b51FB67d7e1A/logo.png differ diff --git a/blockchains/kcc/assets/0x791630C11c7159A748d8c2267a66780B3DDC40a7/info.json b/blockchains/kcc/assets/0x791630C11c7159A748d8c2267a66780B3DDC40a7/info.json new file mode 100644 index 00000000..41c1ab6b --- /dev/null +++ b/blockchains/kcc/assets/0x791630C11c7159A748d8c2267a66780B3DDC40a7/info.json @@ -0,0 +1,25 @@ +{ + "name": "Quant", + "symbol": "QNT", + "type": "KRC20", + "decimals": 18, + "description": "Blockchain operating system that connects the world’s networks and facilitates the development of multi-chain applications.", + "website": "https://www.quant.network/", + "explorer": "https://explorer.kcc.io/token/0x791630C11c7159A748d8c2267a66780B3DDC40a7", + "status": "active", + "id": "0x791630C11c7159A748d8c2267a66780B3DDC40a7", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/quant/" + }, + { + "name": "x", + "url": "https://x.com/quant_network" + }, + { + "name": "telegram", + "url": "https://t.me/QuantOverledger" + } + ] +} \ No newline at end of file diff --git a/blockchains/kcc/assets/0x791630C11c7159A748d8c2267a66780B3DDC40a7/logo.png b/blockchains/kcc/assets/0x791630C11c7159A748d8c2267a66780B3DDC40a7/logo.png new file mode 100644 index 00000000..bc01f46a Binary files /dev/null and b/blockchains/kcc/assets/0x791630C11c7159A748d8c2267a66780B3DDC40a7/logo.png differ diff --git a/blockchains/kcc/assets/0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430/info.json b/blockchains/kcc/assets/0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430/info.json new file mode 100644 index 00000000..c12163c6 --- /dev/null +++ b/blockchains/kcc/assets/0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430/info.json @@ -0,0 +1,24 @@ +{ + "name": "KCC-Peg USD Coin", + "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", + "symbol": "USDC", + "type": "KRC20", + "decimals": 18, + "status": "active", + "id": "0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430", + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "whitepaper", + "url": "https://f.hubspotusercontent30.net/hubfs/9304636/PDF/centre-whitepaper.pdf" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/kcc/assets/0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430/logo.png b/blockchains/kcc/assets/0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430/logo.png new file mode 100644 index 00000000..456d1e5d Binary files /dev/null and b/blockchains/kcc/assets/0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430/logo.png differ diff --git a/blockchains/kcc/assets/0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e/info.json b/blockchains/kcc/assets/0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e/info.json new file mode 100644 index 00000000..5ce0728f --- /dev/null +++ b/blockchains/kcc/assets/0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e/info.json @@ -0,0 +1,25 @@ +{ + "name": "Decentraland", + "symbol": "MANA", + "type": "KRC20", + "decimals": 18, + "description": "Decentraland is a virtual reality platform powered by the Ethereum blockchain. Users can create, experience, and monetize content and applications", + "website": "https://decentraland.org/", + "explorer": "https://explorer.kcc.io/token/0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e", + "status": "active", + "id": "0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/decentraland/" + }, + { + "name": "x", + "url": "https://x.com/decentraland" + }, + { + "name": "github", + "url": "https://github.com/decentraland" + } + ] +} \ No newline at end of file diff --git a/blockchains/kcc/assets/0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e/logo.png b/blockchains/kcc/assets/0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e/logo.png new file mode 100644 index 00000000..2e4e2b57 Binary files /dev/null and b/blockchains/kcc/assets/0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e/logo.png differ diff --git a/blockchains/kcc/assets/0xE76e97C157658004eE22e01C03a5e21A4655A2Fd/info.json b/blockchains/kcc/assets/0xE76e97C157658004eE22e01C03a5e21A4655A2Fd/info.json new file mode 100644 index 00000000..26b3815c --- /dev/null +++ b/blockchains/kcc/assets/0xE76e97C157658004eE22e01C03a5e21A4655A2Fd/info.json @@ -0,0 +1,49 @@ +{ + "name": "Aave", + "symbol": "AAVE", + "type": "KRC20", + "decimals": 18, + "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", + "website": "https://aave.com", + "explorer": "https://explorer.kcc.io/token/0xE76e97C157658004eE22e01C03a5e21A4655A2Fd", + "status": "active", + "id": "0xE76e97C157658004eE22e01C03a5e21A4655A2Fd", + "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/" + } + ], + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/kcc/assets/0xE76e97C157658004eE22e01C03a5e21A4655A2Fd/logo.png b/blockchains/kcc/assets/0xE76e97C157658004eE22e01C03a5e21A4655A2Fd/logo.png new file mode 100644 index 00000000..1e7cef36 Binary files /dev/null and b/blockchains/kcc/assets/0xE76e97C157658004eE22e01C03a5e21A4655A2Fd/logo.png differ diff --git a/blockchains/kcc/assets/0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1/info.json b/blockchains/kcc/assets/0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1/info.json new file mode 100644 index 00000000..25101b84 --- /dev/null +++ b/blockchains/kcc/assets/0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ethereum", + "symbol": "ETH", + "type": "KRC20", + "decimals": 18, + "description": "KCC-Peg Ethereum is a token issued by Binance on Smart Chain; its price is pegged to Ethereum (ETH) at a ratio of 1:1.", + "website": "https://ethereum.org/", + "explorer": "https://explorer.kcc.io/token/0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1", + "status": "active", + "id": "0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1", + "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/kcc/assets/0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1/logo.png b/blockchains/kcc/assets/0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1/logo.png new file mode 100644 index 00000000..9ca39721 Binary files /dev/null and b/blockchains/kcc/assets/0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1/logo.png differ diff --git a/blockchains/kcc/info/info.json b/blockchains/kcc/info/info.json new file mode 100644 index 00000000..76f1a945 --- /dev/null +++ b/blockchains/kcc/info/info.json @@ -0,0 +1,35 @@ +{ + "name": "KuCoin Community Chain", + "website": "https://www.kcc.io/", + "description": "KCS is the native token of KuCoin, which was launched back in 2017 as a profit-sharing token that allows traders to draw value from the exchange. It was issued as an ERC-20 token running on the Ethereum network and was supported by most Ethereum wallets. The total supply of KCS was set at 200 million, and there is a planned buyback and burn until just 100 million KCS remain. Sooner or later, as the KuCoin decentralized trading solution goes live, KCS will be the native asset of KuCoin's decentralized financial services as well as the governance token of the KuCoin community in the future.", + "explorer": "https://explorer.kcc.io/", + "research": "https://docs.kcc.io/", + "symbol": "KCS", + "type": "coin", + "rpc_url": "https://rpc-mainnet.kcc.network", + "coin_type": 642, + "decimals": 18, + "status": "active", + "links": [ + { + "name": "telegram", + "url": "https://t.me/KCCOfficialEnglishCommunity" + }, + { + "name": "x", + "url": "https://x.com/KCCOfficialTW" + }, + { + "name": "discord", + "url": "https://discord.com/channels/840784894984060948/840808321270284289" + }, + { + "name": "medium", + "url": "https://kccofficial.medium.com/" + }, + { + "name": "github", + "url": "https://github.com/kcc-community" + } + ] +} \ No newline at end of file diff --git a/blockchains/kcc/info/logo.png b/blockchains/kcc/info/logo.png new file mode 100644 index 00000000..7b7397d4 Binary files /dev/null and b/blockchains/kcc/info/logo.png differ diff --git a/blockchains/kcc/info/square_logo.png b/blockchains/kcc/info/square_logo.png new file mode 100644 index 00000000..97e3d90d 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 new file mode 100644 index 00000000..7d797ec9 --- /dev/null +++ b/blockchains/kin/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Kin", + "website": "https://kin.org", + "description": "Kin is a cryptocurrency designed to bring people together in a new shared economy.", + "explorer": "https://www.kin.org/blockchainExplorer", + "symbol": "KIN", + "type": "coin", + "decimals": 5, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/kinecosystem" + }, + { + "name": "x", + "url": "https://x.com/kin_foundation" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/KinFoundation" + }, + { + "name": "whitepaper", + "url": "https://kinecosystem.org/static/files/Kin_Whitepaper_V1_English.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/kin/info/logo.png b/blockchains/kin/info/logo.png new file mode 100644 index 00000000..7d2983f4 Binary files /dev/null and b/blockchains/kin/info/logo.png differ diff --git a/blockchains/kin/info/square_logo.png b/blockchains/kin/info/square_logo.png new file mode 100644 index 00000000..3a8014e6 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 00000000..a159e3c0 --- /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 00000000..f62e1138 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 00000000..6c97ee40 --- /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 00000000..2191b105 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 00000000..bf372673 --- /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 00000000..24724129 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 00000000..79ab76ba --- /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 00000000..7f05d009 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 new file mode 100644 index 00000000..5e487c4f --- /dev/null +++ b/blockchains/klaytn/info/info.json @@ -0,0 +1,21 @@ +{ + "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": "KAIA", + "type": "coin", + "decimals": 18, + "rpc_url": "https://public-en.node.kaia.io", + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "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 new file mode 100644 index 00000000..5462c404 Binary files /dev/null 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 00000000..d790ce83 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 00000000..7b8d4b1f --- /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 00000000..2584dcde 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 00000000..8ccb1b84 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 new file mode 100644 index 00000000..dd123b02 --- /dev/null +++ b/blockchains/kujira/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Kujira", + "type": "coin", + "symbol": "KUJI", + "decimals": 6, + "website": "https://kujira.app/", + "description": "A decentralized ecosystem for protocols, builders and web3 users seeking sustainable FinTech.", + "explorer": "https://www.mintscan.io/kujira", + "status": "active", + "rpc_url": "https://rpc-kujira.goldenratiostaking.net/", + "denom": "ukuji", + "lcd_url": "https://api.kujira.rektdao.club/", + "hrp": "kujira", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kujira/" + }, + { + "name": "telegram", + "url": "https://t.me/+5SbXzcoRmWQ3OWE8" + }, + { + "name": "x", + "url": "https://x.com/TeamKujira" + } + ] +} \ No newline at end of file diff --git a/blockchains/kujira/info/logo.png b/blockchains/kujira/info/logo.png new file mode 100644 index 00000000..779329ca Binary files /dev/null and b/blockchains/kujira/info/logo.png differ diff --git a/blockchains/kujira/info/square_logo.png b/blockchains/kujira/info/square_logo.png new file mode 100644 index 00000000..fd977f0b 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 00000000..9b28ec00 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 00000000..02916372 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 00000000..c53de065 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 00000000..cbc90da9 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 00000000..da52afb9 --- /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 new file mode 100644 index 00000000..a2503a95 --- /dev/null +++ b/blockchains/kusama/info/info.json @@ -0,0 +1,27 @@ +{ + "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://assethub-kusama.subscan.io/", + "symbol": "KSM", + "type": "coin", + "decimals": 12, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.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/logo.png b/blockchains/kusama/info/logo.png new file mode 100644 index 00000000..4b59cbe0 Binary files /dev/null and b/blockchains/kusama/info/logo.png differ diff --git a/blockchains/kusama/info/square_logo.png b/blockchains/kusama/info/square_logo.png new file mode 100644 index 00000000..50587c31 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 00000000..8a1a37b8 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 00000000..0888af01 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 00000000..33273a1e 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 00000000..0888af01 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 00000000..33273a1e 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 00000000..63b99724 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 00000000..0f6305d8 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 00000000..33273a1e 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 00000000..f2baf32d --- /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 00000000..ab374bbf --- /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 00000000..eafbaac1 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 00000000..b5496c75 --- /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 00000000..2fa4612f 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 00000000..75a046ac --- /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 00000000..dc8baab6 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 00000000..0cf8ffc6 --- /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 00000000..1809c477 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 00000000..9d725dfd --- /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 00000000..e599ee27 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 00000000..df63ee8b --- /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 00000000..8abb12b9 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 00000000..6fcaf892 --- /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 00000000..cf3cf9c5 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 00000000..d11f83fb --- /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 00000000..76d02e37 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 00000000..979b1153 --- /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 00000000..69911cae 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 00000000..87d1cb12 --- /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 00000000..5ebf2888 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 00000000..eb74acaf --- /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 00000000..a94dca4a 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 00000000..d7553e0e 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 00000000..f847aa0b --- /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 new file mode 100644 index 00000000..a44ef1f2 --- /dev/null +++ b/blockchains/litecoin/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Litecoin", + "website": "https://litecoin.org/", + "description": "Litecoin is a peer-to-peer Internet currency that enables instant, near-zero cost payments to anyone in the world.", + "explorer": "https://blockchair.com/litecoin", + "research": "https://research.binance.com/en/projects/litecoin", + "symbol": "LTC", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/litecoin-project/litecoin" + }, + { + "name": "x", + "url": "https://x.com/LitecoinProject" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/litecoin" + }, + { + "name": "whitepaper", + "url": "https://www.allcryptowhitepapers.com/litecoin-whitepaper/" + } + ] +} \ No newline at end of file diff --git a/blockchains/litecoin/info/logo.png b/blockchains/litecoin/info/logo.png new file mode 100644 index 00000000..43b784e6 Binary files /dev/null and b/blockchains/litecoin/info/logo.png differ diff --git a/blockchains/litecoin/info/square_logo.png b/blockchains/litecoin/info/square_logo.png new file mode 100644 index 00000000..2d3fb390 Binary files /dev/null and b/blockchains/litecoin/info/square_logo.png differ diff --git a/blockchains/loom/info/info.json b/blockchains/loom/info/info.json new file mode 100644 index 00000000..a5c27c0c --- /dev/null +++ b/blockchains/loom/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Loom Network", + "website": "https://loomx.io", + "description": "The next-generation blockchain platform for large-scale online games and social apps.", + "explorer": "https://etherscan.io/token/0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0", + "symbol": "LOOM", + "type": "coin", + "decimals": 8, + "status": "abandoned", + "links": [ + { + "name": "github", + "url": "https://github.com/loomnetwork" + }, + { + "name": "x", + "url": "https://x.com/loomnetwork" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/loomnetwork" + }, + { + "name": "whitepaper", + "url": "https://medium.com/loom-network/introducing-loom-network-scaling-ethereum-today-9ea26b5b57c" + } + ] +} \ No newline at end of file diff --git a/blockchains/loom/info/logo.png b/blockchains/loom/info/logo.png new file mode 100644 index 00000000..e2821803 Binary files /dev/null and b/blockchains/loom/info/logo.png differ diff --git a/blockchains/loom/info/square_logo.png b/blockchains/loom/info/square_logo.png new file mode 100644 index 00000000..20d55af9 Binary files /dev/null and b/blockchains/loom/info/square_logo.png differ diff --git a/blockchains/loom/validators/assets/loom0ca3d6bf201ce53c7ddc3cb397ae33a68ed4a328/logo.png b/blockchains/loom/validators/assets/loom0ca3d6bf201ce53c7ddc3cb397ae33a68ed4a328/logo.png new file mode 100644 index 00000000..d9e12728 Binary files /dev/null and b/blockchains/loom/validators/assets/loom0ca3d6bf201ce53c7ddc3cb397ae33a68ed4a328/logo.png differ diff --git a/blockchains/loom/validators/assets/loom1985871ed65b80e09eca382c3e3c2d6831e092ec/logo.png b/blockchains/loom/validators/assets/loom1985871ed65b80e09eca382c3e3c2d6831e092ec/logo.png new file mode 100644 index 00000000..e7496cac Binary files /dev/null and b/blockchains/loom/validators/assets/loom1985871ed65b80e09eca382c3e3c2d6831e092ec/logo.png differ diff --git a/blockchains/loom/validators/assets/loom319e459f5d0ddc5ddf3e3610398a8b6e6772daa3/logo.png b/blockchains/loom/validators/assets/loom319e459f5d0ddc5ddf3e3610398a8b6e6772daa3/logo.png new file mode 100644 index 00000000..4eb274a1 Binary files /dev/null and b/blockchains/loom/validators/assets/loom319e459f5d0ddc5ddf3e3610398a8b6e6772daa3/logo.png differ diff --git a/blockchains/loom/validators/assets/loom59dd7302bf628156f948a9101169135324058d60/logo.png b/blockchains/loom/validators/assets/loom59dd7302bf628156f948a9101169135324058d60/logo.png new file mode 100644 index 00000000..f34c15c5 Binary files /dev/null and b/blockchains/loom/validators/assets/loom59dd7302bf628156f948a9101169135324058d60/logo.png differ diff --git a/blockchains/loom/validators/assets/loom5ba928ace46672f15e6d8364084f1d6ae302543e/logo.png b/blockchains/loom/validators/assets/loom5ba928ace46672f15e6d8364084f1d6ae302543e/logo.png new file mode 100644 index 00000000..27751f87 Binary files /dev/null and b/blockchains/loom/validators/assets/loom5ba928ace46672f15e6d8364084f1d6ae302543e/logo.png differ diff --git a/blockchains/loom/validators/assets/loom6b3dd380eb365603182617d698fdbbe52befa801/logo.png b/blockchains/loom/validators/assets/loom6b3dd380eb365603182617d698fdbbe52befa801/logo.png new file mode 100644 index 00000000..14232159 Binary files /dev/null and b/blockchains/loom/validators/assets/loom6b3dd380eb365603182617d698fdbbe52befa801/logo.png differ diff --git a/blockchains/loom/validators/assets/loom7bc38ff819b75f85275d2fd83080ec337b4e0afe/logo.png b/blockchains/loom/validators/assets/loom7bc38ff819b75f85275d2fd83080ec337b4e0afe/logo.png new file mode 100644 index 00000000..05392f90 Binary files /dev/null and b/blockchains/loom/validators/assets/loom7bc38ff819b75f85275d2fd83080ec337b4e0afe/logo.png differ diff --git a/blockchains/loom/validators/assets/loom8ec7faf77cc27eee73ae25b077fe5d05277cd8cc/logo.png b/blockchains/loom/validators/assets/loom8ec7faf77cc27eee73ae25b077fe5d05277cd8cc/logo.png new file mode 100644 index 00000000..946eb74e Binary files /dev/null and b/blockchains/loom/validators/assets/loom8ec7faf77cc27eee73ae25b077fe5d05277cd8cc/logo.png differ diff --git a/blockchains/loom/validators/assets/loom911ac334f7014f0635b95a4a2225b45c5292c6c6/logo.png b/blockchains/loom/validators/assets/loom911ac334f7014f0635b95a4a2225b45c5292c6c6/logo.png new file mode 100644 index 00000000..e3b3429c Binary files /dev/null and b/blockchains/loom/validators/assets/loom911ac334f7014f0635b95a4a2225b45c5292c6c6/logo.png differ diff --git a/blockchains/loom/validators/assets/loom9c6259c5b2a71c8642c2c84ccfb8f734e6bc6b87/logo.png b/blockchains/loom/validators/assets/loom9c6259c5b2a71c8642c2c84ccfb8f734e6bc6b87/logo.png new file mode 100644 index 00000000..beefaaaa Binary files /dev/null and b/blockchains/loom/validators/assets/loom9c6259c5b2a71c8642c2c84ccfb8f734e6bc6b87/logo.png differ diff --git a/blockchains/loom/validators/assets/loom9f1581a14f1194ab4913745301b55fe8d20595fe/logo.png b/blockchains/loom/validators/assets/loom9f1581a14f1194ab4913745301b55fe8d20595fe/logo.png new file mode 100644 index 00000000..6e274c6f Binary files /dev/null and b/blockchains/loom/validators/assets/loom9f1581a14f1194ab4913745301b55fe8d20595fe/logo.png differ diff --git a/blockchains/loom/validators/assets/looma2e56e6253407242674c34ae7aeb7ae11883bcdb/logo.png b/blockchains/loom/validators/assets/looma2e56e6253407242674c34ae7aeb7ae11883bcdb/logo.png new file mode 100644 index 00000000..25495d8a Binary files /dev/null and b/blockchains/loom/validators/assets/looma2e56e6253407242674c34ae7aeb7ae11883bcdb/logo.png differ diff --git a/blockchains/loom/validators/assets/looma38c27e8cf4a443e805065065aefb250b1e1cef2/logo.png b/blockchains/loom/validators/assets/looma38c27e8cf4a443e805065065aefb250b1e1cef2/logo.png new file mode 100644 index 00000000..0c00ee93 Binary files /dev/null and b/blockchains/loom/validators/assets/looma38c27e8cf4a443e805065065aefb250b1e1cef2/logo.png differ diff --git a/blockchains/loom/validators/assets/looma5b2c08c1dcd58d819317b79cbc9b5a8566bdf73/logo.png b/blockchains/loom/validators/assets/looma5b2c08c1dcd58d819317b79cbc9b5a8566bdf73/logo.png new file mode 100644 index 00000000..9d934edc Binary files /dev/null and b/blockchains/loom/validators/assets/looma5b2c08c1dcd58d819317b79cbc9b5a8566bdf73/logo.png differ diff --git a/blockchains/loom/validators/assets/loomb6b0f012149fbaaab596f762434de54c6c27d16c/logo.png b/blockchains/loom/validators/assets/loomb6b0f012149fbaaab596f762434de54c6c27d16c/logo.png new file mode 100644 index 00000000..60de59c2 Binary files /dev/null and b/blockchains/loom/validators/assets/loomb6b0f012149fbaaab596f762434de54c6c27d16c/logo.png differ diff --git a/blockchains/loom/validators/assets/loomb7b1a2ed7c47287ba4da1fd17f626faf2134e9d0/logo.png b/blockchains/loom/validators/assets/loomb7b1a2ed7c47287ba4da1fd17f626faf2134e9d0/logo.png new file mode 100644 index 00000000..dd6a0ccb Binary files /dev/null and b/blockchains/loom/validators/assets/loomb7b1a2ed7c47287ba4da1fd17f626faf2134e9d0/logo.png differ diff --git a/blockchains/loom/validators/assets/loomd58d72b3bef93fcbf13466cb2d83bcc145843510/logo.png b/blockchains/loom/validators/assets/loomd58d72b3bef93fcbf13466cb2d83bcc145843510/logo.png new file mode 100644 index 00000000..6b8bb91e Binary files /dev/null and b/blockchains/loom/validators/assets/loomd58d72b3bef93fcbf13466cb2d83bcc145843510/logo.png differ diff --git a/blockchains/loom/validators/assets/loome3beb36ae8edb5dbb5c2cfba9960f0819dd8e13a/logo.png b/blockchains/loom/validators/assets/loome3beb36ae8edb5dbb5c2cfba9960f0819dd8e13a/logo.png new file mode 100644 index 00000000..9a4e913d Binary files /dev/null and b/blockchains/loom/validators/assets/loome3beb36ae8edb5dbb5c2cfba9960f0819dd8e13a/logo.png differ diff --git a/blockchains/loom/validators/assets/loome6fbaafc34f746ac2280fa8bd1787a8292f13148/logo.png b/blockchains/loom/validators/assets/loome6fbaafc34f746ac2280fa8bd1787a8292f13148/logo.png new file mode 100644 index 00000000..66a79f24 Binary files /dev/null and b/blockchains/loom/validators/assets/loome6fbaafc34f746ac2280fa8bd1787a8292f13148/logo.png differ diff --git a/blockchains/loom/validators/assets/loomeb5d1fa6e421485c7ae2fba8e3199588ed931daf/logo.png b/blockchains/loom/validators/assets/loomeb5d1fa6e421485c7ae2fba8e3199588ed931daf/logo.png new file mode 100644 index 00000000..7b9c607a Binary files /dev/null and b/blockchains/loom/validators/assets/loomeb5d1fa6e421485c7ae2fba8e3199588ed931daf/logo.png differ diff --git a/blockchains/loom/validators/list.json b/blockchains/loom/validators/list.json new file mode 100644 index 00000000..b4b34f65 --- /dev/null +++ b/blockchains/loom/validators/list.json @@ -0,0 +1,122 @@ +[ + { + "id": "loome3beb36ae8edb5dbb5c2cfba9960f0819dd8e13a", + "name": "Bixin", + "description": "Blockchain in your pocket", + "website": "https://bixin.com/webapp/" + }, + { + "id": "loom5ba928ace46672f15e6d8364084f1d6ae302543e", + "name": "BlockMatrix", + "description": "We are experienced validators across multiple PoS and DPoS networks: Loom FTW 🚀", + "website": "https://blockmatrix.network" + }, + { + "id": "loom1985871ed65b80e09eca382c3e3c2d6831e092ec", + "name": "BlockTower", + "description": "BlockTower is a leading cryptoasset investment firm, applying professional trading, investing and portfolio management to an emerging digital asset class.", + "website": "https://blocktower.com/" + }, + { + "id": "loom9c6259c5b2a71c8642c2c84ccfb8f734e6bc6b87", + "name": "Blockware_Solutions", + "description": "Blockware Solutions LLC is a blockchain infrastructure company and network advisory firm. An industry leader in Bitcoin and Cryptocurrency mining services including hardware procurement and professional mining pool and staking pool operations.", + "website": "https://blockwarepool.com/loom" + }, + { + "id": "looma5b2c08c1dcd58d819317b79cbc9b5a8566bdf73", + "name": "Cannon Lab", + "description": "the most famous EOS community in China", + "website": "https://eoscannon.io/" + }, + { + "id": "loom911ac334f7014f0635b95a4a2225b45c5292c6c6", + "name": "Certus One | CMCC Global", + "description": "Stake with Certus One and CMCC Global", + "website": "https://certus.one/" + }, + { + "id": "loom9f1581a14f1194ab4913745301b55fe8d20595fe", + "name": "Chorus One", + "description": "Chorus One is operating validating nodes and staking services for Proof-of-Stake blockchain networks. Find content on the Loom Network ranging from tutorials and explanations to our investment thesis on our blog.", + "website": "https://chorus.one/" + }, + { + "id": "loom6b3dd380eb365603182617d698fdbbe52befa801", + "name": "CoboWallet", + "description": "Cobo Wallet is a company that help everyone to grow and protect crypto assets.", + "website": "https://cobo.com/" + }, + { + "id": "loom319e459f5d0ddc5ddf3e3610398a8b6e6772daa3", + "name": "Hey.network", + "description": "Run by an all-star team of engineers. Propelling Loom to the moon and beyond. With love from the Hey network!", + "website": "https://stake.hey.network/" + }, + { + "id": "loome6fbaafc34f746ac2280fa8bd1787a8292f13148", + "name": "Infstones", + "description": "Professional PoS Service Provider. Elected Super Node of EoS, Tron, Vechain, Ontology, GxChain, IoTex and Loom. Secure and Reliable Service of your choice!", + "website": "https://infstones.io/" + }, + { + "id": "loom8ec7faf77cc27eee73ae25b077fe5d05277cd8cc", + "name": "MultiChain Ventures", + "description": "MultiChain Ventures", + "website": "https://multichain.vc/" + }, + { + "id": "loom7bc38ff819b75f85275d2fd83080ec337b4e0afe", + "name": "Mythos", + "description": "Staking and validator services for crypto networks", + "website": "https://mythos.services/loom" + }, + { + "id": "loom59dd7302bf628156f948a9101169135324058d60", + "name": "NGC_StakeX", + "description": "NGC will back LOOM Network FOREVER!", + "website": "https://ngc.fund/" + }, + { + "id": "looma2e56e6253407242674c34ae7aeb7ae11883bcdb", + "name": "SNZPool", + "description": "SNZ Pool is a professional & reliable POS validator for a dozen of projects like Cosmos, IRISnet, EOS, ONT, Loom, etc.", + "website": "https://snzholding.com/" + }, + { + "id": "loomeb5d1fa6e421485c7ae2fba8e3199588ed931daf", + "name": "Stake Capital DAO", + "description": "Trustless Digital Asset Management", + "website": "https://stake.capital/" + }, + { + "id": "looma38c27e8cf4a443e805065065aefb250b1e1cef2", + "name": "stakewith.us", + "description": "Secured Staking Made Easy. Put Your Crypto to Work - Hassle Free.", + "website": "https://stakewith.us/" + }, + { + "id": "loomb6b0f012149fbaaab596f762434de54c6c27d16c", + "name": "Loom Validator", + "description": "Loom Validator", + "website": "https://loomx.io/" + }, + { + "id": "loomb7b1a2ed7c47287ba4da1fd17f626faf2134e9d0", + "name": "stake.fish | bitfish", + "description": "stake.fish was selected by Loom Network as one of the first external validators for its network. We use bare metal servers in Korea for our validator node and multiple security features are put in place to ensure the highest uptime.", + "website": "https://stake.fish/" + }, + { + "id": "loom0ca3d6bf201ce53c7ddc3cb397ae33a68ed4a328", + "name": "ShipChain", + "description": "ShipChain is completely intermodal and capable of tracking virtually any form of transport.", + "website": "https://shipchain.io/" + }, + { + "id": "loomd58d72b3bef93fcbf13466cb2d83bcc145843510", + "name": "Wetez", + "description": "Wetez is the most professional team in the POS ( Proof of Stake) field. For institutions, we provide the most secure and efficient node management service; For individual investors, we provide convenient delegation service for rewards. At the same time, Wetez is a mobile wallet specially designed for PoS. Besides transaction feature, it includes delegation page, reward page, and we will empower individual rights what PoS consensus brings.", + "website": "https://wetez.io/" + } +] \ No newline at end of file diff --git a/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/info.json b/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/info.json new file mode 100644 index 00000000..b01c7dd7 --- /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 00000000..cde76e41 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 00000000..0332da49 --- /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 00000000..d0c4e5f8 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 00000000..62857b70 --- /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 00000000..cde76e41 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 00000000..97b100d5 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 00000000..213fdb1b --- /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 00000000..2b243463 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 00000000..e7233119 --- /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 00000000..97a609cb 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 00000000..9637c85a --- /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 00000000..2ac7a8d0 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 00000000..5f10aa9d --- /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 00000000..caac6aa5 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 00000000..c31f59e7 --- /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 00000000..bc33814d 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 00000000..e6329fd3 --- /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 00000000..d89712cd 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 00000000..721d1305 --- /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 00000000..4b5abed4 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 00000000..0435e80f --- /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 00000000..d985b220 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 00000000..f38e23af --- /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 00000000..9c631d1e 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 00000000..7d0b7c7e --- /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 00000000..1407faec 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 00000000..519c3483 --- /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 00000000..4b4b3fec 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 00000000..4e8c4228 --- /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 00000000..4b302730 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 00000000..1b86a1ea --- /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 00000000..b76bd9c2 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 00000000..76e57a22 --- /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 00000000..30817f4f 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 00000000..62cfdc04 --- /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 00000000..21269313 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 00000000..a4a45043 --- /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 00000000..52e6642b 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 00000000..3b6ec46a --- /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 00000000..86fe45a8 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 00000000..2b0b6648 --- /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 00000000..6f48f28b 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 00000000..e3afe00d --- /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 00000000..4e802b83 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 00000000..fbf02e00 --- /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 00000000..8a519a35 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 00000000..7bb8c36d --- /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 00000000..3ff644e1 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 00000000..36ac4b3b --- /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 00000000..9cb31687 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 00000000..30c613bb --- /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 00000000..311e62f3 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 00000000..d8fd6024 --- /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 00000000..1407faec 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 00000000..67a28236 --- /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 00000000..bfb35387 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 00000000..0dfdfeca --- /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 00000000..d6ac8110 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 00000000..6960ded9 --- /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 00000000..303bb2ae 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 00000000..144baa51 --- /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 00000000..81e69fc9 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 00000000..cd013454 --- /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 00000000..0e599ca6 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 00000000..25efdc25 --- /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 00000000..78ee2944 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 00000000..45859210 --- /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 00000000..ea955b96 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 00000000..fcb1fc70 --- /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 00000000..876ac4cb 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 00000000..14d94b21 --- /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 00000000..f5edd54d 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 00000000..bc69201c --- /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 00000000..857fe690 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 00000000..750b33fe --- /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 00000000..20a4cb2a 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 00000000..7a39f1f6 --- /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 00000000..5968d83b 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 00000000..76bf0ec5 --- /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 00000000..1351af57 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 00000000..b8d0df57 --- /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 00000000..d63f9043 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 00000000..71330473 --- /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 00000000..23943fce 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 00000000..bbc4a0e2 --- /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 00000000..b3762830 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 00000000..2961bca8 --- /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 00000000..8bbfdce0 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 00000000..04ae0eca --- /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 00000000..9ae5b5a7 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 00000000..b717afaf --- /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 00000000..e5513d14 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 00000000..14eefdec --- /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 00000000..bf515810 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 00000000..281a7778 --- /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 00000000..903b2efe 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 00000000..6a2e8553 --- /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 00000000..d5c48229 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 00000000..d6bcc31d --- /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 00000000..53c67cfe 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 00000000..7cc7c9f9 --- /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 00000000..1951f3b4 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 00000000..278a1778 --- /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 00000000..24a17931 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 00000000..56d5cc78 --- /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 00000000..408eeb75 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 00000000..16844778 --- /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 00000000..499d05ab 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 00000000..fb405fb9 --- /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 00000000..37200bdc 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 00000000..926cc4d0 --- /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 00000000..69911cae 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 00000000..311b843a --- /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 00000000..21ed72e7 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 00000000..16685aa5 --- /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 00000000..d55ca6ed 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 00000000..41c1881a --- /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 00000000..93fd95bb 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 00000000..019c4e03 --- /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 00000000..0be7e154 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 00000000..1cb5c10c --- /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 00000000..91c8cff4 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 00000000..ad62d49e --- /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 00000000..74a17d83 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 00000000..11ccd7b0 --- /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 00000000..fb7784c7 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 00000000..88cead81 --- /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 00000000..02c91d1f 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 00000000..b6215dc4 --- /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 00000000..ea385e42 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 00000000..00715b3e --- /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 00000000..4ddb0ca1 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 00000000..02734281 --- /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 00000000..5846ce5c 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 00000000..73d034cd --- /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 00000000..e6a2aff6 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 00000000..7c66135b --- /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 00000000..1cd980d9 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 00000000..badb859a --- /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 00000000..857fe690 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 00000000..870c6f2b --- /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 00000000..67bdfefe 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 00000000..9f529f52 --- /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 00000000..86532032 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 00000000..85f338ac --- /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 00000000..74e8233d 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 00000000..72d09aaa --- /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 00000000..0c6d1b72 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 00000000..ed3b7a81 --- /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 00000000..5a63b362 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 00000000..5165af47 --- /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 00000000..d0c4e5f8 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 00000000..b651d823 --- /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 00000000..fa5ae973 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 00000000..5ce2df85 --- /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 00000000..a6ab744f 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 00000000..b8641b52 --- /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 00000000..09666400 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 00000000..748e2f72 --- /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 00000000..5d99d96e 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 00000000..e3f36c6d --- /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 00000000..a6393b66 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 00000000..ed471de6 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 new file mode 100644 index 00000000..5b802076 --- /dev/null +++ b/blockchains/mars/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Mars Protocol", + "type": "coin", + "symbol": "MARS", + "decimals": 6, + "website": "https://www.sommelier.finance/", + "description": "Mars Hub is the governing app-chain that administers Mars Protocol’s various DeFi outposts across the Interchain ecosystem.", + "explorer": "https://www.mintscan.io/mars-protocol", + "status": "active", + "rpc_url": "https://rpc.marsprotocol.io:443", + "denom": "umars", + "lcd_url": "https://rest.marsprotocol.io:443", + "hrp": "mars", + "links": [ + { + "name": "github", + "url": "https://github.com/mars-protocol" + }, + { + "name": "whitepaper", + "url": "https://docs.marsprotocol.io/mars-protocol/" + }, + { + "name": "x", + "url": "https://x.com/mars_protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/mars/info/logo.png b/blockchains/mars/info/logo.png new file mode 100644 index 00000000..95997533 Binary files /dev/null and b/blockchains/mars/info/logo.png differ diff --git a/blockchains/mars/info/square_logo.png b/blockchains/mars/info/square_logo.png new file mode 100644 index 00000000..793f7b4a 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 00000000..9b28ec00 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 00000000..b9144cc5 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 00000000..cbc90da9 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 00000000..02916372 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 00000000..e3d5db9d 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 00000000..7d46ea72 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 00000000..a95df352 --- /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 00000000..5cb2230d --- /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 00000000..99912968 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 00000000..1835e7a1 --- /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 00000000..9cbb47d8 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 00000000..8cb03e48 --- /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 00000000..ee71d6b2 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 00000000..092c5dd3 --- /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 00000000..74acdde9 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 00000000..1f217196 --- /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 00000000..5f0fd4f8 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 00000000..82c89218 --- /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 00000000..c6810d0d 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 00000000..0286b6a4 --- /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 00000000..456ea47d 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 00000000..a23caecb --- /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 00000000..99912968 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 00000000..986ff078 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 00000000..9e7629cd --- /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 00000000..9aeaaf30 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 00000000..dd142bb0 --- /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 00000000..7e1a9f33 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 00000000..5bfdcf89 --- /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 00000000..0a94cd1c 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 00000000..d069ce61 --- /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 00000000..c928cf09 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 00000000..5a6010ef --- /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 00000000..de7be1d3 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 00000000..4f27c982 --- /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 00000000..f0725e93 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 00000000..9b2ffd31 --- /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 00000000..c8c843e0 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 00000000..e1d9d84d --- /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 00000000..f58a7dac 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 00000000..1e94ff39 --- /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 00000000..c72ce964 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 00000000..e26ec654 --- /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 00000000..358f752f 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 00000000..a53164dc --- /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 00000000..71f639d1 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 00000000..0c7ff7c6 --- /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 00000000..702d64a2 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 00000000..d698cd0a --- /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 00000000..75e81892 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 00000000..fe2c8b4d --- /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 00000000..d0c4e5f8 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 00000000..d195e8d1 --- /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 00000000..38692ef6 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 00000000..786a9c96 Binary files /dev/null and b/blockchains/merlin/info/square_logo.png differ diff --git a/blockchains/meter/assets/0x1cf09D1B5Da9d9d24365D87B932A7c4bD018A419/info.json b/blockchains/meter/assets/0x1cf09D1B5Da9d9d24365D87B932A7c4bD018A419/info.json new file mode 100644 index 00000000..b8278fdc --- /dev/null +++ b/blockchains/meter/assets/0x1cf09D1B5Da9d9d24365D87B932A7c4bD018A419/info.json @@ -0,0 +1,11 @@ +{ + "name": "AmpleForth", + "symbol": "AMPL", + "type": "METER", + "decimals": 9, + "explorer": "https://scan.meter.io/address/0x1cf09D1B5Da9d9d24365D87B932A7c4bD018A419", + "status": "active", + "id": "0x1cf09D1B5Da9d9d24365D87B932A7c4bD018A419", + "description": "Ampleforth describes itself as smart commodity money. It is chain-agnostic and reportedly less-correlated to Bitcoin and other digital assets.", + "website": "https://www.ampleforth.org/" +} \ No newline at end of file diff --git a/blockchains/meter/assets/0x1cf09D1B5Da9d9d24365D87B932A7c4bD018A419/logo.png b/blockchains/meter/assets/0x1cf09D1B5Da9d9d24365D87B932A7c4bD018A419/logo.png new file mode 100644 index 00000000..da535f6d Binary files /dev/null and b/blockchains/meter/assets/0x1cf09D1B5Da9d9d24365D87B932A7c4bD018A419/logo.png differ diff --git a/blockchains/meter/assets/0x228ebBeE999c6a7ad74A6130E81b12f9Fe237Ba3/info.json b/blockchains/meter/assets/0x228ebBeE999c6a7ad74A6130E81b12f9Fe237Ba3/info.json new file mode 100644 index 00000000..5d8034de --- /dev/null +++ b/blockchains/meter/assets/0x228ebBeE999c6a7ad74A6130E81b12f9Fe237Ba3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Meter Governance", + "symbol": "MTRG", + "type": "METER", + "decimals": 18, + "explorer": "https://scan.meter.io/address/0x228ebBeE999c6a7ad74A6130E81b12f9Fe237Ba3", + "status": "active", + "id": "0x228ebBeE999c6a7ad74A6130E81b12f9Fe237Ba3", + "description": "-", + "website": "" +} \ No newline at end of file diff --git a/blockchains/meter/assets/0x228ebBeE999c6a7ad74A6130E81b12f9Fe237Ba3/logo.png b/blockchains/meter/assets/0x228ebBeE999c6a7ad74A6130E81b12f9Fe237Ba3/logo.png new file mode 100644 index 00000000..2bf6afd5 Binary files /dev/null and b/blockchains/meter/assets/0x228ebBeE999c6a7ad74A6130E81b12f9Fe237Ba3/logo.png differ diff --git a/blockchains/meter/assets/0x24aA189DfAa76c671c279262F94434770F557c35/info.json b/blockchains/meter/assets/0x24aA189DfAa76c671c279262F94434770F557c35/info.json new file mode 100644 index 00000000..391eac87 --- /dev/null +++ b/blockchains/meter/assets/0x24aA189DfAa76c671c279262F94434770F557c35/info.json @@ -0,0 +1,11 @@ +{ + "name": "BUSD from BSC on Meter", + "symbol": "BUSD.bsc", + "type": "METER", + "decimals": 18, + "explorer": "https://scan.meter.io/address/0x24aA189DfAa76c671c279262F94434770F557c35", + "status": "active", + "id": "0x24aA189DfAa76c671c279262F94434770F557c35", + "description": "BUSD is a stablecoin issued by Paxos in partnership with Binance.", + "website": "https://paxos.com/busd/" +} \ No newline at end of file diff --git a/blockchains/meter/assets/0x24aA189DfAa76c671c279262F94434770F557c35/logo.png b/blockchains/meter/assets/0x24aA189DfAa76c671c279262F94434770F557c35/logo.png new file mode 100644 index 00000000..76d02e37 Binary files /dev/null and b/blockchains/meter/assets/0x24aA189DfAa76c671c279262F94434770F557c35/logo.png differ diff --git a/blockchains/meter/assets/0x5Fa41671c48e3C951AfC30816947126CCC8C162e/info.json b/blockchains/meter/assets/0x5Fa41671c48e3C951AfC30816947126CCC8C162e/info.json new file mode 100644 index 00000000..3a9356c3 --- /dev/null +++ b/blockchains/meter/assets/0x5Fa41671c48e3C951AfC30816947126CCC8C162e/info.json @@ -0,0 +1,11 @@ +{ + "name": "USDT from Ethereum on Meter", + "symbol": "USDT.eth", + "type": "METER", + "decimals": 6, + "explorer": "https://scan.meter.io/address/0x5Fa41671c48e3C951AfC30816947126CCC8C162e", + "status": "active", + "id": "0x5Fa41671c48e3C951AfC30816947126CCC8C162e", + "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/" +} \ No newline at end of file diff --git a/blockchains/meter/assets/0x5Fa41671c48e3C951AfC30816947126CCC8C162e/logo.png b/blockchains/meter/assets/0x5Fa41671c48e3C951AfC30816947126CCC8C162e/logo.png new file mode 100644 index 00000000..59d44aee Binary files /dev/null and b/blockchains/meter/assets/0x5Fa41671c48e3C951AfC30816947126CCC8C162e/logo.png differ diff --git a/blockchains/meter/assets/0x6CFe9AdaD5215195c1Aa9755DAed29360e6Ab986/info.json b/blockchains/meter/assets/0x6CFe9AdaD5215195c1Aa9755DAed29360e6Ab986/info.json new file mode 100644 index 00000000..2178e066 --- /dev/null +++ b/blockchains/meter/assets/0x6CFe9AdaD5215195c1Aa9755DAed29360e6Ab986/info.json @@ -0,0 +1,11 @@ +{ + "name": "Factory Builders Token", + "symbol": "FTB", + "type": "METER", + "decimals": 18, + "explorer": "https://scan.meter.io/address/0x6CFe9AdaD5215195c1Aa9755DAed29360e6Ab986", + "status": "active", + "id": "0x6CFe9AdaD5215195c1Aa9755DAed29360e6Ab986", + "description": "-", + "website": "" +} \ No newline at end of file diff --git a/blockchains/meter/assets/0x6CFe9AdaD5215195c1Aa9755DAed29360e6Ab986/logo.png b/blockchains/meter/assets/0x6CFe9AdaD5215195c1Aa9755DAed29360e6Ab986/logo.png new file mode 100644 index 00000000..e7e61990 Binary files /dev/null and b/blockchains/meter/assets/0x6CFe9AdaD5215195c1Aa9755DAed29360e6Ab986/logo.png differ diff --git a/blockchains/meter/assets/0x8Df95e66Cb0eF38F91D2776DA3c921768982fBa0/info.json b/blockchains/meter/assets/0x8Df95e66Cb0eF38F91D2776DA3c921768982fBa0/info.json new file mode 100644 index 00000000..adea9270 --- /dev/null +++ b/blockchains/meter/assets/0x8Df95e66Cb0eF38F91D2776DA3c921768982fBa0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Volt", + "symbol": "VOLT", + "type": "METER", + "decimals": 18, + "explorer": "https://scan.meter.io/address/0x8Df95e66Cb0eF38F91D2776DA3c921768982fBa0", + "status": "active", + "id": "0x8Df95e66Cb0eF38F91D2776DA3c921768982fBa0", + "description": "-", + "website": "" +} \ No newline at end of file diff --git a/blockchains/meter/assets/0x8Df95e66Cb0eF38F91D2776DA3c921768982fBa0/logo.png b/blockchains/meter/assets/0x8Df95e66Cb0eF38F91D2776DA3c921768982fBa0/logo.png new file mode 100644 index 00000000..54a7cb28 Binary files /dev/null and b/blockchains/meter/assets/0x8Df95e66Cb0eF38F91D2776DA3c921768982fBa0/logo.png differ diff --git a/blockchains/meter/assets/0x983147FB73A45FC7F8B4DFA1cd61Bdc7b111e5b6/info.json b/blockchains/meter/assets/0x983147FB73A45FC7F8B4DFA1cd61Bdc7b111e5b6/info.json new file mode 100644 index 00000000..eb1f00d2 --- /dev/null +++ b/blockchains/meter/assets/0x983147FB73A45FC7F8B4DFA1cd61Bdc7b111e5b6/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETH from Ethereum on Meter", + "symbol": "ETH", + "type": "METER", + "decimals": 18, + "explorer": "https://scan.meter.io/address/0x983147FB73A45FC7F8B4DFA1cd61Bdc7b111e5b6", + "status": "active", + "id": "0x983147FB73A45FC7F8B4DFA1cd61Bdc7b111e5b6", + "website": "https://ethereum.org/", + "description": "-" +} \ No newline at end of file diff --git a/blockchains/meter/assets/0x983147FB73A45FC7F8B4DFA1cd61Bdc7b111e5b6/logo.png b/blockchains/meter/assets/0x983147FB73A45FC7F8B4DFA1cd61Bdc7b111e5b6/logo.png new file mode 100644 index 00000000..bf957d38 Binary files /dev/null and b/blockchains/meter/assets/0x983147FB73A45FC7F8B4DFA1cd61Bdc7b111e5b6/logo.png differ diff --git a/blockchains/meter/assets/0xD86e243FC0007e6226B07c9A50C9d70D78299EB5/info.json b/blockchains/meter/assets/0xD86e243FC0007e6226B07c9A50C9d70D78299EB5/info.json new file mode 100644 index 00000000..943e3e58 --- /dev/null +++ b/blockchains/meter/assets/0xD86e243FC0007e6226B07c9A50C9d70D78299EB5/info.json @@ -0,0 +1,11 @@ +{ + "name": "USDC from Ethereum on Meter", + "symbol": "USDC.eth", + "type": "METER", + "decimals": 6, + "explorer": "https://scan.meter.io/address/0xD86e243FC0007e6226B07c9A50C9d70D78299EB5", + "status": "active", + "id": "0xD86e243FC0007e6226B07c9A50C9d70D78299EB5", + "description": "USDC stablecoin originating on Ethereum, bridged as an ESDT token on Elrond. 1 USDC = 1 Wrapped USDC", + "website": "https://www.centre.io/usdc" +} \ No newline at end of file diff --git a/blockchains/meter/assets/0xD86e243FC0007e6226B07c9A50C9d70D78299EB5/logo.png b/blockchains/meter/assets/0xD86e243FC0007e6226B07c9A50C9d70D78299EB5/logo.png new file mode 100644 index 00000000..eafbaac1 Binary files /dev/null and b/blockchains/meter/assets/0xD86e243FC0007e6226B07c9A50C9d70D78299EB5/logo.png differ diff --git a/blockchains/meter/assets/0xF0E86246519Be0810C9FAfc8430C49799985aAA8/info.json b/blockchains/meter/assets/0xF0E86246519Be0810C9FAfc8430C49799985aAA8/info.json new file mode 100644 index 00000000..cb44a6c3 --- /dev/null +++ b/blockchains/meter/assets/0xF0E86246519Be0810C9FAfc8430C49799985aAA8/info.json @@ -0,0 +1,11 @@ +{ + "name": "BNB from BSC on Meter", + "symbol": "BNB", + "type": "METER", + "decimals": 18, + "explorer": "https://scan.meter.io/address/0xF0E86246519Be0810C9FAfc8430C49799985aAA8", + "status": "active", + "id": "0xF0E86246519Be0810C9FAfc8430C49799985aAA8", + "website": "https://binance.org/", + "description": "Fast and secure decentralized digital asset exchange. The new crypto currency trading standard is here." +} \ No newline at end of file diff --git a/blockchains/meter/assets/0xF0E86246519Be0810C9FAfc8430C49799985aAA8/logo.png b/blockchains/meter/assets/0xF0E86246519Be0810C9FAfc8430C49799985aAA8/logo.png new file mode 100644 index 00000000..27688c0a Binary files /dev/null and b/blockchains/meter/assets/0xF0E86246519Be0810C9FAfc8430C49799985aAA8/logo.png differ diff --git a/blockchains/meter/assets/0xb158870beB809Ad955Bf56065C5C10D7Fd957cC0/info.json b/blockchains/meter/assets/0xb158870beB809Ad955Bf56065C5C10D7Fd957cC0/info.json new file mode 100644 index 00000000..db1b7ca4 --- /dev/null +++ b/blockchains/meter/assets/0xb158870beB809Ad955Bf56065C5C10D7Fd957cC0/info.json @@ -0,0 +1,11 @@ +{ + "name": "MOVR from MoonRiver on Meter", + "symbol": "MOVR", + "type": "METER", + "decimals": 18, + "explorer": "https://scan.meter.io/address/0xb158870beB809Ad955Bf56065C5C10D7Fd957cC0", + "status": "active", + "id": "0xb158870beB809Ad955Bf56065C5C10D7Fd957cC0", + "website": "https://moonbeam.network/networks/moonriver/", + "description": "Moonriver is a sister network of Moonbeam, and provides an environment to test new code under real economic conditions." +} \ No newline at end of file diff --git a/blockchains/meter/assets/0xb158870beB809Ad955Bf56065C5C10D7Fd957cC0/logo.png b/blockchains/meter/assets/0xb158870beB809Ad955Bf56065C5C10D7Fd957cC0/logo.png new file mode 100644 index 00000000..45376ce2 Binary files /dev/null and b/blockchains/meter/assets/0xb158870beB809Ad955Bf56065C5C10D7Fd957cC0/logo.png differ diff --git a/blockchains/meter/assets/0xc1f6C86ABEe8e2e0B6fd5BD80F0b51fef783635C/info.json b/blockchains/meter/assets/0xc1f6C86ABEe8e2e0B6fd5BD80F0b51fef783635C/info.json new file mode 100644 index 00000000..b6e75f5d --- /dev/null +++ b/blockchains/meter/assets/0xc1f6C86ABEe8e2e0B6fd5BD80F0b51fef783635C/info.json @@ -0,0 +1,11 @@ +{ + "name": "WBTC from Ethereum on Meter", + "symbol": "WBTC.eth", + "type": "METER", + "decimals": 8, + "explorer": "https://scan.meter.io/address/0xc1f6C86ABEe8e2e0B6fd5BD80F0b51fef783635C", + "status": "active", + "id": "0xc1f6C86ABEe8e2e0B6fd5BD80F0b51fef783635C", + "website": "https://wbtc.network", + "description": "Wrapped Bitcoin (WBTC) is the first ERC20 token backed 1:1 with Bitcoin." +} \ No newline at end of file diff --git a/blockchains/meter/assets/0xc1f6C86ABEe8e2e0B6fd5BD80F0b51fef783635C/logo.png b/blockchains/meter/assets/0xc1f6C86ABEe8e2e0B6fd5BD80F0b51fef783635C/logo.png new file mode 100644 index 00000000..702d64a2 Binary files /dev/null and b/blockchains/meter/assets/0xc1f6C86ABEe8e2e0B6fd5BD80F0b51fef783635C/logo.png differ diff --git a/blockchains/meter/info/info.json b/blockchains/meter/info/info.json new file mode 100644 index 00000000..2f9ff437 --- /dev/null +++ b/blockchains/meter/info/info.json @@ -0,0 +1,46 @@ +{ + "name": "Meter", + "type": "coin", + "coin_type": 18000, + "symbol": "MTRG", + "decimals": 18, + "website": "https://meter.io/", + "research": "https://docs.meter.io/", + "description": "Meter is a high performance Ethereum compatible infrastructure that allows smart contracts to scale and travel through blockchain networks. Transactions on Meter is front running resistant with stable and low gas cost paid in metastable gas token MTR", + "explorer": "https://scan.meter.io/", + "rpc_url": "https://rpc.meter.io", + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/meterio" + }, + { + "name": "x", + "url": "https://x.com/Meter_IO" + }, + { + "name": "whitepaper", + "url": "https://docsend.com/view/6gebiph" + }, + { + "name": "telegram", + "url": "https://t.me/Meter_IO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Meter_io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meter-governance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/meter-governance" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/meter/info/logo.png b/blockchains/meter/info/logo.png new file mode 100644 index 00000000..ac3658a6 Binary files /dev/null and b/blockchains/meter/info/logo.png differ diff --git a/blockchains/meter/info/square_logo.png b/blockchains/meter/info/square_logo.png new file mode 100644 index 00000000..772b68c2 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 new file mode 100644 index 00000000..02d4665d --- /dev/null +++ b/blockchains/meter/tokenlist.json @@ -0,0 +1,106 @@ +{ + "name": "Trust Wallet: Meter List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-07-03T00:00:00.000Z", + "tokens": [ + { + "asset": "c18000_t0x1cf09D1B5Da9d9d24365D87B932A7c4bD018A419", + "type": "METER", + "address": "0x1cf09D1B5Da9d9d24365D87B932A7c4bD018A419", + "name": "AmpleForth", + "symbol": "AMPL", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/metter/assets/0x1cf09D1B5Da9d9d24365D87B932A7c4bD018A419/logo.png" + }, + { + "asset": "c18000_t0xF0E86246519Be0810C9FAfc8430C49799985aAA8", + "type": "METER", + "address": "0xF0E86246519Be0810C9FAfc8430C49799985aAA8", + "name": "BNB from BSC on Meter", + "symbol": "BNB", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/metter/assets/0xF0E86246519Be0810C9FAfc8430C49799985aAA8/logo.png" + }, + { + "asset": "c18000_t0x24aA189DfAa76c671c279262F94434770F557c35", + "type": "METER", + "address": "0x24aA189DfAa76c671c279262F94434770F557c35", + "name": "BUSD from BSC on Meter", + "symbol": "BUSD.bsc", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/metter/assets/0x24aA189DfAa76c671c279262F94434770F557c35/logo.png" + }, + { + "asset": "c18000_t0x983147FB73A45FC7F8B4DFA1cd61Bdc7b111e5b6", + "type": "METER", + "address": "0x983147FB73A45FC7F8B4DFA1cd61Bdc7b111e5b6", + "name": "ETH from Ethereum on Meter", + "symbol": "ETH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/metter/assets/0x983147FB73A45FC7F8B4DFA1cd61Bdc7b111e5b6/logo.png" + }, + { + "asset": "c18000_t0x6CFe9AdaD5215195c1Aa9755DAed29360e6Ab986", + "type": "METER", + "address": "0x6CFe9AdaD5215195c1Aa9755DAed29360e6Ab986", + "name": "Factory Builders Token", + "symbol": "FTB", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/metter/assets/0x6CFe9AdaD5215195c1Aa9755DAed29360e6Ab986/logo.png" + }, + { + "asset": "c18000_t0xb158870beB809Ad955Bf56065C5C10D7Fd957cC0", + "type": "METER", + "address": "0xb158870beB809Ad955Bf56065C5C10D7Fd957cC0", + "name": "MOVR from MoonRiver on Meter", + "symbol": "MOVR", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/metter/assets/0xb158870beB809Ad955Bf56065C5C10D7Fd957cC0/logo.png" + }, + { + "asset": "c18000_t0x228ebBeE999c6a7ad74A6130E81b12f9Fe237Ba3", + "type": "METER", + "address": "0x228ebBeE999c6a7ad74A6130E81b12f9Fe237Ba3", + "name": "Meter Governance", + "symbol": "MTRG", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/metter/assets/0x228ebBeE999c6a7ad74A6130E81b12f9Fe237Ba3/logo.png" + }, + { + "asset": "c18000_t0xD86e243FC0007e6226B07c9A50C9d70D78299EB5", + "type": "METER", + "address": "0xD86e243FC0007e6226B07c9A50C9d70D78299EB5", + "name": "USDC from Ethereum on Meter", + "symbol": "USDC.eth", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/metter/assets/0xD86e243FC0007e6226B07c9A50C9d70D78299EB5/logo.png" + }, + { + "asset": "c18000_t0x5Fa41671c48e3C951AfC30816947126CCC8C162e", + "type": "METER", + "address": "0x5Fa41671c48e3C951AfC30816947126CCC8C162e", + "name": "USDT from Ethereum on Meter", + "symbol": "USDT.eth", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/metter/assets/0x5Fa41671c48e3C951AfC30816947126CCC8C162e/logo.png" + }, + { + "asset": "c18000_t0x8Df95e66Cb0eF38F91D2776DA3c921768982fBa0", + "type": "METER", + "address": "0x8Df95e66Cb0eF38F91D2776DA3c921768982fBa0", + "name": "Volt", + "symbol": "VOLT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/metter/assets/0x8Df95e66Cb0eF38F91D2776DA3c921768982fBa0/logo.png" + }, + { + "asset": "c18000_t0xc1f6C86ABEe8e2e0B6fd5BD80F0b51fef783635C", + "type": "METER", + "address": "0xc1f6C86ABEe8e2e0B6fd5BD80F0b51fef783635C", + "name": "WBTC from Ethereum on Meter", + "symbol": "WBTC.eth", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/metter/assets/0xc1f6C86ABEe8e2e0B6fd5BD80F0b51fef783635C/logo.png" + } + ] +} \ No newline at end of file diff --git a/blockchains/metis/info/info.json b/blockchains/metis/info/info.json new file mode 100644 index 00000000..2f228734 --- /dev/null +++ b/blockchains/metis/info/info.json @@ -0,0 +1,22 @@ +{ + "name": "Metis", + "website": "https://www.metis.io", + "description": "Metis is an easy-to-use, highly scalable, low-cost, and fully functional Layer 2 framework to fully support the application and business migration from Web 2.0 to Web 3.0", + "explorer": "https://andromeda-explorer.metis.io", + "research": "", + "symbol": "METIS", + "type": "coin", + "coin_type": 10001088, + "rpc_url": "https://andromeda.metis.io/?owner=1088", + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/metisdao" + } + ] +} \ No newline at end of file diff --git a/blockchains/metis/info/logo.png b/blockchains/metis/info/logo.png new file mode 100644 index 00000000..7229b9ba Binary files /dev/null and b/blockchains/metis/info/logo.png differ diff --git a/blockchains/metis/info/square_logo.png b/blockchains/metis/info/square_logo.png new file mode 100644 index 00000000..84f6de3b 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 00000000..f56cd5ee --- /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 00000000..43529877 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 00000000..8a7fa8fe --- /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 00000000..d82a023e 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 00000000..f0084609 --- /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 00000000..5c5fa997 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 00000000..6d5ecdb4 --- /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 00000000..fb329c4d 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 00000000..c881f1a0 --- /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 00000000..f22d76e6 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 00000000..2d77274f --- /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 00000000..6053d354 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 00000000..3f8e0158 --- /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 00000000..3842d2f9 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 00000000..069b9363 --- /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 00000000..9d339a57 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 00000000..4417dd46 --- /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 00000000..55f99bb2 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 00000000..99c60151 --- /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 00000000..cd5d5d2a 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 00000000..48305158 --- /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 00000000..c59eae1c 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 00000000..d294bf21 --- /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 00000000..946d91b3 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 00000000..66ca9ccc --- /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 00000000..f1d6c7ab 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 00000000..d556f885 --- /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 00000000..cf481631 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 00000000..a77ac4ae --- /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 00000000..1dbd64d0 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 00000000..be6883d4 --- /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 00000000..4bd3fd91 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 00000000..9d0bbeaf --- /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 00000000..9ecce14d 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 00000000..67b0f83f --- /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 00000000..cdfe8db4 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 00000000..98ec352f --- /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 00000000..44bd83ee 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 00000000..b3bf2845 --- /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 00000000..7c5739c4 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 00000000..a2c9a666 --- /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 00000000..75278db7 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 00000000..f3beb741 --- /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 00000000..a4d89b64 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 00000000..83fabe38 --- /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 00000000..6ddb0e8d 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 00000000..04ccdb74 --- /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 00000000..1943086d 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 00000000..5f392faf --- /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 00000000..dabf2def 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 00000000..11987f47 --- /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 00000000..be993900 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 00000000..c7b91bdc --- /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 00000000..e89409c8 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 00000000..be00c808 --- /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 00000000..4a1c8126 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 00000000..84048935 --- /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 00000000..85d26b3a 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 00000000..37c76061 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 new file mode 100644 index 00000000..78489c9f --- /dev/null +++ b/blockchains/moonbasealpha/info/info.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 00000000..23a56362 Binary files /dev/null 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 00000000..793f7b4a 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 new file mode 100644 index 00000000..8b23a5c3 --- /dev/null +++ b/blockchains/moonbeam/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json @@ -0,0 +1,68 @@ +{ + "name": "Axelar", + "type": "MOONBEAM", + "symbol": "AXL", + "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://moonscan.io/token/0x467719aD09025FcC6cF6F8311755809d45a5E5f3", + "status": "active", + "id": "0x467719aD09025FcC6cF6F8311755809d45a5E5f3", + "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" + }, + { + "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/axelar/" + }, + { + "name": "blog", + "url": "https://axelar.network/blog" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Axelarcore" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/moonbeam/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/logo.png b/blockchains/moonbeam/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/logo.png new file mode 100644 index 00000000..6c156aba Binary files /dev/null and b/blockchains/moonbeam/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/logo.png differ diff --git a/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/info.json b/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/info.json new file mode 100644 index 00000000..4a5954fe --- /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 00000000..76d02e37 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 new file mode 100644 index 00000000..59927aa1 --- /dev/null +++ b/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/info.json @@ -0,0 +1,69 @@ +{ + "name": "Axelar Wrapped USDC", + "type": "MOONBEAM", + "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://moonscan.io/token/0xCa01a1D0993565291051daFF390892518ACfAD3A", + "status": "active", + "id": "0xCa01a1D0993565291051daFF390892518ACfAD3A", + "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/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/logo.png b/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/logo.png new file mode 100644 index 00000000..69911cae Binary files /dev/null and b/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/logo.png differ diff --git a/blockchains/moonbeam/assets/0xe32C01d807C2290fEe75625CdEde876a0a1c8eC0/info.json b/blockchains/moonbeam/assets/0xe32C01d807C2290fEe75625CdEde876a0a1c8eC0/info.json new file mode 100644 index 00000000..5d59780e --- /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 00000000..cb6c4903 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 new file mode 100644 index 00000000..3b993174 --- /dev/null +++ b/blockchains/moonbeam/info/info.json @@ -0,0 +1,22 @@ +{ + "name": "Moonbeam", + "website": "https://moonbeam.network", + "description": "Moonbeam combines the best of both worlds: the familiar and easy-to-use tooling of Ethereum and the scalable, interoperable architecture of Polkadot.", + "explorer": "https://moonscan.io", + "research": "", + "symbol": "GLMR", + "type": "coin", + "coin_type": 1284, + "rpc_url": "https://rpc.api.moonbeam.network", + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "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 new file mode 100644 index 00000000..b71e0edb Binary files /dev/null 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 00000000..72529e33 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 00000000..2fed8cc6 --- /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 00000000..f4c1f1e7 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 00000000..e0fc82fd --- /dev/null +++ b/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/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://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 00000000..c4def047 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 new file mode 100644 index 00000000..f1c3e5f8 --- /dev/null +++ b/blockchains/moonriver/info/info.json @@ -0,0 +1,19 @@ +{ + "name": "Moonriver", + "website": "https://moonbeam.network/networks/moonriver/", + "description": "Moonriver is a sister network of Moonbeam, and provides an environment to test new code under real economic conditions.", + "explorer": "https://moonriver.moonscan.io/", + "research": "", + "symbol": "MOVR", + "type": "coin", + "coin_type": 1285, + "rpc_url": "https://rpc.api.moonriver.moonbeam.network", + "decimals": 18, + "status": "active", + "links": [ + { + "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 new file mode 100644 index 00000000..5baff2ab Binary files /dev/null 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 00000000..42b229a8 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 new file mode 100644 index 00000000..53880470 --- /dev/null +++ b/blockchains/nano/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Nano", + "website": "http://nano.org/en", + "description": "Digital currency for the real world – the fast and free way to pay for everything in life.", + "explorer": "https://nanocrawler.cc", + "research": "https://research.binance.com/en/projects/nano", + "symbol": "XNO", + "type": "coin", + "decimals": 30, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/nanocurrency" + }, + { + "name": "x", + "url": "https://x.com/nano" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/nanocurrency" + }, + { + "name": "whitepaper", + "url": "https://nano.org/en/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/nano/info/logo.png b/blockchains/nano/info/logo.png new file mode 100644 index 00000000..023e406d Binary files /dev/null and b/blockchains/nano/info/logo.png differ diff --git a/blockchains/nano/info/square_logo.png b/blockchains/nano/info/square_logo.png new file mode 100644 index 00000000..67ee0d0c 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 new file mode 100644 index 00000000..f203c887 --- /dev/null +++ b/blockchains/nativecanto/info/info.json @@ -0,0 +1,31 @@ +{ + "name": "Native Canto", + "type": "coin", + "symbol": "CANTO", + "decimals": 18, + "website": "https://canto.io/", + "description": "Canto is a Cosmos SDK based Layer-1 blockchain that runs Ethereum Virtual Machine.", + "explorer": "https://www.mintscan.io/canto", + "status": "active", + "rpc_url": "https://canto-rpc.polkachu.com/", + "denom": "acanto", + "lcd_url": "https://api.canto.nodestake.top/", + "hrp": "canto", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/canto/" + }, + { + "name": "github", + "url": "https://github.com/Canto-Network" + }, + { + "name": "x", + "url": "https://x.com/cantopublic" + } + ], + "tags": [ + "staking-native" + ] +} \ No newline at end of file diff --git a/blockchains/nativecanto/info/logo.png b/blockchains/nativecanto/info/logo.png new file mode 100644 index 00000000..bc1cf966 Binary files /dev/null and b/blockchains/nativecanto/info/logo.png differ diff --git a/blockchains/nativecanto/info/square_logo.png b/blockchains/nativecanto/info/square_logo.png new file mode 100644 index 00000000..87647676 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 00000000..02916372 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 00000000..cbc90da9 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 00000000..43f038c1 --- /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 new file mode 100644 index 00000000..62ce8b48 --- /dev/null +++ b/blockchains/nativeevmos/info/info.json @@ -0,0 +1,32 @@ +{ + "name": "Native Evmos", + "website": "https://evmos.org", + "description": "Evmos is bringing the world of Ethereum-based applications and assets to the interoperable networks of the Cosmos ecosystem, all while aligning developer and user incentives. Let’s adventure together into the world of innovation where EVM meets interchain composability.", + "explorer": "https://www.mintscan.io/evmos", + "research": "", + "symbol": "EVMOS", + "type": "coin", + "decimals": 18, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/tharsis/evmos" + }, + { + "name": "x", + "url": "https://x.com/EvmosOrg" + }, + { + "name": "discord", + "url": "https://discord.com/invite/evmos" + }, + { + "name": "telegram", + "url": "https://t.me/EvmosOrg" + } + ] +} \ No newline at end of file diff --git a/blockchains/nativeevmos/info/logo.png b/blockchains/nativeevmos/info/logo.png new file mode 100644 index 00000000..e78f6fc0 Binary files /dev/null and b/blockchains/nativeevmos/info/logo.png differ diff --git a/blockchains/nativeevmos/info/square_logo.png b/blockchains/nativeevmos/info/square_logo.png new file mode 100644 index 00000000..259a5423 Binary files /dev/null and b/blockchains/nativeevmos/info/square_logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper14zatq4jagqtm9ejgvglnv0t364d88u80futp65/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper14zatq4jagqtm9ejgvglnv0t364d88u80futp65/logo.png new file mode 100644 index 00000000..34a0818a Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper14zatq4jagqtm9ejgvglnv0t364d88u80futp65/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 00000000..9b28ec00 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgw63w87l/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper19fxanpnjlggzuur3m3x0puk5ez7j9lrttexwsw/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper19fxanpnjlggzuur3m3x0puk5ez7j9lrttexwsw/logo.png new file mode 100644 index 00000000..0f6305d8 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper19fxanpnjlggzuur3m3x0puk5ez7j9lrttexwsw/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1c55g6u7q2uzgks9gjp80sle8n6qcyg64vk64g2/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1c55g6u7q2uzgks9gjp80sle8n6qcyg64vk64g2/logo.png new file mode 100644 index 00000000..26694777 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1c55g6u7q2uzgks9gjp80sle8n6qcyg64vk64g2/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1f35jtt5m68zlxkpxn75403vv82cchahqvfsrup/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1f35jtt5m68zlxkpxn75403vv82cchahqvfsrup/logo.png new file mode 100644 index 00000000..4ef5a482 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1f35jtt5m68zlxkpxn75403vv82cchahqvfsrup/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 00000000..02916372 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 00000000..bed02519 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1hn8u6x03mklzdy69r9khsd9q4yft7gmrkz8qkj/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1k5hcl0cjprzewwvzhz3um589kx8skzlrneuepu/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1k5hcl0cjprzewwvzhz3um589kx8skzlrneuepu/logo.png new file mode 100644 index 00000000..96ca9e91 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1k5hcl0cjprzewwvzhz3um589kx8skzlrneuepu/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1mx9nqk5agvlsvt2yc8259nwztmxq7zjqep5khu/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1mx9nqk5agvlsvt2yc8259nwztmxq7zjqep5khu/logo.png new file mode 100644 index 00000000..55c515cc Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1mx9nqk5agvlsvt2yc8259nwztmxq7zjqep5khu/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1p5k54qk9jdamvw4r756g7dxsjarf6p0l3huk84/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1p5k54qk9jdamvw4r756g7dxsjarf6p0l3huk84/logo.png new file mode 100644 index 00000000..71ecba0f Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1p5k54qk9jdamvw4r756g7dxsjarf6p0l3huk84/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1q3aejvmwj9dxturgk00jv7hkwxld7ny7642tr8/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1q3aejvmwj9dxturgk00jv7hkwxld7ny7642tr8/logo.png new file mode 100644 index 00000000..846266d8 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1q3aejvmwj9dxturgk00jv7hkwxld7ny7642tr8/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 00000000..cbc90da9 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1sp9frqwep52chwavv3xd776myy8gyyvkv5uysl/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1sp9frqwep52chwavv3xd776myy8gyyvkv5uysl/logo.png new file mode 100644 index 00000000..caa00eba Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1sp9frqwep52chwavv3xd776myy8gyyvkv5uysl/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1sq9ggymzx02vcp7kf6yyar83scfm4r22swu673/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1sq9ggymzx02vcp7kf6yyar83scfm4r22swu673/logo.png new file mode 100644 index 00000000..76c3606e Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1sq9ggymzx02vcp7kf6yyar83scfm4r22swu673/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1vw76ju5rwt9us7kz8tg42t6yfmq2jftydu74u6/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1vw76ju5rwt9us7kz8tg42t6yfmq2jftydu74u6/logo.png new file mode 100644 index 00000000..abcfc329 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1vw76ju5rwt9us7kz8tg42t6yfmq2jftydu74u6/logo.png differ diff --git a/blockchains/nativeevmos/validators/list.json b/blockchains/nativeevmos/validators/list.json new file mode 100644 index 00000000..111e451c --- /dev/null +++ b/blockchains/nativeevmos/validators/list.json @@ -0,0 +1,104 @@ +[ + { + "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", + "description": "Secure and reliable staking.", + "website": "https://heisenbug.one" + }, + { + "id": "evmosvaloper1vw76ju5rwt9us7kz8tg42t6yfmq2jftydu74u6", + "name": "Swiss Staking", + "description": "Experienced validator based in Switzerland. We offer a highly secure and stable staking infrastructure.", + "website": "https://swiss-staking.ch" + }, + { + "id": "evmosvaloper1mx9nqk5agvlsvt2yc8259nwztmxq7zjqep5khu", + "name": "OrbitalApes.com", + "description": "Evmos Validator by Orbital Apes NFT", + "website": "https://orbitalapes.com/" + }, + { + "id": "evmosvaloper1sp9frqwep52chwavv3xd776myy8gyyvkv5uysl", + "name": "Disperze", + "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", + "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards", + "website": "https://cosmostation.io/" + }, + { + "id": "evmosvaloper14zatq4jagqtm9ejgvglnv0t364d88u80futp65", + "name": "Frens (🤝,🤝)", + "description": "Your friendly validator for cosmos chains", + "website": "https://frens.army/" + }, + { + "id": "evmosvaloper1p5k54qk9jdamvw4r756g7dxsjarf6p0l3huk84", + "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": "evmosvaloper1sq9ggymzx02vcp7kf6yyar83scfm4r22swu673", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "evmosvaloper19fxanpnjlggzuur3m3x0puk5ez7j9lrttexwsw", + "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": "evmosvaloper1k5hcl0cjprzewwvzhz3um589kx8skzlrneuepu", + "name": "Vault Staking 🛡", + "description": "Over $100 million in delegated assets, with slash protection for our delegates. We are a progressive staking, infrastructure, and software provider for blockchain projects. Our infrastructure is deployed around the world and hosted by multiple providers to increase decentralization and fault-tolerance.", + "website": "https://www.stakingrewards.com/savings/vault-staking/" + }, + { + "id": "evmosvaloper1c55g6u7q2uzgks9gjp80sle8n6qcyg64vk64g2", + "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 00000000..a69d0761 --- /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 00000000..5402ed6b 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 00000000..0f2780c0 --- /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 00000000..4dc87c4c 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 00000000..23266af0 --- /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 00000000..7db7a458 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 00000000..5c36e623 --- /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 00000000..c4def047 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 00000000..2776c809 --- /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 00000000..1d045ec7 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 00000000..f06ec7b3 --- /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 00000000..e9a2fe6b 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 00000000..1475369d 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 00000000..60b01800 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 00000000..1288b588 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 00000000..10205271 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 00000000..9b28ec00 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 00000000..c2cb86a4 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 00000000..f5f3ada9 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 00000000..ab27231c 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 00000000..ee705393 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 00000000..e9622798 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 00000000..a542ccaa 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 00000000..b8e77f1c 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 00000000..fd2f0779 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 00000000..5d160d30 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 00000000..0f6305d8 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 00000000..9dff7bbe 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 00000000..02916372 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 00000000..e1178170 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 00000000..9dea531f --- /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 new file mode 100644 index 00000000..866fe3f9 --- /dev/null +++ b/blockchains/near/info/info.json @@ -0,0 +1,32 @@ +{ + "name": "NEAR Protocol", + "website": "https://near.org", + "description": "NEAR is an open source platform that accelerates the development of decentralized applications.", + "explorer": "https://explorer.near.org/", + "research": "https://research.binance.com/en/projects/near-protocol", + "symbol": "NEAR", + "type": "coin", + "decimals": 24, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/nearprotocol/nearcore" + }, + { + "name": "x", + "url": "https://x.com/nearprotocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/nearprotocol/" + }, + { + "name": "whitepaper", + "url": "https://near.org/papers/the-official-near-white-paper" + } + ] +} \ No newline at end of file diff --git a/blockchains/near/info/logo.png b/blockchains/near/info/logo.png new file mode 100644 index 00000000..15b08b2d Binary files /dev/null and b/blockchains/near/info/logo.png differ diff --git a/blockchains/near/info/square_logo.png b/blockchains/near/info/square_logo.png new file mode 100644 index 00000000..2ff05784 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 00000000..10205271 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 00000000..571f2711 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 00000000..c2cb86a4 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 00000000..6d612781 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 00000000..02edac54 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 00000000..9b28ec00 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 00000000..bed02519 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 00000000..a0c10f64 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 00000000..74be06fa 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 00000000..0888af01 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 00000000..0f6305d8 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 00000000..eaf66cb5 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 00000000..f5f3ada9 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 00000000..e407be37 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 00000000..4cc08943 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 00000000..1096a236 --- /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 00000000..16c1d6d8 --- /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 00000000..13f01d40 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 00000000..5bfd74cb 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 new file mode 100644 index 00000000..3c472c48 --- /dev/null +++ b/blockchains/nebulas/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Nebulas", + "website": "https://nebulas.io", + "description": "Nebulas is a decentralized platform which provides a search framework for all blockchains. Nebulas is a next generation public blockchain, aiming for a continuously improving ecosystem.", + "explorer": "https://explorer.nebulas.io", + "research": "https://research.binance.com/en/projects/nebulas", + "symbol": "NAS", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/nebulasio" + }, + { + "name": "x", + "url": "https://x.com/nebulasio" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/nebulas" + }, + { + "name": "whitepaper", + "url": "https://nebulas.io/docs/NebulasWhitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/nebulas/info/logo.png b/blockchains/nebulas/info/logo.png new file mode 100644 index 00000000..eb04d243 Binary files /dev/null and b/blockchains/nebulas/info/logo.png differ diff --git a/blockchains/nebulas/info/square_logo.png b/blockchains/nebulas/info/square_logo.png new file mode 100644 index 00000000..203f7cf7 Binary files /dev/null and b/blockchains/nebulas/info/square_logo.png differ diff --git a/blockchains/neo/assets/2efdb22c152896964665d0a8214dc7bd59232162/info.json b/blockchains/neo/assets/2efdb22c152896964665d0a8214dc7bd59232162/info.json new file mode 100644 index 00000000..f54417bb --- /dev/null +++ b/blockchains/neo/assets/2efdb22c152896964665d0a8214dc7bd59232162/info.json @@ -0,0 +1,11 @@ +{ + "name": "aleph.im NEP-5", + "type": "NEP5", + "symbol": "ALEPH", + "decimals": 8, + "website": "https://aleph.im", + "description": "Aleph.im is a cross-blockchain layer-2 networkspecifically focused on decentralized applications and their related infrastructure (storage, computing servers, security).", + "explorer": "https://neo.tokenview.com/en/token/0x2efdb22c152896964665d0a8214dc7bd59232162", + "status": "active", + "id": "2efdb22c152896964665d0a8214dc7bd59232162" +} \ No newline at end of file diff --git a/blockchains/neo/assets/2efdb22c152896964665d0a8214dc7bd59232162/logo.png b/blockchains/neo/assets/2efdb22c152896964665d0a8214dc7bd59232162/logo.png new file mode 100644 index 00000000..77ee50eb Binary files /dev/null and b/blockchains/neo/assets/2efdb22c152896964665d0a8214dc7bd59232162/logo.png differ diff --git a/blockchains/neo/assets/bac0d143a547dc66a1d6a2b7d66b06de42614971/info.json b/blockchains/neo/assets/bac0d143a547dc66a1d6a2b7d66b06de42614971/info.json new file mode 100644 index 00000000..d456c524 --- /dev/null +++ b/blockchains/neo/assets/bac0d143a547dc66a1d6a2b7d66b06de42614971/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bridge Protocol Token (NEP5)", + "type": "NEP5", + "symbol": "BRDG", + "decimals": 8, + "website": "https://bridgeprotocol.io/", + "description": "Bridge Protocol NEP-5 utility token (BRDG) on the NEO Smart Economy", + "explorer": "https://neo.tokenview.com/en/token/0xbac0d143a547dc66a1d6a2b7d66b06de42614971", + "status": "active", + "id": "bac0d143a547dc66a1d6a2b7d66b06de42614971" +} \ No newline at end of file diff --git a/blockchains/neo/assets/bac0d143a547dc66a1d6a2b7d66b06de42614971/logo.png b/blockchains/neo/assets/bac0d143a547dc66a1d6a2b7d66b06de42614971/logo.png new file mode 100644 index 00000000..7e1309cb Binary files /dev/null and b/blockchains/neo/assets/bac0d143a547dc66a1d6a2b7d66b06de42614971/logo.png differ diff --git a/blockchains/neo/info/info.json b/blockchains/neo/info/info.json new file mode 100644 index 00000000..b3d34452 --- /dev/null +++ b/blockchains/neo/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Neo", + "website": "https://neo.org", + "description": "NEO is a non-profit community-based blockchain project that utilizes blockchain technology and digital identity to digitize assets, and to realize a smart economy with a distributed network.", + "explorer": "https://neoscan.io", + "research": "https://research.binance.com/en/projects/neo", + "symbol": "NEO", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/neo-project" + }, + { + "name": "x", + "url": "https://x.com/neo_blockchain" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/NEO" + }, + { + "name": "whitepaper", + "url": "https://docs.neo.org/en-us" + } + ] +} \ No newline at end of file diff --git a/blockchains/neo/info/logo.png b/blockchains/neo/info/logo.png new file mode 100644 index 00000000..355a08c6 Binary files /dev/null and b/blockchains/neo/info/logo.png differ diff --git a/blockchains/neo/info/square_logo.png b/blockchains/neo/info/square_logo.png new file mode 100644 index 00000000..9d4fb2b8 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 00000000..fc545726 --- /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 00000000..8368ca2e 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 00000000..949535c4 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 new file mode 100644 index 00000000..a8fdca53 --- /dev/null +++ b/blockchains/nervos/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Nervos Network", + "website": "http://nervos.org", + "description": "Nervos CKB (Common Knowledge Byte) is the native token of the Nervos Common Knowledge Base, a multi-asset, store of value, proof of work public blockchain.", + "explorer": "https://explorer.nervos.org", + "symbol": "CKB", + "type": "coin", + "decimals": 8, + "status": "abandoned", + "links": [ + { + "name": "github", + "url": "https://github.com/nervosnetwork" + }, + { + "name": "x", + "url": "https://x.com/nervosnetwork" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/NervosNetwork" + }, + { + "name": "whitepaper", + "url": "https://github.com/nervosnetwork/rfcs/blob/master/rfcs/0002-ckb/0002-ckb.md" + } + ] +} \ No newline at end of file diff --git a/blockchains/nervos/info/logo.png b/blockchains/nervos/info/logo.png new file mode 100644 index 00000000..27aec9ae Binary files /dev/null and b/blockchains/nervos/info/logo.png differ diff --git a/blockchains/nervos/info/square_logo.png b/blockchains/nervos/info/square_logo.png new file mode 100644 index 00000000..793f7b4a 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 new file mode 100644 index 00000000..c2ec91b4 --- /dev/null +++ b/blockchains/neutron/info/info.json @@ -0,0 +1,24 @@ +{ + "name": "Neutron", + "type": "coin", + "symbol": "NTRN", + "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.", + "explorer": "https://www.mintscan.io/neutron", + "status": "active", + "rpc_url": "https://rpc-kralum.neutron-1.neutron.org", + "denom": "untrn", + "lcd_url": "https://rest-kralum.neutron-1.neutron.org", + "hrp": "neutron", + "links": [ + { + "name": "x", + "url": "https://x.com/Neutron_org" + }, + { + "name": "github", + "url": "https://github.com/neutron-org" + } + ] +} \ No newline at end of file diff --git a/blockchains/neutron/info/logo.png b/blockchains/neutron/info/logo.png new file mode 100644 index 00000000..b09d390d Binary files /dev/null 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 00000000..8ec5d9ac 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 new file mode 100644 index 00000000..e362c645 --- /dev/null +++ b/blockchains/neutrontestnet/info/info.json @@ -0,0 +1,24 @@ +{ + "name": "Neutron Testnet", + "type": "coin", + "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.", + "explorer": "https://testnet.mintscan.io/neutron-testnet", + "status": "active", + "rpc_url": "https://rpc.baryon.ntrn.info", + "denom": "untrn", + "lcd_url": "https://rest.baryon.ntrn.info", + "hrp": "neutron", + "links": [ + { + "name": "github", + "url": "https://github.com/neutron-org" + }, + { + "name": "x", + "url": "https://x.com/Neutron_org" + } + ] +} \ No newline at end of file diff --git a/blockchains/neutrontestnet/info/logo.png b/blockchains/neutrontestnet/info/logo.png new file mode 100644 index 00000000..a430ec15 Binary files /dev/null and b/blockchains/neutrontestnet/info/logo.png differ diff --git a/blockchains/neutrontestnet/info/square_logo.png b/blockchains/neutrontestnet/info/square_logo.png new file mode 100644 index 00000000..8ec5d9ac 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 new file mode 100644 index 00000000..bc2218e1 --- /dev/null +++ b/blockchains/nimiq/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Nimiq", + "website": "https://nimiq.com", + "description": "Nimiq is the blockchain designed for simplicity. Nimiq aims to be the best performing and easiest-to-use decentralized payment protocol & ecosystem.", + "explorer": "https://nimiq.watch", + "symbol": "NIM", + "type": "coin", + "decimals": 5, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/nimiq" + }, + { + "name": "x", + "url": "https://x.com/nimiq" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Nimiq" + }, + { + "name": "whitepaper", + "url": "https://nimiq.com/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/nimiq/info/logo.png b/blockchains/nimiq/info/logo.png new file mode 100644 index 00000000..4eea16da Binary files /dev/null and b/blockchains/nimiq/info/logo.png differ diff --git a/blockchains/nimiq/info/square_logo.png b/blockchains/nimiq/info/square_logo.png new file mode 100644 index 00000000..a513356a 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 new file mode 100644 index 00000000..19debc28 --- /dev/null +++ b/blockchains/noble/info/info.json @@ -0,0 +1,24 @@ +{ + "name": "Noble", + "type": "coin", + "symbol": "USDC", + "decimals": 6, + "website": "https://nobleassets.xyz/", + "description": "Noble is a Cosmos chain bringing native asset issuance to the IBC ecosystem.", + "explorer": "https://www.mintscan.io/noble", + "status": "active", + "rpc_url": "https://noble-rpc.polkachu.com/", + "denom": "ustake", + "lcd_url": "https://noble-api.polkachu.com/", + "hrp": "noble", + "links": [ + { + "name": "github", + "url": "https://github.com/strangelove-ventures/noble" + }, + { + "name": "x", + "url": "https://x.com/noble_xyz" + } + ] +} \ No newline at end of file diff --git a/blockchains/noble/info/logo.png b/blockchains/noble/info/logo.png new file mode 100644 index 00000000..93e4f728 Binary files /dev/null and b/blockchains/noble/info/logo.png differ diff --git a/blockchains/noble/info/square_logo.png b/blockchains/noble/info/square_logo.png new file mode 100644 index 00000000..793f7b4a Binary files /dev/null and b/blockchains/noble/info/square_logo.png differ diff --git a/blockchains/nuls/assets/NULSd6HgyZkiqLnBzTaeSQfx1TNg2cqbzq51h/info.json b/blockchains/nuls/assets/NULSd6HgyZkiqLnBzTaeSQfx1TNg2cqbzq51h/info.json new file mode 100644 index 00000000..413ac01c --- /dev/null +++ b/blockchains/nuls/assets/NULSd6HgyZkiqLnBzTaeSQfx1TNg2cqbzq51h/info.json @@ -0,0 +1,11 @@ +{ + "name": "aleph.im NRC-20", + "type": "NRC20", + "symbol": "ALEPH", + "decimals": 10, + "website": "https://aleph.im", + "description": "Aleph.im is a cross-blockchain layer-2 networkspecifically focused on decentralized applications and their related infrastructure (storage, computing servers, security).", + "explorer": "https://nulscan.io/token/info?contractAddress=NULSd6HgyZkiqLnBzTaeSQfx1TNg2cqbzq51h", + "status": "active", + "id": "NULSd6HgyZkiqLnBzTaeSQfx1TNg2cqbzq51h" +} \ No newline at end of file diff --git a/blockchains/nuls/assets/NULSd6HgyZkiqLnBzTaeSQfx1TNg2cqbzq51h/logo.png b/blockchains/nuls/assets/NULSd6HgyZkiqLnBzTaeSQfx1TNg2cqbzq51h/logo.png new file mode 100644 index 00000000..77ee50eb Binary files /dev/null and b/blockchains/nuls/assets/NULSd6HgyZkiqLnBzTaeSQfx1TNg2cqbzq51h/logo.png differ diff --git a/blockchains/nuls/info/info.json b/blockchains/nuls/info/info.json new file mode 100644 index 00000000..bf5ae9fd --- /dev/null +++ b/blockchains/nuls/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "NULS", + "website": "https://nuls.io", + "description": "NULS is a global blockchain open-source project which is a highly customizable modular blockchain infrastructure; it consists of a microkernel and functional modules.", + "explorer": "https://nulscan.io", + "research": "https://research.binance.com/en/projects/nuls", + "symbol": "NULS", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/nuls-io/nuls" + }, + { + "name": "x", + "url": "https://x.com/nuls" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/nulsservice" + }, + { + "name": "whitepaper", + "url": "https://docs.nuls.io" + } + ] +} \ No newline at end of file diff --git a/blockchains/nuls/info/logo.png b/blockchains/nuls/info/logo.png new file mode 100644 index 00000000..15deaa0c Binary files /dev/null and b/blockchains/nuls/info/logo.png differ diff --git a/blockchains/nuls/info/square_logo.png b/blockchains/nuls/info/square_logo.png new file mode 100644 index 00000000..23317f9f Binary files /dev/null and b/blockchains/nuls/info/square_logo.png differ diff --git a/blockchains/oasis/assets/0x05832a0905E516f29344ADBa1c2052a788B10129/info.json b/blockchains/oasis/assets/0x05832a0905E516f29344ADBa1c2052a788B10129/info.json new file mode 100644 index 00000000..8498d6fd --- /dev/null +++ b/blockchains/oasis/assets/0x05832a0905E516f29344ADBa1c2052a788B10129/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from Avalanche)", + "type": "OASIS", + "symbol": "USDTav", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://explorer.oasis.updev.si/token/0x05832a0905E516f29344ADBa1c2052a788B10129", + "status": "active", + "id": "0x05832a0905E516f29344ADBa1c2052a788B10129", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0x05832a0905E516f29344ADBa1c2052a788B10129/logo.png b/blockchains/oasis/assets/0x05832a0905E516f29344ADBa1c2052a788B10129/logo.png new file mode 100644 index 00000000..9e63d735 Binary files /dev/null and b/blockchains/oasis/assets/0x05832a0905E516f29344ADBa1c2052a788B10129/logo.png differ diff --git a/blockchains/oasis/assets/0x05CbE6319Dcc937BdbDf0931466F4fFd0d392B47/info.json b/blockchains/oasis/assets/0x05CbE6319Dcc937BdbDf0931466F4fFd0d392B47/info.json new file mode 100644 index 00000000..8de8c767 --- /dev/null +++ b/blockchains/oasis/assets/0x05CbE6319Dcc937BdbDf0931466F4fFd0d392B47/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Avalanche)", + "type": "OASIS", + "symbol": "USDCav", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://explorer.oasis.updev.si/token/0x05CbE6319Dcc937BdbDf0931466F4fFd0d392B47", + "status": "active", + "id": "0x05CbE6319Dcc937BdbDf0931466F4fFd0d392B47", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0x05CbE6319Dcc937BdbDf0931466F4fFd0d392B47/logo.png b/blockchains/oasis/assets/0x05CbE6319Dcc937BdbDf0931466F4fFd0d392B47/logo.png new file mode 100644 index 00000000..f448cdfe Binary files /dev/null and b/blockchains/oasis/assets/0x05CbE6319Dcc937BdbDf0931466F4fFd0d392B47/logo.png differ diff --git a/blockchains/oasis/assets/0x1d1149a53deB36F2836Ae7877c9176413aDfA4A8/info.json b/blockchains/oasis/assets/0x1d1149a53deB36F2836Ae7877c9176413aDfA4A8/info.json new file mode 100644 index 00000000..0706e891 --- /dev/null +++ b/blockchains/oasis/assets/0x1d1149a53deB36F2836Ae7877c9176413aDfA4A8/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Solana)", + "type": "OASIS", + "symbol": "USDCso", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://explorer.oasis.updev.si/token/0x1d1149a53deB36F2836Ae7877c9176413aDfA4A8", + "status": "active", + "id": "0x1d1149a53deB36F2836Ae7877c9176413aDfA4A8", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0x1d1149a53deB36F2836Ae7877c9176413aDfA4A8/logo.png b/blockchains/oasis/assets/0x1d1149a53deB36F2836Ae7877c9176413aDfA4A8/logo.png new file mode 100644 index 00000000..c9ca8307 Binary files /dev/null and b/blockchains/oasis/assets/0x1d1149a53deB36F2836Ae7877c9176413aDfA4A8/logo.png differ diff --git a/blockchains/oasis/assets/0x24285C5232ce3858F00bacb950Cae1f59d1b2704/info.json b/blockchains/oasis/assets/0x24285C5232ce3858F00bacb950Cae1f59d1b2704/info.json new file mode 100644 index 00000000..95f7a0c6 --- /dev/null +++ b/blockchains/oasis/assets/0x24285C5232ce3858F00bacb950Cae1f59d1b2704/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from Solana)", + "type": "OASIS", + "symbol": "USDTso", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://explorer.oasis.updev.si/token/0x24285C5232ce3858F00bacb950Cae1f59d1b2704", + "status": "active", + "id": "0x24285C5232ce3858F00bacb950Cae1f59d1b2704", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0x24285C5232ce3858F00bacb950Cae1f59d1b2704/logo.png b/blockchains/oasis/assets/0x24285C5232ce3858F00bacb950Cae1f59d1b2704/logo.png new file mode 100644 index 00000000..d52df831 Binary files /dev/null and b/blockchains/oasis/assets/0x24285C5232ce3858F00bacb950Cae1f59d1b2704/logo.png differ diff --git a/blockchains/oasis/assets/0x3223f17957Ba502cbe71401D55A0DB26E5F7c68F/info.json b/blockchains/oasis/assets/0x3223f17957Ba502cbe71401D55A0DB26E5F7c68F/info.json new file mode 100644 index 00000000..ee522120 --- /dev/null +++ b/blockchains/oasis/assets/0x3223f17957Ba502cbe71401D55A0DB26E5F7c68F/info.json @@ -0,0 +1,14 @@ +{ + "name": "Ether (Portal)", + "type": "OASIS", + "symbol": "ETH", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://ethereum.org/en/", + "explorer": "https://explorer.oasis.updev.si/token/0x3223f17957Ba502cbe71401D55A0DB26E5F7c68F", + "status": "active", + "id": "0x3223f17957Ba502cbe71401D55A0DB26E5F7c68F", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0x3223f17957Ba502cbe71401D55A0DB26E5F7c68F/logo.png b/blockchains/oasis/assets/0x3223f17957Ba502cbe71401D55A0DB26E5F7c68F/logo.png new file mode 100644 index 00000000..2d99a939 Binary files /dev/null and b/blockchains/oasis/assets/0x3223f17957Ba502cbe71401D55A0DB26E5F7c68F/logo.png differ diff --git a/blockchains/oasis/assets/0x32847e63E99D3a044908763056e25694490082F8/info.json b/blockchains/oasis/assets/0x32847e63E99D3a044908763056e25694490082F8/info.json new file mode 100644 index 00000000..0a3f0d1c --- /dev/null +++ b/blockchains/oasis/assets/0x32847e63E99D3a044908763056e25694490082F8/info.json @@ -0,0 +1,14 @@ +{ + "name": "AVAX (Portal)", + "type": "OASIS", + "symbol": "AVAX", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.avax.network/", + "explorer": "https://explorer.oasis.updev.si/token/0x32847e63E99D3a044908763056e25694490082F8", + "status": "active", + "id": "0x32847e63E99D3a044908763056e25694490082F8", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0x32847e63E99D3a044908763056e25694490082F8/logo.png b/blockchains/oasis/assets/0x32847e63E99D3a044908763056e25694490082F8/logo.png new file mode 100644 index 00000000..5cfbd9ab Binary files /dev/null and b/blockchains/oasis/assets/0x32847e63E99D3a044908763056e25694490082F8/logo.png differ diff --git a/blockchains/oasis/assets/0x366EF31C8dc715cbeff5fA54Ad106dC9c25C6153/info.json b/blockchains/oasis/assets/0x366EF31C8dc715cbeff5fA54Ad106dC9c25C6153/info.json new file mode 100644 index 00000000..6d20f230 --- /dev/null +++ b/blockchains/oasis/assets/0x366EF31C8dc715cbeff5fA54Ad106dC9c25C6153/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from BSC)", + "type": "OASIS", + "symbol": "USDTbs", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://explorer.oasis.updev.si/token/0x366EF31C8dc715cbeff5fA54Ad106dC9c25C6153", + "status": "active", + "id": "0x366EF31C8dc715cbeff5fA54Ad106dC9c25C6153", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0x366EF31C8dc715cbeff5fA54Ad106dC9c25C6153/logo.png b/blockchains/oasis/assets/0x366EF31C8dc715cbeff5fA54Ad106dC9c25C6153/logo.png new file mode 100644 index 00000000..49821981 Binary files /dev/null and b/blockchains/oasis/assets/0x366EF31C8dc715cbeff5fA54Ad106dC9c25C6153/logo.png differ diff --git a/blockchains/oasis/assets/0x3E62a9c3aF8b810dE79645C4579acC8f0d06a241/info.json b/blockchains/oasis/assets/0x3E62a9c3aF8b810dE79645C4579acC8f0d06a241/info.json new file mode 100644 index 00000000..7e977ae1 --- /dev/null +++ b/blockchains/oasis/assets/0x3E62a9c3aF8b810dE79645C4579acC8f0d06a241/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (PoS) (Portal from Polygon)", + "type": "OASIS", + "symbol": "USDCpo", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://explorer.oasis.updev.si/token/0x3E62a9c3aF8b810dE79645C4579acC8f0d06a241", + "status": "active", + "id": "0x3E62a9c3aF8b810dE79645C4579acC8f0d06a241", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0x3E62a9c3aF8b810dE79645C4579acC8f0d06a241/logo.png b/blockchains/oasis/assets/0x3E62a9c3aF8b810dE79645C4579acC8f0d06a241/logo.png new file mode 100644 index 00000000..4e3f74d2 Binary files /dev/null and b/blockchains/oasis/assets/0x3E62a9c3aF8b810dE79645C4579acC8f0d06a241/logo.png differ diff --git a/blockchains/oasis/assets/0x4F43717B20ae319Aa50BC5B2349B93af5f7Ac823/info.json b/blockchains/oasis/assets/0x4F43717B20ae319Aa50BC5B2349B93af5f7Ac823/info.json new file mode 100644 index 00000000..8eaa3eb5 --- /dev/null +++ b/blockchains/oasis/assets/0x4F43717B20ae319Aa50BC5B2349B93af5f7Ac823/info.json @@ -0,0 +1,14 @@ +{ + "name": "LUNA (Portal)", + "type": "OASIS", + "symbol": "LUNA", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://terra.money", + "explorer": "https://explorer.oasis.updev.si/token/0x4F43717B20ae319Aa50BC5B2349B93af5f7Ac823", + "status": "active", + "id": "0x4F43717B20ae319Aa50BC5B2349B93af5f7Ac823", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0x4F43717B20ae319Aa50BC5B2349B93af5f7Ac823/logo.png b/blockchains/oasis/assets/0x4F43717B20ae319Aa50BC5B2349B93af5f7Ac823/logo.png new file mode 100644 index 00000000..2a885151 Binary files /dev/null and b/blockchains/oasis/assets/0x4F43717B20ae319Aa50BC5B2349B93af5f7Ac823/logo.png differ diff --git a/blockchains/oasis/assets/0x4cA2A3De42eabC8fd8b0AC46127E64DB08b9150e/info.json b/blockchains/oasis/assets/0x4cA2A3De42eabC8fd8b0AC46127E64DB08b9150e/info.json new file mode 100644 index 00000000..9e0e3daa --- /dev/null +++ b/blockchains/oasis/assets/0x4cA2A3De42eabC8fd8b0AC46127E64DB08b9150e/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from BSC)", + "type": "OASIS", + "symbol": "USDCbs", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://explorer.oasis.updev.si/token/0x4cA2A3De42eabC8fd8b0AC46127E64DB08b9150e", + "status": "active", + "id": "0x4cA2A3De42eabC8fd8b0AC46127E64DB08b9150e", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0x4cA2A3De42eabC8fd8b0AC46127E64DB08b9150e/logo.png b/blockchains/oasis/assets/0x4cA2A3De42eabC8fd8b0AC46127E64DB08b9150e/logo.png new file mode 100644 index 00000000..8ec55937 Binary files /dev/null and b/blockchains/oasis/assets/0x4cA2A3De42eabC8fd8b0AC46127E64DB08b9150e/logo.png differ diff --git a/blockchains/oasis/assets/0xE8A638b3B7565Ee7c5eb9755E58552aFc87b94DD/info.json b/blockchains/oasis/assets/0xE8A638b3B7565Ee7c5eb9755E58552aFc87b94DD/info.json new file mode 100644 index 00000000..c5240441 --- /dev/null +++ b/blockchains/oasis/assets/0xE8A638b3B7565Ee7c5eb9755E58552aFc87b94DD/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Ethereum)", + "type": "OASIS", + "symbol": "USDCet", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://explorer.oasis.updev.si/token/0xE8A638b3B7565Ee7c5eb9755E58552aFc87b94DD", + "status": "active", + "id": "0xE8A638b3B7565Ee7c5eb9755E58552aFc87b94DD", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0xE8A638b3B7565Ee7c5eb9755E58552aFc87b94DD/logo.png b/blockchains/oasis/assets/0xE8A638b3B7565Ee7c5eb9755E58552aFc87b94DD/logo.png new file mode 100644 index 00000000..ed00e43f Binary files /dev/null and b/blockchains/oasis/assets/0xE8A638b3B7565Ee7c5eb9755E58552aFc87b94DD/logo.png differ diff --git a/blockchains/oasis/assets/0xFffD69E757d8220CEA60dc80B9Fe1a30b58c94F3/info.json b/blockchains/oasis/assets/0xFffD69E757d8220CEA60dc80B9Fe1a30b58c94F3/info.json new file mode 100644 index 00000000..854d6d12 --- /dev/null +++ b/blockchains/oasis/assets/0xFffD69E757d8220CEA60dc80B9Fe1a30b58c94F3/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (PoS) (Portal from Polygon)", + "type": "OASIS", + "symbol": "USDTpo", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://explorer.oasis.updev.si/token/0xFffD69E757d8220CEA60dc80B9Fe1a30b58c94F3", + "status": "active", + "id": "0xFffD69E757d8220CEA60dc80B9Fe1a30b58c94F3", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0xFffD69E757d8220CEA60dc80B9Fe1a30b58c94F3/logo.png b/blockchains/oasis/assets/0xFffD69E757d8220CEA60dc80B9Fe1a30b58c94F3/logo.png new file mode 100644 index 00000000..3555ddd3 Binary files /dev/null and b/blockchains/oasis/assets/0xFffD69E757d8220CEA60dc80B9Fe1a30b58c94F3/logo.png differ diff --git a/blockchains/oasis/assets/0xa1E73c01E0cF7930F5e91CB291031739FE5Ad6C2/info.json b/blockchains/oasis/assets/0xa1E73c01E0cF7930F5e91CB291031739FE5Ad6C2/info.json new file mode 100644 index 00000000..f1043133 --- /dev/null +++ b/blockchains/oasis/assets/0xa1E73c01E0cF7930F5e91CB291031739FE5Ad6C2/info.json @@ -0,0 +1,14 @@ +{ + "name": "UST (Portal)", + "type": "OASIS", + "symbol": "UST", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://terra.money", + "explorer": "https://explorer.oasis.updev.si/token/0xa1E73c01E0cF7930F5e91CB291031739FE5Ad6C2", + "status": "active", + "id": "0xa1E73c01E0cF7930F5e91CB291031739FE5Ad6C2", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0xa1E73c01E0cF7930F5e91CB291031739FE5Ad6C2/logo.png b/blockchains/oasis/assets/0xa1E73c01E0cF7930F5e91CB291031739FE5Ad6C2/logo.png new file mode 100644 index 00000000..e3110cce Binary files /dev/null and b/blockchains/oasis/assets/0xa1E73c01E0cF7930F5e91CB291031739FE5Ad6C2/logo.png differ diff --git a/blockchains/oasis/assets/0xd17dDAC91670274F7ba1590a06EcA0f2FD2b12bc/info.json b/blockchains/oasis/assets/0xd17dDAC91670274F7ba1590a06EcA0f2FD2b12bc/info.json new file mode 100644 index 00000000..c0998f14 --- /dev/null +++ b/blockchains/oasis/assets/0xd17dDAC91670274F7ba1590a06EcA0f2FD2b12bc/info.json @@ -0,0 +1,14 @@ +{ + "name": "SOL (Portal)", + "type": "OASIS", + "symbol": "SOL", + "decimals": 9, + "description": "Cross Chain Portal Bridged Token", + "website": "https://solana.com/", + "explorer": "https://explorer.oasis.updev.si/token/0xd17dDAC91670274F7ba1590a06EcA0f2FD2b12bc", + "status": "active", + "id": "0xd17dDAC91670274F7ba1590a06EcA0f2FD2b12bc", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0xd17dDAC91670274F7ba1590a06EcA0f2FD2b12bc/logo.png b/blockchains/oasis/assets/0xd17dDAC91670274F7ba1590a06EcA0f2FD2b12bc/logo.png new file mode 100644 index 00000000..7a2e75fd Binary files /dev/null and b/blockchains/oasis/assets/0xd17dDAC91670274F7ba1590a06EcA0f2FD2b12bc/logo.png differ diff --git a/blockchains/oasis/assets/0xd43ce0aa2a29DCb75bDb83085703dc589DE6C7eb/info.json b/blockchains/oasis/assets/0xd43ce0aa2a29DCb75bDb83085703dc589DE6C7eb/info.json new file mode 100644 index 00000000..ad792c3e --- /dev/null +++ b/blockchains/oasis/assets/0xd43ce0aa2a29DCb75bDb83085703dc589DE6C7eb/info.json @@ -0,0 +1,14 @@ +{ + "name": "Wrapped BTC (Portal)", + "type": "OASIS", + "symbol": "WBTC", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.wbtc.network/", + "explorer": "https://explorer.oasis.updev.si/token/0xd43ce0aa2a29DCb75bDb83085703dc589DE6C7eb", + "status": "active", + "id": "0xd43ce0aa2a29DCb75bDb83085703dc589DE6C7eb", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0xd43ce0aa2a29DCb75bDb83085703dc589DE6C7eb/logo.png b/blockchains/oasis/assets/0xd43ce0aa2a29DCb75bDb83085703dc589DE6C7eb/logo.png new file mode 100644 index 00000000..d603db0e Binary files /dev/null and b/blockchains/oasis/assets/0xd43ce0aa2a29DCb75bDb83085703dc589DE6C7eb/logo.png differ diff --git a/blockchains/oasis/assets/0xd79Ef9A91b56c690C7b80570a3c060678667f469/info.json b/blockchains/oasis/assets/0xd79Ef9A91b56c690C7b80570a3c060678667f469/info.json new file mode 100644 index 00000000..0eee9954 --- /dev/null +++ b/blockchains/oasis/assets/0xd79Ef9A91b56c690C7b80570a3c060678667f469/info.json @@ -0,0 +1,14 @@ +{ + "name": "Binance Coin (Portal)", + "type": "OASIS", + "symbol": "BNB", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.binance.com/", + "explorer": "https://explorer.oasis.updev.si/token/0xd79Ef9A91b56c690C7b80570a3c060678667f469", + "status": "active", + "id": "0xd79Ef9A91b56c690C7b80570a3c060678667f469", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0xd79Ef9A91b56c690C7b80570a3c060678667f469/logo.png b/blockchains/oasis/assets/0xd79Ef9A91b56c690C7b80570a3c060678667f469/logo.png new file mode 100644 index 00000000..24a702d4 Binary files /dev/null and b/blockchains/oasis/assets/0xd79Ef9A91b56c690C7b80570a3c060678667f469/logo.png differ diff --git a/blockchains/oasis/assets/0xdC19A122e268128B5eE20366299fc7b5b199C8e3/info.json b/blockchains/oasis/assets/0xdC19A122e268128B5eE20366299fc7b5b199C8e3/info.json new file mode 100644 index 00000000..377c0f14 --- /dev/null +++ b/blockchains/oasis/assets/0xdC19A122e268128B5eE20366299fc7b5b199C8e3/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from Ethereum)", + "type": "OASIS", + "symbol": "USDTet", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://explorer.oasis.updev.si/token/0xdC19A122e268128B5eE20366299fc7b5b199C8e3", + "status": "active", + "id": "0xdC19A122e268128B5eE20366299fc7b5b199C8e3", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0xdC19A122e268128B5eE20366299fc7b5b199C8e3/logo.png b/blockchains/oasis/assets/0xdC19A122e268128B5eE20366299fc7b5b199C8e3/logo.png new file mode 100644 index 00000000..46b9968e Binary files /dev/null and b/blockchains/oasis/assets/0xdC19A122e268128B5eE20366299fc7b5b199C8e3/logo.png differ diff --git a/blockchains/oasis/assets/0xf6568FD76f9fcD1f60f73b730F142853c5eF627E/info.json b/blockchains/oasis/assets/0xf6568FD76f9fcD1f60f73b730F142853c5eF627E/info.json new file mode 100644 index 00000000..04858ee3 --- /dev/null +++ b/blockchains/oasis/assets/0xf6568FD76f9fcD1f60f73b730F142853c5eF627E/info.json @@ -0,0 +1,14 @@ +{ + "name": "Binance USD (Portal from BSC)", + "type": "OASIS", + "symbol": "BUSDbs", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.paxos.com/busd/", + "explorer": "https://explorer.oasis.updev.si/token/0xf6568FD76f9fcD1f60f73b730F142853c5eF627E", + "status": "active", + "id": "0xf6568FD76f9fcD1f60f73b730F142853c5eF627E", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/oasis/assets/0xf6568FD76f9fcD1f60f73b730F142853c5eF627E/logo.png b/blockchains/oasis/assets/0xf6568FD76f9fcD1f60f73b730F142853c5eF627E/logo.png new file mode 100644 index 00000000..58b66f7e Binary files /dev/null and b/blockchains/oasis/assets/0xf6568FD76f9fcD1f60f73b730F142853c5eF627E/logo.png differ diff --git a/blockchains/oasis/info/info.json b/blockchains/oasis/info/info.json new file mode 100644 index 00000000..1d4655db --- /dev/null +++ b/blockchains/oasis/info/info.json @@ -0,0 +1,35 @@ +{ + "name": "Oasis Network", + "website": "https://oasisprotocol.org/", + "description": "The Oasis Network is a privacy-enabled scalable blockchain network built for open finance and a responsible data economy.", + "explorer": "https://www.oasisscan.com/", + "research": "https://research.binance.com/en/projects/oasis-network", + "symbol": "ROSE", + "type": "coin", + "rpc_url": "https://emerald.oasis.dev", + "coin_type": 474, + "decimals": 8, + "status": "abandoned", + "links": [ + { + "name": "github", + "url": "https://github.com/oasisprotocol/" + }, + { + "name": "x", + "url": "https://x.com/oasisprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/oasisprotocolcommunity" + }, + { + "name": "medium", + "url": "https://medium.com/oasis-protocol-project" + }, + { + "name": "whitepaper", + "url": "https://oasisprotocol.org/papers" + } + ] +} \ No newline at end of file diff --git a/blockchains/oasis/info/logo.png b/blockchains/oasis/info/logo.png new file mode 100644 index 00000000..e7515fbf Binary files /dev/null and b/blockchains/oasis/info/logo.png differ diff --git a/blockchains/oasis/info/square_logo.png b/blockchains/oasis/info/square_logo.png new file mode 100644 index 00000000..71a480ee Binary files /dev/null and b/blockchains/oasis/info/square_logo.png differ diff --git a/blockchains/okc/assets/0x382bB369d343125BfB2117af9c149795C6C65C50/info.json b/blockchains/okc/assets/0x382bB369d343125BfB2117af9c149795C6C65C50/info.json new file mode 100644 index 00000000..ed71e236 --- /dev/null +++ b/blockchains/okc/assets/0x382bB369d343125BfB2117af9c149795C6C65C50/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tether USD", + "symbol": "USDT", + "type": "KIP20", + "decimals": 18, + "explorer": "https://www.oklink.com/en/okc/address/0x382bB369d343125BfB2117af9c149795C6C65C50", + "status": "active", + "id": "0x382bB369d343125BfB2117af9c149795C6C65C50", + "website": "https://tether.to/en/", + "description": "Tether (USDT) is a cryptocurrency mirroring the value of the U.S. dollar." +} \ No newline at end of file diff --git a/blockchains/okc/assets/0x382bB369d343125BfB2117af9c149795C6C65C50/logo.png b/blockchains/okc/assets/0x382bB369d343125BfB2117af9c149795C6C65C50/logo.png new file mode 100644 index 00000000..59d44aee Binary files /dev/null and b/blockchains/okc/assets/0x382bB369d343125BfB2117af9c149795C6C65C50/logo.png differ diff --git a/blockchains/okc/assets/0x8F8526dbfd6E38E3D8307702cA8469Bae6C56C15/info.json b/blockchains/okc/assets/0x8F8526dbfd6E38E3D8307702cA8469Bae6C56C15/info.json new file mode 100644 index 00000000..885993e7 --- /dev/null +++ b/blockchains/okc/assets/0x8F8526dbfd6E38E3D8307702cA8469Bae6C56C15/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped OKT", + "explorer": "https://www.oklink.com/en/okc/address/0x8F8526dbfd6E38E3D8307702cA8469Bae6C56C15", + "symbol": "WOKT", + "type": "KIP20", + "decimals": 18, + "status": "active", + "id": "0x8F8526dbfd6E38E3D8307702cA8469Bae6C56C15", + "description": "WOKT is wrapped OKT.", + "website": "https://www.okx.com/okc" +} diff --git a/blockchains/okc/assets/0x8F8526dbfd6E38E3D8307702cA8469Bae6C56C15/logo.png b/blockchains/okc/assets/0x8F8526dbfd6E38E3D8307702cA8469Bae6C56C15/logo.png new file mode 100644 index 00000000..418152bd Binary files /dev/null and b/blockchains/okc/assets/0x8F8526dbfd6E38E3D8307702cA8469Bae6C56C15/logo.png differ diff --git a/blockchains/okc/assets/0xc946DAf81b08146B1C7A8Da2A851Ddf2B3EAaf85/info.json b/blockchains/okc/assets/0xc946DAf81b08146B1C7A8Da2A851Ddf2B3EAaf85/info.json new file mode 100644 index 00000000..ddab02d9 --- /dev/null +++ b/blockchains/okc/assets/0xc946DAf81b08146B1C7A8Da2A851Ddf2B3EAaf85/info.json @@ -0,0 +1,11 @@ +{ + "name": "USD Coin", + "symbol": "USDC", + "type": "KIP20", + "decimals": 18, + "explorer": "https://www.oklink.com/en/okc/address/0xc946DAf81b08146B1C7A8Da2A851Ddf2B3EAaf85", + "status": "active", + "id": "0xc946DAf81b08146B1C7A8Da2A851Ddf2B3EAaf85", + "website": "https://www.okx.com/okc", + "description": "USDC is a token issued by OKX Chain, where the price is pegged to USDC at a rate of 1 USDC (KIP20) = 1 USDC." +} \ No newline at end of file diff --git a/blockchains/okc/assets/0xc946DAf81b08146B1C7A8Da2A851Ddf2B3EAaf85/logo.png b/blockchains/okc/assets/0xc946DAf81b08146B1C7A8Da2A851Ddf2B3EAaf85/logo.png new file mode 100644 index 00000000..b6f150d8 Binary files /dev/null and b/blockchains/okc/assets/0xc946DAf81b08146B1C7A8Da2A851Ddf2B3EAaf85/logo.png differ diff --git a/blockchains/okc/assets/0xdF54B6c6195EA4d948D03bfD818D365cf175cFC2/info.json b/blockchains/okc/assets/0xdF54B6c6195EA4d948D03bfD818D365cf175cFC2/info.json new file mode 100644 index 00000000..da3ef4dd --- /dev/null +++ b/blockchains/okc/assets/0xdF54B6c6195EA4d948D03bfD818D365cf175cFC2/info.json @@ -0,0 +1,11 @@ +{ + "name": "OKB Token", + "symbol": "OKB", + "type": "KIP20", + "decimals": 18, + "explorer": "https://www.oklink.com/en/okc/address/0xdF54B6c6195EA4d948D03bfD818D365cf175cFC2", + "status": "active", + "id": "0xdF54B6c6195EA4d948D03bfD818D365cf175cFC2", + "website": "https://www.okx.com/okb", + "description": "Utility token for OKX Ecosystem." +} \ No newline at end of file diff --git a/blockchains/okc/assets/0xdF54B6c6195EA4d948D03bfD818D365cf175cFC2/logo.png b/blockchains/okc/assets/0xdF54B6c6195EA4d948D03bfD818D365cf175cFC2/logo.png new file mode 100644 index 00000000..525a1dae Binary files /dev/null and b/blockchains/okc/assets/0xdF54B6c6195EA4d948D03bfD818D365cf175cFC2/logo.png differ diff --git a/blockchains/okc/info/info.json b/blockchains/okc/info/info.json new file mode 100644 index 00000000..826fa04a --- /dev/null +++ b/blockchains/okc/info/info.json @@ -0,0 +1,25 @@ +{ + "name": "OKX Chain", + "type": "coin", + "symbol": "OKT", + "decimals": 18, + "website": "https://www.okx.com/okc", + "research": "https://okc-docs.readthedocs.io/en/latest", + "description": "OKC is a secure & programmable smart contracts platform for next-generation decentralized applications, backed by OKX, one of the largest crypto exchanges.", + "explorer": "https://www.oklink.com/en/okc/", + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/okex/exchain" + }, + { + "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/logo.png b/blockchains/okc/info/logo.png new file mode 100644 index 00000000..525a1dae Binary files /dev/null and b/blockchains/okc/info/logo.png differ diff --git a/blockchains/okc/info/square_logo.png b/blockchains/okc/info/square_logo.png new file mode 100644 index 00000000..18b78600 Binary files /dev/null and b/blockchains/okc/info/square_logo.png differ diff --git a/blockchains/okc/tokenlist.json b/blockchains/okc/tokenlist.json new file mode 100644 index 00000000..bc071657 --- /dev/null +++ b/blockchains/okc/tokenlist.json @@ -0,0 +1,43 @@ + { + "name": "Trust Wallet: OKC List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-07-27T00:00:00.000Z", + "tokens": [ + { + "asset": "c996_t0x8F8526dbfd6E38E3D8307702cA8469Bae6C56C15", + "type": "KIP20", + "address":"0x8F8526dbfd6E38E3D8307702cA8469Bae6C56C15", + "name": "Wrapped OKT", + "symbol": "WOKT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/okc/assets/0x8F8526dbfd6E38E3D8307702cA8469Bae6C56C15/logo.png" + }, + { + "asset": "c996_t0xdF54B6c6195EA4d948D03bfD818D365cf175cFC2", + "type": "KIP20", + "address": "0xdF54B6c6195EA4d948D03bfD818D365cf175cFC2", + "name": "OKB Token", + "symbol": "OKB", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/okc/assets/0xdF54B6c6195EA4d948D03bfD818D365cf175cFC2/logo.png" + }, + { + "asset": "c996_t0x382bB369d343125BfB2117af9c149795C6C65C50", + "type": "KIP20", + "address": "0x382bB369d343125BfB2117af9c149795C6C65C50", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/okc/assets/0x382bB369d343125BfB2117af9c149795C6C65C50/logo.png" + }, + { + "asset": "c996_t0xc946DAf81b08146B1C7A8Da2A851Ddf2B3EAaf85", + "type": "KIP20", + "address": "0xc946DAf81b08146B1C7A8Da2A851Ddf2B3EAaf85", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/okc/assets/0xc946DAf81b08146B1C7A8Da2A851Ddf2B3EAaf85/logo.png" + } + ] + } \ No newline at end of file diff --git a/blockchains/okx/info/info.json b/blockchains/okx/info/info.json new file mode 100644 index 00000000..07c759e4 --- /dev/null +++ b/blockchains/okx/info/info.json @@ -0,0 +1,12 @@ +{ + "name": "OKXChain Mainnet", + "website": "https://www.okx.com/", + "description": "OKB is a global utility token issued by OK Blockchain foundation.", + "explorer": "https://www.oklink.com/oktc", + "symbol": "OKT", + "rpc_url": "https://exchainrpc.okex.org", + "type": "coin", + "decimals": 18, + "status": "active", + "coin_type": 996 +} diff --git a/blockchains/okx/info/logo.png b/blockchains/okx/info/logo.png new file mode 100644 index 00000000..853e12d9 Binary files /dev/null and b/blockchains/okx/info/logo.png differ diff --git a/blockchains/okx/info/square_logo.png b/blockchains/okx/info/square_logo.png new file mode 100644 index 00000000..94004fd7 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 new file mode 100644 index 00000000..62b3795c --- /dev/null +++ b/blockchains/okxchain/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "OKC Token", + "type": "coin", + "coin_type": 996, + "symbol": "OKT", + "decimals": 18, + "website": "https://www.okx.com/okc", + "description": "OKC is a secure & programmable smart contracts platform for the next-gen Web3 applications.", + "explorer": "https://www.oklink.com/en/", + "rpc_url": "https://exchainrpc.okex.org", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/OKCNetwork" + }, + { + "name": "telegram", + "url": "https://t.me/OKCNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/okt/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/okxchain/info/logo.png b/blockchains/okxchain/info/logo.png new file mode 100644 index 00000000..636b2111 Binary files /dev/null and b/blockchains/okxchain/info/logo.png differ diff --git a/blockchains/okxchain/info/square_logo.png b/blockchains/okxchain/info/square_logo.png new file mode 100644 index 00000000..18b78600 Binary files /dev/null and b/blockchains/okxchain/info/square_logo.png differ diff --git a/blockchains/ontology/assets/ong/info.json b/blockchains/ontology/assets/ong/info.json new file mode 100644 index 00000000..a3a40b21 --- /dev/null +++ b/blockchains/ontology/assets/ong/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ontology Gas", + "symbol": "ONG", + "type": "ONTOLOGY", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://explorer.ont.io", + "status": "active", + "id": "ong" +} \ No newline at end of file diff --git a/blockchains/ontology/assets/ong/logo.png b/blockchains/ontology/assets/ong/logo.png new file mode 100644 index 00000000..9b62ccb1 Binary files /dev/null and b/blockchains/ontology/assets/ong/logo.png differ diff --git a/blockchains/ontology/info/info.json b/blockchains/ontology/info/info.json new file mode 100644 index 00000000..0be0a3ec --- /dev/null +++ b/blockchains/ontology/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ontology", + "website": "https://ont.io", + "description": "Ontology is a new high-performance public blockchain project & a distributed trust collaboration platform that include a series of complete distributed ledgers and smart contract systems.", + "explorer": "https://explorer.ont.io", + "research": "https://research.binance.com/en/projects/ontology", + "symbol": "ONT", + "type": "coin", + "decimals": 0, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/ontio" + }, + { + "name": "x", + "url": "https://x.com/OntologyNetwork" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/OntologyNetwork" + }, + { + "name": "whitepaper", + "url": "https://ont.io/wp/Ontology-Introductory-White-Paper-EN.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ontology/info/logo.png b/blockchains/ontology/info/logo.png new file mode 100644 index 00000000..25ffd17b Binary files /dev/null and b/blockchains/ontology/info/logo.png differ diff --git a/blockchains/ontology/info/square_logo.png b/blockchains/ontology/info/square_logo.png new file mode 100644 index 00000000..276ae0c5 Binary files /dev/null and b/blockchains/ontology/info/square_logo.png differ diff --git a/blockchains/ontology/validators/list.json b/blockchains/ontology/validators/list.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/blockchains/ontology/validators/list.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json b/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json new file mode 100644 index 00000000..60c33107 --- /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 00000000..1a880b8a 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 00000000..0a98f67c --- /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 00000000..a70aad96 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 00000000..908b4323 --- /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 00000000..3d004e49 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 00000000..43e4c4da --- /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 00000000..418a0d02 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 00000000..4f5c3a65 --- /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 00000000..840d4766 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 00000000..74c6adce 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 00000000..b49ffae4 --- /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 00000000..759db2e9 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 00000000..6fb535ad --- /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 00000000..a0fd0bd2 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 00000000..10335214 --- /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 00000000..dbf1b942 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 00000000..35973710 --- /dev/null +++ b/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/info.json @@ -0,0 +1,28 @@ +{ + "name": "USD Coin", + "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 00000000..b6f150d8 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 00000000..28ba8478 --- /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 00000000..b26b7b80 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 00000000..66b75882 --- /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 00000000..41b99fe6 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 00000000..3e374cef --- /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 00000000..89a553cd 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 00000000..73a7337c --- /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 00000000..37cfe739 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 00000000..a50045bb --- /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 00000000..afa7fedd 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 00000000..39d9da18 --- /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 00000000..5df04ac0 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 00000000..af904127 --- /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 00000000..fd73d285 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 new file mode 100644 index 00000000..26f599de --- /dev/null +++ b/blockchains/optimism/assets/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6/info.json @@ -0,0 +1,25 @@ +{ + "name": "ChainLink", + "symbol": "LINK", + "type": "OPTIMISM", + "decimals": 18, + "description": "A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.", + "website": "https://chain.link/", + "explorer": "https://optimistic.etherscan.io/token/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6", + "status": "active", + "id": "0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6", + "links": [ + { + "name": "x", + "url": "https://x.com/chainlink" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/chainlink/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chainlink/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6/logo.png b/blockchains/optimism/assets/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6/logo.png new file mode 100644 index 00000000..ab55f5e2 Binary files /dev/null and b/blockchains/optimism/assets/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6/logo.png differ diff --git a/blockchains/optimism/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/optimism/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 00000000..e7867e97 --- /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 00000000..c34f31c6 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 00000000..f9798a28 --- /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 00000000..52c36ce3 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 00000000..839c4cc6 --- /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 00000000..46bc03e1 Binary files /dev/null and b/blockchains/optimism/assets/0x3Ed9AcAac7Bd974eB83a8eA6432a239e3C829D5D/logo.png differ diff --git a/blockchains/optimism/assets/0x4200000000000000000000000000000000000006/info.json b/blockchains/optimism/assets/0x4200000000000000000000000000000000000006/info.json new file mode 100644 index 00000000..3b16f337 --- /dev/null +++ b/blockchains/optimism/assets/0x4200000000000000000000000000000000000006/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped Ether", + "symbol": "WETH", + "type": "OPTIMISM", + "decimals": 18, + "description": "wETH is wrapped ETH", + "website": "https://weth.io/", + "explorer": "https://optimistic.etherscan.io/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/optimism/assets/0x4200000000000000000000000000000000000006/logo.png b/blockchains/optimism/assets/0x4200000000000000000000000000000000000006/logo.png new file mode 100644 index 00000000..f9328d95 Binary files /dev/null and b/blockchains/optimism/assets/0x4200000000000000000000000000000000000006/logo.png differ diff --git a/blockchains/optimism/assets/0x4200000000000000000000000000000000000042/info.json b/blockchains/optimism/assets/0x4200000000000000000000000000000000000042/info.json new file mode 100644 index 00000000..cc08d7a9 --- /dev/null +++ b/blockchains/optimism/assets/0x4200000000000000000000000000000000000042/info.json @@ -0,0 +1,28 @@ +{ + "name": "Optimism", + "symbol": "OP", + "type": "OPTIMISM", + "decimals": 18, + "description": "Optimism is a Layer 2 scaling solution for Ethereum.", + "website": "https://app.optimism.io/governance", + "explorer": "https://optimistic.etherscan.io/token/0x4200000000000000000000000000000000000042", + "status": "active", + "id": "0x4200000000000000000000000000000000000042", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/optimism-ethereum/" + }, + { + "name": "x", + "url": "https://x.com/optimismPBC" + }, + { + "name": "github", + "url": "https://github.com/ethereum-optimism/" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x4200000000000000000000000000000000000042/logo.png b/blockchains/optimism/assets/0x4200000000000000000000000000000000000042/logo.png new file mode 100644 index 00000000..0632ece2 Binary files /dev/null and b/blockchains/optimism/assets/0x4200000000000000000000000000000000000042/logo.png differ diff --git a/blockchains/optimism/assets/0x422812fC000E831b5ff13C181d85F34dd71380b3/info.json b/blockchains/optimism/assets/0x422812fC000E831b5ff13C181d85F34dd71380b3/info.json new file mode 100644 index 00000000..695d7d22 --- /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 00000000..8d017f49 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 00000000..d6bb0b79 --- /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 00000000..6b7d4f51 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 new file mode 100644 index 00000000..d4fd73a2 --- /dev/null +++ b/blockchains/optimism/assets/0x5029C236320b8f15eF0a657054B84d90bfBEDED3/info.json @@ -0,0 +1,28 @@ +{ + "name": "BitANT", + "symbol": "BitANT", + "type": "OPTIMISM", + "decimals": 18, + "description": "BitANT is a governance token of BitBTC Protocol.10 billion BitANT have been minted at genesis, the team does not own any tokens: 80% liquidity is locked in DEX for 8 years; 15%,community airdrops; 5%,community mining. The exchange fee of the platform is mainly used to repurchase and burn BitANT.", + "website": "https://bitbtc.money/", + "explorer": "https://optimistic.etherscan.io/token/0x5029C236320b8f15eF0a657054B84d90bfBEDED3", + "status": "active", + "id": "0x5029C236320b8f15eF0a657054B84d90bfBEDED3", + "links": [ + { + "name": "x", + "url": "https://x.com/SatoshiNJunior" + }, + { + "name": "medium", + "url": "https://ibitlabs.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitant/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x5029C236320b8f15eF0a657054B84d90bfBEDED3/logo.png b/blockchains/optimism/assets/0x5029C236320b8f15eF0a657054B84d90bfBEDED3/logo.png new file mode 100644 index 00000000..63e53224 Binary files /dev/null and b/blockchains/optimism/assets/0x5029C236320b8f15eF0a657054B84d90bfBEDED3/logo.png differ diff --git a/blockchains/optimism/assets/0x50Bce64397C75488465253c0A034b8097FeA6578/info.json b/blockchains/optimism/assets/0x50Bce64397C75488465253c0A034b8097FeA6578/info.json new file mode 100644 index 00000000..a3a347c0 --- /dev/null +++ b/blockchains/optimism/assets/0x50Bce64397C75488465253c0A034b8097FeA6578/info.json @@ -0,0 +1,33 @@ +{ + "name": "HanChain", + "type": "OPTIMISM", + "symbol": "HAN", + "decimals": 18, + "website": "https://paykhan.io/", + "description": "Dual cryptocurrency platform with DeFi structure focusing on real-life use.", + "explorer": "https://optimistic.etherscan.io/token/0x50Bce64397C75488465253c0A034b8097FeA6578", + "status": "active", + "id": "0x50Bce64397C75488465253c0A034b8097FeA6578", + "links": [ + { + "name": "x", + "url": "https://x.com/HanIdentity" + }, + { + "name": "telegram", + "url": "https://t.me/hanchain_official" + }, + { + "name": "github", + "url": "https://github.com/hanchain-paykhan/hanchain/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hanchain/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hanchain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x50Bce64397C75488465253c0A034b8097FeA6578/logo.png b/blockchains/optimism/assets/0x50Bce64397C75488465253c0A034b8097FeA6578/logo.png new file mode 100644 index 00000000..49d0f41e Binary files /dev/null and b/blockchains/optimism/assets/0x50Bce64397C75488465253c0A034b8097FeA6578/logo.png differ diff --git a/blockchains/optimism/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json b/blockchains/optimism/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json new file mode 100644 index 00000000..a0f0eaf2 --- /dev/null +++ b/blockchains/optimism/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lyra Finance", + "symbol": "LYRA", + "type": "OPTIMISM", + "decimals": 18, + "description": "Lyra is an options trading protocol accessing the scalability of Layer 2 Ethereum to provide a robust, lightning-fast and reliable trading experience.", + "website": "https://www.lyra.finance", + "explorer": "https://optimistic.etherscan.io/token/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", + "status": "active", + "id": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", + "links": [ + { + "name": "x", + "url": "https://x.com/lyrafinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/lyra-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png b/blockchains/optimism/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png new file mode 100644 index 00000000..df7a9635 Binary files /dev/null and b/blockchains/optimism/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png differ diff --git a/blockchains/optimism/assets/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655/info.json b/blockchains/optimism/assets/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655/info.json new file mode 100644 index 00000000..bb0441e6 --- /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 00000000..577673c4 Binary files /dev/null and b/blockchains/optimism/assets/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655/logo.png differ diff --git a/blockchains/optimism/assets/0x61BAADcF22d2565B0F471b291C475db5555e0b76/info.json b/blockchains/optimism/assets/0x61BAADcF22d2565B0F471b291C475db5555e0b76/info.json new file mode 100644 index 00000000..1f64faf1 --- /dev/null +++ b/blockchains/optimism/assets/0x61BAADcF22d2565B0F471b291C475db5555e0b76/info.json @@ -0,0 +1,21 @@ +{ + "name": "Aelin Token", + "symbol": "AELIN", + "type": "OPTIMISM", + "decimals": 18, + "description": "Aelin is a fundraising protocol built on Ethereum and launched on Optimism", + "website": "https://aelin.xyz", + "explorer": "https://optimistic.etherscan.io/token/0x61BAADcF22d2565B0F471b291C475db5555e0b76", + "status": "active", + "id": "0x61BAADcF22d2565B0F471b291C475db5555e0b76", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aelin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/aelin" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x61BAADcF22d2565B0F471b291C475db5555e0b76/logo.png b/blockchains/optimism/assets/0x61BAADcF22d2565B0F471b291C475db5555e0b76/logo.png new file mode 100644 index 00000000..b35f66a3 Binary files /dev/null and b/blockchains/optimism/assets/0x61BAADcF22d2565B0F471b291C475db5555e0b76/logo.png differ diff --git a/blockchains/optimism/assets/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1/info.json b/blockchains/optimism/assets/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1/info.json new file mode 100644 index 00000000..3ffcec6b --- /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 00000000..ee393a33 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 00000000..f4b4c4a1 --- /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 00000000..203a846c 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 00000000..b3e3ce8b --- /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 00000000..d990417d 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 00000000..615d30c9 --- /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 00000000..ba8cca27 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 new file mode 100644 index 00000000..cd4da597 --- /dev/null +++ b/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/info.json @@ -0,0 +1,28 @@ +{ + "name": "USD Coin (Bridged from Ethereum)", + "type": "OPTIMISM", + "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.", + "explorer": "https://optimistic.etherscan.io/token/0x7f5c764cbc14f9669b88837ca1490cca17c31607", + "status": "active", + "id": "0x7F5c764cBc14f9669B88837ca1490cCa17c31607", + "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/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/logo.png b/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/logo.png new file mode 100644 index 00000000..b6f150d8 Binary files /dev/null and b/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/logo.png differ diff --git a/blockchains/optimism/assets/0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4/info.json b/blockchains/optimism/assets/0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4/info.json new file mode 100644 index 00000000..0c4a481a --- /dev/null +++ b/blockchains/optimism/assets/0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4/info.json @@ -0,0 +1,38 @@ +{ + "name": "Synthetix Network", + "symbol": "SNX", + "type": "OPTIMISM", + "decimals": 18, + "description": "Synthetix is a derivatives liquidity protocol on Ethereum that enables the issuance and trading of synthetic assets.", + "website": "https://synthetix.io", + "explorer": "https://optimistic.etherscan.io/token/0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4", + "research": "https://research.binance.com/en/projects/synthetix", + "status": "active", + "id": "0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4", + "links": [ + { + "name": "github", + "url": "https://github.com/havven/havven" + }, + { + "name": "x", + "url": "https://x.com/synthetix_io" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/synthetix_io/" + }, + { + "name": "blog", + "url": "https://blog.synthetix.io/" + }, + { + "name": "whitepaper", + "url": "https://synthetix.io/uploads/havven_whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/havven/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4/logo.png b/blockchains/optimism/assets/0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4/logo.png new file mode 100644 index 00000000..2a850de0 Binary files /dev/null and b/blockchains/optimism/assets/0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4/logo.png differ diff --git a/blockchains/optimism/assets/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A/info.json b/blockchains/optimism/assets/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A/info.json new file mode 100644 index 00000000..155002b8 --- /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 00000000..0fe95630 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 00000000..82d29a7c --- /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 00000000..fa34a23f 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 00000000..0476a494 --- /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 00000000..9c225f4b 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 00000000..d1257d45 --- /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 00000000..29d48c73 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 00000000..8e381c76 --- /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 00000000..b80f4f7f 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 new file mode 100644 index 00000000..ca4da810 --- /dev/null +++ b/blockchains/optimism/assets/0x94b008aA00579c1307B0EF2c499aD98a8ce58e58/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether USD", + "type": "OPTIMISM", + "symbol": "USDT", + "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://optimistic.etherscan.io/token/0x94b008aa00579c1307b0ef2c499ad98a8ce58e58", + "status": "active", + "id": "0x94b008aA00579c1307B0EF2c499aD98a8ce58e58", + "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_to" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x94b008aA00579c1307B0EF2c499aD98a8ce58e58/logo.png b/blockchains/optimism/assets/0x94b008aA00579c1307B0EF2c499aD98a8ce58e58/logo.png new file mode 100644 index 00000000..90465aa8 Binary files /dev/null and b/blockchains/optimism/assets/0x94b008aA00579c1307B0EF2c499aD98a8ce58e58/logo.png differ diff --git a/blockchains/optimism/assets/0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db/info.json b/blockchains/optimism/assets/0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db/info.json new file mode 100644 index 00000000..1b459330 --- /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 00000000..a2b9dc42 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 new file mode 100644 index 00000000..7cd26762 --- /dev/null +++ b/blockchains/optimism/assets/0x9Bcef72be871e61ED4fBbc7630889beE758eb81D/info.json @@ -0,0 +1,21 @@ +{ + "name": "Rocket Pool ETH", + "symbol": "rETH", + "type": "OPTIMISM", + "decimals": 18, + "description": "Rocket Pool is the first truly decentralised Ethereum staking pool.", + "website": "https://rocketpool.net", + "explorer": "https://optimistic.etherscan.io/token/0x9Bcef72be871e61ED4fBbc7630889beE758eb81D", + "status": "active", + "id": "0x9Bcef72be871e61ED4fBbc7630889beE758eb81D", + "links": [ + { + "name": "x", + "url": "https://x.com/Rocket_Pool" + }, + { + "name": "medium", + "url": "https://medium.com/rocket-pool" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x9Bcef72be871e61ED4fBbc7630889beE758eb81D/logo.png b/blockchains/optimism/assets/0x9Bcef72be871e61ED4fBbc7630889beE758eb81D/logo.png new file mode 100644 index 00000000..fe1880f0 Binary files /dev/null and b/blockchains/optimism/assets/0x9Bcef72be871e61ED4fBbc7630889beE758eb81D/logo.png differ diff --git a/blockchains/optimism/assets/0x9e1028F5F1D5eDE59748FFceE5532509976840E0/info.json b/blockchains/optimism/assets/0x9e1028F5F1D5eDE59748FFceE5532509976840E0/info.json new file mode 100644 index 00000000..270dbbef --- /dev/null +++ b/blockchains/optimism/assets/0x9e1028F5F1D5eDE59748FFceE5532509976840E0/info.json @@ -0,0 +1,28 @@ +{ + "name": "Perpetual", + "symbol": "PERP", + "type": "OPTIMISM", + "decimals": 18, + "description": "On-chain derivative DEX with liquidity provisioning and up to 10x leverage for makers and takers.", + "website": "https://www.perp.com/", + "explorer": "https://optimistic.etherscan.io/token/0x9e1028F5F1D5eDE59748FFceE5532509976840E0", + "status": "active", + "id": "0x9e1028F5F1D5eDE59748FFceE5532509976840E0", + "links": [ + { + "name": "x", + "url": "https://x.com/perpprotocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/perpetual-protocol/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/perpetual-protocol/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x9e1028F5F1D5eDE59748FFceE5532509976840E0/logo.png b/blockchains/optimism/assets/0x9e1028F5F1D5eDE59748FFceE5532509976840E0/logo.png new file mode 100644 index 00000000..b0b2dfdf Binary files /dev/null and b/blockchains/optimism/assets/0x9e1028F5F1D5eDE59748FFceE5532509976840E0/logo.png differ diff --git a/blockchains/optimism/assets/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151/info.json b/blockchains/optimism/assets/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151/info.json new file mode 100644 index 00000000..6ddbd6e5 --- /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 00000000..d00b1ade 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 00000000..f7e792d2 --- /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 00000000..6dd31198 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 new file mode 100644 index 00000000..2a60a13c --- /dev/null +++ b/blockchains/optimism/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json @@ -0,0 +1,28 @@ +{ + "name": "ARAW", + "symbol": "ARAW", + "type": "OPTIMISM", + "decimals": 18, + "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": "abandoned", + "id": "0xCA7661Ba64A7667E3006c421C181502d545D1911", + "links": [ + { + "name": "x", + "url": "https://x.com/arawtoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/araw/" + }, + { + "name": "telegram", + "url": "https://t.me/ArawTokenOfficial" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/info.json b/blockchains/optimism/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/info.json new file mode 100644 index 00000000..a1570446 --- /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 00000000..6195582c 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 00000000..47f66918 --- /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 00000000..69911cae 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 00000000..05dc5400 --- /dev/null +++ b/blockchains/optimism/assets/0xEc6adef5E1006bb305bB1975333e8fc4071295bf/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cartesi Token", + "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 00000000..68d0328b 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 00000000..b0bb1b83 --- /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 00000000..8327b516 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 00000000..40c1cddf --- /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 00000000..d565ce6e 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 new file mode 100644 index 00000000..faed348c --- /dev/null +++ b/blockchains/optimism/assets/0xF98dCd95217E15E05d8638da4c91125E59590B07/info.json @@ -0,0 +1,21 @@ +{ + "name": "Kromatika", + "symbol": "KROM", + "type": "OPTIMISM", + "decimals": 18, + "description": "Non-mintable ERC20 token deployed on Ethereum, secured by OpenZepellin and audited by MythX with a total supply of 100 million.", + "website": "https://kromatika.finance", + "explorer": "https://optimistic.etherscan.io/token/0xF98dCd95217E15E05d8638da4c91125E59590B07", + "status": "active", + "id": "0xF98dCd95217E15E05d8638da4c91125E59590B07", + "links": [ + { + "name": "x", + "url": "https://x.com/KromatikaFi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kromatika/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xF98dCd95217E15E05d8638da4c91125E59590B07/logo.png b/blockchains/optimism/assets/0xF98dCd95217E15E05d8638da4c91125E59590B07/logo.png new file mode 100644 index 00000000..a1c3af82 Binary files /dev/null and b/blockchains/optimism/assets/0xF98dCd95217E15E05d8638da4c91125E59590B07/logo.png differ diff --git a/blockchains/optimism/assets/0xFA436399d0458Dbe8aB890c3441256E3E09022a8/info.json b/blockchains/optimism/assets/0xFA436399d0458Dbe8aB890c3441256E3E09022a8/info.json new file mode 100644 index 00000000..d5036a53 --- /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 00000000..2f5519f0 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 00000000..76615550 --- /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 00000000..d18680cf 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 new file mode 100644 index 00000000..acb6d70a --- /dev/null +++ b/blockchains/optimism/assets/0xFE8B128bA8C78aabC59d4c64cEE7fF28e9379921/info.json @@ -0,0 +1,28 @@ +{ + "name": "Balancer", + "website": "https://balancer.finance/", + "description": "Balancer is an automated portfolio manager and trading platform.", + "explorer": "https://optimistic.etherscan.io/token/0xFE8B128bA8C78aabC59d4c64cEE7fF28e9379921", + "type": "OPTIMISM", + "symbol": "BAL", + "decimals": 18, + "status": "active", + "id": "0xFE8B128bA8C78aabC59d4c64cEE7fF28e9379921", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/balancer-labs" + }, + { + "name": "x", + "url": "https://x.com/BalancerLabs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/balancer/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xFE8B128bA8C78aabC59d4c64cEE7fF28e9379921/logo.png b/blockchains/optimism/assets/0xFE8B128bA8C78aabC59d4c64cEE7fF28e9379921/logo.png new file mode 100644 index 00000000..56f9d83a Binary files /dev/null and b/blockchains/optimism/assets/0xFE8B128bA8C78aabC59d4c64cEE7fF28e9379921/logo.png differ diff --git a/blockchains/optimism/assets/0xa00E3A3511aAC35cA78530c85007AFCd31753819/info.json b/blockchains/optimism/assets/0xa00E3A3511aAC35cA78530c85007AFCd31753819/info.json new file mode 100644 index 00000000..3689f285 --- /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 00000000..8f845a1c 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 00000000..75988010 --- /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 00000000..f1295da4 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 00000000..3b8f0568 --- /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 00000000..2973d314 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 00000000..12788063 --- /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 00000000..43697be4 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 00000000..0e1abfc5 --- /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 00000000..6a8b61f4 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 new file mode 100644 index 00000000..ac9a4f2c --- /dev/null +++ b/blockchains/optimism/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json @@ -0,0 +1,36 @@ +{ + "name": "Okcash", + "type": "OPTIMISM", + "symbol": "OK", + "decimals": 18, + "website": "https://okcash.co", + "description": "OK is the leading multi chain PoS, web3 + NFTs open source electronic cash, its design is public, nobody owns or controls Okcash and everyone can take part.", + "explorer": "https://optimistic.etherscan.io/token/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", + "status": "active", + "id": "0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", + "links": [ + { + "name": "x", + "url": "https://x.com/OkcashCrypto" + }, + { + "name": "github", + "url": "https://github.com/okcashpro" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/okcash/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/okcash" + }, + { + "name": "medium", + "url": "https://medium.com/okcash" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png b/blockchains/optimism/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png new file mode 100644 index 00000000..a3b20074 Binary files /dev/null and b/blockchains/optimism/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png differ diff --git a/blockchains/optimism/assets/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44/info.json b/blockchains/optimism/assets/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44/info.json new file mode 100644 index 00000000..591b7f49 --- /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 00000000..14dff916 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 00000000..58ce3dda --- /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 00000000..cb6c4903 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 00000000..2c5ee803 --- /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 00000000..cb7f6e39 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 00000000..858e577d --- /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 00000000..52dc3ec3 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 00000000..f99e2d4b --- /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 00000000..7cdf4a0f 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 00000000..60a5af98 --- /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 00000000..7ec7570e 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 00000000..e30e152b --- /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 00000000..dd09bc1d 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 00000000..614db00c --- /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 00000000..a429e361 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 new file mode 100644 index 00000000..89f55983 --- /dev/null +++ b/blockchains/optimism/assets/0xffD27b572246f35c992EfB28DD8cB730b93Ed301/info.json @@ -0,0 +1,21 @@ +{ + "name": "Rubicon", + "symbol": "Rubicon", + "type": "OPTIMISM", + "decimals": 18, + "description": "The Rubicon Protocol is a decentralized exchange protocol on the Ethereum blockchain.", + "website": "https://www.rubicon.finance", + "explorer": "https://optimistic.etherscan.io/token/0xffD27b572246f35c992EfB28DD8cB730b93Ed301", + "status": "active", + "id": "0xffD27b572246f35c992EfB28DD8cB730b93Ed301", + "links": [ + { + "name": "x", + "url": "https://x.com/rubicondefi" + }, + { + "name": "telegram", + "url": "https://t.me/rubicondefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xffD27b572246f35c992EfB28DD8cB730b93Ed301/logo.png b/blockchains/optimism/assets/0xffD27b572246f35c992EfB28DD8cB730b93Ed301/logo.png new file mode 100644 index 00000000..716af9b5 Binary files /dev/null and b/blockchains/optimism/assets/0xffD27b572246f35c992EfB28DD8cB730b93Ed301/logo.png differ diff --git a/blockchains/optimism/info/info.json b/blockchains/optimism/info/info.json new file mode 100644 index 00000000..64c91b39 --- /dev/null +++ b/blockchains/optimism/info/info.json @@ -0,0 +1,17 @@ +{ + "name": "Optimistic Ethereum", + "website": "https://optimism.io/", + "description": "Optimism is a Layer 2 scaling solution for Ethereum.", + "explorer": "https://optimistic.etherscan.io", + "research": "https://github.com/ethereum-optimism/optimism", + "symbol": "OETH", + "type": "coin", + "coin_type": 614, + "decimals": 18, + "status": "active", + "rpc_url": "https://mainnet.optimism.io", + "links": [], + "tags": [ + "dapp" + ] +} diff --git a/blockchains/optimism/info/logo.png b/blockchains/optimism/info/logo.png new file mode 100644 index 00000000..ee9d1e69 Binary files /dev/null and b/blockchains/optimism/info/logo.png differ diff --git a/blockchains/optimism/info/square_logo.png b/blockchains/optimism/info/square_logo.png new file mode 100644 index 00000000..ca9037b8 Binary files /dev/null and b/blockchains/optimism/info/square_logo.png differ diff --git a/blockchains/optimism/tokenlist-extended.json b/blockchains/optimism/tokenlist-extended.json new file mode 100644 index 00000000..f4b9bf09 --- /dev/null +++ b/blockchains/optimism/tokenlist-extended.json @@ -0,0 +1,57 @@ +{ + "name": "Trust Wallet: Optimism Ethereum", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-08-27T11:20:37.042174", + "tokens": [ + { + "asset": "c10000070_t0x5029C236320b8f15eF0a657054B84d90bfBEDED3", + "type": "OPTIMISM", + "address": "0x5029C236320b8f15eF0a657054B84d90bfBEDED3", + "name": "BitANT", + "symbol": "BitANT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/optimism/assets/0x5029C236320b8f15eF0a657054B84d90bfBEDED3/logo.png" + }, + { + "asset": "c10000070_t0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", + "type": "OPTIMISM", + "address": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", + "name": "Lyra Finance", + "symbol": "LYRA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/optimism/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png" + }, + { + "asset": "c10000070_t0x9Bcef72be871e61ED4fBbc7630889beE758eb81D", + "type": "OPTIMISM", + "address": "0x9Bcef72be871e61ED4fBbc7630889beE758eb81D", + "name": "Rocket Pool ETH", + "symbol": "rETH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/optimism/assets/0x9Bcef72be871e61ED4fBbc7630889beE758eb81D/logo.png" + }, + { + "asset": "c10000070_t0xffD27b572246f35c992EfB28DD8cB730b93Ed301", + "type": "OPTIMISM", + "address": "0xffD27b572246f35c992EfB28DD8cB730b93Ed301", + "name": "Rubicon", + "symbol": "Rubicon", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/optimism/assets/0xffD27b572246f35c992EfB28DD8cB730b93Ed301/logo.png" + }, + { + "asset": "c10000070_t0x4200000000000000000000000000000000000042", + "type": "OPTIMISM", + "address": "0x4200000000000000000000000000000000000042", + "name": "Optimism", + "symbol": "OP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/optimism/assets/0x4200000000000000000000000000000000000042/logo.png" + } + ], + "version": { + "major": 11, + "minor": 0, + "patch": 0 + } +} \ No newline at end of file diff --git a/blockchains/optimism/tokenlist.json b/blockchains/optimism/tokenlist.json new file mode 100644 index 00000000..decf3204 --- /dev/null +++ b/blockchains/optimism/tokenlist.json @@ -0,0 +1,72 @@ +{ + "name": "Trust Wallet: Optimism List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-01-27T14:33:26.183301", + "tokens": [ + { + "asset": "c10000070_t0x4200000000000000000000000000000000000006", + "type": "OPTIMISM", + "address": "0x4200000000000000000000000000000000000006", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/optimism/assets/0x4200000000000000000000000000000000000006/logo.png", + "pairs": [] + }, + { + "asset": "c10000070_t0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4", + "type": "OPTIMISM", + "address": "0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4", + "name": "Synthetix Network", + "symbol": "SNX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/optimism/assets/0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4/logo.png", + "pairs": [] + }, + { + "asset": "c10000070_t0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6", + "type": "OPTIMISM", + "address": "0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6", + "name": "ChainLink", + "symbol": "LINK", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/optimism/assets/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6/logo.png", + "pairs": [] + }, + { + "asset": "c10000070_t0x61BAADcF22d2565B0F471b291C475db5555e0b76", + "type": "OPTIMISM", + "address": "0x61BAADcF22d2565B0F471b291C475db5555e0b76", + "name": "Aelin Token", + "symbol": "AELIN", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/optimism/assets/0x61BAADcF22d2565B0F471b291C475db5555e0b76/logo.png", + "pairs": [] + }, + { + "asset": "c10000070_t0x9e1028F5F1D5eDE59748FFceE5532509976840E0", + "type": "OPTIMISM", + "address": "0x9e1028F5F1D5eDE59748FFceE5532509976840E0", + "name": "Perpetual", + "symbol": "PERP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/optimism/assets/0x9e1028F5F1D5eDE59748FFceE5532509976840E0/logo.png", + "pairs": [] + }, + { + "asset": "c10000070_t0xF98dCd95217E15E05d8638da4c91125E59590B07", + "type": "OPTIMISM", + "address": "0xF98dCd95217E15E05d8638da4c91125E59590B07", + "name": "Kromatika", + "symbol": "KROM", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/optimism/assets/0xF98dCd95217E15E05d8638da4c91125E59590B07/logo.png", + "pairs": [] + } + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} diff --git a/blockchains/optimismgoerli/info/info.json b/blockchains/optimismgoerli/info/info.json new file mode 100644 index 00000000..5f25772c --- /dev/null +++ b/blockchains/optimismgoerli/info/info.json @@ -0,0 +1,18 @@ +{ + "name": "Optimism Goerli Testnet", + "website": "https://goerlifaucet.com", + "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://blockscout.com/optimism/goerli/", + "research": "https://goerli.net/#about", + "symbol": "ETH", + "rpc_url": "https://optimism-goerli.public.blastapi.io", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/community/search/top/goerli-eth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimismgoerli/info/logo.png b/blockchains/optimismgoerli/info/logo.png new file mode 100644 index 00000000..ad463789 Binary files /dev/null and b/blockchains/optimismgoerli/info/logo.png differ diff --git a/blockchains/optimismgoerli/info/square_logo.png b/blockchains/optimismgoerli/info/square_logo.png new file mode 100644 index 00000000..793f7b4a Binary files /dev/null and b/blockchains/optimismgoerli/info/square_logo.png differ diff --git a/blockchains/osmosis/info/info.json b/blockchains/osmosis/info/info.json new file mode 100644 index 00000000..de632ad1 --- /dev/null +++ b/blockchains/osmosis/info/info.json @@ -0,0 +1,14 @@ +{ + "name": "Osmosis", + "website": "https://osmosis.zone/", + "description": "Osmosis is an automated market maker (AMM) protocol in the Cosmos ecosystem", + "explorer": "https://www.mintscan.io/osmosis", + "research": "https://medium.com/@Osmosis", + "symbol": "OSMO", + "type": "coin", + "decimals": 6, + "status": "active", + "tags": [ + "staking-native" + ] +} diff --git a/blockchains/osmosis/info/logo.png b/blockchains/osmosis/info/logo.png new file mode 100644 index 00000000..5d1b5ef2 Binary files /dev/null and b/blockchains/osmosis/info/logo.png differ diff --git a/blockchains/osmosis/info/square_logo.png b/blockchains/osmosis/info/square_logo.png new file mode 100644 index 00000000..58114f3a 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 00000000..f5f3ada9 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 00000000..e1178170 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 00000000..e247fab1 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper10pt2rk73ksua9nee7c2x5le4yxqnczuefgae62/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper10rsjwrcj7maz4f0l8dh3smjd022n9ya8ycuyg7/logo.png b/blockchains/osmosis/validators/assets/osmovaloper10rsjwrcj7maz4f0l8dh3smjd022n9ya8ycuyg7/logo.png new file mode 100644 index 00000000..7885bdbb Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper10rsjwrcj7maz4f0l8dh3smjd022n9ya8ycuyg7/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper122yaxffys6rmv03nwwkmn3rvr5skzxl9lry2a5/logo.png b/blockchains/osmosis/validators/assets/osmovaloper122yaxffys6rmv03nwwkmn3rvr5skzxl9lry2a5/logo.png new file mode 100644 index 00000000..95674f5f Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper122yaxffys6rmv03nwwkmn3rvr5skzxl9lry2a5/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper14syzusqsh8gp7evd0gcqxjjywljgdtdurn79r3/logo.png b/blockchains/osmosis/validators/assets/osmovaloper14syzusqsh8gp7evd0gcqxjjywljgdtdurn79r3/logo.png new file mode 100644 index 00000000..63140c57 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper14syzusqsh8gp7evd0gcqxjjywljgdtdurn79r3/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper16gm3cvhluf9xfurkx9qgxq7pldvd479l0j6zms/logo.png b/blockchains/osmosis/validators/assets/osmovaloper16gm3cvhluf9xfurkx9qgxq7pldvd479l0j6zms/logo.png new file mode 100644 index 00000000..b92dd8ee Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper16gm3cvhluf9xfurkx9qgxq7pldvd479l0j6zms/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper16n0t7lmy4wnhjytzkncjdkxrsu9yfjm3ex7hxr/logo.png b/blockchains/osmosis/validators/assets/osmovaloper16n0t7lmy4wnhjytzkncjdkxrsu9yfjm3ex7hxr/logo.png new file mode 100644 index 00000000..24b673e6 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper16n0t7lmy4wnhjytzkncjdkxrsu9yfjm3ex7hxr/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 00000000..02916372 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 00000000..9dff7bbe Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98gfer6u/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1clpqr4nrk4khgkxj78fcwwh6dl3uw4ep88n0y4/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1clpqr4nrk4khgkxj78fcwwh6dl3uw4ep88n0y4/logo.png new file mode 100644 index 00000000..3fe4423b Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1clpqr4nrk4khgkxj78fcwwh6dl3uw4ep88n0y4/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1cm83xqns9sqhv9a8vd6fggt6mvuu8mmzszknae/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1cm83xqns9sqhv9a8vd6fggt6mvuu8mmzszknae/logo.png new file mode 100644 index 00000000..d0388df6 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1cm83xqns9sqhv9a8vd6fggt6mvuu8mmzszknae/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1cwurrzatev9lfkn3ak6hh59t6yc0zy00rzp8yd/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1cwurrzatev9lfkn3ak6hh59t6yc0zy00rzp8yd/logo.png new file mode 100644 index 00000000..c53de065 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1cwurrzatev9lfkn3ak6hh59t6yc0zy00rzp8yd/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1cyw4vw20el8e7ez8080md0r8psg25n0cq98a9n/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1cyw4vw20el8e7ez8080md0r8psg25n0cq98a9n/logo.png new file mode 100644 index 00000000..b38ae925 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1cyw4vw20el8e7ez8080md0r8psg25n0cq98a9n/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1e9ucjn5fjmetky5wezzcsccp7hqcwzrrdulz7n/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1e9ucjn5fjmetky5wezzcsccp7hqcwzrrdulz7n/logo.png new file mode 100644 index 00000000..2bd3a1e2 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1e9ucjn5fjmetky5wezzcsccp7hqcwzrrdulz7n/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 00000000..f5f3ada9 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 new file mode 100644 index 00000000..9b28ec00 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1l7hln0l79erqaw6jdfdwx0hkfmj3dp27gr77ja/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1l7hln0l79erqaw6jdfdwx0hkfmj3dp27gr77ja/logo.png new file mode 100644 index 00000000..616aee43 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1l7hln0l79erqaw6jdfdwx0hkfmj3dp27gr77ja/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1ldu6ew0cff400qmn0trkad38gx250zny45q9au/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1ldu6ew0cff400qmn0trkad38gx250zny45q9au/logo.png new file mode 100644 index 00000000..8824e537 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1ldu6ew0cff400qmn0trkad38gx250zny45q9au/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1nskmzc8cqf8m9vwrxvnggtw4vw9cwx54jtfmuj/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1nskmzc8cqf8m9vwrxvnggtw4vw9cwx54jtfmuj/logo.png new file mode 100644 index 00000000..78f777e5 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1nskmzc8cqf8m9vwrxvnggtw4vw9cwx54jtfmuj/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 00000000..c2cb86a4 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 00000000..bed02519 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 00000000..194e9693 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1x2e2pnenh0mmc99cnp7sukngnt8lc4saljavr3/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1x2e2pnenh0mmc99cnp7sukngnt8lc4saljavr3/logo.png new file mode 100644 index 00000000..70ee36d1 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1x2e2pnenh0mmc99cnp7sukngnt8lc4saljavr3/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1xgqr7pn80g6w398wzdmye3lu6wsgk32sw670ec/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1xgqr7pn80g6w398wzdmye3lu6wsgk32sw670ec/logo.png new file mode 100644 index 00000000..f52b63c5 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1xgqr7pn80g6w398wzdmye3lu6wsgk32sw670ec/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1xwazl8ftks4gn00y5x3c47auquc62ssuh8af89/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1xwazl8ftks4gn00y5x3c47auquc62ssuh8af89/logo.png new file mode 100644 index 00000000..b2a99f24 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1xwazl8ftks4gn00y5x3c47auquc62ssuh8af89/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww24nrlnx/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww24nrlnx/logo.png new file mode 100644 index 00000000..abcfc329 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww24nrlnx/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1z0sh4s80u99l6y9d3vfy582p8jejeeu6tcucs2/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1z0sh4s80u99l6y9d3vfy582p8jejeeu6tcucs2/logo.png new file mode 100644 index 00000000..c6945ed5 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1z0sh4s80u99l6y9d3vfy582p8jejeeu6tcucs2/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1z5xyynz9ewuf044uaweswldut34z34z3cwpt7y/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1z5xyynz9ewuf044uaweswldut34z34z3cwpt7y/logo.png new file mode 100644 index 00000000..0f6305d8 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1z5xyynz9ewuf044uaweswldut34z34z3cwpt7y/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1z89utvygweg5l56fsk8ak7t6hh88fd0axx2fya/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1z89utvygweg5l56fsk8ak7t6hh88fd0axx2fya/logo.png new file mode 100644 index 00000000..4c4fe477 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1z89utvygweg5l56fsk8ak7t6hh88fd0axx2fya/logo.png differ diff --git a/blockchains/osmosis/validators/list.json b/blockchains/osmosis/validators/list.json new file mode 100644 index 00000000..11ab3adb --- /dev/null +++ b/blockchains/osmosis/validators/list.json @@ -0,0 +1,170 @@ +[ + { + "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": "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", + "description": "Atomic Nodes is a multi chain staking operator, trusted by over 200,000 delegators since 2019.", + "website": "https://atomicnodes.com/" + }, + { + "id": "osmovaloper1cyw4vw20el8e7ez8080md0r8psg25n0cq98a9n", + "name": "Sentinel", + "description": "A blockchain-based decentralized bandwidth marketplace built with Cosmos SDK/Tendermint.", + "website": "https://sentinel.co/" + }, + { + "id": "osmovaloper1ldu6ew0cff400qmn0trkad38gx250zny45q9au", + "name": "Consensus One", + "description": "Delegate to Consensus One to help secure, support and shape Osmosis. Secure and highly available, 24/7/365. By delegating, you agree to our terms of service.", + "website": "https://www.consensus.one/" + }, + { + "id": "osmovaloper1clpqr4nrk4khgkxj78fcwwh6dl3uw4ep88n0y4", + "name": "Cosmostation", + "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards", + "website": "https://www.cosmostation.io/" + }, + { + "id": "osmovaloper1z0sh4s80u99l6y9d3vfy582p8jejeeu6tcucs2", + "name": "[ block pane ]", + "description": "🔥 Fast, datacenter-hosted, bare-metal validators 🔥", + "website": "https://blockpane.com/" + }, + { + "id": "osmovaloper16gm3cvhluf9xfurkx9qgxq7pldvd479l0j6zms", + "name": "SpacePotato", + "description": "We have a secure and reliable validator setup that adheres to best practices. Uptime and rewards generation for you is our top priority!", + "website": "https://spacepotayto.carrd.co/" + }, + { + "id": "osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n", + "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": "osmovaloper1xgqr7pn80g6w398wzdmye3lu6wsgk32sw670ec", + "name": "☉ Mercury", + "description": "We are a team of professionals extensive experience in servers and networks. Fault tolerance and reliability are our top priorities, no matter what projects we are involved in!", + "website": "https://mercury-nodes.net/" + }, + { + "id": "osmovaloper1z89utvygweg5l56fsk8ak7t6hh88fd0axx2fya", + "name": "Inotel", + "description": "We do staking for a living", + "website": "https://inotel.ro/" + }, + { + "id": "osmovaloper1l7hln0l79erqaw6jdfdwx0hkfmj3dp27gr77ja", + "name": "Smart Stake", + "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", + "description": "just another dad in the cosmos", + "website": "https://jabbey.io" + }, + { + "id": "osmovaloper10rsjwrcj7maz4f0l8dh3smjd022n9ya8ycuyg7", + "name": "Active Nodes", + "description": "Highly Available Enterprise Infrastructure with multiple nodes around the world", + "website": "https://www.activenodes.io" + }, + { + "id": "osmovaloper16n0t7lmy4wnhjytzkncjdkxrsu9yfjm3ex7hxr", + "name": "Golden Ratio Staking", + "description": "Powered by most beautiful number in Cosmos.", + "website": "https://x.com/GoldenStaking" + }, + { + "id": "osmovaloper1nskmzc8cqf8m9vwrxvnggtw4vw9cwx54jtfmuj", + "name": "RHINO", + "description": "A professionally managed, highly available validator service", + "website": "https://rhinostake.com" + }, + { + "id": "osmovaloper14syzusqsh8gp7evd0gcqxjjywljgdtdurn79r3", + "name": "Stakepile", + "description": "Stakepile - Grow your stake pile with us. We also stake DOT, KSM, JUNO, KAVA, COMDEX, HUAHUA", + "website": "https://stakepile.com" + }, + { + "id": "osmovaloper1z5xyynz9ewuf044uaweswldut34z34z3cwpt7y", + "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": "osmovaloper1e9ucjn5fjmetky5wezzcsccp7hqcwzrrdulz7n", + "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" + }, + { + "id": "osmovaloper122yaxffys6rmv03nwwkmn3rvr5skzxl9lry2a5", + "name": "Stakewolle.com | Auto-compound", + "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": "osmovaloper1cwurrzatev9lfkn3ak6hh59t6yc0zy00rzp8yd", + "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 00000000..3b2a225f --- /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 00000000..115f93d5 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 00000000..51715a7e 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 new file mode 100644 index 00000000..11475c27 --- /dev/null +++ b/blockchains/persistence/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Persistence", + "type": "coin", + "symbol": "XPRT", + "decimals": 6, + "website": "https://persistence.one/", + "description": "Persistence is a Tendermint based specialized Layer-1 powering an ecosystem of DeFi dApps focused on unlocking the liquidity of staked assets.", + "explorer": "https://www.mintscan.io/persistence", + "status": "active", + "rpc_url": "https://rpc-persistent-ia.cosmosia.notional.ventures/", + "denom": "uxprt", + "lcd_url": "https://persistence-lcd.quantnode.tech/", + "hrp": "persistence", + "links": [ + { + "name": "github", + "url": "https://github.com/persistenceOne" + }, + { + "name": "blog", + "url": "https://blog.persistence.one/" + }, + { + "name": "x", + "url": "https://x.com/PersistenceOne" + } + ] +} \ No newline at end of file diff --git a/blockchains/persistence/info/logo.png b/blockchains/persistence/info/logo.png new file mode 100644 index 00000000..eff1aeb5 Binary files /dev/null and b/blockchains/persistence/info/logo.png differ diff --git a/blockchains/persistence/info/square_logo.png b/blockchains/persistence/info/square_logo.png new file mode 100644 index 00000000..ecbb4ad2 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 00000000..c2cb86a4 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 00000000..bed02519 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 00000000..0f6305d8 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 00000000..02916372 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 00000000..10205271 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 00000000..c53de065 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 00000000..4b098137 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 00000000..0888af01 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 00000000..ad650775 --- /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 00000000..e02277c4 --- /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 00000000..03f851d6 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 00000000..cb273616 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 00000000..852eff3c --- /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 00000000..74c513c0 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 00000000..be5be424 --- /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 00000000..aa0a5809 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 00000000..a60980f5 --- /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 00000000..6b33ee17 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 00000000..b2642ed3 --- /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 00000000..e1b7f5c1 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 00000000..a97f671e --- /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 00000000..69ecb3a3 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 00000000..4bfc913e --- /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 00000000..4aaa7e37 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 00000000..b7ce9a45 --- /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 00000000..7cf7aae0 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 00000000..c04f2e31 --- /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 00000000..bf957d38 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 00000000..ddada9cf --- /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 00000000..4cf7b8f1 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 00000000..e5f0f34b --- /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 00000000..c07fe1a8 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 00000000..df80489f --- /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 00000000..7cf7aae0 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 00000000..ff6f130a 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 new file mode 100644 index 00000000..ae50ce06 --- /dev/null +++ b/blockchains/platon/info/info.json @@ -0,0 +1,33 @@ +{ + "name": "PlatON", + "website": "https://www.platon.network/", + "description": "LAT is the native token of PlatON Network. It is a digital currency. You can transfer it through the PlatON network or use applications built on PlatON with LATs.", + "explorer": "https://scan.platon.network/", + "research": "https://devdocs.platon.network/docs/", + "symbol": "LAT", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "telegram", + "url": "https://t.me/PlatONNetwork" + }, + { + "name": "x", + "url": "https://x.com/PlatON_Network" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/PlatON_Network" + }, + { + "name": "medium", + "url": "https://platon-network.medium.com" + }, + { + "name": "github", + "url": "https://github.com/PlatONnetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/platon/info/logo.png b/blockchains/platon/info/logo.png new file mode 100644 index 00000000..d2170bbd Binary files /dev/null and b/blockchains/platon/info/logo.png differ diff --git a/blockchains/platon/info/square_logo.png b/blockchains/platon/info/square_logo.png new file mode 100644 index 00000000..693adfff Binary files /dev/null and b/blockchains/platon/info/square_logo.png differ diff --git a/blockchains/poa/assets/0xA17ed5dFc62D0a3E74D69a0503AE9FdA65d9f212/info.json b/blockchains/poa/assets/0xA17ed5dFc62D0a3E74D69a0503AE9FdA65d9f212/info.json new file mode 100644 index 00000000..825efe9e --- /dev/null +++ b/blockchains/poa/assets/0xA17ed5dFc62D0a3E74D69a0503AE9FdA65d9f212/info.json @@ -0,0 +1,11 @@ +{ + "name": "User Pay", + "symbol": "UP", + "type": "POA20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/poa/core/tokens/0xA17ed5dFc62D0a3E74D69a0503AE9FdA65d9f212", + "status": "active", + "id": "0xA17ed5dFc62D0a3E74D69a0503AE9FdA65d9f212" +} \ No newline at end of file diff --git a/blockchains/poa/assets/0xA17ed5dFc62D0a3E74D69a0503AE9FdA65d9f212/logo.png b/blockchains/poa/assets/0xA17ed5dFc62D0a3E74D69a0503AE9FdA65d9f212/logo.png new file mode 100755 index 00000000..59644539 Binary files /dev/null and b/blockchains/poa/assets/0xA17ed5dFc62D0a3E74D69a0503AE9FdA65d9f212/logo.png differ diff --git a/blockchains/poa/assets/0xADFE00d92e5A16e773891F59780e6e54f40B532e/info.json b/blockchains/poa/assets/0xADFE00d92e5A16e773891F59780e6e54f40B532e/info.json new file mode 100644 index 00000000..bc51f537 --- /dev/null +++ b/blockchains/poa/assets/0xADFE00d92e5A16e773891F59780e6e54f40B532e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Viktor Coin", + "symbol": "VIK", + "type": "POA20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/poa/core/tokens/0xADFE00d92e5A16e773891F59780e6e54f40B532e", + "status": "active", + "id": "0xADFE00d92e5A16e773891F59780e6e54f40B532e" +} \ No newline at end of file diff --git a/blockchains/poa/assets/0xADFE00d92e5A16e773891F59780e6e54f40B532e/logo.png b/blockchains/poa/assets/0xADFE00d92e5A16e773891F59780e6e54f40B532e/logo.png new file mode 100644 index 00000000..9709ad58 Binary files /dev/null and b/blockchains/poa/assets/0xADFE00d92e5A16e773891F59780e6e54f40B532e/logo.png differ diff --git a/blockchains/poa/assets/0xC98a06220239818B086CD96756d4E3bC41EC848E/info.json b/blockchains/poa/assets/0xC98a06220239818B086CD96756d4E3bC41EC848E/info.json new file mode 100644 index 00000000..736eda28 --- /dev/null +++ b/blockchains/poa/assets/0xC98a06220239818B086CD96756d4E3bC41EC848E/info.json @@ -0,0 +1,11 @@ +{ + "name": "POA Candy", + "symbol": "PAO", + "type": "POA20", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://blockscout.com/poa/core/tokens/0xC98a06220239818B086CD96756d4E3bC41EC848E", + "status": "active", + "id": "0xC98a06220239818B086CD96756d4E3bC41EC848E" +} \ No newline at end of file diff --git a/blockchains/poa/assets/0xC98a06220239818B086CD96756d4E3bC41EC848E/logo.png b/blockchains/poa/assets/0xC98a06220239818B086CD96756d4E3bC41EC848E/logo.png new file mode 100644 index 00000000..3ffdeff2 Binary files /dev/null and b/blockchains/poa/assets/0xC98a06220239818B086CD96756d4E3bC41EC848E/logo.png differ diff --git a/blockchains/poa/info/info.json b/blockchains/poa/info/info.json new file mode 100644 index 00000000..88522e97 --- /dev/null +++ b/blockchains/poa/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "POA", + "website": "https://poa.network", + "description": "An open network based on Ethereum protocol with Proof of Authority consensus by independent actors. Public notaries with known identity serve as private validators to secure the network.", + "explorer": "https://blockscout.com/poa/core", + "research": "https://research.binance.com/en/projects/poa-network", + "symbol": "POA", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/poanetwork" + }, + { + "name": "x", + "url": "https://x.com/poanetwork" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/POA" + }, + { + "name": "whitepaper", + "url": "https://github.com/poanetwork/wiki/wiki/POA-Network-Whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/poa/info/logo.png b/blockchains/poa/info/logo.png new file mode 100644 index 00000000..9d846235 Binary files /dev/null and b/blockchains/poa/info/logo.png differ diff --git a/blockchains/poa/info/square_logo.png b/blockchains/poa/info/square_logo.png new file mode 100644 index 00000000..5f83a8d7 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 new file mode 100644 index 00000000..a4545313 --- /dev/null +++ b/blockchains/polkadot/info/info.json @@ -0,0 +1,32 @@ +{ + "name": "Polkadot", + "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": "https://assethub-polkadot.subscan.io/", + "research": "https://research.binance.com/en/projects/polkadot", + "symbol": "DOT", + "type": "coin", + "decimals": 10, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/w3f" + }, + { + "name": "x", + "url": "https://x.com/polkadotnetwork" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/dot" + }, + { + "name": "whitepaper", + "url": "https://polkadot.network/PolkaDotPaper.pdf" + } + ] +} diff --git a/blockchains/polkadot/info/logo.png b/blockchains/polkadot/info/logo.png new file mode 100644 index 00000000..341b9483 Binary files /dev/null and b/blockchains/polkadot/info/logo.png differ diff --git a/blockchains/polkadot/info/square_logo.png b/blockchains/polkadot/info/square_logo.png new file mode 100644 index 00000000..ba6fc8dc Binary files /dev/null and b/blockchains/polkadot/info/square_logo.png differ diff --git a/blockchains/polkadot/validators/assets/11AnciffJctDC28odTEjDVYP2yWyp6275WLbrAUHi2vJm9f/logo.png b/blockchains/polkadot/validators/assets/11AnciffJctDC28odTEjDVYP2yWyp6275WLbrAUHi2vJm9f/logo.png new file mode 100644 index 00000000..a3008648 Binary files /dev/null and b/blockchains/polkadot/validators/assets/11AnciffJctDC28odTEjDVYP2yWyp6275WLbrAUHi2vJm9f/logo.png differ diff --git a/blockchains/polkadot/validators/assets/124X3VPduasSodAjS6MPd5nEqM8SUdKN5taMUUPtkWqF1fVf/logo.png b/blockchains/polkadot/validators/assets/124X3VPduasSodAjS6MPd5nEqM8SUdKN5taMUUPtkWqF1fVf/logo.png new file mode 100644 index 00000000..63140c57 Binary files /dev/null and b/blockchains/polkadot/validators/assets/124X3VPduasSodAjS6MPd5nEqM8SUdKN5taMUUPtkWqF1fVf/logo.png differ diff --git a/blockchains/polkadot/validators/assets/12713bbq45c66CN9AD7yusSXWE1kY91DcMpjVcB2rXqZKy2w/logo.png b/blockchains/polkadot/validators/assets/12713bbq45c66CN9AD7yusSXWE1kY91DcMpjVcB2rXqZKy2w/logo.png new file mode 100644 index 00000000..380061b5 Binary files /dev/null and b/blockchains/polkadot/validators/assets/12713bbq45c66CN9AD7yusSXWE1kY91DcMpjVcB2rXqZKy2w/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 00000000..0888af01 Binary files /dev/null and b/blockchains/polkadot/validators/assets/13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61/logo.png differ diff --git a/blockchains/polkadot/validators/assets/14BB4ZbvPadELb1jBhbJq6GbECvBfkxFmohybYexzpE4KMq2/logo.png b/blockchains/polkadot/validators/assets/14BB4ZbvPadELb1jBhbJq6GbECvBfkxFmohybYexzpE4KMq2/logo.png new file mode 100644 index 00000000..638849e3 Binary files /dev/null and b/blockchains/polkadot/validators/assets/14BB4ZbvPadELb1jBhbJq6GbECvBfkxFmohybYexzpE4KMq2/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 00000000..0888af01 Binary files /dev/null and b/blockchains/polkadot/validators/assets/14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb/logo.png differ diff --git a/blockchains/polkadot/validators/assets/14N5GT7YTaDBSsLpfxxtCxNdYfgDofGj5wQSfqC1URKHdT8C/logo.png b/blockchains/polkadot/validators/assets/14N5GT7YTaDBSsLpfxxtCxNdYfgDofGj5wQSfqC1URKHdT8C/logo.png new file mode 100644 index 00000000..1de3d0da Binary files /dev/null and b/blockchains/polkadot/validators/assets/14N5GT7YTaDBSsLpfxxtCxNdYfgDofGj5wQSfqC1URKHdT8C/logo.png differ diff --git a/blockchains/polkadot/validators/assets/14QBQABMSFBsT3pDTaEQdshq7ZLmhzKiae2weZH45pw5ErYu/logo.png b/blockchains/polkadot/validators/assets/14QBQABMSFBsT3pDTaEQdshq7ZLmhzKiae2weZH45pw5ErYu/logo.png new file mode 100644 index 00000000..18135362 Binary files /dev/null and b/blockchains/polkadot/validators/assets/14QBQABMSFBsT3pDTaEQdshq7ZLmhzKiae2weZH45pw5ErYu/logo.png differ diff --git a/blockchains/polkadot/validators/assets/14ShUZUYUR35RBZW6uVVt1zXDxmSQddkeDdXf1JkMA6P721N/logo.png b/blockchains/polkadot/validators/assets/14ShUZUYUR35RBZW6uVVt1zXDxmSQddkeDdXf1JkMA6P721N/logo.png new file mode 100644 index 00000000..80f8b6ad Binary files /dev/null and b/blockchains/polkadot/validators/assets/14ShUZUYUR35RBZW6uVVt1zXDxmSQddkeDdXf1JkMA6P721N/logo.png differ diff --git a/blockchains/polkadot/validators/assets/14Y4s6V1PWrwBLvxW47gcYgZCGTYekmmzvFsK1kiqNH2d84t/logo.png b/blockchains/polkadot/validators/assets/14Y4s6V1PWrwBLvxW47gcYgZCGTYekmmzvFsK1kiqNH2d84t/logo.png new file mode 100644 index 00000000..9421d4f5 Binary files /dev/null and b/blockchains/polkadot/validators/assets/14Y4s6V1PWrwBLvxW47gcYgZCGTYekmmzvFsK1kiqNH2d84t/logo.png differ diff --git a/blockchains/polkadot/validators/assets/153YD8ZHD9dRh82U419bSCB5SzWhbdAFzjj4NtA5pMazR2yC/logo.png b/blockchains/polkadot/validators/assets/153YD8ZHD9dRh82U419bSCB5SzWhbdAFzjj4NtA5pMazR2yC/logo.png new file mode 100644 index 00000000..24a6dfaf Binary files /dev/null and b/blockchains/polkadot/validators/assets/153YD8ZHD9dRh82U419bSCB5SzWhbdAFzjj4NtA5pMazR2yC/logo.png differ diff --git a/blockchains/polkadot/validators/assets/15BQUqtqhmqJPyvvEH5GYyWffXWKuAgoSUHuG1UeNdb8oDNT/logo.png b/blockchains/polkadot/validators/assets/15BQUqtqhmqJPyvvEH5GYyWffXWKuAgoSUHuG1UeNdb8oDNT/logo.png new file mode 100644 index 00000000..abf55c52 Binary files /dev/null and b/blockchains/polkadot/validators/assets/15BQUqtqhmqJPyvvEH5GYyWffXWKuAgoSUHuG1UeNdb8oDNT/logo.png differ diff --git a/blockchains/polkadot/validators/assets/15FdawBwokuor5wzU2DAU2Cp8i9DwRS1HTNgTNDAbcXuAEXH/logo.png b/blockchains/polkadot/validators/assets/15FdawBwokuor5wzU2DAU2Cp8i9DwRS1HTNgTNDAbcXuAEXH/logo.png new file mode 100644 index 00000000..b13ecd54 Binary files /dev/null and b/blockchains/polkadot/validators/assets/15FdawBwokuor5wzU2DAU2Cp8i9DwRS1HTNgTNDAbcXuAEXH/logo.png differ diff --git a/blockchains/polkadot/validators/assets/15ML93PH72j5fFfqLrXRy7uDh7pUBCTUcSVYbaDV18LaTfeW/logo.png b/blockchains/polkadot/validators/assets/15ML93PH72j5fFfqLrXRy7uDh7pUBCTUcSVYbaDV18LaTfeW/logo.png new file mode 100644 index 00000000..2bd3a1e2 Binary files /dev/null and b/blockchains/polkadot/validators/assets/15ML93PH72j5fFfqLrXRy7uDh7pUBCTUcSVYbaDV18LaTfeW/logo.png differ diff --git a/blockchains/polkadot/validators/assets/15R1Th3ULXAq81QPGeEDfE1ywbw19AjZiARxH7czm83wS2w2/logo.png b/blockchains/polkadot/validators/assets/15R1Th3ULXAq81QPGeEDfE1ywbw19AjZiARxH7czm83wS2w2/logo.png new file mode 100644 index 00000000..0f6305d8 Binary files /dev/null and b/blockchains/polkadot/validators/assets/15R1Th3ULXAq81QPGeEDfE1ywbw19AjZiARxH7czm83wS2w2/logo.png differ diff --git a/blockchains/polkadot/validators/assets/15SPD9eHQPxwKFn6dBLewyDuoo4wcQeByocub1DTWyXjx5k3/logo.png b/blockchains/polkadot/validators/assets/15SPD9eHQPxwKFn6dBLewyDuoo4wcQeByocub1DTWyXjx5k3/logo.png new file mode 100644 index 00000000..c51d2ef1 Binary files /dev/null and b/blockchains/polkadot/validators/assets/15SPD9eHQPxwKFn6dBLewyDuoo4wcQeByocub1DTWyXjx5k3/logo.png differ diff --git a/blockchains/polkadot/validators/assets/15fU523Wq5BCt2NWAmrCU6p8nFB29uVifeG7bwYJHbw5Mmd9/logo.png b/blockchains/polkadot/validators/assets/15fU523Wq5BCt2NWAmrCU6p8nFB29uVifeG7bwYJHbw5Mmd9/logo.png new file mode 100644 index 00000000..34a78718 Binary files /dev/null and b/blockchains/polkadot/validators/assets/15fU523Wq5BCt2NWAmrCU6p8nFB29uVifeG7bwYJHbw5Mmd9/logo.png differ diff --git a/blockchains/polkadot/validators/assets/15kkg1mK1tCGgqqo3c1CghtKCQsBEAPPjYNNmmRT3r29FeRX/logo.png b/blockchains/polkadot/validators/assets/15kkg1mK1tCGgqqo3c1CghtKCQsBEAPPjYNNmmRT3r29FeRX/logo.png new file mode 100644 index 00000000..c92842ff Binary files /dev/null and b/blockchains/polkadot/validators/assets/15kkg1mK1tCGgqqo3c1CghtKCQsBEAPPjYNNmmRT3r29FeRX/logo.png differ diff --git a/blockchains/polkadot/validators/assets/1653t723BHhC2krGCFKUUNDQb5sUafy5pZvKVwnwo1oMAMi7/logo.png b/blockchains/polkadot/validators/assets/1653t723BHhC2krGCFKUUNDQb5sUafy5pZvKVwnwo1oMAMi7/logo.png new file mode 100644 index 00000000..91a296ed Binary files /dev/null and b/blockchains/polkadot/validators/assets/1653t723BHhC2krGCFKUUNDQb5sUafy5pZvKVwnwo1oMAMi7/logo.png differ diff --git a/blockchains/polkadot/validators/assets/16GDRhRYxk42paoK6TfHAqWej8PdDDUwdDazjv4bAn4KGNeb/logo.png b/blockchains/polkadot/validators/assets/16GDRhRYxk42paoK6TfHAqWej8PdDDUwdDazjv4bAn4KGNeb/logo.png new file mode 100644 index 00000000..246e9b71 Binary files /dev/null and b/blockchains/polkadot/validators/assets/16GDRhRYxk42paoK6TfHAqWej8PdDDUwdDazjv4bAn4KGNeb/logo.png differ diff --git a/blockchains/polkadot/validators/assets/16SpacegeUTft9v3ts27CEC3tJaxgvE4uZeCctThFH3Vb24p/logo.png b/blockchains/polkadot/validators/assets/16SpacegeUTft9v3ts27CEC3tJaxgvE4uZeCctThFH3Vb24p/logo.png new file mode 100644 index 00000000..12ce4ceb Binary files /dev/null and b/blockchains/polkadot/validators/assets/16SpacegeUTft9v3ts27CEC3tJaxgvE4uZeCctThFH3Vb24p/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 00000000..9b28ec00 Binary files /dev/null and b/blockchains/polkadot/validators/assets/16cDjCXSYGRDpEett39taTgMAN7LKnyaafa5MgfbUmpsERW8/logo.png differ diff --git a/blockchains/polkadot/validators/assets/1REAJ1k691g5Eqqg9gL7vvZCBG7FCCZ8zgQkZWd4va5ESih/logo.png b/blockchains/polkadot/validators/assets/1REAJ1k691g5Eqqg9gL7vvZCBG7FCCZ8zgQkZWd4va5ESih/logo.png new file mode 100644 index 00000000..cceeb69c Binary files /dev/null and b/blockchains/polkadot/validators/assets/1REAJ1k691g5Eqqg9gL7vvZCBG7FCCZ8zgQkZWd4va5ESih/logo.png differ diff --git a/blockchains/polkadot/validators/assets/1RG5T6zGY4XovW75mTgpH6Bx7Y6uwwMmPToMCJSdMwdm4EW/logo.png b/blockchains/polkadot/validators/assets/1RG5T6zGY4XovW75mTgpH6Bx7Y6uwwMmPToMCJSdMwdm4EW/logo.png new file mode 100644 index 00000000..79755281 Binary files /dev/null and b/blockchains/polkadot/validators/assets/1RG5T6zGY4XovW75mTgpH6Bx7Y6uwwMmPToMCJSdMwdm4EW/logo.png differ diff --git a/blockchains/polkadot/validators/assets/1WG3jyNqniQMRZGQUc7QD2kVLT8hkRPGMSqAb5XYQM1UDxN/logo.png b/blockchains/polkadot/validators/assets/1WG3jyNqniQMRZGQUc7QD2kVLT8hkRPGMSqAb5XYQM1UDxN/logo.png new file mode 100644 index 00000000..81174a1b Binary files /dev/null and b/blockchains/polkadot/validators/assets/1WG3jyNqniQMRZGQUc7QD2kVLT8hkRPGMSqAb5XYQM1UDxN/logo.png differ diff --git a/blockchains/polkadot/validators/assets/1dGsgLgFez7gt5WjX2FYzNCJtaCjGG6W9dA42d9cHngDYGg/logo.png b/blockchains/polkadot/validators/assets/1dGsgLgFez7gt5WjX2FYzNCJtaCjGG6W9dA42d9cHngDYGg/logo.png new file mode 100644 index 00000000..b0168a3c Binary files /dev/null and b/blockchains/polkadot/validators/assets/1dGsgLgFez7gt5WjX2FYzNCJtaCjGG6W9dA42d9cHngDYGg/logo.png differ diff --git a/blockchains/polkadot/validators/assets/1hJdgnAPSjfuHZFHzcorPnFvekSHihK9jdNPWHXgeuL7zaJ/logo.png b/blockchains/polkadot/validators/assets/1hJdgnAPSjfuHZFHzcorPnFvekSHihK9jdNPWHXgeuL7zaJ/logo.png new file mode 100644 index 00000000..769b8f54 Binary files /dev/null and b/blockchains/polkadot/validators/assets/1hJdgnAPSjfuHZFHzcorPnFvekSHihK9jdNPWHXgeuL7zaJ/logo.png differ diff --git a/blockchains/polkadot/validators/assets/1pbMtabBc9MNJcam4o8uHGymybvPcnkU5AGmpSmUpms7SWh/logo.png b/blockchains/polkadot/validators/assets/1pbMtabBc9MNJcam4o8uHGymybvPcnkU5AGmpSmUpms7SWh/logo.png new file mode 100644 index 00000000..83d98fe6 Binary files /dev/null and b/blockchains/polkadot/validators/assets/1pbMtabBc9MNJcam4o8uHGymybvPcnkU5AGmpSmUpms7SWh/logo.png differ diff --git a/blockchains/polkadot/validators/assets/1zugcapKRuHy2C1PceJxTvXWiq6FHEDm2xa5XSU7KYP3rJE/logo.png b/blockchains/polkadot/validators/assets/1zugcapKRuHy2C1PceJxTvXWiq6FHEDm2xa5XSU7KYP3rJE/logo.png new file mode 100644 index 00000000..a3915650 Binary files /dev/null and b/blockchains/polkadot/validators/assets/1zugcapKRuHy2C1PceJxTvXWiq6FHEDm2xa5XSU7KYP3rJE/logo.png differ diff --git a/blockchains/polkadot/validators/list.json b/blockchains/polkadot/validators/list.json new file mode 100644 index 00000000..32b13775 --- /dev/null +++ b/blockchains/polkadot/validators/list.json @@ -0,0 +1,170 @@ +[ + { + "id": "1hJdgnAPSjfuHZFHzcorPnFvekSHihK9jdNPWHXgeuL7zaJ", + "name": "Listen", + "description": "", + "website": "https://listen.io" + }, + { + "id": "14BB4ZbvPadELb1jBhbJq6GbECvBfkxFmohybYexzpE4KMq2", + "name": "DICO", + "description": "", + "website": "https://dico.io" + }, + { + "id": "1pbMtabBc9MNJcam4o8uHGymybvPcnkU5AGmpSmUpms7SWh", + "name": "Web3 Venture Capital", + "description": "", + "website": "https://web3.vc" + }, + { + "id": "14Y4s6V1PWrwBLvxW47gcYgZCGTYekmmzvFsK1kiqNH2d84t", + "name": "RockX_Polkadot", + "description": "", + "website": "https://www.rockx.com" + }, + { + "id": "15FdawBwokuor5wzU2DAU2Cp8i9DwRS1HTNgTNDAbcXuAEXH", + "name": "IPSE", + "description": "", + "website": "https://ipfssearch.io" + }, + { + "id": "14ShUZUYUR35RBZW6uVVt1zXDxmSQddkeDdXf1JkMA6P721N", + "name": "Wei", + "description": "", + "website": "https://that.world/~wei/" + }, + { + "id": "15BQUqtqhmqJPyvvEH5GYyWffXWKuAgoSUHuG1UeNdb8oDNT", + "name": "HashQuark", + "description": "", + "website": "https://hashquark.io" + }, + { + "id": "153YD8ZHD9dRh82U419bSCB5SzWhbdAFzjj4NtA5pMazR2yC", + "name": "SAXEMBERG", + "description": "", + "website": "https://saxemberg.com/" + }, + { + "id": "1653t723BHhC2krGCFKUUNDQb5sUafy5pZvKVwnwo1oMAMi7", + "name": "Staked", + "description": "", + "website": "https://staked.us" + }, + { + "id": "1WG3jyNqniQMRZGQUc7QD2kVLT8hkRPGMSqAb5XYQM1UDxN", + "name": "DokiaCapital", + "description": "", + "website": "https://staking.dokia.cloud" + }, + { + "id": "1zugcapKRuHy2C1PceJxTvXWiq6FHEDm2xa5XSU7KYP3rJE", + "name": "Zug Capital", + "description": "", + "website": "https://zugcapital.com" + }, + { + "id": "15kkg1mK1tCGgqqo3c1CghtKCQsBEAPPjYNNmmRT3r29FeRX", + "name": "ANAMIX", + "description": "", + "website": "https://anamix.top/" + }, + { + "id": "14QBQABMSFBsT3pDTaEQdshq7ZLmhzKiae2weZH45pw5ErYu", + "name": "P2P.ORG", + "description": "", + "website": "https://p2p.org" + }, + { + "id": "16GDRhRYxk42paoK6TfHAqWej8PdDDUwdDazjv4bAn4KGNeb", + "name": "CLOUDWALK", + "description": "", + "website": "https://cp0x.com" + }, + { + "id": "12713bbq45c66CN9AD7yusSXWE1kY91DcMpjVcB2rXqZKy2w", + "name": "🔒stateless_money🔒", + "description": "", + "website": "https://www.stateless.money/" + }, + { + "id": "1REAJ1k691g5Eqqg9gL7vvZCBG7FCCZ8zgQkZWd4va5ESih", + "name": "Polkadot.pro - Realgar", + "description": "", + "website": "https://polkadot.pro" + }, + { + "id": "15fU523Wq5BCt2NWAmrCU6p8nFB29uVifeG7bwYJHbw5Mmd9", + "name": "SNZPool-1", + "description": "", + "website": "https://snzholding.com" + }, + { + "id": "1dGsgLgFez7gt5WjX2FYzNCJtaCjGG6W9dA42d9cHngDYGg", + "name": "DragonStake 🐲", + "description": "", + "website": "https://dragonstake.io" + }, + { + "id": "1RG5T6zGY4XovW75mTgpH6Bx7Y6uwwMmPToMCJSdMwdm4EW", + "name": "IOSG Ventures", + "description": "", + "website": "https://iosg.vc" + }, + { + "id": "16SpacegeUTft9v3ts27CEC3tJaxgvE4uZeCctThFH3Vb24p", + "name": "Staker Space", + "description": "", + "website": "https://staker.space" + }, + { + "id": "14N5GT7YTaDBSsLpfxxtCxNdYfgDofGj5wQSfqC1URKHdT8C", + "name": "RockX_Polkadot3", + "description": "", + "website": "https://www.rockx.com" + }, + { + "id": "15SPD9eHQPxwKFn6dBLewyDuoo4wcQeByocub1DTWyXjx5k3", + "name": "Earn Stash", + "description": "Stake with us to earn more. High reliability. Low commission. Experienced node operator.", + "website": "https://www.earnstash.com" + }, + { + "id": "124X3VPduasSodAjS6MPd5nEqM8SUdKN5taMUUPtkWqF1fVf", + "name": "Stakepile", + "description": "Stakepile - Grow your stake pile with us. We also stake KSM, OSMO, JUNO, KAVA, COMDEX, HUAHUA", + "website": "https://www.stakepile.com" + }, + { + "id": "15R1Th3ULXAq81QPGeEDfE1ywbw19AjZiARxH7czm83wS2w2", + "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": "15ML93PH72j5fFfqLrXRy7uDh7pUBCTUcSVYbaDV18LaTfeW", + "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 00000000..d6d3514f --- /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 00000000..b41ffbfb 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 00000000..3ef726a3 --- /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 00000000..759db2e9 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 00000000..64727da4 --- /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 00000000..a0fd0bd2 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 00000000..1ae121b6 --- /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 00000000..dbf1b942 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 new file mode 100644 index 00000000..35c4fae2 --- /dev/null +++ b/blockchains/polygon/assets/0x05089C9EBFFa4F0AcA269e32056b1b36B37ED71b/info.json @@ -0,0 +1,33 @@ +{ + "name": "Krill", + "website": "https://polywhale.finance/", + "description": "PolyWhale is a popular yield farm on Polygon that allows users to earn KRILL through yield farming, then stakes it in Nests to earn more tokens.", + "explorer": "https://polygonscan.com/token/0x05089c9ebffa4f0aca269e32056b1b36b37ed71b", + "type": "POLYGON", + "symbol": "Krill", + "decimals": 18, + "status": "active", + "id": "0x05089C9EBFFa4F0AcA269e32056b1b36B37ED71b", + "links": [ + { + "name": "github", + "url": "https://github.com/polywhalefarm/contracts" + }, + { + "name": "x", + "url": "https://x.com/polywhalefi" + }, + { + "name": "telegram", + "url": "https://t.me/polywhale" + }, + { + "name": "medium", + "url": "https://medium.com/polywhale" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/polywhale" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x05089C9EBFFa4F0AcA269e32056b1b36B37ED71b/logo.png b/blockchains/polygon/assets/0x05089C9EBFFa4F0AcA269e32056b1b36B37ED71b/logo.png new file mode 100644 index 00000000..7e94ff53 Binary files /dev/null and b/blockchains/polygon/assets/0x05089C9EBFFa4F0AcA269e32056b1b36B37ED71b/logo.png differ diff --git a/blockchains/polygon/assets/0x08C15FA26E519A78a666D19CE5C646D55047e0a3/info.json b/blockchains/polygon/assets/0x08C15FA26E519A78a666D19CE5C646D55047e0a3/info.json new file mode 100644 index 00000000..a7be0a5d --- /dev/null +++ b/blockchains/polygon/assets/0x08C15FA26E519A78a666D19CE5C646D55047e0a3/info.json @@ -0,0 +1,32 @@ +{ + "name": "dForce", + "type": "POLYGON", + "symbol": "DF", + "decimals": 18, + "website": "http://dforce.network/", + "description": "dForce advocates for building an integrated and interoperable and scalable open finance protocol network, cultivating intra-protocol liquidity and network effects, while remain in full openness to interact and integrated with other protocols.", + "explorer": "https://polygonscan.com/token/0x08C15FA26E519A78a666D19CE5C646D55047e0a3", + "status": "active", + "id": "0x08C15FA26E519A78a666D19CE5C646D55047e0a3", + "links": [ + { + "name": "telegram", + "url": "https://t.me/dforcenet" + }, + { + "name": "github", + "url": "https://github.com/dforce-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dforce-token/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dforce/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x08C15FA26E519A78a666D19CE5C646D55047e0a3/logo.png b/blockchains/polygon/assets/0x08C15FA26E519A78a666D19CE5C646D55047e0a3/logo.png new file mode 100644 index 00000000..36fcfbc4 Binary files /dev/null and b/blockchains/polygon/assets/0x08C15FA26E519A78a666D19CE5C646D55047e0a3/logo.png differ diff --git a/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/info.json b/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/info.json new file mode 100644 index 00000000..8e1e366f --- /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 00000000..64407062 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 00000000..41f81b0a --- /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 00000000..5dd9cbe1 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 00000000..ff25eb8d --- /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 00000000..65f79b0b 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 00000000..1bc93452 --- /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 00000000..fbb99790 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 00000000..0190808c --- /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 00000000..be1b6bf2 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 00000000..33945a4c --- /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 00000000..0a3ef5da 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 new file mode 100644 index 00000000..c85fa9fa --- /dev/null +++ b/blockchains/polygon/assets/0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58/info.json @@ -0,0 +1,56 @@ +{ + "name": "Ankr Staked MATIC", + "type": "POLYGON", + "symbol": "ankrMATIC", + "decimals": 18, + "website": "https://ankr.com", + "description": "ankrMATIC represents your staked MATIC and provides liquidity for your staked position. All staking rewards are built into the token price, and ankrMATIC grows daily in value, but never in number", + "explorer": "https://polygonscan.com/token/0x0e9b89007eee9c958c0eda24ef70723c2c93dd58", + "status": "active", + "id": "0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58", + "links": [ + { + "name": "x", + "url": "https://x.com/ankr" + }, + { + "name": "github", + "url": "https://github.com/Ankr-network" + }, + { + "name": "telegram", + "url": "https://t.me/ankrnetwork" + }, + { + "name": "docs", + "url": "https://ankr.com/docs/staking/overview" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Ankrofficial/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@AnkrOfficial" + }, + { + "name": "whitepaper", + "url": "https://ankr.com/ankr-whitepaper-2.0.pdf" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ankr" + }, + { + "name": "medium", + "url": "https://medium.com/ankr-network" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ankr-staked-matic" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58/logo.png b/blockchains/polygon/assets/0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58/logo.png new file mode 100644 index 00000000..22d28ab4 Binary files /dev/null and b/blockchains/polygon/assets/0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58/logo.png differ diff --git a/blockchains/polygon/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json b/blockchains/polygon/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json new file mode 100644 index 00000000..c1452527 --- /dev/null +++ b/blockchains/polygon/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json @@ -0,0 +1,33 @@ +{ + "name": "Impossible Finance", + "website": "https://invest.impossible.finance/launchpad", + "description": "Impossible Finance is a builder-focused multichain ecosystem featuring decentralized incubator, launchpad, and swap. The IDIA token is the core governance and access token for allocation into our launchpad sales. Users can stake the IDIA token into a variety of sectors and categories to secure allocation into the top project teams launching on Impossible.", + "explorer": "https://polygonscan.com/token/0x0b15ddf19d47e6a86a56148fb4afffc6929bcb89", + "type": "POLYGON", + "symbol": "IDIA", + "decimals": 18, + "status": "active", + "id": "0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89", + "links": [ + { + "name": "github", + "url": "https://github.com/impossiblefinance" + }, + { + "name": "x", + "url": "https://x.com/impossiblefi" + }, + { + "name": "blog", + "url": "https://medium.com/impossiblefinance" + }, + { + "name": "telegram", + "url": "https://t.me/ImpossibleFinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/impossible-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/logo.png b/blockchains/polygon/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/logo.png new file mode 100644 index 00000000..472303c8 Binary files /dev/null and b/blockchains/polygon/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/logo.png differ diff --git a/blockchains/polygon/assets/0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a/info.json b/blockchains/polygon/assets/0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a/info.json new file mode 100644 index 00000000..c9ca03e6 --- /dev/null +++ b/blockchains/polygon/assets/0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a/info.json @@ -0,0 +1,29 @@ +{ + "name": "SushiToken (PoS)", + "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", + "type": "POLYGON", + "symbol": "SUSHI", + "decimals": 18, + "status": "active", + "id": "0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a", + "links": [ + { + "name": "github", + "url": "https://github.com/sushiswap" + }, + { + "name": "x", + "url": "https://x.com/sushiswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sushiswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sushi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a/logo.png b/blockchains/polygon/assets/0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a/logo.png new file mode 100644 index 00000000..a3d43186 Binary files /dev/null and b/blockchains/polygon/assets/0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a/logo.png differ diff --git a/blockchains/polygon/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json b/blockchains/polygon/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json new file mode 100644 index 00000000..3d2ae1b8 --- /dev/null +++ b/blockchains/polygon/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json @@ -0,0 +1,49 @@ +{ + "name": "EverRise", + "type": "POLYGON", + "symbol": "RISE (old)", + "decimals": 18, + "website": "https://www.everrise.com/", + "description": "The Original Buyback Token Powering The EverRise Ecosystem. EverRise token (RISE) is a multi-chain collateralized cryptocurrency that protects both the ecosystem and investors with its innovative buyback and staking protocol.", + "explorer": "https://polygonscan.com/token/0x0cd022dde27169b20895e0e2b2b8a33b25e63579", + "status": "abandoned", + "id": "0x0cD022ddE27169b20895e0e2B2B8A33B25e63579", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/everrise/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/everrise" + }, + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270/info.json b/blockchains/polygon/assets/0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270/info.json new file mode 100644 index 00000000..e6b07418 --- /dev/null +++ b/blockchains/polygon/assets/0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270/info.json @@ -0,0 +1,25 @@ +{ + "name": "Wrapped MATIC", + "type": "POLYGON", + "symbol": "WMATIC", + "decimals": 18, + "website": "https://polygon.technology", + "description": "Wrapped MATIC", + "explorer": "https://polygonscan.com/token/0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "status": "active", + "id": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "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/polygon/assets/0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270/logo.png b/blockchains/polygon/assets/0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270/logo.png new file mode 100644 index 00000000..6d3c0e9b Binary files /dev/null and b/blockchains/polygon/assets/0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270/logo.png differ diff --git a/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/info.json b/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/info.json new file mode 100644 index 00000000..e7e784ad --- /dev/null +++ b/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/info.json @@ -0,0 +1,56 @@ +{ + "name": "Ankr Network", + "type": "POLYGON", + "symbol": "ANKR", + "decimals": 18, + "website": "https://ankr.com", + "description": "Ankr is building an infrastructure platform and marketplace for Web3-stack deployment", + "explorer": "https://polygonscan.com/token/0x101a023270368c0d50bffb62780f4afd4ea79c35", + "status": "active", + "id": "0x101A023270368c0D50BFfb62780F4aFd4ea79C35", + "links": [ + { + "name": "x", + "url": "https://x.com/ankr" + }, + { + "name": "github", + "url": "https://github.com/Ankr-network" + }, + { + "name": "telegram", + "url": "https://t.me/ankrnetwork" + }, + { + "name": "docs", + "url": "https://ankr.com/docs/staking/overview" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Ankrofficial/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@AnkrOfficial" + }, + { + "name": "whitepaper", + "url": "https://ankr.com/ankr-whitepaper-2.0.pdf" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ankr" + }, + { + "name": "medium", + "url": "https://medium.com/ankr-network" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ankr-network" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/logo.png b/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/logo.png new file mode 100644 index 00000000..1660741a Binary files /dev/null and b/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/logo.png differ diff --git a/blockchains/polygon/assets/0x1132f58810Ee9fF13E97aECCd8DDa688Cc5eb8F4/info.json b/blockchains/polygon/assets/0x1132f58810Ee9fF13E97aECCd8DDa688Cc5eb8F4/info.json new file mode 100644 index 00000000..c52c2c21 --- /dev/null +++ b/blockchains/polygon/assets/0x1132f58810Ee9fF13E97aECCd8DDa688Cc5eb8F4/info.json @@ -0,0 +1,33 @@ +{ + "name": "SpaceRat", + "website": "https://spacerat.finance/", + "description": "SpaceRat is a community-driven project built on Matic Network. Three functions occur during each trade: Reflection, LP Acquisition, & Burn.", + "explorer": "https://polygonscan.com/token/0x1132f58810ee9ff13e97aeccd8dda688cc5eb8f4", + "type": "POLYGON", + "symbol": "SRAT", + "decimals": 9, + "status": "active", + "id": "0x1132f58810Ee9fF13E97aECCd8DDa688Cc5eb8F4", + "links": [ + { + "name": "discord", + "url": "https://discord.com/YcdXESeMzK" + }, + { + "name": "x", + "url": "https://x.com/spaceratmatic" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/spacerat/" + }, + { + "name": "medium", + "url": "https://spaceratpolygon.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spacerat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x1132f58810Ee9fF13E97aECCd8DDa688Cc5eb8F4/logo.png b/blockchains/polygon/assets/0x1132f58810Ee9fF13E97aECCd8DDa688Cc5eb8F4/logo.png new file mode 100644 index 00000000..159a641d Binary files /dev/null and b/blockchains/polygon/assets/0x1132f58810Ee9fF13E97aECCd8DDa688Cc5eb8F4/logo.png differ diff --git a/blockchains/polygon/assets/0x11CD37bb86F65419713f30673A480EA33c826872/info.json b/blockchains/polygon/assets/0x11CD37bb86F65419713f30673A480EA33c826872/info.json new file mode 100644 index 00000000..df52dfb8 --- /dev/null +++ b/blockchains/polygon/assets/0x11CD37bb86F65419713f30673A480EA33c826872/info.json @@ -0,0 +1,14 @@ +{ + "name": "Ether (Portal)", + "type": "POLYGON", + "symbol": "ETH", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://ethereum.org/en/", + "explorer": "https://polygonscan.com/token/0x11CD37bb86F65419713f30673A480EA33c826872", + "status": "active", + "id": "0x11CD37bb86F65419713f30673A480EA33c826872", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x11CD37bb86F65419713f30673A480EA33c826872/logo.png b/blockchains/polygon/assets/0x11CD37bb86F65419713f30673A480EA33c826872/logo.png new file mode 100644 index 00000000..2d99a939 Binary files /dev/null and b/blockchains/polygon/assets/0x11CD37bb86F65419713f30673A480EA33c826872/logo.png differ diff --git a/blockchains/polygon/assets/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3/info.json b/blockchains/polygon/assets/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3/info.json new file mode 100644 index 00000000..be34c2d6 --- /dev/null +++ b/blockchains/polygon/assets/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3/info.json @@ -0,0 +1,40 @@ +{ + "name": "Mysterium", + "type": "POLYGON", + "symbol": "MYST", + "decimals": 18, + "website": "https://mysterium.network/", + "description": "MYST is the utility token at the heart of Mysterium Network. MYST is used for frictionless P2P micropayments within the network. If you’re using the VPN, you can pay with MYST token. If you’re a node (provider of the VPN service) you receive MYST. Mysterium has designed its own unique micropayments infrastructure, the Hermes protocol, to facilitate these fast, anonymous, and censorship-resistant transactions.", + "explorer": "https://polygonscan.com/token/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3", + "status": "active", + "id": "0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3", + "links": [ + { + "name": "x", + "url": "https://x.com/MysteriumNet" + }, + { + "name": "telegram", + "url": "https://t.me/Mysterium_Network" + }, + { + "name": "discord", + "url": "https://discord.com/invite/n3vtSwc" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MysteriumNetwork/" + }, + { + "name": "medium", + "url": "https://medium.com/mysterium-network" + }, + { + "name": "github", + "url": "https://github.com/MysteriumNetwork" + } + ], + "tags": [ + "privacy" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3/logo.png b/blockchains/polygon/assets/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3/logo.png new file mode 100644 index 00000000..ad16c843 Binary files /dev/null and b/blockchains/polygon/assets/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3/logo.png differ diff --git a/blockchains/polygon/assets/0x137Ee749f0F8c2eD34cA00dE33BB59E3dafA494A/info.json b/blockchains/polygon/assets/0x137Ee749f0F8c2eD34cA00dE33BB59E3dafA494A/info.json new file mode 100644 index 00000000..4977afa3 --- /dev/null +++ b/blockchains/polygon/assets/0x137Ee749f0F8c2eD34cA00dE33BB59E3dafA494A/info.json @@ -0,0 +1,41 @@ +{ + "name": "Wrapped CCX", + "website": "https://conceal.network/", + "description": "Wrapped Conceal ($wCCX) is just a representation of ₡CCX on any of the available bridged ecosystems — a tokenized ₡CCX. Exactly one $wCCX will always represent (or equal) one ₡CCX.", + "explorer": "https://polygonscan.com/token/0x137ee749f0f8c2ed34ca00de33bb59e3dafa494a", + "type": "POLYGON", + "symbol": "wCCX", + "decimals": 6, + "status": "active", + "id": "0x137Ee749f0F8c2eD34cA00dE33BB59E3dafA494A", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/YbpHVSd" + }, + { + "name": "telegram", + "url": "https://t.me/concealnetworkusers" + }, + { + "name": "x", + "url": "https://x.com/ConcealNetwork" + }, + { + "name": "github", + "url": "https://github.com/sushiswap" + }, + { + "name": "medium", + "url": "https://concealnetwork.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-conceal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-conceal/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x137Ee749f0F8c2eD34cA00dE33BB59E3dafA494A/logo.png b/blockchains/polygon/assets/0x137Ee749f0F8c2eD34cA00dE33BB59E3dafA494A/logo.png new file mode 100644 index 00000000..b9f69da4 Binary files /dev/null and b/blockchains/polygon/assets/0x137Ee749f0F8c2eD34cA00dE33BB59E3dafA494A/logo.png differ diff --git a/blockchains/polygon/assets/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d/info.json b/blockchains/polygon/assets/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d/info.json new file mode 100644 index 00000000..22017fc6 --- /dev/null +++ b/blockchains/polygon/assets/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d/info.json @@ -0,0 +1,36 @@ +{ + "name": "Clever Minu", + "type": "POLYGON", + "symbol": "CLEVERMINU", + "decimals": 9, + "website": "https://www.cleverminu.com/", + "description": "This is a community based token that puts you first and opens up a new world in the world of cryptocurrencies and tokens.", + "explorer": "https://polygonscan.com/token/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d", + "status": "active", + "id": "0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d", + "links": [ + { + "name": "x", + "url": "https://x.com/cleverminu" + }, + { + "name": "github", + "url": "https://github.com/cleverminu" + }, + { + "name": "telegram", + "url": "https://t.me/Cleverminu" + }, + { + "name": "medium", + "url": "https://medium.com/@clevertokenfinance" + }, + { + "name": "whitepaper", + "url": "https://www.cleverminu.com/assets/whitepaper/English/cleverpaper.pdf" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d/logo.png b/blockchains/polygon/assets/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d/logo.png new file mode 100644 index 00000000..f464fd0a Binary files /dev/null and b/blockchains/polygon/assets/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d/logo.png differ diff --git a/blockchains/polygon/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/info.json b/blockchains/polygon/assets/0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05/info.json new file mode 100644 index 00000000..cd1ec4d4 --- /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 00000000..78f54c92 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 new file mode 100644 index 00000000..28239a4f --- /dev/null +++ b/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/info.json @@ -0,0 +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.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 new file mode 100644 index 00000000..5bc8414c Binary files /dev/null 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 new file mode 100644 index 00000000..621fb4f7 --- /dev/null +++ b/blockchains/polygon/assets/0x1659fFb2d40DfB1671Ac226A0D9Dcc95A774521A/info.json @@ -0,0 +1,36 @@ +{ + "name": "Daily COP", + "website": "https://dlycrypto.com/", + "description": "Daily COP is a stablecoin pegged to the Colombian Peso to make financial services accesible to everyone and let Colombians easily enter the crypto-space with a familiar and stable currency that will open a new world of knowledge and opportunities.", + "explorer": "https://polygonscan.com/token/0x1659fFb2d40DfB1671Ac226A0D9Dcc95A774521A", + "type": "POLYGON", + "symbol": "DLYCOP", + "decimals": 18, + "status": "active", + "id": "0x1659fFb2d40DfB1671Ac226A0D9Dcc95A774521A", + "links": [ + { + "name": "x", + "url": "https://x.com/MiDailyWallet" + }, + { + "name": "github", + "url": "https://github.com/miDaily/Daily-COP" + }, + { + "name": "whitepaper", + "url": "https://dlycrypto.com/wp-content/uploads/2022/01/Whitepaper-daily.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/daily-cop/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/daily-cop" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x1659fFb2d40DfB1671Ac226A0D9Dcc95A774521A/logo.png b/blockchains/polygon/assets/0x1659fFb2d40DfB1671Ac226A0D9Dcc95A774521A/logo.png new file mode 100644 index 00000000..1db124af Binary files /dev/null and b/blockchains/polygon/assets/0x1659fFb2d40DfB1671Ac226A0D9Dcc95A774521A/logo.png differ diff --git a/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/info.json b/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/info.json new file mode 100644 index 00000000..3a2862e9 --- /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 00000000..ee3475dc 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 new file mode 100644 index 00000000..d3b4a701 --- /dev/null +++ b/blockchains/polygon/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/info.json @@ -0,0 +1,33 @@ +{ + "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://polygonscan.com/token/0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4", + "type": "POLYGON", + "symbol": "ROUTE", + "decimals": 18, + "status": "active", + "id": "0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4", + "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" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/logo.png b/blockchains/polygon/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/logo.png new file mode 100644 index 00000000..45d5fa65 Binary files /dev/null and b/blockchains/polygon/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/logo.png differ diff --git a/blockchains/polygon/assets/0x172370d5Cd63279eFa6d502DAB29171933a610AF/info.json b/blockchains/polygon/assets/0x172370d5Cd63279eFa6d502DAB29171933a610AF/info.json new file mode 100644 index 00000000..2687c3eb --- /dev/null +++ b/blockchains/polygon/assets/0x172370d5Cd63279eFa6d502DAB29171933a610AF/info.json @@ -0,0 +1,29 @@ +{ + "name": "CRV (PoS)", + "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", + "symbol": "CRV", + "decimals": 18, + "status": "active", + "id": "0x172370d5Cd63279eFa6d502DAB29171933a610AF", + "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": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/curve-dao-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x172370d5Cd63279eFa6d502DAB29171933a610AF/logo.png b/blockchains/polygon/assets/0x172370d5Cd63279eFa6d502DAB29171933a610AF/logo.png new file mode 100644 index 00000000..a5d633da Binary files /dev/null and b/blockchains/polygon/assets/0x172370d5Cd63279eFa6d502DAB29171933a610AF/logo.png differ diff --git a/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/info.json b/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/info.json new file mode 100644 index 00000000..802cc141 --- /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 00000000..6c8acd08 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 new file mode 100644 index 00000000..4218dfd8 --- /dev/null +++ b/blockchains/polygon/assets/0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603/info.json @@ -0,0 +1,33 @@ +{ + "name": "WOO Network", + "type": "POLYGON", + "symbol": "WOO", + "decimals": 18, + "website": "https://woo.network", + "description": "Wootrade is a layer one trading infrastructure complete with deep liquidity, frontend trading GUI, and the ability to integrate into any exchange, trading desk, wallet, dApp, or other trading-related platform.", + "explorer": "https://polygonscan.com/token/0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603", + "status": "active", + "id": "0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603", + "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/polygon/assets/0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603/logo.png b/blockchains/polygon/assets/0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603/logo.png new file mode 100644 index 00000000..6a4f498c Binary files /dev/null and b/blockchains/polygon/assets/0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603/logo.png differ diff --git a/blockchains/polygon/assets/0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8/info.json b/blockchains/polygon/assets/0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8/info.json new file mode 100644 index 00000000..ff38544c --- /dev/null +++ b/blockchains/polygon/assets/0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped 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 00000000..cd5ca436 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 00000000..c54e571a --- /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 00000000..702d64a2 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 00000000..d60fd866 --- /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 00000000..dcd42863 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 new file mode 100644 index 00000000..32f33a91 --- /dev/null +++ b/blockchains/polygon/assets/0x1f194578e7510A350fb517a9ce63C40Fa1899427/info.json @@ -0,0 +1,32 @@ +{ + "name": "Stable BTC", + "website": "app.ichi.org", + "description": "oneBTC is an ICHI-created stablecoin backed by USDC and wBTC.", + "explorer": "https://polygonscan.com/token/0x1f194578e7510A350fb517a9ce63C40Fa1899427", + "type": "POLYGON", + "symbol": "oneBTC", + "decimals": 18, + "status": "active", + "id": "0x1f194578e7510A350fb517a9ce63C40Fa1899427", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm/ichi-oneToken" + }, + { + "name": "x", + "url": "https://x.com/ichifoundation" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x1f194578e7510A350fb517a9ce63C40Fa1899427/logo.png b/blockchains/polygon/assets/0x1f194578e7510A350fb517a9ce63C40Fa1899427/logo.png new file mode 100644 index 00000000..bfc95690 Binary files /dev/null and b/blockchains/polygon/assets/0x1f194578e7510A350fb517a9ce63C40Fa1899427/logo.png differ diff --git a/blockchains/polygon/assets/0x229b1b6C23ff8953D663C4cBB519717e323a0a84/info.json b/blockchains/polygon/assets/0x229b1b6C23ff8953D663C4cBB519717e323a0a84/info.json new file mode 100644 index 00000000..8d64550f --- /dev/null +++ b/blockchains/polygon/assets/0x229b1b6C23ff8953D663C4cBB519717e323a0a84/info.json @@ -0,0 +1,25 @@ +{ + "name": "BLOK", + "website": "https://www.bloktopia.com/", + "description": "Bloktopia is a Skyscraper Metaverse built and Backed by Polygon.", + "explorer": "https://polygonscan.com/token/0x229b1b6C23ff8953D663C4cBB519717e323a0a84", + "type": "POLYGON", + "symbol": "BLOK", + "decimals": 18, + "status": "active", + "id": "0x229b1b6C23ff8953D663C4cBB519717e323a0a84", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BloktopiaChat" + }, + { + "name": "x", + "url": "https://x.com/bloktopia" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bloktopia/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x229b1b6C23ff8953D663C4cBB519717e323a0a84/logo.png b/blockchains/polygon/assets/0x229b1b6C23ff8953D663C4cBB519717e323a0a84/logo.png new file mode 100644 index 00000000..43122282 Binary files /dev/null and b/blockchains/polygon/assets/0x229b1b6C23ff8953D663C4cBB519717e323a0a84/logo.png differ diff --git a/blockchains/polygon/assets/0x235737dBb56e8517391473f7c964DB31fA6ef280/info.json b/blockchains/polygon/assets/0x235737dBb56e8517391473f7c964DB31fA6ef280/info.json new file mode 100644 index 00000000..9cb74ea3 --- /dev/null +++ b/blockchains/polygon/assets/0x235737dBb56e8517391473f7c964DB31fA6ef280/info.json @@ -0,0 +1,29 @@ +{ + "name": "Kasta", + "type": "POLYGON", + "symbol": "KASTA", + "decimals": 18, + "website": "https://www.kasta.io/", + "description": "$Kasta is redefining the current understanding of digital payments.", + "explorer": "https://polygonscan.com/token/0x235737dbb56e8517391473f7c964db31fa6ef280", + "status": "active", + "id": "0x235737dBb56e8517391473f7c964DB31fA6ef280", + "links": [ + { + "name": "github", + "url": "https://github.com/kasta-io" + }, + { + "name": "x", + "url": "https://x.com/kasta_app" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kasta/" + }, + { + "name": "telegram", + "url": "https://t.me/kasta_announcements" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x235737dBb56e8517391473f7c964DB31fA6ef280/logo.png b/blockchains/polygon/assets/0x235737dBb56e8517391473f7c964DB31fA6ef280/logo.png new file mode 100644 index 00000000..c1de6089 Binary files /dev/null and b/blockchains/polygon/assets/0x235737dBb56e8517391473f7c964DB31fA6ef280/logo.png differ diff --git a/blockchains/polygon/assets/0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C/info.json b/blockchains/polygon/assets/0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C/info.json new file mode 100644 index 00000000..16d07836 --- /dev/null +++ b/blockchains/polygon/assets/0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C/info.json @@ -0,0 +1,28 @@ +{ + "name": "HEX", + "type": "POLYGON", + "symbol": "HEX", + "decimals": 8, + "website": "https://hex.com/", + "description": "HEX.com averages 25% APY interest recently. HEX virtually lends value from stakers to non-stakers as staking reduces supply. The launch ends Nov. 19th, 2020 when HEX stakers get credited ~200B HEX. HEX's total supply is now ~350B. Audited 3 times, 2 security, and 1 economics.", + "explorer": "https://polygonscan.com/token/0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C", + "status": "active", + "id": "0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C", + "links": [ + { + "name": "x", + "url": "https://x.com/HEXcrypto" + }, + { + "name": "telegram", + "url": "https://t.me/HEXcrypto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hex/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C/logo.png b/blockchains/polygon/assets/0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C/logo.png new file mode 100644 index 00000000..aa7fbd0d Binary files /dev/null and b/blockchains/polygon/assets/0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C/logo.png differ diff --git a/blockchains/polygon/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json b/blockchains/polygon/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json new file mode 100644 index 00000000..d9070f78 --- /dev/null +++ b/blockchains/polygon/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json @@ -0,0 +1,47 @@ +{ + "name": "EverRise NFT Stakes", + "type": "POLYGON", + "symbol": "nftRISE", + "decimals": 0, + "website": "https://www.everrise.com/", + "description": "EverRise Staking NFTs are containers of Vote Escrowed (ve)EverRise weighted governance tokens. veRISE generates rewards from the auto-buyback with a market driven yield curve, based on the transaction volume of EverRise trades and veEverRise sales.", + "explorer": "https://polygonscan.com/token/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", + "status": "active", + "id": "0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", + "links": [ + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png b/blockchains/polygon/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png new file mode 100644 index 00000000..4272c382 Binary files /dev/null and b/blockchains/polygon/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png differ diff --git a/blockchains/polygon/assets/0x2727Ab1c2D22170ABc9b595177B2D5C6E1Ab7B7B/info.json b/blockchains/polygon/assets/0x2727Ab1c2D22170ABc9b595177B2D5C6E1Ab7B7B/info.json new file mode 100644 index 00000000..416fcf7c --- /dev/null +++ b/blockchains/polygon/assets/0x2727Ab1c2D22170ABc9b595177B2D5C6E1Ab7B7B/info.json @@ -0,0 +1,28 @@ +{ + "name": "Cartesi Token (PoS)", + "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", + "type": "POLYGON", + "symbol": "CTSI", + "decimals": 18, + "status": "active", + "id": "0x2727Ab1c2D22170ABc9b595177B2D5C6E1Ab7B7B", + "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/polygon/assets/0x2727Ab1c2D22170ABc9b595177B2D5C6E1Ab7B7B/logo.png b/blockchains/polygon/assets/0x2727Ab1c2D22170ABc9b595177B2D5C6E1Ab7B7B/logo.png new file mode 100644 index 00000000..8317ac64 Binary files /dev/null and b/blockchains/polygon/assets/0x2727Ab1c2D22170ABc9b595177B2D5C6E1Ab7B7B/logo.png differ diff --git a/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json b/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json new file mode 100644 index 00000000..392763ca --- /dev/null +++ b/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json @@ -0,0 +1,33 @@ +{ + "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.e", + "decimals": 6, + "status": "active", + "id": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", + "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/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/logo.png b/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/logo.png new file mode 100644 index 00000000..eafbaac1 Binary files /dev/null and b/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/logo.png differ diff --git a/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/info.json b/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/info.json new file mode 100644 index 00000000..11c72ea5 --- /dev/null +++ b/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/info.json @@ -0,0 +1,28 @@ +{ + "name": "Bella (PoS)", + "type": "POLYGON", + "symbol": "BEL", + "decimals": 18, + "website": "https://bella.fi/", + "description": "Bella is a suite of open finance products including automated yield farming tools, lending protocol, one-click savings account, customized robo-advisor, and more.", + "explorer": "https://polygonscan.com/token/0x28c388fb1f4fa9f9eb445f0579666849ee5eeb42", + "status": "active", + "id": "0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42", + "links": [ + { + "name": "x", + "url": "https://x.com/BellaProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/bellaprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bella-protocol/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/logo.png b/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/logo.png new file mode 100644 index 00000000..f21ebd57 Binary files /dev/null and b/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/logo.png differ diff --git a/blockchains/polygon/assets/0x2AB0e9e4eE70FFf1fB9D67031E44F6410170d00e/info.json b/blockchains/polygon/assets/0x2AB0e9e4eE70FFf1fB9D67031E44F6410170d00e/info.json new file mode 100644 index 00000000..cf365064 --- /dev/null +++ b/blockchains/polygon/assets/0x2AB0e9e4eE70FFf1fB9D67031E44F6410170d00e/info.json @@ -0,0 +1,25 @@ +{ + "name": "XEN Crypto", + "symbol": "mXEN", + "type": "POLYGON", + "decimals": 18, + "description": "XEN aims to become a community-building crypto asset that connects like minded people together and provide the lowest barrier to entry through its unique tokenomics.", + "website": "https://xen.network/", + "explorer": "https://polygonscan.com/token/0x2AB0e9e4eE70FFf1fB9D67031E44F6410170d00e", + "status": "active", + "id": "0x2AB0e9e4eE70FFf1fB9D67031E44F6410170d00e", + "links": [ + { + "name": "x", + "url": "https://x.com/XEN_Crypto" + }, + { + "name": "telegram", + "url": "https://t.me/XENCryptoTalk" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xen-crypto/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x2AB0e9e4eE70FFf1fB9D67031E44F6410170d00e/logo.png b/blockchains/polygon/assets/0x2AB0e9e4eE70FFf1fB9D67031E44F6410170d00e/logo.png new file mode 100644 index 00000000..78379574 Binary files /dev/null and b/blockchains/polygon/assets/0x2AB0e9e4eE70FFf1fB9D67031E44F6410170d00e/logo.png differ diff --git a/blockchains/polygon/assets/0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7/info.json b/blockchains/polygon/assets/0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7/info.json new file mode 100644 index 00000000..0421b65b --- /dev/null +++ b/blockchains/polygon/assets/0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7/info.json @@ -0,0 +1,25 @@ +{ + "name": "Mask Network", + "website": "https://mask.io", + "description": "The portal to the new, open internet.", + "explorer": "https://polygonscan.com/token/0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7", + "type": "POLYGON", + "symbol": "MASK", + "decimals": 18, + "status": "active", + "id": "0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7", + "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/polygon/assets/0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7/logo.png b/blockchains/polygon/assets/0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7/logo.png new file mode 100644 index 00000000..731134e2 Binary files /dev/null and b/blockchains/polygon/assets/0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7/logo.png differ diff --git a/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/info.json b/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/info.json new file mode 100644 index 00000000..e0617665 --- /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 00000000..a995169b 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 new file mode 100644 index 00000000..1210f13e --- /dev/null +++ b/blockchains/polygon/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/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://polygonscan.com/token/0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590", + "type": "POLYGON", + "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/polygon/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png b/blockchains/polygon/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png new file mode 100644 index 00000000..f983849d Binary files /dev/null and b/blockchains/polygon/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png differ diff --git a/blockchains/polygon/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json b/blockchains/polygon/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json new file mode 100644 index 00000000..3cea4764 --- /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 00000000..854c9b59 Binary files /dev/null and b/blockchains/polygon/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png differ diff --git a/blockchains/polygon/assets/0x3553f861dEc0257baDA9F8Ed268bf0D74e45E89C/info.json b/blockchains/polygon/assets/0x3553f861dEc0257baDA9F8Ed268bf0D74e45E89C/info.json new file mode 100644 index 00000000..86854380 --- /dev/null +++ b/blockchains/polygon/assets/0x3553f861dEc0257baDA9F8Ed268bf0D74e45E89C/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from Solana)", + "type": "POLYGON", + "symbol": "USDTso", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://polygonscan.com/token/0x3553f861dec0257bada9f8ed268bf0d74e45e89c", + "status": "active", + "id": "0x3553f861dEc0257baDA9F8Ed268bf0D74e45E89C", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x3553f861dEc0257baDA9F8Ed268bf0D74e45E89C/logo.png b/blockchains/polygon/assets/0x3553f861dEc0257baDA9F8Ed268bf0D74e45E89C/logo.png new file mode 100644 index 00000000..d52df831 Binary files /dev/null and b/blockchains/polygon/assets/0x3553f861dEc0257baDA9F8Ed268bf0D74e45E89C/logo.png differ diff --git a/blockchains/polygon/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/polygon/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 00000000..49bedd04 --- /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 00000000..c34f31c6 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 00000000..7c0ea052 --- /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 00000000..592e27dc 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 new file mode 100644 index 00000000..ee19fc28 --- /dev/null +++ b/blockchains/polygon/assets/0x3a3Df212b7AA91Aa0402B9035b098891d276572B/info.json @@ -0,0 +1,33 @@ +{ + "name": "Fish", + "symbol": "FISH", + "type": "POLYGON", + "decimals": 18, + "description": "Value-oriented, economically sustainable hybrid yield aggregator on Polygon.", + "website": "https://polycat.finance", + "explorer": "https://polygonscan.com/token/0x3a3df212b7aa91aa0402b9035b098891d276572b", + "status": "active", + "id": "0x3a3Df212b7AA91Aa0402B9035b098891d276572B", + "links": [ + { + "name": "x", + "url": "https://x.com/PolycatFinance" + }, + { + "name": "github", + "url": "https://github.com/polycatfi" + }, + { + "name": "telegram", + "url": "https://t.me/PolycatFinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polycat-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/polycat-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x3a3Df212b7AA91Aa0402B9035b098891d276572B/logo.png b/blockchains/polygon/assets/0x3a3Df212b7AA91Aa0402B9035b098891d276572B/logo.png new file mode 100644 index 00000000..7280dda9 Binary files /dev/null and b/blockchains/polygon/assets/0x3a3Df212b7AA91Aa0402B9035b098891d276572B/logo.png differ diff --git a/blockchains/polygon/assets/0x3a9A81d576d83FF21f26f325066054540720fC34/info.json b/blockchains/polygon/assets/0x3a9A81d576d83FF21f26f325066054540720fC34/info.json new file mode 100644 index 00000000..897d09f1 --- /dev/null +++ b/blockchains/polygon/assets/0x3a9A81d576d83FF21f26f325066054540720fC34/info.json @@ -0,0 +1,33 @@ +{ + "name": "Streamr", + "type": "POLYGON", + "symbol": "DATA", + "decimals": 18, + "website": "https://streamr.network", + "description": "Streamr is a decentralized real‑time data network for web3. Create, share and consume data streams on an open, scalable P2P protocol with powerful tools for monetization. As a layer zero protocol, it provides a publish/subscribe messaging framework for decentralized applications built on top.", + "explorer": "https://polygonscan.com/token/0x3a9A81d576d83FF21f26f325066054540720fC34", + "status": "active", + "id": "0x3a9A81d576d83FF21f26f325066054540720fC34", + "links": [ + { + "name": "x", + "url": "https://x.com/streamr" + }, + { + "name": "github", + "url": "https://github.com/streamr-dev" + }, + { + "name": "whitepaper", + "url": "https://streamr.network/network-whitepaper" + }, + { + "name": "blog", + "url": "https://blog.streamr.network" + }, + { + "name": "docs", + "url": "https://streamr.network/docs" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x3a9A81d576d83FF21f26f325066054540720fC34/logo.png b/blockchains/polygon/assets/0x3a9A81d576d83FF21f26f325066054540720fC34/logo.png new file mode 100644 index 00000000..9fc79a79 Binary files /dev/null and b/blockchains/polygon/assets/0x3a9A81d576d83FF21f26f325066054540720fC34/logo.png differ diff --git a/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/info.json b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/info.json new file mode 100644 index 00000000..12d817bf --- /dev/null +++ b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/info.json @@ -0,0 +1,36 @@ +{ + "name": "Native 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/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 00000000..2460919c 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 00000000..1fc99f5e --- /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 00000000..2cb92069 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 new file mode 100644 index 00000000..4a8b6343 --- /dev/null +++ b/blockchains/polygon/assets/0x3f6b3595ecF70735D3f48D69b09C4E4506DB3F47/info.json @@ -0,0 +1,25 @@ +{ + "name": "GameStation", + "type": "POLYGON", + "symbol": "GAMER", + "decimals": 18, + "website": "https://www.gamestation.io/", + "description": "GameStation is a decentralized multi-chain gaming launchpad and marketplace.", + "explorer": "https://polygonscan.com/token/0x3f6b3595ecF70735D3f48D69b09C4E4506DB3F47", + "status": "active", + "id": "0x3f6b3595ecF70735D3f48D69b09C4E4506DB3F47", + "links": [ + { + "name": "x", + "url": "https://x.com/gamestationio" + }, + { + "name": "telegram", + "url": "https://t.me/gamestationio_official" + }, + { + "name": "medium", + "url": "https://medium.com/gamestationio" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x3f6b3595ecF70735D3f48D69b09C4E4506DB3F47/logo.png b/blockchains/polygon/assets/0x3f6b3595ecF70735D3f48D69b09C4E4506DB3F47/logo.png new file mode 100644 index 00000000..31886b13 Binary files /dev/null and b/blockchains/polygon/assets/0x3f6b3595ecF70735D3f48D69b09C4E4506DB3F47/logo.png differ diff --git a/blockchains/polygon/assets/0x42d61D766B85431666B39B89C43011f24451bFf6/info.json b/blockchains/polygon/assets/0x42d61D766B85431666B39B89C43011f24451bFf6/info.json new file mode 100644 index 00000000..57ebe41d --- /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 00000000..6a8b61f4 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 new file mode 100644 index 00000000..d47aa6c8 --- /dev/null +++ b/blockchains/polygon/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json @@ -0,0 +1,28 @@ +{ + "name": "PYR Token", + "symbol": "PYR", + "type": "POLYGON", + "decimals": 18, + "description": "Vulcan Forged is an established non-fungible token (NFT) game studio, marketplace, and dApp incubator with 10+ games, a 20000+ community, and top 5 NFT marketplace volume.", + "website": "https://vulcanforged.com/", + "explorer": "https://polygonscan.com/token/0x430EF9263E76DAE63c84292C3409D61c598E9682", + "status": "active", + "id": "0x430EF9263E76DAE63c84292C3409D61c598E9682", + "links": [ + { + "name": "x", + "url": "https://x.com/VulcanForged" + }, + { + "name": "telegram", + "url": "https://t.me/VeriArti" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vulcan-forged-pyr/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/logo.png b/blockchains/polygon/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/logo.png new file mode 100644 index 00000000..d61a97f7 Binary files /dev/null and b/blockchains/polygon/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/logo.png differ diff --git a/blockchains/polygon/assets/0x4318CB63A2b8edf2De971E2F17F77097e499459D/info.json b/blockchains/polygon/assets/0x4318CB63A2b8edf2De971E2F17F77097e499459D/info.json new file mode 100644 index 00000000..5b8f7d56 --- /dev/null +++ b/blockchains/polygon/assets/0x4318CB63A2b8edf2De971E2F17F77097e499459D/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Ethereum)", + "type": "POLYGON", + "symbol": "USDCet", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://polygonscan.com/token/0x4318cb63a2b8edf2de971e2f17f77097e499459d", + "status": "active", + "id": "0x4318CB63A2b8edf2De971E2F17F77097e499459D", + "tags": [ + "wrapped" + ] +} diff --git a/blockchains/polygon/assets/0x4318CB63A2b8edf2De971E2F17F77097e499459D/logo.png b/blockchains/polygon/assets/0x4318CB63A2b8edf2De971E2F17F77097e499459D/logo.png new file mode 100644 index 00000000..ed00e43f Binary files /dev/null and b/blockchains/polygon/assets/0x4318CB63A2b8edf2De971E2F17F77097e499459D/logo.png differ diff --git a/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/info.json b/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/info.json new file mode 100644 index 00000000..69f07e45 --- /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 00000000..34190371 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 00000000..367a1c24 --- /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 new file mode 100644 index 00000000..5e5f5bb9 --- /dev/null +++ b/blockchains/polygon/assets/0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46/info.json @@ -0,0 +1,32 @@ +{ + "name": "GOVI (PoS)", + "type": "POLYGON", + "symbol": "GOVI", + "decimals": 18, + "website": "https://cvi.finance/", + "description": "CVI is created by computing a decentralized volatility index from cryptocurrency option prices together with analyzing the market’s expectation of future volatility.", + "explorer": "https://polygonscan.com/token/0x43df9c0a1156c96cea98737b511ac89d0e2a1f46", + "status": "active", + "id": "0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46", + "links": [ + { + "name": "x", + "url": "https://x.com/official_cvi" + }, + { + "name": "github", + "url": "https://github.com/coti-io/cvi-contracts" + }, + { + "name": "telegram", + "url": "https://t.me/cviofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/govi/" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46/logo.png b/blockchains/polygon/assets/0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46/logo.png new file mode 100644 index 00000000..116c2416 Binary files /dev/null and b/blockchains/polygon/assets/0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46/logo.png differ diff --git a/blockchains/polygon/assets/0x4597c8A59Ab28B36840B82B3A674994A279593D0/info.json b/blockchains/polygon/assets/0x4597c8A59Ab28B36840B82B3A674994A279593D0/info.json new file mode 100644 index 00000000..b938fb92 --- /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 00000000..fa6dfaec 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 new file mode 100644 index 00000000..7bfd8024 --- /dev/null +++ b/blockchains/polygon/assets/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F/info.json @@ -0,0 +1,25 @@ +{ + "name": "WolfSafePoorPeople", + "type": "POLYGON", + "symbol": "WSPP", + "decimals": 18, + "website": "https://www.wolfible.com/", + "description": "WSPP is a PRC-20 token, which was designed to develop NFT and GameFi programs of the project, as well as for AMA rewards, trading, staking and farming within the platform.", + "explorer": "https://polygonscan.com/token/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F", + "status": "active", + "id": "0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F", + "links": [ + { + "name": "x", + "url": "https://x.com/robowolf8" + }, + { + "name": "telegram", + "url": "https://t.me/robowolfproject" + }, + { + "name": "medium", + "url": "https://medium.com/robowolf89" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F/logo.png b/blockchains/polygon/assets/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F/logo.png new file mode 100644 index 00000000..14c226e0 Binary files /dev/null and b/blockchains/polygon/assets/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F/logo.png differ diff --git a/blockchains/polygon/assets/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C/info.json b/blockchains/polygon/assets/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C/info.json new file mode 100644 index 00000000..b37d6965 --- /dev/null +++ b/blockchains/polygon/assets/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C/info.json @@ -0,0 +1,32 @@ +{ + "name": "Flycoin", + "type": "POLYGON", + "symbol": "FLY", + "decimals": 18, + "website": "https://flycoin.org", + "description": "Flycoin is a first of its kind crypto-based rewards program that pays you every time you fly, travel, or transact with our partners.", + "explorer": "https://polygonscan.com/token/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C", + "status": "active", + "id": "0x486FFAf06A681bf22B5209e9fFCE722662A60E8C", + "links": [ + { + "name": "x", + "url": "https://x.com/FlycoinOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/+UcIwOEQaTxQyMig0" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/flycoin-fly" + }, + { + "name": "whitepaper", + "url": "https://flycoin.gitbook.io/flycoin-whitepaper/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C/logo.png b/blockchains/polygon/assets/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C/logo.png new file mode 100644 index 00000000..de7f9e2f Binary files /dev/null and b/blockchains/polygon/assets/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C/logo.png differ diff --git a/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/info.json b/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/info.json new file mode 100644 index 00000000..40ad5c5a --- /dev/null +++ b/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/info.json @@ -0,0 +1,25 @@ +{ + "name": "The 4th Pillar Token", + "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", + "decimals": 18, + "status": "active", + "id": "0x48cBc913dE09317dF2365e6827Df50dA083701D5", + "links": [ + { + "name": "x", + "url": "https://x.com/4pfour" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-4th-pillar" + } + ], + "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 new file mode 100644 index 00000000..b0d3e287 Binary files /dev/null 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 00000000..458fd97c --- /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 00000000..bb0e7293 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 new file mode 100644 index 00000000..8deff1cf --- /dev/null +++ b/blockchains/polygon/assets/0x4c4BF319237D98a30A929A96112EfFa8DA3510EB/info.json @@ -0,0 +1,29 @@ +{ + "name": "WaultSwap Polygon", + "type": "POLYGON", + "symbol": "WEXpoly", + "decimals": 18, + "website": "https://wault.finance", + "description": "Wault Finance is a decentralized finance hub that connects all of the primary DeFi use-cases within one simple ecosystem, on the Binance Smart Chain. In short, an all-in-one DeFi Platform!We’ve built a protocol including 2 tokens – WAULTx and WEX – and some unique features such as: WaultSwap (AMM), Wault Launchpad (new project presales), Wault Locker (liquidity locks for new or established projects), Wault Farms (staking and farming) and many other great services.", + "explorer": "https://polygonscan.com/token/0x4c4bf319237d98a30a929a96112effa8da3510eb", + "status": "active", + "id": "0x4c4BF319237D98a30A929A96112EfFa8DA3510EB", + "links": [ + { + "name": "x", + "url": "https://x.com/Wault_Finance" + }, + { + "name": "github", + "url": "https://github.com/WaultFinance" + }, + { + "name": "telegram", + "url": "https://t.me/WaultFinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/waultswap-polygon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x4c4BF319237D98a30A929A96112EfFa8DA3510EB/logo.png b/blockchains/polygon/assets/0x4c4BF319237D98a30A929A96112EfFa8DA3510EB/logo.png new file mode 100644 index 00000000..dbaca59e Binary files /dev/null and b/blockchains/polygon/assets/0x4c4BF319237D98a30A929A96112EfFa8DA3510EB/logo.png differ diff --git a/blockchains/polygon/assets/0x4e830F67Ec499E69930867f9017AEb5B3f629c73/info.json b/blockchains/polygon/assets/0x4e830F67Ec499E69930867f9017AEb5B3f629c73/info.json new file mode 100644 index 00000000..28789e43 --- /dev/null +++ b/blockchains/polygon/assets/0x4e830F67Ec499E69930867f9017AEb5B3f629c73/info.json @@ -0,0 +1,40 @@ +{ + "name": "Oddz", + "type": "POLYGON", + "symbol": "ODDZ", + "decimals": 18, + "website": "https://www.oddz.fi/", + "description": "Multi-chain Derivatives Trading Protocol.", + "explorer": "https://polygonscan.com/token/0x4e830F67Ec499E69930867f9017AEb5B3f629c73", + "status": "active", + "id": "0x4e830F67Ec499E69930867f9017AEb5B3f629c73", + "links": [ + { + "name": "telegram", + "url": "https://t.me/oddz_fi_announcements" + }, + { + "name": "x", + "url": "https://x.com/oddz_finance" + }, + { + "name": "facebook", + "url": "https://facebook.com/Oddz.fi" + }, + { + "name": "whitepaper", + "url": "https://docsend.com/view/mefxr8h3ymzuhwqk" + }, + { + "name": "github", + "url": "https://github.com/oddz-finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oddz/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x4e830F67Ec499E69930867f9017AEb5B3f629c73/logo.png b/blockchains/polygon/assets/0x4e830F67Ec499E69930867f9017AEb5B3f629c73/logo.png new file mode 100644 index 00000000..e80daa2e Binary files /dev/null and b/blockchains/polygon/assets/0x4e830F67Ec499E69930867f9017AEb5B3f629c73/logo.png differ diff --git a/blockchains/polygon/assets/0x50B728D8D964fd00C2d0AAD81718b71311feF68a/info.json b/blockchains/polygon/assets/0x50B728D8D964fd00C2d0AAD81718b71311feF68a/info.json new file mode 100644 index 00000000..fc002400 --- /dev/null +++ b/blockchains/polygon/assets/0x50B728D8D964fd00C2d0AAD81718b71311feF68a/info.json @@ -0,0 +1,41 @@ +{ + "name": "Synthetix", + "website": "https://synthetix.io", + "description": "Synthetix is a derivatives liquidity protocol on Ethereum that enables the issuance and trading of synthetic assets.", + "explorer": "https://polygonscan.com/token/0x50b728d8d964fd00c2d0aad81718b71311fef68a", + "research": "https://research.binance.com/en/projects/synthetix", + "type": "POLYGON", + "symbol": "SNX", + "decimals": 18, + "status": "active", + "id": "0x50B728D8D964fd00C2d0AAD81718b71311feF68a", + "tags": [ + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/havven/havven" + }, + { + "name": "x", + "url": "https://x.com/synthetix_io" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/synthetix_io/" + }, + { + "name": "blog", + "url": "https://blog.synthetix.io/" + }, + { + "name": "whitepaper", + "url": "https://synthetix.io/uploads/havven_whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/havven/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x50B728D8D964fd00C2d0AAD81718b71311feF68a/logo.png b/blockchains/polygon/assets/0x50B728D8D964fd00C2d0AAD81718b71311feF68a/logo.png new file mode 100644 index 00000000..2a850de0 Binary files /dev/null and b/blockchains/polygon/assets/0x50B728D8D964fd00C2d0AAD81718b71311feF68a/logo.png differ diff --git a/blockchains/polygon/assets/0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39/info.json b/blockchains/polygon/assets/0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39/info.json new file mode 100644 index 00000000..bc785803 --- /dev/null +++ b/blockchains/polygon/assets/0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39/info.json @@ -0,0 +1,29 @@ +{ + "name": "ChainLink Token", + "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", + "type": "POLYGON", + "symbol": "LINK", + "decimals": 18, + "status": "active", + "id": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39", + "links": [ + { + "name": "whitepaper", + "url": "https://link.smartcontract.com/whitepaper" + }, + { + "name": "x", + "url": "https://x.com/chainlink" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chainlink/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chainlink/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39/logo.png b/blockchains/polygon/assets/0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39/logo.png new file mode 100644 index 00000000..a986cbd9 Binary files /dev/null and b/blockchains/polygon/assets/0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39/logo.png differ diff --git a/blockchains/polygon/assets/0x553d3D295e0f695B9228246232eDF400ed3560B5/info.json b/blockchains/polygon/assets/0x553d3D295e0f695B9228246232eDF400ed3560B5/info.json new file mode 100644 index 00000000..77a84c16 --- /dev/null +++ b/blockchains/polygon/assets/0x553d3D295e0f695B9228246232eDF400ed3560B5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Pax Gold", + "type": "POLYGON", + "symbol": "PAXG", + "decimals": 18, + "website": "https://paxos.com/paxgold", + "description": "A digital token, backed by physical gold", + "explorer": "https://polygonscan.com/token/0x553d3D295e0f695B9228246232eDF400ed3560B5", + "status": "active", + "id": "0x553d3D295e0f695B9228246232eDF400ed3560B5", + "links": [ + { + "name": "x", + "url": "https://x.com/PaxosGlobal" + }, + { + "name": "facebook", + "url": "https://facebook.com/paxosglobal/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x553d3D295e0f695B9228246232eDF400ed3560B5/logo.png b/blockchains/polygon/assets/0x553d3D295e0f695B9228246232eDF400ed3560B5/logo.png new file mode 100644 index 00000000..7177a7a7 Binary files /dev/null and b/blockchains/polygon/assets/0x553d3D295e0f695B9228246232eDF400ed3560B5/logo.png differ diff --git a/blockchains/polygon/assets/0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927/info.json b/blockchains/polygon/assets/0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927/info.json new file mode 100644 index 00000000..4641eba1 --- /dev/null +++ b/blockchains/polygon/assets/0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927/info.json @@ -0,0 +1,41 @@ +{ + "name": "Million", + "website": "https://milliontoken.org", + "description": "Million is a digital currency with 1,000,000 total supply. https://milliontoken.org", + "explorer": "https://polygonscan.com/token/0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927", + "type": "POLYGON", + "symbol": "MM", + "decimals": 18, + "status": "active", + "id": "0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/million" + }, + { + "name": "telegram", + "url": "https://t.me/millionjacuzzibar" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/milliontoken/" + }, + { + "name": "x", + "url": "https://x.com/Million__Token" + }, + { + "name": "facebook", + "url": "https://facebook.com/groups/milliontoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/million/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/million" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927/logo.png b/blockchains/polygon/assets/0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927/logo.png new file mode 100644 index 00000000..20b89158 Binary files /dev/null and b/blockchains/polygon/assets/0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927/logo.png differ diff --git a/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/info.json b/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/info.json new file mode 100644 index 00000000..2674cfbd --- /dev/null +++ b/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/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://polygonscan.com/token/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c", + "type": "POLYGON", + "symbol": "WALLET", + "status": "active", + "decimals": 18, + "id": "0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c", + "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/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/logo.png b/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/logo.png new file mode 100644 index 00000000..2c33c7b4 Binary files /dev/null and b/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/logo.png differ diff --git a/blockchains/polygon/assets/0x576Cf361711cd940CD9C397BB98C4C896cBd38De/info.json b/blockchains/polygon/assets/0x576Cf361711cd940CD9C397BB98C4C896cBd38De/info.json new file mode 100644 index 00000000..032ccce1 --- /dev/null +++ b/blockchains/polygon/assets/0x576Cf361711cd940CD9C397BB98C4C896cBd38De/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Solana)", + "type": "POLYGON", + "symbol": "USDCso", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://polygonscan.com/token/0x576cf361711cd940cd9c397bb98c4c896cbd38de", + "status": "active", + "id": "0x576Cf361711cd940CD9C397BB98C4C896cBd38De", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x576Cf361711cd940CD9C397BB98C4C896cBd38De/logo.png b/blockchains/polygon/assets/0x576Cf361711cd940CD9C397BB98C4C896cBd38De/logo.png new file mode 100644 index 00000000..c9ca8307 Binary files /dev/null and b/blockchains/polygon/assets/0x576Cf361711cd940CD9C397BB98C4C896cBd38De/logo.png differ diff --git a/blockchains/polygon/assets/0x580A84C73811E1839F75d86d75d88cCa0c241fF4/info.json b/blockchains/polygon/assets/0x580A84C73811E1839F75d86d75d88cCa0c241fF4/info.json new file mode 100644 index 00000000..e450b5ac --- /dev/null +++ b/blockchains/polygon/assets/0x580A84C73811E1839F75d86d75d88cCa0c241fF4/info.json @@ -0,0 +1,29 @@ +{ + "name": "Qi Dao", + "website": "https://www.mai.finance/", + "description": "Qi (pronounced CHEE) is the governance token of the QiDao Protocol. It allows those who hold it to vote on changes to the QiDao Protocol.", + "explorer": "https://polygonscan.com/token/0x580a84c73811e1839f75d86d75d88cca0c241ff4", + "type": "POLYGON", + "symbol": "QI", + "decimals": 18, + "status": "active", + "id": "0x580A84C73811E1839F75d86d75d88cCa0c241fF4", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/mQq55j65xJ" + }, + { + "name": "x", + "url": "https://x.com/0xLaoZi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/qi-dao/" + }, + { + "name": "medium", + "url": "https://0xlaozi.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x580A84C73811E1839F75d86d75d88cCa0c241fF4/logo.png b/blockchains/polygon/assets/0x580A84C73811E1839F75d86d75d88cCa0c241fF4/logo.png new file mode 100644 index 00000000..ab1b1cc2 Binary files /dev/null and b/blockchains/polygon/assets/0x580A84C73811E1839F75d86d75d88cCa0c241fF4/logo.png differ diff --git a/blockchains/polygon/assets/0x58c1BBb508e96CfEC1787Acf6Afe1C7008A5B064/info.json b/blockchains/polygon/assets/0x58c1BBb508e96CfEC1787Acf6Afe1C7008A5B064/info.json new file mode 100644 index 00000000..932fa619 --- /dev/null +++ b/blockchains/polygon/assets/0x58c1BBb508e96CfEC1787Acf6Afe1C7008A5B064/info.json @@ -0,0 +1,37 @@ +{ + "name": "Hoge Finance", + "website": "https://hogefinance.com", + "description": "We Meme Business.", + "explorer": "https://polygonscan.com/token/0x58c1BBb508e96CfEC1787Acf6Afe1C7008A5B064", + "type": "POLYGON", + "symbol": "HOGE", + "decimals": 9, + "status": "active", + "id": "0x58c1BBb508e96CfEC1787Acf6Afe1C7008A5B064", + "links": [ + { + "name": "reddit", + "url": "https://reddit.com/r/hoge" + }, + { + "name": "discord", + "url": "https://discord.com/invite/hoge" + }, + { + "name": "x", + "url": "https://x.com/hogefinance" + }, + { + "name": "telegram", + "url": "https://t.me/hogefinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hoge-finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hoge-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x58c1BBb508e96CfEC1787Acf6Afe1C7008A5B064/logo.png b/blockchains/polygon/assets/0x58c1BBb508e96CfEC1787Acf6Afe1C7008A5B064/logo.png new file mode 100644 index 00000000..fd2f41b9 Binary files /dev/null and b/blockchains/polygon/assets/0x58c1BBb508e96CfEC1787Acf6Afe1C7008A5B064/logo.png differ diff --git a/blockchains/polygon/assets/0x5D49c278340655B56609FdF8976eb0612aF3a0C3/info.json b/blockchains/polygon/assets/0x5D49c278340655B56609FdF8976eb0612aF3a0C3/info.json new file mode 100644 index 00000000..61ed1920 --- /dev/null +++ b/blockchains/polygon/assets/0x5D49c278340655B56609FdF8976eb0612aF3a0C3/info.json @@ -0,0 +1,14 @@ +{ + "name": "Wrapped BTC (Portal)", + "type": "POLYGON", + "symbol": "WBTC", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.wbtc.network/", + "explorer": "https://polygonscan.com/token/0x5D49c278340655B56609FdF8976eb0612aF3a0C3", + "status": "active", + "id": "0x5D49c278340655B56609FdF8976eb0612aF3a0C3", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x5D49c278340655B56609FdF8976eb0612aF3a0C3/logo.png b/blockchains/polygon/assets/0x5D49c278340655B56609FdF8976eb0612aF3a0C3/logo.png new file mode 100644 index 00000000..d603db0e Binary files /dev/null and b/blockchains/polygon/assets/0x5D49c278340655B56609FdF8976eb0612aF3a0C3/logo.png differ diff --git a/blockchains/polygon/assets/0x5E0294Af1732498C77F8dB015a2d52a76298542B/info.json b/blockchains/polygon/assets/0x5E0294Af1732498C77F8dB015a2d52a76298542B/info.json new file mode 100644 index 00000000..d34586df --- /dev/null +++ b/blockchains/polygon/assets/0x5E0294Af1732498C77F8dB015a2d52a76298542B/info.json @@ -0,0 +1,14 @@ +{ + "name": "Orion Money (Portal)", + "type": "POLYGON", + "symbol": "ORION", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://orion.money/", + "explorer": "https://polygonscan.com/token/0x5E0294Af1732498C77F8dB015a2d52a76298542B", + "status": "active", + "id": "0x5E0294Af1732498C77F8dB015a2d52a76298542B", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x5E0294Af1732498C77F8dB015a2d52a76298542B/logo.png b/blockchains/polygon/assets/0x5E0294Af1732498C77F8dB015a2d52a76298542B/logo.png new file mode 100644 index 00000000..89db97dd Binary files /dev/null and b/blockchains/polygon/assets/0x5E0294Af1732498C77F8dB015a2d52a76298542B/logo.png differ diff --git a/blockchains/polygon/assets/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA/info.json b/blockchains/polygon/assets/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA/info.json new file mode 100644 index 00000000..d091d565 --- /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 00000000..96bef9f2 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 new file mode 100644 index 00000000..81f6587b --- /dev/null +++ b/blockchains/polygon/assets/0x5a3064CbDCCF428ae907796cF6aD5a664CD7F3d8/info.json @@ -0,0 +1,33 @@ +{ + "name": "PYQ", + "website": "https://app.polyquity.org/", + "description": "PolyQuity is a decentralized borrowing protocol that allows users to draw interest-free loans against Matic used as collateral.", + "explorer": "https://polygonscan.com/token/0x5a3064cbdccf428ae907796cf6ad5a664cd7f3d8", + "type": "POLYGON", + "symbol": "PYQ", + "decimals": 18, + "status": "active", + "id": "0x5a3064CbDCCF428ae907796cF6aD5a664CD7F3d8", + "links": [ + { + "name": "github", + "url": "https://github.com/PolyQuity/contracts" + }, + { + "name": "x", + "url": "https://x.com/polyquity_org" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/polyquity/" + }, + { + "name": "medium", + "url": "https://medium.com/@polyquity" + }, + { + "name": "telegram", + "url": "https://t.me/polyquityorg" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x5a3064CbDCCF428ae907796cF6aD5a664CD7F3d8/logo.png b/blockchains/polygon/assets/0x5a3064CbDCCF428ae907796cF6aD5a664CD7F3d8/logo.png new file mode 100644 index 00000000..3ec4a8ef Binary files /dev/null and b/blockchains/polygon/assets/0x5a3064CbDCCF428ae907796cF6aD5a664CD7F3d8/logo.png differ diff --git a/blockchains/polygon/assets/0x5d47bAbA0d66083C52009271faF3F50DCc01023C/info.json b/blockchains/polygon/assets/0x5d47bAbA0d66083C52009271faF3F50DCc01023C/info.json new file mode 100644 index 00000000..71de7999 --- /dev/null +++ b/blockchains/polygon/assets/0x5d47bAbA0d66083C52009271faF3F50DCc01023C/info.json @@ -0,0 +1,53 @@ +{ + "name": "Ape Swap Finance Banana", + "website": "https://apeswap.finance", + "description": "ApeSwap is an Automated Market Maker, Yield Farming, and Staking platform on Binance Smart Chain. ApeSwap was built by DeFi Apes, for DeFi Apes. We have a dedicated team of experienced monkeys, who have been in the crypto space for years.", + "explorer": "https://polygonscan.com/token/0x5d47bAbA0d66083C52009271faF3F50DCc01023C", + "type": "POLYGON", + "symbol": "BANANA", + "decimals": 18, + "status": "active", + "id": "0x5d47bAbA0d66083C52009271faF3F50DCc01023C", + "links": [ + { + "name": "github", + "url": "https://github.com/ApeSwapFinance" + }, + { + "name": "docs", + "url": "https://apeswap.gitbook.io/apeswap-finance/" + }, + { + "name": "x", + "url": "https://x.com/ape_swap" + }, + { + "name": "telegram", + "url": "https://t.me/ape_swap" + }, + { + "name": "telegram_news", + "url": "https://t.me/ape_swap_news" + }, + { + "name": "medium", + "url": "https://ape-swap.medium.com/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AbVxfGRCSd/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Apeswap/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apeswap-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/apeswap-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x5d47bAbA0d66083C52009271faF3F50DCc01023C/logo.png b/blockchains/polygon/assets/0x5d47bAbA0d66083C52009271faF3F50DCc01023C/logo.png new file mode 100644 index 00000000..8921686f Binary files /dev/null and b/blockchains/polygon/assets/0x5d47bAbA0d66083C52009271faF3F50DCc01023C/logo.png differ diff --git a/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/info.json b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/info.json new file mode 100644 index 00000000..c36b1859 --- /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 00000000..9cbb487c 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 new file mode 100644 index 00000000..64604d05 --- /dev/null +++ b/blockchains/polygon/assets/0x6109cB051c5C64093830121ed76272aB04bBDD7C/info.json @@ -0,0 +1,25 @@ +{ + "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://polygonscan.com/token/0x6109cb051c5c64093830121ed76272ab04bbdd7c", + "type": "POLYGON", + "symbol": "PROS", + "decimals": 18, + "status": "active", + "id": "0x6109cB051c5C64093830121ed76272aB04bBDD7C", + "links": [ + { + "name": "x", + "url": "https://x.com/Prosperpredict" + }, + { + "name": "telegram", + "url": "https://t.me/prosperfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/prosper/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x6109cB051c5C64093830121ed76272aB04bBDD7C/logo.png b/blockchains/polygon/assets/0x6109cB051c5C64093830121ed76272aB04bBDD7C/logo.png new file mode 100644 index 00000000..5725990a Binary files /dev/null and b/blockchains/polygon/assets/0x6109cB051c5C64093830121ed76272aB04bBDD7C/logo.png differ diff --git a/blockchains/polygon/assets/0x61299774020dA444Af134c82fa83E3810b309991/info.json b/blockchains/polygon/assets/0x61299774020dA444Af134c82fa83E3810b309991/info.json new file mode 100644 index 00000000..84e142b8 --- /dev/null +++ b/blockchains/polygon/assets/0x61299774020dA444Af134c82fa83E3810b309991/info.json @@ -0,0 +1,25 @@ +{ + "name": "Render Token", + "symbol": "RNDR", + "type": "POLYGON", + "decimals": 18, + "description": "Distributed GPU rendering on the blockchain.", + "website": "https://rendertoken.com/", + "explorer": "https://polygonscan.com/token/0x61299774020dA444Af134c82fa83E3810b309991", + "status": "active", + "id": "0x61299774020dA444Af134c82fa83E3810b309991", + "links": [ + { + "name": "x", + "url": "https://x.com/rendertoken" + }, + { + "name": "telegram", + "url": "https://t.me/rendertoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/render-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x61299774020dA444Af134c82fa83E3810b309991/logo.png b/blockchains/polygon/assets/0x61299774020dA444Af134c82fa83E3810b309991/logo.png new file mode 100644 index 00000000..d1bf2417 Binary files /dev/null and b/blockchains/polygon/assets/0x61299774020dA444Af134c82fa83E3810b309991/logo.png differ diff --git a/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/info.json b/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/info.json new file mode 100644 index 00000000..053fb7db --- /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 00000000..ba89f2dd 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 00000000..e61cdcec --- /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 00000000..08570c22 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 00000000..2db15863 --- /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 00000000..7af71346 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 00000000..4cf29d01 --- /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 00000000..d565ce6e 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 new file mode 100644 index 00000000..845fb224 --- /dev/null +++ b/blockchains/polygon/assets/0x65C9e3289e5949134759119DBc9F862E8d6F2fBE/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://polygonscan.com/token/0x65C9e3289e5949134759119DBc9F862E8d6F2fBE", + "type": "POLYGON", + "symbol": "MPH", + "decimals": 18, + "status": "active", + "id": "0x65C9e3289e5949134759119DBc9F862E8d6F2fBE", + "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" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x65C9e3289e5949134759119DBc9F862E8d6F2fBE/logo.png b/blockchains/polygon/assets/0x65C9e3289e5949134759119DBc9F862E8d6F2fBE/logo.png new file mode 100644 index 00000000..6f8fa384 Binary files /dev/null and b/blockchains/polygon/assets/0x65C9e3289e5949134759119DBc9F862E8d6F2fBE/logo.png differ diff --git a/blockchains/polygon/assets/0x6899fAcE15c14348E1759371049ab64A3a06bFA6/info.json b/blockchains/polygon/assets/0x6899fAcE15c14348E1759371049ab64A3a06bFA6/info.json new file mode 100644 index 00000000..c2cb4a61 --- /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 00000000..d193ae87 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 00000000..8dd99efe --- /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 00000000..203a846c 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 00000000..f61517f3 --- /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 00000000..f95b77a5 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 new file mode 100644 index 00000000..9e7283e3 --- /dev/null +++ b/blockchains/polygon/assets/0x6e4E624106Cb12E168E6533F8ec7c82263358940/info.json @@ -0,0 +1,68 @@ +{ + "name": "Axelar", + "type": "POLYGON", + "symbol": "AXL", + "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://polygonscan.com/token/0x6e4E624106Cb12E168E6533F8ec7c82263358940", + "status": "active", + "id": "0x6e4E624106Cb12E168E6533F8ec7c82263358940", + "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" + }, + { + "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/axelar/" + }, + { + "name": "blog", + "url": "https://axelar.network/blog" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Axelarcore" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x6e4E624106Cb12E168E6533F8ec7c82263358940/logo.png b/blockchains/polygon/assets/0x6e4E624106Cb12E168E6533F8ec7c82263358940/logo.png new file mode 100644 index 00000000..6c156aba Binary files /dev/null and b/blockchains/polygon/assets/0x6e4E624106Cb12E168E6533F8ec7c82263358940/logo.png differ diff --git a/blockchains/polygon/assets/0x71B821aa52a49F32EEd535fCA6Eb5aa130085978/info.json b/blockchains/polygon/assets/0x71B821aa52a49F32EEd535fCA6Eb5aa130085978/info.json new file mode 100644 index 00000000..32e01bc5 --- /dev/null +++ b/blockchains/polygon/assets/0x71B821aa52a49F32EEd535fCA6Eb5aa130085978/info.json @@ -0,0 +1,33 @@ +{ + "name": "0xBitcoin Token", + "website": "https://0xbitcoin.org/", + "description": "Pure-mined neutral token.", + "explorer": "https://polygonscan.com/token/0x71b821aa52a49f32eed535fca6eb5aa130085978", + "type": "POLYGON", + "symbol": "0xBTC", + "decimals": 8, + "status": "active", + "id": "0x71B821aa52a49F32EEd535fCA6Eb5aa130085978", + "links": [ + { + "name": "github", + "url": "https://github.com/0xbitcoin" + }, + { + "name": "x", + "url": "https://x.com/0xbitcoin_ERC20" + }, + { + "name": "telegram", + "url": "https://t.me/QuickSwapDEX" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/0xbtc/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/oxbitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x71B821aa52a49F32EEd535fCA6Eb5aa130085978/logo.png b/blockchains/polygon/assets/0x71B821aa52a49F32EEd535fCA6Eb5aa130085978/logo.png new file mode 100644 index 00000000..9382720d Binary files /dev/null and b/blockchains/polygon/assets/0x71B821aa52a49F32EEd535fCA6Eb5aa130085978/logo.png differ diff --git a/blockchains/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/info.json b/blockchains/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/info.json new file mode 100644 index 00000000..00ab810d --- /dev/null +++ b/blockchains/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/info.json @@ -0,0 +1,69 @@ +{ + "name": "Axelar Wrapped USDC", + "type": "POLYGON", + "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://polygonscan.com/token/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed", + "status": "active", + "id": "0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed", + "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/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/logo.png b/blockchains/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/logo.png new file mode 100644 index 00000000..69911cae Binary files /dev/null and b/blockchains/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/logo.png differ diff --git a/blockchains/polygon/assets/0x76e63a3E7Ba1e2E61D3DA86a87479f983dE89a7E/info.json b/blockchains/polygon/assets/0x76e63a3E7Ba1e2E61D3DA86a87479f983dE89a7E/info.json new file mode 100644 index 00000000..e0f42495 --- /dev/null +++ b/blockchains/polygon/assets/0x76e63a3E7Ba1e2E61D3DA86a87479f983dE89a7E/info.json @@ -0,0 +1,33 @@ +{ + "name": "Augury Finance", + "website": "https://augury.finance/", + "description": "Augury Finance is a financial ecosystem on the Polygon (MATIC) blockchain which focuses on trust, community ownership, and sustainable returns.", + "explorer": "https://polygonscan.com/token/0x76e63a3E7Ba1e2E61D3DA86a87479f983dE89a7E", + "type": "POLYGON", + "symbol": "OMEN", + "decimals": 18, + "status": "active", + "id": "0x76e63a3E7Ba1e2E61D3DA86a87479f983dE89a7E", + "links": [ + { + "name": "github", + "url": "https://github.com/augury-finance/core" + }, + { + "name": "x", + "url": "https://x.com/AuguryFinance" + }, + { + "name": "telegram", + "url": "https://t.me/auguryfinance" + }, + { + "name": "medium", + "url": "https://auguryfinance.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/augury-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x76e63a3E7Ba1e2E61D3DA86a87479f983dE89a7E/logo.png b/blockchains/polygon/assets/0x76e63a3E7Ba1e2E61D3DA86a87479f983dE89a7E/logo.png new file mode 100644 index 00000000..cf49e2ca Binary files /dev/null and b/blockchains/polygon/assets/0x76e63a3E7Ba1e2E61D3DA86a87479f983dE89a7E/logo.png differ diff --git a/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/info.json b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/info.json new file mode 100644 index 00000000..4dfab768 --- /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 00000000..b4844cb3 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 00000000..f33cf3de --- /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 00000000..adc07976 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 new file mode 100644 index 00000000..50a998db --- /dev/null +++ b/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/info.json @@ -0,0 +1,14 @@ +{ + "name": "Wrapped AVAX (Wormhole)", + "type": "POLYGON", + "symbol": "WAVAX", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://portalbridge.com/", + "explorer": "https://polygonscan.com/token/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a", + "status": "active", + "id": "0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/logo.png b/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/logo.png new file mode 100644 index 00000000..5cfbd9ab Binary files /dev/null and b/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/logo.png differ diff --git a/blockchains/polygon/assets/0x7BeBd226154E865954A87650FAefA8F485d36081/info.json b/blockchains/polygon/assets/0x7BeBd226154E865954A87650FAefA8F485d36081/info.json new file mode 100644 index 00000000..31482e65 --- /dev/null +++ b/blockchains/polygon/assets/0x7BeBd226154E865954A87650FAefA8F485d36081/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZigCoin", + "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 00000000..e400b359 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 00000000..21843efa --- /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 00000000..e1b39b39 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 new file mode 100644 index 00000000..da7a9e6e --- /dev/null +++ b/blockchains/polygon/assets/0x7c28F627eA3aEc8B882b51eb1935f66e5b875714/info.json @@ -0,0 +1,33 @@ +{ + "name": "Paint", + "website": "https://murall.art", + "description": "MurAll is a 2048x1024px digital mural that anyone can draw on without restriction. MurAll requires PAINT - a fixed supply token synonymous with real-life paint, which is burned in the painting transaction. Painting on MurAll also mints a MURALL NFT of the artwork for the artist to keep.", + "explorer": "https://polygonscan.com/token/0x7c28f627ea3aec8b882b51eb1935f66e5b875714", + "type": "POLYGON", + "symbol": "PAINT", + "decimals": 18, + "status": "active", + "id": "0x7c28F627eA3aEc8B882b51eb1935f66e5b875714", + "links": [ + { + "name": "github", + "url": "https://github.com/murall-art" + }, + { + "name": "x", + "url": "https://x.com/MurAll_art" + }, + { + "name": "telegram", + "url": "https://t.me/MurALLart" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/murall/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/murall" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x7c28F627eA3aEc8B882b51eb1935f66e5b875714/logo.png b/blockchains/polygon/assets/0x7c28F627eA3aEc8B882b51eb1935f66e5b875714/logo.png new file mode 100644 index 00000000..5cbe0fd1 Binary files /dev/null and b/blockchains/polygon/assets/0x7c28F627eA3aEc8B882b51eb1935f66e5b875714/logo.png differ diff --git a/blockchains/polygon/assets/0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619/info.json b/blockchains/polygon/assets/0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619/info.json new file mode 100644 index 00000000..073a3902 --- /dev/null +++ b/blockchains/polygon/assets/0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped Ether", + "symbol": "WETH", + "type": "POLYGON", + "decimals": 18, + "description": "WETH is Wrapped Ether", + "website": "https://weth.io/", + "explorer": "https://polygonscan.com/token/0x7ceb23fd6bc0add59e62ac25578270cff1b9f619", + "status": "active", + "id": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619" +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619/logo.png b/blockchains/polygon/assets/0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619/logo.png new file mode 100644 index 00000000..bf957d38 Binary files /dev/null and b/blockchains/polygon/assets/0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619/logo.png differ diff --git a/blockchains/polygon/assets/0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2/info.json b/blockchains/polygon/assets/0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2/info.json new file mode 100644 index 00000000..7ee48a6b --- /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 00000000..2b38fde1 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 00000000..3df39e54 --- /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 00000000..533446f2 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 new file mode 100644 index 00000000..67d8c6c8 --- /dev/null +++ b/blockchains/polygon/assets/0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1/info.json @@ -0,0 +1,54 @@ +{ + "name": "Yield Guild Games (PoS)", + "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", + "type": "POLYGON", + "symbol": "YGG", + "decimals": 18, + "status": "active", + "id": "0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1", + "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/polygon/assets/0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1/logo.png b/blockchains/polygon/assets/0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1/logo.png new file mode 100644 index 00000000..0ddcda72 Binary files /dev/null and b/blockchains/polygon/assets/0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1/logo.png differ diff --git a/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/info.json b/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/info.json new file mode 100644 index 00000000..c7b637b6 --- /dev/null +++ b/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/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/0x831753dd7087cac61ab5644b308642cc1c33dc13", + "type": "POLYGON", + "symbol": "QUICK", + "decimals": 18, + "status": "abandoned", + "id": "0x831753DD7087CaC61aB5644b308642cc1c33Dc13", + "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/0x838C9634dE6590B96aEadC4Bc6DB5c28Fd17E3C2/info.json b/blockchains/polygon/assets/0x838C9634dE6590B96aEadC4Bc6DB5c28Fd17E3C2/info.json new file mode 100644 index 00000000..216f9bf6 --- /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 00000000..0fc151d6 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 new file mode 100644 index 00000000..3dac8d7f --- /dev/null +++ b/blockchains/polygon/assets/0x874e178A2f3f3F9d34db862453Cd756E7eAb0381/info.json @@ -0,0 +1,33 @@ +{ + "name": "Gravity Finance", + "website": "https://gravityfinance.io/", + "description": "Gravity Finance is a suite of DeFi products on the Polygon Network.", + "explorer": "https://polygonscan.com/token/0x874e178a2f3f3f9d34db862453cd756e7eab0381", + "type": "POLYGON", + "symbol": "GFI", + "decimals": 18, + "status": "active", + "id": "0x874e178A2f3f3F9d34db862453Cd756E7eAb0381", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gravity-finance/" + }, + { + "name": "x", + "url": "https://x.com/Gravity_Finance" + }, + { + "name": "telegram", + "url": "https://t.me/gravityfinance" + }, + { + "name": "medium", + "url": "https://gravityfinance.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gravity-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x874e178A2f3f3F9d34db862453Cd756E7eAb0381/logo.png b/blockchains/polygon/assets/0x874e178A2f3f3F9d34db862453Cd756E7eAb0381/logo.png new file mode 100644 index 00000000..381e707f Binary files /dev/null and b/blockchains/polygon/assets/0x874e178A2f3f3F9d34db862453Cd756E7eAb0381/logo.png differ diff --git a/blockchains/polygon/assets/0x87d6F8eDECcbCcA766D2880D19b2C3777D322C22/info.json b/blockchains/polygon/assets/0x87d6F8eDECcbCcA766D2880D19b2C3777D322C22/info.json new file mode 100644 index 00000000..31359643 --- /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 00000000..94b0d060 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 new file mode 100644 index 00000000..2eb7e8e6 --- /dev/null +++ b/blockchains/polygon/assets/0x8A953CfE442c5E8855cc6c61b1293FA648BAE472/info.json @@ -0,0 +1,33 @@ +{ + "name": "PolyDoge", + "symbol": "PolyDoge", + "type": "POLYGON", + "decimals": 18, + "description": "PolyDoge is a digital currency with one of the most vibrant communities on the powerful Polygon Network.", + "website": "https://polydoge.com", + "explorer": "https://polygonscan.com/token/0x8a953cfe442c5e8855cc6c61b1293fa648bae472", + "status": "active", + "id": "0x8A953CfE442c5E8855cc6c61b1293FA648BAE472", + "links": [ + { + "name": "x", + "url": "https://x.com/polydoge" + }, + { + "name": "github", + "url": "https://github.com/polydoge" + }, + { + "name": "telegram", + "url": "https://t.me/polydoge" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/polydoge/" + }, + { + "name": "blog", + "url": "https://polydoge.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x8A953CfE442c5E8855cc6c61b1293FA648BAE472/logo.png b/blockchains/polygon/assets/0x8A953CfE442c5E8855cc6c61b1293FA648BAE472/logo.png new file mode 100644 index 00000000..b9e80cf7 Binary files /dev/null and b/blockchains/polygon/assets/0x8A953CfE442c5E8855cc6c61b1293FA648BAE472/logo.png differ diff --git a/blockchains/polygon/assets/0x8B4caE9Af23EB752515A88497e678e9aDff1753d/info.json b/blockchains/polygon/assets/0x8B4caE9Af23EB752515A88497e678e9aDff1753d/info.json new file mode 100644 index 00000000..efe8f171 --- /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 00000000..cb6c4903 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 new file mode 100644 index 00000000..3236532d --- /dev/null +++ b/blockchains/polygon/assets/0x8C92e38eCA8210f4fcBf17F0951b198Dd7668292/info.json @@ -0,0 +1,65 @@ +{ + "name": "dHEDGE DAO Token (PoS)", + "type": "POLYGON", + "symbol": "DHT", + "decimals": 18, + "website": "https://www.dhedge.org/", + "description": "Decentralized asset management protocol connecting the world’s best investment managers with investors in a permissionless, trustless fashion.", + "explorer": "https://polygonscan.com/token/0x8C92e38eCA8210f4fcBf17F0951b198Dd7668292", + "status": "active", + "id": "0x8C92e38eCA8210f4fcBf17F0951b198Dd7668292", + "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/polygon/assets/0x8C92e38eCA8210f4fcBf17F0951b198Dd7668292/logo.png b/blockchains/polygon/assets/0x8C92e38eCA8210f4fcBf17F0951b198Dd7668292/logo.png new file mode 100644 index 00000000..8bdc36d7 Binary files /dev/null and b/blockchains/polygon/assets/0x8C92e38eCA8210f4fcBf17F0951b198Dd7668292/logo.png differ diff --git a/blockchains/polygon/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json b/blockchains/polygon/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json new file mode 100644 index 00000000..ddbf6648 --- /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 00000000..e1b3a7d1 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 00000000..f81eaf3f --- /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 00000000..f9519849 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 00000000..af707892 --- /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 00000000..c7f511bb 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 00000000..7fefb244 --- /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 00000000..918d274f 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 new file mode 100644 index 00000000..76f1b189 --- /dev/null +++ b/blockchains/polygon/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json @@ -0,0 +1,36 @@ +{ + "name": "Pleasure Coin", + "website": "https://pleasurecoin.com/", + "description": "Pleasure Coin (NSFW) is an ERC-20 token on the Polygon chain that will be utilized within the Pleasure Network, an adult industry ecosystem that empowers individuals and businesses.", + "explorer": "https://polygonscan.com/token/0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19", + "type": "POLYGON", + "symbol": "NSFW", + "decimals": 18, + "status": "active", + "tags": [ + "wrapped" + ], + "id": "0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19", + "links": [ + { + "name": "telegram", + "url": "https://t.me/pleasurecoin_crypto" + }, + { + "name": "discord", + "url": "https://discord.com/invite/GCHkdY6fnF" + }, + { + "name": "x", + "url": "https://x.com/Pleasure_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pleasure-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/pleasure-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/logo.png b/blockchains/polygon/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/logo.png new file mode 100644 index 00000000..2592a2e3 Binary files /dev/null and b/blockchains/polygon/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/logo.png differ diff --git a/blockchains/polygon/assets/0x8f18dC399594b451EdA8c5da02d0563c0b2d0f16/info.json b/blockchains/polygon/assets/0x8f18dC399594b451EdA8c5da02d0563c0b2d0f16/info.json new file mode 100644 index 00000000..5de7bd21 --- /dev/null +++ b/blockchains/polygon/assets/0x8f18dC399594b451EdA8c5da02d0563c0b2d0f16/info.json @@ -0,0 +1,28 @@ +{ + "name": "moonwolf.io", + "symbol": "WOLF", + "type": "POLYGON", + "decimals": 9, + "description": "Moonwolf is a deflationary token on Matic / Polygon", + "website": "https://moonwolf.io", + "explorer": "https://polygonscan.com/token/0x8f18dc399594b451eda8c5da02d0563c0b2d0f16", + "status": "active", + "id": "0x8f18dC399594b451EdA8c5da02d0563c0b2d0f16", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/moonwolf-io/" + }, + { + "name": "x", + "url": "https://x.com/moonwolf_io" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Moonwolf_io/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x8f18dC399594b451EdA8c5da02d0563c0b2d0f16/logo.png b/blockchains/polygon/assets/0x8f18dC399594b451EdA8c5da02d0563c0b2d0f16/logo.png new file mode 100644 index 00000000..00dd5bdc Binary files /dev/null and b/blockchains/polygon/assets/0x8f18dC399594b451EdA8c5da02d0563c0b2d0f16/logo.png differ diff --git a/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json b/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json new file mode 100644 index 00000000..e954d6d1 --- /dev/null +++ b/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json @@ -0,0 +1,36 @@ +{ + "name": "Cherry Token", + "website": "https://cherry.network", + "description": "Trustless, distributed storage for decentralized applications", + "explorer": "https://polygonscan.com/token/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C", + "type": "POLYGON", + "symbol": "CHER", + "decimals": 18, + "status": "active", + "id": "0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C", + "links": [ + { + "name": "github", + "url": "https://github.com/cherrynetwork" + }, + { + "name": "x", + "url": "https://x.com/cherry_network" + }, + { + "name": "telegram", + "url": "https://t.me/cherrynetwork" + }, + { + "name": "medium", + "url": "https://medium.com/@cherryproject" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cherry-network" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/logo.png b/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/logo.png new file mode 100644 index 00000000..f21a9869 Binary files /dev/null and b/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/logo.png differ diff --git a/blockchains/polygon/assets/0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063/info.json b/blockchains/polygon/assets/0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063/info.json new file mode 100644 index 00000000..07687b36 --- /dev/null +++ b/blockchains/polygon/assets/0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063/info.json @@ -0,0 +1,38 @@ +{ + "name": "(PoS) 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://polygonscan.com/token/0x8f3cf7ad23cd3cadbd9735aff958023239c6a063", + "research": "https://research.binance.com/en/projects/dai", + "type": "POLYGON", + "symbol": "DAI", + "decimals": 18, + "status": "active", + "id": "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063", + "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/polygon/assets/0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063/logo.png b/blockchains/polygon/assets/0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063/logo.png new file mode 100644 index 00000000..836fe787 Binary files /dev/null and b/blockchains/polygon/assets/0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063/logo.png differ diff --git a/blockchains/polygon/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json b/blockchains/polygon/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json new file mode 100644 index 00000000..be8580a0 --- /dev/null +++ b/blockchains/polygon/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json @@ -0,0 +1,28 @@ +{ + "name": "OWL", + "website": "https://owldao.io", + "description": "OwlDAO - Build the Best Casino Solution on Ethereum Networks.", + "explorer": "https://polygonscan.com/token/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19", + "type": "POLYGON", + "symbol": "OWL", + "decimals": 18, + "status": "active", + "id": "0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/OWLDAOio" + }, + { + "name": "telegram", + "url": "https://t.me/owlDAO" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8MUcukEKnC" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/logo.png b/blockchains/polygon/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/logo.png new file mode 100644 index 00000000..44b1ce30 Binary files /dev/null and b/blockchains/polygon/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/logo.png differ diff --git a/blockchains/polygon/assets/0x9417669fBF23357D2774e9D421307bd5eA1006d2/info.json b/blockchains/polygon/assets/0x9417669fBF23357D2774e9D421307bd5eA1006d2/info.json new file mode 100644 index 00000000..d4016df3 --- /dev/null +++ b/blockchains/polygon/assets/0x9417669fBF23357D2774e9D421307bd5eA1006d2/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from Ethereum)", + "type": "POLYGON", + "symbol": "USDTet", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://polygonscan.com/token/0x9417669fBF23357D2774e9D421307bd5eA1006d2", + "status": "active", + "id": "0x9417669fBF23357D2774e9D421307bd5eA1006d2", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x9417669fBF23357D2774e9D421307bd5eA1006d2/logo.png b/blockchains/polygon/assets/0x9417669fBF23357D2774e9D421307bd5eA1006d2/logo.png new file mode 100644 index 00000000..46b9968e Binary files /dev/null and b/blockchains/polygon/assets/0x9417669fBF23357D2774e9D421307bd5eA1006d2/logo.png differ diff --git a/blockchains/polygon/assets/0x9719d867A500Ef117cC201206B8ab51e794d3F82/info.json b/blockchains/polygon/assets/0x9719d867A500Ef117cC201206B8ab51e794d3F82/info.json new file mode 100644 index 00000000..70a66d99 --- /dev/null +++ b/blockchains/polygon/assets/0x9719d867A500Ef117cC201206B8ab51e794d3F82/info.json @@ -0,0 +1,33 @@ +{ + "name": "Matic Aave interest bearing USDC", + "website": "https://www.aavegotchi.com/", + "description": "aTokens on Polygon are known as maTokens.", + "explorer": "https://polygonscan.com/token/0x9719d867a500ef117cc201206b8ab51e794d3f82", + "type": "POLYGON", + "symbol": "maUSDC", + "decimals": 6, + "status": "active", + "id": "0x9719d867A500Ef117cC201206B8ab51e794d3F82", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/NPwnWB6" + }, + { + "name": "x", + "url": "https://x.com/aavegotchi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/matic-aave-usdc/" + }, + { + "name": "medium", + "url": "https://aavegotchi.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/aavegotchi" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x9719d867A500Ef117cC201206B8ab51e794d3F82/logo.png b/blockchains/polygon/assets/0x9719d867A500Ef117cC201206B8ab51e794d3F82/logo.png new file mode 100644 index 00000000..943d1d9b Binary files /dev/null and b/blockchains/polygon/assets/0x9719d867A500Ef117cC201206B8ab51e794d3F82/logo.png differ diff --git a/blockchains/polygon/assets/0x98965474EcBeC2F532F1f780ee37b0b05F77Ca55/info.json b/blockchains/polygon/assets/0x98965474EcBeC2F532F1f780ee37b0b05F77Ca55/info.json new file mode 100644 index 00000000..d6c5f9d8 --- /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 00000000..7e4c1606 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 new file mode 100644 index 00000000..acc4eefb --- /dev/null +++ b/blockchains/polygon/assets/0x9A06Db14D639796B25A6ceC6A1bf614fd98815EC/info.json @@ -0,0 +1,69 @@ +{ + "name": "$ZKP Token", + "symbol": "$ZKP", + "type": "POLYGON", + "decimals": 18, + "description": "Panther Protocol Token on Polygon", + "website": "https://pantherprotocol.io", + "explorer": "https://polygonscan.com/token/0x9A06Db14D639796B25A6ceC6A1bf614fd98815EC", + "status": "active", + "id": "0x9A06Db14D639796B25A6ceC6A1bf614fd98815EC", + "links": [ + { + "name": "blog", + "url": "https://blog.pantherprotocol.io" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/panther-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/panther-protocol/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/WZuRnMCZ4c" + }, + { + "name": "docs", + "url": "https://docs.pantherprotocol.io/" + }, + { + "name": "facebook", + "url": "https://facebook.com/Panther-Protocol-102781158610564/" + }, + { + "name": "github", + "url": "https://github.com/pantherprotocol" + }, + { + "name": "medium", + "url": "https://medium.com/@panther-protocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/PantherProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/pantherprotocol" + }, + { + "name": "telegram_news", + "url": "https://t.me/pantherprotocolann" + }, + { + "name": "x", + "url": "https://x.com/ZkPanther" + }, + { + "name": "whitepaper", + "url": "https://pantherprotocol.io/resources/panther-protocol-v-1-0-1.pdf" + } + ], + "tags": [ + "privacy", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x9A06Db14D639796B25A6ceC6A1bf614fd98815EC/logo.png b/blockchains/polygon/assets/0x9A06Db14D639796B25A6ceC6A1bf614fd98815EC/logo.png new file mode 100644 index 00000000..a1a26fbc Binary files /dev/null and b/blockchains/polygon/assets/0x9A06Db14D639796B25A6ceC6A1bf614fd98815EC/logo.png differ diff --git a/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json new file mode 100644 index 00000000..8dc3ddfc --- /dev/null +++ b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/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://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 00000000..76d02e37 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 new file mode 100644 index 00000000..b493a745 --- /dev/null +++ b/blockchains/polygon/assets/0x9EECD634c7a934F752aF0EB90DdA9Ecc262F199F/info.json @@ -0,0 +1,37 @@ +{ + "name": "UniCrypt", + "website": "https://unicrypt.network", + "description": "UNCX is the governance token of the UniCrypt platform.", + "explorer": "https://polygonscan.com/token/0x9eecd634c7a934f752af0eb90dda9ecc262f199f", + "type": "POLYGON", + "symbol": "UNCX", + "decimals": 18, + "status": "active", + "id": "0x9EECD634c7a934F752aF0EB90DdA9Ecc262F199F", + "links": [ + { + "name": "x", + "url": "https://x.com/UNCX_token" + }, + { + "name": "medium", + "url": "https://unicrypt.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/uncx_token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uncx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/unicrypt" + }, + { + "name": "docs", + "url": "https://docs.unicrypt.network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x9EECD634c7a934F752aF0EB90DdA9Ecc262F199F/logo.png b/blockchains/polygon/assets/0x9EECD634c7a934F752aF0EB90DdA9Ecc262F199F/logo.png new file mode 100644 index 00000000..7dd5b728 Binary files /dev/null and b/blockchains/polygon/assets/0x9EECD634c7a934F752aF0EB90DdA9Ecc262F199F/logo.png differ diff --git a/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json b/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json new file mode 100644 index 00000000..f96e2849 --- /dev/null +++ b/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json @@ -0,0 +1,33 @@ +{ + "name": "Multichain", + "type": "POLYGON", + "symbol": "MULTI", + "decimals": 18, + "website": "https://multichain.org/", + "description": "Multichain is a cross-chain router protocol (CRP), to be the ultimate router for Web3.", + "explorer": "https://polygonscan.com/token/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3", + "status": "active", + "id": "0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3", + "links": [ + { + "name": "x", + "url": "https://x.com/multichainorg" + }, + { + "name": "github", + "url": "https://github.com/anyswap" + }, + { + "name": "telegram", + "url": "https://t.me/anyswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multichain/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/multichain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/logo.png b/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/logo.png new file mode 100644 index 00000000..9d7b0435 Binary files /dev/null and b/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/logo.png differ diff --git a/blockchains/polygon/assets/0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3/info.json b/blockchains/polygon/assets/0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3/info.json new file mode 100644 index 00000000..df21414b --- /dev/null +++ b/blockchains/polygon/assets/0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3/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://polygonscan.com/token/0x9a71012b13ca4d3d0cdc72a177df3ef03b0e76a3", + "type": "POLYGON", + "symbol": "BAL", + "decimals": 18, + "status": "active", + "id": "0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3", + "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/polygon/assets/0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3/logo.png b/blockchains/polygon/assets/0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3/logo.png new file mode 100644 index 00000000..6fc69171 Binary files /dev/null and b/blockchains/polygon/assets/0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3/logo.png differ diff --git a/blockchains/polygon/assets/0x9aF3b7DC29D3C4B1A5731408B6A9656fA7aC3b72/info.json b/blockchains/polygon/assets/0x9aF3b7DC29D3C4B1A5731408B6A9656fA7aC3b72/info.json new file mode 100644 index 00000000..3cffd615 --- /dev/null +++ b/blockchains/polygon/assets/0x9aF3b7DC29D3C4B1A5731408B6A9656fA7aC3b72/info.json @@ -0,0 +1,33 @@ +{ + "name": "PUSD", + "website": "https://app.polyquity.org/", + "description": "PUSD is a completely decentralized stablecoin minted by staking Matic on Polygon network. PUSD is the USD-pegged stablecoin used to pay out loans on the PolyQuity protocol.", + "explorer": "https://polygonscan.com/token/0x9af3b7dc29d3c4b1a5731408b6a9656fa7ac3b72", + "type": "POLYGON", + "symbol": "PUSD", + "decimals": 18, + "status": "active", + "id": "0x9aF3b7DC29D3C4B1A5731408B6A9656fA7aC3b72", + "links": [ + { + "name": "github", + "url": "https://github.com/PolyQuity/contracts" + }, + { + "name": "x", + "url": "https://x.com/polyquity_org" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pusd/" + }, + { + "name": "medium", + "url": "https://medium.com/@polyquity" + }, + { + "name": "telegram", + "url": "https://t.me/polyquityorg" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x9aF3b7DC29D3C4B1A5731408B6A9656fA7aC3b72/logo.png b/blockchains/polygon/assets/0x9aF3b7DC29D3C4B1A5731408B6A9656fA7aC3b72/logo.png new file mode 100644 index 00000000..8379efd5 Binary files /dev/null and b/blockchains/polygon/assets/0x9aF3b7DC29D3C4B1A5731408B6A9656fA7aC3b72/logo.png differ diff --git a/blockchains/polygon/assets/0x9c891326Fd8b1a713974f73bb604677E1E63396D/info.json b/blockchains/polygon/assets/0x9c891326Fd8b1a713974f73bb604677E1E63396D/info.json new file mode 100644 index 00000000..f00149de --- /dev/null +++ b/blockchains/polygon/assets/0x9c891326Fd8b1a713974f73bb604677E1E63396D/info.json @@ -0,0 +1,49 @@ +{ + "name": "ISLAMICOIN", + "symbol": "ISLAMI", + "type": "POLYGON", + "decimals": 7, + "description": "ISLAMICOIN A Cryptocurrency For The Global Muslim Community", + "website": "https://islamicoin.finance", + "explorer": "https://polygonscan.com/token/0x9c891326fd8b1a713974f73bb604677e1e63396d", + "status": "active", + "id": "0x9c891326Fd8b1a713974f73bb604677E1E63396D", + "links": [ + { + "name": "x", + "url": "https://x.com/islamicoin" + }, + { + "name": "github", + "url": "https://github.com/islamiblockchain" + }, + { + "name": "telegram", + "url": "https://t.me/islamicoin1" + }, + { + "name": "telegram_news", + "url": "https://t.me/islamicoinchat" + }, + { + "name": "facebook", + "url": "https://facebook.com/islamicoin" + }, + { + "name": "source_code", + "url": "https://github.com/ISLAMIBLOCKCHAIN/ISLAMICOIN/blob/main/contracts/ISLAMICOIN.sol" + }, + { + "name": "whitepaper", + "url": "https://secureservercdn.net/160.153.137.40/mmc.19a.myftpupload.com/wp-content/uploads/2021/09/islamicoinE.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCPdg9Cx2g9DyTR_xD5S_lXA" + }, + { + "name": "medium", + "url": "https://medium.com/@islamicoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x9c891326Fd8b1a713974f73bb604677E1E63396D/logo.png b/blockchains/polygon/assets/0x9c891326Fd8b1a713974f73bb604677E1E63396D/logo.png new file mode 100644 index 00000000..64357e75 Binary files /dev/null and b/blockchains/polygon/assets/0x9c891326Fd8b1a713974f73bb604677E1E63396D/logo.png differ diff --git a/blockchains/polygon/assets/0x9cd6746665D9557e1B9a775819625711d0693439/info.json b/blockchains/polygon/assets/0x9cd6746665D9557e1B9a775819625711d0693439/info.json new file mode 100644 index 00000000..4b4db2ea --- /dev/null +++ b/blockchains/polygon/assets/0x9cd6746665D9557e1B9a775819625711d0693439/info.json @@ -0,0 +1,14 @@ +{ + "name": "LUNA (Portal)", + "type": "POLYGON", + "symbol": "LUNA", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://terra.money", + "explorer": "https://polygonscan.com/token/0x9cd6746665D9557e1B9a775819625711d0693439", + "status": "active", + "id": "0x9cd6746665D9557e1B9a775819625711d0693439", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x9cd6746665D9557e1B9a775819625711d0693439/logo.png b/blockchains/polygon/assets/0x9cd6746665D9557e1B9a775819625711d0693439/logo.png new file mode 100644 index 00000000..2a885151 Binary files /dev/null and b/blockchains/polygon/assets/0x9cd6746665D9557e1B9a775819625711d0693439/logo.png differ diff --git a/blockchains/polygon/assets/0xA2bb7A68c46b53f6BbF6cC91C865Ae247A82E99B/info.json b/blockchains/polygon/assets/0xA2bb7A68c46b53f6BbF6cC91C865Ae247A82E99B/info.json new file mode 100644 index 00000000..52e8ed29 --- /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 00000000..9d7b0435 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 new file mode 100644 index 00000000..574e6534 --- /dev/null +++ b/blockchains/polygon/assets/0xA3c322Ad15218fBFAEd26bA7f616249f7705D945/info.json @@ -0,0 +1,24 @@ +{ + "name": "Metaverse", + "symbol": "MV", + "type": "POLYGON", + "decimals": 18, + "description": "Gensokishi Online -META WORLD- Token with utility to configure metaverse.", + "website": "https://genso.game/", + "explorer": "https://polygonscan.com/token/0xA3c322Ad15218fBFAEd26bA7f616249f7705D945", + "status": "active", + "id": "0xA3c322Ad15218fBFAEd26bA7f616249f7705D945", + "links": [ + { + "name": "x", + "url": "https://x.com/genso_meta" + }, + { + "name": "telegram", + "url": "https://t.me/gensometamain" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xA3c322Ad15218fBFAEd26bA7f616249f7705D945/logo.png b/blockchains/polygon/assets/0xA3c322Ad15218fBFAEd26bA7f616249f7705D945/logo.png new file mode 100644 index 00000000..edb82f05 Binary files /dev/null and b/blockchains/polygon/assets/0xA3c322Ad15218fBFAEd26bA7f616249f7705D945/logo.png differ diff --git a/blockchains/polygon/assets/0xA3f751662e282E83EC3cBc387d225Ca56dD63D3A/info.json b/blockchains/polygon/assets/0xA3f751662e282E83EC3cBc387d225Ca56dD63D3A/info.json new file mode 100644 index 00000000..564251db --- /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 00000000..7f1a87d2 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 00000000..ad94971c --- /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 00000000..1797500b Binary files /dev/null and b/blockchains/polygon/assets/0xA3fB72CBF2e07dC1b34AEA569Ed40755fd978BD8/logo.png differ diff --git a/blockchains/polygon/assets/0xA8D394fE7380b8cE6145d5f85E6aC22d4E91ACDe/info.json b/blockchains/polygon/assets/0xA8D394fE7380b8cE6145d5f85E6aC22d4E91ACDe/info.json new file mode 100644 index 00000000..ec3e152c --- /dev/null +++ b/blockchains/polygon/assets/0xA8D394fE7380b8cE6145d5f85E6aC22d4E91ACDe/info.json @@ -0,0 +1,14 @@ +{ + "name": "Binance USD (Portal from BSC)", + "type": "POLYGON", + "symbol": "BUSDbs", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.paxos.com/busd/", + "explorer": "https://polygonscan.com/token/0xa8d394fe7380b8ce6145d5f85e6ac22d4e91acde", + "status": "active", + "id": "0xA8D394fE7380b8cE6145d5f85E6aC22d4E91ACDe", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xA8D394fE7380b8cE6145d5f85E6aC22d4E91ACDe/logo.png b/blockchains/polygon/assets/0xA8D394fE7380b8cE6145d5f85E6aC22d4E91ACDe/logo.png new file mode 100644 index 00000000..58b66f7e Binary files /dev/null and b/blockchains/polygon/assets/0xA8D394fE7380b8cE6145d5f85E6aC22d4E91ACDe/logo.png differ diff --git a/blockchains/polygon/assets/0xACe7eb41D6BAd44907cdA84A122F052c74cB7826/info.json b/blockchains/polygon/assets/0xACe7eb41D6BAd44907cdA84A122F052c74cB7826/info.json new file mode 100644 index 00000000..b2c2f2b8 --- /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 00000000..306714a9 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 00000000..207e0a6e --- /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 00000000..281119d1 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 new file mode 100644 index 00000000..49823c2d --- /dev/null +++ b/blockchains/polygon/assets/0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C/info.json @@ -0,0 +1,33 @@ +{ + "name": "Crypto.com Coin", + "website": "https://crypto.com/", + "description": "The most profitable and secure platform to entrust your digital assets. Absolutely safe with multi-layer encrypted protection.", + "explorer": "https://polygonscan.com/token/0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C", + "type": "POLYGON", + "symbol": "CRO", + "decimals": 8, + "status": "active", + "id": "0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C", + "links": [ + { + "name": "x", + "url": "https://x.com/cryptocom" + }, + { + "name": "facebook", + "url": "https://facebook.com/CryptoComOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoComOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crypto-com-chain/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/crypto-com-chain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C/logo.png b/blockchains/polygon/assets/0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C/logo.png new file mode 100644 index 00000000..f3c46a06 Binary files /dev/null and b/blockchains/polygon/assets/0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C/logo.png differ diff --git a/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json b/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json new file mode 100644 index 00000000..8d612719 --- /dev/null +++ b/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json @@ -0,0 +1,40 @@ +{ + "name": "BOB", + "type": "POLYGON", + "symbol": "BOB", + "decimals": 18, + "website": "https://www.zkbob.com/", + "description": "BOB is a stable token optimized for the zkBob protocol.", + "explorer": "https://polygonscan.com/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/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/logo.png b/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/logo.png new file mode 100644 index 00000000..cf97abec Binary files /dev/null and b/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/logo.png differ diff --git a/blockchains/polygon/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json b/blockchains/polygon/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json new file mode 100644 index 00000000..bc0cfdc8 --- /dev/null +++ b/blockchains/polygon/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json @@ -0,0 +1,33 @@ +{ + "name": "Impossible Finance", + "website": "https://impossible.finance", + "description": "Impossible Finance is a builder-focused multichain ecosystem featuring decentralized incubator, launchpad, and swap. IF is the governance and fee accrual token for the swap.", + "explorer": "https://polygonscan.com/token/0xb0e1fc65c1a741b4662b813eb787d369b8614af1", + "type": "POLYGON", + "symbol": "IF", + "decimals": 18, + "status": "active", + "id": "0xB0e1fc65C1a741b4662B813eB787d369b8614Af1", + "links": [ + { + "name": "github", + "url": "https://github.com/impossiblefinance" + }, + { + "name": "x", + "url": "https://x.com/impossiblefi" + }, + { + "name": "blog", + "url": "https://medium.com/impossiblefinance" + }, + { + "name": "telegram", + "url": "https://t.me/ImpossibleFinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/impossible-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/logo.png b/blockchains/polygon/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/logo.png new file mode 100644 index 00000000..320f13c6 Binary files /dev/null and b/blockchains/polygon/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/logo.png differ diff --git a/blockchains/polygon/assets/0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762/info.json b/blockchains/polygon/assets/0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762/info.json new file mode 100644 index 00000000..4794607c --- /dev/null +++ b/blockchains/polygon/assets/0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762/info.json @@ -0,0 +1,28 @@ +{ + "name": "Request", + "type": "POLYGON", + "symbol": "REQ", + "decimals": 18, + "website": "https://request.network/", + "description": "Request Network is the protocol for payment requests. They are immutably recorded processed without an intermediary. Companies, DAOs & individuals pay & get paid in cryptos of payment networks incl. Ethereum, BSC, & Fantom.", + "explorer": "https://polygonscan.com/token/0xb25e20de2f2ebb4cffd4d16a55c7b395e8a94762", + "status": "active", + "id": "0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762", + "links": [ + { + "name": "x", + "url": "https://x.com/RequestNetwork" + }, + { + "name": "telegram", + "url": "https://t.me/requestnetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/request/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762/logo.png b/blockchains/polygon/assets/0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762/logo.png new file mode 100644 index 00000000..1bd37a35 Binary files /dev/null and b/blockchains/polygon/assets/0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762/logo.png differ diff --git a/blockchains/polygon/assets/0xB2C63830D4478cB331142FAc075A39671a5541dC/info.json b/blockchains/polygon/assets/0xB2C63830D4478cB331142FAc075A39671a5541dC/info.json new file mode 100644 index 00000000..3a43d666 --- /dev/null +++ b/blockchains/polygon/assets/0xB2C63830D4478cB331142FAc075A39671a5541dC/info.json @@ -0,0 +1,29 @@ +{ + "name": "Bombcrypto Coin", + "type": "POLYGON", + "symbol": "BOMB", + "decimals": 18, + "website": "https://polygon.bombcrypto.io/", + "description": "BOMB, the native utility token of Bomb Crypto 2 is used to play, exchange, and trade on the ecosystem.", + "explorer": "https://polygonscan.com/token/0xb2c63830d4478cb331142fac075a39671a5541dc", + "status": "active", + "id": "0xB2C63830D4478cB331142FAc075A39671a5541dC", + "links": [ + { + "name": "x", + "url": "https://x.com/BombPolygon" + }, + { + "name": "telegram", + "url": "https://t.me/Bombcrypto2_polygon" + }, + { + "name": "facebook", + "url": "https://facebook.com/BombPolygon" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xB2C63830D4478cB331142FAc075A39671a5541dC/logo.png b/blockchains/polygon/assets/0xB2C63830D4478cB331142FAc075A39671a5541dC/logo.png new file mode 100644 index 00000000..601812c6 Binary files /dev/null and b/blockchains/polygon/assets/0xB2C63830D4478cB331142FAc075A39671a5541dC/logo.png differ diff --git a/blockchains/polygon/assets/0xB424F20a80117472175f03853E2901f6FB0c0016/info.json b/blockchains/polygon/assets/0xB424F20a80117472175f03853E2901f6FB0c0016/info.json new file mode 100644 index 00000000..725eedfe --- /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 00000000..040fa906 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 00000000..33ffd6e8 --- /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/0xB5C064F955D8e7F38fE0460C556a72987494eE17/logo.png b/blockchains/polygon/assets/0xB5C064F955D8e7F38fE0460C556a72987494eE17/logo.png new file mode 100644 index 00000000..cfafcd41 Binary files /dev/null and b/blockchains/polygon/assets/0xB5C064F955D8e7F38fE0460C556a72987494eE17/logo.png differ diff --git a/blockchains/polygon/assets/0xB6EBc3ca1741a8f37551E44A51eC00aD417B38CA/info.json b/blockchains/polygon/assets/0xB6EBc3ca1741a8f37551E44A51eC00aD417B38CA/info.json new file mode 100644 index 00000000..334c4d2a --- /dev/null +++ b/blockchains/polygon/assets/0xB6EBc3ca1741a8f37551E44A51eC00aD417B38CA/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ariadne", + "symbol": "ARDN", + "type": "POLYGON", + "decimals": 18, + "description": "Ariadne is a cross-chain DeFi marketplace that is lowering the fees to enter/exit farms on multiple blockchains and saves swaps and bridges costs for both EVM and non-EVM chains.", + "website": "https://ariadne.finance", + "explorer": "https://polygonscan.com/token/0xB6EBc3ca1741a8f37551E44A51eC00aD417B38CA", + "status": "active", + "id": "0xB6EBc3ca1741a8f37551E44A51eC00aD417B38CA", + "links": [ + { + "name": "medium", + "url": "https://medium.com/ariadne-project" + }, + { + "name": "x", + "url": "https://x.com/ariadne_finance" + }, + { + "name": "telegram", + "url": "https://t.me/ariadne_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ariadne/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xB6EBc3ca1741a8f37551E44A51eC00aD417B38CA/logo.png b/blockchains/polygon/assets/0xB6EBc3ca1741a8f37551E44A51eC00aD417B38CA/logo.png new file mode 100644 index 00000000..fcefa0fa Binary files /dev/null and b/blockchains/polygon/assets/0xB6EBc3ca1741a8f37551E44A51eC00aD417B38CA/logo.png differ diff --git a/blockchains/polygon/assets/0xB9638272aD6998708de56BBC0A290a1dE534a578/info.json b/blockchains/polygon/assets/0xB9638272aD6998708de56BBC0A290a1dE534a578/info.json new file mode 100644 index 00000000..a3738679 --- /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 00000000..dceff00b 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 new file mode 100644 index 00000000..f75b3ce0 --- /dev/null +++ b/blockchains/polygon/assets/0xBCD287ca1C614Ecd8c5Ca95bFf3c13c392192df5/info.json @@ -0,0 +1,32 @@ +{ + "name": "AirNFT Token", + "type": "POLYGON", + "symbol": "AIRT", + "decimals": 18, + "website": "https://www.airnfts.com/", + "description": "AirNFTs is NFT marketplace built for multi-chain NFTs on BSC and Polygon and many more, where you can Mint, Trade, Earn with your NFTs.", + "explorer": "https://polygonscan.com/token/0xbcd287ca1c614ecd8c5ca95bff3c13c392192df5", + "status": "active", + "id": "0xBCD287ca1C614Ecd8c5Ca95bFf3c13c392192df5", + "links": [ + { + "name": "x", + "url": "https://x.com/airnfts" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/HKsQnSvxhfjjKGJe" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/airnfts/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/TXjQUVWXx7" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xBCD287ca1C614Ecd8c5Ca95bFf3c13c392192df5/logo.png b/blockchains/polygon/assets/0xBCD287ca1C614Ecd8c5Ca95bFf3c13c392192df5/logo.png new file mode 100644 index 00000000..ec221a9f Binary files /dev/null and b/blockchains/polygon/assets/0xBCD287ca1C614Ecd8c5Ca95bFf3c13c392192df5/logo.png differ diff --git a/blockchains/polygon/assets/0xC011a7E12a19f7B1f670d46F03B03f3342E82DFB/info.json b/blockchains/polygon/assets/0xC011a7E12a19f7B1f670d46F03B03f3342E82DFB/info.json new file mode 100644 index 00000000..234a58e3 --- /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 00000000..5c01bc24 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 new file mode 100644 index 00000000..966ab894 --- /dev/null +++ b/blockchains/polygon/assets/0xC1543024DC71247888a7e139c644F44E75E96d38/info.json @@ -0,0 +1,28 @@ +{ + "name": "Battle World", + "type": "POLYGON", + "symbol": "BWO", + "decimals": 18, + "website": "https://battleworld.game/", + "description": "Battle World is a Gamefi Metaverse project built on Polygon network. A globally appealing mid-core game for the masses.", + "explorer": "https://polygonscan.com/token/0xc1543024dc71247888a7e139c644f44e75e96d38", + "status": "active", + "id": "0xC1543024DC71247888a7e139c644F44E75E96d38", + "links": [ + { + "name": "x", + "url": "https://x.com/BattleworldGame" + }, + { + "name": "telegram", + "url": "https://t.me/battleworldgame" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/battle-world/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xC1543024DC71247888a7e139c644F44E75E96d38/logo.png b/blockchains/polygon/assets/0xC1543024DC71247888a7e139c644F44E75E96d38/logo.png new file mode 100644 index 00000000..7508aa66 Binary files /dev/null and b/blockchains/polygon/assets/0xC1543024DC71247888a7e139c644F44E75E96d38/logo.png differ diff --git a/blockchains/polygon/assets/0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97/info.json b/blockchains/polygon/assets/0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97/info.json new file mode 100644 index 00000000..3947dc28 --- /dev/null +++ b/blockchains/polygon/assets/0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97/info.json @@ -0,0 +1,29 @@ +{ + "name": "DFYN Token (PoS)", + "website": "https://dfyn.network/", + "description": "The DFYN token, will perform a crucial role in the functioning of the Dfyn ecosystem. The DFYN token is expected to have multiple utilities.", + "explorer": "https://polygonscan.com/token/0xc168e40227e4ebd8c1cae80f7a55a4f0e6d66c97", + "type": "POLYGON", + "symbol": "DFYN", + "decimals": 18, + "status": "active", + "id": "0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97", + "links": [ + { + "name": "github", + "url": "https://github.com/dfyn" + }, + { + "name": "x", + "url": "https://x.com/_dfyn" + }, + { + "name": "telegram", + "url": "https://t.me/Dfyn_HQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dfyn-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97/logo.png b/blockchains/polygon/assets/0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97/logo.png new file mode 100644 index 00000000..ac91019d Binary files /dev/null and b/blockchains/polygon/assets/0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97/logo.png differ diff --git a/blockchains/polygon/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json b/blockchains/polygon/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json new file mode 100644 index 00000000..dc540682 --- /dev/null +++ b/blockchains/polygon/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json @@ -0,0 +1,55 @@ +{ + "name": "EverRise", + "type": "POLYGON", + "symbol": "RISE", + "decimals": 18, + "website": "https://www.everrise.com/", + "description": "The Original Buyback Token Powering The EverRise Ecosystem. EverRise token (RISE) is a multi-chain collateralized cryptocurrency that protects both the ecosystem and investors with its innovative buyback and staking protocol.", + "explorer": "https://polygonscan.com/token/0xC17c30e98541188614dF99239cABD40280810cA3", + "status": "active", + "id": "0xC17c30e98541188614dF99239cABD40280810cA3", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/everrise/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/everrise" + }, + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png b/blockchains/polygon/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png new file mode 100644 index 00000000..fb9f7a63 Binary files /dev/null and b/blockchains/polygon/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png differ diff --git a/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/info.json b/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/info.json new file mode 100644 index 00000000..a8ce3550 --- /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 00000000..2c15abc9 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 new file mode 100644 index 00000000..e43a450c --- /dev/null +++ b/blockchains/polygon/assets/0xC68e83a305b0FaD69E264A1769a0A070F190D2d6/info.json @@ -0,0 +1,29 @@ +{ + "name": "Polyroll Token", + "website": "https://polyroll.org/", + "description": "Polyroll is a decentralized casino powered by Chainlink and Polygon. It claims to be provably fair, transparent and immutable games, anytime anywhere.", + "explorer": "https://polygonscan.com/token/0xc68e83a305b0fad69e264a1769a0a070f190d2d6", + "type": "POLYGON", + "symbol": "ROLL", + "decimals": 18, + "status": "active", + "id": "0xC68e83a305b0FaD69E264A1769a0A070F190D2d6", + "links": [ + { + "name": "github", + "url": "https://github.com/polyroll" + }, + { + "name": "x", + "url": "https://x.com/PolyrollOrg" + }, + { + "name": "telegram", + "url": "https://t.me/polyroll" + }, + { + "name": "medium", + "url": "https://polyroll.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xC68e83a305b0FaD69E264A1769a0A070F190D2d6/logo.png b/blockchains/polygon/assets/0xC68e83a305b0FaD69E264A1769a0A070F190D2d6/logo.png new file mode 100644 index 00000000..eca76404 Binary files /dev/null and b/blockchains/polygon/assets/0xC68e83a305b0FaD69E264A1769a0A070F190D2d6/logo.png differ diff --git a/blockchains/polygon/assets/0xCcCde52eF8f7D74D73ee033f7DAccFaFe29eDd45/info.json b/blockchains/polygon/assets/0xCcCde52eF8f7D74D73ee033f7DAccFaFe29eDd45/info.json new file mode 100644 index 00000000..b2d97819 --- /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 00000000..afa7fedd 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 00000000..a6b70b43 --- /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 00000000..8c78552f 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 new file mode 100644 index 00000000..97391aef --- /dev/null +++ b/blockchains/polygon/assets/0xD4814770065F634003A8d8D70B4743E0C3f334ad/info.json @@ -0,0 +1,15 @@ +{ + "name": "Poly Ontology Token", + "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", + "research": "https://research.binance.com/en/projects/ontology", + "type": "POLYGON", + "symbol": "ONT", + "decimals": 18, + "status": "active", + "id": "0xD4814770065F634003A8d8D70B4743E0C3f334ad", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xD4814770065F634003A8d8D70B4743E0C3f334ad/logo.png b/blockchains/polygon/assets/0xD4814770065F634003A8d8D70B4743E0C3f334ad/logo.png new file mode 100644 index 00000000..25ffd17b Binary files /dev/null and b/blockchains/polygon/assets/0xD4814770065F634003A8d8D70B4743E0C3f334ad/logo.png differ diff --git a/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/info.json b/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/info.json new file mode 100644 index 00000000..f2bab1ea --- /dev/null +++ b/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/info.json @@ -0,0 +1,50 @@ +{ + "name": "Aave (PoS)", + "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", + "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": "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/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/logo.png b/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/logo.png new file mode 100644 index 00000000..d53b1142 Binary files /dev/null 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 00000000..65551e82 --- /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 00000000..6a9e9da2 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 new file mode 100644 index 00000000..04f1faa8 --- /dev/null +++ b/blockchains/polygon/assets/0xD86b5923F3AD7b585eD81B448170ae026c65ae9a/info.json @@ -0,0 +1,29 @@ +{ + "name": "IRON Stablecoin", + "website": "https://polygon.iron.finance/", + "description": "Multi-chain Partial-Collateralized Stablecoin", + "explorer": "https://polygonscan.com/token/0xd86b5923f3ad7b585ed81b448170ae026c65ae9a", + "type": "POLYGON", + "symbol": "IRON", + "decimals": 18, + "status": "active", + "id": "0xD86b5923F3AD7b585eD81B448170ae026c65ae9a", + "links": [ + { + "name": "github", + "url": "https://github.com/ironfinance" + }, + { + "name": "x", + "url": "https://x.com/ironfinance" + }, + { + "name": "telegram", + "url": "https://t.me/ironfinance" + }, + { + "name": "medium", + "url": "https://medium.com/@ironfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xD86b5923F3AD7b585eD81B448170ae026c65ae9a/logo.png b/blockchains/polygon/assets/0xD86b5923F3AD7b585eD81B448170ae026c65ae9a/logo.png new file mode 100644 index 00000000..39c35e53 Binary files /dev/null and b/blockchains/polygon/assets/0xD86b5923F3AD7b585eD81B448170ae026c65ae9a/logo.png differ diff --git a/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/info.json b/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/info.json new file mode 100644 index 00000000..114803cf --- /dev/null +++ b/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/info.json @@ -0,0 +1,36 @@ +{ + "name": "XSGD", + "type": "POLYGON", + "symbol": "XSGD", + "decimals": 6, + "website": "https://straitsx.com/xsgd", + "description": "XSGD is the fully collateralized Singapore Dollar stablecoin, powered by open-source blockchain protocols.", + "explorer": "https://polygonscan.com/token/0xDC3326e71D45186F113a2F448984CA0e8D201995", + "status": "active", + "id": "0xDC3326e71D45186F113a2F448984CA0e8D201995", + "links": [ + { + "name": "x", + "url": "https://x.com/straitsx" + }, + { + "name": "github", + "url": "https://github.com/Xfers/straitsx-tokens/tree/master/Polygon/XSGD" + }, + { + "name": "blog", + "url": "https://straitsx.com/blog" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xsgd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/xsgd" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/logo.png b/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/logo.png new file mode 100644 index 00000000..df1bd6c2 Binary files /dev/null and b/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/logo.png differ diff --git a/blockchains/polygon/assets/0xDD75542611D57C4b6e68168B14C3591C539022eD/info.json b/blockchains/polygon/assets/0xDD75542611D57C4b6e68168B14C3591C539022eD/info.json new file mode 100644 index 00000000..4d9199fe --- /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 00000000..4077cfed 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 new file mode 100644 index 00000000..1ca4f839 --- /dev/null +++ b/blockchains/polygon/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/info.json @@ -0,0 +1,25 @@ +{ + "name": "DEI", + "website": "https://deus.finance/", + "description": "DEUS Finance Evolution is a marketplace of decentralized financial services, where we provide the infrastructure for others to build financial instruments, such as synthetic stock trading platforms, options, and futures trading.", + "explorer": "https://polygonscan.com/token/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3", + "type": "POLYGON", + "symbol": "DEI", + "decimals": 18, + "status": "active", + "id": "0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3", + "links": [ + { + "name": "x", + "url": "https://x.com/DeusDao" + }, + { + "name": "telegram", + "url": "https://t.me/deusfinance" + }, + { + "name": "medium", + "url": "https://medium.com/@deusfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/logo.png b/blockchains/polygon/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/logo.png new file mode 100644 index 00000000..883b793c Binary files /dev/null and b/blockchains/polygon/assets/0xDE12c7959E1a72bbe8a5f7A1dc8f8EeF9Ab011B3/logo.png differ diff --git a/blockchains/polygon/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/info.json b/blockchains/polygon/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/info.json new file mode 100644 index 00000000..6389affb --- /dev/null +++ b/blockchains/polygon/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/info.json @@ -0,0 +1,25 @@ +{ + "name": "DEUS", + "website": "https://deus.finance/", + "description": "DEUS Finance Evolution is a marketplace of decentralized financial services, where we provide the infrastructure for others to build financial instruments, such as synthetic stock trading platforms, options, and futures trading.", + "explorer": "https://polygonscan.com/token/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44", + "type": "POLYGON", + "symbol": "DEUS", + "decimals": 18, + "status": "active", + "id": "0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44", + "links": [ + { + "name": "x", + "url": "https://x.com/DeusDao" + }, + { + "name": "telegram", + "url": "https://t.me/deusfinance" + }, + { + "name": "medium", + "url": "https://medium.com/@deusfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/logo.png b/blockchains/polygon/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/logo.png new file mode 100644 index 00000000..cb37bfd7 Binary files /dev/null and b/blockchains/polygon/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/logo.png differ diff --git a/blockchains/polygon/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json b/blockchains/polygon/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json new file mode 100644 index 00000000..09dff7cc --- /dev/null +++ b/blockchains/polygon/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json @@ -0,0 +1,47 @@ +{ + "name": "Vote-escrowed EverRise", + "type": "POLYGON", + "symbol": "veRISE", + "decimals": 18, + "website": "https://www.everrise.com/", + "description": "Virtual token that allows the Vote Escrowed (ve) EverRise weighted governance tokens from EverRise Staking NFTs to display in wallet balances.", + "explorer": "https://polygonscan.com/token/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", + "status": "active", + "id": "0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", + "links": [ + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png b/blockchains/polygon/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png new file mode 100644 index 00000000..47ffbe08 Binary files /dev/null and b/blockchains/polygon/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png differ diff --git a/blockchains/polygon/assets/0xE0339c80fFDE91F3e20494Df88d4206D86024cdF/info.json b/blockchains/polygon/assets/0xE0339c80fFDE91F3e20494Df88d4206D86024cdF/info.json new file mode 100644 index 00000000..2dd02490 --- /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 00000000..87fb6982 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 00000000..ab717281 --- /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 00000000..b80f4f7f 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 00000000..8ea56923 --- /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 00000000..e428af92 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 00000000..2972caa2 --- /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 00000000..66b1b3cc 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 00000000..a97b5ae8 --- /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 00000000..f1295da4 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 new file mode 100644 index 00000000..a6c78d4b --- /dev/null +++ b/blockchains/polygon/assets/0xE33dC9d2D7D64c1e23467aC7eD7F8eF56d0a8d66/info.json @@ -0,0 +1,33 @@ +{ + "name": "CherryPick", + "type": "POLYGON", + "symbol": "pCherry", + "decimals": 18, + "website": "https://www.fletaconnect.io", + "description": "Fleta Connect is a new DeFi(Decentralized Finance) service created by Team Fleta with years of experience in the field. It is willing to offer significant benefits to our users with its own buyback mechanism and aims to give more rewards to DeFi users.", + "explorer": "https://polygonscan.com/token/0xE33dC9d2D7D64c1e23467aC7eD7F8eF56d0a8d66", + "status": "active", + "id": "0xE33dC9d2D7D64c1e23467aC7eD7F8eF56d0a8d66", + "links": [ + { + "name": "x", + "url": "https://x.com/fletachain" + }, + { + "name": "github", + "url": "https://github.com/fletaio/fletaconnect" + }, + { + "name": "telegram", + "url": "https://t.me/FLETAofficialGroup" + }, + { + "name": "medium", + "url": "https://medium.com/fleta-first-chain" + }, + { + "name": "docs", + "url": "https://fletaconnect.gitbook.io/fletaconnect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xE33dC9d2D7D64c1e23467aC7eD7F8eF56d0a8d66/logo.png b/blockchains/polygon/assets/0xE33dC9d2D7D64c1e23467aC7eD7F8eF56d0a8d66/logo.png new file mode 100644 index 00000000..88a2d851 Binary files /dev/null and b/blockchains/polygon/assets/0xE33dC9d2D7D64c1e23467aC7eD7F8eF56d0a8d66/logo.png differ diff --git a/blockchains/polygon/assets/0xE5417Af564e4bFDA1c483642db72007871397896/info.json b/blockchains/polygon/assets/0xE5417Af564e4bFDA1c483642db72007871397896/info.json new file mode 100644 index 00000000..1daf6006 --- /dev/null +++ b/blockchains/polygon/assets/0xE5417Af564e4bFDA1c483642db72007871397896/info.json @@ -0,0 +1,52 @@ +{ + "name": "Gains Network", + "type": "POLYGON", + "symbol": "GNS", + "decimals": 18, + "website": "https://gains.trade/", + "description": "Gains Network is developing the next-gen decentralized leveraged trading platform - gTrade.", + "explorer": "https://polygonscan.com/token/0xe5417af564e4bfda1c483642db72007871397896", + "status": "active", + "id": "0xE5417Af564e4bFDA1c483642db72007871397896", + "links": [ + { + "name": "telegram", + "url": "https://t.me/GainsNetwork" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gains-network/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gains-network/" + }, + { + "name": "whitepaper", + "url": "https://gains-network.gitbook.io/docs-home/" + }, + { + "name": "docs", + "url": "https://gains-network.gitbook.io/docs-home/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/gains-network" + }, + { + "name": "github", + "url": "https://github.com/GainsNetwork/" + }, + { + "name": "blog", + "url": "https://medium.com/gains-network" + }, + { + "name": "x", + "url": "https://x.com/GainsNetwork_io" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xE5417Af564e4bFDA1c483642db72007871397896/logo.png b/blockchains/polygon/assets/0xE5417Af564e4bFDA1c483642db72007871397896/logo.png new file mode 100644 index 00000000..a7d79ca8 Binary files /dev/null and b/blockchains/polygon/assets/0xE5417Af564e4bFDA1c483642db72007871397896/logo.png differ diff --git a/blockchains/polygon/assets/0xE6469Ba6D2fD6130788E0eA9C0a0515900563b59/info.json b/blockchains/polygon/assets/0xE6469Ba6D2fD6130788E0eA9C0a0515900563b59/info.json new file mode 100644 index 00000000..631a3b57 --- /dev/null +++ b/blockchains/polygon/assets/0xE6469Ba6D2fD6130788E0eA9C0a0515900563b59/info.json @@ -0,0 +1,14 @@ +{ + "name": "UST (Wormhole)", + "type": "POLYGON", + "symbol": "UST", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://wormholebridge.com", + "explorer": "https://polygonscan.com/token/0xE6469Ba6D2fD6130788E0eA9C0a0515900563b59", + "status": "active", + "id": "0xE6469Ba6D2fD6130788E0eA9C0a0515900563b59", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xE6469Ba6D2fD6130788E0eA9C0a0515900563b59/logo.png b/blockchains/polygon/assets/0xE6469Ba6D2fD6130788E0eA9C0a0515900563b59/logo.png new file mode 100644 index 00000000..e3110cce Binary files /dev/null and b/blockchains/polygon/assets/0xE6469Ba6D2fD6130788E0eA9C0a0515900563b59/logo.png differ diff --git a/blockchains/polygon/assets/0xE77aBB1E75D2913B2076DD16049992FFeACa5235/info.json b/blockchains/polygon/assets/0xE77aBB1E75D2913B2076DD16049992FFeACa5235/info.json new file mode 100644 index 00000000..9dbf30e3 --- /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 00000000..6657c1fd 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 new file mode 100644 index 00000000..37cebf4f --- /dev/null +++ b/blockchains/polygon/assets/0xE7879BaFa6A41F919f145a97207e54839d34c9bA/info.json @@ -0,0 +1,28 @@ +{ + "name": "Matic-Peg Stream", + "website": "https://stream-coin.com/", + "description": "All-in-one Live Streaming on a blockchain-based platform.", + "explorer": "https://polygonscan.com/token/0xe7879bafa6a41f919f145a97207e54839d34c9ba", + "type": "POLYGON", + "symbol": "MSTRM", + "decimals": 18, + "status": "active", + "id": "0xE7879BaFa6A41F919f145a97207e54839d34c9bA", + "links": [ + { + "name": "x", + "url": "https://x.com/streamcoin_strm" + }, + { + "name": "github", + "url": "https://github.com/stream-coin-tech" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stream-coin/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xE7879BaFa6A41F919f145a97207e54839d34c9bA/logo.png b/blockchains/polygon/assets/0xE7879BaFa6A41F919f145a97207e54839d34c9bA/logo.png new file mode 100644 index 00000000..3e041120 Binary files /dev/null and b/blockchains/polygon/assets/0xE7879BaFa6A41F919f145a97207e54839d34c9bA/logo.png differ diff --git a/blockchains/polygon/assets/0xEAf631ac57F3CDDDd261770dD47F85066131a156/info.json b/blockchains/polygon/assets/0xEAf631ac57F3CDDDd261770dD47F85066131a156/info.json new file mode 100644 index 00000000..39a7d934 --- /dev/null +++ b/blockchains/polygon/assets/0xEAf631ac57F3CDDDd261770dD47F85066131a156/info.json @@ -0,0 +1,33 @@ +{ + "name": "Equalizer", + "type": "POLYGON", + "symbol": "EQZ", + "decimals": 18, + "website": "https://www.equalizer.finance/", + "description": "Equalizer is the first dedicated flash loan marketplace that can handle the rising demand for DeFi lending and borrowing. It sets itself apart by offering the lowest fees and transaction costs, a virtually unlimited choice of token vaults, high liquidity through yield farming, scalable, multi-chain infrastructure, and integration friendly.", + "explorer": "https://polygonscan.com/token/0xEAf631ac57F3CDDDd261770dD47F85066131a156", + "status": "active", + "id": "0xEAf631ac57F3CDDDd261770dD47F85066131a156", + "links": [ + { + "name": "x", + "url": "https://x.com/EqualizerFlash" + }, + { + "name": "github", + "url": "https://github.com/Equalizer-Finance" + }, + { + "name": "telegram", + "url": "https://t.me/EqualizerFlash" + }, + { + "name": "medium", + "url": "https://equalizer-finance.medium.com/" + }, + { + "name": "docs", + "url": "https://docs.equalizer.finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xEAf631ac57F3CDDDd261770dD47F85066131a156/logo.png b/blockchains/polygon/assets/0xEAf631ac57F3CDDDd261770dD47F85066131a156/logo.png new file mode 100644 index 00000000..a8c1accc Binary files /dev/null and b/blockchains/polygon/assets/0xEAf631ac57F3CDDDd261770dD47F85066131a156/logo.png differ diff --git a/blockchains/polygon/assets/0xED755dBa6Ec1eb520076Cec051a582A6d81A8253/info.json b/blockchains/polygon/assets/0xED755dBa6Ec1eb520076Cec051a582A6d81A8253/info.json new file mode 100644 index 00000000..d3be62c1 --- /dev/null +++ b/blockchains/polygon/assets/0xED755dBa6Ec1eb520076Cec051a582A6d81A8253/info.json @@ -0,0 +1,37 @@ +{ + "name": "Ultimate Champions Token", + "type": "POLYGON", + "symbol": "CHAMP", + "decimals": 18, + "website": "https://token.ultimate-champions.com/", + "description": "Ultimate Champions is a free to play and play to earn fantasy sports game.", + "explorer": "https://polygonscan.com/token/0xED755dBa6Ec1eb520076Cec051a582A6d81A8253", + "status": "active", + "id": "0xED755dBa6Ec1eb520076Cec051a582A6d81A8253", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ultimate-champions/" + }, + { + "name": "x", + "url": "https://x.com/UltiChamps" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.ultimate-champions.com/" + }, + { + "name": "medium", + "url": "https://ultimatechampions.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/ultimatechampions" + } + ], + "tags": [ + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xED755dBa6Ec1eb520076Cec051a582A6d81A8253/logo.png b/blockchains/polygon/assets/0xED755dBa6Ec1eb520076Cec051a582A6d81A8253/logo.png new file mode 100644 index 00000000..a16cde4b Binary files /dev/null and b/blockchains/polygon/assets/0xED755dBa6Ec1eb520076Cec051a582A6d81A8253/logo.png differ diff --git a/blockchains/polygon/assets/0xEE800B277A96B0f490a1A732e1D6395FAD960A26/info.json b/blockchains/polygon/assets/0xEE800B277A96B0f490a1A732e1D6395FAD960A26/info.json new file mode 100644 index 00000000..d1aad511 --- /dev/null +++ b/blockchains/polygon/assets/0xEE800B277A96B0f490a1A732e1D6395FAD960A26/info.json @@ -0,0 +1,28 @@ +{ + "name": "ARPA Token", + "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", + "type": "POLYGON", + "symbol": "ARPA", + "decimals": 18, + "status": "active", + "id": "0xEE800B277A96B0f490a1A732e1D6395FAD960A26", + "links": [ + { + "name": "x", + "url": "https://x.com/arpaofficial?source=user_profile---------------------------" + }, + { + "name": "telegram", + "url": "https://t.me/arpa_community" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arpa-chain/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xEE800B277A96B0f490a1A732e1D6395FAD960A26/logo.png b/blockchains/polygon/assets/0xEE800B277A96B0f490a1A732e1D6395FAD960A26/logo.png new file mode 100644 index 00000000..457e2538 Binary files /dev/null and b/blockchains/polygon/assets/0xEE800B277A96B0f490a1A732e1D6395FAD960A26/logo.png differ diff --git a/blockchains/polygon/assets/0xF36f79feb5d97e18C69078d8D13d941CaE447A04/info.json b/blockchains/polygon/assets/0xF36f79feb5d97e18C69078d8D13d941CaE447A04/info.json new file mode 100644 index 00000000..412a1404 --- /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 00000000..093ddde5 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 new file mode 100644 index 00000000..1229ee3a --- /dev/null +++ b/blockchains/polygon/assets/0xFB32513135e3267995268E3099d2B6114d20B6eD/info.json @@ -0,0 +1,36 @@ +{ + "name": "Coinerr", + "website": "https://coinerr.io", + "description": "Coinerr make your payments easierr, make your world betterr, make your shopping saferr.", + "explorer": "https://polygonscan.com/token/0xfb32513135e3267995268e3099d2b6114d20b6ed", + "type": "POLYGON", + "symbol": "ERR", + "decimals": 9, + "status": "active", + "id": "0xFB32513135e3267995268E3099d2B6114d20B6eD", + "links": [ + { + "name": "x", + "url": "https://x.com/coinerr_err" + }, + { + "name": "telegram", + "url": "https://t.me/coinerr_ERR" + }, + { + "name": "whitepaper", + "url": "https://coinerr.io/papers/whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://coinerr.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinerr/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xFB32513135e3267995268E3099d2B6114d20B6eD/logo.png b/blockchains/polygon/assets/0xFB32513135e3267995268E3099d2B6114d20B6eD/logo.png new file mode 100644 index 00000000..83180d67 Binary files /dev/null and b/blockchains/polygon/assets/0xFB32513135e3267995268E3099d2B6114d20B6eD/logo.png differ diff --git a/blockchains/polygon/assets/0xFEF5d947472e72Efbb2E388c730B7428406F2F95/info.json b/blockchains/polygon/assets/0xFEF5d947472e72Efbb2E388c730B7428406F2F95/info.json new file mode 100644 index 00000000..e4a32afa --- /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 00000000..d18680cf 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 00000000..779d8880 --- /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 00000000..ea3dae36 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 new file mode 100644 index 00000000..039352f2 --- /dev/null +++ b/blockchains/polygon/assets/0xFbdd194376de19a88118e84E279b977f165d01b8/info.json @@ -0,0 +1,37 @@ +{ + "name": "beefy.finance", + "website": "https://beefy.finance/", + "description": "The Multichain Yield Optimizer", + "explorer": "https://polygonscan.com/token/0xFbdd194376de19a88118e84E279b977f165d01b8", + "type": "POLYGON", + "symbol": "BIFI", + "decimals": 18, + "status": "active", + "id": "0xFbdd194376de19a88118e84E279b977f165d01b8", + "links": [ + { + "name": "github", + "url": "https://github.com/beefyfinance" + }, + { + "name": "x", + "url": "https://x.com/beefyfinance" + }, + { + "name": "telegram", + "url": "https://t.me/beefyannouncement" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/beefy-finance/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/beefy-finance/" + } + ], + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xFbdd194376de19a88118e84E279b977f165d01b8/logo.png b/blockchains/polygon/assets/0xFbdd194376de19a88118e84E279b977f165d01b8/logo.png new file mode 100644 index 00000000..6c09bb9a Binary files /dev/null and b/blockchains/polygon/assets/0xFbdd194376de19a88118e84E279b977f165d01b8/logo.png differ diff --git a/blockchains/polygon/assets/0xa1428174F516F527fafdD146b883bB4428682737/info.json b/blockchains/polygon/assets/0xa1428174F516F527fafdD146b883bB4428682737/info.json new file mode 100644 index 00000000..5e2a4bfb --- /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 00000000..d74002d8 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 new file mode 100644 index 00000000..67c6c300 --- /dev/null +++ b/blockchains/polygon/assets/0xa3Fa99A148fA48D14Ed51d610c367C61876997F1/info.json @@ -0,0 +1,29 @@ +{ + "name": "miMATIC", + "website": "https://www.mai.finance/", + "description": "MAI (miMatic) is a stablecoin backed by collateral, and can only be minted with this collateral backing it. MAI is soft pegged to the USD, meaning that 1 MAI is around 1 USD.", + "explorer": "https://polygonscan.com/token/0xa3fa99a148fa48d14ed51d610c367c61876997f1", + "type": "POLYGON", + "symbol": "miMATIC", + "decimals": 18, + "status": "active", + "id": "0xa3Fa99A148fA48D14Ed51d610c367C61876997F1", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mimatic/" + }, + { + "name": "x", + "url": "https://x.com/0xLaoZi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/mQq55j65xJ" + }, + { + "name": "medium", + "url": "https://0xlaozi.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xa3Fa99A148fA48D14Ed51d610c367C61876997F1/logo.png b/blockchains/polygon/assets/0xa3Fa99A148fA48D14Ed51d610c367C61876997F1/logo.png new file mode 100644 index 00000000..60a58d48 Binary files /dev/null and b/blockchains/polygon/assets/0xa3Fa99A148fA48D14Ed51d610c367C61876997F1/logo.png differ diff --git a/blockchains/polygon/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/info.json b/blockchains/polygon/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/info.json new file mode 100644 index 00000000..3abb4785 --- /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 00000000..ac9cd453 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 00000000..1b84c473 --- /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 00000000..3c7144e4 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 new file mode 100644 index 00000000..8a12dcd8 --- /dev/null +++ b/blockchains/polygon/assets/0xaAa5B9e6c589642f98a1cDA99B9D024B8407285A/info.json @@ -0,0 +1,33 @@ +{ + "name": "IRON Titanium Token", + "symbol": "TITAN", + "type": "POLYGON", + "decimals": 18, + "description": "Multi-chain Partial-Collateralized Stablecoin", + "website": "https://polygon.iron.finance", + "explorer": "https://polygonscan.com/token/0xaAa5B9e6c589642f98a1cDA99B9D024B8407285A", + "status": "active", + "id": "0xaAa5B9e6c589642f98a1cDA99B9D024B8407285A", + "links": [ + { + "name": "x", + "url": "https://x.com/ironfinance" + }, + { + "name": "github", + "url": "https://github.com/ironfinance" + }, + { + "name": "telegram", + "url": "https://t.me/ironfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/iron-titanium-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/iron-titanium-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xaAa5B9e6c589642f98a1cDA99B9D024B8407285A/logo.png b/blockchains/polygon/assets/0xaAa5B9e6c589642f98a1cDA99B9D024B8407285A/logo.png new file mode 100644 index 00000000..07fed015 Binary files /dev/null and b/blockchains/polygon/assets/0xaAa5B9e6c589642f98a1cDA99B9D024B8407285A/logo.png differ diff --git a/blockchains/polygon/assets/0xaD2eFE464c4F3b99255c594d0091e938D3bcDF97/info.json b/blockchains/polygon/assets/0xaD2eFE464c4F3b99255c594d0091e938D3bcDF97/info.json new file mode 100644 index 00000000..bfa50627 --- /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 00000000..0040a021 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 00000000..17d2e65d --- /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 00000000..de043850 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 new file mode 100644 index 00000000..7bf52d36 --- /dev/null +++ b/blockchains/polygon/assets/0xb33EaAd8d922B1083446DC23f610c2567fB5180f/info.json @@ -0,0 +1,33 @@ +{ + "name": "Uniswap (PoS)", + "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", + "type": "POLYGON", + "symbol": "UNI", + "decimals": 18, + "status": "active", + "id": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f", + "links": [ + { + "name": "discord", + "url": "https://discord.com/FCfyBSbCU5" + }, + { + "name": "x", + "url": "https://x.com/UniswapProtocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uniswap/" + }, + { + "name": "blog", + "url": "https://uniswap.org/blog/uni/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uniswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xb33EaAd8d922B1083446DC23f610c2567fB5180f/logo.png b/blockchains/polygon/assets/0xb33EaAd8d922B1083446DC23f610c2567fB5180f/logo.png new file mode 100644 index 00000000..1e0f32e0 Binary files /dev/null and b/blockchains/polygon/assets/0xb33EaAd8d922B1083446DC23f610c2567fB5180f/logo.png differ diff --git a/blockchains/polygon/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json b/blockchains/polygon/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json new file mode 100644 index 00000000..213906c6 --- /dev/null +++ b/blockchains/polygon/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json @@ -0,0 +1,47 @@ +{ + "name": "EverRise Rewards", + "type": "POLYGON", + "symbol": "claimRISE", + "decimals": 18, + "website": "https://www.everrise.com/", + "description": "Virtual token that allows unclaimed rewards from EverRise Staking NFTs and its Vote Escrowed (ve) EverRise to display in wallet balances.", + "explorer": "https://polygonscan.com/token/0xbBD7B847C6d0d0B5691518a363194D71426475F1", + "status": "active", + "id": "0xbBD7B847C6d0d0B5691518a363194D71426475F1", + "links": [ + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png b/blockchains/polygon/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png new file mode 100644 index 00000000..efff8d00 Binary files /dev/null and b/blockchains/polygon/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png differ diff --git a/blockchains/polygon/assets/0xbFc70507384047Aa74c29Cdc8c5Cb88D0f7213AC/info.json b/blockchains/polygon/assets/0xbFc70507384047Aa74c29Cdc8c5Cb88D0f7213AC/info.json new file mode 100644 index 00000000..a09011c4 --- /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 00000000..3a2b934f 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 00000000..82bb8287 --- /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 00000000..d66f3d33 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 new file mode 100644 index 00000000..043fc1a6 --- /dev/null +++ b/blockchains/polygon/assets/0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE/info.json @@ -0,0 +1,33 @@ +{ + "name": "Pegaxy", + "symbol": "PGX", + "type": "POLYGON", + "decimals": 18, + "description": "Pegaxy Game Native Governance Token", + "website": "https://pegaxy.io", + "explorer": "https://polygonscan.com/token/0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE", + "status": "active", + "id": "0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE", + "links": [ + { + "name": "x", + "url": "https://x.com/PegaxyOfficial" + }, + { + "name": "github", + "url": "https://github.com/Pegaxy" + }, + { + "name": "telegram", + "url": "https://t.me/pegaxyglobal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pegaxy/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pegaxy-stone" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE/logo.png b/blockchains/polygon/assets/0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE/logo.png new file mode 100644 index 00000000..23944555 Binary files /dev/null and b/blockchains/polygon/assets/0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE/logo.png differ diff --git a/blockchains/polygon/assets/0xc2132D05D31c914a87C6611C10748AEb04B58e8F/info.json b/blockchains/polygon/assets/0xc2132D05D31c914a87C6611C10748AEb04B58e8F/info.json new file mode 100644 index 00000000..8b166bb5 --- /dev/null +++ b/blockchains/polygon/assets/0xc2132D05D31c914a87C6611C10748AEb04B58e8F/info.json @@ -0,0 +1,28 @@ +{ + "name": "(PoS) 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://polygonscan.com/token/0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "type": "POLYGON", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "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/polygon/assets/0xc2132D05D31c914a87C6611C10748AEb04B58e8F/logo.png b/blockchains/polygon/assets/0xc2132D05D31c914a87C6611C10748AEb04B58e8F/logo.png new file mode 100644 index 00000000..4b302730 Binary files /dev/null and b/blockchains/polygon/assets/0xc2132D05D31c914a87C6611C10748AEb04B58e8F/logo.png differ diff --git a/blockchains/polygon/assets/0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539/info.json b/blockchains/polygon/assets/0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539/info.json new file mode 100644 index 00000000..a795e43c --- /dev/null +++ b/blockchains/polygon/assets/0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539/info.json @@ -0,0 +1,29 @@ +{ + "name": "Adamant", + "website": "https://adamant.finance/", + "description": "Adamant is a yield optimizer vault that provides users with an easy and safe way to automatically compound their tokens on the Polygon (MATIC) network and maximize their yields.", + "explorer": "https://polygonscan.com/token/0xc3fdbadc7c795ef1d6ba111e06ff8f16a20ea539", + "type": "POLYGON", + "symbol": "ADDY", + "decimals": 18, + "status": "active", + "id": "0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539", + "links": [ + { + "name": "github", + "url": "https://github.com/eepdev" + }, + { + "name": "x", + "url": "https://x.com/AdamantVault" + }, + { + "name": "telegram", + "url": "https://t.me/adamantfinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/adamant/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539/logo.png b/blockchains/polygon/assets/0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539/logo.png new file mode 100644 index 00000000..2318879f Binary files /dev/null and b/blockchains/polygon/assets/0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539/logo.png differ diff --git a/blockchains/polygon/assets/0xc48F61a288A08F1B80c2edd74652e1276B6A168c/info.json b/blockchains/polygon/assets/0xc48F61a288A08F1B80c2edd74652e1276B6A168c/info.json new file mode 100644 index 00000000..7f32598f --- /dev/null +++ b/blockchains/polygon/assets/0xc48F61a288A08F1B80c2edd74652e1276B6A168c/info.json @@ -0,0 +1,52 @@ +{ + "name": "GYSR", + "website": "https://gysr.io", + "description": "GYSR is an open platform for on-chain incentives.", + "explorer": "https://polygonscan.com/token/0xc48f61a288a08f1b80c2edd74652e1276b6a168c", + "type": "POLYGON", + "symbol": "GYSR", + "decimals": 18, + "status": "active", + "id": "0xc48F61a288A08F1B80c2edd74652e1276B6A168c", + "links": [ + { + "name": "github", + "url": "https://github.com/gysr-io" + }, + { + "name": "x", + "url": "https://x.com/gysr_io" + }, + { + "name": "telegram", + "url": "https://t.me/gysr_io" + }, + { + "name": "discord", + "url": "https://discord.com/invite/qjWa7JB" + }, + { + "name": "medium", + "url": "https://medium.com/gysr" + }, + { + "name": "blog", + "url": "https://gysr.substack.com" + }, + { + "name": "whitepaper", + "url": "https://resources.gysr.io/gysr_v2_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gysr" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/geyser" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xc48F61a288A08F1B80c2edd74652e1276B6A168c/logo.png b/blockchains/polygon/assets/0xc48F61a288A08F1B80c2edd74652e1276B6A168c/logo.png new file mode 100644 index 00000000..18ceeb85 Binary files /dev/null and b/blockchains/polygon/assets/0xc48F61a288A08F1B80c2edd74652e1276B6A168c/logo.png differ diff --git a/blockchains/polygon/assets/0xc8bcb58caEf1bE972C0B638B1dD8B0748Fdc8A44/info.json b/blockchains/polygon/assets/0xc8bcb58caEf1bE972C0B638B1dD8B0748Fdc8A44/info.json new file mode 100644 index 00000000..b95146aa --- /dev/null +++ b/blockchains/polygon/assets/0xc8bcb58caEf1bE972C0B638B1dD8B0748Fdc8A44/info.json @@ -0,0 +1,41 @@ +{ + "name": "PearZap Token", + "website": "https://app.pearzap.com/", + "description": "High yield farms & pools on the Polygon Chain. Secure, experienced team and innovative farm features", + "explorer": "https://polygonscan.com/token/0xc8bcb58caEf1bE972C0B638B1dD8B0748Fdc8A44", + "type": "POLYGON", + "symbol": "PEAR", + "decimals": 18, + "status": "active", + "id": "0xc8bcb58caEf1bE972C0B638B1dD8B0748Fdc8A44", + "links": [ + { + "name": "github", + "url": "https://github.com/pearzap" + }, + { + "name": "x", + "url": "https://x.com/pearzap" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pear" + }, + { + "name": "medium", + "url": "https://pearzap.medium.com" + }, + { + "name": "telegram", + "url": "https://t.me/pearzap" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCF1dw4IcP_wsXGm4nM4kPqQ" + }, + { + "name": "docs", + "url": "https://doc.pearzap.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xc8bcb58caEf1bE972C0B638B1dD8B0748Fdc8A44/logo.png b/blockchains/polygon/assets/0xc8bcb58caEf1bE972C0B638B1dD8B0748Fdc8A44/logo.png new file mode 100644 index 00000000..7835dab7 Binary files /dev/null and b/blockchains/polygon/assets/0xc8bcb58caEf1bE972C0B638B1dD8B0748Fdc8A44/logo.png differ diff --git a/blockchains/polygon/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/info.json b/blockchains/polygon/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/info.json new file mode 100644 index 00000000..24373b1a --- /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 00000000..d290d98d 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 new file mode 100644 index 00000000..1dd1bfd6 --- /dev/null +++ b/blockchains/polygon/assets/0xccBe9B810d6574701d324fD6DbE0A1b68f9d5bf7/info.json @@ -0,0 +1,37 @@ +{ + "name": " Stacker Ventures Token (PoS)", + "website": "https://stacker.vc/polygon", + "description": "Stacker Ventures is a community-run protocol for initiating and managing pooled capital on the blockchain.", + "explorer": "https://polygonscan.com/token/0xccbe9b810d6574701d324fd6dbe0a1b68f9d5bf7", + "type": "POLYGON", + "symbol": "STACK", + "decimals": 18, + "status": "active", + "id": "0xccBe9B810d6574701d324fD6DbE0A1b68f9d5bf7", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/hFNRy3t" + }, + { + "name": "x", + "url": "https://x.com/StackerVentures" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/stacker-ventures/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stacker-ventures/" + }, + { + "name": "github", + "url": "https://github.com/stacker-ventures" + }, + { + "name": "telegram", + "url": "https://t.me/StackerVentures" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xccBe9B810d6574701d324fD6DbE0A1b68f9d5bf7/logo.png b/blockchains/polygon/assets/0xccBe9B810d6574701d324fD6DbE0A1b68f9d5bf7/logo.png new file mode 100644 index 00000000..05ed4125 Binary files /dev/null and b/blockchains/polygon/assets/0xccBe9B810d6574701d324fD6DbE0A1b68f9d5bf7/logo.png differ diff --git a/blockchains/polygon/assets/0xcf32822ff397Ef82425153a9dcb726E5fF61DCA7/info.json b/blockchains/polygon/assets/0xcf32822ff397Ef82425153a9dcb726E5fF61DCA7/info.json new file mode 100644 index 00000000..e70abffc --- /dev/null +++ b/blockchains/polygon/assets/0xcf32822ff397Ef82425153a9dcb726E5fF61DCA7/info.json @@ -0,0 +1,37 @@ +{ + "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://polygonscan.com/token/0xcf32822ff397Ef82425153a9dcb726E5fF61DCA7", + "type": "POLYGON", + "symbol": "GMEE", + "decimals": 18, + "status": "active", + "id": "0xcf32822ff397Ef82425153a9dcb726E5fF61DCA7", + "links": [ + { + "name": "discord", + "url": "https://discord.com/p5ZYTVJeQz" + }, + { + "name": "x", + "url": "https://x.com/GAMEEToken" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gamee" + }, + { + "name": "medium", + "url": "https://gamee.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamee/" + }, + { + "name": "telegram", + "url": "https://t.me/gameetoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xcf32822ff397Ef82425153a9dcb726E5fF61DCA7/logo.png b/blockchains/polygon/assets/0xcf32822ff397Ef82425153a9dcb726E5fF61DCA7/logo.png new file mode 100644 index 00000000..791c6bf7 Binary files /dev/null and b/blockchains/polygon/assets/0xcf32822ff397Ef82425153a9dcb726E5fF61DCA7/logo.png differ diff --git a/blockchains/polygon/assets/0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F/info.json b/blockchains/polygon/assets/0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F/info.json new file mode 100644 index 00000000..05667b1d --- /dev/null +++ b/blockchains/polygon/assets/0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F/info.json @@ -0,0 +1,28 @@ +{ + "name": "VOXEL Token", + "type": "POLYGON", + "symbol": "VOXEL", + "decimals": 18, + "website": "https://voxies.io/", + "description": "Voxies is a free-to-play, 3D turn-based tactical RPG. The gameplay of Voxies is similar to a traditional RPG and tactical game, but it is powered by blockchain technology and ownership is central to the core concepts of the game.", + "explorer": "https://polygonscan.com/token/0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f", + "status": "active", + "id": "0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F", + "links": [ + { + "name": "x", + "url": "https://x.com/VoxiesNFT" + }, + { + "name": "discord", + "url": "https://discord.com/invite/voxies" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/voxies/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F/logo.png b/blockchains/polygon/assets/0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F/logo.png new file mode 100644 index 00000000..8a68f9dd Binary files /dev/null and b/blockchains/polygon/assets/0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F/logo.png differ diff --git a/blockchains/polygon/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/polygon/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json new file mode 100644 index 00000000..c7b3d16c --- /dev/null +++ b/blockchains/polygon/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json @@ -0,0 +1,36 @@ +{ + "name": "Okcash", + "type": "POLYGON", + "symbol": "OK", + "decimals": 18, + "website": "https://okcash.co", + "description": "OK is the leading multi chain PoS, web3 + NFTs open source electronic cash, its design is public, nobody owns or controls Okcash and everyone can take part.", + "explorer": "https://polygonscan.com/token/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", + "status": "active", + "id": "0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189", + "links": [ + { + "name": "x", + "url": "https://x.com/OkcashCrypto" + }, + { + "name": "github", + "url": "https://github.com/okcashpro" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/okcash/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/okcash" + }, + { + "name": "medium", + "url": "https://medium.com/okcash" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png b/blockchains/polygon/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png new file mode 100644 index 00000000..a3b20074 Binary files /dev/null and b/blockchains/polygon/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png differ diff --git a/blockchains/polygon/assets/0xd93f7E271cB87c23AaA73edC008A79646d1F9912/info.json b/blockchains/polygon/assets/0xd93f7E271cB87c23AaA73edC008A79646d1F9912/info.json new file mode 100644 index 00000000..bf20c79c --- /dev/null +++ b/blockchains/polygon/assets/0xd93f7E271cB87c23AaA73edC008A79646d1F9912/info.json @@ -0,0 +1,14 @@ +{ + "name": "SOL (Portal)", + "type": "POLYGON", + "symbol": "SOL", + "decimals": 9, + "description": "Cross Chain Portal Bridged Token", + "website": "https://solana.com/", + "explorer": "https://polygonscan.com/token/0xd93f7e271cb87c23aaa73edc008a79646d1f9912", + "status": "active", + "id": "0xd93f7E271cB87c23AaA73edC008A79646d1F9912", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xd93f7E271cB87c23AaA73edC008A79646d1F9912/logo.png b/blockchains/polygon/assets/0xd93f7E271cB87c23AaA73edC008A79646d1F9912/logo.png new file mode 100644 index 00000000..7a2e75fd Binary files /dev/null and b/blockchains/polygon/assets/0xd93f7E271cB87c23AaA73edC008A79646d1F9912/logo.png differ diff --git a/blockchains/polygon/assets/0xdDa7b23D2D72746663E7939743f929a3d85FC975/info.json b/blockchains/polygon/assets/0xdDa7b23D2D72746663E7939743f929a3d85FC975/info.json new file mode 100644 index 00000000..afb12c34 --- /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 00000000..c219b24e 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 new file mode 100644 index 00000000..97a203ce --- /dev/null +++ b/blockchains/polygon/assets/0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32/info.json @@ -0,0 +1,33 @@ +{ + "name": "Telcoin", + "website": "https://www.telco.in/", + "description": "A cryptocurrency distributed by your mobile operator and accepted everywhere.", + "explorer": "https://polygonscan.com/token/0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32", + "type": "POLYGON", + "symbol": "TEL", + "decimals": 2, + "status": "active", + "id": "0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32", + "links": [ + { + "name": "github", + "url": "https://github.com/telcoin" + }, + { + "name": "x", + "url": "https://x.com/telcoin_team" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/telcoin/" + }, + { + "name": "medium", + "url": "https://medium.com/@telcoin" + }, + { + "name": "telegram", + "url": "https://t.me/telcoincommunity" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32/logo.png b/blockchains/polygon/assets/0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32/logo.png new file mode 100644 index 00000000..045e5db7 Binary files /dev/null and b/blockchains/polygon/assets/0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32/logo.png differ diff --git a/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/info.json b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/info.json new file mode 100644 index 00000000..1c691997 --- /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 00000000..cc051995 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 new file mode 100644 index 00000000..fb0b3ca2 --- /dev/null +++ b/blockchains/polygon/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json @@ -0,0 +1,44 @@ +{ + "name": "PayBolt", + "type": "POLYGON", + "symbol": "PAY", + "decimals": 18, + "website": "https://www.paybolt.io/", + "description": "Pay expenses, earn $PAY rewards with your crypto tokens in near-instant time. Start spending your tokens at cafe, restaurant and everywhere.", + "explorer": "https://polygonscan.com/token/0xe580074A10360404AF3ABfe2d524D5806D993ea3", + "status": "active", + "id": "0xe580074A10360404AF3ABfe2d524D5806D993ea3", + "links": [ + { + "name": "telegram", + "url": "https://t.me/PayBolt" + }, + { + "name": "x", + "url": "https://x.com/PayBoltofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/PayBolt" + }, + { + "name": "facebook", + "url": "https://facebook.com/PayBolt" + }, + { + "name": "whitepaper", + "url": "https://file.paybolt.io/paybolt_whitepaper.pdf" + }, + { + "name": "github", + "url": "https://github.com/paybolt" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/paybolt/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/logo.png b/blockchains/polygon/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/logo.png new file mode 100644 index 00000000..83f7a479 Binary files /dev/null and b/blockchains/polygon/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/logo.png differ diff --git a/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 00000000..02dc467b --- /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 00000000..9259df4c 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 00000000..1cbefed8 --- /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 00000000..d77700e2 Binary files /dev/null and b/blockchains/polygon/assets/0xeB51D9A39AD5EEF215dC0Bf39a8821ff804A0F01/logo.png differ diff --git a/blockchains/polygon/assets/0xeCDCB5B88F8e3C15f95c720C51c71c9E2080525d/info.json b/blockchains/polygon/assets/0xeCDCB5B88F8e3C15f95c720C51c71c9E2080525d/info.json new file mode 100644 index 00000000..33e6f036 --- /dev/null +++ b/blockchains/polygon/assets/0xeCDCB5B88F8e3C15f95c720C51c71c9E2080525d/info.json @@ -0,0 +1,14 @@ +{ + "name": "Binance Coin (Portal)", + "type": "POLYGON", + "symbol": "BNB", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.binance.com/", + "explorer": "https://polygonscan.com/token/0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d", + "status": "active", + "id": "0xeCDCB5B88F8e3C15f95c720C51c71c9E2080525d", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xeCDCB5B88F8e3C15f95c720C51c71c9E2080525d/logo.png b/blockchains/polygon/assets/0xeCDCB5B88F8e3C15f95c720C51c71c9E2080525d/logo.png new file mode 100644 index 00000000..24a702d4 Binary files /dev/null and b/blockchains/polygon/assets/0xeCDCB5B88F8e3C15f95c720C51c71c9E2080525d/logo.png differ diff --git a/blockchains/polygon/assets/0xef938b6da8576a896f6E0321ef80996F4890f9c4/info.json b/blockchains/polygon/assets/0xef938b6da8576a896f6E0321ef80996F4890f9c4/info.json new file mode 100644 index 00000000..ac17ad17 --- /dev/null +++ b/blockchains/polygon/assets/0xef938b6da8576a896f6E0321ef80996F4890f9c4/info.json @@ -0,0 +1,32 @@ +{ + "name": "Decentral Games", + "website": "https://decentral.games", + "description": "Decentral Games is a metaverse-native gaming DAO building play-to-earn poker. DG Hodlers vote on treasury management, economic policy, and development to grow and strengthen the Decentral Games ecosystem.", + "explorer": "https://polygonscan.com/token/0xef938b6da8576a896f6e0321ef80996f4890f9c4", + "type": "POLYGON", + "symbol": "DG", + "decimals": 18, + "status": "active", + "id": "0xef938b6da8576a896f6E0321ef80996F4890f9c4", + "tags": [ + "gamefi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/decentralgames" + }, + { + "name": "github", + "url": "https://github.com/decentralgames" + }, + { + "name": "telegram", + "url": "https://t.me/decentralgames" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/decentral-games-new/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xef938b6da8576a896f6E0321ef80996F4890f9c4/logo.png b/blockchains/polygon/assets/0xef938b6da8576a896f6E0321ef80996F4890f9c4/logo.png new file mode 100644 index 00000000..b1c58d2c Binary files /dev/null and b/blockchains/polygon/assets/0xef938b6da8576a896f6E0321ef80996F4890f9c4/logo.png differ diff --git a/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json b/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json new file mode 100644 index 00000000..e8cb2429 --- /dev/null +++ b/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json @@ -0,0 +1,36 @@ +{ + "name": "Revolt 2 Earn", + "type": "POLYGON", + "symbol": "RVLT", + "decimals": 18, + "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": "abandoned", + "id": "0xf0f9D895aCa5c8678f706FB8216fa22957685A13", + "links": [ + { + "name": "x", + "url": "https://x.com/wearecultdao" + }, + { + "name": "github", + "url": "https://github.com/cultdao-developer/revolt2earn" + }, + { + "name": "telegram", + "url": "https://t.me/revolt2earn" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/revolt-2-earn/" + }, + { + "name": "blog", + "url": "https://wearecultdao.medium.com/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D/info.json b/blockchains/polygon/assets/0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D/info.json new file mode 100644 index 00000000..00783a91 --- /dev/null +++ b/blockchains/polygon/assets/0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D/info.json @@ -0,0 +1,28 @@ +{ + "name": "Akash Network (PoS)", + "type": "POLYGON", + "symbol": "AKT", + "decimals": 6, + "website": "https://akash.network", + "description": "Akash Network is a Distributed Peer-to-Peer Marketplace for Cloud Compute", + "explorer": "https://polygonscan.com/token/0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D", + "status": "active", + "id": "0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D", + "links": [ + { + "name": "x", + "url": "https://x.com/akashnet_" + }, + { + "name": "telegram", + "url": "https://t.me/AkashNW" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/akash-network/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D/logo.png b/blockchains/polygon/assets/0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D/logo.png new file mode 100644 index 00000000..01df4e76 Binary files /dev/null and b/blockchains/polygon/assets/0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D/logo.png differ diff --git a/blockchains/polygon/assets/0xf1c1A3C2481A3a8A3f173A9ab5Ade275292A6fA3/info.json b/blockchains/polygon/assets/0xf1c1A3C2481A3a8A3f173A9ab5Ade275292A6fA3/info.json new file mode 100644 index 00000000..9f7491c9 --- /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 00000000..9c41a2d4 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 new file mode 100644 index 00000000..dd42d39f --- /dev/null +++ b/blockchains/polygon/assets/0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66/info.json @@ -0,0 +1,41 @@ +{ + "name": "IoTeX Network", + "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", + "explorer": "https://polygonscan.com/token/0xf6372cdb9c1d3674e83842e3800f2a62ac9f3c66", + "type": "POLYGON", + "symbol": "IOTX", + "decimals": 18, + "status": "active", + "id": "0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66", + "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/polygon/assets/0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66/logo.png b/blockchains/polygon/assets/0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66/logo.png new file mode 100644 index 00000000..13dd33ca Binary files /dev/null and b/blockchains/polygon/assets/0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66/logo.png differ diff --git a/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/info.json b/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/info.json new file mode 100644 index 00000000..31c300b5 --- /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 00000000..0aa4eded 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 new file mode 100644 index 00000000..3fe68fe6 --- /dev/null +++ b/blockchains/polygon/assets/0xfad70FD116559914240faB82b0078c4E82a6a1B8/info.json @@ -0,0 +1,25 @@ +{ + "name": "CremePieSwap", + "website": "https://cremepieswap.finance", + "description": "Lead chain adoption by creating the lowest fee, highest rewarding AMM on the Polygon (MATIC) network.", + "explorer": "https://polygonscan.com/token/0xfad70fd116559914240fab82b0078c4e82a6a1b8", + "type": "POLYGON", + "symbol": "CPIE", + "decimals": 18, + "status": "active", + "id": "0xfad70FD116559914240faB82b0078c4E82a6a1B8", + "links": [ + { + "name": "github", + "url": "https://github.com/CremePieSwap" + }, + { + "name": "x", + "url": "https://x.com/CremePieSwap" + }, + { + "name": "whitepaper", + "url": "https://docs.cremepieswap.finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xfad70FD116559914240faB82b0078c4E82a6a1B8/logo.png b/blockchains/polygon/assets/0xfad70FD116559914240faB82b0078c4E82a6a1B8/logo.png new file mode 100644 index 00000000..12bdc19d Binary files /dev/null and b/blockchains/polygon/assets/0xfad70FD116559914240faB82b0078c4E82a6a1B8/logo.png differ diff --git a/blockchains/polygon/assets/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C/info.json b/blockchains/polygon/assets/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C/info.json new file mode 100644 index 00000000..9dc0312b --- /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 00000000..5c4fa21d 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 new file mode 100644 index 00000000..a731ad10 --- /dev/null +++ b/blockchains/polygon/info/info.json @@ -0,0 +1,31 @@ +{ + "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": "POL", + "rpc_url": "https://polygon-rpc.com", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/maticnetwork/" + }, + { + "name": "x", + "url": "https://x.com/0xPolygon" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/maticnetwork/" + }, + { + "name": "whitepaper", + "url": "https://github.com/maticnetwork/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/info/logo.png b/blockchains/polygon/info/logo.png new file mode 100644 index 00000000..6d3c0e9b Binary files /dev/null and b/blockchains/polygon/info/logo.png differ diff --git a/blockchains/polygon/info/square_logo.png b/blockchains/polygon/info/square_logo.png new file mode 100644 index 00000000..abea8510 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 new file mode 100644 index 00000000..daa0797a --- /dev/null +++ b/blockchains/polygon/tokenlist-extended.json @@ -0,0 +1,237 @@ +{ + "name": "Trust Wallet: Polygon", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-08-27T11:20:36.086215", + "tokens": [ + { + "asset": "c966_t0xaAa5B9e6c589642f98a1cDA99B9D024B8407285A", + "type": "POLYGON", + "address": "0xaAa5B9e6c589642f98a1cDA99B9D024B8407285A", + "name": "IRON Titanium Token", + "symbol": "TITAN", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xaAa5B9e6c589642f98a1cDA99B9D024B8407285A/logo.png" + }, + { + "asset": "c966_t0xD86b5923F3AD7b585eD81B448170ae026c65ae9a", + "type": "POLYGON", + "address": "0xD86b5923F3AD7b585eD81B448170ae026c65ae9a", + "name": "IRON Stablecoin", + "symbol": "IRON", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xD86b5923F3AD7b585eD81B448170ae026c65ae9a/logo.png" + }, + { + "asset": "c966_t0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE", + "type": "POLYGON", + "address": "0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE", + "name": "Pegaxy", + "symbol": "PGX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE/logo.png" + }, + { + "asset": "c966_t0xb33EaAd8d922B1083446DC23f610c2567fB5180f", + "type": "POLYGON", + "address": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f", + "name": "Uniswap (PoS)", + "symbol": "UNI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xb33EaAd8d922B1083446DC23f610c2567fB5180f/logo.png" + }, + { + "asset": "c966_t0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a", + "type": "POLYGON", + "address": "0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a", + "name": "SushiToken (PoS)", + "symbol": "SUSHI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a/logo.png" + }, + { + "asset": "c966_t0x8C92e38eCA8210f4fcBf17F0951b198Dd7668292", + "type": "POLYGON", + "address": "0x8C92e38eCA8210f4fcBf17F0951b198Dd7668292", + "name": "dHEDGE DAO Token (PoS)", + "symbol": "DHT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x8C92e38eCA8210f4fcBf17F0951b198Dd7668292/logo.png" + }, + { + "asset": "c966_t0x3a9A81d576d83FF21f26f325066054540720fC34", + "type": "POLYGON", + "address": "0x3a9A81d576d83FF21f26f325066054540720fC34", + "name": "Streamr", + "symbol": "DATA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x3a9A81d576d83FF21f26f325066054540720fC34/logo.png" + }, + { + "asset": "c966_t0xef938b6da8576a896f6E0321ef80996F4890f9c4", + "type": "POLYGON", + "address": "0xef938b6da8576a896f6E0321ef80996F4890f9c4", + "name": "Decentral Games", + "symbol": "DG", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xef938b6da8576a896f6E0321ef80996F4890f9c4/logo.png" + }, + { + "asset": "c966_t0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97", + "type": "POLYGON", + "address": "0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97", + "name": "DFYN Token (PoS)", + "symbol": "DFYN", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97/logo.png" + }, + { + "asset": "c966_t0x229b1b6C23ff8953D663C4cBB519717e323a0a84", + "type": "POLYGON", + "address": "0x229b1b6C23ff8953D663C4cBB519717e323a0a84", + "name": "BLOK", + "symbol": "BLOK", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x229b1b6C23ff8953D663C4cBB519717e323a0a84/logo.png" + }, + { + "asset": "c966_t0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4", + "type": "POLYGON", + "address": "0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4", + "name": "Route", + "symbol": "ROUTE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/logo.png" + }, + { + "asset": "c966_t0x05089C9EBFFa4F0AcA269e32056b1b36B37ED71b", + "type": "POLYGON", + "address": "0x05089C9EBFFa4F0AcA269e32056b1b36B37ED71b", + "name": "Krill", + "symbol": "Krill", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x05089C9EBFFa4F0AcA269e32056b1b36B37ED71b/logo.png" + }, + { + "asset": "c966_t0x3a3Df212b7AA91Aa0402B9035b098891d276572B", + "type": "POLYGON", + "address": "0x3a3Df212b7AA91Aa0402B9035b098891d276572B", + "name": "Fish", + "symbol": "FISH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x3a3Df212b7AA91Aa0402B9035b098891d276572B/logo.png" + }, + { + "asset": "c966_t0x4c4BF319237D98a30A929A96112EfFa8DA3510EB", + "type": "POLYGON", + "address": "0x4c4BF319237D98a30A929A96112EfFa8DA3510EB", + "name": "WaultSwap Polygon", + "symbol": "WEXpoly", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x4c4BF319237D98a30A929A96112EfFa8DA3510EB/logo.png" + }, + { + "asset": "c966_t0xFbdd194376de19a88118e84E279b977f165d01b8", + "type": "POLYGON", + "address": "0xFbdd194376de19a88118e84E279b977f165d01b8", + "name": "beefy.finance", + "symbol": "BIFI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xFbdd194376de19a88118e84E279b977f165d01b8/logo.png" + }, + { + "asset": "c966_t0x5d47bAbA0d66083C52009271faF3F50DCc01023C", + "type": "POLYGON", + "address": "0x5d47bAbA0d66083C52009271faF3F50DCc01023C", + "name": "Ape Swap Finance Banana", + "symbol": "BANANA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x5d47bAbA0d66083C52009271faF3F50DCc01023C/logo.png" + }, + { + "asset": "c966_t0xcf32822ff397Ef82425153a9dcb726E5fF61DCA7", + "type": "POLYGON", + "address": "0xcf32822ff397Ef82425153a9dcb726E5fF61DCA7", + "name": "GAMEE Token", + "symbol": "GMEE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xcf32822ff397Ef82425153a9dcb726E5fF61DCA7/logo.png" + }, + { + "asset": "c966_t0xa3Fa99A148fA48D14Ed51d610c367C61876997F1", + "type": "POLYGON", + "address": "0xa3Fa99A148fA48D14Ed51d610c367C61876997F1", + "name": "miMATIC", + "symbol": "miMATIC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xa3Fa99A148fA48D14Ed51d610c367C61876997F1/logo.png" + }, + { + "asset": "c966_t0x76e63a3E7Ba1e2E61D3DA86a87479f983dE89a7E", + "type": "POLYGON", + "address": "0x76e63a3E7Ba1e2E61D3DA86a87479f983dE89a7E", + "name": "Augury Finance", + "symbol": "OMEN", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x76e63a3E7Ba1e2E61D3DA86a87479f983dE89a7E/logo.png" + }, + { + "asset": "c966_t0x8A953CfE442c5E8855cc6c61b1293FA648BAE472", + "type": "POLYGON", + "address": "0x8A953CfE442c5E8855cc6c61b1293FA648BAE472", + "name": "PolyDoge", + "symbol": "PolyDoge", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x8A953CfE442c5E8855cc6c61b1293FA648BAE472/logo.png" + }, + { + "asset": "c966_t0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539", + "type": "POLYGON", + "address": "0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539", + "name": "Adamant", + "symbol": "ADDY", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539/logo.png" + }, + { + "asset": "c966_t0x172370d5Cd63279eFa6d502DAB29171933a610AF", + "type": "POLYGON", + "address": "0x172370d5Cd63279eFa6d502DAB29171933a610AF", + "name": "CRV (PoS)", + "symbol": "CRV", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x172370d5Cd63279eFa6d502DAB29171933a610AF/logo.png" + }, + { + "asset": "c966_t0x580A84C73811E1839F75d86d75d88cCa0c241fF4", + "type": "POLYGON", + "address": "0x580A84C73811E1839F75d86d75d88cCa0c241fF4", + "name": "Qi Dao", + "symbol": "QI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x580A84C73811E1839F75d86d75d88cCa0c241fF4/logo.png" + }, + { + "asset": "c966_t0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32", + "type": "POLYGON", + "address": "0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32", + "name": "Telcoin", + "symbol": "TEL", + "decimals": 2, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32/logo.png" + }, + { + "asset": "c966_t0x8f18dC399594b451EdA8c5da02d0563c0b2d0f16", + "type": "POLYGON", + "address": "0x8f18dC399594b451EdA8c5da02d0563c0b2d0f16", + "name": "moonwolf.io", + "symbol": "WOLF", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x8f18dC399594b451EdA8c5da02d0563c0b2d0f16/logo.png" + } + ], + "version": { + "major": 26, + "minor": 0, + "patch": 0 + } +} \ No newline at end of file diff --git a/blockchains/polygon/tokenlist.json b/blockchains/polygon/tokenlist.json new file mode 100644 index 00000000..073698b4 --- /dev/null +++ b/blockchains/polygon/tokenlist.json @@ -0,0 +1,135 @@ +{ + "name": "Trust Wallet: Polygon", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2021-10-07T08:50:36.056Z", + "tokens": [ + { + "asset": "c966_t0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619", + "type": "POLYGON", + "address": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619/logo.png", + "pairs": [ + { + "base": "c966_t0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270" + }, + { + "base": "c966_t0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174" + }, + { + "base": "c966_t0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39" + }, + { + "base": "c966_t0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063" + }, + { + "base": "c966_t0xc2132D05D31c914a87C6611C10748AEb04B58e8F" + }, + { + "base": "c966_t0xD6DF932A45C0f255f85145f286eA0b292B21C90B" + } + ] + }, + { + "asset": "c966_t0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "type": "POLYGON", + "address": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "name": "Wrapped MATIC", + "symbol": "WMATIC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270/logo.png", + "pairs": [ + { + "base": "c966_t0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174" + }, + { + "base": "c966_t0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619" + }, + { + "base": "c966_t0xc2132D05D31c914a87C6611C10748AEb04B58e8F" + } + ] + }, + { + "asset": "c966_t0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", + "type": "POLYGON", + "address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", + "name": "Bridged USD Coin (PoS)", + "symbol": "USDC.e", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/logo.png", + "pairs": [ + { + "base": "c966_t0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270" + }, + { + "base": "c966_t0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619" + }, + { + "base": "c966_t0xc2132D05D31c914a87C6611C10748AEb04B58e8F" + } + ] + }, + { + "asset": "c966_t0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "type": "POLYGON", + "address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "name": "(PoS) Tether USD", + "symbol": "USDT", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xc2132D05D31c914a87C6611C10748AEb04B58e8F/logo.png", + "pairs": [ + { + "base": "c966_t0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270" + }, + { + "base": "c966_t0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174" + }, + { + "base": "c966_t0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619" + } + ] + }, + { + "asset": "c966_t0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063", + "type": "POLYGON", + "address": "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063", + "name": "(PoS) Dai Stablecoin", + "symbol": "DAI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063/logo.png", + "pairs": [ + { + "base": "c966_t0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619" + } + ] + }, + { + "asset": "c966_t0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39", + "type": "POLYGON", + "address": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39", + "name": "ChainLink Token", + "symbol": "LINK", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39/logo.png", + "pairs": [] + }, + { + "asset": "c966_t0xD6DF932A45C0f255f85145f286eA0b292B21C90B", + "type": "POLYGON", + "address": "0xD6DF932A45C0f255f85145f286eA0b292B21C90B", + "name": "Aave (PoS)", + "symbol": "AAVE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/logo.png", + "pairs": [] + } + ], + "version": { + "major": 6, + "minor": 0, + "patch": 0 + } +} diff --git a/blockchains/polygonmumbai/info/info.json b/blockchains/polygonmumbai/info/info.json new file mode 100644 index 00000000..9f574b93 --- /dev/null +++ b/blockchains/polygonmumbai/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "Polygon Mumbai Testnet", + "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": "tMATIC", + "rpc_url": "https://polygon-testnet.public.blastapi.io", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/polygonmumbai/info/logo.png b/blockchains/polygonmumbai/info/logo.png new file mode 100644 index 00000000..13af3e9b Binary files /dev/null and b/blockchains/polygonmumbai/info/logo.png differ diff --git a/blockchains/polygonmumbai/info/square_logo.png b/blockchains/polygonmumbai/info/square_logo.png new file mode 100644 index 00000000..abea8510 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 new file mode 100644 index 00000000..a6059e9f --- /dev/null +++ b/blockchains/polygonzkevm/assets/0x1E4a5963aBFD975d8c9021ce480b42188849D41d/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether USD", + "type": "ZKEVM", + "symbol": "USDT", + "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://explorer.public.zkevm-test.net/address/0x1e4a5963abfd975d8c9021ce480b42188849d41d", + "status": "active", + "id": "0x1E4a5963aBFD975d8c9021ce480b42188849D41d", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tether/" + }, + { + "name": "x", + "url": "https://x.com/Tether_to" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/polygonzkevm/assets/0x1E4a5963aBFD975d8c9021ce480b42188849D41d/logo.png b/blockchains/polygonzkevm/assets/0x1E4a5963aBFD975d8c9021ce480b42188849D41d/logo.png new file mode 100644 index 00000000..227f4d62 Binary files /dev/null and b/blockchains/polygonzkevm/assets/0x1E4a5963aBFD975d8c9021ce480b42188849D41d/logo.png differ diff --git a/blockchains/polygonzkevm/assets/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D/info.json b/blockchains/polygonzkevm/assets/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D/info.json new file mode 100644 index 00000000..8821f4ed --- /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 00000000..fbd01afc 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 new file mode 100644 index 00000000..389fc6a7 --- /dev/null +++ b/blockchains/polygonzkevm/assets/0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9/info.json @@ -0,0 +1,32 @@ +{ + "name": "Wrapped Ether", + "type": "ZKEVM", + "symbol": "WETH", + "decimals": 18, + "website": "https://ethereum.org/en/", + "description": "wETH is 'wrapped ETH'", + "explorer": "https://explorer.public.zkevm-test.net/address/0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9", + "status": "active", + "id": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9", + "links": [ + { + "name": "x", + "url": "https://x.com/ethdotorg" + }, + { + "name": "github", + "url": "https://github.com/ethereum/ethereum-org-website" + }, + { + "name": "discord", + "url": "https://discord.com/CetY6Y4" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygonzkevm/assets/0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9/logo.png b/blockchains/polygonzkevm/assets/0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9/logo.png new file mode 100644 index 00000000..03827dc5 Binary files /dev/null and b/blockchains/polygonzkevm/assets/0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9/logo.png differ diff --git a/blockchains/polygonzkevm/assets/0x68286607A1d43602d880D349187c3c48c0fD05E6/info.json b/blockchains/polygonzkevm/assets/0x68286607A1d43602d880D349187c3c48c0fD05E6/info.json new file mode 100644 index 00000000..2f932d93 --- /dev/null +++ b/blockchains/polygonzkevm/assets/0x68286607A1d43602d880D349187c3c48c0fD05E6/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://explorer.public.zkevm-test.net/address/0x68286607a1d43602d880d349187c3c48c0fd05e6", + "type": "ZKEVM", + "symbol": "QUICK", + "decimals": 18, + "status": "active", + "id": "0x68286607A1d43602d880D349187c3c48c0fD05E6", + "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/polygonzkevm/assets/0x68286607A1d43602d880D349187c3c48c0fD05E6/logo.png b/blockchains/polygonzkevm/assets/0x68286607A1d43602d880D349187c3c48c0fD05E6/logo.png new file mode 100644 index 00000000..93f66cb0 Binary files /dev/null and b/blockchains/polygonzkevm/assets/0x68286607A1d43602d880D349187c3c48c0fD05E6/logo.png differ diff --git a/blockchains/polygonzkevm/assets/0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035/info.json b/blockchains/polygonzkevm/assets/0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035/info.json new file mode 100644 index 00000000..4bad0d15 --- /dev/null +++ b/blockchains/polygonzkevm/assets/0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035/info.json @@ -0,0 +1,32 @@ +{ + "name": "USD Coin", + "type": "ZKEVM", + "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.public.zkevm-test.net/address/0xa8ce8aee21bc2a48a5ef670afcc9274c7bbbc035", + "status": "active", + "id": "0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035", + "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/polygonzkevm/assets/0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035/logo.png b/blockchains/polygonzkevm/assets/0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035/logo.png new file mode 100644 index 00000000..4353b884 Binary files /dev/null and b/blockchains/polygonzkevm/assets/0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035/logo.png differ diff --git a/blockchains/polygonzkevm/assets/0xa2036f0538221a77A3937F1379699f44945018d0/info.json b/blockchains/polygonzkevm/assets/0xa2036f0538221a77A3937F1379699f44945018d0/info.json new file mode 100644 index 00000000..b108fde3 --- /dev/null +++ b/blockchains/polygonzkevm/assets/0xa2036f0538221a77A3937F1379699f44945018d0/info.json @@ -0,0 +1,29 @@ +{ + "name": "Matic Token", + "type": "ZKEVM", + "symbol": "MATIC", + "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/0xa2036f0538221a77A3937F1379699f44945018d0", + "status": "active", + "id": "0xa2036f0538221a77A3937F1379699f44945018d0", + "links": [ + { + "name": "telegram", + "url": "https://t.me/polygonofficial" + }, + { + "name": "x", + "url": "https://x.com/0xPolygon" + }, + { + "name": "discord", + "url": "https://discord.com/invite/0xPolygon" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polygon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygonzkevm/assets/0xa2036f0538221a77A3937F1379699f44945018d0/logo.png b/blockchains/polygonzkevm/assets/0xa2036f0538221a77A3937F1379699f44945018d0/logo.png new file mode 100644 index 00000000..fbd01afc Binary files /dev/null and b/blockchains/polygonzkevm/assets/0xa2036f0538221a77A3937F1379699f44945018d0/logo.png differ diff --git a/blockchains/polygonzkevm/info/info.json b/blockchains/polygonzkevm/info/info.json new file mode 100644 index 00000000..e9459fa5 --- /dev/null +++ b/blockchains/polygonzkevm/info/info.json @@ -0,0 +1,22 @@ +{ + "name": "Polygon zkEVM", + "website": "https://www.polygon.technology/", + "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": "tETH", + "rpc_url": "https://rpc.ankr.com/polygon_zkevm", + "type": "coin", + "coin_type": 10001101, + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/0xPolygonHermez" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygonzkevm/info/logo.png b/blockchains/polygonzkevm/info/logo.png new file mode 100644 index 00000000..e4aaa732 Binary files /dev/null and b/blockchains/polygonzkevm/info/logo.png differ diff --git a/blockchains/polygonzkevm/info/square_logo.png b/blockchains/polygonzkevm/info/square_logo.png new file mode 100644 index 00000000..f9b26414 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 new file mode 100644 index 00000000..27c8fe50 --- /dev/null +++ b/blockchains/qtum/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Qtum", + "website": "https://qtum.org", + "description": "Qtum is a proof of stake blockchain platform that combines the bitcoin blockchain architecture with multiple virtual machines on top.", + "explorer": "https://qtum.info", + "research": "https://research.binance.com/en/projects/qtum", + "symbol": "QTUM", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/qtumproject/qtum" + }, + { + "name": "x", + "url": "https://x.com/qtumOfficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Qtum" + }, + { + "name": "whitepaper", + "url": "https://qtum.org/uploads/files/a2772efe4dc8ed1100319c6480195fb1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/qtum/info/logo.png b/blockchains/qtum/info/logo.png new file mode 100644 index 00000000..1cf2d6a2 Binary files /dev/null and b/blockchains/qtum/info/logo.png differ diff --git a/blockchains/qtum/info/square_logo.png b/blockchains/qtum/info/square_logo.png new file mode 100644 index 00000000..99069f62 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 new file mode 100644 index 00000000..5978c257 --- /dev/null +++ b/blockchains/quasar/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Quasar", + "type": "coin", + "symbol": "QSR", + "decimals": 6, + "website": "https://www.quasar.fi/", + "description": "Quasar provides decentralized asset management (DAM) service utilizing vaults and vault strategies.", + "explorer": "https://www.mintscan.io/quasar", + "status": "active", + "rpc_url": "https://quasar-rpc.polkachu.com/", + "denom": "uqsr", + "lcd_url": "https://quasar-api.polkachu.com/", + "hrp": "quasar", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/Rn39NauP5w" + }, + { + "name": "whitepaper", + "url": "https://docs.quasar.fi/" + }, + { + "name": "x", + "url": "https://x.com/quasarfi" + } + ] +} \ No newline at end of file diff --git a/blockchains/quasar/info/logo.png b/blockchains/quasar/info/logo.png new file mode 100644 index 00000000..658b9928 Binary files /dev/null and b/blockchains/quasar/info/logo.png differ diff --git a/blockchains/quasar/info/square_logo.png b/blockchains/quasar/info/square_logo.png new file mode 100644 index 00000000..edb6d7d7 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 00000000..d3477a03 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 00000000..c2cb86a4 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 00000000..9b28ec00 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 00000000..28a98c6e 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 00000000..9dff7bbe 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 00000000..c53de065 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 00000000..f6dfe916 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 00000000..89b01c38 --- /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 new file mode 100644 index 00000000..6881d386 --- /dev/null +++ b/blockchains/ravencoin/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ravencoin", + "website": "https://ravencoin.org", + "description": "Ravencoin is a digital peer to peer network that aims to implement a use case specific blockchain, designed to efficiently handle the transfer of assets from one party to another.", + "explorer": "https://ravencoin.network", + "research": "https://research.binance.com/en/projects/ravencoin", + "symbol": "RVN", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/RavenProject/Ravencoin" + }, + { + "name": "x", + "url": "https://x.com/ravencoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Ravencoin" + }, + { + "name": "whitepaper", + "url": "https://ravencoin.org/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/ravencoin/info/logo.png b/blockchains/ravencoin/info/logo.png new file mode 100644 index 00000000..4f10d440 Binary files /dev/null and b/blockchains/ravencoin/info/logo.png differ diff --git a/blockchains/ravencoin/info/square_logo.png b/blockchains/ravencoin/info/square_logo.png new file mode 100644 index 00000000..a3fd3dc1 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 00000000..6e24e280 --- /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 00000000..8fef6da8 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 00000000..43a8f8ad --- /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 00000000..079521c3 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 00000000..b70ff885 --- /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 00000000..af19b448 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 00000000..e3f40847 --- /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 00000000..f116148e 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 00000000..1d6ac970 --- /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 00000000..86ac53eb 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 00000000..cb778af5 --- /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 00000000..c897d9ee 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 00000000..a1762339 --- /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 00000000..dbf96062 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 00000000..1eee0128 --- /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 00000000..5ac0648c 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 00000000..5e2320b4 --- /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 00000000..73f5d1af --- /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 00000000..d0e5abb0 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 00000000..87eed1c8 --- /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 00000000..c681d11a 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 00000000..8fc51867 --- /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 00000000..5c990d84 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 00000000..c7fa1e7c --- /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 00000000..6e1ceda3 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 new file mode 100644 index 00000000..349ca65c --- /dev/null +++ b/blockchains/ripple/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "XRP", + "website": "https://ripple.com/xrp/", + "description": "Instantly move money to all corners of the world.", + "explorer": "https://xrpcharts.ripple.com/#/graph/", + "research": "https://research.binance.com/en/projects/xrp", + "symbol": "XRP", + "type": "coin", + "decimals": 6, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/ripple" + }, + { + "name": "x", + "url": "https://x.com/Ripple" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Ripple" + }, + { + "name": "whitepaper", + "url": "https://ripple.com/files/ripple_consensus_whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ripple/info/logo.png b/blockchains/ripple/info/logo.png new file mode 100644 index 00000000..89ca2727 Binary files /dev/null and b/blockchains/ripple/info/logo.png differ diff --git a/blockchains/ripple/info/square_logo.png b/blockchains/ripple/info/square_logo.png new file mode 100644 index 00000000..b6fcc704 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 00000000..08aeca4d --- /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 00000000..7968dddd 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 00000000..7792b694 --- /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 00000000..fb71c34c 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 00000000..aeb01301 --- /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 00000000..fb71c34c 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 00000000..820b60ff --- /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 00000000..fb71c34c 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 00000000..1c86f4be --- /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 00000000..fb71c34c 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 00000000..b13c7dd7 --- /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 00000000..fb71c34c 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 00000000..e13212cd --- /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 00000000..fb71c34c 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 00000000..a1d27613 --- /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 00000000..fb71c34c 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 00000000..f51cd5af --- /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 00000000..fb71c34c 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 00000000..a87732d4 --- /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 00000000..fb71c34c 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 00000000..24c10a40 --- /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 00000000..fb71c34c 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 00000000..0ff970ff --- /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 00000000..fb71c34c 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 00000000..581aa89a --- /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 00000000..fb71c34c 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 00000000..e671625d --- /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 00000000..fb71c34c 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 00000000..2e4883fd --- /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 00000000..fb71c34c 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 00000000..46ed9d1c --- /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 00000000..fb71c34c 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 00000000..f180fde7 --- /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 00000000..fb71c34c 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 00000000..d3685e8f --- /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 00000000..fb71c34c 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 00000000..1975f3d7 --- /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 00000000..fb71c34c 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 00000000..f0b5a34b --- /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 00000000..fb71c34c 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 00000000..4ad3dcbf --- /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 00000000..fb71c34c 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 00000000..e60d07eb --- /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 00000000..fb71c34c 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 00000000..05550f73 --- /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 00000000..fb71c34c 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 00000000..902c2020 --- /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 00000000..fb71c34c 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 00000000..f81ada25 --- /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 00000000..fb71c34c 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 00000000..98ed318a --- /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 00000000..fb71c34c 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 00000000..44f00ec8 --- /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 00000000..fb71c34c 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 00000000..98d02ed5 --- /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 00000000..fb71c34c 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 00000000..e806deb3 --- /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 00000000..fb71c34c 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 00000000..f4fb4cdf --- /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 00000000..fb71c34c 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 00000000..06d1cc85 --- /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 00000000..fb71c34c 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 00000000..e38538bf --- /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 00000000..fb71c34c 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 00000000..1db749ff --- /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 00000000..fb71c34c 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 00000000..8b1d0b2c --- /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 00000000..fb71c34c 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 00000000..af184dfb --- /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 00000000..fb71c34c 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 00000000..30c0bfea --- /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 00000000..fb71c34c 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 00000000..ae1caf40 --- /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 00000000..fb71c34c 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 00000000..621df167 --- /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 00000000..fb71c34c 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 00000000..45171ad2 --- /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 00000000..fb71c34c 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 00000000..f89955ee --- /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 00000000..fb71c34c 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 00000000..90c3d3dd --- /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 00000000..fb71c34c 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 00000000..c01865bc --- /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 00000000..fb71c34c 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 00000000..c99a8075 --- /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 00000000..fb71c34c 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 00000000..0647f3c5 --- /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 00000000..fb71c34c 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 00000000..d8793fa2 --- /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 00000000..fb71c34c 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 00000000..17348d55 --- /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 00000000..fb71c34c 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 00000000..217809ae --- /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 00000000..fb71c34c 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 00000000..6e871016 --- /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 00000000..fb71c34c 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 00000000..66885db7 --- /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 00000000..fb71c34c 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 00000000..501fcbe4 --- /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 00000000..fb71c34c 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 00000000..3f871340 --- /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 00000000..fb71c34c 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 00000000..ddd15b52 --- /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 00000000..fb71c34c 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 00000000..e50a8783 --- /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 00000000..fb71c34c 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 00000000..92e9eb62 --- /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 00000000..fb71c34c 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 00000000..cd4ae66c --- /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 00000000..fb71c34c 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 00000000..633a5bbf --- /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 00000000..fb71c34c 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 00000000..3299078c --- /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 00000000..fb71c34c 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 00000000..82e6e75b --- /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 00000000..fb71c34c 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 00000000..ce772efa --- /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 00000000..fb71c34c 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 00000000..d9b85793 --- /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 00000000..fb71c34c 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 00000000..40117e03 --- /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 00000000..fb71c34c 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 00000000..b92a89e3 --- /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 00000000..fb71c34c 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 00000000..025be2b6 --- /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 00000000..fb71c34c 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 00000000..4ac5e155 --- /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 00000000..fb71c34c 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 00000000..fd1dab8f --- /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 00000000..fb71c34c 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 00000000..7ef77c7c --- /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 00000000..fb71c34c 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 00000000..290172f7 --- /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 00000000..fb71c34c 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 00000000..d5d2cb8b --- /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 00000000..fb71c34c 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 00000000..575c2b11 --- /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 00000000..fb71c34c 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 00000000..2d0a7bbf --- /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 00000000..fb71c34c 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 00000000..2ac7aa2e --- /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 00000000..fb71c34c 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 00000000..598b88df --- /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 00000000..fb71c34c 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 00000000..e9848bd0 --- /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 00000000..fb71c34c 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 00000000..4a85b060 --- /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 00000000..fb71c34c 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 00000000..9ac5dcad --- /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 00000000..fb71c34c 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 00000000..586cbbeb --- /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 00000000..fb71c34c 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 00000000..29bc58f2 --- /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 00000000..fb71c34c 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 00000000..92d5f60c --- /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 00000000..fb71c34c 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 00000000..9cb22435 --- /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 00000000..fb71c34c 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 00000000..103b8f1e --- /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 00000000..fb71c34c 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 00000000..f06798fb --- /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 00000000..fb71c34c 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 00000000..90e7d080 --- /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 00000000..fb71c34c 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 00000000..abd3fa9d --- /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 00000000..fb71c34c 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 00000000..12a94d3b --- /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 00000000..fb71c34c 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 00000000..f787f3d5 --- /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 00000000..fb71c34c 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 00000000..a0eaa303 --- /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 00000000..fb71c34c 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 00000000..da904405 --- /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 00000000..fb71c34c 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 00000000..b3e490ca --- /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 00000000..fb71c34c 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 00000000..07f67aa5 --- /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 00000000..fb71c34c 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 00000000..bbdea9ec --- /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 00000000..fb71c34c 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 00000000..b6b7feb7 --- /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 00000000..fb71c34c 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 00000000..1e1be454 --- /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 00000000..fb71c34c 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 00000000..dab9a4c7 --- /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 00000000..fb71c34c 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 00000000..f316c43a --- /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 00000000..fb71c34c 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 00000000..88bcbc4c --- /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 00000000..fb71c34c 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 00000000..9fa28525 --- /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 00000000..fb71c34c 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 00000000..37e9028a --- /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 00000000..fb71c34c 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 00000000..7c861fe3 --- /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 00000000..fb71c34c 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 00000000..9a0674e6 --- /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 00000000..fb71c34c 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 00000000..15983cf7 --- /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 00000000..fb71c34c 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 00000000..2a7e6eff --- /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 00000000..fb71c34c 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 00000000..b35c116f --- /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 00000000..fb71c34c 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 00000000..80cf2e7a --- /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 00000000..fb71c34c 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 00000000..e2f01de5 --- /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 00000000..fb71c34c 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 00000000..c117e349 --- /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 00000000..fb71c34c 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 00000000..72badbfb --- /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 00000000..fb71c34c 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 00000000..5a44c5a7 --- /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 00000000..fb71c34c 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 00000000..c61145b7 --- /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 00000000..fb71c34c 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 00000000..a621eac9 --- /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 00000000..fb71c34c 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 00000000..fb71c34c 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 new file mode 100644 index 00000000..44113284 --- /dev/null +++ b/blockchains/ronin/assets/0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc/info.json @@ -0,0 +1,36 @@ +{ + "name": "USD Coin", + "symbol": "USDC", + "type": "RONIN", + "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/usdc", + "explorer": "https://explorer.roninchain.com/token/0x0b7007c13325c48911f73a2dad5fa5dcbf808adc", + "status": "active", + "id": "0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc", + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "x", + "url": "https://x.com/centre_io" + }, + { + "name": "blog", + "url": "https://centre.io/blog" + }, + { + "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/ronin/assets/0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc/logo.png b/blockchains/ronin/assets/0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc/logo.png new file mode 100644 index 00000000..17fe1bcb Binary files /dev/null and b/blockchains/ronin/assets/0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc/logo.png differ diff --git a/blockchains/ronin/assets/0x97a9107C1793BC407d6F527b77e7fff4D812bece/info.json b/blockchains/ronin/assets/0x97a9107C1793BC407d6F527b77e7fff4D812bece/info.json new file mode 100644 index 00000000..02fb649a --- /dev/null +++ b/blockchains/ronin/assets/0x97a9107C1793BC407d6F527b77e7fff4D812bece/info.json @@ -0,0 +1,12 @@ +{ + "name": "Axie Infinity Shard", + "symbol": "AXS", + "type": "RONIN", + "decimals": 18, + "description": "Axie Infinity Shards are Axie Infinity's governance token.", + "website": "https://axieinfinity.com", + "explorer": "https://explorer.roninchain.com/token/0x97a9107C1793BC407d6F527b77e7fff4D812bece", + "research": "https://research.binance.com/en/projects/axie-infinity", + "status": "active", + "id": "0x97a9107C1793BC407d6F527b77e7fff4D812bece" +} \ No newline at end of file diff --git a/blockchains/ronin/assets/0x97a9107C1793BC407d6F527b77e7fff4D812bece/logo.png b/blockchains/ronin/assets/0x97a9107C1793BC407d6F527b77e7fff4D812bece/logo.png new file mode 100644 index 00000000..73d60607 Binary files /dev/null and b/blockchains/ronin/assets/0x97a9107C1793BC407d6F527b77e7fff4D812bece/logo.png differ diff --git a/blockchains/ronin/assets/0xa8754b9Fa15fc18BB59458815510E40a12cD2014/info.json b/blockchains/ronin/assets/0xa8754b9Fa15fc18BB59458815510E40a12cD2014/info.json new file mode 100644 index 00000000..94901506 --- /dev/null +++ b/blockchains/ronin/assets/0xa8754b9Fa15fc18BB59458815510E40a12cD2014/info.json @@ -0,0 +1,12 @@ +{ + "name": "Smooth Love Potion", + "symbol": "SLP", + "type": "RONIN", + "decimals": 0, + "description": "Smooth Love Potion (SLP) is an ERC-20 token on the Axie Infinity platform that is used to breed new digital pets (Axies).", + "website": "https://axieinfinity.com", + "explorer": "https://explorer.roninchain.com/token/0xa8754b9Fa15fc18BB59458815510E40a12cD2014", + "research": "https://research.binance.com/en/projects/small-love-potion", + "status": "active", + "id": "0xa8754b9Fa15fc18BB59458815510E40a12cD2014" +} \ No newline at end of file diff --git a/blockchains/ronin/assets/0xa8754b9Fa15fc18BB59458815510E40a12cD2014/logo.png b/blockchains/ronin/assets/0xa8754b9Fa15fc18BB59458815510E40a12cD2014/logo.png new file mode 100644 index 00000000..ff213006 Binary files /dev/null and b/blockchains/ronin/assets/0xa8754b9Fa15fc18BB59458815510E40a12cD2014/logo.png differ diff --git a/blockchains/ronin/assets/0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5/info.json b/blockchains/ronin/assets/0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5/info.json new file mode 100644 index 00000000..2e5196d8 --- /dev/null +++ b/blockchains/ronin/assets/0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ronin Wrapped Ether", + "symbol": "WETH", + "type": "RONIN", + "decimals": 18, + "description": "-", + "website": "https://weth.io/", + "explorer": "https://explorer.roninchain.com/token/0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5", + "status": "active", + "id": "0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5" +} \ No newline at end of file diff --git a/blockchains/ronin/assets/0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5/logo.png b/blockchains/ronin/assets/0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5/logo.png new file mode 100644 index 00000000..bf957d38 Binary files /dev/null and b/blockchains/ronin/assets/0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5/logo.png differ diff --git a/blockchains/ronin/info/info.json b/blockchains/ronin/info/info.json new file mode 100644 index 00000000..8a4ce33f --- /dev/null +++ b/blockchains/ronin/info/info.json @@ -0,0 +1,12 @@ +{ + "name": "Ronin", + "website": "https://skymavis.com", + "description": "Ronin unlocks explosive growth for Blockchain gaming and collectible projects.", + "explorer": "https://explorer.roninchain.com", + "research": "", + "symbol": "RON", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [] +} \ No newline at end of file diff --git a/blockchains/ronin/info/logo.png b/blockchains/ronin/info/logo.png new file mode 100644 index 00000000..132a018d Binary files /dev/null and b/blockchains/ronin/info/logo.png differ diff --git a/blockchains/ronin/info/square_logo.png b/blockchains/ronin/info/square_logo.png new file mode 100644 index 00000000..6892c397 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 00000000..4055eed0 --- /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 00000000..0c5b0719 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 00000000..90a77ebd 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 00000000..14bf92f1 --- /dev/null +++ b/blockchains/scroll/assets/0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4/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://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 00000000..c8e3f9b2 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 00000000..a236e22d --- /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 00000000..685fbc42 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 00000000..55cc95b3 --- /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 00000000..702d64a2 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 00000000..f09d618b --- /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 00000000..893ef55c 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 00000000..3930684f --- /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 00000000..f9328d95 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 00000000..e8194557 --- /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 00000000..1e7cef36 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 00000000..7f044764 --- /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 00000000..ab05582a 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 00000000..2571cc31 --- /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 00000000..b820f250 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 00000000..2ad49009 --- /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 00000000..a20d88cd 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 00000000..95660041 --- /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 00000000..8e468d22 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 00000000..df149a5d --- /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 00000000..fd99f630 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 00000000..72434307 --- /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 00000000..62a1628e 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 00000000..92abf796 --- /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 00000000..d0c4e5f8 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 00000000..9c2f4ea4 --- /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 00000000..1fbbc210 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 00000000..f4f55070 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 new file mode 100644 index 00000000..48729b4e --- /dev/null +++ b/blockchains/secret/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Secret", + "type": "coin", + "symbol": "SCRT", + "decimals": 6, + "website": "https://scrt.network/", + "description": "Decentralized, permissionless, public blockchain for privacy-preserving applications.", + "explorer": "https://www.mintscan.io/secret", + "status": "active", + "rpc_url": "https://secret-rpc.lavenderfive.com/", + "denom": "uscrt", + "lcd_url": "https://api-stargaze.d-stake.xyz", + "hrp": "secret", + "links": [ + { + "name": "github", + "url": "https://github.com/SecretFoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/secret/" + }, + { + "name": "x", + "url": "https://x.com/SecretNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/secret/info/logo.png b/blockchains/secret/info/logo.png new file mode 100644 index 00000000..83415d66 Binary files /dev/null and b/blockchains/secret/info/logo.png differ diff --git a/blockchains/secret/info/square_logo.png b/blockchains/secret/info/square_logo.png new file mode 100644 index 00000000..09bfb555 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 00000000..cbc90da9 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 00000000..02916372 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 00000000..e1178170 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 00000000..c53de065 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 00000000..821e30b0 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 00000000..9b28ec00 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 00000000..0f6305d8 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 00000000..3345b271 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 00000000..0615d014 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 00000000..b0092c3f --- /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 00000000..8bef6907 --- /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 00000000..2f9c4c5b 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 00000000..fb883c1c 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 00000000..9b28ec00 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 00000000..eaf66cb5 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 00000000..e5e20afb 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 00000000..f78bfbfb 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 00000000..975d9113 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 00000000..c53de065 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 00000000..7a2c0c8a 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 00000000..c400001e --- /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 00000000..f2c658dd --- /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 00000000..0a570a03 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 00000000..fa170c1b --- /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 00000000..3c5a616d 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 00000000..a2b87341 Binary files /dev/null and b/blockchains/seievm/info/square_logo.png differ diff --git a/blockchains/sepolia/info/info.json b/blockchains/sepolia/info/info.json new file mode 100644 index 00000000..ccc2cb83 --- /dev/null +++ b/blockchains/sepolia/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sepolia Testnet", + "website": "https://sepolia.dev", + "description": "Sepolia was designed to simulate harsh network conditions, and has shorter block times, which enable faster transaction confirmation times and feedback for developers.", + "explorer": "https://sepolia.etherscan.io", + "symbol": "ETH", + "rpc_url": "https://rpc.sepolia.org", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/sepolia/info/logo.png b/blockchains/sepolia/info/logo.png new file mode 100644 index 00000000..09827430 Binary files /dev/null and b/blockchains/sepolia/info/logo.png differ diff --git a/blockchains/sepolia/info/square_logo.png b/blockchains/sepolia/info/square_logo.png new file mode 100644 index 00000000..09827430 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 new file mode 100644 index 00000000..96ba11bb --- /dev/null +++ b/blockchains/smartbch/info/info.json @@ -0,0 +1,30 @@ +{ + "name": "smartBCH", + "website": "https://smartbch.org/", + "short_description": "smartBCH is a sidechain for Bitcoin Cash with EVM and Web3 compatibility.", + "description": "Smart Bitcoin Cash (smartBCH for short) is a sidechain for Bitcoin Cash and has an aim to explore new ideas and unlock possibilities. It is compatible with Ethereum's EVM and Web3 API and provides high throughput for DApps in a fast, secure, and decentralized manner.", + "explorer": "http://smartscan.cash/", + "research": "https://docs.smartbch.org/smartbch/", + "symbol": "BCH", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/smartbch/smartbch" + }, + { + "name": "x", + "url": "https://x.com/SmartBCH" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/SmartBCH" + }, + { + "name": "whitepaper", + "url": "https://github.com/smartbch/docs/blob/main/smartbch_whitepaper-en.md" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartbch/info/logo.png b/blockchains/smartbch/info/logo.png new file mode 100644 index 00000000..0f331a94 Binary files /dev/null and b/blockchains/smartbch/info/logo.png differ diff --git a/blockchains/smartbch/info/square_logo.png b/blockchains/smartbch/info/square_logo.png new file mode 100644 index 00000000..793f7b4a 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 00000000..2107b562 --- /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 00000000..b41ffbfb 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 00000000..6c885324 --- /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 00000000..b1372629 Binary files /dev/null and b/blockchains/smartchain/assets/0x0000028a2eB8346cd5c0267856aB7594B7a55308/logo.png differ diff --git a/blockchains/smartchain/assets/0x00000ee41472D518B364FA09866532A792F4009B/info.json b/blockchains/smartchain/assets/0x00000ee41472D518B364FA09866532A792F4009B/info.json new file mode 100644 index 00000000..0f333228 --- /dev/null +++ b/blockchains/smartchain/assets/0x00000ee41472D518B364FA09866532A792F4009B/info.json @@ -0,0 +1,11 @@ +{ + "name": "TBCC", + "type": "BEP20", + "symbol": "TBCC", + "decimals": 18, + "website": "https://www.tbcc.com/footer/token", + "description": "TBCC token is a utility token that was issued by TBCC development team. ", + "explorer": "https://bscscan.com/token/0x00000ee41472D518B364FA09866532A792F4009B", + "status": "abandoned", + "id": "0x00000ee41472D518B364FA09866532A792F4009B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json b/blockchains/smartchain/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json new file mode 100644 index 00000000..128d4c9c --- /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 00000000..6dd4f2f9 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 00000000..35bf5f05 --- /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 00000000..43b67546 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 new file mode 100644 index 00000000..227ffecf --- /dev/null +++ b/blockchains/smartchain/assets/0x000851476180bfc499ea68450A5327D21C9b050e/info.json @@ -0,0 +1,36 @@ +{ + "name": "SLAM Token", + "type": "BEP20", + "symbol": "SLAM", + "decimals": 18, + "website": "https://slamtoken.com", + "description": "SLAM aims to create an ecosystem of products ranging from casino platforms to innovative NFT collections and applications. SLAM holders get dividends.", + "explorer": "https://bscscan.com/token/0x000851476180bfc499ea68450A5327D21C9b050e", + "status": "active", + "id": "0x000851476180bfc499ea68450A5327D21C9b050e", + "links": [ + { + "name": "x", + "url": "https://x.com/slamtoken" + }, + { + "name": "telegram", + "url": "https://t.me/SlamToken" + }, + { + "name": "whitepaper", + "url": "https://slamtoken.com/whitepaper" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x000851476180bfc499ea68450A5327D21C9b050e#code" + }, + { + "name": "github", + "url": "https://github.com/slamtoken" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x000851476180bfc499ea68450A5327D21C9b050e/logo.png b/blockchains/smartchain/assets/0x000851476180bfc499ea68450A5327D21C9b050e/logo.png new file mode 100644 index 00000000..28b773a4 Binary files /dev/null and b/blockchains/smartchain/assets/0x000851476180bfc499ea68450A5327D21C9b050e/logo.png differ diff --git a/blockchains/smartchain/assets/0x000Ae314E2A2172a039B26378814C252734f556A/info.json b/blockchains/smartchain/assets/0x000Ae314E2A2172a039B26378814C252734f556A/info.json new file mode 100644 index 00000000..6877f531 --- /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 00000000..032993dd Binary files /dev/null and b/blockchains/smartchain/assets/0x000Ae314E2A2172a039B26378814C252734f556A/logo.png differ diff --git a/blockchains/smartchain/assets/0x0025B42bfc22CbbA6c02d23d4Ec2aBFcf6E014d4/info.json b/blockchains/smartchain/assets/0x0025B42bfc22CbbA6c02d23d4Ec2aBFcf6E014d4/info.json new file mode 100644 index 00000000..fea139bf --- /dev/null +++ b/blockchains/smartchain/assets/0x0025B42bfc22CbbA6c02d23d4Ec2aBFcf6E014d4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sheep Token", + "type": "BEP20", + "symbol": "SHEEP", + "decimals": 9, + "website": "https://SheepToken.Cash/", + "description": "Sheep Token is a deflationary token that allows for passive income generation for investors. Here’s how it works. 6% on each transaction is split instantly among token holders and the burn wallet, reducing supply and rewarding holders. The Sheep Token protocol will burn 3% of every transaction forever and redistribute the remaining 3% to token holders as reward. This arrangement eradicates 3rd party risk from having to keep assets in a separate contract while yield farming while reducing supply.", + "explorer": "https://bscscan.com/token/0x0025B42bfc22CbbA6c02d23d4Ec2aBFcf6E014d4", + "status": "active", + "id": "0x0025B42bfc22CbbA6c02d23d4Ec2aBFcf6E014d4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0025B42bfc22CbbA6c02d23d4Ec2aBFcf6E014d4/logo.png b/blockchains/smartchain/assets/0x0025B42bfc22CbbA6c02d23d4Ec2aBFcf6E014d4/logo.png new file mode 100644 index 00000000..fef40a8c Binary files /dev/null and b/blockchains/smartchain/assets/0x0025B42bfc22CbbA6c02d23d4Ec2aBFcf6E014d4/logo.png differ diff --git a/blockchains/smartchain/assets/0x003d87d02A2A01E9E8a20f507C83E15DD83A33d1/info.json b/blockchains/smartchain/assets/0x003d87d02A2A01E9E8a20f507C83E15DD83A33d1/info.json new file mode 100644 index 00000000..46cff2d3 --- /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 00000000..e26af6f5 Binary files /dev/null and b/blockchains/smartchain/assets/0x003d87d02A2A01E9E8a20f507C83E15DD83A33d1/logo.png differ diff --git a/blockchains/smartchain/assets/0x007EA5C0Ea75a8DF45D288a4debdD5bb633F9e56/info.json b/blockchains/smartchain/assets/0x007EA5C0Ea75a8DF45D288a4debdD5bb633F9e56/info.json new file mode 100644 index 00000000..af1ad2f0 --- /dev/null +++ b/blockchains/smartchain/assets/0x007EA5C0Ea75a8DF45D288a4debdD5bb633F9e56/info.json @@ -0,0 +1,11 @@ +{ + "name": "CanYaCoin", + "type": "BEP20", + "symbol": "CAN", + "decimals": 18, + "website": "https://canwork.io/", + "description": "CanYaCoin (CAN) is the BEP20 asset for the CanWork ecosystem", + "explorer": "https://bscscan.com/token/0x007EA5C0Ea75a8DF45D288a4debdD5bb633F9e56", + "status": "active", + "id": "0x007EA5C0Ea75a8DF45D288a4debdD5bb633F9e56" +} diff --git a/blockchains/smartchain/assets/0x007EA5C0Ea75a8DF45D288a4debdD5bb633F9e56/logo.png b/blockchains/smartchain/assets/0x007EA5C0Ea75a8DF45D288a4debdD5bb633F9e56/logo.png new file mode 100644 index 00000000..66e4e427 Binary files /dev/null and b/blockchains/smartchain/assets/0x007EA5C0Ea75a8DF45D288a4debdD5bb633F9e56/logo.png differ diff --git a/blockchains/smartchain/assets/0x00998d97c22B564d1dAF39d493e74C21D83fffbA/info.json b/blockchains/smartchain/assets/0x00998d97c22B564d1dAF39d493e74C21D83fffbA/info.json new file mode 100644 index 00000000..f36db39c --- /dev/null +++ b/blockchains/smartchain/assets/0x00998d97c22B564d1dAF39d493e74C21D83fffbA/info.json @@ -0,0 +1,45 @@ +{ + "name": "WEB2 Inu", + "type": "BEP20", + "symbol": "WEB2", + "decimals": 9, + "website": "https://www.web2inu.com", + "description": "Web2 Inu is a community driven token, the project rejects any form of centralization and limits.", + "explorer": "https://bscscan.com/token/0x00998d97c22B564d1dAF39d493e74C21D83fffbA", + "status": "active", + "id": "0x00998d97c22B564d1dAF39d493e74C21D83fffbA", + "links": [ + { + "name": "x", + "url": "https://x.com/web2inu" + }, + { + "name": "github", + "url": "https://github.com/web2inu" + }, + { + "name": "telegram", + "url": "https://t.me/web2_inu" + }, + { + "name": "whitepaper", + "url": "https://web2inu.com/assets/Web2_Whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@web2inu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/web2-inu/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x00998d97c22b564d1daf39d493e74c21d83fffba#code" + } + ], + "tags": [ + "gamefi", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x00998d97c22B564d1dAF39d493e74C21D83fffbA/logo.png b/blockchains/smartchain/assets/0x00998d97c22B564d1dAF39d493e74C21D83fffbA/logo.png new file mode 100644 index 00000000..2b343db9 Binary files /dev/null and b/blockchains/smartchain/assets/0x00998d97c22B564d1dAF39d493e74C21D83fffbA/logo.png differ diff --git a/blockchains/smartchain/assets/0x0099cF3d44E62eaC847396CF9BDcc6b07622f2d8/info.json b/blockchains/smartchain/assets/0x0099cF3d44E62eaC847396CF9BDcc6b07622f2d8/info.json new file mode 100644 index 00000000..d98fba54 --- /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 00000000..735fdfec Binary files /dev/null and b/blockchains/smartchain/assets/0x0099cF3d44E62eaC847396CF9BDcc6b07622f2d8/logo.png differ diff --git a/blockchains/smartchain/assets/0x009cF7bC57584b7998236eff51b98A168DceA9B0/info.json b/blockchains/smartchain/assets/0x009cF7bC57584b7998236eff51b98A168DceA9B0/info.json new file mode 100644 index 00000000..8377da78 --- /dev/null +++ b/blockchains/smartchain/assets/0x009cF7bC57584b7998236eff51b98A168DceA9B0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Syrup", + "type": "BEP20", + "symbol": "SYRUP", + "decimals": 18, + "website": "https://pancakeswap.finance/", + "description": "-", + "explorer": "https://bscscan.com/token/0x009cF7bC57584b7998236eff51b98A168DceA9B0", + "status": "abandoned", + "id": "0x009cF7bC57584b7998236eff51b98A168DceA9B0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x009cF7bC57584b7998236eff51b98A168DceA9B0/logo.png b/blockchains/smartchain/assets/0x009cF7bC57584b7998236eff51b98A168DceA9B0/logo.png new file mode 100644 index 00000000..e1f7fe30 Binary files /dev/null and b/blockchains/smartchain/assets/0x009cF7bC57584b7998236eff51b98A168DceA9B0/logo.png differ diff --git a/blockchains/smartchain/assets/0x00aa85e010204068b7CC2235800B2d8036bdbF2E/info.json b/blockchains/smartchain/assets/0x00aa85e010204068b7CC2235800B2d8036bdbF2E/info.json new file mode 100644 index 00000000..bde2e5e9 --- /dev/null +++ b/blockchains/smartchain/assets/0x00aa85e010204068b7CC2235800B2d8036bdbF2E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Simple Cool Autommatic Money", + "website": "https://scamily.io/token", + "description": "SCAM is the native token for the project Simple.", + "explorer": "https://bscscan.com/token/0x00aa85e010204068b7CC2235800B2d8036bdbF2E", + "type": "BEP20", + "symbol": "SCAM", + "decimals": 10, + "status": "active", + "id": "0x00aa85e010204068b7CC2235800B2d8036bdbF2E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x00aa85e010204068b7CC2235800B2d8036bdbF2E/logo.png b/blockchains/smartchain/assets/0x00aa85e010204068b7CC2235800B2d8036bdbF2E/logo.png new file mode 100644 index 00000000..21e81aea Binary files /dev/null and b/blockchains/smartchain/assets/0x00aa85e010204068b7CC2235800B2d8036bdbF2E/logo.png differ diff --git a/blockchains/smartchain/assets/0x00abaA93fAF8fDc4f382135a7A56F9Cf7C3EdD21/info.json b/blockchains/smartchain/assets/0x00abaA93fAF8fDc4f382135a7A56F9Cf7C3EdD21/info.json new file mode 100644 index 00000000..9f380d29 --- /dev/null +++ b/blockchains/smartchain/assets/0x00abaA93fAF8fDc4f382135a7A56F9Cf7C3EdD21/info.json @@ -0,0 +1,25 @@ +{ + "name": "Wrapped MonetaryUnit", + "website": "https://wmue.net/", + "description": "MUE is a multi-chain (SHA-256 and BEP-20) cryptocurrency that aims to break away from the mould that cryptocurrency is only for tech-savvy people. Users can earn rewards with staking or masternodes, benefiting the entire network.", + "explorer": "https://bscscan.com/token/0x00abaA93fAF8fDc4f382135a7A56F9Cf7C3EdD21", + "type": "BEP20", + "symbol": "WMUE", + "decimals": 18, + "status": "active", + "id": "0x00abaA93fAF8fDc4f382135a7A56F9Cf7C3EdD21", + "links": [ + { + "name": "x", + "url": "https://x.com/MonetaryUnit" + }, + { + "name": "telegram", + "url": "https://t.me/monetaryunitchat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/dpB3XF7hSw" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x00abaA93fAF8fDc4f382135a7A56F9Cf7C3EdD21/logo.png b/blockchains/smartchain/assets/0x00abaA93fAF8fDc4f382135a7A56F9Cf7C3EdD21/logo.png new file mode 100644 index 00000000..ac9dd876 Binary files /dev/null and b/blockchains/smartchain/assets/0x00abaA93fAF8fDc4f382135a7A56F9Cf7C3EdD21/logo.png differ diff --git a/blockchains/smartchain/assets/0x00c81d35edDF44c75d4Db9E07bDCdC236eB0ebcf/info.json b/blockchains/smartchain/assets/0x00c81d35edDF44c75d4Db9E07bDCdC236eB0ebcf/info.json new file mode 100644 index 00000000..1f1dac65 --- /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 00000000..8adf5788 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 new file mode 100644 index 00000000..8b18dddc --- /dev/null +++ b/blockchains/smartchain/assets/0x00e1656e45f18ec6747F5a8496Fd39B50b38396D/info.json @@ -0,0 +1,33 @@ +{ + "name": "Bomber Coin", + "website": "https://bombcrypto.io/", + "description": "BCOIN is the token used in the Bomb Crypto game", + "explorer": "https://bscscan.com/token/0x00e1656e45f18ec6747F5a8496Fd39B50b38396D", + "type": "BEP20", + "symbol": "BCOIN", + "decimals": 18, + "status": "active", + "id": "0x00e1656e45f18ec6747F5a8496Fd39B50b38396D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BombCryptoChannel" + }, + { + "name": "x", + "url": "https://x.com/BombCryptoGame" + }, + { + "name": "facebook", + "url": "https://facebook.com/BombCryptoGame" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bombcrypto/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bomber-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x00e1656e45f18ec6747F5a8496Fd39B50b38396D/logo.png b/blockchains/smartchain/assets/0x00e1656e45f18ec6747F5a8496Fd39B50b38396D/logo.png new file mode 100644 index 00000000..6bd4caf6 Binary files /dev/null and b/blockchains/smartchain/assets/0x00e1656e45f18ec6747F5a8496Fd39B50b38396D/logo.png differ diff --git a/blockchains/smartchain/assets/0x00e7daf0E5FD1F5331c92d09e3C825A8e4Fc6515/info.json b/blockchains/smartchain/assets/0x00e7daf0E5FD1F5331c92d09e3C825A8e4Fc6515/info.json new file mode 100644 index 00000000..7d0140c5 --- /dev/null +++ b/blockchains/smartchain/assets/0x00e7daf0E5FD1F5331c92d09e3C825A8e4Fc6515/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAFEMOON CLASSIC", + "website": "https://safemoonclassic.org", + "description": "The BIG Memes Token", + "explorer": "https://bscscan.com/token/0x00e7daf0E5FD1F5331c92d09e3C825A8e4Fc6515", + "symbol": "SAFEMOONC", + "type": "BEP20", + "decimals": 0, + "status": "active", + "id": "0x00e7daf0E5FD1F5331c92d09e3C825A8e4Fc6515" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x00e7daf0E5FD1F5331c92d09e3C825A8e4Fc6515/logo.png b/blockchains/smartchain/assets/0x00e7daf0E5FD1F5331c92d09e3C825A8e4Fc6515/logo.png new file mode 100644 index 00000000..d0d2a8ee Binary files /dev/null and b/blockchains/smartchain/assets/0x00e7daf0E5FD1F5331c92d09e3C825A8e4Fc6515/logo.png differ diff --git a/blockchains/smartchain/assets/0x00f9928315196cdFBeE0205520A8ebe60D9172F0/info.json b/blockchains/smartchain/assets/0x00f9928315196cdFBeE0205520A8ebe60D9172F0/info.json new file mode 100644 index 00000000..867f0500 --- /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 00000000..7e7dc144 Binary files /dev/null and b/blockchains/smartchain/assets/0x00f9928315196cdFBeE0205520A8ebe60D9172F0/logo.png differ diff --git a/blockchains/smartchain/assets/0x0110fF9e7E4028a5337F07841437B92d5bf53762/info.json b/blockchains/smartchain/assets/0x0110fF9e7E4028a5337F07841437B92d5bf53762/info.json new file mode 100644 index 00000000..209c6180 --- /dev/null +++ b/blockchains/smartchain/assets/0x0110fF9e7E4028a5337F07841437B92d5bf53762/info.json @@ -0,0 +1,11 @@ +{ + "name": "Butter", + "type": "BEP20", + "symbol": "BUTTER", + "decimals": 9, + "website": "https://www.milktoken.net/", + "description": "The Butter token is the second token released as part of the Milk and Butter token ecosystem. The Butter token has auto-liquidity, deflationary, and staking reward mechanics. The Butter Token is the governance token of the Milk and Butter token ecosystem. Butter token automatically collect fees on every transaction that are used to donate to charities based on the votes cast by Butter Token holders.", + "explorer": "https://bscscan.com/token/0x0110fF9e7E4028a5337F07841437B92d5bf53762", + "status": "active", + "id": "0x0110fF9e7E4028a5337F07841437B92d5bf53762" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0110fF9e7E4028a5337F07841437B92d5bf53762/logo.png b/blockchains/smartchain/assets/0x0110fF9e7E4028a5337F07841437B92d5bf53762/logo.png new file mode 100644 index 00000000..006fcac5 Binary files /dev/null and b/blockchains/smartchain/assets/0x0110fF9e7E4028a5337F07841437B92d5bf53762/logo.png differ diff --git a/blockchains/smartchain/assets/0x0112e557d400474717056C4e6D40eDD846F38351/info.json b/blockchains/smartchain/assets/0x0112e557d400474717056C4e6D40eDD846F38351/info.json new file mode 100644 index 00000000..1d40cc56 --- /dev/null +++ b/blockchains/smartchain/assets/0x0112e557d400474717056C4e6D40eDD846F38351/info.json @@ -0,0 +1,33 @@ +{ + "name": "Phala Network ", + "website": "https://phala.network/", + "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.", + "explorer": "https://bscscan.com/token/0x0112e557d400474717056c4e6d40edd846f38351", + "type": "BEP20", + "symbol": "PHA", + "decimals": 18, + "status": "active", + "id": "0x0112e557d400474717056C4e6D40eDD846F38351", + "links": [ + { + "name": "github", + "url": "https://github.com/Phala-Network" + }, + { + "name": "x", + "url": "https://x.com/PhalaNetwork" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pha/" + }, + { + "name": "medium", + "url": "https://medium.com/phala-network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/phala-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0112e557d400474717056C4e6D40eDD846F38351/logo.png b/blockchains/smartchain/assets/0x0112e557d400474717056C4e6D40eDD846F38351/logo.png new file mode 100644 index 00000000..2d7da746 Binary files /dev/null and b/blockchains/smartchain/assets/0x0112e557d400474717056C4e6D40eDD846F38351/logo.png differ diff --git a/blockchains/smartchain/assets/0x01413859d321F423054f6A26276325E8085Dd5fc/info.json b/blockchains/smartchain/assets/0x01413859d321F423054f6A26276325E8085Dd5fc/info.json new file mode 100644 index 00000000..2e641446 --- /dev/null +++ b/blockchains/smartchain/assets/0x01413859d321F423054f6A26276325E8085Dd5fc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Littlebull", + "type": "BEP20", + "symbol": "LTB", + "decimals": 9, + "website": "https://www.littlebullcoin.com/", + "description": "Yield farming mechanism provides sustainable and profitable yields combined with transparent security features.", + "explorer": "https://bscscan.com/token/0x01413859d321F423054f6A26276325E8085Dd5fc", + "status": "active", + "id": "0x01413859d321F423054f6A26276325E8085Dd5fc" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x01413859d321F423054f6A26276325E8085Dd5fc/logo.png b/blockchains/smartchain/assets/0x01413859d321F423054f6A26276325E8085Dd5fc/logo.png new file mode 100644 index 00000000..3ba4de32 Binary files /dev/null and b/blockchains/smartchain/assets/0x01413859d321F423054f6A26276325E8085Dd5fc/logo.png differ diff --git a/blockchains/smartchain/assets/0x01486675Da0764ee780Ea7cB65C33062E9B2D28c/info.json b/blockchains/smartchain/assets/0x01486675Da0764ee780Ea7cB65C33062E9B2D28c/info.json new file mode 100644 index 00000000..fffa8084 --- /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 00000000..1286f93f 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 new file mode 100644 index 00000000..4ed80159 --- /dev/null +++ b/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/info.json @@ -0,0 +1,40 @@ +{ + "name": "Gulf Coin", + "type": "BEP20", + "symbol": "GULF", + "decimals": 18, + "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": "abandoned", + "id": "0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gulf-coin/" + }, + { + "name": "x", + "url": "https://x.com/GulfCoin_" + }, + { + "name": "telegram", + "url": "https://t.me/GulfCoinOfficial" + }, + { + "name": "source_code", + "url": "https://github.com/enterchain/gulf-dev/blob/main/gulf.sol" + }, + { + "name": "whitepaper", + "url": "https://gulfofficial.com/pdf/gulfcoin-white-paper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/gulfcoin-2/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x01600Ed07fC7493686ef143D1b92cd5612d50D5b/info.json b/blockchains/smartchain/assets/0x01600Ed07fC7493686ef143D1b92cd5612d50D5b/info.json new file mode 100644 index 00000000..7f5ff6bf --- /dev/null +++ b/blockchains/smartchain/assets/0x01600Ed07fC7493686ef143D1b92cd5612d50D5b/info.json @@ -0,0 +1,11 @@ +{ + "name": "PinkPanther NFT", + "website": "https://pinkpanther.finance/", + "description": "We created a new NFT platform on BinanceSmartChain. We want to take part in Binance's NFT move.", + "explorer": "https://bscscan.com/token/0x01600Ed07fC7493686ef143D1b92cd5612d50D5b", + "type": "BEP20", + "symbol": "PANTHER", + "decimals": 9, + "status": "active", + "id": "0x01600Ed07fC7493686ef143D1b92cd5612d50D5b" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x01600Ed07fC7493686ef143D1b92cd5612d50D5b/logo.png b/blockchains/smartchain/assets/0x01600Ed07fC7493686ef143D1b92cd5612d50D5b/logo.png new file mode 100644 index 00000000..16ca6ba8 Binary files /dev/null and b/blockchains/smartchain/assets/0x01600Ed07fC7493686ef143D1b92cd5612d50D5b/logo.png differ diff --git a/blockchains/smartchain/assets/0x016C285d5b918B92aa85EF1e147498BADfe30d69/info.json b/blockchains/smartchain/assets/0x016C285d5b918B92aa85EF1e147498BADfe30d69/info.json new file mode 100644 index 00000000..1a63a4fc --- /dev/null +++ b/blockchains/smartchain/assets/0x016C285d5b918B92aa85EF1e147498BADfe30d69/info.json @@ -0,0 +1,14 @@ +{ + "name": "100xCoin", + "website": "http://100xCoin.io", + "description": "100xCoin is a deflationary currency with an liquidity generation protocol built by influencer Ken the Crypto on the Binance Smart Chain. ", + "explorer": "https://bscscan.com/token/0x016c285d5b918b92aa85ef1e147498badfe30d69", + "type": "BEP20", + "symbol": "100x", + "decimals": 18, + "status": "active", + "id": "0x016C285d5b918B92aa85EF1e147498BADfe30d69", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x016C285d5b918B92aa85EF1e147498BADfe30d69/logo.png b/blockchains/smartchain/assets/0x016C285d5b918B92aa85EF1e147498BADfe30d69/logo.png new file mode 100644 index 00000000..99e10ec3 Binary files /dev/null and b/blockchains/smartchain/assets/0x016C285d5b918B92aa85EF1e147498BADfe30d69/logo.png differ diff --git a/blockchains/smartchain/assets/0x016CF83732f1468150D87dCC5BdF67730B3934D3/info.json b/blockchains/smartchain/assets/0x016CF83732f1468150D87dCC5BdF67730B3934D3/info.json new file mode 100644 index 00000000..c5414a36 --- /dev/null +++ b/blockchains/smartchain/assets/0x016CF83732f1468150D87dCC5BdF67730B3934D3/info.json @@ -0,0 +1,11 @@ +{ + "name": "AirNFT Token", + "website": "http://airnfts.com", + "description": "AirNFTs is NFT marketplace built on Binance Smart Chain where you can Create, Buy and Sell NFTs", + "explorer": "https://bscscan.com/token/0x016cf83732f1468150d87dcc5bdf67730b3934d3", + "type": "BEP20", + "symbol": "AIRT", + "decimals": 18, + "status": "active", + "id": "0x016CF83732f1468150D87dCC5BdF67730B3934D3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x016CF83732f1468150D87dCC5BdF67730B3934D3/logo.png b/blockchains/smartchain/assets/0x016CF83732f1468150D87dCC5BdF67730B3934D3/logo.png new file mode 100644 index 00000000..f47d7da3 Binary files /dev/null and b/blockchains/smartchain/assets/0x016CF83732f1468150D87dCC5BdF67730B3934D3/logo.png differ diff --git a/blockchains/smartchain/assets/0x0173295183685F27C84db046B5F0bea3e683c24b/info.json b/blockchains/smartchain/assets/0x0173295183685F27C84db046B5F0bea3e683c24b/info.json new file mode 100644 index 00000000..6cef2555 --- /dev/null +++ b/blockchains/smartchain/assets/0x0173295183685F27C84db046B5F0bea3e683c24b/info.json @@ -0,0 +1,32 @@ +{ + "name": "Cat", + "type": "BEP20", + "symbol": "CAT", + "decimals": 18, + "website": "https://www.catcattoken.com/", + "description": "Cat carries the important task of future digital currency connection, and DAO is our purpose.Our goal is to have a strong Dao Community and the future of blockchain.This cat is sweeping the whole meme coin.", + "explorer": "https://bscscan.com/token/0x0173295183685f27c84db046b5f0bea3e683c24b", + "status": "active", + "id": "0x0173295183685F27C84db046B5F0bea3e683c24b", + "links": [ + { + "name": "x", + "url": "https://x.com/Cat_CAT_Token" + }, + { + "name": "telegram", + "url": "https://t.me/CatToken_Global" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cat-cat-token/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cat-cat-token/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0173295183685F27C84db046B5F0bea3e683c24b/logo.png b/blockchains/smartchain/assets/0x0173295183685F27C84db046B5F0bea3e683c24b/logo.png new file mode 100644 index 00000000..6b23b5f8 Binary files /dev/null and b/blockchains/smartchain/assets/0x0173295183685F27C84db046B5F0bea3e683c24b/logo.png differ diff --git a/blockchains/smartchain/assets/0x01921A94e68F8D54F33C5D6f71d6664C35e33269/info.json b/blockchains/smartchain/assets/0x01921A94e68F8D54F33C5D6f71d6664C35e33269/info.json new file mode 100644 index 00000000..618c33c9 --- /dev/null +++ b/blockchains/smartchain/assets/0x01921A94e68F8D54F33C5D6f71d6664C35e33269/info.json @@ -0,0 +1,11 @@ +{ + "name": "Deez Nuts", + "website": "https://www.deeznutscoin.com", + "description": "Charity coin with a 10% tax- 4% sent to a charity address for Testicular and Prostate Research, 3% sent to all holders via reflection, and 3% added to the liquidity.", + "explorer": "https://bscscan.com/token/0x01921A94e68F8D54F33C5D6f71d6664C35e33269", + "type": "BEP20", + "symbol": "DEEZNUTS", + "decimals": 18, + "status": "abandoned", + "id": "0x01921A94e68F8D54F33C5D6f71d6664C35e33269" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x01921A94e68F8D54F33C5D6f71d6664C35e33269/logo.png b/blockchains/smartchain/assets/0x01921A94e68F8D54F33C5D6f71d6664C35e33269/logo.png new file mode 100644 index 00000000..3edcc2db Binary files /dev/null and b/blockchains/smartchain/assets/0x01921A94e68F8D54F33C5D6f71d6664C35e33269/logo.png differ diff --git a/blockchains/smartchain/assets/0x01CA78a2B5F1a9152D8A3A625bd7dF5765eeE1D8/info.json b/blockchains/smartchain/assets/0x01CA78a2B5F1a9152D8A3A625bd7dF5765eeE1D8/info.json new file mode 100644 index 00000000..d164656d --- /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 00000000..57bacd29 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 new file mode 100644 index 00000000..4eaf9e53 --- /dev/null +++ b/blockchains/smartchain/assets/0x01E0d17a533E5930A349C2BB71304F04F20AB12B/info.json @@ -0,0 +1,25 @@ +{ + "name": "REVOLVE GAMES", + "website": "https://revolvegames.io", + "description": "Revolve Games is redefining blockchain gaming, with a robust gaming ecosystem that is plugged into the heart of DeFi", + "explorer": "https://bscscan.com/token/0x01E0d17a533E5930A349C2BB71304F04F20AB12B", + "type": "BEP20", + "symbol": "RPG", + "decimals": 18, + "status": "active", + "id": "0x01E0d17a533E5930A349C2BB71304F04F20AB12B", + "links": [ + { + "name": "github", + "url": "https://github.com/Revolve-games" + }, + { + "name": "x", + "url": "https://x.com/RevolveGamesio" + }, + { + "name": "telegram", + "url": "https://t.me/revolvegames_official" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x01E0d17a533E5930A349C2BB71304F04F20AB12B/logo.png b/blockchains/smartchain/assets/0x01E0d17a533E5930A349C2BB71304F04F20AB12B/logo.png new file mode 100644 index 00000000..34359393 Binary files /dev/null and b/blockchains/smartchain/assets/0x01E0d17a533E5930A349C2BB71304F04F20AB12B/logo.png differ diff --git a/blockchains/smartchain/assets/0x01a78db633940579E15e7bDB8EdfEE8ecDeA4522/info.json b/blockchains/smartchain/assets/0x01a78db633940579E15e7bDB8EdfEE8ecDeA4522/info.json new file mode 100644 index 00000000..4e5f630c --- /dev/null +++ b/blockchains/smartchain/assets/0x01a78db633940579E15e7bDB8EdfEE8ecDeA4522/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lithium", + "website": "https://lithium.ventures", + "description": "An ecosystem to drive innovation in the early-stage web 3.0 space.", + "explorer": "https://bscscan.com/token/0x01a78db633940579e15e7bdb8edfee8ecdea4522", + "type": "BEP20", + "symbol": "EBSC", + "decimals": 9, + "status": "active", + "id": "0x01a78db633940579E15e7bDB8EdfEE8ecDeA4522" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x01a78db633940579E15e7bDB8EdfEE8ecDeA4522/logo.png b/blockchains/smartchain/assets/0x01a78db633940579E15e7bDB8EdfEE8ecDeA4522/logo.png new file mode 100644 index 00000000..ca715f01 Binary files /dev/null and b/blockchains/smartchain/assets/0x01a78db633940579E15e7bDB8EdfEE8ecDeA4522/logo.png differ diff --git a/blockchains/smartchain/assets/0x01b5a4aC600bE98448DbEFBB78BcDF38262552cc/info.json b/blockchains/smartchain/assets/0x01b5a4aC600bE98448DbEFBB78BcDF38262552cc/info.json new file mode 100644 index 00000000..263e53ab --- /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 00000000..a552db34 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 new file mode 100644 index 00000000..5adf4897 --- /dev/null +++ b/blockchains/smartchain/assets/0x01db446F7C6d20ce1FcA421B4397dA789fbb21F1/info.json @@ -0,0 +1,33 @@ +{ + "name": "Doge King", + "type": "BEP20", + "symbol": "DOGEK", + "decimals": 18, + "website": "https://dogekingtoken.com", + "description": "Doge King is a MEME & Self Solvent Token on #BSC inspired by #DOGE Coin. Its completely based on decentralized smart contract which incentivized holders of DOGEK. NFT marketplace is one of its core product, which is preparing to boost NFT usability on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x01db446F7C6d20ce1FcA421B4397dA789fbb21F1", + "status": "active", + "id": "0x01db446F7C6d20ce1FcA421B4397dA789fbb21F1", + "links": [ + { + "name": "x", + "url": "https://x.com/dogekingbsc" + }, + { + "name": "github", + "url": "https://github.com/dogekingbsc" + }, + { + "name": "telegram", + "url": "https://t.me/dogekingen" + }, + { + "name": "telegram_news", + "url": "https://t.me/dogekingnews" + }, + { + "name": "blog", + "url": "https://medium.com/@dogekingbsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x01db446F7C6d20ce1FcA421B4397dA789fbb21F1/logo.png b/blockchains/smartchain/assets/0x01db446F7C6d20ce1FcA421B4397dA789fbb21F1/logo.png new file mode 100644 index 00000000..ebbc2b6a Binary files /dev/null and b/blockchains/smartchain/assets/0x01db446F7C6d20ce1FcA421B4397dA789fbb21F1/logo.png differ diff --git a/blockchains/smartchain/assets/0x01e9611dF08548994C883e4Ca729B0128E73470F/info.json b/blockchains/smartchain/assets/0x01e9611dF08548994C883e4Ca729B0128E73470F/info.json new file mode 100644 index 00000000..6e19702b --- /dev/null +++ b/blockchains/smartchain/assets/0x01e9611dF08548994C883e4Ca729B0128E73470F/info.json @@ -0,0 +1,33 @@ +{ + "name": "RIZE ABOVE EVOLUTION", + "type": "BEP20", + "symbol": "RZE", + "decimals": 18, + "website": "https://rizeabove.finance", + "description": "RIZE ABOVE EVOLUTION is a community driven hyper-deflationary decentralized digital currency for THE PEOPLE by THE PEOPLE. RZE rewards holders with binance wrapped DOGE.", + "explorer": "https://bscscan.com/token/0x01e9611dF08548994C883e4Ca729B0128E73470F", + "status": "active", + "id": "0x01e9611dF08548994C883e4Ca729B0128E73470F", + "links": [ + { + "name": "x", + "url": "https://x.com/RizeToken" + }, + { + "name": "telegram", + "url": "https://t.me/rzetoken" + }, + { + "name": "whitepaper", + "url": "https://rizeabove.finance/wp-content/uploads/2021/08/RZE-White-Paper-Rize-Above-Evolution.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/RIZEABOVE" + }, + { + "name": "facebook", + "url": "https://facebook.com/RizeAboveToken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x01e9611dF08548994C883e4Ca729B0128E73470F/logo.png b/blockchains/smartchain/assets/0x01e9611dF08548994C883e4Ca729B0128E73470F/logo.png new file mode 100644 index 00000000..b6c4719e Binary files /dev/null and b/blockchains/smartchain/assets/0x01e9611dF08548994C883e4Ca729B0128E73470F/logo.png differ diff --git a/blockchains/smartchain/assets/0x01eaedd1BC5F8198D174532Aa13BA150653E0E11/info.json b/blockchains/smartchain/assets/0x01eaedd1BC5F8198D174532Aa13BA150653E0E11/info.json new file mode 100644 index 00000000..e8aa2e12 --- /dev/null +++ b/blockchains/smartchain/assets/0x01eaedd1BC5F8198D174532Aa13BA150653E0E11/info.json @@ -0,0 +1,11 @@ +{ + "name": "One Token", + "type": "BEP20", + "symbol": "ONE", + "decimals": 9, + "website": "https://onetoken.live", + "description": "$ONE aims to become the most decentralized BSC token.Through the usage of cutting-edge technology mechanisms, 10% of $ONE total supply will be distributed among BSC active users.Our goal is to spread $ONE philosophy by gaining trustworthy holders through the fair distribution of the token.", + "explorer": "https://bscscan.com/token/0x01eaedd1BC5F8198D174532Aa13BA150653E0E11", + "status": "active", + "id": "0x01eaedd1BC5F8198D174532Aa13BA150653E0E11" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x01eaedd1BC5F8198D174532Aa13BA150653E0E11/logo.png b/blockchains/smartchain/assets/0x01eaedd1BC5F8198D174532Aa13BA150653E0E11/logo.png new file mode 100644 index 00000000..8adab25e Binary files /dev/null and b/blockchains/smartchain/assets/0x01eaedd1BC5F8198D174532Aa13BA150653E0E11/logo.png differ diff --git a/blockchains/smartchain/assets/0x0203D275D2A65030889aF45ed91D472be3948B92/info.json b/blockchains/smartchain/assets/0x0203D275D2A65030889aF45ed91D472be3948B92/info.json new file mode 100644 index 00000000..c9d6975e --- /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 00000000..7ba34728 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 00000000..254cb23d --- /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 new file mode 100644 index 00000000..e72c99ec --- /dev/null +++ b/blockchains/smartchain/assets/0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7/info.json @@ -0,0 +1,29 @@ +{ + "name": "Jupiter", + "website": "https://jup.io", + "description": "Using Jupiter, we strive to make this technology accessible by everyone and that is why we created Gravity, a versatile framework that interfaces with our blockchain, Jupiter.", + "explorer": "https://bscscan.com/token/0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7", + "type": "BEP20", + "symbol": "bwJUP", + "decimals": 18, + "status": "active", + "id": "0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7", + "links": [ + { + "name": "x", + "url": "https://x.com/jup_project" + }, + { + "name": "facebook", + "url": "https://facebook.com/JupiterProj" + }, + { + "name": "blog", + "url": "https://blog.jup.io" + }, + { + "name": "telegram", + "url": "https://t.me/jupiterproject" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7/logo.png b/blockchains/smartchain/assets/0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7/logo.png new file mode 100644 index 00000000..a5813639 Binary files /dev/null and b/blockchains/smartchain/assets/0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7/logo.png differ diff --git a/blockchains/smartchain/assets/0x0288D3E353fE2299F11eA2c2e1696b4A648eCC07/info.json b/blockchains/smartchain/assets/0x0288D3E353fE2299F11eA2c2e1696b4A648eCC07/info.json new file mode 100644 index 00000000..a7bf6c53 --- /dev/null +++ b/blockchains/smartchain/assets/0x0288D3E353fE2299F11eA2c2e1696b4A648eCC07/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZCore Finance", + "website": "http://finance.zcore.network", + "description": "ZCore Finance is a decentralized exchange running on Binance Smart Chain and Pancake swap exchange, with features that let you earn and win tokens.", + "explorer": "https://bscscan.com/token/0x0288D3E353fE2299F11eA2c2e1696b4A648eCC07", + "type": "BEP20", + "symbol": "ZEFI", + "decimals": 18, + "status": "active", + "id": "0x0288D3E353fE2299F11eA2c2e1696b4A648eCC07" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0288D3E353fE2299F11eA2c2e1696b4A648eCC07/logo.png b/blockchains/smartchain/assets/0x0288D3E353fE2299F11eA2c2e1696b4A648eCC07/logo.png new file mode 100644 index 00000000..368806ad Binary files /dev/null and b/blockchains/smartchain/assets/0x0288D3E353fE2299F11eA2c2e1696b4A648eCC07/logo.png differ diff --git a/blockchains/smartchain/assets/0x02926E6E2898e9235fDdDDe3f51c3b644Af8C403/info.json b/blockchains/smartchain/assets/0x02926E6E2898e9235fDdDDe3f51c3b644Af8C403/info.json new file mode 100644 index 00000000..70af1fd3 --- /dev/null +++ b/blockchains/smartchain/assets/0x02926E6E2898e9235fDdDDe3f51c3b644Af8C403/info.json @@ -0,0 +1,57 @@ +{ + "name": "B2U Coin", + "type": "BEP20", + "symbol": "B2U", + "decimals": 18, + "website": "https://b2ucoin.com", + "description": "nB2U Coin is the oficial token of Bitcointoyou company, the largest cryptocurrency exchange in Brazil with 400 thousand customers. B2U Coin was launched in 2020 on ETH network and 2021 in BSC. You can use B2U Coin to pay fees on Bitcointoyou exchange, to buy products on stores using B2U Pay (https://b2upay.com) and recharge your credit card using B2U Bank (https://b2ubank.com).", + "explorer": "https://bscscan.com/token/0x02926E6E2898e9235fDdDDe3f51c3b644Af8C403", + "status": "active", + "id": "0x02926E6E2898e9235fDdDDe3f51c3b644Af8C403", + "links": [ + { + "name": "x", + "url": "https://x.com/CoinB2u" + }, + { + "name": "github", + "url": "https://github.com/Bitcointoyou/B2UCOIN_TOKEN" + }, + { + "name": "telegram", + "url": "https://t.me/coinb2u" + }, + { + "name": "telegram_news", + "url": "https://t.me/b2u_exchange" + }, + { + "name": "blog", + "url": "https://www.bitcointoyou.com/blog/" + }, + { + "name": "whitepaper", + "url": "https://b2ucoin.com/b2u-coin-white-paper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/b2ucoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/b2u-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/b2u-coin" + }, + { + "name": "docs", + "url": "https://tokenguard.io/ratings/b2u" + }, + { + "name": "source_code", + "url": "https://github.com/Bitcointoyou/B2UCOIN_TOKEN" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x02926E6E2898e9235fDdDDe3f51c3b644Af8C403/logo.png b/blockchains/smartchain/assets/0x02926E6E2898e9235fDdDDe3f51c3b644Af8C403/logo.png new file mode 100644 index 00000000..3f8ff9ec Binary files /dev/null and b/blockchains/smartchain/assets/0x02926E6E2898e9235fDdDDe3f51c3b644Af8C403/logo.png differ diff --git a/blockchains/smartchain/assets/0x0297eB00f7dcF53BF21A093Cc2C606D4128E4444/info.json b/blockchains/smartchain/assets/0x0297eB00f7dcF53BF21A093Cc2C606D4128E4444/info.json new file mode 100644 index 00000000..39b50940 --- /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 new file mode 100644 index 00000000..2ac10ef3 --- /dev/null +++ b/blockchains/smartchain/assets/0x02A40C048eE2607B5f5606e445CFc3633Fb20b58/info.json @@ -0,0 +1,33 @@ +{ + "name": "Kaby Arena", + "website": "https://kabyarena.com", + "description": "Kaby Arena is a tactical multiplayer role playing game which combines Free-to-Play and Play-to-Earn to provide an open economy for every player", + "explorer": "https://bscscan.com/token/0x02a40c048ee2607b5f5606e445cfc3633fb20b58", + "type": "BEP20", + "symbol": "KABY", + "decimals": 18, + "status": "active", + "id": "0x02A40C048eE2607B5f5606e445CFc3633Fb20b58", + "links": [ + { + "name": "telegram", + "url": "https://t.me/KabyArena" + }, + { + "name": "x", + "url": "https://x.com/KabyArena" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kaby-arena" + }, + { + "name": "medium", + "url": "https://medium.com/@kabyarena" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kaby-arena/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x02A40C048eE2607B5f5606e445CFc3633Fb20b58/logo.png b/blockchains/smartchain/assets/0x02A40C048eE2607B5f5606e445CFc3633Fb20b58/logo.png new file mode 100644 index 00000000..4a8f0778 Binary files /dev/null and b/blockchains/smartchain/assets/0x02A40C048eE2607B5f5606e445CFc3633Fb20b58/logo.png differ diff --git a/blockchains/smartchain/assets/0x02D608506cA0048D0D991a11F1E7Fb8CAD1e44f8/info.json b/blockchains/smartchain/assets/0x02D608506cA0048D0D991a11F1E7Fb8CAD1e44f8/info.json new file mode 100644 index 00000000..ff67e34f --- /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 00000000..c86f92e6 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 00000000..891bf9c6 --- /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 00000000..7b6bde34 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 new file mode 100644 index 00000000..df081e7e --- /dev/null +++ b/blockchains/smartchain/assets/0x02a655942Dbb886c77bb22B270060c561300B0E2/info.json @@ -0,0 +1,40 @@ +{ + "name": "KodexPay", + "type": "BEP20", + "symbol": "KXP", + "decimals": 18, + "website": "https://token.kodexpay.com/", + "description": "KodexPay is backed by the easiest and most efficient cryptocurrency gateway to use.", + "explorer": "https://bscscan.com/token/0x02a655942Dbb886c77bb22B270060c561300B0E2", + "status": "active", + "id": "0x02a655942Dbb886c77bb22B270060c561300B0E2", + "links": [ + { + "name": "whitepaper", + "url": "https://token.kodexpay.com/whitepaper" + }, + { + "name": "github", + "url": "https://github.com/Kodexpay/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kodexpay/" + }, + { + "name": "x", + "url": "https://x.com/kodexpay" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/Kodexpay" + }, + { + "name": "facebook", + "url": "https://facebook.com/KodexPay" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x02a655942Dbb886c77bb22B270060c561300B0E2/logo.png b/blockchains/smartchain/assets/0x02a655942Dbb886c77bb22B270060c561300B0E2/logo.png new file mode 100644 index 00000000..2405c0a1 Binary files /dev/null and b/blockchains/smartchain/assets/0x02a655942Dbb886c77bb22B270060c561300B0E2/logo.png differ diff --git a/blockchains/smartchain/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json b/blockchains/smartchain/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/info.json new file mode 100644 index 00000000..399b24a4 --- /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 00000000..af7129b1 Binary files /dev/null and b/blockchains/smartchain/assets/0x02a6c1789c3B4FDb1a7a3DfA39F90e5d3c94F4F9/logo.png differ diff --git a/blockchains/smartchain/assets/0x02a9D7162BD73c2b35c5Cf6cDD585e91928c850A/info.json b/blockchains/smartchain/assets/0x02a9D7162BD73c2b35c5Cf6cDD585e91928c850A/info.json new file mode 100644 index 00000000..ad135631 --- /dev/null +++ b/blockchains/smartchain/assets/0x02a9D7162BD73c2b35c5Cf6cDD585e91928c850A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Baby Floki Inu", + "symbol": "BFLOKI", + "type": "BEP20", + "decimals": 9, + "description": "Baby Floki Inu is a deflationary token on BSC, holders are redistributed 3% of all tokens traded, Floki is a community backed meme powered project.", + "website": "https://babyflokiinu.finance", + "explorer": "https://bscscan.com/token/0x02a9D7162BD73c2b35c5Cf6cDD585e91928c850A", + "status": "active", + "id": "0x02a9D7162BD73c2b35c5Cf6cDD585e91928c850A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x02a9D7162BD73c2b35c5Cf6cDD585e91928c850A/logo.png b/blockchains/smartchain/assets/0x02a9D7162BD73c2b35c5Cf6cDD585e91928c850A/logo.png new file mode 100644 index 00000000..3e13df2d Binary files /dev/null and b/blockchains/smartchain/assets/0x02a9D7162BD73c2b35c5Cf6cDD585e91928c850A/logo.png differ diff --git a/blockchains/smartchain/assets/0x02b59dfAd35eB4d943c1bBe5D1b0153CCE2c7Db7/info.json b/blockchains/smartchain/assets/0x02b59dfAd35eB4d943c1bBe5D1b0153CCE2c7Db7/info.json new file mode 100644 index 00000000..8cefc98e --- /dev/null +++ b/blockchains/smartchain/assets/0x02b59dfAd35eB4d943c1bBe5D1b0153CCE2c7Db7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kittycoin Token", + "type": "BEP20", + "symbol": "Kittycoin", + "decimals": 8, + "website": "https://kittycointoken.com/", + "description": "Inspired by Dogecoin. 10% of Kittycoins go to support user voted upon no kill animal shelters and rescues.", + "explorer": "https://bscscan.com/token/0x02b59dfAd35eB4d943c1bBe5D1b0153CCE2c7Db7", + "status": "active", + "id": "0x02b59dfAd35eB4d943c1bBe5D1b0153CCE2c7Db7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x02b59dfAd35eB4d943c1bBe5D1b0153CCE2c7Db7/logo.png b/blockchains/smartchain/assets/0x02b59dfAd35eB4d943c1bBe5D1b0153CCE2c7Db7/logo.png new file mode 100644 index 00000000..02d84f2c Binary files /dev/null and b/blockchains/smartchain/assets/0x02b59dfAd35eB4d943c1bBe5D1b0153CCE2c7Db7/logo.png differ diff --git a/blockchains/smartchain/assets/0x02dd18E4981DA3fC7363fE56f3B81D1860b44ea7/info.json b/blockchains/smartchain/assets/0x02dd18E4981DA3fC7363fE56f3B81D1860b44ea7/info.json new file mode 100644 index 00000000..34942a41 --- /dev/null +++ b/blockchains/smartchain/assets/0x02dd18E4981DA3fC7363fE56f3B81D1860b44ea7/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCRT", + "website": "https://scrt.network", + "description": "Secret is the native coin of the Secret Network, a decentralized network for private / secure computation. The wrapped BSC version of SCRT can be exchanged 1:1 on the Secret Network Bridge for Native SCRT, secretSCRT or WSCRT (ERC20).", + "explorer": "https://bscscan.com/token/0x02dd18E4981DA3fC7363fE56f3B81D1860b44ea7", + "type": "BEP20", + "symbol": "SCRT", + "decimals": 18, + "status": "active", + "id": "0x02dd18E4981DA3fC7363fE56f3B81D1860b44ea7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x02dd18E4981DA3fC7363fE56f3B81D1860b44ea7/logo.png b/blockchains/smartchain/assets/0x02dd18E4981DA3fC7363fE56f3B81D1860b44ea7/logo.png new file mode 100644 index 00000000..e6881f4b Binary files /dev/null and b/blockchains/smartchain/assets/0x02dd18E4981DA3fC7363fE56f3B81D1860b44ea7/logo.png differ diff --git a/blockchains/smartchain/assets/0x02fF5065692783374947393723dbA9599e59F591/info.json b/blockchains/smartchain/assets/0x02fF5065692783374947393723dbA9599e59F591/info.json new file mode 100644 index 00000000..5237edba --- /dev/null +++ b/blockchains/smartchain/assets/0x02fF5065692783374947393723dbA9599e59F591/info.json @@ -0,0 +1,11 @@ +{ + "name": "YOOSHI Token", + "website": "https://yooshi.io", + "description": "YooShi is a community-driven, fair launched MEME Token, which brings both fun and profits!", + "explorer": "https://bscscan.com/token/0x02ff5065692783374947393723dba9599e59f591", + "type": "BEP20", + "symbol": "YOOSHI", + "decimals": 9, + "status": "active", + "id": "0x02fF5065692783374947393723dbA9599e59F591" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x02fF5065692783374947393723dbA9599e59F591/logo.png b/blockchains/smartchain/assets/0x02fF5065692783374947393723dbA9599e59F591/logo.png new file mode 100644 index 00000000..41650a83 Binary files /dev/null and b/blockchains/smartchain/assets/0x02fF5065692783374947393723dbA9599e59F591/logo.png differ diff --git a/blockchains/smartchain/assets/0x0314e5a39806C30D67B869EE1bCDABee7e08dE74/info.json b/blockchains/smartchain/assets/0x0314e5a39806C30D67B869EE1bCDABee7e08dE74/info.json new file mode 100644 index 00000000..5d6a8308 --- /dev/null +++ b/blockchains/smartchain/assets/0x0314e5a39806C30D67B869EE1bCDABee7e08dE74/info.json @@ -0,0 +1,11 @@ +{ + "name": "DoubleMoon", + "website": "https://doublemoon.finance", + "description": "DoubleMoon is Next generation of Defi yield generating, community driven. Earn interest by holding.", + "explorer": "https://bscscan.com/token/0x0314e5a39806c30d67b869ee1bcdabee7e08de74", + "type": "BEP20", + "symbol": "DBM", + "decimals": 9, + "status": "active", + "id": "0x0314e5a39806C30D67B869EE1bCDABee7e08dE74" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0314e5a39806C30D67B869EE1bCDABee7e08dE74/logo.png b/blockchains/smartchain/assets/0x0314e5a39806C30D67B869EE1bCDABee7e08dE74/logo.png new file mode 100644 index 00000000..8e06bd6c Binary files /dev/null and b/blockchains/smartchain/assets/0x0314e5a39806C30D67B869EE1bCDABee7e08dE74/logo.png differ diff --git a/blockchains/smartchain/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json b/blockchains/smartchain/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/info.json new file mode 100644 index 00000000..75e02034 --- /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 00000000..70683dfd Binary files /dev/null and b/blockchains/smartchain/assets/0x03183Ce31b1656B72A55fa6056e287f50C35BbEB/logo.png differ diff --git a/blockchains/smartchain/assets/0x031b41e504677879370e9DBcF937283A8691Fa7f/info.json b/blockchains/smartchain/assets/0x031b41e504677879370e9DBcF937283A8691Fa7f/info.json new file mode 100644 index 00000000..bdbfd567 --- /dev/null +++ b/blockchains/smartchain/assets/0x031b41e504677879370e9DBcF937283A8691Fa7f/info.json @@ -0,0 +1,28 @@ +{ + "name": "Fetch", + "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://bscscan.com/token/0x031b41e504677879370e9dbcf937283a8691fa7f", + "type": "BEP20", + "symbol": "FET", + "decimals": 18, + "status": "active", + "id": "0x031b41e504677879370e9DBcF937283A8691Fa7f", + "tags": [ + "nft" + ], + "links": [ + { + "name": "medium", + "url": "https://medium.com/fetch-ai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/forta/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/fetch/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x031b41e504677879370e9DBcF937283A8691Fa7f/logo.png b/blockchains/smartchain/assets/0x031b41e504677879370e9DBcF937283A8691Fa7f/logo.png new file mode 100644 index 00000000..d5c525f6 Binary files /dev/null and b/blockchains/smartchain/assets/0x031b41e504677879370e9DBcF937283A8691Fa7f/logo.png differ diff --git a/blockchains/smartchain/assets/0x0321394309CaD7E0E424650844c3AB3b659315d3/info.json b/blockchains/smartchain/assets/0x0321394309CaD7E0E424650844c3AB3b659315d3/info.json new file mode 100644 index 00000000..3dd6efc2 --- /dev/null +++ b/blockchains/smartchain/assets/0x0321394309CaD7E0E424650844c3AB3b659315d3/info.json @@ -0,0 +1,30 @@ +{ + "name": "XBN Community", + "website": "https://xbc.xbn.finance", + "short_description": "A community-driven, fair-launched DeFi project built on Binance Smart Chain #BSC", + "explorer": "https://bscscan.com/token/0x0321394309cad7e0e424650844c3ab3b659315d3", + "description": "XBN Community is a community-driven, fair-launched DeFi project built on Binance Smart Chain #BSC. Three functions occur during each trade: Reflection, LP Acquisition, and Burn.", + "type": "BEP20", + "symbol": "XBC", + "decimals": 9, + "status": "active", + "id": "0x0321394309CaD7E0E424650844c3AB3b659315d3", + "links": [ + { + "name": "github", + "url": "https://github.com/ElasticBTC-XBT" + }, + { + "name": "x", + "url": "https://x.com/elasticbitcoin" + }, + { + "name": "telegram", + "url": "https://t.me/elasticbitcoin" + }, + { + "name": "medium", + "url": "https://medium.com/elastic-bitcoin-xbt" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0321394309CaD7E0E424650844c3AB3b659315d3/logo.png b/blockchains/smartchain/assets/0x0321394309CaD7E0E424650844c3AB3b659315d3/logo.png new file mode 100644 index 00000000..fa488ca3 Binary files /dev/null and b/blockchains/smartchain/assets/0x0321394309CaD7E0E424650844c3AB3b659315d3/logo.png differ diff --git a/blockchains/smartchain/assets/0x032A4E59387e08443Cf1df662141da09c31ceFa1/info.json b/blockchains/smartchain/assets/0x032A4E59387e08443Cf1df662141da09c31ceFa1/info.json new file mode 100644 index 00000000..3c99bbc2 --- /dev/null +++ b/blockchains/smartchain/assets/0x032A4E59387e08443Cf1df662141da09c31ceFa1/info.json @@ -0,0 +1,44 @@ +{ + "name": "HeroCatKey", + "type": "BEP20", + "symbol": "HCK", + "decimals": 18, + "website": "https://herocat.io", + "description": "Hero Cat game is a Metaverse about cat heros. It bringing new gamefi playand earn experience for its players. Players can use Hero Cat crypto to fight, develop, upgrade, and join battles. Players will earn crypto by playing or contributing to the community.", + "explorer": "https://bscscan.com/token/0x032A4E59387e08443Cf1df662141da09c31ceFa1", + "status": "active", + "id": "0x032A4E59387e08443Cf1df662141da09c31ceFa1", + "links": [ + { + "name": "x", + "url": "https://x.com/HeroCatGameFi" + }, + { + "name": "telegram", + "url": "https://t.me/herocatgamefi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/2hAGKY7dZK" + }, + { + "name": "whitepaper", + "url": "https://faqen.herocat.io/" + }, + { + "name": "facebook", + "url": "https://facebook.com/herocatgamefiio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/herocatkey/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hero-cat-key" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x032A4E59387e08443Cf1df662141da09c31ceFa1/logo.png b/blockchains/smartchain/assets/0x032A4E59387e08443Cf1df662141da09c31ceFa1/logo.png new file mode 100644 index 00000000..ee2e91be Binary files /dev/null and b/blockchains/smartchain/assets/0x032A4E59387e08443Cf1df662141da09c31ceFa1/logo.png differ diff --git a/blockchains/smartchain/assets/0x034e3d48c7d742ff7Eb40365aC7366A35ECB1EF6/info.json b/blockchains/smartchain/assets/0x034e3d48c7d742ff7Eb40365aC7366A35ECB1EF6/info.json new file mode 100644 index 00000000..2ae55513 --- /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 new file mode 100644 index 00000000..7a86e170 --- /dev/null +++ b/blockchains/smartchain/assets/0x035aD59058c557be4532141FBCD60f0998fCE413/info.json @@ -0,0 +1,37 @@ +{ + "name": "BabyApeFunClub", + "type": "BEP20", + "symbol": "BAFC", + "decimals": 9, + "website": "https://babyapefunclub.com/", + "description": "BabyApeFunClub is designed to create a complex ecosystem in which DeFi, Metaverse & Real World are integrated together. Crypto users will access all DeFi & Metaverse services quickly, cheaply and effectively with only BabyApeFunClub platforms. For this, we are building the BAFC Stake, BAFC Swap, BAFC Marketplace, BAFC Metaverse, BAFC Store.Specifically, the BAFC Store was designed to help poor people around the world and is in great preparation.", + "explorer": "https://bscscan.com/token/0x035ad59058c557be4532141fbcd60f0998fce413", + "status": "active", + "id": "0x035aD59058c557be4532141FBCD60f0998fCE413", + "links": [ + { + "name": "x", + "url": "https://x.com/BabyApeFunClub" + }, + { + "name": "telegram", + "url": "https://t.me/BabyApeFunClub" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/babyapefunclub/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/babyapefunclub" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCL6fPF63i2RBVi-mTKPBDgg" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x035aD59058c557be4532141FBCD60f0998fCE413/logo.png b/blockchains/smartchain/assets/0x035aD59058c557be4532141FBCD60f0998fCE413/logo.png new file mode 100644 index 00000000..87bf4a48 Binary files /dev/null and b/blockchains/smartchain/assets/0x035aD59058c557be4532141FBCD60f0998fCE413/logo.png differ diff --git a/blockchains/smartchain/assets/0x035de3679E692C471072d1A09bEb9298fBB2BD31/info.json b/blockchains/smartchain/assets/0x035de3679E692C471072d1A09bEb9298fBB2BD31/info.json new file mode 100644 index 00000000..7977fc92 --- /dev/null +++ b/blockchains/smartchain/assets/0x035de3679E692C471072d1A09bEb9298fBB2BD31/info.json @@ -0,0 +1,14 @@ +{ + "name": "Binance USD (Portal from Ethereum)", + "type": "BEP20", + "symbol": "BUSDet", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.paxos.com/busd/", + "explorer": "https://bscscan.com/token/0x035de3679E692C471072d1A09bEb9298fBB2BD31", + "status": "active", + "id": "0x035de3679E692C471072d1A09bEb9298fBB2BD31", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x035de3679E692C471072d1A09bEb9298fBB2BD31/logo.png b/blockchains/smartchain/assets/0x035de3679E692C471072d1A09bEb9298fBB2BD31/logo.png new file mode 100644 index 00000000..ad5123c0 Binary files /dev/null and b/blockchains/smartchain/assets/0x035de3679E692C471072d1A09bEb9298fBB2BD31/logo.png differ diff --git a/blockchains/smartchain/assets/0x037838b556d9c9d654148a284682C55bB5f56eF4/info.json b/blockchains/smartchain/assets/0x037838b556d9c9d654148a284682C55bB5f56eF4/info.json new file mode 100644 index 00000000..6e57f2ba --- /dev/null +++ b/blockchains/smartchain/assets/0x037838b556d9c9d654148a284682C55bB5f56eF4/info.json @@ -0,0 +1,29 @@ +{ + "name": "Lightning", + "website": "https://lightningprotocol.finance/", + "description": "Lightning Cross-Chain Incubator & Open Launchpad gives $LIGHT holders exclusive access to seed, private and presale rounds for the most exciting new projects, as well as staking to earn $BNB and airdrops for all IDOs.", + "explorer": "https://bscscan.com/token/0x037838b556d9c9d654148a284682c55bb5f56ef4", + "type": "BEP20", + "symbol": "LIGHT", + "decimals": 18, + "status": "active", + "id": "0x037838b556d9c9d654148a284682C55bB5f56eF4", + "links": [ + { + "name": "telegram", + "url": "https://t.me/lightningprotocol" + }, + { + "name": "x", + "url": "https://x.com/LightningDeFi" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Lightning_Incubator/" + }, + { + "name": "facebook", + "url": "https://facebook.com/LightningProtocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x037838b556d9c9d654148a284682C55bB5f56eF4/logo.png b/blockchains/smartchain/assets/0x037838b556d9c9d654148a284682C55bB5f56eF4/logo.png new file mode 100644 index 00000000..3e943a79 Binary files /dev/null and b/blockchains/smartchain/assets/0x037838b556d9c9d654148a284682C55bB5f56eF4/logo.png differ diff --git a/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json b/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json new file mode 100644 index 00000000..c15d44c8 --- /dev/null +++ b/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json @@ -0,0 +1,37 @@ +{ + "name": "DeXe (Old)", + "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/0x039cb485212f996a9dbb85a9a75d898f94d38da6", + "id": "0x039cB485212f996A9DBb85A9a75d898F94d38dA6", + "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/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/logo.png b/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/logo.png new file mode 100644 index 00000000..9b717a97 Binary files /dev/null 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 00000000..6f8a6fba --- /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 00000000..bbb8a16b 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 00000000..a9cc0e8f --- /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 00000000..5314738f 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 new file mode 100644 index 00000000..45462aff --- /dev/null +++ b/blockchains/smartchain/assets/0x03C580eecf2c36Ab8a77a71d56d867EcD495552D/info.json @@ -0,0 +1,24 @@ +{ + "name": "NUKE", + "website": "https://nukewars.io", + "description": "Nuke Wars is an NFT-based Metaverse game on the Binance Smart Chain, powered by radioactive deflation. In Nuke’s universe tokens and NFTs burn alike, giving the nukers the power and wealth to fight the common enemy.", + "explorer": "https://bscscan.com/token/0x03c580eecf2c36ab8a77a71d56d867ecd495552d", + "type": "BEP20", + "symbol": "NUKE", + "decimals": 18, + "status": "active", + "id": "0x03C580eecf2c36Ab8a77a71d56d867EcD495552D", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/The_Real_Nuke_" + }, + { + "name": "telegram", + "url": "https://t.me/nuketoken_lfg" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x03C580eecf2c36Ab8a77a71d56d867EcD495552D/logo.png b/blockchains/smartchain/assets/0x03C580eecf2c36Ab8a77a71d56d867EcD495552D/logo.png new file mode 100644 index 00000000..14400bc8 Binary files /dev/null and b/blockchains/smartchain/assets/0x03C580eecf2c36Ab8a77a71d56d867EcD495552D/logo.png differ diff --git a/blockchains/smartchain/assets/0x03D6BD3d48F956D783456695698C407A46ecD54d/info.json b/blockchains/smartchain/assets/0x03D6BD3d48F956D783456695698C407A46ecD54d/info.json new file mode 100644 index 00000000..51a01bb1 --- /dev/null +++ b/blockchains/smartchain/assets/0x03D6BD3d48F956D783456695698C407A46ecD54d/info.json @@ -0,0 +1,32 @@ +{ + "name": "HyperBurn", + "website": "https://hyperjump.fi/", + "description": "HyperBurn is a deflationary DeFi token with a passive yield mechanism. The HyperJump team is the continuation of THUGS one of the earliest successes on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x03D6BD3d48F956D783456695698C407A46ecD54d", + "type": "BEP20", + "symbol": "HYPR", + "decimals": 18, + "status": "active", + "id": "0x03D6BD3d48F956D783456695698C407A46ecD54d", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/HyperJumpBSC" + }, + { + "name": "telegram", + "url": "https://t.me/hyperjumpbsc" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AJDqFTP" + }, + { + "name": "medium", + "url": "https://hyperjumpbsc.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x03D6BD3d48F956D783456695698C407A46ecD54d/logo.png b/blockchains/smartchain/assets/0x03D6BD3d48F956D783456695698C407A46ecD54d/logo.png new file mode 100644 index 00000000..6ab9882a Binary files /dev/null and b/blockchains/smartchain/assets/0x03D6BD3d48F956D783456695698C407A46ecD54d/logo.png differ diff --git a/blockchains/smartchain/assets/0x03E4bd1Ea53f1da84513da0319D1f03dD1BBCf93/info.json b/blockchains/smartchain/assets/0x03E4bd1Ea53f1da84513da0319D1f03dD1BBCf93/info.json new file mode 100644 index 00000000..9a642cd8 --- /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 00000000..599c7394 Binary files /dev/null and b/blockchains/smartchain/assets/0x03E4bd1Ea53f1da84513da0319D1f03dD1BBCf93/logo.png differ diff --git a/blockchains/smartchain/assets/0x03cE7649838A811c26C9eabe85A1884E3E0120D4/info.json b/blockchains/smartchain/assets/0x03cE7649838A811c26C9eabe85A1884E3E0120D4/info.json new file mode 100644 index 00000000..17cec783 --- /dev/null +++ b/blockchains/smartchain/assets/0x03cE7649838A811c26C9eabe85A1884E3E0120D4/info.json @@ -0,0 +1,11 @@ +{ + "name": "FootballHooligans", + "type": "BEP20", + "symbol": "FBH", + "decimals": 9, + "website": "https://footballhooligans.net/", + "description": "Some of the goals of this token will be to contribute our investors make money, to provide the stadium environment they missed, to ensure that they can rush into the stadiums with the same strength again once the pandemic ends, to sustain that the culture of football and hooliganism by opening various discussions in our forums.", + "explorer": "https://bscscan.com/token/0x03cE7649838A811c26C9eabe85A1884E3E0120D4", + "status": "active", + "id": "0x03cE7649838A811c26C9eabe85A1884E3E0120D4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x03cE7649838A811c26C9eabe85A1884E3E0120D4/logo.png b/blockchains/smartchain/assets/0x03cE7649838A811c26C9eabe85A1884E3E0120D4/logo.png new file mode 100644 index 00000000..1f3492f1 Binary files /dev/null and b/blockchains/smartchain/assets/0x03cE7649838A811c26C9eabe85A1884E3E0120D4/logo.png differ diff --git a/blockchains/smartchain/assets/0x03fF0ff224f904be3118461335064bB48Df47938/info.json b/blockchains/smartchain/assets/0x03fF0ff224f904be3118461335064bB48Df47938/info.json new file mode 100644 index 00000000..fc2131a6 --- /dev/null +++ b/blockchains/smartchain/assets/0x03fF0ff224f904be3118461335064bB48Df47938/info.json @@ -0,0 +1,11 @@ +{ + "name": "Harmony.One", + "symbol": "ONE", + "type": "BEP20", + "decimals": 18, + "description": "Harmony aims to offer a fast and open blockchain for decentralized applications.", + "website": "https://harmony.one/", + "explorer": "https://bscscan.com/token/0x03fF0ff224f904be3118461335064bB48Df47938", + "status": "active", + "id": "0x03fF0ff224f904be3118461335064bB48Df47938" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x03fF0ff224f904be3118461335064bB48Df47938/logo.png b/blockchains/smartchain/assets/0x03fF0ff224f904be3118461335064bB48Df47938/logo.png new file mode 100644 index 00000000..a2e1b712 Binary files /dev/null and b/blockchains/smartchain/assets/0x03fF0ff224f904be3118461335064bB48Df47938/logo.png differ diff --git a/blockchains/smartchain/assets/0x0409633A72D846fc5BBe2f98D88564D35987904D/info.json b/blockchains/smartchain/assets/0x0409633A72D846fc5BBe2f98D88564D35987904D/info.json new file mode 100644 index 00000000..19cae737 --- /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 00000000..4da4a4f4 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 new file mode 100644 index 00000000..43e5adba --- /dev/null +++ b/blockchains/smartchain/assets/0x041640eA980e3fE61e9C4ca26D9007Bc70094C15/info.json @@ -0,0 +1,21 @@ +{ + "name": "PirateCoin", + "type": "BEP20", + "symbol": "PirateCoin☠", + "decimals": 9, + "website": "https://piratecoin.games/", + "description": "PirateCoin aims to produce a game integrating NFT by finding Treasure and earning PirateCoin. The character will earn and get experience the more time spent in the game. There will be enemies to fight, weapon upgrades, and much more. PirateCoin will be the main currency of the game.", + "explorer": "https://bscscan.com/token/0x041640ea980e3fe61e9c4ca26d9007bc70094c15", + "status": "active", + "id": "0x041640eA980e3fE61e9C4ca26D9007Bc70094C15", + "links": [ + { + "name": "x", + "url": "https://x.com/piratecoingames" + }, + { + "name": "telegram", + "url": "https://t.me/PirateCoinGamesOfficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x041640eA980e3fE61e9C4ca26D9007Bc70094C15/logo.png b/blockchains/smartchain/assets/0x041640eA980e3fE61e9C4ca26D9007Bc70094C15/logo.png new file mode 100644 index 00000000..18b3bae6 Binary files /dev/null and b/blockchains/smartchain/assets/0x041640eA980e3fE61e9C4ca26D9007Bc70094C15/logo.png differ diff --git a/blockchains/smartchain/assets/0x0416846Db6bEa02588e546271D4d83c4061b7757/info.json b/blockchains/smartchain/assets/0x0416846Db6bEa02588e546271D4d83c4061b7757/info.json new file mode 100644 index 00000000..68548cf9 --- /dev/null +++ b/blockchains/smartchain/assets/0x0416846Db6bEa02588e546271D4d83c4061b7757/info.json @@ -0,0 +1,37 @@ +{ + "name": "Football INU", + "type": "BEP20", + "symbol": "FOOTBALL", + "decimals": 9, + "website": "https://footballinu.net/", + "description": "Football INU is a P2E 3D multiplayer football metaverse that joins billions of football enthusiasts in a community where you can develop your NFT football avatar, manage your own club or arena, build fanbase, attract sponsorships and earn real income.", + "explorer": "https://bscscan.com/token/0x0416846db6bea02588e546271d4d83c4061b7757", + "status": "active", + "id": "0x0416846Db6bEa02588e546271D4d83c4061b7757", + "links": [ + { + "name": "x", + "url": "https://x.com/FOOTBALLinuBSC" + }, + { + "name": "telegram", + "url": "https://t.me/FOOTBALLinu" + }, + { + "name": "whitepaper", + "url": "https://footballinu.net/whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/football-inu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/footballinu/" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0416846Db6bEa02588e546271D4d83c4061b7757/logo.png b/blockchains/smartchain/assets/0x0416846Db6bEa02588e546271D4d83c4061b7757/logo.png new file mode 100644 index 00000000..d6aee8b0 Binary files /dev/null and b/blockchains/smartchain/assets/0x0416846Db6bEa02588e546271D4d83c4061b7757/logo.png differ diff --git a/blockchains/smartchain/assets/0x04260673729c5F2b9894A467736f3D85F8d34fC8/info.json b/blockchains/smartchain/assets/0x04260673729c5F2b9894A467736f3D85F8d34fC8/info.json new file mode 100644 index 00000000..cedbc14e --- /dev/null +++ b/blockchains/smartchain/assets/0x04260673729c5F2b9894A467736f3D85F8d34fC8/info.json @@ -0,0 +1,45 @@ +{ + "name": "CryptoPlanes", + "type": "BEP20", + "symbol": "CPAN", + "decimals": 18, + "website": "https://cryptoplanes.me/", + "description": "CryptoPlanes is an expansion of the CryptoCity metaverse. The place where the famous NFT racing game was founded.", + "explorer": "https://bscscan.com/token/0x04260673729c5F2b9894A467736f3D85F8d34fC8", + "status": "active", + "id": "0x04260673729c5F2b9894A467736f3D85F8d34fC8", + "links": [ + { + "name": "x", + "url": "https://x.com/NFTCryptoPlanes" + }, + { + "name": "github", + "url": "https://github.com/cryptocitymetaverse/cryptoplanes" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoPlanesGlobal" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZUsxPc2JGR" + }, + { + "name": "telegram_news", + "url": "https://t.me/CryptoPlanes" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptoplanes/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/cryptoplanes" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.cryptoplanes.me/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x04260673729c5F2b9894A467736f3D85F8d34fC8/logo.png b/blockchains/smartchain/assets/0x04260673729c5F2b9894A467736f3D85F8d34fC8/logo.png new file mode 100644 index 00000000..c90fb028 Binary files /dev/null and b/blockchains/smartchain/assets/0x04260673729c5F2b9894A467736f3D85F8d34fC8/logo.png differ diff --git a/blockchains/smartchain/assets/0x043b49749e0016E965600d502E2177cA2d95B3d9/info.json b/blockchains/smartchain/assets/0x043b49749e0016E965600d502E2177cA2d95B3d9/info.json new file mode 100644 index 00000000..b9c55245 --- /dev/null +++ b/blockchains/smartchain/assets/0x043b49749e0016E965600d502E2177cA2d95B3d9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Radio Caca Token", + "website": "https://www.radiocaca.com/", + "description": "Radio Caca is the payment token for NFTs. Radio Caca (as “RACA”), is expected to gain rapid worldwide adoption in the music, digital art and fashion area across the world. A deflation token with limited supply. A community-driven token for NFT payment sector. A DEFI token. With No Private Sale. Locked liquidity for 3 years.", + "explorer": "https://bscscan.com/token/0x043b49749e0016E965600d502E2177cA2d95B3d9", + "type": "BEP20", + "symbol": "RACA", + "decimals": 9, + "status": "active", + "id": "0x043b49749e0016E965600d502E2177cA2d95B3d9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x043b49749e0016E965600d502E2177cA2d95B3d9/logo.png b/blockchains/smartchain/assets/0x043b49749e0016E965600d502E2177cA2d95B3d9/logo.png new file mode 100644 index 00000000..0892a67f Binary files /dev/null and b/blockchains/smartchain/assets/0x043b49749e0016E965600d502E2177cA2d95B3d9/logo.png differ diff --git a/blockchains/smartchain/assets/0x0443f7a0fb8F75e8D4553bb1E59b977679514444/info.json b/blockchains/smartchain/assets/0x0443f7a0fb8F75e8D4553bb1E59b977679514444/info.json new file mode 100644 index 00000000..91da0178 --- /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 new file mode 100644 index 00000000..54152f33 --- /dev/null +++ b/blockchains/smartchain/assets/0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98/info.json @@ -0,0 +1,21 @@ +{ + "name": "HyperChain X", + "type": "BEP20", + "symbol": "HYPER", + "decimals": 7, + "website": "https://hyperchainx.com/", + "description": "Hyperchain X is the world’s first community driven token in gaming. The goal is to create a crypto gaming platform with an all-in-one application consisting of elements like: buy-in tournaments, 1 vs 1 high stake battles, league creation options for esport teams, live streams and an NFT marketplace that is unseen in this space.", + "explorer": "https://bscscan.com/token/0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98", + "status": "abandoned", + "id": "0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98", + "links": [ + { + "name": "x", + "url": "https://x.com/HyperchainX" + }, + { + "name": "telegram", + "url": "https://t.me/hyperchainx" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/info.json b/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/info.json new file mode 100644 index 00000000..1748a48a --- /dev/null +++ b/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/info.json @@ -0,0 +1,25 @@ +{ + "name": "Carbon", + "type": "BEP20", + "symbol": "CSIX", + "decimals": 18, + "website": "https://carbon.website/", + "description": "Carbon is a fast web3 privacy browser.", + "explorer": "https://bscscan.com/token/0x04756126f044634c9a0f0e985e60c88a51acc206", + "status": "active", + "id": "0x04756126F044634C9a0f0E985e60c88a51ACC206", + "links": [ + { + "name": "x", + "url": "https://x.com/trycarbonio" + }, + { + "name": "github", + "url": "https://github.com/pellartech" + } + ], + "tags": [ + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/logo.png b/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/logo.png new file mode 100644 index 00000000..49612f64 Binary files /dev/null and b/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/logo.png differ diff --git a/blockchains/smartchain/assets/0x0487b824c8261462F88940f97053E65bDb498446/info.json b/blockchains/smartchain/assets/0x0487b824c8261462F88940f97053E65bDb498446/info.json new file mode 100644 index 00000000..ee451212 --- /dev/null +++ b/blockchains/smartchain/assets/0x0487b824c8261462F88940f97053E65bDb498446/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wings", + "website": "https://jetswap.finance/", + "description": "Jetswap is a decentralized Automated Market Maker (AMM) on Binance Smart Chain with low fees and instant trade execution. Trade from the comfort of your own wallet! ", + "explorer": "https://bscscan.com/token/0x0487b824c8261462F88940f97053E65bDb498446", + "type": "BEP20", + "symbol": "WINGS", + "decimals": 18, + "status": "active", + "id": "0x0487b824c8261462F88940f97053E65bDb498446" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0487b824c8261462F88940f97053E65bDb498446/logo.png b/blockchains/smartchain/assets/0x0487b824c8261462F88940f97053E65bDb498446/logo.png new file mode 100644 index 00000000..c4aeade8 Binary files /dev/null and b/blockchains/smartchain/assets/0x0487b824c8261462F88940f97053E65bDb498446/logo.png differ diff --git a/blockchains/smartchain/assets/0x0491648C910ad2c1aFaab733faF71D30313Df7FC/info.json b/blockchains/smartchain/assets/0x0491648C910ad2c1aFaab733faF71D30313Df7FC/info.json new file mode 100644 index 00000000..a5330eac --- /dev/null +++ b/blockchains/smartchain/assets/0x0491648C910ad2c1aFaab733faF71D30313Df7FC/info.json @@ -0,0 +1,11 @@ +{ + "name": "JDI Token", + "type": "BEP20", + "symbol": "JDI", + "decimals": 18, + "website": "https://jdiyield.com/", + "description": "One stop SAFU service for yield farmers.", + "explorer": "https://bscscan.com/token/0x0491648C910ad2c1aFaab733faF71D30313Df7FC", + "status": "active", + "id": "0x0491648C910ad2c1aFaab733faF71D30313Df7FC" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0491648C910ad2c1aFaab733faF71D30313Df7FC/logo.png b/blockchains/smartchain/assets/0x0491648C910ad2c1aFaab733faF71D30313Df7FC/logo.png new file mode 100644 index 00000000..2aa47289 Binary files /dev/null and b/blockchains/smartchain/assets/0x0491648C910ad2c1aFaab733faF71D30313Df7FC/logo.png differ diff --git a/blockchains/smartchain/assets/0x049d2e20ce8445849a790c5C45F2d4ae63B38888/info.json b/blockchains/smartchain/assets/0x049d2e20ce8445849a790c5C45F2d4ae63B38888/info.json new file mode 100644 index 00000000..97cca481 --- /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 00000000..7a274cf6 --- /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 00000000..d163a75f Binary files /dev/null and b/blockchains/smartchain/assets/0x04B16ff1F9673146F68AA5d5F57aA45AdcF068E1/logo.png differ diff --git a/blockchains/smartchain/assets/0x04BAf95Fd4C52fd09a56D840bAEe0AB8D7357bf0/info.json b/blockchains/smartchain/assets/0x04BAf95Fd4C52fd09a56D840bAEe0AB8D7357bf0/info.json new file mode 100644 index 00000000..8d34cf51 --- /dev/null +++ b/blockchains/smartchain/assets/0x04BAf95Fd4C52fd09a56D840bAEe0AB8D7357bf0/info.json @@ -0,0 +1,11 @@ +{ + "name": "ONE Token", + "website": "https://bigone.com/en", + "description": "ONE is a token issued by the BigONE trading platform.", + "explorer": "https://bscscan.com/token/0x04BAf95Fd4C52fd09a56D840bAEe0AB8D7357bf0", + "type": "BEP20", + "symbol": "ONE", + "decimals": 18, + "status": "active", + "id": "0x04BAf95Fd4C52fd09a56D840bAEe0AB8D7357bf0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x04BAf95Fd4C52fd09a56D840bAEe0AB8D7357bf0/logo.png b/blockchains/smartchain/assets/0x04BAf95Fd4C52fd09a56D840bAEe0AB8D7357bf0/logo.png new file mode 100644 index 00000000..d90caa31 Binary files /dev/null and b/blockchains/smartchain/assets/0x04BAf95Fd4C52fd09a56D840bAEe0AB8D7357bf0/logo.png differ diff --git a/blockchains/smartchain/assets/0x04C747b40Be4D535fC83D09939fb0f626F32800B/info.json b/blockchains/smartchain/assets/0x04C747b40Be4D535fC83D09939fb0f626F32800B/info.json new file mode 100644 index 00000000..dd03fac4 --- /dev/null +++ b/blockchains/smartchain/assets/0x04C747b40Be4D535fC83D09939fb0f626F32800B/info.json @@ -0,0 +1,29 @@ +{ + "name": "ITAM", + "website": "https://itam.network", + "description": "ITAM operates a platform (NFT.Farm) that values digital assets and freely trades such assets using ITAM NFT. ITAM NFT is a Middleware technology for cultural and artistic creations such as paintings, comics, fashion, and games.", + "explorer": "https://bscscan.com/token/0x04c747b40be4d535fc83d09939fb0f626f32800b", + "type": "BEP20", + "symbol": "ITAM", + "decimals": 18, + "status": "active", + "id": "0x04C747b40Be4D535fC83D09939fb0f626F32800B", + "links": [ + { + "name": "x", + "url": "https://x.com/itamgames" + }, + { + "name": "medium", + "url": "https://medium.com/itam" + }, + { + "name": "telegram", + "url": "https://t.me/itam_en" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCgM_ijLKjeibbQATtX46ZTw" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x04C747b40Be4D535fC83D09939fb0f626F32800B/logo.png b/blockchains/smartchain/assets/0x04C747b40Be4D535fC83D09939fb0f626F32800B/logo.png new file mode 100644 index 00000000..7cc26756 Binary files /dev/null and b/blockchains/smartchain/assets/0x04C747b40Be4D535fC83D09939fb0f626F32800B/logo.png differ diff --git a/blockchains/smartchain/assets/0x04F73A09e2eb410205BE256054794fB452f0D245/info.json b/blockchains/smartchain/assets/0x04F73A09e2eb410205BE256054794fB452f0D245/info.json new file mode 100644 index 00000000..670cae6d --- /dev/null +++ b/blockchains/smartchain/assets/0x04F73A09e2eb410205BE256054794fB452f0D245/info.json @@ -0,0 +1,45 @@ +{ + "name": "DxSale Network", + "type": "BEP20", + "symbol": "SALE", + "decimals": 18, + "website": "https://dxsale.network/", + "description": "DxSale is a decentralized, cross chain, token management platform as a service. DxSale DAO allows for seamless onboarding of chains to provide tools to facilitate and grow out a chains ecosystem.", + "explorer": "https://bscscan.com/token/0x04F73A09e2eb410205BE256054794fB452f0D245", + "status": "active", + "id": "0x04F73A09e2eb410205BE256054794fB452f0D245", + "links": [ + { + "name": "x", + "url": "https://x.com/dxsale" + }, + { + "name": "telegram", + "url": "https://t.me/DxSale" + }, + { + "name": "telegram_news", + "url": "https://t.me/DxSaleAnn" + }, + { + "name": "medium", + "url": "https://hash-dxsale.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dxsale-network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dxsale-network/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCDrVyjNivEdu7_cIA53B0cg" + }, + { + "name": "docs", + "url": "https://docs.dxsale.network" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x04F73A09e2eb410205BE256054794fB452f0D245/logo.png b/blockchains/smartchain/assets/0x04F73A09e2eb410205BE256054794fB452f0D245/logo.png new file mode 100644 index 00000000..e8a57583 Binary files /dev/null and b/blockchains/smartchain/assets/0x04F73A09e2eb410205BE256054794fB452f0D245/logo.png differ diff --git a/blockchains/smartchain/assets/0x04b5E199F2eC84f78B111035F57b16BeE448dB6F/info.json b/blockchains/smartchain/assets/0x04b5E199F2eC84f78B111035F57b16BeE448dB6F/info.json new file mode 100644 index 00000000..0d906ba8 --- /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 00000000..840169ba 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 new file mode 100644 index 00000000..ee17d3c3 --- /dev/null +++ b/blockchains/smartchain/assets/0x050787DE0cF5Da03D9387b344334D51cAE5DD0Fd/info.json @@ -0,0 +1,21 @@ +{ + "name": "Peacockcoin", + "website": "https://peacockcoin.finance/", + "description": "PeacockCoin is a deflationary yield token on the Binance Smart Chain with Multi-dimensional NFT's", + "explorer": "https://bscscan.com/token/0x050787de0cf5da03d9387b344334d51cae5dd0fd", + "type": "BEP20", + "symbol": "PEKC ", + "decimals": 9, + "status": "active", + "id": "0x050787DE0cF5Da03D9387b344334D51cAE5DD0Fd", + "links": [ + { + "name": "x", + "url": "https://x.com/PeacockCoin" + }, + { + "name": "telegram", + "url": "https://t.me/peacockcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x050787DE0cF5Da03D9387b344334D51cAE5DD0Fd/logo.png b/blockchains/smartchain/assets/0x050787DE0cF5Da03D9387b344334D51cAE5DD0Fd/logo.png new file mode 100644 index 00000000..d2665bf4 Binary files /dev/null and b/blockchains/smartchain/assets/0x050787DE0cF5Da03D9387b344334D51cAE5DD0Fd/logo.png differ diff --git a/blockchains/smartchain/assets/0x0523215DCafbF4E4aA92117d13C6985a3BeF27D7/info.json b/blockchains/smartchain/assets/0x0523215DCafbF4E4aA92117d13C6985a3BeF27D7/info.json new file mode 100644 index 00000000..41e1ea6a --- /dev/null +++ b/blockchains/smartchain/assets/0x0523215DCafbF4E4aA92117d13C6985a3BeF27D7/info.json @@ -0,0 +1,11 @@ +{ + "name": "GAMER", + "type": "BEP20", + "symbol": "GMR", + "decimals": 9, + "website": "https://gmr.finance", + "description": "We aim to bring the gaming community, content creators and game developers together with GMR.", + "explorer": "https://bscscan.com/token/0x0523215dcafbf4e4aa92117d13c6985a3bef27d7", + "status": "active", + "id": "0x0523215DCafbF4E4aA92117d13C6985a3BeF27D7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0523215DCafbF4E4aA92117d13C6985a3BeF27D7/logo.png b/blockchains/smartchain/assets/0x0523215DCafbF4E4aA92117d13C6985a3BeF27D7/logo.png new file mode 100644 index 00000000..438a9fbb Binary files /dev/null and b/blockchains/smartchain/assets/0x0523215DCafbF4E4aA92117d13C6985a3BeF27D7/logo.png differ diff --git a/blockchains/smartchain/assets/0x05311d9aA0E17D1071986146CeD510C85c71B52f/info.json b/blockchains/smartchain/assets/0x05311d9aA0E17D1071986146CeD510C85c71B52f/info.json new file mode 100644 index 00000000..53f237fe --- /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 00000000..63c3e143 Binary files /dev/null and b/blockchains/smartchain/assets/0x05311d9aA0E17D1071986146CeD510C85c71B52f/logo.png differ diff --git a/blockchains/smartchain/assets/0x053299b35bfFD54E7620762CDdE9B9A3494662F3/info.json b/blockchains/smartchain/assets/0x053299b35bfFD54E7620762CDdE9B9A3494662F3/info.json new file mode 100644 index 00000000..3b02ef40 --- /dev/null +++ b/blockchains/smartchain/assets/0x053299b35bfFD54E7620762CDdE9B9A3494662F3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coco Token", + "website": "https://cocotoken.finance/", + "description": "Decentralized Deflationary Token that Grows into Coco's Dog treats.", + "explorer": "https://bscscan.com/token/0x053299b35bfFD54E7620762CDdE9B9A3494662F3", + "type": "BEP20", + "symbol": "$COCO", + "decimals": 18, + "status": "active", + "id": "0x053299b35bfFD54E7620762CDdE9B9A3494662F3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x053299b35bfFD54E7620762CDdE9B9A3494662F3/logo.png b/blockchains/smartchain/assets/0x053299b35bfFD54E7620762CDdE9B9A3494662F3/logo.png new file mode 100644 index 00000000..18f06a46 Binary files /dev/null and b/blockchains/smartchain/assets/0x053299b35bfFD54E7620762CDdE9B9A3494662F3/logo.png differ diff --git a/blockchains/smartchain/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json b/blockchains/smartchain/assets/0x053C784cD87B74f42e0c089f98643E79c1A3ff16/info.json new file mode 100644 index 00000000..5b01d2f6 --- /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 00000000..861002db 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 00000000..dd48013e --- /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 00000000..d81c7d32 Binary files /dev/null and b/blockchains/smartchain/assets/0x05473ceA3774D898C7b6dDa21e1876D6Bca7277b/logo.png differ diff --git a/blockchains/smartchain/assets/0x0567D7fad179dCd2a89508B77cCe93E26f8998F7/info.json b/blockchains/smartchain/assets/0x0567D7fad179dCd2a89508B77cCe93E26f8998F7/info.json new file mode 100644 index 00000000..90acf4f6 --- /dev/null +++ b/blockchains/smartchain/assets/0x0567D7fad179dCd2a89508B77cCe93E26f8998F7/info.json @@ -0,0 +1,11 @@ +{ + "name": "VIDTC Luxury goods", + "type": "BEP20", + "symbol": "VIDTC", + "decimals": 18, + "website": "https://about.v-id.org", + "description": "NFTs for watches, fashion & jewelry", + "explorer": "https://bscscan.com/token/0x0567d7fad179dcd2a89508b77cce93e26f8998f7", + "status": "active", + "id": "0x0567D7fad179dCd2a89508B77cCe93E26f8998F7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0567D7fad179dCd2a89508B77cCe93E26f8998F7/logo.png b/blockchains/smartchain/assets/0x0567D7fad179dCd2a89508B77cCe93E26f8998F7/logo.png new file mode 100644 index 00000000..51a270f5 Binary files /dev/null and b/blockchains/smartchain/assets/0x0567D7fad179dCd2a89508B77cCe93E26f8998F7/logo.png differ diff --git a/blockchains/smartchain/assets/0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95/info.json b/blockchains/smartchain/assets/0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95/info.json new file mode 100644 index 00000000..16f7a348 --- /dev/null +++ b/blockchains/smartchain/assets/0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95/info.json @@ -0,0 +1,28 @@ +{ + "name": "ETHLAX", + "type": "BEP20", + "symbol": "ETHLAX", + "decimals": 18, + "website": "https://ethlax.io/", + "description": "Transforming Businesses with Artificial Intelligence. A few years ago technology that could learn and solve problems on its own only found on the pages of science fiction. Nowadays, Ethlax with these advanced capabilities is surfacing all around us, and represents the latest in a series of rapid development. AI (AI) is changing our lifestyle and empowering machines to perform things that people used to think humans were the only ones capable of doing", + "explorer": "https://bscscan.com/token/0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95", + "status": "active", + "id": "0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95", + "links": [ + { + "name": "x", + "url": "https://x.com/ethlaxtoken" + }, + { + "name": "telegram", + "url": "https://t.me/ethlaxtoken" + }, + { + "name": "whitepaper", + "url": "https://ethlax.io/whitepaper.pdf" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95/logo.png b/blockchains/smartchain/assets/0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95/logo.png new file mode 100644 index 00000000..f37422e0 Binary files /dev/null and b/blockchains/smartchain/assets/0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95/logo.png differ diff --git a/blockchains/smartchain/assets/0x057AFf3E314e1ca15BED75510df81A20098cE456/info.json b/blockchains/smartchain/assets/0x057AFf3E314e1ca15BED75510df81A20098cE456/info.json new file mode 100644 index 00000000..d389a5ec --- /dev/null +++ b/blockchains/smartchain/assets/0x057AFf3E314e1ca15BED75510df81A20098cE456/info.json @@ -0,0 +1,37 @@ +{ + "name": "POTENT", + "type": "BEP20", + "symbol": "PTT", + "decimals": 18, + "website": "https://potent.finance/", + "description": "Potent coin is an ecosystem on the Binance Smart Chain blockchain that offers fast and efficient solutions for using cryptocurrencies.", + "explorer": "https://bscscan.com/token/0x057AFf3E314e1ca15BED75510df81A20098cE456", + "status": "active", + "id": "0x057AFf3E314e1ca15BED75510df81A20098cE456", + "links": [ + { + "name": "x", + "url": "https://x.com/potent_coin" + }, + { + "name": "facebook", + "url": "https://facebook.com/Potent-Token-108367228056742/" + }, + { + "name": "telegram", + "url": "https://t.me/PotentCoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/potent-coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/potent/" + }, + { + "name": "whitepaper", + "url": "https://potent.finance/static/moon_safe/img/White-paper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x057AFf3E314e1ca15BED75510df81A20098cE456/logo.png b/blockchains/smartchain/assets/0x057AFf3E314e1ca15BED75510df81A20098cE456/logo.png new file mode 100644 index 00000000..482415e4 Binary files /dev/null and b/blockchains/smartchain/assets/0x057AFf3E314e1ca15BED75510df81A20098cE456/logo.png differ diff --git a/blockchains/smartchain/assets/0x0585756aAFB241b0f8A9Df62Db26c566091Bde0b/info.json b/blockchains/smartchain/assets/0x0585756aAFB241b0f8A9Df62Db26c566091Bde0b/info.json new file mode 100644 index 00000000..336fd1eb --- /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 00000000..c890935b Binary files /dev/null and b/blockchains/smartchain/assets/0x0585756aAFB241b0f8A9Df62Db26c566091Bde0b/logo.png differ diff --git a/blockchains/smartchain/assets/0x0586933D1aA2fA2E732d23C3C229e6151aC6C0d4/info.json b/blockchains/smartchain/assets/0x0586933D1aA2fA2E732d23C3C229e6151aC6C0d4/info.json new file mode 100644 index 00000000..6ebfcc4d --- /dev/null +++ b/blockchains/smartchain/assets/0x0586933D1aA2fA2E732d23C3C229e6151aC6C0d4/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeDancer", + "website": "https://safedancer.net/", + "description": "SafeDancer is programmed to reward holders and built on transparency and trust. We are being audited and will be open with our community with frequent AMA's, questions and more.", + "explorer": "https://bscscan.com/token/0x0586933D1aA2fA2E732d23C3C229e6151aC6C0d4", + "type": "BEP20", + "symbol": "$DANCE", + "decimals": 18, + "status": "active", + "id": "0x0586933D1aA2fA2E732d23C3C229e6151aC6C0d4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0586933D1aA2fA2E732d23C3C229e6151aC6C0d4/logo.png b/blockchains/smartchain/assets/0x0586933D1aA2fA2E732d23C3C229e6151aC6C0d4/logo.png new file mode 100644 index 00000000..d4cd6252 Binary files /dev/null and b/blockchains/smartchain/assets/0x0586933D1aA2fA2E732d23C3C229e6151aC6C0d4/logo.png differ diff --git a/blockchains/smartchain/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json b/blockchains/smartchain/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/info.json new file mode 100644 index 00000000..d12220be --- /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 00000000..1759e67f Binary files /dev/null and b/blockchains/smartchain/assets/0x0588e851ec0418d660BeE81230d6c678dAF21d46/logo.png differ diff --git a/blockchains/smartchain/assets/0x05B339B0A346bF01f851ddE47a5d485c34FE220c/info.json b/blockchains/smartchain/assets/0x05B339B0A346bF01f851ddE47a5d485c34FE220c/info.json new file mode 100644 index 00000000..758d8c5c --- /dev/null +++ b/blockchains/smartchain/assets/0x05B339B0A346bF01f851ddE47a5d485c34FE220c/info.json @@ -0,0 +1,25 @@ +{ + "name": "Astronaut", + "website": "https://astronaut.to/", + "short_description": "Astronaut is a protocol built for decentralizing the way which new projects and ideas coming to the BNB ecosystem raise capital", + "description": "Astronaut is a protocol built for decentralizing the way which new projects and ideas coming to the BNB ecosystem raise capital.", + "explorer": "https://bscscan.com/token/0x05b339b0a346bf01f851dde47a5d485c34fe220c", + "type": "BEP20", + "symbol": "NAUT", + "decimals": 8, + "status": "active", + "id": "0x05B339B0A346bF01f851ddE47a5d485c34FE220c", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/astronauttoken" + }, + { + "name": "whitepaper", + "url": "https://astronaut.to/assets/pdf/Whitepaper%20Astronaut.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x05B339B0A346bF01f851ddE47a5d485c34FE220c/logo.png b/blockchains/smartchain/assets/0x05B339B0A346bF01f851ddE47a5d485c34FE220c/logo.png new file mode 100644 index 00000000..81e573d9 Binary files /dev/null and b/blockchains/smartchain/assets/0x05B339B0A346bF01f851ddE47a5d485c34FE220c/logo.png differ diff --git a/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/info.json b/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/info.json new file mode 100644 index 00000000..842ef5b7 --- /dev/null +++ b/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/info.json @@ -0,0 +1,56 @@ +{ + "name": "GlowV2", + "type": "BEP20", + "symbol": "GlowV2", + "decimals": 9, + "website": "https://glowtoken.net", + "description": "GLOWV2 represents the illumination of the darkness in the crypto DeFi space through security, clarity, passive income, education, and charity.", + "explorer": "https://bscscan.com/token/0x05De1dbFCdc876F790371508b97C337640Dcd6a9", + "status": "active", + "id": "0x05De1dbFCdc876F790371508b97C337640Dcd6a9", + "links": [ + { + "name": "github", + "url": "https://github.com/GlowTokenLLC" + }, + { + "name": "x", + "url": "https://x.com/GlowTokenLLC" + }, + { + "name": "telegram", + "url": "https://t.me/officialGlowV2" + }, + { + "name": "discord", + "url": "https://discord.com/glowv2" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1xTOCq7dg4z10PRAmN1KaoIp0aPxyQhEO/view" + }, + { + "name": "reddit", + "url": "https://reddit.com/GlowTokenLLC" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCJaEd7QSboUsqjudACJrNFw" + }, + { + "name": "facebook", + "url": "https://facebook.com/groups/326003435955719" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/glow-v2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/glowv2" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/logo.png b/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/logo.png new file mode 100644 index 00000000..1bcb6127 Binary files /dev/null and b/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/logo.png differ diff --git a/blockchains/smartchain/assets/0x05F2dF7B3D612A23fe12162A6c996447dCE728a5/info.json b/blockchains/smartchain/assets/0x05F2dF7B3D612A23fe12162A6c996447dCE728a5/info.json new file mode 100644 index 00000000..cddd3c7f --- /dev/null +++ b/blockchains/smartchain/assets/0x05F2dF7B3D612A23fe12162A6c996447dCE728a5/info.json @@ -0,0 +1,11 @@ +{ + "name": "YUMMY", + "type": "BEP20", + "symbol": "YUMMY", + "decimals": 9, + "website": "https://yummycrypto.com/", + "description": "Yummy is a BEP20 token issued on the Binance Smart Chain on a mission to end world hunger. Each time Yummy is traded, a charity is receiving donations. Yummy sets out to transform the crypto industry by giving back while creating a coin that benefits charity and its holders. We are placing an emphases on complete transparency, sustainable, strategic growth decisions, and innovative marketing campaigns that will ensure the world falls in love with Yummy as much as the rest of us.", + "explorer": "https://bscscan.com/token/0x05F2dF7B3D612A23fe12162A6c996447dCE728a5", + "status": "active", + "id": "0x05F2dF7B3D612A23fe12162A6c996447dCE728a5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x05F2dF7B3D612A23fe12162A6c996447dCE728a5/logo.png b/blockchains/smartchain/assets/0x05F2dF7B3D612A23fe12162A6c996447dCE728a5/logo.png new file mode 100644 index 00000000..30274220 Binary files /dev/null and b/blockchains/smartchain/assets/0x05F2dF7B3D612A23fe12162A6c996447dCE728a5/logo.png differ diff --git a/blockchains/smartchain/assets/0x05aD6E30A855BE07AfA57e08a4f30d00810a402e/info.json b/blockchains/smartchain/assets/0x05aD6E30A855BE07AfA57e08a4f30d00810a402e/info.json new file mode 100644 index 00000000..9d91bd4a --- /dev/null +++ b/blockchains/smartchain/assets/0x05aD6E30A855BE07AfA57e08a4f30d00810a402e/info.json @@ -0,0 +1,44 @@ +{ + "name": "Tiny Coin", + "type": "BEP20", + "symbol": "TINC", + "decimals": 18, + "website": "https://tinyworlds.io/", + "description": "Tiny World is a fully trading game universe based on historical legends from across the globe. It combines P2E and DAO governance with quality gameplay.", + "explorer": "https://bscscan.com/token/0x05aD6E30A855BE07AfA57e08a4f30d00810a402e", + "status": "active", + "id": "0x05aD6E30A855BE07AfA57e08a4f30d00810a402e", + "links": [ + { + "name": "x", + "url": "https://x.com/tinyworldgamefi" + }, + { + "name": "telegram", + "url": "https://t.me/tinyworld_en" + }, + { + "name": "docs", + "url": "https://docs.tinyworlds.io/" + }, + { + "name": "medium", + "url": "https://medium.com/@tinyworld.gamefi" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCmm9JeIkqes3sS6NZ2YGA0w?sub_confirmation=1" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tiny-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tiny-coin" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x05aD6E30A855BE07AfA57e08a4f30d00810a402e/logo.png b/blockchains/smartchain/assets/0x05aD6E30A855BE07AfA57e08a4f30d00810a402e/logo.png new file mode 100644 index 00000000..21ac33e1 Binary files /dev/null and b/blockchains/smartchain/assets/0x05aD6E30A855BE07AfA57e08a4f30d00810a402e/logo.png differ diff --git a/blockchains/smartchain/assets/0x05ad901cf196cbDCEaB3F8e602a47AAdB1a2e69d/info.json b/blockchains/smartchain/assets/0x05ad901cf196cbDCEaB3F8e602a47AAdB1a2e69d/info.json new file mode 100644 index 00000000..111774f8 --- /dev/null +++ b/blockchains/smartchain/assets/0x05ad901cf196cbDCEaB3F8e602a47AAdB1a2e69d/info.json @@ -0,0 +1,44 @@ +{ + "name": "Zoro Inu", + "type": "BEP20", + "symbol": "ZORO", + "decimals": 18, + "website": "https://www.zoroinu.io/", + "description": "Frictionless Defi adoption through tools & education.", + "explorer": "https://bscscan.com/token/0x05ad901cf196cbdceab3f8e602a47aadb1a2e69d", + "status": "active", + "id": "0x05ad901cf196cbDCEaB3F8e602a47AAdB1a2e69d", + "links": [ + { + "name": "x", + "url": "https://x.com/ZoroToken" + }, + { + "name": "github", + "url": "https://github.com/zoroinu" + }, + { + "name": "telegram", + "url": "https://t.me/Zoroinucommunity" + }, + { + "name": "whitepaper", + "url": "https://docs.zoroinu.io/" + }, + { + "name": "medium", + "url": "https://zoroinu.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zoro-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/zoro-inu" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x05ad901cf196cbDCEaB3F8e602a47AAdB1a2e69d/logo.png b/blockchains/smartchain/assets/0x05ad901cf196cbDCEaB3F8e602a47AAdB1a2e69d/logo.png new file mode 100644 index 00000000..282fb234 Binary files /dev/null and b/blockchains/smartchain/assets/0x05ad901cf196cbDCEaB3F8e602a47AAdB1a2e69d/logo.png differ diff --git a/blockchains/smartchain/assets/0x05c1EFdEbB8A12f2F3A8DEE07eC4Aa5c452BDAF0/info.json b/blockchains/smartchain/assets/0x05c1EFdEbB8A12f2F3A8DEE07eC4Aa5c452BDAF0/info.json new file mode 100644 index 00000000..cdc16556 --- /dev/null +++ b/blockchains/smartchain/assets/0x05c1EFdEbB8A12f2F3A8DEE07eC4Aa5c452BDAF0/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEG Wrapped CAKE", + "website": "https://fegtoken.com", + "description": "FEG Wrapped CAKE", + "explorer": "https://bscscan.com/token/0x05c1EFdEbB8A12f2F3A8DEE07eC4Aa5c452BDAF0", + "type": "BEP20", + "symbol": "fCAKE", + "decimals": 18, + "status": "active", + "id": "0x05c1EFdEbB8A12f2F3A8DEE07eC4Aa5c452BDAF0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x05c1EFdEbB8A12f2F3A8DEE07eC4Aa5c452BDAF0/logo.png b/blockchains/smartchain/assets/0x05c1EFdEbB8A12f2F3A8DEE07eC4Aa5c452BDAF0/logo.png new file mode 100644 index 00000000..7a4e700b Binary files /dev/null and b/blockchains/smartchain/assets/0x05c1EFdEbB8A12f2F3A8DEE07eC4Aa5c452BDAF0/logo.png differ diff --git a/blockchains/smartchain/assets/0x05ce1303dFcEB5Dc4CD16D19d550cE462D11783c/info.json b/blockchains/smartchain/assets/0x05ce1303dFcEB5Dc4CD16D19d550cE462D11783c/info.json new file mode 100644 index 00000000..2c798b26 --- /dev/null +++ b/blockchains/smartchain/assets/0x05ce1303dFcEB5Dc4CD16D19d550cE462D11783c/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeDoge", + "type": "BEP20", + "symbol": "SAFEDOGE", + "decimals": 9, + "website": "https://safedoge.me", + "description": "Safedoge was created to simplify investing in cryptocurrency and earn rewards. Helping the world through Cryptocurrency Charity. Help us, Help you so you can help others. Join us and make a Difference.MEME Base Token, Inspired by Safemoon and Dogecoin", + "explorer": "https://bscscan.com/token/0x05ce1303dFcEB5Dc4CD16D19d550cE462D11783c", + "status": "active", + "id": "0x05ce1303dFcEB5Dc4CD16D19d550cE462D11783c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x05ce1303dFcEB5Dc4CD16D19d550cE462D11783c/logo.png b/blockchains/smartchain/assets/0x05ce1303dFcEB5Dc4CD16D19d550cE462D11783c/logo.png new file mode 100644 index 00000000..7a184b18 Binary files /dev/null and b/blockchains/smartchain/assets/0x05ce1303dFcEB5Dc4CD16D19d550cE462D11783c/logo.png differ diff --git a/blockchains/smartchain/assets/0x0607396970188B2e524c1cDe4Af1F9A191DeE150/info.json b/blockchains/smartchain/assets/0x0607396970188B2e524c1cDe4Af1F9A191DeE150/info.json new file mode 100644 index 00000000..bf13e91b --- /dev/null +++ b/blockchains/smartchain/assets/0x0607396970188B2e524c1cDe4Af1F9A191DeE150/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sierra", + "type": "BEP20", + "symbol": "SRA", + "decimals": 9, + "website": "https://SierraToken.com/", + "description": "SierraToken is the token of a community created to prevent addictions.", + "explorer": "https://bscscan.com/token/0x0607396970188B2e524c1cDe4Af1F9A191DeE150", + "status": "active", + "id": "0x0607396970188B2e524c1cDe4Af1F9A191DeE150" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0607396970188B2e524c1cDe4Af1F9A191DeE150/logo.png b/blockchains/smartchain/assets/0x0607396970188B2e524c1cDe4Af1F9A191DeE150/logo.png new file mode 100644 index 00000000..8fbebfb6 Binary files /dev/null and b/blockchains/smartchain/assets/0x0607396970188B2e524c1cDe4Af1F9A191DeE150/logo.png differ diff --git a/blockchains/smartchain/assets/0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B/info.json b/blockchains/smartchain/assets/0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B/info.json new file mode 100644 index 00000000..5d285896 --- /dev/null +++ b/blockchains/smartchain/assets/0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B/info.json @@ -0,0 +1,25 @@ +{ + "name": "Sonic Inu", + "website": "https://sonic-inu.com/", + "description": "Sonic Inu is a relatively new meme crypto token that has gained popularity among crypto enthusiasts and fans of the iconic video game character, Sonic the Hedgehog.", + "explorer": "https://bscscan.com/token/0x066cda0cca84e9c6ed0a4ecb92aa036a9582544b", + "type": "BEP20", + "symbol": "SONIC", + "decimals": 9, + "status": "active", + "id": "0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B", + "links": [ + { + "name": "x", + "url": "https://x.com/SonicInuBSC" + }, + { + "name": "telegram", + "url": "https://t.me/SonicInuEn" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sonic-inu-bsc/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B/logo.png b/blockchains/smartchain/assets/0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B/logo.png new file mode 100644 index 00000000..721dbc2a Binary files /dev/null and b/blockchains/smartchain/assets/0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B/logo.png differ diff --git a/blockchains/smartchain/assets/0x066fc8DD5955534A01a9f892314c9B01b59A9C11/info.json b/blockchains/smartchain/assets/0x066fc8DD5955534A01a9f892314c9B01b59A9C11/info.json new file mode 100644 index 00000000..efd65dfb --- /dev/null +++ b/blockchains/smartchain/assets/0x066fc8DD5955534A01a9f892314c9B01b59A9C11/info.json @@ -0,0 +1,11 @@ +{ + "name": "Animal Adoption Advocacy", + "type": "BEP20", + "symbol": "PAWS", + "decimals": 9, + "website": "https://animaladoptionadvocacy.com/", + "description": "PAWS’ Primary goal is to help streamline the donations towards animal shelters, conservation, and charities through a centralized platform that guarantees the authenticity of the organizations.", + "explorer": "https://bscscan.com/token/0x066fc8DD5955534A01a9f892314c9B01b59A9C11", + "status": "active", + "id": "0x066fc8DD5955534A01a9f892314c9B01b59A9C11" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x066fc8DD5955534A01a9f892314c9B01b59A9C11/logo.png b/blockchains/smartchain/assets/0x066fc8DD5955534A01a9f892314c9B01b59A9C11/logo.png new file mode 100644 index 00000000..6a0c6d3d Binary files /dev/null and b/blockchains/smartchain/assets/0x066fc8DD5955534A01a9f892314c9B01b59A9C11/logo.png differ diff --git a/blockchains/smartchain/assets/0x067a5ad3f0f91AcF512fFE66Ea77f37b4DcaaF18/info.json b/blockchains/smartchain/assets/0x067a5ad3f0f91AcF512fFE66Ea77f37b4DcaaF18/info.json new file mode 100644 index 00000000..ddd8931d --- /dev/null +++ b/blockchains/smartchain/assets/0x067a5ad3f0f91AcF512fFE66Ea77f37b4DcaaF18/info.json @@ -0,0 +1,28 @@ +{ + "name": "Wynaut Token", + "website": "https://wynaut.money", + "description": "Just like Wynaut, this token has the ability to reflect any token it receives back to the suppliers of its token.", + "explorer": "https://bscscan.com/token/0x067a5ad3f0f91AcF512fFE66Ea77f37b4DcaaF18", + "type": "BEP20", + "symbol": "WYNAUT", + "decimals": 8, + "status": "active", + "id": "0x067a5ad3f0f91AcF512fFE66Ea77f37b4DcaaF18", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/WynautMoney" + }, + { + "name": "telegram", + "url": "https://t.me/wynautmoney" + }, + { + "name": "medium", + "url": "https://wynautmoney.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x067a5ad3f0f91AcF512fFE66Ea77f37b4DcaaF18/logo.png b/blockchains/smartchain/assets/0x067a5ad3f0f91AcF512fFE66Ea77f37b4DcaaF18/logo.png new file mode 100644 index 00000000..e06a80dc Binary files /dev/null and b/blockchains/smartchain/assets/0x067a5ad3f0f91AcF512fFE66Ea77f37b4DcaaF18/logo.png differ diff --git a/blockchains/smartchain/assets/0x069B2619Eb24367A46Fda638Bd1b88Aa4daD7879/info.json b/blockchains/smartchain/assets/0x069B2619Eb24367A46Fda638Bd1b88Aa4daD7879/info.json new file mode 100644 index 00000000..a60c2d93 --- /dev/null +++ b/blockchains/smartchain/assets/0x069B2619Eb24367A46Fda638Bd1b88Aa4daD7879/info.json @@ -0,0 +1,21 @@ +{ + "name": "MoonDAO", + "website": "https://moondao.finance", + "description": "Every trade contributes toward automatically generating liquidity locked inside Pancakeswap LP.", + "explorer": "https://bscscan.com/token/0x069b2619eb24367a46fda638bd1b88aa4dad7879", + "type": "BEP20", + "symbol": "MNDAO", + "decimals": 9, + "status": "active", + "id": "0x069B2619Eb24367A46Fda638Bd1b88Aa4daD7879", + "links": [ + { + "name": "x", + "url": "https://x.com/Moon_DAO_" + }, + { + "name": "telegram", + "url": "https://t.me/moon_dao" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x069B2619Eb24367A46Fda638Bd1b88Aa4daD7879/logo.png b/blockchains/smartchain/assets/0x069B2619Eb24367A46Fda638Bd1b88Aa4daD7879/logo.png new file mode 100644 index 00000000..b99b5264 Binary files /dev/null and b/blockchains/smartchain/assets/0x069B2619Eb24367A46Fda638Bd1b88Aa4daD7879/logo.png differ diff --git a/blockchains/smartchain/assets/0x06A0138F8c3e5110fd98e34a4473Fb08F1304b87/info.json b/blockchains/smartchain/assets/0x06A0138F8c3e5110fd98e34a4473Fb08F1304b87/info.json new file mode 100644 index 00000000..fa619ead --- /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 00000000..5fa79853 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 new file mode 100644 index 00000000..5888f193 --- /dev/null +++ b/blockchains/smartchain/assets/0x06b889a7a7fa15D8cC7CFf147962C4232cCE7CF0/info.json @@ -0,0 +1,25 @@ +{ + "name": "SaunaFinance Token", + "website": "https://sauna.finance/", + "description": "SAUNA FINANCE aims to build various Dapps and create ideal sauna facilities to satisfy sauna users all over the world. By the votes of $ SAUNA (SAUNA FINANCE TOKEN) holders, we realize the best settings in every country / region, design of the facility, sauna room temperature, water bath temperature, etc., and create the most relaxed and happiest community.", + "explorer": "https://bscscan.com/token/0x06b889a7a7fa15D8cC7CFf147962C4232cCE7CF0", + "type": "BEP20", + "symbol": "SAUNA", + "decimals": 18, + "status": "active", + "id": "0x06b889a7a7fa15D8cC7CFf147962C4232cCE7CF0", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Saunafinance" + }, + { + "name": "x", + "url": "https://x.com/sauna_finance" + }, + { + "name": "blog", + "url": "https://sauna-finance.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x06b889a7a7fa15D8cC7CFf147962C4232cCE7CF0/logo.png b/blockchains/smartchain/assets/0x06b889a7a7fa15D8cC7CFf147962C4232cCE7CF0/logo.png new file mode 100644 index 00000000..e024638d Binary files /dev/null and b/blockchains/smartchain/assets/0x06b889a7a7fa15D8cC7CFf147962C4232cCE7CF0/logo.png differ diff --git a/blockchains/smartchain/assets/0x06c0783C6B6f268D9f408F74a2Fe368Be732F9FF/info.json b/blockchains/smartchain/assets/0x06c0783C6B6f268D9f408F74a2Fe368Be732F9FF/info.json new file mode 100644 index 00000000..c4a90a2a --- /dev/null +++ b/blockchains/smartchain/assets/0x06c0783C6B6f268D9f408F74a2Fe368Be732F9FF/info.json @@ -0,0 +1,28 @@ +{ + "name": "LuckyPig", + "website": "https://luckypigtoken.com/", + "description": "Luckypig will bring NFT, lottery/jackpot concepts together and a contract with low taxes. Our team's longterm goal is to build an online casino which will be pegged with our token.", + "explorer": "https://bscscan.com/token/0x06c0783C6B6f268D9f408F74a2Fe368Be732F9FF", + "type": "BEP20", + "symbol": "LuckyPig", + "decimals": 9, + "status": "active", + "id": "0x06c0783C6B6f268D9f408F74a2Fe368Be732F9FF", + "links": [ + { + "name": "x", + "url": "https://x.com/Luckypigtoken?s=20&t=EB9f2aY9hr8o3_Eg0GDMrw" + }, + { + "name": "telegram", + "url": "https://t.me/luckypigtoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/luckypig/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x06c0783C6B6f268D9f408F74a2Fe368Be732F9FF/logo.png b/blockchains/smartchain/assets/0x06c0783C6B6f268D9f408F74a2Fe368Be732F9FF/logo.png new file mode 100644 index 00000000..4cdf83b3 Binary files /dev/null and b/blockchains/smartchain/assets/0x06c0783C6B6f268D9f408F74a2Fe368Be732F9FF/logo.png differ diff --git a/blockchains/smartchain/assets/0x06c4212Ae2fEa51a27A045D968E73F7E91eA5521/info.json b/blockchains/smartchain/assets/0x06c4212Ae2fEa51a27A045D968E73F7E91eA5521/info.json new file mode 100644 index 00000000..af6d67ff --- /dev/null +++ b/blockchains/smartchain/assets/0x06c4212Ae2fEa51a27A045D968E73F7E91eA5521/info.json @@ -0,0 +1,11 @@ +{ + "name": "Baby EverDoge", + "type": "BEP20", + "symbol": "Baby EverDoge", + "decimals": 9, + "website": "https://www.babyEverDoge.com", + "description": "Logo update for this coin", + "explorer": "https://bscscan.com/token/0x06c4212Ae2fEa51a27A045D968E73F7E91eA5521", + "status": "active", + "id": "0x06c4212Ae2fEa51a27A045D968E73F7E91eA5521" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x06c4212Ae2fEa51a27A045D968E73F7E91eA5521/logo.png b/blockchains/smartchain/assets/0x06c4212Ae2fEa51a27A045D968E73F7E91eA5521/logo.png new file mode 100644 index 00000000..fdbaa27c Binary files /dev/null and b/blockchains/smartchain/assets/0x06c4212Ae2fEa51a27A045D968E73F7E91eA5521/logo.png differ diff --git a/blockchains/smartchain/assets/0x070a08BeEF8d36734dD67A491202fF35a6A16d97/info.json b/blockchains/smartchain/assets/0x070a08BeEF8d36734dD67A491202fF35a6A16d97/info.json new file mode 100644 index 00000000..f7313993 --- /dev/null +++ b/blockchains/smartchain/assets/0x070a08BeEF8d36734dD67A491202fF35a6A16d97/info.json @@ -0,0 +1,12 @@ +{ + "name": "Binance-Peg 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", + "research": "https://research.binance.com/en/projects/small-love-potion", + "type": "BEP20", + "symbol": "SLP", + "decimals": 18, + "status": "active", + "id": "0x070a08BeEF8d36734dD67A491202fF35a6A16d97" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x070a08BeEF8d36734dD67A491202fF35a6A16d97/logo.png b/blockchains/smartchain/assets/0x070a08BeEF8d36734dD67A491202fF35a6A16d97/logo.png new file mode 100644 index 00000000..ff213006 Binary files /dev/null and b/blockchains/smartchain/assets/0x070a08BeEF8d36734dD67A491202fF35a6A16d97/logo.png differ diff --git a/blockchains/smartchain/assets/0x071Fa11f7516CDeb366F7f7d91DA5049F7086185/info.json b/blockchains/smartchain/assets/0x071Fa11f7516CDeb366F7f7d91DA5049F7086185/info.json new file mode 100644 index 00000000..bd7e1459 --- /dev/null +++ b/blockchains/smartchain/assets/0x071Fa11f7516CDeb366F7f7d91DA5049F7086185/info.json @@ -0,0 +1,37 @@ +{ + "name": "Rocket Boys", + "website": "https://rocketboys.io/", + "description": "The Rocketboys launchpad is positioned to disrupt all that has become toxic in the current presale ecosystem. The launchpad will operate a much higher barrier to entry for prospective projects – KYB (Know Your Business) and pre-doxxing to an internal Rocketboys committee before launch will provide a uniquely safer investing environment for all participants.", + "explorer": "https://bscscan.com/token/0x071Fa11f7516CDeb366F7f7d91DA5049F7086185", + "type": "BEP20", + "symbol": "RBOYS", + "decimals": 9, + "status": "active", + "id": "0x071Fa11f7516CDeb366F7f7d91DA5049F7086185", + "links": [ + { + "name": "telegram", + "url": "https://t.me/rocketboys0fficial" + }, + { + "name": "x", + "url": "https://x.com/rocketboysbsc" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/rocketboysofficial" + }, + { + "name": "whitepaper", + "url": "https://rocketboys.io/#whitepaper" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/rocket-boys" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rocket-boys" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x071Fa11f7516CDeb366F7f7d91DA5049F7086185/logo.png b/blockchains/smartchain/assets/0x071Fa11f7516CDeb366F7f7d91DA5049F7086185/logo.png new file mode 100644 index 00000000..2e4a9de1 Binary files /dev/null and b/blockchains/smartchain/assets/0x071Fa11f7516CDeb366F7f7d91DA5049F7086185/logo.png differ diff --git a/blockchains/smartchain/assets/0x0733618Ab62eEEC815f2d1739b7a50bF9E74d8a2/info.json b/blockchains/smartchain/assets/0x0733618Ab62eEEC815f2d1739b7a50bF9E74d8a2/info.json new file mode 100644 index 00000000..5d45388a --- /dev/null +++ b/blockchains/smartchain/assets/0x0733618Ab62eEEC815f2d1739b7a50bF9E74d8a2/info.json @@ -0,0 +1,28 @@ +{ + "name": "Pomerium Ecosystem", + "website": "https://pomerium.space/", + "description": "Pomerium is Web3 game studio. Pomerium develops independent games with original content and provides the services, such as Web3 utility service tools interacting with the games and publishing. Above all, our goal is to build the sustainable token economy of Pomerium.", + "explorer": "https://bscscan.com/token/0x0733618Ab62eEEC815f2d1739b7a50bF9E74d8a2", + "type": "BEP20", + "symbol": "PMG", + "decimals": 18, + "status": "active", + "id": "0x0733618Ab62eEEC815f2d1739b7a50bF9E74d8a2", + "tags": [ + "gamefi" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pomerium-ecosystem-token/" + }, + { + "name": "x", + "url": "https://x.com/pomerium_space" + }, + { + "name": "medium", + "url": "https://medium.com/pomerium" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0733618Ab62eEEC815f2d1739b7a50bF9E74d8a2/logo.png b/blockchains/smartchain/assets/0x0733618Ab62eEEC815f2d1739b7a50bF9E74d8a2/logo.png new file mode 100644 index 00000000..ba2be4c6 Binary files /dev/null and b/blockchains/smartchain/assets/0x0733618Ab62eEEC815f2d1739b7a50bF9E74d8a2/logo.png differ diff --git a/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/info.json b/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/info.json new file mode 100644 index 00000000..31e610de --- /dev/null +++ b/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Lista USD", + "type": "BEP20", + "symbol": "lisUSD", + "decimals": 18, + "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": "x", + "url": "https://x.com/Lista_DAO" + }, + { + "name": "telegram", + "url": "https://t.me/ListaDAO" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/logo.png b/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/logo.png new file mode 100644 index 00000000..280d63b8 Binary files /dev/null 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 new file mode 100644 index 00000000..c4dba984 --- /dev/null +++ b/blockchains/smartchain/assets/0x079Dd74Cc214Ac5f892f6a7271ef0722F6D0c2e6/info.json @@ -0,0 +1,37 @@ +{ + "name": "Nasa Doge", + "type": "BEP20", + "symbol": "NasaDoge", + "decimals": 9, + "website": "https://www.nasadoge.finance/", + "description": "NasaDoge is loyal to his family, like all dogs should be! All holders of $NasaDoge will earn more tokens on each transaction that is automatically sent to your wallet.", + "explorer": "https://bscscan.com/token/0x079Dd74Cc214Ac5f892f6a7271ef0722F6D0c2e6", + "status": "active", + "id": "0x079Dd74Cc214Ac5f892f6a7271ef0722F6D0c2e6", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/nasadogetoken/" + }, + { + "name": "x", + "url": "https://x.com/nasadogetoken" + }, + { + "name": "telegram", + "url": "https://t.me/nasadogetoken" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/nasadogetoken/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nasa-doge/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nasa-doge" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x079Dd74Cc214Ac5f892f6a7271ef0722F6D0c2e6/logo.png b/blockchains/smartchain/assets/0x079Dd74Cc214Ac5f892f6a7271ef0722F6D0c2e6/logo.png new file mode 100644 index 00000000..3c03e24e Binary files /dev/null and b/blockchains/smartchain/assets/0x079Dd74Cc214Ac5f892f6a7271ef0722F6D0c2e6/logo.png differ diff --git a/blockchains/smartchain/assets/0x07B36F2549291d320132712a1E64d3826B1FB4D7/info.json b/blockchains/smartchain/assets/0x07B36F2549291d320132712a1E64d3826B1FB4D7/info.json new file mode 100644 index 00000000..28c2b8ff --- /dev/null +++ b/blockchains/smartchain/assets/0x07B36F2549291d320132712a1E64d3826B1FB4D7/info.json @@ -0,0 +1,11 @@ +{ + "name": "WIFEDOGE", + "website": "https://wifedoge.com", + "description": "WIFEDOGE,DOGE'S WIFE,BABYDOGE'S MOTHER,Doge needs Wife, If you like doge, please hold wifedoge. Every Jack has his Jill", + "explorer": "https://bscscan.com/token/0x07b36f2549291d320132712a1e64d3826b1fb4d7", + "type": "BEP20", + "symbol": "WIFEDOGE", + "decimals": 9, + "status": "active", + "id": "0x07B36F2549291d320132712a1E64d3826B1FB4D7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x07B36F2549291d320132712a1E64d3826B1FB4D7/logo.png b/blockchains/smartchain/assets/0x07B36F2549291d320132712a1E64d3826B1FB4D7/logo.png new file mode 100644 index 00000000..b42728fd Binary files /dev/null and b/blockchains/smartchain/assets/0x07B36F2549291d320132712a1E64d3826B1FB4D7/logo.png differ diff --git a/blockchains/smartchain/assets/0x07EC61Ae90860641972E9B41A706325a1E928BF8/info.json b/blockchains/smartchain/assets/0x07EC61Ae90860641972E9B41A706325a1E928BF8/info.json new file mode 100644 index 00000000..f9704cd1 --- /dev/null +++ b/blockchains/smartchain/assets/0x07EC61Ae90860641972E9B41A706325a1E928BF8/info.json @@ -0,0 +1,24 @@ +{ + "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.", + "explorer": "https://bscscan.com/token/0x07EC61Ae90860641972E9B41A706325a1E928BF8", + "status": "active", + "id": "0x07EC61Ae90860641972E9B41A706325a1E928BF8", + "links": [ + { + "name": "x", + "url": "https://x.com/VoltInuOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/VoltInuOfficial" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x07EC61Ae90860641972E9B41A706325a1E928BF8/logo.png b/blockchains/smartchain/assets/0x07EC61Ae90860641972E9B41A706325a1E928BF8/logo.png new file mode 100644 index 00000000..05b5072f Binary files /dev/null and b/blockchains/smartchain/assets/0x07EC61Ae90860641972E9B41A706325a1E928BF8/logo.png differ diff --git a/blockchains/smartchain/assets/0x07a3554899D97a087Bda931Dd5224B3B7435E568/info.json b/blockchains/smartchain/assets/0x07a3554899D97a087Bda931Dd5224B3B7435E568/info.json new file mode 100644 index 00000000..307d8aeb --- /dev/null +++ b/blockchains/smartchain/assets/0x07a3554899D97a087Bda931Dd5224B3B7435E568/info.json @@ -0,0 +1,32 @@ +{ + "name": "TendaCoin", + "type": "BEP20", + "symbol": "TND", + "decimals": 18, + "website": "https://tendacoin.com", + "description": "Decentralized Currency from People to People.", + "explorer": "https://bscscan.com/token/0x07a3554899D97a087Bda931Dd5224B3B7435E568", + "status": "active", + "id": "0x07a3554899D97a087Bda931Dd5224B3B7435E568", + "links": [ + { + "name": "x", + "url": "https://x.com/TendaCoin1" + }, + { + "name": "telegram", + "url": "https://t.me/TendaCoinChat" + }, + { + "name": "github", + "url": "https://github.com/tendacoin" + }, + { + "name": "whitepaper", + "url": "https://tendacoin.com/whitepaper/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x07a3554899D97a087Bda931Dd5224B3B7435E568/logo.png b/blockchains/smartchain/assets/0x07a3554899D97a087Bda931Dd5224B3B7435E568/logo.png new file mode 100644 index 00000000..58b91ca8 Binary files /dev/null and b/blockchains/smartchain/assets/0x07a3554899D97a087Bda931Dd5224B3B7435E568/logo.png differ diff --git a/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json b/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json new file mode 100644 index 00000000..60ae0eb1 --- /dev/null +++ b/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json @@ -0,0 +1,25 @@ +{ + "name": "Aquagoat", + "type": "BEP20", + "symbol": "AQUAGOAT", + "decimals": 9, + "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": "abandoned", + "id": "0x07af67b392B7A202fAD8E0FBc64C34F33102165B", + "links": [ + { + "name": "x", + "url": "https://x.com/AquaBsc?s=09" + }, + { + "name": "telegram", + "url": "https://t.me/AquaGoat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/E94cMhRhyu" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x07e330A210B8128c7b32476704C3052cD8c10e5b/info.json b/blockchains/smartchain/assets/0x07e330A210B8128c7b32476704C3052cD8c10e5b/info.json new file mode 100644 index 00000000..8a241b52 --- /dev/null +++ b/blockchains/smartchain/assets/0x07e330A210B8128c7b32476704C3052cD8c10e5b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Burn1", + "website": "https://www.burn1.today/", + "description": "Reflectionary Social Justice Token", + "explorer": "https://bscscan.com/token/0x07e330A210B8128c7b32476704C3052cD8c10e5b", + "type": "BEP20", + "symbol": "BURN1", + "decimals": 9, + "status": "abandoned", + "id": "0x07e330A210B8128c7b32476704C3052cD8c10e5b" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/info.json b/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/info.json new file mode 100644 index 00000000..43aeda33 --- /dev/null +++ b/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/info.json @@ -0,0 +1,33 @@ +{ + "name": "Qmall Token", + "type": "BEP20", + "symbol": "QMALL", + "decimals": 18, + "website": "https://qmall.io/", + "description": "The QMALL token is a service token of the Qmall Exchange, the main application of which is to use it to pay a commission when using the exchange's services, including a trading commission, as well as to obtain additional privileges.", + "explorer": "https://bscscan.com/token/0x07e551e31a793e20dc18494ff6b03095a8f8ee36", + "status": "active", + "id": "0x07e551E31A793E20dc18494ff6b03095A8F8Ee36", + "links": [ + { + "name": "x", + "url": "https://x.com/QmallExchange" + }, + { + "name": "telegram", + "url": "https://t.me/qMall_Exchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qmall-token/" + }, + { + "name": "facebook", + "url": "https://facebook.com/qmall.io" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/qmall/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/logo.png b/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/logo.png new file mode 100644 index 00000000..e0b4bdca Binary files /dev/null and b/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/logo.png differ diff --git a/blockchains/smartchain/assets/0x07f5cEdeD6B3dba557B3663EDC8941FB37b63945/info.json b/blockchains/smartchain/assets/0x07f5cEdeD6B3dba557B3663EDC8941FB37b63945/info.json new file mode 100644 index 00000000..283697bf --- /dev/null +++ b/blockchains/smartchain/assets/0x07f5cEdeD6B3dba557B3663EDC8941FB37b63945/info.json @@ -0,0 +1,25 @@ +{ + "name": "Little Angry Bunny v2 ", + "type": "BEP20", + "symbol": "LAB v2", + "decimals": 9, + "website": "https://littleangrybunnyv2.com/", + "description": "Little Angry Bunny V2 is committed to provide a decentralized transaction network under Binance Smart Chain (BEP-20) with a maximum circulating supply of 10 septillion. There is no main owner of the LAB token. It is purely Community driven Token.", + "explorer": "https://bscscan.com/token/0x07f5cEdeD6B3dba557B3663EDC8941FB37b63945", + "status": "active", + "id": "0x07f5cEdeD6B3dba557B3663EDC8941FB37b63945", + "links": [ + { + "name": "x", + "url": "https://x.com/LABCommunityOfc" + }, + { + "name": "telegram", + "url": "https://t.me/LittleAngryBunnyGlobal" + }, + { + "name": "whitepaper", + "url": "https://littleangrybunnyv2.com/assets/WHITE-PAPER-LAB.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x07f5cEdeD6B3dba557B3663EDC8941FB37b63945/logo.png b/blockchains/smartchain/assets/0x07f5cEdeD6B3dba557B3663EDC8941FB37b63945/logo.png new file mode 100644 index 00000000..051ce896 Binary files /dev/null and b/blockchains/smartchain/assets/0x07f5cEdeD6B3dba557B3663EDC8941FB37b63945/logo.png differ diff --git a/blockchains/smartchain/assets/0x0858F78D09f19FEb89385E20F38515D6F2Be838b/info.json b/blockchains/smartchain/assets/0x0858F78D09f19FEb89385E20F38515D6F2Be838b/info.json new file mode 100644 index 00000000..c3683ef6 --- /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 00000000..270beb51 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 new file mode 100644 index 00000000..72f44124 --- /dev/null +++ b/blockchains/smartchain/assets/0x0864c156b3C5F69824564dEC60c629aE6401bf2a/info.json @@ -0,0 +1,41 @@ +{ + "name": "Streamr", + "type": "BEP20", + "symbol": "DATA", + "decimals": 18, + "website": "https://streamr.network", + "description": "Streamr is a decentralized real‑time data network for web3. Create, share and consume data streams on an open, scalable P2P protocol with powerful tools for monetization. As a layer zero protocol, it provides a publish/subscribe messaging framework for decentralized applications built on top.", + "explorer": "https://bscscan.com/token/0x0864c156b3C5F69824564dEC60c629aE6401bf2a", + "status": "active", + "id": "0x0864c156b3C5F69824564dEC60c629aE6401bf2a", + "links": [ + { + "name": "x", + "url": "https://x.com/streamr" + }, + { + "name": "github", + "url": "https://github.com/streamr-dev" + }, + { + "name": "whitepaper", + "url": "https://streamr.network/network-whitepaper" + }, + { + "name": "telegram", + "url": "https://t.me/streamrdata" + }, + { + "name": "docs", + "url": "https://streamr.network/docs" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/streamr" + }, + { + "name": "blog", + "url": "https://blog.streamr.network" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0864c156b3C5F69824564dEC60c629aE6401bf2a/logo.png b/blockchains/smartchain/assets/0x0864c156b3C5F69824564dEC60c629aE6401bf2a/logo.png new file mode 100644 index 00000000..9fc79a79 Binary files /dev/null and b/blockchains/smartchain/assets/0x0864c156b3C5F69824564dEC60c629aE6401bf2a/logo.png differ diff --git a/blockchains/smartchain/assets/0x08707eaEFCc344ad35BD35C5fF5691c2D3db456e/info.json b/blockchains/smartchain/assets/0x08707eaEFCc344ad35BD35C5fF5691c2D3db456e/info.json new file mode 100644 index 00000000..87d34ff8 --- /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 00000000..cb6c4903 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 00000000..d96d2fe6 --- /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/0x08BC237aA00F275b758542c9F5c125b568bc390A/logo.png b/blockchains/smartchain/assets/0x08BC237aA00F275b758542c9F5c125b568bc390A/logo.png new file mode 100644 index 00000000..f9e5f665 Binary files /dev/null and b/blockchains/smartchain/assets/0x08BC237aA00F275b758542c9F5c125b568bc390A/logo.png differ diff --git a/blockchains/smartchain/assets/0x08C975868e547BFE5F76Db7d1e075680e9736034/info.json b/blockchains/smartchain/assets/0x08C975868e547BFE5F76Db7d1e075680e9736034/info.json new file mode 100644 index 00000000..e90751d8 --- /dev/null +++ b/blockchains/smartchain/assets/0x08C975868e547BFE5F76Db7d1e075680e9736034/info.json @@ -0,0 +1,21 @@ +{ + "name": "DogeBack", + "type": "BEP20", + "symbol": "DOGEBACK", + "decimals": 18, + "website": "https://dogeback.finance", + "description": "Doge Back is a revolutionary token which combines buy back and also dividends, which results in real Doge Coin in your wallet.", + "explorer": "https://bscscan.com/token/0x08C975868e547BFE5F76Db7d1e075680e9736034", + "status": "active", + "id": "0x08C975868e547BFE5F76Db7d1e075680e9736034", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/doge-back/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/doge-back" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x08C975868e547BFE5F76Db7d1e075680e9736034/logo.png b/blockchains/smartchain/assets/0x08C975868e547BFE5F76Db7d1e075680e9736034/logo.png new file mode 100644 index 00000000..3e59a873 Binary files /dev/null and b/blockchains/smartchain/assets/0x08C975868e547BFE5F76Db7d1e075680e9736034/logo.png differ diff --git a/blockchains/smartchain/assets/0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3/info.json b/blockchains/smartchain/assets/0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3/info.json new file mode 100644 index 00000000..26d4d84e --- /dev/null +++ b/blockchains/smartchain/assets/0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus TUSD", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3", + "type": "BEP20", + "symbol": "vTUSD", + "decimals": 8, + "status": "active", + "id": "0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3/logo.png b/blockchains/smartchain/assets/0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3/logo.png new file mode 100644 index 00000000..08f511b5 Binary files /dev/null and b/blockchains/smartchain/assets/0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3/logo.png differ diff --git a/blockchains/smartchain/assets/0x08E8aC8c4bCA64503F774d2C40C911E8A3FfCc12/info.json b/blockchains/smartchain/assets/0x08E8aC8c4bCA64503F774d2C40C911E8A3FfCc12/info.json new file mode 100644 index 00000000..037b7291 --- /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 00000000..be6a544d 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 00000000..5b61698e --- /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 00000000..455582b2 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 new file mode 100644 index 00000000..370ef647 --- /dev/null +++ b/blockchains/smartchain/assets/0x08ba0619b1e7A582E0BCe5BBE9843322C954C340/info.json @@ -0,0 +1,21 @@ +{ + "name": "Binamon", + "type": "BEP20", + "symbol": "BMON", + "decimals": 18, + "website": "https://binamon.org", + "description": "A Complete Metaverse of Digital Monsters on Binance Smart Chain. With BMON the users can buy boosters of NFT. The boosters have 3 monsters.Through a smart contract called Booster, the NFTs will be minted (BEP721) ,using the $BMON token (BEP-20).", + "explorer": "https://bscscan.com/token/0x08ba0619b1e7A582E0BCe5BBE9843322C954C340", + "status": "active", + "id": "0x08ba0619b1e7A582E0BCe5BBE9843322C954C340", + "links": [ + { + "name": "x", + "url": "https://x.com/binamonok" + }, + { + "name": "telegram", + "url": "https://t.me/binamon" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x08ba0619b1e7A582E0BCe5BBE9843322C954C340/logo.png b/blockchains/smartchain/assets/0x08ba0619b1e7A582E0BCe5BBE9843322C954C340/logo.png new file mode 100644 index 00000000..76dfe648 Binary files /dev/null and b/blockchains/smartchain/assets/0x08ba0619b1e7A582E0BCe5BBE9843322C954C340/logo.png differ diff --git a/blockchains/smartchain/assets/0x08cE97F3D5Cf11E577D091ab048bC5e2EaE3FABB/info.json b/blockchains/smartchain/assets/0x08cE97F3D5Cf11E577D091ab048bC5e2EaE3FABB/info.json new file mode 100644 index 00000000..619f6cd9 --- /dev/null +++ b/blockchains/smartchain/assets/0x08cE97F3D5Cf11E577D091ab048bC5e2EaE3FABB/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core US Aggregate Bond ETF (Ondo Tokenized)", + "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 00000000..731ceba6 Binary files /dev/null and b/blockchains/smartchain/assets/0x08cE97F3D5Cf11E577D091ab048bC5e2EaE3FABB/logo.png differ diff --git a/blockchains/smartchain/assets/0x0901d1aca07aa728df1C45a29a90b86552909538/info.json b/blockchains/smartchain/assets/0x0901d1aca07aa728df1C45a29a90b86552909538/info.json new file mode 100644 index 00000000..4be3bbdf --- /dev/null +++ b/blockchains/smartchain/assets/0x0901d1aca07aa728df1C45a29a90b86552909538/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ethereum SV", + "website": "https://ethereumsv.com", + "description": "EthereumSV Protocol on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x0901d1aca07aa728df1C45a29a90b86552909538", + "symbol": "ETHSV", + "type": "BEP20", + "decimals": 0, + "status": "active", + "id": "0x0901d1aca07aa728df1C45a29a90b86552909538" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0901d1aca07aa728df1C45a29a90b86552909538/logo.png b/blockchains/smartchain/assets/0x0901d1aca07aa728df1C45a29a90b86552909538/logo.png new file mode 100644 index 00000000..3c56409d Binary files /dev/null and b/blockchains/smartchain/assets/0x0901d1aca07aa728df1C45a29a90b86552909538/logo.png differ diff --git a/blockchains/smartchain/assets/0x0919eFD4aA64f97F274Fc6fEDFADA32Cfbaf4444/info.json b/blockchains/smartchain/assets/0x0919eFD4aA64f97F274Fc6fEDFADA32Cfbaf4444/info.json new file mode 100644 index 00000000..e832f086 --- /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 00000000..9c961ab5 --- /dev/null +++ b/blockchains/smartchain/assets/0x091FC7778e6932d4009B087B191D1EE3bac5729A/info.json @@ -0,0 +1,24 @@ +{ + "name": "Alphabet Class A (Ondo Tokenized)", + "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 00000000..3badc167 Binary files /dev/null and b/blockchains/smartchain/assets/0x091FC7778e6932d4009B087B191D1EE3bac5729A/logo.png differ diff --git a/blockchains/smartchain/assets/0x0921d788E7f7498f80adb0A0A62B8A9476F2Db92/info.json b/blockchains/smartchain/assets/0x0921d788E7f7498f80adb0A0A62B8A9476F2Db92/info.json new file mode 100644 index 00000000..0d3dff9c --- /dev/null +++ b/blockchains/smartchain/assets/0x0921d788E7f7498f80adb0A0A62B8A9476F2Db92/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vulkania", + "type": "BEP20", + "symbol": "VLK", + "decimals": 8, + "website": "https://vulkania.io", + "description": "Vulkania is building tools that help crypto communities generate fully functional blockchain dashboards for their favorite tokens, calling DAAS (Dashboard As A Service). VLK token is the heart of this ecosystem, built on BSC ", + "explorer": "https://bscscan.com/token/0x0921d788E7f7498f80adb0A0A62B8A9476F2Db92", + "status": "abandoned", + "id": "0x0921d788E7f7498f80adb0A0A62B8A9476F2Db92" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x092BBec1342affFd16Cfb41B56343D5A299CDf0D/info.json b/blockchains/smartchain/assets/0x092BBec1342affFd16Cfb41B56343D5A299CDf0D/info.json new file mode 100644 index 00000000..cadb8a99 --- /dev/null +++ b/blockchains/smartchain/assets/0x092BBec1342affFd16Cfb41B56343D5A299CDf0D/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShibaCorgi", + "website": "https://shibacorgi.dog", + "description": "ShiCo is a MEME token inspired by Shiba & DOGE. Best pals ever!", + "explorer": "https://bscscan.com/token/0x092BBec1342affFd16Cfb41B56343D5A299CDf0D", + "symbol": "ShiCo", + "type": "BEP20", + "decimals": 9, + "status": "active", + "id": "0x092BBec1342affFd16Cfb41B56343D5A299CDf0D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x092BBec1342affFd16Cfb41B56343D5A299CDf0D/logo.png b/blockchains/smartchain/assets/0x092BBec1342affFd16Cfb41B56343D5A299CDf0D/logo.png new file mode 100644 index 00000000..19ce25c1 Binary files /dev/null and b/blockchains/smartchain/assets/0x092BBec1342affFd16Cfb41B56343D5A299CDf0D/logo.png differ diff --git a/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/info.json b/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/info.json new file mode 100644 index 00000000..1ac2b600 --- /dev/null +++ b/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/info.json @@ -0,0 +1,29 @@ +{ + "name": "Digital Files", + "type": "BEP20", + "symbol": "DIFI", + "decimals": 18, + "website": "https://difi.market/", + "description": "DIFI is a decentralized electronic document trading platform, where you can sell videos, codes, audio, pictures, games, databases, etc., using DIFI tokens for transactions.", + "explorer": "https://bscscan.com/token/0x0938a5d325A8496c186Cf122946e9dD22f8a625b", + "status": "active", + "id": "0x0938a5d325A8496c186Cf122946e9dD22f8a625b", + "links": [ + { + "name": "x", + "url": "https://x.com/difimarket" + }, + { + "name": "telegram", + "url": "https://t.me/difitoken" + }, + { + "name": "whitepaper", + "url": "https://difi.market/WhitePaper_difi.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/digital-files/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/logo.png b/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/logo.png new file mode 100644 index 00000000..34f2dd25 Binary files /dev/null and b/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/logo.png differ diff --git a/blockchains/smartchain/assets/0x0952dDFfDE60786497C7CEd1f49B4A14cF527f76/info.json b/blockchains/smartchain/assets/0x0952dDFfDE60786497C7CEd1f49B4A14cF527f76/info.json new file mode 100644 index 00000000..79a1ce6a --- /dev/null +++ b/blockchains/smartchain/assets/0x0952dDFfDE60786497C7CEd1f49B4A14cF527f76/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ghostface", + "website": "https://www.ghostface.finance/", + "description": "Ghostface - Hold $GHOSTFACE and earn $BNB while you sleep!", + "explorer": "https://bscscan.com/token/0x0952ddffde60786497c7ced1f49b4a14cf527f76", + "type": "BEP20", + "symbol": "GHOSTFACE", + "decimals": 9, + "status": "active", + "id": "0x0952dDFfDE60786497C7CEd1f49B4A14cF527f76" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0952dDFfDE60786497C7CEd1f49B4A14cF527f76/logo.png b/blockchains/smartchain/assets/0x0952dDFfDE60786497C7CEd1f49B4A14cF527f76/logo.png new file mode 100644 index 00000000..9426dc60 Binary files /dev/null and b/blockchains/smartchain/assets/0x0952dDFfDE60786497C7CEd1f49B4A14cF527f76/logo.png differ diff --git a/blockchains/smartchain/assets/0x0957C57C9EB7744850dCC95db5A06eD4a246236E/info.json b/blockchains/smartchain/assets/0x0957C57C9EB7744850dCC95db5A06eD4a246236E/info.json new file mode 100644 index 00000000..d59990ba --- /dev/null +++ b/blockchains/smartchain/assets/0x0957C57C9EB7744850dCC95db5A06eD4a246236E/info.json @@ -0,0 +1,25 @@ +{ + "name": "DANGO", + "website": "https://bsc.dango.money", + "description": "An Innovative Yield Farm on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x0957c57c9eb7744850dcc95db5a06ed4a246236e", + "type": "BEP20", + "symbol": "DANGO", + "decimals": 6, + "status": "active", + "id": "0x0957C57C9EB7744850dCC95db5A06eD4a246236E", + "links": [ + { + "name": "github", + "url": "https://github.com/dango-money/dango-money-farm" + }, + { + "name": "x", + "url": "https://x.com/dango_money" + }, + { + "name": "telegram", + "url": "https://t.me/DangoANN" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0957C57C9EB7744850dCC95db5A06eD4a246236E/logo.png b/blockchains/smartchain/assets/0x0957C57C9EB7744850dCC95db5A06eD4a246236E/logo.png new file mode 100644 index 00000000..91569f6a Binary files /dev/null and b/blockchains/smartchain/assets/0x0957C57C9EB7744850dCC95db5A06eD4a246236E/logo.png differ diff --git a/blockchains/smartchain/assets/0x095956B142431Eb9Cf88B99F392540B91aCbF4ad/info.json b/blockchains/smartchain/assets/0x095956B142431Eb9Cf88B99F392540B91aCbF4ad/info.json new file mode 100644 index 00000000..729e9298 --- /dev/null +++ b/blockchains/smartchain/assets/0x095956B142431Eb9Cf88B99F392540B91aCbF4ad/info.json @@ -0,0 +1,11 @@ +{ + "name": "One Basis Share", + "type": "BEP20", + "symbol": "OBS", + "decimals": 18, + "website": "https://onebasis.org/", + "description": "The One basis platform, established by the Yfione team, is the first stablecoin algorithm and I.W.O (first fundraising) in the Binance Smart Chain ecosystem, which can realize Satoshi Nakamoto's vision of cryptocurrency. One basis Cash combines liquid mining and flexible stablecoins, using a relatively complete cryptocurrency market adjustment mechanism.", + "explorer": "https://bscscan.com/token/0x095956B142431Eb9Cf88B99F392540B91aCbF4ad", + "status": "active", + "id": "0x095956B142431Eb9Cf88B99F392540B91aCbF4ad" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x095956B142431Eb9Cf88B99F392540B91aCbF4ad/logo.png b/blockchains/smartchain/assets/0x095956B142431Eb9Cf88B99F392540B91aCbF4ad/logo.png new file mode 100644 index 00000000..0e979dc2 Binary files /dev/null and b/blockchains/smartchain/assets/0x095956B142431Eb9Cf88B99F392540B91aCbF4ad/logo.png differ diff --git a/blockchains/smartchain/assets/0x096985703F584B9444CE9730B600fC39De29ccc8/info.json b/blockchains/smartchain/assets/0x096985703F584B9444CE9730B600fC39De29ccc8/info.json new file mode 100644 index 00000000..80443e08 --- /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 00000000..64db6f6f Binary files /dev/null and b/blockchains/smartchain/assets/0x096985703F584B9444CE9730B600fC39De29ccc8/logo.png differ diff --git a/blockchains/smartchain/assets/0x098dCbf3518856E45BB4e65E7fCc7C5Ff4a2C16e/info.json b/blockchains/smartchain/assets/0x098dCbf3518856E45BB4e65E7fCc7C5Ff4a2C16e/info.json new file mode 100644 index 00000000..34702c58 --- /dev/null +++ b/blockchains/smartchain/assets/0x098dCbf3518856E45BB4e65E7fCc7C5Ff4a2C16e/info.json @@ -0,0 +1,21 @@ +{ + "name": "RIMAU Token", + "website": "https://rimauswap.finance", + "description": "The First Decentralized Exchange (DEX) For The Malaysians Market on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x098dCbf3518856E45BB4e65E7fCc7C5Ff4a2C16e", + "type": "BEP20", + "symbol": "RIMAU", + "decimals": 18, + "status": "active", + "id": "0x098dCbf3518856E45BB4e65E7fCc7C5Ff4a2C16e", + "links": [ + { + "name": "telegram", + "url": "https://t.me/RimauSwap" + }, + { + "name": "facebook", + "url": "https://facebook.com/rimauswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x098dCbf3518856E45BB4e65E7fCc7C5Ff4a2C16e/logo.png b/blockchains/smartchain/assets/0x098dCbf3518856E45BB4e65E7fCc7C5Ff4a2C16e/logo.png new file mode 100644 index 00000000..e0995772 Binary files /dev/null and b/blockchains/smartchain/assets/0x098dCbf3518856E45BB4e65E7fCc7C5Ff4a2C16e/logo.png differ diff --git a/blockchains/smartchain/assets/0x099D6CC403C0a5B46A6dD384c622Da39f1e1001C/info.json b/blockchains/smartchain/assets/0x099D6CC403C0a5B46A6dD384c622Da39f1e1001C/info.json new file mode 100644 index 00000000..22186a81 --- /dev/null +++ b/blockchains/smartchain/assets/0x099D6CC403C0a5B46A6dD384c622Da39f1e1001C/info.json @@ -0,0 +1,11 @@ +{ + "name": "kawaiINU", + "website": "https://kawaiinu.net/", + "description": "Making world a better place by bringing cuteness to those who need it the most.", + "explorer": "https://bscscan.com/token/0x099d6cc403c0a5b46a6dd384c622da39f1e1001c", + "type": "BEP20", + "symbol": "KAWAII", + "decimals": 9, + "status": "active", + "id": "0x099D6CC403C0a5B46A6dD384c622Da39f1e1001C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x099D6CC403C0a5B46A6dD384c622Da39f1e1001C/logo.png b/blockchains/smartchain/assets/0x099D6CC403C0a5B46A6dD384c622Da39f1e1001C/logo.png new file mode 100644 index 00000000..d8a19939 Binary files /dev/null and b/blockchains/smartchain/assets/0x099D6CC403C0a5B46A6dD384c622Da39f1e1001C/logo.png differ diff --git a/blockchains/smartchain/assets/0x099E9E6a2252B952931EDa64950E87Bc73861594/info.json b/blockchains/smartchain/assets/0x099E9E6a2252B952931EDa64950E87Bc73861594/info.json new file mode 100644 index 00000000..033f3840 --- /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 new file mode 100644 index 00000000..f18e7ed9 --- /dev/null +++ b/blockchains/smartchain/assets/0x099f551eA3cb85707cAc6ac507cBc36C96eC64Ff/info.json @@ -0,0 +1,21 @@ +{ + "name": "SafeEarn", + "website": "https://safearn.app", + "description": "Safe Earn is the first mover of double-reflection tokens. Safe Earn acts as an earning platform by rewarding SafeMoon tokens to holders at a rate of 8.5%, which are then eligible to benefit from the SafeMoon standard reflections of 5%.", + "explorer": "https://bscscan.com/token/0x099f551eA3cb85707cAc6ac507cBc36C96eC64Ff", + "type": "BEP20", + "symbol": "SAFEARN", + "decimals": 9, + "status": "active", + "id": "0x099f551eA3cb85707cAc6ac507cBc36C96eC64Ff", + "links": [ + { + "name": "x", + "url": "https://x.com/safearnbsc" + }, + { + "name": "telegram", + "url": "https://t.me/safe_earn" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x099f551eA3cb85707cAc6ac507cBc36C96eC64Ff/logo.png b/blockchains/smartchain/assets/0x099f551eA3cb85707cAc6ac507cBc36C96eC64Ff/logo.png new file mode 100644 index 00000000..db2db653 Binary files /dev/null and b/blockchains/smartchain/assets/0x099f551eA3cb85707cAc6ac507cBc36C96eC64Ff/logo.png differ diff --git a/blockchains/smartchain/assets/0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1/info.json b/blockchains/smartchain/assets/0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1/info.json new file mode 100644 index 00000000..9acf1cc5 --- /dev/null +++ b/blockchains/smartchain/assets/0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1/info.json @@ -0,0 +1,32 @@ +{ + "name": "WEDEX TOKEN V2", + "type": "BEP20", + "symbol": "DEX", + "decimals": 18, + "website": "https://wedex.app/", + "description": "Wedex - A next evolution DeFi exchange on Binance Smart Chain (BSC)", + "explorer": "https://bscscan.com/token/0x09bb6042a19bb3a6981e9a47ec0f006dbd28a8d1", + "status": "active", + "id": "0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1", + "links": [ + { + "name": "x", + "url": "https://x.com/WedexApp" + }, + { + "name": "github", + "url": "https://github.com/wedexapp" + }, + { + "name": "telegram", + "url": "https://t.me/WedexNFTgroup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wedex-token-v2/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1/logo.png b/blockchains/smartchain/assets/0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1/logo.png new file mode 100644 index 00000000..bde265b1 Binary files /dev/null and b/blockchains/smartchain/assets/0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1/logo.png differ diff --git a/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/info.json b/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/info.json new file mode 100644 index 00000000..ba5cd6d6 --- /dev/null +++ b/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/info.json @@ -0,0 +1,25 @@ +{ + "name": "CLV", + "website": "https://clv.org/", + "description": "Clover is the native token of CLV M-Chain, and is used for staking to take part in network consensus, transaction fees, platform rewards, and network governance.", + "explorer": "https://bscscan.com/token/0x09E889BB4D5b474f561db0491C38702F367A4e4d", + "symbol": "CLV", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x09E889BB4D5b474f561db0491C38702F367A4e4d", + "links": [ + { + "name": "github", + "url": "https://github.com/clover-network" + }, + { + "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/0x09E889BB4D5b474f561db0491C38702F367A4e4d/logo.png b/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/logo.png new file mode 100644 index 00000000..3765491c Binary files /dev/null and b/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/logo.png differ diff --git a/blockchains/smartchain/assets/0x09F956f1E0C28f0b436663D44e0830B7853203d4/info.json b/blockchains/smartchain/assets/0x09F956f1E0C28f0b436663D44e0830B7853203d4/info.json new file mode 100644 index 00000000..3e07bae5 --- /dev/null +++ b/blockchains/smartchain/assets/0x09F956f1E0C28f0b436663D44e0830B7853203d4/info.json @@ -0,0 +1,11 @@ +{ + "name": "SHIBA KILLER", + "website": "https://shibakiller.org", + "description": "SHIBA KILLER is Memes Token", + "explorer": "https://bscscan.com/token/0x09F956f1E0C28f0b436663D44e0830B7853203d4", + "symbol": "SHIBK", + "type": "BEP20", + "decimals": 0, + "status": "active", + "id": "0x09F956f1E0C28f0b436663D44e0830B7853203d4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x09F956f1E0C28f0b436663D44e0830B7853203d4/logo.png b/blockchains/smartchain/assets/0x09F956f1E0C28f0b436663D44e0830B7853203d4/logo.png new file mode 100644 index 00000000..b2971352 Binary files /dev/null and b/blockchains/smartchain/assets/0x09F956f1E0C28f0b436663D44e0830B7853203d4/logo.png differ diff --git a/blockchains/smartchain/assets/0x09a6c44c3947B69E2B45F4D51b67E6a39ACfB506/info.json b/blockchains/smartchain/assets/0x09a6c44c3947B69E2B45F4D51b67E6a39ACfB506/info.json new file mode 100644 index 00000000..59c6762b --- /dev/null +++ b/blockchains/smartchain/assets/0x09a6c44c3947B69E2B45F4D51b67E6a39ACfB506/info.json @@ -0,0 +1,37 @@ +{ + "name": "UniCrypt", + "website": "https://unicrypt.network", + "description": "UNCX is the governance token of the UniCrypt platform.", + "explorer": "https://bscscan.com/token/0x09a6c44c3947b69e2b45f4d51b67e6a39acfb506", + "type": "BEP20", + "symbol": "UNCX", + "decimals": 18, + "status": "active", + "id": "0x09a6c44c3947B69E2B45F4D51b67E6a39ACfB506", + "links": [ + { + "name": "x", + "url": "https://x.com/UNCX_token" + }, + { + "name": "medium", + "url": "https://unicrypt.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/uncx_token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uncx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/unicrypt" + }, + { + "name": "docs", + "url": "https://docs.unicrypt.network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x09a6c44c3947B69E2B45F4D51b67E6a39ACfB506/logo.png b/blockchains/smartchain/assets/0x09a6c44c3947B69E2B45F4D51b67E6a39ACfB506/logo.png new file mode 100644 index 00000000..7dd5b728 Binary files /dev/null and b/blockchains/smartchain/assets/0x09a6c44c3947B69E2B45F4D51b67E6a39ACfB506/logo.png differ diff --git a/blockchains/smartchain/assets/0x09d96101dB62FfAc32f798CB9A61e501337b79C6/info.json b/blockchains/smartchain/assets/0x09d96101dB62FfAc32f798CB9A61e501337b79C6/info.json new file mode 100644 index 00000000..3993a280 --- /dev/null +++ b/blockchains/smartchain/assets/0x09d96101dB62FfAc32f798CB9A61e501337b79C6/info.json @@ -0,0 +1,40 @@ +{ + "name": "WEB3 Game", + "type": "BEP20", + "symbol": "WEB3", + "decimals": 9, + "website": "https://web3game.tech", + "description": "WEB3 Game building a Game Studio, Metaverse, DeFi and Web3.0. An unique play-to-earn game that strives to return ownership back to the gamers", + "explorer": "https://bscscan.com/token/0x09d96101db62ffac32f798cb9a61e501337b79c6", + "status": "active", + "id": "0x09d96101dB62FfAc32f798CB9A61e501337b79C6", + "links": [ + { + "name": "x", + "url": "https://x.com/Web3GamesBSC" + }, + { + "name": "github", + "url": "https://github.com/web3gameTECH" + }, + { + "name": "telegram", + "url": "https://t.me/web3_game" + }, + { + "name": "whitepaper", + "url": "https://web3game.tech/assets/web3game_whitepaper_v1.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@Web3_Game" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/web3-game/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x09d96101dB62FfAc32f798CB9A61e501337b79C6/logo.png b/blockchains/smartchain/assets/0x09d96101dB62FfAc32f798CB9A61e501337b79C6/logo.png new file mode 100644 index 00000000..a1ae8e0d Binary files /dev/null and b/blockchains/smartchain/assets/0x09d96101dB62FfAc32f798CB9A61e501337b79C6/logo.png differ diff --git a/blockchains/smartchain/assets/0x09d975C3351DBdED28617517FC6982284a787f03/info.json b/blockchains/smartchain/assets/0x09d975C3351DBdED28617517FC6982284a787f03/info.json new file mode 100644 index 00000000..f9750db1 --- /dev/null +++ b/blockchains/smartchain/assets/0x09d975C3351DBdED28617517FC6982284a787f03/info.json @@ -0,0 +1,37 @@ +{ + "name": "Crypto Island", + "type": "BEP20", + "symbol": "CISLA", + "decimals": 18, + "website": "https://cryptoisland.group", + "description": "CISLA is a community driven token set to buy and decentralize a private island which will be co-owned by its holders and supported by a community app.", + "explorer": "https://bscscan.com/token/0x09d975C3351DBdED28617517FC6982284a787f03", + "status": "active", + "id": "0x09d975C3351DBdED28617517FC6982284a787f03", + "links": [ + { + "name": "x", + "url": "https://x.com/Cryptoislandgr1" + }, + { + "name": "github", + "url": "https://github.com/CryptoIslandgroup/" + }, + { + "name": "telegram", + "url": "https://t.me/cryptoislandgroup" + }, + { + "name": "discord", + "url": "https://discord.com/invite/274APUJTEQ" + }, + { + "name": "facebook", + "url": "https://facebook.com/Cryptoislandgroup" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/nl/coins/crypto-island" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x09d975C3351DBdED28617517FC6982284a787f03/logo.png b/blockchains/smartchain/assets/0x09d975C3351DBdED28617517FC6982284a787f03/logo.png new file mode 100644 index 00000000..b55eca13 Binary files /dev/null and b/blockchains/smartchain/assets/0x09d975C3351DBdED28617517FC6982284a787f03/logo.png differ diff --git a/blockchains/smartchain/assets/0x09f4eBB8567ea0e969f10799CA678F9A172DC2Bb/info.json b/blockchains/smartchain/assets/0x09f4eBB8567ea0e969f10799CA678F9A172DC2Bb/info.json new file mode 100644 index 00000000..a4231935 --- /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 00000000..f2affb44 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 00000000..0be85cc1 --- /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 00000000..3555cc08 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 new file mode 100644 index 00000000..a53d0a23 --- /dev/null +++ b/blockchains/smartchain/assets/0x0A7bB2bddA1c0eA02d98a7b048f4bF809F40277b/info.json @@ -0,0 +1,41 @@ +{ + "name": "ThunderADA", + "website": "https://thunderada.app/", + "description": "The next evolution of a reflection token on the BSC with double reward reflection token using the power of 80/20 to maximize your earnings for both now & future", + "explorer": "https://bscscan.com/token/0x0A7bB2bddA1c0eA02d98a7b048f4bF809F40277b", + "type": "BEP20", + "symbol": "THUNDERADA", + "decimals": 18, + "status": "active", + "id": "0x0A7bB2bddA1c0eA02d98a7b048f4bF809F40277b", + "links": [ + { + "name": "x", + "url": "https://x.com/ThunderADAapp" + }, + { + "name": "telegram", + "url": "https://t.me/ThunderADA" + }, + { + "name": "docs", + "url": "https://docs.thunderada.app/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/thunderADA/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCldCQAHBwYYSPrmYm5sJsCg" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/thunderada-app" + }, + { + "name": "github", + "url": "https://github.com/ThunderAda/contracts" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0A7bB2bddA1c0eA02d98a7b048f4bF809F40277b/logo.png b/blockchains/smartchain/assets/0x0A7bB2bddA1c0eA02d98a7b048f4bF809F40277b/logo.png new file mode 100644 index 00000000..6810876d Binary files /dev/null and b/blockchains/smartchain/assets/0x0A7bB2bddA1c0eA02d98a7b048f4bF809F40277b/logo.png differ diff --git a/blockchains/smartchain/assets/0x0A950AC7f14a4982Cee3BF24AdB1dAD17E0A9026/info.json b/blockchains/smartchain/assets/0x0A950AC7f14a4982Cee3BF24AdB1dAD17E0A9026/info.json new file mode 100644 index 00000000..c7e96cb9 --- /dev/null +++ b/blockchains/smartchain/assets/0x0A950AC7f14a4982Cee3BF24AdB1dAD17E0A9026/info.json @@ -0,0 +1,11 @@ +{ + "name": "DRIVENX", + "type": "BEP20", + "symbol": "DVX", + "decimals": 9, + "website": "https://www.drivenx.finance/", + "description": "Disrupting the B2B industry by creating smart solutions for entrepreneurs around the world.", + "explorer": "https://bscscan.com/token/0x0A950AC7f14a4982Cee3BF24AdB1dAD17E0A9026", + "status": "abandoned", + "id": "0x0A950AC7f14a4982Cee3BF24AdB1dAD17E0A9026" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/info.json b/blockchains/smartchain/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/info.json new file mode 100644 index 00000000..f7cb697b --- /dev/null +++ b/blockchains/smartchain/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/info.json @@ -0,0 +1,21 @@ +{ + "name": "BankSocial", + "website": "https://www.banksocial.io", + "description": "BankSocial is your gateway to a full range of banking services using blockchain technology available globally.", + "explorer": "https://bscscan.com/token/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac", + "type": "BEP20", + "symbol": "BSL", + "decimals": 8, + "status": "active", + "id": "0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac", + "links": [ + { + "name": "x", + "url": "https://x.com/banksocialio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/banksocial/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/logo.png b/blockchains/smartchain/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/logo.png new file mode 100644 index 00000000..dacddef5 Binary files /dev/null and b/blockchains/smartchain/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/logo.png differ diff --git a/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json b/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json new file mode 100644 index 00000000..5277a017 --- /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 00000000..5dd9cbe1 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 00000000..90ea47b9 --- /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 00000000..ffdd61f2 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 00000000..4d7db4db --- /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 00000000..e2cf5666 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 new file mode 100644 index 00000000..94298f0a --- /dev/null +++ b/blockchains/smartchain/assets/0x0C37Bcf456bC661C14D596683325623076D7e283/info.json @@ -0,0 +1,30 @@ +{ + "name": "Aeron", + "website": "https://aeron.aero", + "description": "Aeron – blockchain solutions for aviation safety.", + "explorer": "https://bscscan.com/token/0x0C37Bcf456bC661C14D596683325623076D7e283", + "research": "https://research.binance.com/en/projects/aeron", + "type": "BEP20", + "symbol": "ARNX", + "decimals": 18, + "status": "active", + "id": "0x0C37Bcf456bC661C14D596683325623076D7e283", + "links": [ + { + "name": "x", + "url": "https://x.com/aeron_aero" + }, + { + "name": "telegram", + "url": "https://t.me/aeronaero" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aeron" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aeron" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0C37Bcf456bC661C14D596683325623076D7e283/logo.png b/blockchains/smartchain/assets/0x0C37Bcf456bC661C14D596683325623076D7e283/logo.png new file mode 100644 index 00000000..b79af15d Binary files /dev/null and b/blockchains/smartchain/assets/0x0C37Bcf456bC661C14D596683325623076D7e283/logo.png differ diff --git a/blockchains/smartchain/assets/0x0C3Ea5aAC39101E5b3989b3f19181D8591b734d0/info.json b/blockchains/smartchain/assets/0x0C3Ea5aAC39101E5b3989b3f19181D8591b734d0/info.json new file mode 100644 index 00000000..8addcca3 --- /dev/null +++ b/blockchains/smartchain/assets/0x0C3Ea5aAC39101E5b3989b3f19181D8591b734d0/info.json @@ -0,0 +1,11 @@ +{ + "name": "PlutoPepe", + "website": "https://plutopepe.com", + "description": "The first of its kind, $PLUTO ties a narrative to universal basic income (UBI) driven by the community that collaborates on a “choose-your-own-adventure” model of governance to propel Pepe across the galaxy and earn $PLUTO and $PEPE tokens in return", + "explorer": "https://bscscan.com/token/0x0C3Ea5aAC39101E5b3989b3f19181D8591b734d0", + "type": "BEP20", + "symbol": "PLUTO", + "decimals": 9, + "status": "active", + "id": "0x0C3Ea5aAC39101E5b3989b3f19181D8591b734d0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0C3Ea5aAC39101E5b3989b3f19181D8591b734d0/logo.png b/blockchains/smartchain/assets/0x0C3Ea5aAC39101E5b3989b3f19181D8591b734d0/logo.png new file mode 100644 index 00000000..b690d3d3 Binary files /dev/null and b/blockchains/smartchain/assets/0x0C3Ea5aAC39101E5b3989b3f19181D8591b734d0/logo.png differ diff --git a/blockchains/smartchain/assets/0x0Ca5D51D0277Bd006fd9607d3E560785EBad8222/info.json b/blockchains/smartchain/assets/0x0Ca5D51D0277Bd006fd9607d3E560785EBad8222/info.json new file mode 100644 index 00000000..3497be19 --- /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 00000000..f7530517 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 new file mode 100644 index 00000000..575c1f24 --- /dev/null +++ b/blockchains/smartchain/assets/0x0D4992E48278aA7F7C915f820743d9FaB7FeA713/info.json @@ -0,0 +1,21 @@ +{ + "name": "MetaZilla", + "type": "BEP20", + "symbol": "MZ", + "decimals": 8, + "website": "https://www.metazillabsc.org", + "description": "MetaZilla, is a community token that draws its name from the city-destroying monster GodZilla and Meta, the realm beyond reality.", + "explorer": "https://bscscan.com/token/0x0d4992e48278aa7f7c915f820743d9fab7fea713", + "status": "active", + "id": "0x0D4992E48278aA7F7C915f820743d9FaB7FeA713", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metazilla/" + }, + { + "name": "x", + "url": "https://x.com/TheMetaZilla" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0D4992E48278aA7F7C915f820743d9FaB7FeA713/logo.png b/blockchains/smartchain/assets/0x0D4992E48278aA7F7C915f820743d9FaB7FeA713/logo.png new file mode 100644 index 00000000..d70f7939 Binary files /dev/null and b/blockchains/smartchain/assets/0x0D4992E48278aA7F7C915f820743d9FaB7FeA713/logo.png differ diff --git a/blockchains/smartchain/assets/0x0D4f9b25F81163Fb4840BA4F434672543823000C/info.json b/blockchains/smartchain/assets/0x0D4f9b25F81163Fb4840BA4F434672543823000C/info.json new file mode 100644 index 00000000..142f4765 --- /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 00000000..6f961b66 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 00000000..bef0f5d2 --- /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 00000000..95d8e653 Binary files /dev/null and b/blockchains/smartchain/assets/0x0D586b51A90Dc999f9bB6A0506Da7F034a1D3A2E/logo.png differ diff --git a/blockchains/smartchain/assets/0x0D6A59cEF44BaC622e91313B366C7F802b2670D6/info.json b/blockchains/smartchain/assets/0x0D6A59cEF44BaC622e91313B366C7F802b2670D6/info.json new file mode 100644 index 00000000..77b082be --- /dev/null +++ b/blockchains/smartchain/assets/0x0D6A59cEF44BaC622e91313B366C7F802b2670D6/info.json @@ -0,0 +1,11 @@ +{ + "name": "GGININDER", + "website": "https://ggininder.space/", + "description": "Glorious Genius IN INcredible holDER", + "explorer": "https://bscscan.com/token/0x0D6A59cEF44BaC622e91313B366C7F802b2670D6", + "symbol": "GGININDER", + "type": "BEP20", + "decimals": 9, + "status": "active", + "id": "0x0D6A59cEF44BaC622e91313B366C7F802b2670D6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0D6A59cEF44BaC622e91313B366C7F802b2670D6/logo.png b/blockchains/smartchain/assets/0x0D6A59cEF44BaC622e91313B366C7F802b2670D6/logo.png new file mode 100644 index 00000000..5f2a2c44 Binary files /dev/null and b/blockchains/smartchain/assets/0x0D6A59cEF44BaC622e91313B366C7F802b2670D6/logo.png differ diff --git a/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/info.json b/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/info.json new file mode 100644 index 00000000..4f076ea8 --- /dev/null +++ b/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/info.json @@ -0,0 +1,12 @@ +{ + "name": "BNB pegged 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", + "research": "https://research.binance.com/en/projects/filecoin", + "type": "BEP20", + "symbol": "FIL", + "decimals": 18, + "status": "active", + "id": "0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/logo.png b/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/logo.png new file mode 100644 index 00000000..a3f86803 Binary files /dev/null and b/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/logo.png differ diff --git a/blockchains/smartchain/assets/0x0DAE81A905b645a3D1E67129b89CD0Acda224E9A/info.json b/blockchains/smartchain/assets/0x0DAE81A905b645a3D1E67129b89CD0Acda224E9A/info.json new file mode 100644 index 00000000..02b47e8c --- /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 00000000..731ceba6 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 00000000..addf0f7b --- /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 00000000..be1b6bf2 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 00000000..74fbffa3 --- /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 00000000..42383760 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 new file mode 100644 index 00000000..d24e7552 --- /dev/null +++ b/blockchains/smartchain/assets/0x0DFCb45EAE071B3b846E220560Bbcdd958414d78/info.json @@ -0,0 +1,45 @@ +{ + "name": "Libero Financial Freedom (LIBERO)", + "website": "https://libero.financial/", + "description": "Libero Finance is transforming DeFi with the Libero Autostaking Protocol (LAP) that delivers the industry’s fixed APY, compounding rewards every 30 minutes, and a simple buy-hold-earn system that grows Investors' portfolio in their wallet fast with fixed interest of 2.02% per day or 158,893.59% a year without having to do anything", + "explorer": "https://bscscan.com/token/0x0DFCb45EAE071B3b846E220560Bbcdd958414d78", + "type": "BEP20", + "symbol": "LIBERO", + "decimals": 18, + "status": "active", + "id": "0x0DFCb45EAE071B3b846E220560Bbcdd958414d78", + "tags": [ + "defi", + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/LiberoFinancial" + }, + { + "name": "telegram", + "url": "https://t.me/liberoofficialgroup" + }, + { + "name": "docs", + "url": "https://docs.libero.financial/" + }, + { + "name": "medium", + "url": "https://liberofinancial.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCkuCIjs-w5EpMlb9WGB4Lug" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/libero-financial/" + }, + { + "name": "github", + "url": "https://github.com/liberofinancial/LiberoFinancial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0DFCb45EAE071B3b846E220560Bbcdd958414d78/logo.png b/blockchains/smartchain/assets/0x0DFCb45EAE071B3b846E220560Bbcdd958414d78/logo.png new file mode 100644 index 00000000..106c6efb Binary files /dev/null and b/blockchains/smartchain/assets/0x0DFCb45EAE071B3b846E220560Bbcdd958414d78/logo.png differ diff --git a/blockchains/smartchain/assets/0x0Da1774e58eD28fF9749340F116055F8d836A7C8/info.json b/blockchains/smartchain/assets/0x0Da1774e58eD28fF9749340F116055F8d836A7C8/info.json new file mode 100644 index 00000000..13cc0207 --- /dev/null +++ b/blockchains/smartchain/assets/0x0Da1774e58eD28fF9749340F116055F8d836A7C8/info.json @@ -0,0 +1,28 @@ +{ + "name": "VANCAT Token", + "website": "https://vancattoken.com/", + "description": "VANCAT Token is the governance token of the VANCAT platform. Users can mint Standard NFTs or Special NFTs with platform and get paid with VANCAT. The platform presents VANCAT Wallet App, VANSwap, gaming awards (play to earn) and its own metaverse.", + "explorer": "https://bscscan.com/token/0x0Da1774e58eD28fF9749340F116055F8d836A7C8", + "type": "BEP20", + "symbol": "VANCAT", + "decimals": 9, + "status": "active", + "id": "0x0Da1774e58eD28fF9749340F116055F8d836A7C8", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/vancattokencommunity" + }, + { + "name": "x", + "url": "https://x.com/vancattoken" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vancat" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0Da1774e58eD28fF9749340F116055F8d836A7C8/logo.png b/blockchains/smartchain/assets/0x0Da1774e58eD28fF9749340F116055F8d836A7C8/logo.png new file mode 100644 index 00000000..569e46e3 Binary files /dev/null and b/blockchains/smartchain/assets/0x0Da1774e58eD28fF9749340F116055F8d836A7C8/logo.png differ diff --git a/blockchains/smartchain/assets/0x0DbCec4214d7E9c316e0eB53991a43F42F432e15/info.json b/blockchains/smartchain/assets/0x0DbCec4214d7E9c316e0eB53991a43F42F432e15/info.json new file mode 100644 index 00000000..3b8ca9aa --- /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 00000000..6c2bae27 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 00000000..a2820f25 --- /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 00000000..585e18c8 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 new file mode 100644 index 00000000..767eecf3 --- /dev/null +++ b/blockchains/smartchain/assets/0x0Df044b7f0aadfEaB21bC134fE525A19484Ac133/info.json @@ -0,0 +1,32 @@ +{ + "name": "UZYTH", + "type": "BEP20", + "symbol": "ZYTH", + "decimals": 18, + "website": "https://www.uzyth.com/", + "description": "Uzyth is developing an ecosystem of services aimed at providing users the possibility of being rewarded ZYTH tokens based on their active participation on the platform.", + "explorer": "https://bscscan.com/token/0x0Df044b7f0aadfEaB21bC134fE525A19484Ac133", + "status": "active", + "id": "0x0Df044b7f0aadfEaB21bC134fE525A19484Ac133", + "links": [ + { + "name": "x", + "url": "https://x.com/UZythOfficial" + }, + { + "name": "github", + "url": "https://github.com/" + }, + { + "name": "facebook", + "url": "https://facebook.com/UzythOfficial-110102891513219" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uzyth/" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0Df044b7f0aadfEaB21bC134fE525A19484Ac133/logo.png b/blockchains/smartchain/assets/0x0Df044b7f0aadfEaB21bC134fE525A19484Ac133/logo.png new file mode 100644 index 00000000..55320763 Binary files /dev/null and b/blockchains/smartchain/assets/0x0Df044b7f0aadfEaB21bC134fE525A19484Ac133/logo.png differ diff --git a/blockchains/smartchain/assets/0x0E0714264f15cE00BD4682847595384d42fBcD84/info.json b/blockchains/smartchain/assets/0x0E0714264f15cE00BD4682847595384d42fBcD84/info.json new file mode 100644 index 00000000..4393681e --- /dev/null +++ b/blockchains/smartchain/assets/0x0E0714264f15cE00BD4682847595384d42fBcD84/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoonBull", + "website": "https://www.moonbull.net/", + "description": "MoonBull's primary aim is to become the greatest meme coin of all time. We aim to grow with our great community and our big-name celebrity ambassadors. We're primed and ready to create great contests and competitions for our holders.", + "explorer": "https://bscscan.com/token/0x0e0714264f15ce00bd4682847595384d42fbcd84", + "type": "BEP20", + "symbol": "MBULL", + "decimals": 9, + "status": "active", + "id": "0x0E0714264f15cE00BD4682847595384d42fBcD84" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E0714264f15cE00BD4682847595384d42fBcD84/logo.png b/blockchains/smartchain/assets/0x0E0714264f15cE00BD4682847595384d42fBcD84/logo.png new file mode 100644 index 00000000..95e30a45 Binary files /dev/null and b/blockchains/smartchain/assets/0x0E0714264f15cE00BD4682847595384d42fBcD84/logo.png differ diff --git a/blockchains/smartchain/assets/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82/info.json b/blockchains/smartchain/assets/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82/info.json new file mode 100644 index 00000000..d0021f45 --- /dev/null +++ b/blockchains/smartchain/assets/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82/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://bscscan.com/token/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82", + "research": "https://research.binance.com/en/projects/pancakeswap", + "type": "BEP20", + "symbol": "CAKE", + "decimals": 18, + "status": "active", + "id": "0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82", + "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/smartchain/assets/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82/logo.png b/blockchains/smartchain/assets/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82/logo.png new file mode 100644 index 00000000..685fbc42 Binary files /dev/null and b/blockchains/smartchain/assets/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82/logo.png differ diff --git a/blockchains/smartchain/assets/0x0E246E05212DbBD78A354C072a92B4e5723B2fa0/info.json b/blockchains/smartchain/assets/0x0E246E05212DbBD78A354C072a92B4e5723B2fa0/info.json new file mode 100644 index 00000000..90fec04e --- /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 00000000..461b4eb9 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 new file mode 100644 index 00000000..43493093 --- /dev/null +++ b/blockchains/smartchain/assets/0x0E2b41eA957624A314108cc4E33703e9d78f4b3C/info.json @@ -0,0 +1,29 @@ +{ + "name": "Greenheart CBD Token", + "website": "https://greenheartcbd.io/", + "description": "Greenheart CBD Token - A Cryptocurrency for Hemp Farmers.", + "explorer": "https://bscscan.com/token/0x0E2b41eA957624A314108cc4E33703e9d78f4b3C", + "type": "BEP20", + "symbol": "CBD", + "decimals": 18, + "status": "active", + "id": "0x0E2b41eA957624A314108cc4E33703e9d78f4b3C", + "links": [ + { + "name": "github", + "url": "https://github.com/greenheartcbd/Greenheart-CBD-Project" + }, + { + "name": "x", + "url": "https://x.com/greenheart_cbd" + }, + { + "name": "telegram", + "url": "https://t.me/greenheart_cbd" + }, + { + "name": "medium", + "url": "https://greenheartcbd.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E2b41eA957624A314108cc4E33703e9d78f4b3C/logo.png b/blockchains/smartchain/assets/0x0E2b41eA957624A314108cc4E33703e9d78f4b3C/logo.png new file mode 100644 index 00000000..3eb2577a Binary files /dev/null and b/blockchains/smartchain/assets/0x0E2b41eA957624A314108cc4E33703e9d78f4b3C/logo.png differ diff --git a/blockchains/smartchain/assets/0x0E3EAF83Ea93Abe756690C62c72284943b96a6Bc/info.json b/blockchains/smartchain/assets/0x0E3EAF83Ea93Abe756690C62c72284943b96a6Bc/info.json new file mode 100644 index 00000000..fa0c3f7f --- /dev/null +++ b/blockchains/smartchain/assets/0x0E3EAF83Ea93Abe756690C62c72284943b96a6Bc/info.json @@ -0,0 +1,71 @@ +{ + "name": "HODL Token", + "website": "https://hodltoken.net/", + "description": "HODL is a community driven DeFi project built on Binance Smart Chain(BSC). HODL brings the most revolutionary mechanism to BSC ecosystem: Earn $BNB by simply holding $HODL token", + "explorer": "https://bscscan.com/token/0x0e3eaf83ea93abe756690c62c72284943b96a6bc", + "type": "BEP20", + "symbol": "HODL", + "decimals": 9, + "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/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json b/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json new file mode 100644 index 00000000..0d35200f --- /dev/null +++ b/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json @@ -0,0 +1,11 @@ +{ + "name": "RYOSHI TOKEN", + "type": "BEP20", + "symbol": "RYOSHI", + "decimals": 9, + "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": "abandoned", + "id": "0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E65834a4092B10EcE3C9290b256F0Df83F71C6c/info.json b/blockchains/smartchain/assets/0x0E65834a4092B10EcE3C9290b256F0Df83F71C6c/info.json new file mode 100644 index 00000000..959af768 --- /dev/null +++ b/blockchains/smartchain/assets/0x0E65834a4092B10EcE3C9290b256F0Df83F71C6c/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoonBitcoin", + "website": "https://mbitcoin.cc/", + "description": "mBitcoin - Yield farm Bitcoin on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x0E65834a4092B10EcE3C9290b256F0Df83F71C6c", + "type": "BEP20", + "symbol": "mBTC", + "decimals": 0, + "status": "active", + "id": "0x0E65834a4092B10EcE3C9290b256F0Df83F71C6c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E65834a4092B10EcE3C9290b256F0Df83F71C6c/logo.png b/blockchains/smartchain/assets/0x0E65834a4092B10EcE3C9290b256F0Df83F71C6c/logo.png new file mode 100644 index 00000000..e391a2ed Binary files /dev/null and b/blockchains/smartchain/assets/0x0E65834a4092B10EcE3C9290b256F0Df83F71C6c/logo.png differ diff --git a/blockchains/smartchain/assets/0x0E6607Ab45D2CA779068Cd6D9426C409773969FD/info.json b/blockchains/smartchain/assets/0x0E6607Ab45D2CA779068Cd6D9426C409773969FD/info.json new file mode 100644 index 00000000..81f80145 --- /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 00000000..f6d652ee Binary files /dev/null and b/blockchains/smartchain/assets/0x0E6607Ab45D2CA779068Cd6D9426C409773969FD/logo.png differ diff --git a/blockchains/smartchain/assets/0x0E690ee6fCC26Bc09FeD2D2287268C23d4a81e42/info.json b/blockchains/smartchain/assets/0x0E690ee6fCC26Bc09FeD2D2287268C23d4a81e42/info.json new file mode 100644 index 00000000..3f1367cf --- /dev/null +++ b/blockchains/smartchain/assets/0x0E690ee6fCC26Bc09FeD2D2287268C23d4a81e42/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shield Network", + "type": "BEP20", + "symbol": "SHILD", + "decimals": 18, + "website": "https://www.shieldnetwork.io/", + "description": "Shield Network, a token audit platform where every token is thoroughly audited to ensure safety and avoid scams.", + "explorer": "https://bscscan.com/token/0x0E690ee6fCC26Bc09FeD2D2287268C23d4a81e42", + "status": "active", + "id": "0x0E690ee6fCC26Bc09FeD2D2287268C23d4a81e42" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E690ee6fCC26Bc09FeD2D2287268C23d4a81e42/logo.png b/blockchains/smartchain/assets/0x0E690ee6fCC26Bc09FeD2D2287268C23d4a81e42/logo.png new file mode 100644 index 00000000..633a61fb Binary files /dev/null and b/blockchains/smartchain/assets/0x0E690ee6fCC26Bc09FeD2D2287268C23d4a81e42/logo.png differ diff --git a/blockchains/smartchain/assets/0x0E7BeEc376099429b85639Eb3abE7cF22694ed49/info.json b/blockchains/smartchain/assets/0x0E7BeEc376099429b85639Eb3abE7cF22694ed49/info.json new file mode 100644 index 00000000..241b8394 --- /dev/null +++ b/blockchains/smartchain/assets/0x0E7BeEc376099429b85639Eb3abE7cF22694ed49/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bunicorn Token", + "type": "BEP20", + "symbol": "BUNI", + "decimals": 18, + "website": "https://bunicorn.finance", + "description": "Bunicorn DEX - Revolutionize yield farming by leveraging NFT gamification", + "explorer": "https://bscscan.com/token/0x0e7beec376099429b85639eb3abe7cf22694ed49", + "status": "active", + "id": "0x0E7BeEc376099429b85639Eb3abE7cF22694ed49" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E7BeEc376099429b85639Eb3abE7cF22694ed49/logo.png b/blockchains/smartchain/assets/0x0E7BeEc376099429b85639Eb3abE7cF22694ed49/logo.png new file mode 100644 index 00000000..069f4ad7 Binary files /dev/null and b/blockchains/smartchain/assets/0x0E7BeEc376099429b85639Eb3abE7cF22694ed49/logo.png differ diff --git a/blockchains/smartchain/assets/0x0E7ceB85cAAEf8dAb9d2749BD9A68c0C4A022c62/info.json b/blockchains/smartchain/assets/0x0E7ceB85cAAEf8dAb9d2749BD9A68c0C4A022c62/info.json new file mode 100644 index 00000000..d1b833cb --- /dev/null +++ b/blockchains/smartchain/assets/0x0E7ceB85cAAEf8dAb9d2749BD9A68c0C4A022c62/info.json @@ -0,0 +1,25 @@ +{ + "name": "KORBIT COIN", + "type": "BEP20", + "symbol": "KBIT", + "decimals": 18, + "website": "https://korbitcoin.com", + "description": "KORBIT COIN is a multi blockchain wallet", + "explorer": "https://bscscan.com/token/0x0E7ceB85cAAEf8dAb9d2749BD9A68c0C4A022c62", + "status": "active", + "id": "0x0E7ceB85cAAEf8dAb9d2749BD9A68c0C4A022c62", + "links": [ + { + "name": "whitepaper", + "url": "https://korbitcoin.com" + }, + { + "name": "telegram", + "url": "https://t.me/korbitcoinofficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/korbitcoinofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E7ceB85cAAEf8dAb9d2749BD9A68c0C4A022c62/logo.png b/blockchains/smartchain/assets/0x0E7ceB85cAAEf8dAb9d2749BD9A68c0C4A022c62/logo.png new file mode 100644 index 00000000..a821d621 Binary files /dev/null and b/blockchains/smartchain/assets/0x0E7ceB85cAAEf8dAb9d2749BD9A68c0C4A022c62/logo.png differ diff --git a/blockchains/smartchain/assets/0x0E8D5504bF54D9E44260f8d153EcD5412130CaBb/info.json b/blockchains/smartchain/assets/0x0E8D5504bF54D9E44260f8d153EcD5412130CaBb/info.json new file mode 100644 index 00000000..c47deb9b --- /dev/null +++ b/blockchains/smartchain/assets/0x0E8D5504bF54D9E44260f8d153EcD5412130CaBb/info.json @@ -0,0 +1,37 @@ +{ + "name": "UNCL", + "website": "https://unicrypt.network", + "description": "UNCL is the liquidity rewards token of the UniCrypt Farming platform.", + "explorer": "https://bscscan.com/token/0x0e8d5504bf54d9e44260f8d153ecd5412130cabb", + "type": "BEP20", + "symbol": "UNCL", + "decimals": 18, + "status": "active", + "id": "0x0E8D5504bF54D9E44260f8d153EcD5412130CaBb", + "links": [ + { + "name": "x", + "url": "https://x.com/UNCX_token" + }, + { + "name": "medium", + "url": "https://unicrypt.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/uncx_token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uncl/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uncl" + }, + { + "name": "docs", + "url": "https://docs.unicrypt.network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E8D5504bF54D9E44260f8d153EcD5412130CaBb/logo.png b/blockchains/smartchain/assets/0x0E8D5504bF54D9E44260f8d153EcD5412130CaBb/logo.png new file mode 100644 index 00000000..4fed8801 Binary files /dev/null and b/blockchains/smartchain/assets/0x0E8D5504bF54D9E44260f8d153EcD5412130CaBb/logo.png differ diff --git a/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/info.json b/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/info.json new file mode 100644 index 00000000..9973599a --- /dev/null +++ b/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/info.json @@ -0,0 +1,75 @@ +{ + "name": "HODL", + "type": "BEP20", + "symbol": "HODL", + "decimals": 9, + "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": "abandoned", + "id": "0x0E9766dF73973abCfEDDE700497c57110ee5c301", + "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": "source_code", + "url": "https://bscscan.com/address/0xb656129b6a3e2ca66f2788e4071aca5cb9f83f81#code" + }, + { + "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/0x0E9d900C884964dC4B26db96Ba113825B1a09Baa/info.json b/blockchains/smartchain/assets/0x0E9d900C884964dC4B26db96Ba113825B1a09Baa/info.json new file mode 100644 index 00000000..b010927d --- /dev/null +++ b/blockchains/smartchain/assets/0x0E9d900C884964dC4B26db96Ba113825B1a09Baa/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream Cosmos Token", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x0E9d900C884964dC4B26db96Ba113825B1a09Baa", + "type": "BEP20", + "symbol": "crATOM", + "decimals": 8, + "status": "active", + "id": "0x0E9d900C884964dC4B26db96Ba113825B1a09Baa", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E9d900C884964dC4B26db96Ba113825B1a09Baa/logo.png b/blockchains/smartchain/assets/0x0E9d900C884964dC4B26db96Ba113825B1a09Baa/logo.png new file mode 100644 index 00000000..95b736e3 Binary files /dev/null and b/blockchains/smartchain/assets/0x0E9d900C884964dC4B26db96Ba113825B1a09Baa/logo.png differ diff --git a/blockchains/smartchain/assets/0x0EA526b4799541797D8b880b48Cc65d71d1e273B/info.json b/blockchains/smartchain/assets/0x0EA526b4799541797D8b880b48Cc65d71d1e273B/info.json new file mode 100644 index 00000000..c2fcdd0c --- /dev/null +++ b/blockchains/smartchain/assets/0x0EA526b4799541797D8b880b48Cc65d71d1e273B/info.json @@ -0,0 +1,32 @@ +{ + "name": "Shiba Games", + "type": "BEP20", + "symbol": "SHIBAGAMES ", + "decimals": 9, + "website": "https://shibagames.net", + "description": "Step into the future. Shiba Games will enter the Metaverse with 3 meta gaming projects ShibaLand, ShibaHunt and ShibaRun.", + "explorer": "https://bscscan.com/token/0x0EA526b4799541797D8b880b48Cc65d71d1e273B", + "status": "active", + "id": "0x0EA526b4799541797D8b880b48Cc65d71d1e273B", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-games/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shiba-games" + }, + { + "name": "telegram", + "url": "https://t.me/shiba_games" + }, + { + "name": "x", + "url": "https://x.com/shibagames_" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0EA526b4799541797D8b880b48Cc65d71d1e273B/logo.png b/blockchains/smartchain/assets/0x0EA526b4799541797D8b880b48Cc65d71d1e273B/logo.png new file mode 100644 index 00000000..871fd465 Binary files /dev/null and b/blockchains/smartchain/assets/0x0EA526b4799541797D8b880b48Cc65d71d1e273B/logo.png differ diff --git a/blockchains/smartchain/assets/0x0EAda137F528F1a1B8304CD8Cbbe0F7184317777/info.json b/blockchains/smartchain/assets/0x0EAda137F528F1a1B8304CD8Cbbe0F7184317777/info.json new file mode 100644 index 00000000..525d50b1 --- /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 new file mode 100644 index 00000000..d98ec00d --- /dev/null +++ b/blockchains/smartchain/assets/0x0EBc30459551858e81306d583025d12C7d795FA2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Amazing Doge", + "type": "BEP20", + "symbol": "Adoge", + "decimals": 9, + "description": "AmazingDoge token is a part of dogecoin family", + "website": "https://www.amazingdogebsc.com", + "explorer": "https://bscscan.com/token/0x0EBc30459551858e81306d583025d12C7d795FA2", + "status": "active", + "id": "0x0EBc30459551858e81306d583025d12C7d795FA2", + "links": [ + { + "name": "x", + "url": "https://x.com/apecoin" + }, + { + "name": "whitepaper", + "url": "https://amazingdogebsc.com/#whitepaper" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0EBc30459551858e81306d583025d12C7d795FA2/logo.png b/blockchains/smartchain/assets/0x0EBc30459551858e81306d583025d12C7d795FA2/logo.png new file mode 100644 index 00000000..3fda98c2 Binary files /dev/null and b/blockchains/smartchain/assets/0x0EBc30459551858e81306d583025d12C7d795FA2/logo.png differ diff --git a/blockchains/smartchain/assets/0x0ED2E3180EDf393e6bf8Db124bD15DDD54dE150A/info.json b/blockchains/smartchain/assets/0x0ED2E3180EDf393e6bf8Db124bD15DDD54dE150A/info.json new file mode 100644 index 00000000..e560e087 --- /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 00000000..315e409e 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 new file mode 100644 index 00000000..a9b90d70 --- /dev/null +++ b/blockchains/smartchain/assets/0x0EF008FF963572d3DAbc12E222420F537ddaBf94/info.json @@ -0,0 +1,25 @@ +{ + "name": "Vero Farm", + "type": "BEP20", + "symbol": "VERO", + "decimals": 6, + "website": "https://verofarm.com/", + "description": "Vero Farm- Let's Explorer Magical Farm. Vero Farm is a farm game built to keep players of all ages entertained and rewarded with VERO tokens.", + "explorer": "https://bscscan.com/token/0x0EF008FF963572d3DAbc12E222420F537ddaBf94", + "status": "active", + "id": "0x0EF008FF963572d3DAbc12E222420F537ddaBf94", + "links": [ + { + "name": "github", + "url": "https://github.com/verofarm/" + }, + { + "name": "x", + "url": "https://x.com/verofarmgames/" + }, + { + "name": "telegram", + "url": "https://t.me/verofarm" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0EF008FF963572d3DAbc12E222420F537ddaBf94/logo.png b/blockchains/smartchain/assets/0x0EF008FF963572d3DAbc12E222420F537ddaBf94/logo.png new file mode 100644 index 00000000..1c667eb2 Binary files /dev/null and b/blockchains/smartchain/assets/0x0EF008FF963572d3DAbc12E222420F537ddaBf94/logo.png differ diff --git a/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/info.json b/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/info.json new file mode 100644 index 00000000..b1f70131 --- /dev/null +++ b/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/info.json @@ -0,0 +1,15 @@ +{ + "name": "BNB pegged Cosmos Token", + "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", + "research": "https://research.binance.com/en/projects/cosmos-network", + "type": "BEP20", + "symbol": "ATOM", + "decimals": 18, + "status": "active", + "id": "0x0Eb3a705fc54725037CC9e008bDede697f62F335", + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/logo.png b/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/logo.png new file mode 100644 index 00000000..8d272457 Binary files /dev/null and b/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/logo.png differ diff --git a/blockchains/smartchain/assets/0x0Ef2e7602adD1733Bfdb17aC3094d0421B502cA3/info.json b/blockchains/smartchain/assets/0x0Ef2e7602adD1733Bfdb17aC3094d0421B502cA3/info.json new file mode 100644 index 00000000..1d1a7f33 --- /dev/null +++ b/blockchains/smartchain/assets/0x0Ef2e7602adD1733Bfdb17aC3094d0421B502cA3/info.json @@ -0,0 +1,32 @@ +{ + "name": "BNB pegget eCash", + "type": "BEP20", + "symbol": "XEC", + "decimals": 18, + "website": "https://e.cash/", + "description": "eCash is the natural continuation of the Bitcoin Cash project. eCash follows through on key promises such as the innovative Avalanche consensus layer while also introducing concepts such as staking, fork-free network upgrades, and subchains.", + "explorer": "https://bscscan.com/token/0x0ef2e7602add1733bfdb17ac3094d0421b502ca3", + "status": "active", + "id": "0x0Ef2e7602adD1733Bfdb17aC3094d0421B502cA3", + "links": [ + { + "name": "x", + "url": "https://x.com/ecashofficial" + }, + { + "name": "telegram", + "url": "https://t.me/ecash_official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ecash/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ecash/" + } + ], + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0Ef2e7602adD1733Bfdb17aC3094d0421B502cA3/logo.png b/blockchains/smartchain/assets/0x0Ef2e7602adD1733Bfdb17aC3094d0421B502cA3/logo.png new file mode 100644 index 00000000..a93ce021 Binary files /dev/null and b/blockchains/smartchain/assets/0x0Ef2e7602adD1733Bfdb17aC3094d0421B502cA3/logo.png differ diff --git a/blockchains/smartchain/assets/0x0F1cBEd8EFa0E012AdbCCB1638D0aB0147D5Ac00/info.json b/blockchains/smartchain/assets/0x0F1cBEd8EFa0E012AdbCCB1638D0aB0147D5Ac00/info.json new file mode 100644 index 00000000..eacff370 --- /dev/null +++ b/blockchains/smartchain/assets/0x0F1cBEd8EFa0E012AdbCCB1638D0aB0147D5Ac00/info.json @@ -0,0 +1,52 @@ +{ + "name": "HELLO", + "type": "BEP20", + "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://bscscan.com/token/0x0F1cBEd8EFa0E012AdbCCB1638D0aB0147D5Ac00", + "status": "active", + "id": "0x0F1cBEd8EFa0E012AdbCCB1638D0aB0147D5Ac00", + "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/smartchain/assets/0x0F1cBEd8EFa0E012AdbCCB1638D0aB0147D5Ac00/logo.png b/blockchains/smartchain/assets/0x0F1cBEd8EFa0E012AdbCCB1638D0aB0147D5Ac00/logo.png new file mode 100644 index 00000000..98103f7f Binary files /dev/null and b/blockchains/smartchain/assets/0x0F1cBEd8EFa0E012AdbCCB1638D0aB0147D5Ac00/logo.png differ diff --git a/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/info.json b/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/info.json new file mode 100644 index 00000000..a5d7ba26 --- /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 00000000..2df3d0f8 Binary files /dev/null and b/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/logo.png differ diff --git a/blockchains/smartchain/assets/0x0FC013E24AE732fcEc9Eb6BF8CAE12782a56bE7E/info.json b/blockchains/smartchain/assets/0x0FC013E24AE732fcEc9Eb6BF8CAE12782a56bE7E/info.json new file mode 100644 index 00000000..6e52eb76 --- /dev/null +++ b/blockchains/smartchain/assets/0x0FC013E24AE732fcEc9Eb6BF8CAE12782a56bE7E/info.json @@ -0,0 +1,11 @@ +{ + "name": "LlamaSwap Token", + "website": "https://llamaswap.finance/", + "description": "Where the coolest llamas go yield farming, on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x0FC013E24AE732fcEc9Eb6BF8CAE12782a56bE7E", + "type": "BEP20", + "symbol": "LAMA", + "decimals": 18, + "status": "active", + "id": "0x0FC013E24AE732fcEc9Eb6BF8CAE12782a56bE7E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0FC013E24AE732fcEc9Eb6BF8CAE12782a56bE7E/logo.png b/blockchains/smartchain/assets/0x0FC013E24AE732fcEc9Eb6BF8CAE12782a56bE7E/logo.png new file mode 100644 index 00000000..9c0df8fa Binary files /dev/null and b/blockchains/smartchain/assets/0x0FC013E24AE732fcEc9Eb6BF8CAE12782a56bE7E/logo.png differ diff --git a/blockchains/smartchain/assets/0x0FD98b8C58560167A236f1D0553A9c2a42342ccf/info.json b/blockchains/smartchain/assets/0x0FD98b8C58560167A236f1D0553A9c2a42342ccf/info.json new file mode 100644 index 00000000..e487e723 --- /dev/null +++ b/blockchains/smartchain/assets/0x0FD98b8C58560167A236f1D0553A9c2a42342ccf/info.json @@ -0,0 +1,29 @@ +{ + "name": "DeVolution", + "type": "BEP20", + "symbol": "DEVO", + "decimals": 18, + "website": "https://www.devolution-world.com", + "description": "Devolution is an NFT based game. You can collect, earn, win and trade your NFTs while playing and socializing with your friends.", + "explorer": "https://bscscan.com/token/0x0FD98b8C58560167A236f1D0553A9c2a42342ccf", + "status": "active", + "id": "0x0FD98b8C58560167A236f1D0553A9c2a42342ccf", + "links": [ + { + "name": "x", + "url": "https://x.com/Game_Devolution" + }, + { + "name": "telegram", + "url": "https://t.me/devolutionofficial" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/devolution" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/devolution/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0FD98b8C58560167A236f1D0553A9c2a42342ccf/logo.png b/blockchains/smartchain/assets/0x0FD98b8C58560167A236f1D0553A9c2a42342ccf/logo.png new file mode 100644 index 00000000..88f1a2f4 Binary files /dev/null and b/blockchains/smartchain/assets/0x0FD98b8C58560167A236f1D0553A9c2a42342ccf/logo.png differ diff --git a/blockchains/smartchain/assets/0x0Fe3e956D2034BCEF01FbA8A2BfCA389cdb72699/info.json b/blockchains/smartchain/assets/0x0Fe3e956D2034BCEF01FbA8A2BfCA389cdb72699/info.json new file mode 100644 index 00000000..7cb2cd8f --- /dev/null +++ b/blockchains/smartchain/assets/0x0Fe3e956D2034BCEF01FbA8A2BfCA389cdb72699/info.json @@ -0,0 +1,11 @@ +{ + "name": "Securabyte", + "type": "BEP20", + "symbol": "SBYTE", + "decimals": 9, + "website": "https://securabyte.io/", + "description": "Please update logo and info", + "explorer": "https://bscscan.com/token/0x0Fe3e956D2034BCEF01FbA8A2BfCA389cdb72699", + "status": "active", + "id": "0x0Fe3e956D2034BCEF01FbA8A2BfCA389cdb72699" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0Fe3e956D2034BCEF01FbA8A2BfCA389cdb72699/logo.png b/blockchains/smartchain/assets/0x0Fe3e956D2034BCEF01FbA8A2BfCA389cdb72699/logo.png new file mode 100644 index 00000000..5ae28da8 Binary files /dev/null and b/blockchains/smartchain/assets/0x0Fe3e956D2034BCEF01FbA8A2BfCA389cdb72699/logo.png differ diff --git a/blockchains/smartchain/assets/0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5/info.json b/blockchains/smartchain/assets/0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5/info.json new file mode 100644 index 00000000..75ed5c42 --- /dev/null +++ b/blockchains/smartchain/assets/0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5/info.json @@ -0,0 +1,28 @@ +{ + "name": "RFOX", + "type": "BEP20", + "symbol": "RFOX", + "decimals": 18, + "website": "https://redfoxlabs.io/", + "description": "RedFOX Labs is a tech-forward venture builder delivering companies & platforms that are secure, scalable, and innovative, bringing the world into a new era of technology and prosperity.", + "explorer": "https://bscscan.com/token/0x0a3a21356793b49154fd3bbe91cbc2a16c0457f5", + "status": "active", + "id": "0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5", + "links": [ + { + "name": "x", + "url": "https://x.com/redfoxlabs_io" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/redfox-labs-2/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/redfox-labs/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5/logo.png b/blockchains/smartchain/assets/0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5/logo.png new file mode 100644 index 00000000..f0ed6051 Binary files /dev/null and b/blockchains/smartchain/assets/0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5/logo.png differ diff --git a/blockchains/smartchain/assets/0x0a4D0889BB5E11F662AAE1cf4Eb8b6717a66497f/info.json b/blockchains/smartchain/assets/0x0a4D0889BB5E11F662AAE1cf4Eb8b6717a66497f/info.json new file mode 100644 index 00000000..f37c40f5 --- /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 00000000..403c8b49 --- /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 00000000..1fa9a927 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 00000000..6d152b0e --- /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 new file mode 100644 index 00000000..29e991c6 --- /dev/null +++ b/blockchains/smartchain/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json @@ -0,0 +1,33 @@ +{ + "name": "Impossible Finance", + "website": "https://invest.impossible.finance/launchpad", + "description": "Impossible Finance is a builder-focused multichain ecosystem featuring decentralized incubator, launchpad, and swap. The IDIA token is the core governance and access token for allocation into our launchpad sales. Users can stake the IDIA token into a variety of sectors and categories to secure allocation into the top project teams launching on Impossible.", + "explorer": "https://bscscan.com/token/0x0b15ddf19d47e6a86a56148fb4afffc6929bcb89", + "type": "BEP20", + "symbol": "IDIA", + "decimals": 18, + "status": "active", + "id": "0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89", + "links": [ + { + "name": "github", + "url": "https://github.com/impossiblefinance" + }, + { + "name": "x", + "url": "https://x.com/impossiblefi" + }, + { + "name": "blog", + "url": "https://medium.com/impossiblefinance" + }, + { + "name": "telegram", + "url": "https://t.me/ImpossibleFinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/impossible-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/logo.png b/blockchains/smartchain/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/logo.png new file mode 100644 index 00000000..472303c8 Binary files /dev/null and b/blockchains/smartchain/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/logo.png differ diff --git a/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/info.json b/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/info.json new file mode 100644 index 00000000..6ba25421 --- /dev/null +++ b/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/info.json @@ -0,0 +1,25 @@ +{ + "name": "Ethereum Meta", + "website": "https://ethermeta.com/", + "description": "If Ethereum is like http then Ethereum Meta is https — a secure transport layer", + "explorer": "https://bscscan.com/token/0x0b33542240d6fA323c796749F6D6869fdB7F13cA", + "type": "BEP20", + "symbol": "ETHM", + "decimals": 18, + "status": "abandoned", + "id": "0x0b33542240d6fA323c796749F6D6869fdB7F13cA", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ethereummeta" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ethereum-meta/" + }, + { + "name": "x", + "url": "https://x.com/EthereumMeta" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0b34D4A7C5BFc7004b9a193F8309523E99ca766e/info.json b/blockchains/smartchain/assets/0x0b34D4A7C5BFc7004b9a193F8309523E99ca766e/info.json new file mode 100644 index 00000000..4331aefb --- /dev/null +++ b/blockchains/smartchain/assets/0x0b34D4A7C5BFc7004b9a193F8309523E99ca766e/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShonToken", + "type": "BEP20", + "symbol": "SHON", + "decimals": 18, + "website": "https://shontoken.com", + "description": "Shon token is the latest crypto-currency architecture that can be transacted through the Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x0b34d4a7c5bfc7004b9a193f8309523e99ca766e", + "status": "active", + "id": "0x0b34D4A7C5BFc7004b9a193F8309523E99ca766e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0b34D4A7C5BFc7004b9a193F8309523E99ca766e/logo.png b/blockchains/smartchain/assets/0x0b34D4A7C5BFc7004b9a193F8309523E99ca766e/logo.png new file mode 100644 index 00000000..319a646f Binary files /dev/null and b/blockchains/smartchain/assets/0x0b34D4A7C5BFc7004b9a193F8309523E99ca766e/logo.png differ diff --git a/blockchains/smartchain/assets/0x0b3f42481C228F70756DbFA0309d3ddC2a5e0F6a/info.json b/blockchains/smartchain/assets/0x0b3f42481C228F70756DbFA0309d3ddC2a5e0F6a/info.json new file mode 100644 index 00000000..82dde181 --- /dev/null +++ b/blockchains/smartchain/assets/0x0b3f42481C228F70756DbFA0309d3ddC2a5e0F6a/info.json @@ -0,0 +1,11 @@ +{ + "name": "UltraSafe", + "type": "BEP20", + "symbol": "ULTRA", + "decimals": 9, + "website": "https://ultrasafe.finance/", + "description": "From piggy banks to interplanetary vaults, tear through progressive security-related milestones and join the newest community-driven frictionless yield protocol on the Binance Smart Chain. Buy and hold UltraSafe to reap the rewards of its unique yield protocol, earning passive income and enjoying price appreciation as the community-driven token achieves dynamic milestones!", + "explorer": "https://bscscan.com/token/0x0b3f42481C228F70756DbFA0309d3ddC2a5e0F6a", + "status": "active", + "id": "0x0b3f42481C228F70756DbFA0309d3ddC2a5e0F6a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0b3f42481C228F70756DbFA0309d3ddC2a5e0F6a/logo.png b/blockchains/smartchain/assets/0x0b3f42481C228F70756DbFA0309d3ddC2a5e0F6a/logo.png new file mode 100644 index 00000000..89ecb236 Binary files /dev/null and b/blockchains/smartchain/assets/0x0b3f42481C228F70756DbFA0309d3ddC2a5e0F6a/logo.png differ diff --git a/blockchains/smartchain/assets/0x0b4922132ec425806Fd8AEE94b5788F9B70D60ca/info.json b/blockchains/smartchain/assets/0x0b4922132ec425806Fd8AEE94b5788F9B70D60ca/info.json new file mode 100644 index 00000000..66d14d70 --- /dev/null +++ b/blockchains/smartchain/assets/0x0b4922132ec425806Fd8AEE94b5788F9B70D60ca/info.json @@ -0,0 +1,11 @@ +{ + "name": "HyperDeflate", + "website": "https://www.hyperdeflate.com", + "description": "HDFL is the fastest burning token on the BSC.", + "explorer": "https://bscscan.com/token/0x0b4922132ec425806Fd8AEE94b5788F9B70D60ca", + "type": "BEP20", + "symbol": "HDFL", + "decimals": 18, + "status": "active", + "id": "0x0b4922132ec425806Fd8AEE94b5788F9B70D60ca" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0b4922132ec425806Fd8AEE94b5788F9B70D60ca/logo.png b/blockchains/smartchain/assets/0x0b4922132ec425806Fd8AEE94b5788F9B70D60ca/logo.png new file mode 100644 index 00000000..c2f3b9da Binary files /dev/null and b/blockchains/smartchain/assets/0x0b4922132ec425806Fd8AEE94b5788F9B70D60ca/logo.png differ diff --git a/blockchains/smartchain/assets/0x0b771E34526886d9ffF8E764cF557d1Cb5943C89/info.json b/blockchains/smartchain/assets/0x0b771E34526886d9ffF8E764cF557d1Cb5943C89/info.json new file mode 100644 index 00000000..9d7162ca --- /dev/null +++ b/blockchains/smartchain/assets/0x0b771E34526886d9ffF8E764cF557d1Cb5943C89/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped Compound", + "website": "https://wcomp.org", + "description": "Wcomp is an algorithmic, autonomous interest rate protocol built for developers, to unlock a universe of open financial applications.", + "explorer": "https://bscscan.com/token/0x0b771E34526886d9ffF8E764cF557d1Cb5943C89", + "type": "BEP20", + "symbol": "Wcomp", + "decimals": 8, + "status": "active", + "id": "0x0b771E34526886d9ffF8E764cF557d1Cb5943C89" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0b771E34526886d9ffF8E764cF557d1Cb5943C89/logo.png b/blockchains/smartchain/assets/0x0b771E34526886d9ffF8E764cF557d1Cb5943C89/logo.png new file mode 100644 index 00000000..43ac084d Binary files /dev/null and b/blockchains/smartchain/assets/0x0b771E34526886d9ffF8E764cF557d1Cb5943C89/logo.png differ diff --git a/blockchains/smartchain/assets/0x0bCF5693655A159bd7D9DC5064de9BD692a7b7C6/info.json b/blockchains/smartchain/assets/0x0bCF5693655A159bd7D9DC5064de9BD692a7b7C6/info.json new file mode 100644 index 00000000..7306cecd --- /dev/null +++ b/blockchains/smartchain/assets/0x0bCF5693655A159bd7D9DC5064de9BD692a7b7C6/info.json @@ -0,0 +1,32 @@ +{ + "name": "BIGH BULL", + "type": "BEP20", + "symbol": "BIGB", + "decimals": 18, + "website": "https://bighbull.com/", + "description": "Replace with old Contract 0x64B55Bb2F27c3710349d9cA024d0D1Ff2DAB7f62, Reason (Compromise Private Key)", + "explorer": "https://bscscan.com/token/0x0bCF5693655A159bd7D9DC5064de9BD692a7b7C6", + "status": "active", + "id": "0x0bCF5693655A159bd7D9DC5064de9BD692a7b7C6", + "links": [ + { + "name": "x", + "url": "https://x.com/BIGHBULL1" + }, + { + "name": "facebook", + "url": "https://facebook.com/bighbullofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCt_MNyjP4Q0ZbuWUpGHWweA" + }, + { + "name": "github", + "url": "https://github.com/BighBullTech" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0bCF5693655A159bd7D9DC5064de9BD692a7b7C6/logo.png b/blockchains/smartchain/assets/0x0bCF5693655A159bd7D9DC5064de9BD692a7b7C6/logo.png new file mode 100644 index 00000000..317ce4f3 Binary files /dev/null and b/blockchains/smartchain/assets/0x0bCF5693655A159bd7D9DC5064de9BD692a7b7C6/logo.png differ diff --git a/blockchains/smartchain/assets/0x0bc89aa98Ad94E6798Ec822d0814d934cCD0c0cE/info.json b/blockchains/smartchain/assets/0x0bc89aa98Ad94E6798Ec822d0814d934cCD0c0cE/info.json new file mode 100644 index 00000000..01b399c1 --- /dev/null +++ b/blockchains/smartchain/assets/0x0bc89aa98Ad94E6798Ec822d0814d934cCD0c0cE/info.json @@ -0,0 +1,33 @@ +{ + "name": "Battle Hero", + "type": "BEP20", + "symbol": "BATH", + "decimals": 18, + "website": "https://battlehero.io/", + "description": "BATH is the token that drives the Battle Hero economy, with it you can buy chests, use the marketplace, upgrade rarities and many other things.", + "explorer": "https://bscscan.com/token/0x0bc89aa98Ad94E6798Ec822d0814d934cCD0c0cE", + "status": "active", + "id": "0x0bc89aa98Ad94E6798Ec822d0814d934cCD0c0cE", + "links": [ + { + "name": "x", + "url": "https://x.com/battleheronft" + }, + { + "name": "telegram", + "url": "https://t.me/battlehero_official" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/battleheronft/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/battleheronft" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/battle-hero/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0bc89aa98Ad94E6798Ec822d0814d934cCD0c0cE/logo.png b/blockchains/smartchain/assets/0x0bc89aa98Ad94E6798Ec822d0814d934cCD0c0cE/logo.png new file mode 100644 index 00000000..60915f1e Binary files /dev/null and b/blockchains/smartchain/assets/0x0bc89aa98Ad94E6798Ec822d0814d934cCD0c0cE/logo.png differ diff --git a/blockchains/smartchain/assets/0x0c1b3983D2a4Aa002666820DE5a0B43293291Ea6/info.json b/blockchains/smartchain/assets/0x0c1b3983D2a4Aa002666820DE5a0B43293291Ea6/info.json new file mode 100644 index 00000000..3bc5571a --- /dev/null +++ b/blockchains/smartchain/assets/0x0c1b3983D2a4Aa002666820DE5a0B43293291Ea6/info.json @@ -0,0 +1,11 @@ +{ + "name": "PEPE Community", + "website": "https://www.pepe.community", + "explorer": "https://bscscan.com/token/0x0c1b3983D2a4Aa002666820DE5a0B43293291Ea6", + "description": "No Whale can own > 0.5% supply. Auto-farming: earn $BNB, $BUSD, $BTC, $XBN. Auto-staking: earn $PEPE with zero fee. No auto-staking for holders who own >= 0.25% supply. Fair launch: No pre-sales, no Dev Fund. Super SAFE: Liquidity is Burned.", + "type": "BEP20", + "symbol": "PEPE", + "decimals": 9, + "status": "active", + "id": "0x0c1b3983D2a4Aa002666820DE5a0B43293291Ea6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0c1b3983D2a4Aa002666820DE5a0B43293291Ea6/logo.png b/blockchains/smartchain/assets/0x0c1b3983D2a4Aa002666820DE5a0B43293291Ea6/logo.png new file mode 100644 index 00000000..927ef242 Binary files /dev/null and b/blockchains/smartchain/assets/0x0c1b3983D2a4Aa002666820DE5a0B43293291Ea6/logo.png differ diff --git a/blockchains/smartchain/assets/0x0c8382719ef242CaE2247E4DeCb2891fBF699818/info.json b/blockchains/smartchain/assets/0x0c8382719ef242CaE2247E4DeCb2891fBF699818/info.json new file mode 100644 index 00000000..06ff5f8c --- /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 00000000..a8a488e8 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 new file mode 100644 index 00000000..f5892a7f --- /dev/null +++ b/blockchains/smartchain/assets/0x0cAE6c43fe2f43757a767Df90cf5054280110F3e/info.json @@ -0,0 +1,49 @@ +{ + "name": "Affinity", + "type": "BEP20", + "symbol": "AFFINITY", + "decimals": 9, + "website": "https://www.affinitybsc.com", + "description": "Affinity was built with community as its guiding principle. It starts by giving the most rewards of any reflection token currently on the market — 87.5% of all fees collected are put directy back into holder’s wallets in the form of BUSD and Cardano ADA. It continues into this project’s primary use case, ADAPT, which is built to make sending cryptocurrency to friends, family and businesses secure and easier than ever.", + "explorer": "https://bscscan.com/token/0x0cAE6c43fe2f43757a767Df90cf5054280110F3e", + "status": "abandoned", + "id": "0x0cAE6c43fe2f43757a767Df90cf5054280110F3e", + "links": [ + { + "name": "x", + "url": "https://x.com/affinitybsc?s=21" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AffinityBSC/" + }, + { + "name": "telegram", + "url": "https://t.me/Safe_Affinity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/affinitybsc" + }, + { + "name": "whitepaper", + "url": "https://affinitybsc.com/Affinitywhitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/safeaffinity/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/affinity" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCtbkIqnNuKbgWHYH7ndb1Pg" + } + ], + "tags": [ + "defi", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0cBD6fAdcF8096cC9A43d90B45F65826102e3eCE/info.json b/blockchains/smartchain/assets/0x0cBD6fAdcF8096cC9A43d90B45F65826102e3eCE/info.json new file mode 100644 index 00000000..bd08a670 --- /dev/null +++ b/blockchains/smartchain/assets/0x0cBD6fAdcF8096cC9A43d90B45F65826102e3eCE/info.json @@ -0,0 +1,68 @@ +{ + "name": "CheckDot", + "type": "BEP20", + "symbol": "CDT", + "decimals": 18, + "website": "https://checkdot.io", + "description": "CheckDot is designed to be the ultimate blockchain technology tool for end-users and developers, offering a various range of services that can help, simplify and innovates customers experience on cryptocurrency and blockchain world.", + "explorer": "https://bscscan.com/token/0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece", + "status": "active", + "id": "0x0cBD6fAdcF8096cC9A43d90B45F65826102e3eCE", + "links": [ + { + "name": "x", + "url": "https://x.com/Checkdot_proto" + }, + { + "name": "github", + "url": "https://github.com/checkdot" + }, + { + "name": "telegram", + "url": "https://t.me/checkdot" + }, + { + "name": "telegram_news", + "url": "https://t.me/checkdotnews" + }, + { + "name": "blog", + "url": "https://checkdot.medium.com" + }, + { + "name": "docs", + "url": "https://docs.checkdot.io" + }, + { + "name": "discord", + "url": "https://discord.com/invite/2BGQrNNd9X" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCzUKo78VJWDMDIXNw-3EGqA" + }, + { + "name": "whitepaper", + "url": "https://checkdot.io/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/checkdot" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/checkdot" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/CheckDot_community/" + }, + { + "name": "medium", + "url": "https://checkdot.medium.com" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0cBD6fAdcF8096cC9A43d90B45F65826102e3eCE/logo.png b/blockchains/smartchain/assets/0x0cBD6fAdcF8096cC9A43d90B45F65826102e3eCE/logo.png new file mode 100644 index 00000000..dd92290d Binary files /dev/null and b/blockchains/smartchain/assets/0x0cBD6fAdcF8096cC9A43d90B45F65826102e3eCE/logo.png differ diff --git a/blockchains/smartchain/assets/0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605/info.json b/blockchains/smartchain/assets/0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605/info.json new file mode 100644 index 00000000..1ded208e --- /dev/null +++ b/blockchains/smartchain/assets/0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605/info.json @@ -0,0 +1,36 @@ +{ + "name": "SEEDx", + "type": "BEP20", + "symbol": "SEEDx", + "decimals": 18, + "website": " https://seedx.app", + "description": "A unique zero proof of reserve decentralised orderbook based exchange offering traders in Binance Smart Chain platform", + "explorer": "https://bscscan.com/token/0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605", + "status": "active", + "id": "0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605", + "links": [ + { + "name": "x", + "url": "https://x.com/seedxapp" + }, + { + "name": "telegram_news", + "url": "https://t.me/seedxapp" + }, + { + "name": "whitepaper", + "url": "https://docs.seedx.app/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/seedx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/seedx" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605/logo.png b/blockchains/smartchain/assets/0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605/logo.png new file mode 100644 index 00000000..a7c9de15 Binary files /dev/null and b/blockchains/smartchain/assets/0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605/logo.png differ diff --git a/blockchains/smartchain/assets/0x0cCD575bf9378c06f6DCa82f8122F570769F00C2/info.json b/blockchains/smartchain/assets/0x0cCD575bf9378c06f6DCa82f8122F570769F00C2/info.json new file mode 100644 index 00000000..3910d25a --- /dev/null +++ b/blockchains/smartchain/assets/0x0cCD575bf9378c06f6DCa82f8122F570769F00C2/info.json @@ -0,0 +1,37 @@ +{ + "name": "CryptoBlades KING Token", + "website": "https://cryptobladeskingdoms.io/", + "description": "Cryptoblades Kingdoms is a play to earn game built on the Binance Smart Chain blockchain platform. Players will be able to put their character to a battle arena to earn KING tokens.", + "explorer": "https://bscscan.com/token/0x0cCD575bf9378c06f6DCa82f8122F570769F00C2", + "type": "BEP20", + "symbol": "KING", + "decimals": 18, + "status": "active", + "id": "0x0cCD575bf9378c06f6DCa82f8122F570769F00C2", + "links": [ + { + "name": "x", + "url": "https://x.com/BladesCrypto" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/CryptoBlades/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptoblades-kingdoms/" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoBladesKingdoms" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cryptoblades" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cryptoblades-kingdoms" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0cCD575bf9378c06f6DCa82f8122F570769F00C2/logo.png b/blockchains/smartchain/assets/0x0cCD575bf9378c06f6DCa82f8122F570769F00C2/logo.png new file mode 100644 index 00000000..d0012180 Binary files /dev/null and b/blockchains/smartchain/assets/0x0cCD575bf9378c06f6DCa82f8122F570769F00C2/logo.png differ diff --git a/blockchains/smartchain/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json b/blockchains/smartchain/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json new file mode 100644 index 00000000..0e322b61 --- /dev/null +++ b/blockchains/smartchain/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json @@ -0,0 +1,49 @@ +{ + "name": "EverRise (old)", + "type": "BEP20", + "symbol": "RISE (old)", + "decimals": 18, + "website": "https://www.everrise.com/", + "description": "The Original Buyback Token Powering The EverRise Ecosystem. EverRise token (RISE) is a multi-chain collateralized cryptocurrency that protects both the ecosystem and investors with its innovative buyback and staking protocol.", + "explorer": "https://bscscan.com/token/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579", + "status": "abandoned", + "id": "0x0cD022ddE27169b20895e0e2B2B8A33B25e63579", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/everrise/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/everrise" + }, + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0cF011A946f23a03CeFF92A4632d5f9288c6C70D/info.json b/blockchains/smartchain/assets/0x0cF011A946f23a03CeFF92A4632d5f9288c6C70D/info.json new file mode 100644 index 00000000..330d0276 --- /dev/null +++ b/blockchains/smartchain/assets/0x0cF011A946f23a03CeFF92A4632d5f9288c6C70D/info.json @@ -0,0 +1,12 @@ +{ + "name": "NCAT Token", + "website": "https://ncat.fun", + "description": "NCAT Token is a meme community driven project built on Binance Smart Chain, which was fair launched. We continue to build based on community feedback and soon to be released full Governance.", + "explorer": "https://bscscan.com/token/0x0cF011A946f23a03CeFF92A4632d5f9288c6C70D", + "research": "", + "type": "BEP20", + "symbol": "NCAT", + "decimals": 9, + "status": "active", + "id": "0x0cF011A946f23a03CeFF92A4632d5f9288c6C70D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0cF011A946f23a03CeFF92A4632d5f9288c6C70D/logo.png b/blockchains/smartchain/assets/0x0cF011A946f23a03CeFF92A4632d5f9288c6C70D/logo.png new file mode 100644 index 00000000..6412f15d Binary files /dev/null and b/blockchains/smartchain/assets/0x0cF011A946f23a03CeFF92A4632d5f9288c6C70D/logo.png differ diff --git a/blockchains/smartchain/assets/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5/info.json b/blockchains/smartchain/assets/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5/info.json new file mode 100644 index 00000000..493290bf --- /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 00000000..ac668f14 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 00000000..a3fe3bdb --- /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 00000000..e14a8610 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 new file mode 100644 index 00000000..a031d93d --- /dev/null +++ b/blockchains/smartchain/assets/0x0d9319565be7f53CeFE84Ad201Be3f40feAE2740/info.json @@ -0,0 +1,29 @@ +{ + "name": "bDollar Share", + "website": "https://bdollar.fi", + "description": "sBDO is the share token of bDollar protocol - an algorithmic stable-coin running on Binance Smart-chain.", + "explorer": "https://bscscan.com/token/0x0d9319565be7f53CeFE84Ad201Be3f40feAE2740", + "type": "BEP20", + "symbol": "sBDO", + "decimals": 18, + "status": "active", + "id": "0x0d9319565be7f53CeFE84Ad201Be3f40feAE2740", + "links": [ + { + "name": "github", + "url": "https://github.com/bearn-defi/bdollar-smartcontracts" + }, + { + "name": "x", + "url": "https://x.com/bDollar_Fi" + }, + { + "name": "telegram", + "url": "https://t.me/Bearn_Fi" + }, + { + "name": "medium", + "url": "https://bearn-defi.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0d9319565be7f53CeFE84Ad201Be3f40feAE2740/logo.png b/blockchains/smartchain/assets/0x0d9319565be7f53CeFE84Ad201Be3f40feAE2740/logo.png new file mode 100644 index 00000000..67c2d7e1 Binary files /dev/null and b/blockchains/smartchain/assets/0x0d9319565be7f53CeFE84Ad201Be3f40feAE2740/logo.png differ diff --git a/blockchains/smartchain/assets/0x0dA292E241096140Ce2b3d39e5699acC2eCa68fa/info.json b/blockchains/smartchain/assets/0x0dA292E241096140Ce2b3d39e5699acC2eCa68fa/info.json new file mode 100644 index 00000000..b2e3f654 --- /dev/null +++ b/blockchains/smartchain/assets/0x0dA292E241096140Ce2b3d39e5699acC2eCa68fa/info.json @@ -0,0 +1,14 @@ +{ + "name": "SafeOrbit", + "type": "BEP20", + "symbol": "SAFEORBIT", + "decimals": 9, + "website": "https://safeorbit.io/", + "description": "Autonomus Yield & Liquidity Generation Protocol", + "explorer": "https://bscscan.com/token/0x0dA292E241096140Ce2b3d39e5699acC2eCa68fa", + "status": "active", + "id": "0x0dA292E241096140Ce2b3d39e5699acC2eCa68fa", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0dA292E241096140Ce2b3d39e5699acC2eCa68fa/logo.png b/blockchains/smartchain/assets/0x0dA292E241096140Ce2b3d39e5699acC2eCa68fa/logo.png new file mode 100644 index 00000000..7ee35cd7 Binary files /dev/null and b/blockchains/smartchain/assets/0x0dA292E241096140Ce2b3d39e5699acC2eCa68fa/logo.png differ diff --git a/blockchains/smartchain/assets/0x0dcD05357B83BF100e668F152bf14Bf96b679Cd1/info.json b/blockchains/smartchain/assets/0x0dcD05357B83BF100e668F152bf14Bf96b679Cd1/info.json new file mode 100644 index 00000000..5bf11b7b --- /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 00000000..590b2723 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 new file mode 100644 index 00000000..0dfa9920 --- /dev/null +++ b/blockchains/smartchain/assets/0x0df1B3F30865C5b324797F8dB9d339514caC4e94/info.json @@ -0,0 +1,41 @@ +{ + "name": "BetU", + "type": "BEP20", + "symbol": "BETU", + "decimals": 18, + "website": "https://betu.io", + "description": "Sports, esports and crypto betting platform, secured by smart contracts and powered by the BETU token. BetU Fantasy is a separate play to earn game. Players make fantasy bets on real sport and esport events to earn crypto rewards every week.", + "explorer": "https://bscscan.com/token/0x0df1B3F30865C5b324797F8dB9d339514caC4e94", + "status": "active", + "id": "0x0df1B3F30865C5b324797F8dB9d339514caC4e94", + "links": [ + { + "name": "x", + "url": "https://x.com/betuglobal" + }, + { + "name": "telegram", + "url": "https://t.me/betucommunity" + }, + { + "name": "youtube", + "url": "https://youtube.com/betuglobal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/betu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/betu" + }, + { + "name": "blog", + "url": "https://www.betu.io/blog" + }, + { + "name": "whitepaper", + "url": "https://www.betu.io/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0df1B3F30865C5b324797F8dB9d339514caC4e94/logo.png b/blockchains/smartchain/assets/0x0df1B3F30865C5b324797F8dB9d339514caC4e94/logo.png new file mode 100644 index 00000000..d2e77494 Binary files /dev/null and b/blockchains/smartchain/assets/0x0df1B3F30865C5b324797F8dB9d339514caC4e94/logo.png differ diff --git a/blockchains/smartchain/assets/0x0e0e877894a101Ad8711AE3A0194Fa44Ca837a79/info.json b/blockchains/smartchain/assets/0x0e0e877894a101Ad8711AE3A0194Fa44Ca837a79/info.json new file mode 100644 index 00000000..f2fd6b0c --- /dev/null +++ b/blockchains/smartchain/assets/0x0e0e877894a101Ad8711AE3A0194Fa44Ca837a79/info.json @@ -0,0 +1,21 @@ +{ + "name": "MoonMoon", + "website": "https://moonmoon.cash", + "description": "Use token in MoonMoon ecosystem, and generate passive yield with transfer fee going to holders and pancakeswap liquidity.", + "explorer": "https://bscscan.com/token/0x0e0e877894a101Ad8711AE3A0194Fa44Ca837a79", + "type": "BEP20", + "symbol": "MOONMOON", + "decimals": 9, + "status": "active", + "id": "0x0e0e877894a101Ad8711AE3A0194Fa44Ca837a79", + "links": [ + { + "name": "x", + "url": "https://x.com/MoonMoonCash" + }, + { + "name": "telegram", + "url": "https://t.me/moonmooncash" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0e0e877894a101Ad8711AE3A0194Fa44Ca837a79/logo.png b/blockchains/smartchain/assets/0x0e0e877894a101Ad8711AE3A0194Fa44Ca837a79/logo.png new file mode 100644 index 00000000..87655bf6 Binary files /dev/null and b/blockchains/smartchain/assets/0x0e0e877894a101Ad8711AE3A0194Fa44Ca837a79/logo.png differ diff --git a/blockchains/smartchain/assets/0x0e128Fb9f266F0CFedEb3B789f6fd4AF50d51b84/info.json b/blockchains/smartchain/assets/0x0e128Fb9f266F0CFedEb3B789f6fd4AF50d51b84/info.json new file mode 100644 index 00000000..3d87aa36 --- /dev/null +++ b/blockchains/smartchain/assets/0x0e128Fb9f266F0CFedEb3B789f6fd4AF50d51b84/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rai Finance", + "website": "https://rai.finance", + "description": "RAI Finance is a protocol designed to provide DeFi with a wider range of assets, a higher amount of liquidity, and a diverse set of financial use cases. When this feature set is combined with the cross-chain compatibility of the Polkadot ecosystem, it eliminates fragmentation across the existing DeFi ecosystem by bringing a complement of new assets and a higher amount of liquidity to decentralized finance.", + "explorer": "https://bscscan.com/token/0x0e128Fb9f266F0CFedEb3B789f6fd4AF50d51b84", + "type": "BEP20", + "symbol": "Rai", + "decimals": 18, + "status": "active", + "id": "0x0e128Fb9f266F0CFedEb3B789f6fd4AF50d51b84" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0e128Fb9f266F0CFedEb3B789f6fd4AF50d51b84/logo.png b/blockchains/smartchain/assets/0x0e128Fb9f266F0CFedEb3B789f6fd4AF50d51b84/logo.png new file mode 100644 index 00000000..687e1736 Binary files /dev/null and b/blockchains/smartchain/assets/0x0e128Fb9f266F0CFedEb3B789f6fd4AF50d51b84/logo.png differ diff --git a/blockchains/smartchain/assets/0x0e20E3216EA172fcf9eAa19723b119e090fD353f/info.json b/blockchains/smartchain/assets/0x0e20E3216EA172fcf9eAa19723b119e090fD353f/info.json new file mode 100644 index 00000000..24cf89b5 --- /dev/null +++ b/blockchains/smartchain/assets/0x0e20E3216EA172fcf9eAa19723b119e090fD353f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xiasi Inu", + "type": "BEP20", + "symbol": "XIASI", + "decimals": 9, + "website": "https://xiasi.finance", + "description": "Xiasi Inu ($XIASI) is a community-focused, decentralized cryptocurrency with instant rewards for holders, sit back relax and watch your Xiasi Inu balance grow.", + "explorer": "https://bscscan.com/token/0x0e20E3216EA172fcf9eAa19723b119e090fD353f", + "status": "active", + "id": "0x0e20E3216EA172fcf9eAa19723b119e090fD353f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0e20E3216EA172fcf9eAa19723b119e090fD353f/logo.png b/blockchains/smartchain/assets/0x0e20E3216EA172fcf9eAa19723b119e090fD353f/logo.png new file mode 100644 index 00000000..cb82b02f Binary files /dev/null and b/blockchains/smartchain/assets/0x0e20E3216EA172fcf9eAa19723b119e090fD353f/logo.png differ diff --git a/blockchains/smartchain/assets/0x0e28bC9B03971E95acF9ae1326E51ecF9C55B498/info.json b/blockchains/smartchain/assets/0x0e28bC9B03971E95acF9ae1326E51ecF9C55B498/info.json new file mode 100644 index 00000000..642fad33 --- /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 00000000..e7d7f22a 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 00000000..e4d4e3e7 --- /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 00000000..46e71fa1 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 00000000..9b4a4f23 --- /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 00000000..da6b9392 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 00000000..a0652a55 --- /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 00000000..d5f75ef6 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 new file mode 100644 index 00000000..0cfeacbc --- /dev/null +++ b/blockchains/smartchain/assets/0x0ebd9537A25f56713E34c45b38F421A1e7191469/info.json @@ -0,0 +1,25 @@ +{ + "name": "dotmoovs", + "website": "https://www.dotmoovs.com/", + "description": "dotmoovs is the first crypto mobile worldwide competitive environment. At dotmoovs you can compete with others around the world!", + "explorer": "https://bscscan.com/token/0x0ebd9537A25f56713E34c45b38F421A1e7191469", + "type": "BEP20", + "symbol": "MOOV", + "decimals": 18, + "status": "active", + "id": "0x0ebd9537A25f56713E34c45b38F421A1e7191469", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dotmoovs" + }, + { + "name": "x", + "url": "https://x.com/dotmoovs" + }, + { + "name": "telegram", + "url": "https://t.me/dotmoovs" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0ebd9537A25f56713E34c45b38F421A1e7191469/logo.png b/blockchains/smartchain/assets/0x0ebd9537A25f56713E34c45b38F421A1e7191469/logo.png new file mode 100644 index 00000000..93258ee8 Binary files /dev/null and b/blockchains/smartchain/assets/0x0ebd9537A25f56713E34c45b38F421A1e7191469/logo.png differ diff --git a/blockchains/smartchain/assets/0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a/info.json b/blockchains/smartchain/assets/0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a/info.json new file mode 100644 index 00000000..fe977db3 --- /dev/null +++ b/blockchains/smartchain/assets/0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a/info.json @@ -0,0 +1,33 @@ +{ + "name": "Firework Games", + "type": "BEP20", + "symbol": "FIRE", + "decimals": 18, + "website": "https://www.firework.games/", + "description": "Fireworks Games is a pioneer of open and inclusive diversified game world.In the blockchain game industry, we want to build a decentralized virtual reality game ecosystem, and promote the construction of GameFi.", + "explorer": "https://bscscan.com/token/0x0f0dd5e2c0e0c4a41f8908d73d36b8d142f6745a", + "status": "active", + "id": "0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a", + "links": [ + { + "name": "x", + "url": "https://x.com/FireworkGames" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/firework-games/" + }, + { + "name": "whitepaper", + "url": "https://intro.firework.games/files/Firework_Games_Whitepaper_en.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/FireworkGames_group" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a/logo.png b/blockchains/smartchain/assets/0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a/logo.png new file mode 100644 index 00000000..8119cc5d Binary files /dev/null and b/blockchains/smartchain/assets/0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a/logo.png differ diff --git a/blockchains/smartchain/assets/0x0f5351B9EAefd6687dfF143DE6eA5d01cB9c1205/info.json b/blockchains/smartchain/assets/0x0f5351B9EAefd6687dfF143DE6eA5d01cB9c1205/info.json new file mode 100644 index 00000000..20c224a1 --- /dev/null +++ b/blockchains/smartchain/assets/0x0f5351B9EAefd6687dfF143DE6eA5d01cB9c1205/info.json @@ -0,0 +1,21 @@ +{ + "name": "Flokimooni", + "type": "BEP20", + "symbol": "Flokim", + "decimals": 18, + "website": "https://www.flokimooni.com", + "description": "Flokimooni Decentralized meme coin with DeFi features", + "explorer": "https://bscscan.com/token/0x0f5351B9EAefd6687dfF143DE6eA5d01cB9c1205", + "status": "active", + "id": "0x0f5351B9EAefd6687dfF143DE6eA5d01cB9c1205", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/flokimooni/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/flokimooni" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0f5351B9EAefd6687dfF143DE6eA5d01cB9c1205/logo.png b/blockchains/smartchain/assets/0x0f5351B9EAefd6687dfF143DE6eA5d01cB9c1205/logo.png new file mode 100644 index 00000000..21b1eeea Binary files /dev/null and b/blockchains/smartchain/assets/0x0f5351B9EAefd6687dfF143DE6eA5d01cB9c1205/logo.png differ diff --git a/blockchains/smartchain/assets/0x0f7cd24E31293b162DcF6211C6AC5bD8EfCB81f4/info.json b/blockchains/smartchain/assets/0x0f7cd24E31293b162DcF6211C6AC5bD8EfCB81f4/info.json new file mode 100644 index 00000000..7a5c3508 --- /dev/null +++ b/blockchains/smartchain/assets/0x0f7cd24E31293b162DcF6211C6AC5bD8EfCB81f4/info.json @@ -0,0 +1,25 @@ +{ + "name": "LiveTrade", + "website": "https://ltd.livetrade.io", + "description": "The Future of Business enabled by Blockchain. A decentralized hub for all your financial needs.", + "explorer": "https://bscscan.com/token/0x0f7cd24E31293b162DcF6211C6AC5bD8EfCB81f4", + "type": "BEP20", + "symbol": "LTD", + "decimals": 18, + "status": "active", + "id": "0x0f7cd24E31293b162DcF6211C6AC5bD8EfCB81f4", + "links": [ + { + "name": "whitepaper", + "url": "https://ltd.livetrade.io/wp-content/uploads/2021/07/LTD-Whitepaper_Eng.pdf" + }, + { + "name": "x", + "url": "https://x.com/Livetrade_io" + }, + { + "name": "telegram", + "url": "https://t.me/livetrade_official" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0f7cd24E31293b162DcF6211C6AC5bD8EfCB81f4/logo.png b/blockchains/smartchain/assets/0x0f7cd24E31293b162DcF6211C6AC5bD8EfCB81f4/logo.png new file mode 100644 index 00000000..94a8d7ec Binary files /dev/null and b/blockchains/smartchain/assets/0x0f7cd24E31293b162DcF6211C6AC5bD8EfCB81f4/logo.png differ diff --git a/blockchains/smartchain/assets/0x0fA9651a0ecC19906843C13c60443300B9d37355/info.json b/blockchains/smartchain/assets/0x0fA9651a0ecC19906843C13c60443300B9d37355/info.json new file mode 100644 index 00000000..f7f3538a --- /dev/null +++ b/blockchains/smartchain/assets/0x0fA9651a0ecC19906843C13c60443300B9d37355/info.json @@ -0,0 +1,45 @@ +{ + "name": "XMINE Token", + "website": "https://www.xmine.one", + "description": "XMINE is DeFi, miner with ASIC and rewards to holders.", + "explorer": "https://bscscan.com/token/0x0fA9651a0ecC19906843C13c60443300B9d37355", + "type": "BEP20", + "symbol": "XMINE", + "decimals": 9, + "status": "active", + "id": "0x0fA9651a0ecC19906843C13c60443300B9d37355", + "links": [ + { + "name": "reddit", + "url": "https://reddit.com/r/XMINE" + }, + { + "name": "x", + "url": "https://x.com/xmineofficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/xmineofficial" + }, + { + "name": "discord", + "url": "https://discord.com/ufUdcdDM" + }, + { + "name": "telegram", + "url": "https://t.me/xmineofficial" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/12-weGeyl_ljp25LWNFU3-6LgbNV_NCKb/view" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xmine/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/pt/moedas/xmine" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0fA9651a0ecC19906843C13c60443300B9d37355/logo.png b/blockchains/smartchain/assets/0x0fA9651a0ecC19906843C13c60443300B9d37355/logo.png new file mode 100644 index 00000000..4f22c8d9 Binary files /dev/null and b/blockchains/smartchain/assets/0x0fA9651a0ecC19906843C13c60443300B9d37355/logo.png differ diff --git a/blockchains/smartchain/assets/0x0fEAdcC3824E7F3c12f40E324a60c23cA51627fc/info.json b/blockchains/smartchain/assets/0x0fEAdcC3824E7F3c12f40E324a60c23cA51627fc/info.json new file mode 100644 index 00000000..46da55ac --- /dev/null +++ b/blockchains/smartchain/assets/0x0fEAdcC3824E7F3c12f40E324a60c23cA51627fc/info.json @@ -0,0 +1,11 @@ +{ + "name": "WardenSwap Token", + "website": "https://www.wardenswap.com", + "description": "WardenSwap is the digital asset exchange platform that uses an algorithm to find the best rate for Binance Smart Chain automatically.", + "explorer": "https://bscscan.com/token/0x0feadcc3824e7f3c12f40e324a60c23ca51627fc", + "type": "BEP20", + "symbol": "WAD", + "decimals": 18, + "status": "active", + "id": "0x0fEAdcC3824E7F3c12f40E324a60c23cA51627fc" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0fEAdcC3824E7F3c12f40E324a60c23cA51627fc/logo.png b/blockchains/smartchain/assets/0x0fEAdcC3824E7F3c12f40E324a60c23cA51627fc/logo.png new file mode 100644 index 00000000..e1bc26f3 Binary files /dev/null and b/blockchains/smartchain/assets/0x0fEAdcC3824E7F3c12f40E324a60c23cA51627fc/logo.png differ diff --git a/blockchains/smartchain/assets/0x0fFB09e25d2Cb7D56EF3eA7Fac08756Dfb579208/info.json b/blockchains/smartchain/assets/0x0fFB09e25d2Cb7D56EF3eA7Fac08756Dfb579208/info.json new file mode 100644 index 00000000..51c1a184 --- /dev/null +++ b/blockchains/smartchain/assets/0x0fFB09e25d2Cb7D56EF3eA7Fac08756Dfb579208/info.json @@ -0,0 +1,11 @@ +{ + "name": "CLOUT", + "type": "BEP20", + "symbol": "CLOUT", + "decimals": 9, + "website": "https://cloutdefi.app", + "description": "Clout is a token that backs the Clout Network, a smart-contract IPFS powered content decentralization and democratization protocol.", + "explorer": "https://bscscan.com/token/0x0fFB09e25d2Cb7D56EF3eA7Fac08756Dfb579208", + "status": "active", + "id": "0x0fFB09e25d2Cb7D56EF3eA7Fac08756Dfb579208" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0fFB09e25d2Cb7D56EF3eA7Fac08756Dfb579208/logo.png b/blockchains/smartchain/assets/0x0fFB09e25d2Cb7D56EF3eA7Fac08756Dfb579208/logo.png new file mode 100644 index 00000000..cea45486 Binary files /dev/null and b/blockchains/smartchain/assets/0x0fFB09e25d2Cb7D56EF3eA7Fac08756Dfb579208/logo.png differ diff --git a/blockchains/smartchain/assets/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9/info.json b/blockchains/smartchain/assets/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9/info.json new file mode 100644 index 00000000..8932bebb --- /dev/null +++ b/blockchains/smartchain/assets/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9/info.json @@ -0,0 +1,29 @@ +{ + "name": "BabyDogeZilla", + "website": "https://babydogezilla.com/", + "description": "BabyDogeZilla is the cutest and most badass meme in crypto! BabyDogeZilla is a deflationary token designed to become more scarce over time. All holders of BabyDogeZilla will earn more BabyDogeZilla by simply holding. Watch the amount of BabyDogeZilla grow in your wallet as BabyDogeZilla holders automatically receive a 3% fee from every transaction that happens on the BabyDogeZilla network.", + "explorer": "https://bscscan.com/token/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9", + "type": "BEP20", + "symbol": "BabyDogeZilla", + "decimals": 9, + "status": "abandoned", + "id": "0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BabyDogeZillaBSC" + }, + { + "name": "x", + "url": "https://x.com/BabydogezillaA" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/babydogezilla/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/babydogezilla" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10051147418C42218986CeDD0aDC266441F8a14f/info.json b/blockchains/smartchain/assets/0x10051147418C42218986CeDD0aDC266441F8a14f/info.json new file mode 100644 index 00000000..c660d12c --- /dev/null +++ b/blockchains/smartchain/assets/0x10051147418C42218986CeDD0aDC266441F8a14f/info.json @@ -0,0 +1,48 @@ +{ + "name": "DYOR Token", + "type": "BEP20", + "symbol": "DYOR", + "decimals": 9, + "website": "https://dyorpro.com", + "description": "DYOR Project's motto is Educate, Equip, Empower. DYOR Project strives to teach investors how to find reputable crypto projects while avoiding scams.", + "explorer": "https://bscscan.com/token/0x10051147418C42218986CeDD0aDC266441F8a14f", + "status": "active", + "id": "0x10051147418C42218986CeDD0aDC266441F8a14f", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/dyorproject" + }, + { + "name": "x", + "url": "https://x.com/DYORToken_BSC" + }, + { + "name": "discord", + "url": "https://discord.com/channels/910012412671955014/914013645535608832" + }, + { + "name": "telegram", + "url": "https://t.me/DYORTokenBSC" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/DYORMediaNetwork" + }, + { + "name": "blog", + "url": "https://dyorpro.blog" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dyor-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dyor" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10051147418C42218986CeDD0aDC266441F8a14f/logo.png b/blockchains/smartchain/assets/0x10051147418C42218986CeDD0aDC266441F8a14f/logo.png new file mode 100644 index 00000000..a8595ff2 Binary files /dev/null and b/blockchains/smartchain/assets/0x10051147418C42218986CeDD0aDC266441F8a14f/logo.png differ diff --git a/blockchains/smartchain/assets/0x1012b25Da282758322dAce753C15b889d1aB7434/info.json b/blockchains/smartchain/assets/0x1012b25Da282758322dAce753C15b889d1aB7434/info.json new file mode 100644 index 00000000..7c955f52 --- /dev/null +++ b/blockchains/smartchain/assets/0x1012b25Da282758322dAce753C15b889d1aB7434/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zyber Synergy", + "type": "BEP20", + "symbol": "ZYBER", + "decimals": 18, + "website": "https://zybersynergy.com/", + "description": "Zyber: Synergy is a Virtual Reality (VR) Three-dimensional Crypto-Gaming Platform that lets the user/gamer gain maximum profit by just playing the platform games.", + "explorer": "https://bscscan.com/token/0x1012b25Da282758322dAce753C15b889d1aB7434", + "status": "active", + "id": "0x1012b25Da282758322dAce753C15b889d1aB7434" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1012b25Da282758322dAce753C15b889d1aB7434/logo.png b/blockchains/smartchain/assets/0x1012b25Da282758322dAce753C15b889d1aB7434/logo.png new file mode 100644 index 00000000..30a7d232 Binary files /dev/null and b/blockchains/smartchain/assets/0x1012b25Da282758322dAce753C15b889d1aB7434/logo.png differ diff --git a/blockchains/smartchain/assets/0x101D35140719EB2D07fFA71185f5bfBE31D6A212/info.json b/blockchains/smartchain/assets/0x101D35140719EB2D07fFA71185f5bfBE31D6A212/info.json new file mode 100644 index 00000000..40052e1a --- /dev/null +++ b/blockchains/smartchain/assets/0x101D35140719EB2D07fFA71185f5bfBE31D6A212/info.json @@ -0,0 +1,11 @@ +{ + "name": "BNB Cash", + "type": "BEP20", + "symbol": "BNBC", + "decimals": 18, + "website": "https://bnbcash.uk", + "description": "BNB Cash", + "explorer": "https://bscscan.com/token/0x101D35140719EB2D07fFA71185f5bfBE31D6A212", + "status": "active", + "id": "0x101D35140719EB2D07fFA71185f5bfBE31D6A212" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x101D35140719EB2D07fFA71185f5bfBE31D6A212/logo.png b/blockchains/smartchain/assets/0x101D35140719EB2D07fFA71185f5bfBE31D6A212/logo.png new file mode 100644 index 00000000..bb127e9d Binary files /dev/null and b/blockchains/smartchain/assets/0x101D35140719EB2D07fFA71185f5bfBE31D6A212/logo.png differ diff --git a/blockchains/smartchain/assets/0x101d82428437127bF1608F699CD651e6Abf9766E/info.json b/blockchains/smartchain/assets/0x101d82428437127bF1608F699CD651e6Abf9766E/info.json new file mode 100644 index 00000000..d1f09513 --- /dev/null +++ b/blockchains/smartchain/assets/0x101d82428437127bF1608F699CD651e6Abf9766E/info.json @@ -0,0 +1,34 @@ +{ + "name": "BNB pegged 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", + "research": "https://research.binance.com/en/projects/basic-attention-token", + "type": "BEP20", + "symbol": "BAT", + "decimals": 18, + "status": "active", + "id": "0x101d82428437127bF1608F699CD651e6Abf9766E", + "tags": [ + "binance-peg", + "defi" + ], + "links": [ + { + "name": "blog", + "url": "https://medium.com/@attentiontoken" + }, + { + "name": "x", + "url": "https://x.com/@attentiontoken" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BATProject/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/basic-attention-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x101d82428437127bF1608F699CD651e6Abf9766E/logo.png b/blockchains/smartchain/assets/0x101d82428437127bF1608F699CD651e6Abf9766E/logo.png new file mode 100644 index 00000000..e30c1e59 Binary files /dev/null and b/blockchains/smartchain/assets/0x101d82428437127bF1608F699CD651e6Abf9766E/logo.png differ diff --git a/blockchains/smartchain/assets/0x103071Da56e7cD95b415320760D6a0dDC4DA1ca5/info.json b/blockchains/smartchain/assets/0x103071Da56e7cD95b415320760D6a0dDC4DA1ca5/info.json new file mode 100644 index 00000000..7ac124c0 --- /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 00000000..65434e1c 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 new file mode 100644 index 00000000..8b8ec6a9 --- /dev/null +++ b/blockchains/smartchain/assets/0x1042aA383CAb145dc77121ca75650804A5c134ff/info.json @@ -0,0 +1,40 @@ +{ + "name": "aggle.io", + "type": "BEP20", + "symbol": "AGGL", + "decimals": 18, + "website": "https://aggle.io", + "description": "aggle.io is a decentralized sports betting platform where you can accept the best odds or interact as a bookmaker yourself.", + "explorer": "https://bscscan.com/token/0x1042aA383CAb145dc77121ca75650804A5c134ff", + "status": "active", + "id": "0x1042aA383CAb145dc77121ca75650804A5c134ff", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/Aggleio-106575305321004" + }, + { + "name": "telegram", + "url": "https://t.me/aggle_io" + }, + { + "name": "x", + "url": "https://x.com/aggle_io" + }, + { + "name": "discord", + "url": "https://discord.com/qAC48Fvr" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aggle-io/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/de/munze/aggle-io" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1042aA383CAb145dc77121ca75650804A5c134ff/logo.png b/blockchains/smartchain/assets/0x1042aA383CAb145dc77121ca75650804A5c134ff/logo.png new file mode 100644 index 00000000..ec9944f2 Binary files /dev/null and b/blockchains/smartchain/assets/0x1042aA383CAb145dc77121ca75650804A5c134ff/logo.png differ diff --git a/blockchains/smartchain/assets/0x10747e2045a0ef884a0586AC81558F43285ea3c7/info.json b/blockchains/smartchain/assets/0x10747e2045a0ef884a0586AC81558F43285ea3c7/info.json new file mode 100644 index 00000000..fc9a8132 --- /dev/null +++ b/blockchains/smartchain/assets/0x10747e2045a0ef884a0586AC81558F43285ea3c7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Best", + "type": "BEP20", + "symbol": "BEST", + "decimals": 18, + "website": "https://bsc.bestswap.com/swap", + "description": "-", + "explorer": "https://bscscan.com/token/0x10747e2045a0ef884a0586AC81558F43285ea3c7", + "status": "active", + "id": "0x10747e2045a0ef884a0586AC81558F43285ea3c7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10747e2045a0ef884a0586AC81558F43285ea3c7/logo.png b/blockchains/smartchain/assets/0x10747e2045a0ef884a0586AC81558F43285ea3c7/logo.png new file mode 100644 index 00000000..37d8babe Binary files /dev/null and b/blockchains/smartchain/assets/0x10747e2045a0ef884a0586AC81558F43285ea3c7/logo.png differ diff --git a/blockchains/smartchain/assets/0x10806b71136785250455CAb1FBaFA06b228e8888/info.json b/blockchains/smartchain/assets/0x10806b71136785250455CAb1FBaFA06b228e8888/info.json new file mode 100644 index 00000000..244234dc --- /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 new file mode 100644 index 00000000..1615993d --- /dev/null +++ b/blockchains/smartchain/assets/0x10B0a78520fBDDa95aDc331445d9319B164F85D5/info.json @@ -0,0 +1,49 @@ +{ + "name": "AnpanSwap Token", + "type": "BEP20", + "symbol": "Anpan", + "decimals": 18, + "website": "https://anpanswap.finance/", + "description": "AnpanSwap is a DeFi protocol, with AMM & Yield Farm, launched products: Swap, Liquidity, Analytics, Farms, & Stake. Prediction in Nov, Lottery in Dec, NFT in Jan, & Vote in Feb, and Derivative in Mar 2022.", + "explorer": "https://bscscan.com/token/0x10B0a78520fBDDa95aDc331445d9319B164F85D5", + "status": "active", + "id": "0x10B0a78520fBDDa95aDc331445d9319B164F85D5", + "links": [ + { + "name": "x", + "url": "https://x.com/anpanswap" + }, + { + "name": "github", + "url": "https://github.com/anpanswap?tab=repositories" + }, + { + "name": "telegram", + "url": "https://t.me/anpanswap" + }, + { + "name": "telegram_news", + "url": "https://t.me/AnpanSwapAnn" + }, + { + "name": "docs", + "url": "https://docs.anpanswap.finance/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/anpanswap/" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.anpanswap.finance/whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://anpanswap.medium.com/" + }, + { + "name": "facebook", + "url": "https://facebook.com/anpanswap" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10B0a78520fBDDa95aDc331445d9319B164F85D5/logo.png b/blockchains/smartchain/assets/0x10B0a78520fBDDa95aDc331445d9319B164F85D5/logo.png new file mode 100644 index 00000000..988aa6a3 Binary files /dev/null and b/blockchains/smartchain/assets/0x10B0a78520fBDDa95aDc331445d9319B164F85D5/logo.png differ diff --git a/blockchains/smartchain/assets/0x10B7Be52636882d7ECa1611144A9Df7642F95B5D/info.json b/blockchains/smartchain/assets/0x10B7Be52636882d7ECa1611144A9Df7642F95B5D/info.json new file mode 100644 index 00000000..29985922 --- /dev/null +++ b/blockchains/smartchain/assets/0x10B7Be52636882d7ECa1611144A9Df7642F95B5D/info.json @@ -0,0 +1,11 @@ +{ + "name": "SHIBA SUPER", + "website": "https://shibasuper.org", + "description": "SHIBA SUPER is SHIBA Memes Token", + "explorer": "https://bscscan.com/token/0x10B7Be52636882d7ECa1611144A9Df7642F95B5D", + "symbol": "SHIBS", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x10B7Be52636882d7ECa1611144A9Df7642F95B5D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10B7Be52636882d7ECa1611144A9Df7642F95B5D/logo.png b/blockchains/smartchain/assets/0x10B7Be52636882d7ECa1611144A9Df7642F95B5D/logo.png new file mode 100644 index 00000000..2cc8f5ba Binary files /dev/null and b/blockchains/smartchain/assets/0x10B7Be52636882d7ECa1611144A9Df7642F95B5D/logo.png differ diff --git a/blockchains/smartchain/assets/0x10E76264489cDF4B4011F79086D0Bb6b55775E79/info.json b/blockchains/smartchain/assets/0x10E76264489cDF4B4011F79086D0Bb6b55775E79/info.json new file mode 100644 index 00000000..94b56244 --- /dev/null +++ b/blockchains/smartchain/assets/0x10E76264489cDF4B4011F79086D0Bb6b55775E79/info.json @@ -0,0 +1,11 @@ +{ + "name": "LittleMouse", + "website": "https://newlittlemouse.com", + "description": "LittleMouse Token is an ongoing game, NFT and outreach project. LittleMouse is a SWAP built on the BSC blockchain.", + "explorer": "https://bscscan.com/token/0x10E76264489cDF4B4011F79086D0Bb6b55775E79", + "type": "BEP20", + "symbol": "LTMS", + "decimals": 9, + "status": "active", + "id": "0x10E76264489cDF4B4011F79086D0Bb6b55775E79" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10E76264489cDF4B4011F79086D0Bb6b55775E79/logo.png b/blockchains/smartchain/assets/0x10E76264489cDF4B4011F79086D0Bb6b55775E79/logo.png new file mode 100644 index 00000000..746fb44e Binary files /dev/null and b/blockchains/smartchain/assets/0x10E76264489cDF4B4011F79086D0Bb6b55775E79/logo.png differ diff --git a/blockchains/smartchain/assets/0x10F181B87E2A4Af6120452A29570fcf74B082c16/info.json b/blockchains/smartchain/assets/0x10F181B87E2A4Af6120452A29570fcf74B082c16/info.json new file mode 100644 index 00000000..54201b7d --- /dev/null +++ b/blockchains/smartchain/assets/0x10F181B87E2A4Af6120452A29570fcf74B082c16/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeZone", + "type": "BEP20", + "symbol": "SafeZone", + "decimals": 8, + "website": "https://safezone.finance/", + "description": "SafeZone Token Platform. Built On Binance Smart Chain #BSC. Hold SafeZone Tokens in Your Wallet and Watch Your Balance increase.", + "explorer": "https://bscscan.com/token/0x10F181B87E2A4Af6120452A29570fcf74B082c16", + "status": "active", + "id": "0x10F181B87E2A4Af6120452A29570fcf74B082c16" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10F181B87E2A4Af6120452A29570fcf74B082c16/logo.png b/blockchains/smartchain/assets/0x10F181B87E2A4Af6120452A29570fcf74B082c16/logo.png new file mode 100644 index 00000000..dfb02fba Binary files /dev/null and b/blockchains/smartchain/assets/0x10F181B87E2A4Af6120452A29570fcf74B082c16/logo.png differ diff --git a/blockchains/smartchain/assets/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/info.json b/blockchains/smartchain/assets/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/info.json new file mode 100644 index 00000000..d7c9c663 --- /dev/null +++ b/blockchains/smartchain/assets/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/info.json @@ -0,0 +1,46 @@ +{ + "name": "Monetas Token", + "type": "BEP20", + "symbol": "MNTG", + "decimals": 18, + "description": "MNTG is a stablecoin issued by Monetas in partnership with Binance.The establishment of MONETAS is also based on the purpose of betterment of the future game environment, using better virtual tokens.", + "website": "https://monetasglobal.com/", + "explorer": "https://bscscan.com/token/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f", + "id": "0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f", + "status": "abandoned", + "tags": [ + "stablecoin", + "staking", + "gamefi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/monetasglobal" + }, + { + "name": "facebook", + "url": "https://facebook.com/motetasglobal" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCXRwEYyd4pg_PUNLblIpdbQ" + }, + { + "name": "github", + "url": "https://github.com/monetas-tech/asset-listing" + }, + { + "name": "whitepaper", + "url": "https://monetasglobal.com/wp-content/uploads/2021/09/Monetas-Whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/monetas" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/monetas/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10b58A3d9DCeC59bB1c3bf6b9c9414eAfCE711C9/info.json b/blockchains/smartchain/assets/0x10b58A3d9DCeC59bB1c3bf6b9c9414eAfCE711C9/info.json new file mode 100644 index 00000000..e39cb2dc --- /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 00000000..0ccfbac7 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 new file mode 100644 index 00000000..43da9a31 --- /dev/null +++ b/blockchains/smartchain/assets/0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965/info.json @@ -0,0 +1,32 @@ +{ + "name": "Renewable Energy Token", + "type": "BEP20", + "symbol": "RET", + "decimals": 9, + "website": "https://ret.life", + "description": "RET token is a BEP-20 token created on january 04, 2022 on the Binance Smart Chain network and that one designed to the functional and experience for all supporters of renewable energy.", + "explorer": "https://bscscan.com/token/0x10b9dd394467f2cfbc769e07e88dc7e2c41b0965", + "status": "active", + "id": "0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965", + "links": [ + { + "name": "x", + "url": "https://x.com/BscRetoken" + }, + { + "name": "github", + "url": "https://github.com/RETOKENofficial" + }, + { + "name": "telegram", + "url": "https://t.me/RETOKENOFFICIAL" + }, + { + "name": "medium", + "url": "https://medium.com/@BscRetoken" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965/logo.png b/blockchains/smartchain/assets/0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965/logo.png new file mode 100644 index 00000000..8c34b057 Binary files /dev/null and b/blockchains/smartchain/assets/0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965/logo.png differ diff --git a/blockchains/smartchain/assets/0x10cb66ce2969d8c8193707A9dCD559D2243B8b37/info.json b/blockchains/smartchain/assets/0x10cb66ce2969d8c8193707A9dCD559D2243B8b37/info.json new file mode 100644 index 00000000..8c2899f6 --- /dev/null +++ b/blockchains/smartchain/assets/0x10cb66ce2969d8c8193707A9dCD559D2243B8b37/info.json @@ -0,0 +1,36 @@ +{ + "name": "Crypto Legions Bloodstone", + "type": "BEP20", + "symbol": "BLST", + "decimals": 18, + "website": "https://cryptolegions.app", + "description": "Crypto Legions is a cutting edge Play-To-Earn NFT game on the BSC network, with a genius Omni-Balanced Oracle system for a sustainable game economy. By just playing a few minutes each day, you can earn Bloodstone tokens (BLST), which can be converted into any currency you want.", + "explorer": "https://bscscan.com/token/0x10cb66ce2969d8c8193707A9dCD559D2243B8b37", + "status": "active", + "id": "0x10cb66ce2969d8c8193707A9dCD559D2243B8b37", + "links": [ + { + "name": "x", + "url": "https://x.com/LegionsCrypto" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoLegionsCommunity" + }, + { + "name": "whitepaper", + "url": "https://docs.cryptolegions.app/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crypto-legions-bloodstone/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/crypto-legions-bloodstone" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10cb66ce2969d8c8193707A9dCD559D2243B8b37/logo.png b/blockchains/smartchain/assets/0x10cb66ce2969d8c8193707A9dCD559D2243B8b37/logo.png new file mode 100644 index 00000000..3eb09894 Binary files /dev/null and b/blockchains/smartchain/assets/0x10cb66ce2969d8c8193707A9dCD559D2243B8b37/logo.png differ diff --git a/blockchains/smartchain/assets/0x10eC175cBBAc1B06b8a3f509e373EeEc7a5F5d63/info.json b/blockchains/smartchain/assets/0x10eC175cBBAc1B06b8a3f509e373EeEc7a5F5d63/info.json new file mode 100644 index 00000000..4f1cc993 --- /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 00000000..fbfaf883 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 new file mode 100644 index 00000000..b8dfa016 --- /dev/null +++ b/blockchains/smartchain/assets/0x10f6F43d8321A3C86c2986BA4753ceBEba477BAa/info.json @@ -0,0 +1,29 @@ +{ + "name": "BaitCoin", + "type": "BEP20", + "symbol": "BAIT", + "decimals": 9, + "website": "https://www.baitcoin.com", + "description": "Baitcoin is a full-on-chain liquidity protocol with Decentralised financing that can be implemented on any smart contract-enabled blockchain.", + "explorer": "https://bscscan.com/token/0x10f6F43d8321A3C86c2986BA4753ceBEba477BAa", + "status": "active", + "id": "0x10f6F43d8321A3C86c2986BA4753ceBEba477BAa", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BaitCoinBSC" + }, + { + "name": "x", + "url": "https://x.com/BaitcoinBSC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baitcoin/" + }, + { + "name": "blog", + "url": "https://www.forbes.com/sites/tommywilliams1/2021/05/19/meet-antz-influencer--record-label-ceo-launching-an-nft-focused-cryptocurrency-called-baitcoin-to-collide-crypto-with-the-industry/?sh=6fbf93dd1d54" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x10f6F43d8321A3C86c2986BA4753ceBEba477BAa/logo.png b/blockchains/smartchain/assets/0x10f6F43d8321A3C86c2986BA4753ceBEba477BAa/logo.png new file mode 100644 index 00000000..e4ed0619 Binary files /dev/null and b/blockchains/smartchain/assets/0x10f6F43d8321A3C86c2986BA4753ceBEba477BAa/logo.png differ diff --git a/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/info.json b/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/info.json new file mode 100644 index 00000000..ec01de7a --- /dev/null +++ b/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/info.json @@ -0,0 +1,60 @@ +{ + "name": "Teddy Doge", + "type": "BEP20", + "symbol": "TEDDY", + "decimals": 18, + "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": "abandoned", + "id": "0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21", + "links": [ + { + "name": "x", + "url": "https://x.com/TeddySwap1" + }, + { + "name": "github", + "url": "https://github.com/TeddyDogeAdmin/Teddy-Doge-Code" + }, + { + "name": "telegram", + "url": "https://t.me/TeddyDoge_Official" + }, + { + "name": "telegram_news", + "url": "https://t.me/TeddyDoge_channel" + }, + { + "name": "discord", + "url": "https://discord.com/Wtjxv5djTu" + }, + { + "name": "whitepaper", + "url": "https://teddydoge.finance/teddyswap.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/teddydoge/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/teddy-doge" + }, + { + "name": "facebook", + "url": "https://facebook.com/TeddyDoge-100534085871418" + }, + { + "name": "medium", + "url": "https://medium.com/@TeddyDOGE" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCcD7AsRqhU92IfqTh4SY0kQ" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1104EB7e85E25eB45F88e638b0C27A06C1A91CB2/info.json b/blockchains/smartchain/assets/0x1104EB7e85E25eB45F88e638b0C27A06C1A91CB2/info.json new file mode 100644 index 00000000..0dec3211 --- /dev/null +++ b/blockchains/smartchain/assets/0x1104EB7e85E25eB45F88e638b0C27A06C1A91CB2/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core S&P 500 ETF (Ondo Tokenized)", + "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 00000000..8adf5788 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 new file mode 100644 index 00000000..d6696452 --- /dev/null +++ b/blockchains/smartchain/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json @@ -0,0 +1,36 @@ +{ + "name": "1INCH Token", + "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", + "type": "BEP20", + "symbol": "1INCH", + "decimals": 18, + "status": "active", + "id": "0x111111111117dC0aa78b770fA6A738034120C302", + "tags": [ + "defi" + ], + "links": [ + { + "name": "blog", + "url": "https://1inch-exchange.medium.com/" + }, + { + "name": "x", + "url": "https://x.com/1inchExchange" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/trustapp" + }, + { + "name": "telegram", + "url": "https://t.me/OneInchExchange" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/1inch/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x111111111117dC0aa78b770fA6A738034120C302/logo.png b/blockchains/smartchain/assets/0x111111111117dC0aa78b770fA6A738034120C302/logo.png new file mode 100644 index 00000000..fc04d19d Binary files /dev/null and b/blockchains/smartchain/assets/0x111111111117dC0aa78b770fA6A738034120C302/logo.png differ diff --git a/blockchains/smartchain/assets/0x112Fbe7f60329E9E2D232008E56F94D1582aE3bc/info.json b/blockchains/smartchain/assets/0x112Fbe7f60329E9E2D232008E56F94D1582aE3bc/info.json new file mode 100644 index 00000000..492a544c --- /dev/null +++ b/blockchains/smartchain/assets/0x112Fbe7f60329E9E2D232008E56F94D1582aE3bc/info.json @@ -0,0 +1,25 @@ +{ + "name": "Baby Floki Billionaire", + "website": "http://babyflokibillionaire.com/", + "description": "BabyflokiBillionaire is a meme token based on Floki hype", + "explorer": "https://bscscan.com/token/0x112Fbe7f60329E9E2D232008E56F94D1582aE3bc", + "type": "BEP20", + "symbol": "BabyFB", + "decimals": 9, + "status": "active", + "id": "0x112Fbe7f60329E9E2D232008E56F94D1582aE3bc", + "links": [ + { + "name": "x", + "url": "https://x.com/BabyFlokiBLN" + }, + { + "name": "facebook", + "url": "https://facebook.com/Baby-Floki-Billionaire-104520351993111" + }, + { + "name": "telegram", + "url": "https://t.me/babyflokibillionaire" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x112Fbe7f60329E9E2D232008E56F94D1582aE3bc/logo.png b/blockchains/smartchain/assets/0x112Fbe7f60329E9E2D232008E56F94D1582aE3bc/logo.png new file mode 100644 index 00000000..3421a96c Binary files /dev/null and b/blockchains/smartchain/assets/0x112Fbe7f60329E9E2D232008E56F94D1582aE3bc/logo.png differ diff --git a/blockchains/smartchain/assets/0x11582Ef4642B1e7F0a023804B497656E2663bC9B/info.json b/blockchains/smartchain/assets/0x11582Ef4642B1e7F0a023804B497656E2663bC9B/info.json new file mode 100644 index 00000000..0a6c7298 --- /dev/null +++ b/blockchains/smartchain/assets/0x11582Ef4642B1e7F0a023804B497656E2663bC9B/info.json @@ -0,0 +1,29 @@ +{ + "name": "KCCPAD", + "type": "BEP20", + "symbol": "KCCPAD", + "decimals": 18, + "website": "https://KCCPAD.io", + "description": "KCCPad is the first major launch pad on KCC. KCCPad brings stabilty, safety and amazing opportunities on the new and highly anticipated KuCoin Community Chain!", + "explorer": "https://bscscan.com/token/0x11582Ef4642B1e7F0a023804B497656E2663bC9B", + "status": "active", + "id": "0x11582Ef4642B1e7F0a023804B497656E2663bC9B", + "links": [ + { + "name": "x", + "url": "https://x.com/KCCPad_Official" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kccpad" + }, + { + "name": "telegram", + "url": "https://t.me/KCCPad_Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kccpad/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x11582Ef4642B1e7F0a023804B497656E2663bC9B/logo.png b/blockchains/smartchain/assets/0x11582Ef4642B1e7F0a023804B497656E2663bC9B/logo.png new file mode 100644 index 00000000..cb6efa7d Binary files /dev/null and b/blockchains/smartchain/assets/0x11582Ef4642B1e7F0a023804B497656E2663bC9B/logo.png differ diff --git a/blockchains/smartchain/assets/0x1162E2EfCE13f99Ed259fFc24d99108aAA0ce935/info.json b/blockchains/smartchain/assets/0x1162E2EfCE13f99Ed259fFc24d99108aAA0ce935/info.json new file mode 100644 index 00000000..fd4889e0 --- /dev/null +++ b/blockchains/smartchain/assets/0x1162E2EfCE13f99Ed259fFc24d99108aAA0ce935/info.json @@ -0,0 +1,11 @@ +{ + "name": "CluCoin", + "website": "https://clucoin.com", + "description": "Hold, earn and help others in need. Hyper Deflationary Token with Smart Staking System. ", + "explorer": "https://bscscan.com/token/0x1162e2efce13f99ed259ffc24d99108aaa0ce935", + "type": "BEP20", + "symbol": "CLU", + "decimals": 9, + "status": "active", + "id": "0x1162E2EfCE13f99Ed259fFc24d99108aAA0ce935" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1162E2EfCE13f99Ed259fFc24d99108aAA0ce935/logo.png b/blockchains/smartchain/assets/0x1162E2EfCE13f99Ed259fFc24d99108aAA0ce935/logo.png new file mode 100644 index 00000000..43a39681 Binary files /dev/null and b/blockchains/smartchain/assets/0x1162E2EfCE13f99Ed259fFc24d99108aAA0ce935/logo.png differ diff --git a/blockchains/smartchain/assets/0x11883Cdea6bAb720092791cc89affa54428Ce069/info.json b/blockchains/smartchain/assets/0x11883Cdea6bAb720092791cc89affa54428Ce069/info.json new file mode 100644 index 00000000..2f9787f7 --- /dev/null +++ b/blockchains/smartchain/assets/0x11883Cdea6bAb720092791cc89affa54428Ce069/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream BTCB Token", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x11883Cdea6bAb720092791cc89affa54428Ce069", + "type": "BEP20", + "symbol": "crBTCB", + "decimals": 8, + "status": "active", + "id": "0x11883Cdea6bAb720092791cc89affa54428Ce069", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x11883Cdea6bAb720092791cc89affa54428Ce069/logo.png b/blockchains/smartchain/assets/0x11883Cdea6bAb720092791cc89affa54428Ce069/logo.png new file mode 100644 index 00000000..2bb9c076 Binary files /dev/null and b/blockchains/smartchain/assets/0x11883Cdea6bAb720092791cc89affa54428Ce069/logo.png differ diff --git a/blockchains/smartchain/assets/0x1188d953aFC697C031851169EEf640F23ac8529C/info.json b/blockchains/smartchain/assets/0x1188d953aFC697C031851169EEf640F23ac8529C/info.json new file mode 100644 index 00000000..4e09ec48 --- /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 00000000..c05d45d4 Binary files /dev/null and b/blockchains/smartchain/assets/0x1188d953aFC697C031851169EEf640F23ac8529C/logo.png differ diff --git a/blockchains/smartchain/assets/0x118F073796821DA3E9901061B05c0b36377B877e/info.json b/blockchains/smartchain/assets/0x118F073796821DA3E9901061B05c0b36377B877e/info.json new file mode 100644 index 00000000..dc26e7e3 --- /dev/null +++ b/blockchains/smartchain/assets/0x118F073796821DA3E9901061B05c0b36377B877e/info.json @@ -0,0 +1,11 @@ +{ + "name": "catecoin 1", + "website": "http://catecoin.club", + "description": "Decentralised MEME Platform with NFT", + "explorer": "https://bscscan.com/token/0x118f073796821da3e9901061b05c0b36377b877e", + "type": "BEP20", + "symbol": "CATEv1", + "decimals": 8, + "status": "abandoned", + "id": "0x118F073796821DA3E9901061B05c0b36377B877e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x11C0c93035d1302083eB09841042cFa582839A8C/info.json b/blockchains/smartchain/assets/0x11C0c93035d1302083eB09841042cFa582839A8C/info.json new file mode 100644 index 00000000..d6104593 --- /dev/null +++ b/blockchains/smartchain/assets/0x11C0c93035d1302083eB09841042cFa582839A8C/info.json @@ -0,0 +1,33 @@ +{ + "name": "Kaiken Shiba", + "type": "BEP20", + "symbol": "KSHIB", + "decimals": 9, + "website": "https://kaikenshiba.com/", + "description": "Kaiken Shiba is not only hyper-deflationary with a built-in smart betting system to reward holders, but also helps save dogs that are in need.", + "explorer": "https://bscscan.com/token/0x11C0c93035d1302083eB09841042cFa582839A8C", + "status": "active", + "id": "0x11C0c93035d1302083eB09841042cFa582839A8C", + "links": [ + { + "name": "telegram", + "url": "https://t.me/KaiKenShiba_Chat" + }, + { + "name": "x", + "url": "https://x.com/KaikenShiba" + }, + { + "name": "github", + "url": "https://github.com/KaiKenShiba" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/KaikenShiba" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC5Wchz1uKKWHnEVGU7AWagw" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x11C0c93035d1302083eB09841042cFa582839A8C/logo.png b/blockchains/smartchain/assets/0x11C0c93035d1302083eB09841042cFa582839A8C/logo.png new file mode 100644 index 00000000..369cfe61 Binary files /dev/null and b/blockchains/smartchain/assets/0x11C0c93035d1302083eB09841042cFa582839A8C/logo.png differ diff --git a/blockchains/smartchain/assets/0x11Eecc7c164B185dc54534DcE21fDA807D6F301a/info.json b/blockchains/smartchain/assets/0x11Eecc7c164B185dc54534DcE21fDA807D6F301a/info.json new file mode 100644 index 00000000..ba22d182 --- /dev/null +++ b/blockchains/smartchain/assets/0x11Eecc7c164B185dc54534DcE21fDA807D6F301a/info.json @@ -0,0 +1,11 @@ +{ + "name": "BPlanted", + "type": "BEP20", + "symbol": "BPD", + "decimals": 9, + "website": "https://bplanted.com", + "description": "BPlanted was created to support charities working to combat deforestation, we use cryptocurrencies as a new way to collect and distribute donations to various charities that we and the community, believe in.", + "explorer": "https://bscscan.com/token/0x11Eecc7c164B185dc54534DcE21fDA807D6F301a", + "status": "active", + "id": "0x11Eecc7c164B185dc54534DcE21fDA807D6F301a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x11Eecc7c164B185dc54534DcE21fDA807D6F301a/logo.png b/blockchains/smartchain/assets/0x11Eecc7c164B185dc54534DcE21fDA807D6F301a/logo.png new file mode 100644 index 00000000..c1294dba Binary files /dev/null and b/blockchains/smartchain/assets/0x11Eecc7c164B185dc54534DcE21fDA807D6F301a/logo.png differ diff --git a/blockchains/smartchain/assets/0x11F6ECC9E2658627e0876212f1078b9F84d3196e/info.json b/blockchains/smartchain/assets/0x11F6ECC9E2658627e0876212f1078b9F84d3196e/info.json new file mode 100644 index 00000000..9395b3ee --- /dev/null +++ b/blockchains/smartchain/assets/0x11F6ECC9E2658627e0876212f1078b9F84d3196e/info.json @@ -0,0 +1,11 @@ +{ + "name": "2local", + "website": "https://2local.io/", + "description": "2LC BEP20 based token created by 2local for Sustainability and Prosperity for all.", + "explorer": "https://bscscan.com/token/0x11F6ECC9E2658627e0876212f1078b9F84d3196e", + "type": "BEP20", + "symbol": "2LC", + "decimals": 18, + "status": "active", + "id": "0x11F6ECC9E2658627e0876212f1078b9F84d3196e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x11F6ECC9E2658627e0876212f1078b9F84d3196e/logo.png b/blockchains/smartchain/assets/0x11F6ECC9E2658627e0876212f1078b9F84d3196e/logo.png new file mode 100644 index 00000000..cf95e9a3 Binary files /dev/null and b/blockchains/smartchain/assets/0x11F6ECC9E2658627e0876212f1078b9F84d3196e/logo.png differ diff --git a/blockchains/smartchain/assets/0x11a9E48860531ee43C6097192b28A45BA48e4444/info.json b/blockchains/smartchain/assets/0x11a9E48860531ee43C6097192b28A45BA48e4444/info.json new file mode 100644 index 00000000..f7504311 --- /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/0x11a9a7E3C320eaa80B8eCB223a10c5ae281d9AE0/info.json b/blockchains/smartchain/assets/0x11a9a7E3C320eaa80B8eCB223a10c5ae281d9AE0/info.json new file mode 100644 index 00000000..cea6d705 --- /dev/null +++ b/blockchains/smartchain/assets/0x11a9a7E3C320eaa80B8eCB223a10c5ae281d9AE0/info.json @@ -0,0 +1,11 @@ +{ + "name": "NFTD Protocol", + "website": "https://nft.uquid.com/", + "description": "NFTD is a smart NFT supermarket system for digitals products. In this smart shopping system, the sellers and each product they sell are identified as a unique tokenID. Once the transaction is completed, the buyer's ownership will be confirmed immediately.", + "explorer": "https://bscscan.com/token/0x11a9a7E3C320eaa80B8eCB223a10c5ae281d9AE0", + "type": "BEP20", + "symbol": "NFTD", + "decimals": 18, + "status": "active", + "id": "0x11a9a7E3C320eaa80B8eCB223a10c5ae281d9AE0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x11a9a7E3C320eaa80B8eCB223a10c5ae281d9AE0/logo.png b/blockchains/smartchain/assets/0x11a9a7E3C320eaa80B8eCB223a10c5ae281d9AE0/logo.png new file mode 100644 index 00000000..29a5e6b8 Binary files /dev/null and b/blockchains/smartchain/assets/0x11a9a7E3C320eaa80B8eCB223a10c5ae281d9AE0/logo.png differ diff --git a/blockchains/smartchain/assets/0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4/info.json b/blockchains/smartchain/assets/0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4/info.json new file mode 100644 index 00000000..e5d8459b --- /dev/null +++ b/blockchains/smartchain/assets/0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4/info.json @@ -0,0 +1,32 @@ +{ + "name": "DragonKing", + "type": "BEP20", + "symbol": "DragonKing", + "decimals": 18, + "website": "https://dragonkingunited.com", + "description": "Dragonking is lords over the sea, also a symbol of good fortune and strength. Dragonking is 100% community driven token. Dragonking community is the strongest community you'll find, supportive of one another, and pushing each other towards success. We rewards Dragonking holder who more than 15 billion with USDT based on on-chain transaction.", + "explorer": "https://bscscan.com/token/0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4", + "status": "active", + "id": "0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dragonking" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/dragonking" + }, + { + "name": "telegram", + "url": "https://t.me/dragonkingofficialchannel" + }, + { + "name": "x", + "url": "https://x.com/Dking_united99" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4/logo.png b/blockchains/smartchain/assets/0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4/logo.png new file mode 100644 index 00000000..d4ed8cd5 Binary files /dev/null and b/blockchains/smartchain/assets/0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4/logo.png differ diff --git a/blockchains/smartchain/assets/0x11b4E3311112B6726327aa85AbB65c6802Da8888/info.json b/blockchains/smartchain/assets/0x11b4E3311112B6726327aa85AbB65c6802Da8888/info.json new file mode 100644 index 00000000..50bcd55a --- /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/0x11ed1d93bdD3Ee180CA724AC82F911663f0daFB2/info.json b/blockchains/smartchain/assets/0x11ed1d93bdD3Ee180CA724AC82F911663f0daFB2/info.json new file mode 100644 index 00000000..0ba30af6 --- /dev/null +++ b/blockchains/smartchain/assets/0x11ed1d93bdD3Ee180CA724AC82F911663f0daFB2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Parallel Universe", + "type": "BEP20", + "symbol": "PUL", + "decimals": 9, + "website": "https://www.pulproject.com", + "description": "What is Paralel Universe? (PUL) It is a Defi project token which investors determine its price and is completely decentralized and connects different universes and realities designed on the fact that a different life you live in games generates income for you in the real world.", + "explorer": "https://bscscan.com/token/0x11ed1d93bdD3Ee180CA724AC82F911663f0daFB2", + "status": "active", + "id": "0x11ed1d93bdD3Ee180CA724AC82F911663f0daFB2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x11ed1d93bdD3Ee180CA724AC82F911663f0daFB2/logo.png b/blockchains/smartchain/assets/0x11ed1d93bdD3Ee180CA724AC82F911663f0daFB2/logo.png new file mode 100644 index 00000000..7bd34eea Binary files /dev/null and b/blockchains/smartchain/assets/0x11ed1d93bdD3Ee180CA724AC82F911663f0daFB2/logo.png differ diff --git a/blockchains/smartchain/assets/0x1203355742e76875154C0D13eB81DCD7711dC7d9/info.json b/blockchains/smartchain/assets/0x1203355742e76875154C0D13eB81DCD7711dC7d9/info.json new file mode 100644 index 00000000..3efe95d0 --- /dev/null +++ b/blockchains/smartchain/assets/0x1203355742e76875154C0D13eB81DCD7711dC7d9/info.json @@ -0,0 +1,12 @@ +{ + "name": "USDX", + "website": "https://kava.io", + "description": "USDX is a decentralized and crypto-backed stablecoin issued by the Kava DeFi platform.", + "explorer": "https://bscscan.com/token/0x1203355742e76875154c0d13eb81dcd7711dc7d9", + "research": "", + "type": "BEP20", + "symbol": "USDX", + "decimals": 6, + "status": "active", + "id": "0x1203355742e76875154C0D13eB81DCD7711dC7d9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1203355742e76875154C0D13eB81DCD7711dC7d9/logo.png b/blockchains/smartchain/assets/0x1203355742e76875154C0D13eB81DCD7711dC7d9/logo.png new file mode 100644 index 00000000..18d57e65 Binary files /dev/null and b/blockchains/smartchain/assets/0x1203355742e76875154C0D13eB81DCD7711dC7d9/logo.png differ diff --git a/blockchains/smartchain/assets/0x123458C167a371250d325Bd8B1ffF12C8AF692A7/info.json b/blockchains/smartchain/assets/0x123458C167a371250d325Bd8B1ffF12C8AF692A7/info.json new file mode 100644 index 00000000..68c6e6b8 --- /dev/null +++ b/blockchains/smartchain/assets/0x123458C167a371250d325Bd8B1ffF12C8AF692A7/info.json @@ -0,0 +1,48 @@ +{ + "name": "DRAC Token", + "type": "BEP20", + "symbol": "DRAC", + "decimals": 18, + "website": "https://drac.io", + "description": "Decentralized Rewarding Autonomous Chain.", + "explorer": "https://bscscan.com/token/0x123458C167a371250d325Bd8B1ffF12C8AF692A7", + "status": "active", + "id": "0x123458C167a371250d325Bd8B1ffF12C8AF692A7", + "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": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x123458C167a371250d325Bd8B1ffF12C8AF692A7/logo.png b/blockchains/smartchain/assets/0x123458C167a371250d325Bd8B1ffF12C8AF692A7/logo.png new file mode 100644 index 00000000..e49a73eb Binary files /dev/null and b/blockchains/smartchain/assets/0x123458C167a371250d325Bd8B1ffF12C8AF692A7/logo.png differ diff --git a/blockchains/smartchain/assets/0x123f92226C626AdC919aD122d6cc3C20A6c25666/info.json b/blockchains/smartchain/assets/0x123f92226C626AdC919aD122d6cc3C20A6c25666/info.json new file mode 100644 index 00000000..802e8cbf --- /dev/null +++ b/blockchains/smartchain/assets/0x123f92226C626AdC919aD122d6cc3C20A6c25666/info.json @@ -0,0 +1,11 @@ +{ + "name": "PANGEA", + "type": "BEP20", + "symbol": "POC", + "decimals": 9, + "description": "THE ONLY COIN THAT REWARDS HOLDERS AND PLACES TRASH BARRIERS IN THE MOST POLLUTING RIVERS OF THE WORLD", + "website": "https://pangeamovement.com/pages/pangea-coin", + "explorer": "https://bscscan.com/token/0x123f92226c626adc919ad122d6cc3c20a6c25666", + "status": "active", + "id": "0x123f92226C626AdC919aD122d6cc3C20A6c25666" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x123f92226C626AdC919aD122d6cc3C20A6c25666/logo.png b/blockchains/smartchain/assets/0x123f92226C626AdC919aD122d6cc3C20A6c25666/logo.png new file mode 100644 index 00000000..221e30e1 Binary files /dev/null and b/blockchains/smartchain/assets/0x123f92226C626AdC919aD122d6cc3C20A6c25666/logo.png differ diff --git a/blockchains/smartchain/assets/0x127CF9704DDFcf0e9eC1Dc20f11877731D18ac34/info.json b/blockchains/smartchain/assets/0x127CF9704DDFcf0e9eC1Dc20f11877731D18ac34/info.json new file mode 100644 index 00000000..0bc69dd8 --- /dev/null +++ b/blockchains/smartchain/assets/0x127CF9704DDFcf0e9eC1Dc20f11877731D18ac34/info.json @@ -0,0 +1,11 @@ +{ + "name": "Saiyan Inu", + "website": "https://saiyaninu.finance", + "description": "Charity DeFi NFT token", + "explorer": "https://bscscan.com/token/0x127cf9704ddfcf0e9ec1dc20f11877731d18ac34", + "type": "BEP20", + "symbol": "SAYAN", + "decimals": 9, + "status": "active", + "id": "0x127CF9704DDFcf0e9eC1Dc20f11877731D18ac34" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x127CF9704DDFcf0e9eC1Dc20f11877731D18ac34/logo.png b/blockchains/smartchain/assets/0x127CF9704DDFcf0e9eC1Dc20f11877731D18ac34/logo.png new file mode 100644 index 00000000..11a25e9c Binary files /dev/null and b/blockchains/smartchain/assets/0x127CF9704DDFcf0e9eC1Dc20f11877731D18ac34/logo.png differ diff --git a/blockchains/smartchain/assets/0x12819623921Be0F4d5ebfC12C75E6D08a1683080/info.json b/blockchains/smartchain/assets/0x12819623921Be0F4d5ebfC12C75E6D08a1683080/info.json new file mode 100644 index 00000000..9cbfd66b --- /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 00000000..a459a8e1 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 new file mode 100644 index 00000000..2964537f --- /dev/null +++ b/blockchains/smartchain/assets/0x129385C4ACd0075e45A0C9a5177BdfEc9678A138/info.json @@ -0,0 +1,40 @@ +{ + "name": "Metakings", + "type": "BEP20", + "symbol": "MTK", + "decimals": 18, + "website": "https://metakings.ai", + "description": "Metakings is an AI-powered fighting universe in which anyone can earn rewards such as tokens and NFTs through competent gameplay and contributions to the ecosystem. Players can engage in combat, gather resources, develop their characters, and establish their own land-based kingdoms. The game will be powered by its official token, the Metakings token ($MTK). In-game characters can also be collected as NFTs in the game and exchanged for tokens in our official NFT marketplace.", + "explorer": "https://bscscan.com/token/0x129385C4ACd0075e45A0C9a5177BdfEc9678A138", + "status": "active", + "id": "0x129385C4ACd0075e45A0C9a5177BdfEc9678A138", + "tags": [ + "gamefi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/metakingsai" + }, + { + "name": "github", + "url": "https://github.com/metakings" + }, + { + "name": "telegram", + "url": "https://t.me/metakings" + }, + { + "name": "telegram_news", + "url": "https://t.me/metakingsann" + }, + { + "name": "blog", + "url": "https://metakings.medium.com" + }, + { + "name": "docs", + "url": "https://docs.metakings.ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x129385C4ACd0075e45A0C9a5177BdfEc9678A138/logo.png b/blockchains/smartchain/assets/0x129385C4ACd0075e45A0C9a5177BdfEc9678A138/logo.png new file mode 100644 index 00000000..e2ac8ff4 Binary files /dev/null and b/blockchains/smartchain/assets/0x129385C4ACd0075e45A0C9a5177BdfEc9678A138/logo.png differ diff --git a/blockchains/smartchain/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json b/blockchains/smartchain/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json new file mode 100644 index 00000000..56a0816b --- /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 00000000..9939ad9e 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 00000000..2f8d0ec2 --- /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 00000000..1add0de4 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 00000000..0da51ddc --- /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 00000000..420a5f88 Binary files /dev/null and b/blockchains/smartchain/assets/0x12B4356C65340Fb02cdff01293F95FEBb1512F3b/logo.png differ diff --git a/blockchains/smartchain/assets/0x12B6fFBa41844a51A25E13065d393e54Af0633df/info.json b/blockchains/smartchain/assets/0x12B6fFBa41844a51A25E13065d393e54Af0633df/info.json new file mode 100644 index 00000000..dd93751d --- /dev/null +++ b/blockchains/smartchain/assets/0x12B6fFBa41844a51A25E13065d393e54Af0633df/info.json @@ -0,0 +1,11 @@ +{ + "name": "DartChain", + "website": "https://dartchain.xyz", + "description": "Dart Chain Finance The Advanced DeFi Platform Of The Future!", + "explorer": "https://bscscan.com/token/0x12B6fFBa41844a51A25E13065d393e54Af0633df", + "type": "BEP20", + "symbol": "DART", + "decimals": 8, + "status": "active", + "id": "0x12B6fFBa41844a51A25E13065d393e54Af0633df" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x12B6fFBa41844a51A25E13065d393e54Af0633df/logo.png b/blockchains/smartchain/assets/0x12B6fFBa41844a51A25E13065d393e54Af0633df/logo.png new file mode 100644 index 00000000..fab43786 Binary files /dev/null and b/blockchains/smartchain/assets/0x12B6fFBa41844a51A25E13065d393e54Af0633df/logo.png differ diff --git a/blockchains/smartchain/assets/0x12B7aDC48416A103F63E7e6210f62C81dfB91fD0/info.json b/blockchains/smartchain/assets/0x12B7aDC48416A103F63E7e6210f62C81dfB91fD0/info.json new file mode 100644 index 00000000..9410cfd8 --- /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 00000000..2ce033b0 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 new file mode 100644 index 00000000..6dd3cd7a --- /dev/null +++ b/blockchains/smartchain/assets/0x12BB890508c125661E03b09EC06E404bc9289040/info.json @@ -0,0 +1,29 @@ +{ + "name": "Radio Caca V2", + "website": "https://www.radiocaca.com", + "description": "Radio Caca is the payment token for NFTs. Radio Caca (as “RACA”), is expected to gain rapid worldwide adoption in the music, digital art and fashion area across the world. A deflation token with limited supply. A community-driven token for NFT payment sector.", + "explorer": "https://bscscan.com/token/0x12BB890508c125661E03b09EC06E404bc9289040", + "type": "BEP20", + "symbol": "RACA", + "decimals": 18, + "status": "active", + "id": "0x12BB890508c125661E03b09EC06E404bc9289040", + "links": [ + { + "name": "github", + "url": "https://github.com/radiocaca/radio-caca" + }, + { + "name": "x", + "url": "https://x.com/RadioCacaNFT" + }, + { + "name": "medium", + "url": "https://radiocaca.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/RadioCaca" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x12BB890508c125661E03b09EC06E404bc9289040/logo.png b/blockchains/smartchain/assets/0x12BB890508c125661E03b09EC06E404bc9289040/logo.png new file mode 100644 index 00000000..ba0b19d9 Binary files /dev/null and b/blockchains/smartchain/assets/0x12BB890508c125661E03b09EC06E404bc9289040/logo.png differ diff --git a/blockchains/smartchain/assets/0x12BeffdCEcb547640DC30e1495E4B9cdc21922b4/info.json b/blockchains/smartchain/assets/0x12BeffdCEcb547640DC30e1495E4B9cdc21922b4/info.json new file mode 100644 index 00000000..23b6f203 --- /dev/null +++ b/blockchains/smartchain/assets/0x12BeffdCEcb547640DC30e1495E4B9cdc21922b4/info.json @@ -0,0 +1,14 @@ +{ + "name": "Serum (Portal from Solana)", + "type": "BEP20", + "symbol": "SRMso", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://projectserum.com/", + "explorer": "https://bscscan.com/token/0x12BeffdCEcb547640DC30e1495E4B9cdc21922b4", + "status": "active", + "id": "0x12BeffdCEcb547640DC30e1495E4B9cdc21922b4", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x12BeffdCEcb547640DC30e1495E4B9cdc21922b4/logo.png b/blockchains/smartchain/assets/0x12BeffdCEcb547640DC30e1495E4B9cdc21922b4/logo.png new file mode 100644 index 00000000..94f79d70 Binary files /dev/null and b/blockchains/smartchain/assets/0x12BeffdCEcb547640DC30e1495E4B9cdc21922b4/logo.png differ diff --git a/blockchains/smartchain/assets/0x12Da2f2761038486271C99DA7e0FB4413e2B5E38/info.json b/blockchains/smartchain/assets/0x12Da2f2761038486271C99DA7e0FB4413e2B5E38/info.json new file mode 100644 index 00000000..0df63ed5 --- /dev/null +++ b/blockchains/smartchain/assets/0x12Da2f2761038486271C99DA7e0FB4413e2B5E38/info.json @@ -0,0 +1,33 @@ +{ + "name": "NFTBlackMarket", + "website": "https://nftblackmarket.io", + "description": "In NFTBlackMarket you can create, collect, and trade NFT Tokens.", + "explorer": "https://bscscan.com/token/0x12Da2f2761038486271C99DA7e0FB4413e2B5E38", + "type": "BEP20", + "symbol": "NBM", + "decimals": 9, + "status": "active", + "id": "0x12Da2f2761038486271C99DA7e0FB4413e2B5E38", + "links": [ + { + "name": "github", + "url": "https://github.com/NFTBlackMarket" + }, + { + "name": "x", + "url": "https://x.com/NFT_BlackMarket" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/NFT_BlackMarket" + }, + { + "name": "telegram", + "url": "https://t.me/NFTBlackMarketChat" + }, + { + "name": "whitepaper", + "url": "https://nftblackmarket.io/static/pdf/NFTBlackMarket.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x12Da2f2761038486271C99DA7e0FB4413e2B5E38/logo.png b/blockchains/smartchain/assets/0x12Da2f2761038486271C99DA7e0FB4413e2B5E38/logo.png new file mode 100644 index 00000000..fc144f14 Binary files /dev/null and b/blockchains/smartchain/assets/0x12Da2f2761038486271C99DA7e0FB4413e2B5E38/logo.png differ diff --git a/blockchains/smartchain/assets/0x12b83d77a606D8f5c4CE29dfFdb592C523364995/info.json b/blockchains/smartchain/assets/0x12b83d77a606D8f5c4CE29dfFdb592C523364995/info.json new file mode 100644 index 00000000..ec6731a4 --- /dev/null +++ b/blockchains/smartchain/assets/0x12b83d77a606D8f5c4CE29dfFdb592C523364995/info.json @@ -0,0 +1,36 @@ +{ + "name": "Baby Yooshi", + "website": "https://www.babyyooshi.com/", + "description": "Baby YooShi is a token on Binance Smart Chain boasting various features. BabyYooShi name and image are inspired by a dinosaur in Super Mario, whose name is Yoshi.", + "explorer": "https://bscscan.com/token/0x12b83d77a606d8f5c4ce29dffdb592c523364995", + "type": "BEP20", + "symbol": "BabyYooshi", + "decimals": 9, + "status": "active", + "id": "0x12b83d77a606D8f5c4CE29dfFdb592C523364995", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/BABYYOOSHI/BABYYOOSHI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-yooshi/" + }, + { + "name": "x", + "url": "https://x.com/baby_yooshi" + }, + { + "name": "telegram", + "url": "https://t.me/byooshi_offical" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/baby-yooshi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x12b83d77a606D8f5c4CE29dfFdb592C523364995/logo.png b/blockchains/smartchain/assets/0x12b83d77a606D8f5c4CE29dfFdb592C523364995/logo.png new file mode 100644 index 00000000..ed950131 Binary files /dev/null and b/blockchains/smartchain/assets/0x12b83d77a606D8f5c4CE29dfFdb592C523364995/logo.png differ diff --git a/blockchains/smartchain/assets/0x12c2Fc002DEaf2239dDa8cB92F3b28BbcbE96323/info.json b/blockchains/smartchain/assets/0x12c2Fc002DEaf2239dDa8cB92F3b28BbcbE96323/info.json new file mode 100644 index 00000000..27d0f98b --- /dev/null +++ b/blockchains/smartchain/assets/0x12c2Fc002DEaf2239dDa8cB92F3b28BbcbE96323/info.json @@ -0,0 +1,11 @@ +{ + "name": "Diamond Cash", + "website": "https://diamondcash.org", + "description": "Diamond Cash (DCASH) is a decentralized finance currency on the Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x12c2fc002deaf2239dda8cb92f3b28bbcbe96323", + "type": "BEP20", + "symbol": "DCASH", + "decimals": 18, + "status": "active", + "id": "0x12c2Fc002DEaf2239dDa8cB92F3b28BbcbE96323" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x12c2Fc002DEaf2239dDa8cB92F3b28BbcbE96323/logo.png b/blockchains/smartchain/assets/0x12c2Fc002DEaf2239dDa8cB92F3b28BbcbE96323/logo.png new file mode 100644 index 00000000..fcb80950 Binary files /dev/null and b/blockchains/smartchain/assets/0x12c2Fc002DEaf2239dDa8cB92F3b28BbcbE96323/logo.png differ diff --git a/blockchains/smartchain/assets/0x12e34cDf6A031a10FE241864c32fB03a4FDaD739/info.json b/blockchains/smartchain/assets/0x12e34cDf6A031a10FE241864c32fB03a4FDaD739/info.json new file mode 100644 index 00000000..1ab44c35 --- /dev/null +++ b/blockchains/smartchain/assets/0x12e34cDf6A031a10FE241864c32fB03a4FDaD739/info.json @@ -0,0 +1,11 @@ +{ + "name": "FREE coin", + "website": "https://FREEcoin.technology", + "description": "The FREE coin is the ideal start-to-crypto coin : large community, many exchangess and wallets, available on Ethereum, Binance and Tron.", + "explorer": "https://bscscan.com/token/0x12e34cDf6A031a10FE241864c32fB03a4FDaD739", + "type": "BEP20", + "symbol": "FREE", + "decimals": 18, + "status": "active", + "id": "0x12e34cDf6A031a10FE241864c32fB03a4FDaD739" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x12e34cDf6A031a10FE241864c32fB03a4FDaD739/logo.png b/blockchains/smartchain/assets/0x12e34cDf6A031a10FE241864c32fB03a4FDaD739/logo.png new file mode 100644 index 00000000..8d6a4587 Binary files /dev/null and b/blockchains/smartchain/assets/0x12e34cDf6A031a10FE241864c32fB03a4FDaD739/logo.png differ diff --git a/blockchains/smartchain/assets/0x1337a0617225edE6CcC5222DB205fA719cC28888/info.json b/blockchains/smartchain/assets/0x1337a0617225edE6CcC5222DB205fA719cC28888/info.json new file mode 100644 index 00000000..f5a89f30 --- /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/0x1337ace33C2B3Fc17d85f33dbD0Ed73a896148B5/info.json b/blockchains/smartchain/assets/0x1337ace33C2B3Fc17d85f33dbD0Ed73a896148B5/info.json new file mode 100644 index 00000000..45824578 --- /dev/null +++ b/blockchains/smartchain/assets/0x1337ace33C2B3Fc17d85f33dbD0Ed73a896148B5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gravitoken", + "website": "https://gravitoken.co.uk/", + "description": "Gravitoken is the first elastic supply token on BSC with Auto LP, token buyback and marketing provision", + "explorer": "https://bscscan.com/token/0x1337ace33C2B3Fc17d85f33dbD0Ed73a896148B5", + "type": "BEP20", + "symbol": "GRV", + "decimals": 9, + "status": "active", + "id": "0x1337ace33C2B3Fc17d85f33dbD0Ed73a896148B5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1337ace33C2B3Fc17d85f33dbD0Ed73a896148B5/logo.png b/blockchains/smartchain/assets/0x1337ace33C2B3Fc17d85f33dbD0Ed73a896148B5/logo.png new file mode 100644 index 00000000..0366ed41 Binary files /dev/null and b/blockchains/smartchain/assets/0x1337ace33C2B3Fc17d85f33dbD0Ed73a896148B5/logo.png differ diff --git a/blockchains/smartchain/assets/0x133Bb423d9248a336D2b3086b8F44A7DbFF3a13C/info.json b/blockchains/smartchain/assets/0x133Bb423d9248a336D2b3086b8F44A7DbFF3a13C/info.json new file mode 100644 index 00000000..db4a2290 --- /dev/null +++ b/blockchains/smartchain/assets/0x133Bb423d9248a336D2b3086b8F44A7DbFF3a13C/info.json @@ -0,0 +1,25 @@ +{ + "name": "SIL Finance Token V2", + "website": "https://sil.finance/", + "description": "SIL.Finance is a single sided yield aggregator (1 click hedging) with adventurous functional #NFT farming card add-ons.", + "explorer": "https://bscscan.com/token/0x133bb423d9248a336d2b3086b8f44a7dbff3a13c", + "type": "BEP20", + "symbol": "SIL", + "decimals": 18, + "status": "active", + "id": "0x133Bb423d9248a336D2b3086b8F44A7DbFF3a13C", + "links": [ + { + "name": "telegram", + "url": "https://t.me/sil_finance" + }, + { + "name": "x", + "url": "https://x.com/Sil_Finance" + }, + { + "name": "medium", + "url": "https://sil-finance.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x133Bb423d9248a336D2b3086b8F44A7DbFF3a13C/logo.png b/blockchains/smartchain/assets/0x133Bb423d9248a336D2b3086b8F44A7DbFF3a13C/logo.png new file mode 100644 index 00000000..b29cd62f Binary files /dev/null and b/blockchains/smartchain/assets/0x133Bb423d9248a336D2b3086b8F44A7DbFF3a13C/logo.png differ diff --git a/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/info.json b/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/info.json new file mode 100644 index 00000000..58a03890 --- /dev/null +++ b/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/info.json @@ -0,0 +1,12 @@ +{ + "name": "Travala.com", + "website": "https://travala.com", + "description": "Travala.com claims to be the leading blockchain-based travel booking platform.", + "explorer": "https://bscscan.com/token/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9", + "research": "https://research.binance.com/en/projects/travala", + "type": "BEP20", + "symbol": "AVA", + "decimals": 18, + "status": "abandoned", + "id": "0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x136BFcdec5DB31b565052451AD806014ab9F2b38/info.json b/blockchains/smartchain/assets/0x136BFcdec5DB31b565052451AD806014ab9F2b38/info.json new file mode 100644 index 00000000..c39502e4 --- /dev/null +++ b/blockchains/smartchain/assets/0x136BFcdec5DB31b565052451AD806014ab9F2b38/info.json @@ -0,0 +1,29 @@ +{ + "name": "CANDYLAD", + "type": "BEP20", + "symbol": "CANDYLAD", + "decimals": 9, + "website": "https://candylad.net/", + "description": "Building a Blockchain 4.0 Charity Community", + "explorer": "https://bscscan.com/token/0x136BFcdec5DB31b565052451AD806014ab9F2b38", + "status": "active", + "id": "0x136BFcdec5DB31b565052451AD806014ab9F2b38", + "links": [ + { + "name": "x", + "url": "https://x.com/candyladbsc" + }, + { + "name": "telegram", + "url": "https://t.me/candyladen" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/candylad/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/candylad" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x136BFcdec5DB31b565052451AD806014ab9F2b38/logo.png b/blockchains/smartchain/assets/0x136BFcdec5DB31b565052451AD806014ab9F2b38/logo.png new file mode 100644 index 00000000..a41dff83 Binary files /dev/null and b/blockchains/smartchain/assets/0x136BFcdec5DB31b565052451AD806014ab9F2b38/logo.png differ diff --git a/blockchains/smartchain/assets/0x1382A2Fd1b9F5607D956b68491babA00e21bE472/info.json b/blockchains/smartchain/assets/0x1382A2Fd1b9F5607D956b68491babA00e21bE472/info.json new file mode 100644 index 00000000..34635ba3 --- /dev/null +++ b/blockchains/smartchain/assets/0x1382A2Fd1b9F5607D956b68491babA00e21bE472/info.json @@ -0,0 +1,38 @@ +{ + "name": "Bamboo", + "website": "https://pinkpanda.io", + "description": "Bamboo is is an ERC-20 compliant governance and utility token currently deployed on the BNB Smart Chain. It is used within the BAM ecosystem to enable simplified onboarding into digital assets, via a decentralized community coupled with Bamboo Asset Management building a mobile-first digital assets platform.", + "explorer": "https://bscscan.com/token/0x1382a2fd1b9f5607d956b68491baba00e21be472", + "type": "BEP20", + "symbol": "BAM", + "decimals": 9, + "status": "active", + "id": "0x1382A2Fd1b9F5607D956b68491babA00e21bE472", + "links": [ + { + "name": "x", + "url": "https://x.com/bamboodaoio" + }, + { + "name": "telegram", + "url": "https://t.me/PinkPandaHoldingsInc" + }, + { + "name": "github", + "url": "https://github.com/orgs/bamboodao/" + }, + { + "name": "medium", + "url": "https://medium.com/@PinkPandaFinance" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/PinkPanda/" + } + ], + "tags": [ + "defi", + "nft", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1382A2Fd1b9F5607D956b68491babA00e21bE472/logo.png b/blockchains/smartchain/assets/0x1382A2Fd1b9F5607D956b68491babA00e21bE472/logo.png new file mode 100644 index 00000000..8483faef Binary files /dev/null and b/blockchains/smartchain/assets/0x1382A2Fd1b9F5607D956b68491babA00e21bE472/logo.png differ diff --git a/blockchains/smartchain/assets/0x138ED6833ff4E8811E1FEa0D005E13726c8886F9/info.json b/blockchains/smartchain/assets/0x138ED6833ff4E8811E1FEa0D005E13726c8886F9/info.json new file mode 100644 index 00000000..86d4617c --- /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 00000000..f960a127 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 new file mode 100644 index 00000000..948a319b --- /dev/null +++ b/blockchains/smartchain/assets/0x13958e1eb63dFB8540Eaf6ed7DcbBc1A60FD52AF/info.json @@ -0,0 +1,21 @@ +{ + "name": "Frenchie", + "website": "https://frenchie.tech/", + "description": "Frenchie Token is a BEP20 Community Token based around French Bulldogs and dedicated to all fenchies across the world. With important development team and flexible in development", + "explorer": "https://bscscan.com/token/0x13958e1eb63dfb8540eaf6ed7dcbbc1a60fd52af", + "type": "BEP20", + "symbol": "FREN", + "decimals": 18, + "status": "active", + "id": "0x13958e1eb63dFB8540Eaf6ed7DcbBc1A60FD52AF", + "links": [ + { + "name": "x", + "url": "https://x.com/FrenchieToken" + }, + { + "name": "telegram", + "url": "https://t.me/FrenchieToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x13958e1eb63dFB8540Eaf6ed7DcbBc1A60FD52AF/logo.png b/blockchains/smartchain/assets/0x13958e1eb63dFB8540Eaf6ed7DcbBc1A60FD52AF/logo.png new file mode 100644 index 00000000..9b9afbb5 Binary files /dev/null and b/blockchains/smartchain/assets/0x13958e1eb63dFB8540Eaf6ed7DcbBc1A60FD52AF/logo.png differ diff --git a/blockchains/smartchain/assets/0x13969BbEEce18Da1354561E9B59Dc2937Ef5C95C/info.json b/blockchains/smartchain/assets/0x13969BbEEce18Da1354561E9B59Dc2937Ef5C95C/info.json new file mode 100644 index 00000000..8b784ca6 --- /dev/null +++ b/blockchains/smartchain/assets/0x13969BbEEce18Da1354561E9B59Dc2937Ef5C95C/info.json @@ -0,0 +1,21 @@ +{ + "name": "SafeSex", + "website": "https://www.safesextoken.org", + "description": "SafeSex is a token designed for safely interacting with adult performers", + "explorer": "https://bscscan.com/token/0x13969bbeece18da1354561e9b59dc2937ef5c95c", + "symbol": "SAFESEX", + "type": "BEP20", + "decimals": 9, + "status": "active", + "id": "0x13969BbEEce18Da1354561E9B59Dc2937Ef5C95C", + "links": [ + { + "name": "x", + "url": "https://x.com/Safesex_token/" + }, + { + "name": "telegram", + "url": "https://t.me/SafesextokenReal" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x13969BbEEce18Da1354561E9B59Dc2937Ef5C95C/logo.png b/blockchains/smartchain/assets/0x13969BbEEce18Da1354561E9B59Dc2937Ef5C95C/logo.png new file mode 100644 index 00000000..c232cbfe Binary files /dev/null and b/blockchains/smartchain/assets/0x13969BbEEce18Da1354561E9B59Dc2937Ef5C95C/logo.png differ diff --git a/blockchains/smartchain/assets/0x139dd9203c8E46d15B3896814Dc9424c5e5559fA/info.json b/blockchains/smartchain/assets/0x139dd9203c8E46d15B3896814Dc9424c5e5559fA/info.json new file mode 100644 index 00000000..ab33ce0a --- /dev/null +++ b/blockchains/smartchain/assets/0x139dd9203c8E46d15B3896814Dc9424c5e5559fA/info.json @@ -0,0 +1,12 @@ +{ + "name": "OrcaX", + "website": "https://orcax.finance", + "description": "OX is a charity coin that donates 2% of every transaction directly to the Binance charity wallet.", + "explorer": "https://bscscan.com/token/0x139dd9203c8E46d15B3896814Dc9424c5e5559fA", + "research": "https://orcax.finance", + "type": "BEP20", + "symbol": "OX", + "decimals": 9, + "status": "active", + "id": "0x139dd9203c8E46d15B3896814Dc9424c5e5559fA" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x139dd9203c8E46d15B3896814Dc9424c5e5559fA/logo.png b/blockchains/smartchain/assets/0x139dd9203c8E46d15B3896814Dc9424c5e5559fA/logo.png new file mode 100644 index 00000000..595a8838 Binary files /dev/null and b/blockchains/smartchain/assets/0x139dd9203c8E46d15B3896814Dc9424c5e5559fA/logo.png differ diff --git a/blockchains/smartchain/assets/0x13Ab6739368a4e4abf24695bf52959224367391f/info.json b/blockchains/smartchain/assets/0x13Ab6739368a4e4abf24695bf52959224367391f/info.json new file mode 100644 index 00000000..a329e265 --- /dev/null +++ b/blockchains/smartchain/assets/0x13Ab6739368a4e4abf24695bf52959224367391f/info.json @@ -0,0 +1,55 @@ +{ + "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://bscscan.com/token/0x13ab6739368a4e4abf24695bf52959224367391f", + "type": "BEP20", + "symbol": "YGG", + "decimals": 18, + "status": "active", + "id": "0x13Ab6739368a4e4abf24695bf52959224367391f", + "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", + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x13Ab6739368a4e4abf24695bf52959224367391f/logo.png b/blockchains/smartchain/assets/0x13Ab6739368a4e4abf24695bf52959224367391f/logo.png new file mode 100644 index 00000000..0ddcda72 Binary files /dev/null and b/blockchains/smartchain/assets/0x13Ab6739368a4e4abf24695bf52959224367391f/logo.png differ diff --git a/blockchains/smartchain/assets/0x13Ad2D31925490B0E282D51AC1aE744f1da22C77/info.json b/blockchains/smartchain/assets/0x13Ad2D31925490B0E282D51AC1aE744f1da22C77/info.json new file mode 100644 index 00000000..9caf6674 --- /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 new file mode 100644 index 00000000..820ee906 --- /dev/null +++ b/blockchains/smartchain/assets/0x13DfE44c7B461222e10597E517e4485Ff4766582/info.json @@ -0,0 +1,29 @@ +{ + "name": "Moon Nation Token", + "website": "https://moonnation.org/", + "description": "Utility token to play and inGame economy of Moon Nation Game.", + "explorer": "https://bscscan.com/token/0x13DfE44c7B461222e10597E517e4485Ff4766582", + "type": "BEP20", + "symbol": "MNG", + "decimals": 9, + "status": "active", + "id": "0x13DfE44c7B461222e10597E517e4485Ff4766582", + "links": [ + { + "name": "x", + "url": "https://x.com/MoonNation0" + }, + { + "name": "telegram", + "url": "https://t.me/moonnation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moon-nation-game/" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x13DfE44c7B461222e10597E517e4485Ff4766582/logo.png b/blockchains/smartchain/assets/0x13DfE44c7B461222e10597E517e4485Ff4766582/logo.png new file mode 100644 index 00000000..46900ade Binary files /dev/null and b/blockchains/smartchain/assets/0x13DfE44c7B461222e10597E517e4485Ff4766582/logo.png differ diff --git a/blockchains/smartchain/assets/0x13E1070E3a388e53Ec35480Ff494538f9FFc5b8D/info.json b/blockchains/smartchain/assets/0x13E1070E3a388e53Ec35480Ff494538f9FFc5b8D/info.json new file mode 100644 index 00000000..001cddb9 --- /dev/null +++ b/blockchains/smartchain/assets/0x13E1070E3a388e53Ec35480Ff494538f9FFc5b8D/info.json @@ -0,0 +1,49 @@ +{ + "name": "BRICKS Token", + "website": "https://mybricksfinance.com/", + "description": "BRICKS is a token issued by MyBricks aiming to make property investment accessible for everyone.", + "explorer": "https://bscscan.com/token/0x13e1070e3a388e53ec35480ff494538f9ffc5b8d", + "type": "BEP20", + "symbol": "BRICKS", + "decimals": 9, + "status": "active", + "id": "0x13E1070E3a388e53Ec35480Ff494538f9FFc5b8D", + "links": [ + { + "name": "x", + "url": "https://x.com/MyBricksFinance" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MyBricksFinance/" + }, + { + "name": "whitepaper", + "url": "https://mybricksfinance.com/whitepaper" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/4Anv441AtLUxNDhk" + }, + { + "name": "facebook", + "url": "https://facebook.com/MyBricksFinance/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCSy6_IckShnzQjfJw5Xh9qQ" + }, + { + "name": "discord", + "url": "https://discord.com/xE5MVQRETy" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mybricks/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mybricks" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x13E1070E3a388e53Ec35480Ff494538f9FFc5b8D/logo.png b/blockchains/smartchain/assets/0x13E1070E3a388e53Ec35480Ff494538f9FFc5b8D/logo.png new file mode 100644 index 00000000..a92bca87 Binary files /dev/null and b/blockchains/smartchain/assets/0x13E1070E3a388e53Ec35480Ff494538f9FFc5b8D/logo.png differ diff --git a/blockchains/smartchain/assets/0x13a5c811093dd001C328b59a0CC9deC88951F042/info.json b/blockchains/smartchain/assets/0x13a5c811093dd001C328b59a0CC9deC88951F042/info.json new file mode 100644 index 00000000..6f25dd5a --- /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 00000000..8bc06a90 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 00000000..493e2c5c --- /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 00000000..6b7db502 Binary files /dev/null and b/blockchains/smartchain/assets/0x13aAC25C16a8c1FA93D78C4026CEE7166403A595/logo.png differ diff --git a/blockchains/smartchain/assets/0x13b6A55662f6591f8B8408Af1C73B017E32eEdB8/info.json b/blockchains/smartchain/assets/0x13b6A55662f6591f8B8408Af1C73B017E32eEdB8/info.json new file mode 100644 index 00000000..ed67b27b --- /dev/null +++ b/blockchains/smartchain/assets/0x13b6A55662f6591f8B8408Af1C73B017E32eEdB8/info.json @@ -0,0 +1,14 @@ +{ + "name": "Raydium (Portal)", + "type": "BEP20", + "symbol": "RAY", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://raydium.io/", + "explorer": "https://bscscan.com/token/0x13b6A55662f6591f8B8408Af1C73B017E32eEdB8", + "status": "active", + "id": "0x13b6A55662f6591f8B8408Af1C73B017E32eEdB8", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x13b6A55662f6591f8B8408Af1C73B017E32eEdB8/logo.png b/blockchains/smartchain/assets/0x13b6A55662f6591f8B8408Af1C73B017E32eEdB8/logo.png new file mode 100644 index 00000000..cd42f718 Binary files /dev/null and b/blockchains/smartchain/assets/0x13b6A55662f6591f8B8408Af1C73B017E32eEdB8/logo.png differ diff --git a/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/info.json b/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/info.json new file mode 100644 index 00000000..311782f6 --- /dev/null +++ b/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/info.json @@ -0,0 +1,37 @@ +{ + "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": "TUSDOLD", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x14016E85a25aeb13065688cAFB43044C2ef86784", + "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/0x14016E85a25aeb13065688cAFB43044C2ef86784/logo.png b/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/logo.png new file mode 100644 index 00000000..0ae677cd Binary files /dev/null and b/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/logo.png differ diff --git a/blockchains/smartchain/assets/0x1415E784282e11F3972D98b28A4A07f89b82170d/info.json b/blockchains/smartchain/assets/0x1415E784282e11F3972D98b28A4A07f89b82170d/info.json new file mode 100644 index 00000000..a373e637 --- /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 00000000..c55e5260 Binary files /dev/null and b/blockchains/smartchain/assets/0x1415E784282e11F3972D98b28A4A07f89b82170d/logo.png differ diff --git a/blockchains/smartchain/assets/0x14357D294fBabbE0fbF59503370c772d563b35b6/info.json b/blockchains/smartchain/assets/0x14357D294fBabbE0fbF59503370c772d563b35b6/info.json new file mode 100644 index 00000000..eb976247 --- /dev/null +++ b/blockchains/smartchain/assets/0x14357D294fBabbE0fbF59503370c772d563b35b6/info.json @@ -0,0 +1,11 @@ +{ + "name": "HummingBird Finance", + "type": "BEP20", + "symbol": "Hmng", + "decimals": 9, + "website": "https://www.hummingbirdbsc.org/", + "description": "Hummingbird Finance contract is designed to apply 3% tax to every transaction. 1.5% is distributed to the current holders and 1.5 % is burned forever which decreases supply of HMNG. ", + "explorer": "https://bscscan.com/token/0x14357d294fbabbe0fbf59503370c772d563b35b6", + "status": "active", + "id": "0x14357D294fBabbE0fbF59503370c772d563b35b6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x14357D294fBabbE0fbF59503370c772d563b35b6/logo.png b/blockchains/smartchain/assets/0x14357D294fBabbE0fbF59503370c772d563b35b6/logo.png new file mode 100644 index 00000000..c43d842a Binary files /dev/null and b/blockchains/smartchain/assets/0x14357D294fBabbE0fbF59503370c772d563b35b6/logo.png differ diff --git a/blockchains/smartchain/assets/0x1446f3CEdf4d86a9399E49f7937766E6De2A3AAB/info.json b/blockchains/smartchain/assets/0x1446f3CEdf4d86a9399E49f7937766E6De2A3AAB/info.json new file mode 100644 index 00000000..0da26319 --- /dev/null +++ b/blockchains/smartchain/assets/0x1446f3CEdf4d86a9399E49f7937766E6De2A3AAB/info.json @@ -0,0 +1,25 @@ +{ + "name": "Krown", + "website": "https://kingdefi.io", + "description": "Krown is a multi-chain yield aggregator.", + "explorer": "https://bscscan.com/token/0x1446f3CEdf4d86a9399E49f7937766E6De2A3AAB", + "type": "BEP20", + "symbol": "KRW", + "decimals": 18, + "status": "active", + "id": "0x1446f3CEdf4d86a9399E49f7937766E6De2A3AAB", + "links": [ + { + "name": "x", + "url": "https://x.com/KingDefi2" + }, + { + "name": "telegram", + "url": "https://t.me/KingDefi_Community" + }, + { + "name": "discord", + "url": "https://discord.com/invite/9d3RrbNvTM" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1446f3CEdf4d86a9399E49f7937766E6De2A3AAB/logo.png b/blockchains/smartchain/assets/0x1446f3CEdf4d86a9399E49f7937766E6De2A3AAB/logo.png new file mode 100644 index 00000000..84708139 Binary files /dev/null and b/blockchains/smartchain/assets/0x1446f3CEdf4d86a9399E49f7937766E6De2A3AAB/logo.png differ diff --git a/blockchains/smartchain/assets/0x147625C6300E013f5cD528633Fd1f22558C78888/info.json b/blockchains/smartchain/assets/0x147625C6300E013f5cD528633Fd1f22558C78888/info.json new file mode 100644 index 00000000..ca8893d0 --- /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 new file mode 100644 index 00000000..1fb910ee --- /dev/null +++ b/blockchains/smartchain/assets/0x1476e96FAdb37668d7680921297e2ab98Ec36c2F/info.json @@ -0,0 +1,29 @@ +{ + "name": "Floki Rocket", + "website": "https://flokirocket.finance/", + "description": "Alongside our limited edition NFT’s, Floki Rocket is a low tax reward token which has been designed to generously reward you in $BNB simply for holding!", + "explorer": "https://bscscan.com/token/0x1476e96FAdb37668d7680921297e2ab98Ec36c2F", + "type": "BEP20", + "symbol": "RLOKI", + "decimals": 18, + "status": "active", + "id": "0x1476e96FAdb37668d7680921297e2ab98Ec36c2F", + "links": [ + { + "name": "x", + "url": "https://x.com/rlokirocket" + }, + { + "name": "telegram", + "url": "https://t.me/floki_rocket_official" + }, + { + "name": "facebook", + "url": "https://facebook.com/Floki-Rocket-Token-100248829123164" + }, + { + "name": "whitepaper", + "url": "https://flokirocket.finance/Whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1476e96FAdb37668d7680921297e2ab98Ec36c2F/logo.png b/blockchains/smartchain/assets/0x1476e96FAdb37668d7680921297e2ab98Ec36c2F/logo.png new file mode 100644 index 00000000..843721f3 Binary files /dev/null and b/blockchains/smartchain/assets/0x1476e96FAdb37668d7680921297e2ab98Ec36c2F/logo.png differ diff --git a/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json new file mode 100644 index 00000000..e6ad8a3e --- /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 00000000..b26b7b80 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 new file mode 100644 index 00000000..6cef8408 --- /dev/null +++ b/blockchains/smartchain/assets/0x147E07976E1ae78287c33aAFAab87760d32E50A5/info.json @@ -0,0 +1,37 @@ +{ + "name": "dexIRA", + "type": "BEP20", + "symbol": "DEX", + "decimals": 9, + "website": "https://www.dexira.com", + "description": "dexIRA provides fully automated BNB redistribution, multi-currency dividend rewards, advanced buyback protocols, and tokenomics that promote longterm holding", + "explorer": "https://bscscan.com/token/0x147E07976E1ae78287c33aAFAab87760d32E50A5", + "status": "active", + "id": "0x147E07976E1ae78287c33aAFAab87760d32E50A5", + "links": [ + { + "name": "x", + "url": "https://x.com/dexiratoken" + }, + { + "name": "github", + "url": "https://github.com/dexira" + }, + { + "name": "telegram", + "url": "https://t.me/dexira" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/dexIRAtoken" + }, + { + "name": "whitepaper", + "url": "https://dexira.com/whitepaper" + }, + { + "name": "medium", + "url": "https://medium.com/@dexIRA" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x147E07976E1ae78287c33aAFAab87760d32E50A5/logo.png b/blockchains/smartchain/assets/0x147E07976E1ae78287c33aAFAab87760d32E50A5/logo.png new file mode 100644 index 00000000..1baf0764 Binary files /dev/null and b/blockchains/smartchain/assets/0x147E07976E1ae78287c33aAFAab87760d32E50A5/logo.png differ diff --git a/blockchains/smartchain/assets/0x148bD6BC0F71f8F4EF13C7b1c20C14BeBECE8888/info.json b/blockchains/smartchain/assets/0x148bD6BC0F71f8F4EF13C7b1c20C14BeBECE8888/info.json new file mode 100644 index 00000000..bf3d220c --- /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 new file mode 100644 index 00000000..2d0ebbba --- /dev/null +++ b/blockchains/smartchain/assets/0x14940169E2Db1595CDD3CACd30DECC5bbB4d9f19/info.json @@ -0,0 +1,24 @@ +{ + "name": "Santa Floki v2.0", + "type": "BEP20", + "symbol": "HOHOHO V2.0", + "decimals": 4, + "website": "https://www.santafloki.com/", + "description": "Santa Floki ($HoHoHo) v2.0 is a relaunch in order to better serve our future utility ecosystem (gaming, staking and metaverse).", + "explorer": "https://bscscan.com/token/0x14940169E2Db1595CDD3CACd30DECC5bbB4d9f19", + "status": "active", + "id": "0x14940169E2Db1595CDD3CACd30DECC5bbB4d9f19", + "links": [ + { + "name": "x", + "url": "https://x.com/Santa_Floki" + }, + { + "name": "telegram", + "url": "https://t.me/Santa_Floki" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x14940169E2Db1595CDD3CACd30DECC5bbB4d9f19/logo.png b/blockchains/smartchain/assets/0x14940169E2Db1595CDD3CACd30DECC5bbB4d9f19/logo.png new file mode 100644 index 00000000..31df8d73 Binary files /dev/null and b/blockchains/smartchain/assets/0x14940169E2Db1595CDD3CACd30DECC5bbB4d9f19/logo.png differ diff --git a/blockchains/smartchain/assets/0x14B06bF2C5B0AFd259c47c4be39cB9368ef0be3f/info.json b/blockchains/smartchain/assets/0x14B06bF2C5B0AFd259c47c4be39cB9368ef0be3f/info.json new file mode 100644 index 00000000..e6258dc0 --- /dev/null +++ b/blockchains/smartchain/assets/0x14B06bF2C5B0AFd259c47c4be39cB9368ef0be3f/info.json @@ -0,0 +1,11 @@ +{ + "name": "GOUDA Token", + "website": "https://cowswap.app", + "description": "CowSwap is a yield farming project whereby users can get FLIP (LP token) for staking and get GOUDA token as reward.", + "explorer": "https://bscscan.com/token/0x14B06bF2C5B0AFd259c47c4be39cB9368ef0be3f", + "type": "BEP20", + "symbol": "GOUDA", + "decimals": 18, + "status": "active", + "id": "0x14B06bF2C5B0AFd259c47c4be39cB9368ef0be3f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x14B06bF2C5B0AFd259c47c4be39cB9368ef0be3f/logo.png b/blockchains/smartchain/assets/0x14B06bF2C5B0AFd259c47c4be39cB9368ef0be3f/logo.png new file mode 100644 index 00000000..e26d17b7 Binary files /dev/null and b/blockchains/smartchain/assets/0x14B06bF2C5B0AFd259c47c4be39cB9368ef0be3f/logo.png differ diff --git a/blockchains/smartchain/assets/0x14B13E06f75E1F0Fd51ca2E699589Ef398E10F4C/info.json b/blockchains/smartchain/assets/0x14B13E06f75E1F0Fd51ca2E699589Ef398E10F4C/info.json new file mode 100644 index 00000000..2bb1dea8 --- /dev/null +++ b/blockchains/smartchain/assets/0x14B13E06f75E1F0Fd51ca2E699589Ef398E10F4C/info.json @@ -0,0 +1,33 @@ +{ + "name": "IDM Token", + "type": "BEP20", + "symbol": "IDM", + "decimals": 9, + "website": "https://idmcoop.com/", + "description": "IDM Token is intended to invite crypto currency investors to finance our big project in building a digital ecosystem of cooperatives and MSMEs in Indonesia. IDM tokens are at an early stage on the Binance Smart Chain network.", + "explorer": "https://bscscan.com/token/0x14B13E06f75E1F0Fd51ca2E699589Ef398E10F4C", + "status": "active", + "id": "0x14B13E06f75E1F0Fd51ca2E699589Ef398E10F4C", + "links": [ + { + "name": "x", + "url": "https://x.com/IDMToken" + }, + { + "name": "github", + "url": "https://github.com/idmtoken" + }, + { + "name": "telegram", + "url": "https://t.me/IDMTokenGlobal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/idm-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/id/koin_koin/idm-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x14B13E06f75E1F0Fd51ca2E699589Ef398E10F4C/logo.png b/blockchains/smartchain/assets/0x14B13E06f75E1F0Fd51ca2E699589Ef398E10F4C/logo.png new file mode 100644 index 00000000..abafd7d3 Binary files /dev/null and b/blockchains/smartchain/assets/0x14B13E06f75E1F0Fd51ca2E699589Ef398E10F4C/logo.png differ diff --git a/blockchains/smartchain/assets/0x14E8BCd053e68A22f239b9e9bEaD87932465D245/info.json b/blockchains/smartchain/assets/0x14E8BCd053e68A22f239b9e9bEaD87932465D245/info.json new file mode 100644 index 00000000..77e9b9aa --- /dev/null +++ b/blockchains/smartchain/assets/0x14E8BCd053e68A22f239b9e9bEaD87932465D245/info.json @@ -0,0 +1,45 @@ +{ + "name": "Value Finance", + "type": "BEP20", + "symbol": "VFT", + "decimals": 18, + "website": "https://valuefinance.io", + "description": "Value finance helps to empower new and existing project with infrastructures required for active blockchain participation", + "explorer": "https://bscscan.com/token/0x14e8bcd053e68a22f239b9e9bead87932465d245", + "status": "active", + "id": "0x14E8BCd053e68A22f239b9e9bEaD87932465D245", + "links": [ + { + "name": "x", + "url": "https://x.com/valuefinance_" + }, + { + "name": "github", + "url": "https://github.com/valuefi" + }, + { + "name": "telegram", + "url": "https://t.me/ValueFichat" + }, + { + "name": "whitepaper", + "url": "https://valuefinance.io/whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@ValueFi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/value-finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/value-finance" + } + ], + "tags": [ + "staking", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x14E8BCd053e68A22f239b9e9bEaD87932465D245/logo.png b/blockchains/smartchain/assets/0x14E8BCd053e68A22f239b9e9bEaD87932465D245/logo.png new file mode 100644 index 00000000..13647970 Binary files /dev/null and b/blockchains/smartchain/assets/0x14E8BCd053e68A22f239b9e9bEaD87932465D245/logo.png differ diff --git a/blockchains/smartchain/assets/0x14aF0e9D51d9FE25c1675cC580409b640286167F/info.json b/blockchains/smartchain/assets/0x14aF0e9D51d9FE25c1675cC580409b640286167F/info.json new file mode 100644 index 00000000..ce39ac7d --- /dev/null +++ b/blockchains/smartchain/assets/0x14aF0e9D51d9FE25c1675cC580409b640286167F/info.json @@ -0,0 +1,61 @@ +{ + "name": "Boom Shiba", + "type": "BEP20", + "symbol": "BOOMSHIBA", + "decimals": 18, + "website": "https://boomshiba.com/", + "description": "Boom Shiba - BUSD Rewards with the Power of Shiba.", + "explorer": "https://bscscan.com/token/0x14aF0e9D51d9FE25c1675cC580409b640286167F", + "status": "active", + "id": "0x14aF0e9D51d9FE25c1675cC580409b640286167F", + "links": [ + { + "name": "x", + "url": "https://x.com/boomshiba" + }, + { + "name": "github", + "url": "https://github.com/BOOMSHIBA/BoomShiba" + }, + { + "name": "telegram", + "url": "https://t.me/boomshiba" + }, + { + "name": "whitepaper", + "url": "https://boomshiba.com/whitepaper.pdf" + }, + { + "name": "forum", + "url": "https://bitcointalk.org/index.php?topic=5368412" + }, + { + "name": "discord", + "url": "https://discord.com/invite/TkNCNEUqFc" + }, + { + "name": "medium", + "url": "https://medium.com/@BoomShiba" + }, + { + "name": "facebook", + "url": "https://facebook.com/boomshibacoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/boomshiba" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/boom-shiba/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/boom-shiba" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x14af0e9d51d9fe25c1675cc580409b640286167f#code#L1" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x14aF0e9D51d9FE25c1675cC580409b640286167F/logo.png b/blockchains/smartchain/assets/0x14aF0e9D51d9FE25c1675cC580409b640286167F/logo.png new file mode 100644 index 00000000..868cc8a4 Binary files /dev/null and b/blockchains/smartchain/assets/0x14aF0e9D51d9FE25c1675cC580409b640286167F/logo.png differ diff --git a/blockchains/smartchain/assets/0x14c358b573a4cE45364a3DBD84BBb4Dae87af034/info.json b/blockchains/smartchain/assets/0x14c358b573a4cE45364a3DBD84BBb4Dae87af034/info.json new file mode 100644 index 00000000..18b6bce4 --- /dev/null +++ b/blockchains/smartchain/assets/0x14c358b573a4cE45364a3DBD84BBb4Dae87af034/info.json @@ -0,0 +1,25 @@ +{ + "name": "DungeonSwap Token", + "website": "https://dungeonswap.app/", + "description": "DungeonSwap is a decentralized table-top RPG style web game on the Binance Smart Chain with yield farming features and NFTs.", + "explorer": "https://bscscan.com/token/0x14c358b573a4cE45364a3DBD84BBb4Dae87af034", + "type": "BEP20", + "symbol": "DND", + "decimals": 18, + "status": "active", + "id": "0x14c358b573a4cE45364a3DBD84BBb4Dae87af034", + "links": [ + { + "name": "telegram", + "url": "https://t.me/dungeonswap" + }, + { + "name": "x", + "url": "https://x.com/DungeonSwap" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Dungeonswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x14c358b573a4cE45364a3DBD84BBb4Dae87af034/logo.png b/blockchains/smartchain/assets/0x14c358b573a4cE45364a3DBD84BBb4Dae87af034/logo.png new file mode 100644 index 00000000..be6c552a Binary files /dev/null and b/blockchains/smartchain/assets/0x14c358b573a4cE45364a3DBD84BBb4Dae87af034/logo.png differ diff --git a/blockchains/smartchain/assets/0x150159C72F0F9Ef9000BF95E242dE6682480D6D3/info.json b/blockchains/smartchain/assets/0x150159C72F0F9Ef9000BF95E242dE6682480D6D3/info.json new file mode 100644 index 00000000..d712d79a --- /dev/null +++ b/blockchains/smartchain/assets/0x150159C72F0F9Ef9000BF95E242dE6682480D6D3/info.json @@ -0,0 +1,12 @@ +{ + "name": "MoonStop Token", + "website": "https://moonstop.space", + "description": "MNSTP is a deflationary meme token with a strong community ethos.", + "explorer": "https://bscscan.com/token/0x150159C72F0F9Ef9000BF95E242dE6682480D6D3", + "research": "", + "type": "BEP20", + "symbol": "MNSTP", + "decimals": 9, + "status": "active", + "id": "0x150159C72F0F9Ef9000BF95E242dE6682480D6D3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x150159C72F0F9Ef9000BF95E242dE6682480D6D3/logo.png b/blockchains/smartchain/assets/0x150159C72F0F9Ef9000BF95E242dE6682480D6D3/logo.png new file mode 100644 index 00000000..24fd4315 Binary files /dev/null and b/blockchains/smartchain/assets/0x150159C72F0F9Ef9000BF95E242dE6682480D6D3/logo.png differ diff --git a/blockchains/smartchain/assets/0x1501EC83FFEf405B4331CC4f73277a40fb0C627d/info.json b/blockchains/smartchain/assets/0x1501EC83FFEf405B4331CC4f73277a40fb0C627d/info.json new file mode 100644 index 00000000..4260ffb0 --- /dev/null +++ b/blockchains/smartchain/assets/0x1501EC83FFEf405B4331CC4f73277a40fb0C627d/info.json @@ -0,0 +1,24 @@ +{ + "name": "Marvell Technology (Ondo Tokenized)", + "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 00000000..d5eb73f1 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 00000000..0cb69097 --- /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 00000000..e9f3bc92 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 new file mode 100644 index 00000000..7b354e58 --- /dev/null +++ b/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus XVS", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D", + "type": "BEP20", + "symbol": "vXVS", + "decimals": 8, + "status": "active", + "id": "0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/logo.png b/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/logo.png new file mode 100644 index 00000000..f0eb4c15 Binary files /dev/null and b/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/logo.png differ diff --git a/blockchains/smartchain/assets/0x1529642Cd0075d3DA049aA43005fdfaBCa54a070/info.json b/blockchains/smartchain/assets/0x1529642Cd0075d3DA049aA43005fdfaBCa54a070/info.json new file mode 100644 index 00000000..b667d59b --- /dev/null +++ b/blockchains/smartchain/assets/0x1529642Cd0075d3DA049aA43005fdfaBCa54a070/info.json @@ -0,0 +1,33 @@ +{ + "name": "Baby CateCoin", + "type": "BEP20", + "symbol": "BabyCATE", + "decimals": 9, + "website": "https://babycatecoin.net/", + "description": "Baby CateCoin is a meme token that will have utility (e.g. Baby Cate Coin Swap, NFT Marketplace, Merch Shop, Wallet and P2E). It has a very strong community and a very hard working team that has a sole goal to make this successful.", + "explorer": "https://bscscan.com/token/0x1529642Cd0075d3DA049aA43005fdfaBCa54a070", + "status": "active", + "id": "0x1529642Cd0075d3DA049aA43005fdfaBCa54a070", + "links": [ + { + "name": "x", + "url": "https://x.com/catecoinbaby" + }, + { + "name": "telegram", + "url": "https://t.me/BabyCate" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Qc9eH4F3" + }, + { + "name": "reddit", + "url": "https://reddit.com/babycatecoin" + }, + { + "name": "whitepaper", + "url": "https://babycatecoin.net/wp-content/uploads/2021/11/WHITEPAPER-finalz.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1529642Cd0075d3DA049aA43005fdfaBCa54a070/logo.png b/blockchains/smartchain/assets/0x1529642Cd0075d3DA049aA43005fdfaBCa54a070/logo.png new file mode 100644 index 00000000..6ffbb071 Binary files /dev/null and b/blockchains/smartchain/assets/0x1529642Cd0075d3DA049aA43005fdfaBCa54a070/logo.png differ diff --git a/blockchains/smartchain/assets/0x154A9F9cbd3449AD22FDaE23044319D6eF2a1Fab/info.json b/blockchains/smartchain/assets/0x154A9F9cbd3449AD22FDaE23044319D6eF2a1Fab/info.json new file mode 100644 index 00000000..edc00eb4 --- /dev/null +++ b/blockchains/smartchain/assets/0x154A9F9cbd3449AD22FDaE23044319D6eF2a1Fab/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoBlades Skill Token", + "website": "https://cryptoblades.io", + "description": "CryptoBlades is a Play to Earn NFT RPG developed by Riveted Games on the Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x154a9f9cbd3449ad22fdae23044319d6ef2a1fab", + "type": "BEP20", + "symbol": "SKILL", + "decimals": 18, + "status": "active", + "id": "0x154A9F9cbd3449AD22FDaE23044319D6eF2a1Fab" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x154A9F9cbd3449AD22FDaE23044319D6eF2a1Fab/logo.png b/blockchains/smartchain/assets/0x154A9F9cbd3449AD22FDaE23044319D6eF2a1Fab/logo.png new file mode 100644 index 00000000..d3b392e3 Binary files /dev/null and b/blockchains/smartchain/assets/0x154A9F9cbd3449AD22FDaE23044319D6eF2a1Fab/logo.png differ diff --git a/blockchains/smartchain/assets/0x154ECeB42679ac155EeF18820dE2Be75699263A8/info.json b/blockchains/smartchain/assets/0x154ECeB42679ac155EeF18820dE2Be75699263A8/info.json new file mode 100644 index 00000000..8f8d5274 --- /dev/null +++ b/blockchains/smartchain/assets/0x154ECeB42679ac155EeF18820dE2Be75699263A8/info.json @@ -0,0 +1,28 @@ +{ + "name": "MamyShibaInu", + "type": "BEP20", + "symbol": "MamySHIBA", + "decimals": 9, + "website": "https://mamyshibainu.com/", + "description": "The amount of Mamy Shiba grow every day in your wallet as all holders automatically receive a 2% fee from every buy transaction and 7% fee from every sell transaction that happens on the Mamy Shiba network..", + "explorer": "https://bscscan.com/token/0x154ECeB42679ac155EeF18820dE2Be75699263A8", + "status": "active", + "id": "0x154ECeB42679ac155EeF18820dE2Be75699263A8", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/MamyShibaInuGithub/" + }, + { + "name": "x", + "url": "https://x.com/MamyShibaInu/" + }, + { + "name": "telegram", + "url": "https://t.me/Mamyshibainuchannel" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x154ECeB42679ac155EeF18820dE2Be75699263A8/logo.png b/blockchains/smartchain/assets/0x154ECeB42679ac155EeF18820dE2Be75699263A8/logo.png new file mode 100644 index 00000000..75f49834 Binary files /dev/null and b/blockchains/smartchain/assets/0x154ECeB42679ac155EeF18820dE2Be75699263A8/logo.png differ diff --git a/blockchains/smartchain/assets/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409/info.json b/blockchains/smartchain/assets/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409/info.json new file mode 100644 index 00000000..ae65937c --- /dev/null +++ b/blockchains/smartchain/assets/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409/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/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409", + "status": "abandoned", + "id": "0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409", + "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/0x15580092796f69825CFf4738Cac55D05D41eaa42/info.json b/blockchains/smartchain/assets/0x15580092796f69825CFf4738Cac55D05D41eaa42/info.json new file mode 100644 index 00000000..bfe2d23b --- /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 00000000..a22bc299 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 new file mode 100644 index 00000000..0bf04a4d --- /dev/null +++ b/blockchains/smartchain/assets/0x156ab3346823B651294766e23e6Cf87254d68962/info.json @@ -0,0 +1,14 @@ +{ + "name": "LUNA (Portal)", + "type": "BEP20", + "symbol": "LUNA", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://terra.money", + "explorer": "https://bscscan.com/token/0x156ab3346823B651294766e23e6Cf87254d68962", + "status": "active", + "id": "0x156ab3346823B651294766e23e6Cf87254d68962", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x156ab3346823B651294766e23e6Cf87254d68962/logo.png b/blockchains/smartchain/assets/0x156ab3346823B651294766e23e6Cf87254d68962/logo.png new file mode 100644 index 00000000..2a885151 Binary files /dev/null and b/blockchains/smartchain/assets/0x156ab3346823B651294766e23e6Cf87254d68962/logo.png differ diff --git a/blockchains/smartchain/assets/0x156df0dd6300C73ac692D805720967cf4464776e/info.json b/blockchains/smartchain/assets/0x156df0dd6300C73ac692D805720967cf4464776e/info.json new file mode 100644 index 00000000..56f4ce1b --- /dev/null +++ b/blockchains/smartchain/assets/0x156df0dd6300C73ac692D805720967cf4464776e/info.json @@ -0,0 +1,28 @@ +{ + "name": "AstroSpaces.io", + "website": "https://astrospaces.io/token", + "description": "AstroSpaces.io is building the biggest web3 integrated social network!", + "explorer": "https://bscscan.com/token/0x156df0dd6300C73ac692D805720967cf4464776e", + "type": "BEP20", + "symbol": "SPACES", + "decimals": 9, + "status": "active", + "id": "0x156df0dd6300C73ac692D805720967cf4464776e", + "tags": [ + "nft" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/jonathanstoker/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/0x156df0dd6300C73ac692D805720967cf4464776e/logo.png b/blockchains/smartchain/assets/0x156df0dd6300C73ac692D805720967cf4464776e/logo.png new file mode 100644 index 00000000..f2bd84ef Binary files /dev/null and b/blockchains/smartchain/assets/0x156df0dd6300C73ac692D805720967cf4464776e/logo.png differ diff --git a/blockchains/smartchain/assets/0x158648792927eBb7a5c0D598BaB4D23417465E0B/info.json b/blockchains/smartchain/assets/0x158648792927eBb7a5c0D598BaB4D23417465E0B/info.json new file mode 100644 index 00000000..07c37905 --- /dev/null +++ b/blockchains/smartchain/assets/0x158648792927eBb7a5c0D598BaB4D23417465E0B/info.json @@ -0,0 +1,11 @@ +{ + "name": "OLD Real Trump Token - DO NOT BUY", + "website": "https://realtrumptoken.com/", + "description": "DO NOT BUY! CHECK RTT WEBSITE TO SEE HOW TO SWAP TO V2", + "explorer": "https://bscscan.com/token/0x158648792927ebb7a5c0d598bab4d23417465e0b", + "type": "BEP20", + "symbol": "RTT", + "decimals": 9, + "status": "abandoned", + "id": "0x158648792927eBb7a5c0D598BaB4D23417465E0B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x158648792927eBb7a5c0D598BaB4D23417465E0B/logo.png b/blockchains/smartchain/assets/0x158648792927eBb7a5c0D598BaB4D23417465E0B/logo.png new file mode 100644 index 00000000..43cca2e8 Binary files /dev/null and b/blockchains/smartchain/assets/0x158648792927eBb7a5c0D598BaB4D23417465E0B/logo.png differ diff --git a/blockchains/smartchain/assets/0x158734153f354CB326EE690C3d55f810DCb0fc90/info.json b/blockchains/smartchain/assets/0x158734153f354CB326EE690C3d55f810DCb0fc90/info.json new file mode 100644 index 00000000..68c05547 --- /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 00000000..c8b7fdf9 Binary files /dev/null and b/blockchains/smartchain/assets/0x158734153f354CB326EE690C3d55f810DCb0fc90/logo.png differ diff --git a/blockchains/smartchain/assets/0x159802FBE16Aa6a0863a56a18DD41Afce546c93E/info.json b/blockchains/smartchain/assets/0x159802FBE16Aa6a0863a56a18DD41Afce546c93E/info.json new file mode 100644 index 00000000..c1102f83 --- /dev/null +++ b/blockchains/smartchain/assets/0x159802FBE16Aa6a0863a56a18DD41Afce546c93E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Savetheworld", + "type": "BEP20", + "symbol": "Save", + "decimals": 9, + "website": "https://savetheworld.health/", + "description": "A deflationary Charity Token allows for users frictionless rewards while taxing and generating fees per transaction. Given the dynamism of the project and the fact that there are endless worthy charitable causes, Save will consistently draw in new investors, both philanthropic and speculative alike. Unlike many supposed “charity” tokens, we will provide proof of donations and ensure all funds reach their worthy causes. With all charity-based projects, transparency is of the utmost importance.", + "explorer": "https://bscscan.com/token/0x159802FBE16Aa6a0863a56a18DD41Afce546c93E", + "status": "active", + "id": "0x159802FBE16Aa6a0863a56a18DD41Afce546c93E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x159802FBE16Aa6a0863a56a18DD41Afce546c93E/logo.png b/blockchains/smartchain/assets/0x159802FBE16Aa6a0863a56a18DD41Afce546c93E/logo.png new file mode 100644 index 00000000..9e989f5d Binary files /dev/null and b/blockchains/smartchain/assets/0x159802FBE16Aa6a0863a56a18DD41Afce546c93E/logo.png differ diff --git a/blockchains/smartchain/assets/0x15E2BFF3AB5dcF1F7b5b854636939F3649ce3cf8/info.json b/blockchains/smartchain/assets/0x15E2BFF3AB5dcF1F7b5b854636939F3649ce3cf8/info.json new file mode 100644 index 00000000..6cbb1662 --- /dev/null +++ b/blockchains/smartchain/assets/0x15E2BFF3AB5dcF1F7b5b854636939F3649ce3cf8/info.json @@ -0,0 +1,45 @@ +{ + "name": "DogeFather", + "type": "BEP20", + "symbol": "FATHER", + "decimals": 9, + "website": "https://dogefat.com", + "description": "DogeFather is a community owned Meme token, which aims to build a completely decentralised ecosystem. It aims to develop dGames dChart dSwap dPad.", + "explorer": "https://bscscan.com/token/0x15e2bff3ab5dcf1f7b5b854636939f3649ce3cf8", + "status": "active", + "id": "0x15E2BFF3AB5dcF1F7b5b854636939F3649ce3cf8", + "links": [ + { + "name": "x", + "url": "https://x.com/dogefatherDEFI" + }, + { + "name": "telegram", + "url": "https://t.me/dogefather_global" + }, + { + "name": "whitepaper", + "url": "https://dogefat.com/assets/dogefather_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogefather-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dogefather-token" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x15e2bff3ab5dcf1f7b5b854636939f3649ce3cf8#code" + }, + { + "name": "medium", + "url": "https://medium.com/@dogefatherGlobal" + } + ], + "tags": [ + "defi", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x15E2BFF3AB5dcF1F7b5b854636939F3649ce3cf8/logo.png b/blockchains/smartchain/assets/0x15E2BFF3AB5dcF1F7b5b854636939F3649ce3cf8/logo.png new file mode 100644 index 00000000..9d1d6d94 Binary files /dev/null and b/blockchains/smartchain/assets/0x15E2BFF3AB5dcF1F7b5b854636939F3649ce3cf8/logo.png differ diff --git a/blockchains/smartchain/assets/0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE/info.json b/blockchains/smartchain/assets/0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE/info.json new file mode 100644 index 00000000..98a2ccc1 --- /dev/null +++ b/blockchains/smartchain/assets/0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE/info.json @@ -0,0 +1,40 @@ +{ + "name": "Cylum Finance", + "type": "BEP20", + "symbol": "CYM", + "decimals": 9, + "website": "https://cylum.io", + "description": "Cylum is a protocol built as a Launchpad for Metaverse projects on the Binance Smart Chain, as well as partnerships and funding. The CYM token is used to power and drive this ecosystem. In addition to our reward system, we have a unique lock-stake algorithm. ", + "explorer": "https://bscscan.com/token/0x15ea6b8481bf1c991ac3dc8e67279d31651a56fe", + "status": "active", + "id": "0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE", + "links": [ + { + "name": "x", + "url": "https://x.com/cylumfinance" + }, + { + "name": "github", + "url": "https://github.com/cylumfinance" + }, + { + "name": "telegram", + "url": "https://t.me/cylumfinance" + }, + { + "name": "telegram_news", + "url": "https://t.me/cylumfinancenews" + }, + { + "name": "blog", + "url": "https://cyfi.medium.com" + }, + { + "name": "docs", + "url": "https://docs.cylum.io" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE/logo.png b/blockchains/smartchain/assets/0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE/logo.png new file mode 100644 index 00000000..18719ccf Binary files /dev/null and b/blockchains/smartchain/assets/0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE/logo.png differ diff --git a/blockchains/smartchain/assets/0x1606940bB5Cd6de59A7E25367F4fB8965f38F122/info.json b/blockchains/smartchain/assets/0x1606940bB5Cd6de59A7E25367F4fB8965f38F122/info.json new file mode 100644 index 00000000..83f3c8d6 --- /dev/null +++ b/blockchains/smartchain/assets/0x1606940bB5Cd6de59A7E25367F4fB8965f38F122/info.json @@ -0,0 +1,11 @@ +{ + "name": "AquaGoat", + "type": "BEP20", + "symbol": "AQUAGOAT", + "decimals": 9, + "website": "https://aquagoat.finance/", + "description": "AquaGoat is a next-generation ecological social cryptocurrency. AquaGoat operates as a deflationary automated liquidity-locking and self-staking direct distribution protocol, providing safe, secure and hassle-free transactions and yield-generation for all holders. ", + "explorer": "https://bscscan.com/token/0x1606940bB5Cd6de59A7E25367F4fB8965f38F122", + "status": "active", + "id": "0x1606940bB5Cd6de59A7E25367F4fB8965f38F122" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1606940bB5Cd6de59A7E25367F4fB8965f38F122/logo.png b/blockchains/smartchain/assets/0x1606940bB5Cd6de59A7E25367F4fB8965f38F122/logo.png new file mode 100644 index 00000000..e1f3c634 Binary files /dev/null and b/blockchains/smartchain/assets/0x1606940bB5Cd6de59A7E25367F4fB8965f38F122/logo.png differ diff --git a/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/info.json b/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/info.json new file mode 100644 index 00000000..039279f7 --- /dev/null +++ b/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus DOT", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0x1610bc33319e9398de5f57B33a5b184c806aD217", + "type": "BEP20", + "symbol": "vDOT", + "decimals": 8, + "status": "active", + "id": "0x1610bc33319e9398de5f57B33a5b184c806aD217", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/logo.png b/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/logo.png new file mode 100644 index 00000000..82fe761e Binary files /dev/null and b/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/logo.png differ diff --git a/blockchains/smartchain/assets/0x16153214E683018D5aA318864c8e692b66E16778/info.json b/blockchains/smartchain/assets/0x16153214E683018D5aA318864c8e692b66E16778/info.json new file mode 100644 index 00000000..0180f40e --- /dev/null +++ b/blockchains/smartchain/assets/0x16153214E683018D5aA318864c8e692b66E16778/info.json @@ -0,0 +1,21 @@ +{ + "name": "PolkaWar", + "symbol": "PWAR", + "type": "BEP20", + "decimals": 18, + "description": "PolkaWar is a blockchain based NFT gaming platform and marketplace. Inspired by the recent crypto NFT and gaming narratives, PolkaWar will combine and synergize them both to build an attractive platform.", + "website": "https://polkawar.com/", + "explorer": "https://bscscan.com/token/0x16153214E683018D5aA318864c8e692b66E16778", + "status": "active", + "id": "0x16153214E683018D5aA318864c8e692b66E16778", + "links": [ + { + "name": "x", + "url": "https://x.com/polkawarnft" + }, + { + "name": "telegram", + "url": "https://t.me/polkawarchat" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x16153214E683018D5aA318864c8e692b66E16778/logo.png b/blockchains/smartchain/assets/0x16153214E683018D5aA318864c8e692b66E16778/logo.png new file mode 100644 index 00000000..dff1b742 Binary files /dev/null and b/blockchains/smartchain/assets/0x16153214E683018D5aA318864c8e692b66E16778/logo.png differ diff --git a/blockchains/smartchain/assets/0x163f182C32d24A09d91EB75820cDe9FD5832b329/info.json b/blockchains/smartchain/assets/0x163f182C32d24A09d91EB75820cDe9FD5832b329/info.json new file mode 100644 index 00000000..2ccfa219 --- /dev/null +++ b/blockchains/smartchain/assets/0x163f182C32d24A09d91EB75820cDe9FD5832b329/info.json @@ -0,0 +1,11 @@ +{ + "name": "ElonDoge", + "website": "https://elondoge.io/", + "description": "ElonDoge is a project that takes the mission to prepare society for the Mars colony seriously.", + "explorer": "https://bscscan.com/token/0x163f182c32d24a09d91eb75820cde9fd5832b329", + "type": "BEP20", + "symbol": "EDOGE", + "decimals": 9, + "status": "active", + "id": "0x163f182C32d24A09d91EB75820cDe9FD5832b329" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x163f182C32d24A09d91EB75820cDe9FD5832b329/logo.png b/blockchains/smartchain/assets/0x163f182C32d24A09d91EB75820cDe9FD5832b329/logo.png new file mode 100644 index 00000000..3b49ff8a Binary files /dev/null and b/blockchains/smartchain/assets/0x163f182C32d24A09d91EB75820cDe9FD5832b329/logo.png differ diff --git a/blockchains/smartchain/assets/0x1657223BB7B9d272957B3F3Cf70F9c36a4c99aB9/info.json b/blockchains/smartchain/assets/0x1657223BB7B9d272957B3F3Cf70F9c36a4c99aB9/info.json new file mode 100644 index 00000000..125f57ff --- /dev/null +++ b/blockchains/smartchain/assets/0x1657223BB7B9d272957B3F3Cf70F9c36a4c99aB9/info.json @@ -0,0 +1,11 @@ +{ + "name": "X-Token", + "website": "https://project-x.finance/", + "description": "X-Token is the first token that will empower crypto traders, investors, and minorities who have no access to computers. Building decentralized applications and donating the usage fees will help cryptomaniacs and minorities alike.", + "explorer": "https://bscscan.com/token/0x1657223BB7B9d272957B3F3Cf70F9c36a4c99aB9", + "type": "BEP20", + "symbol": "X-Token", + "decimals": 9, + "status": "active", + "id": "0x1657223BB7B9d272957B3F3Cf70F9c36a4c99aB9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1657223BB7B9d272957B3F3Cf70F9c36a4c99aB9/logo.png b/blockchains/smartchain/assets/0x1657223BB7B9d272957B3F3Cf70F9c36a4c99aB9/logo.png new file mode 100644 index 00000000..aea96078 Binary files /dev/null and b/blockchains/smartchain/assets/0x1657223BB7B9d272957B3F3Cf70F9c36a4c99aB9/logo.png differ diff --git a/blockchains/smartchain/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json b/blockchains/smartchain/assets/0x167A6375DA1eFc4a5BE0f470E73eCEfd66245048/info.json new file mode 100644 index 00000000..ea4461fe --- /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 00000000..9051b3f3 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 00000000..ca536f3d --- /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 00000000..8adf5788 Binary files /dev/null and b/blockchains/smartchain/assets/0x167E93A849A0cc479769132552B99aa1cFA0948c/logo.png differ diff --git a/blockchains/smartchain/assets/0x167e5455E4C978883B414E7f02c0147eec9a18e9/info.json b/blockchains/smartchain/assets/0x167e5455E4C978883B414E7f02c0147eec9a18e9/info.json new file mode 100644 index 00000000..74d255db --- /dev/null +++ b/blockchains/smartchain/assets/0x167e5455E4C978883B414E7f02c0147eec9a18e9/info.json @@ -0,0 +1,21 @@ +{ + "name": "Life Token v2", + "type": "BEP20", + "symbol": "LTNv2", + "decimals": 18, + "website": "https://www.thelifetoken.com", + "description": "Life Token v2 is a charity orientated token on the Binance Smart Chain aiming to aid suicide prevention charities all over the world, to help save lives.", + "explorer": "https://bscscan.com/token/0x167e5455E4C978883B414E7f02c0147eec9a18e9", + "status": "active", + "id": "0x167e5455E4C978883B414E7f02c0147eec9a18e9", + "links": [ + { + "name": "telegram", + "url": "https://t.me/LifeTokenTG" + }, + { + "name": "telegram_news", + "url": "https://t.me/LifeTokenAnnouncements" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x167e5455E4C978883B414E7f02c0147eec9a18e9/logo.png b/blockchains/smartchain/assets/0x167e5455E4C978883B414E7f02c0147eec9a18e9/logo.png new file mode 100644 index 00000000..4d985fa5 Binary files /dev/null and b/blockchains/smartchain/assets/0x167e5455E4C978883B414E7f02c0147eec9a18e9/logo.png differ diff --git a/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/info.json b/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/info.json new file mode 100644 index 00000000..c213e1a1 --- /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/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/logo.png b/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/logo.png new file mode 100644 index 00000000..6fd1e666 Binary files /dev/null and b/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/logo.png differ diff --git a/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/info.json b/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/info.json new file mode 100644 index 00000000..0924c135 --- /dev/null +++ b/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/info.json @@ -0,0 +1,17 @@ +{ + "name": "BNB pegged Tezos Token", + "website": "https://tezos.com", + "description": "BNB pegged Tezos Token (XTZ BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Tezos (XTZ) at a ratio of 1:1.", + "explorer": "https://bscscan.com/token/0x16939ef78684453bfDFb47825F8a5F714f12623a", + "research": "https://research.binance.com/en/projects/tezos", + "type": "BEP20", + "symbol": "XTZ", + "decimals": 18, + "status": "active", + "id": "0x16939ef78684453bfDFb47825F8a5F714f12623a", + "tags": [ + "binance-peg", + "defi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/logo.png b/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/logo.png new file mode 100644 index 00000000..a3d1ea93 Binary files /dev/null and b/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/logo.png differ diff --git a/blockchains/smartchain/assets/0x16E0B579be45bAaE54cEddd52e742B6457A7fE12/info.json b/blockchains/smartchain/assets/0x16E0B579be45bAaE54cEddd52e742B6457A7fE12/info.json new file mode 100644 index 00000000..4c965cfc --- /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 00000000..b3eff5f8 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 new file mode 100644 index 00000000..3e25ffad --- /dev/null +++ b/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/info.json @@ -0,0 +1,28 @@ +{ + "name": "Bart Simpson Coin", + "type": "BEP20", + "symbol": "BART", + "decimals": 9, + "website": "https://bart-coin.com/", + "description": "BART, the memecoin deployed on the Binance Smart Chain (BSC) that pays homage to everyone’s favorite mischievous cartoon character.", + "explorer": "https://bscscan.com/token/0x16e79e09b3b56bcbba83667aff88dc6ca727af2e", + "status": "active", + "id": "0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e", + "links": [ + { + "name": "x", + "url": "https://x.com/Bart_BSC" + }, + { + "name": "telegram", + "url": "https://t.me/BartCoinGLOBAL" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bart-simpson-coin/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/logo.png b/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/logo.png new file mode 100644 index 00000000..7d878a83 Binary files /dev/null and b/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/logo.png differ diff --git a/blockchains/smartchain/assets/0x16Feb16F7Ee2190312D03f449eeEc2339add2D83/info.json b/blockchains/smartchain/assets/0x16Feb16F7Ee2190312D03f449eeEc2339add2D83/info.json new file mode 100644 index 00000000..2ff894a5 --- /dev/null +++ b/blockchains/smartchain/assets/0x16Feb16F7Ee2190312D03f449eeEc2339add2D83/info.json @@ -0,0 +1,14 @@ +{ + "name": "SafeUniverse", + "type": "BEP20", + "symbol": "SAFU", + "decimals": 9, + "website": "https://safeuniverse.net/", + "description": "A Frictionless Yield Generation, Community Driven Protocol.", + "explorer": "https://bscscan.com/token/0x16Feb16F7Ee2190312D03f449eeEc2339add2D83", + "status": "active", + "id": "0x16Feb16F7Ee2190312D03f449eeEc2339add2D83", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x16Feb16F7Ee2190312D03f449eeEc2339add2D83/logo.png b/blockchains/smartchain/assets/0x16Feb16F7Ee2190312D03f449eeEc2339add2D83/logo.png new file mode 100644 index 00000000..c2574051 Binary files /dev/null and b/blockchains/smartchain/assets/0x16Feb16F7Ee2190312D03f449eeEc2339add2D83/logo.png differ diff --git a/blockchains/smartchain/assets/0x16a7fa783378Da47A4F09613296b0B2Dd2B08d06/info.json b/blockchains/smartchain/assets/0x16a7fa783378Da47A4F09613296b0B2Dd2B08d06/info.json new file mode 100644 index 00000000..b356ac11 --- /dev/null +++ b/blockchains/smartchain/assets/0x16a7fa783378Da47A4F09613296b0B2Dd2B08d06/info.json @@ -0,0 +1,29 @@ +{ + "name": "MonsterSlayer", + "type": "BEP20", + "symbol": "MS", + "decimals": 18, + "website": "https://monsterslayer.io/", + "description": "Monster Slayer allows users to become owners and monetize Blockchain based video games.", + "explorer": "https://bscscan.com/token/0x16a7fa783378Da47A4F09613296b0B2Dd2B08d06", + "status": "active", + "id": "0x16a7fa783378Da47A4F09613296b0B2Dd2B08d06", + "links": [ + { + "name": "x", + "url": "https://x.com/MonsterSlayerMS" + }, + { + "name": "telegram", + "url": "https://t.me/MSCrypto_Official" + }, + { + "name": "telegram_news", + "url": "https://t.me/MSCrypto_Channel" + }, + { + "name": "blog", + "url": "https://monsterslayer.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x16a7fa783378Da47A4F09613296b0B2Dd2B08d06/logo.png b/blockchains/smartchain/assets/0x16a7fa783378Da47A4F09613296b0B2Dd2B08d06/logo.png new file mode 100644 index 00000000..a69fb378 Binary files /dev/null and b/blockchains/smartchain/assets/0x16a7fa783378Da47A4F09613296b0B2Dd2B08d06/logo.png differ diff --git a/blockchains/smartchain/assets/0x16dCc0eC78E91e868DCa64bE86aeC62bf7C61037/info.json b/blockchains/smartchain/assets/0x16dCc0eC78E91e868DCa64bE86aeC62bf7C61037/info.json new file mode 100644 index 00000000..e1971f0c --- /dev/null +++ b/blockchains/smartchain/assets/0x16dCc0eC78E91e868DCa64bE86aeC62bf7C61037/info.json @@ -0,0 +1,25 @@ +{ + "name": "EverETH", + "website": "https://evereth.net", + "description": "EverETH is a native utility token that is used for recieving dividends in Ethereum.", + "explorer": "https://bscscan.com/token/0x16dCc0eC78E91e868DCa64bE86aeC62bf7C61037", + "type": "BEP20", + "symbol": "EverETH", + "decimals": 9, + "status": "active", + "id": "0x16dCc0eC78E91e868DCa64bE86aeC62bf7C61037", + "links": [ + { + "name": "x", + "url": "https://x.com/EverETHofficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverETHofficial" + }, + { + "name": "telegram", + "url": "https://t.me/EverETHofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x16dCc0eC78E91e868DCa64bE86aeC62bf7C61037/logo.png b/blockchains/smartchain/assets/0x16dCc0eC78E91e868DCa64bE86aeC62bf7C61037/logo.png new file mode 100644 index 00000000..a66792ef Binary files /dev/null and b/blockchains/smartchain/assets/0x16dCc0eC78E91e868DCa64bE86aeC62bf7C61037/logo.png differ diff --git a/blockchains/smartchain/assets/0x16f9cc3c6F8d8006cfc0ee693CeF9D76b0d44C36/info.json b/blockchains/smartchain/assets/0x16f9cc3c6F8d8006cfc0ee693CeF9D76b0d44C36/info.json new file mode 100644 index 00000000..5cf9dcbd --- /dev/null +++ b/blockchains/smartchain/assets/0x16f9cc3c6F8d8006cfc0ee693CeF9D76b0d44C36/info.json @@ -0,0 +1,25 @@ +{ + "name": "Baby Bali", + "website": "https://babybalibsc.com", + "description": "We are the first token to combine these 5 super elements at once.", + "explorer": "https://bscscan.com/token/0x16f9cc3c6F8d8006cfc0ee693CeF9D76b0d44C36", + "type": "BEP20", + "symbol": "BB", + "decimals": 9, + "status": "active", + "id": "0x16f9cc3c6F8d8006cfc0ee693CeF9D76b0d44C36", + "links": [ + { + "name": "telegram", + "url": "https://t.me/babybali" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/baby-bali/" + }, + { + "name": "x", + "url": "https://x.com/BabyBalibsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x16f9cc3c6F8d8006cfc0ee693CeF9D76b0d44C36/logo.png b/blockchains/smartchain/assets/0x16f9cc3c6F8d8006cfc0ee693CeF9D76b0d44C36/logo.png new file mode 100644 index 00000000..3d60af55 Binary files /dev/null and b/blockchains/smartchain/assets/0x16f9cc3c6F8d8006cfc0ee693CeF9D76b0d44C36/logo.png differ diff --git a/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/info.json b/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/info.json new file mode 100644 index 00000000..dd28ebb6 --- /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 00000000..6bdb6e72 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 new file mode 100644 index 00000000..76369eb2 --- /dev/null +++ b/blockchains/smartchain/assets/0x1722bf5DA9391D6986092b90a53672E8E0fead83/info.json @@ -0,0 +1,48 @@ +{ + "name": "Wrapped ElectricCash", + "type": "BEP20", + "symbol": "wELCASH", + "decimals": 8, + "website": "https://elcash.info", + "description": "The idea of wrapped ELCASH is to advantage of the BSC infrastructure and gain exposure to smart contract functionalities. Introducing new use cases relating to smart contracts and dApp) ensures further growth of the ELCASH ecosystem. It is also an excellent chance for BSC users to join ELCASH ecosystem by swapping their tokens to wELCASH and join ELCASH ecosystem.", + "explorer": "https://bscscan.com/token/0x1722bf5DA9391D6986092b90a53672E8E0fead83", + "status": "active", + "id": "0x1722bf5DA9391D6986092b90a53672E8E0fead83", + "tags": [ + "wrappeed" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/elcash_official" + }, + { + "name": "telegram", + "url": "https://t.me/electriccash_official" + }, + { + "name": "github", + "url": "https://github.com/electric-cash" + }, + { + "name": "medium", + "url": "https://medium.com/electric-cash" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/ElectricCash" + }, + { + "name": "facebook", + "url": "https://facebook.com/electriccash.official" + }, + { + "name": "whitepaper", + "url": "https://elcash.info/pdf/electric-cash-whitepaper.pdf" + }, + { + "name": "source_code", + "url": "https://github.com/electric-cash/electric-cash-token-smart-contracts" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1722bf5DA9391D6986092b90a53672E8E0fead83/logo.png b/blockchains/smartchain/assets/0x1722bf5DA9391D6986092b90a53672E8E0fead83/logo.png new file mode 100644 index 00000000..288f9b37 Binary files /dev/null and b/blockchains/smartchain/assets/0x1722bf5DA9391D6986092b90a53672E8E0fead83/logo.png differ diff --git a/blockchains/smartchain/assets/0x1730a0cA9de632B0B6c232EBb972CB0851FFC6Bf/info.json b/blockchains/smartchain/assets/0x1730a0cA9de632B0B6c232EBb972CB0851FFC6Bf/info.json new file mode 100644 index 00000000..5a9e9a4a --- /dev/null +++ b/blockchains/smartchain/assets/0x1730a0cA9de632B0B6c232EBb972CB0851FFC6Bf/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeCity", + "website": "https://safecity.live", + "description": "SAFECITY is a fully decentralized, deflationary, and community driven. Every time SAFECITY is sold, the smart contract automatically redistributes 8% of the transaction into four different buckets. 2% of the transaction is burned, 2% added to SAFECITY/BNB liquidity, 2% donated to charity, and 2% evenly distributed amongst every existing SAFECITY holding wallet.", + "explorer": "https://bscscan.com/token/0x1730a0cA9de632B0B6c232EBb972CB0851FFC6Bf", + "symbol": "SAFECITY", + "type": "BEP20", + "decimals": 9, + "status": "active", + "id": "0x1730a0cA9de632B0B6c232EBb972CB0851FFC6Bf" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1730a0cA9de632B0B6c232EBb972CB0851FFC6Bf/logo.png b/blockchains/smartchain/assets/0x1730a0cA9de632B0B6c232EBb972CB0851FFC6Bf/logo.png new file mode 100644 index 00000000..1344ee8b Binary files /dev/null and b/blockchains/smartchain/assets/0x1730a0cA9de632B0B6c232EBb972CB0851FFC6Bf/logo.png differ diff --git a/blockchains/smartchain/assets/0x1738B738E8d9207D0212C2744c1Dc67f3cD09850/info.json b/blockchains/smartchain/assets/0x1738B738E8d9207D0212C2744c1Dc67f3cD09850/info.json new file mode 100644 index 00000000..66d476e7 --- /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 00000000..c4a183e4 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 00000000..9b9c1ec1 --- /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 00000000..d28deab3 Binary files /dev/null and b/blockchains/smartchain/assets/0x17515B68378d86C38F394c666e79907dA05dcBA9/logo.png differ diff --git a/blockchains/smartchain/assets/0x1759254EB142bcF0175347D5A0f3c19235538a9A/info.json b/blockchains/smartchain/assets/0x1759254EB142bcF0175347D5A0f3c19235538a9A/info.json new file mode 100644 index 00000000..ea407428 --- /dev/null +++ b/blockchains/smartchain/assets/0x1759254EB142bcF0175347D5A0f3c19235538a9A/info.json @@ -0,0 +1,11 @@ +{ + "name": "upBNB", + "type": "BEP20", + "symbol": "upBNB", + "decimals": 18, + "website": "https://upbnb.finance", + "description": "First BSC token in the upOnly ecosystem, from the developers of ROOTKIT and iFUND on ETH! This token has revolutionary tokenomics, blowing away the deflationary tokens of the past. There are 2 main mechanisms that combine to make UpBNB go up over time: Buybacks and the Pricefloor.", + "explorer": "https://bscscan.com/token/0x1759254EB142bcF0175347D5A0f3c19235538a9A", + "status": "active", + "id": "0x1759254EB142bcF0175347D5A0f3c19235538a9A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1759254EB142bcF0175347D5A0f3c19235538a9A/logo.png b/blockchains/smartchain/assets/0x1759254EB142bcF0175347D5A0f3c19235538a9A/logo.png new file mode 100644 index 00000000..9c5ab309 Binary files /dev/null and b/blockchains/smartchain/assets/0x1759254EB142bcF0175347D5A0f3c19235538a9A/logo.png differ diff --git a/blockchains/smartchain/assets/0x17644CC2D73921a1562f1745644EAb455aaf8597/info.json b/blockchains/smartchain/assets/0x17644CC2D73921a1562f1745644EAb455aaf8597/info.json new file mode 100644 index 00000000..945200e8 --- /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/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/info.json b/blockchains/smartchain/assets/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/info.json new file mode 100644 index 00000000..6393461e --- /dev/null +++ b/blockchains/smartchain/assets/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Polychain Monsters", + "website": "https://polychainmonsters.com/", + "description": "Polychain Monsters are beautifully animated digital collectibles with varying scarcities. Each Polychain Monster is backed by a truly unique NFT and can be unpacked with $PMON tokens.", + "explorer": "https://bscscan.com/token/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2", + "type": "BEP20", + "symbol": "PMON", + "decimals": 18, + "status": "active", + "id": "0x1796ae0b0fa4862485106a0de9b654eFE301D0b2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/logo.png b/blockchains/smartchain/assets/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/logo.png new file mode 100644 index 00000000..7490d96c Binary files /dev/null and b/blockchains/smartchain/assets/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/logo.png differ diff --git a/blockchains/smartchain/assets/0x17991D0A31c8B6BB2Dd430D51c54f72b77B14697/info.json b/blockchains/smartchain/assets/0x17991D0A31c8B6BB2Dd430D51c54f72b77B14697/info.json new file mode 100644 index 00000000..258b081a --- /dev/null +++ b/blockchains/smartchain/assets/0x17991D0A31c8B6BB2Dd430D51c54f72b77B14697/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chihua Mom Token", + "website": "https://chihuatoken.com", + "description": "Second token in the Chihua Token Ecosystem. Chimom is the female version of Chihua and is needed for successfull breeding of Puppies", + "explorer": "https://bscscan.com/token/0x17991D0A31c8B6BB2Dd430D51c54f72b77B14697", + "type": "BEP20", + "symbol": "CHIMOM", + "decimals": 18, + "status": "active", + "id": "0x17991D0A31c8B6BB2Dd430D51c54f72b77B14697" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x17991D0A31c8B6BB2Dd430D51c54f72b77B14697/logo.png b/blockchains/smartchain/assets/0x17991D0A31c8B6BB2Dd430D51c54f72b77B14697/logo.png new file mode 100644 index 00000000..292b2bc3 Binary files /dev/null and b/blockchains/smartchain/assets/0x17991D0A31c8B6BB2Dd430D51c54f72b77B14697/logo.png differ diff --git a/blockchains/smartchain/assets/0x179960442Ece8dE9f390011b7f7c9b56C74e4D0a/info.json b/blockchains/smartchain/assets/0x179960442Ece8dE9f390011b7f7c9b56C74e4D0a/info.json new file mode 100644 index 00000000..ad8cba44 --- /dev/null +++ b/blockchains/smartchain/assets/0x179960442Ece8dE9f390011b7f7c9b56C74e4D0a/info.json @@ -0,0 +1,45 @@ +{ + "name": "Xeta Reality", + "website": "https://xetareality.com", + "description": "Xeta is a Serverless Layer-1 Blockchain Ecosystem for Metaverse, Gaming, and NFT Applications.", + "explorer": "https://bscscan.com/token/0x179960442Ece8dE9f390011b7f7c9b56C74e4D0a", + "type": "BEP20", + "symbol": "XETA", + "decimals": 9, + "status": "active", + "id": "0x179960442Ece8dE9f390011b7f7c9b56C74e4D0a", + "links": [ + { + "name": "github", + "url": "https://github.com/XetaReality" + }, + { + "name": "whitepaper", + "url": "https://xetareality.com/whitepaper.pdf" + }, + { + "name": "x", + "url": "https://x.com/XetaReality" + }, + { + "name": "telegram", + "url": "https://t.me/XetaReality" + }, + { + "name": "medium", + "url": "https://xetareality.medium.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/XetaReality" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xeta-reality/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/xeta-reality" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x179960442Ece8dE9f390011b7f7c9b56C74e4D0a/logo.png b/blockchains/smartchain/assets/0x179960442Ece8dE9f390011b7f7c9b56C74e4D0a/logo.png new file mode 100644 index 00000000..dc397687 Binary files /dev/null and b/blockchains/smartchain/assets/0x179960442Ece8dE9f390011b7f7c9b56C74e4D0a/logo.png differ diff --git a/blockchains/smartchain/assets/0x179983892eC36287f1F342443B671Ba549762241/info.json b/blockchains/smartchain/assets/0x179983892eC36287f1F342443B671Ba549762241/info.json new file mode 100644 index 00000000..5d5098a6 --- /dev/null +++ b/blockchains/smartchain/assets/0x179983892eC36287f1F342443B671Ba549762241/info.json @@ -0,0 +1,37 @@ +{ + "name": "GUNS", + "website": "https://thugs.fi/", + "description": "GUNS is an in-game resource for THUGS GangWars and the initial NFT mining token! Stake your Guns into Gang-East or Gang-West in order to receive corresponding NFTs (including some ultra-rares if you're lucky)!", + "explorer": "https://bscscan.com/token/0x179983892ec36287f1f342443b671ba549762241", + "type": "BEP20", + "symbol": "GUNS", + "decimals": 18, + "status": "active", + "id": "0x179983892eC36287f1F342443B671Ba549762241", + "links": [ + { + "name": "github", + "url": "https://github.com/thugs-defi" + }, + { + "name": "x", + "url": "https://x.com/ThugsFinance" + }, + { + "name": "telegram", + "url": "https://t.me/thugsfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AJDqFTP" + }, + { + "name": "medium", + "url": "https://thugsfinance.medium.com/" + }, + { + "name": "docs", + "url": "https://docs.thugs.fi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x179983892eC36287f1F342443B671Ba549762241/logo.png b/blockchains/smartchain/assets/0x179983892eC36287f1F342443B671Ba549762241/logo.png new file mode 100644 index 00000000..7b67b92d Binary files /dev/null and b/blockchains/smartchain/assets/0x179983892eC36287f1F342443B671Ba549762241/logo.png differ diff --git a/blockchains/smartchain/assets/0x17B7163cf1Dbd286E262ddc68b553D899B93f526/info.json b/blockchains/smartchain/assets/0x17B7163cf1Dbd286E262ddc68b553D899B93f526/info.json new file mode 100644 index 00000000..f5a68a27 --- /dev/null +++ b/blockchains/smartchain/assets/0x17B7163cf1Dbd286E262ddc68b553D899B93f526/info.json @@ -0,0 +1,37 @@ +{ + "name": "Qubit Token", + "website": "https://qbt.fi", + "description": "Qubit Finance is a DeFi lending protocol that is optimized to deliver lending as a utility for the BSC.", + "explorer": "https://bscscan.com/token/0x17B7163cf1Dbd286E262ddc68b553D899B93f526", + "type": "BEP20", + "symbol": "QBT", + "decimals": 18, + "status": "active", + "id": "0x17B7163cf1Dbd286E262ddc68b553D899B93f526", + "links": [ + { + "name": "github", + "url": "https://github.com/PancakeBunny-finance/qubit-finance" + }, + { + "name": "x", + "url": "https://x.com/QubitFin" + }, + { + "name": "blog", + "url": "https://pancakebunny.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/QubitFinOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qubit/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/qubit/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x17B7163cf1Dbd286E262ddc68b553D899B93f526/logo.png b/blockchains/smartchain/assets/0x17B7163cf1Dbd286E262ddc68b553D899B93f526/logo.png new file mode 100644 index 00000000..8984b5d6 Binary files /dev/null and b/blockchains/smartchain/assets/0x17B7163cf1Dbd286E262ddc68b553D899B93f526/logo.png differ diff --git a/blockchains/smartchain/assets/0x17D749D3E2ac204a07e19D8096d9a05c423ea3af/info.json b/blockchains/smartchain/assets/0x17D749D3E2ac204a07e19D8096d9a05c423ea3af/info.json new file mode 100644 index 00000000..57a837d1 --- /dev/null +++ b/blockchains/smartchain/assets/0x17D749D3E2ac204a07e19D8096d9a05c423ea3af/info.json @@ -0,0 +1,11 @@ +{ + "name": "Little Rabbit", + "type": "BEP20", + "symbol": "LTRBT", + "decimals": 9, + "website": "https://newlittlerabbit.com", + "description": "LTRBT Token is capable of gasless instant yield generation. This means that holder can generate yield just holding the token in their wallet, without any further action required.", + "explorer": "https://bscscan.com/token/0x17D749D3E2ac204a07e19D8096d9a05c423ea3af", + "status": "active", + "id": "0x17D749D3E2ac204a07e19D8096d9a05c423ea3af" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x17D749D3E2ac204a07e19D8096d9a05c423ea3af/logo.png b/blockchains/smartchain/assets/0x17D749D3E2ac204a07e19D8096d9a05c423ea3af/logo.png new file mode 100644 index 00000000..ececb758 Binary files /dev/null and b/blockchains/smartchain/assets/0x17D749D3E2ac204a07e19D8096d9a05c423ea3af/logo.png differ diff --git a/blockchains/smartchain/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json b/blockchains/smartchain/assets/0x17D8186Ed8F68059124190D147174D0f6697dc40/info.json new file mode 100644 index 00000000..562ee668 --- /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 00000000..8522e440 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 new file mode 100644 index 00000000..1c1d86aa --- /dev/null +++ b/blockchains/smartchain/assets/0x17D8519F57450E2B7E6aE1163E0E448322a8aF17/info.json @@ -0,0 +1,37 @@ +{ + "name": "LOFI-DEFI", + "website": "https://lofi-defi.com/", + "description": "Connecting creators and investors in a virtual space!", + "explorer": "https://bscscan.com/token/0x17D8519F57450E2B7E6aE1163E0E448322a8aF17", + "type": "BEP20", + "symbol": "LOFI", + "decimals": 9, + "status": "active", + "id": "0x17D8519F57450E2B7E6aE1163E0E448322a8aF17", + "links": [ + { + "name": "telegram", + "url": "https://t.me/lofi_defi" + }, + { + "name": "x", + "url": "https://x.com/lofi_defi" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/lofi_defi" + }, + { + "name": "discord", + "url": "https://discord.com/HqF4dwAdNN" + }, + { + "name": "facebook", + "url": "https://facebook.com/LoFiDeFi" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC_dA60kbHtbJjPjD4gS4dKQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x17D8519F57450E2B7E6aE1163E0E448322a8aF17/logo.png b/blockchains/smartchain/assets/0x17D8519F57450E2B7E6aE1163E0E448322a8aF17/logo.png new file mode 100644 index 00000000..3aa7d713 Binary files /dev/null and b/blockchains/smartchain/assets/0x17D8519F57450E2B7E6aE1163E0E448322a8aF17/logo.png differ diff --git a/blockchains/smartchain/assets/0x17E65E6b9B166Fb8e7c59432F0db126711246BC0/info.json b/blockchains/smartchain/assets/0x17E65E6b9B166Fb8e7c59432F0db126711246BC0/info.json new file mode 100644 index 00000000..a032fa7c --- /dev/null +++ b/blockchains/smartchain/assets/0x17E65E6b9B166Fb8e7c59432F0db126711246BC0/info.json @@ -0,0 +1,48 @@ +{ + "name": "TiFi Token", + "type": "BEP20", + "symbol": "TIFI", + "decimals": 18, + "website": "https://tifi.net/", + "description": "TiFi Token is the the first crypto token that support allverse, which united metaverse and universe, by stimulating trading in decentralized ecosystem.", + "explorer": "https://bscscan.com/token/0x17E65E6b9B166Fb8e7c59432F0db126711246BC0", + "status": "active", + "id": "0x17E65E6b9B166Fb8e7c59432F0db126711246BC0", + "links": [ + { + "name": "x", + "url": "https://x.com/TiFiToken" + }, + { + "name": "telegram", + "url": "https://t.me/tifi_token" + }, + { + "name": "whitepaper", + "url": "https://tifi.net/about/TiFiTokenWhitePaper.pdf" + }, + { + "name": "medium", + "url": "https://tifitoken.medium.com/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x17E65E6b9B166Fb8e7c59432F0db126711246BC0#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tifi-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tifi-token" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/TiFiToken" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x17E65E6b9B166Fb8e7c59432F0db126711246BC0/logo.png b/blockchains/smartchain/assets/0x17E65E6b9B166Fb8e7c59432F0db126711246BC0/logo.png new file mode 100644 index 00000000..a6fcd2c5 Binary files /dev/null and b/blockchains/smartchain/assets/0x17E65E6b9B166Fb8e7c59432F0db126711246BC0/logo.png differ diff --git a/blockchains/smartchain/assets/0x17FEa92CA2e7570d07b63ecD6B698e01386555A4/info.json b/blockchains/smartchain/assets/0x17FEa92CA2e7570d07b63ecD6B698e01386555A4/info.json new file mode 100644 index 00000000..caca256e --- /dev/null +++ b/blockchains/smartchain/assets/0x17FEa92CA2e7570d07b63ecD6B698e01386555A4/info.json @@ -0,0 +1,25 @@ +{ + "name": "COXSWAP", + "website": "https://coxswap.com/", + "description": "COXSWAP - Decentralized Exchange – DEX. Trade, farming, staking, earn more token .", + "explorer": "https://bscscan.com/token/0x17FEa92CA2e7570d07b63ecD6B698e01386555A4", + "type": "BEP20", + "symbol": "COX", + "decimals": 8, + "status": "active", + "id": "0x17FEa92CA2e7570d07b63ecD6B698e01386555A4", + "links": [ + { + "name": "telegram", + "url": "https://t.me/coxswap_chat" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/coxswap/" + }, + { + "name": "x", + "url": "https://x.com/Cox_Swap" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x17FEa92CA2e7570d07b63ecD6B698e01386555A4/logo.png b/blockchains/smartchain/assets/0x17FEa92CA2e7570d07b63ecD6B698e01386555A4/logo.png new file mode 100644 index 00000000..207ed497 Binary files /dev/null and b/blockchains/smartchain/assets/0x17FEa92CA2e7570d07b63ecD6B698e01386555A4/logo.png differ diff --git a/blockchains/smartchain/assets/0x17bc015607Fdf93e7C949e9Ca22f96907cFBeF88/info.json b/blockchains/smartchain/assets/0x17bc015607Fdf93e7C949e9Ca22f96907cFBeF88/info.json new file mode 100644 index 00000000..321a9402 --- /dev/null +++ b/blockchains/smartchain/assets/0x17bc015607Fdf93e7C949e9Ca22f96907cFBeF88/info.json @@ -0,0 +1,12 @@ +{ + "name": "BSC Farm", + "website": "https://bsc.farm", + "description": "BSC Farm.", + "explorer": "https://bscscan.com/token/0x17bc015607Fdf93e7C949e9Ca22f96907cFBeF88", + "research": "", + "type": "BEP20", + "symbol": "BSC", + "decimals": 18, + "status": "active", + "id": "0x17bc015607Fdf93e7C949e9Ca22f96907cFBeF88" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x17bc015607Fdf93e7C949e9Ca22f96907cFBeF88/logo.png b/blockchains/smartchain/assets/0x17bc015607Fdf93e7C949e9Ca22f96907cFBeF88/logo.png new file mode 100644 index 00000000..45800b3b Binary files /dev/null and b/blockchains/smartchain/assets/0x17bc015607Fdf93e7C949e9Ca22f96907cFBeF88/logo.png differ diff --git a/blockchains/smartchain/assets/0x17d8C396a55D6c1c2130EfC23f4936b56860Df9C/info.json b/blockchains/smartchain/assets/0x17d8C396a55D6c1c2130EfC23f4936b56860Df9C/info.json new file mode 100644 index 00000000..00318f91 --- /dev/null +++ b/blockchains/smartchain/assets/0x17d8C396a55D6c1c2130EfC23f4936b56860Df9C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Littlemoose", + "type": "BEP20", + "symbol": "LMOOSE", + "decimals": 9, + "website": "https://littlemoosefinance.wixsite.com/website", + "description": "We Moose HODL! We Moose Unite! We Moose Stay Strong Together!", + "explorer": "https://bscscan.com/token/0x17d8C396a55D6c1c2130EfC23f4936b56860Df9C", + "status": "active", + "id": "0x17d8C396a55D6c1c2130EfC23f4936b56860Df9C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x17d8C396a55D6c1c2130EfC23f4936b56860Df9C/logo.png b/blockchains/smartchain/assets/0x17d8C396a55D6c1c2130EfC23f4936b56860Df9C/logo.png new file mode 100644 index 00000000..8f17fa0b Binary files /dev/null and b/blockchains/smartchain/assets/0x17d8C396a55D6c1c2130EfC23f4936b56860Df9C/logo.png differ diff --git a/blockchains/smartchain/assets/0x17dD6e742A5324D3F1B2b242374fc01Bc61ee56d/info.json b/blockchains/smartchain/assets/0x17dD6e742A5324D3F1B2b242374fc01Bc61ee56d/info.json new file mode 100644 index 00000000..3b752b0d --- /dev/null +++ b/blockchains/smartchain/assets/0x17dD6e742A5324D3F1B2b242374fc01Bc61ee56d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Flaring Sword", + "type": "BEP20", + "symbol": "SWORD", + "decimals": 18, + "website": "https://flaringsword.com/", + "description": "Flaring Sword is the first entertainment platform providing a variety of games industry services under a single roof, accessible through a single login discover, buy, and play games, watch live-streaming feeds, interact with your favorite influencers, participate in contests, compete in tournaments and much more.", + "explorer": "https://bscscan.com/token/0x17dD6e742A5324D3F1B2b242374fc01Bc61ee56d", + "status": "active", + "id": "0x17dD6e742A5324D3F1B2b242374fc01Bc61ee56d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x17dD6e742A5324D3F1B2b242374fc01Bc61ee56d/logo.png b/blockchains/smartchain/assets/0x17dD6e742A5324D3F1B2b242374fc01Bc61ee56d/logo.png new file mode 100644 index 00000000..7360bfc7 Binary files /dev/null and b/blockchains/smartchain/assets/0x17dD6e742A5324D3F1B2b242374fc01Bc61ee56d/logo.png differ diff --git a/blockchains/smartchain/assets/0x1802a63EFe3255aBC3004F8e63047dB96300bd1c/info.json b/blockchains/smartchain/assets/0x1802a63EFe3255aBC3004F8e63047dB96300bd1c/info.json new file mode 100644 index 00000000..464e8ee4 --- /dev/null +++ b/blockchains/smartchain/assets/0x1802a63EFe3255aBC3004F8e63047dB96300bd1c/info.json @@ -0,0 +1,21 @@ +{ + "name": "DYT TOKEN", + "type": "BEP20", + "symbol": "DYT", + "decimals": 18, + "website": "https://www.thedynasty.app/", + "description": "DYNASTY is a Play to Earn NFT Role-Playing Game , Launchpad platform , wallet Dynasty", + "explorer": "https://bscscan.com/token/0x1802a63EFe3255aBC3004F8e63047dB96300bd1c", + "status": "active", + "id": "0x1802a63EFe3255aBC3004F8e63047dB96300bd1c", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-dynasty/" + }, + { + "name": "x", + "url": "https://x.com/Thedynasty_app" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1802a63EFe3255aBC3004F8e63047dB96300bd1c/logo.png b/blockchains/smartchain/assets/0x1802a63EFe3255aBC3004F8e63047dB96300bd1c/logo.png new file mode 100644 index 00000000..e2fcb219 Binary files /dev/null and b/blockchains/smartchain/assets/0x1802a63EFe3255aBC3004F8e63047dB96300bd1c/logo.png differ diff --git a/blockchains/smartchain/assets/0x180b25beb6c84c2b3855E630d50C965425Fb5de2/info.json b/blockchains/smartchain/assets/0x180b25beb6c84c2b3855E630d50C965425Fb5de2/info.json new file mode 100644 index 00000000..6b861187 --- /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 00000000..fcf462b5 Binary files /dev/null and b/blockchains/smartchain/assets/0x180b25beb6c84c2b3855E630d50C965425Fb5de2/logo.png differ diff --git a/blockchains/smartchain/assets/0x182c763a4b2Fbd18C9B5f2D18102a0dDd9D5DF26/info.json b/blockchains/smartchain/assets/0x182c763a4b2Fbd18C9B5f2D18102a0dDd9D5DF26/info.json new file mode 100644 index 00000000..8d33cde4 --- /dev/null +++ b/blockchains/smartchain/assets/0x182c763a4b2Fbd18C9B5f2D18102a0dDd9D5DF26/info.json @@ -0,0 +1,11 @@ +{ + "name": "HOGL Finance", + "symbol": "HOGL", + "type": "BEP20", + "decimals": 16, + "description": "HOGL is a deflationary currency on the BSC network. Every time a transaction takes place with HOGL, 1% of that transaction is removed or burned from the total supply and increases the scarcity of every HOGL.", + "website": "https://hogl.finance", + "explorer": "https://bscscan.com/token/0x182c763a4b2fbd18c9b5f2d18102a0ddd9d5df26", + "status": "active", + "id": "0x182c763a4b2Fbd18C9B5f2D18102a0dDd9D5DF26" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x182c763a4b2Fbd18C9B5f2D18102a0dDd9D5DF26/logo.png b/blockchains/smartchain/assets/0x182c763a4b2Fbd18C9B5f2D18102a0dDd9D5DF26/logo.png new file mode 100644 index 00000000..8b465ef7 Binary files /dev/null and b/blockchains/smartchain/assets/0x182c763a4b2Fbd18C9B5f2D18102a0dDd9D5DF26/logo.png differ diff --git a/blockchains/smartchain/assets/0x18359CF655A444204e46F286eDC445C9D30fFc54/info.json b/blockchains/smartchain/assets/0x18359CF655A444204e46F286eDC445C9D30fFc54/info.json new file mode 100644 index 00000000..8e5fff70 --- /dev/null +++ b/blockchains/smartchain/assets/0x18359CF655A444204e46F286eDC445C9D30fFc54/info.json @@ -0,0 +1,25 @@ +{ + "name": "DOGEMOON", + "type": "BEP20", + "symbol": "DGMOON", + "decimals": 18, + "website": "https://dogemoon.me/", + "description": "Dogemoon is a charity project built on Binance Smart Chain featuring auto burns to a locked liquidity, auto staking mechanism, and 6% tax is imposed on transactions for charity and marketing.", + "explorer": "https://bscscan.com/token/0x18359CF655A444204e46F286eDC445C9D30fFc54", + "status": "active", + "id": "0x18359CF655A444204e46F286eDC445C9D30fFc54", + "links": [ + { + "name": "x", + "url": "https://x.com/DogeMoonMain" + }, + { + "name": "telegram", + "url": "https://t.me/dogemoonme" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/DogemoonToken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x18359CF655A444204e46F286eDC445C9D30fFc54/logo.png b/blockchains/smartchain/assets/0x18359CF655A444204e46F286eDC445C9D30fFc54/logo.png new file mode 100644 index 00000000..7ea8e8c7 Binary files /dev/null and b/blockchains/smartchain/assets/0x18359CF655A444204e46F286eDC445C9D30fFc54/logo.png differ diff --git a/blockchains/smartchain/assets/0x183B2c147fE11788b73BC0D6A7E0186aA5464BfA/info.json b/blockchains/smartchain/assets/0x183B2c147fE11788b73BC0D6A7E0186aA5464BfA/info.json new file mode 100644 index 00000000..b6d16b58 --- /dev/null +++ b/blockchains/smartchain/assets/0x183B2c147fE11788b73BC0D6A7E0186aA5464BfA/info.json @@ -0,0 +1,37 @@ +{ + "name": "Futura Finance", + "website": "https://futurafinance.io", + "description": "Futura aims to build a decentralized escrow system built on the Binance Smart Chain that focuses on Web 3.0 functionalities for the next generation of payments processing.", + "explorer": "https://bscscan.com/token/0x183B2c147fE11788b73BC0D6A7E0186aA5464BfA", + "type": "BEP20", + "symbol": "FFT", + "decimals": 9, + "status": "active", + "id": "0x183B2c147fE11788b73BC0D6A7E0186aA5464BfA", + "links": [ + { + "name": "telegram", + "url": "https://t.me/FuturaBSC" + }, + { + "name": "x", + "url": "https://x.com/FuturaBSC" + }, + { + "name": "github", + "url": "https://github.com/futurafinance" + }, + { + "name": "whitepaper", + "url": "https://docs.futurafinance.io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/futura-finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/futura-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x183B2c147fE11788b73BC0D6A7E0186aA5464BfA/logo.png b/blockchains/smartchain/assets/0x183B2c147fE11788b73BC0D6A7E0186aA5464BfA/logo.png new file mode 100644 index 00000000..b1d23b2b Binary files /dev/null and b/blockchains/smartchain/assets/0x183B2c147fE11788b73BC0D6A7E0186aA5464BfA/logo.png differ diff --git a/blockchains/smartchain/assets/0x184079Ca987F562ae6a0c59f4BE5cADB20323863/info.json b/blockchains/smartchain/assets/0x184079Ca987F562ae6a0c59f4BE5cADB20323863/info.json new file mode 100644 index 00000000..4556d17b --- /dev/null +++ b/blockchains/smartchain/assets/0x184079Ca987F562ae6a0c59f4BE5cADB20323863/info.json @@ -0,0 +1,29 @@ +{ + "name": "MarsRise", + "type": "BEP20", + "symbol": "MARSRISE", + "decimals": 9, + "website": "https://marsrise.net/", + "description": "MarsRise ($MARSRISE) is a token launched on Binance Smart Chain with automatic liquidity pool growth and holder rewards through transaction taxation.", + "explorer": "https://bscscan.com/token/0x184079Ca987F562ae6a0c59f4BE5cADB20323863", + "status": "active", + "id": "0x184079Ca987F562ae6a0c59f4BE5cADB20323863", + "links": [ + { + "name": "x", + "url": "https://x.com/MarsRise_Bsc" + }, + { + "name": "github", + "url": "https://github.com/MarsRiseBsc/" + }, + { + "name": "telegram", + "url": "https://t.me/MarsRiseBsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marsrise/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x184079Ca987F562ae6a0c59f4BE5cADB20323863/logo.png b/blockchains/smartchain/assets/0x184079Ca987F562ae6a0c59f4BE5cADB20323863/logo.png new file mode 100644 index 00000000..04c6594a Binary files /dev/null and b/blockchains/smartchain/assets/0x184079Ca987F562ae6a0c59f4BE5cADB20323863/logo.png differ diff --git a/blockchains/smartchain/assets/0x184392F0f03CA11186722f38a04C15c3A90155D3/info.json b/blockchains/smartchain/assets/0x184392F0f03CA11186722f38a04C15c3A90155D3/info.json new file mode 100644 index 00000000..cdeda63b --- /dev/null +++ b/blockchains/smartchain/assets/0x184392F0f03CA11186722f38a04C15c3A90155D3/info.json @@ -0,0 +1,11 @@ +{ + "name": "BoozeMoon", + "type": "BEP20", + "symbol": "BOOZE", + "decimals": 9, + "website": "https://boozemoon.finance/", + "description": "The crypto party token bringing beers to its community. ", + "explorer": "https://bscscan.com/token/0x184392F0f03CA11186722f38a04C15c3A90155D3", + "status": "active", + "id": "0x184392F0f03CA11186722f38a04C15c3A90155D3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x184392F0f03CA11186722f38a04C15c3A90155D3/logo.png b/blockchains/smartchain/assets/0x184392F0f03CA11186722f38a04C15c3A90155D3/logo.png new file mode 100644 index 00000000..3d914a9d Binary files /dev/null and b/blockchains/smartchain/assets/0x184392F0f03CA11186722f38a04C15c3A90155D3/logo.png differ diff --git a/blockchains/smartchain/assets/0x186866858aEf38c05829166A7711b37563e15994/info.json b/blockchains/smartchain/assets/0x186866858aEf38c05829166A7711b37563e15994/info.json new file mode 100644 index 00000000..6de56769 --- /dev/null +++ b/blockchains/smartchain/assets/0x186866858aEf38c05829166A7711b37563e15994/info.json @@ -0,0 +1,29 @@ +{ + "name": "Hodl Finance Token", + "website": "https://hodl.finance", + "description": "Hodl Finance merges centralized and decentralized finance to create a sustainable ecosystem for constant innovation. By combining the best aspects of community governance and a transparent foundation, the growth of the community and ecosystem is ensured.", + "explorer": "https://bscscan.com/token/0x186866858aEf38c05829166A7711b37563e15994", + "type": "BEP20", + "symbol": "HFT", + "decimals": 9, + "status": "active", + "id": "0x186866858aEf38c05829166A7711b37563e15994", + "links": [ + { + "name": "telegram", + "url": "https://t.me/HodlFinanceAnn" + }, + { + "name": "x", + "url": "https://x.com/HFToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hodl-finance/" + }, + { + "name": "medium", + "url": "https://medium.com/@hodl.finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x186866858aEf38c05829166A7711b37563e15994/logo.png b/blockchains/smartchain/assets/0x186866858aEf38c05829166A7711b37563e15994/logo.png new file mode 100644 index 00000000..fd1f06cc Binary files /dev/null and b/blockchains/smartchain/assets/0x186866858aEf38c05829166A7711b37563e15994/logo.png differ diff --git a/blockchains/smartchain/assets/0x189b0199c9ACE4C9C0e3Ae36d417c81609Bc4444/info.json b/blockchains/smartchain/assets/0x189b0199c9ACE4C9C0e3Ae36d417c81609Bc4444/info.json new file mode 100644 index 00000000..7756667c --- /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 new file mode 100644 index 00000000..c6567d7e --- /dev/null +++ b/blockchains/smartchain/assets/0x18C5fAC26C5d8b859b3A83f0f167D8924098d28a/info.json @@ -0,0 +1,29 @@ +{ + "name": "NAFTY", + "type": "BEP20", + "symbol": "NAFTY", + "decimals": 9, + "website": "https://naftytoken.com", + "description": "NAFTY, as a socialized re-distribution DeFi protocol, helps content creators to earn much more, and content consumers to pay much less via disintermediation, as well as receive rewards from all transactions across the Nafty Network", + "explorer": "https://bscscan.com/token/0x18C5fAC26C5d8b859b3A83f0f167D8924098d28a", + "status": "active", + "id": "0x18C5fAC26C5d8b859b3A83f0f167D8924098d28a", + "links": [ + { + "name": "x", + "url": "https://x.com/naftyofficial" + }, + { + "name": "telegram", + "url": "https://t.me/naftydiscussions" + }, + { + "name": "whitepaper", + "url": "https://naftytoken.com/docs/whitepaper/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/CvtBYZGCKm" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x18C5fAC26C5d8b859b3A83f0f167D8924098d28a/logo.png b/blockchains/smartchain/assets/0x18C5fAC26C5d8b859b3A83f0f167D8924098d28a/logo.png new file mode 100644 index 00000000..3347b6a9 Binary files /dev/null and b/blockchains/smartchain/assets/0x18C5fAC26C5d8b859b3A83f0f167D8924098d28a/logo.png differ diff --git a/blockchains/smartchain/assets/0x18D883F6647cB3195F55EB93BF9EE8ae824E3a6f/info.json b/blockchains/smartchain/assets/0x18D883F6647cB3195F55EB93BF9EE8ae824E3a6f/info.json new file mode 100644 index 00000000..35f189ec --- /dev/null +++ b/blockchains/smartchain/assets/0x18D883F6647cB3195F55EB93BF9EE8ae824E3a6f/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniFarm", + "type": "BEP20", + "symbol": "UNF", + "decimals": 9, + "website": "https://unifarm.io/", + "description": "Secure Auto Staking & Liquidity Farming! Swapping rug-pulled tokens for tokens with value (based on DAO protocol).", + "explorer": "https://bscscan.com/token/0x18D883F6647cB3195F55EB93BF9EE8ae824E3a6f", + "status": "active", + "id": "0x18D883F6647cB3195F55EB93BF9EE8ae824E3a6f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x18D883F6647cB3195F55EB93BF9EE8ae824E3a6f/logo.png b/blockchains/smartchain/assets/0x18D883F6647cB3195F55EB93BF9EE8ae824E3a6f/logo.png new file mode 100644 index 00000000..02626137 Binary files /dev/null and b/blockchains/smartchain/assets/0x18D883F6647cB3195F55EB93BF9EE8ae824E3a6f/logo.png differ diff --git a/blockchains/smartchain/assets/0x18De24acb876C0B8392d9C55583Bb21c0355980b/info.json b/blockchains/smartchain/assets/0x18De24acb876C0B8392d9C55583Bb21c0355980b/info.json new file mode 100644 index 00000000..33c8136b --- /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 00000000..0629c140 Binary files /dev/null and b/blockchains/smartchain/assets/0x18De24acb876C0B8392d9C55583Bb21c0355980b/logo.png differ diff --git a/blockchains/smartchain/assets/0x18b426813731C144108c6D7FAf5EdE71a258fD9A/info.json b/blockchains/smartchain/assets/0x18b426813731C144108c6D7FAf5EdE71a258fD9A/info.json new file mode 100644 index 00000000..56d5df4b --- /dev/null +++ b/blockchains/smartchain/assets/0x18b426813731C144108c6D7FAf5EdE71a258fD9A/info.json @@ -0,0 +1,11 @@ +{ + "name": "OLYMPUS", + "website": "https://olympustoken.io/", + "description": "A buyback token worthy of the gods from the creators of BogTools, Gabe, and Bingus.", + "explorer": "https://bscscan.com/token/0x18b426813731c144108c6d7faf5ede71a258fd9a", + "type": "BEP20", + "symbol": "OLYMPUS", + "decimals": 9, + "status": "active", + "id": "0x18b426813731C144108c6D7FAf5EdE71a258fD9A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x18b426813731C144108c6D7FAf5EdE71a258fD9A/logo.png b/blockchains/smartchain/assets/0x18b426813731C144108c6D7FAf5EdE71a258fD9A/logo.png new file mode 100644 index 00000000..6a6b93ec Binary files /dev/null and b/blockchains/smartchain/assets/0x18b426813731C144108c6D7FAf5EdE71a258fD9A/logo.png differ diff --git a/blockchains/smartchain/assets/0x18c4AF61DbE6fD55d6470943b4ab8530777d009C/info.json b/blockchains/smartchain/assets/0x18c4AF61DbE6fD55d6470943b4ab8530777d009C/info.json new file mode 100644 index 00000000..e060ff94 --- /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 00000000..8465b865 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 new file mode 100644 index 00000000..ce727bac --- /dev/null +++ b/blockchains/smartchain/assets/0x18fF245c134D9DAA6fED977617654490ba4DA526/info.json @@ -0,0 +1,37 @@ +{ + "name": "MaskDoge Coin", + "website": "https://www.maskdogecoin.io", + "description": "MaskDoge is a deflationary, liquidity auto-growing and community-driven DeFi token. It is featured with anti-rugpull and anti-whale mechanisms. It also has a charity wallet which will be used to support charities around the globe.", + "explorer": "https://bscscan.com/token/0x18ff245c134d9daa6fed977617654490ba4da526", + "type": "BEP20", + "symbol": "MASKDOGE", + "decimals": 9, + "status": "active", + "id": "0x18fF245c134D9DAA6fED977617654490ba4DA526", + "links": [ + { + "name": "x", + "url": "https://x.com/TheMaskDogeCoin" + }, + { + "name": "telegram", + "url": "https://t.me/maskdogeofficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/SJrrUjCARN" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MaskDoge" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/maskdoge" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maskdoge" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x18fF245c134D9DAA6fED977617654490ba4DA526/logo.png b/blockchains/smartchain/assets/0x18fF245c134D9DAA6fED977617654490ba4DA526/logo.png new file mode 100644 index 00000000..c767f39a Binary files /dev/null and b/blockchains/smartchain/assets/0x18fF245c134D9DAA6fED977617654490ba4DA526/logo.png differ diff --git a/blockchains/smartchain/assets/0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454/info.json b/blockchains/smartchain/assets/0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454/info.json new file mode 100644 index 00000000..6712d0b3 --- /dev/null +++ b/blockchains/smartchain/assets/0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454/info.json @@ -0,0 +1,29 @@ +{ + "name": "bDollar", + "website": "https://bdollar.fi", + "description": "bDollar (BDO) is an algorithmic stable-coin running on Binance Smart-chain. Completely decentralised on-chain governance.", + "explorer": "https://bscscan.com/token/0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454", + "type": "BEP20", + "symbol": "BDO", + "decimals": 18, + "status": "active", + "id": "0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454", + "links": [ + { + "name": "github", + "url": "https://github.com/bearn-defi/bdollar-smartcontracts" + }, + { + "name": "x", + "url": "https://x.com/bDollar_Fi" + }, + { + "name": "telegram", + "url": "https://t.me/Bearn_Fi" + }, + { + "name": "medium", + "url": "https://bearn-defi.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454/logo.png b/blockchains/smartchain/assets/0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454/logo.png new file mode 100644 index 00000000..ef79cfe9 Binary files /dev/null and b/blockchains/smartchain/assets/0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454/logo.png differ diff --git a/blockchains/smartchain/assets/0x192E9321b6244D204D4301AfA507EB29CA84D9ef/info.json b/blockchains/smartchain/assets/0x192E9321b6244D204D4301AfA507EB29CA84D9ef/info.json new file mode 100644 index 00000000..ab55e864 --- /dev/null +++ b/blockchains/smartchain/assets/0x192E9321b6244D204D4301AfA507EB29CA84D9ef/info.json @@ -0,0 +1,11 @@ +{ + "name": "BoxerInu", + "type": "BEP20", + "symbol": "BOXER", + "decimals": 9, + "website": "https://boxerinu.finance/", + "description": "A community-driven, dog-themed protocol with actual use cases and utility.", + "explorer": "https://bscscan.com/token/0x192E9321b6244D204D4301AfA507EB29CA84D9ef", + "status": "active", + "id": "0x192E9321b6244D204D4301AfA507EB29CA84D9ef" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x192E9321b6244D204D4301AfA507EB29CA84D9ef/logo.png b/blockchains/smartchain/assets/0x192E9321b6244D204D4301AfA507EB29CA84D9ef/logo.png new file mode 100644 index 00000000..ec009cad Binary files /dev/null and b/blockchains/smartchain/assets/0x192E9321b6244D204D4301AfA507EB29CA84D9ef/logo.png differ diff --git a/blockchains/smartchain/assets/0x193f4A4a6ea24102F49b931DEeeb931f6E32405d/info.json b/blockchains/smartchain/assets/0x193f4A4a6ea24102F49b931DEeeb931f6E32405d/info.json new file mode 100644 index 00000000..97fbc970 --- /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 00000000..766e796c 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 00000000..cd68f124 --- /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 00000000..e65dba14 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 00000000..267c0a4e --- /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 00000000..e09da245 Binary files /dev/null and b/blockchains/smartchain/assets/0x19601179A60f55Ff6636F5D1A8b6671053Bd60a8/logo.png differ diff --git a/blockchains/smartchain/assets/0x196dC2421AF765c2673FC6093fb1374b28064270/info.json b/blockchains/smartchain/assets/0x196dC2421AF765c2673FC6093fb1374b28064270/info.json new file mode 100644 index 00000000..ef7672d5 --- /dev/null +++ b/blockchains/smartchain/assets/0x196dC2421AF765c2673FC6093fb1374b28064270/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ape Token", + "website": "www.apetoken.net", + "description": "Ape Token is a frictionless, yield-generating contract which is designed to be used for staking and betting in eSports via our home brew app currently in development.", + "explorer": "https://bscscan.com/token/0x196dC2421AF765c2673FC6093fb1374b28064270", + "type": "BEP20", + "symbol": "APET", + "decimals": 9, + "status": "active", + "id": "0x196dC2421AF765c2673FC6093fb1374b28064270" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x196dC2421AF765c2673FC6093fb1374b28064270/logo.png b/blockchains/smartchain/assets/0x196dC2421AF765c2673FC6093fb1374b28064270/logo.png new file mode 100644 index 00000000..916aed7c Binary files /dev/null and b/blockchains/smartchain/assets/0x196dC2421AF765c2673FC6093fb1374b28064270/logo.png differ diff --git a/blockchains/smartchain/assets/0x19904Bc04c09e5d29Ed216dDD105bdf103A0bA2D/info.json b/blockchains/smartchain/assets/0x19904Bc04c09e5d29Ed216dDD105bdf103A0bA2D/info.json new file mode 100644 index 00000000..e660ae14 --- /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 00000000..96cbf3b0 Binary files /dev/null and b/blockchains/smartchain/assets/0x19904Bc04c09e5d29Ed216dDD105bdf103A0bA2D/logo.png differ diff --git a/blockchains/smartchain/assets/0x1991501f1398663F69dD7391C055bb0DF6514F76/info.json b/blockchains/smartchain/assets/0x1991501f1398663F69dD7391C055bb0DF6514F76/info.json new file mode 100644 index 00000000..bdc473cf --- /dev/null +++ b/blockchains/smartchain/assets/0x1991501f1398663F69dD7391C055bb0DF6514F76/info.json @@ -0,0 +1,11 @@ +{ + "name": "HotDoge Token", + "website": "https://www.hotdogetoken.com/", + "description": "HotDoge is a community-driven token wiith a reflection mechanism and various DeFi features", + "explorer": "https://bscscan.com/token/0x1991501f1398663f69dd7391c055bb0df6514f76", + "type": "BEP20", + "symbol": "HotDoge", + "decimals": 9, + "status": "active", + "id": "0x1991501f1398663F69dD7391C055bb0DF6514F76" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1991501f1398663F69dD7391C055bb0DF6514F76/logo.png b/blockchains/smartchain/assets/0x1991501f1398663F69dD7391C055bb0DF6514F76/logo.png new file mode 100644 index 00000000..81df9468 Binary files /dev/null and b/blockchains/smartchain/assets/0x1991501f1398663F69dD7391C055bb0DF6514F76/logo.png differ diff --git a/blockchains/smartchain/assets/0x1997830B5beB723f5089bb8fc38766d419a0444d/info.json b/blockchains/smartchain/assets/0x1997830B5beB723f5089bb8fc38766d419a0444d/info.json new file mode 100644 index 00000000..89574cac --- /dev/null +++ b/blockchains/smartchain/assets/0x1997830B5beB723f5089bb8fc38766d419a0444d/info.json @@ -0,0 +1,11 @@ +{ + "name": "New Guinea Singing Dog Inu", + "website": "https://newinu.org", + "description": "NEWINU - The Dog Singer. NEWINU is a deflationary token that allows for passive income generation for investors", + "explorer": "https://bscscan.com/token/0x1997830b5beb723f5089bb8fc38766d419a0444d", + "type": "BEP20", + "symbol": "NEWINU", + "decimals": 9, + "status": "active", + "id": "0x1997830B5beB723f5089bb8fc38766d419a0444d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1997830B5beB723f5089bb8fc38766d419a0444d/logo.png b/blockchains/smartchain/assets/0x1997830B5beB723f5089bb8fc38766d419a0444d/logo.png new file mode 100644 index 00000000..8b3a29d0 Binary files /dev/null and b/blockchains/smartchain/assets/0x1997830B5beB723f5089bb8fc38766d419a0444d/logo.png differ diff --git a/blockchains/smartchain/assets/0x199F788DDb566B7eBB59bf35B36914F2aCdb33DE/info.json b/blockchains/smartchain/assets/0x199F788DDb566B7eBB59bf35B36914F2aCdb33DE/info.json new file mode 100644 index 00000000..c0d50c07 --- /dev/null +++ b/blockchains/smartchain/assets/0x199F788DDb566B7eBB59bf35B36914F2aCdb33DE/info.json @@ -0,0 +1,29 @@ +{ + "name": "DeFido", + "type": "BEP20", + "symbol": "DEFIDO", + "decimals": 9, + "website": "https://defidotoken.com", + "description": "Floki, Meet DeFido! This brand new token was born merely moments after a top 3 exchange tweeted their dog named “DeFido” at Elon Musk. & this French Bulldog is ready for lift off!", + "explorer": "https://bscscan.com/token/0x199F788DDb566B7eBB59bf35B36914F2aCdb33DE", + "status": "active", + "id": "0x199F788DDb566B7eBB59bf35B36914F2aCdb33DE", + "links": [ + { + "name": "telegram", + "url": "https://t.me/DeFidoTokenOfficial" + }, + { + "name": "x", + "url": "https://x.com/defidotoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defido/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/defido" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x199F788DDb566B7eBB59bf35B36914F2aCdb33DE/logo.png b/blockchains/smartchain/assets/0x199F788DDb566B7eBB59bf35B36914F2aCdb33DE/logo.png new file mode 100644 index 00000000..675f535c Binary files /dev/null and b/blockchains/smartchain/assets/0x199F788DDb566B7eBB59bf35B36914F2aCdb33DE/logo.png differ diff --git a/blockchains/smartchain/assets/0x19B60612F9A93359bca835A788A334D4157E675B/info.json b/blockchains/smartchain/assets/0x19B60612F9A93359bca835A788A334D4157E675B/info.json new file mode 100644 index 00000000..f8d60d24 --- /dev/null +++ b/blockchains/smartchain/assets/0x19B60612F9A93359bca835A788A334D4157E675B/info.json @@ -0,0 +1,11 @@ +{ + "name": "PAWGcoin", + "type": "BEP20", + "symbol": "PAWG", + "decimals": 9, + "website": "https://www.pawgcoin.io", + "description": "PAWGcoin is disrupting the viral meme coin market by providing a cryptocurrency that powers transactions between content creators and content enthusiasts of tasteful noods.", + "explorer": "https://bscscan.com/token/0x19B60612F9A93359bca835A788A334D4157E675B", + "status": "active", + "id": "0x19B60612F9A93359bca835A788A334D4157E675B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x19B60612F9A93359bca835A788A334D4157E675B/logo.png b/blockchains/smartchain/assets/0x19B60612F9A93359bca835A788A334D4157E675B/logo.png new file mode 100644 index 00000000..58de5539 Binary files /dev/null and b/blockchains/smartchain/assets/0x19B60612F9A93359bca835A788A334D4157E675B/logo.png differ diff --git a/blockchains/smartchain/assets/0x19D3A7c26a1271eeBB6f04bDb4565b7F2B7EFc30/info.json b/blockchains/smartchain/assets/0x19D3A7c26a1271eeBB6f04bDb4565b7F2B7EFc30/info.json new file mode 100644 index 00000000..6506cd42 --- /dev/null +++ b/blockchains/smartchain/assets/0x19D3A7c26a1271eeBB6f04bDb4565b7F2B7EFc30/info.json @@ -0,0 +1,25 @@ +{ + "name": "MetaAxis", + "website": "https://metaaxiscoin.com/", + "description": "MetaAxis is a revolutionary token with an innovative Buy Back and Play to Earn scheme built on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x19D3A7c26a1271eeBB6f04bDb4565b7F2B7EFc30", + "type": "BEP20", + "symbol": "MTA", + "decimals": 9, + "status": "active", + "id": "0x19D3A7c26a1271eeBB6f04bDb4565b7F2B7EFc30", + "links": [ + { + "name": "x", + "url": "https://x.com/MetaAxisCoin" + }, + { + "name": "telegram", + "url": "https://t.me/MetaAxisToken" + }, + { + "name": "whitepaper", + "url": "https://metaaxiscoin.com/Whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x19D3A7c26a1271eeBB6f04bDb4565b7F2B7EFc30/logo.png b/blockchains/smartchain/assets/0x19D3A7c26a1271eeBB6f04bDb4565b7F2B7EFc30/logo.png new file mode 100644 index 00000000..eb26a054 Binary files /dev/null and b/blockchains/smartchain/assets/0x19D3A7c26a1271eeBB6f04bDb4565b7F2B7EFc30/logo.png differ diff --git a/blockchains/smartchain/assets/0x19E506BbF1d8Dbd08e963229434634664A577111/info.json b/blockchains/smartchain/assets/0x19E506BbF1d8Dbd08e963229434634664A577111/info.json new file mode 100644 index 00000000..05290169 --- /dev/null +++ b/blockchains/smartchain/assets/0x19E506BbF1d8Dbd08e963229434634664A577111/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tofu Finance", + "type": "BEP20", + "symbol": "TOFU", + "decimals": 9, + "website": "https://tofufinance.org/", + "description": "The Tofu Finance platform is a blockchain agnostic decentralized system that allows trade settlements across multiple ecosystems, allowing you trade, stake, farm, and earn across blockchains with ease.", + "explorer": "https://bscscan.com/token/0x19E506BbF1d8Dbd08e963229434634664A577111", + "status": "active", + "id": "0x19E506BbF1d8Dbd08e963229434634664A577111" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x19E506BbF1d8Dbd08e963229434634664A577111/logo.png b/blockchains/smartchain/assets/0x19E506BbF1d8Dbd08e963229434634664A577111/logo.png new file mode 100644 index 00000000..3cd9722b Binary files /dev/null and b/blockchains/smartchain/assets/0x19E506BbF1d8Dbd08e963229434634664A577111/logo.png differ diff --git a/blockchains/smartchain/assets/0x19c018e13CFf682e729CC7b5Fb68c8A641bf98A4/info.json b/blockchains/smartchain/assets/0x19c018e13CFf682e729CC7b5Fb68c8A641bf98A4/info.json new file mode 100644 index 00000000..28beff84 --- /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 00000000..976013d2 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 00000000..3af70f48 --- /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 00000000..59de8858 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 new file mode 100644 index 00000000..b23b091d --- /dev/null +++ b/blockchains/smartchain/assets/0x19cd9B8e42d4EF62c3EA124110D5Cfd283CEaC43/info.json @@ -0,0 +1,28 @@ +{ + "name": "Battle Infinity", + "website": "https://battleinfinity.io/", + "description": "Battle Infinity is a gaming platform with multiple P2E battle games which is integrated with the metaverse world.", + "explorer": "https://bscscan.com/token/0x19cd9b8e42d4ef62c3ea124110d5cfd283ceac43", + "type": "BEP20", + "symbol": "IBAT", + "decimals": 9, + "status": "active", + "id": "0x19cd9B8e42d4EF62c3EA124110D5Cfd283CEaC43", + "links": [ + { + "name": "x", + "url": "https://x.com/ibatofficial" + }, + { + "name": "telegram", + "url": "https://t.me/battleinfinity" + }, + { + "name": "facebook", + "url": "https://facebook.com/battleinfinityofficial" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x19cd9B8e42d4EF62c3EA124110D5Cfd283CEaC43/logo.png b/blockchains/smartchain/assets/0x19cd9B8e42d4EF62c3EA124110D5Cfd283CEaC43/logo.png new file mode 100644 index 00000000..699f67b7 Binary files /dev/null and b/blockchains/smartchain/assets/0x19cd9B8e42d4EF62c3EA124110D5Cfd283CEaC43/logo.png differ diff --git a/blockchains/smartchain/assets/0x19e6BfC1A6e4B042Fb20531244D47E252445df01/info.json b/blockchains/smartchain/assets/0x19e6BfC1A6e4B042Fb20531244D47E252445df01/info.json new file mode 100644 index 00000000..b8f1b669 --- /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 00000000..865b51ba 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 new file mode 100644 index 00000000..f5ae48a3 --- /dev/null +++ b/blockchains/smartchain/assets/0x19eE64850862cFd234e20c0db4edA286f12ec907/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream EOS Token", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x19eE64850862cFd234e20c0db4edA286f12ec907", + "type": "BEP20", + "symbol": "crEOS", + "decimals": 8, + "status": "active", + "id": "0x19eE64850862cFd234e20c0db4edA286f12ec907", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x19eE64850862cFd234e20c0db4edA286f12ec907/logo.png b/blockchains/smartchain/assets/0x19eE64850862cFd234e20c0db4edA286f12ec907/logo.png new file mode 100644 index 00000000..ac8688a5 Binary files /dev/null and b/blockchains/smartchain/assets/0x19eE64850862cFd234e20c0db4edA286f12ec907/logo.png differ diff --git a/blockchains/smartchain/assets/0x1A2fb0Af670D0234c2857FaD35b789F8Cb725584/info.json b/blockchains/smartchain/assets/0x1A2fb0Af670D0234c2857FaD35b789F8Cb725584/info.json new file mode 100644 index 00000000..a2daa348 --- /dev/null +++ b/blockchains/smartchain/assets/0x1A2fb0Af670D0234c2857FaD35b789F8Cb725584/info.json @@ -0,0 +1,22 @@ +{ + "name": "KUN", + "website": "https://qian.finance/mining", + "description": "KUN is the governance token of the QIAN stablecoin protocol. It is used to vote on QIAN governance and to maintain QUSD price stability.", + "explorer": "https://bscscan.com/token/0x1a2fb0af670d0234c2857fad35b789f8cb725584", + "audit_report": "https://qian.finance/PeckShield-Audit-Report-QIAN2-v1.0.pdf", + "type": "BEP20", + "symbol": "KUN", + "decimals": 18, + "status": "active", + "id": "0x1A2fb0Af670D0234c2857FaD35b789F8Cb725584", + "links": [ + { + "name": "whitepaper", + "url": "https://qian.finance/qian_whitepaper_zh.pdf" + }, + { + "name": "github", + "url": "https://github.com/QIAN-Protocol/QIAN" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1A2fb0Af670D0234c2857FaD35b789F8Cb725584/logo.png b/blockchains/smartchain/assets/0x1A2fb0Af670D0234c2857FaD35b789F8Cb725584/logo.png new file mode 100644 index 00000000..195a3271 Binary files /dev/null and b/blockchains/smartchain/assets/0x1A2fb0Af670D0234c2857FaD35b789F8Cb725584/logo.png differ diff --git a/blockchains/smartchain/assets/0x1A52BA9C62DfedA37eAA44f9179d5FED97464444/info.json b/blockchains/smartchain/assets/0x1A52BA9C62DfedA37eAA44f9179d5FED97464444/info.json new file mode 100644 index 00000000..df7985b7 --- /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 00000000..7686e062 --- /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 00000000..588d8d6a 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 new file mode 100644 index 00000000..c683aa94 --- /dev/null +++ b/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/info.json @@ -0,0 +1,43 @@ +{ + "name": "BNB pegged Dai Token", + "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", + "research": "https://research.binance.com/en/projects/dai", + "type": "BEP20", + "symbol": "DAI", + "decimals": 18, + "status": "active", + "id": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", + "tags": [ + "binance-peg", + "stablecoin", + "defi" + ], + "links": [ + { + "name": "blog", + "url": "https://medium.com/@MakerDAO" + }, + { + "name": "x", + "url": "https://x.com/MakerDAO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MakerDAO/" + }, + { + "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/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/logo.png b/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/logo.png new file mode 100644 index 00000000..836fe787 Binary files /dev/null and b/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/logo.png differ diff --git a/blockchains/smartchain/assets/0x1Aa4BDb03f27B08Ad203Aa083e88Eb425CEdD330/info.json b/blockchains/smartchain/assets/0x1Aa4BDb03f27B08Ad203Aa083e88Eb425CEdD330/info.json new file mode 100644 index 00000000..d322996b --- /dev/null +++ b/blockchains/smartchain/assets/0x1Aa4BDb03f27B08Ad203Aa083e88Eb425CEdD330/info.json @@ -0,0 +1,33 @@ +{ + "name": "Annex ETH", + "website": "https://www.annex.finance/", + "description": "Money Markets. A Decentralized Marketplace for Lenders and Borrowers", + "explorer": "https://bscscan.com/token/0x1Aa4BDb03f27B08Ad203Aa083e88Eb425CEdD330", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/AnnexFinance" + }, + { + "name": "medium", + "url": "https://annexfinance.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/Annex_finance_group" + }, + { + "name": "github", + "url": "https://github.com/annexfinance/annex-protocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AnnexFinance/" + } + ], + "symbol": "aETH", + "decimals": 8, + "status": "active", + "id": "0x1Aa4BDb03f27B08Ad203Aa083e88Eb425CEdD330" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1Aa4BDb03f27B08Ad203Aa083e88Eb425CEdD330/logo.png b/blockchains/smartchain/assets/0x1Aa4BDb03f27B08Ad203Aa083e88Eb425CEdD330/logo.png new file mode 100644 index 00000000..5a0fd00c Binary files /dev/null and b/blockchains/smartchain/assets/0x1Aa4BDb03f27B08Ad203Aa083e88Eb425CEdD330/logo.png differ diff --git a/blockchains/smartchain/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json b/blockchains/smartchain/assets/0x1Aad217B8F78dbA5E6693460e8470F8b1A3977f3/info.json new file mode 100644 index 00000000..bb256d22 --- /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 00000000..1407faec 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 new file mode 100644 index 00000000..5302f052 --- /dev/null +++ b/blockchains/smartchain/assets/0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32/info.json @@ -0,0 +1,44 @@ +{ + "name": "BOT", + "type": "BEP20", + "symbol": "BOT", + "decimals": 18, + "website": "https://www.botpla.net/", + "description": "BOT is a token issued by Botplanet Ltd", + "explorer": "https://bscscan.com/token/0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32", + "status": "active", + "id": "0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32", + "links": [ + { + "name": "x", + "url": "https://x.com/BotPlanet_" + }, + { + "name": "github", + "url": "https://github.com/BOTDeFi" + }, + { + "name": "telegram", + "url": "https://t.me/botplanetglobal" + }, + { + "name": "telegram_news", + "url": "https://t.me/botplanetnews" + }, + { + "name": "blog", + "url": "https://botpla.net/blog/" + }, + { + "name": "whitepaper", + "url": "https://botpla.net/wp-content/uploads/2022/02/White-Paper.pdf" + }, + { + "name": "medium", + "url": "https://botplanet.medium.com/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32/logo.png b/blockchains/smartchain/assets/0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32/logo.png new file mode 100644 index 00000000..9c4f35ae Binary files /dev/null and b/blockchains/smartchain/assets/0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32/logo.png differ diff --git a/blockchains/smartchain/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/info.json b/blockchains/smartchain/assets/0x1Ac765B5BEa23184802C7d2d497f7c33f1444A9e/info.json new file mode 100644 index 00000000..9789675d --- /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 00000000..c35598c6 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 new file mode 100644 index 00000000..af2cd58d --- /dev/null +++ b/blockchains/smartchain/assets/0x1AdE17B4B38B472B5259BbC938618226dF7b5Ca8/info.json @@ -0,0 +1,25 @@ +{ + "name": "Quam", + "website": "https://quamnetwork.com/", + "description": "Quam Network is an Advanced Multi-chain Defi Protocol which provides various Defi-Investment methods with the best trading experience over Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x1AdE17B4B38B472B5259BbC938618226dF7b5Ca8", + "type": "BEP20", + "symbol": "QUAM", + "decimals": 18, + "status": "active", + "id": "0x1AdE17B4B38B472B5259BbC938618226dF7b5Ca8", + "links": [ + { + "name": "x", + "url": "https://x.com/quamnetwork" + }, + { + "name": "telegram", + "url": "https://t.me/Quamnetwork" + }, + { + "name": "medium", + "url": "https://quamnetwork.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1AdE17B4B38B472B5259BbC938618226dF7b5Ca8/logo.png b/blockchains/smartchain/assets/0x1AdE17B4B38B472B5259BbC938618226dF7b5Ca8/logo.png new file mode 100644 index 00000000..72160f19 Binary files /dev/null and b/blockchains/smartchain/assets/0x1AdE17B4B38B472B5259BbC938618226dF7b5Ca8/logo.png differ diff --git a/blockchains/smartchain/assets/0x1Ae85D523cab90558311c3d08fDB68fD28757516/info.json b/blockchains/smartchain/assets/0x1Ae85D523cab90558311c3d08fDB68fD28757516/info.json new file mode 100644 index 00000000..52d8664e --- /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 00000000..2bd1a281 Binary files /dev/null and b/blockchains/smartchain/assets/0x1Ae85D523cab90558311c3d08fDB68fD28757516/logo.png differ diff --git a/blockchains/smartchain/assets/0x1B239ABe619e74232c827FBE5E49a4C072bD869D/info.json b/blockchains/smartchain/assets/0x1B239ABe619e74232c827FBE5E49a4C072bD869D/info.json new file mode 100644 index 00000000..4627891a --- /dev/null +++ b/blockchains/smartchain/assets/0x1B239ABe619e74232c827FBE5E49a4C072bD869D/info.json @@ -0,0 +1,21 @@ +{ + "name": "Gyro", + "type": "BEP20", + "symbol": "GYRO", + "decimals": 9, + "website": "https://gyro.money/", + "description": "A decentralized reserve currency protocol with the aim of mitigating volatility of traditional cryptocurrencies while not being pegged to any fiat currencies.", + "explorer": "https://bscscan.com/token/0x1B239ABe619e74232c827FBE5E49a4C072bD869D", + "status": "active", + "id": "0x1B239ABe619e74232c827FBE5E49a4C072bD869D", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gyro/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gyro" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1B239ABe619e74232c827FBE5E49a4C072bD869D/logo.png b/blockchains/smartchain/assets/0x1B239ABe619e74232c827FBE5E49a4C072bD869D/logo.png new file mode 100644 index 00000000..545eeca1 Binary files /dev/null and b/blockchains/smartchain/assets/0x1B239ABe619e74232c827FBE5E49a4C072bD869D/logo.png differ diff --git a/blockchains/smartchain/assets/0x1B391f9d0FfFa86A6088a73ac4AC28d12c9ccFbd/info.json b/blockchains/smartchain/assets/0x1B391f9d0FfFa86A6088a73ac4AC28d12c9ccFbd/info.json new file mode 100644 index 00000000..47887869 --- /dev/null +++ b/blockchains/smartchain/assets/0x1B391f9d0FfFa86A6088a73ac4AC28d12c9ccFbd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sustainable Energy Token", + "type": "BEP20", + "symbol": "SET", + "decimals": 9, + "website": "https://sustainableenergy.online", + "description": "Our vision is a future with sustainable, equitable and resilient transportation, buildings and communities, transforming markets to clean energy requires wide-ranging program leadership layered with initiatives that advance individual behaviors. Raised funds will go to the development of sustainable energies on low-income communities.", + "explorer": "https://bscscan.com/token/0x1B391f9d0FfFa86A6088a73ac4AC28d12c9ccFbd", + "status": "active", + "id": "0x1B391f9d0FfFa86A6088a73ac4AC28d12c9ccFbd" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1B391f9d0FfFa86A6088a73ac4AC28d12c9ccFbd/logo.png b/blockchains/smartchain/assets/0x1B391f9d0FfFa86A6088a73ac4AC28d12c9ccFbd/logo.png new file mode 100644 index 00000000..2c949e3d Binary files /dev/null and b/blockchains/smartchain/assets/0x1B391f9d0FfFa86A6088a73ac4AC28d12c9ccFbd/logo.png differ diff --git a/blockchains/smartchain/assets/0x1B41821625d8CFAd21cd56491DACD57ECaCc83dE/info.json b/blockchains/smartchain/assets/0x1B41821625d8CFAd21cd56491DACD57ECaCc83dE/info.json new file mode 100644 index 00000000..a1d14d05 --- /dev/null +++ b/blockchains/smartchain/assets/0x1B41821625d8CFAd21cd56491DACD57ECaCc83dE/info.json @@ -0,0 +1,33 @@ +{ + "name": "NanoDogeCoin", + "website": "https://nanodogecoin.com/", + "description": "NanoDogeCoin is the revolutionary token that allows investors to earn USD Tether while helping to save dogs worldwide.", + "explorer": "https://bscscan.com/token/0x1B41821625d8CFAd21cd56491DACD57ECaCc83dE", + "type": "BEP20", + "symbol": "NDC", + "decimals": 9, + "status": "active", + "id": "0x1B41821625d8CFAd21cd56491DACD57ECaCc83dE", + "links": [ + { + "name": "telegram", + "url": "https://t.me/NanoDogecoin" + }, + { + "name": "x", + "url": "https://x.com/nanodogecoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nano-dogecoin" + }, + { + "name": "medium", + "url": "https://nanodoge.medium.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/NanoDogeCoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1B41821625d8CFAd21cd56491DACD57ECaCc83dE/logo.png b/blockchains/smartchain/assets/0x1B41821625d8CFAd21cd56491DACD57ECaCc83dE/logo.png new file mode 100644 index 00000000..77bf36cd Binary files /dev/null and b/blockchains/smartchain/assets/0x1B41821625d8CFAd21cd56491DACD57ECaCc83dE/logo.png differ diff --git a/blockchains/smartchain/assets/0x1B76fd13E86ef4fe35F94dB334Eb16066FB8E74F/info.json b/blockchains/smartchain/assets/0x1B76fd13E86ef4fe35F94dB334Eb16066FB8E74F/info.json new file mode 100644 index 00000000..8c1120df --- /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 00000000..e0e2d806 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 new file mode 100644 index 00000000..d39d1711 --- /dev/null +++ b/blockchains/smartchain/assets/0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb/info.json @@ -0,0 +1,15 @@ +{ + "name": "BNB pegged Zcash Token", + "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", + "research": "https://research.binance.com/en/projects/zcash", + "type": "BEP20", + "symbol": "ZEC", + "decimals": 18, + "status": "active", + "id": "0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb", + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb/logo.png b/blockchains/smartchain/assets/0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb/logo.png new file mode 100644 index 00000000..5489f3e5 Binary files /dev/null and b/blockchains/smartchain/assets/0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb/logo.png differ diff --git a/blockchains/smartchain/assets/0x1Bd5ddCD740F2D13b2255fc325c02509da35C4e4/info.json b/blockchains/smartchain/assets/0x1Bd5ddCD740F2D13b2255fc325c02509da35C4e4/info.json new file mode 100644 index 00000000..ad45ca60 --- /dev/null +++ b/blockchains/smartchain/assets/0x1Bd5ddCD740F2D13b2255fc325c02509da35C4e4/info.json @@ -0,0 +1,40 @@ +{ + "name": "Baby Catcoin", + "type": "BEP20", + "symbol": "BABYCATS", + "decimals": 18, + "website": "https://babycatcoin.net/ ", + "description": "Introducing Baby CatCoin, featuring an ever increasing price floor and simple yet effective rewarding system giving ALL holders a massive 3% BUSD rewards. Utility, Nfts, Dapp.", + "explorer": "https://bscscan.com/token/0x1Bd5ddCD740F2D13b2255fc325c02509da35C4e4", + "status": "active", + "id": "0x1Bd5ddCD740F2D13b2255fc325c02509da35C4e4", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-cat-coin/" + }, + { + "name": "x", + "url": "https://x.com/babycatcoinbsc" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/baby-catcoin" + }, + { + "name": "github", + "url": "https://github.com/MyBabyCatCoin/BabyCatCoin/blob/main/Contract" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BabyCatcoinBSC/" + }, + { + "name": "telegram", + "url": "https://t.me/BabyCatcoinChat" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1Bd5ddCD740F2D13b2255fc325c02509da35C4e4/logo.png b/blockchains/smartchain/assets/0x1Bd5ddCD740F2D13b2255fc325c02509da35C4e4/logo.png new file mode 100644 index 00000000..a5589f50 Binary files /dev/null and b/blockchains/smartchain/assets/0x1Bd5ddCD740F2D13b2255fc325c02509da35C4e4/logo.png differ diff --git a/blockchains/smartchain/assets/0x1Bf7AedeC439D6BFE38f8f9b20CF3dc99e3571C4/info.json b/blockchains/smartchain/assets/0x1Bf7AedeC439D6BFE38f8f9b20CF3dc99e3571C4/info.json new file mode 100644 index 00000000..aac57ec3 --- /dev/null +++ b/blockchains/smartchain/assets/0x1Bf7AedeC439D6BFE38f8f9b20CF3dc99e3571C4/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRONPAD.network", + "type": "BEP20", + "symbol": "TRONPAD", + "decimals": 18, + "website": "https://tronpad.network", + "description": "The only launchpad fully backed by the Tron Network! TRONPAD will empower crypto currency projects with the ability to distribute tokens and raise liquidity.", + "explorer": "https://bscscan.com/token/0x1Bf7AedeC439D6BFE38f8f9b20CF3dc99e3571C4", + "status": "active", + "id": "0x1Bf7AedeC439D6BFE38f8f9b20CF3dc99e3571C4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1Bf7AedeC439D6BFE38f8f9b20CF3dc99e3571C4/logo.png b/blockchains/smartchain/assets/0x1Bf7AedeC439D6BFE38f8f9b20CF3dc99e3571C4/logo.png new file mode 100644 index 00000000..0bca9794 Binary files /dev/null and b/blockchains/smartchain/assets/0x1Bf7AedeC439D6BFE38f8f9b20CF3dc99e3571C4/logo.png differ diff --git a/blockchains/smartchain/assets/0x1C2425F50a1e98D5631b223E56760d21BC840C53/info.json b/blockchains/smartchain/assets/0x1C2425F50a1e98D5631b223E56760d21BC840C53/info.json new file mode 100644 index 00000000..1635f954 --- /dev/null +++ b/blockchains/smartchain/assets/0x1C2425F50a1e98D5631b223E56760d21BC840C53/info.json @@ -0,0 +1,11 @@ +{ + "name": "World Stream", + "website": "https://www.worldstreamfinance.com", + "description": "The $tream token contributes to the streamers community, e-sports and game itens", + "explorer": "https://bscscan.com/token/0x1C2425F50a1e98D5631b223E56760d21BC840C53", + "type": "BEP20", + "symbol": "$tream", + "decimals": 9, + "status": "active", + "id": "0x1C2425F50a1e98D5631b223E56760d21BC840C53" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1C2425F50a1e98D5631b223E56760d21BC840C53/logo.png b/blockchains/smartchain/assets/0x1C2425F50a1e98D5631b223E56760d21BC840C53/logo.png new file mode 100644 index 00000000..37e3047c Binary files /dev/null and b/blockchains/smartchain/assets/0x1C2425F50a1e98D5631b223E56760d21BC840C53/logo.png differ diff --git a/blockchains/smartchain/assets/0x1C9257e55318eb9B472ed45ef5C55ccD941538f0/info.json b/blockchains/smartchain/assets/0x1C9257e55318eb9B472ed45ef5C55ccD941538f0/info.json new file mode 100644 index 00000000..de8f396a --- /dev/null +++ b/blockchains/smartchain/assets/0x1C9257e55318eb9B472ed45ef5C55ccD941538f0/info.json @@ -0,0 +1,11 @@ +{ + "name": "TETRA PAY", + "type": "BEP20", + "symbol": "TPAY", + "decimals": 18, + "website": "https://www.tpaytoken.io", + "description": "Tetra Pay is a block chain based marketplace, where buyers and sellers meet to carry out operations involving digital goods and assets with crypto currency transactions. The unique advantage here is an automatic matching of users, basing on straight AI approach It is a first ever artificial intelligence marketplace in the world, combining traditional and smart contract, block chain, future oriented ideas of connecting people and performing operations by analyzing users preferences.", + "explorer": "https://bscscan.com/token/0x1C9257e55318eb9B472ed45ef5C55ccD941538f0", + "status": "active", + "id": "0x1C9257e55318eb9B472ed45ef5C55ccD941538f0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1C9257e55318eb9B472ed45ef5C55ccD941538f0/logo.png b/blockchains/smartchain/assets/0x1C9257e55318eb9B472ed45ef5C55ccD941538f0/logo.png new file mode 100644 index 00000000..1009ca56 Binary files /dev/null and b/blockchains/smartchain/assets/0x1C9257e55318eb9B472ed45ef5C55ccD941538f0/logo.png differ diff --git a/blockchains/smartchain/assets/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F/info.json b/blockchains/smartchain/assets/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F/info.json new file mode 100644 index 00000000..992178b3 --- /dev/null +++ b/blockchains/smartchain/assets/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Antimatter.Finance Governance Token", + "website": "https://antimatter.finance/", + "description": "AntiMatter is a lightweight on-chain DeFi perpetual derivative protocol based on a polarized token model.", + "explorer": "https://bscscan.com/token/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F", + "type": "BEP20", + "symbol": "MATTER", + "decimals": 18, + "status": "active", + "id": "0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F/logo.png b/blockchains/smartchain/assets/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F/logo.png new file mode 100644 index 00000000..097bda3f Binary files /dev/null and b/blockchains/smartchain/assets/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F/logo.png differ diff --git a/blockchains/smartchain/assets/0x1CD89241B26FCDC421FD02907d6504C8AbBfe1bc/info.json b/blockchains/smartchain/assets/0x1CD89241B26FCDC421FD02907d6504C8AbBfe1bc/info.json new file mode 100644 index 00000000..1072cd7c --- /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 00000000..54ad30b9 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 new file mode 100644 index 00000000..3b0ecc03 --- /dev/null +++ b/blockchains/smartchain/assets/0x1CE0c2827e2eF14D5C4f29a091d735A204794041/info.json @@ -0,0 +1,25 @@ +{ + "name": "Binance-Peg Avalanche Token", + "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", + "research": "https://research.binance.com/en/projects/avalanche", + "symbol": "AVAX", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x1CE0c2827e2eF14D5C4f29a091d735A204794041", + "tags": [ + "binance-peg" + ], + "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/smartchain/assets/0x1CE0c2827e2eF14D5C4f29a091d735A204794041/logo.png b/blockchains/smartchain/assets/0x1CE0c2827e2eF14D5C4f29a091d735A204794041/logo.png new file mode 100644 index 00000000..99dc6ffc Binary files /dev/null and b/blockchains/smartchain/assets/0x1CE0c2827e2eF14D5C4f29a091d735A204794041/logo.png differ diff --git a/blockchains/smartchain/assets/0x1CdE419faE0Ef7f7931aE3E29e5f411C8C5E5Fa1/info.json b/blockchains/smartchain/assets/0x1CdE419faE0Ef7f7931aE3E29e5f411C8C5E5Fa1/info.json new file mode 100644 index 00000000..f655f6cc --- /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 00000000..61b11abb 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 new file mode 100644 index 00000000..38dcdd2d --- /dev/null +++ b/blockchains/smartchain/assets/0x1D1cB8997570e73949930c01Fe5796C88d7336c6/info.json @@ -0,0 +1,37 @@ +{ + "name": "PolkaBridge", + "type": "BEP20", + "symbol": "PBR", + "decimals": 18, + "website": "https://polkabridge.org/", + "description": "Decentralized all-in-one financial applications", + "explorer": "https://bscscan.com/token/0x1d1cb8997570e73949930c01fe5796c88d7336c6", + "status": "active", + "id": "0x1D1cB8997570e73949930c01Fe5796C88d7336c6", + "links": [ + { + "name": "x", + "url": "https://x.com/realpolkabridge" + }, + { + "name": "telegram_news", + "url": "https://t.me/polkabridge" + }, + { + "name": "telegram", + "url": "https://t.me/polkabridgegroup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polkabridge/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/polkabridge/" + } + ], + "tags": [ + "deflationary", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1D1cB8997570e73949930c01Fe5796C88d7336c6/logo.png b/blockchains/smartchain/assets/0x1D1cB8997570e73949930c01Fe5796C88d7336c6/logo.png new file mode 100644 index 00000000..168e562e Binary files /dev/null and b/blockchains/smartchain/assets/0x1D1cB8997570e73949930c01Fe5796C88d7336c6/logo.png differ diff --git a/blockchains/smartchain/assets/0x1D1eb8E8293222e1a29d2C0E4cE6C0Acfd89AaaC/info.json b/blockchains/smartchain/assets/0x1D1eb8E8293222e1a29d2C0E4cE6C0Acfd89AaaC/info.json new file mode 100644 index 00000000..00d20e21 --- /dev/null +++ b/blockchains/smartchain/assets/0x1D1eb8E8293222e1a29d2C0E4cE6C0Acfd89AaaC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hakka Finance on xDai on BSC", + "type": "BEP20", + "symbol": "HAKKA", + "decimals": 18, + "website": "https://hakka.finance/", + "description": "Hakka Finance: Decentralized Derivatives & Original Financial Instruments Hakka Finance is a decentralized financial ecosystem with remarkable DeFi products administered by governance token: $HAKKA.", + "explorer": "https://bscscan.com/token/0x1D1eb8E8293222e1a29d2C0E4cE6C0Acfd89AaaC", + "status": "active", + "id": "0x1D1eb8E8293222e1a29d2C0E4cE6C0Acfd89AaaC" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1D1eb8E8293222e1a29d2C0E4cE6C0Acfd89AaaC/logo.png b/blockchains/smartchain/assets/0x1D1eb8E8293222e1a29d2C0E4cE6C0Acfd89AaaC/logo.png new file mode 100644 index 00000000..f8cab62f Binary files /dev/null and b/blockchains/smartchain/assets/0x1D1eb8E8293222e1a29d2C0E4cE6C0Acfd89AaaC/logo.png differ diff --git a/blockchains/smartchain/assets/0x1D229B958D5DDFca92146585a8711aECbE56F095/info.json b/blockchains/smartchain/assets/0x1D229B958D5DDFca92146585a8711aECbE56F095/info.json new file mode 100644 index 00000000..2093c8f8 --- /dev/null +++ b/blockchains/smartchain/assets/0x1D229B958D5DDFca92146585a8711aECbE56F095/info.json @@ -0,0 +1,25 @@ +{ + "name": "ZooToken", + "type": "BEP20", + "symbol": "Zoo", + "decimals": 18, + "website": "https://zoogame.app/", + "description": "ZOO token is a utility token that was issued by ZOO - Crypto World. ", + "explorer": "https://bscscan.com/token/0x1D229B958D5DDFca92146585a8711aECbE56F095", + "status": "active", + "id": "0x1D229B958D5DDFca92146585a8711aECbE56F095", + "links": [ + { + "name": "x", + "url": "https://x.com/zoogamepro" + }, + { + "name": "whitepaper", + "url": "https://docs.zoogame.app/" + }, + { + "name": "telegram", + "url": "https://t.me/zoo_crypto_world" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1D229B958D5DDFca92146585a8711aECbE56F095/logo.png b/blockchains/smartchain/assets/0x1D229B958D5DDFca92146585a8711aECbE56F095/logo.png new file mode 100644 index 00000000..26261f06 Binary files /dev/null and b/blockchains/smartchain/assets/0x1D229B958D5DDFca92146585a8711aECbE56F095/logo.png differ diff --git a/blockchains/smartchain/assets/0x1D2EaAF0aE00382893aa4318Bd88d1Cd0e9B858A/info.json b/blockchains/smartchain/assets/0x1D2EaAF0aE00382893aa4318Bd88d1Cd0e9B858A/info.json new file mode 100644 index 00000000..e7576ac4 --- /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 00000000..75d3501c 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 new file mode 100644 index 00000000..5f8487e8 --- /dev/null +++ b/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/info.json @@ -0,0 +1,25 @@ +{ + "name": "BNB pegged XRP Token", + "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", + "research": "https://research.binance.com/en/projects/xrp", + "type": "BEP20", + "symbol": "XRP", + "decimals": 18, + "status": "active", + "id": "0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/ripplepay" + }, + { + "name": "x", + "url": "https://x.com/Ripple" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/logo.png b/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/logo.png new file mode 100644 index 00000000..89ca2727 Binary files /dev/null and b/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/logo.png differ diff --git a/blockchains/smartchain/assets/0x1D3437E570e93581Bd94b2fd8Fbf202d4a65654A/info.json b/blockchains/smartchain/assets/0x1D3437E570e93581Bd94b2fd8Fbf202d4a65654A/info.json new file mode 100644 index 00000000..0abab053 --- /dev/null +++ b/blockchains/smartchain/assets/0x1D3437E570e93581Bd94b2fd8Fbf202d4a65654A/info.json @@ -0,0 +1,24 @@ +{ + "name": "NanoByte Token", + "type": "BEP20", + "symbol": "NBT", + "decimals": 18, + "website": "https://www.nanobyte.finance/", + "description": "NanoByte token is bridging cryptocurrency to real world financial application, by integrating crypto to FIAT products such as e-money, credit cards, insurance, and other investments. NanoByte token is making decentralized finance mainstream and legitimate.", + "explorer": "https://bscscan.com/token/0x1D3437E570e93581Bd94b2fd8Fbf202d4a65654A", + "status": "active", + "id": "0x1D3437E570e93581Bd94b2fd8Fbf202d4a65654A", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/NanoByteCommunity" + }, + { + "name": "x", + "url": "https://x.com/nanobyte_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1D3437E570e93581Bd94b2fd8Fbf202d4a65654A/logo.png b/blockchains/smartchain/assets/0x1D3437E570e93581Bd94b2fd8Fbf202d4a65654A/logo.png new file mode 100644 index 00000000..5feddaf0 Binary files /dev/null and b/blockchains/smartchain/assets/0x1D3437E570e93581Bd94b2fd8Fbf202d4a65654A/logo.png differ diff --git a/blockchains/smartchain/assets/0x1D48c83A14108B8401b970aD434bcCA0C7De8888/info.json b/blockchains/smartchain/assets/0x1D48c83A14108B8401b970aD434bcCA0C7De8888/info.json new file mode 100644 index 00000000..3386a358 --- /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/0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0/info.json b/blockchains/smartchain/assets/0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0/info.json new file mode 100644 index 00000000..5174f8b9 --- /dev/null +++ b/blockchains/smartchain/assets/0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Equalizer", + "type": "BEP20", + "symbol": "EQZ", + "decimals": 18, + "website": "https://equalizer.finance", + "description": "DeFi Flash Loans Made Easy. The first dedicated platform that equalizes the decentralized markets.", + "explorer": "https://bscscan.com/token/0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0", + "status": "active", + "id": "0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0/logo.png b/blockchains/smartchain/assets/0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0/logo.png new file mode 100644 index 00000000..a8c1accc Binary files /dev/null and b/blockchains/smartchain/assets/0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0/logo.png differ diff --git a/blockchains/smartchain/assets/0x1E053D89E08c24aA2CE5C5B4206744Dc2D7BD8F5/info.json b/blockchains/smartchain/assets/0x1E053D89E08c24aA2CE5C5B4206744Dc2D7BD8F5/info.json new file mode 100644 index 00000000..4e74fed5 --- /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 00000000..c408c0f2 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 new file mode 100644 index 00000000..c2a4290c --- /dev/null +++ b/blockchains/smartchain/assets/0x1E1aFE9D9c5f290d8F6996dDB190bd111908A43D/info.json @@ -0,0 +1,53 @@ +{ + "name": "Ape Swap LP BNB-BTCB", + "website": "https://apeswap.finance", + "description": "ApeSwap is an Automated Market Maker, Yield Farming, and Staking platform on Binance Smart Chain. ApeSwap was built by DeFi Apes, for DeFi Apes. We have a dedicated team of experienced monkeys, who have been in the crypto space for years.", + "explorer": "https://bscscan.com/token/0x1E1aFE9D9c5f290d8F6996dDB190bd111908A43D", + "type": "BEP20", + "symbol": "APE-LP", + "decimals": 18, + "status": "active", + "id": "0x1E1aFE9D9c5f290d8F6996dDB190bd111908A43D", + "links": [ + { + "name": "github", + "url": "https://github.com/ApeSwapFinance" + }, + { + "name": "docs", + "url": "https://apeswap.gitbook.io/apeswap-finance/" + }, + { + "name": "x", + "url": "https://x.com/ape_swap" + }, + { + "name": "telegram", + "url": "https://t.me/ape_swap" + }, + { + "name": "telegram_news", + "url": "https://t.me/ape_swap_news" + }, + { + "name": "medium", + "url": "https://ape-swap.medium.com/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AbVxfGRCSd/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Apeswap/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apeswap-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/apeswap-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1E1aFE9D9c5f290d8F6996dDB190bd111908A43D/logo.png b/blockchains/smartchain/assets/0x1E1aFE9D9c5f290d8F6996dDB190bd111908A43D/logo.png new file mode 100644 index 00000000..5676acf9 Binary files /dev/null and b/blockchains/smartchain/assets/0x1E1aFE9D9c5f290d8F6996dDB190bd111908A43D/logo.png differ diff --git a/blockchains/smartchain/assets/0x1E653794A6849bC8A78be50C4D48981AfAD6359d/info.json b/blockchains/smartchain/assets/0x1E653794A6849bC8A78be50C4D48981AfAD6359d/info.json new file mode 100644 index 00000000..cbab3dac --- /dev/null +++ b/blockchains/smartchain/assets/0x1E653794A6849bC8A78be50C4D48981AfAD6359d/info.json @@ -0,0 +1,49 @@ +{ + "name": "ADA BOY", + "website": "https://adaboytoken.com", + "description": "ADABoy is a fully audited BEP-20 token that rewards its holders in Binance-PEG Cardano. ADABoy is the creator of CryptoMatch (cryptomatch.app) which is the \"Tinder for Crypto\". CryptoMatch allows users to do research on projects by just swiping left or right making research fun and interactive at the same time.", + "explorer": "https://bscscan.com/token/0x1e653794a6849bc8a78be50c4d48981afad6359d", + "type": "BEP20", + "symbol": "ADABoy", + "decimals": 18, + "status": "active", + "id": "0x1E653794A6849bC8A78be50C4D48981AfAD6359d", + "links": [ + { + "name": "x", + "url": "https://x.com/adaboytoken" + }, + { + "name": "whitepaper", + "url": "https://adaboytoken.app/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ada-boy/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/adaboy" + }, + { + "name": "blog", + "url": "https://blog.adaboytoken.finance" + }, + { + "name": "github", + "url": "https://github.com/realadaboy" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCYJelvhOji7AWhcEqFUMDhw" + }, + { + "name": "telegram_news", + "url": "https://t.me/cryptomatchofficial" + }, + { + "name": "source_code", + "url": "https://github.com/RealADABoy/Contracts/tree/main/ADABoy" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1E653794A6849bC8A78be50C4D48981AfAD6359d/logo.png b/blockchains/smartchain/assets/0x1E653794A6849bC8A78be50C4D48981AfAD6359d/logo.png new file mode 100644 index 00000000..d098ecd0 Binary files /dev/null and b/blockchains/smartchain/assets/0x1E653794A6849bC8A78be50C4D48981AfAD6359d/logo.png differ diff --git a/blockchains/smartchain/assets/0x1E6baC0b134259BFE91552954D86513bA2B6E9B9/info.json b/blockchains/smartchain/assets/0x1E6baC0b134259BFE91552954D86513bA2B6E9B9/info.json new file mode 100644 index 00000000..1bd152a6 --- /dev/null +++ b/blockchains/smartchain/assets/0x1E6baC0b134259BFE91552954D86513bA2B6E9B9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shark Stake", + "type": "BEP20", + "symbol": "Shark", + "decimals": 0, + "website": "http://sharkstake.finance/", + "description": "Shark Stake Finance smart contract generates of the stake amount daily and guarantees a final profit.", + "explorer": "https://bscscan.com/token/0x1E6baC0b134259BFE91552954D86513bA2B6E9B9", + "status": "active", + "id": "0x1E6baC0b134259BFE91552954D86513bA2B6E9B9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1E6baC0b134259BFE91552954D86513bA2B6E9B9/logo.png b/blockchains/smartchain/assets/0x1E6baC0b134259BFE91552954D86513bA2B6E9B9/logo.png new file mode 100644 index 00000000..d1a28f18 Binary files /dev/null and b/blockchains/smartchain/assets/0x1E6baC0b134259BFE91552954D86513bA2B6E9B9/logo.png differ diff --git a/blockchains/smartchain/assets/0x1F01Dc57C66C2f87D8eab9C625D335e9defE6912/info.json b/blockchains/smartchain/assets/0x1F01Dc57C66C2f87D8eab9C625D335e9defE6912/info.json new file mode 100644 index 00000000..91cf6053 --- /dev/null +++ b/blockchains/smartchain/assets/0x1F01Dc57C66C2f87D8eab9C625D335e9defE6912/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped ZCore", + "website": "https://zcore.network", + "description": "Wrapped ZCore is a tokenized version of ZCore (ZCR) that runs on the Binance Smart Chain (BSC) blockchain.", + "explorer": "https://bscscan.com/token/0x1f01dc57c66c2f87d8eab9c625d335e9defe6912", + "type": "BEP20", + "symbol": "WZCR", + "decimals": 18, + "status": "active", + "id": "0x1F01Dc57C66C2f87D8eab9C625D335e9defE6912" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1F01Dc57C66C2f87D8eab9C625D335e9defE6912/logo.png b/blockchains/smartchain/assets/0x1F01Dc57C66C2f87D8eab9C625D335e9defE6912/logo.png new file mode 100644 index 00000000..b0b711c9 Binary files /dev/null and b/blockchains/smartchain/assets/0x1F01Dc57C66C2f87D8eab9C625D335e9defE6912/logo.png differ diff --git a/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/info.json b/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/info.json new file mode 100644 index 00000000..23f77cc1 --- /dev/null +++ b/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/info.json @@ -0,0 +1,41 @@ +{ + "name": "Cheelee", + "type": "BEP20", + "symbol": "CHEEL", + "decimals": 18, + "website": "https://cheelee.io/", + "description": "CHEEL is the governance token, which will be issued in a total quantity of 1,000,000,000. With this token, the community can vote on important issues of the platform development, according to the DAO principle. CHEEL also allows to level up NFT glasses.", + "explorer": "https://bscscan.com/token/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0", + "status": "active", + "id": "0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0", + "links": [ + { + "name": "medium", + "url": "https://medium.com/cheelee-cheel" + }, + { + "name": "x", + "url": "https://x.com/Cheelee_Tweet" + }, + { + "name": "telegram", + "url": "https://t.me/Cheelee_EN" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cheelee" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cheelee/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/cheelee/" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/logo.png b/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/logo.png new file mode 100644 index 00000000..0ac9abc4 Binary files /dev/null and b/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/logo.png differ diff --git a/blockchains/smartchain/assets/0x1F2Cfde19976A2bF0A250900f7aCe9c362908C93/info.json b/blockchains/smartchain/assets/0x1F2Cfde19976A2bF0A250900f7aCe9c362908C93/info.json new file mode 100644 index 00000000..8f52e20e --- /dev/null +++ b/blockchains/smartchain/assets/0x1F2Cfde19976A2bF0A250900f7aCe9c362908C93/info.json @@ -0,0 +1,29 @@ +{ + "name": "AZ World SocialFi ", + "website": "https://azworld.network", + "description": "AZ World - The First SocialFi To Earn on BSC", + "explorer": "https://bscscan.com/token/0x1F2Cfde19976A2bF0A250900f7aCe9c362908C93", + "type": "BEP20", + "symbol": "AZW", + "decimals": 5, + "status": "active", + "id": "0x1F2Cfde19976A2bF0A250900f7aCe9c362908C93", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/az-world/" + }, + { + "name": "x", + "url": "https://x.com/azworld_network" + }, + { + "name": "telegram", + "url": "https://t.me/azworld_global" + } + ], + "tags": [ + "Play To Earn", + "Social Networking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1F2Cfde19976A2bF0A250900f7aCe9c362908C93/logo.png b/blockchains/smartchain/assets/0x1F2Cfde19976A2bF0A250900f7aCe9c362908C93/logo.png new file mode 100644 index 00000000..0d1add90 Binary files /dev/null and b/blockchains/smartchain/assets/0x1F2Cfde19976A2bF0A250900f7aCe9c362908C93/logo.png differ diff --git a/blockchains/smartchain/assets/0x1F36FB2D91d9951Cf58aE4c1956C0b77e224F1E9/info.json b/blockchains/smartchain/assets/0x1F36FB2D91d9951Cf58aE4c1956C0b77e224F1E9/info.json new file mode 100644 index 00000000..c10861af --- /dev/null +++ b/blockchains/smartchain/assets/0x1F36FB2D91d9951Cf58aE4c1956C0b77e224F1E9/info.json @@ -0,0 +1,64 @@ +{ + "name": "VCGamers", + "type": "BEP20", + "symbol": "VCG", + "decimals": 18, + "website": "https://token.vcgamers.com/", + "description": "$VCG is developed on top of a social commerce platform that connects gamers and enables them to buy and sell digital gaming items and gaming NFTs.", + "explorer": "https://bscscan.com/token/0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9", + "status": "active", + "id": "0x1F36FB2D91d9951Cf58aE4c1956C0b77e224F1E9", + "links": [ + { + "name": "x", + "url": "https://x.com/vcgamers_io" + }, + { + "name": "github", + "url": "https://github.com/vcgamers/" + }, + { + "name": "telegram", + "url": "https://t.me/vcgamers_io" + }, + { + "name": "telegram_news", + "url": "https://t.me/vcgamers_news" + }, + { + "name": "blog", + "url": "https://news.vcgamers.com/crypto/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/2ZCcTXx5Vr" + }, + { + "name": "whitepaper", + "url": "https://docs.google.com/document/d/1k_bWHxRYI2WGjqVZE32yyJ2LRnBTXkbDrzH0ODoqx18/edit?usp=sharing" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/VCGamersIndonesia" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vcgamers/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/vcgamers" + }, + { + "name": "facebook", + "url": "https://facebook.com/vcgamers.id" + }, + { + "name": "source_code", + "url": "https://github.com/vcgamers/smartcontract" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1F36FB2D91d9951Cf58aE4c1956C0b77e224F1E9/logo.png b/blockchains/smartchain/assets/0x1F36FB2D91d9951Cf58aE4c1956C0b77e224F1E9/logo.png new file mode 100644 index 00000000..2f15bb3b Binary files /dev/null and b/blockchains/smartchain/assets/0x1F36FB2D91d9951Cf58aE4c1956C0b77e224F1E9/logo.png differ diff --git a/blockchains/smartchain/assets/0x1F39Dd2Bf5A27e2D4ED691DCF933077371777CB0/info.json b/blockchains/smartchain/assets/0x1F39Dd2Bf5A27e2D4ED691DCF933077371777CB0/info.json new file mode 100644 index 00000000..09a8bd8f --- /dev/null +++ b/blockchains/smartchain/assets/0x1F39Dd2Bf5A27e2D4ED691DCF933077371777CB0/info.json @@ -0,0 +1,45 @@ +{ + "name": "SnowCrash Token", + "type": "BEP20", + "symbol": "Nora", + "decimals": 18, + "website": "https://snowcrash.finance", + "description": "$Nora is the community governance token of SnowCrash DAO. Players can trade $Nora on the exchange, or earn $Nora by completing tasks in the game. Players in MetaVoxel can use $Nora to buy land, islands, goods and various raw materials.", + "explorer": "https://bscscan.com/token/0x1f39dd2bf5a27e2d4ed691dcf933077371777cb0", + "status": "active", + "id": "0x1F39Dd2Bf5A27e2D4ED691DCF933077371777CB0", + "links": [ + { + "name": "github", + "url": "https://github.com/SnowCrashDAO" + }, + { + "name": "docs", + "url": "https://docs.snowcrash.finance/" + }, + { + "name": "whitepaper", + "url": "https://docs.snowcrash.finance/" + }, + { + "name": "x", + "url": "https://x.com/SnowCrashDAO" + }, + { + "name": "telegram", + "url": "https://t.me/SnowCrashDAO" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC5Li60DsXOZqPypyeL2QTQA" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/snowcrash-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/snowcrash-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1F39Dd2Bf5A27e2D4ED691DCF933077371777CB0/logo.png b/blockchains/smartchain/assets/0x1F39Dd2Bf5A27e2D4ED691DCF933077371777CB0/logo.png new file mode 100644 index 00000000..084ab156 Binary files /dev/null and b/blockchains/smartchain/assets/0x1F39Dd2Bf5A27e2D4ED691DCF933077371777CB0/logo.png differ diff --git a/blockchains/smartchain/assets/0x1F5d9fFAFa57604Ae2A43cebAdEcC175DF2F069e/info.json b/blockchains/smartchain/assets/0x1F5d9fFAFa57604Ae2A43cebAdEcC175DF2F069e/info.json new file mode 100644 index 00000000..2f77ef6c --- /dev/null +++ b/blockchains/smartchain/assets/0x1F5d9fFAFa57604Ae2A43cebAdEcC175DF2F069e/info.json @@ -0,0 +1,37 @@ +{ + "name": "InfinitX", + "type": "BEP20", + "symbol": "INX", + "decimals": 4, + "website": "https://infinitx.io/", + "description": "InfinitX is a rebase token that also rewards in XRP.", + "explorer": "https://bscscan.com/token/0x1f5d9ffafa57604ae2a43cebadecc175df2f069e", + "status": "active", + "id": "0x1F5d9fFAFa57604Ae2A43cebAdEcC175DF2F069e", + "links": [ + { + "name": "github", + "url": "https://github.com/InfinitXToken" + }, + { + "name": "x", + "url": "https://x.com/infinitX_bsc" + }, + { + "name": "telegram", + "url": "https://t.me/infinitx_token" + }, + { + "name": "medium", + "url": "https://infinitx.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/infinitx" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/infinitx/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1F5d9fFAFa57604Ae2A43cebAdEcC175DF2F069e/logo.png b/blockchains/smartchain/assets/0x1F5d9fFAFa57604Ae2A43cebAdEcC175DF2F069e/logo.png new file mode 100644 index 00000000..57b41168 Binary files /dev/null and b/blockchains/smartchain/assets/0x1F5d9fFAFa57604Ae2A43cebAdEcC175DF2F069e/logo.png differ diff --git a/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/info.json b/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/info.json new file mode 100644 index 00000000..4271f98c --- /dev/null +++ b/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/info.json @@ -0,0 +1,36 @@ +{ + "name": "GG TOKEN", + "type": "BEP20", + "symbol": "GGTKN", + "decimals": 18, + "website": "https://ggtkn.com/", + "description": "GG Token - Created in 2022 in cooperation with GG International Ltd, GG World Lottery, and White Lotto - The most efficient software and technology provider for the entertainment and crypto industry, since 2009. GGTKN is a Native token for multiple Gaming, E-Commerce, and Networking platform projects.", + "explorer": "https://bscscan.com/token/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F", + "status": "active", + "id": "0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F", + "links": [ + { + "name": "x", + "url": "https://x.com/gg_tkn" + }, + { + "name": "facebook", + "url": "https://facebook.com/ggtoken" + }, + { + "name": "telegram", + "url": "https://t.me/ggtokenofficial" + }, + { + "name": "whitepaper", + "url": "https://ggtkn.com/ggtkn_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gg-token/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/logo.png b/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/logo.png new file mode 100644 index 00000000..9a7c8ce5 Binary files /dev/null and b/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/logo.png differ diff --git a/blockchains/smartchain/assets/0x1F82a9b541FE4C322B5cd81DCB066620D57de35C/info.json b/blockchains/smartchain/assets/0x1F82a9b541FE4C322B5cd81DCB066620D57de35C/info.json new file mode 100644 index 00000000..2b2e0e28 --- /dev/null +++ b/blockchains/smartchain/assets/0x1F82a9b541FE4C322B5cd81DCB066620D57de35C/info.json @@ -0,0 +1,14 @@ +{ + "name": "Donkey King", + "website": "https://www.donk.finance", + "description": "Donkey King finance is a passive income generating, deflationary, DeFi token.", + "explorer": "https://bscscan.com/token/0x1F82a9b541FE4C322B5cd81DCB066620D57de35C", + "type": "BEP20", + "symbol": "DONK", + "decimals": 9, + "status": "active", + "id": "0x1F82a9b541FE4C322B5cd81DCB066620D57de35C", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1F82a9b541FE4C322B5cd81DCB066620D57de35C/logo.png b/blockchains/smartchain/assets/0x1F82a9b541FE4C322B5cd81DCB066620D57de35C/logo.png new file mode 100644 index 00000000..d94134e1 Binary files /dev/null and b/blockchains/smartchain/assets/0x1F82a9b541FE4C322B5cd81DCB066620D57de35C/logo.png differ diff --git a/blockchains/smartchain/assets/0x1F878d0BccD3D502ff55F7a4797C556f103d6e4b/info.json b/blockchains/smartchain/assets/0x1F878d0BccD3D502ff55F7a4797C556f103d6e4b/info.json new file mode 100644 index 00000000..8baa4721 --- /dev/null +++ b/blockchains/smartchain/assets/0x1F878d0BccD3D502ff55F7a4797C556f103d6e4b/info.json @@ -0,0 +1,29 @@ +{ + "name": "Squidanomics", + "type": "BEP20", + "symbol": "SQUID", + "decimals": 4, + "website": "https://squidanomics.xyz", + "description": "Bringing Squid Game to life through gaming, NFTs and community prizes!", + "explorer": "https://bscscan.com/token/0x1F878d0BccD3D502ff55F7a4797C556f103d6e4b", + "status": "active", + "id": "0x1F878d0BccD3D502ff55F7a4797C556f103d6e4b", + "links": [ + { + "name": "x", + "url": "https://x.com/Squidanomics" + }, + { + "name": "github", + "url": "https://github.com/JakeYoungDev/SquidanomicsCODE" + }, + { + "name": "telegram", + "url": "https://t.me/Squidanomics" + }, + { + "name": "telegram_news", + "url": "https://t.me/SquidanomicsAnnouncement" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1F878d0BccD3D502ff55F7a4797C556f103d6e4b/logo.png b/blockchains/smartchain/assets/0x1F878d0BccD3D502ff55F7a4797C556f103d6e4b/logo.png new file mode 100644 index 00000000..0dfc110f Binary files /dev/null and b/blockchains/smartchain/assets/0x1F878d0BccD3D502ff55F7a4797C556f103d6e4b/logo.png differ diff --git a/blockchains/smartchain/assets/0x1F8Fc5470846011646C4cb05Cf235B47d5A7ADe6/info.json b/blockchains/smartchain/assets/0x1F8Fc5470846011646C4cb05Cf235B47d5A7ADe6/info.json new file mode 100644 index 00000000..4d3e6cd6 --- /dev/null +++ b/blockchains/smartchain/assets/0x1F8Fc5470846011646C4cb05Cf235B47d5A7ADe6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bullet Token", + "website": "https://bulletbsc.com/", + "description": "$BULL aims to offer users a fully operational BSC project explorer platform. Bullet plans to leverage blockchain technology to ensure a seamless investment experience and wants to help customers find project gems as early as possible.", + "explorer": "https://bscscan.com/token/0x1f8fc5470846011646c4cb05cf235b47d5a7ade6", + "type": "BEP20", + "symbol": "BULL", + "decimals": 9, + "status": "active", + "id": "0x1F8Fc5470846011646C4cb05Cf235B47d5A7ADe6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1F8Fc5470846011646C4cb05Cf235B47d5A7ADe6/logo.png b/blockchains/smartchain/assets/0x1F8Fc5470846011646C4cb05Cf235B47d5A7ADe6/logo.png new file mode 100644 index 00000000..8ad34e89 Binary files /dev/null and b/blockchains/smartchain/assets/0x1F8Fc5470846011646C4cb05Cf235B47d5A7ADe6/logo.png differ diff --git a/blockchains/smartchain/assets/0x1FA0f5ed24a1a2b43741E88F8FEc19633e67082B/info.json b/blockchains/smartchain/assets/0x1FA0f5ed24a1a2b43741E88F8FEc19633e67082B/info.json new file mode 100644 index 00000000..32016e3a --- /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 00000000..4f0400e1 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 new file mode 100644 index 00000000..dc58ae17 --- /dev/null +++ b/blockchains/smartchain/assets/0x1FDB2c3851D067502Ce2122bE80a41ea212949E2/info.json @@ -0,0 +1,52 @@ +{ + "name": "Pige Inu", + "type": "BEP20", + "symbol": "PINU", + "decimals": 9, + "website": "https://pigeinu.io/#", + "description": "PIGE INU is a fully decentralized and community driven project, our contract is fully renounced Liquidity pool burned or locked forever", + "explorer": "https://bscscan.com/token/0x1FDB2c3851D067502Ce2122bE80a41ea212949E2", + "status": "active", + "id": "0x1FDB2c3851D067502Ce2122bE80a41ea212949E2", + "links": [ + { + "name": "x", + "url": "https://x.com/PigeInu" + }, + { + "name": "github", + "url": "https://github.com/PigeInu/" + }, + { + "name": "telegram", + "url": "https://t.me/pigeinu" + }, + { + "name": "blog", + "url": "https://medium.com/@pigeinubsc" + }, + { + "name": "whitepaper", + "url": "https://pigeinu.io/PigeWP.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@pigeinubsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pige-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/pige-inu" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCM3UyEcna3hk2m_lftbiXOA" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1FDB2c3851D067502Ce2122bE80a41ea212949E2/logo.png b/blockchains/smartchain/assets/0x1FDB2c3851D067502Ce2122bE80a41ea212949E2/logo.png new file mode 100644 index 00000000..12c07a42 Binary files /dev/null and b/blockchains/smartchain/assets/0x1FDB2c3851D067502Ce2122bE80a41ea212949E2/logo.png differ diff --git a/blockchains/smartchain/assets/0x1FF2a2c2DEAdb17B6Ba9949393d1406f4c61BFC9/info.json b/blockchains/smartchain/assets/0x1FF2a2c2DEAdb17B6Ba9949393d1406f4c61BFC9/info.json new file mode 100644 index 00000000..d76f9e58 --- /dev/null +++ b/blockchains/smartchain/assets/0x1FF2a2c2DEAdb17B6Ba9949393d1406f4c61BFC9/info.json @@ -0,0 +1,11 @@ +{ + "name": "VanCat Egg Token", + "website": "https://www.vancategg.com", + "description": "VANCAT Egg Token is a subtoken of VANCAT Token and VANCAT universe. Users must have VCEGG to mint Special NFTs", + "explorer": "https://bscscan.com/token/0x1ff2a2c2deadb17b6ba9949393d1406f4c61bfc9", + "id": "0x1FF2a2c2DEAdb17B6Ba9949393d1406f4c61BFC9", + "symbol": "VCEGG", + "type": "BEP20", + "decimals": 0, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1FF2a2c2DEAdb17B6Ba9949393d1406f4c61BFC9/logo.png b/blockchains/smartchain/assets/0x1FF2a2c2DEAdb17B6Ba9949393d1406f4c61BFC9/logo.png new file mode 100644 index 00000000..c1f3b944 Binary files /dev/null and b/blockchains/smartchain/assets/0x1FF2a2c2DEAdb17B6Ba9949393d1406f4c61BFC9/logo.png differ diff --git a/blockchains/smartchain/assets/0x1FFD0b47127fdd4097E54521C9E2c7f0D66AafC5/info.json b/blockchains/smartchain/assets/0x1FFD0b47127fdd4097E54521C9E2c7f0D66AafC5/info.json new file mode 100644 index 00000000..2b0414c8 --- /dev/null +++ b/blockchains/smartchain/assets/0x1FFD0b47127fdd4097E54521C9E2c7f0D66AafC5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tixl", + "website": "https://tixl.org/", + "description": "Interoperable Smart Contracts & dApps Network", + "explorer": "https://bscscan.com/token/0x1ffd0b47127fdd4097e54521c9e2c7f0d66aafc5", + "type": "BEP20", + "symbol": "TXL", + "decimals": 18, + "status": "active", + "id": "0x1FFD0b47127fdd4097E54521C9E2c7f0D66AafC5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1FFD0b47127fdd4097E54521C9E2c7f0D66AafC5/logo.png b/blockchains/smartchain/assets/0x1FFD0b47127fdd4097E54521C9E2c7f0D66AafC5/logo.png new file mode 100644 index 00000000..7e522001 Binary files /dev/null and b/blockchains/smartchain/assets/0x1FFD0b47127fdd4097E54521C9E2c7f0D66AafC5/logo.png differ diff --git a/blockchains/smartchain/assets/0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63/info.json b/blockchains/smartchain/assets/0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63/info.json new file mode 100644 index 00000000..87a5e5a9 --- /dev/null +++ b/blockchains/smartchain/assets/0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63/info.json @@ -0,0 +1,15 @@ +{ + "name": "BNB pegged NEAR Protocol", + "website": "https://near.org", + "description": "BNB pegged NEAR Protocol (NEAR BEP20) is a token issued by Binance on Smart Chain; its price is pegged to NEAR Protocol (NEAR) at a ratio of 1:1.", + "explorer": "https://bscscan.com/token/0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63", + "research": "https://research.binance.com/en/projects/near-protocol", + "type": "BEP20", + "symbol": "NEAR", + "decimals": 18, + "status": "active", + "id": "0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63", + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63/logo.png b/blockchains/smartchain/assets/0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63/logo.png new file mode 100644 index 00000000..15b08b2d Binary files /dev/null and b/blockchains/smartchain/assets/0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63/logo.png differ diff --git a/blockchains/smartchain/assets/0x1Fd448D0361c3212961a70930f3129A45f425B68/info.json b/blockchains/smartchain/assets/0x1Fd448D0361c3212961a70930f3129A45f425B68/info.json new file mode 100644 index 00000000..3271ad19 --- /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 00000000..cbcff9a3 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 new file mode 100644 index 00000000..b371639c --- /dev/null +++ b/blockchains/smartchain/assets/0x1Ffe17B99b439bE0aFC831239dDECda2A790fF3A/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream BNB", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x1Ffe17B99b439bE0aFC831239dDECda2A790fF3A", + "type": "BEP20", + "symbol": "crBNB", + "decimals": 8, + "status": "active", + "id": "0x1Ffe17B99b439bE0aFC831239dDECda2A790fF3A", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1Ffe17B99b439bE0aFC831239dDECda2A790fF3A/logo.png b/blockchains/smartchain/assets/0x1Ffe17B99b439bE0aFC831239dDECda2A790fF3A/logo.png new file mode 100644 index 00000000..9ae8964f Binary files /dev/null and b/blockchains/smartchain/assets/0x1Ffe17B99b439bE0aFC831239dDECda2A790fF3A/logo.png differ diff --git a/blockchains/smartchain/assets/0x1a04364E724A2B9c5A4ff42D777420734e605383/info.json b/blockchains/smartchain/assets/0x1a04364E724A2B9c5A4ff42D777420734e605383/info.json new file mode 100644 index 00000000..63097f36 --- /dev/null +++ b/blockchains/smartchain/assets/0x1a04364E724A2B9c5A4ff42D777420734e605383/info.json @@ -0,0 +1,11 @@ +{ + "name": "Diamoons", + "website": "https://diamoons.finance/", + "description": "Diamoons $DMOON is simply the finest DeFi community run token. Its financial innovation at its best. The project taxes 10% of every transaction: 5% auto grows the liquidity pool, 4% is earned by all holders as passive income, and 1% is forwarded to the Community Treasury Fund, which is used to serve the community and managed by the community.", + "explorer": "https://bscscan.com/token/0x1a04364e724a2b9c5a4ff42d777420734e605383", + "type": "BEP20", + "symbol": "DMOON", + "decimals": 9, + "status": "active", + "id": "0x1a04364E724A2B9c5A4ff42D777420734e605383" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1a04364E724A2B9c5A4ff42D777420734e605383/logo.png b/blockchains/smartchain/assets/0x1a04364E724A2B9c5A4ff42D777420734e605383/logo.png new file mode 100644 index 00000000..e7675cd5 Binary files /dev/null and b/blockchains/smartchain/assets/0x1a04364E724A2B9c5A4ff42D777420734e605383/logo.png differ diff --git a/blockchains/smartchain/assets/0x1a1c6f9F6B4E535130E9b1de46bBc76130b61Feb/info.json b/blockchains/smartchain/assets/0x1a1c6f9F6B4E535130E9b1de46bBc76130b61Feb/info.json new file mode 100644 index 00000000..a3bf99a2 --- /dev/null +++ b/blockchains/smartchain/assets/0x1a1c6f9F6B4E535130E9b1de46bBc76130b61Feb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Golden Duck", + "website": "https://golduck.org", + "description": "High-yield frictionless farming token.", + "explorer": "https://bscscan.com/token/0x1a1c6f9F6B4E535130E9b1de46bBc76130b61Feb", + "type": "BEP20", + "symbol": "GOLDUCK", + "decimals": 9, + "status": "active", + "id": "0x1a1c6f9F6B4E535130E9b1de46bBc76130b61Feb" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1a1c6f9F6B4E535130E9b1de46bBc76130b61Feb/logo.png b/blockchains/smartchain/assets/0x1a1c6f9F6B4E535130E9b1de46bBc76130b61Feb/logo.png new file mode 100644 index 00000000..85258c6d Binary files /dev/null and b/blockchains/smartchain/assets/0x1a1c6f9F6B4E535130E9b1de46bBc76130b61Feb/logo.png differ diff --git a/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json b/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json new file mode 100644 index 00000000..fb66477c --- /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 00000000..b86b0fca Binary files /dev/null and b/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/logo.png differ diff --git a/blockchains/smartchain/assets/0x1a6C2c3c52cd3CC21DB2b8f2B331ca9c4780F1Ee/info.json b/blockchains/smartchain/assets/0x1a6C2c3c52cd3CC21DB2b8f2B331ca9c4780F1Ee/info.json new file mode 100644 index 00000000..d37b6ef0 --- /dev/null +++ b/blockchains/smartchain/assets/0x1a6C2c3c52cd3CC21DB2b8f2B331ca9c4780F1Ee/info.json @@ -0,0 +1,11 @@ +{ + "name": "AERDROP", + "website": "https://www.aerdrop.finance/", + "description": "Old Contract, please see 0xc7ad2ce38f208eed77a368613c62062fce88f125", + "explorer": "https://bscscan.com/token/0x1a6C2c3c52cd3CC21DB2b8f2B331ca9c4780F1Ee", + "type": "BEP20", + "symbol": "AER", + "decimals": 18, + "status": "abandoned", + "id": "0x1a6C2c3c52cd3CC21DB2b8f2B331ca9c4780F1Ee" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1a8B6E637aAB57c8544DC90BD813c62fAA68AA1C/info.json b/blockchains/smartchain/assets/0x1a8B6E637aAB57c8544DC90BD813c62fAA68AA1C/info.json new file mode 100644 index 00000000..be816388 --- /dev/null +++ b/blockchains/smartchain/assets/0x1a8B6E637aAB57c8544DC90BD813c62fAA68AA1C/info.json @@ -0,0 +1,24 @@ +{ + "name": "Healthify", + "type": "BEP20", + "symbol": "HTF", + "decimals": 8, + "website": "https://healthland.io/", + "description": "World's First Health Metaverse & NFT Store", + "explorer": "https://bscscan.com/token/0x1a8B6E637aAB57c8544DC90BD813c62fAA68AA1C", + "status": "active", + "id": "0x1a8B6E637aAB57c8544DC90BD813c62fAA68AA1C", + "links": [ + { + "name": "x", + "url": "https://x.com/healthland_io" + }, + { + "name": "telegram", + "url": "https://t.me/healthland_io" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1a8B6E637aAB57c8544DC90BD813c62fAA68AA1C/logo.png b/blockchains/smartchain/assets/0x1a8B6E637aAB57c8544DC90BD813c62fAA68AA1C/logo.png new file mode 100644 index 00000000..423c08ce Binary files /dev/null and b/blockchains/smartchain/assets/0x1a8B6E637aAB57c8544DC90BD813c62fAA68AA1C/logo.png differ diff --git a/blockchains/smartchain/assets/0x1a9b49E9f075c37Fe5f86C916bac9DEb33556D7E/info.json b/blockchains/smartchain/assets/0x1a9b49E9f075c37Fe5f86C916bac9DEb33556D7E/info.json new file mode 100644 index 00000000..4142f559 --- /dev/null +++ b/blockchains/smartchain/assets/0x1a9b49E9f075c37Fe5f86C916bac9DEb33556D7E/info.json @@ -0,0 +1,67 @@ +{ + "name": "ASPO World", + "type": "BEP20", + "symbol": "ASPO", + "decimals": 18, + "website": "https://aspo.world", + "description": "ASPO is expected as a game universe backed by a strong and talented Vietnamese team with the hope of turning P2E games into the future of digital assets. ASPO is currently developing its very first project called ASPO World, a tactics-based game allowing people to interact with one another in the virtual world we create. ASPO World is expected to compete with all existing NFTs games on the world right now.", + "explorer": "https://bscscan.com/token/0x1a9b49E9f075c37Fe5f86C916bac9DEb33556D7E", + "status": "active", + "id": "0x1a9b49E9f075c37Fe5f86C916bac9DEb33556D7E", + "links": [ + { + "name": "x", + "url": "https://x.com/AspoWorld" + }, + { + "name": "github", + "url": "https://github.com/ASPO-World" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/PjbO1XlvWgw3ZWY9" + }, + { + "name": "telegram_news", + "url": "https://t.me/joinchat/PjbO1XlvWgw3ZWY9" + }, + { + "name": "blog", + "url": "https://aspo.world/list-news/" + }, + { + "name": "docs", + "url": "https://docs.aspo.world/" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1GqDwdexXoAIaI_nNKOtJ-k86kbX3JpjA/view" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCxNjpMPgPfeceY497FoKHPw" + }, + { + "name": "facebook", + "url": "https://facebook.com/aspoworld" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aspo-world/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aspo-world" + }, + { + "name": "source_code", + "url": "https://github.com/phugt/aspoerc20" + } + ], + "tags": [ + "staking", + "nft", + "defi", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1a9b49E9f075c37Fe5f86C916bac9DEb33556D7E/logo.png b/blockchains/smartchain/assets/0x1a9b49E9f075c37Fe5f86C916bac9DEb33556D7E/logo.png new file mode 100644 index 00000000..4935d2fa Binary files /dev/null and b/blockchains/smartchain/assets/0x1a9b49E9f075c37Fe5f86C916bac9DEb33556D7E/logo.png differ diff --git a/blockchains/smartchain/assets/0x1aF8c1C3AD36A041cb6678feD86B1E095004fd16/info.json b/blockchains/smartchain/assets/0x1aF8c1C3AD36A041cb6678feD86B1E095004fd16/info.json new file mode 100644 index 00000000..bf561392 --- /dev/null +++ b/blockchains/smartchain/assets/0x1aF8c1C3AD36A041cb6678feD86B1E095004fd16/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream Filecoin", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x1aF8c1C3AD36A041cb6678feD86B1E095004fd16", + "type": "BEP20", + "symbol": "crFIL", + "decimals": 8, + "status": "active", + "id": "0x1aF8c1C3AD36A041cb6678feD86B1E095004fd16", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1aF8c1C3AD36A041cb6678feD86B1E095004fd16/logo.png b/blockchains/smartchain/assets/0x1aF8c1C3AD36A041cb6678feD86B1E095004fd16/logo.png new file mode 100644 index 00000000..f8ac254b Binary files /dev/null and b/blockchains/smartchain/assets/0x1aF8c1C3AD36A041cb6678feD86B1E095004fd16/logo.png differ diff --git a/blockchains/smartchain/assets/0x1aaeb7d6436FDA7cDac7b87ab8022e97586d2Da1/info.json b/blockchains/smartchain/assets/0x1aaeb7d6436FDA7cDac7b87ab8022e97586d2Da1/info.json new file mode 100644 index 00000000..c21d8253 --- /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 00000000..f2128455 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 00000000..efeb568f --- /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 00000000..99bdeac6 Binary files /dev/null and b/blockchains/smartchain/assets/0x1ae9e7f362D16d63daAF3EA0EDD86D951086ACF0/logo.png differ diff --git a/blockchains/smartchain/assets/0x1b9E14122Cb416845F0f21967f38b5c3e74De774/info.json b/blockchains/smartchain/assets/0x1b9E14122Cb416845F0f21967f38b5c3e74De774/info.json new file mode 100644 index 00000000..770820ae --- /dev/null +++ b/blockchains/smartchain/assets/0x1b9E14122Cb416845F0f21967f38b5c3e74De774/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nebula Chain", + "type": "BEP20", + "symbol": "NEBULA", + "decimals": 0, + "website": "https://nebulachain.xyz/", + "description": "Nebula Chain Finance smart contract generates of the stake amount daily and guarantees a final profit.", + "explorer": "https://bscscan.com/token/0x1b9E14122Cb416845F0f21967f38b5c3e74De774", + "status": "active", + "id": "0x1b9E14122Cb416845F0f21967f38b5c3e74De774" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1b9E14122Cb416845F0f21967f38b5c3e74De774/logo.png b/blockchains/smartchain/assets/0x1b9E14122Cb416845F0f21967f38b5c3e74De774/logo.png new file mode 100644 index 00000000..46462c38 Binary files /dev/null and b/blockchains/smartchain/assets/0x1b9E14122Cb416845F0f21967f38b5c3e74De774/logo.png differ diff --git a/blockchains/smartchain/assets/0x1bA8D3C4c219B124d351F603060663BD1bcd9bbF/info.json b/blockchains/smartchain/assets/0x1bA8D3C4c219B124d351F603060663BD1bcd9bbF/info.json new file mode 100644 index 00000000..c1181ab0 --- /dev/null +++ b/blockchains/smartchain/assets/0x1bA8D3C4c219B124d351F603060663BD1bcd9bbF/info.json @@ -0,0 +1,29 @@ +{ + "name": "Binance-Peg TornadoCash Token", + "website": "https://tornado.cash/", + "description": "Tornado Cash is a fully decentralized protocol for private transactions on Ethereum.", + "explorer": "https://bscscan.com/token/0x1bA8D3C4c219B124d351F603060663BD1bcd9bbF", + "type": "BEP20", + "symbol": "TORN", + "decimals": 18, + "status": "active", + "id": "0x1bA8D3C4c219B124d351F603060663BD1bcd9bbF", + "links": [ + { + "name": "telegram", + "url": "https://t.me/TornadoCashOfficial" + }, + { + "name": "x", + "url": "https://x.com/TornadoCash" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/torn/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tornado-cash/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1bA8D3C4c219B124d351F603060663BD1bcd9bbF/logo.png b/blockchains/smartchain/assets/0x1bA8D3C4c219B124d351F603060663BD1bcd9bbF/logo.png new file mode 100644 index 00000000..d7f45d24 Binary files /dev/null and b/blockchains/smartchain/assets/0x1bA8D3C4c219B124d351F603060663BD1bcd9bbF/logo.png differ diff --git a/blockchains/smartchain/assets/0x1bA8c21c623C843Cd4c60438d70E7Ad50f363fbb/info.json b/blockchains/smartchain/assets/0x1bA8c21c623C843Cd4c60438d70E7Ad50f363fbb/info.json new file mode 100644 index 00000000..15cbc64c --- /dev/null +++ b/blockchains/smartchain/assets/0x1bA8c21c623C843Cd4c60438d70E7Ad50f363fbb/info.json @@ -0,0 +1,26 @@ +{ + "name": "srnArtGallery", + "website": "https://srnartgallery.com/", + "description": "srnArtGallery is a union of NFT artists and offer users a chance to own its NFT.", + "explorer": "https://bscscan.com/token/0x1bA8c21c623C843Cd4c60438d70E7Ad50f363fbb", + "code": "https://bscscan.com/address/0x1ba8c21c623c843cd4c60438d70e7ad50f363fbb#code", + "type": "BEP20", + "symbol": "SACT", + "decimals": 18, + "status": "active", + "id": "0x1bA8c21c623C843Cd4c60438d70E7Ad50f363fbb", + "links": [ + { + "name": "x", + "url": "https://x.com/srn_art" + }, + { + "name": "telegram", + "url": "https://t.me/srnArtGalleryOfficial" + }, + { + "name": "whitepaper", + "url": "https://srnart1616.medium.com/srnartgallery-whitepaper-df0698b1ccda" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1bA8c21c623C843Cd4c60438d70E7Ad50f363fbb/logo.png b/blockchains/smartchain/assets/0x1bA8c21c623C843Cd4c60438d70E7Ad50f363fbb/logo.png new file mode 100644 index 00000000..33206978 Binary files /dev/null and b/blockchains/smartchain/assets/0x1bA8c21c623C843Cd4c60438d70E7Ad50f363fbb/logo.png differ diff --git a/blockchains/smartchain/assets/0x1bEc41a36356D5574Aeb068B599Ab7e48dD008b8/info.json b/blockchains/smartchain/assets/0x1bEc41a36356D5574Aeb068B599Ab7e48dD008b8/info.json new file mode 100644 index 00000000..6467bcd5 --- /dev/null +++ b/blockchains/smartchain/assets/0x1bEc41a36356D5574Aeb068B599Ab7e48dD008b8/info.json @@ -0,0 +1,52 @@ +{ + "name": "DOGEFOOD", + "type": "BEP20", + "symbol": "DOGEFOOD", + "decimals": 9, + "website": "https://www.dogefoodbsc.com/", + "description": "DogeFood is a charity dog protection project. We are committed to making a dog charity organization to help every stray dog build their home.This project will gather: NFTs,gamefi, mining, swap concepts.We are building a strong community in the beginning of the DogeFood, finding more consensus in order to stabilize the team funding for further development of Dog charity.", + "explorer": "https://bscscan.com/token/0x1bEc41a36356D5574Aeb068B599Ab7e48dD008b8", + "status": "active", + "id": "0x1bEc41a36356D5574Aeb068B599Ab7e48dD008b8", + "links": [ + { + "name": "x", + "url": "https://x.com/dogefood_bsc" + }, + { + "name": "github", + "url": "https://github.com/Deepdarkforest" + }, + { + "name": "telegram", + "url": "https://t.me/DogefoodbscEN" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogefood/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dogefood" + }, + { + "name": "source_code", + "url": "https://coingecko.com/en/coins/dogefood" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/dogefoodbscofficial/" + }, + { + "name": "whitepaper", + "url": "https://github.com/Deepdarkforest/DogeFood-WhitePaper/blob/main/dogefood%20wp.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@Dogefood" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1bEc41a36356D5574Aeb068B599Ab7e48dD008b8/logo.png b/blockchains/smartchain/assets/0x1bEc41a36356D5574Aeb068B599Ab7e48dD008b8/logo.png new file mode 100644 index 00000000..13bb2bc6 Binary files /dev/null and b/blockchains/smartchain/assets/0x1bEc41a36356D5574Aeb068B599Ab7e48dD008b8/logo.png differ diff --git a/blockchains/smartchain/assets/0x1ba292a599F9C4F5618616c14bA38daec29e7E08/info.json b/blockchains/smartchain/assets/0x1ba292a599F9C4F5618616c14bA38daec29e7E08/info.json new file mode 100644 index 00000000..aa1da6b9 --- /dev/null +++ b/blockchains/smartchain/assets/0x1ba292a599F9C4F5618616c14bA38daec29e7E08/info.json @@ -0,0 +1,11 @@ +{ + "name": "JBPTOKEN ", + "type": "BEP20", + "symbol": "JBP", + "decimals": 9, + "website": "https://jbprotocol.com/", + "description": "JBPToken is 100% community driven audited deflationary token ", + "explorer": "https://bscscan.com/token/0x1ba292a599F9C4F5618616c14bA38daec29e7E08", + "status": "active", + "id": "0x1ba292a599F9C4F5618616c14bA38daec29e7E08" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1ba292a599F9C4F5618616c14bA38daec29e7E08/logo.png b/blockchains/smartchain/assets/0x1ba292a599F9C4F5618616c14bA38daec29e7E08/logo.png new file mode 100644 index 00000000..276f3796 Binary files /dev/null and b/blockchains/smartchain/assets/0x1ba292a599F9C4F5618616c14bA38daec29e7E08/logo.png differ diff --git a/blockchains/smartchain/assets/0x1bfE24e7Fb1d3B2dfFD9C1d49372b07bC6fDa829/info.json b/blockchains/smartchain/assets/0x1bfE24e7Fb1d3B2dfFD9C1d49372b07bC6fDa829/info.json new file mode 100644 index 00000000..35b2a9c6 --- /dev/null +++ b/blockchains/smartchain/assets/0x1bfE24e7Fb1d3B2dfFD9C1d49372b07bC6fDa829/info.json @@ -0,0 +1,11 @@ +{ + "name": "ColdKoala", + "type": "BEP20", + "symbol": "ColdKoala", + "decimals": 9, + "website": "https://Coldkoala.com", + "description": "Launched on May 20th, ColdKoala Coin strives to make a difference in the world by dedicating a large portion of its funds to supporting charities that work with endangered and injured koalas, such as those that were displaced during the Australian Wildfires. A charity wallet has been established with 10% of the token's minted supply and through the tokenomics that have been coded into the contract, that wallet will continue to grow with every transaction.", + "explorer": "https://bscscan.com/token/0x1bfE24e7Fb1d3B2dfFD9C1d49372b07bC6fDa829", + "status": "active", + "id": "0x1bfE24e7Fb1d3B2dfFD9C1d49372b07bC6fDa829" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1bfE24e7Fb1d3B2dfFD9C1d49372b07bC6fDa829/logo.png b/blockchains/smartchain/assets/0x1bfE24e7Fb1d3B2dfFD9C1d49372b07bC6fDa829/logo.png new file mode 100644 index 00000000..9c997f73 Binary files /dev/null and b/blockchains/smartchain/assets/0x1bfE24e7Fb1d3B2dfFD9C1d49372b07bC6fDa829/logo.png differ diff --git a/blockchains/smartchain/assets/0x1cA23D55bc741366d010274553a8aeaAeFb0d583/info.json b/blockchains/smartchain/assets/0x1cA23D55bc741366d010274553a8aeaAeFb0d583/info.json new file mode 100644 index 00000000..d7140c4e --- /dev/null +++ b/blockchains/smartchain/assets/0x1cA23D55bc741366d010274553a8aeaAeFb0d583/info.json @@ -0,0 +1,11 @@ +{ + "name": "Catge", + "website": "https://catgecoin.com/", + "description": "The elites are ditching all cryptocurrencies in favour of the dog-meme coins. WE ARE REBELLION. CATGE is the community’s revenge against crypto manipulation. The CATGE army will kill Doge and all his corrupted friends.", + "explorer": "https://bscscan.com/token/0x1cA23D55bc741366d010274553a8aeaAeFb0d583", + "type": "BEP20", + "symbol": "CATGE", + "decimals": 9, + "status": "active", + "id": "0x1cA23D55bc741366d010274553a8aeaAeFb0d583" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1cA23D55bc741366d010274553a8aeaAeFb0d583/logo.png b/blockchains/smartchain/assets/0x1cA23D55bc741366d010274553a8aeaAeFb0d583/logo.png new file mode 100644 index 00000000..06a9d173 Binary files /dev/null and b/blockchains/smartchain/assets/0x1cA23D55bc741366d010274553a8aeaAeFb0d583/logo.png differ diff --git a/blockchains/smartchain/assets/0x1cD137eb5BDf426AaE58C3Ed80383f74e42D9bF2/info.json b/blockchains/smartchain/assets/0x1cD137eb5BDf426AaE58C3Ed80383f74e42D9bF2/info.json new file mode 100644 index 00000000..c3c821c6 --- /dev/null +++ b/blockchains/smartchain/assets/0x1cD137eb5BDf426AaE58C3Ed80383f74e42D9bF2/info.json @@ -0,0 +1,21 @@ +{ + "name": "Smile Token", + "website": "https://smiletoken.io/", + "description": "Smile token is a a protocol that unifies leading DeFi protocols and blockchain infrastructure by standardising communication between them to create and execute complex financial transactions, while championing Privacy, Anonymity and Sovereignty.", + "explorer": "https://bscscan.com/token/0x1cD137eb5BDf426AaE58C3Ed80383f74e42D9bF2", + "type": "BEP20", + "symbol": "SMILE", + "decimals": 18, + "status": "active", + "id": "0x1cD137eb5BDf426AaE58C3Ed80383f74e42D9bF2", + "links": [ + { + "name": "x", + "url": "https://x.com/smiletokens" + }, + { + "name": "telegram", + "url": "https://t.me/smiletokens" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1cD137eb5BDf426AaE58C3Ed80383f74e42D9bF2/logo.png b/blockchains/smartchain/assets/0x1cD137eb5BDf426AaE58C3Ed80383f74e42D9bF2/logo.png new file mode 100644 index 00000000..fff2ce6a Binary files /dev/null and b/blockchains/smartchain/assets/0x1cD137eb5BDf426AaE58C3Ed80383f74e42D9bF2/logo.png differ diff --git a/blockchains/smartchain/assets/0x1cfD6813a59d7B90c41dd5990Ed99c3bf2Eb8F55/info.json b/blockchains/smartchain/assets/0x1cfD6813a59d7B90c41dd5990Ed99c3bf2Eb8F55/info.json new file mode 100644 index 00000000..dcc8e957 --- /dev/null +++ b/blockchains/smartchain/assets/0x1cfD6813a59d7B90c41dd5990Ed99c3bf2Eb8F55/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Corgi of PolkaBridge", + "symbol": "CORGIB", + "type": "BEP20", + "decimals": 18, + "description": "CORGIB Finance is a fully decentralized, the first NFT MarketPlace for Meme tokens, powered by PolkaBridge", + "website": "https://corgib.polkabridge.org/", + "explorer": "https://bscscan.com/token/0x1cfd6813a59d7b90c41dd5990ed99c3bf2eb8f55", + "status": "active", + "id": "0x1cfD6813a59d7B90c41dd5990Ed99c3bf2Eb8F55" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1cfD6813a59d7B90c41dd5990Ed99c3bf2Eb8F55/logo.png b/blockchains/smartchain/assets/0x1cfD6813a59d7B90c41dd5990Ed99c3bf2Eb8F55/logo.png new file mode 100644 index 00000000..c71086e1 Binary files /dev/null and b/blockchains/smartchain/assets/0x1cfD6813a59d7B90c41dd5990Ed99c3bf2Eb8F55/logo.png differ diff --git a/blockchains/smartchain/assets/0x1d507f58e4B7CDdE877CA96A727608d5E1187E55/info.json b/blockchains/smartchain/assets/0x1d507f58e4B7CDdE877CA96A727608d5E1187E55/info.json new file mode 100644 index 00000000..52d32e28 --- /dev/null +++ b/blockchains/smartchain/assets/0x1d507f58e4B7CDdE877CA96A727608d5E1187E55/info.json @@ -0,0 +1,24 @@ +{ + "name": "RTC_Plus", + "type": "BEP20", + "symbol": "RTC+", + "decimals": 9, + "website": "https://www.teamrijent.in/", + "description": "Rijent Coin is a revolutionary utility token and crypto education platform designed to connect worldwide cryptocurrency users.", + "explorer": "https://bscscan.com/token/0x1d507f58e4B7CDdE877CA96A727608d5E1187E55", + "status": "active", + "id": "0x1d507f58e4B7CDdE877CA96A727608d5E1187E55", + "links": [ + { + "name": "x", + "url": "https://x.com/rijentcointeam" + }, + { + "name": "facebook", + "url": "https://facebook.com/rijentcoin" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1d507f58e4B7CDdE877CA96A727608d5E1187E55/logo.png b/blockchains/smartchain/assets/0x1d507f58e4B7CDdE877CA96A727608d5E1187E55/logo.png new file mode 100644 index 00000000..0c451a30 Binary files /dev/null and b/blockchains/smartchain/assets/0x1d507f58e4B7CDdE877CA96A727608d5E1187E55/logo.png differ diff --git a/blockchains/smartchain/assets/0x1d64327C74d6519afeF54E58730aD6fc797f05Ba/info.json b/blockchains/smartchain/assets/0x1d64327C74d6519afeF54E58730aD6fc797f05Ba/info.json new file mode 100644 index 00000000..3a1dc824 --- /dev/null +++ b/blockchains/smartchain/assets/0x1d64327C74d6519afeF54E58730aD6fc797f05Ba/info.json @@ -0,0 +1,11 @@ +{ + "name": "OMNI Real Estate Token", + "website": "https://omni-psi.com/", + "description": "OMNI Estate Group and Passive Income are pioneers in the region's real estate market and blockchain technology. With a stronghold of 22.000 properties in our database and counting, we are at the forefront of the market as the most trusted real estate agent, tech partner and feature among the top-agencies for the world's most innovative agencies.", + "explorer": "https://bscscan.com/token/0x1d64327c74d6519afef54e58730ad6fc797f05ba", + "type": "BEP20", + "symbol": "ORT", + "decimals": 18, + "status": "active", + "id": "0x1d64327C74d6519afeF54E58730aD6fc797f05Ba" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1d64327C74d6519afeF54E58730aD6fc797f05Ba/logo.png b/blockchains/smartchain/assets/0x1d64327C74d6519afeF54E58730aD6fc797f05Ba/logo.png new file mode 100644 index 00000000..4c3cfd41 Binary files /dev/null and b/blockchains/smartchain/assets/0x1d64327C74d6519afeF54E58730aD6fc797f05Ba/logo.png differ diff --git a/blockchains/smartchain/assets/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83/info.json b/blockchains/smartchain/assets/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83/info.json new file mode 100644 index 00000000..bda65f3e --- /dev/null +++ b/blockchains/smartchain/assets/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83/info.json @@ -0,0 +1,49 @@ +{ + "name": "TOR Stablecoin", + "website": "https://tor.cash", + "description": "TOR is a fully collateralized, backed by the Hector Finance Treasury, stablecoin built on the Fantom Opera Chain.", + "explorer": "https://bscscan.com/token/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83", + "type": "BEP20", + "symbol": "TOR", + "decimals": 18, + "status": "active", + "id": "0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/HectorDAO_HEC" + }, + { + "name": "medium", + "url": "https://medium.com/@hectordao" + }, + { + "name": "whitepaper", + "url": "https://docs.hector.finance/the-tor-stablecoin/the-tor-stablecoin" + }, + { + "name": "telegram", + "url": "https://t.me/hectorDAO" + }, + { + "name": "telegram_news", + "url": "https://t.me/hectordaoann" + }, + { + "name": "github", + "url": "https://github.com/Hector-DAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tor/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/tor" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83/logo.png b/blockchains/smartchain/assets/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83/logo.png new file mode 100644 index 00000000..ecd893ef Binary files /dev/null and b/blockchains/smartchain/assets/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83/logo.png differ diff --git a/blockchains/smartchain/assets/0x1d7B5e06fdbe4FD33f5C64C081E32B5d539751D0/info.json b/blockchains/smartchain/assets/0x1d7B5e06fdbe4FD33f5C64C081E32B5d539751D0/info.json new file mode 100644 index 00000000..00792300 --- /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 00000000..fe6efcd5 Binary files /dev/null and b/blockchains/smartchain/assets/0x1d7B5e06fdbe4FD33f5C64C081E32B5d539751D0/logo.png differ diff --git a/blockchains/smartchain/assets/0x1e3f4174b6d226354E1fb2325E6f76c1919Bd9eB/info.json b/blockchains/smartchain/assets/0x1e3f4174b6d226354E1fb2325E6f76c1919Bd9eB/info.json new file mode 100644 index 00000000..4ac9b086 --- /dev/null +++ b/blockchains/smartchain/assets/0x1e3f4174b6d226354E1fb2325E6f76c1919Bd9eB/info.json @@ -0,0 +1,11 @@ +{ + "name": "SpaceVikings Token ", + "website": "https://SpaceVikings.finance", + "description": "SpaceVikings is a Danish DeFi Crypto project with real life use cases ", + "explorer": "https://bscscan.com/token/0x1e3f4174b6d226354E1fb2325E6f76c1919Bd9eB", + "type": "BEP20", + "symbol": "SVT", + "decimals": 9, + "status": "abandoned", + "id": "0x1e3f4174b6d226354E1fb2325E6f76c1919Bd9eB" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1e3f4174b6d226354E1fb2325E6f76c1919Bd9eB/logo.png b/blockchains/smartchain/assets/0x1e3f4174b6d226354E1fb2325E6f76c1919Bd9eB/logo.png new file mode 100644 index 00000000..4d2e57e4 Binary files /dev/null and b/blockchains/smartchain/assets/0x1e3f4174b6d226354E1fb2325E6f76c1919Bd9eB/logo.png differ diff --git a/blockchains/smartchain/assets/0x1e446CbEa52BAdeB614FBe4Ab7610F737995fB44/info.json b/blockchains/smartchain/assets/0x1e446CbEa52BAdeB614FBe4Ab7610F737995fB44/info.json new file mode 100644 index 00000000..7bbab7b5 --- /dev/null +++ b/blockchains/smartchain/assets/0x1e446CbEa52BAdeB614FBe4Ab7610F737995fB44/info.json @@ -0,0 +1,11 @@ +{ + "name": "Saturna", + "website": "https://saturna.co", + "description": "Saturna is a frictionless yield community-driven project. With tokenomics designed to keep building the price floor and reflecting transaction taxes back to holders and liquidity.", + "type": "BEP20", + "symbol": "SAT", + "decimals": 9, + "status": "active", + "id": "0x1e446CbEa52BAdeB614FBe4Ab7610F737995fB44", + "explorer": "https://bscscan.com/token/0x1e446CbEa52BAdeB614FBe4Ab7610F737995fB44" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1e446CbEa52BAdeB614FBe4Ab7610F737995fB44/logo.png b/blockchains/smartchain/assets/0x1e446CbEa52BAdeB614FBe4Ab7610F737995fB44/logo.png new file mode 100644 index 00000000..79afdd6c Binary files /dev/null and b/blockchains/smartchain/assets/0x1e446CbEa52BAdeB614FBe4Ab7610F737995fB44/logo.png differ diff --git a/blockchains/smartchain/assets/0x1e4e9397533efBF31eD451Eae1c17Bca090Bc9ef/info.json b/blockchains/smartchain/assets/0x1e4e9397533efBF31eD451Eae1c17Bca090Bc9ef/info.json new file mode 100644 index 00000000..cd830cd0 --- /dev/null +++ b/blockchains/smartchain/assets/0x1e4e9397533efBF31eD451Eae1c17Bca090Bc9ef/info.json @@ -0,0 +1,11 @@ +{ + "name": "Weedcoin", + "website": "https://weedcointhc.finance", + "description": "Weed coin is the currency of independence. Weed coin is our rebellion. Weed coin started out as a meme, but it will become a utility token. Weed coin is more than a community, it is an ARMY.We dream that every social club in Spain, every coffee shop in Amsterdam, every shop in California and every medical cannabis therapy in the world gets paid in WEEDCOIN.", + "type": "BEP20", + "symbol": "THC", + "decimals": 18, + "status": "active", + "explorer": "https://bscscan.com/token/0x1e4e9397533efBF31eD451Eae1c17Bca090Bc9ef", + "id": "0x1e4e9397533efBF31eD451Eae1c17Bca090Bc9ef" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1e4e9397533efBF31eD451Eae1c17Bca090Bc9ef/logo.png b/blockchains/smartchain/assets/0x1e4e9397533efBF31eD451Eae1c17Bca090Bc9ef/logo.png new file mode 100644 index 00000000..d12fe0c0 Binary files /dev/null and b/blockchains/smartchain/assets/0x1e4e9397533efBF31eD451Eae1c17Bca090Bc9ef/logo.png differ diff --git a/blockchains/smartchain/assets/0x1e4fFa373d94c95717Fb83eC026b2e0e2F443bB0/info.json b/blockchains/smartchain/assets/0x1e4fFa373d94c95717Fb83eC026b2e0e2F443bB0/info.json new file mode 100644 index 00000000..5b19cad2 --- /dev/null +++ b/blockchains/smartchain/assets/0x1e4fFa373d94c95717Fb83eC026b2e0e2F443bB0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Green Climate World", + "type": "BEP20", + "symbol": "WGC", + "decimals": 16, + "website": "https://greenclimate.io", + "description": "Green Climate world is a project aiming to improve the life on our planet.The core of the project is the WGC Token. The WGC token is a blockchain based cryptocurrency and also a ledger. All logs will be secure on the blockchain with no possibility for any kind of tempering or erasing by anyone.", + "explorer": "https://bscscan.com/token/0x1e4fFa373d94c95717Fb83eC026b2e0e2F443bB0", + "status": "active", + "id": "0x1e4fFa373d94c95717Fb83eC026b2e0e2F443bB0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1e4fFa373d94c95717Fb83eC026b2e0e2F443bB0/logo.png b/blockchains/smartchain/assets/0x1e4fFa373d94c95717Fb83eC026b2e0e2F443bB0/logo.png new file mode 100644 index 00000000..06c65e72 Binary files /dev/null and b/blockchains/smartchain/assets/0x1e4fFa373d94c95717Fb83eC026b2e0e2F443bB0/logo.png differ diff --git a/blockchains/smartchain/assets/0x1e5F009d4f8cA44b5FcC4963dD301Da82b4eed09/info.json b/blockchains/smartchain/assets/0x1e5F009d4f8cA44b5FcC4963dD301Da82b4eed09/info.json new file mode 100644 index 00000000..2da7fe53 --- /dev/null +++ b/blockchains/smartchain/assets/0x1e5F009d4f8cA44b5FcC4963dD301Da82b4eed09/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zabaku Inu", + "type": "BEP20", + "symbol": "ZABAKU", + "decimals": 9, + "website": "https://zabakuinu.herokuapp.com", + "description": "Zabaku Inu is one of the first fully-decentralized and deflationary token that unites every MEME lovers", + "explorer": "https://bscscan.com/token/0x1e5F009d4f8cA44b5FcC4963dD301Da82b4eed09", + "status": "active", + "id": "0x1e5F009d4f8cA44b5FcC4963dD301Da82b4eed09" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1e5F009d4f8cA44b5FcC4963dD301Da82b4eed09/logo.png b/blockchains/smartchain/assets/0x1e5F009d4f8cA44b5FcC4963dD301Da82b4eed09/logo.png new file mode 100644 index 00000000..b0008c45 Binary files /dev/null and b/blockchains/smartchain/assets/0x1e5F009d4f8cA44b5FcC4963dD301Da82b4eed09/logo.png differ diff --git a/blockchains/smartchain/assets/0x1e7045bF57d7316069AC248f1939E4Df8AFd4444/info.json b/blockchains/smartchain/assets/0x1e7045bF57d7316069AC248f1939E4Df8AFd4444/info.json new file mode 100644 index 00000000..1dee1a4b --- /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 new file mode 100644 index 00000000..5bef4805 --- /dev/null +++ b/blockchains/smartchain/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json @@ -0,0 +1,41 @@ +{ + "name": "WAGMI", + "type": "BEP20", + "symbol": "WAGMI", + "decimals": 18, + "website": "https://www.wagmigame.io/", + "description": "WAGMI is the brilliant product of combining a Play-To-Earn game concept with a cultural acronym.", + "explorer": "https://bscscan.com/token/0x1e987DF68CC13d271e621ec82E050A1BbD62c180", + "status": "active", + "id": "0x1e987DF68CC13d271e621ec82E050A1BbD62c180", + "links": [ + { + "name": "x", + "url": "https://x.com/WagmiGameCo" + }, + { + "name": "discord", + "url": "https://discord.com/wagmigame" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/wagmigame/" + }, + { + "name": "facebook", + "url": "https://facebook.com/wagmigame/" + }, + { + "name": "telegram", + "url": "https://t.me/WAGMIOfficialGroup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wagmi-game/" + } + ], + "tags": [ + "defi", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/logo.png b/blockchains/smartchain/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/logo.png new file mode 100644 index 00000000..2d14be7b Binary files /dev/null and b/blockchains/smartchain/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/logo.png differ diff --git a/blockchains/smartchain/assets/0x1ec5da0f1e43EF6802DE631A1323a37E7b530B2b/info.json b/blockchains/smartchain/assets/0x1ec5da0f1e43EF6802DE631A1323a37E7b530B2b/info.json new file mode 100644 index 00000000..670324b8 --- /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 00000000..a3353fbd 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 00000000..3b1240b0 --- /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 00000000..dfcc1150 Binary files /dev/null and b/blockchains/smartchain/assets/0x1ed4E5C54B7EC819B1e3f53b15F5808780E89832/logo.png differ diff --git a/blockchains/smartchain/assets/0x1f14e0F13471fea5990cf697945eD676885f42C3/info.json b/blockchains/smartchain/assets/0x1f14e0F13471fea5990cf697945eD676885f42C3/info.json new file mode 100644 index 00000000..118d1b3b --- /dev/null +++ b/blockchains/smartchain/assets/0x1f14e0F13471fea5990cf697945eD676885f42C3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Herpes", + "type": "BEP20", + "symbol": "HERPES", + "decimals": 9, + "website": "https://herpes.finance/", + "description": "Trends come and go. $HERPES is forever. Herpes' goal is to spread awareness about STIs and unite the crypto community in a fun and viral way. Herpes is a BEP20 token hosted on the BSC. Its tokenomics feature a 10% transaction tax, of which 8% is redistributed to holders and 2% is automatically added to locked liquidity. The Herpes team strives for transparency and is determined to promote organizations that engage in STI education and treatment.", + "explorer": "https://bscscan.com/token/0x1f14e0F13471fea5990cf697945eD676885f42C3", + "status": "active", + "id": "0x1f14e0F13471fea5990cf697945eD676885f42C3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1f14e0F13471fea5990cf697945eD676885f42C3/logo.png b/blockchains/smartchain/assets/0x1f14e0F13471fea5990cf697945eD676885f42C3/logo.png new file mode 100644 index 00000000..ea2f70bb Binary files /dev/null and b/blockchains/smartchain/assets/0x1f14e0F13471fea5990cf697945eD676885f42C3/logo.png differ diff --git a/blockchains/smartchain/assets/0x1f3Af095CDa17d63cad238358837321e95FC5915/info.json b/blockchains/smartchain/assets/0x1f3Af095CDa17d63cad238358837321e95FC5915/info.json new file mode 100644 index 00000000..57673d51 --- /dev/null +++ b/blockchains/smartchain/assets/0x1f3Af095CDa17d63cad238358837321e95FC5915/info.json @@ -0,0 +1,29 @@ +{ + "name": "Mint.club", + "symbol": "MINT", + "type": "BEP20", + "decimals": 18, + "description": "Mint Club is a smart token building platform that has no need to code and provides instant liquidity. Anyone can launch a smart token with just a few simple clicks.", + "website": "https://mint.club", + "explorer": "https://bscscan.com/token/0x1f3Af095CDa17d63cad238358837321e95FC5915", + "status": "active", + "id": "0x1f3Af095CDa17d63cad238358837321e95FC5915", + "links": [ + { + "name": "github", + "url": "https://github.com/Steemhunt/mint.club-contract" + }, + { + "name": "x", + "url": "https://x.com/MintClubPro" + }, + { + "name": "telegram", + "url": "https://t.me/mint_club" + }, + { + "name": "docs", + "url": "https://docs.mint.club" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1f3Af095CDa17d63cad238358837321e95FC5915/logo.png b/blockchains/smartchain/assets/0x1f3Af095CDa17d63cad238358837321e95FC5915/logo.png new file mode 100644 index 00000000..7f867485 Binary files /dev/null and b/blockchains/smartchain/assets/0x1f3Af095CDa17d63cad238358837321e95FC5915/logo.png differ diff --git a/blockchains/smartchain/assets/0x1f546aD641B56b86fD9dCEAc473d1C7a357276B7/info.json b/blockchains/smartchain/assets/0x1f546aD641B56b86fD9dCEAc473d1C7a357276B7/info.json new file mode 100644 index 00000000..8c831ac4 --- /dev/null +++ b/blockchains/smartchain/assets/0x1f546aD641B56b86fD9dCEAc473d1C7a357276B7/info.json @@ -0,0 +1,12 @@ +{ + "name": "PantherSwap Token", + "website": "https://pantherswap.com", + "description": "PantherSwap is the First Automatic Liquidity Acquisition Yield Farm & AMM on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x1f546aD641B56b86fD9dCEAc473d1C7a357276B7", + "research": "https://docs.pantherswap.com", + "type": "BEP20", + "symbol": "PANTHER", + "decimals": 18, + "status": "active", + "id": "0x1f546aD641B56b86fD9dCEAc473d1C7a357276B7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1f546aD641B56b86fD9dCEAc473d1C7a357276B7/logo.png b/blockchains/smartchain/assets/0x1f546aD641B56b86fD9dCEAc473d1C7a357276B7/logo.png new file mode 100644 index 00000000..0f9713d8 Binary files /dev/null and b/blockchains/smartchain/assets/0x1f546aD641B56b86fD9dCEAc473d1C7a357276B7/logo.png differ diff --git a/blockchains/smartchain/assets/0x1f8955E640Cbd9abc3C3Bb408c9E2E1f5F20DfE6/info.json b/blockchains/smartchain/assets/0x1f8955E640Cbd9abc3C3Bb408c9E2E1f5F20DfE6/info.json new file mode 100644 index 00000000..ef005afc --- /dev/null +++ b/blockchains/smartchain/assets/0x1f8955E640Cbd9abc3C3Bb408c9E2E1f5F20DfE6/info.json @@ -0,0 +1,20 @@ +{ + "name": "Ondo U.S. Dollar Token", + "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 00000000..760bb838 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 new file mode 100644 index 00000000..9a046723 --- /dev/null +++ b/blockchains/smartchain/assets/0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163/info.json @@ -0,0 +1,14 @@ +{ + "name": "BNB pegged Celer Token", + "symbol": "CELR", + "type": "BEP20", + "decimals": 18, + "description": "BNB pegged Celer Token (CELR BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Celer (CELR ERC20) at a ratio of 1:1.", + "website": "https://www.celer.network/#", + "explorer": "https://bscscan.com/token/0x1f9f6a696c6fd109cd3956f45dc709d2b3902163", + "status": "active", + "id": "0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163", + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163/logo.png b/blockchains/smartchain/assets/0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163/logo.png new file mode 100644 index 00000000..b3dc0601 Binary files /dev/null and b/blockchains/smartchain/assets/0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163/logo.png differ diff --git a/blockchains/smartchain/assets/0x1fBB6cA220dCBE732f796Fa9b13dd21cD654511b/info.json b/blockchains/smartchain/assets/0x1fBB6cA220dCBE732f796Fa9b13dd21cD654511b/info.json new file mode 100644 index 00000000..0aa5bb38 --- /dev/null +++ b/blockchains/smartchain/assets/0x1fBB6cA220dCBE732f796Fa9b13dd21cD654511b/info.json @@ -0,0 +1,11 @@ +{ + "name": "0xzx Token", + "type": "BEP20", + "symbol": "0xzx", + "decimals": 9, + "website": "https://0xzx.com", + "description": "0xzx.com is a content-based incentive platform based on the decentralized economy that continually motivates new news content.", + "explorer": "https://bscscan.com/token/0x1fbb6ca220dcbe732f796fa9b13dd21cd654511b", + "status": "active", + "id": "0x1fBB6cA220dCBE732f796Fa9b13dd21cD654511b" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1fBB6cA220dCBE732f796Fa9b13dd21cD654511b/logo.png b/blockchains/smartchain/assets/0x1fBB6cA220dCBE732f796Fa9b13dd21cD654511b/logo.png new file mode 100644 index 00000000..d4c93035 Binary files /dev/null and b/blockchains/smartchain/assets/0x1fBB6cA220dCBE732f796Fa9b13dd21cD654511b/logo.png differ diff --git a/blockchains/smartchain/assets/0x1fC9004eC7E5722891f5f38baE7678efCB11d34D/info.json b/blockchains/smartchain/assets/0x1fC9004eC7E5722891f5f38baE7678efCB11d34D/info.json new file mode 100644 index 00000000..816d9657 --- /dev/null +++ b/blockchains/smartchain/assets/0x1fC9004eC7E5722891f5f38baE7678efCB11d34D/info.json @@ -0,0 +1,33 @@ +{ + "name": "BNB pegged APENFT Token", + "website": "https://www.apenft.org/", + "description": "APENFT was born with the mission to register world-class artworks as NFTs on blockchain. It aims to build a bridge between top-notch artists and blockchain, and to support the growth of native crypto NFT artists.", + "explorer": "https://bscscan.com/token/0x1fc9004ec7e5722891f5f38bae7678efcb11d34d", + "type": "BEP20", + "symbol": "NFT", + "decimals": 6, + "status": "active", + "id": "0x1fC9004eC7E5722891f5f38baE7678efCB11d34D", + "tags": [ + "binance-peg", + "nft" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/apenftEN" + }, + { + "name": "x", + "url": "https://x.com/apenftorg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apenft/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/apenft/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1fC9004eC7E5722891f5f38baE7678efCB11d34D/logo.png b/blockchains/smartchain/assets/0x1fC9004eC7E5722891f5f38baE7678efCB11d34D/logo.png new file mode 100644 index 00000000..d57b78aa Binary files /dev/null and b/blockchains/smartchain/assets/0x1fC9004eC7E5722891f5f38baE7678efCB11d34D/logo.png differ diff --git a/blockchains/smartchain/assets/0x1fD991fb6c3102873ba68a4e6e6a87B3a5c10271/info.json b/blockchains/smartchain/assets/0x1fD991fb6c3102873ba68a4e6e6a87B3a5c10271/info.json new file mode 100644 index 00000000..4c2c42f6 --- /dev/null +++ b/blockchains/smartchain/assets/0x1fD991fb6c3102873ba68a4e6e6a87B3a5c10271/info.json @@ -0,0 +1,11 @@ +{ + "name": "Atlantis Token", + "website": "https://atlantis.loans", + "description": "Atlantis is a decentralized money market that enables users to borrow and supply digital assets to the protocol within a non-custodial environment", + "explorer": "https://bscscan.com/token/0x1fD991fb6c3102873ba68a4e6e6a87B3a5c10271", + "type": "BEP20", + "symbol": "ATL", + "decimals": 18, + "status": "active", + "id": "0x1fD991fb6c3102873ba68a4e6e6a87B3a5c10271" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1fD991fb6c3102873ba68a4e6e6a87B3a5c10271/logo.png b/blockchains/smartchain/assets/0x1fD991fb6c3102873ba68a4e6e6a87B3a5c10271/logo.png new file mode 100644 index 00000000..77d4afb8 Binary files /dev/null and b/blockchains/smartchain/assets/0x1fD991fb6c3102873ba68a4e6e6a87B3a5c10271/logo.png differ diff --git a/blockchains/smartchain/assets/0x1fe38769ED41Fe7f47270C78d2F0507b508d06F0/info.json b/blockchains/smartchain/assets/0x1fe38769ED41Fe7f47270C78d2F0507b508d06F0/info.json new file mode 100644 index 00000000..0787916a --- /dev/null +++ b/blockchains/smartchain/assets/0x1fe38769ED41Fe7f47270C78d2F0507b508d06F0/info.json @@ -0,0 +1,11 @@ +{ + "name": "HyperMeteor", + "type": "BEP20", + "symbol": "HyMETEOR", + "decimals": 18, + "website": "https://hypermeteor.net", + "description": "First generation deflationary auto-yield token with evolutive fee, making it more rewarding as time passes", + "explorer": "https://bscscan.com/token/0x1fe38769ED41Fe7f47270C78d2F0507b508d06F0", + "status": "active", + "id": "0x1fe38769ED41Fe7f47270C78d2F0507b508d06F0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1fe38769ED41Fe7f47270C78d2F0507b508d06F0/logo.png b/blockchains/smartchain/assets/0x1fe38769ED41Fe7f47270C78d2F0507b508d06F0/logo.png new file mode 100644 index 00000000..14072b4b Binary files /dev/null and b/blockchains/smartchain/assets/0x1fe38769ED41Fe7f47270C78d2F0507b508d06F0/logo.png differ diff --git a/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/info.json b/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/info.json new file mode 100644 index 00000000..8c1872d9 --- /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 00000000..06aaba01 Binary files /dev/null and b/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/logo.png differ diff --git a/blockchains/smartchain/assets/0x2020EB9E26aa49c27ebB72C174cfbab851f7ddE0/info.json b/blockchains/smartchain/assets/0x2020EB9E26aa49c27ebB72C174cfbab851f7ddE0/info.json new file mode 100644 index 00000000..fc7c1521 --- /dev/null +++ b/blockchains/smartchain/assets/0x2020EB9E26aa49c27ebB72C174cfbab851f7ddE0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jeju Doge BSC", + "website": "https://jejudogebsc.net/", + "description": "The Jejudoge BSC protocol is a community driven, fair launched DeFi token on the Binance Smart Chain (BSC) that arose from the desire to introduce a new standard of professionalism to a market segment that has been largely characterized by a lack of effort or innovation in the areas of tokenomics, design, marketing, implementation, and ongoing catalysts to maintain momentum and generate continued returns for holders...", + "explorer": "https://bscscan.com/token/0x2020EB9E26aa49c27ebB72C174cfbab851f7ddE0", + "type": "BEP20", + "symbol": "JEJUDOGE", + "decimals": 9, + "status": "active", + "id": "0x2020EB9E26aa49c27ebB72C174cfbab851f7ddE0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2020EB9E26aa49c27ebB72C174cfbab851f7ddE0/logo.png b/blockchains/smartchain/assets/0x2020EB9E26aa49c27ebB72C174cfbab851f7ddE0/logo.png new file mode 100644 index 00000000..070a0686 Binary files /dev/null and b/blockchains/smartchain/assets/0x2020EB9E26aa49c27ebB72C174cfbab851f7ddE0/logo.png differ diff --git a/blockchains/smartchain/assets/0x20512Ee0052236B009772Af0Ed22BC58B40c27B9/info.json b/blockchains/smartchain/assets/0x20512Ee0052236B009772Af0Ed22BC58B40c27B9/info.json new file mode 100644 index 00000000..1638802e --- /dev/null +++ b/blockchains/smartchain/assets/0x20512Ee0052236B009772Af0Ed22BC58B40c27B9/info.json @@ -0,0 +1,37 @@ +{ + "name": "MUSO Finance", + "type": "BEP20", + "symbol": "MUSO", + "decimals": 9, + "website": "https://muso.finance/", + "description": "MUSO Finance is a BEP20 token built on the Binance Smart Chain, meaning low fees, fast transaction times, and smart contract compatibility Idea to innovation - MUSO Finance was founded in 2021 by likeminded people whom all have a keen interest in music and crypto. With MUSO Finance being the driving force of various projects the team have every intention to be at the forefront of the music industry, offering fair payment to all artists and zestful community events.", + "explorer": "https://bscscan.com/token/0x20512Ee0052236B009772Af0Ed22BC58B40c27B9", + "status": "active", + "id": "0x20512Ee0052236B009772Af0Ed22BC58B40c27B9", + "links": [ + { + "name": "x", + "url": "https://x.com/musofinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/muso-finance" + }, + { + "name": "whitepaper", + "url": "https://muso.finance/wp-content/uploads/2021/08/MUSO-Finance-Whitepaper.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/MUSOfinance" + }, + { + "name": "facebook", + "url": "https://facebook.com/musofinance" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MusoFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x20512Ee0052236B009772Af0Ed22BC58B40c27B9/logo.png b/blockchains/smartchain/assets/0x20512Ee0052236B009772Af0Ed22BC58B40c27B9/logo.png new file mode 100644 index 00000000..8431dd46 Binary files /dev/null and b/blockchains/smartchain/assets/0x20512Ee0052236B009772Af0Ed22BC58B40c27B9/logo.png differ diff --git a/blockchains/smartchain/assets/0x205812CdBed920aFf76C6580abD681a46D11efc7/info.json b/blockchains/smartchain/assets/0x205812CdBed920aFf76C6580abD681a46D11efc7/info.json new file mode 100644 index 00000000..f4af6e18 --- /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 00000000..a2bd8df8 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 new file mode 100644 index 00000000..91e7c7db --- /dev/null +++ b/blockchains/smartchain/assets/0x205AFD08ceFe438377a0abC5a20Cb4462E1a8C5C/info.json @@ -0,0 +1,32 @@ +{ + "name": "OBRok Token", + "type": "BEP20", + "symbol": "OBROK", + "decimals": 9, + "website": "https://obroktoken.com", + "description": "OBROk Token is Launched in 17.06.2021 and with limited supply, produced with the BEP-20(BSC) network. The working areas of the OBRok Token (OBROK) Team are * Metaverse * Web 3.0 * Aeronautical Sciences and Space * Renewable Energy", + "explorer": "https://bscscan.com/token/0x205afd08cefe438377a0abc5a20cb4462e1a8c5c", + "status": "active", + "id": "0x205AFD08ceFe438377a0abC5a20Cb4462E1a8C5C", + "links": [ + { + "name": "x", + "url": "https://x.com/Obroktoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/obrok-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/obrok/" + }, + { + "name": "whitepaper", + "url": "https://obroktoken.com/white-paper/" + } + ], + "tags": [ + "metaverse" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x205AFD08ceFe438377a0abC5a20Cb4462E1a8C5C/logo.png b/blockchains/smartchain/assets/0x205AFD08ceFe438377a0abC5a20Cb4462E1a8C5C/logo.png new file mode 100644 index 00000000..91d378a8 Binary files /dev/null and b/blockchains/smartchain/assets/0x205AFD08ceFe438377a0abC5a20Cb4462E1a8C5C/logo.png differ diff --git a/blockchains/smartchain/assets/0x2065E3BD318f155abE5Ad6aa263596f197112261/info.json b/blockchains/smartchain/assets/0x2065E3BD318f155abE5Ad6aa263596f197112261/info.json new file mode 100644 index 00000000..ce4cc01c --- /dev/null +++ b/blockchains/smartchain/assets/0x2065E3BD318f155abE5Ad6aa263596f197112261/info.json @@ -0,0 +1,25 @@ +{ + "name": "UltimoGG", + "website": "https://www.ultgg.io", + "description": "ULTGG - The game-changing esports token.", + "explorer": "https://bscscan.com/token/0x2065E3BD318f155abE5Ad6aa263596f197112261", + "type": "BEP20", + "symbol": "ULTGG", + "decimals": 9, + "status": "active", + "id": "0x2065E3BD318f155abE5Ad6aa263596f197112261", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ultgg" + }, + { + "name": "x", + "url": "https://x.com/ultimoggesports" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/UltimoHombre/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2065E3BD318f155abE5Ad6aa263596f197112261/logo.png b/blockchains/smartchain/assets/0x2065E3BD318f155abE5Ad6aa263596f197112261/logo.png new file mode 100644 index 00000000..9a69a4c0 Binary files /dev/null and b/blockchains/smartchain/assets/0x2065E3BD318f155abE5Ad6aa263596f197112261/logo.png differ diff --git a/blockchains/smartchain/assets/0x2089F0CbE8Aca0950FA8c5Bb04ADe2323AEE832F/info.json b/blockchains/smartchain/assets/0x2089F0CbE8Aca0950FA8c5Bb04ADe2323AEE832F/info.json new file mode 100644 index 00000000..892be5e1 --- /dev/null +++ b/blockchains/smartchain/assets/0x2089F0CbE8Aca0950FA8c5Bb04ADe2323AEE832F/info.json @@ -0,0 +1,49 @@ +{ + "name": "Londex", + "website": "https://londex.io/", + "description": "Londex (LDC) is a revolutionary rewards token pioneering trust, transparency and integrity on the binance smart chain. We have introduced a vast utility platform called to accompany the londex token for all crypto investors.", + "explorer": "https://bscscan.com/token/0x2089F0CbE8Aca0950FA8c5Bb04ADe2323AEE832F", + "type": "BEP20", + "symbol": "LDX", + "decimals": 9, + "status": "active", + "id": "0x2089F0CbE8Aca0950FA8c5Bb04ADe2323AEE832F", + "links": [ + { + "name": "github", + "url": "https://github.com/monkey-shanti/londex" + }, + { + "name": "x", + "url": "https://x.com/londexofficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/londex" + }, + { + "name": "medium", + "url": "https://medium.com/@londex/londex-token-ldx-launched-today-7acf5d4968a5" + }, + { + "name": "facebook", + "url": "https://facebook.com/groups/449913419583073" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bdZpap8Wbd" + }, + { + "name": "whitepaper", + "url": "https://londex.io/wp-content/uploads/2021/10/wp-londex.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/londex" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/londex" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2089F0CbE8Aca0950FA8c5Bb04ADe2323AEE832F/logo.png b/blockchains/smartchain/assets/0x2089F0CbE8Aca0950FA8c5Bb04ADe2323AEE832F/logo.png new file mode 100644 index 00000000..3bdc4572 Binary files /dev/null and b/blockchains/smartchain/assets/0x2089F0CbE8Aca0950FA8c5Bb04ADe2323AEE832F/logo.png differ diff --git a/blockchains/smartchain/assets/0x208bF3E7dA9639f1Eaefa2DE78c23396B0682025/info.json b/blockchains/smartchain/assets/0x208bF3E7dA9639f1Eaefa2DE78c23396B0682025/info.json new file mode 100644 index 00000000..f0b8e071 --- /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 00000000..d71c921d 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 new file mode 100644 index 00000000..41770f0d --- /dev/null +++ b/blockchains/smartchain/assets/0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A/info.json @@ -0,0 +1,30 @@ +{ + "name": "Fuel Token", + "website": "https://jetfuel.finance/", + "description": "Jetfuel is a yield farming and yield aggregator platform that combines features from the most successful DeFi projects. The Jet Vault allows users to automate and maximize their returns through various Binance Smart Chain protocols using a variety of liquidity provider tokens, staking tokens and other assets that generate positive yield for the user. The Jet Vaults will automatically harvest, sell, compound and buy tokens for you so you can maximize your returns without lifting a finger.", + "research": "https://jetfuel.finance/info", + "explorer": "https://bscscan.com/token/0x2090c8295769791ab7a3cf1cc6e0aa19f35e441a", + "type": "BEP20", + "symbol": "Fuel", + "decimals": 18, + "status": "active", + "id": "0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A", + "links": [ + { + "name": "source_code", + "url": "https://jetfuel.finance/contracts" + }, + { + "name": "x", + "url": "https://x.com/Jetfuelfinance" + }, + { + "name": "telegram", + "url": "https://t.me/jetfuelfinance" + }, + { + "name": "medium", + "url": "https://medium.com/@jetfuelfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A/logo.png b/blockchains/smartchain/assets/0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A/logo.png new file mode 100644 index 00000000..024bf3a4 Binary files /dev/null and b/blockchains/smartchain/assets/0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A/logo.png differ diff --git a/blockchains/smartchain/assets/0x2095d2346e47Ed497d4F39FcfA59918b4346cd65/info.json b/blockchains/smartchain/assets/0x2095d2346e47Ed497d4F39FcfA59918b4346cd65/info.json new file mode 100644 index 00000000..04201cd8 --- /dev/null +++ b/blockchains/smartchain/assets/0x2095d2346e47Ed497d4F39FcfA59918b4346cd65/info.json @@ -0,0 +1,11 @@ +{ + "name": "TACOCAT Token", + "type": "BEP20", + "symbol": "TCT", + "decimals": 18, + "website": "https://tacocat.co", + "description": "TacoCat Token is a utility token on the Binance Smart Chain intended to be the backbone of a lifestyle brand and ecosystem governed and operated by a corporate entity named The TacoCat Company Inc.", + "explorer": "https://bscscan.com/token/0x2095d2346e47Ed497d4F39FcfA59918b4346cd65", + "status": "abandoned", + "id": "0x2095d2346e47Ed497d4F39FcfA59918b4346cd65" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2098fEf7eEae592038f4f3C4b008515fed0d5886/info.json b/blockchains/smartchain/assets/0x2098fEf7eEae592038f4f3C4b008515fed0d5886/info.json new file mode 100644 index 00000000..10109d66 --- /dev/null +++ b/blockchains/smartchain/assets/0x2098fEf7eEae592038f4f3C4b008515fed0d5886/info.json @@ -0,0 +1,50 @@ +{ + "name": "Rune Shards", + "website": "https://rune.game/", + "description": "The governance token and in-game currency of Rune, an epic dark fantasy universe", + "explorer": "https://bscscan.com/token/0x2098fEf7eEae592038f4f3C4b008515fed0d5886", + "type": "BEP20", + "symbol": "RXS", + "decimals": 18, + "status": "active", + "id": "0x2098fEf7eEae592038f4f3C4b008515fed0d5886", + "links": [ + { + "name": "x", + "url": "https://x.com/RuneMetaverse" + }, + { + "name": "telegram", + "url": "https://t.me/RuneMetaverse" + }, + { + "name": "medium", + "url": "https://medium.com/runemmo" + }, + { + "name": "docs", + "url": "https://docs.rune.game" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rune-shards/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/rune-shards/" + }, + { + "name": "facebook", + "url": "https://facebook.com/RuneMetaverse/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/rune/" + } + ], + "tags": [ + "nft", + "defi", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2098fEf7eEae592038f4f3C4b008515fed0d5886/logo.png b/blockchains/smartchain/assets/0x2098fEf7eEae592038f4f3C4b008515fed0d5886/logo.png new file mode 100644 index 00000000..dab4c3c7 Binary files /dev/null and b/blockchains/smartchain/assets/0x2098fEf7eEae592038f4f3C4b008515fed0d5886/logo.png differ diff --git a/blockchains/smartchain/assets/0x20CCe48D767eD68CBbA7727c4c504eFE5Bcb626c/info.json b/blockchains/smartchain/assets/0x20CCe48D767eD68CBbA7727c4c504eFE5Bcb626c/info.json new file mode 100644 index 00000000..c29de0d9 --- /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 00000000..cc372823 Binary files /dev/null and b/blockchains/smartchain/assets/0x20CCe48D767eD68CBbA7727c4c504eFE5Bcb626c/logo.png differ diff --git a/blockchains/smartchain/assets/0x20D39a5130F799b95B55a930E5b7eBC589eA9Ed8/info.json b/blockchains/smartchain/assets/0x20D39a5130F799b95B55a930E5b7eBC589eA9Ed8/info.json new file mode 100644 index 00000000..8cb597ce --- /dev/null +++ b/blockchains/smartchain/assets/0x20D39a5130F799b95B55a930E5b7eBC589eA9Ed8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Heroes&Empires", + "type": "BEP20", + "symbol": "HE", + "decimals": 18, + "website": "https://heroesempires.com/", + "description": "Heroes & Empires is a strategy game that combines the distinctive elements of Idle RPG and the tactics of auto chess, connected with blockchain technology. By taking advantage of the Non-Fungible Token (NFT) characteristic to create characters and items.", + "explorer": "https://bscscan.com/token/0x20D39a5130F799b95B55a930E5b7eBC589eA9Ed8", + "status": "active", + "id": "0x20D39a5130F799b95B55a930E5b7eBC589eA9Ed8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/heroes-and-empires/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/heroes-empires" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x20D39a5130F799b95B55a930E5b7eBC589eA9Ed8/logo.png b/blockchains/smartchain/assets/0x20D39a5130F799b95B55a930E5b7eBC589eA9Ed8/logo.png new file mode 100644 index 00000000..c48e2733 Binary files /dev/null and b/blockchains/smartchain/assets/0x20D39a5130F799b95B55a930E5b7eBC589eA9Ed8/logo.png differ diff --git a/blockchains/smartchain/assets/0x20bff4bbEDa07536FF00e073bd8359E5D80D733d/info.json b/blockchains/smartchain/assets/0x20bff4bbEDa07536FF00e073bd8359E5D80D733d/info.json new file mode 100644 index 00000000..f7d65f41 --- /dev/null +++ b/blockchains/smartchain/assets/0x20bff4bbEDa07536FF00e073bd8359E5D80D733d/info.json @@ -0,0 +1,29 @@ +{ + "name": "Cannon Finance", + "website": "https://cannon.finance/", + "description": "Cannon is a decentralized protocol that enables cross-chain digital asset inteoperability such as with Bitcoin to Ethereum", + "explorer": "https://bscscan.com/token/0x20bff4bbEDa07536FF00e073bd8359E5D80D733d", + "type": "BEP20", + "symbol": "CAN", + "decimals": 18, + "status": "active", + "id": "0x20bff4bbEDa07536FF00e073bd8359E5D80D733d", + "links": [ + { + "name": "github", + "url": "https://github.com/cannonfinance" + }, + { + "name": "x", + "url": "https://x.com/Cannon" + }, + { + "name": "telegram", + "url": "https://t.me/CannonFinance" + }, + { + "name": "medium", + "url": "https://medium.com/CannonFinance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x20bff4bbEDa07536FF00e073bd8359E5D80D733d/logo.png b/blockchains/smartchain/assets/0x20bff4bbEDa07536FF00e073bd8359E5D80D733d/logo.png new file mode 100644 index 00000000..07c97670 Binary files /dev/null and b/blockchains/smartchain/assets/0x20bff4bbEDa07536FF00e073bd8359E5D80D733d/logo.png differ diff --git a/blockchains/smartchain/assets/0x20d6015660b3fe52e6690a889b5C51F69902cE0e/info.json b/blockchains/smartchain/assets/0x20d6015660b3fe52e6690a889b5C51F69902cE0e/info.json new file mode 100644 index 00000000..f3930ca8 --- /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 00000000..a289bbca 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 new file mode 100644 index 00000000..9b90e0eb --- /dev/null +++ b/blockchains/smartchain/assets/0x20de22029ab63cf9A7Cf5fEB2b737Ca1eE4c82A6/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": "BEP20", + "symbol": "CHESS", + "decimals": 18, + "status": "active", + "explorer": "https://bscscan.com/token/0x20de22029ab63cf9A7Cf5fEB2b737Ca1eE4c82A6", + "id": "0x20de22029ab63cf9A7Cf5fEB2b737Ca1eE4c82A6", + "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/smartchain/assets/0x20de22029ab63cf9A7Cf5fEB2b737Ca1eE4c82A6/logo.png b/blockchains/smartchain/assets/0x20de22029ab63cf9A7Cf5fEB2b737Ca1eE4c82A6/logo.png new file mode 100644 index 00000000..6a677de5 Binary files /dev/null and b/blockchains/smartchain/assets/0x20de22029ab63cf9A7Cf5fEB2b737Ca1eE4c82A6/logo.png differ diff --git a/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/info.json b/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/info.json new file mode 100644 index 00000000..328f3f8e --- /dev/null +++ b/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/info.json @@ -0,0 +1,33 @@ +{ + "name": "APENFT", + "symbol": "NFT", + "type": "BEP20", + "decimals": 6, + "description": "APENFT Fund was born with the mission to register worid-class artworks as NFTs on blockchain and aim to be the ARK Funds in the NFT space to buld a bridge between top-notch artists and blockchain, and to support the growth of native crypto NFT artists.", + "website": "https://apenft.io/", + "explorer": "https://bscscan.com/token/0x20ee7b720f4e4c4ffcb00c4065cdae55271aecca", + "status": "active", + "id": "0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa", + "links": [ + { + "name": "x", + "url": "https://x.com/apenftorg" + }, + { + "name": "telegram", + "url": "https://t.me/apenftEN" + }, + { + "name": "whitepaper", + "url": "https://fundation.apenft.io/book/APENFT%20White%20Paper.pdf" + }, + { + "name": "medium", + "url": "https://apenftorg.medium.com/" + } + ], + "tags": [ + "nft", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/logo.png b/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/logo.png new file mode 100644 index 00000000..4ab1ef9e Binary files /dev/null and b/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/logo.png differ diff --git a/blockchains/smartchain/assets/0x2114eD8Ed375C2056053234F0a457f700E04B650/info.json b/blockchains/smartchain/assets/0x2114eD8Ed375C2056053234F0a457f700E04B650/info.json new file mode 100644 index 00000000..b91e12e9 --- /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 00000000..f6ef1b52 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 new file mode 100644 index 00000000..660dd154 --- /dev/null +++ b/blockchains/smartchain/assets/0x211FfbE424b90e25a15531ca322adF1559779E45/info.json @@ -0,0 +1,21 @@ +{ + "name": "BUX Token", + "website": "https://getbuxcrypto.com", + "description": "BUX is a platform that makes crypto trading simple and accessible.", + "explorer": "https://bscscan.com/token/0x211ffbe424b90e25a15531ca322adf1559779e45", + "type": "BEP20", + "symbol": "BUX", + "decimals": 18, + "status": "active", + "id": "0x211FfbE424b90e25a15531ca322adF1559779E45", + "links": [ + { + "name": "x", + "url": "https://x.com/buxcrypto" + }, + { + "name": "telegram", + "url": "https://t.me/buxcommunity" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x211FfbE424b90e25a15531ca322adF1559779E45/logo.png b/blockchains/smartchain/assets/0x211FfbE424b90e25a15531ca322adF1559779E45/logo.png new file mode 100644 index 00000000..b1473438 Binary files /dev/null and b/blockchains/smartchain/assets/0x211FfbE424b90e25a15531ca322adF1559779E45/logo.png differ diff --git a/blockchains/smartchain/assets/0x212fE6ACbd2083BA0fd7c13Bc57100Ce8bf52e75/info.json b/blockchains/smartchain/assets/0x212fE6ACbd2083BA0fd7c13Bc57100Ce8bf52e75/info.json new file mode 100644 index 00000000..802dd0e3 --- /dev/null +++ b/blockchains/smartchain/assets/0x212fE6ACbd2083BA0fd7c13Bc57100Ce8bf52e75/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeMoon.Swap", + "type": "BEP20", + "symbol": "SFMS", + "decimals": 9, + "website": "https://www.safe-moon.tech/", + "description": "Join us for a safe way to the moon!", + "explorer": "https://bscscan.com/token/0x212fE6ACbd2083BA0fd7c13Bc57100Ce8bf52e75", + "status": "active", + "id": "0x212fE6ACbd2083BA0fd7c13Bc57100Ce8bf52e75" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x212fE6ACbd2083BA0fd7c13Bc57100Ce8bf52e75/logo.png b/blockchains/smartchain/assets/0x212fE6ACbd2083BA0fd7c13Bc57100Ce8bf52e75/logo.png new file mode 100644 index 00000000..d844a2fb Binary files /dev/null and b/blockchains/smartchain/assets/0x212fE6ACbd2083BA0fd7c13Bc57100Ce8bf52e75/logo.png differ diff --git a/blockchains/smartchain/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json b/blockchains/smartchain/assets/0x214151022C2a5E380aB80CdaC31f23Ae554a7345/info.json new file mode 100644 index 00000000..7cb56856 --- /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 00000000..72cd9e09 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 00000000..33733a8d --- /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 00000000..c99d5dee 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 new file mode 100644 index 00000000..40321aa6 --- /dev/null +++ b/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/info.json @@ -0,0 +1,33 @@ +{ + "name": "BNB pegged 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", + "research": "https://research.binance.com/en/projects/ethereum", + "type": "BEP20", + "symbol": "ETH", + "decimals": 18, + "status": "active", + "id": "0x2170Ed0880ac9A755fd29B2688956BD959F933F8", + "tags": [ + "binance-peg" + ], + "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/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/logo.png b/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/logo.png new file mode 100644 index 00000000..bf957d38 Binary files /dev/null and b/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/logo.png differ diff --git a/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/info.json b/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/info.json new file mode 100644 index 00000000..c3e754d2 --- /dev/null +++ b/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/info.json @@ -0,0 +1,29 @@ +{ + "name": "BITCONEY", + "website": "https://www.bitconeytoken.com", + "description": "BITCONEY is a game reward token created for the 'Crypto Bunny' mobile game, a free play-to-earn crypto game. The players in the game are rewarded with CB coins which they can convert to BITCONEY tokens and withdraw to their wallets.", + "explorer": "https://bscscan.com/token/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF", + "type": "BEP20", + "symbol": "BITCONEY", + "decimals": 8, + "status": "active", + "id": "0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF", + "links": [ + { + "name": "github", + "url": "https://github.com/harshasamedha/BitConey" + }, + { + "name": "x", + "url": "https://x.com/Bitconey" + }, + { + "name": "whitepaper", + "url": "https://bitconeytoken.com/BitConey_Whitepaper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/profile.php?id=100089680055861" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/logo.png b/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/logo.png new file mode 100644 index 00000000..bd29d5b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/logo.png differ diff --git a/blockchains/smartchain/assets/0x21C1C22C09990c1521D1A27852BEb005f7d6601E/info.json b/blockchains/smartchain/assets/0x21C1C22C09990c1521D1A27852BEb005f7d6601E/info.json new file mode 100644 index 00000000..040e036f --- /dev/null +++ b/blockchains/smartchain/assets/0x21C1C22C09990c1521D1A27852BEb005f7d6601E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zbitcoin.space", + "website": "https://zbitcoin.space", + "description": "ZBITCOIN IS THE FIRST DECENTRALIZED IDO PLATFORM FOR THE BINANCE SMART CHAIN NETWORK.", + "explorer": "https://bscscan.com/token/0x21C1C22C09990c1521D1A27852BEb005f7d6601E", + "type": "BEP20", + "symbol": "ZBTC", + "decimals": 0, + "status": "active", + "id": "0x21C1C22C09990c1521D1A27852BEb005f7d6601E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x21C1C22C09990c1521D1A27852BEb005f7d6601E/logo.png b/blockchains/smartchain/assets/0x21C1C22C09990c1521D1A27852BEb005f7d6601E/logo.png new file mode 100644 index 00000000..e34bcbc7 Binary files /dev/null and b/blockchains/smartchain/assets/0x21C1C22C09990c1521D1A27852BEb005f7d6601E/logo.png differ diff --git a/blockchains/smartchain/assets/0x21EA8618b9168Eb8936c3e02F0809BBE901282ac/info.json b/blockchains/smartchain/assets/0x21EA8618b9168Eb8936c3e02F0809BBE901282ac/info.json new file mode 100644 index 00000000..5c98d37b --- /dev/null +++ b/blockchains/smartchain/assets/0x21EA8618b9168Eb8936c3e02F0809BBE901282ac/info.json @@ -0,0 +1,37 @@ +{ + "name": "SpacePort Coin", + "website": "https://spaceport.to/", + "description": "SpacePort is a revolutionary retro style arcade game where players can PLAY TO EARN in SPC. Game is completely free to play for all users!", + "explorer": "https://bscscan.com/token/0x21EA8618b9168Eb8936c3e02F0809BBE901282ac", + "type": "BEP20", + "symbol": "SPC", + "decimals": 9, + "status": "active", + "id": "0x21EA8618b9168Eb8936c3e02F0809BBE901282ac", + "links": [ + { + "name": "x", + "url": "https://x.com/SpacePortCoin" + }, + { + "name": "telegram", + "url": "https://t.me/OfficialSpacePort" + }, + { + "name": "discord", + "url": "https://discord.com/invite/spaceportarcade" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCjWSh3AoFJUSY7ntLk7ZZ9Q" + }, + { + "name": "facebook", + "url": "https://facebook.com/Playspaceport-102833875406207" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SpacePortCoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x21EA8618b9168Eb8936c3e02F0809BBE901282ac/logo.png b/blockchains/smartchain/assets/0x21EA8618b9168Eb8936c3e02F0809BBE901282ac/logo.png new file mode 100644 index 00000000..4e1a1539 Binary files /dev/null and b/blockchains/smartchain/assets/0x21EA8618b9168Eb8936c3e02F0809BBE901282ac/logo.png differ diff --git a/blockchains/smartchain/assets/0x21cAef8A43163Eea865baeE23b9C2E327696A3bf/info.json b/blockchains/smartchain/assets/0x21cAef8A43163Eea865baeE23b9C2E327696A3bf/info.json new file mode 100644 index 00000000..554eb0df --- /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 00000000..64773b21 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 00000000..41e40677 --- /dev/null +++ b/blockchains/smartchain/assets/0x22092c94a91d019Ad15536725598B0A6BE0a73C0/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized)", + "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 00000000..8adf5788 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 new file mode 100644 index 00000000..08a6ed85 --- /dev/null +++ b/blockchains/smartchain/assets/0x22168882276e5D5e1da694343b41DD7726eeb288/info.json @@ -0,0 +1,29 @@ +{ + "name": "WallStreetBets DApp", + "type": "BEP20", + "symbol": "WSB", + "decimals": 18, + "website": "https://wsbdapp.com", + "description": "WSBDApp gives users access to stocks, staking and crypto portfolios.", + "explorer": "https://bscscan.com/token/0x22168882276e5D5e1da694343b41DD7726eeb288", + "status": "active", + "id": "0x22168882276e5D5e1da694343b41DD7726eeb288", + "links": [ + { + "name": "x", + "url": "https://x.com/WSBDapp" + }, + { + "name": "medium", + "url": "https://wsbdapp.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/wallstreetbets" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCUvxcGE0XCWVPmflZiUXK-g" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x22168882276e5D5e1da694343b41DD7726eeb288/logo.png b/blockchains/smartchain/assets/0x22168882276e5D5e1da694343b41DD7726eeb288/logo.png new file mode 100644 index 00000000..e057865c Binary files /dev/null and b/blockchains/smartchain/assets/0x22168882276e5D5e1da694343b41DD7726eeb288/logo.png differ diff --git a/blockchains/smartchain/assets/0x221FD3FAFfd3cCab2369ffD6A24c7845674787C6/info.json b/blockchains/smartchain/assets/0x221FD3FAFfd3cCab2369ffD6A24c7845674787C6/info.json new file mode 100644 index 00000000..1d69b2f1 --- /dev/null +++ b/blockchains/smartchain/assets/0x221FD3FAFfd3cCab2369ffD6A24c7845674787C6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Galaxium Phoenix", + "type": "BEP20", + "symbol": "GMPX", + "decimals": 9, + "description": "Galaxium Phoenix is a community driven DeFi Token. Price is determined on Reflection and Liquidity Pool acquisition.", + "website": "https://www.galaxiumphoenix.com", + "explorer": "https://bscscan.com/token/0x221FD3FAFfd3cCab2369ffD6A24c7845674787C6", + "status": "active", + "id": "0x221FD3FAFfd3cCab2369ffD6A24c7845674787C6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x221FD3FAFfd3cCab2369ffD6A24c7845674787C6/logo.png b/blockchains/smartchain/assets/0x221FD3FAFfd3cCab2369ffD6A24c7845674787C6/logo.png new file mode 100644 index 00000000..fbafef82 Binary files /dev/null and b/blockchains/smartchain/assets/0x221FD3FAFfd3cCab2369ffD6A24c7845674787C6/logo.png differ diff --git a/blockchains/smartchain/assets/0x2222227E22102Fe3322098e4CBfE18cFebD57c95/info.json b/blockchains/smartchain/assets/0x2222227E22102Fe3322098e4CBfE18cFebD57c95/info.json new file mode 100644 index 00000000..74d5ce94 --- /dev/null +++ b/blockchains/smartchain/assets/0x2222227E22102Fe3322098e4CBfE18cFebD57c95/info.json @@ -0,0 +1,29 @@ +{ + "name": "Alien Worlds Trilium", + "symbol": "TLM", + "type": "BEP20", + "decimals": 4, + "description": "Trilium (TLM) is the native utility token of the Alien Worlds metaverse", + "website": "https://alienworlds.io", + "explorer": "https://bscscan.com/token/0x2222227E22102Fe3322098e4CBfE18cFebD57c95", + "status": "active", + "id": "0x2222227E22102Fe3322098e4CBfE18cFebD57c95", + "links": [ + { + "name": "telegram", + "url": "https://t.me/AlienWorldsOffical" + }, + { + "name": "x", + "url": "https://x.com/alienworlds" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alien-worlds/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/alien-worlds/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2222227E22102Fe3322098e4CBfE18cFebD57c95/logo.png b/blockchains/smartchain/assets/0x2222227E22102Fe3322098e4CBfE18cFebD57c95/logo.png new file mode 100644 index 00000000..ac988ef8 Binary files /dev/null and b/blockchains/smartchain/assets/0x2222227E22102Fe3322098e4CBfE18cFebD57c95/logo.png differ diff --git a/blockchains/smartchain/assets/0x2223bF1D7c19EF7C06DAB88938EC7B85952cCd89/info.json b/blockchains/smartchain/assets/0x2223bF1D7c19EF7C06DAB88938EC7B85952cCd89/info.json new file mode 100644 index 00000000..119e351a --- /dev/null +++ b/blockchains/smartchain/assets/0x2223bF1D7c19EF7C06DAB88938EC7B85952cCd89/info.json @@ -0,0 +1,68 @@ +{ + "name": "Kryxivia", + "type": "BEP20", + "symbol": "KXA", + "decimals": 18, + "website": "https://kryxivia.io/", + "description": "The most advanced 3D NFT Metaverse MMORPG On Blockchain | #BNBChain", + "explorer": "https://bscscan.com/token/0x2223bf1d7c19ef7c06dab88938ec7b85952ccd89", + "status": "active", + "id": "0x2223bF1D7c19EF7C06DAB88938EC7B85952cCd89", + "links": [ + { + "name": "x", + "url": "https://x.com/kryxivia" + }, + { + "name": "github", + "url": "https://github.com/Kryxivia" + }, + { + "name": "telegram", + "url": "https://t.me/kryxivia" + }, + { + "name": "telegram_news", + "url": "https://t.me/KryxiviaANN" + }, + { + "name": "blog", + "url": "https://kryxivia.io/en/devblog" + }, + { + "name": "docs", + "url": "https://docs.kryxivia.io/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/eH4fPm66qZ" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/kryxivia/" + }, + { + "name": "whitepaper", + "url": "https://kryxivia.io/kryxivia_paper.pdf" + }, + { + "name": "medium", + "url": "https://kryxivia.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCZV1N-ajeO16504yw4RFR7A" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/fr/currencies/kryxivia/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kryxivia-game" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2223bF1D7c19EF7C06DAB88938EC7B85952cCd89/logo.png b/blockchains/smartchain/assets/0x2223bF1D7c19EF7C06DAB88938EC7B85952cCd89/logo.png new file mode 100644 index 00000000..c6b2459c Binary files /dev/null and b/blockchains/smartchain/assets/0x2223bF1D7c19EF7C06DAB88938EC7B85952cCd89/logo.png differ diff --git a/blockchains/smartchain/assets/0x2235e79086dd23135119366da45851c741874e5B/info.json b/blockchains/smartchain/assets/0x2235e79086dd23135119366da45851c741874e5B/info.json new file mode 100644 index 00000000..867e1e97 --- /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 00000000..7054bba0 Binary files /dev/null and b/blockchains/smartchain/assets/0x2235e79086dd23135119366da45851c741874e5B/logo.png differ diff --git a/blockchains/smartchain/assets/0x22439bE3AeBC1590B05E3243780eD4156b629604/info.json b/blockchains/smartchain/assets/0x22439bE3AeBC1590B05E3243780eD4156b629604/info.json new file mode 100644 index 00000000..a72f3187 --- /dev/null +++ b/blockchains/smartchain/assets/0x22439bE3AeBC1590B05E3243780eD4156b629604/info.json @@ -0,0 +1,11 @@ +{ + "type": "BEP20", + "name": "DAFI Token", + "symbol": "DAFI", + "decimals": 18, + "website": "https://dafiprotocol.io", + "explorer": "https://bscscan.com/token/0x22439bE3AeBC1590B05E3243780eD4156b629604", + "status": "active", + "id": "0x22439bE3AeBC1590B05E3243780eD4156b629604", + "description": "DAFI reinvents network rewards for every decentralized economy" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x22439bE3AeBC1590B05E3243780eD4156b629604/logo.png b/blockchains/smartchain/assets/0x22439bE3AeBC1590B05E3243780eD4156b629604/logo.png new file mode 100644 index 00000000..92229f6b Binary files /dev/null and b/blockchains/smartchain/assets/0x22439bE3AeBC1590B05E3243780eD4156b629604/logo.png differ diff --git a/blockchains/smartchain/assets/0x228456C7a52fC184F17F75F9440F277d3aAd0FB7/info.json b/blockchains/smartchain/assets/0x228456C7a52fC184F17F75F9440F277d3aAd0FB7/info.json new file mode 100644 index 00000000..235140ec --- /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 00000000..2aeaecb0 Binary files /dev/null and b/blockchains/smartchain/assets/0x228456C7a52fC184F17F75F9440F277d3aAd0FB7/logo.png differ diff --git a/blockchains/smartchain/assets/0x2294b6eDD059BBD1608a109ba5F32B8c02B30038/info.json b/blockchains/smartchain/assets/0x2294b6eDD059BBD1608a109ba5F32B8c02B30038/info.json new file mode 100644 index 00000000..e9078315 --- /dev/null +++ b/blockchains/smartchain/assets/0x2294b6eDD059BBD1608a109ba5F32B8c02B30038/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoToMoon", + "website": "https://goto-moon.com", + "description": "GoToMoon autonomous yield and liquidity generation protocol on BSC", + "explorer": "https://bscscan.com/token/0x2294b6eDD059BBD1608a109ba5F32B8c02B30038", + "type": "BEP20", + "symbol": "GTM", + "decimals": 9, + "status": "active", + "id": "0x2294b6eDD059BBD1608a109ba5F32B8c02B30038" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2294b6eDD059BBD1608a109ba5F32B8c02B30038/logo.png b/blockchains/smartchain/assets/0x2294b6eDD059BBD1608a109ba5F32B8c02B30038/logo.png new file mode 100644 index 00000000..442baf4d Binary files /dev/null and b/blockchains/smartchain/assets/0x2294b6eDD059BBD1608a109ba5F32B8c02B30038/logo.png differ diff --git a/blockchains/smartchain/assets/0x22D6363949E295873D261b812A281D014367e8f9/info.json b/blockchains/smartchain/assets/0x22D6363949E295873D261b812A281D014367e8f9/info.json new file mode 100644 index 00000000..bf060758 --- /dev/null +++ b/blockchains/smartchain/assets/0x22D6363949E295873D261b812A281D014367e8f9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jindo Inu", + "type": "BEP20", + "symbol": "JIND", + "decimals": 18, + "website": "https://www.jindoinu.info/", + "description": "JIND is the token that will be used by JINDO SWAP and JINDO NFT in the future. JINDO SWAP is a SWAP built on the BSC chain, and if it provides liquidity, you can receive JINDO FEED tokens. In the future these will be used on the JINDO NFT to purchase and synthesize puppies, and JINDO FEED tokens to level up puppies.", + "explorer": "https://bscscan.com/token/0x22D6363949E295873D261b812A281D014367e8f9", + "status": "active", + "id": "0x22D6363949E295873D261b812A281D014367e8f9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x22D6363949E295873D261b812A281D014367e8f9/logo.png b/blockchains/smartchain/assets/0x22D6363949E295873D261b812A281D014367e8f9/logo.png new file mode 100644 index 00000000..59ace1ac Binary files /dev/null and b/blockchains/smartchain/assets/0x22D6363949E295873D261b812A281D014367e8f9/logo.png differ diff --git a/blockchains/smartchain/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json b/blockchains/smartchain/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/info.json new file mode 100644 index 00000000..6e4e19cb --- /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 00000000..30817f4f Binary files /dev/null and b/blockchains/smartchain/assets/0x22E1991e5f82736A2a990322a46aac0e95826c5B/logo.png differ diff --git a/blockchains/smartchain/assets/0x22E35e7C4DEE96298C8d90ccdBDCEdfc82e09395/info.json b/blockchains/smartchain/assets/0x22E35e7C4DEE96298C8d90ccdBDCEdfc82e09395/info.json new file mode 100644 index 00000000..f1717f0e --- /dev/null +++ b/blockchains/smartchain/assets/0x22E35e7C4DEE96298C8d90ccdBDCEdfc82e09395/info.json @@ -0,0 +1,11 @@ +{ + "name": "Oven", + "type": "BEP20", + "symbol": "Oven", + "decimals": 9, + "website": "https://oventoken.com/", + "description": "A charity coin based on the binance smart chain network with the goal of aiding measures against climate change and world hunger.", + "explorer": "https://bscscan.com/token/0x22E35e7C4DEE96298C8d90ccdBDCEdfc82e09395", + "status": "active", + "id": "0x22E35e7C4DEE96298C8d90ccdBDCEdfc82e09395" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x22E35e7C4DEE96298C8d90ccdBDCEdfc82e09395/logo.png b/blockchains/smartchain/assets/0x22E35e7C4DEE96298C8d90ccdBDCEdfc82e09395/logo.png new file mode 100644 index 00000000..684b3a15 Binary files /dev/null and b/blockchains/smartchain/assets/0x22E35e7C4DEE96298C8d90ccdBDCEdfc82e09395/logo.png differ diff --git a/blockchains/smartchain/assets/0x22dE16487955AE1f842fa0C0bFf6083a7fDEfeDd/info.json b/blockchains/smartchain/assets/0x22dE16487955AE1f842fa0C0bFf6083a7fDEfeDd/info.json new file mode 100644 index 00000000..a34af055 --- /dev/null +++ b/blockchains/smartchain/assets/0x22dE16487955AE1f842fa0C0bFf6083a7fDEfeDd/info.json @@ -0,0 +1,48 @@ +{ + "name": "Galaxy Heroes", + "type": "BEP20", + "symbol": "GHC", + "decimals": 18, + "website": "https://galaxyheroescoin.com", + "description": "Galaxy Heroes Coin is more than just a token. It will have a never seen before NFT platform and gaming app. Be a hero, a Galaxy Hero!", + "explorer": "https://bscscan.com/token/0x22dE16487955AE1f842fa0C0bFf6083a7fDEfeDd", + "status": "abandoned", + "id": "0x22dE16487955AE1f842fa0C0bFf6083a7fDEfeDd", + "links": [ + { + "name": "x", + "url": "https://x.com/galaxyheroesghc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/galaxy-heroes-coin-new/" + }, + { + "name": "github", + "url": "https://github.com/sumner770/GalaxyHeroesCoin" + }, + { + "name": "telegram", + "url": "https://t.me/galaxyheroescoin" + }, + { + "name": "discord", + "url": "https://discord.com/invite/NWjxH4CB9R" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/galaxyheroescoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/GalaxyHeroesCoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC0XEhzirmXN0AZQIhoR_Vzg" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2302e370E98890BF2eB547286Bf8F8bB318F8e7B/info.json b/blockchains/smartchain/assets/0x2302e370E98890BF2eB547286Bf8F8bB318F8e7B/info.json new file mode 100644 index 00000000..0a4de245 --- /dev/null +++ b/blockchains/smartchain/assets/0x2302e370E98890BF2eB547286Bf8F8bB318F8e7B/info.json @@ -0,0 +1,11 @@ +{ + "name": "BabyShiba", + "type": "BEP20", + "symbol": "BabyShiba", + "decimals": 9, + "website": "https://babyshiba.net/", + "description": "Buy and Hold BabyShiba and you will automatically get more in your wallet. No need to farm, stake or claim.", + "explorer": "https://bscscan.com/token/0x2302e370E98890BF2eB547286Bf8F8bB318F8e7B", + "status": "active", + "id": "0x2302e370E98890BF2eB547286Bf8F8bB318F8e7B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2302e370E98890BF2eB547286Bf8F8bB318F8e7B/logo.png b/blockchains/smartchain/assets/0x2302e370E98890BF2eB547286Bf8F8bB318F8e7B/logo.png new file mode 100644 index 00000000..d1c32a1e Binary files /dev/null and b/blockchains/smartchain/assets/0x2302e370E98890BF2eB547286Bf8F8bB318F8e7B/logo.png differ diff --git a/blockchains/smartchain/assets/0x23125108bc4c63E4677b2E253Fa498cCb4B3298b/info.json b/blockchains/smartchain/assets/0x23125108bc4c63E4677b2E253Fa498cCb4B3298b/info.json new file mode 100644 index 00000000..87c576ed --- /dev/null +++ b/blockchains/smartchain/assets/0x23125108bc4c63E4677b2E253Fa498cCb4B3298b/info.json @@ -0,0 +1,37 @@ +{ + "name": "Buff Doge Coin", + "website": "https://www.buffdogecoin.io/", + "description": "Buff Doge Coin is extremely hyper deflationary where each burn will double in its quantity to the previous burn.", + "explorer": "https://bscscan.com/token/0x23125108bc4c63E4677b2E253Fa498cCb4B3298b", + "symbol": "DOGECOIN", + "type": "BEP20", + "decimals": 9, + "status": "active", + "id": "0x23125108bc4c63E4677b2E253Fa498cCb4B3298b", + "links": [ + { + "name": "x", + "url": "https://x.com/buffdogecoin" + }, + { + "name": "telegram", + "url": "https://t.me/buffdogecoinofficial" + }, + { + "name": "whitepaper", + "url": "https://3a97c7c4-e2f3-4738-aec8-31b07194fd17.filesusr.com/ugd/cc57ea_25faa44d9e2d4749b57ca81ca934f8b7.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/watch?v=czoMaDABMRI" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/buff-doge-coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/buff-doge-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x23125108bc4c63E4677b2E253Fa498cCb4B3298b/logo.png b/blockchains/smartchain/assets/0x23125108bc4c63E4677b2E253Fa498cCb4B3298b/logo.png new file mode 100644 index 00000000..d3976a8f Binary files /dev/null and b/blockchains/smartchain/assets/0x23125108bc4c63E4677b2E253Fa498cCb4B3298b/logo.png differ diff --git a/blockchains/smartchain/assets/0x231cF6F78620e42Fe00D0c5C3088b427F355d01c/info.json b/blockchains/smartchain/assets/0x231cF6F78620e42Fe00D0c5C3088b427F355d01c/info.json new file mode 100644 index 00000000..8650799a --- /dev/null +++ b/blockchains/smartchain/assets/0x231cF6F78620e42Fe00D0c5C3088b427F355d01c/info.json @@ -0,0 +1,36 @@ +{ + "name": "MarketMove.ai", + "type": "BEP20", + "symbol": "MOVE", + "decimals": 9, + "website": "https://marketmove.ai", + "description": "AI-driven platform to lower the entry barrier on BSC, fueled by the MOVE token. Visit marketmove.ai to learn more.", + "explorer": "https://bscscan.com/token/0x231cf6f78620e42fe00d0c5c3088b427f355d01c", + "status": "active", + "id": "0x231cF6F78620e42Fe00D0c5C3088b427F355d01c", + "links": [ + { + "name": "x", + "url": "https://x.com/marketmoveAI" + }, + { + "name": "github", + "url": "https://github.com/MarketMoveAI" + }, + { + "name": "telegram", + "url": "https://t.me/MarketMoveAI" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/marketmove" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marketmove" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x231cF6F78620e42Fe00D0c5C3088b427F355d01c/logo.png b/blockchains/smartchain/assets/0x231cF6F78620e42Fe00D0c5C3088b427F355d01c/logo.png new file mode 100644 index 00000000..700d7003 Binary files /dev/null and b/blockchains/smartchain/assets/0x231cF6F78620e42Fe00D0c5C3088b427F355d01c/logo.png differ diff --git a/blockchains/smartchain/assets/0x23383e18dEedF460EbB918545C8b0588038B7998/info.json b/blockchains/smartchain/assets/0x23383e18dEedF460EbB918545C8b0588038B7998/info.json new file mode 100644 index 00000000..4cf156d9 --- /dev/null +++ b/blockchains/smartchain/assets/0x23383e18dEedF460EbB918545C8b0588038B7998/info.json @@ -0,0 +1,29 @@ +{ + "name": "Senspark", + "type": "BEP20", + "symbol": "SEN", + "decimals": 18, + "website": "https://senspark.com", + "description": "Senspark is a token used to build a platform to support the financial and economic system applied to GameFi and Metaverse products in the ecosystem of Senspark and its partners.", + "explorer": "https://bscscan.com/token/0x23383e18dEedF460EbB918545C8b0588038B7998", + "status": "active", + "id": "0x23383e18dEedF460EbB918545C8b0588038B7998", + "links": [ + { + "name": "x", + "url": "https://x.com/SensparkMeta" + }, + { + "name": "telegram", + "url": "https://t.me/senspark_channel" + }, + { + "name": "facebook", + "url": "https://facebook.com/TeamSenspark" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x23383e18dEedF460EbB918545C8b0588038B7998/logo.png b/blockchains/smartchain/assets/0x23383e18dEedF460EbB918545C8b0588038B7998/logo.png new file mode 100644 index 00000000..e5b7e0fa Binary files /dev/null and b/blockchains/smartchain/assets/0x23383e18dEedF460EbB918545C8b0588038B7998/logo.png differ diff --git a/blockchains/smartchain/assets/0x23396cF899Ca06c4472205fC903bDB4de249D6fC/info.json b/blockchains/smartchain/assets/0x23396cF899Ca06c4472205fC903bDB4de249D6fC/info.json new file mode 100644 index 00000000..398dd469 --- /dev/null +++ b/blockchains/smartchain/assets/0x23396cF899Ca06c4472205fC903bDB4de249D6fC/info.json @@ -0,0 +1,32 @@ +{ + "name": "Wrapped UST Token", + "website": "https://terra.money", + "description": "TerraUSD is the first decentralized stablecoin that is scalable, yield bearing and interchain.", + "explorer": "https://bscscan.com/token/0x23396cF899Ca06c4472205fC903bDB4de249D6fC", + "type": "BEP20", + "symbol": "UST", + "decimals": 18, + "status": "active", + "id": "0x23396cF899Ca06c4472205fC903bDB4de249D6fC", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/TerraMoney" + }, + { + "name": "telegram", + "url": "https://t.me/terra_announcements" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bYfyhUT" + }, + { + "name": "medium", + "url": "https://medium.com/terra-money" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x23396cF899Ca06c4472205fC903bDB4de249D6fC/logo.png b/blockchains/smartchain/assets/0x23396cF899Ca06c4472205fC903bDB4de249D6fC/logo.png new file mode 100644 index 00000000..94a64f49 Binary files /dev/null and b/blockchains/smartchain/assets/0x23396cF899Ca06c4472205fC903bDB4de249D6fC/logo.png differ diff --git a/blockchains/smartchain/assets/0x233d91A0713155003fc4DcE0AFa871b508B3B715/info.json b/blockchains/smartchain/assets/0x233d91A0713155003fc4DcE0AFa871b508B3B715/info.json new file mode 100644 index 00000000..13e647d7 --- /dev/null +++ b/blockchains/smartchain/assets/0x233d91A0713155003fc4DcE0AFa871b508B3B715/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ditto", + "website": "https://ditto.money", + "description": "The dominant elastic supply token on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x233d91a0713155003fc4dce0afa871b508b3b715", + "type": "BEP20", + "symbol": "DITTO", + "decimals": 9, + "status": "active", + "id": "0x233d91A0713155003fc4DcE0AFa871b508B3B715", + "links": [ + { + "name": "github", + "url": "https://github.com/ditto-money/" + }, + { + "name": "x", + "url": "https://x.com/dittomoney_" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x233d91A0713155003fc4DcE0AFa871b508B3B715/logo.png b/blockchains/smartchain/assets/0x233d91A0713155003fc4DcE0AFa871b508B3B715/logo.png new file mode 100644 index 00000000..e287533f Binary files /dev/null and b/blockchains/smartchain/assets/0x233d91A0713155003fc4DcE0AFa871b508B3B715/logo.png differ diff --git a/blockchains/smartchain/assets/0x23481F4d3ac4642d2f45d014a514b45B0338b927/info.json b/blockchains/smartchain/assets/0x23481F4d3ac4642d2f45d014a514b45B0338b927/info.json new file mode 100644 index 00000000..3dba363e --- /dev/null +++ b/blockchains/smartchain/assets/0x23481F4d3ac4642d2f45d014a514b45B0338b927/info.json @@ -0,0 +1,25 @@ +{ + "name": "Ulink Finance", + "website": "https://ulink.finance/", + "description": "Ulink Finance smart contracts continuously route your funds to a portfolio of the latest-and-greatest yield farming strategies.", + "explorer": "https://bscscan.com/token/0x23481f4d3ac4642d2f45d014a514b45b0338b927", + "type": "BEP20", + "symbol": "ULK", + "decimals": 0, + "status": "active", + "id": "0x23481F4d3ac4642d2f45d014a514b45B0338b927", + "links": [ + { + "name": "x", + "url": "https://x.com/UlinkFinance" + }, + { + "name": "telegram", + "url": "https://t.me/ulink_finance" + }, + { + "name": "telegram_news", + "url": "https://t.me/ulinkfinanceann" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x23481F4d3ac4642d2f45d014a514b45B0338b927/logo.png b/blockchains/smartchain/assets/0x23481F4d3ac4642d2f45d014a514b45B0338b927/logo.png new file mode 100644 index 00000000..e86e8bf6 Binary files /dev/null and b/blockchains/smartchain/assets/0x23481F4d3ac4642d2f45d014a514b45B0338b927/logo.png differ diff --git a/blockchains/smartchain/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json b/blockchains/smartchain/assets/0x2363FD1235C1B6d3A5088DdF8dF3A0b3A30C5293/info.json new file mode 100644 index 00000000..e0ae8da6 --- /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 00000000..11bbde89 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 00000000..43945d7b --- /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 00000000..85a92734 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 00000000..360b84e9 --- /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 00000000..92ee4f49 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 00000000..9d3ef8a6 --- /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 00000000..9fc1e3b9 Binary files /dev/null and b/blockchains/smartchain/assets/0x238950013FA29A3575EB7a3D99C00304047a77b5/logo.png differ diff --git a/blockchains/smartchain/assets/0x238CC5438da55F1679E8509bddFaF267f2fAAF30/info.json b/blockchains/smartchain/assets/0x238CC5438da55F1679E8509bddFaF267f2fAAF30/info.json new file mode 100644 index 00000000..dd99cd84 --- /dev/null +++ b/blockchains/smartchain/assets/0x238CC5438da55F1679E8509bddFaF267f2fAAF30/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jinchuriki", + "type": "BEP20", + "symbol": "BIJU", + "decimals": 18, + "website": "https://jinchuriki.tech", + "description": "More Than A MEME An Ecosystem", + "explorer": "https://bscscan.com/token/0x238CC5438da55F1679E8509bddFaF267f2fAAF30", + "status": "active", + "id": "0x238CC5438da55F1679E8509bddFaF267f2fAAF30" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x238CC5438da55F1679E8509bddFaF267f2fAAF30/logo.png b/blockchains/smartchain/assets/0x238CC5438da55F1679E8509bddFaF267f2fAAF30/logo.png new file mode 100644 index 00000000..5225e28b Binary files /dev/null and b/blockchains/smartchain/assets/0x238CC5438da55F1679E8509bddFaF267f2fAAF30/logo.png differ diff --git a/blockchains/smartchain/assets/0x238D02eE3F80FBf5E381F049616025c186889B68/info.json b/blockchains/smartchain/assets/0x238D02eE3F80FBf5E381F049616025c186889B68/info.json new file mode 100644 index 00000000..a88c2723 --- /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 00000000..bfcada89 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 00000000..c2c06d7d --- /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/0x23C28E9346C82228FB2b62b20b6fe5d75989F5b2/info.json b/blockchains/smartchain/assets/0x23C28E9346C82228FB2b62b20b6fe5d75989F5b2/info.json new file mode 100644 index 00000000..dddfce7d --- /dev/null +++ b/blockchains/smartchain/assets/0x23C28E9346C82228FB2b62b20b6fe5d75989F5b2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Covid Token", + "type": "BEP20", + "symbol": "COVIDTOKEN", + "decimals": 9, + "website": "https://covidcoin.finance/", + "description": "COVID TOKEN is a token which provides help to African people about Coronavirus.", + "explorer": "https://bscscan.com/token/0x23C28E9346C82228FB2b62b20b6fe5d75989F5b2", + "status": "active", + "id": "0x23C28E9346C82228FB2b62b20b6fe5d75989F5b2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x23C28E9346C82228FB2b62b20b6fe5d75989F5b2/logo.png b/blockchains/smartchain/assets/0x23C28E9346C82228FB2b62b20b6fe5d75989F5b2/logo.png new file mode 100644 index 00000000..0e964674 Binary files /dev/null and b/blockchains/smartchain/assets/0x23C28E9346C82228FB2b62b20b6fe5d75989F5b2/logo.png differ diff --git a/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/info.json b/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/info.json new file mode 100644 index 00000000..a804eeb5 --- /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 00000000..c8e37a57 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 00000000..66f094ca --- /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 00000000..d0843afb Binary files /dev/null and b/blockchains/smartchain/assets/0x23D3F4EaaA515403C6765bb623F287a8Cca28F2b/logo.png differ diff --git a/blockchains/smartchain/assets/0x23EC58e45ac5313BCB6681F4f7827B8a8453AC45/info.json b/blockchains/smartchain/assets/0x23EC58e45ac5313BCB6681F4f7827B8a8453AC45/info.json new file mode 100644 index 00000000..772161cf --- /dev/null +++ b/blockchains/smartchain/assets/0x23EC58e45ac5313BCB6681F4f7827B8a8453AC45/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zenfuse", + "website": "http://zenfuse.io", + "description": "The ultimate solution for cryptocurrency trading with built-in connectivity to major exchanges, a next-gen toolset, analytics, portfolio management, news aggregation, set within an ecosystem extensible by developers.", + "explorer": "https://bscscan.com/token/0x23EC58e45ac5313BCB6681F4f7827B8a8453AC45", + "type": "BEP20", + "symbol": "ZEFU", + "decimals": 18, + "status": "active", + "id": "0x23EC58e45ac5313BCB6681F4f7827B8a8453AC45" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x23EC58e45ac5313BCB6681F4f7827B8a8453AC45/logo.png b/blockchains/smartchain/assets/0x23EC58e45ac5313BCB6681F4f7827B8a8453AC45/logo.png new file mode 100644 index 00000000..c1bc180a Binary files /dev/null and b/blockchains/smartchain/assets/0x23EC58e45ac5313BCB6681F4f7827B8a8453AC45/logo.png differ diff --git a/blockchains/smartchain/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json b/blockchains/smartchain/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json new file mode 100644 index 00000000..4f0fbb2d --- /dev/null +++ b/blockchains/smartchain/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json @@ -0,0 +1,47 @@ +{ + "name": "EverRise NFT Stakes", + "type": "BEP20", + "symbol": "nftRISE", + "decimals": 0, + "website": "https://www.everrise.com/", + "description": "EverRise Staking NFTs are containers of Vote Escrowed (ve)EverRise weighted governance tokens. veRISE generates rewards from the auto-buyback with a market driven yield curve, based on the transaction volume of EverRise trades and veEverRise sales.", + "explorer": "https://bscscan.com/token/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", + "status": "active", + "id": "0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", + "links": [ + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png b/blockchains/smartchain/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png new file mode 100644 index 00000000..4272c382 Binary files /dev/null and b/blockchains/smartchain/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png differ diff --git a/blockchains/smartchain/assets/0x23e39D94807a8bb7e3f8294b4911D04EE26DcE39/info.json b/blockchains/smartchain/assets/0x23e39D94807a8bb7e3f8294b4911D04EE26DcE39/info.json new file mode 100644 index 00000000..4efff9e4 --- /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 00000000..d2742f94 Binary files /dev/null and b/blockchains/smartchain/assets/0x23e39D94807a8bb7e3f8294b4911D04EE26DcE39/logo.png differ diff --git a/blockchains/smartchain/assets/0x2403269d736C7a808C864bAD8c0848c2dE3E348c/info.json b/blockchains/smartchain/assets/0x2403269d736C7a808C864bAD8c0848c2dE3E348c/info.json new file mode 100644 index 00000000..52917292 --- /dev/null +++ b/blockchains/smartchain/assets/0x2403269d736C7a808C864bAD8c0848c2dE3E348c/info.json @@ -0,0 +1,11 @@ +{ + "name": "AIRBNB", + "website": "https://www.airbnbtoken.info", + "description": "AirBnb is a frictionless, community driven contract that allows you to hold tokens of increasing value due to deflationary structure.", + "explorer": "https://bscscan.com/token/0x2403269d736C7a808C864bAD8c0848c2dE3E348c", + "type": "BEP20", + "symbol": "AIRBNB", + "decimals": 9, + "status": "active", + "id": "0x2403269d736C7a808C864bAD8c0848c2dE3E348c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2403269d736C7a808C864bAD8c0848c2dE3E348c/logo.png b/blockchains/smartchain/assets/0x2403269d736C7a808C864bAD8c0848c2dE3E348c/logo.png new file mode 100644 index 00000000..7e82d351 Binary files /dev/null and b/blockchains/smartchain/assets/0x2403269d736C7a808C864bAD8c0848c2dE3E348c/logo.png differ diff --git a/blockchains/smartchain/assets/0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86/info.json b/blockchains/smartchain/assets/0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86/info.json new file mode 100644 index 00000000..38e6da51 --- /dev/null +++ b/blockchains/smartchain/assets/0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86/info.json @@ -0,0 +1,28 @@ +{ + "name": "Pepe AI", + "symbol": "PEPEAI", + "type": "BEP20", + "decimals": 18, + "description": "PepeAI is an innovative cryptocurrency token that has captured the attention of the crypto community, building on the recent hype around the famous Pepe the Frog meme.", + "website": "https://pepeai.io", + "explorer": "https://bscscan.com/token/0x24086eab82dbdaa4771d0a5d66b0d810458b0e86", + "status": "active", + "id": "0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86", + "links": [ + { + "name": "x", + "url": "https://x.com/pepeaicoin" + }, + { + "name": "telegram", + "url": "https://t.me/pepeaicoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepe-ai/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86/logo.png b/blockchains/smartchain/assets/0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86/logo.png new file mode 100644 index 00000000..69118232 Binary files /dev/null and b/blockchains/smartchain/assets/0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86/logo.png differ diff --git a/blockchains/smartchain/assets/0x240Eb4859B4537D250cf784cc758c404dA5Fe4bd/info.json b/blockchains/smartchain/assets/0x240Eb4859B4537D250cf784cc758c404dA5Fe4bd/info.json new file mode 100644 index 00000000..1d613ad9 --- /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 00000000..344948ad 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 00000000..16d0e569 --- /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 00000000..c998cc68 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 00000000..8965a344 --- /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/0x244f8596E985B8EBd9eA44A9356B22d3D20b101c/info.json b/blockchains/smartchain/assets/0x244f8596E985B8EBd9eA44A9356B22d3D20b101c/info.json new file mode 100644 index 00000000..02a61d8a --- /dev/null +++ b/blockchains/smartchain/assets/0x244f8596E985B8EBd9eA44A9356B22d3D20b101c/info.json @@ -0,0 +1,11 @@ +{ + "name": "DOGE-1", + "website": "https://doge-1.space", + "description": "DOGE-1 is a BSC Meme Token with future utility development to bring light in a dark space.", + "explorer": "https://bscscan.com/token/0x244f8596E985B8EBd9eA44A9356B22d3D20b101c", + "type": "BEP20", + "symbol": "DOGE1", + "decimals": 9, + "status": "active", + "id": "0x244f8596E985B8EBd9eA44A9356B22d3D20b101c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x244f8596E985B8EBd9eA44A9356B22d3D20b101c/logo.png b/blockchains/smartchain/assets/0x244f8596E985B8EBd9eA44A9356B22d3D20b101c/logo.png new file mode 100644 index 00000000..32704d69 Binary files /dev/null and b/blockchains/smartchain/assets/0x244f8596E985B8EBd9eA44A9356B22d3D20b101c/logo.png differ diff --git a/blockchains/smartchain/assets/0x2456BBAD80BfAD346AecEa45fA38C81a6963132D/info.json b/blockchains/smartchain/assets/0x2456BBAD80BfAD346AecEa45fA38C81a6963132D/info.json new file mode 100644 index 00000000..d5d689c8 --- /dev/null +++ b/blockchains/smartchain/assets/0x2456BBAD80BfAD346AecEa45fA38C81a6963132D/info.json @@ -0,0 +1,52 @@ +{ + "name": "Meta Ruffy", + "type": "BEP20", + "symbol": "MR", + "decimals": 18, + "website": "https://metaruffy.io/", + "description": "Meta Ruffy is an open world in the Metaverse, besides the already playable Metaverse it also offers tons of other Utilities like Mystery Staking, NFTs and many more.!", + "explorer": "https://bscscan.com/token/0x2456BBAD80BfAD346AecEa45fA38C81a6963132D", + "status": "active", + "id": "0x2456BBAD80BfAD346AecEa45fA38C81a6963132D", + "links": [ + { + "name": "x", + "url": "https://x.com/meta_ruffy" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/meta-ruffy" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-ruffy/" + }, + { + "name": "telegram", + "url": "https://t.me/meta_ruffy" + }, + { + "name": "facebook", + "url": "https://facebook.com/MetaRuffy-107043791886658" + }, + { + "name": "discord", + "url": "https://discord.com/JDcXJNfMum" + }, + { + "name": "whitepaper", + "url": "https://metaruffy.io/wp-content/uploads/2022/02/Whitepaper_02.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/meta_ruffy" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x2456BBAD80BfAD346AecEa45fA38C81a6963132D#code" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2456BBAD80BfAD346AecEa45fA38C81a6963132D/logo.png b/blockchains/smartchain/assets/0x2456BBAD80BfAD346AecEa45fA38C81a6963132D/logo.png new file mode 100644 index 00000000..9e1ece7b Binary files /dev/null and b/blockchains/smartchain/assets/0x2456BBAD80BfAD346AecEa45fA38C81a6963132D/logo.png differ diff --git a/blockchains/smartchain/assets/0x248C1e2b50C72F04704c71BcC953799351aB30a8/info.json b/blockchains/smartchain/assets/0x248C1e2b50C72F04704c71BcC953799351aB30a8/info.json new file mode 100644 index 00000000..455a8608 --- /dev/null +++ b/blockchains/smartchain/assets/0x248C1e2b50C72F04704c71BcC953799351aB30a8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pornstar", + "type": "BEP20", + "symbol": "STAR", + "decimals": 9, + "website": "https://pornstar.finance", + "description": "Pornstar is a decentralized ecosystem to efficient farming and staking. Pornstar supports four fields. Presale will be whitelist only. This will eliminate bot's and pre-launch dumps. redistribution : 4%, lp : 4%, burn 2%", + "explorer": "https://bscscan.com/token/0x248C1e2b50C72F04704c71BcC953799351aB30a8", + "status": "active", + "id": "0x248C1e2b50C72F04704c71BcC953799351aB30a8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x248C1e2b50C72F04704c71BcC953799351aB30a8/logo.png b/blockchains/smartchain/assets/0x248C1e2b50C72F04704c71BcC953799351aB30a8/logo.png new file mode 100644 index 00000000..cb80efae Binary files /dev/null and b/blockchains/smartchain/assets/0x248C1e2b50C72F04704c71BcC953799351aB30a8/logo.png differ diff --git a/blockchains/smartchain/assets/0x248C45AF3b2f73Bc40FA159f2a90ce9caD7A77BA/info.json b/blockchains/smartchain/assets/0x248C45AF3b2f73Bc40FA159f2a90ce9caD7A77BA/info.json new file mode 100644 index 00000000..1d26558f --- /dev/null +++ b/blockchains/smartchain/assets/0x248C45AF3b2f73Bc40FA159f2a90ce9caD7A77BA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bogecoin", + "type": "BEP20", + "symbol": "BOGE", + "decimals": 9, + "website": "https://bogecoin.org", + "description": "BOGE is a homage to the original Dogecoin but built on Binance Smart Chain with added benefits and powers the BSCgems.com launch pad voting application for new BSC projects. The coin is deflationary, autostaking, and secure. The original liquidity token has been burned and the contract fully audited. Earn more BOGE by simply holding tokens in your wallet.", + "explorer": "https://bscscan.com/token/0x248C45AF3b2f73Bc40FA159f2a90ce9caD7A77BA", + "status": "active", + "id": "0x248C45AF3b2f73Bc40FA159f2a90ce9caD7A77BA" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x248C45AF3b2f73Bc40FA159f2a90ce9caD7A77BA/logo.png b/blockchains/smartchain/assets/0x248C45AF3b2f73Bc40FA159f2a90ce9caD7A77BA/logo.png new file mode 100644 index 00000000..3c528a3f Binary files /dev/null and b/blockchains/smartchain/assets/0x248C45AF3b2f73Bc40FA159f2a90ce9caD7A77BA/logo.png differ diff --git a/blockchains/smartchain/assets/0x248b4527D1a8Ef40427745126D0DECfeD3018888/info.json b/blockchains/smartchain/assets/0x248b4527D1a8Ef40427745126D0DECfeD3018888/info.json new file mode 100644 index 00000000..9544cff1 --- /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/0x24905b248dCEEb17b221A48eFA0d0388b3b38Fe4/info.json b/blockchains/smartchain/assets/0x24905b248dCEEb17b221A48eFA0d0388b3b38Fe4/info.json new file mode 100644 index 00000000..6c9aebd0 --- /dev/null +++ b/blockchains/smartchain/assets/0x24905b248dCEEb17b221A48eFA0d0388b3b38Fe4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Louvre Finance", + "type": "BEP20", + "symbol": "LOUVRE", + "decimals": 9, + "website": "https://louvrefinance.com", + "description": "Louvre Finance is the first deflationary DeFi token to disrupt the NFT industry. We'll build a full NFT ecosystem with a marketplace and an exchange exclusive for NFT related projects. The $LOUVRE token will be the currency to be used in our closed ecosystem and will also receive rewards for supporting the platform - for example, ecosystem related airdrops and, in the future, fees from the use of the platform.", + "explorer": "https://bscscan.com/token/0x24905b248dCEEb17b221A48eFA0d0388b3b38Fe4", + "status": "active", + "id": "0x24905b248dCEEb17b221A48eFA0d0388b3b38Fe4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x24905b248dCEEb17b221A48eFA0d0388b3b38Fe4/logo.png b/blockchains/smartchain/assets/0x24905b248dCEEb17b221A48eFA0d0388b3b38Fe4/logo.png new file mode 100644 index 00000000..e770d175 Binary files /dev/null and b/blockchains/smartchain/assets/0x24905b248dCEEb17b221A48eFA0d0388b3b38Fe4/logo.png differ diff --git a/blockchains/smartchain/assets/0x2494b603319d4D9F9715c9f4496d9E0364B59d93/info.json b/blockchains/smartchain/assets/0x2494b603319d4D9F9715c9f4496d9E0364B59d93/info.json new file mode 100644 index 00000000..ebbc9588 --- /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 00000000..26fbf04b Binary files /dev/null and b/blockchains/smartchain/assets/0x2494b603319d4D9F9715c9f4496d9E0364B59d93/logo.png differ diff --git a/blockchains/smartchain/assets/0x24C13e5Fef0157ee5BF61cD75363044927bab8cd/info.json b/blockchains/smartchain/assets/0x24C13e5Fef0157ee5BF61cD75363044927bab8cd/info.json new file mode 100644 index 00000000..28361156 --- /dev/null +++ b/blockchains/smartchain/assets/0x24C13e5Fef0157ee5BF61cD75363044927bab8cd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Panther Coin", + "type": "BEP20", + "symbol": "PTC", + "decimals": 0, + "website": "https://panthercoin.net/", + "description": "Panther Coin is based on proof-of-stake consensus and built on Binance Smart Chain. Panther Coin Smart contract is based on BEP-20 algorithm.", + "explorer": "https://bscscan.com/token/0x24C13e5Fef0157ee5BF61cD75363044927bab8cd", + "status": "active", + "id": "0x24C13e5Fef0157ee5BF61cD75363044927bab8cd" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x24C13e5Fef0157ee5BF61cD75363044927bab8cd/logo.png b/blockchains/smartchain/assets/0x24C13e5Fef0157ee5BF61cD75363044927bab8cd/logo.png new file mode 100644 index 00000000..2e981292 Binary files /dev/null and b/blockchains/smartchain/assets/0x24C13e5Fef0157ee5BF61cD75363044927bab8cd/logo.png differ diff --git a/blockchains/smartchain/assets/0x24D787e9B88Cb62D74e961C1C1d78E4ee47618E5/info.json b/blockchains/smartchain/assets/0x24D787e9B88Cb62D74e961C1C1d78E4ee47618E5/info.json new file mode 100644 index 00000000..632f0bf0 --- /dev/null +++ b/blockchains/smartchain/assets/0x24D787e9B88Cb62D74e961C1C1d78E4ee47618E5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Binapet", + "website": "https://binapet.com", + "description": "Binapet ecosystem is the perfect combination of NFT gaming and DeFi that enables users to have fun and earn profit simultaneously.", + "explorer": "https://bscscan.com/token/0x24D787e9B88Cb62D74e961C1C1d78E4ee47618E5", + "type": "BEP20", + "symbol": "BPET", + "decimals": 18, + "status": "active", + "id": "0x24D787e9B88Cb62D74e961C1C1d78E4ee47618E5", + "links": [ + { + "name": "x", + "url": "https://x.com/binapet" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/binapet" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x24D787e9B88Cb62D74e961C1C1d78E4ee47618E5/logo.png b/blockchains/smartchain/assets/0x24D787e9B88Cb62D74e961C1C1d78E4ee47618E5/logo.png new file mode 100644 index 00000000..5f9f40c2 Binary files /dev/null and b/blockchains/smartchain/assets/0x24D787e9B88Cb62D74e961C1C1d78E4ee47618E5/logo.png differ diff --git a/blockchains/smartchain/assets/0x24F5471183eA549987f245D6ce236B6108869C92/info.json b/blockchains/smartchain/assets/0x24F5471183eA549987f245D6ce236B6108869C92/info.json new file mode 100644 index 00000000..615b59cb --- /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 00000000..034a4b9d Binary files /dev/null and b/blockchains/smartchain/assets/0x24F5471183eA549987f245D6ce236B6108869C92/logo.png differ diff --git a/blockchains/smartchain/assets/0x24c5AaA98eD11594a4Ebb69E065790C716C39E10/info.json b/blockchains/smartchain/assets/0x24c5AaA98eD11594a4Ebb69E065790C716C39E10/info.json new file mode 100644 index 00000000..e683e6c5 --- /dev/null +++ b/blockchains/smartchain/assets/0x24c5AaA98eD11594a4Ebb69E065790C716C39E10/info.json @@ -0,0 +1,11 @@ +{ + "name": "GAPToken", + "website": "https://gapt.io/", + "description": "GAPT is a deflationary DeFi token with a passive yield mechanism. The smart contract takes a fee from every transaction of 0.5% which is dedicated to charity decided by the community", + "explorer": "https://bscscan.com/token/0x24c5aaa98ed11594a4ebb69e065790c716c39e10", + "type": "BEP20", + "symbol": "GAPT", + "decimals": 9, + "status": "active", + "id": "0x24c5AaA98eD11594a4Ebb69E065790C716C39E10" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x24c5AaA98eD11594a4Ebb69E065790C716C39E10/logo.png b/blockchains/smartchain/assets/0x24c5AaA98eD11594a4Ebb69E065790C716C39E10/logo.png new file mode 100644 index 00000000..4f4d3f3f Binary files /dev/null and b/blockchains/smartchain/assets/0x24c5AaA98eD11594a4Ebb69E065790C716C39E10/logo.png differ diff --git a/blockchains/smartchain/assets/0x24cE3d571fBcFD9D81dc0e1a560504636a4D046d/info.json b/blockchains/smartchain/assets/0x24cE3d571fBcFD9D81dc0e1a560504636a4D046d/info.json new file mode 100644 index 00000000..fea7f3db --- /dev/null +++ b/blockchains/smartchain/assets/0x24cE3d571fBcFD9D81dc0e1a560504636a4D046d/info.json @@ -0,0 +1,45 @@ +{ + "name": "MetaPets", + "type": "BEP20", + "symbol": "MetaPets", + "decimals": 9, + "website": "https://metapetscoin.com", + "description": "Own your pets in the metaverse", + "explorer": "https://bscscan.com/token/0x24cE3d571fBcFD9D81dc0e1a560504636a4D046d", + "status": "active", + "id": "0x24cE3d571fBcFD9D81dc0e1a560504636a4D046d", + "links": [ + { + "name": "x", + "url": "https://x.com/metapetscoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metapets/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/metapets" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/Metapets/" + }, + { + "name": "telegram", + "url": "https://t.me/metapets" + }, + { + "name": "whitepaper", + "url": "https://metapetscoin.gitbook.io/metapets/" + }, + { + "name": "discord", + "url": "https://discord.com/NQKR42dVmm" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metapets/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x24cE3d571fBcFD9D81dc0e1a560504636a4D046d/logo.png b/blockchains/smartchain/assets/0x24cE3d571fBcFD9D81dc0e1a560504636a4D046d/logo.png new file mode 100644 index 00000000..656f6523 Binary files /dev/null and b/blockchains/smartchain/assets/0x24cE3d571fBcFD9D81dc0e1a560504636a4D046d/logo.png differ diff --git a/blockchains/smartchain/assets/0x250342dD21cAE01583e8F3eDe4eB64753f665084/info.json b/blockchains/smartchain/assets/0x250342dD21cAE01583e8F3eDe4eB64753f665084/info.json new file mode 100644 index 00000000..5cd08049 --- /dev/null +++ b/blockchains/smartchain/assets/0x250342dD21cAE01583e8F3eDe4eB64753f665084/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sting Defi", + "type": "BEP20", + "symbol": "SDFI", + "decimals": 8, + "website": "https://stingdefi.yfiigold.finance", + "description": "We are providing Big Utility that is never implemented before. Every Transaction will cause 0.1 % supply burn and 0.2% Airdrop distribution to all holders.", + "explorer": "https://bscscan.com/token/0x250342dD21cAE01583e8F3eDe4eB64753f665084", + "status": "active", + "id": "0x250342dD21cAE01583e8F3eDe4eB64753f665084" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x250342dD21cAE01583e8F3eDe4eB64753f665084/logo.png b/blockchains/smartchain/assets/0x250342dD21cAE01583e8F3eDe4eB64753f665084/logo.png new file mode 100644 index 00000000..88c4ed73 Binary files /dev/null and b/blockchains/smartchain/assets/0x250342dD21cAE01583e8F3eDe4eB64753f665084/logo.png differ diff --git a/blockchains/smartchain/assets/0x250632378E573c6Be1AC2f97Fcdf00515d0Aa91B/info.json b/blockchains/smartchain/assets/0x250632378E573c6Be1AC2f97Fcdf00515d0Aa91B/info.json new file mode 100644 index 00000000..26c785ee --- /dev/null +++ b/blockchains/smartchain/assets/0x250632378E573c6Be1AC2f97Fcdf00515d0Aa91B/info.json @@ -0,0 +1,12 @@ +{ + "name": "Binance Beacon ETH", + "website": "https://binance.com/en/eth2", + "description": "BETH is a tokenized asset representing staked ETH at Binance Staking on a 1:1 basis.", + "explorer": "https://bscscan.com/token/0x250632378e573c6be1ac2f97fcdf00515d0aa91b", + "research": "", + "type": "BEP20", + "symbol": "BETH", + "decimals": 18, + "status": "active", + "id": "0x250632378E573c6Be1AC2f97Fcdf00515d0Aa91B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x250632378E573c6Be1AC2f97Fcdf00515d0Aa91B/logo.png b/blockchains/smartchain/assets/0x250632378E573c6Be1AC2f97Fcdf00515d0Aa91B/logo.png new file mode 100644 index 00000000..e9bdb789 Binary files /dev/null and b/blockchains/smartchain/assets/0x250632378E573c6Be1AC2f97Fcdf00515d0Aa91B/logo.png differ diff --git a/blockchains/smartchain/assets/0x252817c5dd2e90Bca477D5975724418CBca49B60/info.json b/blockchains/smartchain/assets/0x252817c5dd2e90Bca477D5975724418CBca49B60/info.json new file mode 100644 index 00000000..5b6ff3b8 --- /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 00000000..a6afcc3d 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 00000000..1030dbc2 --- /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 00000000..6b4b0114 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 new file mode 100644 index 00000000..e0b44fce --- /dev/null +++ b/blockchains/smartchain/assets/0x25574Cad6F03FFacD9D08b288e8D5d88997fb2f3/info.json @@ -0,0 +1,25 @@ +{ + "name": "RedFEG", + "type": "BEP20", + "symbol": "REDFEG 🦍", + "decimals": 9, + "website": "https://feg.red", + "description": "REDFEG is BEP-20 token that is determined to feed every community member.", + "explorer": "https://bscscan.com/token/0x25574cad6f03ffacd9d08b288e8d5d88997fb2f3", + "status": "active", + "id": "0x25574Cad6F03FFacD9D08b288e8D5d88997fb2f3", + "links": [ + { + "name": "telegram", + "url": "https://t.me/RedFEG" + }, + { + "name": "x", + "url": "https://x.com/Red_FEG" + }, + { + "name": "github", + "url": "https://github.com/RedTeam-Blockchain" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x25574Cad6F03FFacD9D08b288e8D5d88997fb2f3/logo.png b/blockchains/smartchain/assets/0x25574Cad6F03FFacD9D08b288e8D5d88997fb2f3/logo.png new file mode 100644 index 00000000..0b2c96b2 Binary files /dev/null and b/blockchains/smartchain/assets/0x25574Cad6F03FFacD9D08b288e8D5d88997fb2f3/logo.png differ diff --git a/blockchains/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json b/blockchains/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json new file mode 100644 index 00000000..3b7a5e22 --- /dev/null +++ b/blockchains/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json @@ -0,0 +1,28 @@ +{ + "name": "Alvey Chain", + "type": "BEP20", + "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://bscscan.com/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/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png b/blockchains/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png new file mode 100644 index 00000000..a101ec30 Binary files /dev/null and b/blockchains/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png differ diff --git a/blockchains/smartchain/assets/0x257a8d1E03D17B8535a182301f15290F11674b53/info.json b/blockchains/smartchain/assets/0x257a8d1E03D17B8535a182301f15290F11674b53/info.json new file mode 100644 index 00000000..fe66e2ff --- /dev/null +++ b/blockchains/smartchain/assets/0x257a8d1E03D17B8535a182301f15290F11674b53/info.json @@ -0,0 +1,41 @@ +{ + "name": "Kawaii Islands", + "website": "https://kawaii.global", + "description": "Kawaii Islands is a NFT simulation play-to-earn game that creates a fantasy universe on the cloud for multiplayers to experience a whole set of simulation gaming with farming, crafting, home designing, styling and social-networking.", + "type": "BEP20", + "symbol": "KWT", + "decimals": 18, + "status": "active", + "explorer": "https://bscscan.com/token/0x257a8d1E03D17B8535a182301f15290F11674b53", + "id": "0x257a8d1E03D17B8535a182301f15290F11674b53", + "links": [ + { + "name": "github", + "url": "https://github.com/kawaii-islands" + }, + { + "name": "x", + "url": "https://x.com/kawaii_islands" + }, + { + "name": "medium", + "url": "https://medium.com/@kawaii_islands" + }, + { + "name": "telegram", + "url": "https://t.me/kawaii_islands" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kawaii-islands" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kawaii-islands/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/nN4FDesACB" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x257a8d1E03D17B8535a182301f15290F11674b53/logo.png b/blockchains/smartchain/assets/0x257a8d1E03D17B8535a182301f15290F11674b53/logo.png new file mode 100644 index 00000000..95fdb671 Binary files /dev/null and b/blockchains/smartchain/assets/0x257a8d1E03D17B8535a182301f15290F11674b53/logo.png differ diff --git a/blockchains/smartchain/assets/0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e/info.json b/blockchains/smartchain/assets/0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e/info.json new file mode 100644 index 00000000..9bf3ff8c --- /dev/null +++ b/blockchains/smartchain/assets/0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e/info.json @@ -0,0 +1,44 @@ +{ + "name": "StepD", + "type": "BEP20", + "symbol": "$STEPD", + "decimals": 9, + "website": "https://stepd.finance/", + "description": "STEPD is a fantastic project for those who want to strengthen the friendship with their pet and earn money in a meaningful way while walking. We are the first Move-To-Earn project that has a close relationship with pets.", + "explorer": "https://bscscan.com/token/0x2582d7afc1bf4496bcb87b6c2a72d24db279dd0e", + "status": "active", + "id": "0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e", + "links": [ + { + "name": "x", + "url": "https://x.com/StepOfDoge" + }, + { + "name": "telegram", + "url": "https://t.me/STEPOFDOGE" + }, + { + "name": "telegram_news", + "url": "https://t.me/STEPOFDOGE" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.stepd.finance/" + }, + { + "name": "facebook", + "url": "https://facebook.com/stepdofdoge" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stepd/" + }, + { + "name": "github", + "url": "https://github.com/coinscope-co/audits/blob/main/stepd/audit.pdf" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e/logo.png b/blockchains/smartchain/assets/0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e/logo.png new file mode 100644 index 00000000..35c8d7a4 Binary files /dev/null and b/blockchains/smartchain/assets/0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e/logo.png differ diff --git a/blockchains/smartchain/assets/0x2588F20BAd92Da8dCCE7FaC8311B5F8Ab4690E43/info.json b/blockchains/smartchain/assets/0x2588F20BAd92Da8dCCE7FaC8311B5F8Ab4690E43/info.json new file mode 100644 index 00000000..a3a67546 --- /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 00000000..b9a1bc9b 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 00000000..b1da8099 --- /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 00000000..244e0aba Binary files /dev/null and b/blockchains/smartchain/assets/0x2598c30330D5771AE9F983979209486aE26dE875/logo.png differ diff --git a/blockchains/smartchain/assets/0x25A528af62e56512A19ce8c3cAB427807c28CC19/info.json b/blockchains/smartchain/assets/0x25A528af62e56512A19ce8c3cAB427807c28CC19/info.json new file mode 100644 index 00000000..23100890 --- /dev/null +++ b/blockchains/smartchain/assets/0x25A528af62e56512A19ce8c3cAB427807c28CC19/info.json @@ -0,0 +1,11 @@ +{ + "name": "Formation Finance", + "website": "https://formation.fi", + "description": "Formation Fi revolutionizes portfolio construction by introducing risk-adjusted portfolio of decentralized open financial crypto assets in the form of algorithmically rebasing indexes, with a high degree of composability, across the major blockchain networks.", + "explorer": "https://bscscan.com/token/0x25A528af62e56512A19ce8c3cAB427807c28CC19", + "type": "BEP20", + "symbol": "FORM", + "decimals": 18, + "status": "active", + "id": "0x25A528af62e56512A19ce8c3cAB427807c28CC19" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x25A528af62e56512A19ce8c3cAB427807c28CC19/logo.png b/blockchains/smartchain/assets/0x25A528af62e56512A19ce8c3cAB427807c28CC19/logo.png new file mode 100644 index 00000000..334cedd5 Binary files /dev/null and b/blockchains/smartchain/assets/0x25A528af62e56512A19ce8c3cAB427807c28CC19/logo.png differ diff --git a/blockchains/smartchain/assets/0x25Be9E26Db60B1A3d1f7fa21679385dF076Af7FB/info.json b/blockchains/smartchain/assets/0x25Be9E26Db60B1A3d1f7fa21679385dF076Af7FB/info.json new file mode 100644 index 00000000..934974bf --- /dev/null +++ b/blockchains/smartchain/assets/0x25Be9E26Db60B1A3d1f7fa21679385dF076Af7FB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gaia", + "website": "https://gaiadao.org/", + "description": "GaiaDAO aims to develop an environmentally-friendly ecosystem of prominent DeFi products on the BSC", + "explorer": "https://bscscan.com/token/0x25be9e26db60b1a3d1f7fa21679385df076af7fb", + "type": "BEP20", + "symbol": "GAIA", + "decimals": 9, + "status": "active", + "id": "0x25Be9E26Db60B1A3d1f7fa21679385dF076Af7FB" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x25Be9E26Db60B1A3d1f7fa21679385dF076Af7FB/logo.png b/blockchains/smartchain/assets/0x25Be9E26Db60B1A3d1f7fa21679385dF076Af7FB/logo.png new file mode 100644 index 00000000..944922a0 Binary files /dev/null and b/blockchains/smartchain/assets/0x25Be9E26Db60B1A3d1f7fa21679385dF076Af7FB/logo.png differ diff --git a/blockchains/smartchain/assets/0x25E193FB8c6216b33f82C5e636461D85db6B72c2/info.json b/blockchains/smartchain/assets/0x25E193FB8c6216b33f82C5e636461D85db6B72c2/info.json new file mode 100644 index 00000000..2e4b2985 --- /dev/null +++ b/blockchains/smartchain/assets/0x25E193FB8c6216b33f82C5e636461D85db6B72c2/info.json @@ -0,0 +1,11 @@ +{ + "name": "TWERK Finance", + "website": "https://twerk-finance.com/", + "description": "TWERK FINANCE IS A LIQUIDITY GENERATING DEFI", + "explorer": "https://bscscan.com/token/0x25e193fb8c6216b33f82c5e636461d85db6b72c2", + "type": "BEP20", + "symbol": "TWERK", + "decimals": 9, + "status": "active", + "id": "0x25E193FB8c6216b33f82C5e636461D85db6B72c2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x25E193FB8c6216b33f82C5e636461D85db6B72c2/logo.png b/blockchains/smartchain/assets/0x25E193FB8c6216b33f82C5e636461D85db6B72c2/logo.png new file mode 100644 index 00000000..54531c7f Binary files /dev/null and b/blockchains/smartchain/assets/0x25E193FB8c6216b33f82C5e636461D85db6B72c2/logo.png differ diff --git a/blockchains/smartchain/assets/0x25F6524C2bfA5eebcc50beaFD08525E0786082cf/info.json b/blockchains/smartchain/assets/0x25F6524C2bfA5eebcc50beaFD08525E0786082cf/info.json new file mode 100644 index 00000000..f40c7a6f --- /dev/null +++ b/blockchains/smartchain/assets/0x25F6524C2bfA5eebcc50beaFD08525E0786082cf/info.json @@ -0,0 +1,29 @@ +{ + "name": "MarioBros", + "website": "https://www.mariobros.info/", + "description": "MarioBros is a frictionless, community driven contract that allows you to hold tokens of increasing value due to deflationary structure.", + "explorer": "https://bscscan.com/token/0x25f6524c2bfa5eebcc50beafd08525e0786082cf", + "type": "BEP20", + "symbol": "MARIO", + "decimals": 9, + "status": "active", + "id": "0x25F6524C2bfA5eebcc50beaFD08525E0786082cf", + "links": [ + { + "name": "github", + "url": "https://github.com/MarioBros-Coin/MarioBrosCoin" + }, + { + "name": "x", + "url": "https://x.com/Mariobroscoin" + }, + { + "name": "telegram", + "url": "https://t.me/mariobros_coin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MarioBrostoken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x25F6524C2bfA5eebcc50beaFD08525E0786082cf/logo.png b/blockchains/smartchain/assets/0x25F6524C2bfA5eebcc50beaFD08525E0786082cf/logo.png new file mode 100644 index 00000000..5cf2a7af Binary files /dev/null and b/blockchains/smartchain/assets/0x25F6524C2bfA5eebcc50beaFD08525E0786082cf/logo.png differ diff --git a/blockchains/smartchain/assets/0x25FfDA07F585c39848dB6573E533D7585679C52d/info.json b/blockchains/smartchain/assets/0x25FfDA07F585c39848dB6573E533D7585679C52d/info.json new file mode 100644 index 00000000..5c0034ac --- /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 00000000..87120d13 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 new file mode 100644 index 00000000..0bb42298 --- /dev/null +++ b/blockchains/smartchain/assets/0x25b15E17164b97202616e36Af1234Db944121185/info.json @@ -0,0 +1,29 @@ +{ + "name": "HYPER", + "type": "BEP20", + "symbol": "HYPER", + "decimals": 7, + "website": "https://hyperchainx.com/", + "description": "Hyperchain X is the world’s first community-driven token in gaming. The goal is to create a crypto gaming platform with an all-in-one application consisting of elements like: buy-in tournaments, 1 vs 1 high stake battles, league creation options for esport teams, live streams, and an NFT marketplace that is unseen in this space.", + "explorer": "https://bscscan.com/token/0x25b15E17164b97202616e36Af1234Db944121185", + "status": "abandoned", + "id": "0x25b15E17164b97202616e36Af1234Db944121185", + "links": [ + { + "name": "x", + "url": "https://x.com/HyperchainX" + }, + { + "name": "telegram", + "url": "https://t.me/hyperchainx" + }, + { + "name": "telegram_news", + "url": "https://t.me/hyperchainxannouncements" + }, + { + "name": "medium", + "url": "https://medium.com/@ninja_krypto" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/info.json b/blockchains/smartchain/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/info.json new file mode 100644 index 00000000..95c8ab2e --- /dev/null +++ b/blockchains/smartchain/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/info.json @@ -0,0 +1,47 @@ +{ + "name": "AXL INU", + "type": "BEP20", + "symbol": "AXL", + "decimals": 18, + "website": "https://www.axltoken.com", + "description": "AXL INU is being developed as Decentralized Eco-System with a LaunchPad, Farming, Staking, NFT MarketPlace and a Metaverse.", + "explorer": "https://bscscan.com/token/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0", + "status": "active", + "id": "0x25b24B3c47918b7962B3e49C4F468367F73CC0E0", + "links": [ + { + "name": "x", + "url": "https://x.com/axltoken" + }, + { + "name": "telegram", + "url": "https://t.me/axltoken" + }, + { + "name": "reddit", + "url": "https://reddit.com/axltoken" + }, + { + "name": "medium", + "url": "https://axltoken.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/axl-inu/" + }, + { + "name": "facebook", + "url": "https://facebook.com/Axltoken" + }, + { + "name": "telegram_news", + "url": "https://t.me/Axl_Token" + } + ], + "tags": [ + "memes", + "gamefi", + "staking", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/logo.png b/blockchains/smartchain/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/logo.png new file mode 100644 index 00000000..0de4c340 Binary files /dev/null and b/blockchains/smartchain/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/logo.png differ diff --git a/blockchains/smartchain/assets/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1/info.json b/blockchains/smartchain/assets/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1/info.json new file mode 100644 index 00000000..b8bf5ab3 --- /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 00000000..681d6644 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 new file mode 100644 index 00000000..ef52bf20 --- /dev/null +++ b/blockchains/smartchain/assets/0x261510Dd6257494eEA1DDA7618DBe8a7b87870dd/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dehero Community Token", + "type": "BEP20", + "symbol": "HEROES", + "decimals": 12, + "website": "https://dehero.co/", + "description": "DeHero is a decentralized GameFi application based on BSC.", + "explorer": "https://bscscan.com/token/0x261510Dd6257494eEA1DDA7618DBe8a7b87870dd", + "status": "active", + "id": "0x261510Dd6257494eEA1DDA7618DBe8a7b87870dd", + "links": [ + { + "name": "x", + "url": "https://x.com/MIXMARVELGAME" + }, + { + "name": "telegram", + "url": "https://t.me/MixMarvelGlobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x261510Dd6257494eEA1DDA7618DBe8a7b87870dd/logo.png b/blockchains/smartchain/assets/0x261510Dd6257494eEA1DDA7618DBe8a7b87870dd/logo.png new file mode 100644 index 00000000..cb415fb6 Binary files /dev/null and b/blockchains/smartchain/assets/0x261510Dd6257494eEA1DDA7618DBe8a7b87870dd/logo.png differ diff --git a/blockchains/smartchain/assets/0x26165a5a3Dd21FA528bECf3Ff7F114D00a517344/info.json b/blockchains/smartchain/assets/0x26165a5a3Dd21FA528bECf3Ff7F114D00a517344/info.json new file mode 100644 index 00000000..61514da9 --- /dev/null +++ b/blockchains/smartchain/assets/0x26165a5a3Dd21FA528bECf3Ff7F114D00a517344/info.json @@ -0,0 +1,28 @@ +{ + "name": "META", + "website": "https://metabsc.app", + "description": "META is a community meme and rewards token. All holders of META are automatically rewarded SHIB. Hold META, and watch your SHIB grow passively.", + "explorer": "https://bscscan.com/token/0x26165a5a3Dd21FA528bECf3Ff7F114D00a517344", + "type": "BEP20", + "symbol": "$META", + "decimals": 9, + "status": "active", + "id": "0x26165a5a3Dd21FA528bECf3Ff7F114D00a517344", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/meta_token_bsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-/" + }, + { + "name": "x", + "url": "https://x.com/META_Shiba" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26165a5a3Dd21FA528bECf3Ff7F114D00a517344/logo.png b/blockchains/smartchain/assets/0x26165a5a3Dd21FA528bECf3Ff7F114D00a517344/logo.png new file mode 100644 index 00000000..4332bab8 Binary files /dev/null and b/blockchains/smartchain/assets/0x26165a5a3Dd21FA528bECf3Ff7F114D00a517344/logo.png differ diff --git a/blockchains/smartchain/assets/0x26193C7fa4354AE49eC53eA2cEBC513dc39A10aa/info.json b/blockchains/smartchain/assets/0x26193C7fa4354AE49eC53eA2cEBC513dc39A10aa/info.json new file mode 100644 index 00000000..18d0d2e3 --- /dev/null +++ b/blockchains/smartchain/assets/0x26193C7fa4354AE49eC53eA2cEBC513dc39A10aa/info.json @@ -0,0 +1,38 @@ +{ + "name": "StarSharks", + "type": "BEP20", + "symbol": "SEA", + "decimals": 18, + "website": "https://starsharks.com/", + "explorer": "https://bscscan.com/token/0x26193C7fa4354AE49eC53eA2cEBC513dc39A10aa", + "id": "0x26193C7fa4354AE49eC53eA2cEBC513dc39A10aa", + "status": "active", + "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": "x", + "url": "https://x.com/StarSharks_SSS" + }, + { + "name": "telegram", + "url": "https://t.me/starsharks_SSS" + }, + { + "name": "discord", + "url": "https://discord.com/invite/TZfxJbnS3e" + }, + { + "name": "medium", + "url": "https://medium.com/@StarSharks" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/zh/currencies/starsharks-sss/" + } + ], + "tags": [ + "nft", + "staking", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26193C7fa4354AE49eC53eA2cEBC513dc39A10aa/logo.png b/blockchains/smartchain/assets/0x26193C7fa4354AE49eC53eA2cEBC513dc39A10aa/logo.png new file mode 100644 index 00000000..7858491b Binary files /dev/null and b/blockchains/smartchain/assets/0x26193C7fa4354AE49eC53eA2cEBC513dc39A10aa/logo.png differ diff --git a/blockchains/smartchain/assets/0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8/info.json b/blockchains/smartchain/assets/0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8/info.json new file mode 100644 index 00000000..fe32725d --- /dev/null +++ b/blockchains/smartchain/assets/0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8/info.json @@ -0,0 +1,45 @@ +{ + "name": "Decentraland", + "website": "https://decentraland.org", + "description": "Decentraland (MANA) defines itself as a virtual reality platform powered by the Ethereum blockchain that allows users to create, experience, and monetize content and applications.", + "explorer": "https://bscscan.com/token/0x26433c8127d9b4e9b71eaa15111df99ea2eeb2f8", + "type": "BEP20", + "symbol": "MANA", + "decimals": 18, + "status": "active", + "id": "0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8", + "tags": [ + "gamefi", + "nft" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/decentraland" + }, + { + "name": "x", + "url": "https://x.com/decentraland" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/decentraland" + }, + { + "name": "blog", + "url": "https://blog.decentraland.org/" + }, + { + "name": "facebook", + "url": "https://facebook.com/decentraland/" + }, + { + "name": "whitepaper", + "url": "https://decentraland.org/whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/decentraland/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8/logo.png b/blockchains/smartchain/assets/0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8/logo.png new file mode 100644 index 00000000..2e4e2b57 Binary files /dev/null and b/blockchains/smartchain/assets/0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8/logo.png differ diff --git a/blockchains/smartchain/assets/0x264Bc4Ea2F45cF6331AD6C3aC8d7257Cf487FcbC/info.json b/blockchains/smartchain/assets/0x264Bc4Ea2F45cF6331AD6C3aC8d7257Cf487FcbC/info.json new file mode 100644 index 00000000..7fa34e59 --- /dev/null +++ b/blockchains/smartchain/assets/0x264Bc4Ea2F45cF6331AD6C3aC8d7257Cf487FcbC/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream ALPHA Token", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x264Bc4Ea2F45cF6331AD6C3aC8d7257Cf487FcbC", + "type": "BEP20", + "symbol": "crALPHA", + "decimals": 8, + "status": "active", + "id": "0x264Bc4Ea2F45cF6331AD6C3aC8d7257Cf487FcbC", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x264Bc4Ea2F45cF6331AD6C3aC8d7257Cf487FcbC/logo.png b/blockchains/smartchain/assets/0x264Bc4Ea2F45cF6331AD6C3aC8d7257Cf487FcbC/logo.png new file mode 100644 index 00000000..5e62cdf8 Binary files /dev/null and b/blockchains/smartchain/assets/0x264Bc4Ea2F45cF6331AD6C3aC8d7257Cf487FcbC/logo.png differ diff --git a/blockchains/smartchain/assets/0x265f638eAb14dD43D80bB71AAe3289B1c6d46A3f/info.json b/blockchains/smartchain/assets/0x265f638eAb14dD43D80bB71AAe3289B1c6d46A3f/info.json new file mode 100644 index 00000000..40e793ea --- /dev/null +++ b/blockchains/smartchain/assets/0x265f638eAb14dD43D80bB71AAe3289B1c6d46A3f/info.json @@ -0,0 +1,37 @@ +{ + "name": "Binancedog", + "type": "BEP20", + "symbol": "Bidog", + "decimals": 9, + "website": "https://www.binancedog.net/", + "description": "Binance dog is a deflationary token which is centered by the community and driven by the internal force.", + "explorer": "https://bscscan.com/token/0x265f638eAb14dD43D80bB71AAe3289B1c6d46A3f", + "status": "active", + "id": "0x265f638eAb14dD43D80bB71AAe3289B1c6d46A3f", + "links": [ + { + "name": "x", + "url": "https://x.com/BidogCoin" + }, + { + "name": "telegram", + "url": "https://t.me/BidogCoin" + }, + { + "name": "discord", + "url": "https://discord.com/BidogCoin" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x265f638eab14dd43d80bb71aae3289b1c6d46a3f#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/binancedog/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/binancedog" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x265f638eAb14dD43D80bB71AAe3289B1c6d46A3f/logo.png b/blockchains/smartchain/assets/0x265f638eAb14dD43D80bB71AAe3289B1c6d46A3f/logo.png new file mode 100644 index 00000000..3cefc872 Binary files /dev/null and b/blockchains/smartchain/assets/0x265f638eAb14dD43D80bB71AAe3289B1c6d46A3f/logo.png differ diff --git a/blockchains/smartchain/assets/0x26619FA1d4c957C58096bBbeCa6588dCFB12E109/info.json b/blockchains/smartchain/assets/0x26619FA1d4c957C58096bBbeCa6588dCFB12E109/info.json new file mode 100644 index 00000000..c1b8259f --- /dev/null +++ b/blockchains/smartchain/assets/0x26619FA1d4c957C58096bBbeCa6588dCFB12E109/info.json @@ -0,0 +1,28 @@ +{ + "name": "TIME", + "type": "BEP20", + "symbol": "TIME", + "decimals": 18, + "website": "https://meta-time.org/", + "description": "TIME is a token that can be earned or used in a developed game for entertainment.", + "explorer": "https://bscscan.com/token/0x26619FA1d4c957C58096bBbeCa6588dCFB12E109", + "status": "active", + "id": "0x26619FA1d4c957C58096bBbeCa6588dCFB12E109", + "links": [ + { + "name": "source_code", + "url": "https://bscscan.com/address/0x26619FA1d4c957C58096bBbeCa6588dCFB12E109#code" + }, + { + "name": "blog", + "url": "https://www.meta-time.org/" + }, + { + "name": "whitepaper", + "url": "https://www.meta-time.org/whitepaper.pdf" + } + ], + "tags": [ + "binance-peg" + ] +} diff --git a/blockchains/smartchain/assets/0x26619FA1d4c957C58096bBbeCa6588dCFB12E109/logo.png b/blockchains/smartchain/assets/0x26619FA1d4c957C58096bBbeCa6588dCFB12E109/logo.png new file mode 100644 index 00000000..2f920ca6 Binary files /dev/null and b/blockchains/smartchain/assets/0x26619FA1d4c957C58096bBbeCa6588dCFB12E109/logo.png differ diff --git a/blockchains/smartchain/assets/0x26734ADd0650719eA29087fe5CC0AaB81b4f237D/info.json b/blockchains/smartchain/assets/0x26734ADd0650719eA29087fe5CC0AaB81b4f237D/info.json new file mode 100644 index 00000000..e00bc54d --- /dev/null +++ b/blockchains/smartchain/assets/0x26734ADd0650719eA29087fe5CC0AaB81b4f237D/info.json @@ -0,0 +1,28 @@ +{ + "name": "STEMX", + "type": "BEP20", + "symbol": "STEMX", + "decimals": 18, + "website": "https://stemx.pro/", + "description": "STEM is an exchange where each sports team has its own token. The price of the token is determined by the team's performance indicators.", + "explorer": "https://bscscan.com/token/0x26734add0650719ea29087fe5cc0aab81b4f237d", + "status": "active", + "id": "0x26734ADd0650719eA29087fe5CC0AaB81b4f237D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/stemxme" + }, + { + "name": "x", + "url": "https://x.com/STEMRUCOM" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/stemx/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26734ADd0650719eA29087fe5CC0AaB81b4f237D/logo.png b/blockchains/smartchain/assets/0x26734ADd0650719eA29087fe5CC0AaB81b4f237D/logo.png new file mode 100644 index 00000000..78e7c338 Binary files /dev/null and b/blockchains/smartchain/assets/0x26734ADd0650719eA29087fe5CC0AaB81b4f237D/logo.png differ diff --git a/blockchains/smartchain/assets/0x269B7A30497F92EBf307e7467fD4F1210a6C36b6/info.json b/blockchains/smartchain/assets/0x269B7A30497F92EBf307e7467fD4F1210a6C36b6/info.json new file mode 100644 index 00000000..7b72f36b --- /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 00000000..9eed81da Binary files /dev/null and b/blockchains/smartchain/assets/0x269B7A30497F92EBf307e7467fD4F1210a6C36b6/logo.png differ diff --git a/blockchains/smartchain/assets/0x26A4F25A411eF867972633E5FA410031D6346285/info.json b/blockchains/smartchain/assets/0x26A4F25A411eF867972633E5FA410031D6346285/info.json new file mode 100644 index 00000000..d6bd9441 --- /dev/null +++ b/blockchains/smartchain/assets/0x26A4F25A411eF867972633E5FA410031D6346285/info.json @@ -0,0 +1,11 @@ +{ + "name": "Koduro", + "website": "https://koduro.io", + "description": "Koduro is an autonomous liquidity generation protocol with static farming that reinvests back into clean energy projects.", + "explorer": "https://bscscan.com/token/0x26A4F25A411eF867972633E5FA410031D6346285", + "type": "BEP20", + "symbol": "KODURO", + "decimals": 9, + "status": "active", + "id": "0x26A4F25A411eF867972633E5FA410031D6346285" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26A4F25A411eF867972633E5FA410031D6346285/logo.png b/blockchains/smartchain/assets/0x26A4F25A411eF867972633E5FA410031D6346285/logo.png new file mode 100644 index 00000000..939340d5 Binary files /dev/null and b/blockchains/smartchain/assets/0x26A4F25A411eF867972633E5FA410031D6346285/logo.png differ diff --git a/blockchains/smartchain/assets/0x26A5dFab467d4f58fB266648CAe769503CEC9580/info.json b/blockchains/smartchain/assets/0x26A5dFab467d4f58fB266648CAe769503CEC9580/info.json new file mode 100644 index 00000000..3ade855d --- /dev/null +++ b/blockchains/smartchain/assets/0x26A5dFab467d4f58fB266648CAe769503CEC9580/info.json @@ -0,0 +1,11 @@ +{ + "name": "Standard", + "type": "BEP20", + "symbol": "xMARK", + "decimals": 9, + "website": "https://benchmarkprotocol.finance", + "description": "Benchmark Protocol mitigates liquidation events and hedges risk with the MARK token; a supply elastic, stablecoin-alternative. The protocol dynamically adjusts supply based on the CBOE volatility index (VIX) and deviations from 1 Special Drawing Rights (SDR) unit. xMARK represents a share of MARK that is deposited in a token pool affected by rebasements, while xMARK itself is unaffected.", + "explorer": "https://bscscan.com/token/0x26A5dFab467d4f58fB266648CAe769503CEC9580", + "status": "active", + "id": "0x26A5dFab467d4f58fB266648CAe769503CEC9580" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26A5dFab467d4f58fB266648CAe769503CEC9580/logo.png b/blockchains/smartchain/assets/0x26A5dFab467d4f58fB266648CAe769503CEC9580/logo.png new file mode 100644 index 00000000..d51f9fa3 Binary files /dev/null and b/blockchains/smartchain/assets/0x26A5dFab467d4f58fB266648CAe769503CEC9580/logo.png differ diff --git a/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/info.json b/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/info.json new file mode 100644 index 00000000..c0b11df9 --- /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 00000000..c11bf96e Binary files /dev/null and b/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/logo.png differ diff --git a/blockchains/smartchain/assets/0x26D6e280F9687c463420908740AE59f712419147/info.json b/blockchains/smartchain/assets/0x26D6e280F9687c463420908740AE59f712419147/info.json new file mode 100644 index 00000000..8c560c71 --- /dev/null +++ b/blockchains/smartchain/assets/0x26D6e280F9687c463420908740AE59f712419147/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bakerytools", + "website": "http://bakerytools.io", + "description": "Bakerytools is the ultimate hub & trading tool for Binance smart chain pairs & pool explorer and a hotspot for Private and pre-sale listings.", + "explorer": "https://bscscan.com/token/0x26D6e280F9687c463420908740AE59f712419147", + "type": "BEP20", + "symbol": "TBAKE", + "decimals": 18, + "status": "active", + "id": "0x26D6e280F9687c463420908740AE59f712419147" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26D6e280F9687c463420908740AE59f712419147/logo.png b/blockchains/smartchain/assets/0x26D6e280F9687c463420908740AE59f712419147/logo.png new file mode 100644 index 00000000..54d01eeb Binary files /dev/null and b/blockchains/smartchain/assets/0x26D6e280F9687c463420908740AE59f712419147/logo.png differ diff --git a/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/info.json b/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/info.json new file mode 100644 index 00000000..4a91e5c4 --- /dev/null +++ b/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/info.json @@ -0,0 +1,25 @@ +{ + "name": "Venus AAVE", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + } + ], + "explorer": "https://bscscan.com/token/0x26DA28954763B92139ED49283625ceCAf52C6f94", + "type": "BEP20", + "symbol": "vAAVE", + "decimals": 8, + "status": "active", + "id": "0x26DA28954763B92139ED49283625ceCAf52C6f94" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/logo.png b/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/logo.png new file mode 100644 index 00000000..a741cf6f Binary files /dev/null and b/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/logo.png differ diff --git a/blockchains/smartchain/assets/0x26Ecdc7FFbc0C73dCcE86aE3E029776aC01fcc08/info.json b/blockchains/smartchain/assets/0x26Ecdc7FFbc0C73dCcE86aE3E029776aC01fcc08/info.json new file mode 100644 index 00000000..e0b63662 --- /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 new file mode 100644 index 00000000..9fc40f34 --- /dev/null +++ b/blockchains/smartchain/assets/0x26a1BdFa3bb86b2744c4A42EBfDd205761d13a8a/info.json @@ -0,0 +1,25 @@ +{ + "name": "KAKA Token", + "website": "https://kakanft.com/", + "description": "KAKA is a token issued by KAKA NFT World.", + "explorer": "https://bscscan.com/token/0x26a1BdFa3bb86b2744c4A42EBfDd205761d13a8a", + "type": "BEP20", + "symbol": "KAKA", + "decimals": 18, + "status": "active", + "id": "0x26a1BdFa3bb86b2744c4A42EBfDd205761d13a8a", + "links": [ + { + "name": "x", + "url": "https://x.com/kakanftworld" + }, + { + "name": "telegram", + "url": "https://t.me/KAKANFTWORLD" + }, + { + "name": "medium", + "url": "https://kakanft.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26a1BdFa3bb86b2744c4A42EBfDd205761d13a8a/logo.png b/blockchains/smartchain/assets/0x26a1BdFa3bb86b2744c4A42EBfDd205761d13a8a/logo.png new file mode 100644 index 00000000..f30fc839 Binary files /dev/null and b/blockchains/smartchain/assets/0x26a1BdFa3bb86b2744c4A42EBfDd205761d13a8a/logo.png differ diff --git a/blockchains/smartchain/assets/0x26fF6D16549A00BA8b36ce3159b5277E6e798d18/info.json b/blockchains/smartchain/assets/0x26fF6D16549A00BA8b36ce3159b5277E6e798d18/info.json new file mode 100644 index 00000000..46a8583b --- /dev/null +++ b/blockchains/smartchain/assets/0x26fF6D16549A00BA8b36ce3159b5277E6e798d18/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chihua Token", + "website": "https://www.chihuatoken.com/", + "description": "Small - but most aggressive brother of Doge Coin!", + "explorer": "https://bscscan.com/token/0x26fF6D16549A00BA8b36ce3159b5277E6e798d18", + "type": "BEP20", + "symbol": "CHIHUA", + "decimals": 18, + "status": "active", + "id": "0x26fF6D16549A00BA8b36ce3159b5277E6e798d18" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26fF6D16549A00BA8b36ce3159b5277E6e798d18/logo.png b/blockchains/smartchain/assets/0x26fF6D16549A00BA8b36ce3159b5277E6e798d18/logo.png new file mode 100755 index 00000000..eafe2359 Binary files /dev/null and b/blockchains/smartchain/assets/0x26fF6D16549A00BA8b36ce3159b5277E6e798d18/logo.png differ diff --git a/blockchains/smartchain/assets/0x270877FBDAdd2E28C7EAf08e528691B95684207e/info.json b/blockchains/smartchain/assets/0x270877FBDAdd2E28C7EAf08e528691B95684207e/info.json new file mode 100644 index 00000000..b60d76b3 --- /dev/null +++ b/blockchains/smartchain/assets/0x270877FBDAdd2E28C7EAf08e528691B95684207e/info.json @@ -0,0 +1,11 @@ +{ + "name": "LaikaCoin", + "type": "BEP20", + "symbol": "LAIKA", + "decimals": 9, + "description": "LaikaCoin is a community owned DeFi token with a focus on charity and animal welfare.", + "website": "https://laikacommunity.com", + "explorer": "https://bscscan.com/token/0x270877FBDAdd2E28C7EAf08e528691B95684207e", + "status": "active", + "id": "0x270877FBDAdd2E28C7EAf08e528691B95684207e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x270877FBDAdd2E28C7EAf08e528691B95684207e/logo.png b/blockchains/smartchain/assets/0x270877FBDAdd2E28C7EAf08e528691B95684207e/logo.png new file mode 100644 index 00000000..2e0c0125 Binary files /dev/null and b/blockchains/smartchain/assets/0x270877FBDAdd2E28C7EAf08e528691B95684207e/logo.png differ diff --git a/blockchains/smartchain/assets/0x271C418B045d05A1D52c6bF849d47b5B5B4d769e/info.json b/blockchains/smartchain/assets/0x271C418B045d05A1D52c6bF849d47b5B5B4d769e/info.json new file mode 100644 index 00000000..3faa4c86 --- /dev/null +++ b/blockchains/smartchain/assets/0x271C418B045d05A1D52c6bF849d47b5B5B4d769e/info.json @@ -0,0 +1,25 @@ +{ + "name": "Veraswap Protocol", + "website": "https://veraswap.org", + "description": "Fully Dex protocol, staking and more on Binance Smart Chain. #Defi #BSC", + "explorer": "https://bscscan.com/token/0x271c418b045d05a1d52c6bf849d47b5b5b4d769e", + "type": "BEP20", + "symbol": "VRAP", + "decimals": 18, + "status": "active", + "id": "0x271C418B045d05A1D52c6bF849d47b5B5B4d769e", + "links": [ + { + "name": "github", + "url": "https://github.com/Virginlink" + }, + { + "name": "x", + "url": "https://x.com/Veraswap Protocol" + }, + { + "name": "telegram", + "url": "https://t.me/veraswap" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x271C418B045d05A1D52c6bF849d47b5B5B4d769e/logo.png b/blockchains/smartchain/assets/0x271C418B045d05A1D52c6bF849d47b5B5B4d769e/logo.png new file mode 100644 index 00000000..e88b257b Binary files /dev/null and b/blockchains/smartchain/assets/0x271C418B045d05A1D52c6bF849d47b5B5B4d769e/logo.png differ diff --git a/blockchains/smartchain/assets/0x27327672D1dc51F4Dc58c9F413E1FA7e7ad8245e/info.json b/blockchains/smartchain/assets/0x27327672D1dc51F4Dc58c9F413E1FA7e7ad8245e/info.json new file mode 100644 index 00000000..7bd9c72a --- /dev/null +++ b/blockchains/smartchain/assets/0x27327672D1dc51F4Dc58c9F413E1FA7e7ad8245e/info.json @@ -0,0 +1,12 @@ +{ + "name": "Willie Coin", + "website": "https://www.williecoin.com", + "description": "Self generating liquidity token with a charitable twist - Reflection paid back to holders. Decentralised Micro-cap Exchange in roadmap", + "explorer": "https://bscscan.com/token/0x27327672d1dc51f4dc58c9f413e1fa7e7ad8245e", + "research": "", + "type": "BEP20", + "symbol": "WILLIE", + "decimals": 9, + "status": "active", + "id": "0x27327672D1dc51F4Dc58c9F413E1FA7e7ad8245e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x27327672D1dc51F4Dc58c9F413E1FA7e7ad8245e/logo.png b/blockchains/smartchain/assets/0x27327672D1dc51F4Dc58c9F413E1FA7e7ad8245e/logo.png new file mode 100644 index 00000000..96c9a38e Binary files /dev/null and b/blockchains/smartchain/assets/0x27327672D1dc51F4Dc58c9F413E1FA7e7ad8245e/logo.png differ diff --git a/blockchains/smartchain/assets/0x274B0cB6DB9473245A31cDEA9B789786f4108e4B/info.json b/blockchains/smartchain/assets/0x274B0cB6DB9473245A31cDEA9B789786f4108e4B/info.json new file mode 100644 index 00000000..50a36b12 --- /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 00000000..935dd2c8 Binary files /dev/null and b/blockchains/smartchain/assets/0x274B0cB6DB9473245A31cDEA9B789786f4108e4B/logo.png differ diff --git a/blockchains/smartchain/assets/0x276902E0c3D53bf5559D7d6177EF4834BC72E175/info.json b/blockchains/smartchain/assets/0x276902E0c3D53bf5559D7d6177EF4834BC72E175/info.json new file mode 100644 index 00000000..040b0bed --- /dev/null +++ b/blockchains/smartchain/assets/0x276902E0c3D53bf5559D7d6177EF4834BC72E175/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dory Swap", + "type": "BEP20", + "symbol": "DORY", + "decimals": 18, + "website": "https://doryswap.finance/", + "description": "Discover Dory Finance, the leading DEX on Binance Smart Chain (BSC) with the best farms in DeFi.", + "explorer": "https://bscscan.com/token/0x276902E0c3D53bf5559D7d6177EF4834BC72E175", + "status": "active", + "id": "0x276902E0c3D53bf5559D7d6177EF4834BC72E175" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x276902E0c3D53bf5559D7d6177EF4834BC72E175/logo.png b/blockchains/smartchain/assets/0x276902E0c3D53bf5559D7d6177EF4834BC72E175/logo.png new file mode 100644 index 00000000..930f4825 Binary files /dev/null and b/blockchains/smartchain/assets/0x276902E0c3D53bf5559D7d6177EF4834BC72E175/logo.png differ diff --git a/blockchains/smartchain/assets/0x2773f3FB0f7babA01cdcaAB002FD3373dE2860b3/info.json b/blockchains/smartchain/assets/0x2773f3FB0f7babA01cdcaAB002FD3373dE2860b3/info.json new file mode 100644 index 00000000..c04454b7 --- /dev/null +++ b/blockchains/smartchain/assets/0x2773f3FB0f7babA01cdcaAB002FD3373dE2860b3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wolf", + "type": "BEP20", + "symbol": "WOLF", + "decimals": 9, + "description": "Wolf is an community token in the same way as Doge, but better. We are the wolf pack", + "website": "https://wolf-finance.com", + "explorer": "https://bscscan.com/token/0x2773f3fb0f7baba01cdcaab002fd3373de2860b3", + "status": "active", + "id": "0x2773f3FB0f7babA01cdcaAB002FD3373dE2860b3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2773f3FB0f7babA01cdcaAB002FD3373dE2860b3/logo.png b/blockchains/smartchain/assets/0x2773f3FB0f7babA01cdcaAB002FD3373dE2860b3/logo.png new file mode 100644 index 00000000..ed308c31 Binary files /dev/null and b/blockchains/smartchain/assets/0x2773f3FB0f7babA01cdcaAB002FD3373dE2860b3/logo.png differ diff --git a/blockchains/smartchain/assets/0x277E1FA8704c5511FEd7E30Bc691F922aa30101B/info.json b/blockchains/smartchain/assets/0x277E1FA8704c5511FEd7E30Bc691F922aa30101B/info.json new file mode 100644 index 00000000..8e19e213 --- /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 00000000..c4ed72cf 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 00000000..3694839c --- /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 00000000..d4723bc1 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 00000000..d5dcf254 --- /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 00000000..e1cd050b 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 new file mode 100644 index 00000000..38433094 --- /dev/null +++ b/blockchains/smartchain/assets/0x2794DAD4077602eD25A88d03781528D1637898B4/info.json @@ -0,0 +1,25 @@ +{ + "name": "VITE Token", + "website": "https://vite.org", + "description": "VITE(Vite) is a lightning-fast blockchain where transactions incur zero fees.", + "explorer": "https://bscscan.com/token/0x2794DAD4077602eD25A88d03781528D1637898B4", + "type": "BEP20", + "symbol": "VITE", + "decimals": 18, + "status": "active", + "id": "0x2794DAD4077602eD25A88d03781528D1637898B4", + "links": [ + { + "name": "github", + "url": "https://github.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/0x2794DAD4077602eD25A88d03781528D1637898B4/logo.png b/blockchains/smartchain/assets/0x2794DAD4077602eD25A88d03781528D1637898B4/logo.png new file mode 100644 index 00000000..325568ff Binary files /dev/null and b/blockchains/smartchain/assets/0x2794DAD4077602eD25A88d03781528D1637898B4/logo.png differ diff --git a/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/info.json b/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/info.json new file mode 100644 index 00000000..52782822 --- /dev/null +++ b/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/info.json @@ -0,0 +1,34 @@ +{ + "name": "CumRocket", + "website": "https://cumrocket.io", + "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": [], + "links": [ + { + "name": "x", + "url": "https://x.com/CumRocketCrypto" + }, + { + "name": "telegram", + "url": "https://t.me/cumrocket" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Tett4kJsKN" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/CumRocket/" + }, + { + "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 new file mode 100644 index 00000000..d41c7ff8 Binary files /dev/null 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 new file mode 100644 index 00000000..16dd6faf --- /dev/null +++ b/blockchains/smartchain/assets/0x27B2D695eF01d10EE96582a23db201B0Aa338639/info.json @@ -0,0 +1,36 @@ +{ + "name": "Wrapped GICT", + "type": "BEP20", + "symbol": "WGICT", + "decimals": 8, + "website": "https://www.gicindonesia.com/en", + "description": "We are a group of Forex and Commodity Trading Enthusiasts with a collective experience of more than 50 years in Forex Trading Industry. Our mission is to create a transparent trading platform that is fair, low-cost with no conflict of interest. All this is made possible by our game-changing Peer to Peer blockchain-based trading platform that democratizes access to anyone to become a market maker and play on “the other side of the table.", + "explorer": "https://bscscan.com/token/0x27B2D695eF01d10EE96582a23db201B0Aa338639", + "status": "active", + "id": "0x27B2D695eF01d10EE96582a23db201B0Aa338639", + "links": [ + { + "name": "x", + "url": "https://x.com/gictradeio" + }, + { + "name": "telegram", + "url": "https://t.me/GICTrade" + }, + { + "name": "medium", + "url": "https://gictradeio.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@GICTrade" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gictrade/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x27B2D695eF01d10EE96582a23db201B0Aa338639/logo.png b/blockchains/smartchain/assets/0x27B2D695eF01d10EE96582a23db201B0Aa338639/logo.png new file mode 100644 index 00000000..91b12dc4 Binary files /dev/null and b/blockchains/smartchain/assets/0x27B2D695eF01d10EE96582a23db201B0Aa338639/logo.png differ diff --git a/blockchains/smartchain/assets/0x27BB50c0927891CD21C8Db530490373d295FCBf5/info.json b/blockchains/smartchain/assets/0x27BB50c0927891CD21C8Db530490373d295FCBf5/info.json new file mode 100644 index 00000000..9093b251 --- /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 00000000..15b3de1c 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 00000000..4cf40223 --- /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 new file mode 100644 index 00000000..c5753eca --- /dev/null +++ b/blockchains/smartchain/assets/0x27E873bee690C8E161813DE3566E9E18a64b0381/info.json @@ -0,0 +1,41 @@ +{ + "name": "Leon Token", + "website": "https://dex.leonicornswap.com", + "description": "Next generation AMM and yield farm with deflationary token model on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x27E873bee690C8E161813DE3566E9E18a64b0381", + "type": "BEP20", + "symbol": "LEON", + "decimals": 18, + "status": "active", + "id": "0x27E873bee690C8E161813DE3566E9E18a64b0381", + "links": [ + { + "name": "github", + "url": "https://github.com/Leonicornswap" + }, + { + "name": "x", + "url": "https://x.com/swapleonicorn" + }, + { + "name": "telegram", + "url": "https://t.me/leonicornswap" + }, + { + "name": "whitepaper", + "url": "https://leonicornswap.com/images/whitepaper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/Leonicorn-Swap-104821111837719" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/LeonicornSwap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/leonicorn-swap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x27E873bee690C8E161813DE3566E9E18a64b0381/logo.png b/blockchains/smartchain/assets/0x27E873bee690C8E161813DE3566E9E18a64b0381/logo.png new file mode 100644 index 00000000..0776da81 Binary files /dev/null and b/blockchains/smartchain/assets/0x27E873bee690C8E161813DE3566E9E18a64b0381/logo.png differ diff --git a/blockchains/smartchain/assets/0x27a339d9B59b21390d7209b78a839868E319301B/info.json b/blockchains/smartchain/assets/0x27a339d9B59b21390d7209b78a839868E319301B/info.json new file mode 100644 index 00000000..48865685 --- /dev/null +++ b/blockchains/smartchain/assets/0x27a339d9B59b21390d7209b78a839868E319301B/info.json @@ -0,0 +1,33 @@ +{ + "name": "Open World", + "website": "https://openworld.vision/", + "description": "OpenWorld works with blockchain technology to build a distinct metaverse world with a sound circular economy based on real monetary flow.", + "explorer": "https://bscscan.com/token/0x27a339d9B59b21390d7209b78a839868E319301B", + "type": "BEP20", + "symbol": "OPEN", + "decimals": 18, + "status": "active", + "id": "0x27a339d9B59b21390d7209b78a839868E319301B", + "tags": [ + "defi", + "gamefi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/OpenWorldVision" + }, + { + "name": "telegram", + "url": "https://t.me/openworldglobal" + }, + { + "name": "docs", + "url": "https://wiki.cryptowar.network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cryptowar-xblade" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x27a339d9B59b21390d7209b78a839868E319301B/logo.png b/blockchains/smartchain/assets/0x27a339d9B59b21390d7209b78a839868E319301B/logo.png new file mode 100644 index 00000000..36a9ba45 Binary files /dev/null and b/blockchains/smartchain/assets/0x27a339d9B59b21390d7209b78a839868E319301B/logo.png differ diff --git a/blockchains/smartchain/assets/0x27aD5CC5242f4258030D81A5639098ce0a96820F/info.json b/blockchains/smartchain/assets/0x27aD5CC5242f4258030D81A5639098ce0a96820F/info.json new file mode 100644 index 00000000..68f28d5a --- /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 00000000..742918d3 Binary files /dev/null and b/blockchains/smartchain/assets/0x27aD5CC5242f4258030D81A5639098ce0a96820F/logo.png differ diff --git a/blockchains/smartchain/assets/0x27d0408A868Cf4E89B37D20b5E32888dcED95BCB/info.json b/blockchains/smartchain/assets/0x27d0408A868Cf4E89B37D20b5E32888dcED95BCB/info.json new file mode 100644 index 00000000..5bb2dce3 --- /dev/null +++ b/blockchains/smartchain/assets/0x27d0408A868Cf4E89B37D20b5E32888dcED95BCB/info.json @@ -0,0 +1,11 @@ +{ + "name": "bernard", + "type": "BEP20", + "symbol": "BERN", + "decimals": 18, + "website": "https://bernard.finance/", + "description": "BERNARD is a meme coin and the first pillar of the growing bernard.finance ecosystem.", + "explorer": "https://bscscan.com/token/0x27d0408A868Cf4E89B37D20b5E32888dcED95BCB", + "status": "active", + "id": "0x27d0408A868Cf4E89B37D20b5E32888dcED95BCB" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x27d0408A868Cf4E89B37D20b5E32888dcED95BCB/logo.png b/blockchains/smartchain/assets/0x27d0408A868Cf4E89B37D20b5E32888dcED95BCB/logo.png new file mode 100644 index 00000000..90ebd240 Binary files /dev/null and b/blockchains/smartchain/assets/0x27d0408A868Cf4E89B37D20b5E32888dcED95BCB/logo.png differ diff --git a/blockchains/smartchain/assets/0x27d72484f1910F5d0226aFA4E03742c9cd2B297a/info.json b/blockchains/smartchain/assets/0x27d72484f1910F5d0226aFA4E03742c9cd2B297a/info.json new file mode 100644 index 00000000..b5768c14 --- /dev/null +++ b/blockchains/smartchain/assets/0x27d72484f1910F5d0226aFA4E03742c9cd2B297a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moonscape", + "website": "https://https://www.seascape.network/", + "description": "Official token of Moonscape ecosystem issued by Seascape", + "explorer": "https://bscscan.com/token/0x27d72484f1910F5d0226aFA4E03742c9cd2B297a", + "type": "BEP20", + "symbol": "MSCP", + "decimals": 18, + "status": "active", + "id": "0x27d72484f1910F5d0226aFA4E03742c9cd2B297a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x27d72484f1910F5d0226aFA4E03742c9cd2B297a/logo.png b/blockchains/smartchain/assets/0x27d72484f1910F5d0226aFA4E03742c9cd2B297a/logo.png new file mode 100644 index 00000000..fd9f3794 Binary files /dev/null and b/blockchains/smartchain/assets/0x27d72484f1910F5d0226aFA4E03742c9cd2B297a/logo.png differ diff --git a/blockchains/smartchain/assets/0x27dE544Bf6a05D6c1460E124c6410a0396f78888/info.json b/blockchains/smartchain/assets/0x27dE544Bf6a05D6c1460E124c6410a0396f78888/info.json new file mode 100644 index 00000000..72730289 --- /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/0x27e89d357957cE332Ff442DB69F4b476401BbBc5/info.json b/blockchains/smartchain/assets/0x27e89d357957cE332Ff442DB69F4b476401BbBc5/info.json new file mode 100644 index 00000000..eb5965f9 --- /dev/null +++ b/blockchains/smartchain/assets/0x27e89d357957cE332Ff442DB69F4b476401BbBc5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Carma Coin", + "type": "BEP20", + "symbol": "CARMA", + "decimals": 9, + "website": "https://carmacoin.co", + "description": "Carma Coin is a frictionless, high-yield, deflationary BEP-20 token built on the Binance Smart Chain network.We have a unique 10% \"tax\" on all transactions that is approx split:5% between all holders as a holding reward 3% to the \"Be Magical Fund\" that buys supercars for giveaways, rest goes to charitable donations and burns 2% to our liquidity pool (making it easy to buy and sell anytime)", + "explorer": "https://bscscan.com/token/0x27e89d357957cE332Ff442DB69F4b476401BbBc5", + "status": "active", + "id": "0x27e89d357957cE332Ff442DB69F4b476401BbBc5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x27e89d357957cE332Ff442DB69F4b476401BbBc5/logo.png b/blockchains/smartchain/assets/0x27e89d357957cE332Ff442DB69F4b476401BbBc5/logo.png new file mode 100644 index 00000000..a199e03b Binary files /dev/null and b/blockchains/smartchain/assets/0x27e89d357957cE332Ff442DB69F4b476401BbBc5/logo.png differ diff --git a/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/info.json b/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/info.json new file mode 100644 index 00000000..5b9783b8 --- /dev/null +++ b/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Odin Protocol Token", + "symbol": "ODIN", + "type": "BEP20", + "decimals": 18, + "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": "abandoned", + "id": "0x2802eb3a20f5892956D5B9528F6Bf13E648534DB" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2821989877c0189bf63837f18a2856E30297AF70/info.json b/blockchains/smartchain/assets/0x2821989877c0189bf63837f18a2856E30297AF70/info.json new file mode 100644 index 00000000..84f06e02 --- /dev/null +++ b/blockchains/smartchain/assets/0x2821989877c0189bf63837f18a2856E30297AF70/info.json @@ -0,0 +1,11 @@ +{ + "name": "Orion", + "type": "BEP20", + "symbol": "ORION", + "decimals": 9, + "website": "https://orioninitiative.com/", + "description": "Orion will have 2 presales 40% whitelisted, 60% hosted on Dxsale. This will be a air launch with a max 2 BNB on whitelist and 4 BNB on Dxapp. Whitelist will be on a first come first serve basis and will only be announced on Telegram.", + "explorer": "https://bscscan.com/token/0x2821989877c0189bf63837f18a2856E30297AF70", + "status": "active", + "id": "0x2821989877c0189bf63837f18a2856E30297AF70" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2821989877c0189bf63837f18a2856E30297AF70/logo.png b/blockchains/smartchain/assets/0x2821989877c0189bf63837f18a2856E30297AF70/logo.png new file mode 100644 index 00000000..f9611104 Binary files /dev/null and b/blockchains/smartchain/assets/0x2821989877c0189bf63837f18a2856E30297AF70/logo.png differ diff --git a/blockchains/smartchain/assets/0x282973969118F9fe39bf2FF3D8DD1EFEE82CCb11/info.json b/blockchains/smartchain/assets/0x282973969118F9fe39bf2FF3D8DD1EFEE82CCb11/info.json new file mode 100644 index 00000000..38784f82 --- /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 00000000..418ef4de Binary files /dev/null and b/blockchains/smartchain/assets/0x282973969118F9fe39bf2FF3D8DD1EFEE82CCb11/logo.png differ diff --git a/blockchains/smartchain/assets/0x283FA53f085F520D16a43e7c33180ff99E407b26/info.json b/blockchains/smartchain/assets/0x283FA53f085F520D16a43e7c33180ff99E407b26/info.json new file mode 100644 index 00000000..92d511fb --- /dev/null +++ b/blockchains/smartchain/assets/0x283FA53f085F520D16a43e7c33180ff99E407b26/info.json @@ -0,0 +1,11 @@ +{ + "name": "Maxima", + "type": "BEP20", + "symbol": "MAX", + "decimals": 8, + "website": "https://www.maximatoken.com", + "description": "Monetize your time in the game!", + "explorer": "https://bscscan.com/token/0x283FA53f085F520D16a43e7c33180ff99E407b26", + "status": "active", + "id": "0x283FA53f085F520D16a43e7c33180ff99E407b26" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x283FA53f085F520D16a43e7c33180ff99E407b26/logo.png b/blockchains/smartchain/assets/0x283FA53f085F520D16a43e7c33180ff99E407b26/logo.png new file mode 100644 index 00000000..de1fe95d Binary files /dev/null and b/blockchains/smartchain/assets/0x283FA53f085F520D16a43e7c33180ff99E407b26/logo.png differ diff --git a/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/info.json b/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/info.json new file mode 100644 index 00000000..bb85445c --- /dev/null +++ b/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/info.json @@ -0,0 +1,14 @@ +{ + "name": "BNB pegged 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", + "type": "BEP20", + "symbol": "SHIB", + "decimals": 18, + "status": "active", + "id": "0x2859e4544C4bB03966803b044A93563Bd2D0DD4D", + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/logo.png b/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/logo.png new file mode 100644 index 00000000..7e933da7 Binary files /dev/null and b/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/logo.png differ diff --git a/blockchains/smartchain/assets/0x287880Ea252b52b63Cc5f40a2d3E5A44aa665a76/info.json b/blockchains/smartchain/assets/0x287880Ea252b52b63Cc5f40a2d3E5A44aa665a76/info.json new file mode 100644 index 00000000..465cd250 --- /dev/null +++ b/blockchains/smartchain/assets/0x287880Ea252b52b63Cc5f40a2d3E5A44aa665a76/info.json @@ -0,0 +1,29 @@ +{ + "name": "Alpine F1 Team Fan Token", + "type": "BEP20", + "symbol": "ALPINE", + "decimals": 8, + "website": "https://www.binance.com/en/fan-token/", + "description": "The Alpine F1® Team Fan Token is a BEP-20 utility token designed to revolutionize the fan experience for all BWT Alpine F1® Team supporters. The token empowers BWT Alpine F1® Team fans to participate in team voting polls, hunt digital collectibles, purchase NFTs, and enjoy gamification features that are tied with fan rewards or great experiences.", + "explorer": "https://bscscan.com/token/0x287880Ea252b52b63Cc5f40a2d3E5A44aa665a76", + "status": "active", + "id": "0x287880Ea252b52b63Cc5f40a2d3E5A44aa665a76", + "links": [ + { + "name": "x", + "url": "https://x.com/AlpineF1Team" + }, + { + "name": "github", + "url": "https://github.com/" + }, + { + "name": "whitepaper", + "url": "https://research.binance.com/en/projects/alpine-f1" + } + ], + "tags": [ + "nft", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x287880Ea252b52b63Cc5f40a2d3E5A44aa665a76/logo.png b/blockchains/smartchain/assets/0x287880Ea252b52b63Cc5f40a2d3E5A44aa665a76/logo.png new file mode 100644 index 00000000..aca0ca65 Binary files /dev/null and b/blockchains/smartchain/assets/0x287880Ea252b52b63Cc5f40a2d3E5A44aa665a76/logo.png differ diff --git a/blockchains/smartchain/assets/0x287Db351d5230716246CfB46AF8153025eDa6A0a/info.json b/blockchains/smartchain/assets/0x287Db351d5230716246CfB46AF8153025eDa6A0a/info.json new file mode 100644 index 00000000..edb1f2d1 --- /dev/null +++ b/blockchains/smartchain/assets/0x287Db351d5230716246CfB46AF8153025eDa6A0a/info.json @@ -0,0 +1,49 @@ +{ + "name": "BlockMonsters", + "type": "BEP20", + "symbol": "MNSTRS", + "decimals": 18, + "website": "https://blockmonsters.co", + "description": "BlockMonsters is a play to earn game where players can earn MNSTRS tokens and collect and trade Blockmonster NFTs.", + "explorer": "https://bscscan.com/token/0x287Db351d5230716246CfB46AF8153025eDa6A0a", + "status": "active", + "id": "0x287Db351d5230716246CfB46AF8153025eDa6A0a", + "links": [ + { + "name": "x", + "url": "https://x.com/Block_Monsters" + }, + { + "name": "telegram", + "url": "https://t.me/BlockMonsters" + }, + { + "name": "discord", + "url": "https://discord.com/invite/dYyK2MGw" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BlockMonsters_/" + }, + { + "name": "whitepaper", + "url": "https://blockmonsters.co/Blockpaper.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCbufYno0LJw5wYDQTZyFwuA" + }, + { + "name": "telegram_news", + "url": "https://t.me/BlockMonstersBroad" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/block-monsters/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/block-monsters" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x287Db351d5230716246CfB46AF8153025eDa6A0a/logo.png b/blockchains/smartchain/assets/0x287Db351d5230716246CfB46AF8153025eDa6A0a/logo.png new file mode 100644 index 00000000..fbf253d7 Binary files /dev/null and b/blockchains/smartchain/assets/0x287Db351d5230716246CfB46AF8153025eDa6A0a/logo.png differ diff --git a/blockchains/smartchain/assets/0x28A27ba716d306c842a4b5dA20a42e1d4D1E8d6b/info.json b/blockchains/smartchain/assets/0x28A27ba716d306c842a4b5dA20a42e1d4D1E8d6b/info.json new file mode 100644 index 00000000..529b0cfc --- /dev/null +++ b/blockchains/smartchain/assets/0x28A27ba716d306c842a4b5dA20a42e1d4D1E8d6b/info.json @@ -0,0 +1,25 @@ +{ + "name": "BitUp", + "website": "https://bitup.finance/", + "description": "BitUp is the first automatic rebasing token on Binance Smart Chain that is programed to keep the chart constantly in a uptrend and also provides Bitcoin rewards to holders!", + "explorer": "https://bscscan.com/token/0x28A27ba716d306c842a4b5dA20a42e1d4D1E8d6b", + "type": "BEP20", + "symbol": "BITUP", + "decimals": 9, + "status": "active", + "id": "0x28A27ba716d306c842a4b5dA20a42e1d4D1E8d6b", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BitUP_Official" + }, + { + "name": "x", + "url": "https://x.com/bitupbsc" + }, + { + "name": "discord", + "url": "https://discord.com/XzJapnwF" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x28A27ba716d306c842a4b5dA20a42e1d4D1E8d6b/logo.png b/blockchains/smartchain/assets/0x28A27ba716d306c842a4b5dA20a42e1d4D1E8d6b/logo.png new file mode 100644 index 00000000..9f552a29 Binary files /dev/null and b/blockchains/smartchain/assets/0x28A27ba716d306c842a4b5dA20a42e1d4D1E8d6b/logo.png differ diff --git a/blockchains/smartchain/assets/0x28B9aed756De31B6b362aA0f23211D13093EBb79/info.json b/blockchains/smartchain/assets/0x28B9aed756De31B6b362aA0f23211D13093EBb79/info.json new file mode 100644 index 00000000..a82d2f07 --- /dev/null +++ b/blockchains/smartchain/assets/0x28B9aed756De31B6b362aA0f23211D13093EBb79/info.json @@ -0,0 +1,36 @@ +{ + "name": "LunaGens ", + "type": "BEP20", + "symbol": "LUNG", + "decimals": 18, + "website": "https://www.lunagens.com", + "description": "We are KYC'ed by Doken, we want to make sure that our investors are comfortable while investing in LunaGens.", + "explorer": "https://bscscan.com/token/0x28B9aed756De31B6b362aA0f23211D13093EBb79", + "status": "active", + "id": "0x28B9aed756De31B6b362aA0f23211D13093EBb79", + "links": [ + { + "name": "x", + "url": "https://x.com/LunaGensOffcial" + }, + { + "name": "telegram", + "url": "https://t.me/LunaGensOfficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/profile.php?id=100083974249018" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lunagens" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lunagens/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x28B9aed756De31B6b362aA0f23211D13093EBb79/logo.png b/blockchains/smartchain/assets/0x28B9aed756De31B6b362aA0f23211D13093EBb79/logo.png new file mode 100644 index 00000000..6dbe4a13 Binary files /dev/null and b/blockchains/smartchain/assets/0x28B9aed756De31B6b362aA0f23211D13093EBb79/logo.png differ diff --git a/blockchains/smartchain/assets/0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a/info.json b/blockchains/smartchain/assets/0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a/info.json new file mode 100644 index 00000000..d0aca887 --- /dev/null +++ b/blockchains/smartchain/assets/0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a/info.json @@ -0,0 +1,28 @@ +{ + "name": "GamingShiba", + "type": "BEP20", + "symbol": "GamingShiba", + "decimals": 9, + "website": "https://www.gaming-shiba.com", + "description": "The modern technology and contemporary ambient that the internet created can not be imagined to function as a whole without crypto-currency.", + "explorer": "https://bscscan.com/token/0x290906ede0e30ed9f2ff1df056ae0f802b01fe2a", + "status": "active", + "id": "0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a", + "links": [ + { + "name": "x", + "url": "https://x.com/gamingshibabsc" + }, + { + "name": "telegram", + "url": "https://t.me/gamingshibabsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamingshiba/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a/logo.png b/blockchains/smartchain/assets/0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a/logo.png new file mode 100644 index 00000000..90346205 Binary files /dev/null and b/blockchains/smartchain/assets/0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a/logo.png differ diff --git a/blockchains/smartchain/assets/0x290c665656a67e0ea0784f90ECBaeFF77c884217/info.json b/blockchains/smartchain/assets/0x290c665656a67e0ea0784f90ECBaeFF77c884217/info.json new file mode 100644 index 00000000..d24cada5 --- /dev/null +++ b/blockchains/smartchain/assets/0x290c665656a67e0ea0784f90ECBaeFF77c884217/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tatcoin", + "website": "https://abitnetwork.com", + "description": "TAT is a utility token designed to create value and alleviate most financial problems faced by Africans", + "explorer": "https://bscscan.com/token/0x290c665656a67e0ea0784f90ECBaeFF77c884217", + "type": "BEP20", + "symbol": "TAT", + "decimals": 18, + "status": "active", + "id": "0x290c665656a67e0ea0784f90ECBaeFF77c884217" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x290c665656a67e0ea0784f90ECBaeFF77c884217/logo.png b/blockchains/smartchain/assets/0x290c665656a67e0ea0784f90ECBaeFF77c884217/logo.png new file mode 100644 index 00000000..ea5281a7 Binary files /dev/null and b/blockchains/smartchain/assets/0x290c665656a67e0ea0784f90ECBaeFF77c884217/logo.png differ diff --git a/blockchains/smartchain/assets/0x2921872530F53eb8E6fC388676B141EF41Ee2d4e/info.json b/blockchains/smartchain/assets/0x2921872530F53eb8E6fC388676B141EF41Ee2d4e/info.json new file mode 100644 index 00000000..f9892aaa --- /dev/null +++ b/blockchains/smartchain/assets/0x2921872530F53eb8E6fC388676B141EF41Ee2d4e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Space Soldier", + "website": "https://www.spacesoldier.finance/", + "description": "Space Soldier is the first deflationary token for veterans. Two functions occur during each trade: Reflection & LP Acquisition", + "explorer": "https://bscscan.com/token/0x2921872530F53eb8E6fC388676B141EF41Ee2d4e", + "type": "BEP20", + "symbol": "SOLDIER", + "decimals": 9, + "status": "active", + "id": "0x2921872530F53eb8E6fC388676B141EF41Ee2d4e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2921872530F53eb8E6fC388676B141EF41Ee2d4e/logo.png b/blockchains/smartchain/assets/0x2921872530F53eb8E6fC388676B141EF41Ee2d4e/logo.png new file mode 100644 index 00000000..cd4ce414 Binary files /dev/null and b/blockchains/smartchain/assets/0x2921872530F53eb8E6fC388676B141EF41Ee2d4e/logo.png differ diff --git a/blockchains/smartchain/assets/0x293C3Ee9ABaCb08BB8ceD107987F00EfD1539288/info.json b/blockchains/smartchain/assets/0x293C3Ee9ABaCb08BB8ceD107987F00EfD1539288/info.json new file mode 100644 index 00000000..d9fd3d00 --- /dev/null +++ b/blockchains/smartchain/assets/0x293C3Ee9ABaCb08BB8ceD107987F00EfD1539288/info.json @@ -0,0 +1,11 @@ +{ + "name": "Empire Token", + "website": "https://empiretoken.world/", + "description": "First Empire ever seen into the Blockchain and DeFi space!", + "explorer": "https://bscscan.com/token/0x293C3Ee9ABaCb08BB8ceD107987F00EfD1539288", + "type": "BEP20", + "symbol": "EMPIRE", + "decimals": 9, + "status": "active", + "id": "0x293C3Ee9ABaCb08BB8ceD107987F00EfD1539288" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x293C3Ee9ABaCb08BB8ceD107987F00EfD1539288/logo.png b/blockchains/smartchain/assets/0x293C3Ee9ABaCb08BB8ceD107987F00EfD1539288/logo.png new file mode 100644 index 00000000..ffaadc75 Binary files /dev/null and b/blockchains/smartchain/assets/0x293C3Ee9ABaCb08BB8ceD107987F00EfD1539288/logo.png differ diff --git a/blockchains/smartchain/assets/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E/info.json b/blockchains/smartchain/assets/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E/info.json new file mode 100644 index 00000000..8bdbda9f --- /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 00000000..3f7a083b 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 new file mode 100644 index 00000000..13edd476 --- /dev/null +++ b/blockchains/smartchain/assets/0x295F2122EbfCC5c38b4Bd33879A37348195b61fb/info.json @@ -0,0 +1,21 @@ +{ + "name": "Thanos Token", + "website": "https://thanostoken.finance/", + "description": "THANOS Token is the world’s first crypto-powered clothing marketplace, combining your NFT artworks into authentic, verified brands owned by you.", + "explorer": "https://bscscan.com/token/0x295F2122EbfCC5c38b4Bd33879A37348195b61fb", + "type": "BEP20", + "symbol": "THANOS", + "decimals": 9, + "status": "active", + "id": "0x295F2122EbfCC5c38b4Bd33879A37348195b61fb", + "links": [ + { + "name": "x", + "url": "https://x.com/TheThanosToken" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/W9abcM-WeDgyZTBh" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x295F2122EbfCC5c38b4Bd33879A37348195b61fb/logo.png b/blockchains/smartchain/assets/0x295F2122EbfCC5c38b4Bd33879A37348195b61fb/logo.png new file mode 100644 index 00000000..fc2939f6 Binary files /dev/null and b/blockchains/smartchain/assets/0x295F2122EbfCC5c38b4Bd33879A37348195b61fb/logo.png differ diff --git a/blockchains/smartchain/assets/0x2963dCc52549573BBFBe355674724528532C0867/info.json b/blockchains/smartchain/assets/0x2963dCc52549573BBFBe355674724528532C0867/info.json new file mode 100644 index 00000000..d5161d04 --- /dev/null +++ b/blockchains/smartchain/assets/0x2963dCc52549573BBFBe355674724528532C0867/info.json @@ -0,0 +1,33 @@ +{ + "name": "Project-X", + "type": "BEP20", + "symbol": "PEX", + "decimals": 18, + "website": "https://pexcoin.io/", + "description": "Metaverse platform made for artists and content creators", + "explorer": "https://bscscan.com/token/0x2963dCc52549573BBFBe355674724528532C0867", + "status": "active", + "id": "0x2963dCc52549573BBFBe355674724528532C0867", + "links": [ + { + "name": "x", + "url": "https://x.com/PexCoinProject" + }, + { + "name": "telegram", + "url": "https://t.me/Pexcoinproject" + }, + { + "name": "medium", + "url": "https://pexcoin.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pexcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pexcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2963dCc52549573BBFBe355674724528532C0867/logo.png b/blockchains/smartchain/assets/0x2963dCc52549573BBFBe355674724528532C0867/logo.png new file mode 100644 index 00000000..0d90b196 Binary files /dev/null and b/blockchains/smartchain/assets/0x2963dCc52549573BBFBe355674724528532C0867/logo.png differ diff --git a/blockchains/smartchain/assets/0x29745314B4D294B7C77cDB411B8AAa95923aae38/info.json b/blockchains/smartchain/assets/0x29745314B4D294B7C77cDB411B8AAa95923aae38/info.json new file mode 100644 index 00000000..534d656b --- /dev/null +++ b/blockchains/smartchain/assets/0x29745314B4D294B7C77cDB411B8AAa95923aae38/info.json @@ -0,0 +1,44 @@ +{ + "name": "PALM", + "type": "BEP20", + "symbol": "PALM", + "decimals": 18, + "website": "https://www.palmswap.org/", + "description": "There will be two protocols of Palmswap. The intention behind both protocols is to meet the needs of average and institutional-grade traders. We offer 100% on-chain perpetuals on v1 with a VAMM model and soon a hybrid infrastructure with order book on v2 to ensure optimal slippage, liquidity, and high-speed settlement of trades for traders.", + "explorer": "https://bscscan.com/token/0x29745314B4D294B7C77cDB411B8AAa95923aae38", + "status": "active", + "id": "0x29745314B4D294B7C77cDB411B8AAa95923aae38", + "links": [ + { + "name": "x", + "url": "https://x.com/Palmswaporg" + }, + { + "name": "github", + "url": "https://github.com/palmswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/palmswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/palmswap/" + }, + { + "name": "telegram", + "url": "https://t.me/Palmswapchat" + }, + { + "name": "whitepaper", + "url": "https://docs.palmswap.org/" + }, + { + "name": "medium", + "url": "https://palmswap.medium.com/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x29745314B4D294B7C77cDB411B8AAa95923aae38/logo.png b/blockchains/smartchain/assets/0x29745314B4D294B7C77cDB411B8AAa95923aae38/logo.png new file mode 100644 index 00000000..e599a74e Binary files /dev/null and b/blockchains/smartchain/assets/0x29745314B4D294B7C77cDB411B8AAa95923aae38/logo.png differ diff --git a/blockchains/smartchain/assets/0x29A1e54DE0fCE58E1018535d30aF77A9d2D940c4/info.json b/blockchains/smartchain/assets/0x29A1e54DE0fCE58E1018535d30aF77A9d2D940c4/info.json new file mode 100644 index 00000000..3b9b9ce5 --- /dev/null +++ b/blockchains/smartchain/assets/0x29A1e54DE0fCE58E1018535d30aF77A9d2D940c4/info.json @@ -0,0 +1,44 @@ +{ + "name": "HeroCatToken", + "type": "BEP20", + "symbol": "HCT", + "decimals": 18, + "website": "https://herocat.io", + "description": "Hero Cat game is a Metaverse about cat heros. It bringing new gamefi playand earn experience for its players. Players can use Hero Cat crypto to fight, develop, upgrade, and join battles. Players will earn crypto by playing or contributing to the community.", + "explorer": "https://bscscan.com/token/0x29A1e54DE0fCE58E1018535d30aF77A9d2D940c4", + "status": "active", + "id": "0x29A1e54DE0fCE58E1018535d30aF77A9d2D940c4", + "links": [ + { + "name": "x", + "url": "https://x.com/HeroCatGameFi" + }, + { + "name": "telegram", + "url": "https://t.me/herocatgamefi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/2hAGKY7dZK" + }, + { + "name": "whitepaper", + "url": "https://faqen.herocat.io/" + }, + { + "name": "facebook", + "url": "https://facebook.com/herocatgamefiio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/herocatgamefi/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hero-cat-token" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x29A1e54DE0fCE58E1018535d30aF77A9d2D940c4/logo.png b/blockchains/smartchain/assets/0x29A1e54DE0fCE58E1018535d30aF77A9d2D940c4/logo.png new file mode 100644 index 00000000..a6e18231 Binary files /dev/null and b/blockchains/smartchain/assets/0x29A1e54DE0fCE58E1018535d30aF77A9d2D940c4/logo.png differ diff --git a/blockchains/smartchain/assets/0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021/info.json b/blockchains/smartchain/assets/0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021/info.json new file mode 100644 index 00000000..3e2232b8 --- /dev/null +++ b/blockchains/smartchain/assets/0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021/info.json @@ -0,0 +1,40 @@ +{ + "name": "Trillioner", + "type": "BEP20", + "symbol": "TLC", + "decimals": 18, + "website": "https://trillioner.io", + "description": "The Trillioner crypto project aims to bridge the gap between traditional finance and the crypto world by offering financial services for both crypto projects and private users. ", + "explorer": "https://bscscan.com/token/0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021", + "status": "active", + "id": "0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021", + "links": [ + { + "name": "x", + "url": "https://x.com/Trillionertoken" + }, + { + "name": "github", + "url": "https://github.com/trillionertoken" + }, + { + "name": "telegram", + "url": "https://t.me/Trillionertoken" + }, + { + "name": "telegram_news", + "url": "https://t.me/Trillioner_News" + }, + { + "name": "whitepaper", + "url": "https://www.trillioner.io/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trillioner/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021/logo.png b/blockchains/smartchain/assets/0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021/logo.png new file mode 100644 index 00000000..d640ae25 Binary files /dev/null and b/blockchains/smartchain/assets/0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021/logo.png differ diff --git a/blockchains/smartchain/assets/0x29B73ACC51999399b579e42d65e63fd0FcC3AbCe/info.json b/blockchains/smartchain/assets/0x29B73ACC51999399b579e42d65e63fd0FcC3AbCe/info.json new file mode 100644 index 00000000..6c54b86e --- /dev/null +++ b/blockchains/smartchain/assets/0x29B73ACC51999399b579e42d65e63fd0FcC3AbCe/info.json @@ -0,0 +1,11 @@ +{ + "name": "SpaceNFT.Finance", + "type": "BEP20", + "symbol": "SpaceNFT", + "decimals": 8, + "website": "https://spacenft.finance/", + "description": "Create your experience ideas, make money, With SpaceNFT digital marketplace", + "explorer": "https://bscscan.com/token/0x29B73ACC51999399b579e42d65e63fd0FcC3AbCe", + "status": "active", + "id": "0x29B73ACC51999399b579e42d65e63fd0FcC3AbCe" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x29B73ACC51999399b579e42d65e63fd0FcC3AbCe/logo.png b/blockchains/smartchain/assets/0x29B73ACC51999399b579e42d65e63fd0FcC3AbCe/logo.png new file mode 100644 index 00000000..cbaf69dd Binary files /dev/null and b/blockchains/smartchain/assets/0x29B73ACC51999399b579e42d65e63fd0FcC3AbCe/logo.png differ diff --git a/blockchains/smartchain/assets/0x29a206A67fD4f410034885F5f03A8bB4aa4961aa/info.json b/blockchains/smartchain/assets/0x29a206A67fD4f410034885F5f03A8bB4aa4961aa/info.json new file mode 100644 index 00000000..e36f96e6 --- /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 00000000..3e3d81ae 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 new file mode 100644 index 00000000..95c1df8f --- /dev/null +++ b/blockchains/smartchain/assets/0x29b1E39A529d3B3cacEA55989594F71813e998Bb/info.json @@ -0,0 +1,25 @@ +{ + "name": "Dexioprotocol", + "type": "BEP20", + "symbol": "DEXI", + "decimals": 18, + "website": "https://www.dexioprotocol.com/", + "description": "Dexioprotocol provides the world with a new way of engagement to the world of blockchain and cryptocurrency.", + "explorer": "https://bscscan.com/token/0x29b1E39A529d3B3cacEA55989594F71813e998Bb", + "status": "active", + "id": "0x29b1E39A529d3B3cacEA55989594F71813e998Bb", + "links": [ + { + "name": "github", + "url": "https://github.com/Dexioprotocol" + }, + { + "name": "x", + "url": "https://x.com/dexioprotocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/dexioprotocoltoken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x29b1E39A529d3B3cacEA55989594F71813e998Bb/logo.png b/blockchains/smartchain/assets/0x29b1E39A529d3B3cacEA55989594F71813e998Bb/logo.png new file mode 100644 index 00000000..70a41dcb Binary files /dev/null and b/blockchains/smartchain/assets/0x29b1E39A529d3B3cacEA55989594F71813e998Bb/logo.png differ diff --git a/blockchains/smartchain/assets/0x29cED01C447166958605519F10DcF8b0255fB379/info.json b/blockchains/smartchain/assets/0x29cED01C447166958605519F10DcF8b0255fB379/info.json new file mode 100644 index 00000000..67549ff8 --- /dev/null +++ b/blockchains/smartchain/assets/0x29cED01C447166958605519F10DcF8b0255fB379/info.json @@ -0,0 +1,29 @@ +{ + "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://bscscan.com/token/0x29cED01C447166958605519F10DcF8b0255fB379", + "type": "BEP20", + "symbol": "FRAX", + "decimals": 18, + "status": "active", + "id": "0x29cED01C447166958605519F10DcF8b0255fB379", + "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/smartchain/assets/0x29cED01C447166958605519F10DcF8b0255fB379/logo.png b/blockchains/smartchain/assets/0x29cED01C447166958605519F10DcF8b0255fB379/logo.png new file mode 100644 index 00000000..762d2dd3 Binary files /dev/null and b/blockchains/smartchain/assets/0x29cED01C447166958605519F10DcF8b0255fB379/logo.png differ diff --git a/blockchains/smartchain/assets/0x29f920ddc62Fe53711a5c8B8FF16Fa5c75cA12A3/info.json b/blockchains/smartchain/assets/0x29f920ddc62Fe53711a5c8B8FF16Fa5c75cA12A3/info.json new file mode 100644 index 00000000..1096b371 --- /dev/null +++ b/blockchains/smartchain/assets/0x29f920ddc62Fe53711a5c8B8FF16Fa5c75cA12A3/info.json @@ -0,0 +1,11 @@ +{ + "name": "LOTDOG", + "website": "https://lotdog.io", + "description": "The revolutionary new auto-yield token with an added chance to win a jackpot of BNB. Every single day!", + "explorer": "https://bscscan.com/token/0x29f920ddc62Fe53711a5c8B8FF16Fa5c75cA12A3", + "type": "BEP20", + "symbol": "LOTDOG", + "decimals": 9, + "status": "active", + "id": "0x29f920ddc62Fe53711a5c8B8FF16Fa5c75cA12A3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x29f920ddc62Fe53711a5c8B8FF16Fa5c75cA12A3/logo.png b/blockchains/smartchain/assets/0x29f920ddc62Fe53711a5c8B8FF16Fa5c75cA12A3/logo.png new file mode 100644 index 00000000..86ed5be6 Binary files /dev/null and b/blockchains/smartchain/assets/0x29f920ddc62Fe53711a5c8B8FF16Fa5c75cA12A3/logo.png differ diff --git a/blockchains/smartchain/assets/0x2A0F5257F4bfE6c75cd58A14A0e7c4651E2160DE/info.json b/blockchains/smartchain/assets/0x2A0F5257F4bfE6c75cd58A14A0e7c4651E2160DE/info.json new file mode 100644 index 00000000..1d20a6dd --- /dev/null +++ b/blockchains/smartchain/assets/0x2A0F5257F4bfE6c75cd58A14A0e7c4651E2160DE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Koala Token", + "type": "BEP20", + "symbol": "MKOALA", + "decimals": 0, + "website": "https://moonkoala.finance/", + "description": "A Deflationary Cryptocurrency on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x2A0F5257F4bfE6c75cd58A14A0e7c4651E2160DE", + "status": "active", + "id": "0x2A0F5257F4bfE6c75cd58A14A0e7c4651E2160DE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2A0F5257F4bfE6c75cd58A14A0e7c4651E2160DE/logo.png b/blockchains/smartchain/assets/0x2A0F5257F4bfE6c75cd58A14A0e7c4651E2160DE/logo.png new file mode 100644 index 00000000..b1d1945f Binary files /dev/null and b/blockchains/smartchain/assets/0x2A0F5257F4bfE6c75cd58A14A0e7c4651E2160DE/logo.png differ diff --git a/blockchains/smartchain/assets/0x2A17Dc11a1828725cdB318E0036ACF12727d27a2/info.json b/blockchains/smartchain/assets/0x2A17Dc11a1828725cdB318E0036ACF12727d27a2/info.json new file mode 100644 index 00000000..e9477725 --- /dev/null +++ b/blockchains/smartchain/assets/0x2A17Dc11a1828725cdB318E0036ACF12727d27a2/info.json @@ -0,0 +1,25 @@ +{ + "name": "Arena Token", + "website": "https://www.arenaswap.com/", + "description": "Arena Token is a game token issued by ArenaSwap on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x2A17Dc11a1828725cdB318E0036ACF12727d27a2", + "type": "BEP20", + "symbol": "ARENA", + "decimals": 18, + "status": "active", + "id": "0x2A17Dc11a1828725cdB318E0036ACF12727d27a2", + "links": [ + { + "name": "telegram", + "url": "https://t.me/arenaswap" + }, + { + "name": "x", + "url": "https://x.com/ArenaSwap" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ArenaSwap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2A17Dc11a1828725cdB318E0036ACF12727d27a2/logo.png b/blockchains/smartchain/assets/0x2A17Dc11a1828725cdB318E0036ACF12727d27a2/logo.png new file mode 100644 index 00000000..9f502eb4 Binary files /dev/null and b/blockchains/smartchain/assets/0x2A17Dc11a1828725cdB318E0036ACF12727d27a2/logo.png differ diff --git a/blockchains/smartchain/assets/0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d/info.json b/blockchains/smartchain/assets/0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d/info.json new file mode 100644 index 00000000..53fb79b6 --- /dev/null +++ b/blockchains/smartchain/assets/0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d/info.json @@ -0,0 +1,21 @@ +{ + "name": "Climb Token Finance", + "website": "https://www.climbtoken.finance/", + "description": "First Exchange-Traded Token Fund (ETTF) DEX, Farming, Lending, Staking, NFT, and ETTF.", + "explorer": "https://bscscan.com/token/0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d", + "type": "BEP20", + "symbol": "CLIMB", + "decimals": 8, + "status": "active", + "id": "0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d", + "links": [ + { + "name": "x", + "url": "https://x.com/ClimbtToken" + }, + { + "name": "telegram", + "url": "https://t.me/climbtoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d/logo.png b/blockchains/smartchain/assets/0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d/logo.png new file mode 100644 index 00000000..18a42961 Binary files /dev/null and b/blockchains/smartchain/assets/0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d/logo.png differ diff --git a/blockchains/smartchain/assets/0x2A3E1D095F2902C9B6Da1bFF7813a7B2fc65C3dA/info.json b/blockchains/smartchain/assets/0x2A3E1D095F2902C9B6Da1bFF7813a7B2fc65C3dA/info.json new file mode 100644 index 00000000..04937c53 --- /dev/null +++ b/blockchains/smartchain/assets/0x2A3E1D095F2902C9B6Da1bFF7813a7B2fc65C3dA/info.json @@ -0,0 +1,32 @@ +{ + "name": "Red Floki", + "type": "BEP20", + "symbol": "REDFLOKI", + "decimals": 9, + "website": "https://redfloki.com", + "description": "Red Floki is a Deflationary Token That Charges Tx Fees On Everything But Buys. The Fees Charged On All Non-Buy Transactions Help Reward And Protect All HOLDRs. Everyone loves profits.", + "explorer": "https://bscscan.com/token/0x2A3E1D095F2902C9B6Da1bFF7813a7B2fc65C3dA", + "status": "active", + "id": "0x2A3E1D095F2902C9B6Da1bFF7813a7B2fc65C3dA", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/RedFloki" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/red-floki/" + }, + { + "name": "telegram", + "url": "https://t.me/Red_Floki" + }, + { + "name": "telegram_news", + "url": "https://t.me/RedFloki_Giveaways" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2A3E1D095F2902C9B6Da1bFF7813a7B2fc65C3dA/logo.png b/blockchains/smartchain/assets/0x2A3E1D095F2902C9B6Da1bFF7813a7B2fc65C3dA/logo.png new file mode 100644 index 00000000..37891c0b Binary files /dev/null and b/blockchains/smartchain/assets/0x2A3E1D095F2902C9B6Da1bFF7813a7B2fc65C3dA/logo.png differ diff --git a/blockchains/smartchain/assets/0x2A3cbF64C8181DB4a25D41D4d7a7Db9984C59DAC/info.json b/blockchains/smartchain/assets/0x2A3cbF64C8181DB4a25D41D4d7a7Db9984C59DAC/info.json new file mode 100644 index 00000000..072fcf6e --- /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 00000000..2ce033b0 Binary files /dev/null and b/blockchains/smartchain/assets/0x2A3cbF64C8181DB4a25D41D4d7a7Db9984C59DAC/logo.png differ diff --git a/blockchains/smartchain/assets/0x2A42B6896E4B756621f08A1996162D8EA5A9c580/info.json b/blockchains/smartchain/assets/0x2A42B6896E4B756621f08A1996162D8EA5A9c580/info.json new file mode 100644 index 00000000..2027cfca --- /dev/null +++ b/blockchains/smartchain/assets/0x2A42B6896E4B756621f08A1996162D8EA5A9c580/info.json @@ -0,0 +1,11 @@ +{ + "name": "Floki Shiba Inu", + "website": "https://www.flokishibainu.com", + "description": "Floki Shiba Inu is a yield-generating deflationary charitable cryptocurrency that runs on Binance Smart Chain. It rewards holders through reflections by taxing transactions. It charity is dedicated in dogs protection and creating dog shelter.", + "explorer": "https://bscscan.com/token/0x2A42B6896E4B756621f08A1996162D8EA5A9c580", + "type": "BEP20", + "symbol": "FLOKISHIB", + "decimals": 9, + "status": "active", + "id": "0x2A42B6896E4B756621f08A1996162D8EA5A9c580" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2A42B6896E4B756621f08A1996162D8EA5A9c580/logo.png b/blockchains/smartchain/assets/0x2A42B6896E4B756621f08A1996162D8EA5A9c580/logo.png new file mode 100644 index 00000000..03a7a69a Binary files /dev/null and b/blockchains/smartchain/assets/0x2A42B6896E4B756621f08A1996162D8EA5A9c580/logo.png differ diff --git a/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/info.json b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/info.json new file mode 100644 index 00000000..ec7fdf06 --- /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 00000000..31887729 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 new file mode 100644 index 00000000..056ef29e --- /dev/null +++ b/blockchains/smartchain/assets/0x2A48eCe377b87ce941406657B9278b4459595E06/info.json @@ -0,0 +1,32 @@ +{ + "name": "Lunatics", + "type": "BEP20", + "symbol": "LunaT", + "decimals": 9, + "website": "https://lunaticstoken.com", + "description": "Lunatics Token is a hyper deflationary project, dedicated to rewarding lunatic token holders in luna classic, and burning the massive supply of Luna classic. ", + "explorer": "https://bscscan.com/token/0x2A48eCe377b87ce941406657B9278b4459595E06", + "status": "active", + "id": "0x2A48eCe377b87ce941406657B9278b4459595E06", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lunatics" + }, + { + "name": "x", + "url": "https://x.com/LunaticsToken" + }, + { + "name": "telegram", + "url": "https://t.me/LunaticsTokenOfficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/LunaticsTokenOfficial/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2A48eCe377b87ce941406657B9278b4459595E06/logo.png b/blockchains/smartchain/assets/0x2A48eCe377b87ce941406657B9278b4459595E06/logo.png new file mode 100644 index 00000000..a8269e8f Binary files /dev/null and b/blockchains/smartchain/assets/0x2A48eCe377b87ce941406657B9278b4459595E06/logo.png differ diff --git a/blockchains/smartchain/assets/0x2A8e74f2aaA893B23bb3373A676aB8f6e7408888/info.json b/blockchains/smartchain/assets/0x2A8e74f2aaA893B23bb3373A676aB8f6e7408888/info.json new file mode 100644 index 00000000..fd8b22e6 --- /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/0x2A9718defF471f3Bb91FA0ECEAB14154F150a385/info.json b/blockchains/smartchain/assets/0x2A9718defF471f3Bb91FA0ECEAB14154F150a385/info.json new file mode 100644 index 00000000..d3c49299 --- /dev/null +++ b/blockchains/smartchain/assets/0x2A9718defF471f3Bb91FA0ECEAB14154F150a385/info.json @@ -0,0 +1,11 @@ +{ + "name": "$ElonGate", + "website": "https://elongate.cc", + "description": "$ElonGate is a deflationary cryptocurrency on the Binance Smart Chain, using the power of memes to make huge impacts for charity.", + "explorer": "https://bscscan.com/token/0x2A9718defF471f3Bb91FA0ECEAB14154F150a385", + "type": "BEP20", + "symbol": "ELG", + "decimals": 9, + "status": "active", + "id": "0x2A9718defF471f3Bb91FA0ECEAB14154F150a385" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2A9718defF471f3Bb91FA0ECEAB14154F150a385/logo.png b/blockchains/smartchain/assets/0x2A9718defF471f3Bb91FA0ECEAB14154F150a385/logo.png new file mode 100644 index 00000000..79188259 Binary files /dev/null and b/blockchains/smartchain/assets/0x2A9718defF471f3Bb91FA0ECEAB14154F150a385/logo.png differ diff --git a/blockchains/smartchain/assets/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025/info.json b/blockchains/smartchain/assets/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025/info.json new file mode 100644 index 00000000..b8b1c603 --- /dev/null +++ b/blockchains/smartchain/assets/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025/info.json @@ -0,0 +1,32 @@ +{ + "name": "ArenaPlay", + "type": "BEP20", + "symbol": "APC", + "decimals": 18, + "website": "https://www.arenaplaycoin.com/ ", + "description": "ArenaPlay is committed to building on-chain infrastructure covering; gaming, quizzes, E-Sports, NFT, and the wider Meta-Universe.", + "explorer": "https://bscscan.com/token/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025", + "status": "active", + "id": "0x2AA504586d6CaB3C59Fa629f74c586d78b93A025", + "links": [ + { + "name": "x", + "url": "https://x.com/ArenaPlayAPC" + }, + { + "name": "telegram", + "url": "https://t.me/ArenaPlayOnly" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arenaplay/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/arenaplay" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025/logo.png b/blockchains/smartchain/assets/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025/logo.png new file mode 100644 index 00000000..7e564717 Binary files /dev/null and b/blockchains/smartchain/assets/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025/logo.png differ diff --git a/blockchains/smartchain/assets/0x2AADa8138787Eb7A8907232dA6756c6Ac6186ef2/info.json b/blockchains/smartchain/assets/0x2AADa8138787Eb7A8907232dA6756c6Ac6186ef2/info.json new file mode 100644 index 00000000..47e67cab --- /dev/null +++ b/blockchains/smartchain/assets/0x2AADa8138787Eb7A8907232dA6756c6Ac6186ef2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Secured Marsupial", + "type": "BEP20", + "symbol": "SMARSUP", + "decimals": 9, + "website": "https://marsupial.finance", + "description": "Secured Marsupial is a 100% community run token with proven \"tokenomics\".Our aim is to be a breath of fresh air in the ever-evolving crypto platform by our true legitmacy and honesty!Join our Mars mission!", + "explorer": "https://bscscan.com/token/0x2AADa8138787Eb7A8907232dA6756c6Ac6186ef2", + "status": "active", + "id": "0x2AADa8138787Eb7A8907232dA6756c6Ac6186ef2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2AADa8138787Eb7A8907232dA6756c6Ac6186ef2/logo.png b/blockchains/smartchain/assets/0x2AADa8138787Eb7A8907232dA6756c6Ac6186ef2/logo.png new file mode 100644 index 00000000..d2f9d634 Binary files /dev/null and b/blockchains/smartchain/assets/0x2AADa8138787Eb7A8907232dA6756c6Ac6186ef2/logo.png differ diff --git a/blockchains/smartchain/assets/0x2AE7Bf2937F47FEDbDcE48db8aCa4c5e0b814632/info.json b/blockchains/smartchain/assets/0x2AE7Bf2937F47FEDbDcE48db8aCa4c5e0b814632/info.json new file mode 100644 index 00000000..b78375af --- /dev/null +++ b/blockchains/smartchain/assets/0x2AE7Bf2937F47FEDbDcE48db8aCa4c5e0b814632/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeYield", + "website": "https://safeyield.org", + "description": "SafeYield is a reflect token on the Binance Smart Chain A reflect fee is applied to all $SafeYield transactions and redistributes tokens directly to wallets of holders.", + "explorer": "https://bscscan.com/token/0x2AE7Bf2937F47FEDbDcE48db8aCa4c5e0b814632", + "type": "BEP20", + "symbol": "SAFEYIELD", + "decimals": 8, + "status": "active", + "id": "0x2AE7Bf2937F47FEDbDcE48db8aCa4c5e0b814632" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2AE7Bf2937F47FEDbDcE48db8aCa4c5e0b814632/logo.png b/blockchains/smartchain/assets/0x2AE7Bf2937F47FEDbDcE48db8aCa4c5e0b814632/logo.png new file mode 100644 index 00000000..ad076550 Binary files /dev/null and b/blockchains/smartchain/assets/0x2AE7Bf2937F47FEDbDcE48db8aCa4c5e0b814632/logo.png differ diff --git a/blockchains/smartchain/assets/0x2Ac26EC236df5D1d2Ad1A6Dd4E448A90E45DC35D/info.json b/blockchains/smartchain/assets/0x2Ac26EC236df5D1d2Ad1A6Dd4E448A90E45DC35D/info.json new file mode 100644 index 00000000..09dc0371 --- /dev/null +++ b/blockchains/smartchain/assets/0x2Ac26EC236df5D1d2Ad1A6Dd4E448A90E45DC35D/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares TIPS Bond ETF (Ondo Tokenized)", + "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 00000000..731ceba6 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 00000000..51e0a580 --- /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 00000000..abf2400a 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 00000000..f8645b8c --- /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 new file mode 100644 index 00000000..86651054 --- /dev/null +++ b/blockchains/smartchain/assets/0x2B2fF80c489dad868318a19FD6F258889a026da5/info.json @@ -0,0 +1,41 @@ +{ + "name": "DEXIT", + "type": "BEP20", + "symbol": "DXT", + "decimals": 9, + "website": "https://dexit.finance", + "description": "DEXIT planning to Build world’s most advanced cryptocurrency exchange. Combining the speed and features of a centralized exchange with the security of a DEX, will be the only cryptocurrency exchange that does not compromise performance or security. The new exchange makes it easier than ever for market makers to integrate with their existing infrastructure and provide deep liquidity in a secure manner.", + "explorer": "https://bscscan.com/token/0x2B2fF80c489dad868318a19FD6F258889a026da5", + "status": "active", + "id": "0x2B2fF80c489dad868318a19FD6F258889a026da5", + "links": [ + { + "name": "x", + "url": "https://x.com/DexitFinance" + }, + { + "name": "github", + "url": "https://github.com/Dexit-Finance/DexitFinance" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/sXosj7yWEq0zYWM0" + }, + { + "name": "whitepaper", + "url": "https://dexit.finance/wp-content/uploads/2021/07/Dexit.Finance-White-Paper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/Dexit.Finance" + }, + { + "name": "medium", + "url": "https://medium.com/@Dexit.finance" + }, + { + "name": "forum", + "url": "https://medium.com/@Dexit.finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2B2fF80c489dad868318a19FD6F258889a026da5/logo.png b/blockchains/smartchain/assets/0x2B2fF80c489dad868318a19FD6F258889a026da5/logo.png new file mode 100644 index 00000000..cc4f8d1c Binary files /dev/null and b/blockchains/smartchain/assets/0x2B2fF80c489dad868318a19FD6F258889a026da5/logo.png differ diff --git a/blockchains/smartchain/assets/0x2B3F34e9D4b127797CE6244Ea341a83733ddd6E4/info.json b/blockchains/smartchain/assets/0x2B3F34e9D4b127797CE6244Ea341a83733ddd6E4/info.json new file mode 100644 index 00000000..4c92057c --- /dev/null +++ b/blockchains/smartchain/assets/0x2B3F34e9D4b127797CE6244Ea341a83733ddd6E4/info.json @@ -0,0 +1,33 @@ +{ + "name": "Floki Inu", + "type": "BEP20", + "symbol": "FLOKI", + "decimals": 9, + "website": "https://theflokiinu.com", + "description": "Floki Inu is a meme token that provides deflationary rewards to holders.", + "explorer": "https://bscscan.com/token/0x2B3F34e9D4b127797CE6244Ea341a83733ddd6E4", + "status": "abandoned", + "id": "0x2B3F34e9D4b127797CE6244Ea341a83733ddd6E4", + "migrate": { + "asset_id": "c20000714_t0xfb5B838b6cfEEdC2873aB27866079AC55363D37E", + "url": "https://x.com/RealFlokiInu/status/1485298553757089801" + }, + "links": [ + { + "name": "telegram", + "url": "https://t.me/FlokiInuToken" + }, + { + "name": "x", + "url": "https://x.com/RealFlokiInu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/floki-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/floki-inu" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2B54d3d7aB8e65895168938F7145F39225Db7CE5/info.json b/blockchains/smartchain/assets/0x2B54d3d7aB8e65895168938F7145F39225Db7CE5/info.json new file mode 100644 index 00000000..cdb449a8 --- /dev/null +++ b/blockchains/smartchain/assets/0x2B54d3d7aB8e65895168938F7145F39225Db7CE5/info.json @@ -0,0 +1,11 @@ +{ + "name": "EyeSwap", + "type": "BEP20", + "symbol": "EYE", + "decimals": 18, + "website": "https://eyeswap.finance/", + "description": "EYE is a fully decentralized token create a stable token", + "explorer": "https://bscscan.com/token/0x2B54d3d7aB8e65895168938F7145F39225Db7CE5", + "status": "active", + "id": "0x2B54d3d7aB8e65895168938F7145F39225Db7CE5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2B54d3d7aB8e65895168938F7145F39225Db7CE5/logo.png b/blockchains/smartchain/assets/0x2B54d3d7aB8e65895168938F7145F39225Db7CE5/logo.png new file mode 100644 index 00000000..50998153 Binary files /dev/null and b/blockchains/smartchain/assets/0x2B54d3d7aB8e65895168938F7145F39225Db7CE5/logo.png differ diff --git a/blockchains/smartchain/assets/0x2B5D9ADea07B590b638FFc165792b2C610EdA649/info.json b/blockchains/smartchain/assets/0x2B5D9ADea07B590b638FFc165792b2C610EdA649/info.json new file mode 100644 index 00000000..a6f4f1dd --- /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 00000000..578e8623 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 00000000..f3b6e4e7 --- /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 00000000..224d299b Binary files /dev/null and b/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/logo.png differ diff --git a/blockchains/smartchain/assets/0x2B90E061a517dB2BbD7E39Ef7F733Fd234B494CA/info.json b/blockchains/smartchain/assets/0x2B90E061a517dB2BbD7E39Ef7F733Fd234B494CA/info.json new file mode 100644 index 00000000..2fa3d40c --- /dev/null +++ b/blockchains/smartchain/assets/0x2B90E061a517dB2BbD7E39Ef7F733Fd234B494CA/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from Avalanche)", + "type": "BEP20", + "symbol": "USDTav", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://bscscan.com/token/0x2B90E061a517dB2BbD7E39Ef7F733Fd234B494CA", + "status": "active", + "id": "0x2B90E061a517dB2BbD7E39Ef7F733Fd234B494CA", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2B90E061a517dB2BbD7E39Ef7F733Fd234B494CA/logo.png b/blockchains/smartchain/assets/0x2B90E061a517dB2BbD7E39Ef7F733Fd234B494CA/logo.png new file mode 100644 index 00000000..9e63d735 Binary files /dev/null and b/blockchains/smartchain/assets/0x2B90E061a517dB2BbD7E39Ef7F733Fd234B494CA/logo.png differ diff --git a/blockchains/smartchain/assets/0x2BA8c3066F36B998bC74CE8DcE260Fb5D2ba6bCc/info.json b/blockchains/smartchain/assets/0x2BA8c3066F36B998bC74CE8DcE260Fb5D2ba6bCc/info.json new file mode 100644 index 00000000..2c1f3b96 --- /dev/null +++ b/blockchains/smartchain/assets/0x2BA8c3066F36B998bC74CE8DcE260Fb5D2ba6bCc/info.json @@ -0,0 +1,33 @@ +{ + "name": "Big Doge Coin", + "website": "https://bigdoge.io/", + "description": "$BigeDoge is the token of the First Decentralized Gaming World on Binance Smart Chain. The main focus is to provide the best entertainment possible for our players on blockchain, and the token is used among players. $BigeDoge is used for trading, in game activities and forming votes on important dicisions of the project among holders.", + "explorer": "https://bscscan.com/token/0x2BA8c3066F36B998bC74CE8DcE260Fb5D2ba6bCc", + "symbol": "BigDoge", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x2BA8c3066F36B998bC74CE8DcE260Fb5D2ba6bCc", + "links": [ + { + "name": "github", + "url": "https://github.com/bigdogecoin/" + }, + { + "name": "x", + "url": "https://x.com/bigdogecrypto" + }, + { + "name": "telegram", + "url": "https://t.me/bigdogecoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/bigdogecrypto/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCP6HVzQf3ClG9hgZEPFz7tA" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2BA8c3066F36B998bC74CE8DcE260Fb5D2ba6bCc/logo.png b/blockchains/smartchain/assets/0x2BA8c3066F36B998bC74CE8DcE260Fb5D2ba6bCc/logo.png new file mode 100644 index 00000000..ef36bef3 Binary files /dev/null and b/blockchains/smartchain/assets/0x2BA8c3066F36B998bC74CE8DcE260Fb5D2ba6bCc/logo.png differ diff --git a/blockchains/smartchain/assets/0x2BCDCf1ef1320Fc5F9a71CA0BD1504D6125F7569/info.json b/blockchains/smartchain/assets/0x2BCDCf1ef1320Fc5F9a71CA0BD1504D6125F7569/info.json new file mode 100644 index 00000000..7d825045 --- /dev/null +++ b/blockchains/smartchain/assets/0x2BCDCf1ef1320Fc5F9a71CA0BD1504D6125F7569/info.json @@ -0,0 +1,25 @@ +{ + "name": "DisCas Vision", + "type": "BEP20", + "symbol": "DISC", + "decimals": 18, + "website": "https://discas.vision/", + "description": "DisCas Vision is the world’s first and only decentralized platform, built on blockchain technology and smart contracts. We unite governments, organizations and communities into a decentralized, open and fair network. The smart contract technology that underlies the platform will provide an automated and transparent system for investment and profit distribution. For more information please visit our site and our offering and solutions is here https://discas.vision/white-paper/", + "explorer": "https://bscscan.com/token/0x2BCDCf1ef1320Fc5F9a71CA0BD1504D6125F7569", + "status": "active", + "id": "0x2BCDCf1ef1320Fc5F9a71CA0BD1504D6125F7569", + "links": [ + { + "name": "x", + "url": "https://x.com/discasvision" + }, + { + "name": "telegram", + "url": "https://t.me/discasvision" + }, + { + "name": "facebook", + "url": "https://facebook.com/discas.vision" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2BCDCf1ef1320Fc5F9a71CA0BD1504D6125F7569/logo.png b/blockchains/smartchain/assets/0x2BCDCf1ef1320Fc5F9a71CA0BD1504D6125F7569/logo.png new file mode 100644 index 00000000..0ee77e5e Binary files /dev/null and b/blockchains/smartchain/assets/0x2BCDCf1ef1320Fc5F9a71CA0BD1504D6125F7569/logo.png differ diff --git a/blockchains/smartchain/assets/0x2Bc4eb013DDee29D37920938B96d353171289B7C/info.json b/blockchains/smartchain/assets/0x2Bc4eb013DDee29D37920938B96d353171289B7C/info.json new file mode 100644 index 00000000..d4b56281 --- /dev/null +++ b/blockchains/smartchain/assets/0x2Bc4eb013DDee29D37920938B96d353171289B7C/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream Binance USD", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x2Bc4eb013DDee29D37920938B96d353171289B7C", + "type": "BEP20", + "symbol": "crBUSD", + "decimals": 8, + "status": "active", + "id": "0x2Bc4eb013DDee29D37920938B96d353171289B7C", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2Bc4eb013DDee29D37920938B96d353171289B7C/logo.png b/blockchains/smartchain/assets/0x2Bc4eb013DDee29D37920938B96d353171289B7C/logo.png new file mode 100644 index 00000000..53e2ea64 Binary files /dev/null and b/blockchains/smartchain/assets/0x2Bc4eb013DDee29D37920938B96d353171289B7C/logo.png differ diff --git a/blockchains/smartchain/assets/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751/info.json b/blockchains/smartchain/assets/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751/info.json new file mode 100644 index 00000000..97950c11 --- /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 00000000..8bd1c642 Binary files /dev/null and b/blockchains/smartchain/assets/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751/logo.png differ diff --git a/blockchains/smartchain/assets/0x2C125b09C2DBed3d1669a3183298285e5cf46154/info.json b/blockchains/smartchain/assets/0x2C125b09C2DBed3d1669a3183298285e5cf46154/info.json new file mode 100644 index 00000000..65c49fe3 --- /dev/null +++ b/blockchains/smartchain/assets/0x2C125b09C2DBed3d1669a3183298285e5cf46154/info.json @@ -0,0 +1,14 @@ +{ + "name": "Moonsafe Token", + "website": "https://moonsafe.xyz", + "description": "A community-owned, community-run coin that rewards it's holders for holding by redistributing a share of the transaction fees. Based on the RFI + LIQ protocols.", + "explorer": "https://bscscan.com/token/0x2c125b09c2dbed3d1669a3183298285e5cf46154", + "type": "BEP20", + "symbol": "MOONSAFE", + "decimals": 9, + "status": "active", + "id": "0x2C125b09C2DBed3d1669a3183298285e5cf46154", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2C125b09C2DBed3d1669a3183298285e5cf46154/logo.png b/blockchains/smartchain/assets/0x2C125b09C2DBed3d1669a3183298285e5cf46154/logo.png new file mode 100644 index 00000000..e7d0aaec Binary files /dev/null and b/blockchains/smartchain/assets/0x2C125b09C2DBed3d1669a3183298285e5cf46154/logo.png differ diff --git a/blockchains/smartchain/assets/0x2C40a80565B595C03cd94217c077c47E3F41937E/info.json b/blockchains/smartchain/assets/0x2C40a80565B595C03cd94217c077c47E3F41937E/info.json new file mode 100644 index 00000000..277696ce --- /dev/null +++ b/blockchains/smartchain/assets/0x2C40a80565B595C03cd94217c077c47E3F41937E/info.json @@ -0,0 +1,21 @@ +{ + "name": "IronyMan", + "website": "http://www.bscironyman.com", + "description": "IronyMan token is the original meme token created in response to Elon Musk's tweet where he had the idea to do a skit on his SNL appearance, where he will play as Irony man and defeat people with Irony. The token will be used as a financial means of exchange primarily. The token will also be a strong charitable entity with intent to donate to children with rare forms of Anemia.", + "explorer": "https://bscscan.com/token/0x2c40a80565b595c03cd94217c077c47e3f41937e", + "type": "BEP20", + "symbol": "IRONY", + "decimals": 9, + "status": "active", + "id": "0x2C40a80565B595C03cd94217c077c47E3F41937E", + "links": [ + { + "name": "x", + "url": "https://x.com/BSC_IronyMan" + }, + { + "name": "telegram", + "url": "https://t.me/IronyManBSC" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2C40a80565B595C03cd94217c077c47E3F41937E/logo.png b/blockchains/smartchain/assets/0x2C40a80565B595C03cd94217c077c47E3F41937E/logo.png new file mode 100644 index 00000000..6c036327 Binary files /dev/null and b/blockchains/smartchain/assets/0x2C40a80565B595C03cd94217c077c47E3F41937E/logo.png differ diff --git a/blockchains/smartchain/assets/0x2C80bC9bFa4EC680EfB949C51806bDDEE5Ac8299/info.json b/blockchains/smartchain/assets/0x2C80bC9bFa4EC680EfB949C51806bDDEE5Ac8299/info.json new file mode 100644 index 00000000..a9af05b7 --- /dev/null +++ b/blockchains/smartchain/assets/0x2C80bC9bFa4EC680EfB949C51806bDDEE5Ac8299/info.json @@ -0,0 +1,11 @@ +{ + "name": "BscArmy", + "website": "https://bsc.army/", + "description": "BSC Army is the first DAO (decentralized autonomous organization) for social media industries on BSC, and a community-centered initiative that strives to promote the adoption of BSC and blockchain in general.", + "explorer": "https://bscscan.com/token/0x2c80bc9bfa4ec680efb949c51806bddee5ac8299", + "type": "BEP20", + "symbol": "BARMY", + "decimals": 9, + "status": "active", + "id": "0x2C80bC9bFa4EC680EfB949C51806bDDEE5Ac8299" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2C80bC9bFa4EC680EfB949C51806bDDEE5Ac8299/logo.png b/blockchains/smartchain/assets/0x2C80bC9bFa4EC680EfB949C51806bDDEE5Ac8299/logo.png new file mode 100644 index 00000000..64ec796a Binary files /dev/null and b/blockchains/smartchain/assets/0x2C80bC9bFa4EC680EfB949C51806bDDEE5Ac8299/logo.png differ diff --git a/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/info.json b/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/info.json new file mode 100644 index 00000000..6dbdd0fa --- /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 00000000..5e3bf6cc 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 new file mode 100644 index 00000000..62220a86 --- /dev/null +++ b/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/info.json @@ -0,0 +1,52 @@ +{ + "name": "Lenda", + "type": "BEP20", + "symbol": "LENDA", + "decimals": 18, + "website": "https://lenda.finance/", + "description": "Your secure financial crypto partner. Get your free wallet for Lenda, Bitcoin and more than 10 other cryptocurrencies.", + "explorer": "https://bscscan.com/token/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E", + "status": "active", + "id": "0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E", + "links": [ + { + "name": "github", + "url": "https://github.com/LendaFinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lenda" + }, + { + "name": "x", + "url": "https://x.com/LendaFinance" + }, + { + "name": "telegram", + "url": "https://t.me/lendafinance" + }, + { + "name": "facebook", + "url": "https://facebook.com/Lenda-Finance-105680315331951" + }, + { + "name": "whitepaper", + "url": "https://lenda.finance/whitepaper.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCcwhFOqEvfe-IqrmJF7yrcQ" + }, + { + "name": "source_code", + "url": "https://github.com/LendaFinance/lenda-finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lenda/" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/logo.png b/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/logo.png new file mode 100644 index 00000000..dadbd922 Binary files /dev/null and b/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/logo.png differ diff --git a/blockchains/smartchain/assets/0x2D81ed6edee72d454a5baF51e40704e8c377DB2A/info.json b/blockchains/smartchain/assets/0x2D81ed6edee72d454a5baF51e40704e8c377DB2A/info.json new file mode 100644 index 00000000..b8891936 --- /dev/null +++ b/blockchains/smartchain/assets/0x2D81ed6edee72d454a5baF51e40704e8c377DB2A/info.json @@ -0,0 +1,21 @@ +{ + "name": "FomoDota", + "type": "BEP20", + "symbol": "FDOTA", + "decimals": 9, + "website": "https://fomodota.org", + "description": "FomoDOTA was founded in 2021 in the purpose of building FOMO MOBA Ecosystem for all e-sports gamers to achieve more influence of gaming on blockchain.", + "explorer": "https://bscscan.com/token/0x2d81ed6edee72d454a5baf51e40704e8c377db2a", + "status": "active", + "id": "0x2D81ed6edee72d454a5baF51e40704e8c377DB2A", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Fomodota_BSC_EN" + }, + { + "name": "x", + "url": "https://x.com/FomoDOTA_BSC" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2D81ed6edee72d454a5baF51e40704e8c377DB2A/logo.png b/blockchains/smartchain/assets/0x2D81ed6edee72d454a5baF51e40704e8c377DB2A/logo.png new file mode 100644 index 00000000..a93c5236 Binary files /dev/null and b/blockchains/smartchain/assets/0x2D81ed6edee72d454a5baF51e40704e8c377DB2A/logo.png differ diff --git a/blockchains/smartchain/assets/0x2D8269Dae518e78D95110dbFADf1fb479b8152e7/info.json b/blockchains/smartchain/assets/0x2D8269Dae518e78D95110dbFADf1fb479b8152e7/info.json new file mode 100644 index 00000000..aaa740e2 --- /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 00000000..a78838d3 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 new file mode 100644 index 00000000..a43ab0e4 --- /dev/null +++ b/blockchains/smartchain/assets/0x2D862c9FC46608d7ff83293cEB83330D6135BE5E/info.json @@ -0,0 +1,25 @@ +{ + "name": "FalconX Token", + "website": "https://projectfalconx.com", + "description": "FalconX is a Bep 20 Token within the FalconX NFT Ecosystem. FalconX community members will be able to access FalconX NFT’s which reward holders with daily passive income.", + "explorer": "https://bscscan.com/token/0x2d862c9fc46608d7ff83293ceb83330d6135be5e", + "type": "BEP20", + "symbol": "FALCX", + "decimals": 9, + "status": "active", + "id": "0x2D862c9FC46608d7ff83293cEB83330D6135BE5E", + "links": [ + { + "name": "x", + "url": "https://x.com/projectfalconx" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCemByi8cdWT9246H235UOcw" + }, + { + "name": "telegram", + "url": "https://t.me/ProjectFalconX" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2D862c9FC46608d7ff83293cEB83330D6135BE5E/logo.png b/blockchains/smartchain/assets/0x2D862c9FC46608d7ff83293cEB83330D6135BE5E/logo.png new file mode 100644 index 00000000..617b4f5f Binary files /dev/null and b/blockchains/smartchain/assets/0x2D862c9FC46608d7ff83293cEB83330D6135BE5E/logo.png differ diff --git a/blockchains/smartchain/assets/0x2DD337F94A36449C6e5fD4f523Ce2e55A5Ad1008/info.json b/blockchains/smartchain/assets/0x2DD337F94A36449C6e5fD4f523Ce2e55A5Ad1008/info.json new file mode 100644 index 00000000..05e82669 --- /dev/null +++ b/blockchains/smartchain/assets/0x2DD337F94A36449C6e5fD4f523Ce2e55A5Ad1008/info.json @@ -0,0 +1,11 @@ +{ + "name": "World of Whales", + "type": "BEP20", + "symbol": "WOW", + "decimals": 9, + "website": "https://worldofwhales.biz", + "description": "WOW is a frictionless Yield & Liquidity Generation Token with a 10% fee: 5% Redistribution to all holders, 3% Matched LP, 2% to our Charity wallet for saving the worlds aquatic wildlife!", + "explorer": "https://bscscan.com/token/0x2DD337F94A36449C6e5fD4f523Ce2e55A5Ad1008", + "status": "active", + "id": "0x2DD337F94A36449C6e5fD4f523Ce2e55A5Ad1008" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2DD337F94A36449C6e5fD4f523Ce2e55A5Ad1008/logo.png b/blockchains/smartchain/assets/0x2DD337F94A36449C6e5fD4f523Ce2e55A5Ad1008/logo.png new file mode 100644 index 00000000..a4a96812 Binary files /dev/null and b/blockchains/smartchain/assets/0x2DD337F94A36449C6e5fD4f523Ce2e55A5Ad1008/logo.png differ diff --git a/blockchains/smartchain/assets/0x2Db0d5Cb907014C67Dc201886624716fb5c71123/info.json b/blockchains/smartchain/assets/0x2Db0d5Cb907014C67Dc201886624716fb5c71123/info.json new file mode 100644 index 00000000..0a36b8ed --- /dev/null +++ b/blockchains/smartchain/assets/0x2Db0d5Cb907014C67Dc201886624716fb5c71123/info.json @@ -0,0 +1,11 @@ +{ + "name": "AINU TOKEN", + "type": "BEP20", + "symbol": "AINU", + "decimals": 9, + "website": "https://www.ainutoken.net", + "description": "AINU Token is an all-new BEP20 token on the Binance Smart Chain that is an automatic liquidity-providing protocol that gives out static rewards to HODLers.", + "explorer": "https://bscscan.com/token/0x2Db0d5Cb907014C67Dc201886624716fb5c71123", + "status": "active", + "id": "0x2Db0d5Cb907014C67Dc201886624716fb5c71123" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2Db0d5Cb907014C67Dc201886624716fb5c71123/logo.png b/blockchains/smartchain/assets/0x2Db0d5Cb907014C67Dc201886624716fb5c71123/logo.png new file mode 100644 index 00000000..76ab1d61 Binary files /dev/null and b/blockchains/smartchain/assets/0x2Db0d5Cb907014C67Dc201886624716fb5c71123/logo.png differ diff --git a/blockchains/smartchain/assets/0x2Deb28ec61E7B6B4Bba5f8398398330227Cd293f/info.json b/blockchains/smartchain/assets/0x2Deb28ec61E7B6B4Bba5f8398398330227Cd293f/info.json new file mode 100644 index 00000000..217bb864 --- /dev/null +++ b/blockchains/smartchain/assets/0x2Deb28ec61E7B6B4Bba5f8398398330227Cd293f/info.json @@ -0,0 +1,11 @@ +{ + "name": "MINTv2", + "type": "BEP20", + "symbol": "MINTv2", + "decimals": 18, + "website": "https://tea-swap-app.finance/", + "description": "The first Social Farming Project on BSC", + "explorer": "https://bscscan.com/token/0x2Deb28ec61E7B6B4Bba5f8398398330227Cd293f", + "status": "active", + "id": "0x2Deb28ec61E7B6B4Bba5f8398398330227Cd293f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2Deb28ec61E7B6B4Bba5f8398398330227Cd293f/logo.png b/blockchains/smartchain/assets/0x2Deb28ec61E7B6B4Bba5f8398398330227Cd293f/logo.png new file mode 100644 index 00000000..ab1ae29a Binary files /dev/null and b/blockchains/smartchain/assets/0x2Deb28ec61E7B6B4Bba5f8398398330227Cd293f/logo.png differ diff --git a/blockchains/smartchain/assets/0x2E291e1c9f85a86d0C58Ae15621aaC005a8b2EAD/info.json b/blockchains/smartchain/assets/0x2E291e1c9f85a86d0C58Ae15621aaC005a8b2EAD/info.json new file mode 100644 index 00000000..e1cbc507 --- /dev/null +++ b/blockchains/smartchain/assets/0x2E291e1c9f85a86d0C58Ae15621aaC005a8b2EAD/info.json @@ -0,0 +1,12 @@ +{ + "name": "Zeppelin.dao", + "website": "https://zeppelindao.com/", + "description": "Self generating liquidity token - Reflection paid back to holders.", + "explorer": "https://bscscan.com/token/0x2E291e1c9f85a86d0C58Ae15621aaC005a8b2EAD", + "research": "", + "type": "BEP20", + "symbol": "ZEP", + "decimals": 9, + "status": "active", + "id": "0x2E291e1c9f85a86d0C58Ae15621aaC005a8b2EAD" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2E291e1c9f85a86d0C58Ae15621aaC005a8b2EAD/logo.png b/blockchains/smartchain/assets/0x2E291e1c9f85a86d0C58Ae15621aaC005a8b2EAD/logo.png new file mode 100644 index 00000000..5c2ec55a Binary files /dev/null and b/blockchains/smartchain/assets/0x2E291e1c9f85a86d0C58Ae15621aaC005a8b2EAD/logo.png differ diff --git a/blockchains/smartchain/assets/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4/info.json b/blockchains/smartchain/assets/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4/info.json new file mode 100644 index 00000000..4f654b4c --- /dev/null +++ b/blockchains/smartchain/assets/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4/info.json @@ -0,0 +1,26 @@ +{ + "name": "Demon Token", + "type": "BEP20", + "symbol": "DEMON", + "decimals": 18, + "website": "https://www.demonfinance.com", + "description": "Demon Ecosystem integrates a lucrative finance vault with unique Metaverse gamification making it one of the exclusive DeFi project in the market.", + "explorer": "https://bscscan.com/token/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4", + "status": "active", + "id": "0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4", + "links": [ + { + "name": "telegram", + "url": "https://t.me/DemonFinanceCommunity" + }, + { + "name": "x", + "url": "https://x.com/DemonEcosystem" + } + ], + "tags": [ + "defi", + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4/logo.png b/blockchains/smartchain/assets/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4/logo.png new file mode 100644 index 00000000..043b4802 Binary files /dev/null and b/blockchains/smartchain/assets/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4/logo.png differ diff --git a/blockchains/smartchain/assets/0x2E72393A57287b1A09857Db589B27bB0fd499922/info.json b/blockchains/smartchain/assets/0x2E72393A57287b1A09857Db589B27bB0fd499922/info.json new file mode 100644 index 00000000..bc1300b4 --- /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 00000000..900a1f10 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 00000000..2caf4655 --- /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 00000000..e1129be8 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 new file mode 100644 index 00000000..c36cec09 --- /dev/null +++ b/blockchains/smartchain/assets/0x2EED4682197834708c0ea8D11D683440Bbe104d1/info.json @@ -0,0 +1,45 @@ +{ + "name": "Nafty", + "type": "BEP20", + "symbol": "Nafty", + "decimals": 9, + "website": "https://naftytoken.com", + "description": "Nafty is the token for the adult industry, aimed to empower content creators and reward content consumers across the Nafty Network", + "explorer": "https://bscscan.com/token/0x2EED4682197834708c0ea8D11D683440Bbe104d1", + "status": "active", + "id": "0x2EED4682197834708c0ea8D11D683440Bbe104d1", + "links": [ + { + "name": "telegram", + "url": "https://t.me/naftydiscussions" + }, + { + "name": "x", + "url": "https://x.com/naftyofficial" + }, + { + "name": "whitepaper", + "url": "https://naftytoken.com/docs/whitepaper/" + }, + { + "name": "github", + "url": "https://github.com/nafty2021/assets" + }, + { + "name": "telegram_news", + "url": "https://t.me/NaftyToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nafty/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nafty/" + }, + { + "name": "discord", + "url": "https://discord.com/CvtBYZGCKm" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2EED4682197834708c0ea8D11D683440Bbe104d1/logo.png b/blockchains/smartchain/assets/0x2EED4682197834708c0ea8D11D683440Bbe104d1/logo.png new file mode 100644 index 00000000..3347b6a9 Binary files /dev/null and b/blockchains/smartchain/assets/0x2EED4682197834708c0ea8D11D683440Bbe104d1/logo.png differ diff --git a/blockchains/smartchain/assets/0x2F3391AeBE27393aBa0a790aa5E1577fEA0361c2/info.json b/blockchains/smartchain/assets/0x2F3391AeBE27393aBa0a790aa5E1577fEA0361c2/info.json new file mode 100644 index 00000000..fa179060 --- /dev/null +++ b/blockchains/smartchain/assets/0x2F3391AeBE27393aBa0a790aa5E1577fEA0361c2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tako Token", + "type": "BEP20", + "symbol": "TAKO", + "decimals": 18, + "website": "https://takodefi.com/", + "description": "TakoDefi is a community-driven innovative and ingenious Yield farming platform", + "explorer": "https://bscscan.com/token/0x2F3391AeBE27393aBa0a790aa5E1577fEA0361c2", + "status": "active", + "id": "0x2F3391AeBE27393aBa0a790aa5E1577fEA0361c2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2F3391AeBE27393aBa0a790aa5E1577fEA0361c2/logo.png b/blockchains/smartchain/assets/0x2F3391AeBE27393aBa0a790aa5E1577fEA0361c2/logo.png new file mode 100644 index 00000000..0b3a977c Binary files /dev/null and b/blockchains/smartchain/assets/0x2F3391AeBE27393aBa0a790aa5E1577fEA0361c2/logo.png differ diff --git a/blockchains/smartchain/assets/0x2F4e9c97aAFFD67D98A640062d90e355B4a1C539/info.json b/blockchains/smartchain/assets/0x2F4e9c97aAFFD67D98A640062d90e355B4a1C539/info.json new file mode 100644 index 00000000..0ba26a95 --- /dev/null +++ b/blockchains/smartchain/assets/0x2F4e9c97aAFFD67D98A640062d90e355B4a1C539/info.json @@ -0,0 +1,37 @@ +{ + "name": "Afrostar", + "type": "BEP20", + "symbol": "AFRO", + "decimals": 9, + "website": "https://afrostar.io", + "description": "AFROSTAR IS THE UNITED DIGITAL CURRENCY OF AFRICA. It aims to be THE digital currency that is trusted and used across the continent, and a top crypto currency worldwide. The Afrostar ecosystem will provide a range of powerful real world use cases for the Afrostar crypto token.", + "explorer": "https://bscscan.com/token/0x2F4e9c97aAFFD67D98A640062d90e355B4a1C539", + "status": "active", + "id": "0x2F4e9c97aAFFD67D98A640062d90e355B4a1C539", + "links": [ + { + "name": "telegram", + "url": "https://t.me/afrostarcommunity" + }, + { + "name": "x", + "url": "https://x.com/afrostarcrypto" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/afrostarcrypto" + }, + { + "name": "discord", + "url": "https://discord.com/invite/qrj6AWacH4" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCas9v53n5QXt1ZdTPKHo3Gg" + }, + { + "name": "facebook", + "url": "https://facebook.com/afrostarcrypto" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2F4e9c97aAFFD67D98A640062d90e355B4a1C539/logo.png b/blockchains/smartchain/assets/0x2F4e9c97aAFFD67D98A640062d90e355B4a1C539/logo.png new file mode 100644 index 00000000..74f4914a Binary files /dev/null and b/blockchains/smartchain/assets/0x2F4e9c97aAFFD67D98A640062d90e355B4a1C539/logo.png differ diff --git a/blockchains/smartchain/assets/0x2F52F99DB24b0cBedD16dA57b098226D3b0831e8/info.json b/blockchains/smartchain/assets/0x2F52F99DB24b0cBedD16dA57b098226D3b0831e8/info.json new file mode 100644 index 00000000..d5c3340b --- /dev/null +++ b/blockchains/smartchain/assets/0x2F52F99DB24b0cBedD16dA57b098226D3b0831e8/info.json @@ -0,0 +1,11 @@ +{ + "name": "LittleGecko", + "website": "https://littlegecko.net", + "description": "LittleGecko is a promising project that aims to be the leading BEP-20 (crypto)currency project with yield and social media contents/meme/yield/Nft farming: run and owned by its community.", + "explorer": "https://bscscan.com/token/0x2F52F99DB24b0cBedD16dA57b098226D3b0831e8", + "type": "BEP20", + "symbol": "littlegecko", + "decimals": 9, + "status": "active", + "id": "0x2F52F99DB24b0cBedD16dA57b098226D3b0831e8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2F52F99DB24b0cBedD16dA57b098226D3b0831e8/logo.png b/blockchains/smartchain/assets/0x2F52F99DB24b0cBedD16dA57b098226D3b0831e8/logo.png new file mode 100644 index 00000000..7dc6509b Binary files /dev/null and b/blockchains/smartchain/assets/0x2F52F99DB24b0cBedD16dA57b098226D3b0831e8/logo.png differ diff --git a/blockchains/smartchain/assets/0x2FA5dAF6Fe0708fBD63b1A7D1592577284f52256/info.json b/blockchains/smartchain/assets/0x2FA5dAF6Fe0708fBD63b1A7D1592577284f52256/info.json new file mode 100644 index 00000000..4fe3be48 --- /dev/null +++ b/blockchains/smartchain/assets/0x2FA5dAF6Fe0708fBD63b1A7D1592577284f52256/info.json @@ -0,0 +1,29 @@ +{ + "name": "UnmarshalToken", + "website": "https://unmarshal.io/", + "description": "Unmarshal is a Multi-chain DeFi network of indexers that provides seamless access to Blockchain data for DeFi applications. We provide rich, meaningful, and reliable access to data through our decentralized network nodes.", + "explorer": "https://bscscan.com/token/0x2FA5dAF6Fe0708fBD63b1A7D1592577284f52256", + "type": "BEP20", + "symbol": "MARSH", + "decimals": 18, + "status": "active", + "id": "0x2FA5dAF6Fe0708fBD63b1A7D1592577284f52256", + "links": [ + { + "name": "github", + "url": "https://github.com/orgs/eucrypt" + }, + { + "name": "x", + "url": "https://x.com/unmarshal" + }, + { + "name": "telegram", + "url": "https://t.me/Unmarshal_Chat" + }, + { + "name": "blog", + "url": "https://blog.unmarshal.io/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2FA5dAF6Fe0708fBD63b1A7D1592577284f52256/logo.png b/blockchains/smartchain/assets/0x2FA5dAF6Fe0708fBD63b1A7D1592577284f52256/logo.png new file mode 100644 index 00000000..83b4ec2f Binary files /dev/null and b/blockchains/smartchain/assets/0x2FA5dAF6Fe0708fBD63b1A7D1592577284f52256/logo.png differ diff --git a/blockchains/smartchain/assets/0x2FFEE7b4DF74F7C6508A4Af4D6D91058dA5420D0/info.json b/blockchains/smartchain/assets/0x2FFEE7b4DF74F7C6508A4Af4D6D91058dA5420D0/info.json new file mode 100644 index 00000000..3e010c07 --- /dev/null +++ b/blockchains/smartchain/assets/0x2FFEE7b4DF74F7C6508A4Af4D6D91058dA5420D0/info.json @@ -0,0 +1,57 @@ +{ + "name": "ChainCade", + "type": "BEP20", + "symbol": "ChainCade", + "decimals": 9, + "website": "https://www.chaincade.com", + "description": "The future of the arcade is here! ChainCade is developing its one-of-a-kind blockchain arcade ecosystem to benefit players, creators, and investors together. Join the arcade revolution.", + "explorer": "https://bscscan.com/token/0x2FFEE7b4DF74F7C6508A4Af4D6D91058dA5420D0", + "status": "active", + "id": "0x2FFEE7b4DF74F7C6508A4Af4D6D91058dA5420D0", + "links": [ + { + "name": "x", + "url": "https://x.com/chaincadebsc" + }, + { + "name": "github", + "url": "https://github.com/chaincade" + }, + { + "name": "telegram", + "url": "https://t.me/ChainCade" + }, + { + "name": "telegram_news", + "url": "https://t.me/ChainCadeNews" + }, + { + "name": "discord", + "url": "https://discord.com/invite/wNfRfunMpQ" + }, + { + "name": "reddit", + "url": "https://reddit.com/chaincade" + }, + { + "name": "whitepaper", + "url": "https://chaincade.com/wp-content/uploads/2021/07/WhitepaperV1.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCP2iWL-CWMOhpHluqdZmciA" + }, + { + "name": "facebook", + "url": "https://facebook.com/Chaincade-106501661730295/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chaincade/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chaincade/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2FFEE7b4DF74F7C6508A4Af4D6D91058dA5420D0/logo.png b/blockchains/smartchain/assets/0x2FFEE7b4DF74F7C6508A4Af4D6D91058dA5420D0/logo.png new file mode 100644 index 00000000..162c6e9d Binary files /dev/null and b/blockchains/smartchain/assets/0x2FFEE7b4DF74F7C6508A4Af4D6D91058dA5420D0/logo.png differ diff --git a/blockchains/smartchain/assets/0x2Ff8d8CAE3a9633285c60150099bAd25C9b4E5d9/info.json b/blockchains/smartchain/assets/0x2Ff8d8CAE3a9633285c60150099bAd25C9b4E5d9/info.json new file mode 100644 index 00000000..d4842b4b --- /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 00000000..a1c48201 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 new file mode 100644 index 00000000..b040b6e5 --- /dev/null +++ b/blockchains/smartchain/assets/0x2a2cD8b1F69EB9dda5d703b3498d97080C2F194F/info.json @@ -0,0 +1,25 @@ +{ + "name": "Corgiswap", + "type": "BEP20", + "symbol": "CORIS", + "decimals": 18, + "website": "https://corgiswap.org/", + "description": "CORGISWAP is a decentralized finance (DeFi) application that lets users exchange tokens while also providing liquidity through farming and earning fees", + "explorer": "https://bscscan.com/token/0x2a2cD8b1F69EB9dda5d703b3498d97080C2F194F", + "status": "active", + "id": "0x2a2cD8b1F69EB9dda5d703b3498d97080C2F194F", + "links": [ + { + "name": "x", + "url": "https://x.com/corgidogeestate" + }, + { + "name": "telegram", + "url": "https://t.me/corgidoge_official" + }, + { + "name": "telegram_news", + "url": "https://t.me/corgidoge_news" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2a2cD8b1F69EB9dda5d703b3498d97080C2F194F/logo.png b/blockchains/smartchain/assets/0x2a2cD8b1F69EB9dda5d703b3498d97080C2F194F/logo.png new file mode 100644 index 00000000..9544875c Binary files /dev/null and b/blockchains/smartchain/assets/0x2a2cD8b1F69EB9dda5d703b3498d97080C2F194F/logo.png differ diff --git a/blockchains/smartchain/assets/0x2a49De60cc6204c3AFC3e770FDB30A0554147519/info.json b/blockchains/smartchain/assets/0x2a49De60cc6204c3AFC3e770FDB30A0554147519/info.json new file mode 100644 index 00000000..2ff933be --- /dev/null +++ b/blockchains/smartchain/assets/0x2a49De60cc6204c3AFC3e770FDB30A0554147519/info.json @@ -0,0 +1,11 @@ +{ + "name": "LaikaProtocol", + "type": "BEP20", + "symbol": "LAIKA", + "decimals": 9, + "website": "https://laikato.space", + "description": "Laika is a first of its kind, second generation cross-chain deflationary token. The protocol uses a brand new type of Scalable Automatic Liquidity Pools combined with a maximum transaction limit to prevent price manipulation. Laika Protocol is cross-chain and already live on Harmony with a fully automated bridge to be launched soon. The protocol will also expand to many other chains in the near future by using Sushiswap as its HomeDex. Other features such as staking pools are coming soon!", + "explorer": "https://bscscan.com/token/0x2a49De60cc6204c3AFC3e770FDB30A0554147519", + "status": "active", + "id": "0x2a49De60cc6204c3AFC3e770FDB30A0554147519" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2a49De60cc6204c3AFC3e770FDB30A0554147519/logo.png b/blockchains/smartchain/assets/0x2a49De60cc6204c3AFC3e770FDB30A0554147519/logo.png new file mode 100644 index 00000000..9f3714d6 Binary files /dev/null and b/blockchains/smartchain/assets/0x2a49De60cc6204c3AFC3e770FDB30A0554147519/logo.png differ diff --git a/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/info.json b/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/info.json new file mode 100644 index 00000000..976bdd37 --- /dev/null +++ b/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/info.json @@ -0,0 +1,40 @@ +{ + "name": "FRZ Swapping", + "type": "BEP20", + "symbol": "FRZW", + "decimals": 18, + "website": "https://frzswap.com/", + "description": "FRZW is native token of FRZSwap which is a decentralized exchange (DEX) and belongs to FRZSS ecosystem", + "explorer": "https://bscscan.com/token/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD", + "status": "active", + "id": "0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD", + "links": [ + { + "name": "x", + "url": "https://x.com/frzswap" + }, + { + "name": "github", + "url": "https://github.com/FRZSwapping" + }, + { + "name": "telegram", + "url": "https://t.me/frzswap" + }, + { + "name": "whitepaper", + "url": "https://frzswap.com/docs/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/frzswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/frzswap/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/logo.png b/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/logo.png new file mode 100644 index 00000000..78384079 Binary files /dev/null and b/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/logo.png differ diff --git a/blockchains/smartchain/assets/0x2a5eB92f6a410AC0BB38D92C13DA934bD68EF24E/info.json b/blockchains/smartchain/assets/0x2a5eB92f6a410AC0BB38D92C13DA934bD68EF24E/info.json new file mode 100644 index 00000000..548b8ed1 --- /dev/null +++ b/blockchains/smartchain/assets/0x2a5eB92f6a410AC0BB38D92C13DA934bD68EF24E/info.json @@ -0,0 +1,29 @@ +{ + "name": "Tiny Titans V3", + "website": "https://tinytitans.fi", + "description": "World of Tiny Titans. Tiny Titans — collectable & tradeable NFTs on BSC which you can train, level and earn for play.", + "links": [ + { + "name": "x", + "url": "https://x.com/RealTinyTitans" + }, + { + "name": "medium", + "url": "https://tinytitans.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/tinytitans" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x2a5eB92f6a410AC0BB38D92C13DA934bD68EF24E#code" + } + ], + "explorer": "https://bscscan.com/token/0x2a5eB92f6a410AC0BB38D92C13DA934bD68EF24E", + "type": "BEP20", + "symbol": "TITS", + "decimals": 18, + "status": "active", + "id": "0x2a5eB92f6a410AC0BB38D92C13DA934bD68EF24E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2a5eB92f6a410AC0BB38D92C13DA934bD68EF24E/logo.png b/blockchains/smartchain/assets/0x2a5eB92f6a410AC0BB38D92C13DA934bD68EF24E/logo.png new file mode 100644 index 00000000..02c71de2 Binary files /dev/null and b/blockchains/smartchain/assets/0x2a5eB92f6a410AC0BB38D92C13DA934bD68EF24E/logo.png differ diff --git a/blockchains/smartchain/assets/0x2a900573082c58053377E54642038Fa46f19A8A2/info.json b/blockchains/smartchain/assets/0x2a900573082c58053377E54642038Fa46f19A8A2/info.json new file mode 100644 index 00000000..8577a06d --- /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 00000000..fa38281d 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 new file mode 100644 index 00000000..5f5cc8dc --- /dev/null +++ b/blockchains/smartchain/assets/0x2aB90FBb649bA3DDD4269764eb2975d8F32b7b5a/info.json @@ -0,0 +1,25 @@ +{ + "name": "SafeBank YES", + "website": "https://safebank.app", + "description": "SafeBank is the world's first Decentralized Bank which allows you to control your own finance. SafeBank is owned and operated by DafriBank Digital.", + "explorer": "https://bscscan.com/token/0x2ab90fbb649ba3ddd4269764eb2975d8f32b7b5a", + "type": "BEP20", + "symbol": "SafeBANK", + "decimals": 18, + "status": "active", + "id": "0x2aB90FBb649bA3DDD4269764eb2975d8F32b7b5a", + "links": [ + { + "name": "x", + "url": "https://x.com/SafeBankToken" + }, + { + "name": "telegram", + "url": "https://t.me/SafeBank" + }, + { + "name": "whitepaper", + "url": "https://safebank.app/whitepaper.html" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2aB90FBb649bA3DDD4269764eb2975d8F32b7b5a/logo.png b/blockchains/smartchain/assets/0x2aB90FBb649bA3DDD4269764eb2975d8F32b7b5a/logo.png new file mode 100644 index 00000000..d99dbc05 Binary files /dev/null and b/blockchains/smartchain/assets/0x2aB90FBb649bA3DDD4269764eb2975d8F32b7b5a/logo.png differ diff --git a/blockchains/smartchain/assets/0x2aC8f06A3165f38BF582c5D2edC22B245889bD2F/info.json b/blockchains/smartchain/assets/0x2aC8f06A3165f38BF582c5D2edC22B245889bD2F/info.json new file mode 100644 index 00000000..b92d738c --- /dev/null +++ b/blockchains/smartchain/assets/0x2aC8f06A3165f38BF582c5D2edC22B245889bD2F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Token Bali", + "type": "BEP20", + "symbol": "Bali", + "decimals": 18, + "website": "https://tokenbalibnb.com/", + "description": "Token Bali is decenteralized way to earn BNB by Holding tokens.", + "explorer": "https://bscscan.com/token/0x2aC8f06A3165f38BF582c5D2edC22B245889bD2F", + "status": "active", + "id": "0x2aC8f06A3165f38BF582c5D2edC22B245889bD2F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2aC8f06A3165f38BF582c5D2edC22B245889bD2F/logo.png b/blockchains/smartchain/assets/0x2aC8f06A3165f38BF582c5D2edC22B245889bD2F/logo.png new file mode 100644 index 00000000..a09e883c Binary files /dev/null and b/blockchains/smartchain/assets/0x2aC8f06A3165f38BF582c5D2edC22B245889bD2F/logo.png differ diff --git a/blockchains/smartchain/assets/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2/info.json b/blockchains/smartchain/assets/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2/info.json new file mode 100644 index 00000000..80234c0a --- /dev/null +++ b/blockchains/smartchain/assets/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2/info.json @@ -0,0 +1,40 @@ +{ + "name": "MetaUFO", + "website": "http://metaufo.me/", + "description": "MetaUFO is a decentralized gaming platform with play-to-earn elements, NFTs, its own NFT collection combined with an auto battler. MetaUFO is built on BSC.", + "type": "BEP20", + "symbol": "MetaUFO", + "decimals": 18, + "status": "active", + "explorer": "https://bscscan.com/token/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2", + "id": "0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2", + "links": [ + { + "name": "telegram", + "url": "https://t.me/MetaUFO_Channel" + }, + { + "name": "x", + "url": "https://x.com/Meta_UFO" + }, + { + "name": "whitepaper", + "url": "https://link-bsc.gitbook.io/meta-ufo/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metaufo/" + }, + { + "name": "github", + "url": "https://github.com/TechRate/Smart-Contract-Audits/blob/main/March/MetaUFO.pdf" + } + ], + "tags": [ + "governance", + "stablecoin", + "wrapped", + "synthetics", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2/logo.png b/blockchains/smartchain/assets/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2/logo.png new file mode 100644 index 00000000..9f29b252 Binary files /dev/null and b/blockchains/smartchain/assets/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2/logo.png differ diff --git a/blockchains/smartchain/assets/0x2b15bc62d1FB46ADE4763A3c5ea0917460bb25F1/info.json b/blockchains/smartchain/assets/0x2b15bc62d1FB46ADE4763A3c5ea0917460bb25F1/info.json new file mode 100644 index 00000000..261ffa54 --- /dev/null +++ b/blockchains/smartchain/assets/0x2b15bc62d1FB46ADE4763A3c5ea0917460bb25F1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Morphose", + "type": "BEP20", + "symbol": "MORPH", + "decimals": 18, + "website": "https://morphose.cash", + "description": "Fully Decentralized Protocol for Private Transactions on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x2b15bc62d1FB46ADE4763A3c5ea0917460bb25F1", + "status": "active", + "id": "0x2b15bc62d1FB46ADE4763A3c5ea0917460bb25F1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2b15bc62d1FB46ADE4763A3c5ea0917460bb25F1/logo.png b/blockchains/smartchain/assets/0x2b15bc62d1FB46ADE4763A3c5ea0917460bb25F1/logo.png new file mode 100644 index 00000000..82c77291 Binary files /dev/null and b/blockchains/smartchain/assets/0x2b15bc62d1FB46ADE4763A3c5ea0917460bb25F1/logo.png differ diff --git a/blockchains/smartchain/assets/0x2b1d5cDeCC356530a746C5754231EfaEAca64022/info.json b/blockchains/smartchain/assets/0x2b1d5cDeCC356530a746C5754231EfaEAca64022/info.json new file mode 100644 index 00000000..d55847a1 --- /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 00000000..32afb471 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 new file mode 100644 index 00000000..e9c3c428 --- /dev/null +++ b/blockchains/smartchain/assets/0x2b31b83D2a960d648e9c8d3B84dF5452c80aB947/info.json @@ -0,0 +1,33 @@ +{ + "name": "SMD Coin", + "type": "BEP20", + "symbol": "SMD", + "decimals": 10, + "website": "https://smdcoin.com", + "description": "SMD COIN is the world’s first integrated platform, providing Coins Staking, Yield Farming and Self-Holding. SMD COIN provides customers with decentralized farming services, personalized financial solutions, and a variety of interest models and earning opportunities.
", + "explorer": "https://bscscan.com/token/0x2b31b83D2a960d648e9c8d3B84dF5452c80aB947", + "status": "active", + "id": "0x2b31b83D2a960d648e9c8d3B84dF5452c80aB947", + "links": [ + { + "name": "x", + "url": "https://x.com/smdcoinofficial" + }, + { + "name": "whitepaper", + "url": "https://smdcoin.com/css/whitepaper/SMDwhitepaper.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/smdofficial" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/smd-coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/smd-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2b31b83D2a960d648e9c8d3B84dF5452c80aB947/logo.png b/blockchains/smartchain/assets/0x2b31b83D2a960d648e9c8d3B84dF5452c80aB947/logo.png new file mode 100644 index 00000000..31c119de Binary files /dev/null and b/blockchains/smartchain/assets/0x2b31b83D2a960d648e9c8d3B84dF5452c80aB947/logo.png differ diff --git a/blockchains/smartchain/assets/0x2b974da27C9DD35412d71Dd36e3e108486c45444/info.json b/blockchains/smartchain/assets/0x2b974da27C9DD35412d71Dd36e3e108486c45444/info.json new file mode 100644 index 00000000..dc88f318 --- /dev/null +++ b/blockchains/smartchain/assets/0x2b974da27C9DD35412d71Dd36e3e108486c45444/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoZ eXPerience", + "website": "https://bsc.cryptoz.cards", + "description": "CZXP unlock higher level NFT minting from the Cryptoz store, and are generated through the sacrifice of Cryptoz NFT tokens", + "explorer": "https://bscscan.com/token/0x2b974da27C9DD35412d71Dd36e3e108486c45444", + "type": "BEP20", + "symbol": "CZXP", + "decimals": 0, + "status": "active", + "id": "0x2b974da27C9DD35412d71Dd36e3e108486c45444" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2b974da27C9DD35412d71Dd36e3e108486c45444/logo.png b/blockchains/smartchain/assets/0x2b974da27C9DD35412d71Dd36e3e108486c45444/logo.png new file mode 100644 index 00000000..02e5a89a Binary files /dev/null and b/blockchains/smartchain/assets/0x2b974da27C9DD35412d71Dd36e3e108486c45444/logo.png differ diff --git a/blockchains/smartchain/assets/0x2bF4BE7C4520C41d012EB09a034179E03b898534/info.json b/blockchains/smartchain/assets/0x2bF4BE7C4520C41d012EB09a034179E03b898534/info.json new file mode 100644 index 00000000..be0850eb --- /dev/null +++ b/blockchains/smartchain/assets/0x2bF4BE7C4520C41d012EB09a034179E03b898534/info.json @@ -0,0 +1,28 @@ +{ + "name": "ASIX+", + "type": "BEP20", + "symbol": "ASIX+", + "decimals": 18, + "website": "https://asixplus.id", + "description": "ASIX+ Token is a token which is made by PT. META NUSANTARA VICTORI, which has purpose and the projects of P2E games, NFT Marketplace, and Metaverse.ASIX+ Token is the main utility in our 3 projects. P2E Games, NFT Market, and Nusantaraverse. ASIX+ Token can be used in all three projects.In addition, it does not rule out the possibility of developing or adding projects in the future.", + "explorer": "https://bscscan.com/token/0x2bF4BE7C4520C41d012EB09a034179E03b898534", + "status": "active", + "id": "0x2bF4BE7C4520C41d012EB09a034179E03b898534", + "links": [ + { + "name": "x", + "url": "https://x.com/asixplusNFT" + }, + { + "name": "telegram", + "url": "https://t.me/asixplus" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/asixplus" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2bF4BE7C4520C41d012EB09a034179E03b898534/logo.png b/blockchains/smartchain/assets/0x2bF4BE7C4520C41d012EB09a034179E03b898534/logo.png new file mode 100644 index 00000000..b2ea075b Binary files /dev/null and b/blockchains/smartchain/assets/0x2bF4BE7C4520C41d012EB09a034179E03b898534/logo.png differ diff --git a/blockchains/smartchain/assets/0x2c094F5A7D1146BB93850f629501eB749f6Ed491/info.json b/blockchains/smartchain/assets/0x2c094F5A7D1146BB93850f629501eB749f6Ed491/info.json new file mode 100644 index 00000000..fff23675 --- /dev/null +++ b/blockchains/smartchain/assets/0x2c094F5A7D1146BB93850f629501eB749f6Ed491/info.json @@ -0,0 +1,11 @@ +{ + "name": "CROX Token", + "website": "https://croxswap.com", + "description": "CroxSwap is a fully decentralized cross-chain dex with AMM and yield farming protocol.", + "explorer": "https://bscscan.com/token/0x2c094f5a7d1146bb93850f629501eb749f6ed491", + "type": "BEP20", + "symbol": "CROX", + "decimals": 18, + "status": "active", + "id": "0x2c094F5A7D1146BB93850f629501eB749f6Ed491" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2c094F5A7D1146BB93850f629501eB749f6Ed491/logo.png b/blockchains/smartchain/assets/0x2c094F5A7D1146BB93850f629501eB749f6Ed491/logo.png new file mode 100644 index 00000000..b090e596 Binary files /dev/null and b/blockchains/smartchain/assets/0x2c094F5A7D1146BB93850f629501eB749f6Ed491/logo.png differ diff --git a/blockchains/smartchain/assets/0x2c8368f8F474Ed9aF49b87eAc77061BEb986c2f1/info.json b/blockchains/smartchain/assets/0x2c8368f8F474Ed9aF49b87eAc77061BEb986c2f1/info.json new file mode 100644 index 00000000..cadb6b04 --- /dev/null +++ b/blockchains/smartchain/assets/0x2c8368f8F474Ed9aF49b87eAc77061BEb986c2f1/info.json @@ -0,0 +1,41 @@ +{ + "name": "LeonicornSwap", + "website": "https://leonicornswap.com", + "description": "Leonicorn Swap is an Advance AMM with features Like NFT Marketplace, Lottery, IDO and many other advanced features.", + "explorer": "https://bscscan.com/token/0x2c8368f8f474ed9af49b87eac77061beb986c2f1", + "type": "BEP20", + "symbol": "LEOS", + "decimals": 8, + "status": "active", + "id": "0x2c8368f8F474Ed9aF49b87eAc77061BEb986c2f1", + "links": [ + { + "name": "github", + "url": "https://github.com/Leonicornswap" + }, + { + "name": "x", + "url": "https://x.com/swapleonicorn" + }, + { + "name": "telegram", + "url": "https://t.me/leonicornswap" + }, + { + "name": "whitepaper", + "url": "https://leonicornswap.com/images/whitepaper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/Leonicorn-Swap-104821111837719" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/LeonicornSwap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/leonicorn-swap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2c8368f8F474Ed9aF49b87eAc77061BEb986c2f1/logo.png b/blockchains/smartchain/assets/0x2c8368f8F474Ed9aF49b87eAc77061BEb986c2f1/logo.png new file mode 100644 index 00000000..030c74e1 Binary files /dev/null and b/blockchains/smartchain/assets/0x2c8368f8F474Ed9aF49b87eAc77061BEb986c2f1/logo.png differ diff --git a/blockchains/smartchain/assets/0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED/info.json b/blockchains/smartchain/assets/0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED/info.json new file mode 100644 index 00000000..75f91d4a --- /dev/null +++ b/blockchains/smartchain/assets/0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED/info.json @@ -0,0 +1,32 @@ +{ + "name": "ElonGoat", + "type": "BEP20", + "symbol": "EGT", + "decimals": 9, + "website": "https://www.elongoat.io", + "description": "Elon GOAT Token is building a biblical sized monument on the back of a semi-trailer dedicated to the Godfather of Crypto, Elon Musk.", + "explorer": "https://bscscan.com/token/0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED", + "status": "active", + "id": "0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elon-goat/" + }, + { + "name": "x", + "url": "https://x.com/elongoattoken?s=21" + }, + { + "name": "telegram", + "url": "https://t.me/elon_goat_token" + }, + { + "name": "facebook", + "url": "https://facebook.com/ElonGoat.io" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED/logo.png b/blockchains/smartchain/assets/0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED/logo.png new file mode 100644 index 00000000..74e66459 Binary files /dev/null and b/blockchains/smartchain/assets/0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED/logo.png differ diff --git a/blockchains/smartchain/assets/0x2cD1075682b0FCCaADd0Ca629e138E64015Ba11c/info.json b/blockchains/smartchain/assets/0x2cD1075682b0FCCaADd0Ca629e138E64015Ba11c/info.json new file mode 100644 index 00000000..c1be47d3 --- /dev/null +++ b/blockchains/smartchain/assets/0x2cD1075682b0FCCaADd0Ca629e138E64015Ba11c/info.json @@ -0,0 +1,22 @@ +{ + "name": "τBitcoin", + "website": "https://btcst.finance/", + "short_description": "τBitcoin is a synthetic Bitcoin supported by some of the largest miners in the world.", + "description": "τBitcoin is a synthetic Bitcoin supported by some of the largest miners in the world. Implementing the τ protocol, τBitcoin shows superior capital efficiency and composability for DeFi uses.", + "explorer": "https://bscscan.com/token/0x2cd1075682b0fccaadd0ca629e138e64015ba11c", + "type": "BEP20", + "symbol": "τBTC", + "decimals": 9, + "status": "active", + "id": "0x2cD1075682b0FCCaADd0Ca629e138E64015Ba11c", + "links": [ + { + "name": "github", + "url": "https://github.com/Standard-Hashrate-Groupastronauttoken" + }, + { + "name": "whitepaper", + "url": "https://www.btcst.finance/static/Tau-Whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2cD1075682b0FCCaADd0Ca629e138E64015Ba11c/logo.png b/blockchains/smartchain/assets/0x2cD1075682b0FCCaADd0Ca629e138E64015Ba11c/logo.png new file mode 100644 index 00000000..7a347937 Binary files /dev/null and b/blockchains/smartchain/assets/0x2cD1075682b0FCCaADd0Ca629e138E64015Ba11c/logo.png differ diff --git a/blockchains/smartchain/assets/0x2cD96e8C3FF6b5E01169F6E3b61D28204E7810Bb/info.json b/blockchains/smartchain/assets/0x2cD96e8C3FF6b5E01169F6E3b61D28204E7810Bb/info.json new file mode 100644 index 00000000..9ac9fe97 --- /dev/null +++ b/blockchains/smartchain/assets/0x2cD96e8C3FF6b5E01169F6E3b61D28204E7810Bb/info.json @@ -0,0 +1,28 @@ +{ + "name": "LuckyBlock", + "type": "BEP20", + "symbol": "LBlock", + "decimals": 9, + "website": "https://luckyblock.com/", + "description": "Lucky Block envisions a worldwide lottery with players using blockchain protocols, operating on the binance smart chain. The LBlock token is listed on Pancakeswap (DEX), A leading decentralised exchange (DEX) that allows users to buy and sell. We have more than 42K token holders.", + "explorer": "https://bscscan.com/token/0x2cD96e8C3FF6b5E01169F6E3b61D28204E7810Bb", + "status": "active", + "id": "0x2cD96e8C3FF6b5E01169F6E3b61D28204E7810Bb", + "links": [ + { + "name": "x", + "url": "https://x.com/luckyblockcoin" + }, + { + "name": "github", + "url": "https://github.com/finixio/luckyblock-smartcontract" + }, + { + "name": "telegram", + "url": "https://t.me/LuckyBlockChainTG" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2cD96e8C3FF6b5E01169F6E3b61D28204E7810Bb/logo.png b/blockchains/smartchain/assets/0x2cD96e8C3FF6b5E01169F6E3b61D28204E7810Bb/logo.png new file mode 100644 index 00000000..72a91af8 Binary files /dev/null and b/blockchains/smartchain/assets/0x2cD96e8C3FF6b5E01169F6E3b61D28204E7810Bb/logo.png differ diff --git a/blockchains/smartchain/assets/0x2cc26dd730F548dc4ac291ae7D84a0C96980d2cB/info.json b/blockchains/smartchain/assets/0x2cc26dd730F548dc4ac291ae7D84a0C96980d2cB/info.json new file mode 100644 index 00000000..ce07c464 --- /dev/null +++ b/blockchains/smartchain/assets/0x2cc26dd730F548dc4ac291ae7D84a0C96980d2cB/info.json @@ -0,0 +1,25 @@ +{ + "name": "PizzaSwap", + "website": "https://pizzafinance.app/", + "description": "PIZZA is the Best Modern Yield Farm on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x2cc26dd730f548dc4ac291ae7d84a0c96980d2cb", + "type": "BEP20", + "symbol": "PIZZA", + "decimals": 18, + "status": "active", + "id": "0x2cc26dd730F548dc4ac291ae7D84a0C96980d2cB", + "links": [ + { + "name": "github", + "url": "https://github.com/pizzafinancebsc" + }, + { + "name": "x", + "url": "https://x.com/Pizza_Finance" + }, + { + "name": "telegram", + "url": "https://t.me/PizzaFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2cc26dd730F548dc4ac291ae7D84a0C96980d2cB/logo.png b/blockchains/smartchain/assets/0x2cc26dd730F548dc4ac291ae7D84a0C96980d2cB/logo.png new file mode 100644 index 00000000..680141cc Binary files /dev/null and b/blockchains/smartchain/assets/0x2cc26dd730F548dc4ac291ae7D84a0C96980d2cB/logo.png differ diff --git a/blockchains/smartchain/assets/0x2cd2664Ce5639e46c6a3125257361e01d0213657/info.json b/blockchains/smartchain/assets/0x2cd2664Ce5639e46c6a3125257361e01d0213657/info.json new file mode 100644 index 00000000..46754f45 --- /dev/null +++ b/blockchains/smartchain/assets/0x2cd2664Ce5639e46c6a3125257361e01d0213657/info.json @@ -0,0 +1,36 @@ +{ + "name": "Useless", + "website": "https://uselesscrypto.com", + "description": "Useless is the first token with an auto-stabilizing liquidity pool fueled by external revenue. Our vision is to bring mainstream accessibility to the crypto-space with easy-to-use mobile apps and dApps.", + "explorer": "https://bscscan.com/token/0x2cd2664Ce5639e46c6a3125257361e01d0213657", + "type": "BEP20", + "symbol": "USELESS", + "decimals": 9, + "status": "active", + "id": "0x2cd2664Ce5639e46c6a3125257361e01d0213657", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "blog", + "url": "https://uselesscrypto.com/" + }, + { + "name": "x", + "url": "https://x.com/uselesscrypto" + }, + { + "name": "facebook", + "url": "https://facebook.com/uselesscrypto" + }, + { + "name": "whitepaper", + "url": "https://uselesscrypto.com/assets/litepaper/Useless_Litepaper_v6.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/uselesscrypto" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2cd2664Ce5639e46c6a3125257361e01d0213657/logo.png b/blockchains/smartchain/assets/0x2cd2664Ce5639e46c6a3125257361e01d0213657/logo.png new file mode 100644 index 00000000..37457fc0 Binary files /dev/null and b/blockchains/smartchain/assets/0x2cd2664Ce5639e46c6a3125257361e01d0213657/logo.png differ diff --git a/blockchains/smartchain/assets/0x2d2bB6cC040010583F16Bb1c5afEE129ed13B532/info.json b/blockchains/smartchain/assets/0x2d2bB6cC040010583F16Bb1c5afEE129ed13B532/info.json new file mode 100644 index 00000000..052a862b --- /dev/null +++ b/blockchains/smartchain/assets/0x2d2bB6cC040010583F16Bb1c5afEE129ed13B532/info.json @@ -0,0 +1,11 @@ +{ + "name": "MARSTOKEN", + "website": "https://marstoken.finance", + "description": "Yield farm MARS on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x2d2bB6cC040010583F16Bb1c5afEE129ed13B532", + "type": "BEP20", + "symbol": "MARS", + "decimals": 8, + "status": "active", + "id": "0x2d2bB6cC040010583F16Bb1c5afEE129ed13B532" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2d2bB6cC040010583F16Bb1c5afEE129ed13B532/logo.png b/blockchains/smartchain/assets/0x2d2bB6cC040010583F16Bb1c5afEE129ed13B532/logo.png new file mode 100644 index 00000000..5d33752c Binary files /dev/null and b/blockchains/smartchain/assets/0x2d2bB6cC040010583F16Bb1c5afEE129ed13B532/logo.png differ diff --git a/blockchains/smartchain/assets/0x2d3bfaDF9BC94E3Ab796029A030e863F1898aA06/info.json b/blockchains/smartchain/assets/0x2d3bfaDF9BC94E3Ab796029A030e863F1898aA06/info.json new file mode 100644 index 00000000..de89e20c --- /dev/null +++ b/blockchains/smartchain/assets/0x2d3bfaDF9BC94E3Ab796029A030e863F1898aA06/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream Trust Wallet", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x2d3bfaDF9BC94E3Ab796029A030e863F1898aA06", + "type": "BEP20", + "symbol": "crTWT", + "decimals": 8, + "status": "active", + "id": "0x2d3bfaDF9BC94E3Ab796029A030e863F1898aA06", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2d3bfaDF9BC94E3Ab796029A030e863F1898aA06/logo.png b/blockchains/smartchain/assets/0x2d3bfaDF9BC94E3Ab796029A030e863F1898aA06/logo.png new file mode 100644 index 00000000..9ae135aa Binary files /dev/null and b/blockchains/smartchain/assets/0x2d3bfaDF9BC94E3Ab796029A030e863F1898aA06/logo.png differ diff --git a/blockchains/smartchain/assets/0x2d43Dfe648Bb8C9c22f9FFcD1937369a9Fdd0eBc/info.json b/blockchains/smartchain/assets/0x2d43Dfe648Bb8C9c22f9FFcD1937369a9Fdd0eBc/info.json new file mode 100644 index 00000000..7e3b18d4 --- /dev/null +++ b/blockchains/smartchain/assets/0x2d43Dfe648Bb8C9c22f9FFcD1937369a9Fdd0eBc/info.json @@ -0,0 +1,11 @@ +{ + "name": "EJECT", + "type": "BEP20", + "symbol": "EJECT", + "decimals": 9, + "website": "https://www.eject.space", + "description": "The Crowdfunding Platform for up and coming Defi tokens", + "explorer": "https://bscscan.com/token/0x2d43Dfe648Bb8C9c22f9FFcD1937369a9Fdd0eBc", + "status": "active", + "id": "0x2d43Dfe648Bb8C9c22f9FFcD1937369a9Fdd0eBc" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2d43Dfe648Bb8C9c22f9FFcD1937369a9Fdd0eBc/logo.png b/blockchains/smartchain/assets/0x2d43Dfe648Bb8C9c22f9FFcD1937369a9Fdd0eBc/logo.png new file mode 100644 index 00000000..cf367a1d Binary files /dev/null and b/blockchains/smartchain/assets/0x2d43Dfe648Bb8C9c22f9FFcD1937369a9Fdd0eBc/logo.png differ diff --git a/blockchains/smartchain/assets/0x2d4852Ac322d7f5c0B01ff7E1333A2a36a644c3f/info.json b/blockchains/smartchain/assets/0x2d4852Ac322d7f5c0B01ff7E1333A2a36a644c3f/info.json new file mode 100644 index 00000000..1f76b169 --- /dev/null +++ b/blockchains/smartchain/assets/0x2d4852Ac322d7f5c0B01ff7E1333A2a36a644c3f/info.json @@ -0,0 +1,11 @@ +{ + "name": "HitChain", + "website": "https://hitchain.net", + "description": "Hitchain is a decentralized smart defi project run by the community.", + "explorer": "https://bscscan.com/token/0x2d4852Ac322d7f5c0B01ff7E1333A2a36a644c3f", + "type": "BEP20", + "symbol": "HCH", + "decimals": 8, + "status": "active", + "id": "0x2d4852Ac322d7f5c0B01ff7E1333A2a36a644c3f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2d4852Ac322d7f5c0B01ff7E1333A2a36a644c3f/logo.png b/blockchains/smartchain/assets/0x2d4852Ac322d7f5c0B01ff7E1333A2a36a644c3f/logo.png new file mode 100644 index 00000000..99f23702 Binary files /dev/null and b/blockchains/smartchain/assets/0x2d4852Ac322d7f5c0B01ff7E1333A2a36a644c3f/logo.png differ diff --git a/blockchains/smartchain/assets/0x2d69c55baEcefC6ec815239DA0a985747B50Db6E/info.json b/blockchains/smartchain/assets/0x2d69c55baEcefC6ec815239DA0a985747B50Db6E/info.json new file mode 100644 index 00000000..f881b41d --- /dev/null +++ b/blockchains/smartchain/assets/0x2d69c55baEcefC6ec815239DA0a985747B50Db6E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tutti Frutti", + "symbol": "TFF", + "type": "BEP20", + "decimals": 18, + "description": "The first low-inflation community distributed yield-farming project on Binance Smart Chain.", + "website": "https://tuttifrutti.finance/", + "explorer": "https://bscscan.com/token/0x2d69c55baEcefC6ec815239DA0a985747B50Db6E", + "status": "active", + "id": "0x2d69c55baEcefC6ec815239DA0a985747B50Db6E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2d69c55baEcefC6ec815239DA0a985747B50Db6E/logo.png b/blockchains/smartchain/assets/0x2d69c55baEcefC6ec815239DA0a985747B50Db6E/logo.png new file mode 100644 index 00000000..c6dbb06a Binary files /dev/null and b/blockchains/smartchain/assets/0x2d69c55baEcefC6ec815239DA0a985747B50Db6E/logo.png differ diff --git a/blockchains/smartchain/assets/0x2dE161f13Ab594aECD8F2A93e885A08d0ad362c7/info.json b/blockchains/smartchain/assets/0x2dE161f13Ab594aECD8F2A93e885A08d0ad362c7/info.json new file mode 100644 index 00000000..6b79be20 --- /dev/null +++ b/blockchains/smartchain/assets/0x2dE161f13Ab594aECD8F2A93e885A08d0ad362c7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vanity", + "type": "BEP20", + "symbol": "VANITY", + "decimals": 9, + "website": "https://vanitytoken.net", + "description": "VANITY aims to provide the first ever self Token-Based Marketplace for Custom Vanity Addresses.", + "explorer": "https://bscscan.com/token/0x2dE161f13Ab594aECD8F2A93e885A08d0ad362c7", + "status": "abandoned", + "id": "0x2dE161f13Ab594aECD8F2A93e885A08d0ad362c7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2daFA4732c8c1b25701a33B05F10f437F9599326/info.json b/blockchains/smartchain/assets/0x2daFA4732c8c1b25701a33B05F10f437F9599326/info.json new file mode 100644 index 00000000..e370f300 --- /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 00000000..55387f09 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 new file mode 100644 index 00000000..14a008db --- /dev/null +++ b/blockchains/smartchain/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json @@ -0,0 +1,44 @@ +{ + "name": "SPACE ID", + "symbol": "ID", + "type": "BEP20", + "decimals": 18, + "description": "SPACE ID is a universal name service network that seamlessly connects people, information, assets, and applications in the digital world. SPACE ID is also the provider of .bnb domain name service.", + "website": "https://space.id/", + "explorer": "https://bscscan.com/token/0x2dfF88A56767223A5529eA5960Da7A3F5f766406", + "id": "0x2dfF88A56767223A5529eA5960Da7A3F5f766406", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/SpaceIDProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/spaceid_news" + }, + { + "name": "discord", + "url": "https://discord.com/invite/spaceid" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/space-id/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/space-id/" + }, + { + "name": "docs", + "url": "https://docs.space.id/" + }, + { + "name": "blog", + "url": "https://blog.space.id/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/logo.png b/blockchains/smartchain/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/logo.png new file mode 100644 index 00000000..a6a3c275 Binary files /dev/null and b/blockchains/smartchain/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/logo.png differ diff --git a/blockchains/smartchain/assets/0x2e18D97bB92Bcb9EFb029C7Ee72f18108Ec36C2C/info.json b/blockchains/smartchain/assets/0x2e18D97bB92Bcb9EFb029C7Ee72f18108Ec36C2C/info.json new file mode 100644 index 00000000..94cba2bb --- /dev/null +++ b/blockchains/smartchain/assets/0x2e18D97bB92Bcb9EFb029C7Ee72f18108Ec36C2C/info.json @@ -0,0 +1,11 @@ +{ + "name": "TORO", + "website": "https://torobullrun.io", + "description": "TORO is a cryptocurrency for us, providing a decentralized power of internet finance to the community, who will truly decide with our horns when the run ends.", + "explorer": "https://bscscan.com/token/0x2e18D97bB92Bcb9EFb029C7Ee72f18108Ec36C2C", + "type": "BEP20", + "symbol": "TORO", + "decimals": 9, + "status": "active", + "id": "0x2e18D97bB92Bcb9EFb029C7Ee72f18108Ec36C2C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2e18D97bB92Bcb9EFb029C7Ee72f18108Ec36C2C/logo.png b/blockchains/smartchain/assets/0x2e18D97bB92Bcb9EFb029C7Ee72f18108Ec36C2C/logo.png new file mode 100644 index 00000000..e6375ff1 Binary files /dev/null and b/blockchains/smartchain/assets/0x2e18D97bB92Bcb9EFb029C7Ee72f18108Ec36C2C/logo.png differ diff --git a/blockchains/smartchain/assets/0x2e3154B48CD831cAd330253a39A5b3c8B4614444/info.json b/blockchains/smartchain/assets/0x2e3154B48CD831cAd330253a39A5b3c8B4614444/info.json new file mode 100644 index 00000000..db0ac009 --- /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 new file mode 100644 index 00000000..74d91572 --- /dev/null +++ b/blockchains/smartchain/assets/0x2e42C9EAc96833C6e16Dc71c743cECC114CCD7e3/info.json @@ -0,0 +1,25 @@ +{ + "name": "MetaCash", + "website": "https://metacashbsc.com/", + "description": "The metacash project is referred to the world of the metaverse and virtual reality, through creating a large community of more than 3000 members.", + "explorer": "https://bscscan.com/token/0x2e42C9EAc96833C6e16Dc71c743cECC114CCD7e3", + "type": "BEP20", + "symbol": "META", + "decimals": 18, + "status": "active", + "id": "0x2e42C9EAc96833C6e16Dc71c743cECC114CCD7e3", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metacash/" + }, + { + "name": "x", + "url": "https://x.com/MetaCashBSC" + }, + { + "name": "telegram", + "url": "https://t.me/MetaCash" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2e42C9EAc96833C6e16Dc71c743cECC114CCD7e3/logo.png b/blockchains/smartchain/assets/0x2e42C9EAc96833C6e16Dc71c743cECC114CCD7e3/logo.png new file mode 100644 index 00000000..59fa511a Binary files /dev/null and b/blockchains/smartchain/assets/0x2e42C9EAc96833C6e16Dc71c743cECC114CCD7e3/logo.png differ diff --git a/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/info.json b/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/info.json new file mode 100644 index 00000000..43c3197f --- /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 00000000..3b03b1af 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 new file mode 100644 index 00000000..4a819831 --- /dev/null +++ b/blockchains/smartchain/assets/0x2e74Ee4fc4466d0883eF5E12A0Ce344BFe15BE8D/info.json @@ -0,0 +1,25 @@ +{ + "name": "PumpETH", + "website": "https://pumpeth.com", + "description": "Rebase Token that offers some Utility (dApps) and also rewards 4% all the holders with BEP20 ETH", + "explorer": "https://bscscan.com/token/0x2e74ee4fc4466d0883ef5e12a0ce344bfe15be8d", + "type": "BEP20", + "symbol": "PETH", + "decimals": 9, + "status": "active", + "id": "0x2e74Ee4fc4466d0883eF5E12A0Ce344BFe15BE8D", + "links": [ + { + "name": "x", + "url": "https://x.com/PumpETHToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pumpeth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pumpeth" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2e74Ee4fc4466d0883eF5E12A0Ce344BFe15BE8D/logo.png b/blockchains/smartchain/assets/0x2e74Ee4fc4466d0883eF5E12A0Ce344BFe15BE8D/logo.png new file mode 100644 index 00000000..1ecd5f01 Binary files /dev/null and b/blockchains/smartchain/assets/0x2e74Ee4fc4466d0883eF5E12A0Ce344BFe15BE8D/logo.png differ diff --git a/blockchains/smartchain/assets/0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234/info.json b/blockchains/smartchain/assets/0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234/info.json new file mode 100644 index 00000000..7338ca46 --- /dev/null +++ b/blockchains/smartchain/assets/0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234/info.json @@ -0,0 +1,36 @@ +{ + "name": "Birb", + "website": "https://birb.com", + "description": "Discover and experience the exciting Birb ecosphere. Birb has many features, such as our beautiful NFTs rich in functionality, top holder rewards, Birb e-commerce plugins, our upcoming social $BIRB sending, and privacy features.", + "explorer": "https://bscscan.com/token/0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234", + "type": "BEP20", + "symbol": "BIRB", + "decimals": 18, + "status": "active", + "id": "0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/birbdev" + }, + { + "name": "x", + "url": "https://x.com/BirbDefi" + }, + { + "name": "telegram", + "url": "https://t.me/birbdefi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/birb" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BirbDefi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234/logo.png b/blockchains/smartchain/assets/0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234/logo.png new file mode 100644 index 00000000..385f9f44 Binary files /dev/null and b/blockchains/smartchain/assets/0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234/logo.png differ diff --git a/blockchains/smartchain/assets/0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3/info.json b/blockchains/smartchain/assets/0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3/info.json new file mode 100644 index 00000000..1c5670b3 --- /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 00000000..fed5dfd1 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 00000000..ea0d521b --- /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 00000000..925f4676 Binary files /dev/null and b/blockchains/smartchain/assets/0x2ec46EeD30c94caa5979e6A0395Abe824138335f/logo.png differ diff --git a/blockchains/smartchain/assets/0x2ed990dcE85F30951D1Bc26676ED0A5FCbDC12d2/info.json b/blockchains/smartchain/assets/0x2ed990dcE85F30951D1Bc26676ED0A5FCbDC12d2/info.json new file mode 100644 index 00000000..8ecbfc5c --- /dev/null +++ b/blockchains/smartchain/assets/0x2ed990dcE85F30951D1Bc26676ED0A5FCbDC12d2/info.json @@ -0,0 +1,11 @@ +{ + "name": "POOROCKET", + "website": "https://poorocket.com", + "description": "$POOROCKET is the fairest launched, anti-whale, community driven, DeFi Token instructed to reward holders through its frictionless yield and liquidity generation protocol. Within the POOROCKET application, we have developed a fully bespoke digital wallet offering to store your cryptocurrencies in the safest, most immutable environment on the market.", + "explorer": "https://bscscan.com/token/0x2ed990dce85f30951d1bc26676ed0a5fcbdc12d2", + "type": "BEP20", + "symbol": "POOROCKET", + "decimals": 9, + "status": "active", + "id": "0x2ed990dcE85F30951D1Bc26676ED0A5FCbDC12d2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2ed990dcE85F30951D1Bc26676ED0A5FCbDC12d2/logo.png b/blockchains/smartchain/assets/0x2ed990dcE85F30951D1Bc26676ED0A5FCbDC12d2/logo.png new file mode 100644 index 00000000..423532d1 Binary files /dev/null and b/blockchains/smartchain/assets/0x2ed990dcE85F30951D1Bc26676ED0A5FCbDC12d2/logo.png differ diff --git a/blockchains/smartchain/assets/0x2ed9e96EDd11A1fF5163599A66fb6f1C77FA9C66/info.json b/blockchains/smartchain/assets/0x2ed9e96EDd11A1fF5163599A66fb6f1C77FA9C66/info.json new file mode 100644 index 00000000..3f7e23a7 --- /dev/null +++ b/blockchains/smartchain/assets/0x2ed9e96EDd11A1fF5163599A66fb6f1C77FA9C66/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lead Token", + "type": "BEP20", + "symbol": "LEAD", + "decimals": 18, + "website": "https://leadwallet.io", + "description": "Lead Wallet is a simple decentralized multi-crypto wallet application that allow users to spend, store, swap, stake and exchange cryptocurrencies.", + "explorer": "https://bscscan.com/token/0x2ed9e96EDd11A1fF5163599A66fb6f1C77FA9C66", + "status": "active", + "id": "0x2ed9e96EDd11A1fF5163599A66fb6f1C77FA9C66" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2ed9e96EDd11A1fF5163599A66fb6f1C77FA9C66/logo.png b/blockchains/smartchain/assets/0x2ed9e96EDd11A1fF5163599A66fb6f1C77FA9C66/logo.png new file mode 100644 index 00000000..b23178c9 Binary files /dev/null and b/blockchains/smartchain/assets/0x2ed9e96EDd11A1fF5163599A66fb6f1C77FA9C66/logo.png differ diff --git a/blockchains/smartchain/assets/0x2f053e33bd590830858161d42C67e9E8A9390019/info.json b/blockchains/smartchain/assets/0x2f053e33bd590830858161d42C67e9E8A9390019/info.json new file mode 100644 index 00000000..21470fa4 --- /dev/null +++ b/blockchains/smartchain/assets/0x2f053e33bd590830858161d42C67e9E8A9390019/info.json @@ -0,0 +1,25 @@ +{ + "name": "Vention", + "type": "BEP20", + "symbol": "VNT", + "decimals": 18, + "website": "https://vention.app/", + "description": "Philippines' First NFT Marketplace for Local Artists & Celebrities.", + "explorer": "https://bscscan.com/token/0x2f053e33bd590830858161d42C67e9E8A9390019", + "status": "active", + "id": "0x2f053e33bd590830858161d42C67e9E8A9390019", + "links": [ + { + "name": "x", + "url": "https://x.com/ventionapp" + }, + { + "name": "telegram", + "url": "https://t.me/ventionapp" + }, + { + "name": "facebook", + "url": "https://facebook.com/VentionApp" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2f053e33bd590830858161d42C67e9E8A9390019/logo.png b/blockchains/smartchain/assets/0x2f053e33bd590830858161d42C67e9E8A9390019/logo.png new file mode 100644 index 00000000..0a636f24 Binary files /dev/null and b/blockchains/smartchain/assets/0x2f053e33bd590830858161d42C67e9E8A9390019/logo.png differ diff --git a/blockchains/smartchain/assets/0x2f0c6e147974BfbF7Da557b88643D74C324053A2/info.json b/blockchains/smartchain/assets/0x2f0c6e147974BfbF7Da557b88643D74C324053A2/info.json new file mode 100644 index 00000000..c074f17a --- /dev/null +++ b/blockchains/smartchain/assets/0x2f0c6e147974BfbF7Da557b88643D74C324053A2/info.json @@ -0,0 +1,32 @@ +{ + "name": "Catcoin Token V2", + "type": "BEP20", + "symbol": "CATS", + "decimals": 0, + "website": "https://www.catcoincrypto.me/", + "description": "World's Best Community Driven Coin", + "explorer": "https://bscscan.com/token/0x2f0c6e147974BfbF7Da557b88643D74C324053A2", + "status": "active", + "id": "0x2f0c6e147974BfbF7Da557b88643D74C324053A2", + "links": [ + { + "name": "x", + "url": "https://x.com/catcoinbsc" + }, + { + "name": "telegram", + "url": "https://t.me/catcoin_bsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/catcoin-token/" + }, + { + "name": "source_code", + "url": "https://github.com/catcointoken-cats/" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2f0c6e147974BfbF7Da557b88643D74C324053A2/logo.png b/blockchains/smartchain/assets/0x2f0c6e147974BfbF7Da557b88643D74C324053A2/logo.png new file mode 100644 index 00000000..8643b349 Binary files /dev/null and b/blockchains/smartchain/assets/0x2f0c6e147974BfbF7Da557b88643D74C324053A2/logo.png differ diff --git a/blockchains/smartchain/assets/0x2f499c6DA2C84063BB7e0CB1C478687210cDB615/info.json b/blockchains/smartchain/assets/0x2f499c6DA2C84063BB7e0CB1C478687210cDB615/info.json new file mode 100644 index 00000000..40523b52 --- /dev/null +++ b/blockchains/smartchain/assets/0x2f499c6DA2C84063BB7e0CB1C478687210cDB615/info.json @@ -0,0 +1,48 @@ +{ + "name": "Reflex V2", + "type": "BEP20", + "symbol": "RFX", + "decimals": 18, + "website": "https://reflexfinance.com/", + "description": "$RFX, our native token, is a hyper deflationary reflection token hosted on the Binance Smart Chain. It is based on an innovative liquidity generating protocol with additional staking opportunities.", + "explorer": "https://bscscan.com/token/0x2f499c6DA2C84063BB7e0CB1C478687210cDB615", + "status": "active", + "id": "0x2f499c6DA2C84063BB7e0CB1C478687210cDB615", + "links": [ + { + "name": "x", + "url": "https://x.com/Reflex_Finance" + }, + { + "name": "telegram", + "url": "https://t.me/ReflexFinanceV2" + }, + { + "name": "discord", + "url": "https://discord.com/invite/reflexfinance" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ReflexFinance" + }, + { + "name": "whitepaper", + "url": "https://reflexfinance.com/whitepaper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/reflex-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/reflex-finance-v2" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCIcGozPp0vTrLbtc83AgzFg" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2f499c6DA2C84063BB7e0CB1C478687210cDB615/logo.png b/blockchains/smartchain/assets/0x2f499c6DA2C84063BB7e0CB1C478687210cDB615/logo.png new file mode 100644 index 00000000..46dead1f Binary files /dev/null and b/blockchains/smartchain/assets/0x2f499c6DA2C84063BB7e0CB1C478687210cDB615/logo.png differ diff --git a/blockchains/smartchain/assets/0x2f657932E65905eA09c7aacfe898bf79e207c1C0/info.json b/blockchains/smartchain/assets/0x2f657932E65905eA09c7aacfe898bf79e207c1C0/info.json new file mode 100644 index 00000000..30706f17 --- /dev/null +++ b/blockchains/smartchain/assets/0x2f657932E65905eA09c7aacfe898bf79e207c1C0/info.json @@ -0,0 +1,25 @@ +{ + "name": "RoboDoge Coin", + "type": "BEP20", + "symbol": "ROBODOGE", + "decimals": 9, + "website": "https://www.robodogecoin.com", + "description": "Robo Doge is a smart, hyper deflationary, community-driven protocol that rewards its' holders through smart tokenomics. We are a newer, more sophisticated, stronger version of the Doge family.", + "explorer": "https://bscscan.com/token/0x2f657932E65905eA09c7aacfe898bf79e207c1C0", + "status": "active", + "id": "0x2f657932E65905eA09c7aacfe898bf79e207c1C0", + "links": [ + { + "name": "reddit", + "url": "https://reddit.com/r/RoboDogeCoin/" + }, + { + "name": "telegram", + "url": "https://t.me/RoboDoge_Coin" + }, + { + "name": "x", + "url": "https://x.com/https://x.com/RobodogeC" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2f657932E65905eA09c7aacfe898bf79e207c1C0/logo.png b/blockchains/smartchain/assets/0x2f657932E65905eA09c7aacfe898bf79e207c1C0/logo.png new file mode 100644 index 00000000..94aa9e38 Binary files /dev/null and b/blockchains/smartchain/assets/0x2f657932E65905eA09c7aacfe898bf79e207c1C0/logo.png differ diff --git a/blockchains/smartchain/assets/0x2f801292924433F41E34669b0817F990764EcAA0/info.json b/blockchains/smartchain/assets/0x2f801292924433F41E34669b0817F990764EcAA0/info.json new file mode 100644 index 00000000..6209cf3c --- /dev/null +++ b/blockchains/smartchain/assets/0x2f801292924433F41E34669b0817F990764EcAA0/info.json @@ -0,0 +1,11 @@ +{ + "name": "DOGEMOON", + "website": "https://dogemoon.me", + "description": "DOGEMOON is a deflationary token with purpose of charity", + "explorer": "https://bscscan.com/token/0x2f801292924433f41e34669b0817f990764ecaa0", + "type": "BEP20", + "symbol": "DOGEMOON", + "decimals": 9, + "status": "abandoned", + "id": "0x2f801292924433F41E34669b0817F990764EcAA0" +} \ 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 00000000..6fd9e46c --- /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 00000000..e555fa9b 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 new file mode 100644 index 00000000..5288033d --- /dev/null +++ b/blockchains/smartchain/assets/0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2/info.json @@ -0,0 +1,40 @@ +{ + "name": "Mysterium", + "type": "BEP20", + "symbol": "MYST", + "decimals": 18, + "website": "https://mysterium.network/", + "description": "MYST is the utility token at the heart of Mysterium Network. MYST is used for frictionless P2P micropayments within the network. If you’re using the VPN, you can pay with MYST token. If you’re a node (provider of the VPN service) you receive MYST. Mysterium has designed its own unique micropayments infrastructure, the Hermes protocol, to facilitate these fast, anonymous, and censorship-resistant transactions.", + "explorer": "https://bscscan.com/token/0x2ff0b946a6782190c4fe5d4971cfe79f0b6e4df2", + "status": "active", + "id": "0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2", + "links": [ + { + "name": "x", + "url": "https://x.com/MysteriumNet" + }, + { + "name": "telegram", + "url": "https://t.me/Mysterium_Network" + }, + { + "name": "discord", + "url": "https://discord.com/invite/n3vtSwc" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MysteriumNetwork/" + }, + { + "name": "medium", + "url": "https://medium.com/mysterium-network" + }, + { + "name": "github", + "url": "https://github.com/MysteriumNetwork" + } + ], + "tags": [ + "privacy" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2/logo.png b/blockchains/smartchain/assets/0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2/logo.png new file mode 100644 index 00000000..ad16c843 Binary files /dev/null and b/blockchains/smartchain/assets/0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2/logo.png differ diff --git a/blockchains/smartchain/assets/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0/info.json b/blockchains/smartchain/assets/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0/info.json new file mode 100644 index 00000000..02594058 --- /dev/null +++ b/blockchains/smartchain/assets/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus SXP", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0", + "type": "BEP20", + "symbol": "vSXP", + "decimals": 8, + "status": "active", + "id": "0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0/logo.png b/blockchains/smartchain/assets/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0/logo.png new file mode 100644 index 00000000..b54b91ba Binary files /dev/null and b/blockchains/smartchain/assets/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0/logo.png differ diff --git a/blockchains/smartchain/assets/0x2fa6ee42BacF983F050210A1ca42f88686327FC9/info.json b/blockchains/smartchain/assets/0x2fa6ee42BacF983F050210A1ca42f88686327FC9/info.json new file mode 100644 index 00000000..f3f5839a --- /dev/null +++ b/blockchains/smartchain/assets/0x2fa6ee42BacF983F050210A1ca42f88686327FC9/info.json @@ -0,0 +1,24 @@ +{ + "name": "W3C", + "website": "https://w3dao.finance", + "description": "W3C is used as a liquidity token and can be obtained by staking or through the secondary market.", + "explorer": "https://bscscan.com/token/0x2fa6ee42BacF983F050210A1ca42f88686327FC9", + "type": "BEP20", + "symbol": "W3C", + "decimals": 18, + "status": "active", + "id": "0x2fa6ee42BacF983F050210A1ca42f88686327FC9", + "links": [ + { + "name": "telegram", + "url": "https://t.me/+151I1-uPRDs2Yzg9" + }, + { + "name": "x", + "url": "https://x.com/w3dao_bsc?s=11" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2fa6ee42BacF983F050210A1ca42f88686327FC9/logo.png b/blockchains/smartchain/assets/0x2fa6ee42BacF983F050210A1ca42f88686327FC9/logo.png new file mode 100644 index 00000000..ca65702c Binary files /dev/null and b/blockchains/smartchain/assets/0x2fa6ee42BacF983F050210A1ca42f88686327FC9/logo.png differ diff --git a/blockchains/smartchain/assets/0x2fd6c9B869Dea106730269E13113361b684f843a/info.json b/blockchains/smartchain/assets/0x2fd6c9B869Dea106730269E13113361b684f843a/info.json new file mode 100644 index 00000000..86abd2f2 --- /dev/null +++ b/blockchains/smartchain/assets/0x2fd6c9B869Dea106730269E13113361b684f843a/info.json @@ -0,0 +1,36 @@ +{ + "name": "Chihuahua", + "type": "BEP20", + "symbol": "CHH", + "decimals": 9, + "website": "https://chihuahuabsc.io/", + "description": "Chihuahua aims to spread animal adoption awareness. Part of the taxes applied to every transaction is donated to animal shelters worldwide.", + "explorer": "https://bscscan.com/token/0x2fd6c9B869Dea106730269E13113361b684f843a", + "status": "active", + "id": "0x2fd6c9B869Dea106730269E13113361b684f843a", + "links": [ + { + "name": "x", + "url": "https://x.com/Chihuahua_bsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chihuahua-token-19fcd0de-eb4d-4fd7-bc4a-a202247dfdbb/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/chihuahua-token-19fcd0de-eb4d-4fd7-bc4a-a202247dfdbb" + }, + { + "name": "telegram", + "url": "https://t.me/ChiHuaHuaGlobal" + }, + { + "name": "facebook", + "url": "https://facebook.com/chihuahuabsc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2fd6c9B869Dea106730269E13113361b684f843a/logo.png b/blockchains/smartchain/assets/0x2fd6c9B869Dea106730269E13113361b684f843a/logo.png new file mode 100644 index 00000000..65cb831a Binary files /dev/null and b/blockchains/smartchain/assets/0x2fd6c9B869Dea106730269E13113361b684f843a/logo.png differ diff --git a/blockchains/smartchain/assets/0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1/info.json b/blockchains/smartchain/assets/0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1/info.json new file mode 100644 index 00000000..06aa58fa --- /dev/null +++ b/blockchains/smartchain/assets/0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1/info.json @@ -0,0 +1,36 @@ +{ + "name": "Green Metaverse Token", + "type": "BEP20", + "symbol": "GMT", + "decimals": 8, + "website": "https://www.stepn.com", + "description": "GMT is the governance token of STEPN, which is a Web3 lifestyle app with fun social elements and gamification design.", + "explorer": "https://bscscan.com/token/0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1", + "status": "active", + "id": "0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1", + "links": [ + { + "name": "reddit", + "url": "https://reddit.com/r/StepN/" + }, + { + "name": "x", + "url": "https://x.com/Stepnofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/green-metaverse-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/stepn" + }, + { + "name": "discord", + "url": "https://discord.com/invite/stepn" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1/logo.png b/blockchains/smartchain/assets/0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1/logo.png new file mode 100644 index 00000000..8fa982f7 Binary files /dev/null and b/blockchains/smartchain/assets/0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1/logo.png differ diff --git a/blockchains/smartchain/assets/0x30365Ed4Ca8173013ad948b9842f34ac71d01f7C/info.json b/blockchains/smartchain/assets/0x30365Ed4Ca8173013ad948b9842f34ac71d01f7C/info.json new file mode 100644 index 00000000..1ae91e76 --- /dev/null +++ b/blockchains/smartchain/assets/0x30365Ed4Ca8173013ad948b9842f34ac71d01f7C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dirham", + "website": "https://dirhamcrypto.io/", + "description": "Dirham is a fiat collateralized stablecoin backed by AED. It is the native to Dirham crypto where bonds are introduced to blockchain for the first time ever. Dirham holders may earn up to 4% ineterest every year.", + "explorer": "https://bscscan.com/token/0x30365ed4ca8173013ad948b9842f34ac71d01f7c", + "type": "BEP20", + "symbol": "DHS", + "decimals": 18, + "status": "active", + "id": "0x30365Ed4Ca8173013ad948b9842f34ac71d01f7C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x30365Ed4Ca8173013ad948b9842f34ac71d01f7C/logo.png b/blockchains/smartchain/assets/0x30365Ed4Ca8173013ad948b9842f34ac71d01f7C/logo.png new file mode 100644 index 00000000..2772bcd1 Binary files /dev/null and b/blockchains/smartchain/assets/0x30365Ed4Ca8173013ad948b9842f34ac71d01f7C/logo.png differ diff --git a/blockchains/smartchain/assets/0x303dE4bdb189B951F875eB4A8ECDe2985138161e/info.json b/blockchains/smartchain/assets/0x303dE4bdb189B951F875eB4A8ECDe2985138161e/info.json new file mode 100644 index 00000000..27bfb421 --- /dev/null +++ b/blockchains/smartchain/assets/0x303dE4bdb189B951F875eB4A8ECDe2985138161e/info.json @@ -0,0 +1,11 @@ +{ + "name": "USD SMART", + "website": "https://usdsmart.com", + "description": "USDs is a Digital assets for a stable currency with Binance Smart Chain Network #BSC For Smart Project.", + "explorer": "https://bscscan.com/token/0x303dE4bdb189B951F875eB4A8ECDe2985138161e", + "type": "BEP20", + "symbol": "USDs", + "decimals": 18, + "status": "active", + "id": "0x303dE4bdb189B951F875eB4A8ECDe2985138161e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x303dE4bdb189B951F875eB4A8ECDe2985138161e/logo.png b/blockchains/smartchain/assets/0x303dE4bdb189B951F875eB4A8ECDe2985138161e/logo.png new file mode 100644 index 00000000..097e4046 Binary files /dev/null and b/blockchains/smartchain/assets/0x303dE4bdb189B951F875eB4A8ECDe2985138161e/logo.png differ diff --git a/blockchains/smartchain/assets/0x3045d1A840364c3657b8Df6c6F86a4359c23472B/info.json b/blockchains/smartchain/assets/0x3045d1A840364c3657b8Df6c6F86a4359c23472B/info.json new file mode 100644 index 00000000..f325e584 --- /dev/null +++ b/blockchains/smartchain/assets/0x3045d1A840364c3657b8Df6c6F86a4359c23472B/info.json @@ -0,0 +1,29 @@ +{ + "name": "Orica", + "type": "BEP20", + "symbol": "ORI", + "decimals": 18, + "website": "https://orica.io/", + "description": "Orica is an NFT marketplace in Binance Smart Chain for all kind of digital arts, the token which uses in this NFT marketplace is ORI", + "explorer": "https://bscscan.com/token/0x3045d1A840364c3657b8Df6c6F86a4359c23472B", + "status": "active", + "id": "0x3045d1A840364c3657b8Df6c6F86a4359c23472B", + "links": [ + { + "name": "x", + "url": "https://x.com/orica_io" + }, + { + "name": "telegram", + "url": "https://t.me/OricaChat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/YZ9vp5syct" + }, + { + "name": "whitepaper", + "url": "https://orica.io/media/orica_whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3045d1A840364c3657b8Df6c6F86a4359c23472B/logo.png b/blockchains/smartchain/assets/0x3045d1A840364c3657b8Df6c6F86a4359c23472B/logo.png new file mode 100644 index 00000000..00121515 Binary files /dev/null and b/blockchains/smartchain/assets/0x3045d1A840364c3657b8Df6c6F86a4359c23472B/logo.png differ diff --git a/blockchains/smartchain/assets/0x3048144676Ea683bF670392971e569d9511015eb/info.json b/blockchains/smartchain/assets/0x3048144676Ea683bF670392971e569d9511015eb/info.json new file mode 100644 index 00000000..95b4d49d --- /dev/null +++ b/blockchains/smartchain/assets/0x3048144676Ea683bF670392971e569d9511015eb/info.json @@ -0,0 +1,11 @@ +{ + "name": "FUSD", + "website": "https://fusd.network/", + "description": "Decentralizing the U.S dollar to create the worlds favourite USD stable token.", + "explorer": "https://bscscan.com/token/0x3048144676ea683bf670392971e569d9511015eb", + "type": "BEP20", + "symbol": "FUSD", + "decimals": 18, + "status": "active", + "id": "0x3048144676Ea683bF670392971e569d9511015eb" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3048144676Ea683bF670392971e569d9511015eb/logo.png b/blockchains/smartchain/assets/0x3048144676Ea683bF670392971e569d9511015eb/logo.png new file mode 100644 index 00000000..7a6d19e4 Binary files /dev/null and b/blockchains/smartchain/assets/0x3048144676Ea683bF670392971e569d9511015eb/logo.png differ diff --git a/blockchains/smartchain/assets/0x304c62b5B030176F8d328d3A01FEaB632FC929BA/info.json b/blockchains/smartchain/assets/0x304c62b5B030176F8d328d3A01FEaB632FC929BA/info.json new file mode 100644 index 00000000..baff0b87 --- /dev/null +++ b/blockchains/smartchain/assets/0x304c62b5B030176F8d328d3A01FEaB632FC929BA/info.json @@ -0,0 +1,11 @@ +{ + "name": "LEV Token", + "website": "https://www.levyathan.finance/", + "description": "The first DIGITAL ASSETS INDEXES on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x304c62b5B030176F8d328d3A01FEaB632FC929BA", + "type": "BEP20", + "symbol": "LEV", + "decimals": 18, + "status": "active", + "id": "0x304c62b5B030176F8d328d3A01FEaB632FC929BA" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x304c62b5B030176F8d328d3A01FEaB632FC929BA/logo.png b/blockchains/smartchain/assets/0x304c62b5B030176F8d328d3A01FEaB632FC929BA/logo.png new file mode 100644 index 00000000..8d8ff0b2 Binary files /dev/null and b/blockchains/smartchain/assets/0x304c62b5B030176F8d328d3A01FEaB632FC929BA/logo.png differ diff --git a/blockchains/smartchain/assets/0x307Bc76E3d59ED73886A9cf9360a9286f6281ba7/info.json b/blockchains/smartchain/assets/0x307Bc76E3d59ED73886A9cf9360a9286f6281ba7/info.json new file mode 100644 index 00000000..28602cbb --- /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 00000000..686dbf33 Binary files /dev/null and b/blockchains/smartchain/assets/0x307Bc76E3d59ED73886A9cf9360a9286f6281ba7/logo.png differ diff --git a/blockchains/smartchain/assets/0x3081523203F2AEfceaBd4b9B9eDbCa05A038Db67/info.json b/blockchains/smartchain/assets/0x3081523203F2AEfceaBd4b9B9eDbCa05A038Db67/info.json new file mode 100644 index 00000000..d8c48450 --- /dev/null +++ b/blockchains/smartchain/assets/0x3081523203F2AEfceaBd4b9B9eDbCa05A038Db67/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Last McAfee Token", + "website": "https://mcafee.finance", + "description": "John McAfee was a true Cryptocurrency pioneer and believer of Freedom and Libertarian principles. MCAFEE₿ Token is dedicated to his libertarian principles and his belief in a decentralized monetary system", + "explorer": "https://bscscan.com/token/0x3081523203F2AEfceaBd4b9B9eDbCa05A038Db67", + "type": "BEP20", + "symbol": "MCAFEE", + "decimals": 9, + "status": "active", + "id": "0x3081523203F2AEfceaBd4b9B9eDbCa05A038Db67" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3081523203F2AEfceaBd4b9B9eDbCa05A038Db67/logo.png b/blockchains/smartchain/assets/0x3081523203F2AEfceaBd4b9B9eDbCa05A038Db67/logo.png new file mode 100644 index 00000000..537ae74b Binary files /dev/null and b/blockchains/smartchain/assets/0x3081523203F2AEfceaBd4b9B9eDbCa05A038Db67/logo.png differ diff --git a/blockchains/smartchain/assets/0x30842a9c941d9DE3AF582c41ad12b11D776ba69e/info.json b/blockchains/smartchain/assets/0x30842a9c941d9DE3AF582c41ad12b11D776ba69e/info.json new file mode 100644 index 00000000..666ac5de --- /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 00000000..f16a233f 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 new file mode 100644 index 00000000..095a7c87 --- /dev/null +++ b/blockchains/smartchain/assets/0x308FC5CdD559Be5cB62B08A26a4699bBef4a888f/info.json @@ -0,0 +1,25 @@ +{ + "name": "DCIP", + "website": "https://dcip.finance", + "description": "DCIP is world's first Decentralized Community Investment Protocol.", + "explorer": "https://bscscan.com/token/0x308FC5CdD559Be5cB62B08A26a4699bBef4a888f", + "type": "BEP20", + "symbol": "DCIP", + "decimals": 9, + "status": "active", + "id": "0x308FC5CdD559Be5cB62B08A26a4699bBef4a888f", + "links": [ + { + "name": "github", + "url": "https://github.com/DCIP-Finance/" + }, + { + "name": "x", + "url": "https://x.com/dcip_finance" + }, + { + "name": "telegram", + "url": "https://t.me/DCIPfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x308FC5CdD559Be5cB62B08A26a4699bBef4a888f/logo.png b/blockchains/smartchain/assets/0x308FC5CdD559Be5cB62B08A26a4699bBef4a888f/logo.png new file mode 100644 index 00000000..40f9e6d6 Binary files /dev/null and b/blockchains/smartchain/assets/0x308FC5CdD559Be5cB62B08A26a4699bBef4a888f/logo.png differ diff --git a/blockchains/smartchain/assets/0x308bfaeAaC8BDab6e9Fc5Ead8EdCb5f95b0599d9/info.json b/blockchains/smartchain/assets/0x308bfaeAaC8BDab6e9Fc5Ead8EdCb5f95b0599d9/info.json new file mode 100644 index 00000000..84a5193c --- /dev/null +++ b/blockchains/smartchain/assets/0x308bfaeAaC8BDab6e9Fc5Ead8EdCb5f95b0599d9/info.json @@ -0,0 +1,25 @@ +{ + "name": "Poly-Peg ONG", + "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 00000000..9e9146ba 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 00000000..e25ba356 --- /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 00000000..f043e9e3 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 00000000..d6bb5227 --- /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 00000000..d65485b2 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 00000000..f6c72303 --- /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 00000000..ed1647f5 Binary files /dev/null and b/blockchains/smartchain/assets/0x30BD85fD4286c5c9857679F5B188f737B4a7B8C0/logo.png differ diff --git a/blockchains/smartchain/assets/0x30b29C6C03546F6395ddB454538D0eb7E4a6E32f/info.json b/blockchains/smartchain/assets/0x30b29C6C03546F6395ddB454538D0eb7E4a6E32f/info.json new file mode 100644 index 00000000..95e5ca73 --- /dev/null +++ b/blockchains/smartchain/assets/0x30b29C6C03546F6395ddB454538D0eb7E4a6E32f/info.json @@ -0,0 +1,11 @@ +{ + "name": "RooCoin", + "website": "https://roocoin.com", + "description": "RooCoin is a ‘charity-oriented’ token that's helping to support community causes across the world.", + "explorer": "https://bscscan.com/token/0x30b29C6C03546F6395ddB454538D0eb7E4a6E32f", + "type": "BEP20", + "symbol": "ROO", + "decimals": 18, + "status": "active", + "id": "0x30b29C6C03546F6395ddB454538D0eb7E4a6E32f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x30b29C6C03546F6395ddB454538D0eb7E4a6E32f/logo.png b/blockchains/smartchain/assets/0x30b29C6C03546F6395ddB454538D0eb7E4a6E32f/logo.png new file mode 100644 index 00000000..eda59dff Binary files /dev/null and b/blockchains/smartchain/assets/0x30b29C6C03546F6395ddB454538D0eb7E4a6E32f/logo.png differ diff --git a/blockchains/smartchain/assets/0x30ea7c369B87fe261dE28A1eeFafE806696A738B/info.json b/blockchains/smartchain/assets/0x30ea7c369B87fe261dE28A1eeFafE806696A738B/info.json new file mode 100644 index 00000000..17c39553 --- /dev/null +++ b/blockchains/smartchain/assets/0x30ea7c369B87fe261dE28A1eeFafE806696A738B/info.json @@ -0,0 +1,21 @@ +{ + "name": "DOXXED", + "type": "BEP20", + "symbol": "DOX", + "decimals": 18, + "website": "https://www.doxxed.org/", + "description": "DOXXED is a Binance Smart Chain Startup with a unique ecosystem of multiple utilities & use case, reflection to holders, revenue share and buybacks.", + "explorer": "https://bscscan.com/token/0x30ea7c369B87fe261dE28A1eeFafE806696A738B", + "status": "active", + "id": "0x30ea7c369B87fe261dE28A1eeFafE806696A738B", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/doxxed/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/doxxed" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x30ea7c369B87fe261dE28A1eeFafE806696A738B/logo.png b/blockchains/smartchain/assets/0x30ea7c369B87fe261dE28A1eeFafE806696A738B/logo.png new file mode 100644 index 00000000..cf24dc40 Binary files /dev/null and b/blockchains/smartchain/assets/0x30ea7c369B87fe261dE28A1eeFafE806696A738B/logo.png differ diff --git a/blockchains/smartchain/assets/0x31045e7023e6c388F9447E632a3f9EaFF90393fa/info.json b/blockchains/smartchain/assets/0x31045e7023e6c388F9447E632a3f9EaFF90393fa/info.json new file mode 100644 index 00000000..5b9c4e64 --- /dev/null +++ b/blockchains/smartchain/assets/0x31045e7023e6c388F9447E632a3f9EaFF90393fa/info.json @@ -0,0 +1,29 @@ +{ + "name": "SafeToken", + "website": "https://safetoken.xyz/", + "description": "SafeToken is a next-gen cryptocurrency that combines auto-liquidity, frictionless yield, and token burn.", + "research": "", + "explorer": "https://bscscan.com/token/0x31045e7023e6c388F9447E632a3f9EaFF90393fa", + "type": "BEP20", + "symbol": "SAFETOKEN", + "decimals": 18, + "status": "active", + "id": "0x31045e7023e6c388F9447E632a3f9EaFF90393fa", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/safetokenteam" + }, + { + "name": "telegram", + "url": "https://t.me/safetokenbsc" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SafeToken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x31045e7023e6c388F9447E632a3f9EaFF90393fa/logo.png b/blockchains/smartchain/assets/0x31045e7023e6c388F9447E632a3f9EaFF90393fa/logo.png new file mode 100644 index 00000000..9abd01d4 Binary files /dev/null and b/blockchains/smartchain/assets/0x31045e7023e6c388F9447E632a3f9EaFF90393fa/logo.png differ diff --git a/blockchains/smartchain/assets/0x3107C0A1126268CA303f8d99c712392fA596e6D7/info.json b/blockchains/smartchain/assets/0x3107C0A1126268CA303f8d99c712392fA596e6D7/info.json new file mode 100644 index 00000000..d4b45e1a --- /dev/null +++ b/blockchains/smartchain/assets/0x3107C0A1126268CA303f8d99c712392fA596e6D7/info.json @@ -0,0 +1,32 @@ +{ + "name": "Gem Exchange and Trading", + "type": "BEP20", + "symbol": "GXT", + "decimals": 18, + "website": "https://www.gxtglobal.com/en/index.html", + "description": "GXT, the pioneer of NFT and Diamond Distribution evolves with no limit.", + "explorer": "https://bscscan.com/token/0x3107C0A1126268CA303f8d99c712392fA596e6D7", + "status": "active", + "id": "0x3107C0A1126268CA303f8d99c712392fA596e6D7", + "links": [ + { + "name": "x", + "url": "https://x.com/GXT25075644" + }, + { + "name": "github", + "url": "https://github.com/gxtmg/gxt_erc20" + }, + { + "name": "telegram", + "url": "https://t.me/gxtglobal_official" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gem-exchange-and-trading" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3107C0A1126268CA303f8d99c712392fA596e6D7/logo.png b/blockchains/smartchain/assets/0x3107C0A1126268CA303f8d99c712392fA596e6D7/logo.png new file mode 100644 index 00000000..f4ce4d24 Binary files /dev/null and b/blockchains/smartchain/assets/0x3107C0A1126268CA303f8d99c712392fA596e6D7/logo.png differ diff --git a/blockchains/smartchain/assets/0x311827832c1f670229eF0AFbE96D2DF8195c8C9A/info.json b/blockchains/smartchain/assets/0x311827832c1f670229eF0AFbE96D2DF8195c8C9A/info.json new file mode 100644 index 00000000..8bb9ebed --- /dev/null +++ b/blockchains/smartchain/assets/0x311827832c1f670229eF0AFbE96D2DF8195c8C9A/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeNFT", + "website": "https://safenft.me", + "description": "Leading Decentralized Ecosystem in DeFi and Stake Sharing. Generate passive daily income while staking your tokens", + "explorer": "https://bscscan.com/token/0x311827832c1f670229eF0AFbE96D2DF8195c8C9A", + "type": "BEP20", + "symbol": "SNFT", + "decimals": 0, + "status": "active", + "id": "0x311827832c1f670229eF0AFbE96D2DF8195c8C9A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x311827832c1f670229eF0AFbE96D2DF8195c8C9A/logo.png b/blockchains/smartchain/assets/0x311827832c1f670229eF0AFbE96D2DF8195c8C9A/logo.png new file mode 100644 index 00000000..7b72ff24 Binary files /dev/null and b/blockchains/smartchain/assets/0x311827832c1f670229eF0AFbE96D2DF8195c8C9A/logo.png differ diff --git a/blockchains/smartchain/assets/0x31353E2826Cc4402735E55a175a75CE2569B4226/info.json b/blockchains/smartchain/assets/0x31353E2826Cc4402735E55a175a75CE2569B4226/info.json new file mode 100644 index 00000000..8b20d1a6 --- /dev/null +++ b/blockchains/smartchain/assets/0x31353E2826Cc4402735E55a175a75CE2569B4226/info.json @@ -0,0 +1,29 @@ +{ + "name": "World of Waves", + "type": "BEP20", + "symbol": "WOW", + "decimals": 9, + "website": "https://wow.surf", + "description": "WOW is the World‘s first charity-based NFT marketplace!", + "explorer": "https://bscscan.com/token/0x31353E2826Cc4402735E55a175a75CE2569B4226", + "status": "active", + "id": "0x31353E2826Cc4402735E55a175a75CE2569B4226", + "links": [ + { + "name": "x", + "url": "https://x.com/World_Of_Waves" + }, + { + "name": "telegram", + "url": "https://t.me/world_of_waves" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCQ_IhegDFNM6ZnwJ3fsg3Ig" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/world-of-waves" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x31353E2826Cc4402735E55a175a75CE2569B4226/logo.png b/blockchains/smartchain/assets/0x31353E2826Cc4402735E55a175a75CE2569B4226/logo.png new file mode 100644 index 00000000..d8c44ee4 Binary files /dev/null and b/blockchains/smartchain/assets/0x31353E2826Cc4402735E55a175a75CE2569B4226/logo.png differ diff --git a/blockchains/smartchain/assets/0x31471E0791fCdbE82fbF4C44943255e923F1b794/info.json b/blockchains/smartchain/assets/0x31471E0791fCdbE82fbF4C44943255e923F1b794/info.json new file mode 100644 index 00000000..8893aedf --- /dev/null +++ b/blockchains/smartchain/assets/0x31471E0791fCdbE82fbF4C44943255e923F1b794/info.json @@ -0,0 +1,21 @@ +{ + "name": "Plant vs Undead Token", + "type": "BEP20", + "symbol": "PVU", + "decimals": 18, + "website": "https://plantvsundead.com/", + "description": "Plant vs Undead is a blockchain game built on Binance Smart Chain where your plants are your NFTs. There are two game mode: farm simulation and Tower defense", + "explorer": "https://bscscan.com/token/0x31471e0791fcdbe82fbf4c44943255e923f1b794", + "status": "active", + "id": "0x31471E0791fCdbE82fbF4C44943255e923F1b794", + "links": [ + { + "name": "x", + "url": "https://x.com/vs_nft" + }, + { + "name": "telegram", + "url": "https://t.me/plantvsundead" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x31471E0791fCdbE82fbF4C44943255e923F1b794/logo.png b/blockchains/smartchain/assets/0x31471E0791fCdbE82fbF4C44943255e923F1b794/logo.png new file mode 100644 index 00000000..9e846388 Binary files /dev/null and b/blockchains/smartchain/assets/0x31471E0791fCdbE82fbF4C44943255e923F1b794/logo.png differ diff --git a/blockchains/smartchain/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/info.json b/blockchains/smartchain/assets/0x314938c596F5ce31C3f75307d2979338C346D7F2/info.json new file mode 100644 index 00000000..8c0296bb --- /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 00000000..c358f4e9 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 00000000..b236e758 --- /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 00000000..02bf1d0a --- /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 00000000..01ae4174 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 00000000..6b1db46e --- /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 00000000..a694f61f Binary files /dev/null and b/blockchains/smartchain/assets/0x3199A64Bc8aaBDFd9A3937a346CC59c3d81D8a9a/logo.png differ diff --git a/blockchains/smartchain/assets/0x319Bf3bB8aB93658074Be595C4Aa55Cd60380AF7/info.json b/blockchains/smartchain/assets/0x319Bf3bB8aB93658074Be595C4Aa55Cd60380AF7/info.json new file mode 100644 index 00000000..59381a93 --- /dev/null +++ b/blockchains/smartchain/assets/0x319Bf3bB8aB93658074Be595C4Aa55Cd60380AF7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Suntrust Finance", + "website": "https://suntrust.finance/", + "description": "Suntrust Finance A community-focused decentralized transaction network", + "explorer": "https://bscscan.com/token/0x319Bf3bB8aB93658074Be595C4Aa55Cd60380AF7", + "type": "BEP20", + "symbol": "SUNT", + "decimals": 2, + "status": "active", + "id": "0x319Bf3bB8aB93658074Be595C4Aa55Cd60380AF7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x319Bf3bB8aB93658074Be595C4Aa55Cd60380AF7/logo.png b/blockchains/smartchain/assets/0x319Bf3bB8aB93658074Be595C4Aa55Cd60380AF7/logo.png new file mode 100644 index 00000000..97e8daa2 Binary files /dev/null and b/blockchains/smartchain/assets/0x319Bf3bB8aB93658074Be595C4Aa55Cd60380AF7/logo.png differ diff --git a/blockchains/smartchain/assets/0x31A9042dCE0C13975D04d0E9758Cb7B596F0dD43/info.json b/blockchains/smartchain/assets/0x31A9042dCE0C13975D04d0E9758Cb7B596F0dD43/info.json new file mode 100644 index 00000000..662c04c4 --- /dev/null +++ b/blockchains/smartchain/assets/0x31A9042dCE0C13975D04d0E9758Cb7B596F0dD43/info.json @@ -0,0 +1,29 @@ +{ + "name": "Burn1 Coin", + "website": "https://burn1.today", + "description": "Burn1 Coin is the foundation of an ecosystem of cannabis centric crypto products while simultaneously supporting Cannabis reform & advocacy. ", + "explorer": "https://bscscan.com/token/0x31A9042dCE0C13975D04d0E9758Cb7B596F0dD43", + "type": "BEP20", + "symbol": "BURN1COIN", + "decimals": 9, + "status": "active", + "id": "0x31A9042dCE0C13975D04d0E9758Cb7B596F0dD43", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Burn1Coin" + }, + { + "name": "x", + "url": "https://x.com/Burn1Coin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Burn1Coin/" + }, + { + "name": "facebook", + "url": "https://facebook.com/Burn1coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x31A9042dCE0C13975D04d0E9758Cb7B596F0dD43/logo.png b/blockchains/smartchain/assets/0x31A9042dCE0C13975D04d0E9758Cb7B596F0dD43/logo.png new file mode 100644 index 00000000..7f42df67 Binary files /dev/null and b/blockchains/smartchain/assets/0x31A9042dCE0C13975D04d0E9758Cb7B596F0dD43/logo.png differ diff --git a/blockchains/smartchain/assets/0x31C78f583ed0288D67b2b80Dc5C443Bc3b15C661/info.json b/blockchains/smartchain/assets/0x31C78f583ed0288D67b2b80Dc5C443Bc3b15C661/info.json new file mode 100644 index 00000000..07d8c252 --- /dev/null +++ b/blockchains/smartchain/assets/0x31C78f583ed0288D67b2b80Dc5C443Bc3b15C661/info.json @@ -0,0 +1,14 @@ +{ + "name": "Basic Attention Token (Portal)", + "type": "BEP20", + "symbol": "BAT", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://basicattentiontoken.org/", + "explorer": "https://bscscan.com/token/0x31C78f583ed0288D67b2b80Dc5C443Bc3b15C661", + "status": "active", + "id": "0x31C78f583ed0288D67b2b80Dc5C443Bc3b15C661", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x31C78f583ed0288D67b2b80Dc5C443Bc3b15C661/logo.png b/blockchains/smartchain/assets/0x31C78f583ed0288D67b2b80Dc5C443Bc3b15C661/logo.png new file mode 100644 index 00000000..331a781c Binary files /dev/null and b/blockchains/smartchain/assets/0x31C78f583ed0288D67b2b80Dc5C443Bc3b15C661/logo.png differ diff --git a/blockchains/smartchain/assets/0x31D0a7AdA4d4c131Eb612DB48861211F63e57610/info.json b/blockchains/smartchain/assets/0x31D0a7AdA4d4c131Eb612DB48861211F63e57610/info.json new file mode 100644 index 00000000..4031f2ef --- /dev/null +++ b/blockchains/smartchain/assets/0x31D0a7AdA4d4c131Eb612DB48861211F63e57610/info.json @@ -0,0 +1,30 @@ +{ + "name": "BSCstarter token", + "website": "https://bscstarter.finance", + "description": "Bsc starter finance aims to offer secure community-owned and governed token presale platform for Binance Smart Chain.", + "research": "https://docs.bscstarter.finance/", + "explorer": "https://bscscan.com/token/0x31D0a7AdA4d4c131Eb612DB48861211F63e57610", + "type": "BEP20", + "symbol": "START", + "decimals": 18, + "status": "active", + "id": "0x31D0a7AdA4d4c131Eb612DB48861211F63e57610", + "links": [ + { + "name": "github", + "url": "https://github.com/bscstarter" + }, + { + "name": "x", + "url": "https://x.com/bscstarter" + }, + { + "name": "telegram", + "url": "https://t.me/bscstarter" + }, + { + "name": "medium", + "url": "https://bscstarter.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x31D0a7AdA4d4c131Eb612DB48861211F63e57610/logo.png b/blockchains/smartchain/assets/0x31D0a7AdA4d4c131Eb612DB48861211F63e57610/logo.png new file mode 100644 index 00000000..dc89f900 Binary files /dev/null and b/blockchains/smartchain/assets/0x31D0a7AdA4d4c131Eb612DB48861211F63e57610/logo.png differ diff --git a/blockchains/smartchain/assets/0x31D6011023D6c7695Efc29bB016830F3F36De40a/info.json b/blockchains/smartchain/assets/0x31D6011023D6c7695Efc29bB016830F3F36De40a/info.json new file mode 100644 index 00000000..bac74e43 --- /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 00000000..3bdf99e2 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 00000000..ada50b81 --- /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 00000000..9bbe5934 Binary files /dev/null and b/blockchains/smartchain/assets/0x31DAbf49E4BC1Af1456c1819cb6A2562154e92F3/logo.png differ diff --git a/blockchains/smartchain/assets/0x31DE61D9a39CB9f479570Bd3dC3AC93BC0402CDB/info.json b/blockchains/smartchain/assets/0x31DE61D9a39CB9f479570Bd3dC3AC93BC0402CDB/info.json new file mode 100644 index 00000000..083e2df2 --- /dev/null +++ b/blockchains/smartchain/assets/0x31DE61D9a39CB9f479570Bd3dC3AC93BC0402CDB/info.json @@ -0,0 +1,11 @@ +{ + "name": "NFTPunk.Finance", + "type": "BEP20", + "symbol": "NFTPUNK", + "decimals": 9, + "website": "https://www.nft-punk.finance/", + "description": "NFTPunk Finance is a NFT Piexel Art Meme and NFT Defi. NFTPunk Finance operates as a deflationary automated liquidity-locking and self-staking direct distribution protocol, providing safe, secure and hassle-free transactions and yield-generation for all holders.", + "explorer": "https://bscscan.com/token/0x31DE61D9a39CB9f479570Bd3dC3AC93BC0402CDB", + "status": "active", + "id": "0x31DE61D9a39CB9f479570Bd3dC3AC93BC0402CDB" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x31DE61D9a39CB9f479570Bd3dC3AC93BC0402CDB/logo.png b/blockchains/smartchain/assets/0x31DE61D9a39CB9f479570Bd3dC3AC93BC0402CDB/logo.png new file mode 100644 index 00000000..7954b328 Binary files /dev/null and b/blockchains/smartchain/assets/0x31DE61D9a39CB9f479570Bd3dC3AC93BC0402CDB/logo.png differ diff --git a/blockchains/smartchain/assets/0x31F0Bc450C12eb62B4c617d4C876f7a66470Fcb3/info.json b/blockchains/smartchain/assets/0x31F0Bc450C12eb62B4c617d4C876f7a66470Fcb3/info.json new file mode 100644 index 00000000..ee63db2b --- /dev/null +++ b/blockchains/smartchain/assets/0x31F0Bc450C12eb62B4c617d4C876f7a66470Fcb3/info.json @@ -0,0 +1,29 @@ +{ + "name": "FREEMOON", + "type": "BEP20", + "symbol": "FREEMOON", + "decimals": 9, + "website": "https://freemoon.finance", + "description": "Deflationary token with automatic profit distribution and blocked liquidity pool", + "explorer": "https://bscscan.com/token/0x31F0Bc450C12eb62B4c617d4C876f7a66470Fcb3", + "status": "active", + "id": "0x31F0Bc450C12eb62B4c617d4C876f7a66470Fcb3", + "links": [ + { + "name": "x", + "url": "https://x.com/FREEMOONCOIN" + }, + { + "name": "github", + "url": "https://github.com/freemoon-protocol" + }, + { + "name": "telegram", + "url": "https://t.me/freemoon_finance" + }, + { + "name": "telegram_news", + "url": "https://t.me/freemoon_bot" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x31F0Bc450C12eb62B4c617d4C876f7a66470Fcb3/logo.png b/blockchains/smartchain/assets/0x31F0Bc450C12eb62B4c617d4C876f7a66470Fcb3/logo.png new file mode 100644 index 00000000..ee5c95fb Binary files /dev/null and b/blockchains/smartchain/assets/0x31F0Bc450C12eb62B4c617d4C876f7a66470Fcb3/logo.png differ diff --git a/blockchains/smartchain/assets/0x31b9773f225408129a90788EF013Bd449e283865/info.json b/blockchains/smartchain/assets/0x31b9773f225408129a90788EF013Bd449e283865/info.json new file mode 100644 index 00000000..163b86d9 --- /dev/null +++ b/blockchains/smartchain/assets/0x31b9773f225408129a90788EF013Bd449e283865/info.json @@ -0,0 +1,11 @@ +{ + "name": "$PORN", + "type": "BEP20", + "symbol": "PORN", + "decimals": 9, + "website": "https://buyporntoken.com/", + "description": "$PORN is a token with the goal of protecting people and ending human trafficking.", + "explorer": "https://bscscan.com/token/0x31b9773f225408129a90788ef013bd449e283865", + "status": "active", + "id": "0x31b9773f225408129a90788EF013Bd449e283865" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x31b9773f225408129a90788EF013Bd449e283865/logo.png b/blockchains/smartchain/assets/0x31b9773f225408129a90788EF013Bd449e283865/logo.png new file mode 100644 index 00000000..23f2e25f Binary files /dev/null and b/blockchains/smartchain/assets/0x31b9773f225408129a90788EF013Bd449e283865/logo.png differ diff --git a/blockchains/smartchain/assets/0x31d3778A7Ac0d98c4aAA347D8b6EaF7977448341/info.json b/blockchains/smartchain/assets/0x31d3778A7Ac0d98c4aAA347D8b6EaF7977448341/info.json new file mode 100644 index 00000000..73456d3b --- /dev/null +++ b/blockchains/smartchain/assets/0x31d3778A7Ac0d98c4aAA347D8b6EaF7977448341/info.json @@ -0,0 +1,24 @@ +{ + "name": "Kiba Inu", + "type": "BEP20", + "symbol": "KIBA", + "decimals": 9, + "website": "https://kibainu.space/ ", + "description": "Kiba Inu restores integrity to meme coins by building a safe Dex and Launchpad. Kiba Swap includes a dex and launchpad that includes features enabling investors to know which projects are safe and which they may want to avoid. We are on our way to becoming the leader of all meme coins and expanding into a multifaceted crypto project.", + "explorer": "https://bscscan.com/token/0x31d3778A7Ac0d98c4aAA347D8b6EaF7977448341", + "status": "abandoned", + "id": "0x31d3778A7Ac0d98c4aAA347D8b6EaF7977448341", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kiba-inu/" + }, + { + "name": "telegram", + "url": "https://t.me/KibaInuGlobal" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3203c9E46cA618C8C1cE5dC67e7e9D75f5da2377/info.json b/blockchains/smartchain/assets/0x3203c9E46cA618C8C1cE5dC67e7e9D75f5da2377/info.json new file mode 100644 index 00000000..97b14c72 --- /dev/null +++ b/blockchains/smartchain/assets/0x3203c9E46cA618C8C1cE5dC67e7e9D75f5da2377/info.json @@ -0,0 +1,14 @@ +{ + "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://bscscan.com/token/0x3203c9E46cA618C8C1cE5dC67e7e9D75f5da2377", + "type": "BEP20", + "symbol": "MBOX", + "decimals": 18, + "status": "active", + "id": "0x3203c9E46cA618C8C1cE5dC67e7e9D75f5da2377", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3203c9E46cA618C8C1cE5dC67e7e9D75f5da2377/logo.png b/blockchains/smartchain/assets/0x3203c9E46cA618C8C1cE5dC67e7e9D75f5da2377/logo.png new file mode 100644 index 00000000..4f388563 Binary files /dev/null and b/blockchains/smartchain/assets/0x3203c9E46cA618C8C1cE5dC67e7e9D75f5da2377/logo.png differ diff --git a/blockchains/smartchain/assets/0x32089eafFaf278C82cda2c8d37e7b6b6faBBaAF2/info.json b/blockchains/smartchain/assets/0x32089eafFaf278C82cda2c8d37e7b6b6faBBaAF2/info.json new file mode 100644 index 00000000..701df489 --- /dev/null +++ b/blockchains/smartchain/assets/0x32089eafFaf278C82cda2c8d37e7b6b6faBBaAF2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Solarfare", + "type": "BEP20", + "symbol": "SLF", + "decimals": 18, + "website": "https://solarfare.io", + "description": "Solarfare (SLF) is a BEP-20 token with LP acquisition, staking to earn BNB, and charity donations to the Binance wallet.", + "explorer": "https://bscscan.com/token/0x32089eafFaf278C82cda2c8d37e7b6b6faBBaAF2", + "status": "active", + "id": "0x32089eafFaf278C82cda2c8d37e7b6b6faBBaAF2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x32089eafFaf278C82cda2c8d37e7b6b6faBBaAF2/logo.png b/blockchains/smartchain/assets/0x32089eafFaf278C82cda2c8d37e7b6b6faBBaAF2/logo.png new file mode 100644 index 00000000..3af3b515 Binary files /dev/null and b/blockchains/smartchain/assets/0x32089eafFaf278C82cda2c8d37e7b6b6faBBaAF2/logo.png differ diff --git a/blockchains/smartchain/assets/0x3215f7D921549Bb4a8FD2C93D88021B2902e30d0/info.json b/blockchains/smartchain/assets/0x3215f7D921549Bb4a8FD2C93D88021B2902e30d0/info.json new file mode 100644 index 00000000..a9b08896 --- /dev/null +++ b/blockchains/smartchain/assets/0x3215f7D921549Bb4a8FD2C93D88021B2902e30d0/info.json @@ -0,0 +1,29 @@ +{ + "name": "NOVALAND", + "website": "https://novaland.io", + "description": "NOVALAND", + "explorer": "https://bscscan.com/token/0x3215f7D921549Bb4a8FD2C93D88021B2902e30d0", + "type": "BEP20", + "symbol": "NOVALAND", + "decimals": 18, + "status": "active", + "id": "0x3215f7D921549Bb4a8FD2C93D88021B2902e30d0", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Novaland_group" + }, + { + "name": "x", + "url": "https://x.com/Novaland_io" + }, + { + "name": "telegram_news", + "url": "https://t.me/Novaland_channel" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3215f7D921549Bb4a8FD2C93D88021B2902e30d0/logo.png b/blockchains/smartchain/assets/0x3215f7D921549Bb4a8FD2C93D88021B2902e30d0/logo.png new file mode 100644 index 00000000..45a371b8 Binary files /dev/null and b/blockchains/smartchain/assets/0x3215f7D921549Bb4a8FD2C93D88021B2902e30d0/logo.png differ diff --git a/blockchains/smartchain/assets/0x3220CCbbC29d727Bde85b7333D31b21e0d6bC6F4/info.json b/blockchains/smartchain/assets/0x3220CCbbC29d727Bde85b7333D31b21e0d6bC6F4/info.json new file mode 100644 index 00000000..7d0194db --- /dev/null +++ b/blockchains/smartchain/assets/0x3220CCbbC29d727Bde85b7333D31b21e0d6bC6F4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pup Doge", + "type": "BEP20", + "symbol": "PupDoge", + "decimals": 9, + "website": "https://pupdoge.finance/", + "description": "A new cryptocurrency called Pup Doge Coin was launched in July 2021, making it one of the fastest-growing cryptocurrencies on the market. Besides helping save dogs as well as bringing crypto to the average person, Pup Doge is decentralized. The Binance Smart Chain (BSC) technology made Pup Doge a faster Coin with 10x faster block speeds and a cheaper gas fee. ", + "explorer": "https://bscscan.com/token/0x3220CCbbC29d727Bde85b7333D31b21e0d6bC6F4", + "status": "active", + "id": "0x3220CCbbC29d727Bde85b7333D31b21e0d6bC6F4", + "links": [ + { + "name": "x", + "url": "https://x.com/PupDogeCoin" + }, + { + "name": "telegram", + "url": "https://t.me/pupdogecoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3220CCbbC29d727Bde85b7333D31b21e0d6bC6F4/logo.png b/blockchains/smartchain/assets/0x3220CCbbC29d727Bde85b7333D31b21e0d6bC6F4/logo.png new file mode 100644 index 00000000..bfd687d2 Binary files /dev/null and b/blockchains/smartchain/assets/0x3220CCbbC29d727Bde85b7333D31b21e0d6bC6F4/logo.png differ diff --git a/blockchains/smartchain/assets/0x3229200eFFcd7E4f6C9378ccd86EC8c5336AdE1b/info.json b/blockchains/smartchain/assets/0x3229200eFFcd7E4f6C9378ccd86EC8c5336AdE1b/info.json new file mode 100644 index 00000000..2ba85989 --- /dev/null +++ b/blockchains/smartchain/assets/0x3229200eFFcd7E4f6C9378ccd86EC8c5336AdE1b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rocket Bsc", + "type": "BEP20", + "symbol": "RBST", + "decimals": 18, + "website": "https://www.rocketbsc.info", + "description": "RocketBsc is the largest decentralized payment system. RocketBsc provides a digital asset ecosystem that empowers you to control your own money. By using RocketBsc, everything will run smoothly, and transaction execution can be done in seconds. RocketBsc comes with the support of blockchain technology, which allows users to receive, store and send crypto money to anyone, anywhere and anytime directly", + "explorer": "https://bscscan.com/token/0x3229200eFFcd7E4f6C9378ccd86EC8c5336AdE1b", + "status": "active", + "id": "0x3229200eFFcd7E4f6C9378ccd86EC8c5336AdE1b" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3229200eFFcd7E4f6C9378ccd86EC8c5336AdE1b/logo.png b/blockchains/smartchain/assets/0x3229200eFFcd7E4f6C9378ccd86EC8c5336AdE1b/logo.png new file mode 100644 index 00000000..63a826ec Binary files /dev/null and b/blockchains/smartchain/assets/0x3229200eFFcd7E4f6C9378ccd86EC8c5336AdE1b/logo.png differ diff --git a/blockchains/smartchain/assets/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F/info.json b/blockchains/smartchain/assets/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F/info.json new file mode 100644 index 00000000..f86a46e4 --- /dev/null +++ b/blockchains/smartchain/assets/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F/info.json @@ -0,0 +1,41 @@ +{ + "name": "MagnetGold", + "type": "BEP20", + "symbol": "MTG", + "decimals": 18, + "website": "https://mtggold.com/", + "description": "MagnetGold will represent the heart of the ecosystem for Crypto investors/companies to grow their capital, investment, venture capital, families, traders and more. MTG supports funding startups, green energy, organic/agro, E-commerce, crypto awareness, real-estate and others.", + "explorer": "https://bscscan.com/token/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F", + "status": "abandoned", + "id": "0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F", + "links": [ + { + "name": "telegram", + "url": "https://t.me/yourmagnetgold/" + }, + { + "name": "facebook", + "url": "https://facebook.com/yourmagnetgold/" + }, + { + "name": "x", + "url": "https://x.com/YMagnetgold" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UClEqjwDYM9DWOa2yyXB1luQ" + }, + { + "name": "whitepaper", + "url": "https://mtggold.com/images/MTGGOLD-WHITEPAPER.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magnet-gold/" + }, + { + "name": "medium", + "url": "https://medium.com/@magnetgold" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3244478Da3F518B33b99D5929Dd0bC3396C56981/info.json b/blockchains/smartchain/assets/0x3244478Da3F518B33b99D5929Dd0bC3396C56981/info.json new file mode 100644 index 00000000..d85018e5 --- /dev/null +++ b/blockchains/smartchain/assets/0x3244478Da3F518B33b99D5929Dd0bC3396C56981/info.json @@ -0,0 +1,40 @@ +{ + "name": "MetaMate Token", + "type": "BEP20", + "symbol": "MTM", + "decimals": 18, + "website": "https://metamatenft.com/", + "description": "MetaMate is a unique social and dating metaverse combining a digital dating platform and an NFT game.", + "explorer": "https://bscscan.com/token/0x3244478Da3F518B33b99D5929Dd0bC3396C56981", + "status": "active", + "id": "0x3244478Da3F518B33b99D5929Dd0bC3396C56981", + "links": [ + { + "name": "x", + "url": "https://x.com/MetaMate_NFT" + }, + { + "name": "facebook", + "url": "https://facebook.com/MetaMateNFT" + }, + { + "name": "telegram", + "url": "https://t.me/metamatenft" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/vi/currencies/metamatenft/" + }, + { + "name": "whitepaper", + "url": "https://metamatenft.gitbook.io/whitepaper/introduction/why-metamate" + }, + { + "name": "github", + "url": "https://github.com/metamate-blockchain" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3244478Da3F518B33b99D5929Dd0bC3396C56981/logo.png b/blockchains/smartchain/assets/0x3244478Da3F518B33b99D5929Dd0bC3396C56981/logo.png new file mode 100644 index 00000000..40b2a225 Binary files /dev/null and b/blockchains/smartchain/assets/0x3244478Da3F518B33b99D5929Dd0bC3396C56981/logo.png differ diff --git a/blockchains/smartchain/assets/0x32475e3b6a9892c0910B2f8BF43959bEEF67Ce46/info.json b/blockchains/smartchain/assets/0x32475e3b6a9892c0910B2f8BF43959bEEF67Ce46/info.json new file mode 100644 index 00000000..de184260 --- /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 00000000..e983506e 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 00000000..154c878c --- /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 00000000..96d2e22c 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 00000000..76201ca4 --- /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/0x326E1d2D9e7F8F3a4Df13766Aa3B3AeF33546546/info.json b/blockchains/smartchain/assets/0x326E1d2D9e7F8F3a4Df13766Aa3B3AeF33546546/info.json new file mode 100644 index 00000000..8fb0f090 --- /dev/null +++ b/blockchains/smartchain/assets/0x326E1d2D9e7F8F3a4Df13766Aa3B3AeF33546546/info.json @@ -0,0 +1,11 @@ +{ + "name": "Grandpa Doge", + "website": "https://www.grandpadoge.finance/", + "description": "GrandpaDoge is coming out of retirement to show the doge family how it's done!", + "explorer": "https://bscscan.com/token/0x326E1d2D9e7F8F3a4Df13766Aa3B3AeF33546546", + "type": "BEP20", + "symbol": "GrandpaDoge", + "decimals": 9, + "status": "active", + "id": "0x326E1d2D9e7F8F3a4Df13766Aa3B3AeF33546546" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x326E1d2D9e7F8F3a4Df13766Aa3B3AeF33546546/logo.png b/blockchains/smartchain/assets/0x326E1d2D9e7F8F3a4Df13766Aa3B3AeF33546546/logo.png new file mode 100644 index 00000000..9e63ca7d Binary files /dev/null and b/blockchains/smartchain/assets/0x326E1d2D9e7F8F3a4Df13766Aa3B3AeF33546546/logo.png differ diff --git a/blockchains/smartchain/assets/0x3271D12D5ba36B6582fafA029598FEe0F5F6Db35/info.json b/blockchains/smartchain/assets/0x3271D12D5ba36B6582fafA029598FEe0F5F6Db35/info.json new file mode 100644 index 00000000..70072dc7 --- /dev/null +++ b/blockchains/smartchain/assets/0x3271D12D5ba36B6582fafA029598FEe0F5F6Db35/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lil Floki", + "website": "https://lilfloki.com/", + "description": "Lil Floki is a BSC token which donates to New Zealand dog shelters while also rewarding Lil Floki holders with BNB Reward pay-outs.", + "explorer": "https://bscscan.com/token/0x3271D12D5ba36B6582fafA029598FEe0F5F6Db35", + "type": "BEP20", + "symbol": "lilfloki", + "decimals": 18, + "status": "active", + "id": "0x3271D12D5ba36B6582fafA029598FEe0F5F6Db35", + "links": [ + { + "name": "x", + "url": "https://x.com/thelilfloki/" + }, + { + "name": "facebook", + "url": "https://facebook.com/TheLilFloki/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3271D12D5ba36B6582fafA029598FEe0F5F6Db35/logo.png b/blockchains/smartchain/assets/0x3271D12D5ba36B6582fafA029598FEe0F5F6Db35/logo.png new file mode 100644 index 00000000..9dbf7854 Binary files /dev/null and b/blockchains/smartchain/assets/0x3271D12D5ba36B6582fafA029598FEe0F5F6Db35/logo.png differ diff --git a/blockchains/smartchain/assets/0x3279510E89600ee1767a037DBD0aD49c974063AE/info.json b/blockchains/smartchain/assets/0x3279510E89600ee1767a037DBD0aD49c974063AE/info.json new file mode 100644 index 00000000..788aa048 --- /dev/null +++ b/blockchains/smartchain/assets/0x3279510E89600ee1767a037DBD0aD49c974063AE/info.json @@ -0,0 +1,57 @@ +{ + "name": "NFTBooks", + "website": "https://nftbooks.info", + "description": "NFTBooks envisions to transform the world of book-readings, making it become more affordable and more accessible to many people.", + "explorer": "https://bscscan.com/token/0x3279510E89600ee1767a037DBD0aD49c974063AE", + "type": "BEP20", + "symbol": "NFTBS", + "decimals": 9, + "status": "active", + "id": "0x3279510E89600ee1767a037DBD0aD49c974063AE", + "links": [ + { + "name": "github", + "url": "https://github.com/nftbs" + }, + { + "name": "x", + "url": "https://x.com/nftbstoken" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Nftbooks/" + }, + { + "name": "whitepaper", + "url": "https://github.com/nftbs/Whitepaper/blob/477ac26b4824162d2e0e4fc7aad103a7aa74ee55/NFTBS_Whitepaper.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/nftbs" + }, + { + "name": "telegram_news", + "url": "https://t.me/nftbsnews" + }, + { + "name": "medium", + "url": "https://nftbs.medium.com/" + }, + { + "name": "facebook", + "url": "https://facebook.com/nftbs" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC9sNyHb5tn3VXCftusc6gTg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nftbooks/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nftbooks" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3279510E89600ee1767a037DBD0aD49c974063AE/logo.png b/blockchains/smartchain/assets/0x3279510E89600ee1767a037DBD0aD49c974063AE/logo.png new file mode 100644 index 00000000..cfc99e78 Binary files /dev/null and b/blockchains/smartchain/assets/0x3279510E89600ee1767a037DBD0aD49c974063AE/logo.png differ diff --git a/blockchains/smartchain/assets/0x327D87678A2f1d67048b34a048Bb6D68e6168888/info.json b/blockchains/smartchain/assets/0x327D87678A2f1d67048b34a048Bb6D68e6168888/info.json new file mode 100644 index 00000000..68b569ec --- /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 00000000..112fb278 --- /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 00000000..c6241dad Binary files /dev/null and b/blockchains/smartchain/assets/0x32B407ee915432Be6D3F168bc1EfF2a6F8b2034C/logo.png differ diff --git a/blockchains/smartchain/assets/0x32dFFc3fE8E3EF3571bF8a72c0d0015C5373f41D/info.json b/blockchains/smartchain/assets/0x32dFFc3fE8E3EF3571bF8a72c0d0015C5373f41D/info.json new file mode 100644 index 00000000..6e72dd5b --- /dev/null +++ b/blockchains/smartchain/assets/0x32dFFc3fE8E3EF3571bF8a72c0d0015C5373f41D/info.json @@ -0,0 +1,12 @@ +{ + "name": "JULb", + "website": "https://justliquidity.org", + "description": "JustLiquidity DeFi offers to trade and earn and enables to execute a liquidity token sale with a token. ", + "explorer": "https://bscscan.com/token/0x32dFFc3fE8E3EF3571bF8a72c0d0015C5373f41D", + "research": "", + "type": "BEP20", + "symbol": "JULb", + "decimals": 18, + "status": "active", + "id": "0x32dFFc3fE8E3EF3571bF8a72c0d0015C5373f41D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x32dFFc3fE8E3EF3571bF8a72c0d0015C5373f41D/logo.png b/blockchains/smartchain/assets/0x32dFFc3fE8E3EF3571bF8a72c0d0015C5373f41D/logo.png new file mode 100644 index 00000000..0928ae72 Binary files /dev/null and b/blockchains/smartchain/assets/0x32dFFc3fE8E3EF3571bF8a72c0d0015C5373f41D/logo.png differ diff --git a/blockchains/smartchain/assets/0x32eD23b9D263138695168850Ac04609f6e5e0aB4/info.json b/blockchains/smartchain/assets/0x32eD23b9D263138695168850Ac04609f6e5e0aB4/info.json new file mode 100644 index 00000000..1e37ddad --- /dev/null +++ b/blockchains/smartchain/assets/0x32eD23b9D263138695168850Ac04609f6e5e0aB4/info.json @@ -0,0 +1,49 @@ +{ + "name": "BAKE COIN", + "type": "BEP20", + "symbol": "BAKECOIN", + "decimals": 18, + "website": "https://bakecoin.org", + "description": "BakeCoin aims to revolutionize the NFT space as Curator by allowing people the creation and drawing of NFTs by popular nft influencers through the bakecoin protocol which makes the creation, sale, and use of NFT as easy as possible.", + "explorer": "https://bscscan.com/token/0x32eD23b9D263138695168850Ac04609f6e5e0aB4", + "status": "active", + "id": "0x32eD23b9D263138695168850Ac04609f6e5e0aB4", + "links": [ + { + "name": "x", + "url": "https://x.com/bakecoin" + }, + { + "name": "github", + "url": "https://github.com/bakecoinbsc" + }, + { + "name": "telegram", + "url": "https://t.me/bakecoin" + }, + { + "name": "telegram_news", + "url": "https://t.me/bakecoin_ann" + }, + { + "name": "medium", + "url": "https://medium.com/@bakecoin" + }, + { + "name": "whitepaper", + "url": "https://bakecoin.org/assets/Bakecoin_Whitepaper.pdf" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x32eD23b9D263138695168850Ac04609f6e5e0aB4#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bake-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bake-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x32eD23b9D263138695168850Ac04609f6e5e0aB4/logo.png b/blockchains/smartchain/assets/0x32eD23b9D263138695168850Ac04609f6e5e0aB4/logo.png new file mode 100644 index 00000000..0d02e1fb Binary files /dev/null and b/blockchains/smartchain/assets/0x32eD23b9D263138695168850Ac04609f6e5e0aB4/logo.png differ diff --git a/blockchains/smartchain/assets/0x32f1518BaAcE69e85b9E5fF844eBd617c52573ac/info.json b/blockchains/smartchain/assets/0x32f1518BaAcE69e85b9E5fF844eBd617c52573ac/info.json new file mode 100644 index 00000000..fb839165 --- /dev/null +++ b/blockchains/smartchain/assets/0x32f1518BaAcE69e85b9E5fF844eBd617c52573ac/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dexsport", + "website": "https://dexsport.io", + "description": "Dexsport — Revolutionizing Decentralized Betting", + "explorer": "https://bscscan.com/token/0x32f1518BaAcE69e85b9E5fF844eBd617c52573ac", + "type": "BEP20", + "symbol": "DESU", + "decimals": 18, + "status": "active", + "id": "0x32f1518BaAcE69e85b9E5fF844eBd617c52573ac", + "links": [ + { + "name": "telegram", + "url": "https://t.me/dexsport_en" + }, + { + "name": "x", + "url": "https://x.com/dexsport_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x32f1518BaAcE69e85b9E5fF844eBd617c52573ac/logo.png b/blockchains/smartchain/assets/0x32f1518BaAcE69e85b9E5fF844eBd617c52573ac/logo.png new file mode 100644 index 00000000..a65ea763 Binary files /dev/null and b/blockchains/smartchain/assets/0x32f1518BaAcE69e85b9E5fF844eBd617c52573ac/logo.png differ diff --git a/blockchains/smartchain/assets/0x330540a9d998442dcbc396165D3dDc5052077bB1/info.json b/blockchains/smartchain/assets/0x330540a9d998442dcbc396165D3dDc5052077bB1/info.json new file mode 100644 index 00000000..97aab96d --- /dev/null +++ b/blockchains/smartchain/assets/0x330540a9d998442dcbc396165D3dDc5052077bB1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shiba Floki", + "type": "BEP20", + "symbol": "FLOKI", + "decimals": 9, + "website": "https://shibafloki.com", + "description": "Shibas are highly affectionate and would make a great choice for a novice pet parent. However, they’re highly sensitive and do not like being left alone for long periods of the day. As companion dogs, they crave the company of their humans and may develop separation anxiety when they don’t get the attention they need.", + "explorer": "https://bscscan.com/token/0x330540a9d998442dcbc396165D3dDc5052077bB1", + "status": "active", + "id": "0x330540a9d998442dcbc396165D3dDc5052077bB1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x330540a9d998442dcbc396165D3dDc5052077bB1/logo.png b/blockchains/smartchain/assets/0x330540a9d998442dcbc396165D3dDc5052077bB1/logo.png new file mode 100644 index 00000000..619bfcf6 Binary files /dev/null and b/blockchains/smartchain/assets/0x330540a9d998442dcbc396165D3dDc5052077bB1/logo.png differ diff --git a/blockchains/smartchain/assets/0x330F4fe5ef44B4d0742fE8BED8ca5E29359870DF/info.json b/blockchains/smartchain/assets/0x330F4fe5ef44B4d0742fE8BED8ca5E29359870DF/info.json new file mode 100644 index 00000000..bf99944f --- /dev/null +++ b/blockchains/smartchain/assets/0x330F4fe5ef44B4d0742fE8BED8ca5E29359870DF/info.json @@ -0,0 +1,45 @@ +{ + "name": "Jade Currency", + "type": "BEP20", + "symbol": "JADE", + "decimals": 18, + "website": "https://www.jadecurrency.com", + "description": "Jade Currency project is committed to changing the world by creating the first ever NFT (non-fungible token) marketplace and metaverse shop for precious gems such as jade where buyers can purchase in cryptocurrency. We believe the future holds a strong demand for the use of cryptocurrencies and there is somewhat of a barrier to entry for the current industry which Crypto Jade can solve. The holders of Jade Currency (JADE) token have majority ownership of the company.", + "explorer": "https://bscscan.com/token/0x330F4fe5ef44B4d0742fE8BED8ca5E29359870DF", + "status": "active", + "id": "0x330F4fe5ef44B4d0742fE8BED8ca5E29359870DF", + "links": [ + { + "name": "x", + "url": "https://x.com/CurrencyJade" + }, + { + "name": "whitepaper", + "url": "https://jadecurrency.com/wp-content/uploads/2021/07/jade_currency_whitepaper_v2.pdf" + }, + { + "name": "github", + "url": "https://github.com/CryptoJade" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jade-currency" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/jade-currency" + }, + { + "name": "telegram", + "url": "https://t.me/jadecurrency" + }, + { + "name": "medium", + "url": "https://jadecurrency.medium.com/" + }, + { + "name": "facebook", + "url": "https://facebook.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x330F4fe5ef44B4d0742fE8BED8ca5E29359870DF/logo.png b/blockchains/smartchain/assets/0x330F4fe5ef44B4d0742fE8BED8ca5E29359870DF/logo.png new file mode 100644 index 00000000..1f815820 Binary files /dev/null and b/blockchains/smartchain/assets/0x330F4fe5ef44B4d0742fE8BED8ca5E29359870DF/logo.png differ diff --git a/blockchains/smartchain/assets/0x332C0F58763E3990204B780d33237DF4524d6d09/info.json b/blockchains/smartchain/assets/0x332C0F58763E3990204B780d33237DF4524d6d09/info.json new file mode 100644 index 00000000..0ac0846f --- /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 new file mode 100644 index 00000000..0f460978 --- /dev/null +++ b/blockchains/smartchain/assets/0x333FD139cAeF6Aa31056cC905987b77B1044d259/info.json @@ -0,0 +1,28 @@ +{ + "name": "The Web3 Project", + "symbol": "WEB3", + "type": "BEP20", + "description": "The Web3 Project provides a high, stable and fixed yield to their users whilst bridging the gap between web2 and web3 for the masses.", + "decimals": 18, + "website": "https://www.theweb3project.com", + "explorer": "https://bscscan.com/token/0x333FD139cAeF6Aa31056cC905987b77B1044d259", + "status": "active", + "id": "0x333FD139cAeF6Aa31056cC905987b77B1044d259", + "links": [ + { + "name": "x", + "url": "https://x.com/TheWeb3Project" + }, + { + "name": "telegram", + "url": "https://t.me/TheWeb3Project" + }, + { + "name": "docs", + "url": "https://docs.theweb3project.com" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x333FD139cAeF6Aa31056cC905987b77B1044d259/logo.png b/blockchains/smartchain/assets/0x333FD139cAeF6Aa31056cC905987b77B1044d259/logo.png new file mode 100644 index 00000000..b98b5794 Binary files /dev/null and b/blockchains/smartchain/assets/0x333FD139cAeF6Aa31056cC905987b77B1044d259/logo.png differ diff --git a/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/info.json b/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/info.json new file mode 100644 index 00000000..5bb1da51 --- /dev/null +++ b/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus DAI", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1", + "type": "BEP20", + "symbol": "vDAI", + "decimals": 8, + "status": "active", + "id": "0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/logo.png b/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/logo.png new file mode 100644 index 00000000..c2c3bc4d Binary files /dev/null and b/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/logo.png differ diff --git a/blockchains/smartchain/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json b/blockchains/smartchain/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json new file mode 100644 index 00000000..c11c12ec --- /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 00000000..854c9b59 Binary files /dev/null and b/blockchains/smartchain/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/logo.png differ diff --git a/blockchains/smartchain/assets/0x337e35Ed5B38D5C7Ec9F8d7cF78fe7F43d7DEC6F/info.json b/blockchains/smartchain/assets/0x337e35Ed5B38D5C7Ec9F8d7cF78fe7F43d7DEC6F/info.json new file mode 100644 index 00000000..61790d48 --- /dev/null +++ b/blockchains/smartchain/assets/0x337e35Ed5B38D5C7Ec9F8d7cF78fe7F43d7DEC6F/info.json @@ -0,0 +1,11 @@ +{ + "name": "NotSafeMoon", + "type": "BEP20", + "symbol": "NOTSAFEMOON", + "decimals": 9, + "website": "https://www.notsafemoon.com", + "description": "\"Moon\" coin analytics dashboard for all your accounts and coins. This is Not your normal \"moon\" coin. No lopsided liquidity dumps. No sending LP tokens to devs. 6% reflection to hodlr's. 2% true burn on every transaction. ", + "explorer": "https://bscscan.com/token/0x337e35Ed5B38D5C7Ec9F8d7cF78fe7F43d7DEC6F", + "status": "active", + "id": "0x337e35Ed5B38D5C7Ec9F8d7cF78fe7F43d7DEC6F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x337e35Ed5B38D5C7Ec9F8d7cF78fe7F43d7DEC6F/logo.png b/blockchains/smartchain/assets/0x337e35Ed5B38D5C7Ec9F8d7cF78fe7F43d7DEC6F/logo.png new file mode 100644 index 00000000..df1355af Binary files /dev/null and b/blockchains/smartchain/assets/0x337e35Ed5B38D5C7Ec9F8d7cF78fe7F43d7DEC6F/logo.png differ diff --git a/blockchains/smartchain/assets/0x338196a509B4c66749c3f44c21C00501E6ACF7BC/info.json b/blockchains/smartchain/assets/0x338196a509B4c66749c3f44c21C00501E6ACF7BC/info.json new file mode 100644 index 00000000..e982109d --- /dev/null +++ b/blockchains/smartchain/assets/0x338196a509B4c66749c3f44c21C00501E6ACF7BC/info.json @@ -0,0 +1,11 @@ +{ + "name": "DragonMusk", + "type": "BEP20", + "symbol": "DMusk", + "decimals": 9, + "website": "https://dragonmusk.ga/", + "description": "Dragon Musk is a community driven, fair launched DeFi Token. Three simple functions occur during each trade: Reflection, LP Acquisition, and Burn.", + "explorer": "https://bscscan.com/token/0x338196a509B4c66749c3f44c21C00501E6ACF7BC", + "status": "active", + "id": "0x338196a509B4c66749c3f44c21C00501E6ACF7BC" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x338196a509B4c66749c3f44c21C00501E6ACF7BC/logo.png b/blockchains/smartchain/assets/0x338196a509B4c66749c3f44c21C00501E6ACF7BC/logo.png new file mode 100644 index 00000000..033b7402 Binary files /dev/null and b/blockchains/smartchain/assets/0x338196a509B4c66749c3f44c21C00501E6ACF7BC/logo.png differ diff --git a/blockchains/smartchain/assets/0x3385Cb29cCA0aC66f5d2354d13ef977b49A2510f/info.json b/blockchains/smartchain/assets/0x3385Cb29cCA0aC66f5d2354d13ef977b49A2510f/info.json new file mode 100644 index 00000000..7b2ec9ba --- /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 00000000..7e850760 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 00000000..5711cb77 --- /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 00000000..9a8057dc 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 00000000..fa47c352 --- /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 00000000..79889bc8 --- /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 00000000..d819f736 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 new file mode 100644 index 00000000..bfeac5ea --- /dev/null +++ b/blockchains/smartchain/assets/0x339550404Ca4d831D12B1b2e4768869997390010/info.json @@ -0,0 +1,33 @@ +{ + "name": "DRUGSv2", + "website": "https://traphouse.vip/", + "description": "DRUGS is the primary token of the Traphouse yield farm playa. The most gangster yield farm ever created. Created by the THUGS interactive team.", + "explorer": "https://bscscan.com/token/0x339550404ca4d831d12b1b2e4768869997390010", + "type": "BEP20", + "symbol": "DRUGS", + "decimals": 18, + "status": "active", + "id": "0x339550404Ca4d831D12B1b2e4768869997390010", + "links": [ + { + "name": "github", + "url": "https://github.com/thugs-defi" + }, + { + "name": "x", + "url": "https://x.com/ThugsFinance" + }, + { + "name": "telegram", + "url": "https://t.me/thugsfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AJDqFTP" + }, + { + "name": "medium", + "url": "https://thugsfinance.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x339550404Ca4d831D12B1b2e4768869997390010/logo.png b/blockchains/smartchain/assets/0x339550404Ca4d831D12B1b2e4768869997390010/logo.png new file mode 100644 index 00000000..6ca3a868 Binary files /dev/null and b/blockchains/smartchain/assets/0x339550404Ca4d831D12B1b2e4768869997390010/logo.png differ diff --git a/blockchains/smartchain/assets/0x339C72829AB7DD45C3C52f965E7ABe358dd8761E/info.json b/blockchains/smartchain/assets/0x339C72829AB7DD45C3C52f965E7ABe358dd8761E/info.json new file mode 100644 index 00000000..ee023cfe --- /dev/null +++ b/blockchains/smartchain/assets/0x339C72829AB7DD45C3C52f965E7ABe358dd8761E/info.json @@ -0,0 +1,29 @@ +{ + "name": "WanakaFarm", + "type": "BEP20", + "symbol": "WANA", + "decimals": 18, + "website": "https://wanakafarm.com", + "description": "Wanaka Farm aims to offer anNFT game where people can own their virtual lands, NFT items to plant, grow, harvest to relax and earn their crypto.", + "explorer": "https://bscscan.com/token/0x339C72829AB7DD45C3C52f965E7ABe358dd8761E", + "status": "active", + "id": "0x339C72829AB7DD45C3C52f965E7ABe358dd8761E", + "links": [ + { + "name": "whitepaper", + "url": "https://wanakafarm.com/papers/" + }, + { + "name": "telegram", + "url": "https://t.me/WanakaOfficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/wanakafarmofficial" + }, + { + "name": "x", + "url": "https://x.com/Wanaka_Farm" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x339C72829AB7DD45C3C52f965E7ABe358dd8761E/logo.png b/blockchains/smartchain/assets/0x339C72829AB7DD45C3C52f965E7ABe358dd8761E/logo.png new file mode 100644 index 00000000..e090c551 Binary files /dev/null and b/blockchains/smartchain/assets/0x339C72829AB7DD45C3C52f965E7ABe358dd8761E/logo.png differ diff --git a/blockchains/smartchain/assets/0x339ea0a961E1F5690B9754880f284830ce87CEE1/info.json b/blockchains/smartchain/assets/0x339ea0a961E1F5690B9754880f284830ce87CEE1/info.json new file mode 100644 index 00000000..81892434 --- /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 00000000..0cece774 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 new file mode 100644 index 00000000..c63c6c98 --- /dev/null +++ b/blockchains/smartchain/assets/0x33A3d962955A3862C8093D1273344719f03cA17C/info.json @@ -0,0 +1,48 @@ +{ + "name": "Spore", + "website": "https://spore.earth/", + "description": "Spore is an international movement of artists and blockchain developers who are building an ecosystem that connects content creators with users, using open standards for fair distribution. The ecosystem, which includes an NFT platform, is fueled by SPORE, a deflationary, globally-accepted currency available on Avalanche and Binance Smart Chain. The token seamlessly connects two massive blockchains and their user bases with the first of its kind Avalanche-BSC bridge, developed in-house by Spore.", + "explorer": "https://bscscan.com/token/0x33A3d962955A3862C8093D1273344719f03cA17C", + "type": "BEP20", + "symbol": "SPORE", + "decimals": 9, + "status": "active", + "id": "0x33A3d962955A3862C8093D1273344719f03cA17C", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/sporeproject" + }, + { + "name": "x", + "url": "https://x.com/sporeproject" + }, + { + "name": "telegram", + "url": "https://t.me/sporefinanceofficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/xRrArCTG9Q" + }, + { + "name": "facebook", + "url": "https://facebook.com/sporeproject" + }, + { + "name": "youtube", + "url": "https://youtube.com/sporeproject" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/sporeproject" + }, + { + "name": "medium", + "url": "https://sporeproject.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x33A3d962955A3862C8093D1273344719f03cA17C/logo.png b/blockchains/smartchain/assets/0x33A3d962955A3862C8093D1273344719f03cA17C/logo.png new file mode 100644 index 00000000..8bf06fb7 Binary files /dev/null and b/blockchains/smartchain/assets/0x33A3d962955A3862C8093D1273344719f03cA17C/logo.png differ diff --git a/blockchains/smartchain/assets/0x33D53608167aC3679c0FE9f7A7A725891cF0f471/info.json b/blockchains/smartchain/assets/0x33D53608167aC3679c0FE9f7A7A725891cF0f471/info.json new file mode 100644 index 00000000..89c13ff3 --- /dev/null +++ b/blockchains/smartchain/assets/0x33D53608167aC3679c0FE9f7A7A725891cF0f471/info.json @@ -0,0 +1,11 @@ +{ + "name": "Onegetcoin", + "website": "https://onegetcoin.io/", + "description": "We created a utility token called Onegetcoin OGC. We combine two utility concepts, use them for payments and use them for staking / farming at DEFI, so that OGC will create a wallet system with decentralized passive income.", + "explorer": "https://bscscan.com/token/0x33D53608167aC3679c0FE9f7A7A725891cF0f471", + "type": "BEP20", + "symbol": "OGC", + "decimals": 8, + "status": "active", + "id": "0x33D53608167aC3679c0FE9f7A7A725891cF0f471" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x33D53608167aC3679c0FE9f7A7A725891cF0f471/logo.png b/blockchains/smartchain/assets/0x33D53608167aC3679c0FE9f7A7A725891cF0f471/logo.png new file mode 100644 index 00000000..c5fdf273 Binary files /dev/null and b/blockchains/smartchain/assets/0x33D53608167aC3679c0FE9f7A7A725891cF0f471/logo.png differ diff --git a/blockchains/smartchain/assets/0x33a669a350807552a005845C13A37662FAcb041B/info.json b/blockchains/smartchain/assets/0x33a669a350807552a005845C13A37662FAcb041B/info.json new file mode 100644 index 00000000..4e39217c --- /dev/null +++ b/blockchains/smartchain/assets/0x33a669a350807552a005845C13A37662FAcb041B/info.json @@ -0,0 +1,11 @@ +{ + "name": "SHAGGY TOKEN", + "type": "BEP20", + "symbol": "SHAGGY", + "decimals": 0, + "website": "https://shaggytoken.xyz/", + "description": "Experience the next generation of cryptocurrency token that automatically rewards you for holding.", + "explorer": "https://bscscan.com/token/0x33a669a350807552a005845C13A37662FAcb041B", + "status": "active", + "id": "0x33a669a350807552a005845C13A37662FAcb041B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x33a669a350807552a005845C13A37662FAcb041B/logo.png b/blockchains/smartchain/assets/0x33a669a350807552a005845C13A37662FAcb041B/logo.png new file mode 100644 index 00000000..45839c45 Binary files /dev/null and b/blockchains/smartchain/assets/0x33a669a350807552a005845C13A37662FAcb041B/logo.png differ diff --git a/blockchains/smartchain/assets/0x33a887Cf76383be39DC51786e8f641c9D6665D84/info.json b/blockchains/smartchain/assets/0x33a887Cf76383be39DC51786e8f641c9D6665D84/info.json new file mode 100644 index 00000000..696ad206 --- /dev/null +++ b/blockchains/smartchain/assets/0x33a887Cf76383be39DC51786e8f641c9D6665D84/info.json @@ -0,0 +1,11 @@ +{ + "name": "VOYR", + "website": "https://voyr.me", + "description": "The VOYR token powers the VOYR Platform", + "explorer": "https://bscscan.com/token/0x33a887Cf76383be39DC51786e8f641c9D6665D84", + "type": "BEP20", + "symbol": "VOYRME", + "decimals": 9, + "status": "active", + "id": "0x33a887Cf76383be39DC51786e8f641c9D6665D84" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x33a887Cf76383be39DC51786e8f641c9D6665D84/logo.png b/blockchains/smartchain/assets/0x33a887Cf76383be39DC51786e8f641c9D6665D84/logo.png new file mode 100644 index 00000000..5017da3c Binary files /dev/null and b/blockchains/smartchain/assets/0x33a887Cf76383be39DC51786e8f641c9D6665D84/logo.png differ diff --git a/blockchains/smartchain/assets/0x33d08D8C7a168333a85285a68C0042b39fC3741D/info.json b/blockchains/smartchain/assets/0x33d08D8C7a168333a85285a68C0042b39fC3741D/info.json new file mode 100644 index 00000000..3f490a77 --- /dev/null +++ b/blockchains/smartchain/assets/0x33d08D8C7a168333a85285a68C0042b39fC3741D/info.json @@ -0,0 +1,11 @@ +{ + "name": "AIOZ Network Coin", + "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", + "type": "BEP20", + "symbol": "AIOZ", + "decimals": 18, + "status": "active", + "id": "0x33d08D8C7a168333a85285a68C0042b39fC3741D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x33d08D8C7a168333a85285a68C0042b39fC3741D/logo.png b/blockchains/smartchain/assets/0x33d08D8C7a168333a85285a68C0042b39fC3741D/logo.png new file mode 100644 index 00000000..3a03dd6f Binary files /dev/null and b/blockchains/smartchain/assets/0x33d08D8C7a168333a85285a68C0042b39fC3741D/logo.png differ diff --git a/blockchains/smartchain/assets/0x33efbC79BbF863dB11b4A1BF6570FFB6Bf41d0d2/info.json b/blockchains/smartchain/assets/0x33efbC79BbF863dB11b4A1BF6570FFB6Bf41d0d2/info.json new file mode 100644 index 00000000..4da76734 --- /dev/null +++ b/blockchains/smartchain/assets/0x33efbC79BbF863dB11b4A1BF6570FFB6Bf41d0d2/info.json @@ -0,0 +1,41 @@ +{ + "name": "ETHEKing", + "type": "BEP20", + "symbol": "ETHE", + "decimals": 18, + "website": "https://etheking.io/", + "description": "ETHEKing Introduces A Whole New Gaming Term: Social Platform Battle. ETHEKing, a metaverse game that uses the BSC network and incorporates NFT technology, has already launched the first phase, which is backed by $ETHE, the game's native currency.", + "explorer": "https://bscscan.com/token/0x33efbC79BbF863dB11b4A1BF6570FFB6Bf41d0d2", + "status": "active", + "id": "0x33efbC79BbF863dB11b4A1BF6570FFB6Bf41d0d2", + "links": [ + { + "name": "x", + "url": "https://x.com/EthekingNetsky" + }, + { + "name": "github", + "url": "https://github.com/NS8888/EtheToken" + }, + { + "name": "telegram", + "url": "https://t.me/etheking" + }, + { + "name": "discord", + "url": "https://discord.com/invite/h8HYKVGuxn" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.etheking.io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/etheking" + } + ], + "tags": [ + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x33efbC79BbF863dB11b4A1BF6570FFB6Bf41d0d2/logo.png b/blockchains/smartchain/assets/0x33efbC79BbF863dB11b4A1BF6570FFB6Bf41d0d2/logo.png new file mode 100644 index 00000000..001ca3b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x33efbC79BbF863dB11b4A1BF6570FFB6Bf41d0d2/logo.png differ diff --git a/blockchains/smartchain/assets/0x3413a030EF81a3dD5a302F4B4D11d911e12ed337/info.json b/blockchains/smartchain/assets/0x3413a030EF81a3dD5a302F4B4D11d911e12ed337/info.json new file mode 100644 index 00000000..5cc7672e --- /dev/null +++ b/blockchains/smartchain/assets/0x3413a030EF81a3dD5a302F4B4D11d911e12ed337/info.json @@ -0,0 +1,14 @@ +{ + "name": "DAI (Portal)", + "type": "BEP20", + "symbol": "DAI", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://makerdao.com/", + "explorer": "https://bscscan.com/token/0x3413a030EF81a3dD5a302F4B4D11d911e12ed337", + "status": "active", + "id": "0x3413a030EF81a3dD5a302F4B4D11d911e12ed337", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3413a030EF81a3dD5a302F4B4D11d911e12ed337/logo.png b/blockchains/smartchain/assets/0x3413a030EF81a3dD5a302F4B4D11d911e12ed337/logo.png new file mode 100644 index 00000000..6c711d8a Binary files /dev/null and b/blockchains/smartchain/assets/0x3413a030EF81a3dD5a302F4B4D11d911e12ed337/logo.png differ diff --git a/blockchains/smartchain/assets/0x34195FD824355aec1BDCeEA97697B35be691bcB3/info.json b/blockchains/smartchain/assets/0x34195FD824355aec1BDCeEA97697B35be691bcB3/info.json new file mode 100644 index 00000000..2ed17ef8 --- /dev/null +++ b/blockchains/smartchain/assets/0x34195FD824355aec1BDCeEA97697B35be691bcB3/info.json @@ -0,0 +1,17 @@ +{ + "name": "BSC Gold", + "website": "https://bscgold.finance", + "description": "BscGold is a gaming platform that allows cretors to play, craft, distribute and trade.", + "explorer": "https://bscscan.com/token/0x34195fd824355aec1bdceea97697b35be691bcb3", + "type": "BEP20", + "symbol": "BSCGOLD", + "decimals": 9, + "status": "active", + "id": "0x34195FD824355aec1BDCeEA97697B35be691bcB3", + "links": [ + { + "name": "whitepaper", + "url": "https://bscgold.finance/BSCG_Paper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x34195FD824355aec1BDCeEA97697B35be691bcB3/logo.png b/blockchains/smartchain/assets/0x34195FD824355aec1BDCeEA97697B35be691bcB3/logo.png new file mode 100644 index 00000000..7654b588 Binary files /dev/null and b/blockchains/smartchain/assets/0x34195FD824355aec1BDCeEA97697B35be691bcB3/logo.png differ diff --git a/blockchains/smartchain/assets/0x341D31b2be1Fee9C00e395A62bA41837F4322EEd/info.json b/blockchains/smartchain/assets/0x341D31b2be1Fee9C00e395A62bA41837F4322EEd/info.json new file mode 100644 index 00000000..1b31d37f --- /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 00000000..0e4defd0 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 00000000..3e3f0ff1 --- /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 00000000..b7a64a3b 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 00000000..120ad5da --- /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 00000000..9258f1f8 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 00000000..962164c6 --- /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 00000000..3be5c655 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 00000000..bb2e112d --- /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 00000000..b4a26f06 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 00000000..5f12cc7e --- /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 00000000..763f6c33 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 new file mode 100644 index 00000000..7c072412 --- /dev/null +++ b/blockchains/smartchain/assets/0x344424e5d0b3037c78c698609cD56B36e7481951/info.json @@ -0,0 +1,21 @@ +{ + "name": "MysteryCoin", + "website": "https://www.mysterycoin.family", + "description": "Baby Feg Token is an interface token and provides back-end support to new DeFi projects and tokens.", + "explorer": "https://bscscan.com/token/0x344424e5d0b3037c78c698609cD56B36e7481951", + "type": "BEP20", + "symbol": "MYS", + "decimals": 9, + "status": "active", + "links": [ + { + "name": "telegram", + "url": "https://t.me/MysteryCoin" + }, + { + "name": "x", + "url": "https://x.com/MysteryCoin_BSC" + } + ], + "id": "0x344424e5d0b3037c78c698609cD56B36e7481951" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x344424e5d0b3037c78c698609cD56B36e7481951/logo.png b/blockchains/smartchain/assets/0x344424e5d0b3037c78c698609cD56B36e7481951/logo.png new file mode 100644 index 00000000..adc5e322 Binary files /dev/null and b/blockchains/smartchain/assets/0x344424e5d0b3037c78c698609cD56B36e7481951/logo.png differ diff --git a/blockchains/smartchain/assets/0x3459A4c189e4275a47dd322f04e214b399dae55a/info.json b/blockchains/smartchain/assets/0x3459A4c189e4275a47dd322f04e214b399dae55a/info.json new file mode 100644 index 00000000..748100f6 --- /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 00000000..3192a11a Binary files /dev/null and b/blockchains/smartchain/assets/0x3459A4c189e4275a47dd322f04e214b399dae55a/logo.png differ diff --git a/blockchains/smartchain/assets/0x346b426b5c4d3bcBb129Ed84b52D8717e245BCE1/info.json b/blockchains/smartchain/assets/0x346b426b5c4d3bcBb129Ed84b52D8717e245BCE1/info.json new file mode 100644 index 00000000..b0281c8a --- /dev/null +++ b/blockchains/smartchain/assets/0x346b426b5c4d3bcBb129Ed84b52D8717e245BCE1/info.json @@ -0,0 +1,11 @@ +{ + "name": "DogEdu", + "website": "https://dogedu.org/", + "description": "Create contents to raise awareness of protecting dogs. Earn money and influence on social network", + "explorer": "https://bscscan.com/token/0x346b426b5c4d3bcBb129Ed84b52D8717e245BCE1", + "type": "BEP20", + "symbol": "DOGU", + "decimals": 18, + "status": "active", + "id": "0x346b426b5c4d3bcBb129Ed84b52D8717e245BCE1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x346b426b5c4d3bcBb129Ed84b52D8717e245BCE1/logo.png b/blockchains/smartchain/assets/0x346b426b5c4d3bcBb129Ed84b52D8717e245BCE1/logo.png new file mode 100644 index 00000000..bba5dd8c Binary files /dev/null and b/blockchains/smartchain/assets/0x346b426b5c4d3bcBb129Ed84b52D8717e245BCE1/logo.png differ diff --git a/blockchains/smartchain/assets/0x34980c35353A8D7B1A1BA02e02E387a8383e004A/info.json b/blockchains/smartchain/assets/0x34980c35353A8D7B1A1BA02e02E387a8383e004A/info.json new file mode 100644 index 00000000..863c544e --- /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 00000000..0ad63bbb Binary files /dev/null and b/blockchains/smartchain/assets/0x34980c35353A8D7B1A1BA02e02E387a8383e004A/logo.png differ diff --git a/blockchains/smartchain/assets/0x3498c7927dA877fAa14198d24caEbd6516189646/info.json b/blockchains/smartchain/assets/0x3498c7927dA877fAa14198d24caEbd6516189646/info.json new file mode 100644 index 00000000..6265a461 --- /dev/null +++ b/blockchains/smartchain/assets/0x3498c7927dA877fAa14198d24caEbd6516189646/info.json @@ -0,0 +1,11 @@ +{ + "name": "ROTHS", + "type": "BEP20", + "symbol": "ROTHS", + "decimals": 18, + "website": "https://roths.live", + "description": "ROTHS ", + "explorer": "https://bscscan.com/token/0x3498c7927dA877fAa14198d24caEbd6516189646", + "status": "active", + "id": "0x3498c7927dA877fAa14198d24caEbd6516189646" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3498c7927dA877fAa14198d24caEbd6516189646/logo.png b/blockchains/smartchain/assets/0x3498c7927dA877fAa14198d24caEbd6516189646/logo.png new file mode 100644 index 00000000..58c49c77 Binary files /dev/null and b/blockchains/smartchain/assets/0x3498c7927dA877fAa14198d24caEbd6516189646/logo.png differ diff --git a/blockchains/smartchain/assets/0x34bA3af693d6c776d73C7fa67e2B2e79be8ef4ED/info.json b/blockchains/smartchain/assets/0x34bA3af693d6c776d73C7fa67e2B2e79be8ef4ED/info.json new file mode 100644 index 00000000..552335af --- /dev/null +++ b/blockchains/smartchain/assets/0x34bA3af693d6c776d73C7fa67e2B2e79be8ef4ED/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shambala", + "type": "BEP20", + "symbol": "BALA", + "decimals": 18, + "website": "https://shambala.finance/", + "description": "BALA is the platform token of Shambala metaverse", + "explorer": "https://bscscan.com/token/0x34bA3af693d6c776d73C7fa67e2B2e79be8ef4ED", + "status": "active", + "id": "0x34bA3af693d6c776d73C7fa67e2B2e79be8ef4ED", + "links": [ + { + "name": "x", + "url": "https://x.com/ShambalaUni" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shambala/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x34bA3af693d6c776d73C7fa67e2B2e79be8ef4ED/logo.png b/blockchains/smartchain/assets/0x34bA3af693d6c776d73C7fa67e2B2e79be8ef4ED/logo.png new file mode 100644 index 00000000..2a554670 Binary files /dev/null and b/blockchains/smartchain/assets/0x34bA3af693d6c776d73C7fa67e2B2e79be8ef4ED/logo.png differ diff --git a/blockchains/smartchain/assets/0x3504de9e61FDFf2Fc70f5cC8a6D1Ee493434C1Aa/info.json b/blockchains/smartchain/assets/0x3504de9e61FDFf2Fc70f5cC8a6D1Ee493434C1Aa/info.json new file mode 100644 index 00000000..ddadd020 --- /dev/null +++ b/blockchains/smartchain/assets/0x3504de9e61FDFf2Fc70f5cC8a6D1Ee493434C1Aa/info.json @@ -0,0 +1,12 @@ +{ + "name": "TeslaSafe", + "website": "https://teslasafe.finance", + "description": "TeslaSafe is a frictionless, high-yield, auto deflationary crypto that rewards holders.", + "explorer": "https://bscscan.com/token/0x3504de9e61fdff2fc70f5cc8a6d1ee493434c1aa", + "research": "", + "type": "BEP20", + "symbol": "TeslaSafe", + "decimals": 9, + "status": "active", + "id": "0x3504de9e61FDFf2Fc70f5cC8a6D1Ee493434C1Aa" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3504de9e61FDFf2Fc70f5cC8a6D1Ee493434C1Aa/logo.png b/blockchains/smartchain/assets/0x3504de9e61FDFf2Fc70f5cC8a6D1Ee493434C1Aa/logo.png new file mode 100644 index 00000000..e3d03dad Binary files /dev/null and b/blockchains/smartchain/assets/0x3504de9e61FDFf2Fc70f5cC8a6D1Ee493434C1Aa/logo.png differ diff --git a/blockchains/smartchain/assets/0x350c8a09ccf7f862F0D835b0AFF85898c22D2840/info.json b/blockchains/smartchain/assets/0x350c8a09ccf7f862F0D835b0AFF85898c22D2840/info.json new file mode 100644 index 00000000..03084c65 --- /dev/null +++ b/blockchains/smartchain/assets/0x350c8a09ccf7f862F0D835b0AFF85898c22D2840/info.json @@ -0,0 +1,29 @@ +{ + "name": "Baby Mind", + "type": "BEP20", + "symbol": "BMND", + "decimals": 9, + "website": "https://baby.mindmusic.finance/", + "description": "Baby Mind has been set up to raise awareness for mental health t hrough the power of memes and rewards.", + "explorer": "https://bscscan.com/token/0x350c8a09ccf7f862F0D835b0AFF85898c22D2840", + "status": "active", + "id": "0x350c8a09ccf7f862F0D835b0AFF85898c22D2840", + "links": [ + { + "name": "x", + "url": "https://x.com/mindmusic_bsc" + }, + { + "name": "github", + "url": "https://github.com/D-B-S-G/BabyMind" + }, + { + "name": "telegram", + "url": "https://t.me/babymindbsc" + }, + { + "name": "whitepaper", + "url": "https://baby.mindmusic.finance/white-paper.html" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x350c8a09ccf7f862F0D835b0AFF85898c22D2840/logo.png b/blockchains/smartchain/assets/0x350c8a09ccf7f862F0D835b0AFF85898c22D2840/logo.png new file mode 100644 index 00000000..c33354b9 Binary files /dev/null and b/blockchains/smartchain/assets/0x350c8a09ccf7f862F0D835b0AFF85898c22D2840/logo.png differ diff --git a/blockchains/smartchain/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json b/blockchains/smartchain/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/info.json new file mode 100644 index 00000000..e920cbab --- /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 00000000..4e802b83 Binary files /dev/null and b/blockchains/smartchain/assets/0x3522513E5F146a2006e2901b05f16B2821485E19/logo.png differ diff --git a/blockchains/smartchain/assets/0x3524fd7488fdb1F4723BBc22C9cbD1Bf89f46E3B/info.json b/blockchains/smartchain/assets/0x3524fd7488fdb1F4723BBc22C9cbD1Bf89f46E3B/info.json new file mode 100644 index 00000000..bb298483 --- /dev/null +++ b/blockchains/smartchain/assets/0x3524fd7488fdb1F4723BBc22C9cbD1Bf89f46E3B/info.json @@ -0,0 +1,14 @@ +{ + "name": "SushiToken (Portal)", + "type": "BEP20", + "symbol": "SUSHI", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://sushi.com/", + "explorer": "https://bscscan.com/token/0x3524fd7488fdb1F4723BBc22C9cbD1Bf89f46E3B", + "status": "active", + "id": "0x3524fd7488fdb1F4723BBc22C9cbD1Bf89f46E3B", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3524fd7488fdb1F4723BBc22C9cbD1Bf89f46E3B/logo.png b/blockchains/smartchain/assets/0x3524fd7488fdb1F4723BBc22C9cbD1Bf89f46E3B/logo.png new file mode 100644 index 00000000..1057abaf Binary files /dev/null and b/blockchains/smartchain/assets/0x3524fd7488fdb1F4723BBc22C9cbD1Bf89f46E3B/logo.png differ diff --git a/blockchains/smartchain/assets/0x352Cb5E19b12FC216548a2677bD0fce83BaE434B/info.json b/blockchains/smartchain/assets/0x352Cb5E19b12FC216548a2677bD0fce83BaE434B/info.json new file mode 100644 index 00000000..6f3bd415 --- /dev/null +++ b/blockchains/smartchain/assets/0x352Cb5E19b12FC216548a2677bD0fce83BaE434B/info.json @@ -0,0 +1,38 @@ +{ + "name": "BitTorrent", + "symbol": "BTT", + "type": "BEP20", + "decimals": 18, + "description": "BTT is the official token of BitTorrent Chain. BitTorrent Chain is a brand-new heterogeneous cross-chain interoperability protocol, which leverages sidechains for the scaling of smart contracts.", + "website": "https://bt.io/", + "explorer": "https://bscscan.com/token/0x352cb5e19b12fc216548a2677bd0fce83bae434b", + "status": "active", + "id": "0x352Cb5E19b12FC216548a2677bD0fce83BaE434B", + "links": [ + { + "name": "x", + "url": "https://x.com/BitTorrent" + }, + { + "name": "github", + "url": "https://github.com/bttcprotocol/bttc" + }, + { + "name": "telegram", + "url": "https://t.me/BitTorrentChain" + }, + { + "name": "whitepaper", + "url": "https://tron.network/static/doc/BitTorrent-ChainWhitepaper_EN.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@BitTorrent" + } + ], + "tags": [ + "governance", + "staking", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x352Cb5E19b12FC216548a2677bD0fce83BaE434B/logo.png b/blockchains/smartchain/assets/0x352Cb5E19b12FC216548a2677bD0fce83BaE434B/logo.png new file mode 100644 index 00000000..c761419f Binary files /dev/null and b/blockchains/smartchain/assets/0x352Cb5E19b12FC216548a2677bD0fce83BaE434B/logo.png differ diff --git a/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/info.json b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/info.json new file mode 100644 index 00000000..a3bf5bec --- /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 00000000..fd777a3c Binary files /dev/null and b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/logo.png differ diff --git a/blockchains/smartchain/assets/0x355389292D8c963719FDaF0651f7846D6c504448/info.json b/blockchains/smartchain/assets/0x355389292D8c963719FDaF0651f7846D6c504448/info.json new file mode 100644 index 00000000..2accd26a --- /dev/null +++ b/blockchains/smartchain/assets/0x355389292D8c963719FDaF0651f7846D6c504448/info.json @@ -0,0 +1,11 @@ +{ + "name": "HAKUNAMATATA", + "website": "https://hakunamatata.finance/", + "description": "BEP-20 Token combining financial freedom with charity", + "explorer": "https://bscscan.com/token/0x355389292d8c963719fdaf0651f7846d6c504448", + "type": "BEP20", + "symbol": "TATA", + "decimals": 9, + "status": "active", + "id": "0x355389292D8c963719FDaF0651f7846D6c504448" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x355389292D8c963719FDaF0651f7846D6c504448/logo.png b/blockchains/smartchain/assets/0x355389292D8c963719FDaF0651f7846D6c504448/logo.png new file mode 100644 index 00000000..c03fd3b3 Binary files /dev/null and b/blockchains/smartchain/assets/0x355389292D8c963719FDaF0651f7846D6c504448/logo.png differ diff --git a/blockchains/smartchain/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json b/blockchains/smartchain/assets/0x3557Ba345B01EFa20A1bdDC61F573BFD87195081/info.json new file mode 100644 index 00000000..91517e7b --- /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 00000000..1b179f11 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 00000000..79823541 --- /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 00000000..857455e7 Binary files /dev/null and b/blockchains/smartchain/assets/0x35895a1fa1AFf7FB3204fB01257409Fd75acB24C/logo.png differ diff --git a/blockchains/smartchain/assets/0x359f35085202C8527a0c767557339635A335Eb76/info.json b/blockchains/smartchain/assets/0x359f35085202C8527a0c767557339635A335Eb76/info.json new file mode 100644 index 00000000..3378d669 --- /dev/null +++ b/blockchains/smartchain/assets/0x359f35085202C8527a0c767557339635A335Eb76/info.json @@ -0,0 +1,11 @@ +{ + "name": "PitJupiter", + "website": "https://pitjupitertoken.com/", + "description": "PitJupiter is a community-driven and run token with charity goals & governance with a strong tokeneconomics base, with ownership renounced", + "explorer": "https://bscscan.com/token/0x359f35085202C8527a0c767557339635A335Eb76", + "type": "BEP20", + "symbol": "PITJUPITER", + "decimals": 9, + "status": "active", + "id": "0x359f35085202C8527a0c767557339635A335Eb76" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x359f35085202C8527a0c767557339635A335Eb76/logo.png b/blockchains/smartchain/assets/0x359f35085202C8527a0c767557339635A335Eb76/logo.png new file mode 100644 index 00000000..2bd33902 Binary files /dev/null and b/blockchains/smartchain/assets/0x359f35085202C8527a0c767557339635A335Eb76/logo.png differ diff --git a/blockchains/smartchain/assets/0x35Bd36597fF784FCc30D08EBE4Bd917374C40d4B/info.json b/blockchains/smartchain/assets/0x35Bd36597fF784FCc30D08EBE4Bd917374C40d4B/info.json new file mode 100644 index 00000000..d47444e7 --- /dev/null +++ b/blockchains/smartchain/assets/0x35Bd36597fF784FCc30D08EBE4Bd917374C40d4B/info.json @@ -0,0 +1,25 @@ +{ + "name": "miniShibaToken", + "type": "BEP20", + "symbol": "miniSHIB", + "decimals": 9, + "website": "https://minishib.com/", + "description": "miniSHIB aims to bring cryptocurrency to a wider audience through engaging content, whilst raising funds for animal welfare charities.", + "explorer": "https://bscscan.com/token/0x35Bd36597fF784FCc30D08EBE4Bd917374C40d4B", + "status": "active", + "id": "0x35Bd36597fF784FCc30D08EBE4Bd917374C40d4B", + "links": [ + { + "name": "github", + "url": "https://github.com/MiniShibTeam" + }, + { + "name": "x", + "url": "https://x.com/realminishib" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MinishibGroup/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x35Bd36597fF784FCc30D08EBE4Bd917374C40d4B/logo.png b/blockchains/smartchain/assets/0x35Bd36597fF784FCc30D08EBE4Bd917374C40d4B/logo.png new file mode 100644 index 00000000..09852c08 Binary files /dev/null and b/blockchains/smartchain/assets/0x35Bd36597fF784FCc30D08EBE4Bd917374C40d4B/logo.png differ diff --git a/blockchains/smartchain/assets/0x35E446a313369F2CCa5592E62dB9edBB23233Dd2/info.json b/blockchains/smartchain/assets/0x35E446a313369F2CCa5592E62dB9edBB23233Dd2/info.json new file mode 100644 index 00000000..d4303721 --- /dev/null +++ b/blockchains/smartchain/assets/0x35E446a313369F2CCa5592E62dB9edBB23233Dd2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jigsaw", + "website": "https://www.ghostface.finance/jigsaw", + "description": "Jigsaw - Hold $JIGSAW and earn $BNB while you sleep!", + "explorer": "https://bscscan.com/token/0x35E446a313369F2CCa5592E62dB9edBB23233Dd2", + "type": "BEP20", + "symbol": "JIGSAW", + "decimals": 9, + "status": "active", + "id": "0x35E446a313369F2CCa5592E62dB9edBB23233Dd2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x35E446a313369F2CCa5592E62dB9edBB23233Dd2/logo.png b/blockchains/smartchain/assets/0x35E446a313369F2CCa5592E62dB9edBB23233Dd2/logo.png new file mode 100644 index 00000000..e48f8558 Binary files /dev/null and b/blockchains/smartchain/assets/0x35E446a313369F2CCa5592E62dB9edBB23233Dd2/logo.png differ diff --git a/blockchains/smartchain/assets/0x35b2a25087A4D33dADBFB7625bfa7f1e0853f723/info.json b/blockchains/smartchain/assets/0x35b2a25087A4D33dADBFB7625bfa7f1e0853f723/info.json new file mode 100644 index 00000000..fe238385 --- /dev/null +++ b/blockchains/smartchain/assets/0x35b2a25087A4D33dADBFB7625bfa7f1e0853f723/info.json @@ -0,0 +1,33 @@ +{ + "name": "Annex USDT", + "website": "https://www.annex.finance/", + "description": "Money Markets. A Decentralized Marketplace for Lenders and Borrowers", + "explorer": "https://bscscan.com/token/0x35b2a25087A4D33dADBFB7625bfa7f1e0853f723", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/AnnexFinance" + }, + { + "name": "medium", + "url": "https://annexfinance.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/Annex_finance_group" + }, + { + "name": "github", + "url": "https://github.com/annexfinance/annex-protocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AnnexFinance/" + } + ], + "symbol": "aUSDT", + "decimals": 8, + "status": "active", + "id": "0x35b2a25087A4D33dADBFB7625bfa7f1e0853f723" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x35b2a25087A4D33dADBFB7625bfa7f1e0853f723/logo.png b/blockchains/smartchain/assets/0x35b2a25087A4D33dADBFB7625bfa7f1e0853f723/logo.png new file mode 100644 index 00000000..6e9fe7d7 Binary files /dev/null and b/blockchains/smartchain/assets/0x35b2a25087A4D33dADBFB7625bfa7f1e0853f723/logo.png differ diff --git a/blockchains/smartchain/assets/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/info.json b/blockchains/smartchain/assets/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/info.json new file mode 100644 index 00000000..a9d343fb --- /dev/null +++ b/blockchains/smartchain/assets/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/info.json @@ -0,0 +1,28 @@ +{ + "name": "TAP Coin", + "website": "https://tapfantasy.io/", + "description": "Tap Fantasy is an MMORPG blockchain game, building the biggest Play2Earn NFT game on Solana and BSC. It’s the metaverse version of the famous MMORPG TapTap Fantasy with over 20 million users. Now it has designed more than 200 ACG characters and NFT skins.", + "explorer": "https://bscscan.com/token/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563", + "type": "BEP20", + "symbol": "TAP", + "decimals": 18, + "status": "active", + "id": "0x35bEdBF9291b22218a0dA863170dcC9329Ef2563", + "links": [ + { + "name": "x", + "url": "https://x.com/tapfantasy2021" + }, + { + "name": "github", + "url": "https://github.com/tapfantasy/" + }, + { + "name": "telegram", + "url": "https://t.me/tap_fantasy" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/logo.png b/blockchains/smartchain/assets/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/logo.png new file mode 100644 index 00000000..cf93b242 Binary files /dev/null and b/blockchains/smartchain/assets/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/logo.png differ diff --git a/blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/info.json b/blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/info.json new file mode 100644 index 00000000..647449aa --- /dev/null +++ b/blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/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/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c", + "status": "abandoned", + "id": "0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c", + "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/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c#code" + }, + { + "name": "github", + "url": "https://github.com/piratecash" + } + ], + "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 00000000..5ebef306 --- /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 00000000..74db41c1 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 new file mode 100644 index 00000000..5cc0e9f2 --- /dev/null +++ b/blockchains/smartchain/assets/0x360883b7E7fAAD5CE3b4295DABe3F4Ce01A408a2/info.json @@ -0,0 +1,25 @@ +{ + "name": " Solar Systems", + "website": "https://sale.nftsolar.systems/", + "description": "CREATE YOUR OWN UNIQUE SOLAR SYSTEM on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x360883b7E7fAAD5CE3b4295DABe3F4Ce01A408a2", + "type": "BEP20", + "symbol": "SNS", + "decimals": 8, + "status": "active", + "id": "0x360883b7E7fAAD5CE3b4295DABe3F4Ce01A408a2", + "links": [ + { + "name": "github", + "url": "https://github.com/SolarSystemsNFT/" + }, + { + "name": "x", + "url": "https://x.com/SolarSystems3" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/nftsollar/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x360883b7E7fAAD5CE3b4295DABe3F4Ce01A408a2/logo.png b/blockchains/smartchain/assets/0x360883b7E7fAAD5CE3b4295DABe3F4Ce01A408a2/logo.png new file mode 100644 index 00000000..d14f5349 Binary files /dev/null and b/blockchains/smartchain/assets/0x360883b7E7fAAD5CE3b4295DABe3F4Ce01A408a2/logo.png differ diff --git a/blockchains/smartchain/assets/0x361C60b7c2828fCAb80988d00D1D542c83387b50/info.json b/blockchains/smartchain/assets/0x361C60b7c2828fCAb80988d00D1D542c83387b50/info.json new file mode 100644 index 00000000..7b0fbf2f --- /dev/null +++ b/blockchains/smartchain/assets/0x361C60b7c2828fCAb80988d00D1D542c83387b50/info.json @@ -0,0 +1,28 @@ +{ + "name": "DeFiChain", + "website": "https://defichain.com/", + "description": "DeFiChain (DFI) is a blockchain platform built with the mission of maximizing the full potential of DeFi within the Bitcoin (BTC) ecosystem.", + "explorer": "https://bscscan.com/token/0x361c60b7c2828fcab80988d00d1d542c83387b50", + "type": "BEP20", + "symbol": "DFI", + "decimals": 18, + "status": "active", + "id": "0x361C60b7c2828fCAb80988d00D1D542c83387b50", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/DeFiCh/ain" + }, + { + "name": "x", + "url": "https://x.com/defichain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defichain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x361C60b7c2828fCAb80988d00D1D542c83387b50/logo.png b/blockchains/smartchain/assets/0x361C60b7c2828fCAb80988d00D1D542c83387b50/logo.png new file mode 100644 index 00000000..ee8b25ed Binary files /dev/null and b/blockchains/smartchain/assets/0x361C60b7c2828fCAb80988d00D1D542c83387b50/logo.png differ diff --git a/blockchains/smartchain/assets/0x3645Faf5d10422d5508Cf37771F6e47fEfA4c6A3/info.json b/blockchains/smartchain/assets/0x3645Faf5d10422d5508Cf37771F6e47fEfA4c6A3/info.json new file mode 100644 index 00000000..49dbdf09 --- /dev/null +++ b/blockchains/smartchain/assets/0x3645Faf5d10422d5508Cf37771F6e47fEfA4c6A3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dogecoin Black", + "website": "https://dogecoinblack.com", + "description": "Dogecoin Black is Memes Token", + "explorer": "https://bscscan.com/token/0x3645Faf5d10422d5508Cf37771F6e47fEfA4c6A3", + "symbol": "DOGEB", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x3645Faf5d10422d5508Cf37771F6e47fEfA4c6A3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3645Faf5d10422d5508Cf37771F6e47fEfA4c6A3/logo.png b/blockchains/smartchain/assets/0x3645Faf5d10422d5508Cf37771F6e47fEfA4c6A3/logo.png new file mode 100644 index 00000000..755bfd55 Binary files /dev/null and b/blockchains/smartchain/assets/0x3645Faf5d10422d5508Cf37771F6e47fEfA4c6A3/logo.png differ diff --git a/blockchains/smartchain/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json b/blockchains/smartchain/assets/0x364f210f430eC2448Fc68A49203040F6124096F0/info.json new file mode 100644 index 00000000..e1fbb862 --- /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 00000000..00db496a 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 00000000..656522c0 --- /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 00000000..ebb53564 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 new file mode 100644 index 00000000..66daed2c --- /dev/null +++ b/blockchains/smartchain/assets/0x36C7B164F85D6F775cD128966D5819c7d36FEfF3/info.json @@ -0,0 +1,48 @@ +{ + "name": "Openlive NFT", + "type": "BEP20", + "symbol": "OPV", + "decimals": 18, + "website": "https://openlivenft.com/", + "description": "OPENLIVE NFT is a decentralized marketplace where users can generate, store, buy & sell NFTs.", + "explorer": "https://bscscan.com/token/0x36C7B164F85D6F775cD128966D5819c7d36FEfF3", + "status": "active", + "id": "0x36C7B164F85D6F775cD128966D5819c7d36FEfF3", + "links": [ + { + "name": "x", + "url": "https://x.com/OpenLiveNFT" + }, + { + "name": "telegram", + "url": "https://t.me/OpenLiveNFT" + }, + { + "name": "docs", + "url": "https://docs.openlivenft.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openlive-nft/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/openLiveNFT/" + }, + { + "name": "github", + "url": "https://github.com/openLiveNFT" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openlive-nft" + }, + { + "name": "whitepaper", + "url": "https://docs.openlivenft.com/" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x36C7B164F85D6F775cD128966D5819c7d36FEfF3/logo.png b/blockchains/smartchain/assets/0x36C7B164F85D6F775cD128966D5819c7d36FEfF3/logo.png new file mode 100644 index 00000000..b5a8c916 Binary files /dev/null and b/blockchains/smartchain/assets/0x36C7B164F85D6F775cD128966D5819c7d36FEfF3/logo.png differ diff --git a/blockchains/smartchain/assets/0x36DB129506fE81dA7Ce085648ff9C7a0D5e31ed2/info.json b/blockchains/smartchain/assets/0x36DB129506fE81dA7Ce085648ff9C7a0D5e31ed2/info.json new file mode 100644 index 00000000..9def1a45 --- /dev/null +++ b/blockchains/smartchain/assets/0x36DB129506fE81dA7Ce085648ff9C7a0D5e31ed2/info.json @@ -0,0 +1,11 @@ +{ + "name": "CEEZEE", + "website": "https://ceezee.io/", + "description": "The Best Meme-Based Geometric Deflationary Token", + "explorer": "https://bscscan.com/token/0x36DB129506fE81dA7Ce085648ff9C7a0D5e31ed2", + "type": "BEP20", + "symbol": "SAFU", + "decimals": 18, + "status": "active", + "id": "0x36DB129506fE81dA7Ce085648ff9C7a0D5e31ed2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x36DB129506fE81dA7Ce085648ff9C7a0D5e31ed2/logo.png b/blockchains/smartchain/assets/0x36DB129506fE81dA7Ce085648ff9C7a0D5e31ed2/logo.png new file mode 100644 index 00000000..cdc4f7fb Binary files /dev/null and b/blockchains/smartchain/assets/0x36DB129506fE81dA7Ce085648ff9C7a0D5e31ed2/logo.png differ diff --git a/blockchains/smartchain/assets/0x36F5675029E129B5fCaBb29eC750ed268520AcF7/info.json b/blockchains/smartchain/assets/0x36F5675029E129B5fCaBb29eC750ed268520AcF7/info.json new file mode 100644 index 00000000..7de1bc6a --- /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 00000000..030658e2 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 new file mode 100644 index 00000000..d783492b --- /dev/null +++ b/blockchains/smartchain/assets/0x36b24B2F78725495e858AF9e72f7Df69DaDE3dca/info.json @@ -0,0 +1,29 @@ +{ + "name": "SeaChain", + "website": "https://www.seachaintoken.com/", + "description": "SeaChain is a decentralised, community-driven ecosystem funding trash barriers in the most polluted rivers.", + "explorer": "https://bscscan.com/token/0x36b24B2F78725495e858AF9e72f7Df69DaDE3dca", + "type": "BEP20", + "symbol": "SeaChain", + "decimals": 9, + "status": "active", + "id": "0x36b24B2F78725495e858AF9e72f7Df69DaDE3dca", + "links": [ + { + "name": "x", + "url": "https://x.com/SeaChainToken" + }, + { + "name": "telegram", + "url": "https://t.me/SeaChainNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/seachain/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/seachain" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x36b24B2F78725495e858AF9e72f7Df69DaDE3dca/logo.png b/blockchains/smartchain/assets/0x36b24B2F78725495e858AF9e72f7Df69DaDE3dca/logo.png new file mode 100644 index 00000000..bebd84d5 Binary files /dev/null and b/blockchains/smartchain/assets/0x36b24B2F78725495e858AF9e72f7Df69DaDE3dca/logo.png differ diff --git a/blockchains/smartchain/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json b/blockchains/smartchain/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/info.json new file mode 100644 index 00000000..ca5b61a1 --- /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 00000000..c3916659 Binary files /dev/null and b/blockchains/smartchain/assets/0x36c424a6EC0e264b1616102Ad63eD2aD7857413e/logo.png differ diff --git a/blockchains/smartchain/assets/0x36dBcBCA106353D49e1E0E8974492fFB862a0C92/info.json b/blockchains/smartchain/assets/0x36dBcBCA106353D49e1E0E8974492fFB862a0C92/info.json new file mode 100644 index 00000000..152cd756 --- /dev/null +++ b/blockchains/smartchain/assets/0x36dBcBCA106353D49e1E0E8974492fFB862a0C92/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeMeme", + "type": "BEP20", + "symbol": "SME", + "decimals": 9, + "website": "https://www.safememe.com", + "description": "A unique Rugpull-Proof utility token and exchange platform based on the Binance Smart Chain. Our exchange is here to return security to BEP20 token investments.", + "explorer": "https://bscscan.com/token/0x36dBcBCA106353D49e1E0E8974492fFB862a0C92", + "status": "active", + "id": "0x36dBcBCA106353D49e1E0E8974492fFB862a0C92" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x36dBcBCA106353D49e1E0E8974492fFB862a0C92/logo.png b/blockchains/smartchain/assets/0x36dBcBCA106353D49e1E0E8974492fFB862a0C92/logo.png new file mode 100644 index 00000000..42817983 Binary files /dev/null and b/blockchains/smartchain/assets/0x36dBcBCA106353D49e1E0E8974492fFB862a0C92/logo.png differ diff --git a/blockchains/smartchain/assets/0x36f66D61Db3497f7FDBA22Efd2A251753A95d0E2/info.json b/blockchains/smartchain/assets/0x36f66D61Db3497f7FDBA22Efd2A251753A95d0E2/info.json new file mode 100644 index 00000000..0cdcb7b4 --- /dev/null +++ b/blockchains/smartchain/assets/0x36f66D61Db3497f7FDBA22Efd2A251753A95d0E2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Life Token", + "website": "https://thelifetoken.com", + "description": "Life Token is a charity-orientated, self-staking, deflationary token aiming to help aid suicide prevention.", + "explorer": "https://bscscan.com/token/0x36f66D61Db3497f7FDBA22Efd2A251753A95d0E2", + "type": "BEP20", + "symbol": "LTN", + "decimals": 18, + "status": "active", + "id": "0x36f66D61Db3497f7FDBA22Efd2A251753A95d0E2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x36f66D61Db3497f7FDBA22Efd2A251753A95d0E2/logo.png b/blockchains/smartchain/assets/0x36f66D61Db3497f7FDBA22Efd2A251753A95d0E2/logo.png new file mode 100644 index 00000000..7fe90060 Binary files /dev/null and b/blockchains/smartchain/assets/0x36f66D61Db3497f7FDBA22Efd2A251753A95d0E2/logo.png differ diff --git a/blockchains/smartchain/assets/0x370377D72029FF96a3bC1513d1b9A30C2028fdB8/info.json b/blockchains/smartchain/assets/0x370377D72029FF96a3bC1513d1b9A30C2028fdB8/info.json new file mode 100644 index 00000000..8182a330 --- /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 00000000..5d2a4604 Binary files /dev/null and b/blockchains/smartchain/assets/0x370377D72029FF96a3bC1513d1b9A30C2028fdB8/logo.png differ diff --git a/blockchains/smartchain/assets/0x37109a51e712471Bd2C72d8D70718627e7fF0032/info.json b/blockchains/smartchain/assets/0x37109a51e712471Bd2C72d8D70718627e7fF0032/info.json new file mode 100644 index 00000000..97548fed --- /dev/null +++ b/blockchains/smartchain/assets/0x37109a51e712471Bd2C72d8D70718627e7fF0032/info.json @@ -0,0 +1,12 @@ +{ + "name": "Swapcoinz", + "website": "https://swapcoinz.io", + "description": "Swapcoinz The Innovative Playground Solution For African Kids With our sole Mission to be a bridge between Families and Businesses", + "explorer": "https://bscscan.com/token/0x37109a51e712471bd2c72d8d70718627e7ff0032", + "research": "", + "type": "BEP20", + "symbol": "SPAZ", + "decimals": 8, + "status": "active", + "id": "0x37109a51e712471Bd2C72d8D70718627e7fF0032" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x37109a51e712471Bd2C72d8D70718627e7fF0032/logo.png b/blockchains/smartchain/assets/0x37109a51e712471Bd2C72d8D70718627e7fF0032/logo.png new file mode 100644 index 00000000..ed3ae018 Binary files /dev/null and b/blockchains/smartchain/assets/0x37109a51e712471Bd2C72d8D70718627e7fF0032/logo.png differ diff --git a/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json b/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json new file mode 100644 index 00000000..691ad67f --- /dev/null +++ b/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json @@ -0,0 +1,25 @@ +{ + "name": "JOE", + "symbol": "JOE", + "type": "BEP20", + "decimals": 18, + "description": "One-stop Decentralized Trading on Avalanche.", + "website": "https://traderjoexyz.com/", + "explorer": "https://bscscan.com/token/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07", + "status": "active", + "id": "0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07", + "links": [ + { + "name": "x", + "url": "https://x.com/traderjoe_xyz" + }, + { + "name": "telegram", + "url": "https://t.me/traderjoe_xyz" + }, + { + "name": "github", + "url": "https://github.com/traderjoe-xyz/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/logo.png b/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/logo.png new file mode 100644 index 00000000..7cf47068 Binary files /dev/null and b/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/logo.png differ diff --git a/blockchains/smartchain/assets/0x373849E1DbEE104D67afFf1B73703De4fd96294E/info.json b/blockchains/smartchain/assets/0x373849E1DbEE104D67afFf1B73703De4fd96294E/info.json new file mode 100644 index 00000000..bde84d94 --- /dev/null +++ b/blockchains/smartchain/assets/0x373849E1DbEE104D67afFf1B73703De4fd96294E/info.json @@ -0,0 +1,11 @@ +{ + "name": "DoggyInu Token", + "website": "https://doggyinu.com", + "description": "Doggy Inu is a deflationary meme Token with an anti-whale mechanism designed to make investors benefit by hodling. Each user is (in theory) an equivalent owner and contributor to the network. Every trade contributes toward automatically generating liquidity locked inside PancakeSwap", + "explorer": "https://bscscan.com/token/0x373849E1DbEE104D67afFf1B73703De4fd96294E", + "type": "BEP20", + "symbol": "DOGI", + "decimals": 9, + "status": "active", + "id": "0x373849E1DbEE104D67afFf1B73703De4fd96294E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x373849E1DbEE104D67afFf1B73703De4fd96294E/logo.png b/blockchains/smartchain/assets/0x373849E1DbEE104D67afFf1B73703De4fd96294E/logo.png new file mode 100644 index 00000000..ddf6c27a Binary files /dev/null and b/blockchains/smartchain/assets/0x373849E1DbEE104D67afFf1B73703De4fd96294E/logo.png differ diff --git a/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/info.json b/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/info.json new file mode 100644 index 00000000..2ef2f3c4 --- /dev/null +++ b/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/info.json @@ -0,0 +1,33 @@ +{ + "name": "DeRace Token", + "website": "https://derace.com", + "description": "DeRace 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/0x373E768f79c820aA441540d254dCA6d045c6d25b", + "type": "BEP20", + "symbol": "DERC", + "decimals": 18, + "status": "active", + "id": "0x373E768f79c820aA441540d254dCA6d045c6d25b", + "links": [ + { + "name": "blog", + "url": "https://derace.com" + }, + { + "name": "x", + "url": "https://x.com/deracenft" + }, + { + "name": "telegram", + "url": "https://t.me/DeRaceNFT" + }, + { + "name": "medium", + "url": "https://deracenft.medium.com/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/67M9ckF3q3" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/logo.png b/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/logo.png new file mode 100644 index 00000000..e428af92 Binary files /dev/null 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 00000000..014b5314 --- /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 00000000..feccb8f8 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 new file mode 100644 index 00000000..7d71f75e --- /dev/null +++ b/blockchains/smartchain/assets/0x375483CfA7Fc18F6b455E005D835A8335FbdbB1f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Eclipse", + "website": "https://eclipsetoken.org", + "description": "Eclipse is a multi-utility token to be used on Eclipse platforms.", + "explorer": "https://bscscan.com/token/0x375483cfa7fc18f6b455e005d835a8335fbdbb1f", + "type": "BEP20", + "symbol": "ECP", + "decimals": 9, + "status": "active", + "id": "0x375483CfA7Fc18F6b455E005D835A8335FbdbB1f", + "links": [ + { + "name": "x", + "url": "https://x.com/token_eclipse" + }, + { + "name": "telegram", + "url": "https://t.me/eclipsetokenofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x375483CfA7Fc18F6b455E005D835A8335FbdbB1f/logo.png b/blockchains/smartchain/assets/0x375483CfA7Fc18F6b455E005D835A8335FbdbB1f/logo.png new file mode 100644 index 00000000..9f5baab5 Binary files /dev/null and b/blockchains/smartchain/assets/0x375483CfA7Fc18F6b455E005D835A8335FbdbB1f/logo.png differ diff --git a/blockchains/smartchain/assets/0x375A7B6A6F74a5Acb86C420c53C4Ce8cf1d51b4D/info.json b/blockchains/smartchain/assets/0x375A7B6A6F74a5Acb86C420c53C4Ce8cf1d51b4D/info.json new file mode 100644 index 00000000..f6bbab80 --- /dev/null +++ b/blockchains/smartchain/assets/0x375A7B6A6F74a5Acb86C420c53C4Ce8cf1d51b4D/info.json @@ -0,0 +1,37 @@ +{ + "name": "HUP.LIFE", + "website": "https://www.hup.life", + "description": "HUP.LIFE ($HUP) is building an all-in-one NFT Marketplace enabling socially conscious visual artists and collectors to authenticate their artwork, find copycats across the web, and buy, sell, and license their artwork through its copyright - while complying with international copyright and securities law.", + "explorer": "https://bscscan.com/token/0x375a7b6a6f74a5acb86c420c53c4ce8cf1d51b4d", + "type": "BEP20", + "symbol": "HUP", + "decimals": 9, + "status": "active", + "id": "0x375A7B6A6F74a5Acb86C420c53C4Ce8cf1d51b4D", + "links": [ + { + "name": "github", + "url": "https://github.com/HUP-LIFE" + }, + { + "name": "x", + "url": "https://x.com/hupdotlife" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/huplife" + }, + { + "name": "telegram", + "url": "https://t.me/hupdotlife" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/huplife" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hup-life/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x375A7B6A6F74a5Acb86C420c53C4Ce8cf1d51b4D/logo.png b/blockchains/smartchain/assets/0x375A7B6A6F74a5Acb86C420c53C4Ce8cf1d51b4D/logo.png new file mode 100644 index 00000000..d0bb3ce0 Binary files /dev/null and b/blockchains/smartchain/assets/0x375A7B6A6F74a5Acb86C420c53C4Ce8cf1d51b4D/logo.png differ diff --git a/blockchains/smartchain/assets/0x375B9F00A83132cABcDa7aBf2bfc87c14f7AC324/info.json b/blockchains/smartchain/assets/0x375B9F00A83132cABcDa7aBf2bfc87c14f7AC324/info.json new file mode 100644 index 00000000..dd6d270b --- /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 00000000..55387f09 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 new file mode 100644 index 00000000..e96daac5 --- /dev/null +++ b/blockchains/smartchain/assets/0x3780E00D4c60887AF38345cCd44f7617dBFB10A0/info.json @@ -0,0 +1,37 @@ +{ + "name": "Dogecoin 2.0", + "type": "BEP20", + "symbol": "Doge2", + "decimals": 9, + "website": "https://dogecoin2.org/", + "description": "Dogecoin 2.0 is a DEFI token on the BSC network. Born out of the original Dogecoin community.", + "explorer": "https://bscscan.com/token/0x3780e00d4c60887af38345ccd44f7617dbfb10a0", + "status": "active", + "id": "0x3780E00D4c60887AF38345cCd44f7617dBFB10A0", + "links": [ + { + "name": "github", + "url": "https://github.com/Dogecoin2-0/" + }, + { + "name": "x", + "url": "https://x.com/Doge2_Official" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Dogecoin2_point_0/" + }, + { + "name": "discord", + "url": "https://discord.com/doge2" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/pbZ1dx14bCAyMzY0" + }, + { + "name": "facebook", + "url": "https://facebook.com/DOGECOIN2/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3780E00D4c60887AF38345cCd44f7617dBFB10A0/logo.png b/blockchains/smartchain/assets/0x3780E00D4c60887AF38345cCd44f7617dBFB10A0/logo.png new file mode 100644 index 00000000..9eaf6f75 Binary files /dev/null and b/blockchains/smartchain/assets/0x3780E00D4c60887AF38345cCd44f7617dBFB10A0/logo.png differ diff --git a/blockchains/smartchain/assets/0x379f29911956052899E09233A3914f4e1eca075C/info.json b/blockchains/smartchain/assets/0x379f29911956052899E09233A3914f4e1eca075C/info.json new file mode 100644 index 00000000..ceb2c121 --- /dev/null +++ b/blockchains/smartchain/assets/0x379f29911956052899E09233A3914f4e1eca075C/info.json @@ -0,0 +1,36 @@ +{ + "name": "MetaSwapToken", + "type": "BEP20", + "symbol": "Meta", + "decimals": 18, + "website": "https://metaswap.name/", + "description": "MetaSwap Exchange, also known as Distributed Autonomous Organization Security Token Exchange. It is an STO platform fully deployed on the BSC chain. Issued by major, medium and small companies around the world, Listing and trading through DAO voting governance behavior, thereby simplifying the complicated process of STO.governance, it eliminates centralized supervision restrictions, greatly reduces issuance costs, and leaves it to token holders for democracy decision making.", + "explorer": "https://bscscan.com/token/0x379f29911956052899e09233a3914f4e1eca075c", + "status": "active", + "id": "0x379f29911956052899E09233A3914f4e1eca075C", + "links": [ + { + "name": "x", + "url": "https://x.com/MetaSwap_" + }, + { + "name": "blog", + "url": "https://metaswap.name/" + }, + { + "name": "discord", + "url": "https://discord.com/B4SFK2hK9e" + }, + { + "name": "telegram", + "url": "https://t.me/metaswapofficialchat" + }, + { + "name": "medium", + "url": "https://medium.com/@metaswap_" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x379f29911956052899E09233A3914f4e1eca075C/logo.png b/blockchains/smartchain/assets/0x379f29911956052899E09233A3914f4e1eca075C/logo.png new file mode 100644 index 00000000..d50d96d3 Binary files /dev/null and b/blockchains/smartchain/assets/0x379f29911956052899E09233A3914f4e1eca075C/logo.png differ diff --git a/blockchains/smartchain/assets/0x37A9357B0d575d419595Cb56974fb89729E737de/info.json b/blockchains/smartchain/assets/0x37A9357B0d575d419595Cb56974fb89729E737de/info.json new file mode 100644 index 00000000..4b7ec5b5 --- /dev/null +++ b/blockchains/smartchain/assets/0x37A9357B0d575d419595Cb56974fb89729E737de/info.json @@ -0,0 +1,25 @@ +{ + "name": "Galaxy Coin", + "website": "https://glxcoin.space/", + "description": "We bring simplicity to frictionless rewards. Our revolutionary concept aims to be more deflationary while enabling PUMPANOMICS for you.", + "explorer": "https://bscscan.com/token/0x37A9357B0d575d419595Cb56974fb89729E737de", + "type": "BEP20", + "symbol": "GLXC", + "decimals": 18, + "status": "active", + "id": "0x37A9357B0d575d419595Cb56974fb89729E737de", + "links": [ + { + "name": "x", + "url": "https://x.com/GLXcoin_" + }, + { + "name": "telegram", + "url": "https://t.me/glxcion" + }, + { + "name": "medium", + "url": "https://glxcoin.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x37A9357B0d575d419595Cb56974fb89729E737de/logo.png b/blockchains/smartchain/assets/0x37A9357B0d575d419595Cb56974fb89729E737de/logo.png new file mode 100644 index 00000000..5caa0b2e Binary files /dev/null and b/blockchains/smartchain/assets/0x37A9357B0d575d419595Cb56974fb89729E737de/logo.png differ diff --git a/blockchains/smartchain/assets/0x37Ac4D6140e54304D77437A5c11924f61a2D976f/info.json b/blockchains/smartchain/assets/0x37Ac4D6140e54304D77437A5c11924f61a2D976f/info.json new file mode 100644 index 00000000..1cebd4e1 --- /dev/null +++ b/blockchains/smartchain/assets/0x37Ac4D6140e54304D77437A5c11924f61a2D976f/info.json @@ -0,0 +1,38 @@ +{ + "name": "SparkPoint Fuel", + "website": "https://srk.finance", + "description": "SparkDeFi is a governance token-based DeFi platform that empowers individuals to unlock the true value of their cryptocurrency assets. It is a full-service decentralized finance solution that combines a decentralized exchange (SparkSwap), liquidity and pool-based staking (SparkStake), P2P lending and borrowing (SparkLend), and DeFi assets protocols management (SparkDash) in a seamless, transparent, secure, inclusive, and interoperable platform.", + "research": "https://link.medium.com/ehJR6uXfncb", + "explorer": "https://bscscan.com/token/0x37ac4d6140e54304d77437a5c11924f61a2d976f", + "type": "BEP20", + "symbol": "SFUEL", + "decimals": 18, + "status": "active", + "id": "0x37Ac4D6140e54304D77437A5c11924f61a2D976f", + "links": [ + { + "name": "github", + "url": "https://github.com/sparkpointio/venus-protocol" + }, + { + "name": "x", + "url": "https://x.com/SparkDeFi" + }, + { + "name": "telegram", + "url": "https://t.me/SparkDeFi" + }, + { + "name": "facebook", + "url": "https://facebook.com/SparkDeFi/" + }, + { + "name": "medium", + "url": "https://medium.com/theecosystem" + }, + { + "name": "whitepaper", + "url": "https://github.com/sparkpointio/sparkdefi-whitepaper/blob/main/WHITEPAPER.md" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x37Ac4D6140e54304D77437A5c11924f61a2D976f/logo.png b/blockchains/smartchain/assets/0x37Ac4D6140e54304D77437A5c11924f61a2D976f/logo.png new file mode 100644 index 00000000..388826f6 Binary files /dev/null and b/blockchains/smartchain/assets/0x37Ac4D6140e54304D77437A5c11924f61a2D976f/logo.png differ diff --git a/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/info.json b/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/info.json new file mode 100644 index 00000000..bdb3d9db --- /dev/null +++ b/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus ADA", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0x37C28DE42bA3d22217995D146FC684B2326Ede64", + "type": "BEP20", + "symbol": "vADA", + "decimals": 8, + "status": "active", + "id": "0x37C28DE42bA3d22217995D146FC684B2326Ede64", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/logo.png b/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/logo.png new file mode 100644 index 00000000..e40020df Binary files /dev/null and b/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/logo.png differ diff --git a/blockchains/smartchain/assets/0x37c4bcf0b8fC6f074be933Af7fb9D1DDe55f979C/info.json b/blockchains/smartchain/assets/0x37c4bcf0b8fC6f074be933Af7fb9D1DDe55f979C/info.json new file mode 100644 index 00000000..76596386 --- /dev/null +++ b/blockchains/smartchain/assets/0x37c4bcf0b8fC6f074be933Af7fb9D1DDe55f979C/info.json @@ -0,0 +1,49 @@ +{ + "name": "Black Diamond", + "type": "BEP20", + "symbol": "Diamonds", + "decimals": 12, + "website": "https://blackdiamond.gold", + "description": "A Diamond In The Rough!", + "explorer": "https://bscscan.com/token/0x37c4bcf0b8fC6f074be933Af7fb9D1DDe55f979C", + "status": "active", + "id": "0x37c4bcf0b8fC6f074be933Af7fb9D1DDe55f979C", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BlackDiamondGold" + }, + { + "name": "x", + "url": "https://x.com/BlackDiamond_CU" + }, + { + "name": "discord", + "url": "https://discord.com/invite/vDCqAn2dwz" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.blackdiamond.gold" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/black-diamond" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/black-diamond/" + }, + { + "name": "facebook", + "url": "https://facebook.com/BlackDiamondGLD/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ABlackDiamond/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x37c4bcf0b8fc6f074be933af7fb9d1dde55f979c#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x37c4bcf0b8fC6f074be933Af7fb9D1DDe55f979C/logo.png b/blockchains/smartchain/assets/0x37c4bcf0b8fC6f074be933Af7fb9D1DDe55f979C/logo.png new file mode 100644 index 00000000..7b7b28ae Binary files /dev/null and b/blockchains/smartchain/assets/0x37c4bcf0b8fC6f074be933Af7fb9D1DDe55f979C/logo.png differ diff --git a/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/info.json b/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/info.json new file mode 100644 index 00000000..84142ca9 --- /dev/null +++ b/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/info.json @@ -0,0 +1,33 @@ +{ + "name": "Bull BTC Club", + "type": "BEP20", + "symbol": "BBC", + "decimals": 18, + "website": "https://bullbtc.club/", + "description": "Bull BTC CLUB is a Hashrate service platform integrating bitcoin Hashrate distribution and multiple financial derivatives of Bitcoin.", + "explorer": "https://bscscan.com/token/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1", + "status": "active", + "id": "0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1", + "links": [ + { + "name": "x", + "url": "https://x.com/BULLBTCCLUBNFT" + }, + { + "name": "github", + "url": "https://github.com/bullbtcclub" + }, + { + "name": "telegram", + "url": "https://t.me/bullbtccluben" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bull-btc-club/" + } + ], + "tags": [ + "defi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/logo.png b/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/logo.png new file mode 100644 index 00000000..5d32cf6d Binary files /dev/null and b/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/logo.png differ diff --git a/blockchains/smartchain/assets/0x3802dc739eF9E226f36421A9c15eFa519153bBBe/info.json b/blockchains/smartchain/assets/0x3802dc739eF9E226f36421A9c15eFa519153bBBe/info.json new file mode 100644 index 00000000..cd5eb6a8 --- /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 00000000..d28deab3 Binary files /dev/null and b/blockchains/smartchain/assets/0x3802dc739eF9E226f36421A9c15eFa519153bBBe/logo.png differ diff --git a/blockchains/smartchain/assets/0x380624A4a7e69dB1cA07deEcF764025FC224D056/info.json b/blockchains/smartchain/assets/0x380624A4a7e69dB1cA07deEcF764025FC224D056/info.json new file mode 100644 index 00000000..1eef378c --- /dev/null +++ b/blockchains/smartchain/assets/0x380624A4a7e69dB1cA07deEcF764025FC224D056/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeBTC", + "website": "https://safebitcoin.io", + "description": "SafeBTC is a token with frictionless fee redistribution and liquidity-adds on transfers.", + "explorer": "https://bscscan.com/token/0x380624A4a7e69dB1cA07deEcF764025FC224D056", + "type": "BEP20", + "symbol": "SAFEBTC", + "decimals": 9, + "status": "active", + "id": "0x380624A4a7e69dB1cA07deEcF764025FC224D056" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x380624A4a7e69dB1cA07deEcF764025FC224D056/logo.png b/blockchains/smartchain/assets/0x380624A4a7e69dB1cA07deEcF764025FC224D056/logo.png new file mode 100644 index 00000000..0d183474 Binary files /dev/null and b/blockchains/smartchain/assets/0x380624A4a7e69dB1cA07deEcF764025FC224D056/logo.png differ diff --git a/blockchains/smartchain/assets/0x3830341557A0AE2e8d7cE341929747a540bb50d6/info.json b/blockchains/smartchain/assets/0x3830341557A0AE2e8d7cE341929747a540bb50d6/info.json new file mode 100644 index 00000000..6f1a10af --- /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 00000000..1b7e6e23 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 new file mode 100644 index 00000000..8ceb8537 --- /dev/null +++ b/blockchains/smartchain/assets/0x383094a91Ef2767Eed2B063ea40465670bf1C83f/info.json @@ -0,0 +1,33 @@ +{ + "name": "LIMOCOIN SWAP", + "type": "BEP20", + "symbol": "LMCSWAP", + "decimals": 18, + "website": "https://www.liyeplimal.net", + "description": "Limocoin Swap is a token created to allow, by the principle of cryptographic assets, the evolution of market solutions. It is based on a strong community built in four years by one of the subsidiaries of the parent company SIMTREX COMMERCIAL BROKERS LLC, GIT. SA", + "explorer": "https://bscscan.com/token/0x383094a91Ef2767Eed2B063ea40465670bf1C83f", + "status": "active", + "id": "0x383094a91Ef2767Eed2B063ea40465670bf1C83f", + "links": [ + { + "name": "x", + "url": "https://x.com/limocoinswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/limocoin-swap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/limocoin-swap" + }, + { + "name": "telegram", + "url": "https://t.me/limocoinswapofficial" + }, + { + "name": "whitepaper", + "url": "https://www.liyeplimal.net/assets/images/uploads/Livre_Blanc_LIMOCOIN_Version_en_Anglais.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x383094a91Ef2767Eed2B063ea40465670bf1C83f/logo.png b/blockchains/smartchain/assets/0x383094a91Ef2767Eed2B063ea40465670bf1C83f/logo.png new file mode 100644 index 00000000..75a531c7 Binary files /dev/null and b/blockchains/smartchain/assets/0x383094a91Ef2767Eed2B063ea40465670bf1C83f/logo.png differ diff --git a/blockchains/smartchain/assets/0x38895e0b3E7cD13C45BD4E93aF5a402604B762E3/info.json b/blockchains/smartchain/assets/0x38895e0b3E7cD13C45BD4E93aF5a402604B762E3/info.json new file mode 100644 index 00000000..96aa1340 --- /dev/null +++ b/blockchains/smartchain/assets/0x38895e0b3E7cD13C45BD4E93aF5a402604B762E3/info.json @@ -0,0 +1,41 @@ +{ + "name": "BabyPooCoin", + "type": "BEP20", + "symbol": "BabyPoo", + "decimals": 9, + "website": "https://babypoo.io/", + "description": "BabyPooCoin is a rewards token ran on the Binance Smart Chain, holders receive rewards in the form of the native utility token of the charting platform PooCoin", + "explorer": "https://bscscan.com/token/0x38895e0b3E7cD13C45BD4E93aF5a402604B762E3", + "status": "active", + "id": "0x38895e0b3E7cD13C45BD4E93aF5a402604B762E3", + "links": [ + { + "name": "x", + "url": "https://x.com/babypootoken" + }, + { + "name": "telegram", + "url": "https://t.me/OfficialBabyPooCoin" + }, + { + "name": "whitepaper", + "url": "https://docs.google.com/document/d/e/2PACX-1vR_0Rsw-7v1gJb-o8HOC19CACTeAvS5WcH3QwTbuT92KqFJC4QQ6j9MzXtyuHGnyfWnhTajz-Gt6nIr/pub" + }, + { + "name": "github", + "url": "https://github.com/BabyPooCoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCV9YjEODqaU2jDEFj3tehFg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-poocoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/baby-poocoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x38895e0b3E7cD13C45BD4E93aF5a402604B762E3/logo.png b/blockchains/smartchain/assets/0x38895e0b3E7cD13C45BD4E93aF5a402604B762E3/logo.png new file mode 100644 index 00000000..1c40f86d Binary files /dev/null and b/blockchains/smartchain/assets/0x38895e0b3E7cD13C45BD4E93aF5a402604B762E3/logo.png differ diff --git a/blockchains/smartchain/assets/0x389c13d5be24bED2af35C30F211E042225CB06fF/info.json b/blockchains/smartchain/assets/0x389c13d5be24bED2af35C30F211E042225CB06fF/info.json new file mode 100644 index 00000000..3fd7bd0c --- /dev/null +++ b/blockchains/smartchain/assets/0x389c13d5be24bED2af35C30F211E042225CB06fF/info.json @@ -0,0 +1,41 @@ +{ + "name": "SHIBORG INU", + "website": "https://shiborgtoken.com/", + "description": "A CYBORG SHIBA INU DOG FROM PLANET SHIBAMOON X1000. A DECENTRALIZED MEME TOKEN", + "explorer": "https://bscscan.com/token/0x389c13d5be24bed2af35c30f211e042225cb06ff", + "type": "BEP20", + "symbol": "SHIBORG", + "decimals": 8, + "status": "active", + "id": "0x389c13d5be24bED2af35C30F211E042225CB06fF", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ShiborgInu" + }, + { + "name": "x", + "url": "https://x.com/ShiborgToken" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ShiborgToken/" + }, + { + "name": "facebook", + "url": "https://facebook.com/ShiborgToken" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC5LQLfoSg8UVeV21SfC5XDA" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiborg-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shiborg-inu" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x389c13d5be24bED2af35C30F211E042225CB06fF/logo.png b/blockchains/smartchain/assets/0x389c13d5be24bED2af35C30F211E042225CB06fF/logo.png new file mode 100644 index 00000000..4872557a Binary files /dev/null and b/blockchains/smartchain/assets/0x389c13d5be24bED2af35C30F211E042225CB06fF/logo.png differ diff --git a/blockchains/smartchain/assets/0x38B9A53bfDc5dba58a29bD6992341927C2fca637/info.json b/blockchains/smartchain/assets/0x38B9A53bfDc5dba58a29bD6992341927C2fca637/info.json new file mode 100644 index 00000000..5e798de6 --- /dev/null +++ b/blockchains/smartchain/assets/0x38B9A53bfDc5dba58a29bD6992341927C2fca637/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares MSCI EAFE ETF (Ondo Tokenized)", + "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 00000000..8adf5788 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 00000000..914ebfcd --- /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 00000000..e437be04 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 00000000..9b8fcc09 --- /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 00000000..1407faec 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 00000000..05b30dd4 --- /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 00000000..c34f31c6 Binary files /dev/null and b/blockchains/smartchain/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png differ diff --git a/blockchains/smartchain/assets/0x38b4119845b5A60D48178a17C9215162E84856ed/info.json b/blockchains/smartchain/assets/0x38b4119845b5A60D48178a17C9215162E84856ed/info.json new file mode 100644 index 00000000..068705e7 --- /dev/null +++ b/blockchains/smartchain/assets/0x38b4119845b5A60D48178a17C9215162E84856ed/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEG Wrapped BUSD", + "website": "https://fegtoken.com", + "description": "FEG Wrapped BUSD", + "explorer": "https://bscscan.com/token/0x38b4119845b5a60d48178a17c9215162e84856ed", + "type": "BEP20", + "symbol": "fBUSD", + "decimals": 18, + "status": "active", + "id": "0x38b4119845b5A60D48178a17C9215162E84856ed" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x38b4119845b5A60D48178a17C9215162E84856ed/logo.png b/blockchains/smartchain/assets/0x38b4119845b5A60D48178a17C9215162E84856ed/logo.png new file mode 100644 index 00000000..aa51de26 Binary files /dev/null and b/blockchains/smartchain/assets/0x38b4119845b5A60D48178a17C9215162E84856ed/logo.png differ diff --git a/blockchains/smartchain/assets/0x390037d710C86F88F05174599425B77c72Eda305/info.json b/blockchains/smartchain/assets/0x390037d710C86F88F05174599425B77c72Eda305/info.json new file mode 100644 index 00000000..c6fc036e --- /dev/null +++ b/blockchains/smartchain/assets/0x390037d710C86F88F05174599425B77c72Eda305/info.json @@ -0,0 +1,14 @@ +{ + "name": "MoonTrust", + "website": "https://moontrust.net", + "description": "MoonTrust is a DeFi token built on BSC (binance). It is a community driven coin, with multiple features aimed for steady growth and to decrease the impact of major sell offs.", + "explorer": "https://bscscan.com/token/0x390037d710c86f88f05174599425b77c72eda305", + "symbol": "MNTT", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x390037d710C86F88F05174599425B77c72Eda305", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x390037d710C86F88F05174599425B77c72Eda305/logo.png b/blockchains/smartchain/assets/0x390037d710C86F88F05174599425B77c72Eda305/logo.png new file mode 100644 index 00000000..7b006722 Binary files /dev/null and b/blockchains/smartchain/assets/0x390037d710C86F88F05174599425B77c72Eda305/logo.png differ diff --git a/blockchains/smartchain/assets/0x390a684EF9cADE28A7AD0DFa61AB1Eb3842618c4/info.json b/blockchains/smartchain/assets/0x390a684EF9cADE28A7AD0DFa61AB1Eb3842618c4/info.json new file mode 100644 index 00000000..f7a93f1e --- /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 00000000..def40b98 Binary files /dev/null and b/blockchains/smartchain/assets/0x390a684EF9cADE28A7AD0DFa61AB1Eb3842618c4/logo.png differ diff --git a/blockchains/smartchain/assets/0x3910db0600eA925F63C36DdB1351aB6E2c6eb102/info.json b/blockchains/smartchain/assets/0x3910db0600eA925F63C36DdB1351aB6E2c6eb102/info.json new file mode 100644 index 00000000..ce18f37d --- /dev/null +++ b/blockchains/smartchain/assets/0x3910db0600eA925F63C36DdB1351aB6E2c6eb102/info.json @@ -0,0 +1,11 @@ +{ + "name": "Spartan Protocol Token V2", + "website": "https://spartanprotocol.org", + "description": "A protocol for incentivised liquidity and synthetic assets on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x3910db0600ea925f63c36ddb1351ab6e2c6eb102", + "type": "BEP20", + "symbol": "SPARTA", + "decimals": 18, + "status": "active", + "id": "0x3910db0600eA925F63C36DdB1351aB6E2c6eb102" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3910db0600eA925F63C36DdB1351aB6E2c6eb102/logo.png b/blockchains/smartchain/assets/0x3910db0600eA925F63C36DdB1351aB6E2c6eb102/logo.png new file mode 100644 index 00000000..6c5afef5 Binary files /dev/null and b/blockchains/smartchain/assets/0x3910db0600eA925F63C36DdB1351aB6E2c6eb102/logo.png differ diff --git a/blockchains/smartchain/assets/0x3916984fa787d89B648Ccd8d60B5ff07E0E8e4F4/info.json b/blockchains/smartchain/assets/0x3916984fa787d89B648Ccd8d60B5ff07E0E8e4F4/info.json new file mode 100644 index 00000000..599b90c4 --- /dev/null +++ b/blockchains/smartchain/assets/0x3916984fa787d89B648Ccd8d60B5ff07E0E8e4F4/info.json @@ -0,0 +1,11 @@ +{ + "name": "PUBE Finance", + "website": "https://pube.finance", + "description": "PUBE is a community run project focused on helping the homeless and various cancer organizations.", + "explorer": "https://bscscan.com/token/0x3916984fa787d89B648Ccd8d60B5ff07E0E8e4F4", + "type": "BEP20", + "symbol": "PUBE", + "decimals": 9, + "status": "active", + "id": "0x3916984fa787d89B648Ccd8d60B5ff07E0E8e4F4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3916984fa787d89B648Ccd8d60B5ff07E0E8e4F4/logo.png b/blockchains/smartchain/assets/0x3916984fa787d89B648Ccd8d60B5ff07E0E8e4F4/logo.png new file mode 100644 index 00000000..7a782cb1 Binary files /dev/null and b/blockchains/smartchain/assets/0x3916984fa787d89B648Ccd8d60B5ff07E0E8e4F4/logo.png differ diff --git a/blockchains/smartchain/assets/0x3917d6BdFFe43105A74E6F9c09B5206f0f3F5FC0/info.json b/blockchains/smartchain/assets/0x3917d6BdFFe43105A74E6F9c09B5206f0f3F5FC0/info.json new file mode 100644 index 00000000..f98a9e2a --- /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 00000000..8dd91e56 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 00000000..30f1a777 --- /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 00000000..b17bf63f Binary files /dev/null and b/blockchains/smartchain/assets/0x392004BEe213F1FF580C867359C246924f21E6Ad/logo.png differ diff --git a/blockchains/smartchain/assets/0x3920123482070C1a2dff73AaD695c60e7c6F6862/info.json b/blockchains/smartchain/assets/0x3920123482070C1a2dff73AaD695c60e7c6F6862/info.json new file mode 100644 index 00000000..d1443cf4 --- /dev/null +++ b/blockchains/smartchain/assets/0x3920123482070C1a2dff73AaD695c60e7c6F6862/info.json @@ -0,0 +1,11 @@ +{ + "name": "Euler", + "type": "BEP20", + "symbol": "EULER", + "decimals": 18, + "website": "https://euler.tools", + "description": "Eulers can be used both as utility and investment. We created a subscription system that unlocks professional features in our site and a reliable Mining Pool mechanism, that allows holders to receive rewards from each transaction.", + "explorer": "https://bscscan.com/token/0x3920123482070C1a2dff73AaD695c60e7c6F6862", + "status": "active", + "id": "0x3920123482070C1a2dff73AaD695c60e7c6F6862" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3920123482070C1a2dff73AaD695c60e7c6F6862/logo.png b/blockchains/smartchain/assets/0x3920123482070C1a2dff73AaD695c60e7c6F6862/logo.png new file mode 100644 index 00000000..72aff064 Binary files /dev/null and b/blockchains/smartchain/assets/0x3920123482070C1a2dff73AaD695c60e7c6F6862/logo.png differ diff --git a/blockchains/smartchain/assets/0x393B312C01048b3ed2720bF1B090084C09e408A1/info.json b/blockchains/smartchain/assets/0x393B312C01048b3ed2720bF1B090084C09e408A1/info.json new file mode 100644 index 00000000..65eab873 --- /dev/null +++ b/blockchains/smartchain/assets/0x393B312C01048b3ed2720bF1B090084C09e408A1/info.json @@ -0,0 +1,11 @@ +{ + "name": "fry.world", + "website": "https://fry.world/", + "description": "Fry.world is a yield optimization project with unique baskets(vaults) where $FRIES holders will share in all profits accrued on the platform. $FRIES token holders will also the ability to earn Ketchup ($KHP) as the governance token of the platform. The $FRIES token is currently being distributed via farming pools on fry.world", + "explorer": "https://bscscan.com/token/0x393B312C01048b3ed2720bF1B090084C09e408A1", + "type": "BEP20", + "symbol": "FRIES", + "decimals": 18, + "status": "active", + "id": "0x393B312C01048b3ed2720bF1B090084C09e408A1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x393B312C01048b3ed2720bF1B090084C09e408A1/logo.png b/blockchains/smartchain/assets/0x393B312C01048b3ed2720bF1B090084C09e408A1/logo.png new file mode 100644 index 00000000..3aebaebb Binary files /dev/null and b/blockchains/smartchain/assets/0x393B312C01048b3ed2720bF1B090084C09e408A1/logo.png differ diff --git a/blockchains/smartchain/assets/0x3942347bf4216b0caAB7D190f7504aeEb7dE8888/info.json b/blockchains/smartchain/assets/0x3942347bf4216b0caAB7D190f7504aeEb7dE8888/info.json new file mode 100644 index 00000000..c4a7ed86 --- /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 new file mode 100644 index 00000000..95bddf4e --- /dev/null +++ b/blockchains/smartchain/assets/0x3942936782d788ce69155F776A51A5F1C9dd9B22/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream Chainlink Token", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x3942936782d788ce69155F776A51A5F1C9dd9B22", + "type": "BEP20", + "symbol": "crLINK", + "decimals": 8, + "status": "active", + "id": "0x3942936782d788ce69155F776A51A5F1C9dd9B22", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3942936782d788ce69155F776A51A5F1C9dd9B22/logo.png b/blockchains/smartchain/assets/0x3942936782d788ce69155F776A51A5F1C9dd9B22/logo.png new file mode 100644 index 00000000..50646a58 Binary files /dev/null and b/blockchains/smartchain/assets/0x3942936782d788ce69155F776A51A5F1C9dd9B22/logo.png differ diff --git a/blockchains/smartchain/assets/0x3947B992DC0147D2D89dF0392213781b04B25075/info.json b/blockchains/smartchain/assets/0x3947B992DC0147D2D89dF0392213781b04B25075/info.json new file mode 100644 index 00000000..eafbd53f --- /dev/null +++ b/blockchains/smartchain/assets/0x3947B992DC0147D2D89dF0392213781b04B25075/info.json @@ -0,0 +1,12 @@ +{ + "name": "Wrapped Mirror AMZN Token", + "website": "https://mirror.finance", + "description": "Mirror Protocol allows the creation of fungible assets, “synthetics”, that track the price of real-world assets.", + "explorer": "https://bscscan.com/token/0x3947B992DC0147D2D89dF0392213781b04B25075", + "research": "", + "type": "BEP20", + "symbol": "mAMZN", + "decimals": 18, + "status": "active", + "id": "0x3947B992DC0147D2D89dF0392213781b04B25075" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3947B992DC0147D2D89dF0392213781b04B25075/logo.png b/blockchains/smartchain/assets/0x3947B992DC0147D2D89dF0392213781b04B25075/logo.png new file mode 100644 index 00000000..84e27e71 Binary files /dev/null and b/blockchains/smartchain/assets/0x3947B992DC0147D2D89dF0392213781b04B25075/logo.png differ diff --git a/blockchains/smartchain/assets/0x39647d0D700Ef077c6D90De963cF6989Ef38E341/info.json b/blockchains/smartchain/assets/0x39647d0D700Ef077c6D90De963cF6989Ef38E341/info.json new file mode 100644 index 00000000..35ac717e --- /dev/null +++ b/blockchains/smartchain/assets/0x39647d0D700Ef077c6D90De963cF6989Ef38E341/info.json @@ -0,0 +1,37 @@ +{ + "name": "TianYu Coin", + "type": "BEP20", + "symbol": "TYC", + "decimals": 18, + "website": "https://www.tianyu.network/home/", + "description": "Tianyu Loop is a decentralized crypto-asset trading and management platform that integrates Loop, a group of like-minds and Swap, decentralized trading, enabling share of trust and benefits on the basis of transfer in/between individualized crypto-asset. Tianyu Loop features a rich array of financial derivatives including liquidity mining, banking and crypto-asset hedging.", + "explorer": "https://bscscan.com/token/0x39647d0D700Ef077c6D90De963cF6989Ef38E341", + "status": "active", + "id": "0x39647d0D700Ef077c6D90De963cF6989Ef38E341", + "links": [ + { + "name": "x", + "url": "https://x.com/Tianyu_Finance" + }, + { + "name": "whitepaper", + "url": "https://www.tianyu.network/home/assets/images/TIANYU%20LOOP%20V1.3.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tianyu-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tianyu-finance" + }, + { + "name": "telegram", + "url": "https://t.me/Tianyu_Finance" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x39647d0d700ef077c6d90de963cf6989ef38e341" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x39647d0D700Ef077c6D90De963cF6989Ef38E341/logo.png b/blockchains/smartchain/assets/0x39647d0D700Ef077c6D90De963cF6989Ef38E341/logo.png new file mode 100644 index 00000000..4da8d1be Binary files /dev/null and b/blockchains/smartchain/assets/0x39647d0D700Ef077c6D90De963cF6989Ef38E341/logo.png differ diff --git a/blockchains/smartchain/assets/0x397E6d4fd68A9E25e93fC712B8F72F826f48a8ff/info.json b/blockchains/smartchain/assets/0x397E6d4fd68A9E25e93fC712B8F72F826f48a8ff/info.json new file mode 100644 index 00000000..2675ac7e --- /dev/null +++ b/blockchains/smartchain/assets/0x397E6d4fd68A9E25e93fC712B8F72F826f48a8ff/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dingo Token", + "type": "BEP20", + "symbol": "DINGO", + "decimals": 9, + "website": "https://dingotoken.com/", + "description": "DINGO platform allows users to easily deposit BEP20 tokens into an NFT. Dingo Token is the governance token of the platform.", + "explorer": "https://bscscan.com/token/0x397E6d4fd68A9E25e93fC712B8F72F826f48a8ff", + "status": "active", + "id": "0x397E6d4fd68A9E25e93fC712B8F72F826f48a8ff" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x397E6d4fd68A9E25e93fC712B8F72F826f48a8ff/logo.png b/blockchains/smartchain/assets/0x397E6d4fd68A9E25e93fC712B8F72F826f48a8ff/logo.png new file mode 100644 index 00000000..d8e537b1 Binary files /dev/null and b/blockchains/smartchain/assets/0x397E6d4fd68A9E25e93fC712B8F72F826f48a8ff/logo.png differ diff --git a/blockchains/smartchain/assets/0x397a439E0d8fE38Ed3fBf968Ec162751ba100a5F/info.json b/blockchains/smartchain/assets/0x397a439E0d8fE38Ed3fBf968Ec162751ba100a5F/info.json new file mode 100644 index 00000000..11d98b39 --- /dev/null +++ b/blockchains/smartchain/assets/0x397a439E0d8fE38Ed3fBf968Ec162751ba100a5F/info.json @@ -0,0 +1,11 @@ +{ + "name": "YOSHI INU", + "type": "BEP20", + "symbol": "YOSHI", + "decimals": 18, + "website": "https://www.yoshi.win", + "description": "YOSHI is an experiment in decentralized spontaneous community building.", + "explorer": "https://bscscan.com/token/0x397a439e0d8fe38ed3fbf968ec162751ba100a5f", + "status": "active", + "id": "0x397a439E0d8fE38Ed3fBf968Ec162751ba100a5F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x397a439E0d8fE38Ed3fBf968Ec162751ba100a5F/logo.png b/blockchains/smartchain/assets/0x397a439E0d8fE38Ed3fBf968Ec162751ba100a5F/logo.png new file mode 100644 index 00000000..7874cb38 Binary files /dev/null and b/blockchains/smartchain/assets/0x397a439E0d8fE38Ed3fBf968Ec162751ba100a5F/logo.png differ diff --git a/blockchains/smartchain/assets/0x398f7827DcCbeFe6990478876bBF3612D93baF05/info.json b/blockchains/smartchain/assets/0x398f7827DcCbeFe6990478876bBF3612D93baF05/info.json new file mode 100644 index 00000000..22ac6a31 --- /dev/null +++ b/blockchains/smartchain/assets/0x398f7827DcCbeFe6990478876bBF3612D93baF05/info.json @@ -0,0 +1,25 @@ +{ + "name": "MixMarvel Token", + "website": "https://www.mixmarvel.com/", + "description": "MIX is a platform token, representing the platform's growth of value. The total amount of MIX is constant at 10 billion and will never be over-issued. A substantial amount of MIX is generated through community PoA (Proof of Action). The actions that are counted as ecosystem-friendly, such as marketing, contributing applications, creating content, providing services, are rewarded with MIX.", + "explorer": "https://bscscan.com/token/0x398f7827DcCbeFe6990478876bBF3612D93baF05", + "type": "BEP20", + "symbol": "MIX", + "decimals": 18, + "status": "active", + "id": "0x398f7827DcCbeFe6990478876bBF3612D93baF05", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/mixmarvelplatform" + }, + { + "name": "x", + "url": "https://x.com/MIXMARVELGAME" + }, + { + "name": "medium", + "url": "https://medium.com/mixmarvel-official-blog" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x398f7827DcCbeFe6990478876bBF3612D93baF05/logo.png b/blockchains/smartchain/assets/0x398f7827DcCbeFe6990478876bBF3612D93baF05/logo.png new file mode 100644 index 00000000..83c69b7b Binary files /dev/null and b/blockchains/smartchain/assets/0x398f7827DcCbeFe6990478876bBF3612D93baF05/logo.png differ diff --git a/blockchains/smartchain/assets/0x39C3F75B837EAE0d6d0eA87425Ac99bD646a7B1E/info.json b/blockchains/smartchain/assets/0x39C3F75B837EAE0d6d0eA87425Ac99bD646a7B1E/info.json new file mode 100644 index 00000000..e28eec84 --- /dev/null +++ b/blockchains/smartchain/assets/0x39C3F75B837EAE0d6d0eA87425Ac99bD646a7B1E/info.json @@ -0,0 +1,32 @@ +{ + "name": "CatBoy", + "type": "BEP20", + "symbol": "CATBOY", + "decimals": 18, + "website": "https://catboytoken.com", + "description": "Catboy is a community led NFT project, founded and built, by comic, manga, anime, and pet lovers. This token is a symbol of the spirit, cohesion, and sharing of memes, manga and comic loving communities around the world. Besides building a strong community. Catboy cares about the real value that the project brings. Bringing Catboy merchandise, a Catboy NFT marketplace, and building a worldwide network of users to donate to feral cats and support struggling cat owners. Catboy has three different NFT editions which are available on CatBoys own dapp.", + "explorer": "https://bscscan.com/token/0x39C3F75B837EAE0d6d0eA87425Ac99bD646a7B1E", + "status": "active", + "id": "0x39C3F75B837EAE0d6d0eA87425Ac99bD646a7B1E", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/catboy-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/munze/catboy" + }, + { + "name": "telegram", + "url": "https://t.me/catboybscofficial" + }, + { + "name": "x", + "url": "https://x.com/BSCCatBoy" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x39C3F75B837EAE0d6d0eA87425Ac99bD646a7B1E/logo.png b/blockchains/smartchain/assets/0x39C3F75B837EAE0d6d0eA87425Ac99bD646a7B1E/logo.png new file mode 100644 index 00000000..dcd95f73 Binary files /dev/null and b/blockchains/smartchain/assets/0x39C3F75B837EAE0d6d0eA87425Ac99bD646a7B1E/logo.png differ diff --git a/blockchains/smartchain/assets/0x39bca4d597062378b5669CD31a3bBFECCDd36B3c/info.json b/blockchains/smartchain/assets/0x39bca4d597062378b5669CD31a3bBFECCDd36B3c/info.json new file mode 100644 index 00000000..2c702649 --- /dev/null +++ b/blockchains/smartchain/assets/0x39bca4d597062378b5669CD31a3bBFECCDd36B3c/info.json @@ -0,0 +1,33 @@ +{ + "name": "LESLARVERSE", + "website": "https://www.leslarmetaverse.com", + "description": "LESLAR Metaverse aims to empower people to the future and create an ecosystem for people to connect, trade, learn, and play the immersive world of Web 3.0 with rewards.", + "explorer": "https://bscscan.com/token/0x39bca4d597062378b5669cd31a3bbfeccdd36b3c", + "type": "BEP20", + "symbol": "LLVERSE", + "decimals": 9, + "status": "active", + "id": "0x39bca4d597062378b5669CD31a3bBFECCDd36B3c", + "links": [ + { + "name": "github", + "url": "https://github.com/leslarmetaverse" + }, + { + "name": "x", + "url": "https://x.com/leslarmetaverse" + }, + { + "name": "telegram", + "url": "https://t.me/leslarmetaverse_global" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/leslarverse/" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x39bca4d597062378b5669CD31a3bBFECCDd36B3c/logo.png b/blockchains/smartchain/assets/0x39bca4d597062378b5669CD31a3bBFECCDd36B3c/logo.png new file mode 100644 index 00000000..b91aa2cb Binary files /dev/null and b/blockchains/smartchain/assets/0x39bca4d597062378b5669CD31a3bBFECCDd36B3c/logo.png differ diff --git a/blockchains/smartchain/assets/0x39c31fC6038490eA4Bf8A21Ca18CD18F33B8d3FB/info.json b/blockchains/smartchain/assets/0x39c31fC6038490eA4Bf8A21Ca18CD18F33B8d3FB/info.json new file mode 100644 index 00000000..dfc4bbf6 --- /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 00000000..e228c40b Binary files /dev/null and b/blockchains/smartchain/assets/0x39c31fC6038490eA4Bf8A21Ca18CD18F33B8d3FB/logo.png differ diff --git a/blockchains/smartchain/assets/0x39cab1DdaFDa34B9202F5a41f71B15d2F3EbA2aC/info.json b/blockchains/smartchain/assets/0x39cab1DdaFDa34B9202F5a41f71B15d2F3EbA2aC/info.json new file mode 100644 index 00000000..29b11c01 --- /dev/null +++ b/blockchains/smartchain/assets/0x39cab1DdaFDa34B9202F5a41f71B15d2F3EbA2aC/info.json @@ -0,0 +1,11 @@ +{ + "name": "OctaX", + "website": "https://octax.finance", + "description": "OctaX is a group of smart contracts that works with leading DeFi projects for ensuring its users the most reliable and highly profitable level of liquidity mining at minimal fees. built on top of the Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x39cab1DdaFDa34B9202F5a41f71B15d2F3EbA2aC", + "type": "BEP20", + "symbol": "OCTAX", + "decimals": 18, + "status": "active", + "id": "0x39cab1DdaFDa34B9202F5a41f71B15d2F3EbA2aC" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x39cab1DdaFDa34B9202F5a41f71B15d2F3EbA2aC/logo.png b/blockchains/smartchain/assets/0x39cab1DdaFDa34B9202F5a41f71B15d2F3EbA2aC/logo.png new file mode 100644 index 00000000..cdb364e1 Binary files /dev/null and b/blockchains/smartchain/assets/0x39cab1DdaFDa34B9202F5a41f71B15d2F3EbA2aC/logo.png differ diff --git a/blockchains/smartchain/assets/0x39f0D3Cf3af17c685755314839f2d57E346681C9/info.json b/blockchains/smartchain/assets/0x39f0D3Cf3af17c685755314839f2d57E346681C9/info.json new file mode 100644 index 00000000..7c7220a4 --- /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 00000000..2b16cf09 Binary files /dev/null and b/blockchains/smartchain/assets/0x39f0D3Cf3af17c685755314839f2d57E346681C9/logo.png differ diff --git a/blockchains/smartchain/assets/0x3A50d6daacc82f17A2434184fE904fC45542A734/info.json b/blockchains/smartchain/assets/0x3A50d6daacc82f17A2434184fE904fC45542A734/info.json new file mode 100644 index 00000000..6774124c --- /dev/null +++ b/blockchains/smartchain/assets/0x3A50d6daacc82f17A2434184fE904fC45542A734/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fusible", + "website": "https://fusible.io", + "description": "A curve based price discovery protocol for NFTs", + "explorer": "https://bscscan.com/token/0x3A50d6daacc82f17A2434184fE904fC45542A734", + "type": "BEP20", + "symbol": "FUSII", + "decimals": 18, + "status": "active", + "id": "0x3A50d6daacc82f17A2434184fE904fC45542A734" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3A50d6daacc82f17A2434184fE904fC45542A734/logo.png b/blockchains/smartchain/assets/0x3A50d6daacc82f17A2434184fE904fC45542A734/logo.png new file mode 100644 index 00000000..3c0cc2d5 Binary files /dev/null and b/blockchains/smartchain/assets/0x3A50d6daacc82f17A2434184fE904fC45542A734/logo.png differ diff --git a/blockchains/smartchain/assets/0x3A66D3d2EDB25182430d01b991BC6eaC73aD5AA8/info.json b/blockchains/smartchain/assets/0x3A66D3d2EDB25182430d01b991BC6eaC73aD5AA8/info.json new file mode 100644 index 00000000..1a80cfed --- /dev/null +++ b/blockchains/smartchain/assets/0x3A66D3d2EDB25182430d01b991BC6eaC73aD5AA8/info.json @@ -0,0 +1,21 @@ +{ + "name": "SFMONEY", + "website": "https://sfmoney.info/", + "description": "SFMONEY stands firmly in support of financial freedom and the liberty that SFMONEY provides globally for anyone to voluntarily participate in a permissionless and decentralized network.", + "explorer": "https://bscscan.com/token/0x3A66D3d2EDB25182430d01b991BC6eaC73aD5AA8", + "type": "BEP20", + "symbol": "SFM", + "decimals": 18, + "status": "active", + "id": "0x3A66D3d2EDB25182430d01b991BC6eaC73aD5AA8", + "links": [ + { + "name": "x", + "url": "https://x.com/SFMONEY_SFM" + }, + { + "name": "telegram", + "url": "https://t.me/sfmoney_Announcement" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3A66D3d2EDB25182430d01b991BC6eaC73aD5AA8/logo.png b/blockchains/smartchain/assets/0x3A66D3d2EDB25182430d01b991BC6eaC73aD5AA8/logo.png new file mode 100644 index 00000000..1b546a59 Binary files /dev/null and b/blockchains/smartchain/assets/0x3A66D3d2EDB25182430d01b991BC6eaC73aD5AA8/logo.png differ diff --git a/blockchains/smartchain/assets/0x3A677D21CF54d1EEcad15aAD77eaF19B72284444/info.json b/blockchains/smartchain/assets/0x3A677D21CF54d1EEcad15aAD77eaF19B72284444/info.json new file mode 100644 index 00000000..4731303d --- /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 new file mode 100644 index 00000000..cf09cd52 --- /dev/null +++ b/blockchains/smartchain/assets/0x3A806A3315E35b3F5F46111ADb6E2BAF4B14A70D/info.json @@ -0,0 +1,48 @@ +{ + "name": "Libera Financial", + "website": "https://libera.financial/", + "description": "LIBERA FINANCIAL is a Triple passive income & Hyper Deflationary token that is listed on CEXes.", + "explorer": "https://bscscan.com/token/0x3A806A3315E35b3F5F46111ADb6E2BAF4B14A70D", + "type": "BEP20", + "symbol": "LIBERA", + "decimals": 18, + "status": "active", + "id": "0x3A806A3315E35b3F5F46111ADb6E2BAF4B14A70D", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/LiberaFinancial" + }, + { + "name": "telegram", + "url": "https://t.me/liberoofficialgroup" + }, + { + "name": "docs", + "url": "https://docs.libero.financial/" + }, + { + "name": "medium", + "url": "https://liberofinancial.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/LiberoFinancial" + }, + { + "name": "github", + "url": "https://github.com/liberafinancial/Libera" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/libera-financial/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/libera-financial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3A806A3315E35b3F5F46111ADb6E2BAF4B14A70D/logo.png b/blockchains/smartchain/assets/0x3A806A3315E35b3F5F46111ADb6E2BAF4B14A70D/logo.png new file mode 100644 index 00000000..7e969639 Binary files /dev/null and b/blockchains/smartchain/assets/0x3A806A3315E35b3F5F46111ADb6E2BAF4B14A70D/logo.png differ diff --git a/blockchains/smartchain/assets/0x3AD405ef7AeA80CCb41beEf0a74510e18Feef190/info.json b/blockchains/smartchain/assets/0x3AD405ef7AeA80CCb41beEf0a74510e18Feef190/info.json new file mode 100644 index 00000000..f05dde2a --- /dev/null +++ b/blockchains/smartchain/assets/0x3AD405ef7AeA80CCb41beEf0a74510e18Feef190/info.json @@ -0,0 +1,29 @@ +{ + "name": "SADBABY", + "type": "BEP20", + "symbol": "SDBY", + "decimals": 9, + "website": "https://sadbaby.org", + "description": "SadBaby TOKEN is a crypto money project created to breathe for all sma patients. It aims to help all babies with sma.", + "explorer": "https://bscscan.com/token/0x3AD405ef7AeA80CCb41beEf0a74510e18Feef190", + "status": "active", + "id": "0x3AD405ef7AeA80CCb41beEf0a74510e18Feef190", + "links": [ + { + "name": "whitepaper", + "url": "https://sadbaby.org/sadbaby-whitepaper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/SadbabyToken-104142708605129/" + }, + { + "name": "x", + "url": "https://x.com/sadbabyglobal" + }, + { + "name": "telegram", + "url": "https://t.me/sadbabyglobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3AD405ef7AeA80CCb41beEf0a74510e18Feef190/logo.png b/blockchains/smartchain/assets/0x3AD405ef7AeA80CCb41beEf0a74510e18Feef190/logo.png new file mode 100644 index 00000000..7e957e2a Binary files /dev/null and b/blockchains/smartchain/assets/0x3AD405ef7AeA80CCb41beEf0a74510e18Feef190/logo.png differ diff --git a/blockchains/smartchain/assets/0x3AaA4B954C17Da357EDB9E18fD3EaE8293ef4200/info.json b/blockchains/smartchain/assets/0x3AaA4B954C17Da357EDB9E18fD3EaE8293ef4200/info.json new file mode 100644 index 00000000..b557deaf --- /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 00000000..caeb0a82 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 new file mode 100644 index 00000000..fafa63bd --- /dev/null +++ b/blockchains/smartchain/assets/0x3AbfC084a54E5f4e23196e1B9a9c48c3B3021519/info.json @@ -0,0 +1,29 @@ +{ + "name": "Planet", + "website": "https://xpace.finance/", + "description": "A protocol built on Binance Smart Chain to boost rewards on liquidity mining on lower gas costs and utilizing incentivisation strategies, Supercharged NFT collectibles and community governance models.", + "explorer": "https://bscscan.com/token/0x3abfc084a54e5f4e23196e1b9a9c48c3b3021519", + "type": "BEP20", + "symbol": "PLNT", + "decimals": 18, + "status": "active", + "id": "0x3AbfC084a54E5f4e23196e1B9a9c48c3B3021519", + "links": [ + { + "name": "x", + "url": "https://x.com/xpacefinance" + }, + { + "name": "telegram", + "url": "https://t.me/xpacefinance" + }, + { + "name": "medium", + "url": "https://xpacefinance.medium.com/" + }, + { + "name": "whitepaper", + "url": "https://docdro.id/LWOMgmY" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3AbfC084a54E5f4e23196e1B9a9c48c3B3021519/logo.png b/blockchains/smartchain/assets/0x3AbfC084a54E5f4e23196e1B9a9c48c3B3021519/logo.png new file mode 100644 index 00000000..1cbda5dd Binary files /dev/null and b/blockchains/smartchain/assets/0x3AbfC084a54E5f4e23196e1B9a9c48c3B3021519/logo.png differ diff --git a/blockchains/smartchain/assets/0x3AefF4E27E1F9144eD75Ba65a80BdfEE345F413e/info.json b/blockchains/smartchain/assets/0x3AefF4E27E1F9144eD75Ba65a80BdfEE345F413e/info.json new file mode 100644 index 00000000..a6e110d9 --- /dev/null +++ b/blockchains/smartchain/assets/0x3AefF4E27E1F9144eD75Ba65a80BdfEE345F413e/info.json @@ -0,0 +1,65 @@ +{ + "name": "BUMooN", + "website": "https://bumoon.io", + "description": "BUMooN is a Eco-Living Token that aims to be dividend tools between its green project closed-loop revenue and user.", + "explorer": "https://bscscan.com/token/0x3AefF4E27E1F9144eD75Ba65a80BdfEE345F413e", + "type": "BEP20", + "symbol": "BUMN", + "decimals": 9, + "status": "active", + "id": "0x3AefF4E27E1F9144eD75Ba65a80BdfEE345F413e", + "links": [ + { + "name": "x", + "url": "https://x.com/Bumoon_io" + }, + { + "name": "github", + "url": "https://github.com/bumoonio" + }, + { + "name": "telegram", + "url": "https://t.me/bumoonenglish" + }, + { + "name": "discord", + "url": "https://discord.com/invite/xFMZ9dxqVB" + }, + { + "name": "medium", + "url": "https://bumoon.medium.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/bumoonio" + }, + { + "name": "facebook", + "url": "https://facebook.com/BUMooNio-102624585390653" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/BUMooNOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bumoon//" + }, + { + "name": "docs", + "url": "https://docs.bumoon.io" + }, + { + "name": "whitepaper", + "url": "https://bumoon.io/BUMooN%20Whitepaper.pdf" + }, + { + "name": "telegram_news", + "url": "https://t.me/bumoonannouncement" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bumoon" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3AefF4E27E1F9144eD75Ba65a80BdfEE345F413e/logo.png b/blockchains/smartchain/assets/0x3AefF4E27E1F9144eD75Ba65a80BdfEE345F413e/logo.png new file mode 100644 index 00000000..5002a23a Binary files /dev/null and b/blockchains/smartchain/assets/0x3AefF4E27E1F9144eD75Ba65a80BdfEE345F413e/logo.png differ diff --git a/blockchains/smartchain/assets/0x3B0Be453a4008EBc2eDd457e7Bd355f1C5469d68/info.json b/blockchains/smartchain/assets/0x3B0Be453a4008EBc2eDd457e7Bd355f1C5469d68/info.json new file mode 100644 index 00000000..8724f713 --- /dev/null +++ b/blockchains/smartchain/assets/0x3B0Be453a4008EBc2eDd457e7Bd355f1C5469d68/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream Uniswap", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x3B0Be453a4008EBc2eDd457e7Bd355f1C5469d68", + "type": "BEP20", + "symbol": "crUNI", + "decimals": 8, + "status": "active", + "id": "0x3B0Be453a4008EBc2eDd457e7Bd355f1C5469d68", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3B0Be453a4008EBc2eDd457e7Bd355f1C5469d68/logo.png b/blockchains/smartchain/assets/0x3B0Be453a4008EBc2eDd457e7Bd355f1C5469d68/logo.png new file mode 100644 index 00000000..9040c947 Binary files /dev/null and b/blockchains/smartchain/assets/0x3B0Be453a4008EBc2eDd457e7Bd355f1C5469d68/logo.png differ diff --git a/blockchains/smartchain/assets/0x3B3691d4C3EC75660f203F41adC6296a494404d0/info.json b/blockchains/smartchain/assets/0x3B3691d4C3EC75660f203F41adC6296a494404d0/info.json new file mode 100644 index 00000000..13ceb245 --- /dev/null +++ b/blockchains/smartchain/assets/0x3B3691d4C3EC75660f203F41adC6296a494404d0/info.json @@ -0,0 +1,32 @@ +{ + "name": "Catcoin Token", + "type": "BEP20", + "symbol": "CATS", + "decimals": 0, + "website": "https://www.catcoincrypto.me/", + "description": "Catcoin is the community driven project to connect cat lovers worldwide", + "explorer": "https://bscscan.com/token/0x3B3691d4C3EC75660f203F41adC6296a494404d0", + "status": "abandoned", + "id": "0x3B3691d4C3EC75660f203F41adC6296a494404d0", + "links": [ + { + "name": "x", + "url": "https://x.com/catcoinbsc" + }, + { + "name": "telegram", + "url": "https://t.me/catcoin_bsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/catcoin-token/" + }, + { + "name": "source_code", + "url": "https://github.com/catcointoken-cats/" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3B4443F97B37A6Ef864c3f0f1632E366B4f1d20f/info.json b/blockchains/smartchain/assets/0x3B4443F97B37A6Ef864c3f0f1632E366B4f1d20f/info.json new file mode 100644 index 00000000..48789d1a --- /dev/null +++ b/blockchains/smartchain/assets/0x3B4443F97B37A6Ef864c3f0f1632E366B4f1d20f/info.json @@ -0,0 +1,11 @@ +{ + "name": "RichieRich Coin", + "type": "BEP20", + "symbol": "RICH", + "decimals": 9, + "website": "https://www.richierichcoin.com", + "description": "$RICH is revolutionizing the Defi Token industry with a proprietary Luxury Tax model designed to reward holders by generating exponential growth through the highest static reward system on the market.", + "explorer": "https://bscscan.com/token/0x3B4443F97B37A6Ef864c3f0f1632E366B4f1d20f", + "status": "active", + "id": "0x3B4443F97B37A6Ef864c3f0f1632E366B4f1d20f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3B4443F97B37A6Ef864c3f0f1632E366B4f1d20f/logo.png b/blockchains/smartchain/assets/0x3B4443F97B37A6Ef864c3f0f1632E366B4f1d20f/logo.png new file mode 100644 index 00000000..98c3f150 Binary files /dev/null and b/blockchains/smartchain/assets/0x3B4443F97B37A6Ef864c3f0f1632E366B4f1d20f/logo.png differ diff --git a/blockchains/smartchain/assets/0x3B44E6D655226E79B3d2AC510C11b2637a9f50Dd/info.json b/blockchains/smartchain/assets/0x3B44E6D655226E79B3d2AC510C11b2637a9f50Dd/info.json new file mode 100644 index 00000000..0320f5cc --- /dev/null +++ b/blockchains/smartchain/assets/0x3B44E6D655226E79B3d2AC510C11b2637a9f50Dd/info.json @@ -0,0 +1,11 @@ +{ + "name": "SheeshMoon", + "website": "https://sheeshmoon.com", + "description": "The lighthearted token of TikTok. Deflationary, auto-liquidity, and 4% redistribution to holders.", + "explorer": "https://bscscan.com/token/0x3B44E6D655226E79B3d2AC510C11b2637a9f50Dd", + "type": "BEP20", + "symbol": "SHEESHMOON", + "decimals": 9, + "status": "active", + "id": "0x3B44E6D655226E79B3d2AC510C11b2637a9f50Dd" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3B44E6D655226E79B3d2AC510C11b2637a9f50Dd/logo.png b/blockchains/smartchain/assets/0x3B44E6D655226E79B3d2AC510C11b2637a9f50Dd/logo.png new file mode 100644 index 00000000..f58d38b9 Binary files /dev/null and b/blockchains/smartchain/assets/0x3B44E6D655226E79B3d2AC510C11b2637a9f50Dd/logo.png differ diff --git a/blockchains/smartchain/assets/0x3B73c1B2ea59835cbfcADade5462b6aB630D9890/info.json b/blockchains/smartchain/assets/0x3B73c1B2ea59835cbfcADade5462b6aB630D9890/info.json new file mode 100644 index 00000000..90d566c1 --- /dev/null +++ b/blockchains/smartchain/assets/0x3B73c1B2ea59835cbfcADade5462b6aB630D9890/info.json @@ -0,0 +1,11 @@ +{ + "name": "ChainSwap.com Governance Token", + "website": "https://chainswap.com/", + "description": "ChainSwap is a cross-chain asset bridge & application hub for smart chains.", + "explorer": "https://bscscan.com/token/0x3B73c1B2ea59835cbfcADade5462b6aB630D9890", + "type": "BEP20", + "symbol": "TOKEN", + "decimals": 18, + "status": "active", + "id": "0x3B73c1B2ea59835cbfcADade5462b6aB630D9890" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3B73c1B2ea59835cbfcADade5462b6aB630D9890/logo.png b/blockchains/smartchain/assets/0x3B73c1B2ea59835cbfcADade5462b6aB630D9890/logo.png new file mode 100644 index 00000000..23ef147b Binary files /dev/null and b/blockchains/smartchain/assets/0x3B73c1B2ea59835cbfcADade5462b6aB630D9890/logo.png differ diff --git a/blockchains/smartchain/assets/0x3B78458981eB7260d1f781cb8be2CaAC7027DbE2/info.json b/blockchains/smartchain/assets/0x3B78458981eB7260d1f781cb8be2CaAC7027DbE2/info.json new file mode 100644 index 00000000..3ebae562 --- /dev/null +++ b/blockchains/smartchain/assets/0x3B78458981eB7260d1f781cb8be2CaAC7027DbE2/info.json @@ -0,0 +1,25 @@ +{ + "name": "LaunchZone", + "website": "https://lz.finance", + "description": "LaunchZone is The Ultimate DeFi Platform. $LZ is the utility and governance token of LaunchZone Ecosystem", + "explorer": "https://bscscan.com/token/0x3B78458981eB7260d1f781cb8be2CaAC7027DbE2", + "type": "BEP20", + "symbol": "LZ", + "decimals": 18, + "status": "active", + "id": "0x3B78458981eB7260d1f781cb8be2CaAC7027DbE2", + "links": [ + { + "name": "github", + "url": "https://github.com/launchzone" + }, + { + "name": "x", + "url": "https://x.com/launchzoneann" + }, + { + "name": "whitepaper", + "url": "https://docs.lz.finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3B78458981eB7260d1f781cb8be2CaAC7027DbE2/logo.png b/blockchains/smartchain/assets/0x3B78458981eB7260d1f781cb8be2CaAC7027DbE2/logo.png new file mode 100644 index 00000000..0259a859 Binary files /dev/null and b/blockchains/smartchain/assets/0x3B78458981eB7260d1f781cb8be2CaAC7027DbE2/logo.png differ diff --git a/blockchains/smartchain/assets/0x3B8674F9CD879E0f557B3df9700D9B639a2eeA17/info.json b/blockchains/smartchain/assets/0x3B8674F9CD879E0f557B3df9700D9B639a2eeA17/info.json new file mode 100644 index 00000000..b0838940 --- /dev/null +++ b/blockchains/smartchain/assets/0x3B8674F9CD879E0f557B3df9700D9B639a2eeA17/info.json @@ -0,0 +1,11 @@ +{ + "name": "Erth Token", + "website": "https://erth.finance", + "description": "ERTH Token is a deflationary BEP-20 Token that uses the reflection model to benefit charity & its holders. It also guarantees the project's longevity. We have a built-in mechanism to guarantee funding for charity & marketing.", + "explorer": "https://bscscan.com/token/0x3B8674F9CD879E0f557B3df9700D9B639a2eeA17", + "type": "BEP20", + "symbol": "ERTH", + "decimals": 9, + "status": "active", + "id": "0x3B8674F9CD879E0f557B3df9700D9B639a2eeA17" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3B8674F9CD879E0f557B3df9700D9B639a2eeA17/logo.png b/blockchains/smartchain/assets/0x3B8674F9CD879E0f557B3df9700D9B639a2eeA17/logo.png new file mode 100644 index 00000000..a7adde10 Binary files /dev/null and b/blockchains/smartchain/assets/0x3B8674F9CD879E0f557B3df9700D9B639a2eeA17/logo.png differ diff --git a/blockchains/smartchain/assets/0x3C00F8FCc8791fa78DAA4A480095Ec7D475781e2/info.json b/blockchains/smartchain/assets/0x3C00F8FCc8791fa78DAA4A480095Ec7D475781e2/info.json new file mode 100644 index 00000000..4e689477 --- /dev/null +++ b/blockchains/smartchain/assets/0x3C00F8FCc8791fa78DAA4A480095Ec7D475781e2/info.json @@ -0,0 +1,25 @@ +{ + "name": "Safe Star Token", + "website": "https://safestar.me", + "description": "Frictionless yield & liquidity generation protocol", + "explorer": "https://bscscan.com/token/0x3c00f8fcc8791fa78daa4a480095ec7d475781e2", + "type": "BEP20", + "symbol": "SAFESTAR", + "decimals": 9, + "status": "active", + "id": "0x3C00F8FCc8791fa78DAA4A480095Ec7D475781e2", + "links": [ + { + "name": "x", + "url": "https://x.com/SafeStar_" + }, + { + "name": "telegram", + "url": "https://t.me/SafeStar_Group" + }, + { + "name": "medium", + "url": "https://safestar.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3C00F8FCc8791fa78DAA4A480095Ec7D475781e2/logo.png b/blockchains/smartchain/assets/0x3C00F8FCc8791fa78DAA4A480095Ec7D475781e2/logo.png new file mode 100644 index 00000000..f8b32831 Binary files /dev/null and b/blockchains/smartchain/assets/0x3C00F8FCc8791fa78DAA4A480095Ec7D475781e2/logo.png differ diff --git a/blockchains/smartchain/assets/0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222/info.json b/blockchains/smartchain/assets/0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222/info.json new file mode 100644 index 00000000..27a59f34 --- /dev/null +++ b/blockchains/smartchain/assets/0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222/info.json @@ -0,0 +1,40 @@ +{ + "name": "PathFundV2", + "type": "BEP20", + "symbol": "PATH", + "decimals": 9, + "website": "https://pathfund.net", + "description": "PathFund's initiative is to build and make available to investors a secure and friendly ecosystem with an intuitive interface.", + "explorer": "https://bscscan.com/token/0x3c0b6fcb2f62990f477d9af611e4da3ff1f08222", + "status": "active", + "id": "0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222", + "links": [ + { + "name": "x", + "url": "https://x.com/PathFund" + }, + { + "name": "telegram", + "url": "https://t.me/PathFund" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/PathFund" + }, + { + "name": "docs", + "url": "https://docs.pathfund.net" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pathfundv2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222/logo.png b/blockchains/smartchain/assets/0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222/logo.png new file mode 100644 index 00000000..9df210da Binary files /dev/null and b/blockchains/smartchain/assets/0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222/logo.png differ diff --git a/blockchains/smartchain/assets/0x3C1B057cb7AcEB4F2c4D889A29fEBec30A6A3146/info.json b/blockchains/smartchain/assets/0x3C1B057cb7AcEB4F2c4D889A29fEBec30A6A3146/info.json new file mode 100644 index 00000000..ae013e47 --- /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 00000000..fbb99790 Binary files /dev/null and b/blockchains/smartchain/assets/0x3C1B057cb7AcEB4F2c4D889A29fEBec30A6A3146/logo.png differ diff --git a/blockchains/smartchain/assets/0x3C70260eEe0a2bFc4b375feB810325801f289fBd/info.json b/blockchains/smartchain/assets/0x3C70260eEe0a2bFc4b375feB810325801f289fBd/info.json new file mode 100644 index 00000000..943844bf --- /dev/null +++ b/blockchains/smartchain/assets/0x3C70260eEe0a2bFc4b375feB810325801f289fBd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Omni Consumer Protocols", + "website": "https://OCP.finance", + "description": "Omni Consumer Protocols aims to be the first DeFi DAO conglomerate with multiple interlinked protocols under the same family. This architecture from the outset allows our community to benefit not only from the underlying protocols, but the overall DAO as well", + "explorer": "https://bscscan.com/token/0x3C70260eEe0a2bFc4b375feB810325801f289fBd", + "type": "BEP20", + "symbol": "OCP", + "decimals": 18, + "status": "active", + "id": "0x3C70260eEe0a2bFc4b375feB810325801f289fBd" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3C70260eEe0a2bFc4b375feB810325801f289fBd/logo.png b/blockchains/smartchain/assets/0x3C70260eEe0a2bFc4b375feB810325801f289fBd/logo.png new file mode 100644 index 00000000..fbc34701 Binary files /dev/null and b/blockchains/smartchain/assets/0x3C70260eEe0a2bFc4b375feB810325801f289fBd/logo.png differ diff --git a/blockchains/smartchain/assets/0x3C7EEDdcFf188A8C36f1Cac1b62958C6E0C27dea/info.json b/blockchains/smartchain/assets/0x3C7EEDdcFf188A8C36f1Cac1b62958C6E0C27dea/info.json new file mode 100644 index 00000000..323c0d2b --- /dev/null +++ b/blockchains/smartchain/assets/0x3C7EEDdcFf188A8C36f1Cac1b62958C6E0C27dea/info.json @@ -0,0 +1,21 @@ +{ + "name": "G2 Crypto Gaming & Lottery", + "type": "BEP20", + "symbol": "G2", + "decimals": 9, + "website": "https://g2gaming.tech/", + "description": "G² is a new multidimensional ecosystem built around gaming, a diamond hold lottery ticket, and a staking pool. G² launched on 2nd November, 2021.", + "explorer": "https://bscscan.com/token/0x3C7EEDdcFf188A8C36f1Cac1b62958C6E0C27dea", + "status": "active", + "id": "0x3C7EEDdcFf188A8C36f1Cac1b62958C6E0C27dea", + "links": [ + { + "name": "x", + "url": "https://x.com/G2cryptogaming" + }, + { + "name": "telegram", + "url": "https://t.me/g2_gaming" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3C7EEDdcFf188A8C36f1Cac1b62958C6E0C27dea/logo.png b/blockchains/smartchain/assets/0x3C7EEDdcFf188A8C36f1Cac1b62958C6E0C27dea/logo.png new file mode 100644 index 00000000..b4f2246a Binary files /dev/null and b/blockchains/smartchain/assets/0x3C7EEDdcFf188A8C36f1Cac1b62958C6E0C27dea/logo.png differ diff --git a/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/info.json b/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/info.json new file mode 100644 index 00000000..a3b41b3e --- /dev/null +++ b/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/info.json @@ -0,0 +1,45 @@ +{ + "name": "Crypto AI", + "type": "BEP20", + "symbol": "CAI", + "decimals": 9, + "website": "https://cai.codes", + "description": "Crypto AI, an AI-powered using AI Machine Learning to Create Digital Asset.", + "explorer": "https://bscscan.com/token/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c", + "status": "active", + "id": "0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c", + "links": [ + { + "name": "x", + "url": "https://x.com/CryptoAIbsc" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoAI_eng" + }, + { + "name": "github", + "url": "https://github.com/crypto-ai-git" + }, + { + "name": "whitepaper", + "url": "https://cai.codes/assets/Crypto_AI_Whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@CryptoAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crypto-ai-bsc/" + }, + { + "name": "source_code", + "url": "https://github.com/crypto-ai-git/contract/blob/main/crypto_ai.sol" + } + ], + "tags": [ + "defi", + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/logo.png b/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/logo.png new file mode 100644 index 00000000..b9f34ca4 Binary files /dev/null and b/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/logo.png differ diff --git a/blockchains/smartchain/assets/0x3CF33Ff134c0e00A2664f148A4232adeA1515C6f/info.json b/blockchains/smartchain/assets/0x3CF33Ff134c0e00A2664f148A4232adeA1515C6f/info.json new file mode 100644 index 00000000..4c676ba1 --- /dev/null +++ b/blockchains/smartchain/assets/0x3CF33Ff134c0e00A2664f148A4232adeA1515C6f/info.json @@ -0,0 +1,40 @@ +{ + "name": "Birb", + "website": "https://birb.com", + "description": "As a high deflationary DeFi token built on the Binance Smart Chain, Birb aims at becoming a highly usable token with multiple use cases such as diverse security options, e-commerce plugins, and social $BIRB sending.", + "explorer": "https://bscscan.com/token/0x3CF33Ff134c0e00A2664f148A4232adeA1515C6f", + "type": "BEP20", + "symbol": "BIRB", + "decimals": 18, + "status": "abandoned", + "id": "0x3CF33Ff134c0e00A2664f148A4232adeA1515C6f", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/birbdev" + }, + { + "name": "x", + "url": "https://x.com/BirbDefi" + }, + { + "name": "telegram", + "url": "https://t.me/birbdefi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/birb" + }, + { + "name": "whitepaper", + "url": "https://dessertswap.finance/audits/Birb%20BEP-20%20Audit%209082831.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BirbDefi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3CF8F65Eb5866E02f5cC542Dd2FD1325Dae4FD8C/info.json b/blockchains/smartchain/assets/0x3CF8F65Eb5866E02f5cC542Dd2FD1325Dae4FD8C/info.json new file mode 100644 index 00000000..93604f19 --- /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 00000000..4ff498fb Binary files /dev/null and b/blockchains/smartchain/assets/0x3CF8F65Eb5866E02f5cC542Dd2FD1325Dae4FD8C/logo.png differ diff --git a/blockchains/smartchain/assets/0x3D1FC6A9Aa0116780ae3a406Aa1d80dAaFC4d2a4/info.json b/blockchains/smartchain/assets/0x3D1FC6A9Aa0116780ae3a406Aa1d80dAaFC4d2a4/info.json new file mode 100644 index 00000000..5acb417c --- /dev/null +++ b/blockchains/smartchain/assets/0x3D1FC6A9Aa0116780ae3a406Aa1d80dAaFC4d2a4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Z Token", + "type": "BEP20", + "symbol": "ZTKN", + "decimals": 18, + "website": "https://zworld.io/", + "description": "Project: Z is a fully decentralized, community-driven project to create a game of all games connected with cryptocurrency.", + "explorer": "https://bscscan.com/token/0x3D1FC6A9Aa0116780ae3a406Aa1d80dAaFC4d2a4", + "status": "active", + "id": "0x3D1FC6A9Aa0116780ae3a406Aa1d80dAaFC4d2a4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3D1FC6A9Aa0116780ae3a406Aa1d80dAaFC4d2a4/logo.png b/blockchains/smartchain/assets/0x3D1FC6A9Aa0116780ae3a406Aa1d80dAaFC4d2a4/logo.png new file mode 100644 index 00000000..d2f9bde5 Binary files /dev/null and b/blockchains/smartchain/assets/0x3D1FC6A9Aa0116780ae3a406Aa1d80dAaFC4d2a4/logo.png differ diff --git a/blockchains/smartchain/assets/0x3D29Aa78fB558F84112bbC48a84F371147A920C9/info.json b/blockchains/smartchain/assets/0x3D29Aa78fB558F84112bbC48a84F371147A920C9/info.json new file mode 100644 index 00000000..42fec97f --- /dev/null +++ b/blockchains/smartchain/assets/0x3D29Aa78fB558F84112bbC48a84F371147A920C9/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dogefather", + "website": "https://dogefather.space/", + "description": "A new deflationary token with 5% fees are distributed and 5% fees are added to liquidity pool.", + "explorer": "https://bscscan.com/token/0x3d29aa78fb558f84112bbc48a84f371147a920c9", + "type": "BEP20", + "symbol": "DOGEFATHER", + "decimals": 9, + "status": "active", + "id": "0x3D29Aa78fB558F84112bbC48a84F371147A920C9", + "links": [ + { + "name": "x", + "url": "https://x.com/dogefatherbsc_" + }, + { + "name": "telegram", + "url": "https://t.me/dogefatherBSC" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3D29Aa78fB558F84112bbC48a84F371147A920C9/logo.png b/blockchains/smartchain/assets/0x3D29Aa78fB558F84112bbC48a84F371147A920C9/logo.png new file mode 100644 index 00000000..b3b3b9cf Binary files /dev/null and b/blockchains/smartchain/assets/0x3D29Aa78fB558F84112bbC48a84F371147A920C9/logo.png differ diff --git a/blockchains/smartchain/assets/0x3D90DB6cC52E95679fb431E88B1830BA18E41889/info.json b/blockchains/smartchain/assets/0x3D90DB6cC52E95679fb431E88B1830BA18E41889/info.json new file mode 100644 index 00000000..e1f37d7d --- /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 00000000..173e4a0b Binary files /dev/null and b/blockchains/smartchain/assets/0x3D90DB6cC52E95679fb431E88B1830BA18E41889/logo.png differ diff --git a/blockchains/smartchain/assets/0x3DAB450ee6451762E72647A05a205dd5697c5C2c/info.json b/blockchains/smartchain/assets/0x3DAB450ee6451762E72647A05a205dd5697c5C2c/info.json new file mode 100644 index 00000000..27a20bb5 --- /dev/null +++ b/blockchains/smartchain/assets/0x3DAB450ee6451762E72647A05a205dd5697c5C2c/info.json @@ -0,0 +1,11 @@ +{ + "name": "FlokiShiba", + "type": "BEP20", + "symbol": "FSHIB", + "decimals": 9, + "website": "https://flokishiba.com/", + "description": "Floki Shiba has learned a few tricks and lessons from his meme father, Doge Coin.", + "explorer": "https://bscscan.com/token/0x3DAB450ee6451762E72647A05a205dd5697c5C2c", + "status": "active", + "id": "0x3DAB450ee6451762E72647A05a205dd5697c5C2c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3DAB450ee6451762E72647A05a205dd5697c5C2c/logo.png b/blockchains/smartchain/assets/0x3DAB450ee6451762E72647A05a205dd5697c5C2c/logo.png new file mode 100644 index 00000000..1011c579 Binary files /dev/null and b/blockchains/smartchain/assets/0x3DAB450ee6451762E72647A05a205dd5697c5C2c/logo.png differ diff --git a/blockchains/smartchain/assets/0x3Da67Ae8fcF0B733d799f65B2695d650eA11112A/info.json b/blockchains/smartchain/assets/0x3Da67Ae8fcF0B733d799f65B2695d650eA11112A/info.json new file mode 100644 index 00000000..7a790034 --- /dev/null +++ b/blockchains/smartchain/assets/0x3Da67Ae8fcF0B733d799f65B2695d650eA11112A/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAINT Token", + "website": "https://www.saint-token.com", + "description": "Saint is a decentralized deflationary auto-staking & yield farming protocol, owned by the community with a charitable focus based on social experimentation. Ownership renounced, liquidity burned! The community run this token with dev support.", + "explorer": "https://bscscan.com/token/0x3da67ae8fcf0b733d799f65b2695d650ea11112a", + "type": "BEP20", + "symbol": "Saint", + "decimals": 9, + "status": "active", + "id": "0x3Da67Ae8fcF0B733d799f65B2695d650eA11112A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3Da67Ae8fcF0B733d799f65B2695d650eA11112A/logo.png b/blockchains/smartchain/assets/0x3Da67Ae8fcF0B733d799f65B2695d650eA11112A/logo.png new file mode 100644 index 00000000..07a5fefb Binary files /dev/null and b/blockchains/smartchain/assets/0x3Da67Ae8fcF0B733d799f65B2695d650eA11112A/logo.png differ diff --git a/blockchains/smartchain/assets/0x3E290e20d5C207523F53fa384aD87D69cc543f21/info.json b/blockchains/smartchain/assets/0x3E290e20d5C207523F53fa384aD87D69cc543f21/info.json new file mode 100644 index 00000000..6767e859 --- /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 00000000..d905dfa2 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 00000000..87ed6735 --- /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 00000000..83fa2ae7 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 00000000..0d1600a8 --- /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 00000000..a22bc299 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 00000000..f0a0ce4b --- /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/0x3EDb027e03Dd8348e4006F6a0b1659d4D6A38b1E/info.json b/blockchains/smartchain/assets/0x3EDb027e03Dd8348e4006F6a0b1659d4D6A38b1E/info.json new file mode 100644 index 00000000..b929fd54 --- /dev/null +++ b/blockchains/smartchain/assets/0x3EDb027e03Dd8348e4006F6a0b1659d4D6A38b1E/info.json @@ -0,0 +1,11 @@ +{ + "name": "DOGE BARKING", + "website": "https://dogebarking.org", + "description": "DOGE BARKING Community Project", + "explorer": "https://bscscan.com/token/0x3EDb027e03Dd8348e4006F6a0b1659d4D6A38b1E", + "symbol": "bDOGE", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x3EDb027e03Dd8348e4006F6a0b1659d4D6A38b1E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3EDb027e03Dd8348e4006F6a0b1659d4D6A38b1E/logo.png b/blockchains/smartchain/assets/0x3EDb027e03Dd8348e4006F6a0b1659d4D6A38b1E/logo.png new file mode 100644 index 00000000..c2acb549 Binary files /dev/null and b/blockchains/smartchain/assets/0x3EDb027e03Dd8348e4006F6a0b1659d4D6A38b1E/logo.png differ diff --git a/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/info.json b/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/info.json new file mode 100644 index 00000000..460f9830 --- /dev/null +++ b/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/info.json @@ -0,0 +1,15 @@ +{ + "name": "BNB pegged Cardano Token", + "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", + "research": "https://research.binance.com/en/projects/cardano", + "type": "BEP20", + "symbol": "ADA", + "decimals": 18, + "status": "active", + "id": "0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47", + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/logo.png b/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/logo.png new file mode 100644 index 00000000..1ab80529 Binary files /dev/null and b/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/logo.png differ diff --git a/blockchains/smartchain/assets/0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c/info.json b/blockchains/smartchain/assets/0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c/info.json new file mode 100644 index 00000000..f511a4cf --- /dev/null +++ b/blockchains/smartchain/assets/0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c/info.json @@ -0,0 +1,12 @@ +{ + "name": "Pocket Bomb", + "website": "https://pbom.rocketbunny.io/", + "description": "Pocket Bomb combines the most sought after tokenomics across DeFi: automatic liquidity adds, compounding yield, deflationary supply, liquidity rewards, and price shock protection.", + "explorer": "https://bscscan.com/token/0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c", + "research": "https://rocketbunny.medium.com/welcome-to-rocket-bunny-f21b79f2715f", + "type": "BEP20", + "symbol": "PBOM", + "decimals": 9, + "status": "active", + "id": "0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c/logo.png b/blockchains/smartchain/assets/0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c/logo.png new file mode 100644 index 00000000..d7fdfd4f Binary files /dev/null and b/blockchains/smartchain/assets/0x3Ea50B7Ef6a7eaf7E966E2cb72b519C16557497c/logo.png differ diff --git a/blockchains/smartchain/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json b/blockchains/smartchain/assets/0x3Ee7E9B3A992fD23CD1C363B0e296856B04ab149/info.json new file mode 100644 index 00000000..8cb5c9ed --- /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 00000000..80b9ebb6 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 new file mode 100644 index 00000000..7e37e532 --- /dev/null +++ b/blockchains/smartchain/assets/0x3Ef99822759A2192e7A82f64484e79e89cd90d52/info.json @@ -0,0 +1,41 @@ +{ + "name": "TKB Token", + "type": "BEP20", + "symbol": "TKB", + "decimals": 18, + "website": "https://tkbgame.app/", + "description": "TKB is a platform that integrates NFT games and decentralized yield farm applications.", + "explorer": "https://bscscan.com/token/0x3Ef99822759A2192e7A82f64484e79e89cd90d52", + "status": "active", + "id": "0x3Ef99822759A2192e7A82f64484e79e89cd90d52", + "links": [ + { + "name": "x", + "url": "https://x.com/Tkbgame2021" + }, + { + "name": "github", + "url": "https://github.com/tkbgame" + }, + { + "name": "telegram", + "url": "https://t.me/TKBAPP" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tkbtoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tkbtoken" + }, + { + "name": "docs", + "url": "https://docs.tkbgame.app/" + }, + { + "name": "whitepaper", + "url": "https://tkbgame.app/download/ThreeKingdomsBattle.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3Ef99822759A2192e7A82f64484e79e89cd90d52/logo.png b/blockchains/smartchain/assets/0x3Ef99822759A2192e7A82f64484e79e89cd90d52/logo.png new file mode 100644 index 00000000..5682aa3d Binary files /dev/null and b/blockchains/smartchain/assets/0x3Ef99822759A2192e7A82f64484e79e89cd90d52/logo.png differ diff --git a/blockchains/smartchain/assets/0x3F53De71c126BdaBAe20f9cD64848d317f6C3238/info.json b/blockchains/smartchain/assets/0x3F53De71c126BdaBAe20f9cD64848d317f6C3238/info.json new file mode 100644 index 00000000..8d60a754 --- /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 00000000..56319e00 Binary files /dev/null and b/blockchains/smartchain/assets/0x3F53De71c126BdaBAe20f9cD64848d317f6C3238/logo.png differ diff --git a/blockchains/smartchain/assets/0x3F7200CC81D3fa6B8dB6f8fCC2393D158E542F49/info.json b/blockchains/smartchain/assets/0x3F7200CC81D3fa6B8dB6f8fCC2393D158E542F49/info.json new file mode 100644 index 00000000..f12ce495 --- /dev/null +++ b/blockchains/smartchain/assets/0x3F7200CC81D3fa6B8dB6f8fCC2393D158E542F49/info.json @@ -0,0 +1,11 @@ +{ + "name": "Love Inu Token", + "type": "BEP20", + "symbol": "LOVEINU", + "decimals": 9, + "website": "https://loveinutoken.com/", + "description": "Love Inu. Projects built on the foundation of community involvement are the untamed wilderness of our future.", + "explorer": "https://bscscan.com/token/0x3F7200CC81D3fa6B8dB6f8fCC2393D158E542F49", + "status": "active", + "id": "0x3F7200CC81D3fa6B8dB6f8fCC2393D158E542F49" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3F7200CC81D3fa6B8dB6f8fCC2393D158E542F49/logo.png b/blockchains/smartchain/assets/0x3F7200CC81D3fa6B8dB6f8fCC2393D158E542F49/logo.png new file mode 100644 index 00000000..1ac45367 Binary files /dev/null and b/blockchains/smartchain/assets/0x3F7200CC81D3fa6B8dB6f8fCC2393D158E542F49/logo.png differ diff --git a/blockchains/smartchain/assets/0x3FAF7e4Fe6a1c30F78Cc3A83755E33364BAb77Ed/info.json b/blockchains/smartchain/assets/0x3FAF7e4Fe6a1c30F78Cc3A83755E33364BAb77Ed/info.json new file mode 100644 index 00000000..739b58f1 --- /dev/null +++ b/blockchains/smartchain/assets/0x3FAF7e4Fe6a1c30F78Cc3A83755E33364BAb77Ed/info.json @@ -0,0 +1,11 @@ +{ + "name": "TEST DO NOT BUY", + "type": "BEP20", + "symbol": "TEST", + "decimals": 9, + "website": "https://www.donotbuythetoken.com", + "description": "Created by accident, destined to greatness", + "explorer": "https://bscscan.com/token/0x3FAF7e4Fe6a1c30F78Cc3A83755E33364BAb77Ed", + "status": "active", + "id": "0x3FAF7e4Fe6a1c30F78Cc3A83755E33364BAb77Ed" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3FAF7e4Fe6a1c30F78Cc3A83755E33364BAb77Ed/logo.png b/blockchains/smartchain/assets/0x3FAF7e4Fe6a1c30F78Cc3A83755E33364BAb77Ed/logo.png new file mode 100644 index 00000000..712dc261 Binary files /dev/null and b/blockchains/smartchain/assets/0x3FAF7e4Fe6a1c30F78Cc3A83755E33364BAb77Ed/logo.png differ diff --git a/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/info.json b/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/info.json new file mode 100644 index 00000000..3e6ef1c0 --- /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 00000000..350b3195 Binary files /dev/null and b/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/logo.png differ diff --git a/blockchains/smartchain/assets/0x3Fcca8648651E5b974DD6d3e50F61567779772A8/info.json b/blockchains/smartchain/assets/0x3Fcca8648651E5b974DD6d3e50F61567779772A8/info.json new file mode 100644 index 00000000..8d7e16c1 --- /dev/null +++ b/blockchains/smartchain/assets/0x3Fcca8648651E5b974DD6d3e50F61567779772A8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moonpot", + "website": "https://moonpot.com", + "description": "The win-win lottery on Binance SmartChain where every ticket earns you interest.", + "explorer": "https://bscscan.com/token/0x3fcca8648651e5b974dd6d3e50f61567779772a8", + "type": "BEP20", + "symbol": "POTS", + "decimals": 18, + "status": "active", + "id": "0x3Fcca8648651E5b974DD6d3e50F61567779772A8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3Fcca8648651E5b974DD6d3e50F61567779772A8/logo.png b/blockchains/smartchain/assets/0x3Fcca8648651E5b974DD6d3e50F61567779772A8/logo.png new file mode 100644 index 00000000..020fe12a Binary files /dev/null and b/blockchains/smartchain/assets/0x3Fcca8648651E5b974DD6d3e50F61567779772A8/logo.png differ diff --git a/blockchains/smartchain/assets/0x3FdA9383A84C05eC8f7630Fe10AdF1fAC13241CC/info.json b/blockchains/smartchain/assets/0x3FdA9383A84C05eC8f7630Fe10AdF1fAC13241CC/info.json new file mode 100644 index 00000000..8cf111b3 --- /dev/null +++ b/blockchains/smartchain/assets/0x3FdA9383A84C05eC8f7630Fe10AdF1fAC13241CC/info.json @@ -0,0 +1,15 @@ +{ + "name": "Dego Finance", + "website": "https://bsc.dego.finance", + "description": "DEGO claims to be a brand new idea towards a sustainable Decentralized Finance (DeFi) ecosystem.", + "explorer": "https://bscscan.com/token/0x3FdA9383A84C05eC8f7630Fe10AdF1fAC13241CC", + "type": "BEP20", + "symbol": "DEGO", + "decimals": 18, + "status": "abandoned", + "id": "0x3FdA9383A84C05eC8f7630Fe10AdF1fAC13241CC", + "tags": [ + "governance", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3a23f43aaED213209a6143Cb91A00674CAA767E6/info.json b/blockchains/smartchain/assets/0x3a23f43aaED213209a6143Cb91A00674CAA767E6/info.json new file mode 100644 index 00000000..b1566284 --- /dev/null +++ b/blockchains/smartchain/assets/0x3a23f43aaED213209a6143Cb91A00674CAA767E6/info.json @@ -0,0 +1,11 @@ +{ + "name": "HentaiCoin", + "website": "https://hentaicoin.net/", + "description": "Hentaicoin is a decentralized token on the Binance Smart Chain and NFT platform dedicated to the world of Hentai, ero manga or adult Japanimation.", + "explorer": "https://bscscan.com/token/0x3a23f43aaED213209a6143Cb91A00674CAA767E6", + "type": "BEP20", + "symbol": "HENTAI", + "decimals": 9, + "status": "active", + "id": "0x3a23f43aaED213209a6143Cb91A00674CAA767E6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3a23f43aaED213209a6143Cb91A00674CAA767E6/logo.png b/blockchains/smartchain/assets/0x3a23f43aaED213209a6143Cb91A00674CAA767E6/logo.png new file mode 100644 index 00000000..da57bbaf Binary files /dev/null and b/blockchains/smartchain/assets/0x3a23f43aaED213209a6143Cb91A00674CAA767E6/logo.png differ diff --git a/blockchains/smartchain/assets/0x3a3D9756019fe9DE2A0AcF115a15a26D34FB2818/info.json b/blockchains/smartchain/assets/0x3a3D9756019fe9DE2A0AcF115a15a26D34FB2818/info.json new file mode 100644 index 00000000..db5e94a4 --- /dev/null +++ b/blockchains/smartchain/assets/0x3a3D9756019fe9DE2A0AcF115a15a26D34FB2818/info.json @@ -0,0 +1,11 @@ +{ + "name": "PRODAX", + "type": "BEP20", + "symbol": "DAX", + "decimals": 18, + "website": "https://prodax.io", + "description": "Utility token of DAX NFT", + "explorer": "https://bscscan.com/token/0x3a3D9756019fe9DE2A0AcF115a15a26D34FB2818", + "status": "active", + "id": "0x3a3D9756019fe9DE2A0AcF115a15a26D34FB2818" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3a3D9756019fe9DE2A0AcF115a15a26D34FB2818/logo.png b/blockchains/smartchain/assets/0x3a3D9756019fe9DE2A0AcF115a15a26D34FB2818/logo.png new file mode 100644 index 00000000..2a90a0fb Binary files /dev/null and b/blockchains/smartchain/assets/0x3a3D9756019fe9DE2A0AcF115a15a26D34FB2818/logo.png differ diff --git a/blockchains/smartchain/assets/0x3a599e584075065eAAAc768D75EaEf85c2f2fF64/info.json b/blockchains/smartchain/assets/0x3a599e584075065eAAAc768D75EaEf85c2f2fF64/info.json new file mode 100644 index 00000000..e3297899 --- /dev/null +++ b/blockchains/smartchain/assets/0x3a599e584075065eAAAc768D75EaEf85c2f2fF64/info.json @@ -0,0 +1,28 @@ +{ + "name": "Frutti Dino", + "type": "BEP20", + "symbol": "FDT", + "decimals": 18, + "website": "https://www.fruttidino.com/", + "description": "Frutti Dino is an NFT game with content. The gamers of this game can enjoy Play to Earn through a variety of interesting methods as well as gameplay through a seamlessly designed blockchain ecosystem seamlessly attached to game content.", + "explorer": "https://bscscan.com/token/0x3a599e584075065eAAAc768D75EaEf85c2f2fF64", + "status": "active", + "id": "0x3a599e584075065eAAAc768D75EaEf85c2f2fF64", + "links": [ + { + "name": "x", + "url": "https://x.com/FruttiDino" + }, + { + "name": "telegram", + "url": "https://t.me/FruttiDino_Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/frutti-dino/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3a599e584075065eAAAc768D75EaEf85c2f2fF64/logo.png b/blockchains/smartchain/assets/0x3a599e584075065eAAAc768D75EaEf85c2f2fF64/logo.png new file mode 100644 index 00000000..76c24936 Binary files /dev/null and b/blockchains/smartchain/assets/0x3a599e584075065eAAAc768D75EaEf85c2f2fF64/logo.png differ diff --git a/blockchains/smartchain/assets/0x3a828E1ea6511E367d436C601E14CDb2b446896D/info.json b/blockchains/smartchain/assets/0x3a828E1ea6511E367d436C601E14CDb2b446896D/info.json new file mode 100644 index 00000000..f43f554b --- /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 00000000..0f5ff98c 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 new file mode 100644 index 00000000..81f240a6 --- /dev/null +++ b/blockchains/smartchain/assets/0x3aD9594151886Ce8538C1ff615EFa2385a8C3A88/info.json @@ -0,0 +1,24 @@ +{ + "name": "SafeMars", + "website": "https://www.safemarscrypto.com", + "description": "Autonomous yield and liquidity generation protocol on BSC", + "explorer": "https://bscscan.com/token/0x3aD9594151886Ce8538C1ff615EFa2385a8C3A88", + "type": "BEP20", + "symbol": "SAFEMARS", + "decimals": 9, + "status": "active", + "id": "0x3aD9594151886Ce8538C1ff615EFa2385a8C3A88", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/safemartians" + }, + { + "name": "telegram", + "url": "https://t.me/safemars" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3aD9594151886Ce8538C1ff615EFa2385a8C3A88/logo.png b/blockchains/smartchain/assets/0x3aD9594151886Ce8538C1ff615EFa2385a8C3A88/logo.png new file mode 100644 index 00000000..2b7ade43 Binary files /dev/null and b/blockchains/smartchain/assets/0x3aD9594151886Ce8538C1ff615EFa2385a8C3A88/logo.png differ diff --git a/blockchains/smartchain/assets/0x3aDd729f1d6C85eC6ec005205dDa9C4e7C10289f/info.json b/blockchains/smartchain/assets/0x3aDd729f1d6C85eC6ec005205dDa9C4e7C10289f/info.json new file mode 100644 index 00000000..835951ac --- /dev/null +++ b/blockchains/smartchain/assets/0x3aDd729f1d6C85eC6ec005205dDa9C4e7C10289f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pomskey", + "website": "https://pomskey.io/", + "description": "Pomskey is a auto-liquidity, static farming, and deflationary token on the Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x3aDd729f1d6C85eC6ec005205dDa9C4e7C10289f", + "type": "BEP20", + "symbol": "PM", + "decimals": 9, + "status": "active", + "id": "0x3aDd729f1d6C85eC6ec005205dDa9C4e7C10289f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3aDd729f1d6C85eC6ec005205dDa9C4e7C10289f/logo.png b/blockchains/smartchain/assets/0x3aDd729f1d6C85eC6ec005205dDa9C4e7C10289f/logo.png new file mode 100644 index 00000000..f878b922 Binary files /dev/null and b/blockchains/smartchain/assets/0x3aDd729f1d6C85eC6ec005205dDa9C4e7C10289f/logo.png differ diff --git a/blockchains/smartchain/assets/0x3aabCf53A1930A42E18D938C019E83Ebee50a849/info.json b/blockchains/smartchain/assets/0x3aabCf53A1930A42E18D938C019E83Ebee50a849/info.json new file mode 100644 index 00000000..9f7aefc0 --- /dev/null +++ b/blockchains/smartchain/assets/0x3aabCf53A1930A42E18D938C019E83Ebee50a849/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPONGE", + "type": "BEP20", + "symbol": "SPG", + "decimals": 9, + "website": "https://app.sponge.finance", + "description": "Sponge.finance a sustainable DeFi ecosystem on BSC ! Earn Sponge and Soak tokens through yield framing, token stacking, or even passive yield with the 5% $SPG redistribution.", + "explorer": "https://bscscan.com/token/0x3aabCf53A1930A42E18D938C019E83Ebee50a849", + "status": "active", + "id": "0x3aabCf53A1930A42E18D938C019E83Ebee50a849" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3aabCf53A1930A42E18D938C019E83Ebee50a849/logo.png b/blockchains/smartchain/assets/0x3aabCf53A1930A42E18D938C019E83Ebee50a849/logo.png new file mode 100644 index 00000000..5ceb6fdf Binary files /dev/null and b/blockchains/smartchain/assets/0x3aabCf53A1930A42E18D938C019E83Ebee50a849/logo.png differ diff --git a/blockchains/smartchain/assets/0x3adaf5DA3d11Cc20ef937417a5c55E7cB18fDE6f/info.json b/blockchains/smartchain/assets/0x3adaf5DA3d11Cc20ef937417a5c55E7cB18fDE6f/info.json new file mode 100644 index 00000000..c336adf0 --- /dev/null +++ b/blockchains/smartchain/assets/0x3adaf5DA3d11Cc20ef937417a5c55E7cB18fDE6f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bucky", + "symbol": "BCKY", + "type": "BEP20", + "decimals": 9, + "description": "Bucky Coin will be an open-source network for currencies and payments", + "website": "https://buckycoin.finance/", + "explorer": "https://bscscan.com/token/0x3adaf5da3d11cc20ef937417a5c55e7cb18fde6f", + "status": "active", + "id": "0x3adaf5DA3d11Cc20ef937417a5c55E7cB18fDE6f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3adaf5DA3d11Cc20ef937417a5c55E7cB18fDE6f/logo.png b/blockchains/smartchain/assets/0x3adaf5DA3d11Cc20ef937417a5c55E7cB18fDE6f/logo.png new file mode 100644 index 00000000..21fdc8ff Binary files /dev/null and b/blockchains/smartchain/assets/0x3adaf5DA3d11Cc20ef937417a5c55E7cB18fDE6f/logo.png differ diff --git a/blockchains/smartchain/assets/0x3b32e75C01035a0676964aa62caaE7deB79a8888/info.json b/blockchains/smartchain/assets/0x3b32e75C01035a0676964aa62caaE7deB79a8888/info.json new file mode 100644 index 00000000..5c354be2 --- /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 new file mode 100644 index 00000000..bedc967d --- /dev/null +++ b/blockchains/smartchain/assets/0x3b76374Cc2DfE28Cc373DcA6d5024791B2586335/info.json @@ -0,0 +1,40 @@ +{ + "id": "0x3b76374Cc2DfE28Cc373DcA6d5024791B2586335", + "name": "Adadao", + "symbol": "ADAO", + "type": "BEP20", + "description": "A DeFi protocol which facilitates creation of fully collateralized stable coins leveraging Native Cardano Assets", + "decimals": 18, + "website": "https://adadao.org", + "explorer": "https://bscscan.com/token/0x3b76374Cc2DfE28Cc373DcA6d5024791B2586335", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/adadao_org" + }, + { + "name": "github", + "url": "https://github.com/adadao" + }, + { + "name": "telegram", + "url": "https://t.me/adadao_org" + }, + { + "name": "telegram_news", + "url": "https://t.me/adadao_org_announcement" + }, + { + "name": "blog", + "url": "https://adadao.medium.com" + }, + { + "name": "docs", + "url": "https://docs.adadao.org" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3b76374Cc2DfE28Cc373DcA6d5024791B2586335/logo.png b/blockchains/smartchain/assets/0x3b76374Cc2DfE28Cc373DcA6d5024791B2586335/logo.png new file mode 100644 index 00000000..3809acfd Binary files /dev/null and b/blockchains/smartchain/assets/0x3b76374Cc2DfE28Cc373DcA6d5024791B2586335/logo.png differ diff --git a/blockchains/smartchain/assets/0x3b831d36ed418e893F42d46ff308C326C239429f/info.json b/blockchains/smartchain/assets/0x3b831d36ed418e893F42d46ff308C326C239429f/info.json new file mode 100644 index 00000000..bbfb678b --- /dev/null +++ b/blockchains/smartchain/assets/0x3b831d36ed418e893F42d46ff308C326C239429f/info.json @@ -0,0 +1,11 @@ +{ + "name": "PancakeTools", + "website": "https://pancaketools.com/", + "description": "PancakeTools first binance chain pair & pool explorer based on data from PancakeSwap. Control you trading on PancakeSwap", + "explorer": "https://bscscan.com/token/0x3b831d36ed418e893F42d46ff308C326C239429f", + "type": "BEP20", + "symbol": "TCAKE", + "decimals": 18, + "status": "active", + "id": "0x3b831d36ed418e893F42d46ff308C326C239429f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3b831d36ed418e893F42d46ff308C326C239429f/logo.png b/blockchains/smartchain/assets/0x3b831d36ed418e893F42d46ff308C326C239429f/logo.png new file mode 100644 index 00000000..c3b8053c Binary files /dev/null and b/blockchains/smartchain/assets/0x3b831d36ed418e893F42d46ff308C326C239429f/logo.png differ diff --git a/blockchains/smartchain/assets/0x3c168c8E0bb11B0A6DEEba6c0c6Be100E82451BB/info.json b/blockchains/smartchain/assets/0x3c168c8E0bb11B0A6DEEba6c0c6Be100E82451BB/info.json new file mode 100644 index 00000000..f3120483 --- /dev/null +++ b/blockchains/smartchain/assets/0x3c168c8E0bb11B0A6DEEba6c0c6Be100E82451BB/info.json @@ -0,0 +1,41 @@ +{ + "name": "SHREW", + "website": "https://Shrew.com", + "description": "SHREW is the utility token of Shrew Ecosystem. Shrew stands for SHopping REWards. A grand vision to revolutionize the multi-billion dollar reward points industry with the SHREW token as the global rewards currency. With a professional doxxed team, solid roadmap and a token that will have real utility - this is a project that aims to bring crypto to the mainstream", + "explorer": "https://bscscan.com/token/0x3c168c8E0bb11B0A6DEEba6c0c6Be100E82451BB", + "type": "BEP20", + "symbol": "SHREW", + "decimals": 18, + "status": "active", + "id": "0x3c168c8E0bb11B0A6DEEba6c0c6Be100E82451BB", + "links": [ + { + "name": "telegram", + "url": "https://t.me/shrewdotcom" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCmregyFHLDxd5jR4sXgCwEQ" + }, + { + "name": "x", + "url": "https://x.com/shrewdotcom" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/shrewtoken/new/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shrew" + }, + { + "name": "whitepaper", + "url": "https://shrew.com/whitepaper" + }, + { + "name": "facebook", + "url": "https://facebook.com/shrew.shrew.75" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3c168c8E0bb11B0A6DEEba6c0c6Be100E82451BB/logo.png b/blockchains/smartchain/assets/0x3c168c8E0bb11B0A6DEEba6c0c6Be100E82451BB/logo.png new file mode 100644 index 00000000..14add4d3 Binary files /dev/null and b/blockchains/smartchain/assets/0x3c168c8E0bb11B0A6DEEba6c0c6Be100E82451BB/logo.png differ diff --git a/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/info.json b/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/info.json new file mode 100644 index 00000000..ecd51e16 --- /dev/null +++ b/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/info.json @@ -0,0 +1,50 @@ +{ + "name": "Saito", + "type": "BEP20", + "symbol": "SAITO", + "decimals": 18, + "website": "https://saito.io", + "description": "Saito is a massively scaling layer one blockchain for application developers.", + "explorer": "https://bscscan.com/token/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA", + "status": "active", + "id": "0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA", + "links": [ + { + "name": "x", + "url": "https://x.com/saitoofficial" + }, + { + "name": "github", + "url": "https://github.com/saitotech" + }, + { + "name": "telegram", + "url": "https://t.me/SaitoIO" + }, + { + "name": "telegram_news", + "url": "https://t.me/SaitoIOann" + }, + { + "name": "blog", + "url": "https://saito.tech/blog/" + }, + { + "name": "docs", + "url": "https://wiki.saito.io/" + }, + { + "name": "discord", + "url": "https://discord.com/HjTFh9Tfec" + }, + { + "name": "whitepaper", + "url": "https://saito.io/saito-whitepaper.pdf" + } + ], + "tags": [ + "wrapped", + "deflationary", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/logo.png b/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/logo.png new file mode 100644 index 00000000..5a25dafb Binary files /dev/null and b/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/logo.png differ diff --git a/blockchains/smartchain/assets/0x3c6E66EFB9a63A5F2C771b4E7B7b2ce156E28888/info.json b/blockchains/smartchain/assets/0x3c6E66EFB9a63A5F2C771b4E7B7b2ce156E28888/info.json new file mode 100644 index 00000000..7eeb2f17 --- /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 new file mode 100644 index 00000000..47a31c55 --- /dev/null +++ b/blockchains/smartchain/assets/0x3c730718C97A77562866B5D29B33228c019eAC68/info.json @@ -0,0 +1,11 @@ +{ + "name": "BNB Diamond", + "website": "https://bnbdiamond.net/", + "description": "Built for the community. Simply hold BNBD to join the journey and experience all of the benefit from BNB Diamond.", + "explorer": "https://bscscan.com/token/0x3c730718C97A77562866B5D29B33228c019eAC68", + "type": "BEP20", + "symbol": "BNBD", + "decimals": 9, + "status": "abandoned", + "id": "0x3c730718C97A77562866B5D29B33228c019eAC68" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3c75A237677D495Aa2651B594b0629a553377e10/info.json b/blockchains/smartchain/assets/0x3c75A237677D495Aa2651B594b0629a553377e10/info.json new file mode 100644 index 00000000..21f84496 --- /dev/null +++ b/blockchains/smartchain/assets/0x3c75A237677D495Aa2651B594b0629a553377e10/info.json @@ -0,0 +1,11 @@ +{ + "name": "bitcoinXv2.0 Token", + "website": "https://btcxv2.com", + "description": "BitcoinXv2 is a deflationary token, completely decentralized and thrives from the power of the community. It is a token for the people. One Governance, One BitcoinXv2.", + "explorer": "https://bscscan.com/token/0x3c75A237677D495Aa2651B594b0629a553377e10", + "type": "BEP20", + "symbol": "btcXv2.0", + "decimals": 9, + "status": "active", + "id": "0x3c75A237677D495Aa2651B594b0629a553377e10" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3c75A237677D495Aa2651B594b0629a553377e10/logo.png b/blockchains/smartchain/assets/0x3c75A237677D495Aa2651B594b0629a553377e10/logo.png new file mode 100644 index 00000000..2a97f300 Binary files /dev/null and b/blockchains/smartchain/assets/0x3c75A237677D495Aa2651B594b0629a553377e10/logo.png differ diff --git a/blockchains/smartchain/assets/0x3ca729BFD4bbaD155f072752510226b37A5b7723/info.json b/blockchains/smartchain/assets/0x3ca729BFD4bbaD155f072752510226b37A5b7723/info.json new file mode 100644 index 00000000..131a5cf3 --- /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 00000000..f5d16401 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 new file mode 100644 index 00000000..f2604787 --- /dev/null +++ b/blockchains/smartchain/assets/0x3d0E22387DdfE75D1AEa9D7108a4392922740B96/info.json @@ -0,0 +1,29 @@ +{ + "name": "Loud Market", + "type": "BEP20", + "symbol": "LOUD", + "decimals": 18, + "website": "https://loudnft.co", + "description": "The first Music NFT Marketplace", + "explorer": "https://bscscan.com/token/0x3d0E22387DdfE75D1AEa9D7108a4392922740B96", + "status": "active", + "id": "0x3d0E22387DdfE75D1AEa9D7108a4392922740B96", + "links": [ + { + "name": "x", + "url": "https://x.com/loudmarketnfts" + }, + { + "name": "telegram", + "url": "https://t.me/loudmarket" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/loud-market/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/loud-market" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3d0E22387DdfE75D1AEa9D7108a4392922740B96/logo.png b/blockchains/smartchain/assets/0x3d0E22387DdfE75D1AEa9D7108a4392922740B96/logo.png new file mode 100644 index 00000000..8d9d0d4d Binary files /dev/null and b/blockchains/smartchain/assets/0x3d0E22387DdfE75D1AEa9D7108a4392922740B96/logo.png differ diff --git a/blockchains/smartchain/assets/0x3d36685D91b060FB0351401f27eE058311fB00C1/info.json b/blockchains/smartchain/assets/0x3d36685D91b060FB0351401f27eE058311fB00C1/info.json new file mode 100644 index 00000000..0e546157 --- /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 00000000..797d63ec Binary files /dev/null and b/blockchains/smartchain/assets/0x3d36685D91b060FB0351401f27eE058311fB00C1/logo.png differ diff --git a/blockchains/smartchain/assets/0x3d4350cD54aeF9f9b2C29435e0fa809957B3F30a/info.json b/blockchains/smartchain/assets/0x3d4350cD54aeF9f9b2C29435e0fa809957B3F30a/info.json new file mode 100644 index 00000000..e31b24d7 --- /dev/null +++ b/blockchains/smartchain/assets/0x3d4350cD54aeF9f9b2C29435e0fa809957B3F30a/info.json @@ -0,0 +1,14 @@ +{ + "name": "UST (Wormhole)", + "type": "BEP20", + "symbol": "UST", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://wormholebridge.com", + "explorer": "https://bscscan.com/token/0x3d4350cD54aeF9f9b2C29435e0fa809957B3F30a", + "status": "active", + "id": "0x3d4350cD54aeF9f9b2C29435e0fa809957B3F30a", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3d4350cD54aeF9f9b2C29435e0fa809957B3F30a/logo.png b/blockchains/smartchain/assets/0x3d4350cD54aeF9f9b2C29435e0fa809957B3F30a/logo.png new file mode 100644 index 00000000..e3110cce Binary files /dev/null and b/blockchains/smartchain/assets/0x3d4350cD54aeF9f9b2C29435e0fa809957B3F30a/logo.png differ diff --git a/blockchains/smartchain/assets/0x3d4f0513E8a29669B960f9dBcA61861548A9A760/info.json b/blockchains/smartchain/assets/0x3d4f0513E8a29669B960f9dBcA61861548A9A760/info.json new file mode 100644 index 00000000..1d5dab74 --- /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 00000000..41f88f80 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 new file mode 100644 index 00000000..81094df7 --- /dev/null +++ b/blockchains/smartchain/assets/0x3d6545b08693daE087E957cb1180ee38B9e3c25E/info.json @@ -0,0 +1,15 @@ +{ + "name": "BNB pegged 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", + "research": "https://research.binance.com/en/projects/ethereum-classic", + "type": "BEP20", + "symbol": "ETC", + "decimals": 18, + "status": "active", + "id": "0x3d6545b08693daE087E957cb1180ee38B9e3c25E", + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3d6545b08693daE087E957cb1180ee38B9e3c25E/logo.png b/blockchains/smartchain/assets/0x3d6545b08693daE087E957cb1180ee38B9e3c25E/logo.png new file mode 100644 index 00000000..eb921c2b Binary files /dev/null and b/blockchains/smartchain/assets/0x3d6545b08693daE087E957cb1180ee38B9e3c25E/logo.png differ diff --git a/blockchains/smartchain/assets/0x3da69D719AD12EEAb2b7031697E84c2c62299C13/info.json b/blockchains/smartchain/assets/0x3da69D719AD12EEAb2b7031697E84c2c62299C13/info.json new file mode 100644 index 00000000..52cc1650 --- /dev/null +++ b/blockchains/smartchain/assets/0x3da69D719AD12EEAb2b7031697E84c2c62299C13/info.json @@ -0,0 +1,21 @@ +{ + "name": "Baby KShark", + "website": "https://kshark.io", + "description": "Baby Kshark Token is a MEME Token that originates from the community, serves the community, and is self-governed by the community. It is fair and has a variety of gameplay methods.", + "explorer": "https://bscscan.com/token/0x3da69D719AD12EEAb2b7031697E84c2c62299C13", + "type": "BEP20", + "symbol": "BKS", + "decimals": 9, + "status": "active", + "id": "0x3da69D719AD12EEAb2b7031697E84c2c62299C13", + "links": [ + { + "name": "x", + "url": "https://x.com/KShark_official" + }, + { + "name": "telegram", + "url": "https://t.me/KShark_Official" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3da69D719AD12EEAb2b7031697E84c2c62299C13/logo.png b/blockchains/smartchain/assets/0x3da69D719AD12EEAb2b7031697E84c2c62299C13/logo.png new file mode 100644 index 00000000..b5307679 Binary files /dev/null and b/blockchains/smartchain/assets/0x3da69D719AD12EEAb2b7031697E84c2c62299C13/logo.png differ diff --git a/blockchains/smartchain/assets/0x3dcB18569425930954feb191122e574b87F66abd/info.json b/blockchains/smartchain/assets/0x3dcB18569425930954feb191122e574b87F66abd/info.json new file mode 100644 index 00000000..85a22d4d --- /dev/null +++ b/blockchains/smartchain/assets/0x3dcB18569425930954feb191122e574b87F66abd/info.json @@ -0,0 +1,14 @@ +{ + "name": "Orion Money (Portal)", + "type": "BEP20", + "symbol": "ORION", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://orion.money/", + "explorer": "https://bscscan.com/token/0x3dcB18569425930954feb191122e574b87F66abd", + "status": "active", + "id": "0x3dcB18569425930954feb191122e574b87F66abd", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3dcB18569425930954feb191122e574b87F66abd/logo.png b/blockchains/smartchain/assets/0x3dcB18569425930954feb191122e574b87F66abd/logo.png new file mode 100644 index 00000000..89db97dd Binary files /dev/null and b/blockchains/smartchain/assets/0x3dcB18569425930954feb191122e574b87F66abd/logo.png differ diff --git a/blockchains/smartchain/assets/0x3e07a8a8f260edeeca24139B6767A073918E8674/info.json b/blockchains/smartchain/assets/0x3e07a8a8f260edeeca24139B6767A073918E8674/info.json new file mode 100644 index 00000000..5865374d --- /dev/null +++ b/blockchains/smartchain/assets/0x3e07a8a8f260edeeca24139B6767A073918E8674/info.json @@ -0,0 +1,11 @@ +{ + "name": "Catge V2", + "website": "https://catgecoin.com/", + "description": "CATGE is the cat coin, a semi-deflationary token and the utility token for the Startup Token Launchpad exchange.", + "explorer": "https://bscscan.com/token/0x3e07a8a8f260edeeca24139B6767A073918E8674", + "type": "BEP20", + "symbol": "CATGE", + "decimals": 9, + "status": "active", + "id": "0x3e07a8a8f260edeeca24139B6767A073918E8674" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3e07a8a8f260edeeca24139B6767A073918E8674/logo.png b/blockchains/smartchain/assets/0x3e07a8a8f260edeeca24139B6767A073918E8674/logo.png new file mode 100644 index 00000000..06a9d173 Binary files /dev/null and b/blockchains/smartchain/assets/0x3e07a8a8f260edeeca24139B6767A073918E8674/logo.png differ diff --git a/blockchains/smartchain/assets/0x3e0b5807515756635c6347CDeeBF95946E604BCF/info.json b/blockchains/smartchain/assets/0x3e0b5807515756635c6347CDeeBF95946E604BCF/info.json new file mode 100644 index 00000000..ae864f0f --- /dev/null +++ b/blockchains/smartchain/assets/0x3e0b5807515756635c6347CDeeBF95946E604BCF/info.json @@ -0,0 +1,29 @@ +{ + "name": "Facebook Metaverse", + "type": "BEP20", + "symbol": "FACEMETA", + "decimals": 9, + "website": "https://facemetatoken.co/", + "description": "Facebook Metaverse is a project that's inspired by Mark Zuckerberg", + "explorer": "https://bscscan.com/token/0x3e0b5807515756635c6347CDeeBF95946E604BCF", + "status": "active", + "id": "0x3e0b5807515756635c6347CDeeBF95946E604BCF", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Facebookmetaverse" + }, + { + "name": "whitepaper", + "url": "https://x.com/Facemetatoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/facebook-metaverse/" + }, + { + "name": "github", + "url": "https://github.com/FacebookMetaverse" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3e0b5807515756635c6347CDeeBF95946E604BCF/logo.png b/blockchains/smartchain/assets/0x3e0b5807515756635c6347CDeeBF95946E604BCF/logo.png new file mode 100644 index 00000000..3162f8c0 Binary files /dev/null and b/blockchains/smartchain/assets/0x3e0b5807515756635c6347CDeeBF95946E604BCF/logo.png differ diff --git a/blockchains/smartchain/assets/0x3e2242Cb2Fc1465822a0bb81ca2fe1f633a45757/info.json b/blockchains/smartchain/assets/0x3e2242Cb2Fc1465822a0bb81ca2fe1f633a45757/info.json new file mode 100644 index 00000000..649be84c --- /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 00000000..c0e499e7 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 new file mode 100644 index 00000000..7ce667f9 --- /dev/null +++ b/blockchains/smartchain/assets/0x3e24BBb2c9a0f2fAEcFDBDCa20BBa6F35b73C4CB/info.json @@ -0,0 +1,38 @@ +{ + "name": "DELOT.IO", + "type": "BEP20", + "symbol": "DELOT", + "decimals": 18, + "website": "https://delot.io", + "description": "DELOT is the decentralized lottery game for token holders. DELOT token is the utility token that is used in the Lottery game.", + "explorer": "https://bscscan.com/token/0x3e24BBb2c9a0f2fAEcFDBDCa20BBa6F35b73C4CB", + "status": "active", + "id": "0x3e24BBb2c9a0f2fAEcFDBDCa20BBa6F35b73C4CB", + "links": [ + { + "name": "whitepaper", + "url": "https://docs.delot.io" + }, + { + "name": "github", + "url": "https://github.com/delot-io" + }, + { + "name": "x", + "url": "https://x.com/delot_io" + }, + { + "name": "telegram", + "url": "https://t.me/delot_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/delot-io/" + } + ], + "tags": [ + "gamefi", + "defi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3e24BBb2c9a0f2fAEcFDBDCa20BBa6F35b73C4CB/logo.png b/blockchains/smartchain/assets/0x3e24BBb2c9a0f2fAEcFDBDCa20BBa6F35b73C4CB/logo.png new file mode 100644 index 00000000..aa998bcf Binary files /dev/null and b/blockchains/smartchain/assets/0x3e24BBb2c9a0f2fAEcFDBDCa20BBa6F35b73C4CB/logo.png differ diff --git a/blockchains/smartchain/assets/0x3e6C9eE69B90B53628051F8D6CB5b6b2EaCCB438/info.json b/blockchains/smartchain/assets/0x3e6C9eE69B90B53628051F8D6CB5b6b2EaCCB438/info.json new file mode 100644 index 00000000..d5b657fa --- /dev/null +++ b/blockchains/smartchain/assets/0x3e6C9eE69B90B53628051F8D6CB5b6b2EaCCB438/info.json @@ -0,0 +1,21 @@ +{ + "name": "Multigame", + "website": "https://multigame.org/", + "description": "Multigame is a GameFi & multitasking NFTs platform was built on Binance Smart Chain. The platform will both ensure an accelerator role for other Gaming & NFTs startups and develop separated GameFi projects.", + "explorer": "https://bscscan.com/token/0x3e6C9eE69B90B53628051F8D6CB5b6b2EaCCB438", + "type": "BEP20", + "symbol": "MULTI", + "decimals": 18, + "status": "active", + "id": "0x3e6C9eE69B90B53628051F8D6CB5b6b2EaCCB438", + "links": [ + { + "name": "x", + "url": "https://x.com/multigame_org" + }, + { + "name": "telegram", + "url": "https://t.me/multigame_chat" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3e6C9eE69B90B53628051F8D6CB5b6b2EaCCB438/logo.png b/blockchains/smartchain/assets/0x3e6C9eE69B90B53628051F8D6CB5b6b2EaCCB438/logo.png new file mode 100644 index 00000000..ea786f23 Binary files /dev/null and b/blockchains/smartchain/assets/0x3e6C9eE69B90B53628051F8D6CB5b6b2EaCCB438/logo.png differ diff --git a/blockchains/smartchain/assets/0x3e81Aa8d6813Ec9D7E6ddB4e523fb1601a0e86F3/info.json b/blockchains/smartchain/assets/0x3e81Aa8d6813Ec9D7E6ddB4e523fb1601a0e86F3/info.json new file mode 100644 index 00000000..de80b184 --- /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 00000000..0b55a43f Binary files /dev/null and b/blockchains/smartchain/assets/0x3e81Aa8d6813Ec9D7E6ddB4e523fb1601a0e86F3/logo.png differ diff --git a/blockchains/smartchain/assets/0x3e8FC047F1BaEf443C43c400c996ebCC7cde9B94/info.json b/blockchains/smartchain/assets/0x3e8FC047F1BaEf443C43c400c996ebCC7cde9B94/info.json new file mode 100644 index 00000000..6b0012d3 --- /dev/null +++ b/blockchains/smartchain/assets/0x3e8FC047F1BaEf443C43c400c996ebCC7cde9B94/info.json @@ -0,0 +1,11 @@ +{ + "name": "Terra Exchange", + "website": "https://terra-exchange.com/", + "description": "TERX is a smart project for land exchange. Token used to buy land and real estate using cryptocurrency.", + "explorer": "https://bscscan.com/token/0x3e8FC047F1BaEf443C43c400c996ebCC7cde9B94", + "type": "BEP20", + "symbol": "TERX", + "decimals": 9, + "status": "active", + "id": "0x3e8FC047F1BaEf443C43c400c996ebCC7cde9B94" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3e8FC047F1BaEf443C43c400c996ebCC7cde9B94/logo.png b/blockchains/smartchain/assets/0x3e8FC047F1BaEf443C43c400c996ebCC7cde9B94/logo.png new file mode 100644 index 00000000..cf16b4b6 Binary files /dev/null and b/blockchains/smartchain/assets/0x3e8FC047F1BaEf443C43c400c996ebCC7cde9B94/logo.png differ diff --git a/blockchains/smartchain/assets/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b/info.json b/blockchains/smartchain/assets/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b/info.json new file mode 100644 index 00000000..3a2f89c0 --- /dev/null +++ b/blockchains/smartchain/assets/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b/info.json @@ -0,0 +1,26 @@ +{ + "name": "BelecX Token", + "type": "BEP20", + "symbol": "BEX", + "decimals": 18, + "website": "https://belecx.com", + "description": "The BelecX protocol will build and combine the crypto industry's Metaverse+NFT+GameFi+Defi+ blind-box multi-ring crypto world based on previous standards.BelecX provides a solution for web3.0 true autonomous community modules.", + "explorer": "https://bscscan.com/token/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b", + "status": "active", + "id": "0x3eE08275b513f3085231Ccc85de4C386FCc1f18b", + "links": [ + { + "name": "x", + "url": "https://x.com/BelecXToken" + }, + { + "name": "telegram", + "url": "https://t.me/BelecXChat" + } + ], + "tags": [ + "gamefi", + "defi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b/logo.png b/blockchains/smartchain/assets/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b/logo.png new file mode 100644 index 00000000..ed9af095 Binary files /dev/null and b/blockchains/smartchain/assets/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b/logo.png differ diff --git a/blockchains/smartchain/assets/0x3eE4dF61bd4F867E349BEaE8bFE07bc31b4850fb/info.json b/blockchains/smartchain/assets/0x3eE4dF61bd4F867E349BEaE8bFE07bc31b4850fb/info.json new file mode 100644 index 00000000..049f323e --- /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 00000000..498e43f7 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 new file mode 100644 index 00000000..63a866b8 --- /dev/null +++ b/blockchains/smartchain/assets/0x3ebb316D8c387ef235BAa38978cbB9B97C8C3017/info.json @@ -0,0 +1,25 @@ +{ + "name": "PYXIS (pyxis.network)", + "type": "BEP20", + "symbol": "PYX", + "decimals": 18, + "website": "https://www.pyxis.network", + "description": "Premium staking platform on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x3ebb316D8c387ef235BAa38978cbB9B97C8C3017", + "status": "active", + "id": "0x3ebb316D8c387ef235BAa38978cbB9B97C8C3017", + "links": [ + { + "name": "x", + "url": "https://x.com/pyxiscommunity" + }, + { + "name": "telegram", + "url": "https://t.me/pyxiscommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/d2kqGakxeJ" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3ebb316D8c387ef235BAa38978cbB9B97C8C3017/logo.png b/blockchains/smartchain/assets/0x3ebb316D8c387ef235BAa38978cbB9B97C8C3017/logo.png new file mode 100644 index 00000000..05128451 Binary files /dev/null and b/blockchains/smartchain/assets/0x3ebb316D8c387ef235BAa38978cbB9B97C8C3017/logo.png differ diff --git a/blockchains/smartchain/assets/0x3ec7ba1B86387B8CB323eaC3f2AAE217C876f9A7/info.json b/blockchains/smartchain/assets/0x3ec7ba1B86387B8CB323eaC3f2AAE217C876f9A7/info.json new file mode 100644 index 00000000..2f4242c4 --- /dev/null +++ b/blockchains/smartchain/assets/0x3ec7ba1B86387B8CB323eaC3f2AAE217C876f9A7/info.json @@ -0,0 +1,11 @@ +{ + "name": "MegaRise", + "website": "https://megarisetoken.com/", + "description": "MegaRise - A Proprietary, Hyper Deflationary Token. MegaRise holders are not only rewarded through static rewards but also through true automatic burns every trade from within the liquidity pool.", + "explorer": "https://bscscan.com/token/0x3ec7ba1b86387b8cb323eac3f2aae217c876f9a7", + "type": "BEP20", + "symbol": "MEGARISE", + "decimals": 9, + "status": "active", + "id": "0x3ec7ba1B86387B8CB323eaC3f2AAE217C876f9A7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3ec7ba1B86387B8CB323eaC3f2AAE217C876f9A7/logo.png b/blockchains/smartchain/assets/0x3ec7ba1B86387B8CB323eaC3f2AAE217C876f9A7/logo.png new file mode 100644 index 00000000..b815ca9d Binary files /dev/null and b/blockchains/smartchain/assets/0x3ec7ba1B86387B8CB323eaC3f2AAE217C876f9A7/logo.png differ diff --git a/blockchains/smartchain/assets/0x3f16ed45679f28111C92aae5912c85B14AbF7637/info.json b/blockchains/smartchain/assets/0x3f16ed45679f28111C92aae5912c85B14AbF7637/info.json new file mode 100644 index 00000000..fd431aba --- /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 00000000..3f658e2d 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 00000000..e7d5f1dc --- /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 00000000..565c526b 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 new file mode 100644 index 00000000..8fe307a4 --- /dev/null +++ b/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/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/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110", + "type": "BEP20", + "symbol": "VIDT", + "decimals": 18, + "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 00000000..882a4e0c --- /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 00000000..e2e36379 Binary files /dev/null and b/blockchains/smartchain/assets/0x3fCD741646A9790635b938Cdb69af5Df356CbaAB/logo.png differ diff --git a/blockchains/smartchain/assets/0x3fd5B5746315E3F8d43A46b09c826a001EBb977d/info.json b/blockchains/smartchain/assets/0x3fd5B5746315E3F8d43A46b09c826a001EBb977d/info.json new file mode 100644 index 00000000..c3c8f24c --- /dev/null +++ b/blockchains/smartchain/assets/0x3fd5B5746315E3F8d43A46b09c826a001EBb977d/info.json @@ -0,0 +1,12 @@ +{ + "name": "oxbull.tech", + "website": "https://www.oxbull.tech", + "description": "Charging the Future of Blockchains", + "explorer": "https://bscscan.com/token/0x3fd5B5746315E3F8d43A46b09c826a001EBb977d", + "research": "", + "type": "BEP20", + "symbol": "OXB", + "decimals": 9, + "status": "active", + "id": "0x3fd5B5746315E3F8d43A46b09c826a001EBb977d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3fd5B5746315E3F8d43A46b09c826a001EBb977d/logo.png b/blockchains/smartchain/assets/0x3fd5B5746315E3F8d43A46b09c826a001EBb977d/logo.png new file mode 100644 index 00000000..2e2386a5 Binary files /dev/null and b/blockchains/smartchain/assets/0x3fd5B5746315E3F8d43A46b09c826a001EBb977d/logo.png differ diff --git a/blockchains/smartchain/assets/0x400613f184D1207f5C07a67D67040A4e23E92feB/info.json b/blockchains/smartchain/assets/0x400613f184D1207f5C07a67D67040A4e23E92feB/info.json new file mode 100644 index 00000000..585cea88 --- /dev/null +++ b/blockchains/smartchain/assets/0x400613f184D1207f5C07a67D67040A4e23E92feB/info.json @@ -0,0 +1,11 @@ +{ + "name": "UPDOG", + "website": "https://updog.finance", + "description": "UPDOG is a charity focused auto-yielding deflationary token on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x400613f184d1207f5c07a67d67040a4e23e92feb", + "type": "BEP20", + "symbol": "UPDOG", + "decimals": 9, + "status": "active", + "id": "0x400613f184D1207f5C07a67D67040A4e23E92feB" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x400613f184D1207f5C07a67D67040A4e23E92feB/logo.png b/blockchains/smartchain/assets/0x400613f184D1207f5C07a67D67040A4e23E92feB/logo.png new file mode 100644 index 00000000..b875d078 Binary files /dev/null and b/blockchains/smartchain/assets/0x400613f184D1207f5C07a67D67040A4e23E92feB/logo.png differ diff --git a/blockchains/smartchain/assets/0x400F1e257f86D25578A0928C94dC95115F09d5c9/info.json b/blockchains/smartchain/assets/0x400F1e257f86D25578A0928C94dC95115F09d5c9/info.json new file mode 100644 index 00000000..a9a14165 --- /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 00000000..d82ddf5a 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 00000000..fb01f7b2 --- /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 00000000..418f5a81 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 00000000..94dc58d9 --- /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 00000000..ac43993a Binary files /dev/null and b/blockchains/smartchain/assets/0x4022Dd5745D1F3E2Ce96b4659656aD3fF7CFcF19/logo.png differ diff --git a/blockchains/smartchain/assets/0x40300e0045239Fe76Cd07251313f923B29df1e55/info.json b/blockchains/smartchain/assets/0x40300e0045239Fe76Cd07251313f923B29df1e55/info.json new file mode 100644 index 00000000..113845dd --- /dev/null +++ b/blockchains/smartchain/assets/0x40300e0045239Fe76Cd07251313f923B29df1e55/info.json @@ -0,0 +1,11 @@ +{ + "name": "RiseofNebula", + "website": "https://www.riseofnebula.com/", + "description": "A Proprietary, Hyper Deflationary Token! RON token holders are not only rewarded through static rewards but also through true automatic burns every trade from within the liquidity pool!.", + "explorer": "https://bscscan.com/token/0x40300e0045239fe76cd07251313f923b29df1e55", + "type": "BEP20", + "symbol": "RON", + "decimals": 9, + "status": "active", + "id": "0x40300e0045239Fe76Cd07251313f923B29df1e55" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40300e0045239Fe76Cd07251313f923B29df1e55/logo.png b/blockchains/smartchain/assets/0x40300e0045239Fe76Cd07251313f923B29df1e55/logo.png new file mode 100644 index 00000000..43e41f5b Binary files /dev/null and b/blockchains/smartchain/assets/0x40300e0045239Fe76Cd07251313f923B29df1e55/logo.png differ diff --git a/blockchains/smartchain/assets/0x405F38B90beBF1259062CF29Da299f3398662bcb/info.json b/blockchains/smartchain/assets/0x405F38B90beBF1259062CF29Da299f3398662bcb/info.json new file mode 100644 index 00000000..ef4b7216 --- /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 00000000..ab951412 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 00000000..ff77118e --- /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 new file mode 100644 index 00000000..d35d884f --- /dev/null +++ b/blockchains/smartchain/assets/0x40619dc9F00ea34e51D96b6EC5d8a6aD75457434/info.json @@ -0,0 +1,49 @@ +{ + "name": "1Doge", + "type": "BEP20", + "symbol": "1DOGE", + "decimals": 18, + "website": "https://1doge.io", + "description": "1Doge is building a comprehensive platform with Static reflection and play to earn gaming mechanisms to enable gamers from all over the world experience Gaming and NFT on the blockchain. ", + "explorer": "https://bscscan.com/token/0x40619dc9F00ea34e51D96b6EC5d8a6aD75457434", + "status": "active", + "id": "0x40619dc9F00ea34e51D96b6EC5d8a6aD75457434", + "links": [ + { + "name": "x", + "url": "https://x.com/1dogeBSC" + }, + { + "name": "github", + "url": "https://github.com/MiniPadLaunchpad/1doge" + }, + { + "name": "telegram", + "url": "https://t.me/OneDogeGroup" + }, + { + "name": "telegram_news", + "url": "https://t.me/OneDogeAnn" + }, + { + "name": "whitepaper", + "url": "https://docs.1doge.io/" + }, + { + "name": "medium", + "url": "https://onedogefinance.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCf5H5967XWppQA0WA6qcTsA" + }, + { + "name": "facebook", + "url": "https://facebook.com/1dogebsc" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/1doge" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40619dc9F00ea34e51D96b6EC5d8a6aD75457434/logo.png b/blockchains/smartchain/assets/0x40619dc9F00ea34e51D96b6EC5d8a6aD75457434/logo.png new file mode 100644 index 00000000..47f32334 Binary files /dev/null and b/blockchains/smartchain/assets/0x40619dc9F00ea34e51D96b6EC5d8a6aD75457434/logo.png differ diff --git a/blockchains/smartchain/assets/0x406c3ed15D4537DD23870260cad503B591fF1b31/info.json b/blockchains/smartchain/assets/0x406c3ed15D4537DD23870260cad503B591fF1b31/info.json new file mode 100644 index 00000000..76d75064 --- /dev/null +++ b/blockchains/smartchain/assets/0x406c3ed15D4537DD23870260cad503B591fF1b31/info.json @@ -0,0 +1,21 @@ +{ + "name": "social NFT ", + "type": "BEP20", + "symbol": "SNFT", + "decimals": 18, + "website": "https://socialnft.market/", + "description": "SOCIAL NFT is a BNB based NFT (non-fungible token) platform for social media personalities who want to create digital collectibles of their likeness. Secured with blockchain technology.", + "explorer": "https://bscscan.com/token/0x406c3ed15D4537DD23870260cad503B591fF1b31", + "status": "active", + "id": "0x406c3ed15D4537DD23870260cad503B591fF1b31", + "links": [ + { + "name": "x", + "url": "https://x.com/NftSocial" + }, + { + "name": "telegram", + "url": "https://t.me/SocialNFT/82" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x406c3ed15D4537DD23870260cad503B591fF1b31/logo.png b/blockchains/smartchain/assets/0x406c3ed15D4537DD23870260cad503B591fF1b31/logo.png new file mode 100644 index 00000000..3ac35c1e Binary files /dev/null and b/blockchains/smartchain/assets/0x406c3ed15D4537DD23870260cad503B591fF1b31/logo.png differ diff --git a/blockchains/smartchain/assets/0x40755F06aB7F8dE1ab3a9413b1ef562d63DE19B1/info.json b/blockchains/smartchain/assets/0x40755F06aB7F8dE1ab3a9413b1ef562d63DE19B1/info.json new file mode 100644 index 00000000..99e67461 --- /dev/null +++ b/blockchains/smartchain/assets/0x40755F06aB7F8dE1ab3a9413b1ef562d63DE19B1/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Russell 1000 Growth ETF (Ondo Tokenized)", + "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 00000000..8adf5788 Binary files /dev/null and b/blockchains/smartchain/assets/0x40755F06aB7F8dE1ab3a9413b1ef562d63DE19B1/logo.png differ diff --git a/blockchains/smartchain/assets/0x4090e535F2e251F5F88518998B18b54d26B3b07c/info.json b/blockchains/smartchain/assets/0x4090e535F2e251F5F88518998B18b54d26B3b07c/info.json new file mode 100644 index 00000000..18ab3feb --- /dev/null +++ b/blockchains/smartchain/assets/0x4090e535F2e251F5F88518998B18b54d26B3b07c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Typhoon Network", + "website": "https://typhoon.network", + "description": "Typhoon is a zero-knowledge protocol that enables users to send private transactions between 2 BSC wallets by utilizing zkSNARK-based cryptography. By using Typhoon to transfer funds, it is no longer possible to determine who sent the transaction in the first place, thus providing anonymity and privacy ontop of an otherwise public blockchain.", + "explorer": "https://bscscan.com/token/0x4090e535F2e251F5F88518998B18b54d26B3b07c", + "type": "BEP20", + "symbol": "TYPH", + "decimals": 18, + "status": "active", + "id": "0x4090e535F2e251F5F88518998B18b54d26B3b07c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4090e535F2e251F5F88518998B18b54d26B3b07c/logo.png b/blockchains/smartchain/assets/0x4090e535F2e251F5F88518998B18b54d26B3b07c/logo.png new file mode 100644 index 00000000..438b5206 Binary files /dev/null and b/blockchains/smartchain/assets/0x4090e535F2e251F5F88518998B18b54d26B3b07c/logo.png differ diff --git a/blockchains/smartchain/assets/0x40929FB2008c830731A3d972950bC13f70161c75/info.json b/blockchains/smartchain/assets/0x40929FB2008c830731A3d972950bC13f70161c75/info.json new file mode 100644 index 00000000..c7750064 --- /dev/null +++ b/blockchains/smartchain/assets/0x40929FB2008c830731A3d972950bC13f70161c75/info.json @@ -0,0 +1,12 @@ +{ + "name": "Tuna", + "website": "https://swaptuna.com/", + "description": "Yield Farming with Liquidity & Decentralized Exchange with Automatic Market Making on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x40929FB2008c830731A3d972950bC13f70161c75", + "research": "", + "type": "BEP20", + "symbol": "TUNA", + "decimals": 18, + "status": "active", + "id": "0x40929FB2008c830731A3d972950bC13f70161c75" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40929FB2008c830731A3d972950bC13f70161c75/logo.png b/blockchains/smartchain/assets/0x40929FB2008c830731A3d972950bC13f70161c75/logo.png new file mode 100644 index 00000000..39e604e3 Binary files /dev/null and b/blockchains/smartchain/assets/0x40929FB2008c830731A3d972950bC13f70161c75/logo.png differ diff --git a/blockchains/smartchain/assets/0x40B165Fd5dDc75ad0bDDc9ADd0adAbff5431a975/info.json b/blockchains/smartchain/assets/0x40B165Fd5dDc75ad0bDDc9ADd0adAbff5431a975/info.json new file mode 100644 index 00000000..fa7a3b3f --- /dev/null +++ b/blockchains/smartchain/assets/0x40B165Fd5dDc75ad0bDDc9ADd0adAbff5431a975/info.json @@ -0,0 +1,24 @@ +{ + "name": "Memes Token", + "website": "https://memestoken.com", + "description": "MEMES token is the utility currency of the first decentralized MEME nft marketplace and social network .", + "explorer": "https://bscscan.com/token/0x40B165Fd5dDc75ad0bDDc9ADd0adAbff5431a975", + "type": "BEP20", + "symbol": "MEMES", + "decimals": 9, + "status": "active", + "id": "0x40B165Fd5dDc75ad0bDDc9ADd0adAbff5431a975", + "links": [ + { + "name": "x", + "url": "https://x.com/https://x.com/" + }, + { + "name": "github", + "url": "https://github.com/Flokigangster" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40B165Fd5dDc75ad0bDDc9ADd0adAbff5431a975/logo.png b/blockchains/smartchain/assets/0x40B165Fd5dDc75ad0bDDc9ADd0adAbff5431a975/logo.png new file mode 100644 index 00000000..1b5983df Binary files /dev/null and b/blockchains/smartchain/assets/0x40B165Fd5dDc75ad0bDDc9ADd0adAbff5431a975/logo.png differ diff --git a/blockchains/smartchain/assets/0x40B34cC972908060D6d527276e17c105d224559d/info.json b/blockchains/smartchain/assets/0x40B34cC972908060D6d527276e17c105d224559d/info.json new file mode 100644 index 00000000..39923b5d --- /dev/null +++ b/blockchains/smartchain/assets/0x40B34cC972908060D6d527276e17c105d224559d/info.json @@ -0,0 +1,21 @@ +{ + "name": "TreeDefi", + "type": "BEP20", + "symbol": "SEED", + "decimals": 18, + "website": "https://treedefi.com/", + "description": "TreeDefi is a Yield Farming project focused on deflationary tokenomics through a capped token named TREE and an uncapped deflationary token named SEED.", + "explorer": "https://bscscan.com/token/0x40b34cc972908060d6d527276e17c105d224559d", + "status": "active", + "id": "0x40B34cC972908060D6d527276e17c105d224559d", + "links": [ + { + "name": "x", + "url": "https://x.com/treedefi" + }, + { + "name": "telegram", + "url": "https://t.me/treedefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40B34cC972908060D6d527276e17c105d224559d/logo.png b/blockchains/smartchain/assets/0x40B34cC972908060D6d527276e17c105d224559d/logo.png new file mode 100644 index 00000000..ae619b2c Binary files /dev/null and b/blockchains/smartchain/assets/0x40B34cC972908060D6d527276e17c105d224559d/logo.png differ diff --git a/blockchains/smartchain/assets/0x40C8225329Bd3e28A043B029E0D07a5344d2C27C/info.json b/blockchains/smartchain/assets/0x40C8225329Bd3e28A043B029E0D07a5344d2C27C/info.json new file mode 100644 index 00000000..dcbf0e75 --- /dev/null +++ b/blockchains/smartchain/assets/0x40C8225329Bd3e28A043B029E0D07a5344d2C27C/info.json @@ -0,0 +1,29 @@ +{ + "name": "AgeOfGods", + "type": "BEP20", + "symbol": "AOG", + "decimals": 18, + "website": "https://ageofgods.net", + "description": "AgeOfGods is an AFKArena inspired game that uses the fundamentals of the 6.6 million‼️ player game combining it with Token economy and Play-to-Earn.", + "explorer": "https://bscscan.com/token/0x40c8225329bd3e28a043b029e0d07a5344d2c27c", + "status": "active", + "id": "0x40C8225329Bd3e28A043B029E0D07a5344d2C27C", + "links": [ + { + "name": "x", + "url": "https://x.com/ageofgodsnet" + }, + { + "name": "telegram", + "url": "https://t.me/ageofgodsnet" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ageofgods/" + } + ], + "tags": [ + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40C8225329Bd3e28A043B029E0D07a5344d2C27C/logo.png b/blockchains/smartchain/assets/0x40C8225329Bd3e28A043B029E0D07a5344d2C27C/logo.png new file mode 100644 index 00000000..ad671362 Binary files /dev/null and b/blockchains/smartchain/assets/0x40C8225329Bd3e28A043B029E0D07a5344d2C27C/logo.png differ diff --git a/blockchains/smartchain/assets/0x40F75eD09c7Bc89Bf596cE0fF6FB2ff8D02aC019/info.json b/blockchains/smartchain/assets/0x40F75eD09c7Bc89Bf596cE0fF6FB2ff8D02aC019/info.json new file mode 100644 index 00000000..7af1084a --- /dev/null +++ b/blockchains/smartchain/assets/0x40F75eD09c7Bc89Bf596cE0fF6FB2ff8D02aC019/info.json @@ -0,0 +1,33 @@ +{ + "name": "Bitpaid", + "website": "https://bitpaid.io/", + "description": "Bitpaid is next generation Web3 and Dapp platform for social and gaming networking which provides Sas services.", + "explorer": "https://bscscan.com/token/0x40F75eD09c7Bc89Bf596cE0fF6FB2ff8D02aC019", + "symbol": "BTP", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x40F75eD09c7Bc89Bf596cE0fF6FB2ff8D02aC019", + "tags": [ + "defi", + "gamefi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/Bitpaid1" + }, + { + "name": "whitepaper", + "url": "https://bitpaid.io/wp-content/uploads/2022/01/BITPAID-WHITEPAPER1.0.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/bitpaid.io/" + }, + { + "name": "telegram", + "url": "https://t.me/BitpaidOnline" + } + ] +} diff --git a/blockchains/smartchain/assets/0x40F75eD09c7Bc89Bf596cE0fF6FB2ff8D02aC019/logo.png b/blockchains/smartchain/assets/0x40F75eD09c7Bc89Bf596cE0fF6FB2ff8D02aC019/logo.png new file mode 100644 index 00000000..af2045b7 Binary files /dev/null and b/blockchains/smartchain/assets/0x40F75eD09c7Bc89Bf596cE0fF6FB2ff8D02aC019/logo.png differ diff --git a/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/info.json b/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/info.json new file mode 100644 index 00000000..97b70c6d --- /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 00000000..47736bb7 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 00000000..4fb9cae0 --- /dev/null +++ b/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/info.json @@ -0,0 +1,37 @@ +{ + "name": "BNB pegged 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 00000000..0ae677cd 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 00000000..2370ff7c --- /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 00000000..69da34d6 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 00000000..b359683a --- /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 00000000..a5f31dea --- /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 00000000..a69ab9f4 Binary files /dev/null and b/blockchains/smartchain/assets/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6/logo.png differ diff --git a/blockchains/smartchain/assets/0x410319197d3394652B7ddDc669E58fbe30B56090/info.json b/blockchains/smartchain/assets/0x410319197d3394652B7ddDc669E58fbe30B56090/info.json new file mode 100644 index 00000000..734e3bee --- /dev/null +++ b/blockchains/smartchain/assets/0x410319197d3394652B7ddDc669E58fbe30B56090/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cyber Time Finance", + "symbol": "CTF", + "type": "BEP20", + "decimals": 18, + "description": "NFT Fantasy League", + "website": "https://cybertime.finance/", + "explorer": "https://bscscan.com/token/0x410319197d3394652B7ddDc669E58fbe30B56090", + "status": "active", + "id": "0x410319197d3394652B7ddDc669E58fbe30B56090" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x410319197d3394652B7ddDc669E58fbe30B56090/logo.png b/blockchains/smartchain/assets/0x410319197d3394652B7ddDc669E58fbe30B56090/logo.png new file mode 100644 index 00000000..4489c203 Binary files /dev/null and b/blockchains/smartchain/assets/0x410319197d3394652B7ddDc669E58fbe30B56090/logo.png differ diff --git a/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/info.json b/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/info.json new file mode 100644 index 00000000..2b7a6aee --- /dev/null +++ b/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/info.json @@ -0,0 +1,49 @@ +{ + "name": "Minto", + "type": "BEP20", + "symbol": "BTCMT", + "decimals": 18, + "website": "https://minto.finance/", + "description": "BTCMT tokens are backed by a real mining equipment hashrate in a 100 BTCMT = 1 TH/s ratio. Minto allows users to get daily Bitcoin income by staking BTCMT tokens.", + "explorer": "https://bscscan.com/token/0x410a56541bD912F9B60943fcB344f1E3D6F09567", + "status": "active", + "id": "0x410a56541bD912F9B60943fcB344f1E3D6F09567", + "links": [ + { + "name": "x", + "url": "https://x.com/btcmtofficial" + }, + { + "name": "telegram", + "url": "https://t.me/btcmtofficialchat" + }, + { + "name": "telegram_news", + "url": "https://t.me/btcmtofficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/minto" + }, + { + "name": "blog", + "url": "https://minto.finance/blog" + }, + { + "name": "docs", + "url": "https://docs.minto.finance/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/minto/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/minto" + } + ], + "tags": [ + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/logo.png b/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/logo.png new file mode 100644 index 00000000..7cebaade Binary files /dev/null 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 new file mode 100644 index 00000000..68c87896 --- /dev/null +++ b/blockchains/smartchain/assets/0x411Ec510c85C9e56271bF4E10364Ffa909E685D9/info.json @@ -0,0 +1,41 @@ +{ + "name": "Moniwar", + "type": "BEP20", + "symbol": "MOWA", + "decimals": 18, + "website": "https://moniwar.io/", + "description": "MOWA token is a utility token that was issued by Moniwar development team.", + "explorer": "https://bscscan.com/token/0x411Ec510c85C9e56271bF4E10364Ffa909E685D9", + "status": "active", + "id": "0x411Ec510c85C9e56271bF4E10364Ffa909E685D9", + "links": [ + { + "name": "x", + "url": "https://x.com/moniwar_game" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/vi/ty_gia/moniwar" + }, + { + "name": "whitepaper", + "url": "https://docs.moniwar.io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moniwar/" + }, + { + "name": "facebook", + "url": "https://facebook.com/MoniwarOfficial/" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/MoniwarOfficial" + }, + { + "name": "discord", + "url": "https://discord.com/yUWKW9cY" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x411Ec510c85C9e56271bF4E10364Ffa909E685D9/logo.png b/blockchains/smartchain/assets/0x411Ec510c85C9e56271bF4E10364Ffa909E685D9/logo.png new file mode 100644 index 00000000..9c2b009a Binary files /dev/null and b/blockchains/smartchain/assets/0x411Ec510c85C9e56271bF4E10364Ffa909E685D9/logo.png differ diff --git a/blockchains/smartchain/assets/0x4131b87F74415190425ccD873048C708F8005823/info.json b/blockchains/smartchain/assets/0x4131b87F74415190425ccD873048C708F8005823/info.json new file mode 100644 index 00000000..3f65c6ed --- /dev/null +++ b/blockchains/smartchain/assets/0x4131b87F74415190425ccD873048C708F8005823/info.json @@ -0,0 +1,25 @@ +{ + "name": "Multiplier Token", + "website": "https://multiplier.finance", + "description": "Multiplier is a non-custodial lending protocol on Binance Smart Chain with flash loans.", + "explorer": "https://bscscan.com/token/0x4131b87f74415190425ccd873048c708f8005823", + "type": "BEP20", + "symbol": "bMXX", + "decimals": 18, + "status": "active", + "id": "0x4131b87F74415190425ccD873048C708F8005823", + "links": [ + { + "name": "github", + "url": "https://github.com/Multiplier-Finance" + }, + { + "name": "x", + "url": "https://x.com/MultiplierMXX" + }, + { + "name": "telegram", + "url": "https://t.me/themultiplierio" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4131b87F74415190425ccD873048C708F8005823/logo.png b/blockchains/smartchain/assets/0x4131b87F74415190425ccD873048C708F8005823/logo.png new file mode 100644 index 00000000..20879cde Binary files /dev/null and b/blockchains/smartchain/assets/0x4131b87F74415190425ccD873048C708F8005823/logo.png differ diff --git a/blockchains/smartchain/assets/0x413EcA30181F7eD78De38da95F44fC53F664157A/info.json b/blockchains/smartchain/assets/0x413EcA30181F7eD78De38da95F44fC53F664157A/info.json new file mode 100644 index 00000000..eb11b762 --- /dev/null +++ b/blockchains/smartchain/assets/0x413EcA30181F7eD78De38da95F44fC53F664157A/info.json @@ -0,0 +1,21 @@ +{ + "name": "SonOfShib", + "website": "https://www.sonofshib.com/", + "description": "SON aims to build a sustainable, long term token bringing innovative ideas into the crypto space.", + "explorer": "https://bscscan.com/token/0x413eca30181f7ed78de38da95f44fc53f664157a", + "type": "BEP20", + "symbol": "SON", + "decimals": 9, + "status": "active", + "id": "0x413EcA30181F7eD78De38da95F44fC53F664157A", + "links": [ + { + "name": "x", + "url": "https://x.com/SONOfSHIB" + }, + { + "name": "telegram", + "url": "https://t.me/SONOfSHIB" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x413EcA30181F7eD78De38da95F44fC53F664157A/logo.png b/blockchains/smartchain/assets/0x413EcA30181F7eD78De38da95F44fC53F664157A/logo.png new file mode 100644 index 00000000..7e228a19 Binary files /dev/null and b/blockchains/smartchain/assets/0x413EcA30181F7eD78De38da95F44fC53F664157A/logo.png differ diff --git a/blockchains/smartchain/assets/0x41540ba32dB90269Bb72A7bE1D4b1eE18F5544f1/info.json b/blockchains/smartchain/assets/0x41540ba32dB90269Bb72A7bE1D4b1eE18F5544f1/info.json new file mode 100644 index 00000000..3f765460 --- /dev/null +++ b/blockchains/smartchain/assets/0x41540ba32dB90269Bb72A7bE1D4b1eE18F5544f1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Flat Earth Token", + "type": "BEP20", + "symbol": "FLAT", + "decimals": 18, + "website": "https://flatearthtoken.com/", + "description": "A peer to peer Internet currency of Flat Earth.", + "explorer": "https://bscscan.com/token/0x41540ba32dB90269Bb72A7bE1D4b1eE18F5544f1", + "status": "active", + "id": "0x41540ba32dB90269Bb72A7bE1D4b1eE18F5544f1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x41540ba32dB90269Bb72A7bE1D4b1eE18F5544f1/logo.png b/blockchains/smartchain/assets/0x41540ba32dB90269Bb72A7bE1D4b1eE18F5544f1/logo.png new file mode 100644 index 00000000..699e89b7 Binary files /dev/null and b/blockchains/smartchain/assets/0x41540ba32dB90269Bb72A7bE1D4b1eE18F5544f1/logo.png differ diff --git a/blockchains/smartchain/assets/0x4177D16A5d2465CF4bd52E07c1c56ab500243FD4/info.json b/blockchains/smartchain/assets/0x4177D16A5d2465CF4bd52E07c1c56ab500243FD4/info.json new file mode 100644 index 00000000..454b84da --- /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 00000000..1adecf1e 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 new file mode 100644 index 00000000..7a9f755b --- /dev/null +++ b/blockchains/smartchain/assets/0x4197C6EF3879a08cD51e5560da5064B773aa1d29/info.json @@ -0,0 +1,30 @@ +{ + "name": "ACryptoS", + "website": "https://acryptos.com/", + "description": "ACryptoS Vaults grow your assets via automated yield Strategies. This saves users time and enables higher yields through more frequent compounding, more efficient gas utilisation, and other creative automations. ACryptoS StableSwap is an automated market maker (AMM) enabling fast and efficient stablecoin trading at the best prices with low slippage and fees on Binance Smart Chain.", + "research": "https://docs.acryptos.com/", + "explorer": "https://bscscan.com/token/0x4197c6ef3879a08cd51e5560da5064b773aa1d29", + "type": "BEP20", + "symbol": "ACS", + "decimals": 18, + "status": "active", + "id": "0x4197C6EF3879a08cD51e5560da5064B773aa1d29", + "links": [ + { + "name": "source_code", + "url": "https://app.acryptos.com/contracts/" + }, + { + "name": "x", + "url": "https://x.com/acryptosx" + }, + { + "name": "telegram", + "url": "https://t.me/acryptos9" + }, + { + "name": "medium", + "url": "https://acryptos.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4197C6EF3879a08cD51e5560da5064B773aa1d29/logo.png b/blockchains/smartchain/assets/0x4197C6EF3879a08cD51e5560da5064B773aa1d29/logo.png new file mode 100644 index 00000000..179352b1 Binary files /dev/null and b/blockchains/smartchain/assets/0x4197C6EF3879a08cD51e5560da5064B773aa1d29/logo.png differ diff --git a/blockchains/smartchain/assets/0x41AA9F842AF935cC71252C0dE4BFF13F821546b8/info.json b/blockchains/smartchain/assets/0x41AA9F842AF935cC71252C0dE4BFF13F821546b8/info.json new file mode 100644 index 00000000..2ecc3d92 --- /dev/null +++ b/blockchains/smartchain/assets/0x41AA9F842AF935cC71252C0dE4BFF13F821546b8/info.json @@ -0,0 +1,11 @@ +{ + "name": "SUGAR", + "type": "BEP20", + "symbol": "SUGAR", + "decimals": 18, + "website": "https://tea-swap-app.finance/", + "description": "The first Social Farming Project on BSC", + "explorer": "https://bscscan.com/token/0x41AA9F842AF935cC71252C0dE4BFF13F821546b8", + "status": "active", + "id": "0x41AA9F842AF935cC71252C0dE4BFF13F821546b8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x41AA9F842AF935cC71252C0dE4BFF13F821546b8/logo.png b/blockchains/smartchain/assets/0x41AA9F842AF935cC71252C0dE4BFF13F821546b8/logo.png new file mode 100644 index 00000000..368a27d6 Binary files /dev/null and b/blockchains/smartchain/assets/0x41AA9F842AF935cC71252C0dE4BFF13F821546b8/logo.png differ diff --git a/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json new file mode 100644 index 00000000..4d0a5a38 --- /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 00000000..6876a666 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 new file mode 100644 index 00000000..f32961da --- /dev/null +++ b/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/info.json @@ -0,0 +1,25 @@ +{ + "name": "GamingShiba", + "type": "BEP20", + "symbol": "GamingShiba", + "decimals": 9, + "website": "https://www.gamingshibaofficial.com", + "description": "The modern technology and contemporary ambient that the internet created can not be imagined to function as a whole without crypto-currency.", + "explorer": "https://bscscan.com/token/0x41cf3E9534156405a133Cda545aF9fF0E586500A", + "status": "abandoned", + "id": "0x41cf3E9534156405a133Cda545aF9fF0E586500A", + "links": [ + { + "name": "x", + "url": "https://x.com/gamingshibabsc" + }, + { + "name": "telegram", + "url": "https://t.me/gamingshibabsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamingshiba/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x42069C0CF4DA25420fC4C9d9001ba5af7846CCfd/info.json b/blockchains/smartchain/assets/0x42069C0CF4DA25420fC4C9d9001ba5af7846CCfd/info.json new file mode 100644 index 00000000..ded59566 --- /dev/null +++ b/blockchains/smartchain/assets/0x42069C0CF4DA25420fC4C9d9001ba5af7846CCfd/info.json @@ -0,0 +1,14 @@ +{ + "name": "Goes Up Higher", + "type": "BEP20", + "symbol": "GUH", + "decimals": 9, + "website": "https://guhtoken.org/", + "description": "GUH (Goes Up Higher) is an elastic supply token that is mathematically guaranteed to increase in price until it exceeds the price of bitcoin", + "explorer": "https://bscscan.com/token/0x42069C0CF4DA25420fC4C9d9001ba5af7846CCfd", + "status": "active", + "id": "0x42069C0CF4DA25420fC4C9d9001ba5af7846CCfd", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x42069C0CF4DA25420fC4C9d9001ba5af7846CCfd/logo.png b/blockchains/smartchain/assets/0x42069C0CF4DA25420fC4C9d9001ba5af7846CCfd/logo.png new file mode 100644 index 00000000..40606b6a Binary files /dev/null and b/blockchains/smartchain/assets/0x42069C0CF4DA25420fC4C9d9001ba5af7846CCfd/logo.png differ diff --git a/blockchains/smartchain/assets/0x422E3aF98bC1dE5a1838BE31A56f75DB4Ad43730/info.json b/blockchains/smartchain/assets/0x422E3aF98bC1dE5a1838BE31A56f75DB4Ad43730/info.json new file mode 100644 index 00000000..0632440c --- /dev/null +++ b/blockchains/smartchain/assets/0x422E3aF98bC1dE5a1838BE31A56f75DB4Ad43730/info.json @@ -0,0 +1,21 @@ +{ + "name": "COW", + "website": "https://www.coinwind.pro/", + "description": "COW is the platform token of CoinWind. CoinWind is a DeFi ecological smart mining financial platform.", + "explorer": "https://bscscan.com/token/0x422E3aF98bC1dE5a1838BE31A56f75DB4Ad43730", + "type": "BEP20", + "symbol": "COW", + "decimals": 18, + "status": "active", + "id": "0x422E3aF98bC1dE5a1838BE31A56f75DB4Ad43730", + "links": [ + { + "name": "x", + "url": "https://x.com/coinwind_com" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinwind/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x422E3aF98bC1dE5a1838BE31A56f75DB4Ad43730/logo.png b/blockchains/smartchain/assets/0x422E3aF98bC1dE5a1838BE31A56f75DB4Ad43730/logo.png new file mode 100644 index 00000000..b501bdde Binary files /dev/null and b/blockchains/smartchain/assets/0x422E3aF98bC1dE5a1838BE31A56f75DB4Ad43730/logo.png differ diff --git a/blockchains/smartchain/assets/0x422cBee1289AAE4422eDD8fF56F6578701Bb2878/info.json b/blockchains/smartchain/assets/0x422cBee1289AAE4422eDD8fF56F6578701Bb2878/info.json new file mode 100644 index 00000000..172e4e8e --- /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 00000000..e5389bb5 Binary files /dev/null and b/blockchains/smartchain/assets/0x422cBee1289AAE4422eDD8fF56F6578701Bb2878/logo.png differ diff --git a/blockchains/smartchain/assets/0x4247aeB8E759e575Fe350921cD174C48df304F2A/info.json b/blockchains/smartchain/assets/0x4247aeB8E759e575Fe350921cD174C48df304F2A/info.json new file mode 100644 index 00000000..b27a6ca4 --- /dev/null +++ b/blockchains/smartchain/assets/0x4247aeB8E759e575Fe350921cD174C48df304F2A/info.json @@ -0,0 +1,12 @@ +{ + "name": "AEDART Network", + "website": "https://aedart.network", + "description": "AEDART is a community-driven project which has a deflationary mechanism.", + "explorer": "https://bscscan.com/token/0x4247aeB8E759e575Fe350921cD174C48df304F2A", + "research": "", + "type": "BEP20", + "symbol": "AEDART", + "decimals": 18, + "status": "active", + "id": "0x4247aeB8E759e575Fe350921cD174C48df304F2A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4247aeB8E759e575Fe350921cD174C48df304F2A/logo.png b/blockchains/smartchain/assets/0x4247aeB8E759e575Fe350921cD174C48df304F2A/logo.png new file mode 100644 index 00000000..91d64ba4 Binary files /dev/null and b/blockchains/smartchain/assets/0x4247aeB8E759e575Fe350921cD174C48df304F2A/logo.png differ diff --git a/blockchains/smartchain/assets/0x4255279aF47cf10eFB9A5C8839F90170F4EF759f/info.json b/blockchains/smartchain/assets/0x4255279aF47cf10eFB9A5C8839F90170F4EF759f/info.json new file mode 100644 index 00000000..0ecf2d3d --- /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 00000000..f424f8b4 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 new file mode 100644 index 00000000..46dc300a --- /dev/null +++ b/blockchains/smartchain/assets/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3/info.json @@ -0,0 +1,68 @@ +{ + "name": "Axelar Wrapped USDC", + "type": "BEP20", + "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://bscscan.com/token/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3", + "status": "active", + "id": "0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3", + "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/smartchain/assets/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3/logo.png b/blockchains/smartchain/assets/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3/logo.png new file mode 100644 index 00000000..69911cae Binary files /dev/null and b/blockchains/smartchain/assets/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3/logo.png differ diff --git a/blockchains/smartchain/assets/0x426D6D53187be3288fe37f214e3F6901D8145b62/info.json b/blockchains/smartchain/assets/0x426D6D53187be3288fe37f214e3F6901D8145b62/info.json new file mode 100644 index 00000000..1358b86b --- /dev/null +++ b/blockchains/smartchain/assets/0x426D6D53187be3288fe37f214e3F6901D8145b62/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream Cream", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x426D6D53187be3288fe37f214e3F6901D8145b62", + "type": "BEP20", + "symbol": "crCREAM", + "decimals": 8, + "status": "active", + "id": "0x426D6D53187be3288fe37f214e3F6901D8145b62", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x426D6D53187be3288fe37f214e3F6901D8145b62/logo.png b/blockchains/smartchain/assets/0x426D6D53187be3288fe37f214e3F6901D8145b62/logo.png new file mode 100644 index 00000000..fa3cb12c Binary files /dev/null and b/blockchains/smartchain/assets/0x426D6D53187be3288fe37f214e3F6901D8145b62/logo.png differ diff --git a/blockchains/smartchain/assets/0x426c72701833fdDBdFc06c944737C6031645c708/info.json b/blockchains/smartchain/assets/0x426c72701833fdDBdFc06c944737C6031645c708/info.json new file mode 100644 index 00000000..4692a3f9 --- /dev/null +++ b/blockchains/smartchain/assets/0x426c72701833fdDBdFc06c944737C6031645c708/info.json @@ -0,0 +1,56 @@ +{ + "name": "Defina Token", + "type": "BEP20", + "symbol": "FINA", + "decimals": 18, + "website": "https://defina.finance/", + "description": "FINA is BEP-20 governance and utility token for the Defina Metaverse ecosystem. There are multiple use cases for FINA and it plays a very important role in both gaming and community governance.", + "explorer": "https://bscscan.com/token/0x426c72701833fddbdfc06c944737c6031645c708", + "status": "active", + "id": "0x426c72701833fdDBdFc06c944737C6031645c708", + "links": [ + { + "name": "x", + "url": "https://x.com/Defina_Official" + }, + { + "name": "telegram", + "url": "https://t.me/definafinance1" + }, + { + "name": "telegram_news", + "url": "https://t.me/Defina_announcement" + }, + { + "name": "blog", + "url": "https://defina-finance.medium.com/" + }, + { + "name": "docs", + "url": "https://docs.defina.finance/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/rBecngEFnu" + }, + { + "name": "whitepaper", + "url": "https://docs.defina.finance/" + }, + { + "name": "medium", + "url": "https://defina-finance.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defina-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/defina-finance" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x426c72701833fdDBdFc06c944737C6031645c708/logo.png b/blockchains/smartchain/assets/0x426c72701833fdDBdFc06c944737C6031645c708/logo.png new file mode 100644 index 00000000..0325540a Binary files /dev/null and b/blockchains/smartchain/assets/0x426c72701833fdDBdFc06c944737C6031645c708/logo.png differ diff --git a/blockchains/smartchain/assets/0x4273d797Ebc0063d5d887B1e67daD4A43E2Fd244/info.json b/blockchains/smartchain/assets/0x4273d797Ebc0063d5d887B1e67daD4A43E2Fd244/info.json new file mode 100644 index 00000000..540ff170 --- /dev/null +++ b/blockchains/smartchain/assets/0x4273d797Ebc0063d5d887B1e67daD4A43E2Fd244/info.json @@ -0,0 +1,21 @@ +{ + "name": "ProjectPanda", + "website": "https://project-panda.com", + "description": "Project Panda is working as a Socio-NFT platform where the users can exchange NFTs with an exchange protocol that is based on the Binance Smart Chain network..", + "explorer": "https://bscscan.com/token/0x4273d797Ebc0063d5d887B1e67daD4A43E2Fd244", + "type": "BEP20", + "symbol": "PNDA", + "decimals": 18, + "status": "active", + "id": "0x4273d797Ebc0063d5d887B1e67daD4A43E2Fd244", + "links": [ + { + "name": "x", + "url": "https://x.com/projectpanda9" + }, + { + "name": "telegram", + "url": "https://t.me/PNDATalk" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4273d797Ebc0063d5d887B1e67daD4A43E2Fd244/logo.png b/blockchains/smartchain/assets/0x4273d797Ebc0063d5d887B1e67daD4A43E2Fd244/logo.png new file mode 100644 index 00000000..bc65eaa0 Binary files /dev/null and b/blockchains/smartchain/assets/0x4273d797Ebc0063d5d887B1e67daD4A43E2Fd244/logo.png differ diff --git a/blockchains/smartchain/assets/0x42873a833717753A8d77Ad6d0a8710aF2c66c052/info.json b/blockchains/smartchain/assets/0x42873a833717753A8d77Ad6d0a8710aF2c66c052/info.json new file mode 100644 index 00000000..03eaf069 --- /dev/null +++ b/blockchains/smartchain/assets/0x42873a833717753A8d77Ad6d0a8710aF2c66c052/info.json @@ -0,0 +1,11 @@ +{ + "name": "PuffyDogCoin", + "type": "BEP20", + "symbol": "PUFFY", + "decimals": 9, + "website": "https://PuffyDogCoin.com", + "description": "$PUFFY is a hyper deflationary token that is build around the love of animals, cannabis and good music. The community is a place where you can build relationships, safely grow your money while raising awareness on the medicinal benefits of cannabis.", + "explorer": "https://bscscan.com/token/0x42873a833717753A8d77Ad6d0a8710aF2c66c052", + "status": "active", + "id": "0x42873a833717753A8d77Ad6d0a8710aF2c66c052" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x42873a833717753A8d77Ad6d0a8710aF2c66c052/logo.png b/blockchains/smartchain/assets/0x42873a833717753A8d77Ad6d0a8710aF2c66c052/logo.png new file mode 100644 index 00000000..e309bc2c Binary files /dev/null and b/blockchains/smartchain/assets/0x42873a833717753A8d77Ad6d0a8710aF2c66c052/logo.png differ diff --git a/blockchains/smartchain/assets/0x42981d0bfbAf196529376EE702F2a9Eb9092fcB5/info.json b/blockchains/smartchain/assets/0x42981d0bfbAf196529376EE702F2a9Eb9092fcB5/info.json new file mode 100644 index 00000000..197d9cd8 --- /dev/null +++ b/blockchains/smartchain/assets/0x42981d0bfbAf196529376EE702F2a9Eb9092fcB5/info.json @@ -0,0 +1,24 @@ +{ + "name": "SafeMoon V2", + "website": "https://safemoon.net/", + "description": "SafeMoon is a cryptocurrency token created in March 2021 on the Binance Smart Chain blockchain.", + "explorer": "https://bscscan.com/token/0x42981d0bfbAf196529376EE702F2a9Eb9092fcB5", + "type": "BEP20", + "symbol": "SFM", + "decimals": 9, + "status": "active", + "id": "0x42981d0bfbAf196529376EE702F2a9Eb9092fcB5", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "reddit", + "url": "https://reddit.com/r/SafeMoon" + }, + { + "name": "x", + "url": "https://x.com/safemoon" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x42981d0bfbAf196529376EE702F2a9Eb9092fcB5/logo.png b/blockchains/smartchain/assets/0x42981d0bfbAf196529376EE702F2a9Eb9092fcB5/logo.png new file mode 100644 index 00000000..8b0728fd Binary files /dev/null and b/blockchains/smartchain/assets/0x42981d0bfbAf196529376EE702F2a9Eb9092fcB5/logo.png differ diff --git a/blockchains/smartchain/assets/0x4299260f10d7AE857DD877865D0C4aC96aFe773A/info.json b/blockchains/smartchain/assets/0x4299260f10d7AE857DD877865D0C4aC96aFe773A/info.json new file mode 100644 index 00000000..b5b9b70f --- /dev/null +++ b/blockchains/smartchain/assets/0x4299260f10d7AE857DD877865D0C4aC96aFe773A/info.json @@ -0,0 +1,29 @@ +{ + "name": "DiamondsAlaskaMalamute", + "website": "https://alaskatoken.io/", + "description": "DAM is a token used to compensate Alaskainu community. ", + "explorer": "https://bscscan.com/token/0x4299260f10d7ae857dd877865d0c4ac96afe773a", + "type": "BEP20", + "symbol": "DAM", + "decimals": 9, + "status": "active", + "id": "0x4299260f10d7AE857DD877865D0C4aC96aFe773A", + "links": [ + { + "name": "github", + "url": "https://github.com/Alaskatoken" + }, + { + "name": "x", + "url": "https://x.com/AlaskaInu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/diamonds-alaska-malamuted/" + }, + { + "name": "docs", + "url": "https://docs.alaskatoken.io/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4299260f10d7AE857DD877865D0C4aC96aFe773A/logo.png b/blockchains/smartchain/assets/0x4299260f10d7AE857DD877865D0C4aC96aFe773A/logo.png new file mode 100644 index 00000000..1342382a Binary files /dev/null and b/blockchains/smartchain/assets/0x4299260f10d7AE857DD877865D0C4aC96aFe773A/logo.png differ diff --git a/blockchains/smartchain/assets/0x42BE29132756ddd6e8B3B94584cA0bAb20545EEc/info.json b/blockchains/smartchain/assets/0x42BE29132756ddd6e8B3B94584cA0bAb20545EEc/info.json new file mode 100644 index 00000000..feb2c26e --- /dev/null +++ b/blockchains/smartchain/assets/0x42BE29132756ddd6e8B3B94584cA0bAb20545EEc/info.json @@ -0,0 +1,64 @@ +{ + "name": "Bali Token", + "type": "BEP20", + "symbol": "BLI", + "decimals": 18, + "website": "https://www.balitoken.io", + "description": "Bali Token is a utility token for tourism business in Bali, Indonesia", + "explorer": "https://bscscan.com/token/0x42BE29132756ddd6e8B3B94584cA0bAb20545EEc", + "status": "active", + "id": "0x42BE29132756ddd6e8B3B94584cA0bAb20545EEc", + "links": [ + { + "name": "x", + "url": "https://x.com/BaliToken" + }, + { + "name": "github", + "url": "https://github.com/GarudaTech/balitoken" + }, + { + "name": "telegram", + "url": "https://t.me/balitokenpublicgroup" + }, + { + "name": "discord", + "url": "https://discord.com/channels/846968126972493835/846968126972493838" + }, + { + "name": "whitepaper", + "url": "https://balitoken.io/assets/doc/whitePaper-bali-token.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@balitoken" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCDpnz9MmlpjChJ7gRvwEUgQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bali-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/bali-token" + }, + { + "name": "facebook", + "url": "https://facebook.com/bali.token/" + }, + { + "name": "source_code", + "url": "https://github.com/GarudaTech/balitoken" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/BaliToken" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x42BE29132756ddd6e8B3B94584cA0bAb20545EEc/logo.png b/blockchains/smartchain/assets/0x42BE29132756ddd6e8B3B94584cA0bAb20545EEc/logo.png new file mode 100644 index 00000000..0122b066 Binary files /dev/null and b/blockchains/smartchain/assets/0x42BE29132756ddd6e8B3B94584cA0bAb20545EEc/logo.png differ diff --git a/blockchains/smartchain/assets/0x42BFE4A3E023f2C90aEBFfbd9B667599Fa38514F/info.json b/blockchains/smartchain/assets/0x42BFE4A3E023f2C90aEBFfbd9B667599Fa38514F/info.json new file mode 100644 index 00000000..d541c548 --- /dev/null +++ b/blockchains/smartchain/assets/0x42BFE4A3E023f2C90aEBFfbd9B667599Fa38514F/info.json @@ -0,0 +1,45 @@ +{ + "name": "ULTI Coin", + "type": "BEP20", + "symbol": "ULTI", + "decimals": 18, + "website": "https://ultiarena.com/", + "description": "Ulti Arena - NFT Marketplace for Game Assets with Proof of Gaming and Trading Card Game.", + "explorer": "https://bscscan.com/token/0x42BFE4A3E023f2C90aEBFfbd9B667599Fa38514F", + "status": "active", + "id": "0x42BFE4A3E023f2C90aEBFfbd9B667599Fa38514F", + "links": [ + { + "name": "x", + "url": "https://x.com/UltiArena" + }, + { + "name": "telegram", + "url": "https://t.me/ultiarena" + }, + { + "name": "medium", + "url": "https://ulti-arena.medium.com" + }, + { + "name": "whitepaper", + "url": "https://ultiarena.com/wp-content/uploads/2021/09/Ulti-Arena-Whitepaper-2.0-1.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/ultiarenacom" + }, + { + "name": "github", + "url": "https://github.com/ultiarena" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCw77VVcp4VEIwKUiv93qZcA" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ulti-arena" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x42BFE4A3E023f2C90aEBFfbd9B667599Fa38514F/logo.png b/blockchains/smartchain/assets/0x42BFE4A3E023f2C90aEBFfbd9B667599Fa38514F/logo.png new file mode 100644 index 00000000..a1e79023 Binary files /dev/null and b/blockchains/smartchain/assets/0x42BFE4A3E023f2C90aEBFfbd9B667599Fa38514F/logo.png differ diff --git a/blockchains/smartchain/assets/0x42F6f551ae042cBe50C739158b4f0CAC0Edb9096/info.json b/blockchains/smartchain/assets/0x42F6f551ae042cBe50C739158b4f0CAC0Edb9096/info.json new file mode 100644 index 00000000..34cc274a --- /dev/null +++ b/blockchains/smartchain/assets/0x42F6f551ae042cBe50C739158b4f0CAC0Edb9096/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nerve", + "website": "https://nerve.fi/", + "description": "The Nerve token (NRV) is the governance token for the Nerve Finance ecosystem of low slippage stable-swaps and bridged assets from the BSC, Ethereum, and Bitcoin networks", + "explorer": "https://bscscan.com/token/0x42F6f551ae042cBe50C739158b4f0CAC0Edb9096", + "type": "BEP20", + "symbol": "NRV", + "decimals": 18, + "status": "active", + "id": "0x42F6f551ae042cBe50C739158b4f0CAC0Edb9096" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x42F6f551ae042cBe50C739158b4f0CAC0Edb9096/logo.png b/blockchains/smartchain/assets/0x42F6f551ae042cBe50C739158b4f0CAC0Edb9096/logo.png new file mode 100644 index 00000000..63ca82b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x42F6f551ae042cBe50C739158b4f0CAC0Edb9096/logo.png differ diff --git a/blockchains/smartchain/assets/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d/info.json b/blockchains/smartchain/assets/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d/info.json new file mode 100644 index 00000000..86fac472 --- /dev/null +++ b/blockchains/smartchain/assets/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d/info.json @@ -0,0 +1,28 @@ +{ + "name": "Sports 2K75", + "type": "BEP20", + "symbol": "S2K", + "decimals": 9, + "website": "https://www.2k75.online/", + "description": "Sports 2K75 is a Web-3 based Sport-Fi Metaverse, combined with NFTs, De-Fi and gaming platform, users stake sports matches like NBA, Soccer, Esports with our S2E gaming platform.", + "explorer": "https://bscscan.com/token/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d", + "status": "active", + "id": "0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d", + "links": [ + { + "name": "x", + "url": "https://x.com/Sports2k75" + }, + { + "name": "telegram", + "url": "https://t.me/sports2k75" + }, + { + "name": "github", + "url": "https://github.com/Sports2K75" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d/logo.png b/blockchains/smartchain/assets/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d/logo.png new file mode 100644 index 00000000..d73454f1 Binary files /dev/null and b/blockchains/smartchain/assets/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d/logo.png differ diff --git a/blockchains/smartchain/assets/0x42fDd09fcA12359f32E3D36f1700E480Ff6eBb49/info.json b/blockchains/smartchain/assets/0x42fDd09fcA12359f32E3D36f1700E480Ff6eBb49/info.json new file mode 100644 index 00000000..ed4f705b --- /dev/null +++ b/blockchains/smartchain/assets/0x42fDd09fcA12359f32E3D36f1700E480Ff6eBb49/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEG Wrapped XRP", + "symbol": "fXRP", + "type": "BEP20", + "decimals": 18, + "description": "FEG Wrapped XRP", + "website": "https://fegtoken.com", + "explorer": "https://bscscan.com/token/0x42fdd09fca12359f32e3d36f1700e480ff6ebb49", + "status": "active", + "id": "0x42fDd09fcA12359f32E3D36f1700E480Ff6eBb49" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x42fDd09fcA12359f32E3D36f1700E480Ff6eBb49/logo.png b/blockchains/smartchain/assets/0x42fDd09fcA12359f32E3D36f1700E480Ff6eBb49/logo.png new file mode 100644 index 00000000..d8a5aeea Binary files /dev/null and b/blockchains/smartchain/assets/0x42fDd09fcA12359f32E3D36f1700E480Ff6eBb49/logo.png differ diff --git a/blockchains/smartchain/assets/0x43144e099b05Cb7c45054377eAFc8f2ED3B14715/info.json b/blockchains/smartchain/assets/0x43144e099b05Cb7c45054377eAFc8f2ED3B14715/info.json new file mode 100644 index 00000000..20cbb5f7 --- /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 00000000..9652c74c Binary files /dev/null and b/blockchains/smartchain/assets/0x43144e099b05Cb7c45054377eAFc8f2ED3B14715/logo.png differ diff --git a/blockchains/smartchain/assets/0x431e0cD023a32532BF3969CddFc002c00E98429d/info.json b/blockchains/smartchain/assets/0x431e0cD023a32532BF3969CddFc002c00E98429d/info.json new file mode 100644 index 00000000..9fc16cee --- /dev/null +++ b/blockchains/smartchain/assets/0x431e0cD023a32532BF3969CddFc002c00E98429d/info.json @@ -0,0 +1,11 @@ +{ + "name": "XCAD Network", + "type": "BEP20", + "symbol": "XCAD", + "decimals": 18, + "website": "https://xcademytoken.com", + "description": "XCAD network is a tokenisation platform for content creators & their fans. Think CHZ fan tokens but for content creators", + "explorer": "https://bscscan.com/token/0x431e0cD023a32532BF3969CddFc002c00E98429d", + "status": "abandoned", + "id": "0x431e0cD023a32532BF3969CddFc002c00E98429d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x432665A9709593149DAb052FCda7E389122d98ae/info.json b/blockchains/smartchain/assets/0x432665A9709593149DAb052FCda7E389122d98ae/info.json new file mode 100644 index 00000000..03e0c81b --- /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 00000000..9825c331 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 new file mode 100644 index 00000000..31238334 --- /dev/null +++ b/blockchains/smartchain/assets/0x432C7cf1dE2b97a013f1130f199ed9d1363215BA/info.json @@ -0,0 +1,41 @@ +{ + "name": "CryptoGuards", + "type": "BEP20", + "symbol": "CGAR", + "decimals": 18, + "website": "https://cryptoguards.me/", + "description": "CryptoGuards is 3rd project of CryptoCity Metaverse", + "explorer": "https://bscscan.com/token/0x432C7cf1dE2b97a013f1130f199ed9d1363215BA", + "status": "active", + "id": "0x432C7cf1dE2b97a013f1130f199ed9d1363215BA", + "links": [ + { + "name": "x", + "url": "https://x.com/CryptoGuardsNFT" + }, + { + "name": "github", + "url": "https://github.com/cryptocitymetaverse/cryptoguards" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoGuardsChannel" + }, + { + "name": "discord", + "url": "https://discord.com/cryptoguardsNFT" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.cryptoguards.me/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptoguards/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cryptoguards" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x432C7cf1dE2b97a013f1130f199ed9d1363215BA/logo.png b/blockchains/smartchain/assets/0x432C7cf1dE2b97a013f1130f199ed9d1363215BA/logo.png new file mode 100644 index 00000000..b152a5ed Binary files /dev/null and b/blockchains/smartchain/assets/0x432C7cf1dE2b97a013f1130f199ed9d1363215BA/logo.png differ diff --git a/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/info.json b/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/info.json new file mode 100644 index 00000000..12f9db25 --- /dev/null +++ b/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/info.json @@ -0,0 +1,15 @@ +{ + "name": "BNB pegged Litecoin Token", + "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", + "research": "https://research.binance.com/en/projects/litecoin", + "type": "BEP20", + "symbol": "LTC", + "decimals": 18, + "status": "active", + "id": "0x4338665CBB7B2485A8855A139b75D5e34AB0DB94", + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/logo.png b/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/logo.png new file mode 100644 index 00000000..43b784e6 Binary files /dev/null and b/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/logo.png differ diff --git a/blockchains/smartchain/assets/0x4354a4F710182966E55EA30CFa807FA1b821a67b/info.json b/blockchains/smartchain/assets/0x4354a4F710182966E55EA30CFa807FA1b821a67b/info.json new file mode 100644 index 00000000..d0717a56 --- /dev/null +++ b/blockchains/smartchain/assets/0x4354a4F710182966E55EA30CFa807FA1b821a67b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Foxy Equilibrium", + "type": "BEP20", + "symbol": "Foxy", + "decimals": 9, + "website": "https://foxynft.org/", + "description": "Foxy Equilibrium is an experimental, play to earn NFT game on the BSC network which integrates (BEP721) tokens into the dAPP. Players can claim daily rewards, feed pets, battle with others and more!.", + "explorer": "https://bscscan.com/token/0x4354a4f710182966e55ea30cfa807fa1b821a67b", + "status": "active", + "id": "0x4354a4F710182966E55EA30CFa807FA1b821a67b" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4354a4F710182966E55EA30CFa807FA1b821a67b/logo.png b/blockchains/smartchain/assets/0x4354a4F710182966E55EA30CFa807FA1b821a67b/logo.png new file mode 100644 index 00000000..cd6ef969 Binary files /dev/null and b/blockchains/smartchain/assets/0x4354a4F710182966E55EA30CFa807FA1b821a67b/logo.png differ diff --git a/blockchains/smartchain/assets/0x4388cA448baF6785bf1222a3E8e266536548eD75/info.json b/blockchains/smartchain/assets/0x4388cA448baF6785bf1222a3E8e266536548eD75/info.json new file mode 100644 index 00000000..73e7439b --- /dev/null +++ b/blockchains/smartchain/assets/0x4388cA448baF6785bf1222a3E8e266536548eD75/info.json @@ -0,0 +1,11 @@ +{ + "name": "TravelCake", + "type": "BEP20", + "symbol": "TVL", + "decimals": 18, + "website": "https://www.travelcake.io/", + "description": "TravelCake is an accommodation booking platform that brings you steep discounts via cashback rewards in the form of blockchain tokens, turning your bookings into lucrative investments.", + "explorer": "https://bscscan.com/token/0x4388cA448baF6785bf1222a3E8e266536548eD75", + "status": "abandoned", + "id": "0x4388cA448baF6785bf1222a3E8e266536548eD75" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4388cA448baF6785bf1222a3E8e266536548eD75/logo.png b/blockchains/smartchain/assets/0x4388cA448baF6785bf1222a3E8e266536548eD75/logo.png new file mode 100644 index 00000000..01adbcff Binary files /dev/null and b/blockchains/smartchain/assets/0x4388cA448baF6785bf1222a3E8e266536548eD75/logo.png differ diff --git a/blockchains/smartchain/assets/0x438ED2F1f83Ca5F723e5a03F581050C5Aad68888/info.json b/blockchains/smartchain/assets/0x438ED2F1f83Ca5F723e5a03F581050C5Aad68888/info.json new file mode 100644 index 00000000..516c36f5 --- /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 new file mode 100644 index 00000000..85620ac7 --- /dev/null +++ b/blockchains/smartchain/assets/0x43B35e89d15B91162Dea1C51133C4c93bdd1C4aF/info.json @@ -0,0 +1,32 @@ +{ + "name": "Sakai Vault", + "type": "BEP20", + "symbol": "SAKAI", + "decimals": 18, + "website": "https://sakaivault.io/", + "description": "Sakai Vault is decentralized perpetual exchange. A Layer-2 Perpetual exchange is a specific type of decentralized perpetual exchange that utilizes a second layer of scaling technology on top of a blockchain network", + "explorer": "https://bscscan.com/token/0x43B35e89d15B91162Dea1C51133C4c93bdd1C4aF", + "status": "active", + "id": "0x43B35e89d15B91162Dea1C51133C4c93bdd1C4aF", + "links": [ + { + "name": "x", + "url": "https://x.com/SakaiVault" + }, + { + "name": "github", + "url": "https://github.com/SakaiVault" + }, + { + "name": "telegram_news", + "url": "https://t.me/SakaiVaultAnnounce" + }, + { + "name": "telegram", + "url": "https://t.me/SakaiVault" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x43B35e89d15B91162Dea1C51133C4c93bdd1C4aF/logo.png b/blockchains/smartchain/assets/0x43B35e89d15B91162Dea1C51133C4c93bdd1C4aF/logo.png new file mode 100644 index 00000000..7b11f687 Binary files /dev/null and b/blockchains/smartchain/assets/0x43B35e89d15B91162Dea1C51133C4c93bdd1C4aF/logo.png differ diff --git a/blockchains/smartchain/assets/0x43B9cE0394d9AFfc97501359646A410A48c21a11/info.json b/blockchains/smartchain/assets/0x43B9cE0394d9AFfc97501359646A410A48c21a11/info.json new file mode 100644 index 00000000..ab285a19 --- /dev/null +++ b/blockchains/smartchain/assets/0x43B9cE0394d9AFfc97501359646A410A48c21a11/info.json @@ -0,0 +1,44 @@ +{ + "name": "Pepecoin", + "type": "BEP20", + "symbol": "PEPE", + "decimals": 9, + "website": "https://pepecoin.rocks", + "description": "Pepecoin is here to make memecoins great again. Launched stealth with no presale, zero taxes, LP locked and contract renounced.", + "explorer": "https://bscscan.com/token/0x43B9cE0394d9AFfc97501359646A410A48c21a11", + "status": "active", + "id": "0x43B9cE0394d9AFfc97501359646A410A48c21a11", + "links": [ + { + "name": "x", + "url": "https://x.com/pepecoin_global" + }, + { + "name": "github", + "url": "https://github.com/pepecoinbsc" + }, + { + "name": "telegram", + "url": "https://t.me/pepecoin_global" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x43b9ce0394d9affc97501359646a410a48c21a11#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepecoinbsc/" + }, + { + "name": "whitepaper", + "url": "https://doc.pepecoin.rocks/" + }, + { + "name": "medium", + "url": "https://medium.com/@pepecoin_global" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x43B9cE0394d9AFfc97501359646A410A48c21a11/logo.png b/blockchains/smartchain/assets/0x43B9cE0394d9AFfc97501359646A410A48c21a11/logo.png new file mode 100644 index 00000000..360f3e46 Binary files /dev/null and b/blockchains/smartchain/assets/0x43B9cE0394d9AFfc97501359646A410A48c21a11/logo.png differ diff --git a/blockchains/smartchain/assets/0x43D096cdD8a71d9421af406E8EeEfeD5861e74E1/info.json b/blockchains/smartchain/assets/0x43D096cdD8a71d9421af406E8EeEfeD5861e74E1/info.json new file mode 100644 index 00000000..ea045d54 --- /dev/null +++ b/blockchains/smartchain/assets/0x43D096cdD8a71d9421af406E8EeEfeD5861e74E1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Compact", + "type": "BEP20", + "symbol": "CPAC", + "decimals": 9, + "website": "https://compactcrypto.com/", + "description": "Compact is an astonishing token that combines the power of the most successful and popular BSC tokens into one. It features beneficial aspects like distribution, return to liquidity, airdrops, events, giveaways, lottery, charity and manual burns. This token is something special, something that the BSC world has not seen before.", + "explorer": "https://bscscan.com/token/0x43D096cdD8a71d9421af406E8EeEfeD5861e74E1", + "status": "active", + "id": "0x43D096cdD8a71d9421af406E8EeEfeD5861e74E1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x43D096cdD8a71d9421af406E8EeEfeD5861e74E1/logo.png b/blockchains/smartchain/assets/0x43D096cdD8a71d9421af406E8EeEfeD5861e74E1/logo.png new file mode 100644 index 00000000..99727bdb Binary files /dev/null and b/blockchains/smartchain/assets/0x43D096cdD8a71d9421af406E8EeEfeD5861e74E1/logo.png differ diff --git a/blockchains/smartchain/assets/0x43E061e3061241998d1C50DC27E5488696c23410/info.json b/blockchains/smartchain/assets/0x43E061e3061241998d1C50DC27E5488696c23410/info.json new file mode 100644 index 00000000..68c92364 --- /dev/null +++ b/blockchains/smartchain/assets/0x43E061e3061241998d1C50DC27E5488696c23410/info.json @@ -0,0 +1,11 @@ +{ + "name": "KaikenCoin", + "symbol": "KAIK", + "type": "BEP20", + "decimals": 9, + "description": "Kaiken Coin is a yield-generating, decentralised community token, built to directly benefit our furry friends and our loyal holders.", + "website": "https://kaikencoin.io/", + "explorer": "https://bscscan.com/token/0x43E061e3061241998d1C50DC27E5488696c23410", + "status": "active", + "id": "0x43E061e3061241998d1C50DC27E5488696c23410" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x43E061e3061241998d1C50DC27E5488696c23410/logo.png b/blockchains/smartchain/assets/0x43E061e3061241998d1C50DC27E5488696c23410/logo.png new file mode 100644 index 00000000..c441a5f6 Binary files /dev/null and b/blockchains/smartchain/assets/0x43E061e3061241998d1C50DC27E5488696c23410/logo.png differ diff --git a/blockchains/smartchain/assets/0x43E36A35d22636944eC4eC46Cab358A2A4dCD321/info.json b/blockchains/smartchain/assets/0x43E36A35d22636944eC4eC46Cab358A2A4dCD321/info.json new file mode 100644 index 00000000..f13d8948 --- /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 00000000..f823dcae Binary files /dev/null and b/blockchains/smartchain/assets/0x43E36A35d22636944eC4eC46Cab358A2A4dCD321/logo.png differ diff --git a/blockchains/smartchain/assets/0x43a0EE2e4c005277195F409E77919D1b1a5c9c1f/info.json b/blockchains/smartchain/assets/0x43a0EE2e4c005277195F409E77919D1b1a5c9c1f/info.json new file mode 100644 index 00000000..c01430e4 --- /dev/null +++ b/blockchains/smartchain/assets/0x43a0EE2e4c005277195F409E77919D1b1a5c9c1f/info.json @@ -0,0 +1,11 @@ +{ + "name": "BLVR Token", + "website": "https://believercards.com", + "description": "Believer is a cryptocurrency token meant to be an independent digital currency for the utilization as well as widely acceptable payment gateway among several platforms in partnership on the Believer Network. Believer provides high-end security on transactions while working with partnered merchants.", + "explorer": "https://bscscan.com/token/0x43a0ee2e4c005277195f409e77919d1b1a5c9c1f", + "type": "BEP20", + "symbol": "BLVR", + "decimals": 18, + "status": "active", + "id": "0x43a0EE2e4c005277195F409E77919D1b1a5c9c1f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x43a0EE2e4c005277195F409E77919D1b1a5c9c1f/logo.png b/blockchains/smartchain/assets/0x43a0EE2e4c005277195F409E77919D1b1a5c9c1f/logo.png new file mode 100644 index 00000000..931314a7 Binary files /dev/null and b/blockchains/smartchain/assets/0x43a0EE2e4c005277195F409E77919D1b1a5c9c1f/logo.png differ diff --git a/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/info.json b/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/info.json new file mode 100644 index 00000000..768aba4e --- /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 00000000..ba89f2dd Binary files /dev/null and b/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/logo.png differ diff --git a/blockchains/smartchain/assets/0x43bFf6EAB0903cD0DA8D7c57C25e17314E51da54/info.json b/blockchains/smartchain/assets/0x43bFf6EAB0903cD0DA8D7c57C25e17314E51da54/info.json new file mode 100644 index 00000000..644d918c --- /dev/null +++ b/blockchains/smartchain/assets/0x43bFf6EAB0903cD0DA8D7c57C25e17314E51da54/info.json @@ -0,0 +1,11 @@ +{ + "name": "DRIVENprotocol", + "type": "BEP20", + "symbol": "$DVP", + "decimals": 9, + "website": "https://drivenprotocol.com/", + "description": "The support team told me to add my logo from this app. The fee was paid as you can see here https://github.com/trustwallet/assets/pull/8418#issuecomment-844545404 Description: DRIVEN’s primary goal is to bridge the needs of everyday businesses from your barber to your baker to your candlestick maker with the crypto ecosystem that enables them to use cryptocurrency for goods and services in a simple and intuitive manner, removing complexity from the current cumbersome process.", + "explorer": "https://bscscan.com/token/0x43bFf6EAB0903cD0DA8D7c57C25e17314E51da54", + "status": "active", + "id": "0x43bFf6EAB0903cD0DA8D7c57C25e17314E51da54" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x43bFf6EAB0903cD0DA8D7c57C25e17314E51da54/logo.png b/blockchains/smartchain/assets/0x43bFf6EAB0903cD0DA8D7c57C25e17314E51da54/logo.png new file mode 100644 index 00000000..fbb04f27 Binary files /dev/null and b/blockchains/smartchain/assets/0x43bFf6EAB0903cD0DA8D7c57C25e17314E51da54/logo.png differ diff --git a/blockchains/smartchain/assets/0x43d0B380c33cD004a6A69aBD61843881a2de4113/info.json b/blockchains/smartchain/assets/0x43d0B380c33cD004a6A69aBD61843881a2de4113/info.json new file mode 100644 index 00000000..d8bb7ac5 --- /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 00000000..558374fa 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 00000000..8a4df330 --- /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 new file mode 100644 index 00000000..bc3f884e --- /dev/null +++ b/blockchains/smartchain/assets/0x440Fc7DA66e34e01af5201BdF5815739B0Ae743f/info.json @@ -0,0 +1,36 @@ +{ + "name": "SquidGameToken", + "type": "BEP20", + "symbol": "SGT", + "decimals": 18, + "website": "https://www.tokensquidgame.com/", + "description": "Squid Game Token game free ETH by playing this game! Squid Game Token is a token on the Binance Smart Chain that offers auto static rewards on every transaction.", + "explorer": "https://bscscan.com/token/0x440Fc7DA66e34e01af5201BdF5815739B0Ae743f", + "status": "active", + "id": "0x440Fc7DA66e34e01af5201BdF5815739B0Ae743f", + "links": [ + { + "name": "x", + "url": "https://x.com/SquidGameToken" + }, + { + "name": "github", + "url": "https://github.com/TokenSquidGame" + }, + { + "name": "telegram", + "url": "https://t.me/TokenSquidGame" + }, + { + "name": "whitepaper", + "url": "https://tokensquidgame.com/whitepaperSGT.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/squidgametoken/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x440Fc7DA66e34e01af5201BdF5815739B0Ae743f/logo.png b/blockchains/smartchain/assets/0x440Fc7DA66e34e01af5201BdF5815739B0Ae743f/logo.png new file mode 100644 index 00000000..b7958bc2 Binary files /dev/null and b/blockchains/smartchain/assets/0x440Fc7DA66e34e01af5201BdF5815739B0Ae743f/logo.png differ diff --git a/blockchains/smartchain/assets/0x4437743ac02957068995c48E08465E0EE1769fBE/info.json b/blockchains/smartchain/assets/0x4437743ac02957068995c48E08465E0EE1769fBE/info.json new file mode 100644 index 00000000..14138dd7 --- /dev/null +++ b/blockchains/smartchain/assets/0x4437743ac02957068995c48E08465E0EE1769fBE/info.json @@ -0,0 +1,30 @@ +{ + "name": "Fortress", + "website": "https://fortress.loans/", + "description": "Fortress is an algorithmic money market, and synthetic stable coin protocol designed to bring secure and trustless credit and lending to users on Binance Smart Chain.", + "research": "https://docs.fortress.loans/", + "explorer": "https://bscscan.com/token/0x4437743ac02957068995c48E08465E0EE1769fBE", + "type": "BEP20", + "symbol": "FTS", + "decimals": 18, + "status": "active", + "id": "0x4437743ac02957068995c48E08465E0EE1769fBE", + "links": [ + { + "name": "source_code", + "url": "https://docs.fortress.loans/smart-contracts" + }, + { + "name": "x", + "url": "https://x.com/Jetfuelfinance" + }, + { + "name": "telegram", + "url": "https://t.me/jetfuelfinance" + }, + { + "name": "medium", + "url": "https://medium.com/@jetfuelfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4437743ac02957068995c48E08465E0EE1769fBE/logo.png b/blockchains/smartchain/assets/0x4437743ac02957068995c48E08465E0EE1769fBE/logo.png new file mode 100644 index 00000000..9c0abe63 Binary files /dev/null and b/blockchains/smartchain/assets/0x4437743ac02957068995c48E08465E0EE1769fBE/logo.png differ diff --git a/blockchains/smartchain/assets/0x4444A19C8bb86E9BDbC023709A363bbCE91aF33E/info.json b/blockchains/smartchain/assets/0x4444A19C8bb86E9BDbC023709A363bbCE91aF33E/info.json new file mode 100644 index 00000000..912390cc --- /dev/null +++ b/blockchains/smartchain/assets/0x4444A19C8bb86E9BDbC023709A363bbCE91aF33E/info.json @@ -0,0 +1,60 @@ +{ + "name": "CryptoTanks", + "type": "BEP20", + "symbol": "TANK", + "decimals": 18, + "website": "https://cryptotanks.com/", + "description": "CryptoTanks is an NFT-based play-to-earn game. Allows the player to delve into a world of nostalgia and experience the power of the new technology of the crypto world, DEFI and NFT.", + "explorer": "https://bscscan.com/token/0x4444a19c8bb86e9bdbc023709a363bbce91af33e", + "status": "active", + "id": "0x4444A19C8bb86E9BDbC023709A363bbCE91aF33E", + "links": [ + { + "name": "x", + "url": "https://x.com/cryptotanksio" + }, + { + "name": "telegram", + "url": "https://t.me/cryptotanksio" + }, + { + "name": "discord", + "url": "https://discord.com/invite/yGaq8Umxvy" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptotanks/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/cryptotankscom/" + }, + { + "name": "medium", + "url": "https://medium.com/cryptotanks" + }, + { + "name": "github", + "url": "https://github.com/cryptotanks/" + }, + { + "name": "facebook", + "url": "https://facebook.com/cryptotanksio" + }, + { + "name": "whitepaper", + "url": "https://docs.cryptotanks.com/" + }, + { + "name": "telegram_news", + "url": "https://t.me/cryptotankscom" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/CryptoTanks" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4444A19C8bb86E9BDbC023709A363bbCE91aF33E/logo.png b/blockchains/smartchain/assets/0x4444A19C8bb86E9BDbC023709A363bbCE91aF33E/logo.png new file mode 100644 index 00000000..023e05aa Binary files /dev/null and b/blockchains/smartchain/assets/0x4444A19C8bb86E9BDbC023709A363bbCE91aF33E/logo.png differ diff --git a/blockchains/smartchain/assets/0x446320C9FfA57030ca977A1f90F8049DF4004647/info.json b/blockchains/smartchain/assets/0x446320C9FfA57030ca977A1f90F8049DF4004647/info.json new file mode 100644 index 00000000..d7820dc2 --- /dev/null +++ b/blockchains/smartchain/assets/0x446320C9FfA57030ca977A1f90F8049DF4004647/info.json @@ -0,0 +1,28 @@ +{ + "name": "BullDogToken", + "website": "https://bulldogswap.com", + "description": "Bulldogswap is a foundational layer in decentralized finance, enabling safe, and customizable transactions for the global crypto.", + "explorer": "https://bscscan.com/token/0x446320C9FfA57030ca977A1f90F8049DF4004647", + "type": "BEP20", + "symbol": "BUDG", + "decimals": 18, + "status": "active", + "id": "0x446320C9FfA57030ca977A1f90F8049DF4004647", + "links": [ + { + "name": "x", + "url": "https://x.com/bulldogswap" + }, + { + "name": "telegram", + "url": "https://t.me/BUDGswap" + }, + { + "name": "whitepaper", + "url": "https://bulldogswap.com/Bulldogswap-paper.pdf" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x446320C9FfA57030ca977A1f90F8049DF4004647/logo.png b/blockchains/smartchain/assets/0x446320C9FfA57030ca977A1f90F8049DF4004647/logo.png new file mode 100644 index 00000000..a0c1ccad Binary files /dev/null and b/blockchains/smartchain/assets/0x446320C9FfA57030ca977A1f90F8049DF4004647/logo.png differ diff --git a/blockchains/smartchain/assets/0x44754455564474A89358B2C2265883DF993b12F0/info.json b/blockchains/smartchain/assets/0x44754455564474A89358B2C2265883DF993b12F0/info.json new file mode 100644 index 00000000..5671e6e4 --- /dev/null +++ b/blockchains/smartchain/assets/0x44754455564474A89358B2C2265883DF993b12F0/info.json @@ -0,0 +1,29 @@ +{ + "name": "ZeroSwapToken", + "website": "https://zeroswap.io/", + "description": "ZeroSwap.io is a Multi-Chain, Zero-fee, On-chain Trading protocol with Liquidity Mining, DeFi Token Offering, and DEX Aggregation. The protocol will reward users every time they make an on-chain trade and provide liquidity to existing DEXes. All transactions would be Gasless with Zero Trade Fee.", + "explorer": "https://bscscan.com/token/0x44754455564474A89358B2C2265883DF993b12F0", + "type": "BEP20", + "symbol": "ZEE", + "decimals": 18, + "status": "active", + "id": "0x44754455564474A89358B2C2265883DF993b12F0", + "links": [ + { + "name": "github", + "url": "https://github.com/ZeroswapLabs" + }, + { + "name": "x", + "url": "https://x.com/ZeroSwapLabs" + }, + { + "name": "telegram", + "url": "https://t.me/zeroswap" + }, + { + "name": "medium", + "url": "https://medium.com/zeroswaplabs" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x44754455564474A89358B2C2265883DF993b12F0/logo.png b/blockchains/smartchain/assets/0x44754455564474A89358B2C2265883DF993b12F0/logo.png new file mode 100644 index 00000000..d6c6bf4e Binary files /dev/null and b/blockchains/smartchain/assets/0x44754455564474A89358B2C2265883DF993b12F0/logo.png differ diff --git a/blockchains/smartchain/assets/0x447Ad4EF9293067E9FCbBBcd794BBD0FA6D6c470/info.json b/blockchains/smartchain/assets/0x447Ad4EF9293067E9FCbBBcd794BBD0FA6D6c470/info.json new file mode 100644 index 00000000..8cc68fd4 --- /dev/null +++ b/blockchains/smartchain/assets/0x447Ad4EF9293067E9FCbBBcd794BBD0FA6D6c470/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ico Crypto", + "type": "BEP20", + "symbol": "ICC", + "decimals": 18, + "website": "https://icocrypto.xyz/", + "description": "ICO Crypto is a platform for the future of funding that powering defi for the new equity blockchain", + "explorer": "https://bscscan.com/token/0x447ad4ef9293067e9fcbbbcd794bbd0fa6d6c470", + "status": "active", + "id": "0x447Ad4EF9293067E9FCbBBcd794BBD0FA6D6c470" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x447Ad4EF9293067E9FCbBBcd794BBD0FA6D6c470/logo.png b/blockchains/smartchain/assets/0x447Ad4EF9293067E9FCbBBcd794BBD0FA6D6c470/logo.png new file mode 100644 index 00000000..be32c86b Binary files /dev/null and b/blockchains/smartchain/assets/0x447Ad4EF9293067E9FCbBBcd794BBD0FA6D6c470/logo.png differ diff --git a/blockchains/smartchain/assets/0x4487A8a40caa9fA0e70B9041C368b6e0d4089314/info.json b/blockchains/smartchain/assets/0x4487A8a40caa9fA0e70B9041C368b6e0d4089314/info.json new file mode 100644 index 00000000..a8df41bd --- /dev/null +++ b/blockchains/smartchain/assets/0x4487A8a40caa9fA0e70B9041C368b6e0d4089314/info.json @@ -0,0 +1,11 @@ +{ + "name": "Poodledog Token", + "website": "https://poodledog.finance/", + "description": "Poodledog Swap is an Automated Market Maker.", + "explorer": "https://bscscan.com/token/0x4487a8a40caa9fa0e70b9041c368b6e0d4089314", + "type": "BEP20", + "symbol": "POODLE", + "decimals": 18, + "status": "active", + "id": "0x4487A8a40caa9fA0e70B9041C368b6e0d4089314" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4487A8a40caa9fA0e70B9041C368b6e0d4089314/logo.png b/blockchains/smartchain/assets/0x4487A8a40caa9fA0e70B9041C368b6e0d4089314/logo.png new file mode 100644 index 00000000..1032d5dc Binary files /dev/null and b/blockchains/smartchain/assets/0x4487A8a40caa9fA0e70B9041C368b6e0d4089314/logo.png differ diff --git a/blockchains/smartchain/assets/0x448BEE2d93Be708b54eE6353A7CC35C4933F1156/info.json b/blockchains/smartchain/assets/0x448BEE2d93Be708b54eE6353A7CC35C4933F1156/info.json new file mode 100644 index 00000000..7d689ef1 --- /dev/null +++ b/blockchains/smartchain/assets/0x448BEE2d93Be708b54eE6353A7CC35C4933F1156/info.json @@ -0,0 +1,11 @@ +{ + "name": "SaTT", + "type": "BEP20", + "symbol": "SATT", + "decimals": 18, + "website": "https://www.satt-token.com", + "description": "Smart Advertising Transaction Token", + "explorer": "https://bscscan.com/token/0x448BEE2d93Be708b54eE6353A7CC35C4933F1156", + "status": "active", + "id": "0x448BEE2d93Be708b54eE6353A7CC35C4933F1156" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x448BEE2d93Be708b54eE6353A7CC35C4933F1156/logo.png b/blockchains/smartchain/assets/0x448BEE2d93Be708b54eE6353A7CC35C4933F1156/logo.png new file mode 100644 index 00000000..971edd6a Binary files /dev/null and b/blockchains/smartchain/assets/0x448BEE2d93Be708b54eE6353A7CC35C4933F1156/logo.png differ diff --git a/blockchains/smartchain/assets/0x4495e673eE53c61CE79c35D5e299733639362aEc/info.json b/blockchains/smartchain/assets/0x4495e673eE53c61CE79c35D5e299733639362aEc/info.json new file mode 100644 index 00000000..b79d6172 --- /dev/null +++ b/blockchains/smartchain/assets/0x4495e673eE53c61CE79c35D5e299733639362aEc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped LQX", + "website": "http://lqxcoin.com", + "description": "LQX is a multi-chain (X11 and BEP-20) cryptocurrency that enables anonymous and instant payments. Users can get rewards for the LQX masternode, thus benefiting the entire network that makes up the ecosystem.", + "explorer": "https://bscscan.com/token/0x4495e673eE53c61CE79c35D5e299733639362aEc", + "type": "BEP20", + "symbol": "WLQX", + "decimals": 18, + "status": "active", + "id": "0x4495e673eE53c61CE79c35D5e299733639362aEc" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4495e673eE53c61CE79c35D5e299733639362aEc/logo.png b/blockchains/smartchain/assets/0x4495e673eE53c61CE79c35D5e299733639362aEc/logo.png new file mode 100644 index 00000000..e61e5836 Binary files /dev/null and b/blockchains/smartchain/assets/0x4495e673eE53c61CE79c35D5e299733639362aEc/logo.png differ diff --git a/blockchains/smartchain/assets/0x44989419caEbe5e52eb3fA65B6FA983A126A7a1B/info.json b/blockchains/smartchain/assets/0x44989419caEbe5e52eb3fA65B6FA983A126A7a1B/info.json new file mode 100644 index 00000000..5328e327 --- /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 00000000..35f3261a 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 new file mode 100644 index 00000000..e8577cc3 --- /dev/null +++ b/blockchains/smartchain/assets/0x449aeD32C1685dbeca28D1aE45462b6156A6096D/info.json @@ -0,0 +1,24 @@ +{ + "name": "BITLIVE", + "type": "BEP20", + "symbol": "BLT", + "decimals": 18, + "website": "https://bitlivenow.com/", + "description": "At BitLiveNow we work with our community of users to take the best of traditional banking and combine it with DeFi technology. Together, we’re on a mission to create a new banking model. One that is fairer for you and better for the world.", + "explorer": "https://bscscan.com/token/0x449aed32c1685dbeca28d1ae45462b6156a6096d", + "status": "active", + "id": "0x449aeD32C1685dbeca28D1aE45462b6156A6096D", + "links": [ + { + "name": "x", + "url": "https://x.com/BitLive3" + }, + { + "name": "telegram", + "url": "https://t.me/BitliveTEAM" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x449aeD32C1685dbeca28D1aE45462b6156A6096D/logo.png b/blockchains/smartchain/assets/0x449aeD32C1685dbeca28D1aE45462b6156A6096D/logo.png new file mode 100644 index 00000000..c5ec1032 Binary files /dev/null and b/blockchains/smartchain/assets/0x449aeD32C1685dbeca28D1aE45462b6156A6096D/logo.png differ diff --git a/blockchains/smartchain/assets/0x44Ec807ce2F4a6F2737A92e985f318d035883e47/info.json b/blockchains/smartchain/assets/0x44Ec807ce2F4a6F2737A92e985f318d035883e47/info.json new file mode 100644 index 00000000..ce69f4e1 --- /dev/null +++ b/blockchains/smartchain/assets/0x44Ec807ce2F4a6F2737A92e985f318d035883e47/info.json @@ -0,0 +1,28 @@ +{ + "name": "Hashflow", + "type": "BEP20", + "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://bscscan.com/token/0x44ec807ce2f4a6f2737a92e985f318d035883e47", + "status": "active", + "id": "0x44Ec807ce2F4a6F2737A92e985f318d035883e47", + "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/smartchain/assets/0x44Ec807ce2F4a6F2737A92e985f318d035883e47/logo.png b/blockchains/smartchain/assets/0x44Ec807ce2F4a6F2737A92e985f318d035883e47/logo.png new file mode 100644 index 00000000..47cb1e7b Binary files /dev/null and b/blockchains/smartchain/assets/0x44Ec807ce2F4a6F2737A92e985f318d035883e47/logo.png differ diff --git a/blockchains/smartchain/assets/0x44F2a124de7DBe2b1b15dbb0c1D79958eb999abd/info.json b/blockchains/smartchain/assets/0x44F2a124de7DBe2b1b15dbb0c1D79958eb999abd/info.json new file mode 100644 index 00000000..73cfcb26 --- /dev/null +++ b/blockchains/smartchain/assets/0x44F2a124de7DBe2b1b15dbb0c1D79958eb999abd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Debt Free Token", + "type": "BEP20", + "symbol": "DEBTFREE", + "decimals": 9, + "website": "https://debtfreetoken.io", + "description": "Debtfree is a smart contract with a max circulating supply of 100Q. On every transaction, 10% will automatically be distributed to the holders and 1% will be burnt. This will allow investors to HODL for passive income.", + "explorer": "https://bscscan.com/token/0x44F2a124de7DBe2b1b15dbb0c1D79958eb999abd", + "status": "active", + "id": "0x44F2a124de7DBe2b1b15dbb0c1D79958eb999abd" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x44F2a124de7DBe2b1b15dbb0c1D79958eb999abd/logo.png b/blockchains/smartchain/assets/0x44F2a124de7DBe2b1b15dbb0c1D79958eb999abd/logo.png new file mode 100644 index 00000000..c5932e0b Binary files /dev/null and b/blockchains/smartchain/assets/0x44F2a124de7DBe2b1b15dbb0c1D79958eb999abd/logo.png differ diff --git a/blockchains/smartchain/assets/0x44F9ef37A052DbA61c5f58328Eeb1707F6AecfF6/info.json b/blockchains/smartchain/assets/0x44F9ef37A052DbA61c5f58328Eeb1707F6AecfF6/info.json new file mode 100644 index 00000000..f7aadef9 --- /dev/null +++ b/blockchains/smartchain/assets/0x44F9ef37A052DbA61c5f58328Eeb1707F6AecfF6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Akita BSC", + "type": "BEP20", + "symbol": "AKIBSC", + "decimals": 8, + "website": "https://akitabsc.com", + "description": "Do more with your Akita BSC.", + "explorer": "https://bscscan.com/token/0x44F9ef37A052DbA61c5f58328Eeb1707F6AecfF6", + "status": "active", + "id": "0x44F9ef37A052DbA61c5f58328Eeb1707F6AecfF6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x44F9ef37A052DbA61c5f58328Eeb1707F6AecfF6/logo.png b/blockchains/smartchain/assets/0x44F9ef37A052DbA61c5f58328Eeb1707F6AecfF6/logo.png new file mode 100644 index 00000000..dacc2116 Binary files /dev/null and b/blockchains/smartchain/assets/0x44F9ef37A052DbA61c5f58328Eeb1707F6AecfF6/logo.png differ diff --git a/blockchains/smartchain/assets/0x44a21B3577924DCD2e9C81A3347D204C36a55466/info.json b/blockchains/smartchain/assets/0x44a21B3577924DCD2e9C81A3347D204C36a55466/info.json new file mode 100644 index 00000000..0ff44ec9 --- /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 00000000..8c756864 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 00000000..fd908dbb --- /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 00000000..d00becb1 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 00000000..ceaea451 --- /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 00000000..9a8d3dbd 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 00000000..985ab46a --- /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 00000000..69737a2c Binary files /dev/null and b/blockchains/smartchain/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/logo.png differ diff --git a/blockchains/smartchain/assets/0x450dCf93160A30BE156A4600802c91BF64dFFD2E/info.json b/blockchains/smartchain/assets/0x450dCf93160A30BE156A4600802c91BF64dFFD2E/info.json new file mode 100644 index 00000000..2df3b5cb --- /dev/null +++ b/blockchains/smartchain/assets/0x450dCf93160A30BE156A4600802c91BF64dFFD2E/info.json @@ -0,0 +1,11 @@ +{ + "name": "CorgiCoin", + "website": "https://corgicoin.net", + "description": "CorgiCoin is the 100% community-owned dogecoin of Binance Smart Chain. It is 100x cheaper to exchange and send than competitors, and uses a fraction of the electricity.The Corgi ecosystem supports blockchain literacy and an NFT marketplace.", + "explorer": "https://bscscan.com/token/0x450dCf93160A30BE156A4600802c91BF64dFFD2E", + "type": "BEP20", + "symbol": "CORGI", + "decimals": 18, + "status": "active", + "id": "0x450dCf93160A30BE156A4600802c91BF64dFFD2E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x450dCf93160A30BE156A4600802c91BF64dFFD2E/logo.png b/blockchains/smartchain/assets/0x450dCf93160A30BE156A4600802c91BF64dFFD2E/logo.png new file mode 100644 index 00000000..405d54e6 Binary files /dev/null and b/blockchains/smartchain/assets/0x450dCf93160A30BE156A4600802c91BF64dFFD2E/logo.png differ diff --git a/blockchains/smartchain/assets/0x4510E3Ac69574F3DfDB43139E97773b542c386E1/info.json b/blockchains/smartchain/assets/0x4510E3Ac69574F3DfDB43139E97773b542c386E1/info.json new file mode 100644 index 00000000..0c053dd3 --- /dev/null +++ b/blockchains/smartchain/assets/0x4510E3Ac69574F3DfDB43139E97773b542c386E1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bamboo", + "website": "https://safepanda.net/", + "description": "Liquidity Generation & Hyper Deflationary Token, Environmental Charity focused that rewards our community & token holders.", + "explorer": "https://bscscan.com/token/0x4510E3Ac69574F3DfDB43139E97773b542c386E1", + "type": "BEP20", + "symbol": "BMBO", + "decimals": 9, + "status": "active", + "id": "0x4510E3Ac69574F3DfDB43139E97773b542c386E1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4510E3Ac69574F3DfDB43139E97773b542c386E1/logo.png b/blockchains/smartchain/assets/0x4510E3Ac69574F3DfDB43139E97773b542c386E1/logo.png new file mode 100644 index 00000000..4a8f91ab Binary files /dev/null and b/blockchains/smartchain/assets/0x4510E3Ac69574F3DfDB43139E97773b542c386E1/logo.png differ diff --git a/blockchains/smartchain/assets/0x451329F2FCb88C398A4cDD4A8a98780B4D62873C/info.json b/blockchains/smartchain/assets/0x451329F2FCb88C398A4cDD4A8a98780B4D62873C/info.json new file mode 100644 index 00000000..dd2523b1 --- /dev/null +++ b/blockchains/smartchain/assets/0x451329F2FCb88C398A4cDD4A8a98780B4D62873C/info.json @@ -0,0 +1,11 @@ +{ + "name": "CateCoin 1", + "website": "http://catecoin.club", + "description": "Decentralised MEME Platform with NFT", + "explorer": "https://bscscan.com/token/0x451329F2FCb88C398A4cDD4A8a98780B4D62873C", + "type": "BEP20", + "symbol": "CATE1", + "decimals": 9, + "status": "abandoned", + "id": "0x451329F2FCb88C398A4cDD4A8a98780B4D62873C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x451329F2FCb88C398A4cDD4A8a98780B4D62873C/logo.png b/blockchains/smartchain/assets/0x451329F2FCb88C398A4cDD4A8a98780B4D62873C/logo.png new file mode 100644 index 00000000..52dd4a22 Binary files /dev/null and b/blockchains/smartchain/assets/0x451329F2FCb88C398A4cDD4A8a98780B4D62873C/logo.png differ diff --git a/blockchains/smartchain/assets/0x451D0e4B04A16223BbaeCe67b2276223DB0d19dA/info.json b/blockchains/smartchain/assets/0x451D0e4B04A16223BbaeCe67b2276223DB0d19dA/info.json new file mode 100644 index 00000000..b783e424 --- /dev/null +++ b/blockchains/smartchain/assets/0x451D0e4B04A16223BbaeCe67b2276223DB0d19dA/info.json @@ -0,0 +1,11 @@ +{ + "name": "GoldCoin Reserve", + "type": "BEP20", + "symbol": "GCR", + "decimals": 18, + "website": "https://Goldcoinreserve.io", + "description": "GCR is a stable digital asset, that is both backed by and tethered to the price of gold", + "explorer": "https://bscscan.com/token/0x451D0e4B04A16223BbaeCe67b2276223DB0d19dA", + "status": "active", + "id": "0x451D0e4B04A16223BbaeCe67b2276223DB0d19dA" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x451D0e4B04A16223BbaeCe67b2276223DB0d19dA/logo.png b/blockchains/smartchain/assets/0x451D0e4B04A16223BbaeCe67b2276223DB0d19dA/logo.png new file mode 100644 index 00000000..1c4ac550 Binary files /dev/null and b/blockchains/smartchain/assets/0x451D0e4B04A16223BbaeCe67b2276223DB0d19dA/logo.png differ diff --git a/blockchains/smartchain/assets/0x452698Acacc695cEcA215B5e43525f6C36f240D3/info.json b/blockchains/smartchain/assets/0x452698Acacc695cEcA215B5e43525f6C36f240D3/info.json new file mode 100644 index 00000000..434b5edf --- /dev/null +++ b/blockchains/smartchain/assets/0x452698Acacc695cEcA215B5e43525f6C36f240D3/info.json @@ -0,0 +1,11 @@ +{ + "name": "MaxGoat", + "website": "https://maxgoat.io/", + "description": "Inspired by Mark Zuckerberg - CEO of Facebook and huge support from CryptoKitties' fans, we gather friends who are passionate about blockchain to found MaxGoat. Maxgoat is a form of an NFT marketplace that meets the standards of most people in the world when joining the cryptocurrency market.", + "explorer": "https://bscscan.com/token/0x452698Acacc695cEcA215B5e43525f6C36f240D3", + "type": "BEP20", + "symbol": "MAGO", + "decimals": 18, + "status": "active", + "id": "0x452698Acacc695cEcA215B5e43525f6C36f240D3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x452698Acacc695cEcA215B5e43525f6C36f240D3/logo.png b/blockchains/smartchain/assets/0x452698Acacc695cEcA215B5e43525f6C36f240D3/logo.png new file mode 100644 index 00000000..ea93e5a3 Binary files /dev/null and b/blockchains/smartchain/assets/0x452698Acacc695cEcA215B5e43525f6C36f240D3/logo.png differ diff --git a/blockchains/smartchain/assets/0x45289007706E7Ee7B42b1fA506661d97740Edfb4/info.json b/blockchains/smartchain/assets/0x45289007706E7Ee7B42b1fA506661d97740Edfb4/info.json new file mode 100644 index 00000000..965297b0 --- /dev/null +++ b/blockchains/smartchain/assets/0x45289007706E7Ee7B42b1fA506661d97740Edfb4/info.json @@ -0,0 +1,44 @@ +{ + "name": "FLOKI CEO", + "type": "BEP20", + "symbol": "FLOKICEO", + "decimals": 9, + "website": "https://flokiceo.io", + "description": "FLOKICEO a Meme token in the BSC ecosystem, $FlokiCeo is comunity-driven cannot control by anyone. Instant Usage Rewards for every active user transaction a 7% $FLOKICEO reward is granted to holders (decentralized wallets only)", + "explorer": "https://bscscan.com/token/0x45289007706E7Ee7B42b1fA506661d97740Edfb4", + "status": "active", + "id": "0x45289007706E7Ee7B42b1fA506661d97740Edfb4", + "links": [ + { + "name": "x", + "url": "https://x.com/FlokiCeoo" + }, + { + "name": "github", + "url": "https://github.com/flokiceo/" + }, + { + "name": "telegram", + "url": "https://t.me/flokiceogroup" + }, + { + "name": "telegram_news", + "url": "https://t.me/" + }, + { + "name": "whitepaper", + "url": "https://flokiceo.io/Flokiceowp.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/floki-ceo" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/floki-ceo" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x45289007706E7Ee7B42b1fA506661d97740Edfb4/logo.png b/blockchains/smartchain/assets/0x45289007706E7Ee7B42b1fA506661d97740Edfb4/logo.png new file mode 100644 index 00000000..52152d62 Binary files /dev/null and b/blockchains/smartchain/assets/0x45289007706E7Ee7B42b1fA506661d97740Edfb4/logo.png differ diff --git a/blockchains/smartchain/assets/0x4553cFe1C09f37f38b12dC509F676964e392F8Fc/info.json b/blockchains/smartchain/assets/0x4553cFe1C09f37f38b12dC509F676964e392F8Fc/info.json new file mode 100644 index 00000000..553529b1 --- /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 00000000..958a37b0 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 00000000..0337b8e1 --- /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 00000000..bbfe9595 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 00000000..694b73af --- /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 00000000..2b29ada3 Binary files /dev/null and b/blockchains/smartchain/assets/0x45Abf29515bc23F8c0Ed2a06584444cE473A75FB/logo.png differ diff --git a/blockchains/smartchain/assets/0x45B110fCdd1a20fCEb1805ec0F7Ca6ef3712BeFc/info.json b/blockchains/smartchain/assets/0x45B110fCdd1a20fCEb1805ec0F7Ca6ef3712BeFc/info.json new file mode 100644 index 00000000..0a8ed2c3 --- /dev/null +++ b/blockchains/smartchain/assets/0x45B110fCdd1a20fCEb1805ec0F7Ca6ef3712BeFc/info.json @@ -0,0 +1,11 @@ +{ + "name": "EloniumCoin", + "type": "BEP20", + "symbol": "ELNC", + "decimals": 9, + "website": "https://eloniumcoin.com/", + "description": "EloniumCoin is a token with a unique use-case. The project intends to improve construction projects starting from The Netherlands and expanding globally over time. The transaction tax is 7% where 5% is reflected back to all holders, and 2% is added to the Liquidity Pool.", + "explorer": "https://bscscan.com/token/0x45B110fCdd1a20fCEb1805ec0F7Ca6ef3712BeFc", + "status": "active", + "id": "0x45B110fCdd1a20fCEb1805ec0F7Ca6ef3712BeFc" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x45B110fCdd1a20fCEb1805ec0F7Ca6ef3712BeFc/logo.png b/blockchains/smartchain/assets/0x45B110fCdd1a20fCEb1805ec0F7Ca6ef3712BeFc/logo.png new file mode 100644 index 00000000..1f32e6b1 Binary files /dev/null and b/blockchains/smartchain/assets/0x45B110fCdd1a20fCEb1805ec0F7Ca6ef3712BeFc/logo.png differ diff --git a/blockchains/smartchain/assets/0x45E57907058c707a068100De358BA4535b18E2F3/info.json b/blockchains/smartchain/assets/0x45E57907058c707a068100De358BA4535b18E2F3/info.json new file mode 100644 index 00000000..b04cdd47 --- /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 00000000..9efe9861 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 00000000..7ad76fc5 --- /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 00000000..72dd630c 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 new file mode 100644 index 00000000..74221c32 --- /dev/null +++ b/blockchains/smartchain/assets/0x461f6C9aE13a7daC7055C73fBF8daB529D667041/info.json @@ -0,0 +1,30 @@ +{ + "name": "PoFi", + "website": "https://official.pollo.finance/", + "short_description": "A social contribution project that connects all of Yield Farming, Signoridge, and Auto Farming. Maximum supply is 500,000.", + "description": "Pollo is a social contribution project launched by academics and experts in cryptocurrency development. PoFi is the only token that connects to all of Pollo DAO's governance, seigniorage (algorithmic staple coin), and Vaults (Auto Farming).Maximum Supply is 500,000.", + "explorer": "https://bscscan.com/token/0x461f6C9aE13a7daC7055C73fBF8daB529D667041", + "type": "BEP20", + "symbol": "PoFi", + "decimals": 18, + "status": "active", + "id": "0x461f6C9aE13a7daC7055C73fBF8daB529D667041", + "links": [ + { + "name": "github", + "url": "https://github.com/pollofinance" + }, + { + "name": "x", + "url": "https://x.com/FinancePollo" + }, + { + "name": "telegram", + "url": "https://t.me/pollofi" + }, + { + "name": "medium", + "url": "https://medium.com/@pollofinancegroup" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x461f6C9aE13a7daC7055C73fBF8daB529D667041/logo.png b/blockchains/smartchain/assets/0x461f6C9aE13a7daC7055C73fBF8daB529D667041/logo.png new file mode 100644 index 00000000..51152802 Binary files /dev/null and b/blockchains/smartchain/assets/0x461f6C9aE13a7daC7055C73fBF8daB529D667041/logo.png differ diff --git a/blockchains/smartchain/assets/0x4620C701e8853Eaa1BF791EfB1d7d4d784734baD/info.json b/blockchains/smartchain/assets/0x4620C701e8853Eaa1BF791EfB1d7d4d784734baD/info.json new file mode 100644 index 00000000..04bc46f3 --- /dev/null +++ b/blockchains/smartchain/assets/0x4620C701e8853Eaa1BF791EfB1d7d4d784734baD/info.json @@ -0,0 +1,28 @@ +{ + "name": "GOLD 24 Carat/Oz", + "type": "BEP20", + "symbol": "GOLD", + "decimals": 18, + "website": "https://linktr.ee/zedxion", + "description": "Zedxion aims to offer 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/0x4620c701e8853eaa1bf791efb1d7d4d784734bad", + "status": "active", + "id": "0x4620C701e8853Eaa1BF791EfB1d7d4d784734baD", + "links": [ + { + "name": "x", + "url": "https://x.com/Zedxion" + }, + { + "name": "telegram", + "url": "https://t.me/zedxion" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zedxion/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4620C701e8853Eaa1BF791EfB1d7d4d784734baD/logo.png b/blockchains/smartchain/assets/0x4620C701e8853Eaa1BF791EfB1d7d4d784734baD/logo.png new file mode 100644 index 00000000..37cbec02 Binary files /dev/null and b/blockchains/smartchain/assets/0x4620C701e8853Eaa1BF791EfB1d7d4d784734baD/logo.png differ diff --git a/blockchains/smartchain/assets/0x464863745ED3aF8b9f8871f1082211C55f8f884D/info.json b/blockchains/smartchain/assets/0x464863745ED3aF8b9f8871f1082211C55f8f884D/info.json new file mode 100644 index 00000000..99485b33 --- /dev/null +++ b/blockchains/smartchain/assets/0x464863745ED3aF8b9f8871f1082211C55f8f884D/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoTycoon Token", + "symbol": "CTT", + "type": "BEP20", + "decimals": 18, + "description": "CryptoTycoon is a gaming platform based on BSC..", + "website": "http://cryptotycoon.finance", + "explorer": "https://bscscan.com/token/0x464863745ed3af8b9f8871f1082211c55f8f884d", + "status": "active", + "id": "0x464863745ED3aF8b9f8871f1082211C55f8f884D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x464863745ED3aF8b9f8871f1082211C55f8f884D/logo.png b/blockchains/smartchain/assets/0x464863745ED3aF8b9f8871f1082211C55f8f884D/logo.png new file mode 100644 index 00000000..5430da62 Binary files /dev/null and b/blockchains/smartchain/assets/0x464863745ED3aF8b9f8871f1082211C55f8f884D/logo.png differ diff --git a/blockchains/smartchain/assets/0x464ACc420607d818f271875552868dDF8095CAfE/info.json b/blockchains/smartchain/assets/0x464ACc420607d818f271875552868dDF8095CAfE/info.json new file mode 100644 index 00000000..e37207ab --- /dev/null +++ b/blockchains/smartchain/assets/0x464ACc420607d818f271875552868dDF8095CAfE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Meong Token", + "type": "BEP20", + "symbol": "MEONG", + "decimals": 9, + "website": "https://meongtoken.com/", + "description": "Meong Token is a meme coin that takes different approach from another meme coin. We don’t only create a common meme token, we create a social meme token that is intended to contribute in social and art movement.", + "explorer": "https://bscscan.com/token/0x464ACc420607d818f271875552868dDF8095CAfE", + "status": "active", + "id": "0x464ACc420607d818f271875552868dDF8095CAfE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x464ACc420607d818f271875552868dDF8095CAfE/logo.png b/blockchains/smartchain/assets/0x464ACc420607d818f271875552868dDF8095CAfE/logo.png new file mode 100755 index 00000000..5be70524 Binary files /dev/null and b/blockchains/smartchain/assets/0x464ACc420607d818f271875552868dDF8095CAfE/logo.png differ diff --git a/blockchains/smartchain/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/info.json b/blockchains/smartchain/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/info.json new file mode 100644 index 00000000..e1d53161 --- /dev/null +++ b/blockchains/smartchain/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/info.json @@ -0,0 +1,25 @@ +{ + "name": "REALM Token", + "website": "https://realm.art", + "description": "REALM is the native token of the Realm metaverse.", + "explorer": "https://bscscan.com/token/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8", + "type": "BEP20", + "symbol": "REALM", + "decimals": 18, + "status": "active", + "id": "0x464FdB8AFFC9bac185A7393fd4298137866DCFB8", + "links": [ + { + "name": "x", + "url": "https://x.com/Enter_Realm" + }, + { + "name": "telegram", + "url": "https://t.me/Enter_Realm" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/realm" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/logo.png b/blockchains/smartchain/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/logo.png new file mode 100644 index 00000000..17d83d4b Binary files /dev/null and b/blockchains/smartchain/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/logo.png differ diff --git a/blockchains/smartchain/assets/0x46551803322db7bE94074e9773377f8B037E9D0e/info.json b/blockchains/smartchain/assets/0x46551803322db7bE94074e9773377f8B037E9D0e/info.json new file mode 100644 index 00000000..0b2f17b2 --- /dev/null +++ b/blockchains/smartchain/assets/0x46551803322db7bE94074e9773377f8B037E9D0e/info.json @@ -0,0 +1,11 @@ +{ + "name": "BabysharkFinance", + "type": "BEP20", + "symbol": "BBS", + "decimals": 9, + "website": "https://baby-shark.finance/", + "description": "Baby-Shark.finance project is to build an entertainment platform in NFT music field. There are many benefits for BBS holders such as: get profit sharing from BBS Entertainment Platform, get share of fee for every NFT sold on BBS NFT Marketplace, earn 2% passive income for each transaction. We also use 80% profit of AMM DEX to buy back BBS token, which leads to continuous increase in BBS price.", + "explorer": "https://bscscan.com/token/0x46551803322db7bE94074e9773377f8B037E9D0e", + "status": "active", + "id": "0x46551803322db7bE94074e9773377f8B037E9D0e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x46551803322db7bE94074e9773377f8B037E9D0e/logo.png b/blockchains/smartchain/assets/0x46551803322db7bE94074e9773377f8B037E9D0e/logo.png new file mode 100644 index 00000000..6207258b Binary files /dev/null and b/blockchains/smartchain/assets/0x46551803322db7bE94074e9773377f8B037E9D0e/logo.png differ diff --git a/blockchains/smartchain/assets/0x46568808a8d73c301071b8dF710402Ce44F1C472/info.json b/blockchains/smartchain/assets/0x46568808a8d73c301071b8dF710402Ce44F1C472/info.json new file mode 100644 index 00000000..715d801b --- /dev/null +++ b/blockchains/smartchain/assets/0x46568808a8d73c301071b8dF710402Ce44F1C472/info.json @@ -0,0 +1,37 @@ +{ + "name": "MagicDOGE", + "type": "BEP20", + "symbol": "MagicDOGE", + "decimals": 9, + "website": "https://magicdoge.net", + "description": "MagicDOGE is a BSC based smart contract with offers holders hourly rewards in BNB, or ANY BSC token of the holders choosing. Backed by a professional, highly experienced business and marketing team, the project has strong fundamentals. Launching on the 11th October 2021 via an IDO, selling out in 45 minutes, MagicDOGE has set its foundations for a solid future.", + "explorer": "https://bscscan.com/token/0x46568808a8d73c301071b8dF710402Ce44F1C472", + "status": "active", + "id": "0x46568808a8d73c301071b8dF710402Ce44F1C472", + "links": [ + { + "name": "x", + "url": "https://x.com/MagicDogeToken" + }, + { + "name": "facebook", + "url": "https://facebook.com/magicdogeofficial/" + }, + { + "name": "telegram", + "url": "https://t.me/magicdogeofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCYDTDLVF-mFrEz7knBNufTw" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magicdoge" + }, + { + "name": "github", + "url": "https://github.com/magicdogenet/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x46568808a8d73c301071b8dF710402Ce44F1C472/logo.png b/blockchains/smartchain/assets/0x46568808a8d73c301071b8dF710402Ce44F1C472/logo.png new file mode 100644 index 00000000..7cad4588 Binary files /dev/null and b/blockchains/smartchain/assets/0x46568808a8d73c301071b8dF710402Ce44F1C472/logo.png differ diff --git a/blockchains/smartchain/assets/0x465707181ACba42Ed01268A33f0507e320a154bD/info.json b/blockchains/smartchain/assets/0x465707181ACba42Ed01268A33f0507e320a154bD/info.json new file mode 100644 index 00000000..08789de2 --- /dev/null +++ b/blockchains/smartchain/assets/0x465707181ACba42Ed01268A33f0507e320a154bD/info.json @@ -0,0 +1,44 @@ +{ + "name": "Step", + "type": "BEP20", + "symbol": "STEP", + "decimals": 18, + "website": "https://walkwithstep.io/", + "description": "Track fitness activity, earn crypto, and be the best version of you. Same effort, more results.", + "explorer": "https://bscscan.com/token/0x465707181ACba42Ed01268A33f0507e320a154bD", + "status": "active", + "id": "0x465707181ACba42Ed01268A33f0507e320a154bD", + "links": [ + { + "name": "x", + "url": "https://x.com/walkwithstep" + }, + { + "name": "telegram", + "url": "https://t.me/walkwithstep" + }, + { + "name": "telegram_news", + "url": "https://t.me/StepAnnouncements" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/OfficialSTEP/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/step/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/step" + }, + { + "name": "whitepaper", + "url": "https://walkwithstep.io/whitepaperstep.pdf" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x465707181ACba42Ed01268A33f0507e320a154bD/logo.png b/blockchains/smartchain/assets/0x465707181ACba42Ed01268A33f0507e320a154bD/logo.png new file mode 100644 index 00000000..3d2a4ef9 Binary files /dev/null and b/blockchains/smartchain/assets/0x465707181ACba42Ed01268A33f0507e320a154bD/logo.png differ diff --git a/blockchains/smartchain/assets/0x4670C8B56005C15B7F2013160eA1543A7B8D8888/info.json b/blockchains/smartchain/assets/0x4670C8B56005C15B7F2013160eA1543A7B8D8888/info.json new file mode 100644 index 00000000..f2f7da96 --- /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 new file mode 100644 index 00000000..9881a5a9 --- /dev/null +++ b/blockchains/smartchain/assets/0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3/info.json @@ -0,0 +1,48 @@ +{ + "name": "French Connection Finance", + "type": "BEP20", + "symbol": "FCF", + "decimals": 18, + "website": "https://www.frenchconnection.finance", + "description": "The Revenue Sharing Token of the FCF Ecosystem. Earn BNB rewards from holding, generated from trading volume and also from 33.33% of transaction fees from our payment gateway FCF Pay. Another 33.33% are used for buyback and burns.", + "explorer": "https://bscscan.com/token/0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3", + "status": "active", + "id": "0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3", + "tags": [ + "nft" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/FCF_Bsc" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Frenchconnectiontoken/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/french-connection-finance/" + }, + { + "name": "github", + "url": "https://github.com/Frenchconnected/FCF" + }, + { + "name": "telegram", + "url": "https://t.me/frenchconnection_bsc" + }, + { + "name": "telegram_news", + "url": "https://t.me/FCF_announcement" + }, + { + "name": "facebook", + "url": "https://facebook.com/French-connection-finance-100950215648227/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/french-connection-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3/logo.png b/blockchains/smartchain/assets/0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3/logo.png new file mode 100644 index 00000000..884c5191 Binary files /dev/null and b/blockchains/smartchain/assets/0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3/logo.png differ diff --git a/blockchains/smartchain/assets/0x467e59ce5D5fe01686D4A80dd1E1DAE13549AA6c/info.json b/blockchains/smartchain/assets/0x467e59ce5D5fe01686D4A80dd1E1DAE13549AA6c/info.json new file mode 100644 index 00000000..95689920 --- /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 00000000..c6fbb570 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 new file mode 100644 index 00000000..e5afd37f --- /dev/null +++ b/blockchains/smartchain/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/info.json @@ -0,0 +1,36 @@ +{ + "name": "Wootrade Network", + "type": "BEP20", + "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://bscscan.com/token/0x4691937a7508860F876c9c0a2a617E7d9E945D4B", + "status": "active", + "id": "0x4691937a7508860F876c9c0a2a617E7d9E945D4B", + "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/smartchain/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/logo.png b/blockchains/smartchain/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/logo.png new file mode 100644 index 00000000..5cd7c399 Binary files /dev/null and b/blockchains/smartchain/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/logo.png differ diff --git a/blockchains/smartchain/assets/0x4691F60c894d3f16047824004420542E4674E621/info.json b/blockchains/smartchain/assets/0x4691F60c894d3f16047824004420542E4674E621/info.json new file mode 100644 index 00000000..95d81b28 --- /dev/null +++ b/blockchains/smartchain/assets/0x4691F60c894d3f16047824004420542E4674E621/info.json @@ -0,0 +1,33 @@ +{ + "name": "LucidLandsGem", + "type": "BEP20", + "symbol": "LLG", + "decimals": 9, + "website": "https://lucidlands.io/", + "description": "Lucid Lands is the first decentralized NFT play-to-earn game on BSC network that integrates both 3D-animated gaming NFT and 2D unique computer-generated collective NFT marketplace.", + "explorer": "https://bscscan.com/token/0x4691F60c894d3f16047824004420542E4674E621", + "status": "abandoned", + "id": "0x4691F60c894d3f16047824004420542E4674E621", + "migrate": { + "asset_id": "c10000714_t0xE4C293Eadbb9d72d68a680F1A66979726992c396", + "url": "https://t.me/LucidLandsOffcial/186" + }, + "links": [ + { + "name": "x", + "url": "https://x.com/lucid_lands" + }, + { + "name": "telegram", + "url": "https://t.me/LucidLandsOffical" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lucid-lands/" + }, + { + "name": "coingecko", + "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 00000000..06db3a89 --- /dev/null +++ b/blockchains/smartchain/assets/0x4693f6F5EF257381a28afd0673e64d8b32d5C6aD/info.json @@ -0,0 +1,24 @@ +{ + "name": "Hims & Hers Health (Ondo Tokenized)", + "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 00000000..48d6c641 Binary files /dev/null and b/blockchains/smartchain/assets/0x4693f6F5EF257381a28afd0673e64d8b32d5C6aD/logo.png differ diff --git a/blockchains/smartchain/assets/0x4695e4dD1E3011045573f6E16Dc162687cdBAc44/info.json b/blockchains/smartchain/assets/0x4695e4dD1E3011045573f6E16Dc162687cdBAc44/info.json new file mode 100644 index 00000000..07da1a0d --- /dev/null +++ b/blockchains/smartchain/assets/0x4695e4dD1E3011045573f6E16Dc162687cdBAc44/info.json @@ -0,0 +1,11 @@ +{ + "name": "Metagon Network", + "type": "BEP20", + "symbol": "METAGON", + "decimals": 18, + "website": "https://metagon.network/", + "description": "METAGON NETWORK ACHIEVE PRIVACY, HIGH ASSURANCE AND FRICTIONLESS COMPUTATION WITH BLOCKCHAIN INFRASTRUCTURE", + "explorer": "https://bscscan.com/token/0x4695e4dd1e3011045573f6e16dc162687cdbac44", + "status": "active", + "id": "0x4695e4dD1E3011045573f6E16Dc162687cdBAc44" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4695e4dD1E3011045573f6E16Dc162687cdBAc44/logo.png b/blockchains/smartchain/assets/0x4695e4dD1E3011045573f6E16Dc162687cdBAc44/logo.png new file mode 100644 index 00000000..520921c4 Binary files /dev/null and b/blockchains/smartchain/assets/0x4695e4dD1E3011045573f6E16Dc162687cdBAc44/logo.png differ diff --git a/blockchains/smartchain/assets/0x4697b2A050f7B5A8e1ebc27c325f9D78D094f041/info.json b/blockchains/smartchain/assets/0x4697b2A050f7B5A8e1ebc27c325f9D78D094f041/info.json new file mode 100644 index 00000000..46cf247c --- /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 00000000..8439cf72 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 00000000..6569048b --- /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/0x46B605a45483Df3d4944A6F06C664CA86382c203/info.json b/blockchains/smartchain/assets/0x46B605a45483Df3d4944A6F06C664CA86382c203/info.json new file mode 100644 index 00000000..3ce5a1e1 --- /dev/null +++ b/blockchains/smartchain/assets/0x46B605a45483Df3d4944A6F06C664CA86382c203/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fugu Finance", + "website": "https://www.fugufinance.com", + "description": "Fugu Finance is a decentralized ecosystem to efficient farming and staking", + "explorer": "https://bscscan.com/token/0x46b605a45483df3d4944a6f06c664ca86382c203", + "type": "BEP20", + "symbol": "FUGU", + "decimals": 0, + "status": "active", + "id": "0x46B605a45483Df3d4944A6F06C664CA86382c203" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x46B605a45483Df3d4944A6F06C664CA86382c203/logo.png b/blockchains/smartchain/assets/0x46B605a45483Df3d4944A6F06C664CA86382c203/logo.png new file mode 100644 index 00000000..446fd129 Binary files /dev/null and b/blockchains/smartchain/assets/0x46B605a45483Df3d4944A6F06C664CA86382c203/logo.png differ diff --git a/blockchains/smartchain/assets/0x46CBE14F4Ab4C665e084a0a868c49098f0Ce7704/info.json b/blockchains/smartchain/assets/0x46CBE14F4Ab4C665e084a0a868c49098f0Ce7704/info.json new file mode 100644 index 00000000..a62680f5 --- /dev/null +++ b/blockchains/smartchain/assets/0x46CBE14F4Ab4C665e084a0a868c49098f0Ce7704/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Great Wave", + "website": "https://wave.cash/", + "description": "WAVE is the token of the Great Wave off Kanagawa cyber community. Tokens are only issued by airdrop, anyone who is willing to spend a small amount of miner fees can get it for free. Relying on the surpports of the huge community members of the Great Wave off Kanagawa cyber community, accelerate the expansion of the influence of the cryptocurrency and blockchain industry.", + "explorer": "https://bscscan.com/token/0x46cbe14f4ab4c665e084a0a868c49098f0ce7704", + "type": "BEP20", + "symbol": "WAVE", + "decimals": 18, + "status": "active", + "id": "0x46CBE14F4Ab4C665e084a0a868c49098f0Ce7704" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x46CBE14F4Ab4C665e084a0a868c49098f0Ce7704/logo.png b/blockchains/smartchain/assets/0x46CBE14F4Ab4C665e084a0a868c49098f0Ce7704/logo.png new file mode 100644 index 00000000..6b7fcbd3 Binary files /dev/null and b/blockchains/smartchain/assets/0x46CBE14F4Ab4C665e084a0a868c49098f0Ce7704/logo.png differ diff --git a/blockchains/smartchain/assets/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F/info.json b/blockchains/smartchain/assets/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F/info.json new file mode 100644 index 00000000..05bd6298 --- /dev/null +++ b/blockchains/smartchain/assets/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F/info.json @@ -0,0 +1,11 @@ +{ + "name": "WolfSafePoorPeople", + "website": "https://wolfsafepoorpeople.com", + "description": "The first cryptocurrency to think about reducing the poor by providing social assistance.", + "explorer": "https://bscscan.com/token/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F", + "type": "BEP20", + "symbol": "WSPP", + "decimals": 0, + "status": "active", + "id": "0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F/logo.png b/blockchains/smartchain/assets/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F/logo.png new file mode 100644 index 00000000..d58c64a8 Binary files /dev/null and b/blockchains/smartchain/assets/0x46D502Fac9aEA7c5bC7B13C8Ec9D02378C33D36F/logo.png differ diff --git a/blockchains/smartchain/assets/0x46c3A14009645Ea49D781442f7e5AB221dF4Bb56/info.json b/blockchains/smartchain/assets/0x46c3A14009645Ea49D781442f7e5AB221dF4Bb56/info.json new file mode 100644 index 00000000..74b41fec --- /dev/null +++ b/blockchains/smartchain/assets/0x46c3A14009645Ea49D781442f7e5AB221dF4Bb56/info.json @@ -0,0 +1,11 @@ +{ + "name": "CTL Token", + "website": "https://cryptolio.finance/", + "description": "First Tokenomics Platform and Staking Reward Portfolio", + "explorer": "https://bscscan.com/token/0x46c3a14009645ea49d781442f7e5ab221df4bb56", + "type": "BEP20", + "symbol": "CTL", + "decimals": 8, + "status": "active", + "id": "0x46c3A14009645Ea49D781442f7e5AB221dF4Bb56" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x46c3A14009645Ea49D781442f7e5AB221dF4Bb56/logo.png b/blockchains/smartchain/assets/0x46c3A14009645Ea49D781442f7e5AB221dF4Bb56/logo.png new file mode 100644 index 00000000..55bf0038 Binary files /dev/null and b/blockchains/smartchain/assets/0x46c3A14009645Ea49D781442f7e5AB221dF4Bb56/logo.png differ diff --git a/blockchains/smartchain/assets/0x471f883BBd2c705F418Ba3d6667ef05342C4ee05/info.json b/blockchains/smartchain/assets/0x471f883BBd2c705F418Ba3d6667ef05342C4ee05/info.json new file mode 100644 index 00000000..c8bb6406 --- /dev/null +++ b/blockchains/smartchain/assets/0x471f883BBd2c705F418Ba3d6667ef05342C4ee05/info.json @@ -0,0 +1,32 @@ +{ + "name": "SpongeBob Square", + "type": "BEP20", + "symbol": "SPONGS", + "decimals": 9, + "website": "https://www.spongebobsquare.com/", + "description": "Spong is a meme token and has its own web marketplace that provides hoodies that can be purchased using the Spong token", + "explorer": "https://bscscan.com/token/0x471f883BBd2c705F418Ba3d6667ef05342C4ee05", + "status": "active", + "id": "0x471f883BBd2c705F418Ba3d6667ef05342C4ee05", + "links": [ + { + "name": "x", + "url": "https://x.com/Spongssqueare" + }, + { + "name": "github", + "url": "https://github.com/spongebobsquareE" + }, + { + "name": "telegram", + "url": "https://t.me/Spongsquare" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spongebob-square/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x471f883BBd2c705F418Ba3d6667ef05342C4ee05/logo.png b/blockchains/smartchain/assets/0x471f883BBd2c705F418Ba3d6667ef05342C4ee05/logo.png new file mode 100644 index 00000000..c0a487c8 Binary files /dev/null and b/blockchains/smartchain/assets/0x471f883BBd2c705F418Ba3d6667ef05342C4ee05/logo.png differ diff --git a/blockchains/smartchain/assets/0x4732A86106064577933552FCea993D30BEC950a5/info.json b/blockchains/smartchain/assets/0x4732A86106064577933552FCea993D30BEC950a5/info.json new file mode 100644 index 00000000..a879f0b8 --- /dev/null +++ b/blockchains/smartchain/assets/0x4732A86106064577933552FCea993D30BEC950a5/info.json @@ -0,0 +1,44 @@ +{ + "name": "Digichain Coin", + "type": "BEP20", + "symbol": "DIGICHAIN", + "decimals": 9, + "website": "https://prodigichain.com", + "description": "DIGICHAIN Coin The future of the crypto word, Digichain Coin has a project that adapts to all the needs of people's activities in the crypto world.", + "explorer": "https://bscscan.com/token/0x4732a86106064577933552fcea993d30bec950a5", + "status": "active", + "id": "0x4732A86106064577933552FCea993D30BEC950a5", + "links": [ + { + "name": "x", + "url": "https://x.com/prodigichain" + }, + { + "name": "telegram", + "url": "https://t.me/prodigitalchain" + }, + { + "name": "github", + "url": "https://github.com/prodigichain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/digichain/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/digichain-coin" + }, + { + "name": "source_code", + "url": "https://github.com/prodigichain/smartcontract/blob/main/digichain.sol" + }, + { + "name": "whitepaper", + "url": "https://prodigichain.com/whitepaper/digipaper.pdf" + } + ], + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4732A86106064577933552FCea993D30BEC950a5/logo.png b/blockchains/smartchain/assets/0x4732A86106064577933552FCea993D30BEC950a5/logo.png new file mode 100644 index 00000000..01d91c45 Binary files /dev/null and b/blockchains/smartchain/assets/0x4732A86106064577933552FCea993D30BEC950a5/logo.png differ diff --git a/blockchains/smartchain/assets/0x473Eb9Bd02Ad444D7E686FAB384afC476cC337B8/info.json b/blockchains/smartchain/assets/0x473Eb9Bd02Ad444D7E686FAB384afC476cC337B8/info.json new file mode 100644 index 00000000..323693da --- /dev/null +++ b/blockchains/smartchain/assets/0x473Eb9Bd02Ad444D7E686FAB384afC476cC337B8/info.json @@ -0,0 +1,11 @@ +{ + "name": "LITTLE FISH MOON", + "website": "https://littlefishmoon.finance/", + "description": "It is a community driven project built on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x473eb9bd02ad444d7e686fab384afc476cc337b8", + "type": "BEP20", + "symbol": "LTFM", + "decimals": 9, + "status": "active", + "id": "0x473Eb9Bd02Ad444D7E686FAB384afC476cC337B8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x473Eb9Bd02Ad444D7E686FAB384afC476cC337B8/logo.png b/blockchains/smartchain/assets/0x473Eb9Bd02Ad444D7E686FAB384afC476cC337B8/logo.png new file mode 100644 index 00000000..38cf2206 Binary files /dev/null and b/blockchains/smartchain/assets/0x473Eb9Bd02Ad444D7E686FAB384afC476cC337B8/logo.png differ diff --git a/blockchains/smartchain/assets/0x474FA9972E80D6cb41aa6Cec9dA666A3f1DAd2F4/info.json b/blockchains/smartchain/assets/0x474FA9972E80D6cb41aa6Cec9dA666A3f1DAd2F4/info.json new file mode 100644 index 00000000..5ba088a3 --- /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 00000000..5d18d647 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 00000000..08ee6ddb --- /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 00000000..d56552e0 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 new file mode 100644 index 00000000..f456ce7e --- /dev/null +++ b/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/info.json @@ -0,0 +1,28 @@ +{ + "name": "DogeCola", + "website": "https://www.dogecola.finance/", + "description": "Dogecoin currency of Earth.DogeCola the people’s soft drink", + "explorer": "https://bscscan.com/token/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1", + "type": "BEP20", + "symbol": "DOGECOLA", + "decimals": 18, + "status": "abandoned", + "id": "0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dogecola" + }, + { + "name": "x", + "url": "https://x.com/doge_cola" + }, + { + "name": "telegram", + "url": "https://t.me/dogecola" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x475C8dF9860E42605d9917f0a2E522cC861cbf82/info.json b/blockchains/smartchain/assets/0x475C8dF9860E42605d9917f0a2E522cC861cbf82/info.json new file mode 100644 index 00000000..f3b6d373 --- /dev/null +++ b/blockchains/smartchain/assets/0x475C8dF9860E42605d9917f0a2E522cC861cbf82/info.json @@ -0,0 +1,21 @@ +{ + "name": "Scorpion Finance", + "type": "BEP20", + "symbol": "ScorpFin", + "decimals": 18, + "website": "https://www.scorpion-finance.com/", + "description": "Scorpion Finance is one of the newest and forward-looking innovation projects in cryptocurrency platforms. Scorpion-finance aims to interconnect Blockchain services like Defi, NFT, Gaming, Payment and Marketplace under one seamless, responsive, and easy-to-use ecosystem.", + "explorer": "https://bscscan.com/token/0x475C8dF9860E42605d9917f0a2E522cC861cbf82", + "status": "active", + "id": "0x475C8dF9860E42605d9917f0a2E522cC861cbf82", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/scorpion-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/scorpion-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x475C8dF9860E42605d9917f0a2E522cC861cbf82/logo.png b/blockchains/smartchain/assets/0x475C8dF9860E42605d9917f0a2E522cC861cbf82/logo.png new file mode 100644 index 00000000..2ea3292d Binary files /dev/null and b/blockchains/smartchain/assets/0x475C8dF9860E42605d9917f0a2E522cC861cbf82/logo.png differ diff --git a/blockchains/smartchain/assets/0x475bFaa1848591ae0E6aB69600f48d828f61a80E/info.json b/blockchains/smartchain/assets/0x475bFaa1848591ae0E6aB69600f48d828f61a80E/info.json new file mode 100644 index 00000000..b4a89be3 --- /dev/null +++ b/blockchains/smartchain/assets/0x475bFaa1848591ae0E6aB69600f48d828f61a80E/info.json @@ -0,0 +1,24 @@ +{ + "name": "Everdome", + "type": "BEP20", + "symbol": "DOME", + "decimals": 18, + "website": "https://everdome.io/", + "description": "Everdome will provide a destination for Metahero’s remarkable tech to live, interact and flourish. Taking Metahero from the gateway into the metaverse, together with Everdome, to a fully ubiquitous web3 experience - to the point when you take off your VR headset you won’t be able to tell what’s real and what’s not.", + "explorer": "https://bscscan.com/token/0x475bfaa1848591ae0e6ab69600f48d828f61a80e", + "status": "active", + "id": "0x475bFaa1848591ae0E6aB69600f48d828f61a80E", + "links": [ + { + "name": "x", + "url": "https://x.com/Everdome_io" + }, + { + "name": "telegram", + "url": "https://t.me/everdome" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x475bFaa1848591ae0E6aB69600f48d828f61a80E/logo.png b/blockchains/smartchain/assets/0x475bFaa1848591ae0E6aB69600f48d828f61a80E/logo.png new file mode 100644 index 00000000..b4c5e8a1 Binary files /dev/null and b/blockchains/smartchain/assets/0x475bFaa1848591ae0E6aB69600f48d828f61a80E/logo.png differ diff --git a/blockchains/smartchain/assets/0x476DA763fb6D22B8465f7886d2d652A428a93984/info.json b/blockchains/smartchain/assets/0x476DA763fb6D22B8465f7886d2d652A428a93984/info.json new file mode 100644 index 00000000..b0b1312b --- /dev/null +++ b/blockchains/smartchain/assets/0x476DA763fb6D22B8465f7886d2d652A428a93984/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mero", + "website": "https://mero.blue", + "description": "Mero is open source, community owned and driven. We are helping spearhead change in the crypto world, by encouraging mass adoption of cryptocurrency payments by open source development of revolutionary use cases.", + "explorer": "https://bscscan.com/token/0x476da763fb6d22b8465f7886d2d652a428a93984", + "type": "BEP20", + "symbol": "MERO", + "decimals": 18, + "status": "active", + "id": "0x476DA763fb6D22B8465f7886d2d652A428a93984" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x476DA763fb6D22B8465f7886d2d652A428a93984/logo.png b/blockchains/smartchain/assets/0x476DA763fb6D22B8465f7886d2d652A428a93984/logo.png new file mode 100644 index 00000000..0c7ac579 Binary files /dev/null and b/blockchains/smartchain/assets/0x476DA763fb6D22B8465f7886d2d652A428a93984/logo.png differ diff --git a/blockchains/smartchain/assets/0x4770aB6FCeD223124b8616e08003D37ff13f8888/info.json b/blockchains/smartchain/assets/0x4770aB6FCeD223124b8616e08003D37ff13f8888/info.json new file mode 100644 index 00000000..8747ccb1 --- /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/0x477bC8d23c634C154061869478bce96BE6045D12/info.json b/blockchains/smartchain/assets/0x477bC8d23c634C154061869478bce96BE6045D12/info.json new file mode 100644 index 00000000..35e1b910 --- /dev/null +++ b/blockchains/smartchain/assets/0x477bC8d23c634C154061869478bce96BE6045D12/info.json @@ -0,0 +1,11 @@ +{ + "name": "SeedifyFund", + "type": "BEP20", + "symbol": "SFUND", + "decimals": 18, + "website": "https://seedify.fund", + "description": "A Blockchain Innovation Ecosystem, with a Seed Stage Fund, Decentralized Incubator, and Launchpad", + "explorer": "https://bscscan.com/token/0x477bC8d23c634C154061869478bce96BE6045D12", + "status": "active", + "id": "0x477bC8d23c634C154061869478bce96BE6045D12" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x477bC8d23c634C154061869478bce96BE6045D12/logo.png b/blockchains/smartchain/assets/0x477bC8d23c634C154061869478bce96BE6045D12/logo.png new file mode 100644 index 00000000..149d2563 Binary files /dev/null and b/blockchains/smartchain/assets/0x477bC8d23c634C154061869478bce96BE6045D12/logo.png differ diff --git a/blockchains/smartchain/assets/0x4796AB7F44E0561Ae353119B3E59a3F724E5F49e/info.json b/blockchains/smartchain/assets/0x4796AB7F44E0561Ae353119B3E59a3F724E5F49e/info.json new file mode 100644 index 00000000..ebe8ff73 --- /dev/null +++ b/blockchains/smartchain/assets/0x4796AB7F44E0561Ae353119B3E59a3F724E5F49e/info.json @@ -0,0 +1,11 @@ +{ + "name": "FOX Token", + "website": "https://foxnft.io", + "description": "FoxNFT is an ecological platform focusing on NFT to promote the concept of digital brand assets, it is based on the BSC smart chain and through encryption technology to solve brand assets’ issues in casting, trading, storaging, distributing and other issues.FoxNFT can empower NFT and brands in financial, game, collecting, social and other scenarios, opening barriers to the real and encrypted world.", + "explorer": "https://bscscan.com/token/0x4796ab7f44e0561ae353119b3e59a3f724e5f49e", + "type": "BEP20", + "symbol": "FOX", + "decimals": 18, + "status": "active", + "id": "0x4796AB7F44E0561Ae353119B3E59a3F724E5F49e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4796AB7F44E0561Ae353119B3E59a3F724E5F49e/logo.png b/blockchains/smartchain/assets/0x4796AB7F44E0561Ae353119B3E59a3F724E5F49e/logo.png new file mode 100644 index 00000000..880adf1e Binary files /dev/null and b/blockchains/smartchain/assets/0x4796AB7F44E0561Ae353119B3E59a3F724E5F49e/logo.png differ diff --git a/blockchains/smartchain/assets/0x47A1EB0b825b73e6A14807BEaECAFef199d5477c/info.json b/blockchains/smartchain/assets/0x47A1EB0b825b73e6A14807BEaECAFef199d5477c/info.json new file mode 100644 index 00000000..83caf96f --- /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 00000000..368605a1 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 00000000..b3c1feb6 --- /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 00000000..d83a0ac3 Binary files /dev/null and b/blockchains/smartchain/assets/0x47B36DDB9dd12A8411f78226f55e8c3f0D65481f/logo.png differ diff --git a/blockchains/smartchain/assets/0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A/info.json b/blockchains/smartchain/assets/0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A/info.json new file mode 100644 index 00000000..15c22f73 --- /dev/null +++ b/blockchains/smartchain/assets/0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A/info.json @@ -0,0 +1,12 @@ +{ + "name": "Swipe", + "website": "https://swipe.io/token", + "description": "Swipe Token is a utility token designed to be the gas and fuel of the Swipe Wallet and Swipe Card.", + "explorer": "https://bscscan.com/token/0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A", + "research": "https://research.binance.com/en/projects/swipe", + "type": "BEP20", + "symbol": "SXP", + "decimals": 18, + "status": "active", + "id": "0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A/logo.png b/blockchains/smartchain/assets/0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A/logo.png new file mode 100644 index 00000000..d3c9933a Binary files /dev/null and b/blockchains/smartchain/assets/0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A/logo.png differ diff --git a/blockchains/smartchain/assets/0x47FdfeA2c5741Acd7Be0377029D6C507154D86B9/info.json b/blockchains/smartchain/assets/0x47FdfeA2c5741Acd7Be0377029D6C507154D86B9/info.json new file mode 100644 index 00000000..5f38df43 --- /dev/null +++ b/blockchains/smartchain/assets/0x47FdfeA2c5741Acd7Be0377029D6C507154D86B9/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeETH", + "type": "BEP20", + "symbol": "SAFEETH", + "decimals": 9, + "website": "https://safeethbsc.com/", + "description": "SafeETH is an autonomous yield and liquidly generation protocol.", + "explorer": "https://bscscan.com/token/0x47FdfeA2c5741Acd7Be0377029D6C507154D86B9", + "status": "active", + "id": "0x47FdfeA2c5741Acd7Be0377029D6C507154D86B9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x47FdfeA2c5741Acd7Be0377029D6C507154D86B9/logo.png b/blockchains/smartchain/assets/0x47FdfeA2c5741Acd7Be0377029D6C507154D86B9/logo.png new file mode 100644 index 00000000..5a0820f0 Binary files /dev/null and b/blockchains/smartchain/assets/0x47FdfeA2c5741Acd7Be0377029D6C507154D86B9/logo.png differ diff --git a/blockchains/smartchain/assets/0x47b80B600d5E4d2a6C2E1bDA0e2D460EF6689850/info.json b/blockchains/smartchain/assets/0x47b80B600d5E4d2a6C2E1bDA0e2D460EF6689850/info.json new file mode 100644 index 00000000..cd986996 --- /dev/null +++ b/blockchains/smartchain/assets/0x47b80B600d5E4d2a6C2E1bDA0e2D460EF6689850/info.json @@ -0,0 +1,11 @@ +{ + "name": "AutCoin", + "website": "https://www.autcoin.io/", + "description": "AutCoin is a charity token designed to support people with Autism", + "explorer": "https://bscscan.com/token/0x47b80B600d5E4d2a6C2E1bDA0e2D460EF6689850", + "type": "BEP20", + "symbol": "AUT", + "decimals": 9, + "status": "active", + "id": "0x47b80B600d5E4d2a6C2E1bDA0e2D460EF6689850" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x47b80B600d5E4d2a6C2E1bDA0e2D460EF6689850/logo.png b/blockchains/smartchain/assets/0x47b80B600d5E4d2a6C2E1bDA0e2D460EF6689850/logo.png new file mode 100644 index 00000000..b3eb0b99 Binary files /dev/null and b/blockchains/smartchain/assets/0x47b80B600d5E4d2a6C2E1bDA0e2D460EF6689850/logo.png differ diff --git a/blockchains/smartchain/assets/0x47c1C7B9D7941A7265D123DCfb100D8FB5348213/info.json b/blockchains/smartchain/assets/0x47c1C7B9D7941A7265D123DCfb100D8FB5348213/info.json new file mode 100644 index 00000000..93d4c55a --- /dev/null +++ b/blockchains/smartchain/assets/0x47c1C7B9D7941A7265D123DCfb100D8FB5348213/info.json @@ -0,0 +1,12 @@ +{ + "name": "YVS Finance", + "website": "https://yvs.finance", + "description": "The first and only yield-farming, vaults and staking deflationary token with no admin control.", + "explorer": "https://bscscan.com/token/0x47c1c7b9d7941a7265d123dcfb100d8fb5348213", + "research": "https://yvs.finance/files/whitepaper.pdf", + "type": "BEP20", + "symbol": "YVS", + "decimals": 18, + "status": "active", + "id": "0x47c1C7B9D7941A7265D123DCfb100D8FB5348213" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x47c1C7B9D7941A7265D123DCfb100D8FB5348213/logo.png b/blockchains/smartchain/assets/0x47c1C7B9D7941A7265D123DCfb100D8FB5348213/logo.png new file mode 100644 index 00000000..6966541c Binary files /dev/null and b/blockchains/smartchain/assets/0x47c1C7B9D7941A7265D123DCfb100D8FB5348213/logo.png differ diff --git a/blockchains/smartchain/assets/0x47cC5334F65611EA6Be9e933C49485c88C17F5F0/info.json b/blockchains/smartchain/assets/0x47cC5334F65611EA6Be9e933C49485c88C17F5F0/info.json new file mode 100644 index 00000000..50aca695 --- /dev/null +++ b/blockchains/smartchain/assets/0x47cC5334F65611EA6Be9e933C49485c88C17F5F0/info.json @@ -0,0 +1,41 @@ +{ + "name": "EpicHero Token", + "website": "https://epichero.io/", + "description": "EpicHero is the Biggest 3D NFT War Game on BSC, the first ever P2E game with NFT holders reflection rewards in BNB", + "explorer": "https://bscscan.com/token/0x47cc5334f65611ea6be9e933c49485c88c17f5f0", + "type": "BEP20", + "symbol": "EPICHERO", + "decimals": 18, + "status": "active", + "id": "0x47cC5334F65611EA6Be9e933C49485c88C17F5F0", + "links": [ + { + "name": "x", + "url": "https://x.com/EpicHeroio" + }, + { + "name": "telegram", + "url": "https://t.me/epicheroio" + }, + { + "name": "docs", + "url": "https://docs.epichero.io/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/epicheroio/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCwvzcKP6hp-9Ud21iyeA_aA" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/epichero" + }, + { + "name": "github", + "url": "https://github.com/epicheronft/epichero-token-contract?fbclid=IwAR0irxgUcWDejbebFNa08qYalvg5SpNlbwWWuTcRSIKAKjbLvlANcy8BQsU" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x47cC5334F65611EA6Be9e933C49485c88C17F5F0/logo.png b/blockchains/smartchain/assets/0x47cC5334F65611EA6Be9e933C49485c88C17F5F0/logo.png new file mode 100644 index 00000000..675d14cc Binary files /dev/null and b/blockchains/smartchain/assets/0x47cC5334F65611EA6Be9e933C49485c88C17F5F0/logo.png differ diff --git a/blockchains/smartchain/assets/0x47d3093210031664Ec8d0Ce29E3dcb616BaA4E1A/info.json b/blockchains/smartchain/assets/0x47d3093210031664Ec8d0Ce29E3dcb616BaA4E1A/info.json new file mode 100644 index 00000000..7ed6d66c --- /dev/null +++ b/blockchains/smartchain/assets/0x47d3093210031664Ec8d0Ce29E3dcb616BaA4E1A/info.json @@ -0,0 +1,11 @@ +{ + "name": "XCell Finance", + "type": "BEP20", + "symbol": "XCELL", + "decimals": 18, + "website": "https://xcellfinance.org/", + "description": "Xcell is a defi protocol powered by binance smart chain", + "explorer": "https://bscscan.com/token/0x47d3093210031664Ec8d0Ce29E3dcb616BaA4E1A", + "status": "active", + "id": "0x47d3093210031664Ec8d0Ce29E3dcb616BaA4E1A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x47d3093210031664Ec8d0Ce29E3dcb616BaA4E1A/logo.png b/blockchains/smartchain/assets/0x47d3093210031664Ec8d0Ce29E3dcb616BaA4E1A/logo.png new file mode 100644 index 00000000..240a5f0c Binary files /dev/null and b/blockchains/smartchain/assets/0x47d3093210031664Ec8d0Ce29E3dcb616BaA4E1A/logo.png differ diff --git a/blockchains/smartchain/assets/0x47d42E0e864ceFf8C4270F7b6E1f6F91Da45882C/info.json b/blockchains/smartchain/assets/0x47d42E0e864ceFf8C4270F7b6E1f6F91Da45882C/info.json new file mode 100644 index 00000000..88ba0fae --- /dev/null +++ b/blockchains/smartchain/assets/0x47d42E0e864ceFf8C4270F7b6E1f6F91Da45882C/info.json @@ -0,0 +1,32 @@ +{ + "name": "EverEarn", + "type": "BEP20", + "symbol": "EARN", + "decimals": 18, + "website": "https://everearn.net", + "description": "EverEarn Coin (EARN), is a BSC blockchain platform designed to DISTRIBUTE WEALTH to the people, by providing the HIGHEST BUSD REWARDS ratio on the planet.", + "explorer": "https://bscscan.com/token/0x47d42E0e864ceFf8C4270F7b6E1f6F91Da45882C", + "status": "active", + "id": "0x47d42E0e864ceFf8C4270F7b6E1f6F91Da45882C", + "links": [ + { + "name": "x", + "url": "https://x.com/theEverEarn" + }, + { + "name": "telegram", + "url": "https://t.me/EverEarnOfficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/everearnofficial/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/everearn/" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x47d42E0e864ceFf8C4270F7b6E1f6F91Da45882C/logo.png b/blockchains/smartchain/assets/0x47d42E0e864ceFf8C4270F7b6E1f6F91Da45882C/logo.png new file mode 100644 index 00000000..2739253a Binary files /dev/null and b/blockchains/smartchain/assets/0x47d42E0e864ceFf8C4270F7b6E1f6F91Da45882C/logo.png differ diff --git a/blockchains/smartchain/assets/0x47dd8AEF9015d8e5a91d5B9062828BBCcd5fEFcc/info.json b/blockchains/smartchain/assets/0x47dd8AEF9015d8e5a91d5B9062828BBCcd5fEFcc/info.json new file mode 100644 index 00000000..09ade49b --- /dev/null +++ b/blockchains/smartchain/assets/0x47dd8AEF9015d8e5a91d5B9062828BBCcd5fEFcc/info.json @@ -0,0 +1,11 @@ +{ + "name": "TANTAN Token", + "website": "https://tantantoken.com", + "description": "TANTAN is Memes Token", + "explorer": "https://bscscan.com/token/0x47dd8AEF9015d8e5a91d5B9062828BBCcd5fEFcc", + "symbol": "TANTAN", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x47dd8AEF9015d8e5a91d5B9062828BBCcd5fEFcc" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x47dd8AEF9015d8e5a91d5B9062828BBCcd5fEFcc/logo.png b/blockchains/smartchain/assets/0x47dd8AEF9015d8e5a91d5B9062828BBCcd5fEFcc/logo.png new file mode 100644 index 00000000..2cbd750d Binary files /dev/null and b/blockchains/smartchain/assets/0x47dd8AEF9015d8e5a91d5B9062828BBCcd5fEFcc/logo.png differ diff --git a/blockchains/smartchain/assets/0x47e28936D9c7944D106e46295d87A8E4c1Be818c/info.json b/blockchains/smartchain/assets/0x47e28936D9c7944D106e46295d87A8E4c1Be818c/info.json new file mode 100644 index 00000000..caafbc1e --- /dev/null +++ b/blockchains/smartchain/assets/0x47e28936D9c7944D106e46295d87A8E4c1Be818c/info.json @@ -0,0 +1,11 @@ +{ + "name": "MOONBAR", + "website": "https://moonbar.finance/", + "description": "Moonbar is the most delicious community-driven, fair-launched DeFi project built on Binance Smart Chain. Hodl $MOONBAR and earn $BNB while sleeping.", + "explorer": "https://bscscan.com/token/0x47e28936D9c7944D106e46295d87A8E4c1Be818c", + "type": "BEP20", + "symbol": "MOONBAR", + "decimals": 9, + "status": "active", + "id": "0x47e28936D9c7944D106e46295d87A8E4c1Be818c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x47e28936D9c7944D106e46295d87A8E4c1Be818c/logo.png b/blockchains/smartchain/assets/0x47e28936D9c7944D106e46295d87A8E4c1Be818c/logo.png new file mode 100644 index 00000000..1644943f Binary files /dev/null and b/blockchains/smartchain/assets/0x47e28936D9c7944D106e46295d87A8E4c1Be818c/logo.png differ diff --git a/blockchains/smartchain/assets/0x47e7dd5fA9BBd280C5422E5106b1Da444344c206/info.json b/blockchains/smartchain/assets/0x47e7dd5fA9BBd280C5422E5106b1Da444344c206/info.json new file mode 100644 index 00000000..cb816e6d --- /dev/null +++ b/blockchains/smartchain/assets/0x47e7dd5fA9BBd280C5422E5106b1Da444344c206/info.json @@ -0,0 +1,11 @@ +{ + "name": "World of Waves", + "type": "BEP20", + "symbol": "WOW", + "decimals": 9, + "website": "https://wow.surf", + "description": "WoW is a frictionless Yield & Liquidity Generation Token with a 10% fee: 5% Redistribution to all holders, 3% Matched LP, 2% to our Charity wallet for saving the worlds aquatic wildlife!", + "explorer": "https://bscscan.com/token/0x47e7dd5fA9BBd280C5422E5106b1Da444344c206", + "status": "abandoned", + "id": "0x47e7dd5fA9BBd280C5422E5106b1Da444344c206" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x47e7dd5fA9BBd280C5422E5106b1Da444344c206/logo.png b/blockchains/smartchain/assets/0x47e7dd5fA9BBd280C5422E5106b1Da444344c206/logo.png new file mode 100644 index 00000000..d8c44ee4 Binary files /dev/null and b/blockchains/smartchain/assets/0x47e7dd5fA9BBd280C5422E5106b1Da444344c206/logo.png differ diff --git a/blockchains/smartchain/assets/0x47fD00664661058546fdDaDA3eecc9f2CD41020e/info.json b/blockchains/smartchain/assets/0x47fD00664661058546fdDaDA3eecc9f2CD41020e/info.json new file mode 100644 index 00000000..a096df46 --- /dev/null +++ b/blockchains/smartchain/assets/0x47fD00664661058546fdDaDA3eecc9f2CD41020e/info.json @@ -0,0 +1,21 @@ +{ + "name": "MINIKISHU", + "type": "BEP20", + "symbol": "$MINIKISHU", + "decimals": 9, + "website": "https://mini-kishu.com/", + "description": "Mini Kishu was created in September 2021 by crypto influencers with the goal of being a decentralized meme project with true purpose.", + "explorer": "https://bscscan.com/token/0x47fD00664661058546fdDaDA3eecc9f2CD41020e", + "status": "active", + "id": "0x47fD00664661058546fdDaDA3eecc9f2CD41020e", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mini-kishu" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/minikishu" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x47fD00664661058546fdDaDA3eecc9f2CD41020e/logo.png b/blockchains/smartchain/assets/0x47fD00664661058546fdDaDA3eecc9f2CD41020e/logo.png new file mode 100644 index 00000000..791c9859 Binary files /dev/null and b/blockchains/smartchain/assets/0x47fD00664661058546fdDaDA3eecc9f2CD41020e/logo.png differ diff --git a/blockchains/smartchain/assets/0x48187890D16aEE64798E02C5BeD510f4dB5694A9/info.json b/blockchains/smartchain/assets/0x48187890D16aEE64798E02C5BeD510f4dB5694A9/info.json new file mode 100644 index 00000000..d2382808 --- /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 00000000..34299b5b 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 00000000..c7245274 --- /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 00000000..edec6db7 Binary files /dev/null and b/blockchains/smartchain/assets/0x4833e7f4f0460f4B72A3a5879A6C9841bCC5B58B/logo.png differ diff --git a/blockchains/smartchain/assets/0x484312A0AAeaE3aE36a74FF3e294246F35dDDf4F/info.json b/blockchains/smartchain/assets/0x484312A0AAeaE3aE36a74FF3e294246F35dDDf4F/info.json new file mode 100644 index 00000000..af048922 --- /dev/null +++ b/blockchains/smartchain/assets/0x484312A0AAeaE3aE36a74FF3e294246F35dDDf4F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Baby Shark Tank", + "website": "https://Bashtank.com/", + "description": "Elon Tweets, we all eat", + "explorer": "https://bscscan.com/token/0x484312A0AAeaE3aE36a74FF3e294246F35dDDf4F", + "type": "BEP20", + "symbol": "Bashtank", + "decimals": 9, + "status": "active", + "id": "0x484312A0AAeaE3aE36a74FF3e294246F35dDDf4F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x484312A0AAeaE3aE36a74FF3e294246F35dDDf4F/logo.png b/blockchains/smartchain/assets/0x484312A0AAeaE3aE36a74FF3e294246F35dDDf4F/logo.png new file mode 100644 index 00000000..d3337cd0 Binary files /dev/null and b/blockchains/smartchain/assets/0x484312A0AAeaE3aE36a74FF3e294246F35dDDf4F/logo.png differ diff --git a/blockchains/smartchain/assets/0x487770734490Ac571Cda3Bc06067048EcC5cAa4e/info.json b/blockchains/smartchain/assets/0x487770734490Ac571Cda3Bc06067048EcC5cAa4e/info.json new file mode 100644 index 00000000..3ccde2fa --- /dev/null +++ b/blockchains/smartchain/assets/0x487770734490Ac571Cda3Bc06067048EcC5cAa4e/info.json @@ -0,0 +1,33 @@ +{ + "name": "CherryPick", + "type": "BEP20", + "symbol": "Cherry", + "decimals": 18, + "website": "https://www.fletaconnect.io", + "description": "Fleta Connect is a new DeFi(Decentralized Finance) service created by Team Fleta with years of experience in the field. It is willing to offer significant benefits to our users with its own buyback mechanism and aims to give more rewards to DeFi users.", + "explorer": "https://bscscan.com/token/0x487770734490Ac571Cda3Bc06067048EcC5cAa4e", + "status": "active", + "id": "0x487770734490Ac571Cda3Bc06067048EcC5cAa4e", + "links": [ + { + "name": "x", + "url": "https://x.com/fletachain" + }, + { + "name": "github", + "url": "https://github.com/fletaio/fletaconnect" + }, + { + "name": "telegram", + "url": "https://t.me/FLETAofficialGroup" + }, + { + "name": "medium", + "url": "https://medium.com/fleta-first-chain" + }, + { + "name": "docs", + "url": "https://fletaconnect.gitbook.io/fletaconnect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x487770734490Ac571Cda3Bc06067048EcC5cAa4e/logo.png b/blockchains/smartchain/assets/0x487770734490Ac571Cda3Bc06067048EcC5cAa4e/logo.png new file mode 100644 index 00000000..88a2d851 Binary files /dev/null and b/blockchains/smartchain/assets/0x487770734490Ac571Cda3Bc06067048EcC5cAa4e/logo.png differ diff --git a/blockchains/smartchain/assets/0x487E464ED2F07306D5D0ADd219c7e13d3be9D867/info.json b/blockchains/smartchain/assets/0x487E464ED2F07306D5D0ADd219c7e13d3be9D867/info.json new file mode 100644 index 00000000..ff492414 --- /dev/null +++ b/blockchains/smartchain/assets/0x487E464ED2F07306D5D0ADd219c7e13d3be9D867/info.json @@ -0,0 +1,25 @@ +{ + "name": "The xHunter", + "website": "https://thexhunter.com/", + "description": "The xHunter is a community driven platform that aims to bridge the gap between blockchain and the outdoors. Our goal is to be the gateway for all outdoor enthusiasts into the crypto world. This will be made possible through outdoor events, adventure store and our very own NFT game.", + "explorer": "https://bscscan.com/token/0x487e464ed2f07306d5d0add219c7e13d3be9d867", + "type": "BEP20", + "symbol": "XHT", + "decimals": 9, + "status": "active", + "id": "0x487E464ED2F07306D5D0ADd219c7e13d3be9D867", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/Q3j7yzsm" + }, + { + "name": "x", + "url": "https://x.com/The_x_Hunter_" + }, + { + "name": "telegram", + "url": "https://t.me/X_Hunter_tg" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x487E464ED2F07306D5D0ADd219c7e13d3be9D867/logo.png b/blockchains/smartchain/assets/0x487E464ED2F07306D5D0ADd219c7e13d3be9D867/logo.png new file mode 100644 index 00000000..eab54046 Binary files /dev/null and b/blockchains/smartchain/assets/0x487E464ED2F07306D5D0ADd219c7e13d3be9D867/logo.png differ diff --git a/blockchains/smartchain/assets/0x487ecd4cFa635D1a9409E86Cd22d33d5abEb7b44/info.json b/blockchains/smartchain/assets/0x487ecd4cFa635D1a9409E86Cd22d33d5abEb7b44/info.json new file mode 100644 index 00000000..4d55ae2f --- /dev/null +++ b/blockchains/smartchain/assets/0x487ecd4cFa635D1a9409E86Cd22d33d5abEb7b44/info.json @@ -0,0 +1,21 @@ +{ + "name": "Vangold", + "type": "BEP20", + "symbol": "VGD", + "decimals": 18, + "website": "https://vangold.finance", + "description": "VANGOLD is one of the worlds first blockchain-based freelancer platform on the Binance Chain network, working with 100% decentralized smart contract.", + "explorer": "https://bscscan.com/token/0x487ecd4cFa635D1a9409E86Cd22d33d5abEb7b44", + "status": "active", + "id": "0x487ecd4cFa635D1a9409E86Cd22d33d5abEb7b44", + "links": [ + { + "name": "x", + "url": "https://x.com/vangoldfinance" + }, + { + "name": "github", + "url": "https://github.com/vangoldfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x487ecd4cFa635D1a9409E86Cd22d33d5abEb7b44/logo.png b/blockchains/smartchain/assets/0x487ecd4cFa635D1a9409E86Cd22d33d5abEb7b44/logo.png new file mode 100644 index 00000000..8fed641d Binary files /dev/null and b/blockchains/smartchain/assets/0x487ecd4cFa635D1a9409E86Cd22d33d5abEb7b44/logo.png differ diff --git a/blockchains/smartchain/assets/0x48A64f116Ce221fD7c1119775ba7892701F9911d/info.json b/blockchains/smartchain/assets/0x48A64f116Ce221fD7c1119775ba7892701F9911d/info.json new file mode 100644 index 00000000..b77810bd --- /dev/null +++ b/blockchains/smartchain/assets/0x48A64f116Ce221fD7c1119775ba7892701F9911d/info.json @@ -0,0 +1,11 @@ +{ + "name": "GemSpree", + "type": "BEP20", + "symbol": "GEMS", + "decimals": 9, + "website": "https://gemspree.finance/", + "description": "Gemspree is a rug proof utility token which aims to provide an NFT marketplace combined with advertising platform and charity donations focusing on kids with cancer around the world. ", + "explorer": "https://bscscan.com/token/0x48A64f116Ce221fD7c1119775ba7892701F9911d", + "status": "active", + "id": "0x48A64f116Ce221fD7c1119775ba7892701F9911d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x48A64f116Ce221fD7c1119775ba7892701F9911d/logo.png b/blockchains/smartchain/assets/0x48A64f116Ce221fD7c1119775ba7892701F9911d/logo.png new file mode 100644 index 00000000..4af4d9a8 Binary files /dev/null and b/blockchains/smartchain/assets/0x48A64f116Ce221fD7c1119775ba7892701F9911d/logo.png differ diff --git a/blockchains/smartchain/assets/0x48CbC7f87C657fEA3B297F658a5133a5deeF9b04/info.json b/blockchains/smartchain/assets/0x48CbC7f87C657fEA3B297F658a5133a5deeF9b04/info.json new file mode 100644 index 00000000..1e498fd1 --- /dev/null +++ b/blockchains/smartchain/assets/0x48CbC7f87C657fEA3B297F658a5133a5deeF9b04/info.json @@ -0,0 +1,33 @@ +{ + "name": "MiniFlokiADA", + "type": "BEP20", + "symbol": "MFLOKIADA", + "decimals": 9, + "website": "https://www.miniflokiada.com", + "description": "MiniFlokiADA, the All-In-One Function Token in Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x48CbC7f87C657fEA3B297F658a5133a5deeF9b04", + "status": "active", + "id": "0x48CbC7f87C657fEA3B297F658a5133a5deeF9b04", + "links": [ + { + "name": "telegram", + "url": "https://t.me/miniflokiada" + }, + { + "name": "x", + "url": "https://x.com/miniflookiada" + }, + { + "name": "github", + "url": "https://github.com/MiniFlokiADA/MiniFlokiADA" + }, + { + "name": "telegram_news", + "url": "https://t.me/miniflokiadaannouncement" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/miniflokiada" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x48CbC7f87C657fEA3B297F658a5133a5deeF9b04/logo.png b/blockchains/smartchain/assets/0x48CbC7f87C657fEA3B297F658a5133a5deeF9b04/logo.png new file mode 100644 index 00000000..259f784f Binary files /dev/null and b/blockchains/smartchain/assets/0x48CbC7f87C657fEA3B297F658a5133a5deeF9b04/logo.png differ diff --git a/blockchains/smartchain/assets/0x490DbA6180b089d8E36eBb1E56a33F1aE9B96b87/info.json b/blockchains/smartchain/assets/0x490DbA6180b089d8E36eBb1E56a33F1aE9B96b87/info.json new file mode 100644 index 00000000..807dd065 --- /dev/null +++ b/blockchains/smartchain/assets/0x490DbA6180b089d8E36eBb1E56a33F1aE9B96b87/info.json @@ -0,0 +1,11 @@ +{ + "name": "OpenBiSea", + "type": "BEP20", + "symbol": "OBS", + "decimals": 18, + "website": "https://openbisea.io/", + "description": "Auction in a SAFU all-in-one place to cut any NFT deal in a few clicks. Mobile, decentralized, community-owned.", + "explorer": "https://bscscan.com/token/0x490DbA6180b089d8E36eBb1E56a33F1aE9B96b87", + "status": "active", + "id": "0x490DbA6180b089d8E36eBb1E56a33F1aE9B96b87" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x490DbA6180b089d8E36eBb1E56a33F1aE9B96b87/logo.png b/blockchains/smartchain/assets/0x490DbA6180b089d8E36eBb1E56a33F1aE9B96b87/logo.png new file mode 100644 index 00000000..fb9f4d37 Binary files /dev/null and b/blockchains/smartchain/assets/0x490DbA6180b089d8E36eBb1E56a33F1aE9B96b87/logo.png differ diff --git a/blockchains/smartchain/assets/0x49152DD96bE5a710fAcF9a8aB7DE4343A49186d5/info.json b/blockchains/smartchain/assets/0x49152DD96bE5a710fAcF9a8aB7DE4343A49186d5/info.json new file mode 100644 index 00000000..634a9cf7 --- /dev/null +++ b/blockchains/smartchain/assets/0x49152DD96bE5a710fAcF9a8aB7DE4343A49186d5/info.json @@ -0,0 +1,49 @@ +{ + "name": "DART Inu", + "type": "BEP20", + "symbol": "DART", + "decimals": 9, + "website": "https://dartinu.com", + "description": "Dart Inu is a Metaverse token which supports the vision of NASA's Double Asteroid Redirection Test to defend Mother Earth", + "explorer": "https://bscscan.com/token/0x49152DD96bE5a710fAcF9a8aB7DE4343A49186d5", + "status": "active", + "id": "0x49152DD96bE5a710fAcF9a8aB7DE4343A49186d5", + "links": [ + { + "name": "x", + "url": "https://x.com/dartinu_bsc" + }, + { + "name": "github", + "url": "https://github.com/dartinu" + }, + { + "name": "telegram", + "url": "https://t.me/dartinu" + }, + { + "name": "telegram_news", + "url": "https://t.me/dartinu_news" + }, + { + "name": "whitepaper", + "url": "https://dartinu.com/assets/dart_inu_whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@dartinu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dart-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dart-inu" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x49152dd96be5a710facf9a8ab7de4343a49186d5#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x49152DD96bE5a710fAcF9a8aB7DE4343A49186d5/logo.png b/blockchains/smartchain/assets/0x49152DD96bE5a710fAcF9a8aB7DE4343A49186d5/logo.png new file mode 100644 index 00000000..aa0ce163 Binary files /dev/null and b/blockchains/smartchain/assets/0x49152DD96bE5a710fAcF9a8aB7DE4343A49186d5/logo.png differ diff --git a/blockchains/smartchain/assets/0x49324d59327fB799813B902dB55b2a118d601547/info.json b/blockchains/smartchain/assets/0x49324d59327fB799813B902dB55b2a118d601547/info.json new file mode 100644 index 00000000..3b16fd51 --- /dev/null +++ b/blockchains/smartchain/assets/0x49324d59327fB799813B902dB55b2a118d601547/info.json @@ -0,0 +1,25 @@ +{ + "name": "Boss Token", + "type": "BEP20", + "symbol": "BOSS", + "decimals": 9, + "website": "https://bosstoken.com/ ", + "description": "The Boss Token is a community driven DeFi cryptocurrency, with the aim to become the boss of Dogcoins! Two main functions happen during a trade, RFI static rewards distributed to holders and LP acquisition.", + "explorer": "https://bscscan.com/token/0x49324d59327fB799813B902dB55b2a118d601547", + "status": "active", + "id": "0x49324d59327fB799813B902dB55b2a118d601547", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/boss-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/boss" + }, + { + "name": "telegram", + "url": "https://t.me/bosstokencrypto" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x49324d59327fB799813B902dB55b2a118d601547/logo.png b/blockchains/smartchain/assets/0x49324d59327fB799813B902dB55b2a118d601547/logo.png new file mode 100644 index 00000000..efc30c64 Binary files /dev/null and b/blockchains/smartchain/assets/0x49324d59327fB799813B902dB55b2a118d601547/logo.png differ diff --git a/blockchains/smartchain/assets/0x493361D6164093936c86Dcb35Ad03b4C0D032076/info.json b/blockchains/smartchain/assets/0x493361D6164093936c86Dcb35Ad03b4C0D032076/info.json new file mode 100644 index 00000000..929ae6de --- /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 00000000..f802e0ff 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 00000000..2621d174 --- /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/0x494A2f5395aC213622762e4ef4d44661758Ca639/info.json b/blockchains/smartchain/assets/0x494A2f5395aC213622762e4ef4d44661758Ca639/info.json new file mode 100644 index 00000000..24603f36 --- /dev/null +++ b/blockchains/smartchain/assets/0x494A2f5395aC213622762e4ef4d44661758Ca639/info.json @@ -0,0 +1,11 @@ +{ + "name": "CashDog", + "website": "https://www.cashdog.io/", + "description": "CashDog is a Charity Focused DeFi Token with Automatic Liquidity Generation and Token Redistribution on each trade.", + "explorer": "https://bscscan.com/token/0x494a2f5395ac213622762e4ef4d44661758ca639", + "type": "BEP20", + "symbol": "CASHDOG", + "decimals": 9, + "status": "active", + "id": "0x494A2f5395aC213622762e4ef4d44661758Ca639" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x494A2f5395aC213622762e4ef4d44661758Ca639/logo.png b/blockchains/smartchain/assets/0x494A2f5395aC213622762e4ef4d44661758Ca639/logo.png new file mode 100644 index 00000000..fbdd21a5 Binary files /dev/null and b/blockchains/smartchain/assets/0x494A2f5395aC213622762e4ef4d44661758Ca639/logo.png differ diff --git a/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/info.json b/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/info.json new file mode 100644 index 00000000..5af36345 --- /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 00000000..c5066aca Binary files /dev/null and b/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/logo.png differ diff --git a/blockchains/smartchain/assets/0x4954e0062E0A7668A2FE3df924cD20E6440a7b77/info.json b/blockchains/smartchain/assets/0x4954e0062E0A7668A2FE3df924cD20E6440a7b77/info.json new file mode 100644 index 00000000..21d3e076 --- /dev/null +++ b/blockchains/smartchain/assets/0x4954e0062E0A7668A2FE3df924cD20E6440a7b77/info.json @@ -0,0 +1,11 @@ +{ + "name": "ByteNext", + "type": "BEP20", + "symbol": "BNU", + "decimals": 18, + "website": "https://bytenext.io/", + "description": "BYTENEXT aims to build up the AvatarArt platform to support art creators worldwide to make their paintings become NFT on Binance Smart Chain, conduct auctions and transactions globally. AvatarArt will be a pioneer in bringing real values in life to the NFT space.", + "explorer": "https://bscscan.com/token/0x4954e0062e0a7668a2fe3df924cd20e6440a7b77", + "status": "active", + "id": "0x4954e0062E0A7668A2FE3df924cD20E6440a7b77" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4954e0062E0A7668A2FE3df924cD20E6440a7b77/logo.png b/blockchains/smartchain/assets/0x4954e0062E0A7668A2FE3df924cD20E6440a7b77/logo.png new file mode 100644 index 00000000..87c8d296 Binary files /dev/null and b/blockchains/smartchain/assets/0x4954e0062E0A7668A2FE3df924cD20E6440a7b77/logo.png differ diff --git a/blockchains/smartchain/assets/0x4988967B2cC002eDCCeA8d40870b7958E5aBa704/info.json b/blockchains/smartchain/assets/0x4988967B2cC002eDCCeA8d40870b7958E5aBa704/info.json new file mode 100644 index 00000000..e8db6b18 --- /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 00000000..30e1256d Binary files /dev/null and b/blockchains/smartchain/assets/0x4988967B2cC002eDCCeA8d40870b7958E5aBa704/logo.png differ diff --git a/blockchains/smartchain/assets/0x49954Ad438fa9e27C21AeCd35078dD52cDDd96be/info.json b/blockchains/smartchain/assets/0x49954Ad438fa9e27C21AeCd35078dD52cDDd96be/info.json new file mode 100644 index 00000000..26eada32 --- /dev/null +++ b/blockchains/smartchain/assets/0x49954Ad438fa9e27C21AeCd35078dD52cDDd96be/info.json @@ -0,0 +1,24 @@ +{ + "name": "ZOMBIE SKRAT", + "type": "BEP20", + "symbol": "ZSKRAT", + "decimals": 9, + "website": "https://www.zombieskrat.com/", + "description": "Zombie SKRAT! Is a unique meme token which will go to extreme lengths to hold onto what he cares most about, $ZSKRAT token 💥", + "explorer": "https://bscscan.com/token/0x49954Ad438fa9e27C21AeCd35078dD52cDDd96be", + "status": "active", + "id": "0x49954Ad438fa9e27C21AeCd35078dD52cDDd96be", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ZombieSKRAT" + }, + { + "name": "telegram_news", + "url": "https://t.me/ZombieSKRATANN" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x49954Ad438fa9e27C21AeCd35078dD52cDDd96be/logo.png b/blockchains/smartchain/assets/0x49954Ad438fa9e27C21AeCd35078dD52cDDd96be/logo.png new file mode 100644 index 00000000..159be157 Binary files /dev/null and b/blockchains/smartchain/assets/0x49954Ad438fa9e27C21AeCd35078dD52cDDd96be/logo.png differ diff --git a/blockchains/smartchain/assets/0x499D35eBE6cEe9B2Ac35Fd003fcBbeeB9CFc7B32/info.json b/blockchains/smartchain/assets/0x499D35eBE6cEe9B2Ac35Fd003fcBbeeB9CFc7B32/info.json new file mode 100644 index 00000000..6a43242a --- /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 00000000..8bf17512 Binary files /dev/null and b/blockchains/smartchain/assets/0x499D35eBE6cEe9B2Ac35Fd003fcBbeeB9CFc7B32/logo.png differ diff --git a/blockchains/smartchain/assets/0x49BA054B9664e99ac335667a917c63bB94332E84/info.json b/blockchains/smartchain/assets/0x49BA054B9664e99ac335667a917c63bB94332E84/info.json new file mode 100644 index 00000000..97601f8f --- /dev/null +++ b/blockchains/smartchain/assets/0x49BA054B9664e99ac335667a917c63bB94332E84/info.json @@ -0,0 +1,14 @@ +{ + "name": "FTX Token (Portal)", + "type": "BEP20", + "symbol": "FTT", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://ftx.com", + "explorer": "https://bscscan.com/token/0x49BA054B9664e99ac335667a917c63bB94332E84", + "status": "active", + "id": "0x49BA054B9664e99ac335667a917c63bB94332E84", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x49BA054B9664e99ac335667a917c63bB94332E84/logo.png b/blockchains/smartchain/assets/0x49BA054B9664e99ac335667a917c63bB94332E84/logo.png new file mode 100644 index 00000000..a31cef5e Binary files /dev/null and b/blockchains/smartchain/assets/0x49BA054B9664e99ac335667a917c63bB94332E84/logo.png differ diff --git a/blockchains/smartchain/assets/0x49Da2Af365aE4F888C5390D7eC1c64ecd7368a79/info.json b/blockchains/smartchain/assets/0x49Da2Af365aE4F888C5390D7eC1c64ecd7368a79/info.json new file mode 100644 index 00000000..246bdbd5 --- /dev/null +++ b/blockchains/smartchain/assets/0x49Da2Af365aE4F888C5390D7eC1c64ecd7368a79/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShibaSaur INU", + "website": "https://shibasaur.finance", + "description": "ShibS token is a community driven token with automatic LP and reflective rewards.", + "explorer": "https://bscscan.com/token/0x49Da2Af365aE4F888C5390D7eC1c64ecd7368a79", + "type": "BEP20", + "symbol": "ShibS", + "decimals": 9, + "status": "active", + "id": "0x49Da2Af365aE4F888C5390D7eC1c64ecd7368a79" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x49Da2Af365aE4F888C5390D7eC1c64ecd7368a79/logo.png b/blockchains/smartchain/assets/0x49Da2Af365aE4F888C5390D7eC1c64ecd7368a79/logo.png new file mode 100644 index 00000000..ef1889aa Binary files /dev/null and b/blockchains/smartchain/assets/0x49Da2Af365aE4F888C5390D7eC1c64ecd7368a79/logo.png differ diff --git a/blockchains/smartchain/assets/0x49cAF8Bf1E6322CfC9913096f49f08dD46584444/info.json b/blockchains/smartchain/assets/0x49cAF8Bf1E6322CfC9913096f49f08dD46584444/info.json new file mode 100644 index 00000000..dfebdb2e --- /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/0x49d5cC521F75e13fa8eb4E89E9D381352C897c96/info.json b/blockchains/smartchain/assets/0x49d5cC521F75e13fa8eb4E89E9D381352C897c96/info.json new file mode 100644 index 00000000..9e8eb966 --- /dev/null +++ b/blockchains/smartchain/assets/0x49d5cC521F75e13fa8eb4E89E9D381352C897c96/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from Solana)", + "type": "BEP20", + "symbol": "USDTso", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://bscscan.com/token/0x49d5cC521F75e13fa8eb4E89E9D381352C897c96", + "status": "active", + "id": "0x49d5cC521F75e13fa8eb4E89E9D381352C897c96", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x49d5cC521F75e13fa8eb4E89E9D381352C897c96/logo.png b/blockchains/smartchain/assets/0x49d5cC521F75e13fa8eb4E89E9D381352C897c96/logo.png new file mode 100644 index 00000000..d52df831 Binary files /dev/null and b/blockchains/smartchain/assets/0x49d5cC521F75e13fa8eb4E89E9D381352C897c96/logo.png differ diff --git a/blockchains/smartchain/assets/0x49f2145d6366099e13B10FbF80646C0F377eE7f6/info.json b/blockchains/smartchain/assets/0x49f2145d6366099e13B10FbF80646C0F377eE7f6/info.json new file mode 100644 index 00000000..35dbb852 --- /dev/null +++ b/blockchains/smartchain/assets/0x49f2145d6366099e13B10FbF80646C0F377eE7f6/info.json @@ -0,0 +1,24 @@ +{ + "name": "FC Porto Fan Token", + "type": "BEP20", + "symbol": "PORTO", + "decimals": 8, + "website": "https://www.binance.com/en/fan-token/team-profile/porto", + "description": "BEP-20 Utility token for FC Porto", + "explorer": "https://bscscan.com/token/0x49f2145d6366099e13B10FbF80646C0F377eE7f6", + "status": "active", + "id": "0x49f2145d6366099e13B10FbF80646C0F377eE7f6", + "links": [ + { + "name": "x", + "url": "https://x.com/FCPorto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fc-porto/" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x49f2145d6366099e13B10FbF80646C0F377eE7f6/logo.png b/blockchains/smartchain/assets/0x49f2145d6366099e13B10FbF80646C0F377eE7f6/logo.png new file mode 100644 index 00000000..42063093 Binary files /dev/null and b/blockchains/smartchain/assets/0x49f2145d6366099e13B10FbF80646C0F377eE7f6/logo.png differ diff --git a/blockchains/smartchain/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json b/blockchains/smartchain/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/info.json new file mode 100644 index 00000000..b4b2acee --- /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 00000000..05861150 Binary files /dev/null and b/blockchains/smartchain/assets/0x4A4073f2EAF299A1be22254DCD2C41727F6F54a2/logo.png differ diff --git a/blockchains/smartchain/assets/0x4A713eE4DeB88a8C2ABD77afEd415201Edb6F1fa/info.json b/blockchains/smartchain/assets/0x4A713eE4DeB88a8C2ABD77afEd415201Edb6F1fa/info.json new file mode 100644 index 00000000..4210dd15 --- /dev/null +++ b/blockchains/smartchain/assets/0x4A713eE4DeB88a8C2ABD77afEd415201Edb6F1fa/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cumstar", + "type": "BEP20", + "symbol": "CUMSTAR", + "decimals": 9, + "website": "http://cumstar.net/", + "description": "Decentralised Adult Content Sharing 18+ Content sharing platform powered by Blockchain technology. Immutable. Anonymous.", + "explorer": "https://bscscan.com/token/0x4A713eE4DeB88a8C2ABD77afEd415201Edb6F1fa", + "status": "active", + "id": "0x4A713eE4DeB88a8C2ABD77afEd415201Edb6F1fa" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4A713eE4DeB88a8C2ABD77afEd415201Edb6F1fa/logo.png b/blockchains/smartchain/assets/0x4A713eE4DeB88a8C2ABD77afEd415201Edb6F1fa/logo.png new file mode 100644 index 00000000..f401cab4 Binary files /dev/null and b/blockchains/smartchain/assets/0x4A713eE4DeB88a8C2ABD77afEd415201Edb6F1fa/logo.png differ diff --git a/blockchains/smartchain/assets/0x4A824eE819955A7D769e03fe36f9E0C3Bd3Aa60b/info.json b/blockchains/smartchain/assets/0x4A824eE819955A7D769e03fe36f9E0C3Bd3Aa60b/info.json new file mode 100644 index 00000000..08d158fc --- /dev/null +++ b/blockchains/smartchain/assets/0x4A824eE819955A7D769e03fe36f9E0C3Bd3Aa60b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kabosu", + "type": "BEP20", + "symbol": "KABOSU", + "decimals": 9, + "website": "https://kabosutoken.io", + "description": "The World’s 1st Dog Themed Token That Rewards You, Whilst Giving Dogs a Home", + "explorer": "https://bscscan.com/token/0x4A824eE819955A7D769e03fe36f9E0C3Bd3Aa60b", + "status": "active", + "id": "0x4A824eE819955A7D769e03fe36f9E0C3Bd3Aa60b" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4A824eE819955A7D769e03fe36f9E0C3Bd3Aa60b/logo.png b/blockchains/smartchain/assets/0x4A824eE819955A7D769e03fe36f9E0C3Bd3Aa60b/logo.png new file mode 100644 index 00000000..250023bd Binary files /dev/null and b/blockchains/smartchain/assets/0x4A824eE819955A7D769e03fe36f9E0C3Bd3Aa60b/logo.png differ diff --git a/blockchains/smartchain/assets/0x4A9A2b2b04549C3927dd2c9668A5eF3fCA473623/info.json b/blockchains/smartchain/assets/0x4A9A2b2b04549C3927dd2c9668A5eF3fCA473623/info.json new file mode 100644 index 00000000..0fd8214d --- /dev/null +++ b/blockchains/smartchain/assets/0x4A9A2b2b04549C3927dd2c9668A5eF3fCA473623/info.json @@ -0,0 +1,32 @@ +{ + "name": "Binance-Peg dForce", + "type": "BEP20", + "symbol": "DF", + "decimals": 18, + "website": "http://dforce.network/", + "description": "dForce advocates for building an integrated and interoperable and scalable open finance protocol network, cultivating intra-protocol liquidity and network effects, while remain in full openness to interact and integrated with other protocols.", + "explorer": "https://bscscan.com/token/0x4a9a2b2b04549c3927dd2c9668a5ef3fca473623", + "status": "active", + "id": "0x4A9A2b2b04549C3927dd2c9668A5eF3fCA473623", + "links": [ + { + "name": "telegram", + "url": "https://t.me/dforcenet" + }, + { + "name": "github", + "url": "https://github.com/dforce-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dforce-token/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dforce/" + } + ], + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4A9A2b2b04549C3927dd2c9668A5eF3fCA473623/logo.png b/blockchains/smartchain/assets/0x4A9A2b2b04549C3927dd2c9668A5eF3fCA473623/logo.png new file mode 100644 index 00000000..36fcfbc4 Binary files /dev/null and b/blockchains/smartchain/assets/0x4A9A2b2b04549C3927dd2c9668A5eF3fCA473623/logo.png differ diff --git a/blockchains/smartchain/assets/0x4AAd6A01068c2621545d087A3c5281837112585b/info.json b/blockchains/smartchain/assets/0x4AAd6A01068c2621545d087A3c5281837112585b/info.json new file mode 100644 index 00000000..a18930f8 --- /dev/null +++ b/blockchains/smartchain/assets/0x4AAd6A01068c2621545d087A3c5281837112585b/info.json @@ -0,0 +1,45 @@ +{ + "name": "MADAGASCAR", + "type": "BEP20", + "symbol": "$TIME", + "decimals": 9, + "website": "https://madagascar-crypto.com/", + "description": "Buy some $TIME for our future generations. The planet is dying, and we're going to help. Planting 1,000,000 trees, whilst cleaning up our air and oceans and protecting wildlife, all whilst contributing to charities with the same drive and focus.", + "explorer": "https://bscscan.com/token/0x4AAd6A01068c2621545d087A3c5281837112585b", + "status": "active", + "id": "0x4AAd6A01068c2621545d087A3c5281837112585b", + "links": [ + { + "name": "x", + "url": "https://x.com/MadagascarToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/madagascar/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/madagascar-token" + }, + { + "name": "telegram", + "url": "https://t.me/madagascar_time" + }, + { + "name": "facebook", + "url": "https://facebook.com/Madagascar-Token-TIME-106118521749101/" + }, + { + "name": "telegram_news", + "url": "https://t.me/madagascar_news" + }, + { + "name": "whitepaper", + "url": "https://madagascar-crypto.com/wp-content/uploads/2021/08/First_Whitepaper.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MadagascarTIMETOKEN/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4AAd6A01068c2621545d087A3c5281837112585b/logo.png b/blockchains/smartchain/assets/0x4AAd6A01068c2621545d087A3c5281837112585b/logo.png new file mode 100644 index 00000000..276c1b7f Binary files /dev/null and b/blockchains/smartchain/assets/0x4AAd6A01068c2621545d087A3c5281837112585b/logo.png differ diff --git a/blockchains/smartchain/assets/0x4AC32178097c1f62beadCC2D215B54D6915013ee/info.json b/blockchains/smartchain/assets/0x4AC32178097c1f62beadCC2D215B54D6915013ee/info.json new file mode 100644 index 00000000..6e74a432 --- /dev/null +++ b/blockchains/smartchain/assets/0x4AC32178097c1f62beadCC2D215B54D6915013ee/info.json @@ -0,0 +1,29 @@ +{ + "name": "Coin Discovery Token", + "type": "BEP20", + "symbol": "$CODI", + "decimals": 18, + "website": "https://coindiscovery.app", + "description": "$CODI is a decentralized, community-driven ecosystem backed by CoinDiscovery that is the most trusted cryptocurrency data authority, coin voting and listing platform. It is the third largest in terms of no. of tokens listed with over 6000 tokens. We get 30k-60k users daily on the platform", + "explorer": "https://bscscan.com/token/0x4AC32178097c1f62beadCC2D215B54D6915013ee", + "status": "active", + "id": "0x4AC32178097c1f62beadCC2D215B54D6915013ee", + "links": [ + { + "name": "x", + "url": "https://x.com/CoinDiscoveryy" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coin-discovery" + }, + { + "name": "telegram", + "url": "https://t.me/coindiscovery_token" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/coin-discovery" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4AC32178097c1f62beadCC2D215B54D6915013ee/logo.png b/blockchains/smartchain/assets/0x4AC32178097c1f62beadCC2D215B54D6915013ee/logo.png new file mode 100644 index 00000000..5055331b Binary files /dev/null and b/blockchains/smartchain/assets/0x4AC32178097c1f62beadCC2D215B54D6915013ee/logo.png differ diff --git a/blockchains/smartchain/assets/0x4AD663403df2F0E7987bC9C74561687472e1611C/info.json b/blockchains/smartchain/assets/0x4AD663403df2F0E7987bC9C74561687472e1611C/info.json new file mode 100644 index 00000000..ac60acba --- /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 00000000..84e3ccd5 Binary files /dev/null and b/blockchains/smartchain/assets/0x4AD663403df2F0E7987bC9C74561687472e1611C/logo.png differ diff --git a/blockchains/smartchain/assets/0x4AFc8c2Be6a0783ea16E16066fde140d15979296/info.json b/blockchains/smartchain/assets/0x4AFc8c2Be6a0783ea16E16066fde140d15979296/info.json new file mode 100644 index 00000000..50e20985 --- /dev/null +++ b/blockchains/smartchain/assets/0x4AFc8c2Be6a0783ea16E16066fde140d15979296/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hare Token", + "type": "BEP20", + "symbol": "HARE", + "decimals": 9, + "website": "https://haretoken.finance/", + "description": "HARE, a new cryptocurrency set to launch in June 2021, aims to be one of the fastest-growing coins in the world. HARE is a decentralized, mission-driven cryptocurrency project introducing mainstream cryptocurrency concepts in a user-friendly, integrated package.", + "explorer": "https://bscscan.com/token/0x4AFc8c2Be6a0783ea16E16066fde140d15979296", + "status": "active", + "id": "0x4AFc8c2Be6a0783ea16E16066fde140d15979296" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4AFc8c2Be6a0783ea16E16066fde140d15979296/logo.png b/blockchains/smartchain/assets/0x4AFc8c2Be6a0783ea16E16066fde140d15979296/logo.png new file mode 100644 index 00000000..6213a7d5 Binary files /dev/null and b/blockchains/smartchain/assets/0x4AFc8c2Be6a0783ea16E16066fde140d15979296/logo.png differ diff --git a/blockchains/smartchain/assets/0x4AadaD81487c3fadD9F162b851E6a61b729200cb/info.json b/blockchains/smartchain/assets/0x4AadaD81487c3fadD9F162b851E6a61b729200cb/info.json new file mode 100644 index 00000000..e61230a2 --- /dev/null +++ b/blockchains/smartchain/assets/0x4AadaD81487c3fadD9F162b851E6a61b729200cb/info.json @@ -0,0 +1,41 @@ +{ + "name": "Shiba Floki Inu", + "type": "BEP20", + "symbol": "FLOKI", + "decimals": 18, + "website": "https://flokiinu.com", + "description": "Shibas are highly affectionate and would make a great choice for a novice pet parent. However, they’re highly sensitive and do not like being left alone for long periods of the day. As companion dogs, they crave the company of their humans and may develop separation anxiety when they don’t get the attention they need.", + "explorer": "https://bscscan.com/token/0x4AadaD81487c3fadD9F162b851E6a61b729200cb", + "status": "active", + "id": "0x4AadaD81487c3fadD9F162b851E6a61b729200cb", + "links": [ + { + "name": "x", + "url": "https://x.com/shibaflokitoken" + }, + { + "name": "github", + "url": "https://github.com/shibafloki/" + }, + { + "name": "telegram", + "url": "https://t.me/shibaflokitoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-floki/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shiba-floki-inu" + }, + { + "name": "whitepaper", + "url": "https://shibafloki.com/whitepaper.pdf" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4AadaD81487c3fadD9F162b851E6a61b729200cb/logo.png b/blockchains/smartchain/assets/0x4AadaD81487c3fadD9F162b851E6a61b729200cb/logo.png new file mode 100644 index 00000000..619bfcf6 Binary files /dev/null and b/blockchains/smartchain/assets/0x4AadaD81487c3fadD9F162b851E6a61b729200cb/logo.png differ diff --git a/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/info.json b/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/info.json new file mode 100644 index 00000000..234390eb --- /dev/null +++ b/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/info.json @@ -0,0 +1,21 @@ +{ + "name": "Trust Wallet", + "website": "https://trustwallet.com", + "description": "Utility token to increase adoption of cryptocurrency.", + "explorer": "https://bscscan.com/token/0x4B0F1812e5Df2A09796481Ff14017e6005508003", + "research": "https://research.binance.com/en/projects/trustwallet", + "type": "BEP20", + "symbol": "TWT", + "decimals": 18, + "status": "active", + "id": "0x4B0F1812e5Df2A09796481Ff14017e6005508003", + "tags": [ + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/trustwallet/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png b/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png new file mode 100644 index 00000000..276a83ba Binary files /dev/null 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 00000000..24e9e670 --- /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/0x4B5C23cac08a567ecf0c1fFcA8372A45a5D33743/info.json b/blockchains/smartchain/assets/0x4B5C23cac08a567ecf0c1fFcA8372A45a5D33743/info.json new file mode 100644 index 00000000..39293872 --- /dev/null +++ b/blockchains/smartchain/assets/0x4B5C23cac08a567ecf0c1fFcA8372A45a5D33743/info.json @@ -0,0 +1,11 @@ +{ + "name": "Harvest Reward Token", + "website": "https://harvest.finance", + "description": "Harvest automatically farms the newest DeFi protocols, optimizing yields using the latest farming techniques.", + "explorer": "https://bscscan.com/token/0x4B5C23cac08a567ecf0c1fFcA8372A45a5D33743", + "type": "BEP20", + "symbol": "FARM", + "decimals": 18, + "status": "active", + "id": "0x4B5C23cac08a567ecf0c1fFcA8372A45a5D33743" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4B5C23cac08a567ecf0c1fFcA8372A45a5D33743/logo.png b/blockchains/smartchain/assets/0x4B5C23cac08a567ecf0c1fFcA8372A45a5D33743/logo.png new file mode 100644 index 00000000..70aed050 Binary files /dev/null and b/blockchains/smartchain/assets/0x4B5C23cac08a567ecf0c1fFcA8372A45a5D33743/logo.png differ diff --git a/blockchains/smartchain/assets/0x4B5DeCb9327B4D511A58137A1aDE61434AacdD43/info.json b/blockchains/smartchain/assets/0x4B5DeCb9327B4D511A58137A1aDE61434AacdD43/info.json new file mode 100644 index 00000000..0d5c031e --- /dev/null +++ b/blockchains/smartchain/assets/0x4B5DeCb9327B4D511A58137A1aDE61434AacdD43/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pokmi", + "website": "https://pokmi.com/", + "description": "Pokmi is a social platform to share uncensored creativity with advanced user protection thanks to the Poken wallet", + "explorer": "https://bscscan.com/token/0x4B5DeCb9327B4D511A58137A1aDE61434AacdD43", + "type": "BEP20", + "symbol": "PKN", + "decimals": 18, + "status": "active", + "id": "0x4B5DeCb9327B4D511A58137A1aDE61434AacdD43", + "links": [ + { + "name": "x", + "url": "https://x.com/PokmiHQ" + }, + { + "name": "telegram", + "url": "https://t.me/RarePorn_Fr" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4B5DeCb9327B4D511A58137A1aDE61434AacdD43/logo.png b/blockchains/smartchain/assets/0x4B5DeCb9327B4D511A58137A1aDE61434AacdD43/logo.png new file mode 100644 index 00000000..a0e982b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x4B5DeCb9327B4D511A58137A1aDE61434AacdD43/logo.png differ diff --git a/blockchains/smartchain/assets/0x4BA0057f784858a48fe351445C672FF2a3d43515/info.json b/blockchains/smartchain/assets/0x4BA0057f784858a48fe351445C672FF2a3d43515/info.json new file mode 100644 index 00000000..5a2bf8e6 --- /dev/null +++ b/blockchains/smartchain/assets/0x4BA0057f784858a48fe351445C672FF2a3d43515/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kalmar Token", + "website": "https://kalmar.io/", + "description": "The KALM tokens is the one fueling the ecosystem of products built on Kalmar and being used as incentive for participation in our financial products to scale adoption.", + "explorer": "https://bscscan.com/token/0x4BA0057f784858a48fe351445C672FF2a3d43515", + "type": "BEP20", + "symbol": "KALM", + "decimals": 18, + "status": "active", + "id": "0x4BA0057f784858a48fe351445C672FF2a3d43515" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4BA0057f784858a48fe351445C672FF2a3d43515/logo.png b/blockchains/smartchain/assets/0x4BA0057f784858a48fe351445C672FF2a3d43515/logo.png new file mode 100644 index 00000000..7e9feceb Binary files /dev/null and b/blockchains/smartchain/assets/0x4BA0057f784858a48fe351445C672FF2a3d43515/logo.png differ diff --git a/blockchains/smartchain/assets/0x4BAf4dC56Cf6a525a0874e25cc6372A6A8915135/info.json b/blockchains/smartchain/assets/0x4BAf4dC56Cf6a525a0874e25cc6372A6A8915135/info.json new file mode 100644 index 00000000..fdf2cab3 --- /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 00000000..283632c0 Binary files /dev/null and b/blockchains/smartchain/assets/0x4BAf4dC56Cf6a525a0874e25cc6372A6A8915135/logo.png differ diff --git a/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/info.json b/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/info.json new file mode 100644 index 00000000..8c8f7708 --- /dev/null +++ b/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/info.json @@ -0,0 +1,14 @@ +{ + "name": "VAI Stablecoin", + "website": "http://venus.io", + "description": "VAI is the world’s first decentralized stablecoin, enabled by Venus, built on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x4bd17003473389a42daf6a0a729f6fdb328bbbd7", + "type": "BEP20", + "symbol": "VAI", + "decimals": 18, + "status": "active", + "id": "0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7", + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/logo.png b/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/logo.png new file mode 100644 index 00000000..ac1033ab Binary files /dev/null and b/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/logo.png differ diff --git a/blockchains/smartchain/assets/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4/info.json b/blockchains/smartchain/assets/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4/info.json new file mode 100644 index 00000000..0670f5da --- /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 00000000..9b914ee8 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 new file mode 100644 index 00000000..f63414eb --- /dev/null +++ b/blockchains/smartchain/assets/0x4BbB275012EBE258556B8debE5C07bE98e8d3859/info.json @@ -0,0 +1,29 @@ +{ + "name": "NAR Dividend Token", + "website": "https://narwhalswap.org", + "description": "Narwhalswap Protocol — DeFi Platform with Sustainability. We will build a new unique dapp and protocol to enhance the value of the DeFi, create diversified investment, and become the future of financial services.", + "explorer": "https://bscscan.com/token/0x4bbb275012ebe258556b8debe5c07be98e8d3859", + "type": "BEP20", + "symbol": "GEM", + "decimals": 18, + "status": "active", + "id": "0x4BbB275012EBE258556B8debE5C07bE98e8d3859", + "links": [ + { + "name": "x", + "url": "https://x.com/narwhalswap" + }, + { + "name": "telegram", + "url": "https://t.me/narwhalswap" + }, + { + "name": "medium", + "url": "https://medium.com/narwhalswap" + }, + { + "name": "docs", + "url": "https://docs.narwhalswap.org" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4BbB275012EBE258556B8debE5C07bE98e8d3859/logo.png b/blockchains/smartchain/assets/0x4BbB275012EBE258556B8debE5C07bE98e8d3859/logo.png new file mode 100644 index 00000000..e72041af Binary files /dev/null and b/blockchains/smartchain/assets/0x4BbB275012EBE258556B8debE5C07bE98e8d3859/logo.png differ diff --git a/blockchains/smartchain/assets/0x4C882ec256823eE773B25b414d36F92ef58a7c0C/info.json b/blockchains/smartchain/assets/0x4C882ec256823eE773B25b414d36F92ef58a7c0C/info.json new file mode 100644 index 00000000..4f9b0b87 --- /dev/null +++ b/blockchains/smartchain/assets/0x4C882ec256823eE773B25b414d36F92ef58a7c0C/info.json @@ -0,0 +1,69 @@ +{ + "name": "pStake Finance", + "type": "BEP20", + "symbol": "PSTAKE", + "decimals": 18, + "website": "https://pstake.finance/", + "description": "pSTAKE is a liquid staking protocol that unlocks liquidity for your staked assets. With pSTAKE, you can securely stake your Proof-of-Stake (PoS) assets, participate in protocol improvements and security to earn staking rewards, and receive staked underlying representative tokens (stkASSETs) which can be used to explore additional yield opportunities across DeFi. At present, pSTAKE supports Binance (BNB), Cosmos (ATOM), Persistence (XPRT), and Ethereum (ETH) networks’ native tokens, with a view to support more chains and assets in the future (SOL, and AVAX).", + "explorer": "https://bscscan.com/token/0x4C882ec256823eE773B25b414d36F92ef58a7c0C", + "status": "active", + "id": "0x4C882ec256823eE773B25b414d36F92ef58a7c0C", + "links": [ + { + "name": "x", + "url": "https://x.com/pStakeFinance" + }, + { + "name": "github", + "url": "https://github.com/persistenceOne" + }, + { + "name": "telegram", + "url": "https://t.me/pstakefinance" + }, + { + "name": "blog", + "url": "https://blog.pstake.finance/" + }, + { + "name": "docs", + "url": "https://docs.pstake.finance/" + }, + { + "name": "forum", + "url": "https://forum.pstake.finance/" + }, + { + "name": "discord", + "url": "https://discord.com/PKHJ3Kn2M2" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/PersistenceOne/" + }, + { + "name": "medium", + "url": "https://pstake.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC5wqI1ZRdkCjWWVOCQdhxLQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pstake-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/pstake-finance" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x4C882ec256823eE773B25b414d36F92ef58a7c0C#code" + } + ], + "tags": [ + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4C882ec256823eE773B25b414d36F92ef58a7c0C/logo.png b/blockchains/smartchain/assets/0x4C882ec256823eE773B25b414d36F92ef58a7c0C/logo.png new file mode 100644 index 00000000..f49fa901 Binary files /dev/null and b/blockchains/smartchain/assets/0x4C882ec256823eE773B25b414d36F92ef58a7c0C/logo.png differ diff --git a/blockchains/smartchain/assets/0x4C888e116D57A32F84865F3789dCB131fDC9FAb6/info.json b/blockchains/smartchain/assets/0x4C888e116D57A32F84865F3789dCB131fDC9FAb6/info.json new file mode 100644 index 00000000..92abb000 --- /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 00000000..c471fa52 Binary files /dev/null and b/blockchains/smartchain/assets/0x4C888e116D57A32F84865F3789dCB131fDC9FAb6/logo.png differ diff --git a/blockchains/smartchain/assets/0x4Cae95d03C85Ae462dAeC44d5426f547A26FAf47/info.json b/blockchains/smartchain/assets/0x4Cae95d03C85Ae462dAeC44d5426f547A26FAf47/info.json new file mode 100644 index 00000000..64e18b28 --- /dev/null +++ b/blockchains/smartchain/assets/0x4Cae95d03C85Ae462dAeC44d5426f547A26FAf47/info.json @@ -0,0 +1,11 @@ +{ + "name": "Apollo Space Token", + "website": "http://apollospacetoken.com", + "description": "AST is a deflationary incentive token that will be used in the ecosystem of products offered by AST.", + "explorer": "https://bscscan.com/token/0x4cae95d03c85ae462daec44d5426f547a26faf47", + "type": "BEP20", + "symbol": "AST", + "decimals": 9, + "status": "active", + "id": "0x4Cae95d03C85Ae462dAeC44d5426f547A26FAf47" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4Cae95d03C85Ae462dAeC44d5426f547A26FAf47/logo.png b/blockchains/smartchain/assets/0x4Cae95d03C85Ae462dAeC44d5426f547A26FAf47/logo.png new file mode 100644 index 00000000..a3740872 Binary files /dev/null and b/blockchains/smartchain/assets/0x4Cae95d03C85Ae462dAeC44d5426f547A26FAf47/logo.png differ diff --git a/blockchains/smartchain/assets/0x4CbdA3D23c031cd403db2d24512aD920BF22f205/info.json b/blockchains/smartchain/assets/0x4CbdA3D23c031cd403db2d24512aD920BF22f205/info.json new file mode 100644 index 00000000..90754358 --- /dev/null +++ b/blockchains/smartchain/assets/0x4CbdA3D23c031cd403db2d24512aD920BF22f205/info.json @@ -0,0 +1,49 @@ +{ + "name": "SUBX FINANCE LAB", + "type": "BEP20", + "symbol": "SFX", + "decimals": 9, + "website": "https://subx.finance", + "description": "SUBX FINANCE LAB is a blockchain-as-a-service provider for businesses to integrate web3 technologies into their products and services.", + "explorer": "https://bscscan.com/token/0x4CbdA3D23c031cd403db2d24512aD920BF22f205", + "status": "active", + "id": "0x4CbdA3D23c031cd403db2d24512aD920BF22f205", + "links": [ + { + "name": "x", + "url": "https://x.com/officialsubx" + }, + { + "name": "telegram", + "url": "https://t.me/subxofficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/subxnewsfeed" + }, + { + "name": "discord", + "url": "https://discord.com/invite/subx" + }, + { + "name": "whitepaper", + "url": "https://subx.finance/wp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/subx-finance-lab" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/subx-finance" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/subxofficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/subxofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4CbdA3D23c031cd403db2d24512aD920BF22f205/logo.png b/blockchains/smartchain/assets/0x4CbdA3D23c031cd403db2d24512aD920BF22f205/logo.png new file mode 100644 index 00000000..3ec8784c Binary files /dev/null and b/blockchains/smartchain/assets/0x4CbdA3D23c031cd403db2d24512aD920BF22f205/logo.png differ diff --git a/blockchains/smartchain/assets/0x4CeaAFD1b2E5464E221c5cb3BdCE5Fb4629B7Aae/info.json b/blockchains/smartchain/assets/0x4CeaAFD1b2E5464E221c5cb3BdCE5Fb4629B7Aae/info.json new file mode 100644 index 00000000..bcbcaf83 --- /dev/null +++ b/blockchains/smartchain/assets/0x4CeaAFD1b2E5464E221c5cb3BdCE5Fb4629B7Aae/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeUniverse V2", + "type": "BEP20", + "symbol": "SAFUv2", + "decimals": 9, + "website": "https://safeuniverse.net/", + "description": "SafeUniverse v2, A Frictionless Yield Generation, Community Driven Protocol.", + "explorer": "https://bscscan.com/token/0x4CeaAFD1b2E5464E221c5cb3BdCE5Fb4629B7Aae", + "status": "active", + "id": "0x4CeaAFD1b2E5464E221c5cb3BdCE5Fb4629B7Aae" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4CeaAFD1b2E5464E221c5cb3BdCE5Fb4629B7Aae/logo.png b/blockchains/smartchain/assets/0x4CeaAFD1b2E5464E221c5cb3BdCE5Fb4629B7Aae/logo.png new file mode 100644 index 00000000..3267db0a Binary files /dev/null and b/blockchains/smartchain/assets/0x4CeaAFD1b2E5464E221c5cb3BdCE5Fb4629B7Aae/logo.png differ diff --git a/blockchains/smartchain/assets/0x4D1E90aB966ae26c778b2f9f365aA40abB13f53C/info.json b/blockchains/smartchain/assets/0x4D1E90aB966ae26c778b2f9f365aA40abB13f53C/info.json new file mode 100644 index 00000000..b1c41398 --- /dev/null +++ b/blockchains/smartchain/assets/0x4D1E90aB966ae26c778b2f9f365aA40abB13f53C/info.json @@ -0,0 +1,24 @@ +{ + "name": "STA TOKEN", + "type": "BEP20", + "symbol": "STA", + "decimals": 8, + "website": "https://solartechno.io/", + "description": "Solartechno has developed system by using Advanced Technology and Token. System is much Simpler, more Profitable and Secured", + "explorer": "https://bscscan.com/token/0x4d1e90ab966ae26c778b2f9f365aa40abb13f53c", + "status": "active", + "id": "0x4D1E90aB966ae26c778b2f9f365aA40abB13f53C", + "links": [ + { + "name": "x", + "url": "https://x.com/STATOKEN" + }, + { + "name": "facebook", + "url": "https://facebook.com/STATOKEN" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4D1E90aB966ae26c778b2f9f365aA40abB13f53C/logo.png b/blockchains/smartchain/assets/0x4D1E90aB966ae26c778b2f9f365aA40abB13f53C/logo.png new file mode 100644 index 00000000..0e8a7532 Binary files /dev/null and b/blockchains/smartchain/assets/0x4D1E90aB966ae26c778b2f9f365aA40abB13f53C/logo.png differ diff --git a/blockchains/smartchain/assets/0x4D209D275e3492aC08497A7A42915899c4dD5E86/info.json b/blockchains/smartchain/assets/0x4D209D275e3492aC08497A7A42915899c4dD5E86/info.json new file mode 100644 index 00000000..5720f34c --- /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 00000000..c1d43656 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 00000000..a9a5267f --- /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 00000000..0ad397a4 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 00000000..35f2cddb --- /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 00000000..07dfd06e Binary files /dev/null and b/blockchains/smartchain/assets/0x4D3dc895a9EDb234DfA3e303A196c009dC918f84/logo.png differ diff --git a/blockchains/smartchain/assets/0x4D5bd38263C03d684289fa4Ff7cAF6172c377338/info.json b/blockchains/smartchain/assets/0x4D5bd38263C03d684289fa4Ff7cAF6172c377338/info.json new file mode 100644 index 00000000..6a94e728 --- /dev/null +++ b/blockchains/smartchain/assets/0x4D5bd38263C03d684289fa4Ff7cAF6172c377338/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeMoonGold", + "website": "https://www.safemoongold.space/", + "description": "SafeMoonGold is a BSC based utility token that will allow holders to trade without the need for centralized power, thus maintaining stable copyright ownership and earning further SafeMoonGold.", + "explorer": "https://bscscan.com/token/0x4d5bd38263c03d684289fa4ff7caf6172c377338", + "type": "BEP20", + "symbol": "SAFEMOONGOLD", + "decimals": 9, + "status": "active", + "id": "0x4D5bd38263C03d684289fa4Ff7cAF6172c377338" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4D5bd38263C03d684289fa4Ff7cAF6172c377338/logo.png b/blockchains/smartchain/assets/0x4D5bd38263C03d684289fa4Ff7cAF6172c377338/logo.png new file mode 100644 index 00000000..ccbbd5d4 Binary files /dev/null and b/blockchains/smartchain/assets/0x4D5bd38263C03d684289fa4Ff7cAF6172c377338/logo.png differ diff --git a/blockchains/smartchain/assets/0x4D79DA6F390D9E9d475802a693353C3715b7Bd75/info.json b/blockchains/smartchain/assets/0x4D79DA6F390D9E9d475802a693353C3715b7Bd75/info.json new file mode 100644 index 00000000..a0bfa187 --- /dev/null +++ b/blockchains/smartchain/assets/0x4D79DA6F390D9E9d475802a693353C3715b7Bd75/info.json @@ -0,0 +1,11 @@ +{ + "name": "BabyKraken", + "website": "https://kraken.baby", + "description": "BabyKraken is the first buyback and burn token with anti-bot mechanisms.", + "explorer": "https://bscscan.com/token/0x4D79DA6F390D9E9d475802a693353C3715b7Bd75", + "type": "BEP20", + "symbol": "KRAKBABY", + "decimals": 9, + "status": "active", + "id": "0x4D79DA6F390D9E9d475802a693353C3715b7Bd75" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4D79DA6F390D9E9d475802a693353C3715b7Bd75/logo.png b/blockchains/smartchain/assets/0x4D79DA6F390D9E9d475802a693353C3715b7Bd75/logo.png new file mode 100644 index 00000000..e4da161b Binary files /dev/null and b/blockchains/smartchain/assets/0x4D79DA6F390D9E9d475802a693353C3715b7Bd75/logo.png differ diff --git a/blockchains/smartchain/assets/0x4D864E4f542b4b40acB3151C9daD2e2C9236a88f/info.json b/blockchains/smartchain/assets/0x4D864E4f542b4b40acB3151C9daD2e2C9236a88f/info.json new file mode 100644 index 00000000..4ae1819c --- /dev/null +++ b/blockchains/smartchain/assets/0x4D864E4f542b4b40acB3151C9daD2e2C9236a88f/info.json @@ -0,0 +1,33 @@ +{ + "name": "Token X", + "type": "BEP20", + "symbol": "TKX", + "decimals": 6, + "website": "https://xixochain.com/", + "description": "Token X is a peer to peer medium of exchange issued by XIXO, will be an initial exchange offering with a limited quantity that aims to become a tool to pay for all kinds of goods and services in the field of real estate, construction and industry as well as other platforms of XIXO", + "explorer": "https://bscscan.com/token/0x4D864E4f542b4b40acB3151C9daD2e2C9236a88f", + "status": "active", + "id": "0x4D864E4f542b4b40acB3151C9daD2e2C9236a88f", + "links": [ + { + "name": "x", + "url": "https://x.com/xixo_ecosystem" + }, + { + "name": "whitepaper", + "url": "https://bit.ly/3yr0WlA" + }, + { + "name": "github", + "url": "https://github.com/Xixo-EcoSystem" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/token-tkx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/token-tkx" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4D864E4f542b4b40acB3151C9daD2e2C9236a88f/logo.png b/blockchains/smartchain/assets/0x4D864E4f542b4b40acB3151C9daD2e2C9236a88f/logo.png new file mode 100644 index 00000000..fe78dbf3 Binary files /dev/null and b/blockchains/smartchain/assets/0x4D864E4f542b4b40acB3151C9daD2e2C9236a88f/logo.png differ diff --git a/blockchains/smartchain/assets/0x4DA12f47578ef89c76179b760C778E70b668f80b/info.json b/blockchains/smartchain/assets/0x4DA12f47578ef89c76179b760C778E70b668f80b/info.json new file mode 100644 index 00000000..b5c27d43 --- /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 00000000..dc50857f 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 new file mode 100644 index 00000000..57baa4a8 --- /dev/null +++ b/blockchains/smartchain/assets/0x4DB2495AfAd4c0E481fFc40FDaF66E13A786b619/info.json @@ -0,0 +1,21 @@ +{ + "name": "ARIX Token", + "website": "https://arixcoin.io/", + "description": "next Gen Cryptocurrency Exchanges", + "explorer": "https://bscscan.com/token/0x4DB2495AfAd4c0E481fFc40FDaF66E13A786b619", + "type": "BEP20", + "symbol": "ARIX", + "decimals": 18, + "status": "active", + "id": "0x4DB2495AfAd4c0E481fFc40FDaF66E13A786b619", + "links": [ + { + "name": "telegram", + "url": "https://t.me/arixdex_official" + }, + { + "name": "x", + "url": "https://x.com/arixdexofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4DB2495AfAd4c0E481fFc40FDaF66E13A786b619/logo.png b/blockchains/smartchain/assets/0x4DB2495AfAd4c0E481fFc40FDaF66E13A786b619/logo.png new file mode 100644 index 00000000..bdcd81b3 Binary files /dev/null and b/blockchains/smartchain/assets/0x4DB2495AfAd4c0E481fFc40FDaF66E13A786b619/logo.png differ diff --git a/blockchains/smartchain/assets/0x4DB5a66E937A9F4473fA95b1cAF1d1E1D62E29EA/info.json b/blockchains/smartchain/assets/0x4DB5a66E937A9F4473fA95b1cAF1d1E1D62E29EA/info.json new file mode 100644 index 00000000..faef3b95 --- /dev/null +++ b/blockchains/smartchain/assets/0x4DB5a66E937A9F4473fA95b1cAF1d1E1D62E29EA/info.json @@ -0,0 +1,14 @@ +{ + "name": "Ether (Portal)", + "type": "BEP20", + "symbol": "ETH", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://ethereum.org/en/", + "explorer": "https://bscscan.com/token/0x4DB5a66E937A9F4473fA95b1cAF1d1E1D62E29EA", + "status": "active", + "id": "0x4DB5a66E937A9F4473fA95b1cAF1d1E1D62E29EA", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4DB5a66E937A9F4473fA95b1cAF1d1E1D62E29EA/logo.png b/blockchains/smartchain/assets/0x4DB5a66E937A9F4473fA95b1cAF1d1E1D62E29EA/logo.png new file mode 100644 index 00000000..2d99a939 Binary files /dev/null and b/blockchains/smartchain/assets/0x4DB5a66E937A9F4473fA95b1cAF1d1E1D62E29EA/logo.png differ diff --git a/blockchains/smartchain/assets/0x4Dc7c9148A1F495872A5b31CF459ac7989cDCE79/info.json b/blockchains/smartchain/assets/0x4Dc7c9148A1F495872A5b31CF459ac7989cDCE79/info.json new file mode 100644 index 00000000..ad084c50 --- /dev/null +++ b/blockchains/smartchain/assets/0x4Dc7c9148A1F495872A5b31CF459ac7989cDCE79/info.json @@ -0,0 +1,11 @@ +{ + "name": "AppleB", + "type": "BEP20", + "symbol": "APPLEB", + "decimals": 9, + "website": "https://appleb.io/", + "description": "AppleB is a decentralized deflation token on Binance Smart Chain. It is the backbone of the virtuous AppleB ecosystem that discovers high-quality fruit assets and builds a new diverse decentralized transaction network.", + "explorer": "https://bscscan.com/token/0x4Dc7c9148A1F495872A5b31CF459ac7989cDCE79", + "status": "active", + "id": "0x4Dc7c9148A1F495872A5b31CF459ac7989cDCE79" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4Dc7c9148A1F495872A5b31CF459ac7989cDCE79/logo.png b/blockchains/smartchain/assets/0x4Dc7c9148A1F495872A5b31CF459ac7989cDCE79/logo.png new file mode 100644 index 00000000..a6bbcd58 Binary files /dev/null and b/blockchains/smartchain/assets/0x4Dc7c9148A1F495872A5b31CF459ac7989cDCE79/logo.png differ diff --git a/blockchains/smartchain/assets/0x4De57ba3C5Be7361F3d5a7C2705A44e194670210/info.json b/blockchains/smartchain/assets/0x4De57ba3C5Be7361F3d5a7C2705A44e194670210/info.json new file mode 100644 index 00000000..e270ff67 --- /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 00000000..1ab01aef 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 00000000..0faf8ef7 --- /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 00000000..595cb819 Binary files /dev/null and b/blockchains/smartchain/assets/0x4E1B10BE34ec6225b37Dfa43A3adC9D4B793e9e3/logo.png differ diff --git a/blockchains/smartchain/assets/0x4E7Ae924FD9a5D60b56BE486b2900efE0c6a9CA7/info.json b/blockchains/smartchain/assets/0x4E7Ae924FD9a5D60b56BE486b2900efE0c6a9CA7/info.json new file mode 100644 index 00000000..7addd9f7 --- /dev/null +++ b/blockchains/smartchain/assets/0x4E7Ae924FD9a5D60b56BE486b2900efE0c6a9CA7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lottery Token", + "type": "BEP20", + "symbol": "LOT", + "decimals": 9, + "website": "https://lotterytoken.net", + "description": "The Lottery Token features an automated and integrated Lottery in the contract itself. The Lotterypool is filled with 2% of the 6% fee per transaction, the other 2% get instantly redistributed among all holders and the other 2% are burned. The frequency of the lottery is based on the traffic and triggers after reaching 0.1% of the current total supply. Holders don't need to buy tickets, holding a minimal amount results in a lifetime participation.", + "explorer": "https://bscscan.com/token/0x4e7ae924fd9a5d60b56be486b2900efe0c6a9ca7", + "status": "active", + "id": "0x4E7Ae924FD9a5D60b56BE486b2900efE0c6a9CA7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4E7Ae924FD9a5D60b56BE486b2900efE0c6a9CA7/logo.png b/blockchains/smartchain/assets/0x4E7Ae924FD9a5D60b56BE486b2900efE0c6a9CA7/logo.png new file mode 100644 index 00000000..cd605835 Binary files /dev/null and b/blockchains/smartchain/assets/0x4E7Ae924FD9a5D60b56BE486b2900efE0c6a9CA7/logo.png differ diff --git a/blockchains/smartchain/assets/0x4E84e47bBABD89835e2e9569d69A6d465DE38122/info.json b/blockchains/smartchain/assets/0x4E84e47bBABD89835e2e9569d69A6d465DE38122/info.json new file mode 100644 index 00000000..ec2d665f --- /dev/null +++ b/blockchains/smartchain/assets/0x4E84e47bBABD89835e2e9569d69A6d465DE38122/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sadbaby", + "type": "BEP20", + "symbol": "SDBY", + "decimals": 9, + "website": "https://sadbaby.org", + "description": "Coin created to support babies with Sma", + "explorer": "https://bscscan.com/token/0x4E84e47bBABD89835e2e9569d69A6d465DE38122", + "status": "active", + "id": "0x4E84e47bBABD89835e2e9569d69A6d465DE38122", + "links": [ + { + "name": "x", + "url": "https://x.com/sadbabyglobal" + }, + { + "name": "telegram_news", + "url": "https://t.me/sadbabyglobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4E84e47bBABD89835e2e9569d69A6d465DE38122/logo.png b/blockchains/smartchain/assets/0x4E84e47bBABD89835e2e9569d69A6d465DE38122/logo.png new file mode 100644 index 00000000..787b2a87 Binary files /dev/null and b/blockchains/smartchain/assets/0x4E84e47bBABD89835e2e9569d69A6d465DE38122/logo.png differ diff --git a/blockchains/smartchain/assets/0x4EaBb20064586DeA07AAaF84d4bA35037854bd44/info.json b/blockchains/smartchain/assets/0x4EaBb20064586DeA07AAaF84d4bA35037854bd44/info.json new file mode 100644 index 00000000..a750d303 --- /dev/null +++ b/blockchains/smartchain/assets/0x4EaBb20064586DeA07AAaF84d4bA35037854bd44/info.json @@ -0,0 +1,11 @@ +{ + "name": "CHARIX TOKEN", + "website": "https://charix.org", + "description": "Charix is a charity token on the Binance Smart Chain Network", + "explorer": "https://bscscan.com/token/0x4EaBb20064586DeA07AAaF84d4bA35037854bd44", + "type": "BEP20", + "symbol": "CHARIX", + "decimals": 9, + "status": "active", + "id": "0x4EaBb20064586DeA07AAaF84d4bA35037854bd44" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4EaBb20064586DeA07AAaF84d4bA35037854bd44/logo.png b/blockchains/smartchain/assets/0x4EaBb20064586DeA07AAaF84d4bA35037854bd44/logo.png new file mode 100644 index 00000000..168f187d Binary files /dev/null and b/blockchains/smartchain/assets/0x4EaBb20064586DeA07AAaF84d4bA35037854bd44/logo.png differ diff --git a/blockchains/smartchain/assets/0x4Ef383f521e803863a33FcA8F3f861e53eF9Ef9B/info.json b/blockchains/smartchain/assets/0x4Ef383f521e803863a33FcA8F3f861e53eF9Ef9B/info.json new file mode 100644 index 00000000..da1d7182 --- /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 00000000..8c3d69ff Binary files /dev/null and b/blockchains/smartchain/assets/0x4Ef383f521e803863a33FcA8F3f861e53eF9Ef9B/logo.png differ diff --git a/blockchains/smartchain/assets/0x4Efab39b14167Da54aebed2094a61aA1FD384056/info.json b/blockchains/smartchain/assets/0x4Efab39b14167Da54aebed2094a61aA1FD384056/info.json new file mode 100644 index 00000000..032595b6 --- /dev/null +++ b/blockchains/smartchain/assets/0x4Efab39b14167Da54aebed2094a61aA1FD384056/info.json @@ -0,0 +1,11 @@ +{ + "name": "LEOPARD", + "type": "BEP20", + "symbol": "LEOPARD", + "decimals": 9, + "website": "https://leopardbsc.org/", + "description": "The Power of Leopard driven by Community", + "explorer": "https://bscscan.com/token/0x4Efab39b14167Da54aebed2094a61aA1FD384056", + "status": "active", + "id": "0x4Efab39b14167Da54aebed2094a61aA1FD384056" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4Efab39b14167Da54aebed2094a61aA1FD384056/logo.png b/blockchains/smartchain/assets/0x4Efab39b14167Da54aebed2094a61aA1FD384056/logo.png new file mode 100644 index 00000000..2a7d4a90 Binary files /dev/null and b/blockchains/smartchain/assets/0x4Efab39b14167Da54aebed2094a61aA1FD384056/logo.png differ diff --git a/blockchains/smartchain/assets/0x4F1498da0f50F94e97F900b7e6E13d8e5220aBE9/info.json b/blockchains/smartchain/assets/0x4F1498da0f50F94e97F900b7e6E13d8e5220aBE9/info.json new file mode 100644 index 00000000..2550a7f1 --- /dev/null +++ b/blockchains/smartchain/assets/0x4F1498da0f50F94e97F900b7e6E13d8e5220aBE9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Octa Gold", + "website": "https://octax.finance", + "description": "Octa Gold is sub contract under OctaX is a group of smart contracts that works with leading DeFi projects for ensuring its users the most reliable and highly profitable level of liquidity mining at minimal fees. built on top of the Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x4F1498da0f50F94e97F900b7e6E13d8e5220aBE9", + "type": "BEP20", + "symbol": "OCTAG", + "decimals": 18, + "status": "active", + "id": "0x4F1498da0f50F94e97F900b7e6E13d8e5220aBE9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4F1498da0f50F94e97F900b7e6E13d8e5220aBE9/logo.png b/blockchains/smartchain/assets/0x4F1498da0f50F94e97F900b7e6E13d8e5220aBE9/logo.png new file mode 100644 index 00000000..d67a43bd Binary files /dev/null and b/blockchains/smartchain/assets/0x4F1498da0f50F94e97F900b7e6E13d8e5220aBE9/logo.png differ diff --git a/blockchains/smartchain/assets/0x4F1A6FC6A7B65Dc7ebC4EB692Dc3641bE997c2F2/info.json b/blockchains/smartchain/assets/0x4F1A6FC6A7B65Dc7ebC4EB692Dc3641bE997c2F2/info.json new file mode 100644 index 00000000..244b7455 --- /dev/null +++ b/blockchains/smartchain/assets/0x4F1A6FC6A7B65Dc7ebC4EB692Dc3641bE997c2F2/info.json @@ -0,0 +1,37 @@ +{ + "name": "Santa Coin", + "type": "BEP20", + "symbol": "Santa", + "decimals": 9, + "website": "https://santacoin.io/", + "description": "HYPER DEFLATIONARY TOKEN WITH REFLECTIONS IN BUSD. Santa Came early bearing gifts…the gift that keeps on giving!", + "explorer": "https://bscscan.com/token/0x4F1A6FC6A7B65Dc7ebC4EB692Dc3641bE997c2F2", + "status": "active", + "id": "0x4F1A6FC6A7B65Dc7ebC4EB692Dc3641bE997c2F2", + "links": [ + { + "name": "x", + "url": "https://x.com/Santa_Coins" + }, + { + "name": "telegram", + "url": "https://t.me/santa_coin" + }, + { + "name": "telegram_news", + "url": "https://t.me/santacoin_news" + }, + { + "name": "medium", + "url": "https://medium.com/@santa.coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/santa-coin-2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/santa-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4F1A6FC6A7B65Dc7ebC4EB692Dc3641bE997c2F2/logo.png b/blockchains/smartchain/assets/0x4F1A6FC6A7B65Dc7ebC4EB692Dc3641bE997c2F2/logo.png new file mode 100644 index 00000000..bd794f23 Binary files /dev/null and b/blockchains/smartchain/assets/0x4F1A6FC6A7B65Dc7ebC4EB692Dc3641bE997c2F2/logo.png differ diff --git a/blockchains/smartchain/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json b/blockchains/smartchain/assets/0x4F34c8b3b5FB6D98Da888F0feA543d4d9C9F2eBE/info.json new file mode 100644 index 00000000..f4e3c8b9 --- /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 00000000..bb0e7293 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 new file mode 100644 index 00000000..c9976580 --- /dev/null +++ b/blockchains/smartchain/assets/0x4F7413B6ac872D971684A26825AF43870864579C/info.json @@ -0,0 +1,29 @@ +{ + "name": "I-COIN", + "website": "https://icoinglobal.com", + "description": "A Huge Ecosystem on Blockchain", + "explorer": "https://bscscan.com/token/0x4F7413B6ac872D971684A26825AF43870864579C", + "type": "BEP20", + "symbol": "ICN", + "decimals": 9, + "status": "active", + "id": "0x4F7413B6ac872D971684A26825AF43870864579C", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/i-coin" + }, + { + "name": "telegram", + "url": "https://t.me/ICNAnnouncement" + }, + { + "name": "x", + "url": "https://x.com/_icoin" + } + ], + "tags": [ + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4F7413B6ac872D971684A26825AF43870864579C/logo.png b/blockchains/smartchain/assets/0x4F7413B6ac872D971684A26825AF43870864579C/logo.png new file mode 100644 index 00000000..71204ee3 Binary files /dev/null and b/blockchains/smartchain/assets/0x4F7413B6ac872D971684A26825AF43870864579C/logo.png differ diff --git a/blockchains/smartchain/assets/0x4F7B627b88651e3DddcA0240bcA68a3062632C8c/info.json b/blockchains/smartchain/assets/0x4F7B627b88651e3DddcA0240bcA68a3062632C8c/info.json new file mode 100644 index 00000000..cb6f8e0c --- /dev/null +++ b/blockchains/smartchain/assets/0x4F7B627b88651e3DddcA0240bcA68a3062632C8c/info.json @@ -0,0 +1,41 @@ +{ + "name": "BlackEyeGalaxy Token", + "type": "BEP20", + "symbol": "BYG", + "decimals": 18, + "website": "https://blackeyegalaxy.space", + "description": "Black Eye Galaxy is a cross-chain space NFT metaverse with a unique economy. Buy planets and solar systems, explore the galaxy, mine resources, start your civilization!", + "explorer": "https://bscscan.com/token/0x4F7B627b88651e3DddcA0240bcA68a3062632C8c", + "status": "active", + "id": "0x4F7B627b88651e3DddcA0240bcA68a3062632C8c", + "links": [ + { + "name": "x", + "url": "https://x.com/blackeyegalaxy_" + }, + { + "name": "telegram", + "url": "https://t.me/blackeyegalaxypublic" + }, + { + "name": "telegram_news", + "url": "https://t.me/blackeyegalaxyann" + }, + { + "name": "medium", + "url": "https://medium.com/black-eye-galaxy" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCesvfL9Uq8cEBY-4QzvYTZg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/black-eye-galaxy/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/black-eye-galaxy/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4F7B627b88651e3DddcA0240bcA68a3062632C8c/logo.png b/blockchains/smartchain/assets/0x4F7B627b88651e3DddcA0240bcA68a3062632C8c/logo.png new file mode 100644 index 00000000..fb53269a Binary files /dev/null and b/blockchains/smartchain/assets/0x4F7B627b88651e3DddcA0240bcA68a3062632C8c/logo.png differ diff --git a/blockchains/smartchain/assets/0x4FA7163E153419E0E1064e418dd7A99314Ed27b6/info.json b/blockchains/smartchain/assets/0x4FA7163E153419E0E1064e418dd7A99314Ed27b6/info.json new file mode 100644 index 00000000..346c02da --- /dev/null +++ b/blockchains/smartchain/assets/0x4FA7163E153419E0E1064e418dd7A99314Ed27b6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hot Cross Token", + "website": "https://hotcross.com/", + "description": "Hot Cross is an extensive multi-chain and cross-chain tool suite that enables blockchain teams and their communities to thrive. We are a cohort of builders who aggressively seek out opportunities to meet the demands of the now for both B2B and B2C.", + "explorer": "https://bscscan.com/token/0x4FA7163E153419E0E1064e418dd7A99314Ed27b6", + "type": "BEP20", + "symbol": "HOTCROSS", + "decimals": 18, + "status": "active", + "id": "0x4FA7163E153419E0E1064e418dd7A99314Ed27b6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4FA7163E153419E0E1064e418dd7A99314Ed27b6/logo.png b/blockchains/smartchain/assets/0x4FA7163E153419E0E1064e418dd7A99314Ed27b6/logo.png new file mode 100644 index 00000000..6c7d127a Binary files /dev/null and b/blockchains/smartchain/assets/0x4FA7163E153419E0E1064e418dd7A99314Ed27b6/logo.png differ diff --git a/blockchains/smartchain/assets/0x4Fd67CB8CFEdc718BAc984b5936abE3330d0a2A4/info.json b/blockchains/smartchain/assets/0x4Fd67CB8CFEdc718BAc984b5936abE3330d0a2A4/info.json new file mode 100644 index 00000000..8060d53b --- /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 00000000..34101c97 Binary files /dev/null and b/blockchains/smartchain/assets/0x4Fd67CB8CFEdc718BAc984b5936abE3330d0a2A4/logo.png differ diff --git a/blockchains/smartchain/assets/0x4a080377f83D669D7bB83B3184a8A5E61B500608/info.json b/blockchains/smartchain/assets/0x4a080377f83D669D7bB83B3184a8A5E61B500608/info.json new file mode 100644 index 00000000..5ce72d29 --- /dev/null +++ b/blockchains/smartchain/assets/0x4a080377f83D669D7bB83B3184a8A5E61B500608/info.json @@ -0,0 +1,11 @@ +{ + "name": "XEND", + "type": "BEP20", + "symbol": "XEND", + "decimals": 18, + "description": "A Global DeFi Platform for Credit Unions and Cooperatives", + "website": "https://xend.finance", + "explorer": "https://bscscan.com/token/0x4a080377f83d669d7bb83b3184a8a5e61b500608", + "status": "active", + "id": "0x4a080377f83D669D7bB83B3184a8A5E61B500608" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4a080377f83D669D7bB83B3184a8A5E61B500608/logo.png b/blockchains/smartchain/assets/0x4a080377f83D669D7bB83B3184a8A5E61B500608/logo.png new file mode 100644 index 00000000..c897ab78 Binary files /dev/null and b/blockchains/smartchain/assets/0x4a080377f83D669D7bB83B3184a8A5E61B500608/logo.png differ diff --git a/blockchains/smartchain/assets/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98/info.json b/blockchains/smartchain/assets/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98/info.json new file mode 100644 index 00000000..0401444e --- /dev/null +++ b/blockchains/smartchain/assets/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98/info.json @@ -0,0 +1,36 @@ +{ + "name": "Green Satoshi Token", + "type": "BEP20", + "symbol": "GST", + "decimals": 8, + "website": "https://www.stepn.com", + "description": "GST serves as the replacement to experience points and in-app currency. Users equipped with NFT Sneakers – walk, jog or run outdoors to earn GST, which can be used to level up and mint new Sneakers.", + "explorer": "https://bscscan.com/token/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98", + "status": "active", + "id": "0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98", + "links": [ + { + "name": "reddit", + "url": "https://reddit.com/r/StepN/" + }, + { + "name": "x", + "url": "https://x.com/Stepnofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/green-metaverse-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/stepn" + }, + { + "name": "discord", + "url": "https://discord.com/invite/stepn" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98/logo.png b/blockchains/smartchain/assets/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98/logo.png new file mode 100644 index 00000000..e914d508 Binary files /dev/null and b/blockchains/smartchain/assets/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98/logo.png differ diff --git a/blockchains/smartchain/assets/0x4a37a2d3Ec44F0FD7DdCF7c2D90749dDeEFb6101/info.json b/blockchains/smartchain/assets/0x4a37a2d3Ec44F0FD7DdCF7c2D90749dDeEFb6101/info.json new file mode 100644 index 00000000..93f94f9a --- /dev/null +++ b/blockchains/smartchain/assets/0x4a37a2d3Ec44F0FD7DdCF7c2D90749dDeEFb6101/info.json @@ -0,0 +1,11 @@ +{ + "name": "MOON BEE Token", + "website": "https://moonbee.finance/", + "description": "MOONBEE.FINANCE Protocol is a community driven, fair launched DeFi Token. Four simple functions occur during each trade: Reflection, LP Acquisition, Food Charity and Burn.", + "explorer": "https://bscscan.com/token/0x4a37a2d3Ec44F0FD7DdCF7c2D90749dDeEFb6101", + "type": "BEP20", + "symbol": "MOONBEE", + "decimals": 9, + "status": "active", + "id": "0x4a37a2d3Ec44F0FD7DdCF7c2D90749dDeEFb6101" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4a37a2d3Ec44F0FD7DdCF7c2D90749dDeEFb6101/logo.png b/blockchains/smartchain/assets/0x4a37a2d3Ec44F0FD7DdCF7c2D90749dDeEFb6101/logo.png new file mode 100644 index 00000000..2ee703c5 Binary files /dev/null and b/blockchains/smartchain/assets/0x4a37a2d3Ec44F0FD7DdCF7c2D90749dDeEFb6101/logo.png differ diff --git a/blockchains/smartchain/assets/0x4a68C250486a116DC8D6A0C5B0677dE07cc09C5D/info.json b/blockchains/smartchain/assets/0x4a68C250486a116DC8D6A0C5B0677dE07cc09C5D/info.json new file mode 100644 index 00000000..ddc9f5e5 --- /dev/null +++ b/blockchains/smartchain/assets/0x4a68C250486a116DC8D6A0C5B0677dE07cc09C5D/info.json @@ -0,0 +1,11 @@ +{ + "name": "POODL", + "type": "BEP20", + "symbol": "POODL", + "decimals": 9, + "website": "https://www.poodltoken.com", + "description": "Standard, frictionless, yield generating contract", + "explorer": "https://bscscan.com/token/0x4a68C250486a116DC8D6A0C5B0677dE07cc09C5D", + "status": "active", + "id": "0x4a68C250486a116DC8D6A0C5B0677dE07cc09C5D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4a68C250486a116DC8D6A0C5B0677dE07cc09C5D/logo.png b/blockchains/smartchain/assets/0x4a68C250486a116DC8D6A0C5B0677dE07cc09C5D/logo.png new file mode 100644 index 00000000..9ac2cb91 Binary files /dev/null and b/blockchains/smartchain/assets/0x4a68C250486a116DC8D6A0C5B0677dE07cc09C5D/logo.png differ diff --git a/blockchains/smartchain/assets/0x4a706451Cf6D87bB04365B1BEa6242710D71078E/info.json b/blockchains/smartchain/assets/0x4a706451Cf6D87bB04365B1BEa6242710D71078E/info.json new file mode 100644 index 00000000..f8945b6c --- /dev/null +++ b/blockchains/smartchain/assets/0x4a706451Cf6D87bB04365B1BEa6242710D71078E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Binance Smart Chain Girl Moon", + "type": "BEP20", + "symbol": "BSCGIRLMOON", + "decimals": 8, + "website": "https://bscgirl.site/", + "description": "Binance Smart Chain Girl Moon Binance Smart Chain Girl It is a token of the same project as BSC GIRL.", + "explorer": "https://bscscan.com/token/0x4a706451Cf6D87bB04365B1BEa6242710D71078E", + "status": "active", + "id": "0x4a706451Cf6D87bB04365B1BEa6242710D71078E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4a706451Cf6D87bB04365B1BEa6242710D71078E/logo.png b/blockchains/smartchain/assets/0x4a706451Cf6D87bB04365B1BEa6242710D71078E/logo.png new file mode 100644 index 00000000..dd25f6ba Binary files /dev/null and b/blockchains/smartchain/assets/0x4a706451Cf6D87bB04365B1BEa6242710D71078E/logo.png differ diff --git a/blockchains/smartchain/assets/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB/info.json b/blockchains/smartchain/assets/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB/info.json new file mode 100644 index 00000000..5d07f058 --- /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 00000000..434a6179 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 new file mode 100644 index 00000000..ee6b003a --- /dev/null +++ b/blockchains/smartchain/assets/0x4a846D300F793752eE8bd579192C477130C4B369/info.json @@ -0,0 +1,28 @@ +{ + "name": "LITE", + "type": "BEP20", + "symbol": "LITE", + "decimals": 18, + "website": "https://liteusd.com/", + "description": "Lite is a decentralized stable coin casting protocol that allows users to use Lite as collateral to cast Lusd.", + "explorer": "https://bscscan.com/token/0x4a846D300F793752eE8bd579192C477130C4B369", + "status": "active", + "id": "0x4a846D300F793752eE8bd579192C477130C4B369", + "links": [ + { + "name": "x", + "url": "https://x.com/LiteUsd" + }, + { + "name": "github", + "url": "https://github.com/LiteUSD" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lite-usd/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4a846D300F793752eE8bd579192C477130C4B369/logo.png b/blockchains/smartchain/assets/0x4a846D300F793752eE8bd579192C477130C4B369/logo.png new file mode 100644 index 00000000..20df353f Binary files /dev/null and b/blockchains/smartchain/assets/0x4a846D300F793752eE8bd579192C477130C4B369/logo.png differ diff --git a/blockchains/smartchain/assets/0x4ac81e3631DcDa62109e3117c4CAE7bf70BbbbD2/info.json b/blockchains/smartchain/assets/0x4ac81e3631DcDa62109e3117c4CAE7bf70BbbbD2/info.json new file mode 100644 index 00000000..8d2f33b2 --- /dev/null +++ b/blockchains/smartchain/assets/0x4ac81e3631DcDa62109e3117c4CAE7bf70BbbbD2/info.json @@ -0,0 +1,53 @@ +{ + "name": "SavePlanetEarth V3", + "type": "BEP20", + "symbol": "SPE", + "decimals": 9, + "website": "https://saveplanetearth.io/", + "description": "A Worldwide Carbon Sequestration Cryptocurrency Project dedicated to developing sustainable programs aiming to combat Global Warming and Climate Change.", + "explorer": "https://bscscan.com/token/0x4ac81e3631DcDa62109e3117c4CAE7bf70BbbbD2", + "status": "active", + "id": "0x4ac81e3631DcDa62109e3117c4CAE7bf70BbbbD2", + "links": [ + { + "name": "x", + "url": "https://x.com/SPE_Token_BSC" + }, + { + "name": "telegram", + "url": "https://t.me/SavePlanetEarthOfficial" + }, + { + "name": "blog", + "url": "https://saveplanetearth.io" + }, + { + "name": "github", + "url": "https://github.com/SavePlanetEarthToken" + }, + { + "name": "discord", + "url": "https://discord.com/DRJCrvvuQy" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SPEOfficial/" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/SavePlanetEarth" + }, + { + "name": "facebook", + "url": "https://facebook.com/saveplanetearthofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/saveplanetearth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/saveplanetearth" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4ac81e3631DcDa62109e3117c4CAE7bf70BbbbD2/logo.png b/blockchains/smartchain/assets/0x4ac81e3631DcDa62109e3117c4CAE7bf70BbbbD2/logo.png new file mode 100644 index 00000000..3ccf5bab Binary files /dev/null and b/blockchains/smartchain/assets/0x4ac81e3631DcDa62109e3117c4CAE7bf70BbbbD2/logo.png differ diff --git a/blockchains/smartchain/assets/0x4ae1cD329e3aa0F70164424D2E5688723A6F9B71/info.json b/blockchains/smartchain/assets/0x4ae1cD329e3aa0F70164424D2E5688723A6F9B71/info.json new file mode 100644 index 00000000..a72f1f9f --- /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 00000000..f1805f82 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 00000000..a66be1a6 --- /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 00000000..989eafce 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 00000000..8fc4b8ca --- /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 00000000..4b912572 Binary files /dev/null and b/blockchains/smartchain/assets/0x4b30fcAA7945fE9fDEFD2895aae539ba102Ed6F6/logo.png differ diff --git a/blockchains/smartchain/assets/0x4b6000F9163de2E3f0a01eC37E06e1469DBbcE9d/info.json b/blockchains/smartchain/assets/0x4b6000F9163de2E3f0a01eC37E06e1469DBbcE9d/info.json new file mode 100644 index 00000000..7df3ca47 --- /dev/null +++ b/blockchains/smartchain/assets/0x4b6000F9163de2E3f0a01eC37E06e1469DBbcE9d/info.json @@ -0,0 +1,11 @@ +{ + "name": "KEYFI", + "website": "https://keyfi.com", + "description": "KeyFi is an all-in-one platform for tracking, swapping, and staking your tokens, and more.", + "explorer": "https://bscscan.com/token/0x4b6000F9163de2E3f0a01eC37E06e1469DBbcE9d", + "type": "BEP20", + "symbol": "KEYFI", + "decimals": 18, + "status": "active", + "id": "0x4b6000F9163de2E3f0a01eC37E06e1469DBbcE9d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4b6000F9163de2E3f0a01eC37E06e1469DBbcE9d/logo.png b/blockchains/smartchain/assets/0x4b6000F9163de2E3f0a01eC37E06e1469DBbcE9d/logo.png new file mode 100644 index 00000000..168c8a43 Binary files /dev/null and b/blockchains/smartchain/assets/0x4b6000F9163de2E3f0a01eC37E06e1469DBbcE9d/logo.png differ diff --git a/blockchains/smartchain/assets/0x4b63f8C52E3286CA871Cd66b7C84e26556b2DE8e/info.json b/blockchains/smartchain/assets/0x4b63f8C52E3286CA871Cd66b7C84e26556b2DE8e/info.json new file mode 100644 index 00000000..944739d5 --- /dev/null +++ b/blockchains/smartchain/assets/0x4b63f8C52E3286CA871Cd66b7C84e26556b2DE8e/info.json @@ -0,0 +1,11 @@ +{ + "name": "BudaCoin", + "type": "BEP20", + "symbol": "BUDA", + "decimals": 9, + "website": "https://www.budacoin.org/", + "description": "Everyone faces challenges with their mental well-being, just like we experience challenges with our physical well-being. There is no health without mental health.We exercise to keep our bodies healthy, but we do very little in our day to day to take care of our mind. By increasing the accessibility of mindfulness education and incentivizing its practice, BudaCoin aims to bring a sustainable solution to the mental health crisis.", + "explorer": "https://bscscan.com/token/0x4b63f8C52E3286CA871Cd66b7C84e26556b2DE8e", + "status": "active", + "id": "0x4b63f8C52E3286CA871Cd66b7C84e26556b2DE8e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4b63f8C52E3286CA871Cd66b7C84e26556b2DE8e/logo.png b/blockchains/smartchain/assets/0x4b63f8C52E3286CA871Cd66b7C84e26556b2DE8e/logo.png new file mode 100644 index 00000000..0d92e818 Binary files /dev/null and b/blockchains/smartchain/assets/0x4b63f8C52E3286CA871Cd66b7C84e26556b2DE8e/logo.png differ diff --git a/blockchains/smartchain/assets/0x4b71BD5E1DB6CCE4179E175a3A2033E4F17b7432/info.json b/blockchains/smartchain/assets/0x4b71BD5E1DB6CCE4179E175a3A2033E4F17b7432/info.json new file mode 100644 index 00000000..76a13b33 --- /dev/null +++ b/blockchains/smartchain/assets/0x4b71BD5E1DB6CCE4179E175a3A2033E4F17b7432/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gameology Token", + "type": "BEP20", + "symbol": "GMY", + "decimals": 9, + "website": "https://www.gameologycrypto.com/", + "description": "Gameology is a decentralized gaming ecosystem based on the binance smart chain.", + "explorer": "https://bscscan.com/token/0x4b71BD5E1DB6CCE4179E175a3A2033E4F17b7432", + "status": "active", + "id": "0x4b71BD5E1DB6CCE4179E175a3A2033E4F17b7432" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4b71BD5E1DB6CCE4179E175a3A2033E4F17b7432/logo.png b/blockchains/smartchain/assets/0x4b71BD5E1DB6CCE4179E175a3A2033E4F17b7432/logo.png new file mode 100644 index 00000000..922ffaec Binary files /dev/null and b/blockchains/smartchain/assets/0x4b71BD5E1DB6CCE4179E175a3A2033E4F17b7432/logo.png differ diff --git a/blockchains/smartchain/assets/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f/info.json b/blockchains/smartchain/assets/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f/info.json new file mode 100644 index 00000000..af7b76ec --- /dev/null +++ b/blockchains/smartchain/assets/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f/info.json @@ -0,0 +1,32 @@ +{ + "name": "MagicCraft", + "website": "https://magiccraft.io", + "description": "Magic Craft – war and conquer MMO Play-To-Earn RPG, launched on Binance Smart Chain, with advanced guild, taxes and economy systems.", + "explorer": "https://bscscan.com/token/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f", + "type": "BEP20", + "symbol": "MCRT", + "decimals": 9, + "status": "active", + "id": "0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f", + "tags": [ + "gamefi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MagicCraftGame" + }, + { + "name": "telegram", + "url": "https://t.me/magiccraftgamechat" + }, + { + "name": "whitepaper", + "url": "https://docs.magiccraft.io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magiccraft" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f/logo.png b/blockchains/smartchain/assets/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f/logo.png new file mode 100644 index 00000000..be950b7b Binary files /dev/null and b/blockchains/smartchain/assets/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f/logo.png differ diff --git a/blockchains/smartchain/assets/0x4be63a9b26EE89b9a3a13fd0aA1D0b2427C135f8/info.json b/blockchains/smartchain/assets/0x4be63a9b26EE89b9a3a13fd0aA1D0b2427C135f8/info.json new file mode 100644 index 00000000..02bae2ec --- /dev/null +++ b/blockchains/smartchain/assets/0x4be63a9b26EE89b9a3a13fd0aA1D0b2427C135f8/info.json @@ -0,0 +1,33 @@ +{ + "name": "XCarnival", + "website": "https://xcarnival.fi", + "description": "The Metaverse Assets Liquidation Aggregator for Everyone", + "explorer": "https://bscscan.com/token/0x4be63a9b26EE89b9a3a13fd0aA1D0b2427C135f8", + "type": "BEP20", + "symbol": "XCV", + "decimals": 18, + "status": "active", + "id": "0x4be63a9b26EE89b9a3a13fd0aA1D0b2427C135f8", + "links": [ + { + "name": "github", + "url": "https://github.com/xcarnival" + }, + { + "name": "x", + "url": "https://x.com/XCarnival_Lab" + }, + { + "name": "medium", + "url": "https://xcarnival-lab.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/XCarnivalCommunity" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xcarnival/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4be63a9b26EE89b9a3a13fd0aA1D0b2427C135f8/logo.png b/blockchains/smartchain/assets/0x4be63a9b26EE89b9a3a13fd0aA1D0b2427C135f8/logo.png new file mode 100644 index 00000000..b093c8d5 Binary files /dev/null and b/blockchains/smartchain/assets/0x4be63a9b26EE89b9a3a13fd0aA1D0b2427C135f8/logo.png differ diff --git a/blockchains/smartchain/assets/0x4c48cca6153Db911002F965D22fdeFcD95f33BE9/info.json b/blockchains/smartchain/assets/0x4c48cca6153Db911002F965D22fdeFcD95f33BE9/info.json new file mode 100644 index 00000000..836b6111 --- /dev/null +++ b/blockchains/smartchain/assets/0x4c48cca6153Db911002F965D22fdeFcD95f33BE9/info.json @@ -0,0 +1,45 @@ +{ + "name": "The Essential Coin", + "type": "BEP20", + "symbol": "ESC", + "decimals": 18, + "website": "https://theessentialcoin.org", + "description": "The essential Coin is a utility ecosystem that provides rewards to long term investors.The Essential Coins is a focus-based project with many products that will be released in multiple phases. ESC will be a blockchain meta-verse, which will have the ESC token as its native currency.", + "explorer": "https://bscscan.com/token/0x4c48cca6153Db911002F965D22fdeFcD95f33BE9", + "status": "active", + "id": "0x4c48cca6153Db911002F965D22fdeFcD95f33BE9", + "links": [ + { + "name": "x", + "url": "https://x.com/essentialESC" + }, + { + "name": "discord", + "url": "https://discord.com/invite/jEHpJMbKF3" + }, + { + "name": "telegram", + "url": "https://t.me/the_essential_coin" + }, + { + "name": "whitepaper", + "url": "https://bit.ly/3xU43Dt" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCgf60vmEovPXe_81c4PkoWA" + }, + { + "name": "facebook", + "url": "https://facebook.com/The-Essential-Coin-108521301658681" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-essential-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-essential-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4c48cca6153Db911002F965D22fdeFcD95f33BE9/logo.png b/blockchains/smartchain/assets/0x4c48cca6153Db911002F965D22fdeFcD95f33BE9/logo.png new file mode 100644 index 00000000..696cd8c7 Binary files /dev/null and b/blockchains/smartchain/assets/0x4c48cca6153Db911002F965D22fdeFcD95f33BE9/logo.png differ diff --git a/blockchains/smartchain/assets/0x4c4da68D45F23E38ec8407272ee4f38F280263c0/info.json b/blockchains/smartchain/assets/0x4c4da68D45F23E38ec8407272ee4f38F280263c0/info.json new file mode 100644 index 00000000..2dcec847 --- /dev/null +++ b/blockchains/smartchain/assets/0x4c4da68D45F23E38ec8407272ee4f38F280263c0/info.json @@ -0,0 +1,29 @@ +{ + "name": "Panda Girl", + "website": "https://PandaGirl.io", + "description": "Panda Girl is the utility token of the Panda Girl universe, called the Pandaverse. The Pandaverse consists of: - Collectible, beautiful hand-drawn NFTs called Panda Girls. Each Panda Girl will have its own rarity index and will be tradeable amongst holders. - Staking of PGIRL tokens to earn passive income - NFT farming with rare NFTs providing higher yields - Play-to-earn gaming - Panda Swap - Panda Girl merchandise store specific to NFTs minted.", + "explorer": "https://bscscan.com/token/0x4c4da68D45F23E38ec8407272ee4f38F280263c0", + "type": "BEP20", + "symbol": "PGIRL", + "decimals": 6, + "status": "active", + "id": "0x4c4da68D45F23E38ec8407272ee4f38F280263c0", + "links": [ + { + "name": "telegram", + "url": "https://t.me/pandagirltoken" + }, + { + "name": "x", + "url": "https://x.com/PandaGirlToken" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/panda-girl" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/panda-girl/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4c4da68D45F23E38ec8407272ee4f38F280263c0/logo.png b/blockchains/smartchain/assets/0x4c4da68D45F23E38ec8407272ee4f38F280263c0/logo.png new file mode 100644 index 00000000..84b9c8dc Binary files /dev/null and b/blockchains/smartchain/assets/0x4c4da68D45F23E38ec8407272ee4f38F280263c0/logo.png differ diff --git a/blockchains/smartchain/assets/0x4c79b8c9cB0BD62B047880603a9DEcf36dE28344/info.json b/blockchains/smartchain/assets/0x4c79b8c9cB0BD62B047880603a9DEcf36dE28344/info.json new file mode 100644 index 00000000..4cd011af --- /dev/null +++ b/blockchains/smartchain/assets/0x4c79b8c9cB0BD62B047880603a9DEcf36dE28344/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vira-lata Finance", + "website": "https://viralata.finance/", + "description": "1st Brazilian DeFi token of compound interest and expansionary liquidity", + "explorer": "https://bscscan.com/token/0x4c79b8c9cB0BD62B047880603a9DEcf36dE28344", + "type": "BEP20", + "symbol": "REAU", + "decimals": 9, + "status": "active", + "id": "0x4c79b8c9cB0BD62B047880603a9DEcf36dE28344" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4c79b8c9cB0BD62B047880603a9DEcf36dE28344/logo.png b/blockchains/smartchain/assets/0x4c79b8c9cB0BD62B047880603a9DEcf36dE28344/logo.png new file mode 100644 index 00000000..ebe0d935 Binary files /dev/null and b/blockchains/smartchain/assets/0x4c79b8c9cB0BD62B047880603a9DEcf36dE28344/logo.png differ diff --git a/blockchains/smartchain/assets/0x4c97c901B5147F8C1C7Ce3c5cF3eB83B44F244fE/info.json b/blockchains/smartchain/assets/0x4c97c901B5147F8C1C7Ce3c5cF3eB83B44F244fE/info.json new file mode 100644 index 00000000..004d385c --- /dev/null +++ b/blockchains/smartchain/assets/0x4c97c901B5147F8C1C7Ce3c5cF3eB83B44F244fE/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mound Token", + "website": "https://mndvault.mound.finance/", + "description": "The MND token is a vehicle created to capture and distribute the full value of our ecosystem expansion directly to the PancakeBunny Community. and the Mound Vault that you can stake MND is designed as a means for the PancakeBunny Community to share in the full value of all of the innovative DeFi projects/products that Team Bunny has to offer, now and in the future.", + "explorer": "https://bscscan.com/token/0x4c97c901b5147f8c1c7ce3c5cf3eb83b44f244fe", + "type": "BEP20", + "symbol": "MND", + "decimals": 18, + "status": "active", + "id": "0x4c97c901B5147F8C1C7Ce3c5cF3eB83B44F244fE", + "links": [ + { + "name": "medium", + "url": "https://pancakebunny.medium.com/introducing-the-mound-mnd-vault-4bb7cb6efa30" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mound-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4c97c901B5147F8C1C7Ce3c5cF3eB83B44F244fE/logo.png b/blockchains/smartchain/assets/0x4c97c901B5147F8C1C7Ce3c5cF3eB83B44F244fE/logo.png new file mode 100644 index 00000000..9772b627 Binary files /dev/null and b/blockchains/smartchain/assets/0x4c97c901B5147F8C1C7Ce3c5cF3eB83B44F244fE/logo.png differ diff --git a/blockchains/smartchain/assets/0x4cDa4daAd72340B28925cCd6fA78db631267D3C4/info.json b/blockchains/smartchain/assets/0x4cDa4daAd72340B28925cCd6fA78db631267D3C4/info.json new file mode 100644 index 00000000..ac233aec --- /dev/null +++ b/blockchains/smartchain/assets/0x4cDa4daAd72340B28925cCd6fA78db631267D3C4/info.json @@ -0,0 +1,11 @@ +{ + "name": "BabyDogeCash", + "website": "https://babydogecash.com", + "description": "Auto yield and liquidity generation protocol", + "explorer": "https://bscscan.com/token/0x4cDa4daAd72340B28925cCd6fA78db631267D3C4", + "type": "BEP20", + "symbol": "BabyDogeCash", + "decimals": 9, + "status": "active", + "id": "0x4cDa4daAd72340B28925cCd6fA78db631267D3C4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4cDa4daAd72340B28925cCd6fA78db631267D3C4/logo.png b/blockchains/smartchain/assets/0x4cDa4daAd72340B28925cCd6fA78db631267D3C4/logo.png new file mode 100644 index 00000000..1faa5d63 Binary files /dev/null and b/blockchains/smartchain/assets/0x4cDa4daAd72340B28925cCd6fA78db631267D3C4/logo.png differ diff --git a/blockchains/smartchain/assets/0x4cbdfad03b968bF43449D0908f319Ae4A5A33371/info.json b/blockchains/smartchain/assets/0x4cbdfad03b968bF43449D0908f319Ae4A5A33371/info.json new file mode 100644 index 00000000..fcd94643 --- /dev/null +++ b/blockchains/smartchain/assets/0x4cbdfad03b968bF43449D0908f319Ae4A5A33371/info.json @@ -0,0 +1,14 @@ +{ + "name": "E-COIN Finance", + "website": "https://ecoin-finance.com/", + "description": "E-COIN Finance is a decentralized & deflationary BEP-20 token that aims to be an online payment platform replacing conventional fiat currency through our integrated debit card.", + "explorer": "https://bscscan.com/token/0x4cbdfad03b968bF43449D0908f319Ae4A5A33371", + "type": "BEP20", + "symbol": "ECOIN", + "decimals": 9, + "status": "abandoned", + "id": "0x4cbdfad03b968bF43449D0908f319Ae4A5A33371", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json b/blockchains/smartchain/assets/0x4cbf89ED7Bb30b8a860fa86d3c96E9c72931299b/info.json new file mode 100644 index 00000000..490a9b1c --- /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 00000000..a937d858 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 new file mode 100644 index 00000000..2d588483 --- /dev/null +++ b/blockchains/smartchain/assets/0x4cc23264E1eF8dd8173E4Ec07E6a01Cc7476d997/info.json @@ -0,0 +1,44 @@ +{ + "name": "Robust Reward", + "website": "https://robustprotocol.fi", + "description": "Robust Token (RBT) is an original concept token on the Binance Smart Chain with a limited supply of 100 000 RBT and a 1% burn per transaction that gets converted into Robust Reward (RBW).", + "explorer": "https://bscscan.com/token/0x4cc23264E1eF8dd8173E4Ec07E6a01Cc7476d997", + "type": "BEP20", + "symbol": "RBW", + "decimals": 18, + "status": "active", + "id": "0x4cc23264E1eF8dd8173E4Ec07E6a01Cc7476d997", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/robustprotocol/" + }, + { + "name": "x", + "url": "https://x.com/robustprotocol/" + }, + { + "name": "docs", + "url": "https://docs.robustprotocol.fi/" + }, + { + "name": "whitepaper", + "url": "https://robustprotocol.fi/RobustProtocol.pdf" + }, + { + "name": "medium", + "url": "https://robustprotocol.medium.com/" + }, + { + "name": "github", + "url": "https://github.com/robustprotocol/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/robustprotocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4cc23264E1eF8dd8173E4Ec07E6a01Cc7476d997/logo.png b/blockchains/smartchain/assets/0x4cc23264E1eF8dd8173E4Ec07E6a01Cc7476d997/logo.png new file mode 100644 index 00000000..ce555587 Binary files /dev/null and b/blockchains/smartchain/assets/0x4cc23264E1eF8dd8173E4Ec07E6a01Cc7476d997/logo.png differ diff --git a/blockchains/smartchain/assets/0x4ce2DB133035519F538b7849201D6D541972164c/info.json b/blockchains/smartchain/assets/0x4ce2DB133035519F538b7849201D6D541972164c/info.json new file mode 100644 index 00000000..e0c68628 --- /dev/null +++ b/blockchains/smartchain/assets/0x4ce2DB133035519F538b7849201D6D541972164c/info.json @@ -0,0 +1,33 @@ +{ + "name": "Magicbox Token", + "website": "https://magicbox.game", + "description": "MagicBox is committed to the ecological exploration of the metaverse and building an independent frictionless production liquidity survival agreement.", + "explorer": "https://bscscan.com/token/0x4ce2DB133035519F538b7849201D6D541972164c", + "type": "BEP20", + "symbol": "MBT", + "decimals": 9, + "status": "active", + "id": "0x4ce2DB133035519F538b7849201D6D541972164c", + "links": [ + { + "name": "github", + "url": "https://github.com/MagicBox-Lab" + }, + { + "name": "x", + "url": "https://x.com/MagicBoxGame" + }, + { + "name": "telegram", + "url": "https://t.me/MagicBox_Game" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/magicbox" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magicbox" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4ce2DB133035519F538b7849201D6D541972164c/logo.png b/blockchains/smartchain/assets/0x4ce2DB133035519F538b7849201D6D541972164c/logo.png new file mode 100644 index 00000000..e6ac5969 Binary files /dev/null and b/blockchains/smartchain/assets/0x4ce2DB133035519F538b7849201D6D541972164c/logo.png differ diff --git a/blockchains/smartchain/assets/0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45/info.json b/blockchains/smartchain/assets/0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45/info.json new file mode 100644 index 00000000..ae321a81 --- /dev/null +++ b/blockchains/smartchain/assets/0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45/info.json @@ -0,0 +1,42 @@ +{ + "name": "DAO Maker", + "type": "BEP20", + "symbol": "DAO", + "decimals": 18, + "website": "https://daomaker.com", + "description": "DAO Maker is the leading incubation, fundraising and acceleration platform with a vast network of successful projects launched.", + "explorer": "https://bscscan.com/token/0x4d2d32d8652058bf98c772953e1df5c5c85d9f45", + "status": "active", + "id": "0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45", + "links": [ + { + "name": "x", + "url": "https://x.com/TheDaoMaker" + }, + { + "name": "telegram", + "url": "https://t.me/daomaker" + }, + { + "name": "discord", + "url": "https://discord.com/invite/daomaker" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dao-maker" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dao-maker/" + }, + { + "name": "telegram_news", + "url": "https://t.me/daomaker_ann" + } + ], + "tags": [ + "deflationary", + "governance", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45/logo.png b/blockchains/smartchain/assets/0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45/logo.png new file mode 100644 index 00000000..124bbae6 Binary files /dev/null and b/blockchains/smartchain/assets/0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45/logo.png differ diff --git a/blockchains/smartchain/assets/0x4d4CC29b9C4E413CFe5f898E16280f11db57E186/info.json b/blockchains/smartchain/assets/0x4d4CC29b9C4E413CFe5f898E16280f11db57E186/info.json new file mode 100644 index 00000000..d369ef91 --- /dev/null +++ b/blockchains/smartchain/assets/0x4d4CC29b9C4E413CFe5f898E16280f11db57E186/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hamtaro", + "type": "BEP20", + "symbol": "Hamtaro", + "decimals": 9, + "website": "https://hamtarocrypto.com/", + "description": "Hamtaro is a deflactionary Token for the BSC. Token also used to create its NFT Marketplace", + "explorer": "https://bscscan.com/token/0x4d4cc29b9c4e413cfe5f898e16280f11db57e186", + "status": "active", + "id": "0x4d4CC29b9C4E413CFe5f898E16280f11db57E186" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4d4CC29b9C4E413CFe5f898E16280f11db57E186/logo.png b/blockchains/smartchain/assets/0x4d4CC29b9C4E413CFe5f898E16280f11db57E186/logo.png new file mode 100644 index 00000000..55c0de30 Binary files /dev/null and b/blockchains/smartchain/assets/0x4d4CC29b9C4E413CFe5f898E16280f11db57E186/logo.png differ diff --git a/blockchains/smartchain/assets/0x4d4e595d643dc61EA7FCbF12e4b1AAA39f9975B8/info.json b/blockchains/smartchain/assets/0x4d4e595d643dc61EA7FCbF12e4b1AAA39f9975B8/info.json new file mode 100644 index 00000000..8b868233 --- /dev/null +++ b/blockchains/smartchain/assets/0x4d4e595d643dc61EA7FCbF12e4b1AAA39f9975B8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pet", + "type": "BEP20", + "symbol": "PET", + "decimals": 18, + "website": "http://battlepets.finance/", + "description": "-", + "explorer": "https://bscscan.com/token/0x4d4e595d643dc61EA7FCbF12e4b1AAA39f9975B8", + "status": "active", + "id": "0x4d4e595d643dc61EA7FCbF12e4b1AAA39f9975B8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4d4e595d643dc61EA7FCbF12e4b1AAA39f9975B8/logo.png b/blockchains/smartchain/assets/0x4d4e595d643dc61EA7FCbF12e4b1AAA39f9975B8/logo.png new file mode 100644 index 00000000..3c70853c Binary files /dev/null and b/blockchains/smartchain/assets/0x4d4e595d643dc61EA7FCbF12e4b1AAA39f9975B8/logo.png differ diff --git a/blockchains/smartchain/assets/0x4d50471035d65810cdB9B34550D46B31bf398cB8/info.json b/blockchains/smartchain/assets/0x4d50471035d65810cdB9B34550D46B31bf398cB8/info.json new file mode 100644 index 00000000..70d7dcdb --- /dev/null +++ b/blockchains/smartchain/assets/0x4d50471035d65810cdB9B34550D46B31bf398cB8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ocen Network", + "website": "https://ocen.network/", + "description": "OCEN is a fully decentralized token create a stable token.", + "explorer": "https://bscscan.com/token/0x4d50471035d65810cdB9B34550D46B31bf398cB8", + "type": "BEP20", + "symbol": "OCEN", + "decimals": 14, + "status": "active", + "id": "0x4d50471035d65810cdB9B34550D46B31bf398cB8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4d50471035d65810cdB9B34550D46B31bf398cB8/logo.png b/blockchains/smartchain/assets/0x4d50471035d65810cdB9B34550D46B31bf398cB8/logo.png new file mode 100644 index 00000000..b07a90c9 Binary files /dev/null and b/blockchains/smartchain/assets/0x4d50471035d65810cdB9B34550D46B31bf398cB8/logo.png differ diff --git a/blockchains/smartchain/assets/0x4d993ec7b44276615bB2F6F20361AB34FbF0ec49/info.json b/blockchains/smartchain/assets/0x4d993ec7b44276615bB2F6F20361AB34FbF0ec49/info.json new file mode 100644 index 00000000..1f2355cd --- /dev/null +++ b/blockchains/smartchain/assets/0x4d993ec7b44276615bB2F6F20361AB34FbF0ec49/info.json @@ -0,0 +1,29 @@ +{ + "name": "BrandPad Finance", + "type": "BEP20", + "symbol": "BRAND", + "decimals": 9, + "website": "https://brandpad.finance/", + "description": "BrandPad is a multi-chain liquidity manager for token pools and auctions powered by decentralized, infrastructure. We facilitate buying and transferring tokens between blockchains.", + "explorer": "https://bscscan.com/token/0x4d993ec7b44276615bB2F6F20361AB34FbF0ec49", + "status": "active", + "id": "0x4d993ec7b44276615bB2F6F20361AB34FbF0ec49", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/brandpad-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/brandpad-finance" + }, + { + "name": "x", + "url": "https://x.com/BrandPadFinance" + }, + { + "name": "telegram", + "url": "https://t.me/BrandPad" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4d993ec7b44276615bB2F6F20361AB34FbF0ec49/logo.png b/blockchains/smartchain/assets/0x4d993ec7b44276615bB2F6F20361AB34FbF0ec49/logo.png new file mode 100644 index 00000000..3bb1246a Binary files /dev/null and b/blockchains/smartchain/assets/0x4d993ec7b44276615bB2F6F20361AB34FbF0ec49/logo.png differ diff --git a/blockchains/smartchain/assets/0x4dfAD9A4cBa318EFC53743b803588B113f8A84Bd/info.json b/blockchains/smartchain/assets/0x4dfAD9A4cBa318EFC53743b803588B113f8A84Bd/info.json new file mode 100644 index 00000000..45667818 --- /dev/null +++ b/blockchains/smartchain/assets/0x4dfAD9A4cBa318EFC53743b803588B113f8A84Bd/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chihuahua Army", + "type": "BEP20", + "symbol": "HUA", + "decimals": 9, + "website": "https://chihuahua.army/", + "description": "Think of Chihuahua as a community driven, universal cryptocurrency with unique features. This is a real project that will be constantly evolving.", + "explorer": "https://bscscan.com/token/0x4dfAD9A4cBa318EFC53743b803588B113f8A84Bd", + "status": "active", + "id": "0x4dfAD9A4cBa318EFC53743b803588B113f8A84Bd" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4dfAD9A4cBa318EFC53743b803588B113f8A84Bd/logo.png b/blockchains/smartchain/assets/0x4dfAD9A4cBa318EFC53743b803588B113f8A84Bd/logo.png new file mode 100644 index 00000000..ceda0c92 Binary files /dev/null and b/blockchains/smartchain/assets/0x4dfAD9A4cBa318EFC53743b803588B113f8A84Bd/logo.png differ diff --git a/blockchains/smartchain/assets/0x4e2434294a722329B6B64e0c2Fca51B2533D7015/info.json b/blockchains/smartchain/assets/0x4e2434294a722329B6B64e0c2Fca51B2533D7015/info.json new file mode 100644 index 00000000..df7f4218 --- /dev/null +++ b/blockchains/smartchain/assets/0x4e2434294a722329B6B64e0c2Fca51B2533D7015/info.json @@ -0,0 +1,21 @@ +{ + "name": "PEPEFLOKI", + "website": "https://pepefloki.io", + "description": "We have combined two of the most hyped coins in the crypto market - FLOKI and PEPE.", + "explorer": "https://bscscan.com/token/0x4e2434294a722329b6b64e0c2fca51b2533d7015", + "type": "BEP20", + "symbol": "PEPEF", + "decimals": 18, + "status": "active", + "id": "0x4e2434294a722329B6B64e0c2Fca51B2533D7015", + "links": [ + { + "name": "telegram", + "url": "https://t.me/pepefloki_portal" + }, + { + "name": "x", + "url": "https://x.com/pepe_floki" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4e2434294a722329B6B64e0c2Fca51B2533D7015/logo.png b/blockchains/smartchain/assets/0x4e2434294a722329B6B64e0c2Fca51B2533D7015/logo.png new file mode 100644 index 00000000..1578e86e Binary files /dev/null and b/blockchains/smartchain/assets/0x4e2434294a722329B6B64e0c2Fca51B2533D7015/logo.png differ diff --git a/blockchains/smartchain/assets/0x4e6415a5727ea08aAE4580057187923aeC331227/info.json b/blockchains/smartchain/assets/0x4e6415a5727ea08aAE4580057187923aeC331227/info.json new file mode 100644 index 00000000..7acf398f --- /dev/null +++ b/blockchains/smartchain/assets/0x4e6415a5727ea08aAE4580057187923aeC331227/info.json @@ -0,0 +1,45 @@ +{ + "name": "FINE Token", + "website": "https://app.refinable.com", + "description": "FINE is a token issued by Refinable.", + "explorer": "https://bscscan.com/token/0x4e6415a5727ea08aAE4580057187923aeC331227", + "type": "BEP20", + "symbol": "FINE", + "decimals": 18, + "status": "active", + "id": "0x4e6415a5727ea08aAE4580057187923aeC331227", + "links": [ + { + "name": "github", + "url": "https://github.com/refinableco/refinable-sdk" + }, + { + "name": "medium", + "url": "https://refinable.medium.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/refinable" + }, + { + "name": "x", + "url": "https://x.com/refinableapp" + }, + { + "name": "telegram", + "url": "https://t.me/refinablenft" + }, + { + "name": "discord", + "url": "https://discord.com/invite/2Ps43kUxy7" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/refinable/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/refinable" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4e6415a5727ea08aAE4580057187923aeC331227/logo.png b/blockchains/smartchain/assets/0x4e6415a5727ea08aAE4580057187923aeC331227/logo.png new file mode 100644 index 00000000..9cca83d9 Binary files /dev/null and b/blockchains/smartchain/assets/0x4e6415a5727ea08aAE4580057187923aeC331227/logo.png differ diff --git a/blockchains/smartchain/assets/0x4eA98c1999575aaadfb38237Dd015c5E773F75a2/info.json b/blockchains/smartchain/assets/0x4eA98c1999575aaadfb38237Dd015c5E773F75a2/info.json new file mode 100644 index 00000000..a9bc78af --- /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 00000000..4d1fc39f 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 new file mode 100644 index 00000000..ad549e14 --- /dev/null +++ b/blockchains/smartchain/assets/0x4ef29F3B804C316bA8bA464A765C601Fc092a2e9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Quantum Assets Token", + "type": "BEP20", + "symbol": "QA", + "decimals": 18, + "website": "https://www.quantumassets.vg/", + "description": "Quantum Assets uses quantum phenomena (quantum tunneling of electrons) to produce a new class of quantum cryptographic keys - creating quantum assets. Holders of Quantum Assets Token (QA) at relevant blocks are guaranteed airdrops of new quantum assets as they are released to market.", + "explorer": "https://bscscan.com/token/0x4ef29F3B804C316bA8bA464A765C601Fc092a2e9", + "status": "active", + "id": "0x4ef29F3B804C316bA8bA464A765C601Fc092a2e9", + "links": [ + { + "name": "x", + "url": "https://x.com/QuantumAssetsQA" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/quantum-assets" + } + ], + "tags": [ + "privacy" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4ef29F3B804C316bA8bA464A765C601Fc092a2e9/logo.png b/blockchains/smartchain/assets/0x4ef29F3B804C316bA8bA464A765C601Fc092a2e9/logo.png new file mode 100644 index 00000000..9ed68b16 Binary files /dev/null and b/blockchains/smartchain/assets/0x4ef29F3B804C316bA8bA464A765C601Fc092a2e9/logo.png differ diff --git a/blockchains/smartchain/assets/0x4f0E7A273c7FF13062Fa581bEe4Ffabdae94328f/info.json b/blockchains/smartchain/assets/0x4f0E7A273c7FF13062Fa581bEe4Ffabdae94328f/info.json new file mode 100644 index 00000000..db70bede --- /dev/null +++ b/blockchains/smartchain/assets/0x4f0E7A273c7FF13062Fa581bEe4Ffabdae94328f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wild Ride Token", + "website": "https://www.wildride.club/", + "description": "Wild Ride is a Binance Smart Chain community-driven meme token with a utility purpose.", + "explorer": "https://bscscan.com/token/0x4f0E7A273c7FF13062Fa581bEe4Ffabdae94328f", + "type": "BEP20", + "symbol": "WILD", + "decimals": 8, + "status": "active", + "id": "0x4f0E7A273c7FF13062Fa581bEe4Ffabdae94328f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4f0E7A273c7FF13062Fa581bEe4Ffabdae94328f/logo.png b/blockchains/smartchain/assets/0x4f0E7A273c7FF13062Fa581bEe4Ffabdae94328f/logo.png new file mode 100644 index 00000000..1d7cb4fd Binary files /dev/null and b/blockchains/smartchain/assets/0x4f0E7A273c7FF13062Fa581bEe4Ffabdae94328f/logo.png differ diff --git a/blockchains/smartchain/assets/0x4f1960E29b2cA581a38c5c474e123f420F8092db/info.json b/blockchains/smartchain/assets/0x4f1960E29b2cA581a38c5c474e123f420F8092db/info.json new file mode 100644 index 00000000..27fa5ee3 --- /dev/null +++ b/blockchains/smartchain/assets/0x4f1960E29b2cA581a38c5c474e123f420F8092db/info.json @@ -0,0 +1,32 @@ +{ + "name": "UBXS Token", + "type": "BEP20", + "symbol": "UBXS", + "decimals": 6, + "website": "https://bixos.io", + "description": "The Combination of NFT Technology and the Real Estate Sector on Blockchain", + "explorer": "https://bscscan.com/token/0x4f1960E29b2cA581a38c5c474e123f420F8092db", + "status": "active", + "id": "0x4f1960E29b2cA581a38c5c474e123f420F8092db", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ubxstoken" + }, + { + "name": "x", + "url": "https://x.com/Bixosinc" + }, + { + "name": "discord", + "url": "https://discord.com/" + }, + { + "name": "facebook", + "url": "https://facebook.com/bixosinc" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4f1960E29b2cA581a38c5c474e123f420F8092db/logo.png b/blockchains/smartchain/assets/0x4f1960E29b2cA581a38c5c474e123f420F8092db/logo.png new file mode 100644 index 00000000..a0663c22 Binary files /dev/null and b/blockchains/smartchain/assets/0x4f1960E29b2cA581a38c5c474e123f420F8092db/logo.png differ diff --git a/blockchains/smartchain/assets/0x4f34292F109870d5fdDA602Bc7e3ae56D520D6e1/info.json b/blockchains/smartchain/assets/0x4f34292F109870d5fdDA602Bc7e3ae56D520D6e1/info.json new file mode 100644 index 00000000..c66c3736 --- /dev/null +++ b/blockchains/smartchain/assets/0x4f34292F109870d5fdDA602Bc7e3ae56D520D6e1/info.json @@ -0,0 +1,41 @@ +{ + "name": "Celestial", + "type": "BEP20", + "symbol": "CELT", + "decimals": 18, + "website": "https://bsc.celt.game/", + "description": "Celestial is a cross chain metaverse game that combines Gamefi, Socialfi, and NFTSwap with the theme of interstellar warfare.", + "explorer": "https://bscscan.com/token/0x4f34292F109870d5fdDA602Bc7e3ae56D520D6e1", + "status": "active", + "id": "0x4f34292F109870d5fdDA602Bc7e3ae56D520D6e1", + "links": [ + { + "name": "x", + "url": "https://x.com/GameCelt" + }, + { + "name": "github", + "url": "https://github.com/CeltGame" + }, + { + "name": "telegram", + "url": "https://t.me/CELT_Game" + }, + { + "name": "telegram_news", + "url": "https://t.me/CELT_Announcement" + }, + { + "name": "whitepaper", + "url": "https://bsc.celt.game/static/CELESTIAL_Whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@celestial.gamefi" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC3L64zz-sbwaEgMVotqLkTA" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4f34292F109870d5fdDA602Bc7e3ae56D520D6e1/logo.png b/blockchains/smartchain/assets/0x4f34292F109870d5fdDA602Bc7e3ae56D520D6e1/logo.png new file mode 100644 index 00000000..3df69cc0 Binary files /dev/null and b/blockchains/smartchain/assets/0x4f34292F109870d5fdDA602Bc7e3ae56D520D6e1/logo.png differ diff --git a/blockchains/smartchain/assets/0x4f5AfC97E501907201F94ef7De9F36C4633dcc75/info.json b/blockchains/smartchain/assets/0x4f5AfC97E501907201F94ef7De9F36C4633dcc75/info.json new file mode 100644 index 00000000..55380dcb --- /dev/null +++ b/blockchains/smartchain/assets/0x4f5AfC97E501907201F94ef7De9F36C4633dcc75/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAFE Community Token", + "website": "https://www.safecomtoken.io", + "description": " Safecom is a token made for the community on the BSC Scan.", + "explorer": "https://bscscan.com/token/0x4f5AfC97E501907201F94ef7De9F36C4633dcc75", + "type": "BEP20", + "symbol": "SAFECOM", + "decimals": 18, + "status": "active", + "id": "0x4f5AfC97E501907201F94ef7De9F36C4633dcc75" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4f5AfC97E501907201F94ef7De9F36C4633dcc75/logo.png b/blockchains/smartchain/assets/0x4f5AfC97E501907201F94ef7De9F36C4633dcc75/logo.png new file mode 100644 index 00000000..ec534650 Binary files /dev/null and b/blockchains/smartchain/assets/0x4f5AfC97E501907201F94ef7De9F36C4633dcc75/logo.png differ diff --git a/blockchains/smartchain/assets/0x4f5d48D3d28Ff10113283A896952A7722Eaaacd8/info.json b/blockchains/smartchain/assets/0x4f5d48D3d28Ff10113283A896952A7722Eaaacd8/info.json new file mode 100644 index 00000000..ecec2c58 --- /dev/null +++ b/blockchains/smartchain/assets/0x4f5d48D3d28Ff10113283A896952A7722Eaaacd8/info.json @@ -0,0 +1,33 @@ +{ + "name": "Annex USDC", + "website": "https://www.annex.finance/", + "description": "Money Markets. A Decentralized Marketplace for Lenders and Borrowers", + "explorer": "https://bscscan.com/token/0x4f5d48D3d28Ff10113283A896952A7722Eaaacd8", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/AnnexFinance" + }, + { + "name": "medium", + "url": "https://annexfinance.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/Annex_finance_group" + }, + { + "name": "github", + "url": "https://github.com/annexfinance/annex-protocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AnnexFinance/" + } + ], + "symbol": "aUSDC", + "decimals": 8, + "status": "active", + "id": "0x4f5d48D3d28Ff10113283A896952A7722Eaaacd8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4f5d48D3d28Ff10113283A896952A7722Eaaacd8/logo.png b/blockchains/smartchain/assets/0x4f5d48D3d28Ff10113283A896952A7722Eaaacd8/logo.png new file mode 100644 index 00000000..55e71d64 Binary files /dev/null and b/blockchains/smartchain/assets/0x4f5d48D3d28Ff10113283A896952A7722Eaaacd8/logo.png differ diff --git a/blockchains/smartchain/assets/0x4fA55d435ef98aD77C1EfA25Ae764cCb858f7046/info.json b/blockchains/smartchain/assets/0x4fA55d435ef98aD77C1EfA25Ae764cCb858f7046/info.json new file mode 100644 index 00000000..7b798dd3 --- /dev/null +++ b/blockchains/smartchain/assets/0x4fA55d435ef98aD77C1EfA25Ae764cCb858f7046/info.json @@ -0,0 +1,11 @@ +{ + "name": "HelloSwap Token", + "type": "BEP20", + "symbol": "HELLO", + "decimals": 18, + "website": "https://helloswap.finance/", + "description": "Hello swap exchange is a decentralized exchange platform built on the Binance smart chain BSC protocol, with an integrated seamless interoperability across all blockchain network and diverse contract systems.", + "explorer": "https://bscscan.com/token/0x4fA55d435ef98aD77C1EfA25Ae764cCb858f7046", + "status": "active", + "id": "0x4fA55d435ef98aD77C1EfA25Ae764cCb858f7046" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4fA55d435ef98aD77C1EfA25Ae764cCb858f7046/logo.png b/blockchains/smartchain/assets/0x4fA55d435ef98aD77C1EfA25Ae764cCb858f7046/logo.png new file mode 100644 index 00000000..c924bbe7 Binary files /dev/null and b/blockchains/smartchain/assets/0x4fA55d435ef98aD77C1EfA25Ae764cCb858f7046/logo.png differ diff --git a/blockchains/smartchain/assets/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4/info.json b/blockchains/smartchain/assets/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4/info.json new file mode 100644 index 00000000..bfbad7fb --- /dev/null +++ b/blockchains/smartchain/assets/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4/info.json @@ -0,0 +1,32 @@ +{ + "name": "REGENT COIN", + "type": "BEP20", + "symbol": "REGENT", + "decimals": 18, + "website": "https://regentcoin.finance/", + "description": "Regent Coin is designed for the convenience, cost effective solution and efficient time usage among the peer to peer community. Regent Coin is A UTILITY TOKEN, enables People to make their utility bill payments using the pay app", + "explorer": "https://bscscan.com/token/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4", + "status": "active", + "id": "0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4", + "links": [ + { + "name": "x", + "url": "https://x.com/regent_coin" + }, + { + "name": "telegram", + "url": "https://t.me/RegentCoinNews" + }, + { + "name": "facebook", + "url": "https://facebook.com/people/Regent-Coin/100087324862103/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@regentcoin01" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4/logo.png b/blockchains/smartchain/assets/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4/logo.png new file mode 100644 index 00000000..7cccb4b2 Binary files /dev/null and b/blockchains/smartchain/assets/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4/logo.png differ diff --git a/blockchains/smartchain/assets/0x500EAFc69b68Acd6F27064f9B75F1C7d91CC4d9F/info.json b/blockchains/smartchain/assets/0x500EAFc69b68Acd6F27064f9B75F1C7d91CC4d9F/info.json new file mode 100644 index 00000000..594a9ec6 --- /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 00000000..8adf5788 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 new file mode 100644 index 00000000..e97c47ed --- /dev/null +++ b/blockchains/smartchain/assets/0x50332bdca94673F33401776365b66CC4e81aC81d/info.json @@ -0,0 +1,29 @@ +{ + "name": "CryptoCars", + "type": "BEP20", + "symbol": "CCAR", + "decimals": 18, + "website": "https://cryptocars.me", + "description": "CCAR is the main token of CryptoCars Project", + "explorer": "https://bscscan.com/token/0x50332bdca94673F33401776365b66CC4e81aC81d", + "status": "active", + "id": "0x50332bdca94673F33401776365b66CC4e81aC81d", + "links": [ + { + "name": "telegram", + "url": "https://t.me/cryptocarschannel" + }, + { + "name": "x", + "url": "https://x.com/cryptocarsgame" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cryptocars" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptocars/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x50332bdca94673F33401776365b66CC4e81aC81d/logo.png b/blockchains/smartchain/assets/0x50332bdca94673F33401776365b66CC4e81aC81d/logo.png new file mode 100644 index 00000000..f3b10b84 Binary files /dev/null and b/blockchains/smartchain/assets/0x50332bdca94673F33401776365b66CC4e81aC81d/logo.png differ diff --git a/blockchains/smartchain/assets/0x50356167a4DbC38BeA6779C045e24E25fAcEdfdc/info.json b/blockchains/smartchain/assets/0x50356167a4DbC38BeA6779C045e24E25fAcEdfdc/info.json new file mode 100644 index 00000000..ee094334 --- /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 00000000..4da09d72 Binary files /dev/null and b/blockchains/smartchain/assets/0x50356167a4DbC38BeA6779C045e24E25fAcEdfdc/logo.png differ diff --git a/blockchains/smartchain/assets/0x503576189Edd9FEb058ad3f17f1E6e9172A11D75/info.json b/blockchains/smartchain/assets/0x503576189Edd9FEb058ad3f17f1E6e9172A11D75/info.json new file mode 100644 index 00000000..93c43f66 --- /dev/null +++ b/blockchains/smartchain/assets/0x503576189Edd9FEb058ad3f17f1E6e9172A11D75/info.json @@ -0,0 +1,11 @@ +{ + "name": "Saint Token", + "website": "https://saint.finance", + "description": "SAINT is a charitable token on BSC with static rewards, auto LP, and charitable donations.", + "explorer": "https://bscscan.com/token/0x503576189Edd9FEb058ad3f17f1E6e9172A11D75", + "type": "BEP20", + "symbol": "Saint", + "decimals": 9, + "status": "active", + "id": "0x503576189Edd9FEb058ad3f17f1E6e9172A11D75" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x503576189Edd9FEb058ad3f17f1E6e9172A11D75/logo.png b/blockchains/smartchain/assets/0x503576189Edd9FEb058ad3f17f1E6e9172A11D75/logo.png new file mode 100644 index 00000000..fc5ae043 Binary files /dev/null and b/blockchains/smartchain/assets/0x503576189Edd9FEb058ad3f17f1E6e9172A11D75/logo.png differ diff --git a/blockchains/smartchain/assets/0x503Fa24B7972677F00C4618e5FBe237780C1df53/info.json b/blockchains/smartchain/assets/0x503Fa24B7972677F00C4618e5FBe237780C1df53/info.json new file mode 100644 index 00000000..eca266bc --- /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 00000000..f81b8dc1 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 00000000..90d2f08e --- /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 00000000..8c4493ba Binary files /dev/null and b/blockchains/smartchain/assets/0x5043F271095350c5ac7db2384A0d9337E27c1055/logo.png differ diff --git a/blockchains/smartchain/assets/0x504BeAf9B74f5e38B0AC2335c51B8BB6E86F0eC5/info.json b/blockchains/smartchain/assets/0x504BeAf9B74f5e38B0AC2335c51B8BB6E86F0eC5/info.json new file mode 100644 index 00000000..55239150 --- /dev/null +++ b/blockchains/smartchain/assets/0x504BeAf9B74f5e38B0AC2335c51B8BB6E86F0eC5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chibi Inu", + "website": "https://chibinu.com", + "description": "Chibi inu is one of the first movers in coming up with an NFT marketplace for Dog NFTs & memes", + "explorer": "https://bscscan.com/token/0x504beaf9b74f5e38b0ac2335c51b8bb6e86f0ec5", + "type": "BEP20", + "symbol": "Chibi", + "decimals": 18, + "status": "active", + "id": "0x504BeAf9B74f5e38B0AC2335c51B8BB6E86F0eC5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x504BeAf9B74f5e38B0AC2335c51B8BB6E86F0eC5/logo.png b/blockchains/smartchain/assets/0x504BeAf9B74f5e38B0AC2335c51B8BB6E86F0eC5/logo.png new file mode 100644 index 00000000..99523155 Binary files /dev/null and b/blockchains/smartchain/assets/0x504BeAf9B74f5e38B0AC2335c51B8BB6E86F0eC5/logo.png differ diff --git a/blockchains/smartchain/assets/0x5066C68cAe3B9BdaCD6A1A37c90F2d1723559D18/info.json b/blockchains/smartchain/assets/0x5066C68cAe3B9BdaCD6A1A37c90F2d1723559D18/info.json new file mode 100644 index 00000000..10ef931e --- /dev/null +++ b/blockchains/smartchain/assets/0x5066C68cAe3B9BdaCD6A1A37c90F2d1723559D18/info.json @@ -0,0 +1,33 @@ +{ + "name": "WIZARD", + "type": "BEP20", + "symbol": "WIZARD", + "decimals": 18, + "website": "https://wizard.financial", + "description": "WIZARD is a first-of-a-kind fantasy token and NFT marketplace which brings a magical experience to all who behold it, combining crypto with games for multiplied rewards.", + "explorer": "https://bscscan.com/token/0x5066C68cAe3B9BdaCD6A1A37c90F2d1723559D18", + "status": "active", + "id": "0x5066C68cAe3B9BdaCD6A1A37c90F2d1723559D18", + "links": [ + { + "name": "x", + "url": "https://x.com/WIZARD_BSC" + }, + { + "name": "telegram", + "url": "https://t.me/wizard_financial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wizard" + }, + { + "name": "medium", + "url": "https://medium.com/@wizardtokenofficial" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wizard-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5066C68cAe3B9BdaCD6A1A37c90F2d1723559D18/logo.png b/blockchains/smartchain/assets/0x5066C68cAe3B9BdaCD6A1A37c90F2d1723559D18/logo.png new file mode 100644 index 00000000..9f0c2f97 Binary files /dev/null and b/blockchains/smartchain/assets/0x5066C68cAe3B9BdaCD6A1A37c90F2d1723559D18/logo.png differ diff --git a/blockchains/smartchain/assets/0x5067c6e9E6c443372f2E62946273ABbF3Cc2f2B3/info.json b/blockchains/smartchain/assets/0x5067c6e9E6c443372f2E62946273ABbF3Cc2f2B3/info.json new file mode 100644 index 00000000..823ebecb --- /dev/null +++ b/blockchains/smartchain/assets/0x5067c6e9E6c443372f2E62946273ABbF3Cc2f2B3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Fibo Token", + "type": "BEP20", + "symbol": "FIBO", + "decimals": 9, + "website": "https://fibswap.io/", + "description": "FIBO is the utility token of and FibSwap DEx, the worlds first cross blockchain DEx allowing traders to swap any coin between BSC (BEP20) and ETH (ERC20) blockchains and many more bridges.", + "explorer": "https://bscscan.com/token/0x5067c6e9E6c443372f2E62946273ABbF3Cc2f2B3", + "status": "active", + "id": "0x5067c6e9E6c443372f2E62946273ABbF3Cc2f2B3", + "links": [ + { + "name": "telegram", + "url": "https://t.me/FibSwapOfficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/qy5stWaS" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5067c6e9E6c443372f2E62946273ABbF3Cc2f2B3/logo.png b/blockchains/smartchain/assets/0x5067c6e9E6c443372f2E62946273ABbF3Cc2f2B3/logo.png new file mode 100644 index 00000000..4747b83d Binary files /dev/null and b/blockchains/smartchain/assets/0x5067c6e9E6c443372f2E62946273ABbF3Cc2f2B3/logo.png differ diff --git a/blockchains/smartchain/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json b/blockchains/smartchain/assets/0x50a1291F69D9d3853Def8209cFb1AF0b46927BE1/info.json new file mode 100644 index 00000000..cd65f31f --- /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 00000000..29c2803e 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 00000000..1f6a7060 --- /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 00000000..ec870bdb Binary files /dev/null and b/blockchains/smartchain/assets/0x50cd57Dc9768509fC256FF4f2A0B4461cBC1B779/logo.png differ diff --git a/blockchains/smartchain/assets/0x50ea9C9F88AEAB9f554b8ffB4d7a1017957e866A/info.json b/blockchains/smartchain/assets/0x50ea9C9F88AEAB9f554b8ffB4d7a1017957e866A/info.json new file mode 100644 index 00000000..7a4eb26b --- /dev/null +++ b/blockchains/smartchain/assets/0x50ea9C9F88AEAB9f554b8ffB4d7a1017957e866A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fox Trading", + "website": "https://foxtrading.io", + "description": "Fox Trading is an automated trading service managed by our success Forex bots that will try to get the most from your investment. Powered by FOXT token.", + "explorer": "https://bscscan.com/token/0x50ea9c9f88aeab9f554b8ffb4d7a1017957e866a", + "type": "BEP20", + "symbol": "FOXT", + "decimals": 18, + "status": "active", + "id": "0x50ea9C9F88AEAB9f554b8ffB4d7a1017957e866A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x50ea9C9F88AEAB9f554b8ffB4d7a1017957e866A/logo.png b/blockchains/smartchain/assets/0x50ea9C9F88AEAB9f554b8ffB4d7a1017957e866A/logo.png new file mode 100644 index 00000000..8ddec365 Binary files /dev/null and b/blockchains/smartchain/assets/0x50ea9C9F88AEAB9f554b8ffB4d7a1017957e866A/logo.png differ diff --git a/blockchains/smartchain/assets/0x51363F073b1E4920fdA7AA9E9d84BA97EdE1560e/info.json b/blockchains/smartchain/assets/0x51363F073b1E4920fdA7AA9E9d84BA97EdE1560e/info.json new file mode 100644 index 00000000..96de8f06 --- /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 00000000..7f14c8d7 Binary files /dev/null and b/blockchains/smartchain/assets/0x51363F073b1E4920fdA7AA9E9d84BA97EdE1560e/logo.png differ diff --git a/blockchains/smartchain/assets/0x51519264e031346D01648b94F453544d231e9E85/info.json b/blockchains/smartchain/assets/0x51519264e031346D01648b94F453544d231e9E85/info.json new file mode 100644 index 00000000..e0df672e --- /dev/null +++ b/blockchains/smartchain/assets/0x51519264e031346D01648b94F453544d231e9E85/info.json @@ -0,0 +1,11 @@ +{ + "name": "TSLADOGE", + "website": "https://tsladoge.com", + "description": "TDOGE makes everyone's income better.", + "explorer": "https://bscscan.com/token/0x51519264e031346D01648b94F453544d231e9E85", + "type": "BEP20", + "symbol": "TDOGE", + "decimals": 6, + "status": "active", + "id": "0x51519264e031346D01648b94F453544d231e9E85" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x51519264e031346D01648b94F453544d231e9E85/logo.png b/blockchains/smartchain/assets/0x51519264e031346D01648b94F453544d231e9E85/logo.png new file mode 100644 index 00000000..7ebdb3c6 Binary files /dev/null and b/blockchains/smartchain/assets/0x51519264e031346D01648b94F453544d231e9E85/logo.png differ diff --git a/blockchains/smartchain/assets/0x5151A22421Ed4277F1e4ca4785a07b035D548a36/info.json b/blockchains/smartchain/assets/0x5151A22421Ed4277F1e4ca4785a07b035D548a36/info.json new file mode 100644 index 00000000..abb86d48 --- /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 00000000..8ea1ca1d Binary files /dev/null and b/blockchains/smartchain/assets/0x5151A22421Ed4277F1e4ca4785a07b035D548a36/logo.png differ diff --git a/blockchains/smartchain/assets/0x51BA0b044d96C3aBfcA52B64D733603CCC4F0d4D/info.json b/blockchains/smartchain/assets/0x51BA0b044d96C3aBfcA52B64D733603CCC4F0d4D/info.json new file mode 100644 index 00000000..ab89f348 --- /dev/null +++ b/blockchains/smartchain/assets/0x51BA0b044d96C3aBfcA52B64D733603CCC4F0d4D/info.json @@ -0,0 +1,11 @@ +{ + "name": "SuperFarm", + "symbol": "SUPER", + "type": "BEP20", + "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.com/", + "explorer": "https://bscscan.com/token/0x51BA0b044d96C3aBfcA52B64D733603CCC4F0d4D", + "status": "active", + "id": "0x51BA0b044d96C3aBfcA52B64D733603CCC4F0d4D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x51BA0b044d96C3aBfcA52B64D733603CCC4F0d4D/logo.png b/blockchains/smartchain/assets/0x51BA0b044d96C3aBfcA52B64D733603CCC4F0d4D/logo.png new file mode 100644 index 00000000..9aab6fd5 Binary files /dev/null and b/blockchains/smartchain/assets/0x51BA0b044d96C3aBfcA52B64D733603CCC4F0d4D/logo.png differ diff --git a/blockchains/smartchain/assets/0x51F35073FF7cF54c9e86b7042E59A8cC9709FC46/info.json b/blockchains/smartchain/assets/0x51F35073FF7cF54c9e86b7042E59A8cC9709FC46/info.json new file mode 100644 index 00000000..c517673c --- /dev/null +++ b/blockchains/smartchain/assets/0x51F35073FF7cF54c9e86b7042E59A8cC9709FC46/info.json @@ -0,0 +1,20 @@ +{ + "name": "ETNA Network", + "website": "https://etna.network/", + "coinmarketcap": "https://coinmarketcap.com/currencies/etna-network", + "coingecko": "https://www.coingecko.com/en/coins/etna-network", + "short_description": "ETNA Network (ETNA) is a hybrid DeFI-type project that is set to bridge the gap between decentralized applications and the masses", + "description": "ETNA Network (ETNA) is a hybrid DeFI-type project that is set to bridge the gap between decentralized applications and the masses that are being left out due to the complexities in DeFi.", + "explorer": "https://bscscan.com/token/0x51f35073ff7cf54c9e86b7042e59a8cc9709fc46", + "type": "BEP20", + "symbol": "ETNA", + "decimals": 18, + "status": "active", + "id": "0x51F35073FF7cF54c9e86b7042E59A8cC9709FC46", + "links": [ + { + "name": "whitepaper", + "url": "https://etna.network/assets/ETNA.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x51F35073FF7cF54c9e86b7042E59A8cC9709FC46/logo.png b/blockchains/smartchain/assets/0x51F35073FF7cF54c9e86b7042E59A8cC9709FC46/logo.png new file mode 100644 index 00000000..1930b837 Binary files /dev/null and b/blockchains/smartchain/assets/0x51F35073FF7cF54c9e86b7042E59A8cC9709FC46/logo.png differ diff --git a/blockchains/smartchain/assets/0x51FA2327034FF608987B7eF3F57703aCBCD48888/info.json b/blockchains/smartchain/assets/0x51FA2327034FF608987B7eF3F57703aCBCD48888/info.json new file mode 100644 index 00000000..6fa6ecd7 --- /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 new file mode 100644 index 00000000..aab19928 --- /dev/null +++ b/blockchains/smartchain/assets/0x51e6D27FA57373d8d4C256231241053a70Cb1d93/info.json @@ -0,0 +1,53 @@ +{ + "name": "Ape Swap LP BNB-BUSD", + "website": "https://apeswap.finance", + "description": "ApeSwap is an Automated Market Maker, Yield Farming, and Staking platform on Binance Smart Chain. ApeSwap was built by DeFi Apes, for DeFi Apes. We have a dedicated team of experienced monkeys, who have been in the crypto space for years.", + "explorer": "https://bscscan.com/token/0x51e6D27FA57373d8d4C256231241053a70Cb1d93", + "type": "BEP20", + "symbol": "APE-LP", + "decimals": 18, + "status": "active", + "id": "0x51e6D27FA57373d8d4C256231241053a70Cb1d93", + "links": [ + { + "name": "github", + "url": "https://github.com/ApeSwapFinance" + }, + { + "name": "docs", + "url": "https://apeswap.gitbook.io/apeswap-finance/" + }, + { + "name": "x", + "url": "https://x.com/ape_swap" + }, + { + "name": "telegram", + "url": "https://t.me/ape_swap" + }, + { + "name": "telegram_news", + "url": "https://t.me/ape_swap_news" + }, + { + "name": "medium", + "url": "https://ape-swap.medium.com/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AbVxfGRCSd/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Apeswap/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apeswap-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/apeswap-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x51e6D27FA57373d8d4C256231241053a70Cb1d93/logo.png b/blockchains/smartchain/assets/0x51e6D27FA57373d8d4C256231241053a70Cb1d93/logo.png new file mode 100644 index 00000000..5676acf9 Binary files /dev/null and b/blockchains/smartchain/assets/0x51e6D27FA57373d8d4C256231241053a70Cb1d93/logo.png differ diff --git a/blockchains/smartchain/assets/0x51eD5b74A05F256DbD9Ebb4e4f68Bb41ba10160b/info.json b/blockchains/smartchain/assets/0x51eD5b74A05F256DbD9Ebb4e4f68Bb41ba10160b/info.json new file mode 100644 index 00000000..6bb9ce29 --- /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 00000000..81052b19 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 new file mode 100644 index 00000000..4015ab8b --- /dev/null +++ b/blockchains/smartchain/assets/0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC/info.json @@ -0,0 +1,36 @@ +{ + "name": "Lego Coin", + "website": "https://www.legocoinlive.com/", + "description": "LEGOCOIN is a social meme token and reward, with goals to contribute in social and creativity movement all around the world through your favorite toys: LEGO .", + "explorer": "https://bscscan.com/token/0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC", + "type": "BEP20", + "symbol": "LEGO", + "decimals": 9, + "status": "active", + "id": "0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC", + "links": [ + { + "name": "x", + "url": "https://x.com/legocoinlive" + }, + { + "name": "telegram", + "url": "https://t.me/legocoinlive" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lego-coin-v2/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lego-coin/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/kKZZYJ5aaD" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC/logo.png b/blockchains/smartchain/assets/0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC/logo.png new file mode 100644 index 00000000..3c2c0aca Binary files /dev/null and b/blockchains/smartchain/assets/0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC/logo.png differ diff --git a/blockchains/smartchain/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json b/blockchains/smartchain/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/info.json new file mode 100644 index 00000000..54fde6e0 --- /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 00000000..cf1609ac Binary files /dev/null and b/blockchains/smartchain/assets/0x521860bB5dF5468358875266B89BFE90d990C6e7/logo.png differ diff --git a/blockchains/smartchain/assets/0x5232152c8207653AEda5baa0ff7fb1046c23C753/info.json b/blockchains/smartchain/assets/0x5232152c8207653AEda5baa0ff7fb1046c23C753/info.json new file mode 100644 index 00000000..4fb1246d --- /dev/null +++ b/blockchains/smartchain/assets/0x5232152c8207653AEda5baa0ff7fb1046c23C753/info.json @@ -0,0 +1,11 @@ +{ + "name": "Startup Boost Token", + "type": "BEP20", + "symbol": "SUBX", + "decimals": 9, + "website": "https://startupboost.app/", + "description": "Building the world's most impactful startup ecosystem. Join our ecosystem today with the $SUBX cryptocurrency token.", + "explorer": "https://bscscan.com/token/0x5232152c8207653aeda5baa0ff7fb1046c23c753", + "status": "abandoned", + "id": "0x5232152c8207653AEda5baa0ff7fb1046c23C753" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5232B3f532b58FBf96Ec7cbDBf10C01cB0520c87/info.json b/blockchains/smartchain/assets/0x5232B3f532b58FBf96Ec7cbDBf10C01cB0520c87/info.json new file mode 100644 index 00000000..76759cbf --- /dev/null +++ b/blockchains/smartchain/assets/0x5232B3f532b58FBf96Ec7cbDBf10C01cB0520c87/info.json @@ -0,0 +1,37 @@ +{ + "name": "Rielcoin", + "type": "BEP20", + "symbol": "RIC", + "decimals": 8, + "website": "https://rielcoin.org", + "description": "Rielcoin is a future token for financial freedom that provide a functional token for using cryptocurrency exchanges and payments worldwide", + "explorer": "https://bscscan.com/token/0x5232b3f532b58fbf96ec7cbdbf10c01cb0520c87", + "status": "active", + "id": "0x5232B3f532b58FBf96Ec7cbDBf10C01cB0520c87", + "links": [ + { + "name": "telegram", + "url": "https://t.me/rielcoin" + }, + { + "name": "x", + "url": "https://x.com/rielcoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/rielcoin" + }, + { + "name": "source_code", + "url": "https://github.com/RIC-protocol/Rielcoin-Contract/tree/main/Contract" + }, + { + "name": "github", + "url": "https://github.com/RIC-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rielcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5232B3f532b58FBf96Ec7cbDBf10C01cB0520c87/logo.png b/blockchains/smartchain/assets/0x5232B3f532b58FBf96Ec7cbDBf10C01cB0520c87/logo.png new file mode 100644 index 00000000..c0ecfbda Binary files /dev/null and b/blockchains/smartchain/assets/0x5232B3f532b58FBf96Ec7cbDBf10C01cB0520c87/logo.png differ diff --git a/blockchains/smartchain/assets/0x523821d20a283d955f6205B4C9252779Cd0f964B/info.json b/blockchains/smartchain/assets/0x523821d20a283d955f6205B4C9252779Cd0f964B/info.json new file mode 100644 index 00000000..b5a9fe73 --- /dev/null +++ b/blockchains/smartchain/assets/0x523821d20a283d955f6205B4C9252779Cd0f964B/info.json @@ -0,0 +1,36 @@ +{ + "name": "Wrapped Okcash BSC", + "type": "BEP20", + "symbol": "OK", + "decimals": 18, + "website": "https://okcash.co", + "description": "OK is the leading multi chain PoS, web3 + NFTs open source electronic cash, its design is public, nobody owns or controls Okcash and everyone can take part.", + "explorer": "https://bscscan.com/token/0x523821d20a283d955f6205b4c9252779cd0f964b", + "status": "active", + "id": "0x523821d20a283d955f6205B4C9252779Cd0f964B", + "links": [ + { + "name": "x", + "url": "https://x.com/OkcashCrypto" + }, + { + "name": "github", + "url": "https://github.com/okcashpro" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/okcash/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/okcash" + }, + { + "name": "medium", + "url": "https://medium.com/okcash" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x523821d20a283d955f6205B4C9252779Cd0f964B/logo.png b/blockchains/smartchain/assets/0x523821d20a283d955f6205B4C9252779Cd0f964B/logo.png new file mode 100644 index 00000000..a3b20074 Binary files /dev/null and b/blockchains/smartchain/assets/0x523821d20a283d955f6205B4C9252779Cd0f964B/logo.png differ diff --git a/blockchains/smartchain/assets/0x52419258E3fa44DEAc7E670eaDD4c892B480A805/info.json b/blockchains/smartchain/assets/0x52419258E3fa44DEAc7E670eaDD4c892B480A805/info.json new file mode 100644 index 00000000..5f2835a1 --- /dev/null +++ b/blockchains/smartchain/assets/0x52419258E3fa44DEAc7E670eaDD4c892B480A805/info.json @@ -0,0 +1,49 @@ +{ + "name": "StarShip", + "type": "BEP20", + "symbol": "STARSHIP", + "decimals": 9, + "website": "https://deploystarship.com", + "description": "$STARSHIP is a decentralized token on the Binance Smart Chain that empowers its members, contributors and business partners to co-create a platform where every person matters. With an NFT game, Centralized Exchange (CEXy.Finance) and much more, Deploy StarShip provides a launch pad into the worlds of business and technology—all while igniting the imagination", + "explorer": "https://bscscan.com/token/0x52419258E3fa44DEAc7E670eaDD4c892B480A805", + "status": "active", + "id": "0x52419258E3fa44DEAc7E670eaDD4c892B480A805", + "links": [ + { + "name": "x", + "url": "https://x.com/deploystarship" + }, + { + "name": "github", + "url": "https://github.com/deploystarship" + }, + { + "name": "telegram", + "url": "https://t.me/deploystarship" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/starship/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/starship" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/12jdTeh3MCGakkyY19PyQK855rgeCrWhM/view" + }, + { + "name": "medium", + "url": "https://medium.com/@deploystarship" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/DeployStarShipNFT" + } + ], + "tags": [ + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x52419258E3fa44DEAc7E670eaDD4c892B480A805/logo.png b/blockchains/smartchain/assets/0x52419258E3fa44DEAc7E670eaDD4c892B480A805/logo.png new file mode 100644 index 00000000..9b943b05 Binary files /dev/null and b/blockchains/smartchain/assets/0x52419258E3fa44DEAc7E670eaDD4c892B480A805/logo.png differ diff --git a/blockchains/smartchain/assets/0x524Ec3a03d7414304FE6B79De8b38E6812998FF2/info.json b/blockchains/smartchain/assets/0x524Ec3a03d7414304FE6B79De8b38E6812998FF2/info.json new file mode 100644 index 00000000..ebcb3e1a --- /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 00000000..36274fdd Binary files /dev/null and b/blockchains/smartchain/assets/0x524Ec3a03d7414304FE6B79De8b38E6812998FF2/logo.png differ diff --git a/blockchains/smartchain/assets/0x524bC91Dc82d6b90EF29F76A3ECAaBAffFD490Bc/info.json b/blockchains/smartchain/assets/0x524bC91Dc82d6b90EF29F76A3ECAaBAffFD490Bc/info.json new file mode 100644 index 00000000..3d418d5b --- /dev/null +++ b/blockchains/smartchain/assets/0x524bC91Dc82d6b90EF29F76A3ECAaBAffFD490Bc/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from Ethereum)", + "type": "BEP20", + "symbol": "USDTet", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://bscscan.com/token/0x524bC91Dc82d6b90EF29F76A3ECAaBAffFD490Bc", + "status": "active", + "id": "0x524bC91Dc82d6b90EF29F76A3ECAaBAffFD490Bc", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x524bC91Dc82d6b90EF29F76A3ECAaBAffFD490Bc/logo.png b/blockchains/smartchain/assets/0x524bC91Dc82d6b90EF29F76A3ECAaBAffFD490Bc/logo.png new file mode 100644 index 00000000..46b9968e Binary files /dev/null and b/blockchains/smartchain/assets/0x524bC91Dc82d6b90EF29F76A3ECAaBAffFD490Bc/logo.png differ diff --git a/blockchains/smartchain/assets/0x524dF384BFFB18C0C8f3f43d012011F8F9795579/info.json b/blockchains/smartchain/assets/0x524dF384BFFB18C0C8f3f43d012011F8F9795579/info.json new file mode 100644 index 00000000..a3993a7e --- /dev/null +++ b/blockchains/smartchain/assets/0x524dF384BFFB18C0C8f3f43d012011F8F9795579/info.json @@ -0,0 +1,41 @@ +{ + "name": "YAY Games", + "type": "BEP20", + "symbol": "YAY", + "decimals": 18, + "description": "YAY Games is an innovative GameFi project, game publisher and developer of a wide range of games focused on Play-2-earn, NFTs, and DeFi.", + "website": "https://www.yay.games/", + "explorer": "https://bscscan.com/token/0x524dF384BFFB18C0C8f3f43d012011F8F9795579", + "id": "0x524dF384BFFB18C0C8f3f43d012011F8F9795579", + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/yayprotocol/" + }, + { + "name": "medium", + "url": "https://yay-games.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/YAYgame" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/yay-games/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/yay-games" + }, + { + "name": "whitepaper", + "url": "https://www.yay.games/docs/YAY_deck.pdf" + }, + { + "name": "docs", + "url": "https://docs.yay.games/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x524dF384BFFB18C0C8f3f43d012011F8F9795579/logo.png b/blockchains/smartchain/assets/0x524dF384BFFB18C0C8f3f43d012011F8F9795579/logo.png new file mode 100644 index 00000000..03433ce0 Binary files /dev/null and b/blockchains/smartchain/assets/0x524dF384BFFB18C0C8f3f43d012011F8F9795579/logo.png differ diff --git a/blockchains/smartchain/assets/0x5261ecAc2A4d265A8751d537aD8709E55d868888/info.json b/blockchains/smartchain/assets/0x5261ecAc2A4d265A8751d537aD8709E55d868888/info.json new file mode 100644 index 00000000..f742cc20 --- /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 00000000..b5b7678c --- /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 00000000..33bca5e1 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 new file mode 100644 index 00000000..093f4c1e --- /dev/null +++ b/blockchains/smartchain/assets/0x52941a733F7bAb6E52d5C8f2045c9D9D9eA246Ff/info.json @@ -0,0 +1,33 @@ +{ + "name": "Shiba Watch", + "type": "BEP20", + "symbol": "SHIBAW", + "decimals": 9, + "website": "https://www.shibawatch.net", + "description": "Shiba Watch is a multifunctional coin listing platform that checks for how safe tokens are, includes NFT marketplace, staking and lending and Play to Earn games. By becoming a Shiba Watch holder, investors will also be passively rewarded with BUSD.", + "explorer": "https://bscscan.com/token/0x52941a733F7bAb6E52d5C8f2045c9D9D9eA246Ff", + "status": "active", + "id": "0x52941a733F7bAb6E52d5C8f2045c9D9D9eA246Ff", + "links": [ + { + "name": "x", + "url": "https://x.com/shibawatchtoken" + }, + { + "name": "telegram", + "url": "https://t.me/shibawatchofficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ShibaWatch/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-watch/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shiba-watch" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x52941a733F7bAb6E52d5C8f2045c9D9D9eA246Ff/logo.png b/blockchains/smartchain/assets/0x52941a733F7bAb6E52d5C8f2045c9D9D9eA246Ff/logo.png new file mode 100644 index 00000000..81d74161 Binary files /dev/null and b/blockchains/smartchain/assets/0x52941a733F7bAb6E52d5C8f2045c9D9D9eA246Ff/logo.png differ diff --git a/blockchains/smartchain/assets/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534/info.json b/blockchains/smartchain/assets/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534/info.json new file mode 100644 index 00000000..8094e06d --- /dev/null +++ b/blockchains/smartchain/assets/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534/info.json @@ -0,0 +1,45 @@ +{ + "name": "Moonshot", + "type": "BEP20", + "symbol": "MSHOT", + "decimals": 9, + "website": "https://project-moonshot.me", + "description": "Moonshot is a deflationary, frictionless yield and liquidity generation protocol featuring MoonBoxes.io and MoonSea.io", + "explorer": "https://bscscan.com/token/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534", + "status": "active", + "id": "0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534", + "links": [ + { + "name": "x", + "url": "https://x.com/RS25Moonshot" + }, + { + "name": "github", + "url": "https://github.com/moonshot-platform" + }, + { + "name": "telegram", + "url": "https://t.me/MoonShotChat" + }, + { + "name": "telegram_news", + "url": "https://t.me/RS25Moonshot" + }, + { + "name": "medium", + "url": "https://rs25moonshot.medium.com" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moonshot" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/moonshot" + } + ], + "tags": [ + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534/logo.png b/blockchains/smartchain/assets/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534/logo.png new file mode 100644 index 00000000..5c5c17b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534/logo.png differ diff --git a/blockchains/smartchain/assets/0x529C79f6918665EBE250F32eeEAA1d410a0798C6/info.json b/blockchains/smartchain/assets/0x529C79f6918665EBE250F32eeEAA1d410a0798C6/info.json new file mode 100644 index 00000000..0025f7cd --- /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 00000000..aa352afe 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 00000000..64e131d0 --- /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 00000000..b2bd2c4c 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 new file mode 100644 index 00000000..95474f76 --- /dev/null +++ b/blockchains/smartchain/assets/0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8/info.json @@ -0,0 +1,16 @@ +{ + "name": "BNB pegged 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", + "research": "https://research.binance.com/en/projects/compound", + "type": "BEP20", + "symbol": "COMP", + "decimals": 18, + "status": "active", + "id": "0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8", + "tags": [ + "binance-peg", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8/logo.png b/blockchains/smartchain/assets/0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8/logo.png new file mode 100644 index 00000000..5011b1a3 Binary files /dev/null and b/blockchains/smartchain/assets/0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8/logo.png differ diff --git a/blockchains/smartchain/assets/0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827/info.json b/blockchains/smartchain/assets/0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827/info.json new file mode 100644 index 00000000..8814d5d8 --- /dev/null +++ b/blockchains/smartchain/assets/0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827/info.json @@ -0,0 +1,60 @@ +{ + "name": "Ankr Staked BNB", + "type": "BEP20", + "symbol": "ankrBNB", + "decimals": 18, + "website": "https://www.ankr.com", + "description": "ankrBNB represents your staked BNB and provides liquidity for your staked position. All staking rewards are built into the token price, and ankrBNB grows daily in value, but never in number.", + "explorer": "https://bscscan.com/token/0x52f24a5e03aee338da5fd9df68d2b6fae1178827", + "status": "active", + "id": "0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827", + "links": [ + { + "name": "x", + "url": "https://x.com/ankr" + }, + { + "name": "github", + "url": "https://github.com/Ankr-network" + }, + { + "name": "telegram", + "url": "https://t.me/ankrnetwork" + }, + { + "name": "medium", + "url": "https://medium.com/ankr-network" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Ankrofficial/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ankr" + }, + { + "name": "docs", + "url": "https://ankr.com/docs/staking/liquid-staking/bnb/overview/" + }, + { + "name": "whitepaper", + "url": "https://ankr.com/ankr-whitepaper-2.0.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/@AnkrOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ankr-staked-bnb/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ankr-staked-bnb" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827/logo.png b/blockchains/smartchain/assets/0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827/logo.png new file mode 100644 index 00000000..509db7cc Binary files /dev/null and b/blockchains/smartchain/assets/0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827/logo.png differ diff --git a/blockchains/smartchain/assets/0x52cF099D7C891951eAce3E99ABC580BDa26912fC/info.json b/blockchains/smartchain/assets/0x52cF099D7C891951eAce3E99ABC580BDa26912fC/info.json new file mode 100644 index 00000000..d11f9946 --- /dev/null +++ b/blockchains/smartchain/assets/0x52cF099D7C891951eAce3E99ABC580BDa26912fC/info.json @@ -0,0 +1,21 @@ +{ + "name": "Nevada", + "type": "BEP20", + "symbol": "NEVADA", + "decimals": 18, + "website": "https://nevada.casino/", + "description": "Give your shot at one of the most lucrative lottery game on BSC! Our team are developing an online casino with lottery concepts for those investing on our token. Our project will develop the concept with low-tax contract, with up to 1000% possible winning!", + "explorer": "https://bscscan.com/token/0x52cF099D7C891951eAce3E99ABC580BDa26912fC", + "status": "active", + "id": "0x52cF099D7C891951eAce3E99ABC580BDa26912fC", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nevada" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nevada" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x52cF099D7C891951eAce3E99ABC580BDa26912fC/logo.png b/blockchains/smartchain/assets/0x52cF099D7C891951eAce3E99ABC580BDa26912fC/logo.png new file mode 100644 index 00000000..4b6d4af7 Binary files /dev/null and b/blockchains/smartchain/assets/0x52cF099D7C891951eAce3E99ABC580BDa26912fC/logo.png differ diff --git a/blockchains/smartchain/assets/0x52dCF5BEdc061604D8C592B0079A0FF2ceA22eB7/info.json b/blockchains/smartchain/assets/0x52dCF5BEdc061604D8C592B0079A0FF2ceA22eB7/info.json new file mode 100644 index 00000000..06d42a91 --- /dev/null +++ b/blockchains/smartchain/assets/0x52dCF5BEdc061604D8C592B0079A0FF2ceA22eB7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Axolotl Finance", + "website": "https://Axolotl-Finance.com/", + "description": "AXO is a meme-innovative Token Driven by community attention .", + "explorer": "https://bscscan.com/token/0x52dCF5BEdc061604D8C592B0079A0FF2ceA22eB7", + "type": "BEP20", + "symbol": "AXO", + "decimals": 9, + "status": "active", + "id": "0x52dCF5BEdc061604D8C592B0079A0FF2ceA22eB7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x52dCF5BEdc061604D8C592B0079A0FF2ceA22eB7/logo.png b/blockchains/smartchain/assets/0x52dCF5BEdc061604D8C592B0079A0FF2ceA22eB7/logo.png new file mode 100644 index 00000000..ac60c17c Binary files /dev/null and b/blockchains/smartchain/assets/0x52dCF5BEdc061604D8C592B0079A0FF2ceA22eB7/logo.png differ diff --git a/blockchains/smartchain/assets/0x52e22D2480bC39F4aB13d4788014AEc3195bbCf7/info.json b/blockchains/smartchain/assets/0x52e22D2480bC39F4aB13d4788014AEc3195bbCf7/info.json new file mode 100644 index 00000000..3362dcd4 --- /dev/null +++ b/blockchains/smartchain/assets/0x52e22D2480bC39F4aB13d4788014AEc3195bbCf7/info.json @@ -0,0 +1,25 @@ +{ + "name": "SafeBank DIGITAL", + "description": "SafeBank Digital is a yield and liquidity generation protocol by DafriBank Digital. SafeBank employs 3 simple functions: Reflection + LP acquisition + Burn In each trade, the transaction is taxed a 10% fee, which is split 2 ways.", + "explorer": "https://bscscan.com/token/0x52e22D2480bC39F4aB13d4788014AEc3195bbCf7", + "website": "https://safebank.app", + "type": "BEP20", + "symbol": "SafeBankToken", + "decimals": 18, + "status": "active", + "id": "0x52e22D2480bC39F4aB13d4788014AEc3195bbCf7", + "links": [ + { + "name": "x", + "url": "https://x.com/SafeBankToken" + }, + { + "name": "telegram", + "url": "https://t.me/SafeBank" + }, + { + "name": "whitepaper", + "url": "https://safebank.app/whitepaper.html" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x52e22D2480bC39F4aB13d4788014AEc3195bbCf7/logo.png b/blockchains/smartchain/assets/0x52e22D2480bC39F4aB13d4788014AEc3195bbCf7/logo.png new file mode 100644 index 00000000..a08078d8 Binary files /dev/null and b/blockchains/smartchain/assets/0x52e22D2480bC39F4aB13d4788014AEc3195bbCf7/logo.png differ diff --git a/blockchains/smartchain/assets/0x5344C20FD242545F31723689662AC12b9556fC3d/info.json b/blockchains/smartchain/assets/0x5344C20FD242545F31723689662AC12b9556fC3d/info.json new file mode 100644 index 00000000..c2d698a0 --- /dev/null +++ b/blockchains/smartchain/assets/0x5344C20FD242545F31723689662AC12b9556fC3d/info.json @@ -0,0 +1,29 @@ +{ + "name": "Wakanda Inu Token", + "website": "https://www.wakandainu.com", + "description": "A decentralized meme token built as a charity-oriented meme token that is entirely for social good across the globe.", + "explorer": "https://bscscan.com/token/0x5344C20FD242545F31723689662AC12b9556fC3d", + "type": "BEP20", + "symbol": "WKD", + "decimals": 9, + "status": "active", + "id": "0x5344C20FD242545F31723689662AC12b9556fC3d", + "links": [ + { + "name": "github", + "url": "https://github.com/WakandaInu" + }, + { + "name": "telegram", + "url": "https://t.me/wakandainu" + }, + { + "name": "x", + "url": "https://x.com/Wakandainu" + }, + { + "name": "facebook", + "url": "https://facebook.com/wakandainu" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5344C20FD242545F31723689662AC12b9556fC3d/logo.png b/blockchains/smartchain/assets/0x5344C20FD242545F31723689662AC12b9556fC3d/logo.png new file mode 100644 index 00000000..61622ec7 Binary files /dev/null and b/blockchains/smartchain/assets/0x5344C20FD242545F31723689662AC12b9556fC3d/logo.png differ diff --git a/blockchains/smartchain/assets/0x534E99ff924038eB4a3aa7fac791D1eF8BB08b37/info.json b/blockchains/smartchain/assets/0x534E99ff924038eB4a3aa7fac791D1eF8BB08b37/info.json new file mode 100644 index 00000000..7613ba6b --- /dev/null +++ b/blockchains/smartchain/assets/0x534E99ff924038eB4a3aa7fac791D1eF8BB08b37/info.json @@ -0,0 +1,29 @@ +{ + "name": "Tiny Titans", + "website": "https://tinytitans.fi", + "description": "World of Tiny Titans. Tiny Titans — collectable & tradeable NFTs on BSC which you can train, level and win prices.", + "links": [ + { + "name": "x", + "url": "https://x.com/RealTinyTitans" + }, + { + "name": "medium", + "url": "https://tinytitans.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/tinytitans" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x534E99ff924038eB4a3aa7fac791D1eF8BB08b37#code" + } + ], + "explorer": "https://bscscan.com/token/0x534E99ff924038eB4a3aa7fac791D1eF8BB08b37", + "type": "BEP20", + "symbol": "TITS", + "decimals": 18, + "status": "abandoned", + "id": "0x534E99ff924038eB4a3aa7fac791D1eF8BB08b37" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x534E99ff924038eB4a3aa7fac791D1eF8BB08b37/logo.png b/blockchains/smartchain/assets/0x534E99ff924038eB4a3aa7fac791D1eF8BB08b37/logo.png new file mode 100644 index 00000000..02c71de2 Binary files /dev/null and b/blockchains/smartchain/assets/0x534E99ff924038eB4a3aa7fac791D1eF8BB08b37/logo.png differ diff --git a/blockchains/smartchain/assets/0x536627083e216C3Cf4476ec504eb51Bbd47cA4ac/info.json b/blockchains/smartchain/assets/0x536627083e216C3Cf4476ec504eb51Bbd47cA4ac/info.json new file mode 100644 index 00000000..b464c2c2 --- /dev/null +++ b/blockchains/smartchain/assets/0x536627083e216C3Cf4476ec504eb51Bbd47cA4ac/info.json @@ -0,0 +1,29 @@ +{ + "name": "GamingDoge", + "website": "https://www.gamingdoge.com/", + "description": "GamingDoge is the ultimate companion and only wants to make Doge community and Gamers proud. ", + "explorer": "https://bscscan.com/token/0x536627083e216c3cf4476ec504eb51bbd47ca4ac", + "type": "BEP20", + "symbol": "GamingDoge", + "decimals": 9, + "status": "active", + "id": "0x536627083e216C3Cf4476ec504eb51Bbd47cA4ac", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamingdoge/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gaming-doge" + }, + { + "name": "x", + "url": "https://x.com/gamingdogetoken" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/vrVYpnWtMRljNjYx" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x536627083e216C3Cf4476ec504eb51Bbd47cA4ac/logo.png b/blockchains/smartchain/assets/0x536627083e216C3Cf4476ec504eb51Bbd47cA4ac/logo.png new file mode 100644 index 00000000..e9a389db Binary files /dev/null and b/blockchains/smartchain/assets/0x536627083e216C3Cf4476ec504eb51Bbd47cA4ac/logo.png differ diff --git a/blockchains/smartchain/assets/0x536825370F1159cBA953055f5c2F16DDc7B5a348/info.json b/blockchains/smartchain/assets/0x536825370F1159cBA953055f5c2F16DDc7B5a348/info.json new file mode 100644 index 00000000..38fa22fa --- /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 00000000..2025f232 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 new file mode 100644 index 00000000..e6c53306 --- /dev/null +++ b/blockchains/smartchain/assets/0x538b972E46B86373638B14fa6F6a9C51f796394b/info.json @@ -0,0 +1,21 @@ +{ + "name": "AD Token", + "type": "BEP20", + "symbol": "AD", + "decimals": 18, + "website": "https://www.adtoken.net/", + "description": "ADToken is dedicated to the tokennation of advertising impressions and realizes the circulation of advertising value through DeFi.", + "explorer": "https://bscscan.com/token/0x538b972E46B86373638B14fa6F6a9C51f796394b", + "status": "active", + "id": "0x538b972E46B86373638B14fa6F6a9C51f796394b", + "links": [ + { + "name": "x", + "url": "https://x.com/AdTokenOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/adtoken_official" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x538b972E46B86373638B14fa6F6a9C51f796394b/logo.png b/blockchains/smartchain/assets/0x538b972E46B86373638B14fa6F6a9C51f796394b/logo.png new file mode 100644 index 00000000..4890471a Binary files /dev/null and b/blockchains/smartchain/assets/0x538b972E46B86373638B14fa6F6a9C51f796394b/logo.png differ diff --git a/blockchains/smartchain/assets/0x538e2838f9ebC9B891399DF4a8dcc42890D9dc20/info.json b/blockchains/smartchain/assets/0x538e2838f9ebC9B891399DF4a8dcc42890D9dc20/info.json new file mode 100644 index 00000000..4154070c --- /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 00000000..095286d5 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 new file mode 100644 index 00000000..cdebf9a4 --- /dev/null +++ b/blockchains/smartchain/assets/0x53D88d2ffDBE71E81D95b08AE0cA49D0C4A8515f/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream Polkadot Token", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x53D88d2ffDBE71E81D95b08AE0cA49D0C4A8515f", + "type": "BEP20", + "symbol": "crDOT", + "decimals": 8, + "status": "active", + "id": "0x53D88d2ffDBE71E81D95b08AE0cA49D0C4A8515f", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x53D88d2ffDBE71E81D95b08AE0cA49D0C4A8515f/logo.png b/blockchains/smartchain/assets/0x53D88d2ffDBE71E81D95b08AE0cA49D0C4A8515f/logo.png new file mode 100644 index 00000000..a5a813b1 Binary files /dev/null and b/blockchains/smartchain/assets/0x53D88d2ffDBE71E81D95b08AE0cA49D0C4A8515f/logo.png differ diff --git a/blockchains/smartchain/assets/0x53DfeC100967C3D4868315a2b8C28FaaaFAB3280/info.json b/blockchains/smartchain/assets/0x53DfeC100967C3D4868315a2b8C28FaaaFAB3280/info.json new file mode 100644 index 00000000..d5120742 --- /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 00000000..b5ca004c Binary files /dev/null and b/blockchains/smartchain/assets/0x53DfeC100967C3D4868315a2b8C28FaaaFAB3280/logo.png differ diff --git a/blockchains/smartchain/assets/0x53E562b9B7E5E94b81f10e96Ee70Ad06df3D2657/info.json b/blockchains/smartchain/assets/0x53E562b9B7E5E94b81f10e96Ee70Ad06df3D2657/info.json new file mode 100644 index 00000000..dc6c33c0 --- /dev/null +++ b/blockchains/smartchain/assets/0x53E562b9B7E5E94b81f10e96Ee70Ad06df3D2657/info.json @@ -0,0 +1,14 @@ +{ + "name": "BabySwap Token", + "website": "https://babyswap.finance", + "description": "BabySwap is the best AMM+NFT decentralized exchange for newborn projects on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x53E562b9B7E5E94b81f10e96Ee70Ad06df3D2657", + "type": "BEP20", + "symbol": "BABY", + "decimals": 18, + "status": "active", + "id": "0x53E562b9B7E5E94b81f10e96Ee70Ad06df3D2657", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x53E562b9B7E5E94b81f10e96Ee70Ad06df3D2657/logo.png b/blockchains/smartchain/assets/0x53E562b9B7E5E94b81f10e96Ee70Ad06df3D2657/logo.png new file mode 100644 index 00000000..a8650e99 Binary files /dev/null and b/blockchains/smartchain/assets/0x53E562b9B7E5E94b81f10e96Ee70Ad06df3D2657/logo.png differ diff --git a/blockchains/smartchain/assets/0x53F042f3e809d2DcC9492dE2DbF05d1DA0EF5fbb/info.json b/blockchains/smartchain/assets/0x53F042f3e809d2DcC9492dE2DbF05d1DA0EF5fbb/info.json new file mode 100644 index 00000000..7482939e --- /dev/null +++ b/blockchains/smartchain/assets/0x53F042f3e809d2DcC9492dE2DbF05d1DA0EF5fbb/info.json @@ -0,0 +1,69 @@ +{ + "name": "NOSHIT", + "type": "BEP20", + "symbol": "NSH", + "decimals": 9, + "website": "https://noshitcoin.io", + "description": "Educative token-review platform aiming to make the crypto-world more comprehendible & less shitty. - NFTs, dApp games, Rewards", + "explorer": "https://bscscan.com/token/0x53F042f3e809d2DcC9492dE2DbF05d1DA0EF5fbb", + "status": "active", + "id": "0x53F042f3e809d2DcC9492dE2DbF05d1DA0EF5fbb", + "links": [ + { + "name": "x", + "url": "https://x.com/NOSHITCoin_io" + }, + { + "name": "telegram", + "url": "https://t.me/NOSHITCoin_io" + }, + { + "name": "medium", + "url": "https://noshitcoin.medium.com" + }, + { + "name": "github", + "url": "https://github.com/noshitcoin" + }, + { + "name": "whitepaper", + "url": "https://noshitcoin.io/NOSHIT-Whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/noshit/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/noshit" + }, + { + "name": "telegram_news", + "url": "https://t.me/NoShitCoin_Official_Announcement" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/noshitters" + }, + { + "name": "youtube", + "url": "https://youtube.com/NOSHITCoin_io" + }, + { + "name": "facebook", + "url": "https://facebook.com/noshitcoin.io" + }, + { + "name": "discord", + "url": "https://discord.com/.gg/p3866QGv5r" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x53F042f3e809d2DcC9492dE2DbF05d1DA0EF5fbb#readContract" + } + ], + "tags": [ + "defi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x53F042f3e809d2DcC9492dE2DbF05d1DA0EF5fbb/logo.png b/blockchains/smartchain/assets/0x53F042f3e809d2DcC9492dE2DbF05d1DA0EF5fbb/logo.png new file mode 100644 index 00000000..9c19bb8b Binary files /dev/null and b/blockchains/smartchain/assets/0x53F042f3e809d2DcC9492dE2DbF05d1DA0EF5fbb/logo.png differ diff --git a/blockchains/smartchain/assets/0x53a8c5fc5643b437779742f494691e6b7C660a8b/info.json b/blockchains/smartchain/assets/0x53a8c5fc5643b437779742f494691e6b7C660a8b/info.json new file mode 100644 index 00000000..b8fd770d --- /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 00000000..b783120d 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 new file mode 100644 index 00000000..1ab01000 --- /dev/null +++ b/blockchains/smartchain/assets/0x53b3338E3345758aE88b930e3d9759A95C5cE05c/info.json @@ -0,0 +1,29 @@ +{ + "name": "GenshinFlokiInu", + "website": "https://www.genshinfloki.com/", + "description": "First two-dimensional meta-universe Decentralized Meme Coin Creates the BEST Metaverse on BSC genshinfloki FUN METAVERSE = NFT + GameFi + SmartToy + GenshinFlokiInu", + "explorer": "https://bscscan.com/token/0x53b3338E3345758aE88b930e3d9759A95C5cE05c", + "type": "BEP20", + "symbol": "GFloki", + "decimals": 4, + "status": "active", + "id": "0x53b3338E3345758aE88b930e3d9759A95C5cE05c", + "links": [ + { + "name": "github", + "url": "https://github.com/GenshinFloki/GenshinFloki" + }, + { + "name": "x", + "url": "https://x.com/GenshinFloki" + }, + { + "name": "telegram", + "url": "https://t.me/GenshinFlokiOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/genshinflokiinu-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x53b3338E3345758aE88b930e3d9759A95C5cE05c/logo.png b/blockchains/smartchain/assets/0x53b3338E3345758aE88b930e3d9759A95C5cE05c/logo.png new file mode 100644 index 00000000..a899e6e4 Binary files /dev/null and b/blockchains/smartchain/assets/0x53b3338E3345758aE88b930e3d9759A95C5cE05c/logo.png differ diff --git a/blockchains/smartchain/assets/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A/info.json b/blockchains/smartchain/assets/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A/info.json new file mode 100644 index 00000000..c178eae4 --- /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 00000000..1e648b48 Binary files /dev/null and b/blockchains/smartchain/assets/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A/logo.png differ diff --git a/blockchains/smartchain/assets/0x53dcD4eF8E21FE014594a0854c4271a0623B31eC/info.json b/blockchains/smartchain/assets/0x53dcD4eF8E21FE014594a0854c4271a0623B31eC/info.json new file mode 100644 index 00000000..e9a7d88c --- /dev/null +++ b/blockchains/smartchain/assets/0x53dcD4eF8E21FE014594a0854c4271a0623B31eC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xenon Pay", + "website": "https://xenonpay.org", + "description": "X2P (a BSC project) is a frictionless, high-yield, deflationary & decentralized token on the Binance Smart Chain. A 10% transaction fee will be distributed over all holders & 5% will go to the Liquidity Pool. Our goal is to motivate people by holding their coins and maximize their profits by doing this. Our system is built so it fits holders.", + "explorer": "https://bscscan.com/token/0x53dcD4eF8E21FE014594a0854c4271a0623B31eC", + "type": "BEP20", + "symbol": "X2P", + "decimals": 9, + "status": "abandoned", + "id": "0x53dcD4eF8E21FE014594a0854c4271a0623B31eC" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5419291D81C68c103363E06046F40a9056ab2B7f/info.json b/blockchains/smartchain/assets/0x5419291D81C68c103363E06046F40a9056ab2B7f/info.json new file mode 100644 index 00000000..75047b92 --- /dev/null +++ b/blockchains/smartchain/assets/0x5419291D81C68c103363E06046F40a9056ab2B7f/info.json @@ -0,0 +1,29 @@ +{ + "name": "DogeZoo", + "website": "https://dogezoo.com/", + "description": "DogeZoo is a crypto project that where gamefi, NFT and meme met.", + "explorer": "https://bscscan.com/token/0x5419291D81C68c103363E06046F40a9056ab2B7f", + "type": "BEP20", + "symbol": "DZOO", + "decimals": 9, + "status": "active", + "id": "0x5419291D81C68c103363E06046F40a9056ab2B7f", + "links": [ + { + "name": "x", + "url": "https://x.com/doge_zoo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogezoo/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dogezoo" + }, + { + "name": "telegram", + "url": "https://t.me/dogezoo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5419291D81C68c103363E06046F40a9056ab2B7f/logo.png b/blockchains/smartchain/assets/0x5419291D81C68c103363E06046F40a9056ab2B7f/logo.png new file mode 100644 index 00000000..0df19a64 Binary files /dev/null and b/blockchains/smartchain/assets/0x5419291D81C68c103363E06046F40a9056ab2B7f/logo.png differ diff --git a/blockchains/smartchain/assets/0x541EEC85ef7452D16814D32aB555dF33F0E4cEAD/info.json b/blockchains/smartchain/assets/0x541EEC85ef7452D16814D32aB555dF33F0E4cEAD/info.json new file mode 100644 index 00000000..10045314 --- /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 00000000..919dfc6f 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 00000000..e04b045b --- /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 new file mode 100644 index 00000000..f7944265 --- /dev/null +++ b/blockchains/smartchain/assets/0x5445451C07E20bA1ca887B6c74d66D358F46D083/info.json @@ -0,0 +1,36 @@ +{ + "name": "Zombie World Z", + "type": "BEP20", + "symbol": "ZwZ", + "decimals": 18, + "website": "https://zombieworldz.io", + "description": "Zombie World Z is upgraded and developed based on Zombie Idle Defense – a successful and established game in the market. Currently, the publisher has transformed the upgrade by applying blockchain technology and metaverse to game mining in a new aspect with a game economy tied to Tokens and blockchain on the Binance Smartchain platform.", + "explorer": "https://bscscan.com/token/0x5445451C07E20bA1ca887B6c74d66D358F46D083", + "status": "active", + "id": "0x5445451C07E20bA1ca887B6c74d66D358F46D083", + "links": [ + { + "name": "x", + "url": "https://x.com/ZWZ_Official" + }, + { + "name": "telegram", + "url": "https://t.me/zombieworldz" + }, + { + "name": "discord", + "url": "https://discord.com/invite/zombieworldz" + }, + { + "name": "whitepaper", + "url": "https://docs.zombieworldz.io/p/introduction/welcome-to-zwz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zombie-world-z" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5445451C07E20bA1ca887B6c74d66D358F46D083/logo.png b/blockchains/smartchain/assets/0x5445451C07E20bA1ca887B6c74d66D358F46D083/logo.png new file mode 100644 index 00000000..7a34cbf6 Binary files /dev/null and b/blockchains/smartchain/assets/0x5445451C07E20bA1ca887B6c74d66D358F46D083/logo.png differ diff --git a/blockchains/smartchain/assets/0x545f90dC35CA1e6129f1fEd354b3e2DF12034261/info.json b/blockchains/smartchain/assets/0x545f90dC35CA1e6129f1fEd354b3e2DF12034261/info.json new file mode 100644 index 00000000..51913c0f --- /dev/null +++ b/blockchains/smartchain/assets/0x545f90dC35CA1e6129f1fEd354b3e2DF12034261/info.json @@ -0,0 +1,11 @@ +{ + "name": "NEWB.Farm Token", + "website": "https://newb.farm", + "description": "NEWB Token is a native token by NewB.Farm, a global community driven yield farming aggregator on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x545f90dc35ca1e6129f1fed354b3e2df12034261", + "type": "BEP20", + "symbol": "NEWB", + "decimals": 18, + "status": "active", + "id": "0x545f90dC35CA1e6129f1fEd354b3e2DF12034261" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x545f90dC35CA1e6129f1fEd354b3e2DF12034261/logo.png b/blockchains/smartchain/assets/0x545f90dC35CA1e6129f1fEd354b3e2DF12034261/logo.png new file mode 100644 index 00000000..562f3883 Binary files /dev/null and b/blockchains/smartchain/assets/0x545f90dC35CA1e6129f1fEd354b3e2DF12034261/logo.png differ diff --git a/blockchains/smartchain/assets/0x54626300818E5C5b44Db0fcf45Ba4943CA89A9e2/info.json b/blockchains/smartchain/assets/0x54626300818E5C5b44Db0fcf45Ba4943CA89A9e2/info.json new file mode 100644 index 00000000..da38508f --- /dev/null +++ b/blockchains/smartchain/assets/0x54626300818E5C5b44Db0fcf45Ba4943CA89A9e2/info.json @@ -0,0 +1,53 @@ +{ + "name": "CHECOIN", + "type": "BEP20", + "symbol": "CHECOIN", + "decimals": 18, + "website": "https://launch.checoin.finance/", + "description": "A community token who reward you in BNB every hour. ", + "explorer": "https://bscscan.com/token/0x54626300818e5c5b44db0fcf45ba4943ca89a9e2", + "status": "active", + "id": "0x54626300818E5C5b44Db0fcf45Ba4943CA89A9e2", + "links": [ + { + "name": "github", + "url": "https://github.com/TheCheCoin" + }, + { + "name": "x", + "url": "https://x.com/CheCoinOfficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/CheCoin_/" + }, + { + "name": "telegram", + "url": "https://t.me/checointoken" + }, + { + "name": "telegram_news", + "url": "https://t.me/checoin_news" + }, + { + "name": "medium", + "url": "https://medium.com/checoin" + }, + { + "name": "discord", + "url": "https://discord.com/channels/869686421487771648" + }, + { + "name": "whitepaper", + "url": "https://launch.checoin.finance/whitepaper" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCfJVE4QoiAEXFEqR30GSsKA" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/checoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x54626300818E5C5b44Db0fcf45Ba4943CA89A9e2/logo.png b/blockchains/smartchain/assets/0x54626300818E5C5b44Db0fcf45Ba4943CA89A9e2/logo.png new file mode 100644 index 00000000..46e92214 Binary files /dev/null and b/blockchains/smartchain/assets/0x54626300818E5C5b44Db0fcf45Ba4943CA89A9e2/logo.png differ diff --git a/blockchains/smartchain/assets/0x547CBE0f0c25085e7015Aa6939b28402EB0CcDAC/info.json b/blockchains/smartchain/assets/0x547CBE0f0c25085e7015Aa6939b28402EB0CcDAC/info.json new file mode 100644 index 00000000..c2df4966 --- /dev/null +++ b/blockchains/smartchain/assets/0x547CBE0f0c25085e7015Aa6939b28402EB0CcDAC/info.json @@ -0,0 +1,30 @@ +{ + "name": "Elastic BNB", + "website": "https://xbn.finance", + "short_description": "A new Defi protocol that enables Adaptive Supply Model.", + "explorer": "https://bscscan.com/token/0x547cbe0f0c25085e7015aa6939b28402eb0ccdac", + "description": "Elastic BNB (XBN) is a new Defi protocol that enables Adaptive Supply Model. 1 XBN will anchor to 0.001 BNB with 100 days lag factor.", + "type": "BEP20", + "symbol": "XBN", + "decimals": 18, + "status": "active", + "id": "0x547CBE0f0c25085e7015Aa6939b28402EB0CcDAC", + "links": [ + { + "name": "github", + "url": "https://github.com/ElasticBTC-XBT" + }, + { + "name": "x", + "url": "https://x.com/elasticbitcoin" + }, + { + "name": "telegram", + "url": "https://t.me/elasticbitcoin" + }, + { + "name": "medium", + "url": "https://medium.com/elastic-bitcoin-xbt" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x547CBE0f0c25085e7015Aa6939b28402EB0CcDAC/logo.png b/blockchains/smartchain/assets/0x547CBE0f0c25085e7015Aa6939b28402EB0CcDAC/logo.png new file mode 100644 index 00000000..f5345332 Binary files /dev/null and b/blockchains/smartchain/assets/0x547CBE0f0c25085e7015Aa6939b28402EB0CcDAC/logo.png differ diff --git a/blockchains/smartchain/assets/0x5481A517028813956005d77bcD0F561c7276b1e3/info.json b/blockchains/smartchain/assets/0x5481A517028813956005d77bcD0F561c7276b1e3/info.json new file mode 100644 index 00000000..ed7390e9 --- /dev/null +++ b/blockchains/smartchain/assets/0x5481A517028813956005d77bcD0F561c7276b1e3/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOOBAM Token", + "website": "https://boobamfinance.com", + "description": "BOOBAM is a deflationaty token with RFI system and anti-whale protection.", + "explorer": "https://bscscan.com/token/0x5481a517028813956005d77bcd0f561c7276b1e3", + "type": "BEP20", + "symbol": "BOBA", + "status": "active", + "decimals": 9, + "id": "0x5481A517028813956005d77bcD0F561c7276b1e3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5481A517028813956005d77bcD0F561c7276b1e3/logo.png b/blockchains/smartchain/assets/0x5481A517028813956005d77bcD0F561c7276b1e3/logo.png new file mode 100644 index 00000000..c33362b3 Binary files /dev/null and b/blockchains/smartchain/assets/0x5481A517028813956005d77bcD0F561c7276b1e3/logo.png differ diff --git a/blockchains/smartchain/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json b/blockchains/smartchain/assets/0x548308E91ec9F285C7bFf05295baDBD56a6e4971/info.json new file mode 100644 index 00000000..951ab6ae --- /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 00000000..8179bd11 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 new file mode 100644 index 00000000..93be7f85 --- /dev/null +++ b/blockchains/smartchain/assets/0x5492Ef6aEebA1A3896357359eF039a8B11621b45/info.json @@ -0,0 +1,29 @@ +{ + "name": "Chumbi Valley", + "website": "https://chumbivalley.com/", + "description": "Chumbi Valley is an enchanting RPG Play-to-Earn game. Chumbi Valley features NFT creatures and original art inspired by Pokemon and Studio Ghibli.", + "explorer": "https://bscscan.com/token/0x5492Ef6aEebA1A3896357359eF039a8B11621b45", + "type": "BEP20", + "symbol": "CHMB", + "decimals": 18, + "status": "active", + "id": "0x5492Ef6aEebA1A3896357359eF039a8B11621b45", + "links": [ + { + "name": "x", + "url": "https://x.com/chumbivalley" + }, + { + "name": "discord", + "url": "https://discord.com/invite/chumbi" + }, + { + "name": "telegram", + "url": "https://t.me/chumbivalley01" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5492Ef6aEebA1A3896357359eF039a8B11621b45/logo.png b/blockchains/smartchain/assets/0x5492Ef6aEebA1A3896357359eF039a8B11621b45/logo.png new file mode 100644 index 00000000..00003589 Binary files /dev/null and b/blockchains/smartchain/assets/0x5492Ef6aEebA1A3896357359eF039a8B11621b45/logo.png differ diff --git a/blockchains/smartchain/assets/0x549CC5dF432cdbAEbc8B9158A6bDFe1cbD0Ba16d/info.json b/blockchains/smartchain/assets/0x549CC5dF432cdbAEbc8B9158A6bDFe1cbD0Ba16d/info.json new file mode 100644 index 00000000..1489d021 --- /dev/null +++ b/blockchains/smartchain/assets/0x549CC5dF432cdbAEbc8B9158A6bDFe1cbD0Ba16d/info.json @@ -0,0 +1,41 @@ +{ + "name": "HOWL", + "website": "https://howlcity.io", + "description": "HOWL is the token of the HowlCity project, a 3D metaverse game", + "explorer": "https://bscscan.com/token/0x549cc5df432cdbaebc8b9158a6bdfe1cbd0ba16d", + "type": "BEP20", + "symbol": "HWL", + "decimals": 18, + "status": "active", + "id": "0x549CC5dF432cdbAEbc8B9158A6bDFe1cbD0Ba16d", + "links": [ + { + "name": "x", + "url": "https://x.com/HowlCityNft" + }, + { + "name": "telegram", + "url": "https://t.me/HowlCity_Official" + }, + { + "name": "discord", + "url": "https://discord.com/invite/mMj2g3MHmQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/vi/currencies/howl-city/" + }, + { + "name": "facebook", + "url": "https://facebook.com/HowlCityOfficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/HowlCity/" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1rVgfFV0SC68cv4W15pMc80jct2qrLArm/view" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x549CC5dF432cdbAEbc8B9158A6bDFe1cbD0Ba16d/logo.png b/blockchains/smartchain/assets/0x549CC5dF432cdbAEbc8B9158A6bDFe1cbD0Ba16d/logo.png new file mode 100644 index 00000000..16e41253 Binary files /dev/null and b/blockchains/smartchain/assets/0x549CC5dF432cdbAEbc8B9158A6bDFe1cbD0Ba16d/logo.png differ diff --git a/blockchains/smartchain/assets/0x54B92Fd77229269Ff6484942C123cCa72f2D6fEC/info.json b/blockchains/smartchain/assets/0x54B92Fd77229269Ff6484942C123cCa72f2D6fEC/info.json new file mode 100644 index 00000000..86b67974 --- /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 00000000..acfd22e8 Binary files /dev/null and b/blockchains/smartchain/assets/0x54B92Fd77229269Ff6484942C123cCa72f2D6fEC/logo.png differ diff --git a/blockchains/smartchain/assets/0x54E5721Ea9c828E725aE6E3F640F69928B696b3e/info.json b/blockchains/smartchain/assets/0x54E5721Ea9c828E725aE6E3F640F69928B696b3e/info.json new file mode 100644 index 00000000..aadb1dc2 --- /dev/null +++ b/blockchains/smartchain/assets/0x54E5721Ea9c828E725aE6E3F640F69928B696b3e/info.json @@ -0,0 +1,11 @@ +{ + "name": "DolphinNetWork", + "type": "BEP20", + "symbol": "DOLP", + "decimals": 9, + "website": "https://dolphinnetwork.io/", + "description": "Dolphin Network is a fully decentralized, the NFT MarketPlace for Meme tokens.", + "explorer": "https://bscscan.com/token/0x54E5721Ea9c828E725aE6E3F640F69928B696b3e", + "status": "active", + "id": "0x54E5721Ea9c828E725aE6E3F640F69928B696b3e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x54E5721Ea9c828E725aE6E3F640F69928B696b3e/logo.png b/blockchains/smartchain/assets/0x54E5721Ea9c828E725aE6E3F640F69928B696b3e/logo.png new file mode 100644 index 00000000..fcfb364b Binary files /dev/null and b/blockchains/smartchain/assets/0x54E5721Ea9c828E725aE6E3F640F69928B696b3e/logo.png differ diff --git a/blockchains/smartchain/assets/0x54E87ed5A096f09d9665fD114002bdDFc2084a7F/info.json b/blockchains/smartchain/assets/0x54E87ed5A096f09d9665fD114002bdDFc2084a7F/info.json new file mode 100644 index 00000000..0c3f52e1 --- /dev/null +++ b/blockchains/smartchain/assets/0x54E87ed5A096f09d9665fD114002bdDFc2084a7F/info.json @@ -0,0 +1,24 @@ +{ + "name": "Baby Moon Floki", + "website": "https://babymoonfloki.com", + "description": "Baby Moon Floki is a hyper-deflationary token that has a smart exchange system built into the ecosystem", + "explorer": "https://bscscan.com/token/0x54E87ed5A096f09d9665fD114002bdDFc2084a7F", + "type": "BEP20", + "symbol": "Floki", + "decimals": 9, + "status": "active", + "id": "0x54E87ed5A096f09d9665fD114002bdDFc2084a7F", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/babymoonfloki" + }, + { + "name": "telegram", + "url": "https://t.me/BMFloki" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x54E87ed5A096f09d9665fD114002bdDFc2084a7F/logo.png b/blockchains/smartchain/assets/0x54E87ed5A096f09d9665fD114002bdDFc2084a7F/logo.png new file mode 100644 index 00000000..fa0432e7 Binary files /dev/null and b/blockchains/smartchain/assets/0x54E87ed5A096f09d9665fD114002bdDFc2084a7F/logo.png differ diff --git a/blockchains/smartchain/assets/0x5507f52C96e64e5e5c3dF0Ea90d3515fc0c7d9dF/info.json b/blockchains/smartchain/assets/0x5507f52C96e64e5e5c3dF0Ea90d3515fc0c7d9dF/info.json new file mode 100644 index 00000000..9ff938de --- /dev/null +++ b/blockchains/smartchain/assets/0x5507f52C96e64e5e5c3dF0Ea90d3515fc0c7d9dF/info.json @@ -0,0 +1,11 @@ +{ + "name": "GETART Token", + "type": "BEP20", + "symbol": "GAX", + "decimals": 18, + "website": "https://getart.io/ ", + "description": "Getart is aiming to build a digital marketplace for non-fungible tokens (NFTs). Users in the platform can buy, sell, own various digital assets, and search different NFTs within the Getart market.", + "explorer": "https://bscscan.com/token/0x5507f52C96e64e5e5c3dF0Ea90d3515fc0c7d9dF", + "status": "active", + "id": "0x5507f52C96e64e5e5c3dF0Ea90d3515fc0c7d9dF" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5507f52C96e64e5e5c3dF0Ea90d3515fc0c7d9dF/logo.png b/blockchains/smartchain/assets/0x5507f52C96e64e5e5c3dF0Ea90d3515fc0c7d9dF/logo.png new file mode 100644 index 00000000..4bd24b33 Binary files /dev/null and b/blockchains/smartchain/assets/0x5507f52C96e64e5e5c3dF0Ea90d3515fc0c7d9dF/logo.png differ diff --git a/blockchains/smartchain/assets/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B/info.json b/blockchains/smartchain/assets/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B/info.json new file mode 100644 index 00000000..d9160f41 --- /dev/null +++ b/blockchains/smartchain/assets/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B/info.json @@ -0,0 +1,44 @@ +{ + "name": "PandAI Token", + "type": "BEP20", + "symbol": "PANDAI", + "decimals": 6, + "website": "https://pandai.io/", + "description": "PANDAI is a cute AI meme token on BSC, making AI accessible for everyone.", + "explorer": "https://bscscan.com/token/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B", + "status": "active", + "id": "0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B", + "links": [ + { + "name": "x", + "url": "https://x.com/pandai_bsc" + }, + { + "name": "telegram", + "url": "https://t.me/pandaichatofficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/pandaiann" + }, + { + "name": "docs", + "url": "https://docs.pandai.io" + }, + { + "name": "whitepaper", + "url": "https://docs.pandai.io/tokenomics" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pandai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pandai" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B/logo.png b/blockchains/smartchain/assets/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B/logo.png new file mode 100644 index 00000000..6decbd46 Binary files /dev/null and b/blockchains/smartchain/assets/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B/logo.png differ diff --git a/blockchains/smartchain/assets/0x55183148d5C3360cbB0e1EDb38b30e091aEE4D65/info.json b/blockchains/smartchain/assets/0x55183148d5C3360cbB0e1EDb38b30e091aEE4D65/info.json new file mode 100644 index 00000000..dcdea235 --- /dev/null +++ b/blockchains/smartchain/assets/0x55183148d5C3360cbB0e1EDb38b30e091aEE4D65/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rhyme$ick Coin", + "website": "https://rhymesick.com/", + "description": "The RSC coin is our introduction to the crypto world and the first of many “SMART COINS” to follow with real world applications and utility! These Smart Coins will target specific sectors of business including Music, Life Insurance, Business Loans, Banking, Entertainment, NFTs, Collectibles, Sports, Car and Home Savings, etc — and with star-power of RSC, will be the first to know about future coins! That means future gains for savvy investors.", + "explorer": "https://bscscan.com/token/0x55183148d5C3360cbB0e1EDb38b30e091aEE4D65", + "type": "BEP20", + "symbol": "R$C", + "decimals": 9, + "status": "abandoned", + "id": "0x55183148d5C3360cbB0e1EDb38b30e091aEE4D65" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x55183148d5C3360cbB0e1EDb38b30e091aEE4D65/logo.png b/blockchains/smartchain/assets/0x55183148d5C3360cbB0e1EDb38b30e091aEE4D65/logo.png new file mode 100644 index 00000000..f7181434 Binary files /dev/null and b/blockchains/smartchain/assets/0x55183148d5C3360cbB0e1EDb38b30e091aEE4D65/logo.png differ diff --git a/blockchains/smartchain/assets/0x551897f8203bd131b350601D3aC0679Ba0Fc0136/info.json b/blockchains/smartchain/assets/0x551897f8203bd131b350601D3aC0679Ba0Fc0136/info.json new file mode 100644 index 00000000..d9400241 --- /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 00000000..f13060b1 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 00000000..1df2348e --- /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 00000000..0f62cccb 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 00000000..5d3e6cac --- /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 00000000..2ce033b0 Binary files /dev/null and b/blockchains/smartchain/assets/0x551f8Db0da800C910E12Cf991eac306714481685/logo.png differ diff --git a/blockchains/smartchain/assets/0x5546600f77EdA1DCF2e8817eF4D617382E7f71F5/info.json b/blockchains/smartchain/assets/0x5546600f77EdA1DCF2e8817eF4D617382E7f71F5/info.json new file mode 100644 index 00000000..d532051d --- /dev/null +++ b/blockchains/smartchain/assets/0x5546600f77EdA1DCF2e8817eF4D617382E7f71F5/info.json @@ -0,0 +1,11 @@ +{ + "name": "PING", + "website": "https://www.sonarplatform.io/", + "description": "Sonar Platform is the next-gen crypto tracking dashboard. It's a complete and easy to use tracking and analytics tool for the BSC and ETH networks.", + "explorer": "https://bscscan.com/token/0x5546600f77eda1dcf2e8817ef4d617382e7f71f5", + "type": "BEP20", + "symbol": "PING", + "decimals": 9, + "status": "active", + "id": "0x5546600f77EdA1DCF2e8817eF4D617382E7f71F5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5546600f77EdA1DCF2e8817eF4D617382E7f71F5/logo.png b/blockchains/smartchain/assets/0x5546600f77EdA1DCF2e8817eF4D617382E7f71F5/logo.png new file mode 100644 index 00000000..d9384e8f Binary files /dev/null and b/blockchains/smartchain/assets/0x5546600f77EdA1DCF2e8817eF4D617382E7f71F5/logo.png differ diff --git a/blockchains/smartchain/assets/0x554B5DaeA72B2E2185147374954cb4721e20f4E1/info.json b/blockchains/smartchain/assets/0x554B5DaeA72B2E2185147374954cb4721e20f4E1/info.json new file mode 100644 index 00000000..aa30e3a3 --- /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 00000000..9ea4f0ae Binary files /dev/null and b/blockchains/smartchain/assets/0x554B5DaeA72B2E2185147374954cb4721e20f4E1/logo.png differ diff --git a/blockchains/smartchain/assets/0x55671114d774ee99D653D6C12460c780a67f1D18/info.json b/blockchains/smartchain/assets/0x55671114d774ee99D653D6C12460c780a67f1D18/info.json new file mode 100644 index 00000000..a121717b --- /dev/null +++ b/blockchains/smartchain/assets/0x55671114d774ee99D653D6C12460c780a67f1D18/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pacoca Token", + "website": "https://pacoca.io/", + "description": "Paçoca is a DeFi hub where users can invest in yield-optimizing vaults and track their assets on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x55671114d774ee99D653D6C12460c780a67f1D18", + "type": "BEP20", + "symbol": "PACOCA", + "decimals": 18, + "status": "active", + "id": "0x55671114d774ee99D653D6C12460c780a67f1D18" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x55671114d774ee99D653D6C12460c780a67f1D18/logo.png b/blockchains/smartchain/assets/0x55671114d774ee99D653D6C12460c780a67f1D18/logo.png new file mode 100644 index 00000000..d92efb81 Binary files /dev/null and b/blockchains/smartchain/assets/0x55671114d774ee99D653D6C12460c780a67f1D18/logo.png differ diff --git a/blockchains/smartchain/assets/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8/info.json b/blockchains/smartchain/assets/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8/info.json new file mode 100644 index 00000000..59c3e0ce --- /dev/null +++ b/blockchains/smartchain/assets/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8/info.json @@ -0,0 +1,56 @@ +{ + "name": "DynL1BNB DynaSet", + "type": "BEP20", + "symbol": "dynL1BNB", + "decimals": 18, + "website": "https://singularitydao.ai/dynalab/dynL1BNB", + "description": "dynL1BNB gives users exposure to the top 9 Layer 1 assets on the BNB Smart Chain using long only strategies optimised by the Dynamic Asset Manager with less fees & expenses. Powered by SingularityDAO.ai.", + "explorer": "https://bscscan.com/token/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8", + "status": "active", + "id": "0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8", + "links": [ + { + "name": "x", + "url": "https://x.com/SingularityDao" + }, + { + "name": "telegram", + "url": "https://t.me/chatsight_bot?start=dmVyaWZ5OjotMTAwMTI4NzAxNjEzNw==" + }, + { + "name": "telegram_news", + "url": "https://t.me/sdaoann" + }, + { + "name": "discord", + "url": "https://discord.com/invite/singularitydao" + }, + { + "name": "github", + "url": "https://github.com/Singularity-DAO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/singularitydao" + }, + { + "name": "youtube", + "url": "https://youtube.com/@SingularityDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/singularitydao/" + }, + { + "name": "medium", + "url": "https://medium.com/singularitydao" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SingularityDAO/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8/logo.png b/blockchains/smartchain/assets/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8/logo.png new file mode 100644 index 00000000..1565f403 Binary files /dev/null and b/blockchains/smartchain/assets/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8/logo.png differ diff --git a/blockchains/smartchain/assets/0x556b60c53fbC1518Ad17E03d52E47368dD4d81B3/info.json b/blockchains/smartchain/assets/0x556b60c53fbC1518Ad17E03d52E47368dD4d81B3/info.json new file mode 100644 index 00000000..dae860cd --- /dev/null +++ b/blockchains/smartchain/assets/0x556b60c53fbC1518Ad17E03d52E47368dD4d81B3/info.json @@ -0,0 +1,14 @@ +{ + "name": "Axie Infinity Shard (Portal from Ethereum)", + "type": "BEP20", + "symbol": "AXSet", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://axieinfinity.com/", + "explorer": "https://bscscan.com/token/0x556b60c53fbC1518Ad17E03d52E47368dD4d81B3", + "status": "active", + "id": "0x556b60c53fbC1518Ad17E03d52E47368dD4d81B3", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x556b60c53fbC1518Ad17E03d52E47368dD4d81B3/logo.png b/blockchains/smartchain/assets/0x556b60c53fbC1518Ad17E03d52E47368dD4d81B3/logo.png new file mode 100644 index 00000000..d9761d4e Binary files /dev/null and b/blockchains/smartchain/assets/0x556b60c53fbC1518Ad17E03d52E47368dD4d81B3/logo.png differ diff --git a/blockchains/smartchain/assets/0x557233E794d1a5FbCc6D26dca49147379ea5073c/info.json b/blockchains/smartchain/assets/0x557233E794d1a5FbCc6D26dca49147379ea5073c/info.json new file mode 100644 index 00000000..83d9e9cf --- /dev/null +++ b/blockchains/smartchain/assets/0x557233E794d1a5FbCc6D26dca49147379ea5073c/info.json @@ -0,0 +1,29 @@ +{ + "name": "Alita Finance Token", + "website": "https://alita.finance", + "description": "Alita is the ultimate reward token for global trading platforms.", + "explorer": "https://bscscan.com/token/0x557233E794d1a5FbCc6D26dca49147379ea5073c", + "type": "BEP20", + "symbol": "ALI", + "decimals": 18, + "status": "active", + "id": "0x557233E794d1a5FbCc6D26dca49147379ea5073c", + "links": [ + { + "name": "github", + "url": "https://github.com/alita-finance" + }, + { + "name": "x", + "url": "https://x.com/AlitaFinance" + }, + { + "name": "telegram", + "url": "https://t.me/ALita_Finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/alita" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x557233E794d1a5FbCc6D26dca49147379ea5073c/logo.png b/blockchains/smartchain/assets/0x557233E794d1a5FbCc6D26dca49147379ea5073c/logo.png new file mode 100644 index 00000000..12690f90 Binary files /dev/null and b/blockchains/smartchain/assets/0x557233E794d1a5FbCc6D26dca49147379ea5073c/logo.png differ diff --git a/blockchains/smartchain/assets/0x557dd6700e66818AF340ccE17FD4508CED81fBc1/info.json b/blockchains/smartchain/assets/0x557dd6700e66818AF340ccE17FD4508CED81fBc1/info.json new file mode 100644 index 00000000..68ac62ec --- /dev/null +++ b/blockchains/smartchain/assets/0x557dd6700e66818AF340ccE17FD4508CED81fBc1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Papel", + "website": "https://www.papeltoken.net/", + "description": "Passive rewards, autoliquidity, community token, charity.", + "explorer": "https://bscscan.com/token/0x557dd6700e66818af340cce17fd4508ced81fbc1", + "type": "BEP20", + "symbol": "PAPEL", + "decimals": 9, + "status": "active", + "id": "0x557dd6700e66818AF340ccE17FD4508CED81fBc1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x557dd6700e66818AF340ccE17FD4508CED81fBc1/logo.png b/blockchains/smartchain/assets/0x557dd6700e66818AF340ccE17FD4508CED81fBc1/logo.png new file mode 100644 index 00000000..0c5ab0af Binary files /dev/null and b/blockchains/smartchain/assets/0x557dd6700e66818AF340ccE17FD4508CED81fBc1/logo.png differ diff --git a/blockchains/smartchain/assets/0x55B0fAf9818074716F622453abc296839d559120/info.json b/blockchains/smartchain/assets/0x55B0fAf9818074716F622453abc296839d559120/info.json new file mode 100644 index 00000000..84250143 --- /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 00000000..79b1dd5e --- /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 00000000..b9eb124a 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 new file mode 100644 index 00000000..cc333af1 --- /dev/null +++ b/blockchains/smartchain/assets/0x55B53855eaE06c4744841dbFA06FCe335dB4355B/info.json @@ -0,0 +1,29 @@ +{ + "name": "SatoshiStreetBets Token", + "type": "BEP20", + "symbol": "SSB", + "decimals": 9, + "website": "https://ssbtoken.com", + "description": "An Accelerated Hyper-Deflationary Token powered by advanced tokenomics and the SSB Business Model.", + "explorer": "https://bscscan.com/token/0x55B53855eaE06c4744841dbFA06FCe335dB4355B", + "status": "active", + "id": "0x55B53855eaE06c4744841dbFA06FCe335dB4355B", + "links": [ + { + "name": "x", + "url": "https://x.com/satoshistrbets" + }, + { + "name": "telegram", + "url": "https://t.me/SSBTokenOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/satoshistreetbets/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/satoshistreetbets" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x55B53855eaE06c4744841dbFA06FCe335dB4355B/logo.png b/blockchains/smartchain/assets/0x55B53855eaE06c4744841dbFA06FCe335dB4355B/logo.png new file mode 100644 index 00000000..1ab6eafc Binary files /dev/null and b/blockchains/smartchain/assets/0x55B53855eaE06c4744841dbFA06FCe335dB4355B/logo.png differ diff --git a/blockchains/smartchain/assets/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab/info.json b/blockchains/smartchain/assets/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab/info.json new file mode 100644 index 00000000..66a9cb44 --- /dev/null +++ b/blockchains/smartchain/assets/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab/info.json @@ -0,0 +1,49 @@ +{ + "name": "Wojak", + "type": "BEP20", + "symbol": "WOJ", + "decimals": 9, + "website": "https://woj.finance", + "description": "The $WOJ token is a charity token, based on the BEP20 standard. Using $WOJ tokens the holders can enjoy multiple benefits within our wojak finance ecosystem, as it may be used as the governance token in the future.", + "explorer": "https://bscscan.com/token/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab", + "status": "active", + "id": "0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab", + "links": [ + { + "name": "x", + "url": "https://x.com/wojfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wojak-finance/" + }, + { + "name": "medium", + "url": "https://medium.com/@WojToken" + }, + { + "name": "telegram", + "url": "https://t.me/wojtoken" + }, + { + "name": "discord", + "url": "https://discord.com/invite/BZUQqnEH" + }, + { + "name": "whitepaper", + "url": "https://docs.woj.finance/" + }, + { + "name": "github", + "url": "https://github.com/wojak-finance" + }, + { + "name": "facebook", + "url": "https://facebook.com/profile.php?id=100070044607209" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/wojtoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab/logo.png b/blockchains/smartchain/assets/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab/logo.png new file mode 100644 index 00000000..196024d6 Binary files /dev/null and b/blockchains/smartchain/assets/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab/logo.png differ diff --git a/blockchains/smartchain/assets/0x55d398326f99059fF775485246999027B3197955/info.json b/blockchains/smartchain/assets/0x55d398326f99059fF775485246999027B3197955/info.json new file mode 100644 index 00000000..dd551274 --- /dev/null +++ b/blockchains/smartchain/assets/0x55d398326f99059fF775485246999027B3197955/info.json @@ -0,0 +1,25 @@ +{ + "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://bscscan.com/token/0x55d398326f99059fF775485246999027B3197955", + "research": "", + "type": "BEP20", + "symbol": "USDT", + "decimals": 18, + "status": "active", + "id": "0x55d398326f99059fF775485246999027B3197955", + "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/smartchain/assets/0x55d398326f99059fF775485246999027B3197955/logo.png b/blockchains/smartchain/assets/0x55d398326f99059fF775485246999027B3197955/logo.png new file mode 100644 index 00000000..4b302730 Binary files /dev/null and b/blockchains/smartchain/assets/0x55d398326f99059fF775485246999027B3197955/logo.png differ diff --git a/blockchains/smartchain/assets/0x56083560594E314b5cDd1680eC6a493bb851BBd8/info.json b/blockchains/smartchain/assets/0x56083560594E314b5cDd1680eC6a493bb851BBd8/info.json new file mode 100644 index 00000000..9ee17cc9 --- /dev/null +++ b/blockchains/smartchain/assets/0x56083560594E314b5cDd1680eC6a493bb851BBd8/info.json @@ -0,0 +1,25 @@ +{ + "name": "Transhuman Coin", + "type": "BEP20", + "symbol": "THC", + "decimals": 9, + "website": "https://www.transhumancoin.finance", + "description": "BEP20 token merging Artificial intelligence and Biotechnology in the Metaverse to solve ageing and genetic disorders.", + "explorer": "https://bscscan.com/token/0x56083560594E314b5cDd1680eC6a493bb851BBd8", + "status": "active", + "id": "0x56083560594E314b5cDd1680eC6a493bb851BBd8", + "links": [ + { + "name": "x", + "url": "https://x.com/transhumancoin" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/hYQyhaCsavlmNjQ0" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/transhuman-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x56083560594E314b5cDd1680eC6a493bb851BBd8/logo.png b/blockchains/smartchain/assets/0x56083560594E314b5cDd1680eC6a493bb851BBd8/logo.png new file mode 100644 index 00000000..3aacb5f6 Binary files /dev/null and b/blockchains/smartchain/assets/0x56083560594E314b5cDd1680eC6a493bb851BBd8/logo.png differ diff --git a/blockchains/smartchain/assets/0x560deb3D70Ac90064fF809349cDf9A771a06fd36/info.json b/blockchains/smartchain/assets/0x560deb3D70Ac90064fF809349cDf9A771a06fd36/info.json new file mode 100644 index 00000000..22290379 --- /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 00000000..f2cc5171 Binary files /dev/null and b/blockchains/smartchain/assets/0x560deb3D70Ac90064fF809349cDf9A771a06fd36/logo.png differ diff --git a/blockchains/smartchain/assets/0x5610Bf2BF5ABe5750BDBCe311631dEE2aFa2Cd24/info.json b/blockchains/smartchain/assets/0x5610Bf2BF5ABe5750BDBCe311631dEE2aFa2Cd24/info.json new file mode 100644 index 00000000..451bc42b --- /dev/null +++ b/blockchains/smartchain/assets/0x5610Bf2BF5ABe5750BDBCe311631dEE2aFa2Cd24/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoonPump Token", + "type": "BEP20", + "symbol": "PUMP", + "decimals": 9, + "website": "https://moonpump.net", + "description": "MoonPump ($PUMP) is the community-built utility token for the upcoming PumpLaunch platform.", + "explorer": "https://bscscan.com/token/0x5610Bf2BF5ABe5750BDBCe311631dEE2aFa2Cd24", + "status": "active", + "id": "0x5610Bf2BF5ABe5750BDBCe311631dEE2aFa2Cd24" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5610Bf2BF5ABe5750BDBCe311631dEE2aFa2Cd24/logo.png b/blockchains/smartchain/assets/0x5610Bf2BF5ABe5750BDBCe311631dEE2aFa2Cd24/logo.png new file mode 100644 index 00000000..07b9bab0 Binary files /dev/null and b/blockchains/smartchain/assets/0x5610Bf2BF5ABe5750BDBCe311631dEE2aFa2Cd24/logo.png differ diff --git a/blockchains/smartchain/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json b/blockchains/smartchain/assets/0x5621737f42dAE558b81269FcB9E9E70c19Aa6b35/info.json new file mode 100644 index 00000000..e7fe641c --- /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 00000000..409e4ece 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 00000000..d7daab4f --- /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 00000000..fd6e35f6 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 00000000..86d73427 --- /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 00000000..e884b0d8 Binary files /dev/null and b/blockchains/smartchain/assets/0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5/logo.png differ diff --git a/blockchains/smartchain/assets/0x565D931cBa7C7E1af3925f77124D5e2d68311BBE/info.json b/blockchains/smartchain/assets/0x565D931cBa7C7E1af3925f77124D5e2d68311BBE/info.json new file mode 100644 index 00000000..c4b64fb2 --- /dev/null +++ b/blockchains/smartchain/assets/0x565D931cBa7C7E1af3925f77124D5e2d68311BBE/info.json @@ -0,0 +1,11 @@ +{ + "name": "HyperChain", + "type": "BEP20", + "symbol": "HYPER", + "decimals": 7, + "website": "https://hyperchainx.com", + "description": "Hyper Chain X is a community driven project that is out of this world! Great design, graphics, marketing and space gaming that will bring a new “Hype” to the market! NFTS, Merchandise and HYPER space E-Sports tournaments. Backed by a solid team.", + "explorer": "https://bscscan.com/token/0x565D931cBa7C7E1af3925f77124D5e2d68311BBE", + "status": "active", + "id": "0x565D931cBa7C7E1af3925f77124D5e2d68311BBE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x565D931cBa7C7E1af3925f77124D5e2d68311BBE/logo.png b/blockchains/smartchain/assets/0x565D931cBa7C7E1af3925f77124D5e2d68311BBE/logo.png new file mode 100644 index 00000000..114a6a68 Binary files /dev/null and b/blockchains/smartchain/assets/0x565D931cBa7C7E1af3925f77124D5e2d68311BBE/logo.png differ diff --git a/blockchains/smartchain/assets/0x565b72163f17849832A692A3c5928cc502f46D69/info.json b/blockchains/smartchain/assets/0x565b72163f17849832A692A3c5928cc502f46D69/info.json new file mode 100644 index 00000000..fe915415 --- /dev/null +++ b/blockchains/smartchain/assets/0x565b72163f17849832A692A3c5928cc502f46D69/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hunny Token", + "website": "https://pancakehunny.finance", + "description": "PancakeHunny.Finance — Enhance and Optimise Your DeFi Yield Farming on Binance Smart Chan (BSC).", + "explorer": "https://bscscan.com/token/0x565b72163f17849832A692A3c5928cc502f46D69", + "type": "BEP20", + "symbol": "HUNNY", + "decimals": 18, + "status": "active", + "id": "0x565b72163f17849832A692A3c5928cc502f46D69" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x565b72163f17849832A692A3c5928cc502f46D69/logo.png b/blockchains/smartchain/assets/0x565b72163f17849832A692A3c5928cc502f46D69/logo.png new file mode 100644 index 00000000..349345af Binary files /dev/null and b/blockchains/smartchain/assets/0x565b72163f17849832A692A3c5928cc502f46D69/logo.png differ diff --git a/blockchains/smartchain/assets/0x56672ecb506301b1E32ED28552797037c54D36A9/info.json b/blockchains/smartchain/assets/0x56672ecb506301b1E32ED28552797037c54D36A9/info.json new file mode 100644 index 00000000..8af423a6 --- /dev/null +++ b/blockchains/smartchain/assets/0x56672ecb506301b1E32ED28552797037c54D36A9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped BIS", + "website": "https://bismuth.finance", + "description": "wBIS is a BEP-20 BSC Token with 1:1 native BIS counterpart.", + "explorer": "https://bscscan.com/token/0x56672ecb506301b1E32ED28552797037c54D36A9", + "type": "BEP20", + "symbol": "wBIS", + "decimals": 8, + "status": "active", + "id": "0x56672ecb506301b1E32ED28552797037c54D36A9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x56672ecb506301b1E32ED28552797037c54D36A9/logo.png b/blockchains/smartchain/assets/0x56672ecb506301b1E32ED28552797037c54D36A9/logo.png new file mode 100644 index 00000000..d617a633 Binary files /dev/null and b/blockchains/smartchain/assets/0x56672ecb506301b1E32ED28552797037c54D36A9/logo.png differ diff --git a/blockchains/smartchain/assets/0x567556A7493FB7a22d2fd158Dd4C766a98705f96/info.json b/blockchains/smartchain/assets/0x567556A7493FB7a22d2fd158Dd4C766a98705f96/info.json new file mode 100644 index 00000000..970d42c9 --- /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 00000000..4cfc6d61 Binary files /dev/null and b/blockchains/smartchain/assets/0x567556A7493FB7a22d2fd158Dd4C766a98705f96/logo.png differ diff --git a/blockchains/smartchain/assets/0x568B0D8ac3967d363257C520c9Be0f17984E470f/info.json b/blockchains/smartchain/assets/0x568B0D8ac3967d363257C520c9Be0f17984E470f/info.json new file mode 100644 index 00000000..68a99349 --- /dev/null +++ b/blockchains/smartchain/assets/0x568B0D8ac3967d363257C520c9Be0f17984E470f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nadeshiko", + "type": "BEP20", + "symbol": "NDSK", + "decimals": 18, + "website": "https://nadeshikocoin.com/", + "description": "In-house developed NFT in-app token", + "explorer": "https://bscscan.com/token/0x568B0D8ac3967d363257C520c9Be0f17984E470f", + "status": "active", + "id": "0x568B0D8ac3967d363257C520c9Be0f17984E470f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x568B0D8ac3967d363257C520c9Be0f17984E470f/logo.png b/blockchains/smartchain/assets/0x568B0D8ac3967d363257C520c9Be0f17984E470f/logo.png new file mode 100644 index 00000000..c32ef8eb Binary files /dev/null and b/blockchains/smartchain/assets/0x568B0D8ac3967d363257C520c9Be0f17984E470f/logo.png differ diff --git a/blockchains/smartchain/assets/0x569641e97cF794FEDC6277B490337654beA58942/info.json b/blockchains/smartchain/assets/0x569641e97cF794FEDC6277B490337654beA58942/info.json new file mode 100644 index 00000000..3c08d643 --- /dev/null +++ b/blockchains/smartchain/assets/0x569641e97cF794FEDC6277B490337654beA58942/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAVEPALESTINE", + "website": "https://palestine.finance", + "description": "SAVEPALESTINE ($PAL) is a community-driven token that rewards holders while at the same time provides much needed donations to Palestine for humanitarian causes. Every week, a donation will be made based on the project’s market cap. ", + "explorer": "https://bscscan.com/token/0x569641e97cF794FEDC6277B490337654beA58942", + "type": "BEP20", + "symbol": "PAL", + "decimals": 9, + "status": "active", + "id": "0x569641e97cF794FEDC6277B490337654beA58942" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x569641e97cF794FEDC6277B490337654beA58942/logo.png b/blockchains/smartchain/assets/0x569641e97cF794FEDC6277B490337654beA58942/logo.png new file mode 100644 index 00000000..f75fa838 Binary files /dev/null and b/blockchains/smartchain/assets/0x569641e97cF794FEDC6277B490337654beA58942/logo.png differ diff --git a/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/info.json b/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/info.json new file mode 100644 index 00000000..609dc195 --- /dev/null +++ b/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/info.json @@ -0,0 +1,37 @@ +{ + "name": "Cryptostone", + "type": "BEP20", + "symbol": "CPS", + "decimals": 18, + "website": "https://www.crypto-stone.io/", + "description": "Cryptostone is a disruptive innovation and fully anonymous No-KYC blockchain financial ecosystem that utilizes blockchain technology as a financial tool in people's lives. Cryptostone token is the native utility token of the Cryptostone project.", + "explorer": "https://bscscan.com/token/0x569f4957176Ffa0dff76c507604f6a66d4B9C578", + "status": "active", + "id": "0x569f4957176Ffa0dff76c507604f6a66d4B9C578", + "links": [ + { + "name": "x", + "url": "https://x.com/cryptostone_io" + }, + { + "name": "telegram", + "url": "https://t.me/cryptostonegroup" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/cryptostone" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptostone" + }, + { + "name": "whitepaper", + "url": "https://www.crypto-stone.io/whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://crypto-stone.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/logo.png b/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/logo.png new file mode 100644 index 00000000..2b3016fb Binary files /dev/null and b/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/logo.png differ diff --git a/blockchains/smartchain/assets/0x56B52f384ffd3cEa09730b04d9342d23B3212ef3/info.json b/blockchains/smartchain/assets/0x56B52f384ffd3cEa09730b04d9342d23B3212ef3/info.json new file mode 100644 index 00000000..2e44b891 --- /dev/null +++ b/blockchains/smartchain/assets/0x56B52f384ffd3cEa09730b04d9342d23B3212ef3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vice Token", + "website": "https://Vice.Uno", + "description": "VICE is an AMM and yield farming platform on Binance Smart Chain(BSC).", + "explorer": "https://bscscan.com/token/0x56B52f384ffd3cEa09730b04d9342d23B3212ef3", + "type": "BEP20", + "symbol": "VICE", + "decimals": 18, + "status": "active", + "id": "0x56B52f384ffd3cEa09730b04d9342d23B3212ef3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x56B52f384ffd3cEa09730b04d9342d23B3212ef3/logo.png b/blockchains/smartchain/assets/0x56B52f384ffd3cEa09730b04d9342d23B3212ef3/logo.png new file mode 100644 index 00000000..2bd59589 Binary files /dev/null and b/blockchains/smartchain/assets/0x56B52f384ffd3cEa09730b04d9342d23B3212ef3/logo.png differ diff --git a/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/info.json b/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/info.json new file mode 100644 index 00000000..24bcaf0c --- /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 00000000..2f9cdfc5 Binary files /dev/null and b/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/logo.png differ diff --git a/blockchains/smartchain/assets/0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6/info.json b/blockchains/smartchain/assets/0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6/info.json new file mode 100644 index 00000000..2e560da4 --- /dev/null +++ b/blockchains/smartchain/assets/0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6/info.json @@ -0,0 +1,12 @@ +{ + "name": "BNB pegged EOS Token", + "website": "https://eos.io", + "description": "EOS is a cryptocurrency token and blockchain that operates as a smart contract platform for the deployment of decentralized applications and decentralized autonomous corporations.", + "explorer": "https://bscscan.com/token/0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6", + "research": "https://research.binance.com/en/projects/eos", + "type": "BEP20", + "symbol": "EOS", + "decimals": 18, + "status": "active", + "id": "0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6/logo.png b/blockchains/smartchain/assets/0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6/logo.png new file mode 100644 index 00000000..a60252aa Binary files /dev/null and b/blockchains/smartchain/assets/0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6/logo.png differ diff --git a/blockchains/smartchain/assets/0x56eab07247e3e6404ac90140F20bba61375d5C3C/info.json b/blockchains/smartchain/assets/0x56eab07247e3e6404ac90140F20bba61375d5C3C/info.json new file mode 100644 index 00000000..caa14bdc --- /dev/null +++ b/blockchains/smartchain/assets/0x56eab07247e3e6404ac90140F20bba61375d5C3C/info.json @@ -0,0 +1,11 @@ +{ + "name": "TapSwap.Money", + "type": "BEP20", + "symbol": "TAPS", + "decimals": 18, + "website": "https://tapswap.money/", + "description": "TAPSwap is a revolutionary Decentralize Exchange(DEX) Protocol powered by Binance Smartchain & Uniswap AMM implementation.Use TapSwap for Swapping , Market Creation, Provide Liquidity & Staking.", + "explorer": "https://bscscan.com/token/0x56eab07247e3e6404ac90140F20bba61375d5C3C", + "status": "active", + "id": "0x56eab07247e3e6404ac90140F20bba61375d5C3C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x56eab07247e3e6404ac90140F20bba61375d5C3C/logo.png b/blockchains/smartchain/assets/0x56eab07247e3e6404ac90140F20bba61375d5C3C/logo.png new file mode 100644 index 00000000..b8d5d97c Binary files /dev/null and b/blockchains/smartchain/assets/0x56eab07247e3e6404ac90140F20bba61375d5C3C/logo.png differ diff --git a/blockchains/smartchain/assets/0x56fA5F7BF457454Be33D8B978C86A5f5B9DD84C2/info.json b/blockchains/smartchain/assets/0x56fA5F7BF457454Be33D8B978C86A5f5B9DD84C2/info.json new file mode 100644 index 00000000..f7668883 --- /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 00000000..5f561a6a 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 new file mode 100644 index 00000000..6aa05817 --- /dev/null +++ b/blockchains/smartchain/assets/0x57067A6BD75c0E95a6A5f158455926e43E79BeB0/info.json @@ -0,0 +1,25 @@ +{ + "name": "Blizzard.money", + "website": "https://blizzard.money", + "description": "A fair launch yield farming and staking platform on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x57067a6bd75c0e95a6a5f158455926e43e79beb0", + "type": "BEP20", + "symbol": "BLZD", + "decimals": 18, + "status": "active", + "id": "0x57067A6BD75c0E95a6A5f158455926e43E79BeB0", + "links": [ + { + "name": "x", + "url": "https://x.com/money_blizzard" + }, + { + "name": "telegram", + "url": "https://t.me/BlizzardMoney" + }, + { + "name": "medium", + "url": "https://blizzardmoney.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57067A6BD75c0E95a6A5f158455926e43E79BeB0/logo.png b/blockchains/smartchain/assets/0x57067A6BD75c0E95a6A5f158455926e43E79BeB0/logo.png new file mode 100644 index 00000000..37517d23 Binary files /dev/null and b/blockchains/smartchain/assets/0x57067A6BD75c0E95a6A5f158455926e43E79BeB0/logo.png differ diff --git a/blockchains/smartchain/assets/0x570A5D26f7765Ecb712C0924E4De545B89fD43dF/info.json b/blockchains/smartchain/assets/0x570A5D26f7765Ecb712C0924E4De545B89fD43dF/info.json new file mode 100644 index 00000000..c5940c5e --- /dev/null +++ b/blockchains/smartchain/assets/0x570A5D26f7765Ecb712C0924E4De545B89fD43dF/info.json @@ -0,0 +1,33 @@ +{ + "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://bscscan.com/token/0x570a5d26f7765ecb712c0924e4de545b89fd43df", + "research": "https://research.binance.com/en/projects/solana", + "symbol": "SOL", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x570A5D26f7765Ecb712C0924E4De545B89fD43dF", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/solana-labs" + }, + { + "name": "x", + "url": "https://x.com/solana" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/solana" + }, + { + "name": "whitepaper", + "url": "https://github.com/solana-labs/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x570A5D26f7765Ecb712C0924E4De545B89fD43dF/logo.png b/blockchains/smartchain/assets/0x570A5D26f7765Ecb712C0924E4De545B89fD43dF/logo.png new file mode 100644 index 00000000..a6a429ad Binary files /dev/null and b/blockchains/smartchain/assets/0x570A5D26f7765Ecb712C0924E4De545B89fD43dF/logo.png differ diff --git a/blockchains/smartchain/assets/0x571D0B55fe30eb1F6E68e8799F181c46De6B0059/info.json b/blockchains/smartchain/assets/0x571D0B55fe30eb1F6E68e8799F181c46De6B0059/info.json new file mode 100644 index 00000000..30de6497 --- /dev/null +++ b/blockchains/smartchain/assets/0x571D0B55fe30eb1F6E68e8799F181c46De6B0059/info.json @@ -0,0 +1,33 @@ +{ + "name": "Street Credit", + "website": "https://streetswap.vip/", + "description": "Street Credit (CRED) is the Exchange Token for the leading BSC AMM & Most Gangster Exchange Ever Created StreetSwap.vip. CRED is created by staking THUGS. The THUGS value per CRED continues to grow as Exchange Fees are used to buy-back THUGS and fund the CRED contract autonomously.", + "explorer": "https://bscscan.com/token/0x571d0b55fe30eb1f6e68e8799f181c46de6b0059", + "type": "BEP20", + "symbol": "CRED", + "decimals": 18, + "status": "active", + "id": "0x571D0B55fe30eb1F6E68e8799F181c46De6B0059", + "links": [ + { + "name": "github", + "url": "https://github.com/thugs-defi" + }, + { + "name": "x", + "url": "https://x.com/ThugsFinance" + }, + { + "name": "telegram", + "url": "https://t.me/thugsfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AJDqFTP" + }, + { + "name": "medium", + "url": "https://thugsfinance.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x571D0B55fe30eb1F6E68e8799F181c46De6B0059/logo.png b/blockchains/smartchain/assets/0x571D0B55fe30eb1F6E68e8799F181c46De6B0059/logo.png new file mode 100644 index 00000000..06c0928b Binary files /dev/null and b/blockchains/smartchain/assets/0x571D0B55fe30eb1F6E68e8799F181c46De6B0059/logo.png differ diff --git a/blockchains/smartchain/assets/0x57282282A6CbD3658576883eB6674e339609c714/info.json b/blockchains/smartchain/assets/0x57282282A6CbD3658576883eB6674e339609c714/info.json new file mode 100644 index 00000000..78338964 --- /dev/null +++ b/blockchains/smartchain/assets/0x57282282A6CbD3658576883eB6674e339609c714/info.json @@ -0,0 +1,11 @@ +{ + "name": "MINIDOG TOKEN", + "website": "https://minidog.finance", + "description": "The World’s first Auto-Boost, Super Hyper Deflationary Coin is here! MiniDog is on a mission to help lost and horny animals find their way to the nearest animal shelter", + "explorer": "https://bscscan.com/token/0x57282282A6CbD3658576883eB6674e339609c714", + "type": "BEP20", + "symbol": "TINIDAWG", + "decimals": 9, + "status": "active", + "id": "0x57282282A6CbD3658576883eB6674e339609c714" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57282282A6CbD3658576883eB6674e339609c714/logo.png b/blockchains/smartchain/assets/0x57282282A6CbD3658576883eB6674e339609c714/logo.png new file mode 100644 index 00000000..ca8019a8 Binary files /dev/null and b/blockchains/smartchain/assets/0x57282282A6CbD3658576883eB6674e339609c714/logo.png differ diff --git a/blockchains/smartchain/assets/0x57457B5D725D85A70a3625D6a71818304e773618/info.json b/blockchains/smartchain/assets/0x57457B5D725D85A70a3625D6a71818304e773618/info.json new file mode 100644 index 00000000..6971b90e --- /dev/null +++ b/blockchains/smartchain/assets/0x57457B5D725D85A70a3625D6a71818304e773618/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pylon Eco Token", + "type": "BEP20", + "symbol": "PETN", + "decimals": 18, + "website": "https://pylontoken.com", + "description": "A Decentralised Finance (DeFi) based Governance Token, with the benefit of Utility Token, Security Token & CryptoCurrency. It is Deflationary, also provides Staking Reward.", + "explorer": "https://bscscan.com/token/0x57457B5D725D85A70a3625D6a71818304e773618", + "status": "active", + "id": "0x57457B5D725D85A70a3625D6a71818304e773618", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pylon-eco-token" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pylon-eco-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57457B5D725D85A70a3625D6a71818304e773618/logo.png b/blockchains/smartchain/assets/0x57457B5D725D85A70a3625D6a71818304e773618/logo.png new file mode 100644 index 00000000..134e0ad5 Binary files /dev/null and b/blockchains/smartchain/assets/0x57457B5D725D85A70a3625D6a71818304e773618/logo.png differ diff --git a/blockchains/smartchain/assets/0x5774B2fc3e91aF89f89141EacF76545e74265982/info.json b/blockchains/smartchain/assets/0x5774B2fc3e91aF89f89141EacF76545e74265982/info.json new file mode 100644 index 00000000..98d013c8 --- /dev/null +++ b/blockchains/smartchain/assets/0x5774B2fc3e91aF89f89141EacF76545e74265982/info.json @@ -0,0 +1,25 @@ +{ + "name": "NFTY Token", + "website": "https://nftynetwork.io", + "description": "NFTY is a multi-chain NFT and Web3 authentication network.", + "explorer": "https://bscscan.com/token/0x5774b2fc3e91af89f89141eacf76545e74265982", + "type": "BEP20", + "symbol": "NFTY", + "decimals": 18, + "status": "active", + "id": "0x5774B2fc3e91aF89f89141EacF76545e74265982", + "tags": [ + "nft", + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/nftynetwork" + }, + { + "name": "telegram", + "url": "https://t.me/NFTYChat" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5774B2fc3e91aF89f89141EacF76545e74265982/logo.png b/blockchains/smartchain/assets/0x5774B2fc3e91aF89f89141EacF76545e74265982/logo.png new file mode 100644 index 00000000..3a07de25 Binary files /dev/null and b/blockchains/smartchain/assets/0x5774B2fc3e91aF89f89141EacF76545e74265982/logo.png differ diff --git a/blockchains/smartchain/assets/0x5778A155fA82063C5C1E48771CAA44ea4d8a5d7a/info.json b/blockchains/smartchain/assets/0x5778A155fA82063C5C1E48771CAA44ea4d8a5d7a/info.json new file mode 100644 index 00000000..d93d1734 --- /dev/null +++ b/blockchains/smartchain/assets/0x5778A155fA82063C5C1E48771CAA44ea4d8a5d7a/info.json @@ -0,0 +1,21 @@ +{ + "name": "TEZILLA", + "type": "BEP20", + "symbol": "TEZILLA", + "decimals": 9, + "website": "https://tezilla.finance/", + "description": "Tezilla, this is the action game you have been waiting for!", + "explorer": "https://bscscan.com/token/0x5778a155fa82063c5c1e48771caa44ea4d8a5d7a", + "status": "active", + "id": "0x5778A155fA82063C5C1E48771CAA44ea4d8a5d7a", + "links": [ + { + "name": "x", + "url": "https://x.com/TezillaFinance" + }, + { + "name": "telegram", + "url": "https://t.me/tezillafinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5778A155fA82063C5C1E48771CAA44ea4d8a5d7a/logo.png b/blockchains/smartchain/assets/0x5778A155fA82063C5C1E48771CAA44ea4d8a5d7a/logo.png new file mode 100644 index 00000000..749b6b7e Binary files /dev/null and b/blockchains/smartchain/assets/0x5778A155fA82063C5C1E48771CAA44ea4d8a5d7a/logo.png differ diff --git a/blockchains/smartchain/assets/0x5788105375ecF7F675C29e822FD85fCd84d4cd86/info.json b/blockchains/smartchain/assets/0x5788105375ecF7F675C29e822FD85fCd84d4cd86/info.json new file mode 100644 index 00000000..9ac63efa --- /dev/null +++ b/blockchains/smartchain/assets/0x5788105375ecF7F675C29e822FD85fCd84d4cd86/info.json @@ -0,0 +1,25 @@ +{ + "name": "HODL 2.0", + "type": "BEP20", + "symbol": "HODL", + "decimals": 9, + "website": "https://hodltoken.net", + "description": "HODL is a community driven DeFi project built on Binance Smart Chain. HODL brings the most revolutionary mechanism to BSC ecosystem. ", + "explorer": "https://bscscan.com/token/0x5788105375ecf7f675c29e822fd85fcd84d4cd86", + "status": "active", + "id": "0x5788105375ecF7F675C29e822FD85fCd84d4cd86", + "links": [ + { + "name": "telegram", + "url": "https://t.me/hodlinvestorgroup" + }, + { + "name": "x", + "url": "https://x.com/TokenHodl" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hodl-2" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5788105375ecF7F675C29e822FD85fCd84d4cd86/logo.png b/blockchains/smartchain/assets/0x5788105375ecF7F675C29e822FD85fCd84d4cd86/logo.png new file mode 100644 index 00000000..b5209503 Binary files /dev/null and b/blockchains/smartchain/assets/0x5788105375ecF7F675C29e822FD85fCd84d4cd86/logo.png differ diff --git a/blockchains/smartchain/assets/0x5791F45034d5D6B814840065B47443e49B748888/info.json b/blockchains/smartchain/assets/0x5791F45034d5D6B814840065B47443e49B748888/info.json new file mode 100644 index 00000000..dfce02b7 --- /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 new file mode 100644 index 00000000..cb28232f --- /dev/null +++ b/blockchains/smartchain/assets/0x579F11C75Eb4e47F5290122e87CA411644aDCD97/info.json @@ -0,0 +1,25 @@ +{ + "name": "CleanOcean", + "type": "BEP20", + "symbol": "CLEANOCEAN", + "decimals": 9, + "website": "https://cleanocean.io/", + "description": "CleanOcean is a crypto project to raise money and clean the ocean. Our goal is to remove over 90% of floating ocean plastic. We give 5% of the transactions to holders and 5% are added to the locked liquidity automatically.", + "explorer": "https://bscscan.com/token/0x579F11C75Eb4e47F5290122e87CA411644aDCD97", + "status": "abandoned", + "id": "0x579F11C75Eb4e47F5290122e87CA411644aDCD97", + "links": [ + { + "name": "x", + "url": "https://x.com/cleanoceantoken" + }, + { + "name": "telegram", + "url": "https://t.me/cleanocean" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/CLEANOCEAN/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/info.json b/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/info.json new file mode 100644 index 00000000..faf83a38 --- /dev/null +++ b/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus LTC", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B", + "type": "BEP20", + "symbol": "vLTC", + "decimals": 8, + "status": "active", + "id": "0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/logo.png b/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/logo.png new file mode 100644 index 00000000..06815378 Binary files /dev/null and b/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/logo.png differ diff --git a/blockchains/smartchain/assets/0x57Af121A8dDb1F9A8FafcF3229c92bF2856A8a29/info.json b/blockchains/smartchain/assets/0x57Af121A8dDb1F9A8FafcF3229c92bF2856A8a29/info.json new file mode 100644 index 00000000..87f3bc5f --- /dev/null +++ b/blockchains/smartchain/assets/0x57Af121A8dDb1F9A8FafcF3229c92bF2856A8a29/info.json @@ -0,0 +1,30 @@ +{ + "name": "Socaverse", + "type": "BEP20", + "symbol": "SOCA", + "decimals": 9, + "website": "https://www.socaverse.one/", + "description": "A soccer community with NFTs, Farms, DeFi, and sports betting platfrom.", + "explorer": "https://bscscan.com/token/0x57af121a8ddb1f9a8fafcf3229c92bf2856a8a29", + "status": "active", + "id": "0x57Af121A8dDb1F9A8FafcF3229c92bF2856A8a29", + "links": [ + { + "name": "x", + "url": "https://x.com/Socaverse" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/socaverse/" + }, + { + "name": "telegram", + "url": "https://t.me/SocaverseGlobal" + } + ], + "tags": [ + "defi", + "gamefi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57Af121A8dDb1F9A8FafcF3229c92bF2856A8a29/logo.png b/blockchains/smartchain/assets/0x57Af121A8dDb1F9A8FafcF3229c92bF2856A8a29/logo.png new file mode 100644 index 00000000..bf526d5e Binary files /dev/null and b/blockchains/smartchain/assets/0x57Af121A8dDb1F9A8FafcF3229c92bF2856A8a29/logo.png differ diff --git a/blockchains/smartchain/assets/0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54/info.json b/blockchains/smartchain/assets/0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54/info.json new file mode 100644 index 00000000..186a4dee --- /dev/null +++ b/blockchains/smartchain/assets/0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54/info.json @@ -0,0 +1,67 @@ +{ + "name": "Bit Hotel Token", + "type": "BEP20", + "symbol": "BTH", + "decimals": 18, + "website": "https://bithotel.io", + "description": "Bit Hotel is a social-first pixel-art gaming metaverse, in which users can hang out, compete for leaderboard rewards and earn income. All in-game items, such as characters, rooms and furniture are on-chain NFTs and all have their own unique perks and advantages.", + "explorer": "https://bscscan.com/token/0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54", + "status": "active", + "id": "0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54", + "links": [ + { + "name": "x", + "url": "https://x.com/playbithotel" + }, + { + "name": "github", + "url": "https://github.com/BitHotelOrg" + }, + { + "name": "telegram", + "url": "https://t.me/bithotelcommunity" + }, + { + "name": "telegram_news", + "url": "https://t.me/bithotel" + }, + { + "name": "blog", + "url": "https://bithotel.io/blog" + }, + { + "name": "discord", + "url": "https://discord.com/invite/RFFZNwxY9n" + }, + { + "name": "whitepaper", + "url": "https://bit-hotel.gitbook.io/" + }, + { + "name": "medium", + "url": "https://medium.com/@bithotelnftgame" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/bithotelcommunity/" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/BitHotel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bit-hotel/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/bit-hotel" + } + ], + "tags": [ + "staking", + "governance", + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54/logo.png b/blockchains/smartchain/assets/0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54/logo.png new file mode 100644 index 00000000..eebe1559 Binary files /dev/null and b/blockchains/smartchain/assets/0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54/logo.png differ diff --git a/blockchains/smartchain/assets/0x57Bfe2aF99AeB7a3de3bc0c42c22353742bfD20D/info.json b/blockchains/smartchain/assets/0x57Bfe2aF99AeB7a3de3bc0c42c22353742bfD20D/info.json new file mode 100644 index 00000000..56f77953 --- /dev/null +++ b/blockchains/smartchain/assets/0x57Bfe2aF99AeB7a3de3bc0c42c22353742bfD20D/info.json @@ -0,0 +1,40 @@ +{ + "name": "WATER RABBIT ", + "type": "BEP20", + "symbol": "WAR", + "decimals": 18, + "website": "https://waterrabbittoken.com/", + "description": "WATER RABBIT is a Decentralized Meme Deflationary Asset Driven Fully By The Community Of Shanvere DAO.", + "explorer": "https://bscscan.com/token/0x57Bfe2aF99AeB7a3de3bc0c42c22353742bfD20D", + "status": "active", + "id": "0x57Bfe2aF99AeB7a3de3bc0c42c22353742bfD20D", + "links": [ + { + "name": "x", + "url": "https://x.com/WaterRabbitNew" + }, + { + "name": "telegram", + "url": "https://t.me/waterrabbittoken" + }, + { + "name": "whitepaper", + "url": "https://docs.google.com/document/d/1E8Is2b9AzLgxeC_LyOPI2PGc7AIdk_q6/edit" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/water-rabbit-token/" + }, + { + "name": "facebook", + "url": "https://facebook.com/waterrabbittoken/" + }, + { + "name": "github", + "url": "https://github.com/Waterrabbittoken" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57Bfe2aF99AeB7a3de3bc0c42c22353742bfD20D/logo.png b/blockchains/smartchain/assets/0x57Bfe2aF99AeB7a3de3bc0c42c22353742bfD20D/logo.png new file mode 100644 index 00000000..6551d5de Binary files /dev/null and b/blockchains/smartchain/assets/0x57Bfe2aF99AeB7a3de3bc0c42c22353742bfD20D/logo.png differ diff --git a/blockchains/smartchain/assets/0x57F35f7Bbacf5248C5120e517c4EAB4aB1048C6F/info.json b/blockchains/smartchain/assets/0x57F35f7Bbacf5248C5120e517c4EAB4aB1048C6F/info.json new file mode 100644 index 00000000..70d09091 --- /dev/null +++ b/blockchains/smartchain/assets/0x57F35f7Bbacf5248C5120e517c4EAB4aB1048C6F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mars Crater", + "type": "BEP20", + "symbol": "CRATER", + "decimals": 9, + "website": "https://marscrater.com/", + "description": "CRATER is a token launched on Binance Smart Chain to bring a community together on the mission to Mars. Together we will build good things to fuel the rocket.", + "explorer": "https://bscscan.com/token/0x57F35f7Bbacf5248C5120e517c4EAB4aB1048C6F", + "status": "active", + "id": "0x57F35f7Bbacf5248C5120e517c4EAB4aB1048C6F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57F35f7Bbacf5248C5120e517c4EAB4aB1048C6F/logo.png b/blockchains/smartchain/assets/0x57F35f7Bbacf5248C5120e517c4EAB4aB1048C6F/logo.png new file mode 100644 index 00000000..49032b79 Binary files /dev/null and b/blockchains/smartchain/assets/0x57F35f7Bbacf5248C5120e517c4EAB4aB1048C6F/logo.png differ diff --git a/blockchains/smartchain/assets/0x57b798d2252557f13A9148A075a72816f2707356/info.json b/blockchains/smartchain/assets/0x57b798d2252557f13A9148A075a72816f2707356/info.json new file mode 100644 index 00000000..a43192d5 --- /dev/null +++ b/blockchains/smartchain/assets/0x57b798d2252557f13A9148A075a72816f2707356/info.json @@ -0,0 +1,32 @@ +{ + "name": "Ratscoin", + "type": "BEP20", + "symbol": "RATS", + "decimals": 0, + "website": "https://www.ratscoin.com/", + "description": "RatsCoin is now completely owned and run by its amazing community.", + "explorer": "https://bscscan.com/token/0x57b798d2252557f13A9148A075a72816f2707356", + "status": "active", + "id": "0x57b798d2252557f13A9148A075a72816f2707356", + "links": [ + { + "name": "x", + "url": "https://x.com/ratscoinx1000" + }, + { + "name": "telegram", + "url": "https://t.me/ratscoinx1000" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ratscoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/ratscoin" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57b798d2252557f13A9148A075a72816f2707356/logo.png b/blockchains/smartchain/assets/0x57b798d2252557f13A9148A075a72816f2707356/logo.png new file mode 100644 index 00000000..a056150a Binary files /dev/null and b/blockchains/smartchain/assets/0x57b798d2252557f13A9148A075a72816f2707356/logo.png differ diff --git a/blockchains/smartchain/assets/0x57bEa4F720F755150f6b773c13bC78c09ac85740/info.json b/blockchains/smartchain/assets/0x57bEa4F720F755150f6b773c13bC78c09ac85740/info.json new file mode 100644 index 00000000..7fd9a082 --- /dev/null +++ b/blockchains/smartchain/assets/0x57bEa4F720F755150f6b773c13bC78c09ac85740/info.json @@ -0,0 +1,11 @@ +{ + "name": "Micro Gaming Protocol", + "website": "https://microoo-gaming-protocol.org/", + "description": "The MGP token will decentralize the eSports sector", + "explorer": "https://bscscan.com/token/0x57bEa4F720F755150f6b773c13bC78c09ac85740", + "type": "BEP20", + "symbol": "MGP", + "decimals": 18, + "status": "active", + "id": "0x57bEa4F720F755150f6b773c13bC78c09ac85740" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57bEa4F720F755150f6b773c13bC78c09ac85740/logo.png b/blockchains/smartchain/assets/0x57bEa4F720F755150f6b773c13bC78c09ac85740/logo.png new file mode 100644 index 00000000..52fd7885 Binary files /dev/null and b/blockchains/smartchain/assets/0x57bEa4F720F755150f6b773c13bC78c09ac85740/logo.png differ diff --git a/blockchains/smartchain/assets/0x57c56665B2bcdf3CB86E40A9D3DC21f5b0AeD7Ad/info.json b/blockchains/smartchain/assets/0x57c56665B2bcdf3CB86E40A9D3DC21f5b0AeD7Ad/info.json new file mode 100644 index 00000000..37b02818 --- /dev/null +++ b/blockchains/smartchain/assets/0x57c56665B2bcdf3CB86E40A9D3DC21f5b0AeD7Ad/info.json @@ -0,0 +1,11 @@ +{ + "name": "EverMars", + "symbol": "EVM", + "type": "BEP20", + "decimals": 9, + "description": "FEverMars token holders are not only benefited through static rewards but also by the Buy-Back process of the contract.As part of Buy-Back process, contract takes care of buying back some of the tokens and burn them whenever a sell happens.", + "website": "https://evermars.co/", + "explorer": "https://bscscan.com/token/0x57c56665B2bcdf3CB86E40A9D3DC21f5b0AeD7Ad", + "status": "active", + "id": "0x57c56665B2bcdf3CB86E40A9D3DC21f5b0AeD7Ad" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57c56665B2bcdf3CB86E40A9D3DC21f5b0AeD7Ad/logo.png b/blockchains/smartchain/assets/0x57c56665B2bcdf3CB86E40A9D3DC21f5b0AeD7Ad/logo.png new file mode 100644 index 00000000..ea04c708 Binary files /dev/null and b/blockchains/smartchain/assets/0x57c56665B2bcdf3CB86E40A9D3DC21f5b0AeD7Ad/logo.png differ diff --git a/blockchains/smartchain/assets/0x57c9487f30D04aEE52D323586EC9A23d05A1504e/info.json b/blockchains/smartchain/assets/0x57c9487f30D04aEE52D323586EC9A23d05A1504e/info.json new file mode 100644 index 00000000..23c7700e --- /dev/null +++ b/blockchains/smartchain/assets/0x57c9487f30D04aEE52D323586EC9A23d05A1504e/info.json @@ -0,0 +1,11 @@ +{ + "name": "HomeCoin", + "website": "https://www.thehomecoin.co/", + "description": "A charity-oriented token that is focused on decreasing the rate of homelessness around the world.", + "explorer": "https://bscscan.com/token/0x57c9487f30D04aEE52D323586EC9A23d05A1504e", + "type": "BEP20", + "symbol": "HOME", + "decimals": 9, + "status": "active", + "id": "0x57c9487f30D04aEE52D323586EC9A23d05A1504e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x57c9487f30D04aEE52D323586EC9A23d05A1504e/logo.png b/blockchains/smartchain/assets/0x57c9487f30D04aEE52D323586EC9A23d05A1504e/logo.png new file mode 100644 index 00000000..657090d7 Binary files /dev/null and b/blockchains/smartchain/assets/0x57c9487f30D04aEE52D323586EC9A23d05A1504e/logo.png differ diff --git a/blockchains/smartchain/assets/0x57fB0126bf345c3FBa132a53cDE73E83d4A68888/info.json b/blockchains/smartchain/assets/0x57fB0126bf345c3FBa132a53cDE73E83d4A68888/info.json new file mode 100644 index 00000000..ef1a41ec --- /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 new file mode 100644 index 00000000..bc346e48 --- /dev/null +++ b/blockchains/smartchain/assets/0x580655E2C6D4fC125C0B2D37B2a3e56219bF9f78/info.json @@ -0,0 +1,29 @@ +{ + "name": "Gallant", + "website": "https://gallanttoken.com", + "description": "Gallant is a utility token developed for Blockchain Gaming.", + "explorer": "https://bscscan.com/token/0x580655e2c6d4fc125c0b2d37b2a3e56219bf9f78", + "type": "BEP20", + "symbol": "GAL", + "decimals": 9, + "status": "active", + "id": "0x580655E2C6D4fC125C0B2D37B2a3e56219bF9f78", + "links": [ + { + "name": "x", + "url": "https://x.com/GallantToken" + }, + { + "name": "telegram", + "url": "https://t.me/GallantTokenOfficial" + }, + { + "name": "discord", + "url": "https://discord.com/gallanttoken" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCojYADZqVqM-rUwWNcqrBxg" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x580655E2C6D4fC125C0B2D37B2a3e56219bF9f78/logo.png b/blockchains/smartchain/assets/0x580655E2C6D4fC125C0B2D37B2a3e56219bF9f78/logo.png new file mode 100644 index 00000000..bea15cc0 Binary files /dev/null and b/blockchains/smartchain/assets/0x580655E2C6D4fC125C0B2D37B2a3e56219bF9f78/logo.png differ diff --git a/blockchains/smartchain/assets/0x580dE58c1BD593A43DaDcF0A739d504621817c05/info.json b/blockchains/smartchain/assets/0x580dE58c1BD593A43DaDcF0A739d504621817c05/info.json new file mode 100644 index 00000000..4b735580 --- /dev/null +++ b/blockchains/smartchain/assets/0x580dE58c1BD593A43DaDcF0A739d504621817c05/info.json @@ -0,0 +1,11 @@ +{ + "name": "Thoreum Token", + "website": "https://thoreum.finance/", + "description": "World First Liquidity Mining Coin with Static Rewards.", + "explorer": "https://bscscan.com/token/0x580dE58c1BD593A43DaDcF0A739d504621817c05", + "type": "BEP20", + "symbol": "THOREUM", + "decimals": 18, + "status": "active", + "id": "0x580dE58c1BD593A43DaDcF0A739d504621817c05" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x580dE58c1BD593A43DaDcF0A739d504621817c05/logo.png b/blockchains/smartchain/assets/0x580dE58c1BD593A43DaDcF0A739d504621817c05/logo.png new file mode 100644 index 00000000..f2117d24 Binary files /dev/null and b/blockchains/smartchain/assets/0x580dE58c1BD593A43DaDcF0A739d504621817c05/logo.png differ diff --git a/blockchains/smartchain/assets/0x585BDE7C54ABB5cCD7791F923D6c2187635f3952/info.json b/blockchains/smartchain/assets/0x585BDE7C54ABB5cCD7791F923D6c2187635f3952/info.json new file mode 100644 index 00000000..e99005cf --- /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 00000000..9e7d3b15 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 new file mode 100644 index 00000000..28771dfd --- /dev/null +++ b/blockchains/smartchain/assets/0x586330013C8f2352AB5f57215F9E56747eE8837E/info.json @@ -0,0 +1,33 @@ +{ + "name": "Somax", + "website": "https://somax.finance/", + "description": "Somax autonomous yield and liquidity generation protocol on BSC", + "explorer": "https://bscscan.com/token/0x586330013c8f2352ab5f57215f9e56747ee8837e", + "type": "BEP20", + "symbol": "SMX", + "decimals": 9, + "status": "active", + "id": "0x586330013C8f2352AB5f57215F9E56747eE8837E", + "links": [ + { + "name": "x", + "url": "https://x.com/somaxfinance" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SomaxFinance" + }, + { + "name": "medium", + "url": "https://medium.com/@SomaxFinance" + }, + { + "name": "telegram", + "url": "https://t.me/somaxfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/somax/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x586330013C8f2352AB5f57215F9E56747eE8837E/logo.png b/blockchains/smartchain/assets/0x586330013C8f2352AB5f57215F9E56747eE8837E/logo.png new file mode 100644 index 00000000..b74d81d4 Binary files /dev/null and b/blockchains/smartchain/assets/0x586330013C8f2352AB5f57215F9E56747eE8837E/logo.png differ diff --git a/blockchains/smartchain/assets/0x5868A0Bc3a64CFf82e19A135E17fE18E18E03bC1/info.json b/blockchains/smartchain/assets/0x5868A0Bc3a64CFf82e19A135E17fE18E18E03bC1/info.json new file mode 100644 index 00000000..9704bf71 --- /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 00000000..eb3195b8 Binary files /dev/null and b/blockchains/smartchain/assets/0x5868A0Bc3a64CFf82e19A135E17fE18E18E03bC1/logo.png differ diff --git a/blockchains/smartchain/assets/0x58730ae0FAA10d73b0cDdb5e7b87C3594f7a20CB/info.json b/blockchains/smartchain/assets/0x58730ae0FAA10d73b0cDdb5e7b87C3594f7a20CB/info.json new file mode 100644 index 00000000..64aee5fd --- /dev/null +++ b/blockchains/smartchain/assets/0x58730ae0FAA10d73b0cDdb5e7b87C3594f7a20CB/info.json @@ -0,0 +1,29 @@ +{ + "name": "ERC20", + "website": "https://erc20.tech", + "description": "ERC20 is an innovative NFT Collectible token and a new kind of DeFi. With a built-in smart-contract introduced the future needs and desires of holders ERC20 Token is open-ended by design, it is extremely well-suited to serving as a foundational layer for a very large number of both financial, non-financial and farming with Non-fungible token (NFT) world in the years to come.", + "explorer": "https://bscscan.com/token/0x58730ae0FAA10d73b0cDdb5e7b87C3594f7a20CB", + "symbol": "ERC20", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x58730ae0FAA10d73b0cDdb5e7b87C3594f7a20CB", + "links": [ + { + "name": "telegram", + "url": "https://t.me/erc20coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/erc20/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/erc20" + }, + { + "name": "whitepaper", + "url": "https://erc20.tech/erc20token-whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x58730ae0FAA10d73b0cDdb5e7b87C3594f7a20CB/logo.png b/blockchains/smartchain/assets/0x58730ae0FAA10d73b0cDdb5e7b87C3594f7a20CB/logo.png new file mode 100644 index 00000000..2a433930 Binary files /dev/null and b/blockchains/smartchain/assets/0x58730ae0FAA10d73b0cDdb5e7b87C3594f7a20CB/logo.png differ diff --git a/blockchains/smartchain/assets/0x587C16b84c64751760f6e3e7e32F896634704352/info.json b/blockchains/smartchain/assets/0x587C16b84c64751760f6e3e7e32F896634704352/info.json new file mode 100644 index 00000000..7bfabe05 --- /dev/null +++ b/blockchains/smartchain/assets/0x587C16b84c64751760f6e3e7e32F896634704352/info.json @@ -0,0 +1,11 @@ +{ + "name": "WhaleFall", + "website": "http://whalefall-defi.com", + "description": "WhaleFall is a experimentation of a decentralized community movement to break free from the oppression of the financial class.", + "explorer": "https://bscscan.com/token/0x587C16b84c64751760f6e3e7e32F896634704352", + "type": "BEP20", + "symbol": "WHALE", + "decimals": 9, + "status": "active", + "id": "0x587C16b84c64751760f6e3e7e32F896634704352" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x587C16b84c64751760f6e3e7e32F896634704352/logo.png b/blockchains/smartchain/assets/0x587C16b84c64751760f6e3e7e32F896634704352/logo.png new file mode 100644 index 00000000..4794356c Binary files /dev/null and b/blockchains/smartchain/assets/0x587C16b84c64751760f6e3e7e32F896634704352/logo.png differ diff --git a/blockchains/smartchain/assets/0x58A1e50c8DEaA21808B67ca46103bcC28BEF4444/info.json b/blockchains/smartchain/assets/0x58A1e50c8DEaA21808B67ca46103bcC28BEF4444/info.json new file mode 100644 index 00000000..dce2e068 --- /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/0x58BFc98F3974AeF4FED9A0168B97CcCD3512cB4A/info.json b/blockchains/smartchain/assets/0x58BFc98F3974AeF4FED9A0168B97CcCD3512cB4A/info.json new file mode 100644 index 00000000..e158e8d1 --- /dev/null +++ b/blockchains/smartchain/assets/0x58BFc98F3974AeF4FED9A0168B97CcCD3512cB4A/info.json @@ -0,0 +1,14 @@ +{ + "name": "Bubblegum", + "website": "https://www.bubblegum.life/", + "description": "Bubblegum is a sweet, auto-yield token + dapp for asset tracking.", + "explorer": "https://bscscan.com/token/0x58BFc98F3974AeF4FED9A0168B97CcCD3512cB4A", + "type": "BEP20", + "symbol": "BUBBLEGUM", + "decimals": 9, + "status": "active", + "id": "0x58BFc98F3974AeF4FED9A0168B97CcCD3512cB4A", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x58BFc98F3974AeF4FED9A0168B97CcCD3512cB4A/logo.png b/blockchains/smartchain/assets/0x58BFc98F3974AeF4FED9A0168B97CcCD3512cB4A/logo.png new file mode 100644 index 00000000..94913f25 Binary files /dev/null and b/blockchains/smartchain/assets/0x58BFc98F3974AeF4FED9A0168B97CcCD3512cB4A/logo.png differ diff --git a/blockchains/smartchain/assets/0x58d6f302aaF33DD30A7666E16909DB3C5C74021b/info.json b/blockchains/smartchain/assets/0x58d6f302aaF33DD30A7666E16909DB3C5C74021b/info.json new file mode 100644 index 00000000..72c9352c --- /dev/null +++ b/blockchains/smartchain/assets/0x58d6f302aaF33DD30A7666E16909DB3C5C74021b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wraped BST", + "website": "https://token.bitsten.com/", + "description": "BST is a token utility used to change transaction fees and listing fees on bitsten exchange.", + "explorer": "https://bscscan.com/token/0x58d6f302aaF33DD30A7666E16909DB3C5C74021b", + "type": "BEP20", + "symbol": "WBST", + "decimals": 18, + "status": "active", + "id": "0x58d6f302aaF33DD30A7666E16909DB3C5C74021b" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x58d6f302aaF33DD30A7666E16909DB3C5C74021b/logo.png b/blockchains/smartchain/assets/0x58d6f302aaF33DD30A7666E16909DB3C5C74021b/logo.png new file mode 100644 index 00000000..11b0d464 Binary files /dev/null and b/blockchains/smartchain/assets/0x58d6f302aaF33DD30A7666E16909DB3C5C74021b/logo.png differ diff --git a/blockchains/smartchain/assets/0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8/info.json b/blockchains/smartchain/assets/0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8/info.json new file mode 100644 index 00000000..ef5325ed --- /dev/null +++ b/blockchains/smartchain/assets/0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8/info.json @@ -0,0 +1,32 @@ +{ + "name": "Wetux", + "type": "BEP20", + "symbol": "WETUX", + "decimals": 8, + "website": "https://wetux.com/", + "description": "Put your idle crypto-asset to work towards enhancing", + "explorer": "https://bscscan.com/token/0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8", + "status": "active", + "id": "0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8", + "links": [ + { + "name": "x", + "url": "https://x.com/wetux_liquidity" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wetux/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wetux" + }, + { + "name": "telegram", + "url": "https://t.me/Wetux_Community" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8/logo.png b/blockchains/smartchain/assets/0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8/logo.png new file mode 100644 index 00000000..f6c9bb65 Binary files /dev/null and b/blockchains/smartchain/assets/0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8/logo.png differ diff --git a/blockchains/smartchain/assets/0x5905df3D03E29a22e22462D3257E6AC731E22C15/info.json b/blockchains/smartchain/assets/0x5905df3D03E29a22e22462D3257E6AC731E22C15/info.json new file mode 100644 index 00000000..4152b730 --- /dev/null +++ b/blockchains/smartchain/assets/0x5905df3D03E29a22e22462D3257E6AC731E22C15/info.json @@ -0,0 +1,29 @@ +{ + "name": "GREED", + "type": "BEP20", + "symbol": "$GREED", + "decimals": 9, + "website": "https://greedtoken.com/", + "description": "The Greed Ecosystem combines the First Crypto Music Label, NFTs, the Metaverse, Swaps, Farms & Staking on multiple blockchains.", + "explorer": "https://bscscan.com/token/0x5905df3D03E29a22e22462D3257E6AC731E22C15", + "status": "active", + "id": "0x5905df3D03E29a22e22462D3257E6AC731E22C15", + "links": [ + { + "name": "x", + "url": "https://x.com/GreedEcosystem" + }, + { + "name": "telegram", + "url": "https://t.me/GREEDOFFICIAL" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/greed" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/greed-ecosystem/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5905df3D03E29a22e22462D3257E6AC731E22C15/logo.png b/blockchains/smartchain/assets/0x5905df3D03E29a22e22462D3257E6AC731E22C15/logo.png new file mode 100644 index 00000000..cb29d169 Binary files /dev/null and b/blockchains/smartchain/assets/0x5905df3D03E29a22e22462D3257E6AC731E22C15/logo.png differ diff --git a/blockchains/smartchain/assets/0x593822E8bc2875A786362E41aC6aD5947a3954F5/info.json b/blockchains/smartchain/assets/0x593822E8bc2875A786362E41aC6aD5947a3954F5/info.json new file mode 100644 index 00000000..b3191408 --- /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 00000000..ef293918 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 00000000..ea6e23ef --- /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 00000000..39b23730 Binary files /dev/null and b/blockchains/smartchain/assets/0x593CF214968B854E2Bf85fC890918085e44cC8B9/logo.png differ diff --git a/blockchains/smartchain/assets/0x5941f87EB62737eC5EBbECab3e373c40fe40566B/info.json b/blockchains/smartchain/assets/0x5941f87EB62737eC5EBbECab3e373c40fe40566B/info.json new file mode 100644 index 00000000..794f83c3 --- /dev/null +++ b/blockchains/smartchain/assets/0x5941f87EB62737eC5EBbECab3e373c40fe40566B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moon Nation Token", + "website": "https://moonnation.org/", + "description": "Utility token to play and inGame economy of Moon Nation Game.", + "explorer": "https://bscscan.com/token/0x5941f87EB62737eC5EBbECab3e373c40fe40566B", + "type": "BEP20", + "symbol": "MNG", + "decimals": 9, + "status": "abandoned", + "id": "0x5941f87EB62737eC5EBbECab3e373c40fe40566B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x595E21b20E78674F8a64C1566A20b2b316Bc3511/info.json b/blockchains/smartchain/assets/0x595E21b20E78674F8a64C1566A20b2b316Bc3511/info.json new file mode 100644 index 00000000..581858d9 --- /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 00000000..d1c3298f 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 00000000..edd8da87 --- /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 00000000..8fa8f558 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 00000000..5663a667 --- /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 00000000..257d2d2d 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 new file mode 100644 index 00000000..be02fa06 --- /dev/null +++ b/blockchains/smartchain/assets/0x599beec263FA6eA35055011967597B259FC012A4/info.json @@ -0,0 +1,41 @@ +{ + "name": "FoxGirl", + "type": "BEP20", + "symbol": "FOXGIRL", + "decimals": 18, + "website": "https://foxgirl.com/", + "description": "The FoxGirl contract is simple but powerful in helping FoxGirl grow with great portion of the 10% buy/sell tax received going straight to marketing and further advanced of the foxgirl.com platform.", + "explorer": "https://bscscan.com/token/0x599beec263FA6eA35055011967597B259FC012A4", + "status": "active", + "id": "0x599beec263FA6eA35055011967597B259FC012A4", + "links": [ + { + "name": "x", + "url": "https://x.com/foxgirltoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/foxgirl/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/foxgirl" + }, + { + "name": "telegram", + "url": "https://t.me/foxgirltoken" + }, + { + "name": "github", + "url": "https://github.com/foxgirltoken/foxgirl" + }, + { + "name": "discord", + "url": "https://discord.com/aGT3hKr2uW" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/FoxGirl/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x599beec263FA6eA35055011967597B259FC012A4/logo.png b/blockchains/smartchain/assets/0x599beec263FA6eA35055011967597B259FC012A4/logo.png new file mode 100644 index 00000000..e7a05acd Binary files /dev/null and b/blockchains/smartchain/assets/0x599beec263FA6eA35055011967597B259FC012A4/logo.png differ diff --git a/blockchains/smartchain/assets/0x59E69094398AfbEA632F8Bd63033BdD2443a3Be1/info.json b/blockchains/smartchain/assets/0x59E69094398AfbEA632F8Bd63033BdD2443a3Be1/info.json new file mode 100644 index 00000000..5ee7cd33 --- /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 00000000..bbebb09b 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 00000000..3b1e7958 --- /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 00000000..0ff8ebaa 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 new file mode 100644 index 00000000..37fdeae2 --- /dev/null +++ b/blockchains/smartchain/assets/0x59F6B2435Cd1421f409907aD2D9F811849ca555f/info.json @@ -0,0 +1,52 @@ +{ + "name": "TankBattle Token", + "type": "BEP20", + "symbol": "TBL", + "decimals": 18, + "website": "https://tankbattle.co/", + "description": "Tank Battle is a game that shows creativity in assembling TANK to fight.", + "explorer": "https://bscscan.com/token/0x59F6B2435Cd1421f409907aD2D9F811849ca555f", + "status": "active", + "id": "0x59F6B2435Cd1421f409907aD2D9F811849ca555f", + "links": [ + { + "name": "x", + "url": "https://x.com/tankbattleco" + }, + { + "name": "github", + "url": "https://github.com/tankbattlex/" + }, + { + "name": "telegram", + "url": "https://t.me/tankbattlechannel" + }, + { + "name": "discord", + "url": "https://discord.com/invite/pTsHjEANZN" + }, + { + "name": "medium", + "url": "https://medium.com/@tankbattle.nft" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.tankbattle.co/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tank-battle/" + }, + { + "name": "facebook", + "url": "https://facebook.com/tankbattle.co" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCC_Rclf5zz9YsJO3V9as_bA" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x59F6B2435Cd1421f409907aD2D9F811849ca555f/logo.png b/blockchains/smartchain/assets/0x59F6B2435Cd1421f409907aD2D9F811849ca555f/logo.png new file mode 100644 index 00000000..ae039873 Binary files /dev/null and b/blockchains/smartchain/assets/0x59F6B2435Cd1421f409907aD2D9F811849ca555f/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A054554b3F0C75063D29250984A921402E1E3a7/info.json b/blockchains/smartchain/assets/0x5A054554b3F0C75063D29250984A921402E1E3a7/info.json new file mode 100644 index 00000000..60cba48c --- /dev/null +++ b/blockchains/smartchain/assets/0x5A054554b3F0C75063D29250984A921402E1E3a7/info.json @@ -0,0 +1,29 @@ +{ + "name": "SHIELD FINANCE", + "symbol": "SDF", + "type": "BEP20", + "decimals": 18, + "description": "Shield Finance is a community project with the aim of providing financial solutions and stability for its community. Our Focus is to generate lasting solution to financial instability in THIS SPACE and to be the best ever solution provider financially.", + "website": "http://www.shieldtoken.finance", + "explorer": "https://bscscan.com/token/0x5A054554b3F0C75063D29250984A921402E1E3a7", + "status": "active", + "id": "0x5A054554b3F0C75063D29250984A921402E1E3a7", + "links": [ + { + "name": "x", + "url": "https://x.com/ShieldFinance1" + }, + { + "name": "telegram", + "url": "https://t.me/shield_finance" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Shield_Finance?utm_medium=android_app&utm_source=share" + }, + { + "name": "medium", + "url": "https://medium.com/@ShieldFinance1" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A054554b3F0C75063D29250984A921402E1E3a7/logo.png b/blockchains/smartchain/assets/0x5A054554b3F0C75063D29250984A921402E1E3a7/logo.png new file mode 100644 index 00000000..6f21b146 Binary files /dev/null and b/blockchains/smartchain/assets/0x5A054554b3F0C75063D29250984A921402E1E3a7/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A110fC00474038f6c02E89C707D638602EA44B5/info.json b/blockchains/smartchain/assets/0x5A110fC00474038f6c02E89C707D638602EA44B5/info.json new file mode 100644 index 00000000..5e0d7b94 --- /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 00000000..bd1bef73 Binary files /dev/null and b/blockchains/smartchain/assets/0x5A110fC00474038f6c02E89C707D638602EA44B5/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A3010d4d8D3B5fB49f8B6E57FB9E48063f16700/info.json b/blockchains/smartchain/assets/0x5A3010d4d8D3B5fB49f8B6E57FB9E48063f16700/info.json new file mode 100644 index 00000000..913b499e --- /dev/null +++ b/blockchains/smartchain/assets/0x5A3010d4d8D3B5fB49f8B6E57FB9E48063f16700/info.json @@ -0,0 +1,11 @@ +{ + "name": "BSCPAD", + "type": "BEP20", + "symbol": "BSCPAD", + "decimals": 18, + "website": "https://www.bscpad.com/", + "description": "BSCPAD is the first decentralized IDO platform on the Binance Smart Chain Network.", + "explorer": "https://bscscan.com/token/0x5A3010d4d8D3B5fB49f8B6E57FB9E48063f16700", + "status": "active", + "id": "0x5A3010d4d8D3B5fB49f8B6E57FB9E48063f16700" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A3010d4d8D3B5fB49f8B6E57FB9E48063f16700/logo.png b/blockchains/smartchain/assets/0x5A3010d4d8D3B5fB49f8B6E57FB9E48063f16700/logo.png new file mode 100644 index 00000000..41ab67e9 Binary files /dev/null and b/blockchains/smartchain/assets/0x5A3010d4d8D3B5fB49f8B6E57FB9E48063f16700/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb/info.json b/blockchains/smartchain/assets/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb/info.json new file mode 100644 index 00000000..4c942005 --- /dev/null +++ b/blockchains/smartchain/assets/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb/info.json @@ -0,0 +1,60 @@ +{ + "name": "Reflecto", + "website": "https://reflecto.finance", + "description": "Multi-reward token with utilities that generate profits for holders.", + "explorer": "https://bscscan.com/token/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb", + "type": "BEP20", + "symbol": "RTO", + "tags": [ + "defi", + "gamefi", + "staking", + "nft", + "deflationary" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://reflecto.finance/assets/docs/reflecto-v2-whitepaper.pdf" + }, + { + "name": "x", + "url": "https://x.com/reflectocoin" + }, + { + "name": "telegram", + "url": "https://t.me/reflectocoin" + }, + { + "name": "discord", + "url": "https://discord.com/invite/jsqp2chuPY" + }, + { + "name": "facebook", + "url": "https://facebook.com/reflectocoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Reflecto/" + }, + { + "name": "youtube", + "url": "https://youtube.com/reflectocoin" + }, + { + "name": "blog", + "url": "https://reflecto.finance/blog" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/reflecto/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/reflecto" + } + ], + "decimals": 9, + "status": "active", + "id": "0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb/logo.png b/blockchains/smartchain/assets/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb/logo.png new file mode 100644 index 00000000..90e74b4a Binary files /dev/null and b/blockchains/smartchain/assets/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A37F6a7fFa184E2287aD226989441D685e4Bf7A/info.json b/blockchains/smartchain/assets/0x5A37F6a7fFa184E2287aD226989441D685e4Bf7A/info.json new file mode 100644 index 00000000..dba1d6e7 --- /dev/null +++ b/blockchains/smartchain/assets/0x5A37F6a7fFa184E2287aD226989441D685e4Bf7A/info.json @@ -0,0 +1,11 @@ +{ + "name": "PADtether", + "website": "https://padtether.com", + "description": "Digital money for a digital age. Whatever you can do with digital currencies, every PADtether token is also 1-to-1 pegged to the dollar", + "explorer": "https://bscscan.com/token/0x5A37F6a7fFa184E2287aD226989441D685e4Bf7A", + "type": "BEP20", + "symbol": "PAD", + "decimals": 6, + "status": "active", + "id": "0x5A37F6a7fFa184E2287aD226989441D685e4Bf7A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A37F6a7fFa184E2287aD226989441D685e4Bf7A/logo.png b/blockchains/smartchain/assets/0x5A37F6a7fFa184E2287aD226989441D685e4Bf7A/logo.png new file mode 100644 index 00000000..1685e2f7 Binary files /dev/null and b/blockchains/smartchain/assets/0x5A37F6a7fFa184E2287aD226989441D685e4Bf7A/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A3B6f18Dc79D50ab208af2fCd61D10BF7e4896F/info.json b/blockchains/smartchain/assets/0x5A3B6f18Dc79D50ab208af2fCd61D10BF7e4896F/info.json new file mode 100644 index 00000000..4f615afd --- /dev/null +++ b/blockchains/smartchain/assets/0x5A3B6f18Dc79D50ab208af2fCd61D10BF7e4896F/info.json @@ -0,0 +1,24 @@ +{ + "name": "AETHERIUS TOKEN", + "type": "BEP20", + "symbol": "AETH", + "decimals": 9, + "website": "https://aeth.finance/", + "description": "Aetherius is a new crypto-mining project looking to give investors all the experience, infrastructure, energy and a steady flow of passive income necessary to start each investor as a miner.", + "explorer": "https://bscscan.com/token/0x5A3B6f18Dc79D50ab208af2fCd61D10BF7e4896F", + "status": "active", + "id": "0x5A3B6f18Dc79D50ab208af2fCd61D10BF7e4896F", + "links": [ + { + "name": "x", + "url": "https://x.com/Token_AETH" + }, + { + "name": "telegram", + "url": "https://t.me/aetheriustoken_eng" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A3B6f18Dc79D50ab208af2fCd61D10BF7e4896F/logo.png b/blockchains/smartchain/assets/0x5A3B6f18Dc79D50ab208af2fCd61D10BF7e4896F/logo.png new file mode 100644 index 00000000..628fb3ea Binary files /dev/null and b/blockchains/smartchain/assets/0x5A3B6f18Dc79D50ab208af2fCd61D10BF7e4896F/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/info.json b/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/info.json new file mode 100644 index 00000000..c8833cf6 --- /dev/null +++ b/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/info.json @@ -0,0 +1,11 @@ +{ + "name": "JulSwap", + "website": "https://julswap.com", + "description": "JulSwap DEX Commnuity Token", + "explorer": "https://bscscan.com/token/0x5a41f637c3f7553dba6ddc2d3ca92641096577ea", + "type": "BEP20", + "symbol": "JulD", + "decimals": 18, + "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 new file mode 100644 index 00000000..f446a1da --- /dev/null +++ b/blockchains/smartchain/assets/0x5A4f765476Fd1BF010783B47a25CbF10974e6A37/info.json @@ -0,0 +1,77 @@ +{ + "name": "SavePlanetEarth", + "website": "https://www.saveplanetearth.io", + "description": "Save Planet Earth has various carbon sequestration initiatives worldwide, including approval of the planting of over a billion trees, initiatives in solar, hydro, wind, beach & ocean clean-up, recycling, waste management, and improving rural technologies. For all these initiatives, Save Planet Earth receives certified carbon credits which can then be sold to individuals and companies who wish to offset their carbon footprint. SPEPad, launchpad for SPE holders in progress.", + "explorer": "https://bscscan.com/token/0x5A4f765476Fd1BF010783B47a25CbF10974e6A37", + "type": "BEP20", + "symbol": "SPE", + "decimals": 9, + "status": "active", + "id": "0x5A4f765476Fd1BF010783B47a25CbF10974e6A37", + "links": [ + { + "name": "x", + "url": "https://x.com/SPE_Token_BSC" + }, + { + "name": "github", + "url": "https://github.com/SavePlanetEarthToken" + }, + { + "name": "telegram", + "url": "https://t.me/SavePlanetEarthOfficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/SavePlanetEarthAnnouncements" + }, + { + "name": "blog", + "url": "https://blog.saveplanetearth.io/" + }, + { + "name": "docs", + "url": "https://saveplanetearth.io/SPE_WhitePaper.pdf" + }, + { + "name": "forum", + "url": "https://reddit.com/r/SPEOfficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/DRJCrvvuQy" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SPEOfficial" + }, + { + "name": "whitepaper", + "url": "https://saveplanetearth.io/SPE_WhitePaper.pdf" + }, + { + "name": "medium", + "url": "https://saveplanetearthofficial.medium.com" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/SavePlanetEarth" + }, + { + "name": "facebook", + "url": "https://facebook.com/saveplanetearthofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/SavePlanetEarth" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/saveplanetearth" + }, + { + "name": "source_code", + "url": "https://github.com/SavePlanetEarthToken/SavePlanetEarthContract" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A4f765476Fd1BF010783B47a25CbF10974e6A37/logo.png b/blockchains/smartchain/assets/0x5A4f765476Fd1BF010783B47a25CbF10974e6A37/logo.png new file mode 100644 index 00000000..51812c3f Binary files /dev/null and b/blockchains/smartchain/assets/0x5A4f765476Fd1BF010783B47a25CbF10974e6A37/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4/info.json b/blockchains/smartchain/assets/0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4/info.json new file mode 100644 index 00000000..c326214e --- /dev/null +++ b/blockchains/smartchain/assets/0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4/info.json @@ -0,0 +1,25 @@ +{ + "name": "BitBurn", + "type": "BEP20", + "symbol": "Burn", + "decimals": 9, + "website": "https://bitburn.io/", + "description": "Feel like you were late to the party with Bitcoin? Then, don't miss out on BitBurn! BitBurn resides on the BSC network and rewards 5% Bitcoin while offering a TRUE burn!", + "explorer": "https://bscscan.com/token/0x5a5844cab96a7b8b257fc606aa6119c5cbc6d4c4", + "status": "active", + "id": "0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4", + "links": [ + { + "name": "x", + "url": "https://x.com/BitBurnOfficial" + }, + { + "name": "github", + "url": "https://github.com/bitburnio/" + } + ], + "tags": [ + "defi", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4/logo.png b/blockchains/smartchain/assets/0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4/logo.png new file mode 100644 index 00000000..1793f455 Binary files /dev/null and b/blockchains/smartchain/assets/0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A6117EE2EA174D5875e3c1880ecd7bc8dA651B6/info.json b/blockchains/smartchain/assets/0x5A6117EE2EA174D5875e3c1880ecd7bc8dA651B6/info.json new file mode 100644 index 00000000..a7e3224b --- /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 00000000..03ddfa3e 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 new file mode 100644 index 00000000..23b2bb8b --- /dev/null +++ b/blockchains/smartchain/assets/0x5A726a26eDB0Df8Fd55f03cc30aF8A7cEa81e78D/info.json @@ -0,0 +1,21 @@ +{ + "name": "Crosswallet", + "type": "BEP20", + "symbol": "CWT", + "decimals": 18, + "website": "https://crosswallet.app/", + "description": "With single click cross-chain swaps, CrossWallet is theultimate crypto wallet and DEX aggregator.", + "explorer": "https://bscscan.com/token/0x5A726a26eDB0Df8Fd55f03cc30aF8A7cEa81e78D", + "status": "active", + "id": "0x5A726a26eDB0Df8Fd55f03cc30aF8A7cEa81e78D", + "links": [ + { + "name": "x", + "url": "https://x.com/Cross_Wallet" + }, + { + "name": "telegram", + "url": "https://t.me/crosswallet" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A726a26eDB0Df8Fd55f03cc30aF8A7cEa81e78D/logo.png b/blockchains/smartchain/assets/0x5A726a26eDB0Df8Fd55f03cc30aF8A7cEa81e78D/logo.png new file mode 100644 index 00000000..5eca03d0 Binary files /dev/null and b/blockchains/smartchain/assets/0x5A726a26eDB0Df8Fd55f03cc30aF8A7cEa81e78D/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A810FC02ae3C79299179E2C8dBb6F104A9eCc71/info.json b/blockchains/smartchain/assets/0x5A810FC02ae3C79299179E2C8dBb6F104A9eCc71/info.json new file mode 100644 index 00000000..cd079fd7 --- /dev/null +++ b/blockchains/smartchain/assets/0x5A810FC02ae3C79299179E2C8dBb6F104A9eCc71/info.json @@ -0,0 +1,11 @@ +{ + "name": "DARK SHIBA INU", + "website": "https://darkshiba.org", + "description": "DARK SHIBA INU is Memes Token", + "explorer": "https://bscscan.com/token/0x5A810FC02ae3C79299179E2C8dBb6F104A9eCc71", + "symbol": "DSHIB", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x5A810FC02ae3C79299179E2C8dBb6F104A9eCc71" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A810FC02ae3C79299179E2C8dBb6F104A9eCc71/logo.png b/blockchains/smartchain/assets/0x5A810FC02ae3C79299179E2C8dBb6F104A9eCc71/logo.png new file mode 100644 index 00000000..02c164f3 Binary files /dev/null and b/blockchains/smartchain/assets/0x5A810FC02ae3C79299179E2C8dBb6F104A9eCc71/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A9D924FC336A5EC8cf3B1909aA660533B50b015/info.json b/blockchains/smartchain/assets/0x5A9D924FC336A5EC8cf3B1909aA660533B50b015/info.json new file mode 100644 index 00000000..3cb1c167 --- /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 00000000..138c9f7d Binary files /dev/null and b/blockchains/smartchain/assets/0x5A9D924FC336A5EC8cf3B1909aA660533B50b015/logo.png differ diff --git a/blockchains/smartchain/assets/0x5Ac52EE5b2a633895292Ff6d8A89bB9190451587/info.json b/blockchains/smartchain/assets/0x5Ac52EE5b2a633895292Ff6d8A89bB9190451587/info.json new file mode 100644 index 00000000..a64161d8 --- /dev/null +++ b/blockchains/smartchain/assets/0x5Ac52EE5b2a633895292Ff6d8A89bB9190451587/info.json @@ -0,0 +1,21 @@ +{ + "name": "BSCX", + "website": "https://bscex.org", + "description": "The BSCex aims to offer aggregating engine that will divide the order into many parts and execute each part in different AMMs to lower the risk of price slippage", + "explorer": "https://bscscan.com/token/0x5ac52ee5b2a633895292ff6d8a89bb9190451587", + "type": "BEP20", + "symbol": "BSCX", + "decimals": 18, + "status": "active", + "id": "0x5Ac52EE5b2a633895292Ff6d8A89bB9190451587", + "links": [ + { + "name": "github", + "url": "https://github.com/bscex" + }, + { + "name": "whitepaper", + "url": "https://bscex.org/docs/introduction" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5Ac52EE5b2a633895292Ff6d8A89bB9190451587/logo.png b/blockchains/smartchain/assets/0x5Ac52EE5b2a633895292Ff6d8A89bB9190451587/logo.png new file mode 100644 index 00000000..a0ca5639 Binary files /dev/null and b/blockchains/smartchain/assets/0x5Ac52EE5b2a633895292Ff6d8A89bB9190451587/logo.png differ diff --git a/blockchains/smartchain/assets/0x5Ac69C40bc7363EA7D98574C78F4f54DbecbD54B/info.json b/blockchains/smartchain/assets/0x5Ac69C40bc7363EA7D98574C78F4f54DbecbD54B/info.json new file mode 100644 index 00000000..9e3392f0 --- /dev/null +++ b/blockchains/smartchain/assets/0x5Ac69C40bc7363EA7D98574C78F4f54DbecbD54B/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoonRabbit", + "type": "BEP20", + "symbol": "MOONRABBIT", + "decimals": 9, + "website": "https://moonrabbit.money", + "description": "MoonRabbit implements passive staking mechanisms so all a user has to do is hold MoonRabbit to start earning passive dividends. Along with passive staking, MoonRabbit has a built in liquidity function that creates and adds liquidity slowly increasing the price floor.", + "explorer": "https://bscscan.com/token/0x5Ac69C40bc7363EA7D98574C78F4f54DbecbD54B", + "status": "active", + "id": "0x5Ac69C40bc7363EA7D98574C78F4f54DbecbD54B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5Ac69C40bc7363EA7D98574C78F4f54DbecbD54B/logo.png b/blockchains/smartchain/assets/0x5Ac69C40bc7363EA7D98574C78F4f54DbecbD54B/logo.png new file mode 100644 index 00000000..c8680941 Binary files /dev/null and b/blockchains/smartchain/assets/0x5Ac69C40bc7363EA7D98574C78F4f54DbecbD54B/logo.png differ diff --git a/blockchains/smartchain/assets/0x5AdDc86A95A85Ec1D7764f0B6dEA6c566161D69c/info.json b/blockchains/smartchain/assets/0x5AdDc86A95A85Ec1D7764f0B6dEA6c566161D69c/info.json new file mode 100644 index 00000000..c7f50620 --- /dev/null +++ b/blockchains/smartchain/assets/0x5AdDc86A95A85Ec1D7764f0B6dEA6c566161D69c/info.json @@ -0,0 +1,11 @@ +{ + "name": "GingerCat", + "website": "https://gingercat.io", + "description": "Decentralized Cat To All Human Being", + "explorer": "https://bscscan.com/token/0x5addc86a95a85ec1d7764f0b6dea6c566161d69c", + "symbol": "GCAT", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x5AdDc86A95A85Ec1D7764f0B6dEA6c566161D69c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5AdDc86A95A85Ec1D7764f0B6dEA6c566161D69c/logo.png b/blockchains/smartchain/assets/0x5AdDc86A95A85Ec1D7764f0B6dEA6c566161D69c/logo.png new file mode 100644 index 00000000..eddc377d Binary files /dev/null and b/blockchains/smartchain/assets/0x5AdDc86A95A85Ec1D7764f0B6dEA6c566161D69c/logo.png differ diff --git a/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/info.json b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/info.json new file mode 100644 index 00000000..9aa04f95 --- /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 00000000..0b053e71 Binary files /dev/null and b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/logo.png differ diff --git a/blockchains/smartchain/assets/0x5B0Dfe077B16479715C9838eb644892008abbFe6/info.json b/blockchains/smartchain/assets/0x5B0Dfe077B16479715C9838eb644892008abbFe6/info.json new file mode 100644 index 00000000..1a76074d --- /dev/null +++ b/blockchains/smartchain/assets/0x5B0Dfe077B16479715C9838eb644892008abbFe6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Baby Bitcoin", + "website": "https://babybitcoin.finance", + "description": "Baby Bitcoin is a BEP-20 Token with a focus on charity and meme culture.", + "explorer": "https://bscscan.com/token/0x5B0Dfe077B16479715C9838eb644892008abbFe6", + "type": "BEP20", + "symbol": "BBTC", + "decimals": 9, + "status": "active", + "id": "0x5B0Dfe077B16479715C9838eb644892008abbFe6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5B0Dfe077B16479715C9838eb644892008abbFe6/logo.png b/blockchains/smartchain/assets/0x5B0Dfe077B16479715C9838eb644892008abbFe6/logo.png new file mode 100644 index 00000000..07563cd7 Binary files /dev/null and b/blockchains/smartchain/assets/0x5B0Dfe077B16479715C9838eb644892008abbFe6/logo.png differ diff --git a/blockchains/smartchain/assets/0x5B2b5BD1e5C53870fE135Fb7b289D686f762858d/info.json b/blockchains/smartchain/assets/0x5B2b5BD1e5C53870fE135Fb7b289D686f762858d/info.json new file mode 100644 index 00000000..fddbfe89 --- /dev/null +++ b/blockchains/smartchain/assets/0x5B2b5BD1e5C53870fE135Fb7b289D686f762858d/info.json @@ -0,0 +1,11 @@ +{ + "name": "PIXL", + "website": "https://pixl.one/", + "description": "Leading the world in blockchain advertisement.", + "explorer": "https://bscscan.com/token/0x5b2b5bd1e5c53870fe135fb7b289d686f762858d", + "type": "BEP20", + "symbol": "PXL", + "decimals": 9, + "status": "abandoned", + "id": "0x5B2b5BD1e5C53870fE135Fb7b289D686f762858d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5B5a3A45002736413613B8A4C46cC0d9D1D6F4Ae/info.json b/blockchains/smartchain/assets/0x5B5a3A45002736413613B8A4C46cC0d9D1D6F4Ae/info.json new file mode 100644 index 00000000..c3120386 --- /dev/null +++ b/blockchains/smartchain/assets/0x5B5a3A45002736413613B8A4C46cC0d9D1D6F4Ae/info.json @@ -0,0 +1,11 @@ +{ + "name": "Baby Moon Wolf", + "website": "https://www.babywolftoken.com/", + "description": "Baby Wolf is a community based and community focused token on the Binance Smartchain.", + "explorer": "https://bscscan.com/token/0x5B5a3A45002736413613B8A4C46cC0d9D1D6F4Ae", + "type": "BEP20", + "symbol": "BabyWolf", + "decimals": 9, + "status": "active", + "id": "0x5B5a3A45002736413613B8A4C46cC0d9D1D6F4Ae" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5B5a3A45002736413613B8A4C46cC0d9D1D6F4Ae/logo.png b/blockchains/smartchain/assets/0x5B5a3A45002736413613B8A4C46cC0d9D1D6F4Ae/logo.png new file mode 100644 index 00000000..e8265790 Binary files /dev/null and b/blockchains/smartchain/assets/0x5B5a3A45002736413613B8A4C46cC0d9D1D6F4Ae/logo.png differ diff --git a/blockchains/smartchain/assets/0x5B69eAbF1c748F590F60906D964158DBA0F53285/info.json b/blockchains/smartchain/assets/0x5B69eAbF1c748F590F60906D964158DBA0F53285/info.json new file mode 100644 index 00000000..780867b5 --- /dev/null +++ b/blockchains/smartchain/assets/0x5B69eAbF1c748F590F60906D964158DBA0F53285/info.json @@ -0,0 +1,11 @@ +{ + "name": "Brigadeiro", + "website": "https://brigadeiro.finance", + "description": "Welcome to Brigadeiro.Finance. A Charitable Yield-Generating Crypto. Help us save children and give them wonderful experiences with Brigadeiro.Finance. 5% of Total Supply + Rewards is set-up for Charity. 5% Dev Wallet for Marketing and Growth of the Token. 10% tax on transactions. 6% reflected back to holders. 4% sent directly to burn address. Burn address does not receive reflections. 1% max of supply in one transaction.", + "explorer": "https://bscscan.com/token/0x5B69eAbF1c748F590F60906D964158DBA0F53285", + "type": "BEP20", + "symbol": "BRIGADEIRO", + "decimals": 9, + "status": "active", + "id": "0x5B69eAbF1c748F590F60906D964158DBA0F53285" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5B69eAbF1c748F590F60906D964158DBA0F53285/logo.png b/blockchains/smartchain/assets/0x5B69eAbF1c748F590F60906D964158DBA0F53285/logo.png new file mode 100644 index 00000000..99ee3f5d Binary files /dev/null and b/blockchains/smartchain/assets/0x5B69eAbF1c748F590F60906D964158DBA0F53285/logo.png differ diff --git a/blockchains/smartchain/assets/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3/info.json b/blockchains/smartchain/assets/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3/info.json new file mode 100644 index 00000000..125259df --- /dev/null +++ b/blockchains/smartchain/assets/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3/info.json @@ -0,0 +1,40 @@ +{ + "name": "Gamium", + "type": "BEP20", + "symbol": "GMM", + "decimals": 18, + "website": "https://gamium.world", + "description": "GMM is the governance and medium of exchange token of Gamium", + "explorer": "https://bscscan.com/token/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3", + "status": "active", + "id": "0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3", + "links": [ + { + "name": "x", + "url": "https://x.com/gamiumcorp" + }, + { + "name": "telegram", + "url": "https://t.me/gamiumcorp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamium/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/gamium" + }, + { + "name": "medium", + "url": "https://medium.com/@gamium" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.gamium.world" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3/logo.png b/blockchains/smartchain/assets/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3/logo.png new file mode 100644 index 00000000..26a58875 Binary files /dev/null and b/blockchains/smartchain/assets/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3/logo.png differ diff --git a/blockchains/smartchain/assets/0x5B7f0c82D342BE42c94d789cfc3aAE29863D123e/info.json b/blockchains/smartchain/assets/0x5B7f0c82D342BE42c94d789cfc3aAE29863D123e/info.json new file mode 100644 index 00000000..d689b35e --- /dev/null +++ b/blockchains/smartchain/assets/0x5B7f0c82D342BE42c94d789cfc3aAE29863D123e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Beeuda", + "website": "https://beeuda.com", + "description": "Beeuda is a unique cryptocurrency project, focussing on Building Eco-friendly and Road safe Trucks. This is inspired by the EU's target to cut truck CO2 and boost zero-emission truck sales.", + "explorer": "https://bscscan.com/token/0x5B7f0c82D342BE42c94d789cfc3aAE29863D123e", + "type": "BEP20", + "symbol": "BDA", + "decimals": 8, + "status": "active", + "id": "0x5B7f0c82D342BE42c94d789cfc3aAE29863D123e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5B7f0c82D342BE42c94d789cfc3aAE29863D123e/logo.png b/blockchains/smartchain/assets/0x5B7f0c82D342BE42c94d789cfc3aAE29863D123e/logo.png new file mode 100644 index 00000000..cac64e09 Binary files /dev/null and b/blockchains/smartchain/assets/0x5B7f0c82D342BE42c94d789cfc3aAE29863D123e/logo.png differ diff --git a/blockchains/smartchain/assets/0x5B9dbeBbad94b8C6467Af9e8A851Bb120F9601c6/info.json b/blockchains/smartchain/assets/0x5B9dbeBbad94b8C6467Af9e8A851Bb120F9601c6/info.json new file mode 100644 index 00000000..740c708c --- /dev/null +++ b/blockchains/smartchain/assets/0x5B9dbeBbad94b8C6467Af9e8A851Bb120F9601c6/info.json @@ -0,0 +1,11 @@ +{ + "name": "SLOTHI", + "type": "BEP20", + "symbol": "SLTH", + "decimals": 9, + "website": "https://slothi.net/", + "description": "Slothi is a Deflationary token 13% slipp (5% holder 4% Burn 4%LP Fee)we are a community token, which was created by a strong community. We are pulling the project with voting in the community! here it is not the team that decides, but the investors.", + "explorer": "https://bscscan.com/token/0x5B9dbeBbad94b8C6467Af9e8A851Bb120F9601c6", + "status": "active", + "id": "0x5B9dbeBbad94b8C6467Af9e8A851Bb120F9601c6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5B9dbeBbad94b8C6467Af9e8A851Bb120F9601c6/logo.png b/blockchains/smartchain/assets/0x5B9dbeBbad94b8C6467Af9e8A851Bb120F9601c6/logo.png new file mode 100644 index 00000000..40ed57f4 Binary files /dev/null and b/blockchains/smartchain/assets/0x5B9dbeBbad94b8C6467Af9e8A851Bb120F9601c6/logo.png differ diff --git a/blockchains/smartchain/assets/0x5BCFF1a01d3eEbA4c9A3b9c45504Ec48771826e5/info.json b/blockchains/smartchain/assets/0x5BCFF1a01d3eEbA4c9A3b9c45504Ec48771826e5/info.json new file mode 100644 index 00000000..5a936c68 --- /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 00000000..0b63c63e 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 00000000..d3b75c80 --- /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 00000000..2b116fa2 --- /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 new file mode 100644 index 00000000..b663e8d4 --- /dev/null +++ b/blockchains/smartchain/assets/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/info.json @@ -0,0 +1,40 @@ +{ + "name": "Presale.World", + "type": "BEP20", + "symbol": "PRESALE", + "decimals": 18, + "website": "https://presale.world", + "description": "Presale.World aims to make searching for presales easy by allowing users to search, sort and filter presales from some of the biggest launchpads in crypto. At present, this includes PinkSale, DxSale, Unicrypt, GemPad, CookieSale, Novation, and of course PresaleWorld. Not only is it for investors, project owners can generate a token, lock tokens or use our launchpad with unique features such as the pool protection pot where investors are able to claim back a percentage of their initial investment in the event of a scam.", + "explorer": "https://bscscan.com/token/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0", + "status": "active", + "id": "0x5C197A2D2c9081D30715C80bD1b57c996A14cda0", + "links": [ + { + "name": "x", + "url": "https://x.com/PresaleWorld" + }, + { + "name": "telegram", + "url": "https://t.me/PresaleWorldCommunity" + }, + { + "name": "whitepaper", + "url": "https://docs.presale.world" + }, + { + "name": "youtube", + "url": "https://youtube.com/@presaleworld" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/presale-world/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/presale-world" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/logo.png b/blockchains/smartchain/assets/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/logo.png new file mode 100644 index 00000000..2adbf4bf Binary files /dev/null and b/blockchains/smartchain/assets/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/logo.png differ diff --git a/blockchains/smartchain/assets/0x5C501ceB257700FcCd33c53FeEc9f96EDa583Dd7/info.json b/blockchains/smartchain/assets/0x5C501ceB257700FcCd33c53FeEc9f96EDa583Dd7/info.json new file mode 100644 index 00000000..776ecc41 --- /dev/null +++ b/blockchains/smartchain/assets/0x5C501ceB257700FcCd33c53FeEc9f96EDa583Dd7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Travel Care", + "website": "https://www.travelcare.io/", + "description": "Travel Care is the protocol that unites the world of traveling and cryptocurrencies", + "explorer": "https://bscscan.com/token/0x5C501ceB257700FcCd33c53FeEc9f96EDa583Dd7", + "type": "BEP20", + "symbol": "TRAVEL", + "decimals": 9, + "status": "active", + "id": "0x5C501ceB257700FcCd33c53FeEc9f96EDa583Dd7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5C501ceB257700FcCd33c53FeEc9f96EDa583Dd7/logo.png b/blockchains/smartchain/assets/0x5C501ceB257700FcCd33c53FeEc9f96EDa583Dd7/logo.png new file mode 100644 index 00000000..d881206a Binary files /dev/null and b/blockchains/smartchain/assets/0x5C501ceB257700FcCd33c53FeEc9f96EDa583Dd7/logo.png differ diff --git a/blockchains/smartchain/assets/0x5C7e71f46e49Cf816f9863461EEB36e3bc8E3B51/info.json b/blockchains/smartchain/assets/0x5C7e71f46e49Cf816f9863461EEB36e3bc8E3B51/info.json new file mode 100644 index 00000000..3ef81fe2 --- /dev/null +++ b/blockchains/smartchain/assets/0x5C7e71f46e49Cf816f9863461EEB36e3bc8E3B51/info.json @@ -0,0 +1,21 @@ +{ + "name": "EQUAL", + "symbol": "EQL", + "type": "BEP20", + "decimals": 18, + "description": "A multi-chain web3 wallet that aims to reduce the complexities involved with interacting with the blockchain.", + "website": "https://equal.tech", + "explorer": "https://bscscan.com/token/0x5c7e71f46e49cf816f9863461eeb36e3bc8e3b51", + "status": "active", + "id": "0x5C7e71f46e49Cf816f9863461EEB36e3bc8E3B51", + "links": [ + { + "name": "x", + "url": "https://x.com/Equal_Network" + }, + { + "name": "telegram", + "url": "https://t.me/EQUAL_OFFICIAL" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5C7e71f46e49Cf816f9863461EEB36e3bc8E3B51/logo.png b/blockchains/smartchain/assets/0x5C7e71f46e49Cf816f9863461EEB36e3bc8E3B51/logo.png new file mode 100644 index 00000000..42deab08 Binary files /dev/null and b/blockchains/smartchain/assets/0x5C7e71f46e49Cf816f9863461EEB36e3bc8E3B51/logo.png differ diff --git a/blockchains/smartchain/assets/0x5C8111C3BCB0Cc02AcF50bC8676d4aa1bC017607/info.json b/blockchains/smartchain/assets/0x5C8111C3BCB0Cc02AcF50bC8676d4aa1bC017607/info.json new file mode 100644 index 00000000..89846010 --- /dev/null +++ b/blockchains/smartchain/assets/0x5C8111C3BCB0Cc02AcF50bC8676d4aa1bC017607/info.json @@ -0,0 +1,11 @@ +{ + "name": "BUNNY DeFi", + "type": "BEP20", + "symbol": "BUN", + "decimals": 18, + "explorer": "https://bscscan.com/token/0x5C8111C3BCB0Cc02AcF50bC8676d4aa1bC017607", + "website": "https://bunny.financial/", + "description": "BUNNY DeFi is a deflationary token that allows for passive income generation for investors. Here’s how it works.BUNNY’s decentralized exchange product suite consists of SmartTrade trading and aggregation, Swap , Staking and Liquidity Mining (which include liquidity mining, trading mining, and combiner harvest mining). It is integrated with various wallet applications through which users can interact with the platform.", + "status": "active", + "id": "0x5C8111C3BCB0Cc02AcF50bC8676d4aa1bC017607" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5C8111C3BCB0Cc02AcF50bC8676d4aa1bC017607/logo.png b/blockchains/smartchain/assets/0x5C8111C3BCB0Cc02AcF50bC8676d4aa1bC017607/logo.png new file mode 100644 index 00000000..37a64276 Binary files /dev/null and b/blockchains/smartchain/assets/0x5C8111C3BCB0Cc02AcF50bC8676d4aa1bC017607/logo.png differ diff --git a/blockchains/smartchain/assets/0x5C85D6C6825aB4032337F11Ee92a72DF936b46F6/info.json b/blockchains/smartchain/assets/0x5C85D6C6825aB4032337F11Ee92a72DF936b46F6/info.json new file mode 100644 index 00000000..00ab137b --- /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 00000000..5e4b2bfd 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 00000000..2aa4589d --- /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 00000000..68705b56 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 00000000..3aadf627 --- /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 00000000..2ab42ff0 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 new file mode 100644 index 00000000..53200837 --- /dev/null +++ b/blockchains/smartchain/assets/0x5CA42204cDaa70d5c773946e69dE942b85CA6706/info.json @@ -0,0 +1,53 @@ +{ + "name": "Position", + "type": "BEP20", + "symbol": "POSI", + "decimals": 18, + "website": "https://position.exchange", + "description": "Position Exchange is a decentralized trading platform, powered by a virtual Automated Market Maker (vAMM) and operating on Binance Smart Chain (BSC), aiming to provide on-chain Derivatives trading on Crypto assets with high leverage, low slippage and low fees.", + "explorer": "https://bscscan.com/token/0x5CA42204cDaa70d5c773946e69dE942b85CA6706", + "status": "active", + "id": "0x5CA42204cDaa70d5c773946e69dE942b85CA6706", + "links": [ + { + "name": "x", + "url": "https://x.com/PositionEx" + }, + { + "name": "github", + "url": "https://github.com/PositionExchange" + }, + { + "name": "telegram", + "url": "https://t.me/PositionExchange" + }, + { + "name": "telegram_news", + "url": "https://t.me/PositionAnn" + }, + { + "name": "blog", + "url": "https://positionex.medium.com/" + }, + { + "name": "docs", + "url": "https://docs.position.exchange/" + }, + { + "name": "forum", + "url": "https://www.reddit.com/r/PositionExchange/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/PositionExchange/" + }, + { + "name": "whitepaper", + "url": "https://position.exchange/whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/position-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5CA42204cDaa70d5c773946e69dE942b85CA6706/logo.png b/blockchains/smartchain/assets/0x5CA42204cDaa70d5c773946e69dE942b85CA6706/logo.png new file mode 100644 index 00000000..ad38dfe7 Binary files /dev/null and b/blockchains/smartchain/assets/0x5CA42204cDaa70d5c773946e69dE942b85CA6706/logo.png differ diff --git a/blockchains/smartchain/assets/0x5CCe69765F9D86fF7B83403017186A41d0218c72/info.json b/blockchains/smartchain/assets/0x5CCe69765F9D86fF7B83403017186A41d0218c72/info.json new file mode 100644 index 00000000..27a71ec5 --- /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 new file mode 100644 index 00000000..ef928d00 --- /dev/null +++ b/blockchains/smartchain/assets/0x5Cb2C3Ed882E37DA610f9eF5b0FA25514d7bc85B/info.json @@ -0,0 +1,57 @@ +{ + "name": "Mouse Haunt Token", + "type": "BEP20", + "symbol": "MHT", + "decimals": 18, + "website": "https://mousehaunt.com/", + "description": "Mouse Haunt is a multiplayer play-to-earn game where players collect NFTs, farm tokens, breed characters, and build levels. In this revolutionary game, players play as the heroes, as the villains, and as the architects of the castles. If desired, players can exchange their earned tokens for real money.", + "explorer": "https://bscscan.com/token/0x5Cb2C3Ed882E37DA610f9eF5b0FA25514d7bc85B", + "status": "active", + "id": "0x5Cb2C3Ed882E37DA610f9eF5b0FA25514d7bc85B", + "links": [ + { + "name": "x", + "url": "https://x.com/mousehaunt" + }, + { + "name": "github", + "url": "https://github.com/mousehaunt" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/QJNjRk7T06NjYjEx" + }, + { + "name": "telegram_news", + "url": "https://t.me/joinchat/QJNjRk7T06NjYjEx" + }, + { + "name": "discord", + "url": "https://discord.com/invite/UABfTV3AFn" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.mousehaunt.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC4IxztsJqxROLEU1CxHjYcw" + }, + { + "name": "medium", + "url": "https://mousehaunt.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mouse-haunt-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/mouse-haunt" + } + ], + "tags": [ + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5Cb2C3Ed882E37DA610f9eF5b0FA25514d7bc85B/logo.png b/blockchains/smartchain/assets/0x5Cb2C3Ed882E37DA610f9eF5b0FA25514d7bc85B/logo.png new file mode 100644 index 00000000..442ac420 Binary files /dev/null and b/blockchains/smartchain/assets/0x5Cb2C3Ed882E37DA610f9eF5b0FA25514d7bc85B/logo.png differ diff --git a/blockchains/smartchain/assets/0x5CdCB6C1A30F59D59393D1629172634056E0461C/info.json b/blockchains/smartchain/assets/0x5CdCB6C1A30F59D59393D1629172634056E0461C/info.json new file mode 100644 index 00000000..93006c7d --- /dev/null +++ b/blockchains/smartchain/assets/0x5CdCB6C1A30F59D59393D1629172634056E0461C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Foliowatch", + "type": "BEP20", + "symbol": "Fwatch", + "decimals": 18, + "website": "https://foliowatch.net", + "description": "Foliowatch is the first smart Defi Dashboard with LP management on the Binance Smartchain. It is Portfolio and liquidity pool performance watch plus yield farming, Fully decentralized.", + "explorer": "https://bscscan.com/token/0x5CdCB6C1A30F59D59393D1629172634056E0461C", + "status": "active", + "id": "0x5CdCB6C1A30F59D59393D1629172634056E0461C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5CdCB6C1A30F59D59393D1629172634056E0461C/logo.png b/blockchains/smartchain/assets/0x5CdCB6C1A30F59D59393D1629172634056E0461C/logo.png new file mode 100644 index 00000000..8d3a9cea Binary files /dev/null and b/blockchains/smartchain/assets/0x5CdCB6C1A30F59D59393D1629172634056E0461C/logo.png differ diff --git a/blockchains/smartchain/assets/0x5D07eDAbA2151a3C6802B28636eCC23082398EdB/info.json b/blockchains/smartchain/assets/0x5D07eDAbA2151a3C6802B28636eCC23082398EdB/info.json new file mode 100644 index 00000000..4afdc93b --- /dev/null +++ b/blockchains/smartchain/assets/0x5D07eDAbA2151a3C6802B28636eCC23082398EdB/info.json @@ -0,0 +1,33 @@ +{ + "name": "Zuna", + "type": "BEP20", + "symbol": "Zuna", + "decimals": 9, + "website": "https://zunacoin.com/", + "description": "Zuna is a community driven DeFi Token. Three simple functions occur during each trade: Reflection, LP Acquisition and Burning.", + "explorer": "https://bscscan.com/token/0x5D07eDAbA2151a3C6802B28636eCC23082398EdB", + "status": "active", + "id": "0x5D07eDAbA2151a3C6802B28636eCC23082398EdB", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/zunacoin" + }, + { + "name": "x", + "url": "https://x.com/zunacoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/zunacoin" + }, + { + "name": "telegram_news", + "url": "https://t.me/zunacoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ZunaCoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5D07eDAbA2151a3C6802B28636eCC23082398EdB/logo.png b/blockchains/smartchain/assets/0x5D07eDAbA2151a3C6802B28636eCC23082398EdB/logo.png new file mode 100644 index 00000000..74f78c19 Binary files /dev/null and b/blockchains/smartchain/assets/0x5D07eDAbA2151a3C6802B28636eCC23082398EdB/logo.png differ diff --git a/blockchains/smartchain/assets/0x5D186E28934c6B0fF5Fc2feCE15D1F34f78cBd87/info.json b/blockchains/smartchain/assets/0x5D186E28934c6B0fF5Fc2feCE15D1F34f78cBd87/info.json new file mode 100644 index 00000000..3b6cf102 --- /dev/null +++ b/blockchains/smartchain/assets/0x5D186E28934c6B0fF5Fc2feCE15D1F34f78cBd87/info.json @@ -0,0 +1,11 @@ +{ + "name": "DLP Duck Token", + "website": "https://duckdao.io", + "description": "The Duck Liquidity Pool is a DuckDAO DeFi Market Maker protocol that will provide an opportunity for yield farmers to take advantage of the new opportunities with real skin in the game.", + "explorer": "https://bscscan.com/token/0x5d186e28934c6b0ff5fc2fece15d1f34f78cbd87", + "symbol": "DUCK", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x5D186E28934c6B0fF5Fc2feCE15D1F34f78cBd87" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5D186E28934c6B0fF5Fc2feCE15D1F34f78cBd87/logo.png b/blockchains/smartchain/assets/0x5D186E28934c6B0fF5Fc2feCE15D1F34f78cBd87/logo.png new file mode 100644 index 00000000..d1f9f9cf Binary files /dev/null and b/blockchains/smartchain/assets/0x5D186E28934c6B0fF5Fc2feCE15D1F34f78cBd87/logo.png differ diff --git a/blockchains/smartchain/assets/0x5D2F9a9DF1ba3C8C00303D0b4C431897eBc6626A/info.json b/blockchains/smartchain/assets/0x5D2F9a9DF1ba3C8C00303D0b4C431897eBc6626A/info.json new file mode 100644 index 00000000..b85b03a1 --- /dev/null +++ b/blockchains/smartchain/assets/0x5D2F9a9DF1ba3C8C00303D0b4C431897eBc6626A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ormeus Cash", + "website": "https://ormeuscash.com/", + "description": "Ormeus Cash is a True Transactional Coin for a New Era of Commerce.", + "explorer": "https://bscscan.com/token/0x5D2F9a9DF1ba3C8C00303D0b4C431897eBc6626A", + "type": "BEP20", + "symbol": "OMC", + "decimals": 18, + "status": "active", + "id": "0x5D2F9a9DF1ba3C8C00303D0b4C431897eBc6626A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5D2F9a9DF1ba3C8C00303D0b4C431897eBc6626A/logo.png b/blockchains/smartchain/assets/0x5D2F9a9DF1ba3C8C00303D0b4C431897eBc6626A/logo.png new file mode 100644 index 00000000..0075cb3f Binary files /dev/null and b/blockchains/smartchain/assets/0x5D2F9a9DF1ba3C8C00303D0b4C431897eBc6626A/logo.png differ diff --git a/blockchains/smartchain/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json b/blockchains/smartchain/assets/0x5D642505FE1a28897eb3BaBA665F454755D8daA2/info.json new file mode 100644 index 00000000..1fd0f93d --- /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 00000000..d5946212 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 00000000..3b47008f --- /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 00000000..df22e788 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 new file mode 100644 index 00000000..b5acbb76 --- /dev/null +++ b/blockchains/smartchain/assets/0x5E19266e4a17521d65EFF608517fA0c82CA24813/info.json @@ -0,0 +1,41 @@ +{ + "name": "CleanOcean", + "type": "BEP20", + "symbol": "CLEAN", + "decimals": 9, + "website": "https://cleanocean.io/", + "description": "An innovative crypto investment project combining the growth potential of blockchain technology with oceanic conservatory operations.", + "explorer": "https://bscscan.com/token/0x5E19266e4a17521d65EFF608517fA0c82CA24813", + "status": "active", + "id": "0x5E19266e4a17521d65EFF608517fA0c82CA24813", + "links": [ + { + "name": "x", + "url": "https://x.com/cleanoceantoken" + }, + { + "name": "telegram", + "url": "https://t.me/cleanocean" + }, + { + "name": "reddit", + "url": "https://reddit.com/CLEANOCEAN/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC82j7iRr6KErI5UEXPFmU7A" + }, + { + "name": "facebook", + "url": "https://facebook.com/CleanOcean-101484642117124/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cleanocean/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/cleanocean" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5E19266e4a17521d65EFF608517fA0c82CA24813/logo.png b/blockchains/smartchain/assets/0x5E19266e4a17521d65EFF608517fA0c82CA24813/logo.png new file mode 100644 index 00000000..bc55ac09 Binary files /dev/null and b/blockchains/smartchain/assets/0x5E19266e4a17521d65EFF608517fA0c82CA24813/logo.png differ diff --git a/blockchains/smartchain/assets/0x5E2689412Fae5c29BD575fbe1d5C1CD1e0622A8f/info.json b/blockchains/smartchain/assets/0x5E2689412Fae5c29BD575fbe1d5C1CD1e0622A8f/info.json new file mode 100644 index 00000000..7c70544f --- /dev/null +++ b/blockchains/smartchain/assets/0x5E2689412Fae5c29BD575fbe1d5C1CD1e0622A8f/info.json @@ -0,0 +1,73 @@ +{ + "name": "HeroesTD", + "type": "BEP20", + "symbol": "HTD", + "decimals": 18, + "website": "https://www.heroestd.io/", + "description": "Heroes TD is a Free to Play or Play to Earn 3D GameFi built with Heroes Metaverse. You can play with each other and trade items on the NFT market! Join Heroes TD today and get your life-time investment!", + "explorer": "https://bscscan.com/token/0x5E2689412Fae5c29BD575fbe1d5C1CD1e0622A8f", + "status": "active", + "id": "0x5E2689412Fae5c29BD575fbe1d5C1CD1e0622A8f", + "links": [ + { + "name": "x", + "url": "https://x.com/heroes_td" + }, + { + "name": "discord", + "url": "https://discord.com/heroestd" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/HeroesTD" + }, + { + "name": "facebook", + "url": "https://facebook.com/Heroestd" + }, + { + "name": "medium", + "url": "https://medium.com/@heroestd" + }, + { + "name": "telegram", + "url": "https://t.me/Heroes_TD" + }, + { + "name": "telegram_news", + "url": "https://t.me/HeroesTD_Club" + }, + { + "name": "whitepaper", + "url": "https://docs.heroestd.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/heroes-td/" + }, + { + "name": "github", + "url": "https://github.com/heroestd" + }, + { + "name": "source_code", + "url": "https://github.com/heroestd/heroestd-token" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCAKBuEh6h06DKpWn8zpfujA" + }, + { + "name": "blog", + "url": "https://blog.heroestd.io/" + }, + { + "name": "docs", + "url": "https://docs.heroestd.io/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/heroes-td" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5E2689412Fae5c29BD575fbe1d5C1CD1e0622A8f/logo.png b/blockchains/smartchain/assets/0x5E2689412Fae5c29BD575fbe1d5C1CD1e0622A8f/logo.png new file mode 100644 index 00000000..09832c51 Binary files /dev/null and b/blockchains/smartchain/assets/0x5E2689412Fae5c29BD575fbe1d5C1CD1e0622A8f/logo.png differ diff --git a/blockchains/smartchain/assets/0x5E5C9001Aa81332D405D993FFd1468751D659d1e/info.json b/blockchains/smartchain/assets/0x5E5C9001Aa81332D405D993FFd1468751D659d1e/info.json new file mode 100644 index 00000000..f2c32499 --- /dev/null +++ b/blockchains/smartchain/assets/0x5E5C9001Aa81332D405D993FFd1468751D659d1e/info.json @@ -0,0 +1,33 @@ +{ + "name": "Baby Doge Inu", + "type": "BEP20", + "symbol": "$BABYDOGEINU", + "decimals": 9, + "website": "https://www.babydogeinu.io/", + "description": "Baby Doge Inu is a deflationary token with high holder rewards on Binance Smart Chain (BSC).", + "explorer": "https://bscscan.com/token/0x5e5c9001aa81332d405d993ffd1468751d659d1e", + "status": "active", + "id": "0x5E5C9001Aa81332D405D993FFd1468751D659d1e", + "links": [ + { + "name": "x", + "url": "https://x.com/babydoge_inu" + }, + { + "name": "telegram", + "url": "https://t.me/baby_doge_inu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-doge-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/baby-doge-inu" + }, + { + "name": "facebook", + "url": "https://facebook.com/groups/552451382428964" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5E5C9001Aa81332D405D993FFd1468751D659d1e/logo.png b/blockchains/smartchain/assets/0x5E5C9001Aa81332D405D993FFd1468751D659d1e/logo.png new file mode 100644 index 00000000..7baec4bf Binary files /dev/null and b/blockchains/smartchain/assets/0x5E5C9001Aa81332D405D993FFd1468751D659d1e/logo.png differ diff --git a/blockchains/smartchain/assets/0x5E63232993789601CE362e0240a299C1DfCBfbEc/info.json b/blockchains/smartchain/assets/0x5E63232993789601CE362e0240a299C1DfCBfbEc/info.json new file mode 100644 index 00000000..19341db4 --- /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 00000000..35f0a8ec Binary files /dev/null and b/blockchains/smartchain/assets/0x5E63232993789601CE362e0240a299C1DfCBfbEc/logo.png differ diff --git a/blockchains/smartchain/assets/0x5E9280d53F28281Ce098C8F64e49F5f5DC9Ea185/info.json b/blockchains/smartchain/assets/0x5E9280d53F28281Ce098C8F64e49F5f5DC9Ea185/info.json new file mode 100644 index 00000000..71ab8d6d --- /dev/null +++ b/blockchains/smartchain/assets/0x5E9280d53F28281Ce098C8F64e49F5f5DC9Ea185/info.json @@ -0,0 +1,11 @@ +{ + "name": "SnowgeCoin", + "type": "BEP20", + "symbol": "SNOWGE", + "decimals": 9, + "website": "https://snowge.xyz", + "description": "SnowgeCoin is a community owned, floofy doggo-themed Safemoon fork that functions as a deflationary auto-staking currency, with a randomized transaction fee of: 2%, 4%, 6% or 8%. Half of each fee is reflected back to holders, and the other half is added to the BNB/Snowge Liquidity Pool.", + "explorer": "https://bscscan.com/token/0x5E9280d53F28281Ce098C8F64e49F5f5DC9Ea185", + "status": "active", + "id": "0x5E9280d53F28281Ce098C8F64e49F5f5DC9Ea185" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5E9280d53F28281Ce098C8F64e49F5f5DC9Ea185/logo.png b/blockchains/smartchain/assets/0x5E9280d53F28281Ce098C8F64e49F5f5DC9Ea185/logo.png new file mode 100644 index 00000000..a100d396 Binary files /dev/null and b/blockchains/smartchain/assets/0x5E9280d53F28281Ce098C8F64e49F5f5DC9Ea185/logo.png differ diff --git a/blockchains/smartchain/assets/0x5EA29eEe799aA7cC379FdE5cf370BC24f2Ea7c81/info.json b/blockchains/smartchain/assets/0x5EA29eEe799aA7cC379FdE5cf370BC24f2Ea7c81/info.json new file mode 100644 index 00000000..c6520182 --- /dev/null +++ b/blockchains/smartchain/assets/0x5EA29eEe799aA7cC379FdE5cf370BC24f2Ea7c81/info.json @@ -0,0 +1,21 @@ +{ + "name": "Keep3r BSC Network", + "website": "https://keep3rb.network", + "description": "Keep3r BSC Network is First Decentralized Keeper Network Project on Binance Smart Chain. KP3RB token is fully democratic governance dapp.", + "explorer": "https://bscscan.com/token/0x5EA29eEe799aA7cC379FdE5cf370BC24f2Ea7c81", + "type": "BEP20", + "symbol": "KP3RB", + "decimals": 18, + "status": "active", + "id": "0x5EA29eEe799aA7cC379FdE5cf370BC24f2Ea7c81", + "links": [ + { + "name": "github", + "url": "https://github.com/keep3rb-network" + }, + { + "name": "whitepaper", + "url": "https://docs.keep3rb.network/docs" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5EA29eEe799aA7cC379FdE5cf370BC24f2Ea7c81/logo.png b/blockchains/smartchain/assets/0x5EA29eEe799aA7cC379FdE5cf370BC24f2Ea7c81/logo.png new file mode 100755 index 00000000..acd1c3c7 Binary files /dev/null and b/blockchains/smartchain/assets/0x5EA29eEe799aA7cC379FdE5cf370BC24f2Ea7c81/logo.png differ diff --git a/blockchains/smartchain/assets/0x5EC8B32Ff33f8df977402F44602A59998941d240/info.json b/blockchains/smartchain/assets/0x5EC8B32Ff33f8df977402F44602A59998941d240/info.json new file mode 100644 index 00000000..3d6832a9 --- /dev/null +++ b/blockchains/smartchain/assets/0x5EC8B32Ff33f8df977402F44602A59998941d240/info.json @@ -0,0 +1,11 @@ +{ + "name": "LAZACA", + "type": "BEP20", + "symbol": "LACA", + "decimals": 18, + "website": "https://lazaca.com/", + "description": "Lazaca® aims to be the 1st leader in the Digital Asset Marketplace.", + "explorer": "https://bscscan.com/token/0x5EC8B32Ff33f8df977402F44602A59998941d240", + "status": "active", + "id": "0x5EC8B32Ff33f8df977402F44602A59998941d240" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5EC8B32Ff33f8df977402F44602A59998941d240/logo.png b/blockchains/smartchain/assets/0x5EC8B32Ff33f8df977402F44602A59998941d240/logo.png new file mode 100644 index 00000000..5394c593 Binary files /dev/null and b/blockchains/smartchain/assets/0x5EC8B32Ff33f8df977402F44602A59998941d240/logo.png differ diff --git a/blockchains/smartchain/assets/0x5EEF8c4320e2Bf8D1e6231A31500FD7a87D02985/info.json b/blockchains/smartchain/assets/0x5EEF8c4320e2Bf8D1e6231A31500FD7a87D02985/info.json new file mode 100644 index 00000000..6cfab696 --- /dev/null +++ b/blockchains/smartchain/assets/0x5EEF8c4320e2Bf8D1e6231A31500FD7a87D02985/info.json @@ -0,0 +1,11 @@ +{ + "name": "FOMO", + "type": "BEP20", + "symbol": "FOMO", + "decimals": 18, + "website": "https://fomolab.io/", + "description": "Creating new ways for content creators to connect with their audience.", + "explorer": "https://bscscan.com/token/0x5EEF8c4320e2Bf8D1e6231A31500FD7a87D02985", + "status": "active", + "id": "0x5EEF8c4320e2Bf8D1e6231A31500FD7a87D02985" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5EEF8c4320e2Bf8D1e6231A31500FD7a87D02985/logo.png b/blockchains/smartchain/assets/0x5EEF8c4320e2Bf8D1e6231A31500FD7a87D02985/logo.png new file mode 100644 index 00000000..08573ca2 Binary files /dev/null and b/blockchains/smartchain/assets/0x5EEF8c4320e2Bf8D1e6231A31500FD7a87D02985/logo.png differ diff --git a/blockchains/smartchain/assets/0x5EcFcced226bA9fCcD8663e7b3263cBd8C84eDB5/info.json b/blockchains/smartchain/assets/0x5EcFcced226bA9fCcD8663e7b3263cBd8C84eDB5/info.json new file mode 100644 index 00000000..f1bd3c11 --- /dev/null +++ b/blockchains/smartchain/assets/0x5EcFcced226bA9fCcD8663e7b3263cBd8C84eDB5/info.json @@ -0,0 +1,45 @@ +{ + "name": "Xtremcoin", + "type": "BEP20", + "symbol": "XTR", + "decimals": 8, + "website": "https://xtremcoin.io", + "description": "Wearable technologies are rapidly taking their place in our lives all over the world. Xtremcoin brings you a brand new technology in the world of crypto money.", + "explorer": "https://bscscan.com/token/0x5EcFcced226bA9fCcD8663e7b3263cBd8C84eDB5", + "status": "active", + "id": "0x5EcFcced226bA9fCcD8663e7b3263cBd8C84eDB5", + "links": [ + { + "name": "x", + "url": "https://x.com/xtremcoin" + }, + { + "name": "github", + "url": "https://github.com/xtremcoin" + }, + { + "name": "telegram", + "url": "https://t.me/xtremcoin" + }, + { + "name": "telegram_news", + "url": "https://t.me/xtremcoin_news" + }, + { + "name": "blog", + "url": "https://blog.xtremcoin.com" + }, + { + "name": "reddit", + "url": "https://reddit.com/Xtremcoin" + }, + { + "name": "whitepaper", + "url": "https://xtremcoin.io/whitepaper/Xtremcoin-Whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@Xtremcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5EcFcced226bA9fCcD8663e7b3263cBd8C84eDB5/logo.png b/blockchains/smartchain/assets/0x5EcFcced226bA9fCcD8663e7b3263cBd8C84eDB5/logo.png new file mode 100644 index 00000000..2fb10461 Binary files /dev/null and b/blockchains/smartchain/assets/0x5EcFcced226bA9fCcD8663e7b3263cBd8C84eDB5/logo.png differ diff --git a/blockchains/smartchain/assets/0x5F02C4Dcb270999282b850Caa47Af749Ce49FE00/info.json b/blockchains/smartchain/assets/0x5F02C4Dcb270999282b850Caa47Af749Ce49FE00/info.json new file mode 100644 index 00000000..4b8b2644 --- /dev/null +++ b/blockchains/smartchain/assets/0x5F02C4Dcb270999282b850Caa47Af749Ce49FE00/info.json @@ -0,0 +1,41 @@ +{ + "name": "XTRA Token", + "website": "https://taraplatform.com", + "description": "XTRA is a revolution of Loyalty Rewards & Cashback with blockchain technology.", + "explorer": "https://bscscan.com/token/0x5F02C4Dcb270999282b850Caa47Af749Ce49FE00", + "type": "BEP20", + "symbol": "XTRA", + "decimals": 9, + "status": "active", + "id": "0x5F02C4Dcb270999282b850Caa47Af749Ce49FE00", + "links": [ + { + "name": "github", + "url": "https://github.com/aldyrpl/XTRA-Token" + }, + { + "name": "whitepaper", + "url": "https://bit.ly/xtrawhitepaper" + }, + { + "name": "telegram", + "url": "https://t.me/taraplatform" + }, + { + "name": "x", + "url": "https://x.com/taraplatform" + }, + { + "name": "medium", + "url": "https://medium.com/@aldyputra-xtra/xtra-tara-paltform-a-revolution-of-loyalty-reward-with-blockchain-technology-presale-on-91f007da0838" + }, + { + "name": "facebook", + "url": "https://facebook.com/Tara-Platform-189515129812989" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCZkhr0IkDHvbJSTwMGuN2Sg" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5F02C4Dcb270999282b850Caa47Af749Ce49FE00/logo.png b/blockchains/smartchain/assets/0x5F02C4Dcb270999282b850Caa47Af749Ce49FE00/logo.png new file mode 100644 index 00000000..c577b7e1 Binary files /dev/null and b/blockchains/smartchain/assets/0x5F02C4Dcb270999282b850Caa47Af749Ce49FE00/logo.png differ diff --git a/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/info.json b/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/info.json new file mode 100644 index 00000000..afb7bac2 --- /dev/null +++ b/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus BCH", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176", + "type": "BEP20", + "symbol": "vBCH", + "decimals": 8, + "status": "active", + "id": "0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/logo.png b/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/logo.png new file mode 100644 index 00000000..195a2515 Binary files /dev/null and b/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/logo.png differ diff --git a/blockchains/smartchain/assets/0x5F16ba80a1F620055e35215028E90808c7CC365C/info.json b/blockchains/smartchain/assets/0x5F16ba80a1F620055e35215028E90808c7CC365C/info.json new file mode 100644 index 00000000..8edc344c --- /dev/null +++ b/blockchains/smartchain/assets/0x5F16ba80a1F620055e35215028E90808c7CC365C/info.json @@ -0,0 +1,25 @@ +{ + "name": "Europa", + "type": "BEP20", + "symbol": "EURO", + "decimals": 18, + "website": "https://europacoin.net", + "description": "Europa is a leading DeFi yield aggregator on BSC that has 3 products as part of the Europa ecosystem, namely Vaults (yield optimizer), Europa (DEX Aggregator), and farmfolio", + "explorer": "https://bscscan.com/token/0x5F16ba80a1F620055e35215028E90808c7CC365C", + "status": "active", + "id": "0x5F16ba80a1F620055e35215028E90808c7CC365C", + "links": [ + { + "name": "x", + "url": "https://x.com/Europacoin2021" + }, + { + "name": "github", + "url": "https://github.com/europacoinbsc/europa" + }, + { + "name": "telegram", + "url": "https://t.me/Europabsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5F16ba80a1F620055e35215028E90808c7CC365C/logo.png b/blockchains/smartchain/assets/0x5F16ba80a1F620055e35215028E90808c7CC365C/logo.png new file mode 100644 index 00000000..9c2cf510 Binary files /dev/null and b/blockchains/smartchain/assets/0x5F16ba80a1F620055e35215028E90808c7CC365C/logo.png differ diff --git a/blockchains/smartchain/assets/0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78/info.json b/blockchains/smartchain/assets/0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78/info.json new file mode 100644 index 00000000..3c6d79fa --- /dev/null +++ b/blockchains/smartchain/assets/0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78/info.json @@ -0,0 +1,45 @@ +{ + "name": "CAKE BANK", + "type": "BEP20", + "symbol": "CAKEBANK", + "decimals": 18, + "website": "https://cakebank.finance", + "description": "The CAKEBANK protocol is a community inspired DeFi experiment built on Binance. every buy/sell is taken and redistributed to all holders. Hold CAKEBANK tokens, earn CAKE.", + "explorer": "https://bscscan.com/token/0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78", + "status": "active", + "id": "0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78", + "links": [ + { + "name": "x", + "url": "https://x.com/cakebank_bsc" + }, + { + "name": "github", + "url": "https://github.com/cakebank" + }, + { + "name": "telegram", + "url": "https://t.me/cakebank_bsc" + }, + { + "name": "medium", + "url": "https://medium.com/@cakebank" + }, + { + "name": "whitepaper", + "url": "https://cakebank.finance/assets/WhitePaper_v2.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cake-bank/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cake-bank" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x5f1b95784a033cd6842cf26eb9a9687f91ad9e78#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78/logo.png b/blockchains/smartchain/assets/0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78/logo.png new file mode 100644 index 00000000..476201a3 Binary files /dev/null and b/blockchains/smartchain/assets/0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78/logo.png differ diff --git a/blockchains/smartchain/assets/0x5F7A56e877B9130608Bf8BE962621011182fEfE1/info.json b/blockchains/smartchain/assets/0x5F7A56e877B9130608Bf8BE962621011182fEfE1/info.json new file mode 100644 index 00000000..869d0b89 --- /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 00000000..5310149b 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 new file mode 100644 index 00000000..7dd23283 --- /dev/null +++ b/blockchains/smartchain/assets/0x5F84ce30DC3cF7909101C69086c50De191895883/info.json @@ -0,0 +1,25 @@ +{ + "name": "Venus Reward Token", + "website": "https://venus.io/", + "description": "Venus Reward Token is a mechanism created to become an additional mining distribution to suppliers and borrowers of Venus Protocol.", + "explorer": "https://bscscan.com/token/0x5F84ce30DC3cF7909101C69086c50De191895883", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + } + ], + "type": "BEP20", + "symbol": "VRT", + "decimals": 18, + "status": "active", + "id": "0x5F84ce30DC3cF7909101C69086c50De191895883" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5F84ce30DC3cF7909101C69086c50De191895883/logo.png b/blockchains/smartchain/assets/0x5F84ce30DC3cF7909101C69086c50De191895883/logo.png new file mode 100644 index 00000000..fd11e1f3 Binary files /dev/null and b/blockchains/smartchain/assets/0x5F84ce30DC3cF7909101C69086c50De191895883/logo.png differ diff --git a/blockchains/smartchain/assets/0x5F88AB06e8dfe89DF127B2430Bba4Af600866035/info.json b/blockchains/smartchain/assets/0x5F88AB06e8dfe89DF127B2430Bba4Af600866035/info.json new file mode 100644 index 00000000..118a6d2f --- /dev/null +++ b/blockchains/smartchain/assets/0x5F88AB06e8dfe89DF127B2430Bba4Af600866035/info.json @@ -0,0 +1,12 @@ +{ + "name": "Kava", + "website": "https://kava.io", + "description": "Kava is a cross-chain DeFi Lending platform enabling stablecoin loans for users of major cryptocurrencies.", + "explorer": "https://bscscan.com/token/0x5f88ab06e8dfe89df127b2430bba4af600866035", + "research": "https://research.binance.com/en/projects/kava", + "type": "BEP20", + "symbol": "KAVA", + "decimals": 6, + "status": "active", + "id": "0x5F88AB06e8dfe89DF127B2430Bba4Af600866035" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5F88AB06e8dfe89DF127B2430Bba4Af600866035/logo.png b/blockchains/smartchain/assets/0x5F88AB06e8dfe89DF127B2430Bba4Af600866035/logo.png new file mode 100644 index 00000000..c3a0556a Binary files /dev/null and b/blockchains/smartchain/assets/0x5F88AB06e8dfe89DF127B2430Bba4Af600866035/logo.png differ diff --git a/blockchains/smartchain/assets/0x5F980533B994c93631A639dEdA7892fC49995839/info.json b/blockchains/smartchain/assets/0x5F980533B994c93631A639dEdA7892fC49995839/info.json new file mode 100644 index 00000000..fbec703f --- /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 00000000..31361c72 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 00000000..b932f1f6 --- /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 00000000..057cb769 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 00000000..acd81ce1 --- /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 00000000..837eab98 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 new file mode 100644 index 00000000..8df6c53e --- /dev/null +++ b/blockchains/smartchain/assets/0x5a119762B09Ed0bcB3b16075159AE43A62651383/info.json @@ -0,0 +1,41 @@ +{ + "name": "Dali", + "type": "BEP20", + "symbol": "DALI", + "decimals": 9, + "website": "https://dalitoken.io", + "description": "Dali has three projects. DaliNFT, DaliSwap and DaliGames. First one is DaliNFT. DaliNFT is the next generation NFT Marketplace to facilitate working with NFTs. It helps change the artworks to on-chain artworks, injecting new value to classical artworks. DaliNFT also connects celebrities and their fans in a special project, where celebrities present their NFTs to millions of fans in a user-friendly environment, and fans can have mementos of their favorite celebrities.", + "explorer": "https://bscscan.com/token/0x5a119762B09Ed0bcB3b16075159AE43A62651383", + "status": "active", + "id": "0x5a119762B09Ed0bcB3b16075159AE43A62651383", + "links": [ + { + "name": "telegram_news", + "url": "https://t.me/dalitoken" + }, + { + "name": "telegram", + "url": "https://t.me/dalienglish" + }, + { + "name": "x", + "url": "https://x.com/dalitoken" + }, + { + "name": "github", + "url": "https://github.com/DaliToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dali" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dali" + }, + { + "name": "whitepaper", + "url": "https://dalitoken.io/docs/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5a119762B09Ed0bcB3b16075159AE43A62651383/logo.png b/blockchains/smartchain/assets/0x5a119762B09Ed0bcB3b16075159AE43A62651383/logo.png new file mode 100644 index 00000000..35b87304 Binary files /dev/null and b/blockchains/smartchain/assets/0x5a119762B09Ed0bcB3b16075159AE43A62651383/logo.png differ diff --git a/blockchains/smartchain/assets/0x5a20886b575058dd7299785f0Ea9b1172942a3E0/info.json b/blockchains/smartchain/assets/0x5a20886b575058dd7299785f0Ea9b1172942a3E0/info.json new file mode 100644 index 00000000..9cb3307a --- /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 00000000..72a81c9f Binary files /dev/null and b/blockchains/smartchain/assets/0x5a20886b575058dd7299785f0Ea9b1172942a3E0/logo.png differ diff --git a/blockchains/smartchain/assets/0x5a81b31b4a5F2D2a36BBd4d755dAb378dE735565/info.json b/blockchains/smartchain/assets/0x5a81b31b4a5F2D2a36BBd4d755dAb378dE735565/info.json new file mode 100644 index 00000000..f1134e91 --- /dev/null +++ b/blockchains/smartchain/assets/0x5a81b31b4a5F2D2a36BBd4d755dAb378dE735565/info.json @@ -0,0 +1,11 @@ +{ + "name": "SpaceCorgi", + "website": "https://spacecorgi.finance/", + "description": "SpaceCorgi leverages memenomics with real-world token utility.", + "explorer": "https://bscscan.com/token/0x5a81b31b4a5F2D2a36BBd4d755dAb378dE735565", + "type": "BEP20", + "symbol": "SCORGI", + "decimals": 9, + "status": "active", + "id": "0x5a81b31b4a5F2D2a36BBd4d755dAb378dE735565" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5a81b31b4a5F2D2a36BBd4d755dAb378dE735565/logo.png b/blockchains/smartchain/assets/0x5a81b31b4a5F2D2a36BBd4d755dAb378dE735565/logo.png new file mode 100644 index 00000000..2517b6f5 Binary files /dev/null and b/blockchains/smartchain/assets/0x5a81b31b4a5F2D2a36BBd4d755dAb378dE735565/logo.png differ diff --git a/blockchains/smartchain/assets/0x5aA5C8F8109C891fBdac0cE874fD9fd48a07f0f9/info.json b/blockchains/smartchain/assets/0x5aA5C8F8109C891fBdac0cE874fD9fd48a07f0f9/info.json new file mode 100644 index 00000000..f38b0626 --- /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 00000000..d5158fc8 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 00000000..2f64c375 --- /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 00000000..d5a152fe 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 00000000..5c20ce6b --- /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 00000000..d3f377ca 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 new file mode 100644 index 00000000..ab414b15 --- /dev/null +++ b/blockchains/smartchain/assets/0x5b17b4d5e4009B5C43e3e3d63A5229F794cBA389/info.json @@ -0,0 +1,30 @@ +{ + "name": "ACryptoS(I)", + "website": "https://acryptos.com/", + "description": "ACryptoS StableSwap is an automated market maker (AMM) enabling fast and efficient stablecoin trading at the best prices with low slippage and fees on Binance Smart Chain. ACryptoS Vaults grow your assets via automated yield Strategies. This saves users time and enables higher yields through more frequent compounding, more efficient gas utilisation, and other creative automations.", + "research": "https://docs.acryptos.com/", + "explorer": "https://bscscan.com/token/0x5b17b4d5e4009b5c43e3e3d63a5229f794cba389", + "type": "BEP20", + "symbol": "ACSI", + "decimals": 18, + "status": "active", + "id": "0x5b17b4d5e4009B5C43e3e3d63A5229F794cBA389", + "links": [ + { + "name": "source_code", + "url": "https://app.acryptos.com/contracts/" + }, + { + "name": "x", + "url": "https://x.com/acryptosx" + }, + { + "name": "telegram", + "url": "https://t.me/acryptos9" + }, + { + "name": "medium", + "url": "https://acryptos.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5b17b4d5e4009B5C43e3e3d63A5229F794cBA389/logo.png b/blockchains/smartchain/assets/0x5b17b4d5e4009B5C43e3e3d63A5229F794cBA389/logo.png new file mode 100644 index 00000000..179352b1 Binary files /dev/null and b/blockchains/smartchain/assets/0x5b17b4d5e4009B5C43e3e3d63A5229F794cBA389/logo.png differ diff --git a/blockchains/smartchain/assets/0x5b1910eAaD6450E50f816082Aa078C41F10C292f/info.json b/blockchains/smartchain/assets/0x5b1910eAaD6450E50f816082Aa078C41F10C292f/info.json new file mode 100644 index 00000000..b2fc0c2b --- /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 00000000..8bbeea6b 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 new file mode 100644 index 00000000..89fe9077 --- /dev/null +++ b/blockchains/smartchain/assets/0x5b1BaeC64aF6dC54E6e04349315919129A6d3c23/info.json @@ -0,0 +1,25 @@ +{ + "name": "DNAxCAT", + "website": "https://dnaxcat.io", + "description": "DNAxCAT creates a digital cat pet world where players can raise and breed varies of cute cats and fight shoulder to shoulder in the adventure world with your cats", + "explorer": "https://bscscan.com/token/0x5b1BaeC64aF6dC54E6e04349315919129A6d3c23", + "type": "BEP20", + "symbol": "DXCT", + "decimals": 18, + "status": "active", + "id": "0x5b1BaeC64aF6dC54E6e04349315919129A6d3c23", + "links": [ + { + "name": "github", + "url": "https://github.com/DNAxCAT/" + }, + { + "name": "x", + "url": "https://x.com/dnaxcat_game" + }, + { + "name": "telegram", + "url": "https://t.me/DNAxCAT_official" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5b1BaeC64aF6dC54E6e04349315919129A6d3c23/logo.png b/blockchains/smartchain/assets/0x5b1BaeC64aF6dC54E6e04349315919129A6d3c23/logo.png new file mode 100644 index 00000000..022b26e0 Binary files /dev/null and b/blockchains/smartchain/assets/0x5b1BaeC64aF6dC54E6e04349315919129A6d3c23/logo.png differ diff --git a/blockchains/smartchain/assets/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/info.json b/blockchains/smartchain/assets/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/info.json new file mode 100644 index 00000000..eb04afab --- /dev/null +++ b/blockchains/smartchain/assets/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/info.json @@ -0,0 +1,25 @@ +{ + "name": "BinaryX", + "website": "https://www.binaryx.pro/", + "description": "BinaryX is a decentralized derivatives contract based on BSC. Users can trade binary options via BinaryX which adopts an improved AMM model.", + "explorer": "https://bscscan.com/token/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD", + "type": "BEP20", + "symbol": "BNX", + "decimals": 18, + "status": "active", + "id": "0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD", + "links": [ + { + "name": "telegram", + "url": "https://t.me/binaryxGlobal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binaryx/" + }, + { + "name": "x", + "url": "https://x.com/binary_x" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/logo.png b/blockchains/smartchain/assets/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/logo.png new file mode 100644 index 00000000..a5f04a87 Binary files /dev/null and b/blockchains/smartchain/assets/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/logo.png differ diff --git a/blockchains/smartchain/assets/0x5b4963B964bAc5C2Db83e53ffFe46E0cb83a1346/info.json b/blockchains/smartchain/assets/0x5b4963B964bAc5C2Db83e53ffFe46E0cb83a1346/info.json new file mode 100644 index 00000000..c0077bbb --- /dev/null +++ b/blockchains/smartchain/assets/0x5b4963B964bAc5C2Db83e53ffFe46E0cb83a1346/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kitty Token", + "type": "BEP20", + "symbol": "KITTY", + "decimals": 18, + "website": "https://kittytoken.io/", + "description": "Kitty Token is a Decentralized Meme Token. Make the Fun with Kitty. Mine BNB with #KITTY upto 1000 BNB.", + "explorer": "https://bscscan.com/token/0x5b4963B964bAc5C2Db83e53ffFe46E0cb83a1346", + "status": "active", + "id": "0x5b4963B964bAc5C2Db83e53ffFe46E0cb83a1346" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5b4963B964bAc5C2Db83e53ffFe46E0cb83a1346/logo.png b/blockchains/smartchain/assets/0x5b4963B964bAc5C2Db83e53ffFe46E0cb83a1346/logo.png new file mode 100644 index 00000000..33278b6d Binary files /dev/null and b/blockchains/smartchain/assets/0x5b4963B964bAc5C2Db83e53ffFe46E0cb83a1346/logo.png differ diff --git a/blockchains/smartchain/assets/0x5b6AfBd5184638c9c49C485c3DE5ED56269ba6Cb/info.json b/blockchains/smartchain/assets/0x5b6AfBd5184638c9c49C485c3DE5ED56269ba6Cb/info.json new file mode 100644 index 00000000..fc532a6e --- /dev/null +++ b/blockchains/smartchain/assets/0x5b6AfBd5184638c9c49C485c3DE5ED56269ba6Cb/info.json @@ -0,0 +1,41 @@ +{ + "name": "Aurum", + "type": "BEP20", + "symbol": "AUR", + "decimals": 9, + "website": "https://aurumofficial.net/", + "description": "Aurum is the golden standard of reward tokens and BSC security. First token to allow holders to choose any BSC token as their redistribution reward; with a focus on developing utility to enhance security across the BSC network.", + "explorer": "https://bscscan.com/token/0x5b6AfBd5184638c9c49C485c3DE5ED56269ba6Cb", + "status": "active", + "id": "0x5b6AfBd5184638c9c49C485c3DE5ED56269ba6Cb", + "links": [ + { + "name": "github", + "url": "https://github.com/Aurum-Dev" + }, + { + "name": "telegram", + "url": "https://t.me/AurOfficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AURofficial/" + }, + { + "name": "whitepaper", + "url": "https://aurumofficial.net/wp-content/uploads/2021/07/AUR-WP-V2-compressed.pdf" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x5b6afbd5184638c9c49c485c3de5ed56269ba6cb#code" + }, + { + "name": "discord", + "url": "https://discord.com/invite/gBcss4GTGw" + }, + { + "name": "x", + "url": "https://x.com/AURofficial_" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5b6AfBd5184638c9c49C485c3DE5ED56269ba6Cb/logo.png b/blockchains/smartchain/assets/0x5b6AfBd5184638c9c49C485c3DE5ED56269ba6Cb/logo.png new file mode 100644 index 00000000..cf8b145a Binary files /dev/null and b/blockchains/smartchain/assets/0x5b6AfBd5184638c9c49C485c3DE5ED56269ba6Cb/logo.png differ diff --git a/blockchains/smartchain/assets/0x5b8DC8b4f438b1932Ddb2F320b4b7Ea65BA41798/info.json b/blockchains/smartchain/assets/0x5b8DC8b4f438b1932Ddb2F320b4b7Ea65BA41798/info.json new file mode 100644 index 00000000..e3e7899c --- /dev/null +++ b/blockchains/smartchain/assets/0x5b8DC8b4f438b1932Ddb2F320b4b7Ea65BA41798/info.json @@ -0,0 +1,11 @@ +{ + "name": "BDCC COIN", + "type": "BEP20", + "symbol": "BDCC", + "decimals": 18, + "website": "https://www.thebitica.com/", + "description": "Bitica Token, created in 2018, it is based on BEP-20 Smart Technology which is owned by Block Beats Company Registered in Estonia (the first country to legalise Cryptocurreny).", + "explorer": "https://bscscan.com/token/0x5b8DC8b4f438b1932Ddb2F320b4b7Ea65BA41798", + "status": "active", + "id": "0x5b8DC8b4f438b1932Ddb2F320b4b7Ea65BA41798" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5b8DC8b4f438b1932Ddb2F320b4b7Ea65BA41798/logo.png b/blockchains/smartchain/assets/0x5b8DC8b4f438b1932Ddb2F320b4b7Ea65BA41798/logo.png new file mode 100644 index 00000000..97def923 Binary files /dev/null and b/blockchains/smartchain/assets/0x5b8DC8b4f438b1932Ddb2F320b4b7Ea65BA41798/logo.png differ diff --git a/blockchains/smartchain/assets/0x5b8c1315D2a151355EA3BE9d2Cbdc4425648dCAb/info.json b/blockchains/smartchain/assets/0x5b8c1315D2a151355EA3BE9d2Cbdc4425648dCAb/info.json new file mode 100644 index 00000000..69836e0e --- /dev/null +++ b/blockchains/smartchain/assets/0x5b8c1315D2a151355EA3BE9d2Cbdc4425648dCAb/info.json @@ -0,0 +1,11 @@ +{ + "name": "StarWars", + "website": "http://starwars.limited", + "description": "Yield farm SWW on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x5b8c1315D2a151355EA3BE9d2Cbdc4425648dCAb", + "type": "BEP20", + "symbol": "SWW", + "decimals": 8, + "status": "active", + "id": "0x5b8c1315D2a151355EA3BE9d2Cbdc4425648dCAb" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5b8c1315D2a151355EA3BE9d2Cbdc4425648dCAb/logo.png b/blockchains/smartchain/assets/0x5b8c1315D2a151355EA3BE9d2Cbdc4425648dCAb/logo.png new file mode 100644 index 00000000..fa38c460 Binary files /dev/null and b/blockchains/smartchain/assets/0x5b8c1315D2a151355EA3BE9d2Cbdc4425648dCAb/logo.png differ diff --git a/blockchains/smartchain/assets/0x5baeBd214FdAe546ce39750B8363e799E2ABa21E/info.json b/blockchains/smartchain/assets/0x5baeBd214FdAe546ce39750B8363e799E2ABa21E/info.json new file mode 100644 index 00000000..f7a3c267 --- /dev/null +++ b/blockchains/smartchain/assets/0x5baeBd214FdAe546ce39750B8363e799E2ABa21E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moonery", + "type": "BEP20", + "symbol": "MNRY", + "decimals": 9, + "website": "https://moonery.io/", + "description": "NO-LOSS MULTIPLIER DEFI - EARN PASSIVE INCOME - Moonery is a community-driven, no-loss prize game and no-loss pool launchpad built on Binance Smart Chain #BSC.", + "explorer": "https://bscscan.com/token/0x5baeBd214FdAe546ce39750B8363e799E2ABa21E", + "status": "active", + "id": "0x5baeBd214FdAe546ce39750B8363e799E2ABa21E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5baeBd214FdAe546ce39750B8363e799E2ABa21E/logo.png b/blockchains/smartchain/assets/0x5baeBd214FdAe546ce39750B8363e799E2ABa21E/logo.png new file mode 100644 index 00000000..47d631d8 Binary files /dev/null and b/blockchains/smartchain/assets/0x5baeBd214FdAe546ce39750B8363e799E2ABa21E/logo.png differ diff --git a/blockchains/smartchain/assets/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30/info.json b/blockchains/smartchain/assets/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30/info.json new file mode 100644 index 00000000..bdfff47c --- /dev/null +++ b/blockchains/smartchain/assets/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30/info.json @@ -0,0 +1,49 @@ +{ + "name": "VicMove", + "type": "BEP20", + "symbol": "VIM", + "decimals": 18, + "website": "https://vicmove.com", + "description": "VicMove is a web3 fitness and lifestyle mobile app where you can earn rewards just by movement like Walking, Running and Cycling.", + "explorer": "https://bscscan.com/token/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30", + "status": "active", + "id": "0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30", + "links": [ + { + "name": "x", + "url": "https://x.com/VICMOVEOfficial" + }, + { + "name": "github", + "url": "https://github.com/VicMove/Vicmove.com" + }, + { + "name": "telegram", + "url": "https://t.me/VICMOVEOfficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/VICMOVEAnnouncement" + }, + { + "name": "discord", + "url": "https://discord.com/invite/6uVPZPvbF5" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.vicmove.com" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/vi/currencies/vicmove/" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/VICMOVE" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30/logo.png b/blockchains/smartchain/assets/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30/logo.png new file mode 100644 index 00000000..4f1c543e Binary files /dev/null and b/blockchains/smartchain/assets/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30/logo.png differ diff --git a/blockchains/smartchain/assets/0x5bf1fCE818a59660433F4C1586F4DA1ea705dE27/info.json b/blockchains/smartchain/assets/0x5bf1fCE818a59660433F4C1586F4DA1ea705dE27/info.json new file mode 100644 index 00000000..d1a06bec --- /dev/null +++ b/blockchains/smartchain/assets/0x5bf1fCE818a59660433F4C1586F4DA1ea705dE27/info.json @@ -0,0 +1,12 @@ +{ + "name": "UPONLY", + "symbol": "UPONLY", + "type": "BEP20", + "decimals": 9, + "description": "UPONLY Swap will be utilized as an IFO launchpad providing a safe and secure platform for Binance Smart Chain tokens to launch from. The UPONLY Launchpad will be via IFO (Initial Farm Offering). UPONLY will research/inspect/verify and launch each token via UPONLY's swap.", + "website": "https://uponlydefi.com/", + "website2": "https://swap.uponlydefi.com/", + "explorer": "https://bscscan.com/token/0x5bf1fCE818a59660433F4C1586F4DA1ea705dE27", + "status": "active", + "id": "0x5bf1fCE818a59660433F4C1586F4DA1ea705dE27" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5bf1fCE818a59660433F4C1586F4DA1ea705dE27/logo.png b/blockchains/smartchain/assets/0x5bf1fCE818a59660433F4C1586F4DA1ea705dE27/logo.png new file mode 100644 index 00000000..884ca5b8 Binary files /dev/null and b/blockchains/smartchain/assets/0x5bf1fCE818a59660433F4C1586F4DA1ea705dE27/logo.png differ diff --git a/blockchains/smartchain/assets/0x5c6Fb802F173Dba15E2CAada433032B1368aF59f/info.json b/blockchains/smartchain/assets/0x5c6Fb802F173Dba15E2CAada433032B1368aF59f/info.json new file mode 100644 index 00000000..25a5d79b --- /dev/null +++ b/blockchains/smartchain/assets/0x5c6Fb802F173Dba15E2CAada433032B1368aF59f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Binance Smart Chain Girl", + "type": "BEP20", + "symbol": "BSCGIRL", + "decimals": 8, + "website": "https://bscgirl.site/", + "description": "BSCGIRL is This project aims to implement a cross-chain bridge with other chains, a DeFi platform, and an NFT platform.", + "explorer": "https://bscscan.com/token/0x5c6Fb802F173Dba15E2CAada433032B1368aF59f", + "status": "active", + "id": "0x5c6Fb802F173Dba15E2CAada433032B1368aF59f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5c6Fb802F173Dba15E2CAada433032B1368aF59f/logo.png b/blockchains/smartchain/assets/0x5c6Fb802F173Dba15E2CAada433032B1368aF59f/logo.png new file mode 100644 index 00000000..c272aa4b Binary files /dev/null and b/blockchains/smartchain/assets/0x5c6Fb802F173Dba15E2CAada433032B1368aF59f/logo.png differ diff --git a/blockchains/smartchain/assets/0x5c792740a7d4684E75e5551Fb239f512Fe0d47d0/info.json b/blockchains/smartchain/assets/0x5c792740a7d4684E75e5551Fb239f512Fe0d47d0/info.json new file mode 100644 index 00000000..37148fbd --- /dev/null +++ b/blockchains/smartchain/assets/0x5c792740a7d4684E75e5551Fb239f512Fe0d47d0/info.json @@ -0,0 +1,29 @@ +{ + "name": "MRC Token", + "website": "https://marco.travel/mrc-token/", + "description": "Marco token is hosted by Binance Smart Chain, and its sole purpose is to function as a form of currency, storing value over time and allowing businesses to account for and pay for services..", + "explorer": "https://bscscan.com/token/0x5c792740a7d4684e75e5551fb239f512fe0d47d0", + "type": "BEP20", + "symbol": "MRC", + "decimals": 18, + "status": "active", + "id": "0x5c792740a7d4684E75e5551Fb239f512Fe0d47d0", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/marco.travelll" + }, + { + "name": "x", + "url": "https://x.com/Marco___travel" + }, + { + "name": "discord", + "url": "https://discord.com/invite/S76sGk5gTA" + }, + { + "name": "telegram", + "url": "https://t.me/marrco_travel" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5c792740a7d4684E75e5551Fb239f512Fe0d47d0/logo.png b/blockchains/smartchain/assets/0x5c792740a7d4684E75e5551Fb239f512Fe0d47d0/logo.png new file mode 100644 index 00000000..85fe607c Binary files /dev/null and b/blockchains/smartchain/assets/0x5c792740a7d4684E75e5551Fb239f512Fe0d47d0/logo.png differ diff --git a/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/info.json b/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/info.json new file mode 100644 index 00000000..cdc5bdbb --- /dev/null +++ b/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/info.json @@ -0,0 +1,25 @@ +{ + "name": "Venus MATIC", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + } + ], + "explorer": "https://bscscan.com/token/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8", + "type": "BEP20", + "symbol": "vMATIC", + "decimals": 8, + "status": "active", + "id": "0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/logo.png b/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/logo.png new file mode 100644 index 00000000..27486799 Binary files /dev/null and b/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/logo.png differ diff --git a/blockchains/smartchain/assets/0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8/info.json b/blockchains/smartchain/assets/0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8/info.json new file mode 100644 index 00000000..ec3ac86b --- /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 00000000..11caa709 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 new file mode 100644 index 00000000..1963f8f0 --- /dev/null +++ b/blockchains/smartchain/assets/0x5cedD85E5C34Ef894380fb027FA5D2C944ea28e0/info.json @@ -0,0 +1,33 @@ +{ + "name": "MiniFlokiShiba", + "website": "https://www.miniflokishiba.io/", + "description": "A Proprietary, Hyper Deflationary Token! MFLOKI token holders are not only rewarded through static rewards but also through true automatic burns every trade from within the liquidity pool!", + "explorer": "https://bscscan.com/token/0x5cedd85e5c34ef894380fb027fa5d2c944ea28e0", + "type": "BEP20", + "symbol": "MFLOKI", + "decimals": 9, + "status": "active", + "id": "0x5cedD85E5C34Ef894380fb027FA5D2C944ea28e0", + "links": [ + { + "name": "x", + "url": "https://x.com/miniflokishiba" + }, + { + "name": "telegram", + "url": "https://t.me/MiniFlokiShibaOfficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/miniflokishiba_news" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mini-floki-shiba" + }, + { + "name": "github", + "url": "https://github.com/MiniFlokiShiba" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5cedD85E5C34Ef894380fb027FA5D2C944ea28e0/logo.png b/blockchains/smartchain/assets/0x5cedD85E5C34Ef894380fb027FA5D2C944ea28e0/logo.png new file mode 100644 index 00000000..c80125bd Binary files /dev/null and b/blockchains/smartchain/assets/0x5cedD85E5C34Ef894380fb027FA5D2C944ea28e0/logo.png differ diff --git a/blockchains/smartchain/assets/0x5d33E26336C445c71F206dd18B64cE11C2eeE3f0/info.json b/blockchains/smartchain/assets/0x5d33E26336C445c71F206dd18B64cE11C2eeE3f0/info.json new file mode 100644 index 00000000..743b6b6d --- /dev/null +++ b/blockchains/smartchain/assets/0x5d33E26336C445c71F206dd18B64cE11C2eeE3f0/info.json @@ -0,0 +1,53 @@ +{ + "name": "NFTStyle", + "type": "BEP20", + "symbol": "NFTSTYLE", + "decimals": 18, + "website": "https://www.nft-style.com/", + "description": "Future Fashion is shaped by unstoppable nft technology. Nft-Style; It will be the first nft fashion stop where fashion icons, stylists, world brands and amateur artists will guide fashion. The future will now be felt much more closely.Who knows, maybe in the very near future your fashion design will become a unique icon in the world of Fortnite.", + "explorer": "https://bscscan.com/token/0x5d33E26336C445c71F206dd18B64cE11C2eeE3f0", + "status": "active", + "id": "0x5d33E26336C445c71F206dd18B64cE11C2eeE3f0", + "links": [ + { + "name": "x", + "url": "https://x.com/NFTStyleToken" + }, + { + "name": "github", + "url": "https://github.com/developernftstyle" + }, + { + "name": "telegram", + "url": "https://t.me/nftstyletoken" + }, + { + "name": "whitepaper", + "url": "https://www.nft-style.com/file/wp.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UChIe0f7Oiqj6Sb4dbtPa8wg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nftstyle/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nftstyle" + }, + { + "name": "telegram_news", + "url": "https://t.me/nftstylenews" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/NFTStyle/" + }, + { + "name": "medium", + "url": "https://medium.com/@nftstyle" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5d33E26336C445c71F206dd18B64cE11C2eeE3f0/logo.png b/blockchains/smartchain/assets/0x5d33E26336C445c71F206dd18B64cE11C2eeE3f0/logo.png new file mode 100644 index 00000000..3f99c671 Binary files /dev/null and b/blockchains/smartchain/assets/0x5d33E26336C445c71F206dd18B64cE11C2eeE3f0/logo.png differ diff --git a/blockchains/smartchain/assets/0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F/info.json b/blockchains/smartchain/assets/0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F/info.json new file mode 100644 index 00000000..d6ab4a38 --- /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 00000000..922d6398 Binary files /dev/null and b/blockchains/smartchain/assets/0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F/logo.png differ diff --git a/blockchains/smartchain/assets/0x5d3AfBA1924aD748776E4Ca62213BF7acf39d773/info.json b/blockchains/smartchain/assets/0x5d3AfBA1924aD748776E4Ca62213BF7acf39d773/info.json new file mode 100644 index 00000000..927811b0 --- /dev/null +++ b/blockchains/smartchain/assets/0x5d3AfBA1924aD748776E4Ca62213BF7acf39d773/info.json @@ -0,0 +1,12 @@ +{ + "name": "KIWIGO", + "website": "https://kiwigo.app", + "description": "KGO is the Token of Kiwigo.", + "explorer": "https://bscscan.com/token/0x5d3afba1924ad748776e4ca62213bf7acf39d773", + "research": "https://www.kiwigo.app/kgo-kiwigo-crypto-currency/", + "type": "BEP20", + "symbol": "KGO", + "decimals": 5, + "status": "active", + "id": "0x5d3AfBA1924aD748776E4Ca62213BF7acf39d773" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5d3AfBA1924aD748776E4Ca62213BF7acf39d773/logo.png b/blockchains/smartchain/assets/0x5d3AfBA1924aD748776E4Ca62213BF7acf39d773/logo.png new file mode 100644 index 00000000..5067be60 Binary files /dev/null and b/blockchains/smartchain/assets/0x5d3AfBA1924aD748776E4Ca62213BF7acf39d773/logo.png differ diff --git a/blockchains/smartchain/assets/0x5d6CDf1b7F7C35EAE688E4C563b6f16eeAC2cB6b/info.json b/blockchains/smartchain/assets/0x5d6CDf1b7F7C35EAE688E4C563b6f16eeAC2cB6b/info.json new file mode 100644 index 00000000..2705742e --- /dev/null +++ b/blockchains/smartchain/assets/0x5d6CDf1b7F7C35EAE688E4C563b6f16eeAC2cB6b/info.json @@ -0,0 +1,11 @@ +{ + "name": "SaylorMoon", + "website": "https://saylormoon.army", + "description": "SMOON is a community driven token.", + "explorer": "https://bscscan.com/token/0x5d6cdf1b7f7c35eae688e4c563b6f16eeac2cb6b", + "type": "BEP20", + "symbol": "SMOON", + "decimals": 9, + "status": "active", + "id": "0x5d6CDf1b7F7C35EAE688E4C563b6f16eeAC2cB6b" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5d6CDf1b7F7C35EAE688E4C563b6f16eeAC2cB6b/logo.png b/blockchains/smartchain/assets/0x5d6CDf1b7F7C35EAE688E4C563b6f16eeAC2cB6b/logo.png new file mode 100644 index 00000000..18e7f848 Binary files /dev/null and b/blockchains/smartchain/assets/0x5d6CDf1b7F7C35EAE688E4C563b6f16eeAC2cB6b/logo.png differ diff --git a/blockchains/smartchain/assets/0x5d8dA1417E3565eb02C9ca8cC588bE5D8F65b1c5/info.json b/blockchains/smartchain/assets/0x5d8dA1417E3565eb02C9ca8cC588bE5D8F65b1c5/info.json new file mode 100644 index 00000000..7fd50fc9 --- /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 00000000..f2c4f7ad 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 new file mode 100644 index 00000000..85ab1770 --- /dev/null +++ b/blockchains/smartchain/assets/0x5d96991648d22935Bdf6c7064B65c3c93F82Aa61/info.json @@ -0,0 +1,29 @@ +{ + "name": "Hero Floki", + "website": "https://herofloki.com", + "description": "HERO pays CAKE and BUSD his long-term holders! Every Hours Hero holders can claim BUSD & CAKE from the Hero Vault!", + "explorer": "https://bscscan.com/token/0x5d96991648d22935bdf6c7064b65c3c93f82aa61", + "symbol": "HERO", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x5d96991648d22935Bdf6c7064B65c3c93F82Aa61", + "links": [ + { + "name": "x", + "url": "https://x.com/herofloki" + }, + { + "name": "facebook", + "url": "https://facebook.com/HeroFloki2021" + }, + { + "name": "blog", + "url": "https://herofloki.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/heroflokiglobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5d96991648d22935Bdf6c7064B65c3c93F82Aa61/logo.png b/blockchains/smartchain/assets/0x5d96991648d22935Bdf6c7064B65c3c93F82Aa61/logo.png new file mode 100644 index 00000000..e360755b Binary files /dev/null and b/blockchains/smartchain/assets/0x5d96991648d22935Bdf6c7064B65c3c93F82Aa61/logo.png differ diff --git a/blockchains/smartchain/assets/0x5de3939b2F811A61d830E6F52d13B066881412ab/info.json b/blockchains/smartchain/assets/0x5de3939b2F811A61d830E6F52d13B066881412ab/info.json new file mode 100644 index 00000000..f79c9185 --- /dev/null +++ b/blockchains/smartchain/assets/0x5de3939b2F811A61d830E6F52d13B066881412ab/info.json @@ -0,0 +1,45 @@ +{ + "name": "XPR Network", + "type": "BEP20", + "symbol": "XPR", + "decimals": 4, + "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 buy crypto, and use crypto seamlessly.", + "explorer": "https://bscscan.com/token/0x5de3939b2F811A61d830E6F52d13B066881412ab", + "status": "active", + "id": "0x5de3939b2F811A61d830E6F52d13B066881412ab", + "links": [ + { + "name": "github", + "url": "https://github.com/ProtonProtocol" + }, + { + "name": "x", + "url": "https://x.com/protonxpr" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ProtonChain/" + }, + { + "name": "telegram", + "url": "https://t.me/protonxpr/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/B2QDmgf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/proton/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/proton" + }, + { + "name": "blog", + "url": "https://blog.protonchain.com/" + } + ] +} diff --git a/blockchains/smartchain/assets/0x5de3939b2F811A61d830E6F52d13B066881412ab/logo.png b/blockchains/smartchain/assets/0x5de3939b2F811A61d830E6F52d13B066881412ab/logo.png new file mode 100644 index 00000000..99c049e4 Binary files /dev/null and b/blockchains/smartchain/assets/0x5de3939b2F811A61d830E6F52d13B066881412ab/logo.png differ diff --git a/blockchains/smartchain/assets/0x5dfb6437489235fe08a8F706Bb261938f4E2D849/info.json b/blockchains/smartchain/assets/0x5dfb6437489235fe08a8F706Bb261938f4E2D849/info.json new file mode 100644 index 00000000..cca7a3ef --- /dev/null +++ b/blockchains/smartchain/assets/0x5dfb6437489235fe08a8F706Bb261938f4E2D849/info.json @@ -0,0 +1,33 @@ +{ + "name": "Shibosu", + "type": "BEP20", + "symbol": "Shibosu", + "decimals": 9, + "website": "https://www.shibosu.live", + "description": "Shibosu is the Japanese Gifting Shiba that will take over the Shiba world by storm. Shibosu is a mix between Shiba and Kabosu.", + "explorer": "https://bscscan.com/token/0x5dfb6437489235fe08a8F706Bb261938f4E2D849", + "status": "active", + "id": "0x5dfb6437489235fe08a8F706Bb261938f4E2D849", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shibosu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shibosu" + }, + { + "name": "telegram", + "url": "https://t.me/shibosu" + }, + { + "name": "x", + "url": "https://x.com/ShibosuBSC" + }, + { + "name": "facebook", + "url": "https://facebook.com/shibosuofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5dfb6437489235fe08a8F706Bb261938f4E2D849/logo.png b/blockchains/smartchain/assets/0x5dfb6437489235fe08a8F706Bb261938f4E2D849/logo.png new file mode 100644 index 00000000..77096419 Binary files /dev/null and b/blockchains/smartchain/assets/0x5dfb6437489235fe08a8F706Bb261938f4E2D849/logo.png differ diff --git a/blockchains/smartchain/assets/0x5e24DB6DE4C21E2C8f9E81bAcfCedFBAC2DeE4aa/info.json b/blockchains/smartchain/assets/0x5e24DB6DE4C21E2C8f9E81bAcfCedFBAC2DeE4aa/info.json new file mode 100644 index 00000000..3fb813d0 --- /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 00000000..34299b5b Binary files /dev/null and b/blockchains/smartchain/assets/0x5e24DB6DE4C21E2C8f9E81bAcfCedFBAC2DeE4aa/logo.png differ diff --git a/blockchains/smartchain/assets/0x5e90253fbae4Dab78aa351f4E6fed08A64AB5590/info.json b/blockchains/smartchain/assets/0x5e90253fbae4Dab78aa351f4E6fed08A64AB5590/info.json new file mode 100644 index 00000000..6485c981 --- /dev/null +++ b/blockchains/smartchain/assets/0x5e90253fbae4Dab78aa351f4E6fed08A64AB5590/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bonfire", + "type": "BEP20", + "symbol": "BONFIRE", + "decimals": 9, + "website": "https://www.bonfiretoken.co/", + "description": "Bonfire is a frictionless, yield-generating contract that allows you to seek shelter amidst the chaos of the market.", + "explorer": "https://bscscan.com/token/0x5e90253fbae4dab78aa351f4e6fed08a64ab5590", + "status": "active", + "id": "0x5e90253fbae4Dab78aa351f4E6fed08A64AB5590" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5e90253fbae4Dab78aa351f4E6fed08A64AB5590/logo.png b/blockchains/smartchain/assets/0x5e90253fbae4Dab78aa351f4E6fed08A64AB5590/logo.png new file mode 100644 index 00000000..a109ca9e Binary files /dev/null and b/blockchains/smartchain/assets/0x5e90253fbae4Dab78aa351f4E6fed08A64AB5590/logo.png differ diff --git a/blockchains/smartchain/assets/0x5eF5994fA33FF4eB6c82d51ee1DC145c546065Bd/info.json b/blockchains/smartchain/assets/0x5eF5994fA33FF4eB6c82d51ee1DC145c546065Bd/info.json new file mode 100644 index 00000000..cb407df1 --- /dev/null +++ b/blockchains/smartchain/assets/0x5eF5994fA33FF4eB6c82d51ee1DC145c546065Bd/info.json @@ -0,0 +1,29 @@ +{ + "name": "HyperAlloy", + "website": "https://hyperjump.fi/", + "description": "ALLOY is the farm token for the HyperJump Asteroid Field (yield farm). The HyperJump team is the continuation of THUGS one of the earliest successes on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x5eF5994fA33FF4eB6c82d51ee1DC145c546065Bd", + "type": "BEP20", + "symbol": "ALLOY", + "decimals": 18, + "status": "active", + "id": "0x5eF5994fA33FF4eB6c82d51ee1DC145c546065Bd", + "links": [ + { + "name": "x", + "url": "https://x.com/HyperJumpBSC" + }, + { + "name": "telegram", + "url": "https://t.me/hyperjumpbsc" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AJDqFTP" + }, + { + "name": "medium", + "url": "https://hyperjumpbsc.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5eF5994fA33FF4eB6c82d51ee1DC145c546065Bd/logo.png b/blockchains/smartchain/assets/0x5eF5994fA33FF4eB6c82d51ee1DC145c546065Bd/logo.png new file mode 100644 index 00000000..01546f71 Binary files /dev/null and b/blockchains/smartchain/assets/0x5eF5994fA33FF4eB6c82d51ee1DC145c546065Bd/logo.png differ diff --git a/blockchains/smartchain/assets/0x5ecC352C4640f1d26BD231dbBd171f40f7d0Eec6/info.json b/blockchains/smartchain/assets/0x5ecC352C4640f1d26BD231dbBd171f40f7d0Eec6/info.json new file mode 100644 index 00000000..75558128 --- /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 00000000..760e219c Binary files /dev/null and b/blockchains/smartchain/assets/0x5ecC352C4640f1d26BD231dbBd171f40f7d0Eec6/logo.png differ diff --git a/blockchains/smartchain/assets/0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350/info.json b/blockchains/smartchain/assets/0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350/info.json new file mode 100644 index 00000000..ef34532b --- /dev/null +++ b/blockchains/smartchain/assets/0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350/info.json @@ -0,0 +1,35 @@ +{ + "name": "Binance-Peg Maker", + "website": "https://makerdao.com", + "description": "Maker is a utility token, governance token and recapitalization resource of the Maker system.", + "explorer": "https://bscscan.com/token/0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350", + "research": "https://research.binance.com/en/projects/maker", + "type": "BEP20", + "symbol": "MKR", + "decimals": 18, + "status": "active", + "id": "0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350", + "tags": [ + "defi", + "governance", + "binance-peg" + ], + "links": [ + { + "name": "blog", + "url": "https://blog.makerdao.com/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/assets/documents/purple.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MakerDAO/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/maker/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350/logo.png b/blockchains/smartchain/assets/0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350/logo.png new file mode 100644 index 00000000..7b7d27e4 Binary files /dev/null and b/blockchains/smartchain/assets/0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350/logo.png differ diff --git a/blockchains/smartchain/assets/0x5f2d37192576a6804F44722eB828E280D5FB43Dc/info.json b/blockchains/smartchain/assets/0x5f2d37192576a6804F44722eB828E280D5FB43Dc/info.json new file mode 100644 index 00000000..cf271af8 --- /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 00000000..12335ab8 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 new file mode 100644 index 00000000..dcf0832e --- /dev/null +++ b/blockchains/smartchain/assets/0x5f4Bde007Dc06b867f86EBFE4802e34A1fFEEd63/info.json @@ -0,0 +1,53 @@ +{ + "name": "Highstreet Token", + "type": "BEP20", + "symbol": "HIGH", + "decimals": 18, + "website": "https://www.highstreet.market/", + "description": "Inspired by classics from Nintendo, encouraged by a shared addiction in MMOs, and finally consolidated by our team’s 6 years of experience serving retail customers with VR, Highstreet creates the Shopify experience on an MMORPG for brands while presenting a true path to the Metaverse for players.", + "explorer": "https://bscscan.com/token/0x5f4Bde007Dc06b867f86EBFE4802e34A1fFEEd63", + "status": "active", + "id": "0x5f4Bde007Dc06b867f86EBFE4802e34A1fFEEd63", + "links": [ + { + "name": "x", + "url": "https://x.com/highstreetworld " + }, + { + "name": "github", + "url": "https://github.com/TravisBuilds/HighStreet" + }, + { + "name": "telegram", + "url": "https://t.me/highstreetworld" + }, + { + "name": "discord", + "url": "https://discord.com/invite/439FhsrMu2" + }, + { + "name": "whitepaper", + "url": "https://docsend.com/view/czjyuggsatn8hpj5" + }, + { + "name": "facebook", + "url": "https://facebook.com/highstreetmkt" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCzXzF5_1RQupiUG0pVGJZmA" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/highstreet/project-info/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/highstreet" + }, + { + "name": "medium", + "url": "https://medium.com/highstreet-market " + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5f4Bde007Dc06b867f86EBFE4802e34A1fFEEd63/logo.png b/blockchains/smartchain/assets/0x5f4Bde007Dc06b867f86EBFE4802e34A1fFEEd63/logo.png new file mode 100644 index 00000000..6042f5a5 Binary files /dev/null and b/blockchains/smartchain/assets/0x5f4Bde007Dc06b867f86EBFE4802e34A1fFEEd63/logo.png differ diff --git a/blockchains/smartchain/assets/0x5f50411CDE3eEC27b0eaC21691b4e500c69a5a2e/info.json b/blockchains/smartchain/assets/0x5f50411CDE3eEC27b0eaC21691b4e500c69a5a2e/info.json new file mode 100644 index 00000000..a7788b99 --- /dev/null +++ b/blockchains/smartchain/assets/0x5f50411CDE3eEC27b0eaC21691b4e500c69a5a2e/info.json @@ -0,0 +1,32 @@ +{ + "name": "Singularity", + "website": "https://www.singularity.gold/", + "description": "Singularity is a metaverse gaming world of universe exploration and adventure.", + "explorer": "https://bscscan.com/token/0x5f50411CDE3eEC27b0eaC21691b4e500c69a5a2e", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/singularitysgly" + }, + { + "name": "telegram", + "url": "https://t.me/Singularityverse" + }, + { + "name": "github", + "url": "https://github.com/singularitySGLY" + }, + { + "name": "facebook", + "url": "https://facebook.com/profile.php?id=100074305448608" + } + ], + "symbol": "SGLY", + "decimals": 18, + "status": "active", + "id": "0x5f50411CDE3eEC27b0eaC21691b4e500c69a5a2e", + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5f50411CDE3eEC27b0eaC21691b4e500c69a5a2e/logo.png b/blockchains/smartchain/assets/0x5f50411CDE3eEC27b0eaC21691b4e500c69a5a2e/logo.png new file mode 100644 index 00000000..40eb368c Binary files /dev/null and b/blockchains/smartchain/assets/0x5f50411CDE3eEC27b0eaC21691b4e500c69a5a2e/logo.png differ diff --git a/blockchains/smartchain/assets/0x5f588EfAf8eB57e3837486e834fC5a4E07768D98/info.json b/blockchains/smartchain/assets/0x5f588EfAf8eB57e3837486e834fC5a4E07768D98/info.json new file mode 100644 index 00000000..ebfdc637 --- /dev/null +++ b/blockchains/smartchain/assets/0x5f588EfAf8eB57e3837486e834fC5a4E07768D98/info.json @@ -0,0 +1,28 @@ +{ + "name": "Binance Wrapped MVL", + "type": "BEP20", + "symbol": "bMVL", + "decimals": 18, + "website": "https://mvlchain.io/", + "description": "MVLChain aims to build an incentive-based blockchain mobility ecosystem. MVL Ecosystem breaks away current centralized system. Ecosystem participants get fairly rewarded for data contributions and uses in all-connected mobility services.", + "explorer": "https://bscscan.com/token/0x5f588efaf8eb57e3837486e834fc5a4e07768d98", + "status": "active", + "id": "0x5f588EfAf8eB57e3837486e834fC5a4E07768D98", + "links": [ + { + "name": "x", + "url": "https://x.com/mvlchain" + }, + { + "name": "telegram", + "url": "https://t.me/mvlchain_en" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mvl/" + } + ], + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5f588EfAf8eB57e3837486e834fC5a4E07768D98/logo.png b/blockchains/smartchain/assets/0x5f588EfAf8eB57e3837486e834fC5a4E07768D98/logo.png new file mode 100644 index 00000000..6091decc Binary files /dev/null and b/blockchains/smartchain/assets/0x5f588EfAf8eB57e3837486e834fC5a4E07768D98/logo.png differ diff --git a/blockchains/smartchain/assets/0x5fA699c0c1319b8D86489AF77dFDe4Fa97B47DF8/info.json b/blockchains/smartchain/assets/0x5fA699c0c1319b8D86489AF77dFDe4Fa97B47DF8/info.json new file mode 100644 index 00000000..f13c6e36 --- /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 00000000..ea300600 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 00000000..4009e81c --- /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 new file mode 100644 index 00000000..b3d24c2a --- /dev/null +++ b/blockchains/smartchain/assets/0x5fE80d2CD054645b9419657d3d10d26391780A7B/info.json @@ -0,0 +1,25 @@ +{ + "name": "MCB", + "website": "https://mcdex.io", + "description": "MCDEX is the first fully-permissionless DEX for trading perpetual contracts, powered by MCDEX's revolutionary AMM technology", + "explorer": "https://bscscan.com/token/0x5fE80d2CD054645b9419657d3d10d26391780A7B", + "type": "BEP20", + "symbol": "MCB", + "decimals": 18, + "status": "active", + "id": "0x5fE80d2CD054645b9419657d3d10d26391780A7B", + "links": [ + { + "name": "x", + "url": "https://x.com/MonteCarloDEX" + }, + { + "name": "telegram", + "url": "https://t.me/Mcdex" + }, + { + "name": "medium", + "url": "https://mcdex.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5fE80d2CD054645b9419657d3d10d26391780A7B/logo.png b/blockchains/smartchain/assets/0x5fE80d2CD054645b9419657d3d10d26391780A7B/logo.png new file mode 100644 index 00000000..ee172cac Binary files /dev/null and b/blockchains/smartchain/assets/0x5fE80d2CD054645b9419657d3d10d26391780A7B/logo.png differ diff --git a/blockchains/smartchain/assets/0x5fEAD99998788AC1BCA768796483d899F1Aef4c4/info.json b/blockchains/smartchain/assets/0x5fEAD99998788AC1BCA768796483d899F1Aef4c4/info.json new file mode 100644 index 00000000..fa290fda --- /dev/null +++ b/blockchains/smartchain/assets/0x5fEAD99998788AC1BCA768796483d899F1Aef4c4/info.json @@ -0,0 +1,21 @@ +{ + "name": "JINDO INU", + "type": "BEP20", + "symbol": "JIND", + "decimals": 9, + "website": "https://www.jindoinu.info", + "description": "This token will be used by JINDO SWAP and JINDO NFT in the future. JINDO SWAP is a SWAP built on the BSC chain, and if it provides liquidity, you can receive JINDO FEED tokens. JINDO FEED tokens will be issued with the launch of the SWAP and will be distributed to 100% liquidity providers.", + "explorer": "https://bscscan.com/token/0x5fEAD99998788AC1BCA768796483d899F1Aef4c4", + "status": "active", + "id": "0x5fEAD99998788AC1BCA768796483d899F1Aef4c4", + "links": [ + { + "name": "x", + "url": "https://x.com/JINDOFARM0" + }, + { + "name": "telegram", + "url": "https://t.me/JINDOINU2" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5fEAD99998788AC1BCA768796483d899F1Aef4c4/logo.png b/blockchains/smartchain/assets/0x5fEAD99998788AC1BCA768796483d899F1Aef4c4/logo.png new file mode 100644 index 00000000..512df218 Binary files /dev/null and b/blockchains/smartchain/assets/0x5fEAD99998788AC1BCA768796483d899F1Aef4c4/logo.png differ diff --git a/blockchains/smartchain/assets/0x5fdfaFd107Fc267bD6d6B1C08fcafb8d31394ba1/info.json b/blockchains/smartchain/assets/0x5fdfaFd107Fc267bD6d6B1C08fcafb8d31394ba1/info.json new file mode 100644 index 00000000..896aebb3 --- /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 00000000..cacfb044 Binary files /dev/null and b/blockchains/smartchain/assets/0x5fdfaFd107Fc267bD6d6B1C08fcafb8d31394ba1/logo.png differ diff --git a/blockchains/smartchain/assets/0x6001600A144166e14075963eE9bF03e194f638Fe/info.json b/blockchains/smartchain/assets/0x6001600A144166e14075963eE9bF03e194f638Fe/info.json new file mode 100644 index 00000000..a7a9528c --- /dev/null +++ b/blockchains/smartchain/assets/0x6001600A144166e14075963eE9bF03e194f638Fe/info.json @@ -0,0 +1,11 @@ +{ + "name": "KissMyMoon", + "website": "https://kissmymoon.finance/", + "description": "KissMyMoon protocol is the world’s first deflationary Token with the anti-whale tier system.", + "explorer": "https://bscscan.com/token/0x6001600A144166e14075963eE9bF03e194f638Fe", + "type": "BEP20", + "symbol": "KissMyMoon", + "decimals": 9, + "status": "active", + "id": "0x6001600A144166e14075963eE9bF03e194f638Fe" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6001600A144166e14075963eE9bF03e194f638Fe/logo.png b/blockchains/smartchain/assets/0x6001600A144166e14075963eE9bF03e194f638Fe/logo.png new file mode 100644 index 00000000..a0660550 Binary files /dev/null and b/blockchains/smartchain/assets/0x6001600A144166e14075963eE9bF03e194f638Fe/logo.png differ diff --git a/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/info.json b/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/info.json new file mode 100644 index 00000000..acf13edd --- /dev/null +++ b/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/info.json @@ -0,0 +1,36 @@ +{ + "name": "MarsDAO", + "type": "BEP20", + "symbol": "MDAO", + "decimals": 18, + "website": "https://daomars.com", + "description": "MarsDAO is a multifunctional decentralized platform designed for the use of crypto tools, which operates based on a DAO principle, on its native MDAO token.", + "explorer": "https://bscscan.com/token/0x60322971a672B81BccE5947706D22c19dAeCf6Fb", + "status": "active", + "id": "0x60322971a672B81BccE5947706D22c19dAeCf6Fb", + "links": [ + { + "name": "x", + "url": "https://x.com/0xMarsDAO" + }, + { + "name": "github", + "url": "https://github.com/MARS-DAO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/marsdao" + }, + { + "name": "telegram", + "url": "https://t.me/MarsDAO_channel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marsdao/" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/logo.png b/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/logo.png new file mode 100644 index 00000000..cddbe124 Binary files /dev/null and b/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/logo.png differ diff --git a/blockchains/smartchain/assets/0x603c7f932ED1fc6575303D8Fb018fDCBb0f39a95/info.json b/blockchains/smartchain/assets/0x603c7f932ED1fc6575303D8Fb018fDCBb0f39a95/info.json new file mode 100644 index 00000000..b95f7239 --- /dev/null +++ b/blockchains/smartchain/assets/0x603c7f932ED1fc6575303D8Fb018fDCBb0f39a95/info.json @@ -0,0 +1,53 @@ +{ + "name": "Ape Swap Finance Banana", + "website": "https://apeswap.finance", + "description": "ApeSwap is an Automated Market Maker, Yield Farming, and Staking platform on Binance Smart Chain. ApeSwap was built by DeFi Apes, for DeFi Apes. We have a dedicated team of experienced monkeys, who have been in the crypto space for years.", + "explorer": "https://bscscan.com/token/0x603c7f932ED1fc6575303D8Fb018fDCBb0f39a95", + "type": "BEP20", + "symbol": "BANANA", + "decimals": 18, + "status": "active", + "id": "0x603c7f932ED1fc6575303D8Fb018fDCBb0f39a95", + "links": [ + { + "name": "github", + "url": "https://github.com/ApeSwapFinance" + }, + { + "name": "docs", + "url": "https://apeswap.gitbook.io/apeswap-finance/" + }, + { + "name": "x", + "url": "https://x.com/ape_swap" + }, + { + "name": "telegram", + "url": "https://t.me/ape_swap" + }, + { + "name": "telegram_news", + "url": "https://t.me/ape_swap_news" + }, + { + "name": "medium", + "url": "https://ape-swap.medium.com/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AbVxfGRCSd/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Apeswap/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apeswap-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/apeswap-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x603c7f932ED1fc6575303D8Fb018fDCBb0f39a95/logo.png b/blockchains/smartchain/assets/0x603c7f932ED1fc6575303D8Fb018fDCBb0f39a95/logo.png new file mode 100644 index 00000000..8921686f Binary files /dev/null and b/blockchains/smartchain/assets/0x603c7f932ED1fc6575303D8Fb018fDCBb0f39a95/logo.png differ diff --git a/blockchains/smartchain/assets/0x604D105f2F1f68641a000f03b5DC557bFFfdB8FE/info.json b/blockchains/smartchain/assets/0x604D105f2F1f68641a000f03b5DC557bFFfdB8FE/info.json new file mode 100644 index 00000000..1b108dac --- /dev/null +++ b/blockchains/smartchain/assets/0x604D105f2F1f68641a000f03b5DC557bFFfdB8FE/info.json @@ -0,0 +1,11 @@ +{ + "name": "SoupSwap", + "type": "BEP20", + "symbol": "SPW", + "decimals": 18, + "website": "https://soupsswap.io/", + "description": "SoupSwap Is Multi-Ecosystems Decentralized Finance Platform", + "explorer": "https://bscscan.com/token/0x604D105f2F1f68641a000f03b5DC557bFFfdB8FE", + "status": "active", + "id": "0x604D105f2F1f68641a000f03b5DC557bFFfdB8FE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x604D105f2F1f68641a000f03b5DC557bFFfdB8FE/logo.png b/blockchains/smartchain/assets/0x604D105f2F1f68641a000f03b5DC557bFFfdB8FE/logo.png new file mode 100644 index 00000000..bd3ea896 Binary files /dev/null and b/blockchains/smartchain/assets/0x604D105f2F1f68641a000f03b5DC557bFFfdB8FE/logo.png differ diff --git a/blockchains/smartchain/assets/0x60531D9DC6Ca16AC18d43588d2845d69f8A8aA59/info.json b/blockchains/smartchain/assets/0x60531D9DC6Ca16AC18d43588d2845d69f8A8aA59/info.json new file mode 100644 index 00000000..a585cbd6 --- /dev/null +++ b/blockchains/smartchain/assets/0x60531D9DC6Ca16AC18d43588d2845d69f8A8aA59/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitgatti", + "type": "BEP20", + "symbol": "BITGATTI", + "decimals": 9, + "website": "https://bitgatti.com", + "description": "A hybrid coin created to transform crypto and car enthusiasts into the most interactive and influential community on the planet. A deflationary, static yield farming, automatic liquidity generating token on the Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x60531D9DC6Ca16AC18d43588d2845d69f8A8aA59", + "status": "active", + "id": "0x60531D9DC6Ca16AC18d43588d2845d69f8A8aA59" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x60531D9DC6Ca16AC18d43588d2845d69f8A8aA59/logo.png b/blockchains/smartchain/assets/0x60531D9DC6Ca16AC18d43588d2845d69f8A8aA59/logo.png new file mode 100644 index 00000000..127206b7 Binary files /dev/null and b/blockchains/smartchain/assets/0x60531D9DC6Ca16AC18d43588d2845d69f8A8aA59/logo.png differ diff --git a/blockchains/smartchain/assets/0x60582805620370818967B32dC8Cd709195B72fab/info.json b/blockchains/smartchain/assets/0x60582805620370818967B32dC8Cd709195B72fab/info.json new file mode 100644 index 00000000..4aa30a7f --- /dev/null +++ b/blockchains/smartchain/assets/0x60582805620370818967B32dC8Cd709195B72fab/info.json @@ -0,0 +1,11 @@ +{ + "name": "FireInu", + "symbol": "FINU", + "type": "BEP20", + "decimals": 18, + "description": "FireInu is a cute burning Inu, ready to take the BSC and ETH markets by the leash. Dynamic Auto-Liquidity tokenomics for anti-dumping with a tiered tax system. Anti-whale mechanisms, flexible contract, and anti-abuse built in.", + "website": "https://www.fireinu.com/", + "explorer": "https://bscscan.com/token/0x60582805620370818967B32dC8Cd709195B72fab", + "status": "active", + "id": "0x60582805620370818967B32dC8Cd709195B72fab" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x60582805620370818967B32dC8Cd709195B72fab/logo.png b/blockchains/smartchain/assets/0x60582805620370818967B32dC8Cd709195B72fab/logo.png new file mode 100644 index 00000000..62abc884 Binary files /dev/null and b/blockchains/smartchain/assets/0x60582805620370818967B32dC8Cd709195B72fab/logo.png differ diff --git a/blockchains/smartchain/assets/0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70/info.json b/blockchains/smartchain/assets/0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70/info.json new file mode 100644 index 00000000..b0af21e1 --- /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 00000000..04eeaf4e Binary files /dev/null and b/blockchains/smartchain/assets/0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70/logo.png differ diff --git a/blockchains/smartchain/assets/0x6067652Fe687Aa221B6F86F398aF4d0fe9bF45E3/info.json b/blockchains/smartchain/assets/0x6067652Fe687Aa221B6F86F398aF4d0fe9bF45E3/info.json new file mode 100644 index 00000000..bb04670c --- /dev/null +++ b/blockchains/smartchain/assets/0x6067652Fe687Aa221B6F86F398aF4d0fe9bF45E3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vain", + "type": "BEP20", + "symbol": "Vain", + "decimals": 9, + "website": "https://vaintoken.com", + "description": "Vain is a token made to make the world a better and greener place by planting trees.", + "explorer": "https://bscscan.com/token/0x6067652Fe687Aa221B6F86F398aF4d0fe9bF45E3", + "status": "active", + "id": "0x6067652Fe687Aa221B6F86F398aF4d0fe9bF45E3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6067652Fe687Aa221B6F86F398aF4d0fe9bF45E3/logo.png b/blockchains/smartchain/assets/0x6067652Fe687Aa221B6F86F398aF4d0fe9bF45E3/logo.png new file mode 100644 index 00000000..3de3cdb3 Binary files /dev/null and b/blockchains/smartchain/assets/0x6067652Fe687Aa221B6F86F398aF4d0fe9bF45E3/logo.png differ diff --git a/blockchains/smartchain/assets/0x608593d17A2decBbc4399e4185bE4922F97eD32E/info.json b/blockchains/smartchain/assets/0x608593d17A2decBbc4399e4185bE4922F97eD32E/info.json new file mode 100644 index 00000000..1e9b013c --- /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 00000000..7735a40c 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 new file mode 100644 index 00000000..55e132ba --- /dev/null +++ b/blockchains/smartchain/assets/0x609D183Fb91a0fce59550b62ab7d2c931b0Bb1BE/info.json @@ -0,0 +1,45 @@ +{ + "name": "PolkaMonster", + "type": "BEP20", + "symbol": "PkMon", + "decimals": 18, + "website": "https://polkamonster.game/", + "description": "PolkaMonster is the fighting game on the Binance Smart Chain. PolkaMonster are sophisticated digital collections created using Blockchain technology", + "explorer": "https://bscscan.com/token/0x609D183Fb91a0fce59550b62ab7d2c931b0Bb1BE", + "status": "active", + "id": "0x609D183Fb91a0fce59550b62ab7d2c931b0Bb1BE", + "links": [ + { + "name": "x", + "url": "https://x.com/PolkaMonsterBSC" + }, + { + "name": "telegram", + "url": "https://t.me/PolkaMonsterBSC" + }, + { + "name": "reddit", + "url": "https://reddit.com/u/PolkaMonsterBSC" + }, + { + "name": "medium", + "url": "https://medium.com/@PolkaMonsterBSC" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCuBjlTR3DNF02YKbrzwHCuw" + }, + { + "name": "whitepaper", + "url": "https://docs.polkamonster.game/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polkamonster/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/polkamonster" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x609D183Fb91a0fce59550b62ab7d2c931b0Bb1BE/logo.png b/blockchains/smartchain/assets/0x609D183Fb91a0fce59550b62ab7d2c931b0Bb1BE/logo.png new file mode 100644 index 00000000..e2450630 Binary files /dev/null and b/blockchains/smartchain/assets/0x609D183Fb91a0fce59550b62ab7d2c931b0Bb1BE/logo.png differ diff --git a/blockchains/smartchain/assets/0x60Ae7D760a1C7B528C0384Bc945fadF1438F47A5/info.json b/blockchains/smartchain/assets/0x60Ae7D760a1C7B528C0384Bc945fadF1438F47A5/info.json new file mode 100644 index 00000000..aeff9f61 --- /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 00000000..ccbace21 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 00000000..ab6c2d64 --- /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 00000000..eab236a6 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 00000000..5cee64e5 --- /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 00000000..e4f12be7 Binary files /dev/null and b/blockchains/smartchain/assets/0x60b1b7eeD75a787ab7f3e92dbF5E8Af382Bb1a6b/logo.png differ diff --git a/blockchains/smartchain/assets/0x60b3BC37593853c04410c4F07fE4D6748245BF77/info.json b/blockchains/smartchain/assets/0x60b3BC37593853c04410c4F07fE4D6748245BF77/info.json new file mode 100644 index 00000000..c040f2b5 --- /dev/null +++ b/blockchains/smartchain/assets/0x60b3BC37593853c04410c4F07fE4D6748245BF77/info.json @@ -0,0 +1,12 @@ +{ + "name": "Shield Protocol", + "website": "https://shieldprotocol.org", + "description": "SHIELD is a Second Layer Security Platform based on the Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x60b3bc37593853c04410c4f07fe4d6748245bf77", + "research": "", + "type": "BEP20", + "symbol": "SHIELD", + "decimals": 18, + "status": "active", + "id": "0x60b3BC37593853c04410c4F07fE4D6748245BF77" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x60b3BC37593853c04410c4F07fE4D6748245BF77/logo.png b/blockchains/smartchain/assets/0x60b3BC37593853c04410c4F07fE4D6748245BF77/logo.png new file mode 100644 index 00000000..4c3fd799 Binary files /dev/null and b/blockchains/smartchain/assets/0x60b3BC37593853c04410c4F07fE4D6748245BF77/logo.png differ diff --git a/blockchains/smartchain/assets/0x60d66a5152612F7D550796910d022Cb2c77B09de/info.json b/blockchains/smartchain/assets/0x60d66a5152612F7D550796910d022Cb2c77B09de/info.json new file mode 100644 index 00000000..996a9d77 --- /dev/null +++ b/blockchains/smartchain/assets/0x60d66a5152612F7D550796910d022Cb2c77B09de/info.json @@ -0,0 +1,36 @@ +{ + "name": "Useless", + "website": "https://uselesscrypto.com", + "description": "Useless is the first token with an auto-stabilizing liquidity pool fueled by external revenue. Our vision is to bring mainstream accessibility to the crypto-space with easy-to-use mobile apps and dApps.", + "explorer": "https://bscscan.com/token/0x60d66a5152612F7D550796910d022Cb2c77B09de", + "type": "BEP20", + "symbol": "1USE", + "decimals": 18, + "status": "active", + "id": "0x60d66a5152612F7D550796910d022Cb2c77B09de", + "links": [ + { + "name": "blog", + "url": "https://uselesscrypto.com/" + }, + { + "name": "x", + "url": "https://x.com/uselesscrypto" + }, + { + "name": "facebook", + "url": "https://facebook.com/uselesscrypto" + }, + { + "name": "whitepaper", + "url": "https://app.uselesscrypto.com/litepaper.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/uselesscrypto" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x60d66a5152612F7D550796910d022Cb2c77B09de/logo.png b/blockchains/smartchain/assets/0x60d66a5152612F7D550796910d022Cb2c77B09de/logo.png new file mode 100644 index 00000000..37457fc0 Binary files /dev/null and b/blockchains/smartchain/assets/0x60d66a5152612F7D550796910d022Cb2c77B09de/logo.png differ diff --git a/blockchains/smartchain/assets/0x60e9880DAeF10E960dA3c45b076dbdAc4f111Edf/info.json b/blockchains/smartchain/assets/0x60e9880DAeF10E960dA3c45b076dbdAc4f111Edf/info.json new file mode 100644 index 00000000..ae831877 --- /dev/null +++ b/blockchains/smartchain/assets/0x60e9880DAeF10E960dA3c45b076dbdAc4f111Edf/info.json @@ -0,0 +1,11 @@ +{ + "name": "GlobalGive Token", + "type": "BEP20", + "symbol": "GGIVE", + "decimals": 8, + "website": "https://globalgive.finance/", + "description": "GlobalGive is a deflationary token built to grow wealth, and make the world a better place by donating a percentage of proceeds to a charity to be determined every month. GlobalGive is therefore a rotatory Charity Token representing a ground-breaking option for Charities to raise funds in an ever changing world.", + "explorer": "https://bscscan.com/token/0x60e9880DAeF10E960dA3c45b076dbdAc4f111Edf", + "status": "active", + "id": "0x60e9880DAeF10E960dA3c45b076dbdAc4f111Edf" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x60e9880DAeF10E960dA3c45b076dbdAc4f111Edf/logo.png b/blockchains/smartchain/assets/0x60e9880DAeF10E960dA3c45b076dbdAc4f111Edf/logo.png new file mode 100644 index 00000000..867abbee Binary files /dev/null and b/blockchains/smartchain/assets/0x60e9880DAeF10E960dA3c45b076dbdAc4f111Edf/logo.png differ diff --git a/blockchains/smartchain/assets/0x60f16960A03040aE9095F64Be429cB5508604444/info.json b/blockchains/smartchain/assets/0x60f16960A03040aE9095F64Be429cB5508604444/info.json new file mode 100644 index 00000000..e23e0211 --- /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/0x611DFe661C82B858087AB5b16e3Cb082552df4F3/info.json b/blockchains/smartchain/assets/0x611DFe661C82B858087AB5b16e3Cb082552df4F3/info.json new file mode 100644 index 00000000..b68207d0 --- /dev/null +++ b/blockchains/smartchain/assets/0x611DFe661C82B858087AB5b16e3Cb082552df4F3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chia", + "website": "https://chianetwork.app/", + "description": "Yield farm Chia on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x611DFe661C82B858087AB5b16e3Cb082552df4F3", + "type": "BEP20", + "symbol": "Chia", + "decimals": 8, + "status": "abandoned", + "id": "0x611DFe661C82B858087AB5b16e3Cb082552df4F3" +} \ 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 00000000..9aff26c2 --- /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 00000000..89892d02 Binary files /dev/null and b/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/logo.png differ diff --git a/blockchains/smartchain/assets/0x6130AAaffDd8F39dC8EC00c6af0681DF0cBb2EEF/info.json b/blockchains/smartchain/assets/0x6130AAaffDd8F39dC8EC00c6af0681DF0cBb2EEF/info.json new file mode 100644 index 00000000..3a6e6b60 --- /dev/null +++ b/blockchains/smartchain/assets/0x6130AAaffDd8F39dC8EC00c6af0681DF0cBb2EEF/info.json @@ -0,0 +1,11 @@ +{ + "name": "PRYZ", + "type": "BEP20", + "symbol": "PRYZ", + "decimals": 18, + "website": "https://pryz.io", + "description": "PRYZ is a new community driven protocol, offering holders rewards with a difference.", + "explorer": "https://bscscan.com/token/0x6130AAaffDd8F39dC8EC00c6af0681DF0cBb2EEF", + "status": "active", + "id": "0x6130AAaffDd8F39dC8EC00c6af0681DF0cBb2EEF" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6130AAaffDd8F39dC8EC00c6af0681DF0cBb2EEF/logo.png b/blockchains/smartchain/assets/0x6130AAaffDd8F39dC8EC00c6af0681DF0cBb2EEF/logo.png new file mode 100644 index 00000000..b7b8bb7d Binary files /dev/null and b/blockchains/smartchain/assets/0x6130AAaffDd8F39dC8EC00c6af0681DF0cBb2EEF/logo.png differ diff --git a/blockchains/smartchain/assets/0x6158b3435DC3bc54a19A32Da2A2ed22aeC3bEF3e/info.json b/blockchains/smartchain/assets/0x6158b3435DC3bc54a19A32Da2A2ed22aeC3bEF3e/info.json new file mode 100644 index 00000000..4b73643f --- /dev/null +++ b/blockchains/smartchain/assets/0x6158b3435DC3bc54a19A32Da2A2ed22aeC3bEF3e/info.json @@ -0,0 +1,11 @@ +{ + "name": "bscShiba", + "type": "BEP20", + "symbol": "bShiba", + "decimals": 9, + "website": "https://shibacorp.org/", + "description": "bShiba is a community driven, fair launched DeFi Token which works by applying a 10% fee to each transaction, where 5% of the transaction fee is instantly split among all holders of the token and the other 5% fee is added and locked into the bShiba-BNB liquidity pool on Pancakeswap.", + "explorer": "https://bscscan.com/token/0x6158b3435DC3bc54a19A32Da2A2ed22aeC3bEF3e", + "status": "active", + "id": "0x6158b3435DC3bc54a19A32Da2A2ed22aeC3bEF3e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6158b3435DC3bc54a19A32Da2A2ed22aeC3bEF3e/logo.png b/blockchains/smartchain/assets/0x6158b3435DC3bc54a19A32Da2A2ed22aeC3bEF3e/logo.png new file mode 100644 index 00000000..e9ea0227 Binary files /dev/null and b/blockchains/smartchain/assets/0x6158b3435DC3bc54a19A32Da2A2ed22aeC3bEF3e/logo.png differ diff --git a/blockchains/smartchain/assets/0x6160a6BA050A5B5A63E5b64C4eb03961582dbB3F/info.json b/blockchains/smartchain/assets/0x6160a6BA050A5B5A63E5b64C4eb03961582dbB3F/info.json new file mode 100644 index 00000000..9dfc8b9a --- /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 new file mode 100644 index 00000000..a8163372 --- /dev/null +++ b/blockchains/smartchain/assets/0x6169b3b23e57dE79a6146A2170980cEb1F83b9e0/info.json @@ -0,0 +1,25 @@ +{ + "name": "Vetter Token", + "type": "BEP20", + "symbol": "VETTER", + "decimals": 9, + "website": "https://vetter.ai", + "description": "Vetter Platform is where crowdsourcing meets A.I. and gamification to empower the crypto investor", + "explorer": "https://bscscan.com/token/0x6169b3b23e57dE79a6146A2170980cEb1F83b9e0", + "status": "active", + "id": "0x6169b3b23e57dE79a6146A2170980cEb1F83b9e0", + "links": [ + { + "name": "telegram", + "url": "https://t.me/vetterplatform" + }, + { + "name": "facebook", + "url": "https://facebook.com/vetterplatform" + }, + { + "name": "x", + "url": "https://x.com/vetterplatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6169b3b23e57dE79a6146A2170980cEb1F83b9e0/logo.png b/blockchains/smartchain/assets/0x6169b3b23e57dE79a6146A2170980cEb1F83b9e0/logo.png new file mode 100644 index 00000000..7d22e369 Binary files /dev/null and b/blockchains/smartchain/assets/0x6169b3b23e57dE79a6146A2170980cEb1F83b9e0/logo.png differ diff --git a/blockchains/smartchain/assets/0x617724974218A18769020A70162165A539c07E8a/info.json b/blockchains/smartchain/assets/0x617724974218A18769020A70162165A539c07E8a/info.json new file mode 100644 index 00000000..3d36add3 --- /dev/null +++ b/blockchains/smartchain/assets/0x617724974218A18769020A70162165A539c07E8a/info.json @@ -0,0 +1,29 @@ +{ + "name": "OliveCash", + "website": "https://olive.cash", + "description": "OliveCash has the goal of fostering AMM, Yeild Farming and DeFi market by facilitating the participation of traditional investors to the Crypto Ecosystem. Expanding the potential market reach requires simple and smooth interfaces as well as easier connections between Fiat and Crypto markets. To increase protocol economical sustainability, we aim at increasing burning fees and defining additional deflationary strategies benefitting holders", + "explorer": "https://bscscan.com/token/0x617724974218A18769020A70162165A539c07E8a", + "type": "BEP20", + "symbol": "OLIVE", + "decimals": 18, + "status": "active", + "id": "0x617724974218A18769020A70162165A539c07E8a", + "links": [ + { + "name": "github", + "url": "https://github.com/olive-cash" + }, + { + "name": "x", + "url": "https://x.com/OliveCashBsc" + }, + { + "name": "telegram", + "url": "https://t.me/olive_cash_chat" + }, + { + "name": "medium", + "url": "https://olive-cash.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x617724974218A18769020A70162165A539c07E8a/logo.png b/blockchains/smartchain/assets/0x617724974218A18769020A70162165A539c07E8a/logo.png new file mode 100644 index 00000000..05029906 Binary files /dev/null and b/blockchains/smartchain/assets/0x617724974218A18769020A70162165A539c07E8a/logo.png differ diff --git a/blockchains/smartchain/assets/0x61B83eDF87Ea662C695439A807c386455c9E797C/info.json b/blockchains/smartchain/assets/0x61B83eDF87Ea662C695439A807c386455c9E797C/info.json new file mode 100644 index 00000000..bea7d085 --- /dev/null +++ b/blockchains/smartchain/assets/0x61B83eDF87Ea662C695439A807c386455c9E797C/info.json @@ -0,0 +1,44 @@ +{ + "name": "Ignore Fud", + "type": "BEP20", + "symbol": "4TOKEN", + "decimals": 18, + "website": "https://4ignorefud.com/", + "description": "A new kind of meme token that supports DeFi and Blockchain innovations", + "explorer": "https://bscscan.com/token/0x61B83eDF87Ea662C695439A807c386455c9E797C", + "status": "active", + "id": "0x61B83eDF87Ea662C695439A807c386455c9E797C", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ignore-fud" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ignore-fud/" + }, + { + "name": "whitepaper", + "url": "https://ignore-fud.gitbook.io/ignore-fud/" + }, + { + "name": "telegram", + "url": "https://t.me/lgnorefud" + }, + { + "name": "x", + "url": "https://x.com/ignore_fud" + }, + { + "name": "youtube", + "url": "https://youtube.com/@IgnoreFud" + }, + { + "name": "medium", + "url": "https://ignorefud.medium.com/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x61B83eDF87Ea662C695439A807c386455c9E797C/logo.png b/blockchains/smartchain/assets/0x61B83eDF87Ea662C695439A807c386455c9E797C/logo.png new file mode 100644 index 00000000..10399b37 Binary files /dev/null and b/blockchains/smartchain/assets/0x61B83eDF87Ea662C695439A807c386455c9E797C/logo.png differ diff --git a/blockchains/smartchain/assets/0x61C911B6D1B46DcaDbB61bFa7100290a6faaD53D/info.json b/blockchains/smartchain/assets/0x61C911B6D1B46DcaDbB61bFa7100290a6faaD53D/info.json new file mode 100644 index 00000000..28b657b8 --- /dev/null +++ b/blockchains/smartchain/assets/0x61C911B6D1B46DcaDbB61bFa7100290a6faaD53D/info.json @@ -0,0 +1,33 @@ +{ + "name": "RiseUp", + "website": "https://riseupofficial.com/", + "description": "Rise Up is a movement and the next growth token with an innovative buy back and burn system. A hyper deflationary token decreasing supply and economically increasing the price over time. Rise Up is building utilities to help investors check smart contracts and for launching safe tokens", + "explorer": "https://bscscan.com/token/0x61C911B6D1B46DcaDbB61bFa7100290a6faaD53D", + "type": "BEP20", + "symbol": "RiseUp", + "decimals": 9, + "status": "active", + "id": "0x61C911B6D1B46DcaDbB61bFa7100290a6faaD53D", + "links": [ + { + "name": "whitepaper", + "url": "https://riseupofficial.com/wp-content/uploads/2021/07/RiseUp_Litepaper_v4.pdf" + }, + { + "name": "x", + "url": "https://x.com/RISEUP_WE_STAND" + }, + { + "name": "telegram", + "url": "https://t.me/riseup_officiall" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/riseup/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/riseup" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x61C911B6D1B46DcaDbB61bFa7100290a6faaD53D/logo.png b/blockchains/smartchain/assets/0x61C911B6D1B46DcaDbB61bFa7100290a6faaD53D/logo.png new file mode 100644 index 00000000..a5968bb1 Binary files /dev/null and b/blockchains/smartchain/assets/0x61C911B6D1B46DcaDbB61bFa7100290a6faaD53D/logo.png differ diff --git a/blockchains/smartchain/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json b/blockchains/smartchain/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/info.json new file mode 100644 index 00000000..a6bf2e55 --- /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 00000000..08570c22 Binary files /dev/null and b/blockchains/smartchain/assets/0x61D450a098b6a7f69fC4b98CE68198fe59768651/logo.png differ diff --git a/blockchains/smartchain/assets/0x61Ed1C66239d29Cc93C8597c6167159e8F69a823/info.json b/blockchains/smartchain/assets/0x61Ed1C66239d29Cc93C8597c6167159e8F69a823/info.json new file mode 100644 index 00000000..cf0f96da --- /dev/null +++ b/blockchains/smartchain/assets/0x61Ed1C66239d29Cc93C8597c6167159e8F69a823/info.json @@ -0,0 +1,12 @@ +{ + "name": "Reference System for DeFi", + "website": "https://rsd.cash", + "description": "RSD is an algorithmic token with dynamic supply based on reinforcement learning aimed at the DeFi market.", + "explorer": "https://bscscan.com/token/0x61Ed1C66239d29Cc93C8597c6167159e8F69a823", + "research": "", + "type": "BEP20", + "symbol": "RSD", + "decimals": 18, + "status": "active", + "id": "0x61Ed1C66239d29Cc93C8597c6167159e8F69a823" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x61Ed1C66239d29Cc93C8597c6167159e8F69a823/logo.png b/blockchains/smartchain/assets/0x61Ed1C66239d29Cc93C8597c6167159e8F69a823/logo.png new file mode 100644 index 00000000..99f1c68f Binary files /dev/null and b/blockchains/smartchain/assets/0x61Ed1C66239d29Cc93C8597c6167159e8F69a823/logo.png differ diff --git a/blockchains/smartchain/assets/0x61a97C4914C43f8BD98D01a99418E826C80AfAdC/info.json b/blockchains/smartchain/assets/0x61a97C4914C43f8BD98D01a99418E826C80AfAdC/info.json new file mode 100644 index 00000000..d7f814f6 --- /dev/null +++ b/blockchains/smartchain/assets/0x61a97C4914C43f8BD98D01a99418E826C80AfAdC/info.json @@ -0,0 +1,29 @@ +{ + "name": "CryptoBonusMiles", + "symbol": "CBM", + "type": "BEP20", + "decimals": 18, + "description": "CryptoBonusMiles helps to save on travelling even more, by adding CBM reward points to standard airline loyalty programs. CryptoBonusMiles expands Aeron solution to the mass market for millions of people who have ever flown, bringing convenience to the air travelers.", + "website": "https://cryptobonusmiles.com/", + "explorer": "https://bscscan.com/token/0x61a97C4914C43f8BD98D01a99418E826C80AfAdC", + "status": "active", + "id": "0x61a97C4914C43f8BD98D01a99418E826C80AfAdC", + "links": [ + { + "name": "x", + "url": "https://x.com/aeron_aero" + }, + { + "name": "telegram", + "url": "https://t.me/aeronaero" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cryptobonusmiles" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptobonusmiles" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x61a97C4914C43f8BD98D01a99418E826C80AfAdC/logo.png b/blockchains/smartchain/assets/0x61a97C4914C43f8BD98D01a99418E826C80AfAdC/logo.png new file mode 100644 index 00000000..cdc7ca7e Binary files /dev/null and b/blockchains/smartchain/assets/0x61a97C4914C43f8BD98D01a99418E826C80AfAdC/logo.png differ diff --git a/blockchains/smartchain/assets/0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93/info.json b/blockchains/smartchain/assets/0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93/info.json new file mode 100644 index 00000000..98c37d3a --- /dev/null +++ b/blockchains/smartchain/assets/0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus TRX", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93", + "type": "BEP20", + "symbol": "vTRX", + "decimals": 8, + "status": "active", + "id": "0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93/logo.png b/blockchains/smartchain/assets/0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93/logo.png new file mode 100644 index 00000000..81461bdc Binary files /dev/null and b/blockchains/smartchain/assets/0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93/logo.png differ diff --git a/blockchains/smartchain/assets/0x620477782cEa4C4171165396F8014EdEF83a13da/info.json b/blockchains/smartchain/assets/0x620477782cEa4C4171165396F8014EdEF83a13da/info.json new file mode 100644 index 00000000..6fec0083 --- /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 00000000..f54067fe Binary files /dev/null and b/blockchains/smartchain/assets/0x620477782cEa4C4171165396F8014EdEF83a13da/logo.png differ diff --git a/blockchains/smartchain/assets/0x622A1297057ea233287ce77bdBF2AB4E63609F23/info.json b/blockchains/smartchain/assets/0x622A1297057ea233287ce77bdBF2AB4E63609F23/info.json new file mode 100644 index 00000000..99d109d0 --- /dev/null +++ b/blockchains/smartchain/assets/0x622A1297057ea233287ce77bdBF2AB4E63609F23/info.json @@ -0,0 +1,12 @@ +{ + "name": "SUPERDOGE", + "website": "https://superdoge.io/", + "description": "SUPERDOGE is a deflationary meme coin that donates 2% of every transaction to multiple charities.", + "explorer": "https://bscscan.com/token/0x622a1297057ea233287ce77bdbf2ab4e63609f23", + "research": "https://superdoge.io/", + "type": "BEP20", + "symbol": "$SUPDOG", + "decimals": 9, + "status": "active", + "id": "0x622A1297057ea233287ce77bdBF2AB4E63609F23" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x622A1297057ea233287ce77bdBF2AB4E63609F23/logo.png b/blockchains/smartchain/assets/0x622A1297057ea233287ce77bdBF2AB4E63609F23/logo.png new file mode 100644 index 00000000..9bf73f4d Binary files /dev/null and b/blockchains/smartchain/assets/0x622A1297057ea233287ce77bdBF2AB4E63609F23/logo.png differ diff --git a/blockchains/smartchain/assets/0x623b3A37E06268E99096a56A8A0c1207a024245d/info.json b/blockchains/smartchain/assets/0x623b3A37E06268E99096a56A8A0c1207a024245d/info.json new file mode 100644 index 00000000..28ce7fee --- /dev/null +++ b/blockchains/smartchain/assets/0x623b3A37E06268E99096a56A8A0c1207a024245d/info.json @@ -0,0 +1,11 @@ +{ + "name": "SpaceToast", + "type": "BEP20", + "symbol": "SPACETOAST", + "decimals": 9, + "website": "https://www.toastfinance.com/", + "description": "Hyper Burn & Liquidity Generation Protocol", + "explorer": "https://bscscan.com/token/0x623b3A37E06268E99096a56A8A0c1207a024245d", + "status": "active", + "id": "0x623b3A37E06268E99096a56A8A0c1207a024245d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x623b3A37E06268E99096a56A8A0c1207a024245d/logo.png b/blockchains/smartchain/assets/0x623b3A37E06268E99096a56A8A0c1207a024245d/logo.png new file mode 100644 index 00000000..fbe69357 Binary files /dev/null and b/blockchains/smartchain/assets/0x623b3A37E06268E99096a56A8A0c1207a024245d/logo.png differ diff --git a/blockchains/smartchain/assets/0x62475fB57669EfEBd411D9C05109870Bf1BBfdEE/info.json b/blockchains/smartchain/assets/0x62475fB57669EfEBd411D9C05109870Bf1BBfdEE/info.json new file mode 100644 index 00000000..0d6f6686 --- /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 00000000..04830ac9 Binary files /dev/null and b/blockchains/smartchain/assets/0x62475fB57669EfEBd411D9C05109870Bf1BBfdEE/logo.png differ diff --git a/blockchains/smartchain/assets/0x62613F4b4F7600C7C0F16c97Aefc29c8A2CA524F/info.json b/blockchains/smartchain/assets/0x62613F4b4F7600C7C0F16c97Aefc29c8A2CA524F/info.json new file mode 100644 index 00000000..030eff43 --- /dev/null +++ b/blockchains/smartchain/assets/0x62613F4b4F7600C7C0F16c97Aefc29c8A2CA524F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Global Adversity Project", + "website": "http://www.globaladversity.org", + "description": "Global Adversity Project (GAP) is a yield-generating charitable cryptocurrency that runs on the Binance Smart Network. It rewards holders by providing them ‘interest’ on their investment through the contract transaction tax, offering an incentive for investors to hold, rather then participating in day-trading events. It's charitable ventures support individuals who have mental, physical or intellectual disabilities.", + "explorer": "https://bscscan.com/token/0x62613f4b4f7600c7c0f16c97aefc29c8a2ca524f", + "type": "BEP20", + "symbol": "GAP", + "decimals": 9, + "status": "active", + "id": "0x62613F4b4F7600C7C0F16c97Aefc29c8A2CA524F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x62613F4b4F7600C7C0F16c97Aefc29c8A2CA524F/logo.png b/blockchains/smartchain/assets/0x62613F4b4F7600C7C0F16c97Aefc29c8A2CA524F/logo.png new file mode 100644 index 00000000..60da8219 Binary files /dev/null and b/blockchains/smartchain/assets/0x62613F4b4F7600C7C0F16c97Aefc29c8A2CA524F/logo.png differ diff --git a/blockchains/smartchain/assets/0x6266a18F1605DA94e8317232ffa634C74646ac40/info.json b/blockchains/smartchain/assets/0x6266a18F1605DA94e8317232ffa634C74646ac40/info.json new file mode 100644 index 00000000..55d7b62e --- /dev/null +++ b/blockchains/smartchain/assets/0x6266a18F1605DA94e8317232ffa634C74646ac40/info.json @@ -0,0 +1,32 @@ +{ + "name": "METFX Watch-To-Earn", + "type": "BEP20", + "symbol": "MFX", + "decimals": 18, + "website": "https://www.metfx.io", + "description": "The MetFx Marketplace is where you will find all the accessories you may require to do so, and also find a wide range of NFT’s that can be used in our metaverse.", + "explorer": "https://bscscan.com/token/0x6266a18F1605DA94e8317232ffa634C74646ac40", + "status": "active", + "id": "0x6266a18F1605DA94e8317232ffa634C74646ac40", + "links": [ + { + "name": "x", + "url": "https://x.com/metfxmetaverse" + }, + { + "name": "telegram", + "url": "https://t.me/METFXWORLD" + }, + { + "name": "facebook", + "url": "https://facebook.com/metfx.official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metfx-watch-to-earn/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6266a18F1605DA94e8317232ffa634C74646ac40/logo.png b/blockchains/smartchain/assets/0x6266a18F1605DA94e8317232ffa634C74646ac40/logo.png new file mode 100644 index 00000000..854be76b Binary files /dev/null and b/blockchains/smartchain/assets/0x6266a18F1605DA94e8317232ffa634C74646ac40/logo.png differ diff --git a/blockchains/smartchain/assets/0x62823659d09F9F9D2222058878f89437425eB261/info.json b/blockchains/smartchain/assets/0x62823659d09F9F9D2222058878f89437425eB261/info.json new file mode 100644 index 00000000..df23bde2 --- /dev/null +++ b/blockchains/smartchain/assets/0x62823659d09F9F9D2222058878f89437425eB261/info.json @@ -0,0 +1,36 @@ +{ + "name": "ERTHA Token", + "type": "BEP20", + "symbol": "ERTHA", + "decimals": 18, + "website": "https://ertha.io/", + "description": "The ERTHA token is the primary utility token used to facilitate sustainable DAO design for the game's metaverse ecosystem as a whole.", + "explorer": "https://bscscan.com/token/0x62823659d09F9F9D2222058878f89437425eB261", + "status": "active", + "id": "0x62823659d09F9F9D2222058878f89437425eB261", + "links": [ + { + "name": "x", + "url": "https://x.com/ErthaGame" + }, + { + "name": "telegram", + "url": "https://t.me/Erthium" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ertha" + }, + { + "name": "medium", + "url": "https://erthium.medium.com/" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.ertha.io/ertha-whitepaper/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x62823659d09F9F9D2222058878f89437425eB261/logo.png b/blockchains/smartchain/assets/0x62823659d09F9F9D2222058878f89437425eB261/logo.png new file mode 100644 index 00000000..1c9ff245 Binary files /dev/null and b/blockchains/smartchain/assets/0x62823659d09F9F9D2222058878f89437425eB261/logo.png differ diff --git a/blockchains/smartchain/assets/0x6289812163af9421E566B3d74774074fAc2A0441/info.json b/blockchains/smartchain/assets/0x6289812163af9421E566B3d74774074fAc2A0441/info.json new file mode 100644 index 00000000..fccb2143 --- /dev/null +++ b/blockchains/smartchain/assets/0x6289812163af9421E566B3d74774074fAc2A0441/info.json @@ -0,0 +1,41 @@ +{ + "name": "Crusaders Of Crypto", + "type": "BEP20", + "symbol": "CRUSADER", + "decimals": 9, + "website": "https://crusadersofcrypto.com", + "description": "Crusaders of Crypto is a classic-style Roguelike game paired with the Binance Smart Chain! Players are able to repeatedly enter randomly generated dungeons, battle monsters, and fight difficult and scripted bosses, all named after Crypto-Related tragedies (Like FlashLoanius!). Holders of CRUSADER will be able to enhance this experience by being able to do the same during competition events, which can reward BNB and in-game NFTs!", + "explorer": "https://bscscan.com/token/0x6289812163af9421E566B3d74774074fAc2A0441", + "status": "active", + "id": "0x6289812163af9421E566B3d74774074fAc2A0441", + "links": [ + { + "name": "x", + "url": "https://x.com/CrusaderBSC" + }, + { + "name": "github", + "url": "https://github.com/Watch-Pug/Crusaders_Review/blob/main/WatchPug%20Audit%20Report%20for%20Crusaders.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/CrusadersOfCrypto" + }, + { + "name": "telegram_news", + "url": "https://t.me/CrusadersAnnouncements" + }, + { + "name": "whitepaper", + "url": "https://pub.lucidpress.com/crusadersofcryptowhitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crusaders-of-crypto/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/crusaders-of-crypto" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6289812163af9421E566B3d74774074fAc2A0441/logo.png b/blockchains/smartchain/assets/0x6289812163af9421E566B3d74774074fAc2A0441/logo.png new file mode 100644 index 00000000..2b2e5ecd Binary files /dev/null and b/blockchains/smartchain/assets/0x6289812163af9421E566B3d74774074fAc2A0441/logo.png differ diff --git a/blockchains/smartchain/assets/0x628B33b00355598fFD4dD484B788fe7757428888/info.json b/blockchains/smartchain/assets/0x628B33b00355598fFD4dD484B788fe7757428888/info.json new file mode 100644 index 00000000..c4a02c45 --- /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 00000000..a65a1694 --- /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 00000000..e2602999 --- /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 00000000..25f5f953 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 00000000..f0d332b4 --- /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 00000000..34fafd02 --- /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 00000000..df55519f Binary files /dev/null and b/blockchains/smartchain/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/logo.png differ diff --git a/blockchains/smartchain/assets/0x62D71B23bF15218C7d2D7E48DBbD9e9c650B173f/info.json b/blockchains/smartchain/assets/0x62D71B23bF15218C7d2D7E48DBbD9e9c650B173f/info.json new file mode 100644 index 00000000..5d356a7b --- /dev/null +++ b/blockchains/smartchain/assets/0x62D71B23bF15218C7d2D7E48DBbD9e9c650B173f/info.json @@ -0,0 +1,12 @@ +{ + "name": "Wrapped Mirror GOOGL Token", + "website": "https://mirror.finance", + "description": "Mirror Protocol allows the creation of fungible assets, “synthetics”, that track the price of real-world assets.", + "explorer": "https://bscscan.com/token/0x62D71B23bF15218C7d2D7E48DBbD9e9c650B173f", + "research": "", + "type": "BEP20", + "symbol": "mGOOGL", + "decimals": 18, + "status": "active", + "id": "0x62D71B23bF15218C7d2D7E48DBbD9e9c650B173f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x62D71B23bF15218C7d2D7E48DBbD9e9c650B173f/logo.png b/blockchains/smartchain/assets/0x62D71B23bF15218C7d2D7E48DBbD9e9c650B173f/logo.png new file mode 100644 index 00000000..5e9b9e1f Binary files /dev/null and b/blockchains/smartchain/assets/0x62D71B23bF15218C7d2D7E48DBbD9e9c650B173f/logo.png differ diff --git a/blockchains/smartchain/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json b/blockchains/smartchain/assets/0x62a48560861B0b451654bFffdb5be6E47aa8ff1B/info.json new file mode 100644 index 00000000..5d345509 --- /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 00000000..2757f36e 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 00000000..857c289a --- /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/0x62c2A6f57a65e1e4b1d9e31b3e3511c8C36841a8/info.json b/blockchains/smartchain/assets/0x62c2A6f57a65e1e4b1d9e31b3e3511c8C36841a8/info.json new file mode 100644 index 00000000..4250ec61 --- /dev/null +++ b/blockchains/smartchain/assets/0x62c2A6f57a65e1e4b1d9e31b3e3511c8C36841a8/info.json @@ -0,0 +1,11 @@ +{ + "name": "SMEGMARS", + "type": "BEP20", + "symbol": "SMEGM", + "decimals": 10, + "website": "https://www.smegmars.space", + "description": "We are a community-driven project that has implemented some of the best tokenomics around. Our goal is simple: end testicular cancer", + "explorer": "https://bscscan.com/token/0x62c2A6f57a65e1e4b1d9e31b3e3511c8C36841a8", + "status": "active", + "id": "0x62c2A6f57a65e1e4b1d9e31b3e3511c8C36841a8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x62c2A6f57a65e1e4b1d9e31b3e3511c8C36841a8/logo.png b/blockchains/smartchain/assets/0x62c2A6f57a65e1e4b1d9e31b3e3511c8C36841a8/logo.png new file mode 100644 index 00000000..9a3ec322 Binary files /dev/null and b/blockchains/smartchain/assets/0x62c2A6f57a65e1e4b1d9e31b3e3511c8C36841a8/logo.png differ diff --git a/blockchains/smartchain/assets/0x6306e883493824Ccf606D90E25F68a28e47b98a3/info.json b/blockchains/smartchain/assets/0x6306e883493824Ccf606D90E25F68a28e47b98a3/info.json new file mode 100644 index 00000000..32dbdfa4 --- /dev/null +++ b/blockchains/smartchain/assets/0x6306e883493824Ccf606D90E25F68a28e47b98a3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Extend Finance", + "website": "https://extendfinance.online", + "description": "Extend Finance was built for the BSC chain with 4% reward & 1% burning emission", + "explorer": "https://bscscan.com/token/0x6306e883493824ccf606d90e25f68a28e47b98a3", + "type": "BEP20", + "symbol": "EXF", + "decimals": 9, + "status": "active", + "id": "0x6306e883493824Ccf606D90E25F68a28e47b98a3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6306e883493824Ccf606D90E25F68a28e47b98a3/logo.png b/blockchains/smartchain/assets/0x6306e883493824Ccf606D90E25F68a28e47b98a3/logo.png new file mode 100644 index 00000000..d09e6103 Binary files /dev/null and b/blockchains/smartchain/assets/0x6306e883493824Ccf606D90E25F68a28e47b98a3/logo.png differ diff --git a/blockchains/smartchain/assets/0x630d98424eFe0Ea27fB1b3Ab7741907DFFEaAd78/info.json b/blockchains/smartchain/assets/0x630d98424eFe0Ea27fB1b3Ab7741907DFFEaAd78/info.json new file mode 100644 index 00000000..98cebb42 --- /dev/null +++ b/blockchains/smartchain/assets/0x630d98424eFe0Ea27fB1b3Ab7741907DFFEaAd78/info.json @@ -0,0 +1,11 @@ +{ + "name": "PEAK", + "website": "https://peakdefi.com", + "description": "PEAKDEFI is a decentralized asset management fund, created to connect investors and asset managers for capital growth.", + "explorer": "https://bscscan.com/token/0x630d98424efe0ea27fb1b3ab7741907dffeaad78", + "type": "BEP20", + "symbol": "PEAK", + "decimals": 8, + "status": "active", + "id": "0x630d98424eFe0Ea27fB1b3Ab7741907DFFEaAd78" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x630d98424eFe0Ea27fB1b3Ab7741907DFFEaAd78/logo.png b/blockchains/smartchain/assets/0x630d98424eFe0Ea27fB1b3Ab7741907DFFEaAd78/logo.png new file mode 100644 index 00000000..bc0e9487 Binary files /dev/null and b/blockchains/smartchain/assets/0x630d98424eFe0Ea27fB1b3Ab7741907DFFEaAd78/logo.png differ diff --git a/blockchains/smartchain/assets/0x631C2f0EdABaC799f07550aEE4fF0Bf7fd35212B/info.json b/blockchains/smartchain/assets/0x631C2f0EdABaC799f07550aEE4fF0Bf7fd35212B/info.json new file mode 100644 index 00000000..07b3ea99 --- /dev/null +++ b/blockchains/smartchain/assets/0x631C2f0EdABaC799f07550aEE4fF0Bf7fd35212B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Poollotto.finance", + "type": "BEP20", + "symbol": "PLT", + "decimals": 18, + "website": "https://www.poollotto.finance/", + "description": "Smart contract on the blockchain network for non-centralized management of a global social lottery pool", + "explorer": "https://bscscan.com/token/0x631C2f0EdABaC799f07550aEE4fF0Bf7fd35212B", + "status": "active", + "id": "0x631C2f0EdABaC799f07550aEE4fF0Bf7fd35212B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x631C2f0EdABaC799f07550aEE4fF0Bf7fd35212B/logo.png b/blockchains/smartchain/assets/0x631C2f0EdABaC799f07550aEE4fF0Bf7fd35212B/logo.png new file mode 100644 index 00000000..ac283a93 Binary files /dev/null and b/blockchains/smartchain/assets/0x631C2f0EdABaC799f07550aEE4fF0Bf7fd35212B/logo.png differ diff --git a/blockchains/smartchain/assets/0x631E1e455019c359b939fE214EDC761d36bF6aD6/info.json b/blockchains/smartchain/assets/0x631E1e455019c359b939fE214EDC761d36bF6aD6/info.json new file mode 100644 index 00000000..07f05d1e --- /dev/null +++ b/blockchains/smartchain/assets/0x631E1e455019c359b939fE214EDC761d36bF6aD6/info.json @@ -0,0 +1,11 @@ +{ + "name": "PinkPanda", + "type": "BEP20", + "symbol": "PINKPANDA", + "decimals": 9, + "website": "https://pinkpanda.finance/", + "description": "PinkPanda is a yield-generating utility token for a new decentralized exchange the supports up to 5x leverage (margin trading). The PinkPanda team is a group of long-time crypto and decentralized finance (DeFi) builders and innovators, who are looking to drive change in the industry through building a unique community-driven token that delivers a strong return to its holders as well as a positive social impact. $PINKPANDA creates abundance.", + "explorer": "https://bscscan.com/token/0x631E1e455019c359b939fE214EDC761d36bF6aD6", + "status": "abandoned", + "id": "0x631E1e455019c359b939fE214EDC761d36bF6aD6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/info.json b/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/info.json new file mode 100644 index 00000000..09e48e48 --- /dev/null +++ b/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/info.json @@ -0,0 +1,40 @@ +{ + "name": "CalltoCombat", + "type": "BEP20", + "symbol": "CTC", + "decimals": 9, + "website": "https://calltocombat.com", + "description": "Call to Combat is the world's first multiplayer online role-playing game universe that exists inside the MetaVerse world where real players connect and earn.", + "explorer": "https://bscscan.com/token/0x63221d19c4b512a6f4792f2da0a2083ea28c38c1", + "status": "active", + "id": "0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1", + "links": [ + { + "name": "x", + "url": "https://x.com/calltocombat" + }, + { + "name": "github", + "url": "https://github.com/calltocombat" + }, + { + "name": "telegram", + "url": "https://t.me/calltocombat" + }, + { + "name": "telegram_news", + "url": "https://t.me/calltocombatnews" + }, + { + "name": "blog", + "url": "https://medium.com/@calltocombat" + }, + { + "name": "docs", + "url": "https://docs.calltocombat.com" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/logo.png b/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/logo.png new file mode 100644 index 00000000..6ef4512f Binary files /dev/null and b/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/logo.png differ diff --git a/blockchains/smartchain/assets/0x63870A18B6e42b01Ef1Ad8A2302ef50B7132054F/info.json b/blockchains/smartchain/assets/0x63870A18B6e42b01Ef1Ad8A2302ef50B7132054F/info.json new file mode 100644 index 00000000..8f4930ae --- /dev/null +++ b/blockchains/smartchain/assets/0x63870A18B6e42b01Ef1Ad8A2302ef50B7132054F/info.json @@ -0,0 +1,12 @@ +{ + "name": "BLinkToken", + "website": "https://blink.wink.org", + "description": "BLink is a partnership between WINk and Binance community.", + "explorer": "https://bscscan.com/token/0x63870a18b6e42b01ef1ad8a2302ef50b7132054f", + "research": "", + "type": "BEP20", + "symbol": "BLINK", + "decimals": 6, + "status": "active", + "id": "0x63870A18B6e42b01Ef1Ad8A2302ef50B7132054F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x63870A18B6e42b01Ef1Ad8A2302ef50B7132054F/logo.png b/blockchains/smartchain/assets/0x63870A18B6e42b01Ef1Ad8A2302ef50B7132054F/logo.png new file mode 100644 index 00000000..d788147a Binary files /dev/null and b/blockchains/smartchain/assets/0x63870A18B6e42b01Ef1Ad8A2302ef50B7132054F/logo.png differ diff --git a/blockchains/smartchain/assets/0x638EEBe886B0e9e7C6929E69490064a6C94d204d/info.json b/blockchains/smartchain/assets/0x638EEBe886B0e9e7C6929E69490064a6C94d204d/info.json new file mode 100644 index 00000000..370c3c0c --- /dev/null +++ b/blockchains/smartchain/assets/0x638EEBe886B0e9e7C6929E69490064a6C94d204d/info.json @@ -0,0 +1,48 @@ +{ + "name": "Hector Finance", + "website": "https://hector.finance", + "description": "Hector Finance is developing a financial center on the Fantom Opera Chain and beyond.", + "explorer": "https://bscscan.com/token/0x638EEBe886B0e9e7C6929E69490064a6C94d204d", + "type": "BEP20", + "symbol": "HEC", + "decimals": 9, + "status": "active", + "id": "0x638EEBe886B0e9e7C6929E69490064a6C94d204d", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/HectorDAO_HEC" + }, + { + "name": "medium", + "url": "https://medium.com/@hectordao" + }, + { + "name": "whitepaper", + "url": "https://hector.finance/whitepaper" + }, + { + "name": "telegram", + "url": "https://t.me/hectorDAO" + }, + { + "name": "telegram_news", + "url": "https://t.me/hectordaoann" + }, + { + "name": "github", + "url": "https://github.com/Hector-DAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hector-dao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hector-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x638EEBe886B0e9e7C6929E69490064a6C94d204d/logo.png b/blockchains/smartchain/assets/0x638EEBe886B0e9e7C6929E69490064a6C94d204d/logo.png new file mode 100644 index 00000000..46040ed8 Binary files /dev/null and b/blockchains/smartchain/assets/0x638EEBe886B0e9e7C6929E69490064a6C94d204d/logo.png differ diff --git a/blockchains/smartchain/assets/0x6397de0F9aEDc0F7A8Fa8B438DDE883B9c201010/info.json b/blockchains/smartchain/assets/0x6397de0F9aEDc0F7A8Fa8B438DDE883B9c201010/info.json new file mode 100644 index 00000000..a53468bc --- /dev/null +++ b/blockchains/smartchain/assets/0x6397de0F9aEDc0F7A8Fa8B438DDE883B9c201010/info.json @@ -0,0 +1,25 @@ +{ + "name": "SinCity Token", + "website": "https://sin-city.io/", + "description": "Sin City is a metaverse multiplayer game built on blockchain. Your very own decentralized virtual world, centered around a social play-to-earn empire building model and housing multiple gaming & gambling applications for an immersive experience.", + "explorer": "https://bscscan.com/token/0x6397de0F9aEDc0F7A8Fa8B438DDE883B9c201010", + "type": "BEP20", + "symbol": "SIN", + "decimals": 18, + "status": "active", + "id": "0x6397de0F9aEDc0F7A8Fa8B438DDE883B9c201010", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sin-city/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sincity-token/" + }, + { + "name": "x", + "url": "https://x.com/sincitytoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6397de0F9aEDc0F7A8Fa8B438DDE883B9c201010/logo.png b/blockchains/smartchain/assets/0x6397de0F9aEDc0F7A8Fa8B438DDE883B9c201010/logo.png new file mode 100644 index 00000000..1bf396c4 Binary files /dev/null and b/blockchains/smartchain/assets/0x6397de0F9aEDc0F7A8Fa8B438DDE883B9c201010/logo.png differ diff --git a/blockchains/smartchain/assets/0x639AD7c49EC616a64e074c21a58608C0d843A8a3/info.json b/blockchains/smartchain/assets/0x639AD7c49EC616a64e074c21a58608C0d843A8a3/info.json new file mode 100644 index 00000000..3bfa2036 --- /dev/null +++ b/blockchains/smartchain/assets/0x639AD7c49EC616a64e074c21a58608C0d843A8a3/info.json @@ -0,0 +1,57 @@ +{ + "name": "TripCandy", + "website": "https://tripcandy.io", + "description": "TripCandy is an accommodations booking platform that brings you great discounts via cashback rewards in the form of blockchain tokens, turning your bookings into lucrative investments.", + "explorer": "https://bscscan.com/token/0x639AD7c49EC616a64e074c21a58608C0d843A8a3", + "type": "BEP20", + "symbol": "CANDY", + "decimals": 18, + "status": "active", + "id": "0x639AD7c49EC616a64e074c21a58608C0d843A8a3", + "links": [ + { + "name": "telegram", + "url": "https://t.me/tripcandy" + }, + { + "name": "telegram_news", + "url": "https://t.me/tripcandyio" + }, + { + "name": "x", + "url": "https://x.com/Tripcandyio" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tripcandy" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tripcandy" + }, + { + "name": "whitepaper", + "url": "https://bit.ly/36t38gq" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/tripcandyio" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ArktEv22D5" + }, + { + "name": "medium", + "url": "https://medium.com/@tripcandy" + }, + { + "name": "facebook", + "url": "https://facebook.com/tripcandyio" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCG4_fomFKDwVe6IWmMrHd-Q" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x639AD7c49EC616a64e074c21a58608C0d843A8a3/logo.png b/blockchains/smartchain/assets/0x639AD7c49EC616a64e074c21a58608C0d843A8a3/logo.png new file mode 100644 index 00000000..3165c19b Binary files /dev/null and b/blockchains/smartchain/assets/0x639AD7c49EC616a64e074c21a58608C0d843A8a3/logo.png differ diff --git a/blockchains/smartchain/assets/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a/info.json b/blockchains/smartchain/assets/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a/info.json new file mode 100644 index 00000000..e2c04251 --- /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 00000000..8e2a45a2 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 00000000..9255466a --- /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 new file mode 100644 index 00000000..4f7b942c --- /dev/null +++ b/blockchains/smartchain/assets/0x63a4644142CA6dc83CfE0E2bdba8d62174491fD8/info.json @@ -0,0 +1,25 @@ +{ + "name": "GAPTT", + "website": "https://gapt.io/", + "description": "GAPT is a deflationary DeFi token with a passive yield mechanism. The smart contract takes a fee from every transaction of 0.5% which is dedicated to charity decided by the community", + "explorer": "https://bscscan.com/token/0x63a4644142ca6dc83cfe0e2bdba8d62174491fd8", + "type": "BEP20", + "symbol": "GAPT", + "decimals": 9, + "status": "active", + "id": "0x63a4644142CA6dc83CfE0E2bdba8d62174491fD8", + "links": [ + { + "name": "x", + "url": "https://x.com/GaptToken" + }, + { + "name": "telegram", + "url": "https://t.me/GAPTCHAT" + }, + { + "name": "discord", + "url": "https://discord.com/invite/w5eEvK4aqy" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x63a4644142CA6dc83CfE0E2bdba8d62174491fD8/logo.png b/blockchains/smartchain/assets/0x63a4644142CA6dc83CfE0E2bdba8d62174491fD8/logo.png new file mode 100644 index 00000000..c8796337 Binary files /dev/null and b/blockchains/smartchain/assets/0x63a4644142CA6dc83CfE0E2bdba8d62174491fD8/logo.png differ diff --git a/blockchains/smartchain/assets/0x63c500B0bFEB042FF70ea2450AeBa72713D10668/info.json b/blockchains/smartchain/assets/0x63c500B0bFEB042FF70ea2450AeBa72713D10668/info.json new file mode 100644 index 00000000..9d8c4d6f --- /dev/null +++ b/blockchains/smartchain/assets/0x63c500B0bFEB042FF70ea2450AeBa72713D10668/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moon Stake", + "website": "https://moonstake.finance/", + "description": "Moon Stake token of staking Protocol(Multi-chain staking Marketplace)", + "explorer": "https://bscscan.com/token/0x63c500B0bFEB042FF70ea2450AeBa72713D10668", + "type": "BEP20", + "symbol": "MSEF", + "decimals": 18, + "status": "active", + "id": "0x63c500B0bFEB042FF70ea2450AeBa72713D10668" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x63c500B0bFEB042FF70ea2450AeBa72713D10668/logo.png b/blockchains/smartchain/assets/0x63c500B0bFEB042FF70ea2450AeBa72713D10668/logo.png new file mode 100644 index 00000000..07438f53 Binary files /dev/null and b/blockchains/smartchain/assets/0x63c500B0bFEB042FF70ea2450AeBa72713D10668/logo.png differ diff --git a/blockchains/smartchain/assets/0x63d55ecDEbF08f93D0F2D5533035ddcCaa997d7A/info.json b/blockchains/smartchain/assets/0x63d55ecDEbF08f93D0F2D5533035ddcCaa997d7A/info.json new file mode 100644 index 00000000..c937d18d --- /dev/null +++ b/blockchains/smartchain/assets/0x63d55ecDEbF08f93D0F2D5533035ddcCaa997d7A/info.json @@ -0,0 +1,29 @@ +{ + "name": "ETHVault", + "website": "https://vaultdefi.com", + "description": "ETHVault is a complementing token in the VaultDEFI Ecosystem, the first 26.8% auto-reimbursing, SurgeETH & SafeVAULT Rewarding Token. It's Hyper-Deflationary & Self-Sustaining. The Vault team is proud to bring an unprecedented vision to the DeFi space.", + "explorer": "https://bscscan.com/token/0x63d55ecdebf08f93d0f2d5533035ddccaa997d7a", + "type": "BEP20", + "symbol": "ETHVAULT", + "decimals": 9, + "status": "active", + "id": "0x63d55ecDEbF08f93D0F2D5533035ddcCaa997d7A", + "links": [ + { + "name": "blog", + "url": "https://vaultdefi.com" + }, + { + "name": "x", + "url": "https://x.com/vaultdefi" + }, + { + "name": "facebook", + "url": "https://facebook.com/vaultdefiofficial" + }, + { + "name": "telegram", + "url": "https://t.me/vault_defi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x63d55ecDEbF08f93D0F2D5533035ddcCaa997d7A/logo.png b/blockchains/smartchain/assets/0x63d55ecDEbF08f93D0F2D5533035ddcCaa997d7A/logo.png new file mode 100644 index 00000000..5c0dbcd9 Binary files /dev/null and b/blockchains/smartchain/assets/0x63d55ecDEbF08f93D0F2D5533035ddcCaa997d7A/logo.png differ diff --git a/blockchains/smartchain/assets/0x63eC19c2983bfB0D43232aa9C792Fe6F27F63361/info.json b/blockchains/smartchain/assets/0x63eC19c2983bfB0D43232aa9C792Fe6F27F63361/info.json new file mode 100644 index 00000000..fd6ab0f3 --- /dev/null +++ b/blockchains/smartchain/assets/0x63eC19c2983bfB0D43232aa9C792Fe6F27F63361/info.json @@ -0,0 +1,21 @@ +{ + "name": "METARACA", + "website": "https://metaraca.io", + "description": "Metarverse + Raca = MetaRaca, a collection of puppies in the form of NFTs. We're a dedicated team that want to build something for the crypto community in general and the $RACA lovers in particular.", + "explorer": "https://bscscan.com/token/0x63eC19c2983bfB0D43232aa9C792Fe6F27F63361", + "type": "BEP20", + "symbol": "METAR", + "decimals": 18, + "status": "active", + "id": "0x63eC19c2983bfB0D43232aa9C792Fe6F27F63361", + "links": [ + { + "name": "x", + "url": "https://x.com/metaracaNFT" + }, + { + "name": "telegram", + "url": "https://t.me/metaracaio" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x63eC19c2983bfB0D43232aa9C792Fe6F27F63361/logo.png b/blockchains/smartchain/assets/0x63eC19c2983bfB0D43232aa9C792Fe6F27F63361/logo.png new file mode 100644 index 00000000..19a4706e Binary files /dev/null and b/blockchains/smartchain/assets/0x63eC19c2983bfB0D43232aa9C792Fe6F27F63361/logo.png differ diff --git a/blockchains/smartchain/assets/0x64197A553a03b8C9f23D5A15FA9fD91eac4A9538/info.json b/blockchains/smartchain/assets/0x64197A553a03b8C9f23D5A15FA9fD91eac4A9538/info.json new file mode 100644 index 00000000..0a8e2784 --- /dev/null +++ b/blockchains/smartchain/assets/0x64197A553a03b8C9f23D5A15FA9fD91eac4A9538/info.json @@ -0,0 +1,11 @@ +{ + "name": "X Stake Chain", + "type": "BEP20", + "symbol": "X Stake", + "decimals": 8, + "website": "http://xstakechain.com/", + "description": "A community-driven decentralized rewarding network.", + "explorer": "https://bscscan.com/token/0x64197A553a03b8C9f23D5A15FA9fD91eac4A9538", + "status": "active", + "id": "0x64197A553a03b8C9f23D5A15FA9fD91eac4A9538" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x64197A553a03b8C9f23D5A15FA9fD91eac4A9538/logo.png b/blockchains/smartchain/assets/0x64197A553a03b8C9f23D5A15FA9fD91eac4A9538/logo.png new file mode 100644 index 00000000..2ab461c0 Binary files /dev/null and b/blockchains/smartchain/assets/0x64197A553a03b8C9f23D5A15FA9fD91eac4A9538/logo.png differ diff --git a/blockchains/smartchain/assets/0x641a6Dc991A49f7BE9Fe3C72c5d0FBb223eDb12f/info.json b/blockchains/smartchain/assets/0x641a6Dc991A49f7BE9Fe3C72c5d0FBb223eDb12f/info.json new file mode 100644 index 00000000..814aaf30 --- /dev/null +++ b/blockchains/smartchain/assets/0x641a6Dc991A49f7BE9Fe3C72c5d0FBb223eDb12f/info.json @@ -0,0 +1,30 @@ +{ + "name": "Realfinance Network", + "website": "https://realfinance.network", + "short_description": "Real Finance is several decentralized products and services for the DeFi ecosystem.", + "explorer": "https://bscscan.com/token/0x641a6dc991a49f7be9fe3c72c5d0fbb223edb12f", + "description": "REFI expanded opportunities by decentralizing lending and leading processes, leading to better security, accountability and transparency of the financial system..", + "type": "BEP20", + "symbol": "REFI", + "decimals": 18, + "status": "active", + "id": "0x641a6Dc991A49f7BE9Fe3C72c5d0FBb223eDb12f", + "links": [ + { + "name": "github", + "url": "https://github.com/refinetwork" + }, + { + "name": "x", + "url": "https://x.com/refi_network" + }, + { + "name": "telegram", + "url": "https://t.me/Refinetwork" + }, + { + "name": "medium", + "url": "https://refi-network.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x641a6Dc991A49f7BE9Fe3C72c5d0FBb223eDb12f/logo.png b/blockchains/smartchain/assets/0x641a6Dc991A49f7BE9Fe3C72c5d0FBb223eDb12f/logo.png new file mode 100644 index 00000000..2914b2f5 Binary files /dev/null and b/blockchains/smartchain/assets/0x641a6Dc991A49f7BE9Fe3C72c5d0FBb223eDb12f/logo.png differ diff --git a/blockchains/smartchain/assets/0x643B6ef6306417A0b3FA2813eb5BAf30F5dd8736/info.json b/blockchains/smartchain/assets/0x643B6ef6306417A0b3FA2813eb5BAf30F5dd8736/info.json new file mode 100644 index 00000000..26aa5250 --- /dev/null +++ b/blockchains/smartchain/assets/0x643B6ef6306417A0b3FA2813eb5BAf30F5dd8736/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shilling", + "type": "BEP20", + "symbol": "SHILLING", + "decimals": 18, + "website": "https://www.knightsdefi.com", + "description": "Hold SHILLING and earn BNB! 10% Tax, 4% goes to a claimable BNB that rewards holders every 3 days on our website.", + "explorer": "https://bscscan.com/token/0x643B6ef6306417A0b3FA2813eb5BAf30F5dd8736", + "status": "active", + "id": "0x643B6ef6306417A0b3FA2813eb5BAf30F5dd8736" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x643B6ef6306417A0b3FA2813eb5BAf30F5dd8736/logo.png b/blockchains/smartchain/assets/0x643B6ef6306417A0b3FA2813eb5BAf30F5dd8736/logo.png new file mode 100644 index 00000000..fa810c58 Binary files /dev/null and b/blockchains/smartchain/assets/0x643B6ef6306417A0b3FA2813eb5BAf30F5dd8736/logo.png differ diff --git a/blockchains/smartchain/assets/0x6452D525532658B23484EB1897aF8b9325cA67b9/info.json b/blockchains/smartchain/assets/0x6452D525532658B23484EB1897aF8b9325cA67b9/info.json new file mode 100644 index 00000000..1a52678b --- /dev/null +++ b/blockchains/smartchain/assets/0x6452D525532658B23484EB1897aF8b9325cA67b9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rover Inu", + "website": "https://rovertoken.com/", + "description": "Self generating liquidity token - Reflection paid back to holders.", + "explorer": "https://bscscan.com/token/0x6452d525532658b23484eb1897af8b9325ca67b9", + "type": "BEP20", + "symbol": "ROVER", + "decimals": 9, + "status": "active", + "id": "0x6452D525532658B23484EB1897aF8b9325cA67b9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6452D525532658B23484EB1897aF8b9325cA67b9/logo.png b/blockchains/smartchain/assets/0x6452D525532658B23484EB1897aF8b9325cA67b9/logo.png new file mode 100644 index 00000000..ba207a68 Binary files /dev/null and b/blockchains/smartchain/assets/0x6452D525532658B23484EB1897aF8b9325cA67b9/logo.png differ diff --git a/blockchains/smartchain/assets/0x645660bD50F7229F1a975F1231c82EBAa31A74Fe/info.json b/blockchains/smartchain/assets/0x645660bD50F7229F1a975F1231c82EBAa31A74Fe/info.json new file mode 100644 index 00000000..e5b1b903 --- /dev/null +++ b/blockchains/smartchain/assets/0x645660bD50F7229F1a975F1231c82EBAa31A74Fe/info.json @@ -0,0 +1,29 @@ +{ + "name": "DragonCoin", + "type": "BEP20", + "symbol": "DRON", + "decimals": 8, + "website": "https://dragon-dron.com/", + "description": "DragonCoin is a promising project for all the people of the world. Our goal in creating this project to show the power of the dragon to the whole world. Which means that we will maximize holder investment by DragonCoin project and we will spend part of the profits to use of Solar energy.", + "explorer": "https://bscscan.com/token/0x645660bD50F7229F1a975F1231c82EBAa31A74Fe", + "status": "active", + "id": "0x645660bD50F7229F1a975F1231c82EBAa31A74Fe", + "links": [ + { + "name": "github", + "url": "https://github.com/DragonCoin71/" + }, + { + "name": "x", + "url": "https://x.com/drondragoncoin?s=09" + }, + { + "name": "telegram", + "url": "https://t.me/DRAGON_DRON/" + }, + { + "name": "whitepaper", + "url": "https://dragon-dron.com/index.php/whitepaper/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x645660bD50F7229F1a975F1231c82EBAa31A74Fe/logo.png b/blockchains/smartchain/assets/0x645660bD50F7229F1a975F1231c82EBAa31A74Fe/logo.png new file mode 100644 index 00000000..ce3b7a2a Binary files /dev/null and b/blockchains/smartchain/assets/0x645660bD50F7229F1a975F1231c82EBAa31A74Fe/logo.png differ diff --git a/blockchains/smartchain/assets/0x6459303F58244Ff1E7A42b90aA3782Dfb6Ca6969/info.json b/blockchains/smartchain/assets/0x6459303F58244Ff1E7A42b90aA3782Dfb6Ca6969/info.json new file mode 100644 index 00000000..1ace3a6d --- /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 00000000..50ef2736 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 new file mode 100644 index 00000000..f8907743 --- /dev/null +++ b/blockchains/smartchain/assets/0x64619f611248256F7F4b72fE83872F89d5d60d64/info.json @@ -0,0 +1,33 @@ +{ + "name": "QUINT", + "type": "BEP20", + "symbol": "QUINT", + "decimals": 18, + "website": "https://quint.io/", + "description": "Connecting the Metaverse to the Real World", + "explorer": "https://bscscan.com/token/0x64619f611248256F7F4b72fE83872F89d5d60d64", + "status": "active", + "id": "0x64619f611248256F7F4b72fE83872F89d5d60d64", + "links": [ + { + "name": "x", + "url": "https://x.com/projectquint" + }, + { + "name": "telegram", + "url": "https://t.me/projectquint" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/quint" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/quint" + } + ], + "tags": [ + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x64619f611248256F7F4b72fE83872F89d5d60d64/logo.png b/blockchains/smartchain/assets/0x64619f611248256F7F4b72fE83872F89d5d60d64/logo.png new file mode 100644 index 00000000..394eac20 Binary files /dev/null and b/blockchains/smartchain/assets/0x64619f611248256F7F4b72fE83872F89d5d60d64/logo.png differ diff --git a/blockchains/smartchain/assets/0x6466849a30247D90f0c228A6c4b6b106ff18cAB9/info.json b/blockchains/smartchain/assets/0x6466849a30247D90f0c228A6c4b6b106ff18cAB9/info.json new file mode 100644 index 00000000..7b456a11 --- /dev/null +++ b/blockchains/smartchain/assets/0x6466849a30247D90f0c228A6c4b6b106ff18cAB9/info.json @@ -0,0 +1,12 @@ +{ + "name": "Charitas", + "website": "https://charitas.fund", + "description": "Charitas Fund is a a token-based platform for charities to accept donations, while allowing the community to reward amazing initiatives.", + "explorer": "https://bscscan.com/token/0x6466849a30247d90f0c228a6c4b6b106ff18cab9", + "research": "", + "type": "BEP20", + "symbol": "CHAR", + "decimals": 18, + "status": "active", + "id": "0x6466849a30247D90f0c228A6c4b6b106ff18cAB9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6466849a30247D90f0c228A6c4b6b106ff18cAB9/logo.png b/blockchains/smartchain/assets/0x6466849a30247D90f0c228A6c4b6b106ff18cAB9/logo.png new file mode 100644 index 00000000..dbb5f776 Binary files /dev/null and b/blockchains/smartchain/assets/0x6466849a30247D90f0c228A6c4b6b106ff18cAB9/logo.png differ diff --git a/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/info.json b/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/info.json new file mode 100644 index 00000000..a3b9137c --- /dev/null +++ b/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/info.json @@ -0,0 +1,28 @@ +{ + "name": "Arbitrage Token", + "type": "BEP20", + "symbol": "RBTR", + "decimals": 18, + "website": "https://rbtr.info", + "description": "Arbitrage Token", + "explorer": "https://bscscan.com/token/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a", + "status": "active", + "id": "0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a", + "links": [ + { + "name": "x", + "url": "https://x.com/RbtrToken" + }, + { + "name": "github", + "url": "https://github.com/RubotInfo" + }, + { + "name": "telegram", + "url": "https://t.me/rbtr_token" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/logo.png b/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/logo.png new file mode 100644 index 00000000..06526b46 Binary files /dev/null and b/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/logo.png differ diff --git a/blockchains/smartchain/assets/0x646b8470feA7c413DaC19F41b5c97328EBF70De4/info.json b/blockchains/smartchain/assets/0x646b8470feA7c413DaC19F41b5c97328EBF70De4/info.json new file mode 100644 index 00000000..647cc2fd --- /dev/null +++ b/blockchains/smartchain/assets/0x646b8470feA7c413DaC19F41b5c97328EBF70De4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Networks", + "type": "BEP20", + "symbol": "BTCN", + "decimals": 18, + "website": "http://bitcoinnetworks.io/", + "description": "Bitcoin Networks is a new form token, which is digitally mineable using Binance Smart Chain blocks and fair mining reward system for everyone.", + "explorer": "https://bscscan.com/token/0x646b8470feA7c413DaC19F41b5c97328EBF70De4", + "status": "active", + "id": "0x646b8470feA7c413DaC19F41b5c97328EBF70De4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x646b8470feA7c413DaC19F41b5c97328EBF70De4/logo.png b/blockchains/smartchain/assets/0x646b8470feA7c413DaC19F41b5c97328EBF70De4/logo.png new file mode 100644 index 00000000..f729d28b Binary files /dev/null and b/blockchains/smartchain/assets/0x646b8470feA7c413DaC19F41b5c97328EBF70De4/logo.png differ diff --git a/blockchains/smartchain/assets/0x64748BeA17b6D19e242ADf20425DE2440c656142/info.json b/blockchains/smartchain/assets/0x64748BeA17b6D19e242ADf20425DE2440c656142/info.json new file mode 100644 index 00000000..7340b2b5 --- /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 00000000..63c2378c Binary files /dev/null and b/blockchains/smartchain/assets/0x64748BeA17b6D19e242ADf20425DE2440c656142/logo.png differ diff --git a/blockchains/smartchain/assets/0x648bA66B2859192d117E8FFd8712B5E8E8114e53/info.json b/blockchains/smartchain/assets/0x648bA66B2859192d117E8FFd8712B5E8E8114e53/info.json new file mode 100644 index 00000000..3b98f45f --- /dev/null +++ b/blockchains/smartchain/assets/0x648bA66B2859192d117E8FFd8712B5E8E8114e53/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptochrome", + "type": "BEP20", + "symbol": "bCHM", + "decimals": 18, + "website": "https://www.cryptochrome.org/", + "description": "Cryptochrome is a community staking, liquidity mining platform and a place to build crypto passive income.", + "explorer": "https://bscscan.com/token/0x648bA66B2859192d117E8FFd8712B5E8E8114e53", + "status": "active", + "id": "0x648bA66B2859192d117E8FFd8712B5E8E8114e53" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x648bA66B2859192d117E8FFd8712B5E8E8114e53/logo.png b/blockchains/smartchain/assets/0x648bA66B2859192d117E8FFd8712B5E8E8114e53/logo.png new file mode 100644 index 00000000..bc53dbba Binary files /dev/null and b/blockchains/smartchain/assets/0x648bA66B2859192d117E8FFd8712B5E8E8114e53/logo.png differ diff --git a/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json b/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json new file mode 100644 index 00000000..15bca650 --- /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 00000000..7af71346 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 new file mode 100644 index 00000000..41bd8b77 --- /dev/null +++ b/blockchains/smartchain/assets/0x64B55Bb2F27c3710349d9cA024d0D1Ff2DAB7f62/info.json @@ -0,0 +1,37 @@ +{ + "name": "BIGH BULL", + "type": "BEP20", + "symbol": "BIGB", + "decimals": 18, + "website": "https://bighbull.com", + "description": "BIGH BULL is a unique portal containing services & advanced tools for traders. It is the portal that has low transaction fees & a low-cost DMAT account opening than other portals. All types of market alerts are available through BIGHBULL. Our Copy & BOT Trading features enable you to take easy & quick actions. New traders or users can get to know easily about the trading", + "explorer": "https://bscscan.com/token/0x64B55Bb2F27c3710349d9cA024d0D1Ff2DAB7f62", + "status": "abandoned", + "id": "0x64B55Bb2F27c3710349d9cA024d0D1Ff2DAB7f62", + "migrate": { + "asset_id": "c20000714_t0x0bCF5693655A159bd7D9DC5064de9BD692a7b7C6", + "url": "https://bighbull.com" + }, + "links": [ + { + "name": "x", + "url": "https://x.com/BIGHBULL1" + }, + { + "name": "facebook", + "url": "https://facebook.com/people/BIGH-BULL/100070381083700/" + }, + { + "name": "github", + "url": "https://github.com/BighBullTech" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCt_MNyjP4Q0ZbuWUpGHWweA" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x64b55bb2f27c3710349d9ca024d0d1ff2dab7f62#code#L1" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x64Cc7ED01fA6b6D3E587E9c89DA04ddBEBE07580/info.json b/blockchains/smartchain/assets/0x64Cc7ED01fA6b6D3E587E9c89DA04ddBEBE07580/info.json new file mode 100644 index 00000000..4aaf9ae0 --- /dev/null +++ b/blockchains/smartchain/assets/0x64Cc7ED01fA6b6D3E587E9c89DA04ddBEBE07580/info.json @@ -0,0 +1,11 @@ +{ + "name": "SHIBA INU GOLD", + "website": "https://shibainugold.com", + "description": "SHIBA INU GOLD is Memes Token", + "explorer": "https://bscscan.com/token/0x64Cc7ED01fA6b6D3E587E9c89DA04ddBEBE07580", + "symbol": "SHIBG", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x64Cc7ED01fA6b6D3E587E9c89DA04ddBEBE07580" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x64Cc7ED01fA6b6D3E587E9c89DA04ddBEBE07580/logo.png b/blockchains/smartchain/assets/0x64Cc7ED01fA6b6D3E587E9c89DA04ddBEBE07580/logo.png new file mode 100644 index 00000000..90f65b95 Binary files /dev/null and b/blockchains/smartchain/assets/0x64Cc7ED01fA6b6D3E587E9c89DA04ddBEBE07580/logo.png differ diff --git a/blockchains/smartchain/assets/0x64Df6F1BDf3aE5924595B6E608c251306BEf0c0F/info.json b/blockchains/smartchain/assets/0x64Df6F1BDf3aE5924595B6E608c251306BEf0c0F/info.json new file mode 100644 index 00000000..cbdf9e07 --- /dev/null +++ b/blockchains/smartchain/assets/0x64Df6F1BDf3aE5924595B6E608c251306BEf0c0F/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTFDEX Token", + "type": "BEP20", + "symbol": "BTF", + "decimals": 18, + "website": "https://btfdex.com", + "description": "BTFDEX Token (BTF) - Native token of BTFDEX, a decentralized exchange AMM on Binance Smart Chain, with a total supply of 1,000,000,000 BTF. BTFDEX provides Staking, Farming, Swapping and more on Binance Smart Chain (BSC).", + "explorer": "https://bscscan.com/token/0x64Df6F1BDf3aE5924595B6E608c251306BEf0c0F", + "status": "active", + "id": "0x64Df6F1BDf3aE5924595B6E608c251306BEf0c0F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x64Df6F1BDf3aE5924595B6E608c251306BEf0c0F/logo.png b/blockchains/smartchain/assets/0x64Df6F1BDf3aE5924595B6E608c251306BEf0c0F/logo.png new file mode 100644 index 00000000..2f86ee42 Binary files /dev/null and b/blockchains/smartchain/assets/0x64Df6F1BDf3aE5924595B6E608c251306BEf0c0F/logo.png differ diff --git a/blockchains/smartchain/assets/0x64E4fea6e4F3637025c7Bcd878E2B238B01f7D4e/info.json b/blockchains/smartchain/assets/0x64E4fea6e4F3637025c7Bcd878E2B238B01f7D4e/info.json new file mode 100644 index 00000000..cae4ee47 --- /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 00000000..a516943e 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 new file mode 100644 index 00000000..cd07339f --- /dev/null +++ b/blockchains/smartchain/assets/0x64F36701138f0E85cC10c34Ea535FdBADcB54147/info.json @@ -0,0 +1,25 @@ +{ + "name": "ANON INU", + "website": "https://inuanon.com/", + "description": "AINU was mistreated his whole life and has finally found a loving place to stay he calls home. ANON INU's goal is to keep his holders happy by being a Defi token that has three functions: manual burns, adding towards liquidity and distributing his holders.", + "explorer": "https://bscscan.com/token/0x64F36701138f0E85cC10c34Ea535FdBADcB54147", + "type": "BEP20", + "symbol": "AINU", + "decimals": 9, + "status": "active", + "id": "0x64F36701138f0E85cC10c34Ea535FdBADcB54147", + "links": [ + { + "name": "discord", + "url": "https://discord.com/qzDnC4cyg3" + }, + { + "name": "x", + "url": "https://x.com/InuAnon" + }, + { + "name": "telegram", + "url": "https://t.me/InuAnonOfficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x64F36701138f0E85cC10c34Ea535FdBADcB54147/logo.png b/blockchains/smartchain/assets/0x64F36701138f0E85cC10c34Ea535FdBADcB54147/logo.png new file mode 100644 index 00000000..65bf016f Binary files /dev/null and b/blockchains/smartchain/assets/0x64F36701138f0E85cC10c34Ea535FdBADcB54147/logo.png differ diff --git a/blockchains/smartchain/assets/0x64F9DcD33D9F3A98407EeF67aC8F60CD370961Cf/info.json b/blockchains/smartchain/assets/0x64F9DcD33D9F3A98407EeF67aC8F60CD370961Cf/info.json new file mode 100644 index 00000000..64dc841b --- /dev/null +++ b/blockchains/smartchain/assets/0x64F9DcD33D9F3A98407EeF67aC8F60CD370961Cf/info.json @@ -0,0 +1,11 @@ +{ + "name": "ElonCryptoGod", + "website": "https://www.eloncryptogod.com", + "description": "ElonCryptoGod is a safe, auto-reward, hyper-deflationary DeFi token on the Binance Smart Chain built in response to the recent surge in rugpulls and scams.", + "explorer": "https://bscscan.com/token/0x64f9dcd33d9f3a98407eef67ac8f60cd370961cf", + "type": "BEP20", + "symbol": "ECGOD", + "decimals": 9, + "status": "active", + "id": "0x64F9DcD33D9F3A98407EeF67aC8F60CD370961Cf" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x64F9DcD33D9F3A98407EeF67aC8F60CD370961Cf/logo.png b/blockchains/smartchain/assets/0x64F9DcD33D9F3A98407EeF67aC8F60CD370961Cf/logo.png new file mode 100644 index 00000000..e424101f Binary files /dev/null and b/blockchains/smartchain/assets/0x64F9DcD33D9F3A98407EeF67aC8F60CD370961Cf/logo.png differ diff --git a/blockchains/smartchain/assets/0x6500197A2488610ACA288fd8E2DFE88Ec99E596c/info.json b/blockchains/smartchain/assets/0x6500197A2488610ACA288fd8E2DFE88Ec99E596c/info.json new file mode 100644 index 00000000..eeb5bd8c --- /dev/null +++ b/blockchains/smartchain/assets/0x6500197A2488610ACA288fd8E2DFE88Ec99E596c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aquari", + "website": "https://aquari.io/", + "description": "Aquari is a community driven token which goal is to save our oceans and marine life. 3% of each trade is going towards charity wallet which is then donated to environmental organizations of your choice.", + "explorer": "https://bscscan.com/token/0x6500197a2488610aca288fd8e2dfe88ec99e596c", + "symbol": "AQUARI", + "type": "BEP20", + "decimals": 9, + "status": "active", + "id": "0x6500197A2488610ACA288fd8E2DFE88Ec99E596c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6500197A2488610ACA288fd8E2DFE88Ec99E596c/logo.png b/blockchains/smartchain/assets/0x6500197A2488610ACA288fd8E2DFE88Ec99E596c/logo.png new file mode 100644 index 00000000..2e2ff514 Binary files /dev/null and b/blockchains/smartchain/assets/0x6500197A2488610ACA288fd8E2DFE88Ec99E596c/logo.png differ diff --git a/blockchains/smartchain/assets/0x6507458BB53aec6Be863161641ec28739C41cC97/info.json b/blockchains/smartchain/assets/0x6507458BB53aec6Be863161641ec28739C41cC97/info.json new file mode 100644 index 00000000..a97541c7 --- /dev/null +++ b/blockchains/smartchain/assets/0x6507458BB53aec6Be863161641ec28739C41cC97/info.json @@ -0,0 +1,11 @@ +{ + "name": "FootballStars", + "website": "https://footballstars.io/", + "description": "We connect fans, players and clubs around the globe to provide a seamless virtual integration of all their top leagues, cups and championships.", + "explorer": "https://bscscan.com/token/0x6507458BB53aec6Be863161641ec28739C41cC97", + "type": "BEP20", + "symbol": "FootballStars", + "decimals": 18, + "status": "active", + "id": "0x6507458BB53aec6Be863161641ec28739C41cC97" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6507458BB53aec6Be863161641ec28739C41cC97/logo.png b/blockchains/smartchain/assets/0x6507458BB53aec6Be863161641ec28739C41cC97/logo.png new file mode 100644 index 00000000..d9d76bae Binary files /dev/null and b/blockchains/smartchain/assets/0x6507458BB53aec6Be863161641ec28739C41cC97/logo.png differ diff --git a/blockchains/smartchain/assets/0x6509c95B1AC498390e40eb49e2248c441e78da15/info.json b/blockchains/smartchain/assets/0x6509c95B1AC498390e40eb49e2248c441e78da15/info.json new file mode 100644 index 00000000..1dc36114 --- /dev/null +++ b/blockchains/smartchain/assets/0x6509c95B1AC498390e40eb49e2248c441e78da15/info.json @@ -0,0 +1,11 @@ +{ + "name": "BNB Gold", + "type": "BEP20", + "symbol": "BNBG", + "decimals": 9, + "website": "https://bnbgold.fund", + "description": "An experimental liquidity-based DeFi token.", + "explorer": "https://bscscan.com/token/0x6509c95B1AC498390e40eb49e2248c441e78da15", + "status": "active", + "id": "0x6509c95B1AC498390e40eb49e2248c441e78da15" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6509c95B1AC498390e40eb49e2248c441e78da15/logo.png b/blockchains/smartchain/assets/0x6509c95B1AC498390e40eb49e2248c441e78da15/logo.png new file mode 100644 index 00000000..00eefc80 Binary files /dev/null and b/blockchains/smartchain/assets/0x6509c95B1AC498390e40eb49e2248c441e78da15/logo.png differ diff --git a/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/info.json b/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/info.json new file mode 100644 index 00000000..bbb131cf --- /dev/null +++ b/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus LINK", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f", + "type": "BEP20", + "symbol": "vLINK", + "decimals": 8, + "status": "active", + "id": "0x650b940a1033B8A1b1873f78730FcFC73ec11f1f", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/logo.png b/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/logo.png new file mode 100644 index 00000000..b49a660a Binary files /dev/null and b/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/logo.png differ diff --git a/blockchains/smartchain/assets/0x651BfbB26455294408Aabc61a7ADF427bf149898/info.json b/blockchains/smartchain/assets/0x651BfbB26455294408Aabc61a7ADF427bf149898/info.json new file mode 100644 index 00000000..468aba0a --- /dev/null +++ b/blockchains/smartchain/assets/0x651BfbB26455294408Aabc61a7ADF427bf149898/info.json @@ -0,0 +1,29 @@ +{ + "name": "Mello", + "website": "https://mellotoken.com/", + "description": "The Mello Token is a cryptocurrency designed for integration into the Mello Virtual Reality Casino Concept.", + "explorer": "https://bscscan.com/token/0x651bfbb26455294408aabc61a7adf427bf149898", + "type": "BEP20", + "symbol": "mello", + "decimals": 9, + "status": "active", + "id": "0x651BfbB26455294408Aabc61a7ADF427bf149898", + "links": [ + { + "name": "x", + "url": "https://x.com/@mellotoken" + }, + { + "name": "facebook", + "url": "https://facebook.com/Mellotoken/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC7vRh9a85iyi9DDujGwEy4g" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MelloToken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x651BfbB26455294408Aabc61a7ADF427bf149898/logo.png b/blockchains/smartchain/assets/0x651BfbB26455294408Aabc61a7ADF427bf149898/logo.png new file mode 100644 index 00000000..760d32c6 Binary files /dev/null and b/blockchains/smartchain/assets/0x651BfbB26455294408Aabc61a7ADF427bf149898/logo.png differ diff --git a/blockchains/smartchain/assets/0x651Cd665bD558175A956fb3D72206eA08Eb3dF5b/info.json b/blockchains/smartchain/assets/0x651Cd665bD558175A956fb3D72206eA08Eb3dF5b/info.json new file mode 100644 index 00000000..ab65d77b --- /dev/null +++ b/blockchains/smartchain/assets/0x651Cd665bD558175A956fb3D72206eA08Eb3dF5b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Roseon Finance", + "website": "https://roseon.finance/", + "description": "Roseon Finance is a mobile yield aggregator that manages your crypto + NFT portfolio and optimizes yield across DeFi and CeFi networks.", + "explorer": "https://bscscan.com/token/0x651Cd665bD558175A956fb3D72206eA08Eb3dF5b", + "type": "BEP20", + "symbol": "ROSN", + "decimals": 18, + "status": "active", + "id": "0x651Cd665bD558175A956fb3D72206eA08Eb3dF5b" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x651Cd665bD558175A956fb3D72206eA08Eb3dF5b/logo.png b/blockchains/smartchain/assets/0x651Cd665bD558175A956fb3D72206eA08Eb3dF5b/logo.png new file mode 100644 index 00000000..89293fba Binary files /dev/null and b/blockchains/smartchain/assets/0x651Cd665bD558175A956fb3D72206eA08Eb3dF5b/logo.png differ diff --git a/blockchains/smartchain/assets/0x651a89fed302227d41425235F8E934502FB94C48/info.json b/blockchains/smartchain/assets/0x651a89fed302227d41425235F8E934502FB94C48/info.json new file mode 100644 index 00000000..f6d68689 --- /dev/null +++ b/blockchains/smartchain/assets/0x651a89fed302227d41425235F8E934502FB94C48/info.json @@ -0,0 +1,41 @@ +{ + "name": "ADAcash", + "website": "https://adacash.io", + "description": "A revolutionary new token that earns you 10% ADA reflections just for holding", + "explorer": "https://bscscan.com/token/0x651a89fed302227d41425235F8E934502FB94C48", + "type": "BEP20", + "symbol": "ADAcash", + "decimals": 18, + "status": "active", + "id": "0x651a89fed302227d41425235F8E934502FB94C48", + "links": [ + { + "name": "whitepaper", + "url": "https://adacash.io/whitepaper" + }, + { + "name": "x", + "url": "https://x.com/adacashbsc" + }, + { + "name": "telegram", + "url": "https://t.me/adacashtoken" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/adacash/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCNxEz6I44_y8oThFvakyYpA" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/adacash/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/adacash" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x651a89fed302227d41425235F8E934502FB94C48/logo.png b/blockchains/smartchain/assets/0x651a89fed302227d41425235F8E934502FB94C48/logo.png new file mode 100644 index 00000000..25bcdd95 Binary files /dev/null and b/blockchains/smartchain/assets/0x651a89fed302227d41425235F8E934502FB94C48/logo.png differ diff --git a/blockchains/smartchain/assets/0x65453110319e9ce742dd146beFfaC2A5eE655e7E/info.json b/blockchains/smartchain/assets/0x65453110319e9ce742dd146beFfaC2A5eE655e7E/info.json new file mode 100644 index 00000000..d3e3563a --- /dev/null +++ b/blockchains/smartchain/assets/0x65453110319e9ce742dd146beFfaC2A5eE655e7E/info.json @@ -0,0 +1,21 @@ +{ + "name": "KWD", + "type": "BEP20", + "symbol": "KWD", + "decimals": 18, + "website": "https://kwdcoin.io/", + "description": "KWD COIN Token is a Decentralized Token (BEP-20 Token) in Binance smart chain.This token is the safe haven for everyone who got rekt from scam/rugged project.", + "explorer": "https://bscscan.com/token/0x65453110319e9ce742dd146beFfaC2A5eE655e7E", + "status": "active", + "id": "0x65453110319e9ce742dd146beFfaC2A5eE655e7E", + "links": [ + { + "name": "telegram", + "url": "https://t.me/kwdtoken" + }, + { + "name": "discord", + "url": "https://discord.com/invite/xzWFdjnf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x65453110319e9ce742dd146beFfaC2A5eE655e7E/logo.png b/blockchains/smartchain/assets/0x65453110319e9ce742dd146beFfaC2A5eE655e7E/logo.png new file mode 100644 index 00000000..7c171cf9 Binary files /dev/null and b/blockchains/smartchain/assets/0x65453110319e9ce742dd146beFfaC2A5eE655e7E/logo.png differ diff --git a/blockchains/smartchain/assets/0x658A109C5900BC6d2357c87549B651670E5b0539/info.json b/blockchains/smartchain/assets/0x658A109C5900BC6d2357c87549B651670E5b0539/info.json new file mode 100644 index 00000000..47467302 --- /dev/null +++ b/blockchains/smartchain/assets/0x658A109C5900BC6d2357c87549B651670E5b0539/info.json @@ -0,0 +1,29 @@ +{ + "name": "The Force Token", + "website": "https://for.tube/", + "description": "FOR is the ecological token of ForTube. ForTube transfers the power of community autonomy to FOR holders as much as possible through FOR to promote the realization of decentralized governance.", + "explorer": "https://bscscan.com/token/0x658a109c5900bc6d2357c87549b651670e5b0539", + "type": "BEP20", + "symbol": "FOR", + "decimals": 18, + "status": "active", + "id": "0x658A109C5900BC6d2357c87549B651670E5b0539", + "links": [ + { + "name": "github", + "url": "https://github.com/thefortube" + }, + { + "name": "x", + "url": "https://x.com/ForTubeFi" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/The_Force_Protocol/" + }, + { + "name": "telegram", + "url": "https://t.me/ForTubeFi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x658A109C5900BC6d2357c87549B651670E5b0539/logo.png b/blockchains/smartchain/assets/0x658A109C5900BC6d2357c87549B651670E5b0539/logo.png new file mode 100644 index 00000000..8343339f Binary files /dev/null and b/blockchains/smartchain/assets/0x658A109C5900BC6d2357c87549B651670E5b0539/logo.png differ diff --git a/blockchains/smartchain/assets/0x659049786cB66E4486b8C0E0cCC90a5929a21162/info.json b/blockchains/smartchain/assets/0x659049786cB66E4486b8C0E0cCC90a5929a21162/info.json new file mode 100644 index 00000000..24ac4add --- /dev/null +++ b/blockchains/smartchain/assets/0x659049786cB66E4486b8C0E0cCC90a5929a21162/info.json @@ -0,0 +1,52 @@ +{ + "name": "TTcoin", + "type": "BEP20", + "symbol": "TC", + "decimals": 4, + "website": "https://ttcoin.info", + "description": "More than 2 million users with TTcoin Football Club, TTcoin brands and more projects.", + "explorer": "https://bscscan.com/token/0x659049786cB66E4486b8C0E0cCC90a5929a21162", + "status": "active", + "id": "0x659049786cB66E4486b8C0E0cCC90a5929a21162", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ttcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/ttcoin" + }, + { + "name": "x", + "url": "https://x.com/ttcoinofficial" + }, + { + "name": "github", + "url": "https://github.com/TTCOIN-TC/tc" + }, + { + "name": "telegram", + "url": "https://t.me/ttcoinworld" + }, + { + "name": "telegram_news", + "url": "https://t.me/ttcoinofficial" + }, + { + "name": "blog", + "url": "https://ttcoin.info/blog" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCw4ctJY-VD12hwHuHl1D9kw" + }, + { + "name": "facebook", + "url": "https://facebook.com/ttcoinofficial" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x659049786cB66E4486b8C0E0cCC90a5929a21162/logo.png b/blockchains/smartchain/assets/0x659049786cB66E4486b8C0E0cCC90a5929a21162/logo.png new file mode 100644 index 00000000..1e501f61 Binary files /dev/null and b/blockchains/smartchain/assets/0x659049786cB66E4486b8C0E0cCC90a5929a21162/logo.png differ diff --git a/blockchains/smartchain/assets/0x65D84F0990B7394209d591380C2952c83D778aA3/info.json b/blockchains/smartchain/assets/0x65D84F0990B7394209d591380C2952c83D778aA3/info.json new file mode 100644 index 00000000..a2f6f7d6 --- /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 00000000..40883cd3 Binary files /dev/null and b/blockchains/smartchain/assets/0x65D84F0990B7394209d591380C2952c83D778aA3/logo.png differ diff --git a/blockchains/smartchain/assets/0x65bb3dE5174ebfFf241Aa501b6142559bf7d85A0/info.json b/blockchains/smartchain/assets/0x65bb3dE5174ebfFf241Aa501b6142559bf7d85A0/info.json new file mode 100644 index 00000000..7546f0da --- /dev/null +++ b/blockchains/smartchain/assets/0x65bb3dE5174ebfFf241Aa501b6142559bf7d85A0/info.json @@ -0,0 +1,11 @@ +{ + "name": "GymRocketCrypto Token", + "type": "BEP20", + "symbol": "GAINZ", + "decimals": 9, + "website": "https://www.gymrocketcrypto.com", + "description": "GymRocket is a fitness token that truly fuels your fitness $GAINZ", + "explorer": "https://bscscan.com/token/0x65bb3dE5174ebfFf241Aa501b6142559bf7d85A0", + "status": "active", + "id": "0x65bb3dE5174ebfFf241Aa501b6142559bf7d85A0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x65bb3dE5174ebfFf241Aa501b6142559bf7d85A0/logo.png b/blockchains/smartchain/assets/0x65bb3dE5174ebfFf241Aa501b6142559bf7d85A0/logo.png new file mode 100644 index 00000000..c8f59143 Binary files /dev/null and b/blockchains/smartchain/assets/0x65bb3dE5174ebfFf241Aa501b6142559bf7d85A0/logo.png differ diff --git a/blockchains/smartchain/assets/0x662cBBEb9872251a795F85648333Be0dbFcAd653/info.json b/blockchains/smartchain/assets/0x662cBBEb9872251a795F85648333Be0dbFcAd653/info.json new file mode 100644 index 00000000..83918862 --- /dev/null +++ b/blockchains/smartchain/assets/0x662cBBEb9872251a795F85648333Be0dbFcAd653/info.json @@ -0,0 +1,29 @@ +{ + "name": "DefiSportsCoin", + "type": "BEP20", + "symbol": "DSC", + "decimals": 18, + "website": "https://defisportscoin.com/", + "description": "DefiSports is a registered Tech Company developing an ecosystem that incentivizes stakeholders through the hybrid platform with gaming and NFT and has signed professional athletes on board as ambassadors.", + "explorer": "https://bscscan.com/token/0x662cBBEb9872251a795F85648333Be0dbFcAd653", + "status": "active", + "id": "0x662cBBEb9872251a795F85648333Be0dbFcAd653", + "links": [ + { + "name": "x", + "url": "https://x.com/DefiSportsCoin" + }, + { + "name": "github", + "url": "https://github.com/DefiSportsCoin" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZH5he22eme" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/DefiSports/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x662cBBEb9872251a795F85648333Be0dbFcAd653/logo.png b/blockchains/smartchain/assets/0x662cBBEb9872251a795F85648333Be0dbFcAd653/logo.png new file mode 100644 index 00000000..4f9cd960 Binary files /dev/null and b/blockchains/smartchain/assets/0x662cBBEb9872251a795F85648333Be0dbFcAd653/logo.png differ diff --git a/blockchains/smartchain/assets/0x6652048Fa5E66ed63a0225FFd7C82e106b0Aa18b/info.json b/blockchains/smartchain/assets/0x6652048Fa5E66ed63a0225FFd7C82e106b0Aa18b/info.json new file mode 100644 index 00000000..37a6699a --- /dev/null +++ b/blockchains/smartchain/assets/0x6652048Fa5E66ed63a0225FFd7C82e106b0Aa18b/info.json @@ -0,0 +1,33 @@ +{ + "name": "Yetucoin", + "website": "https://yetubit.com/", + "description": "Yetucoin is the governance token of the Pan-Afrikan decentralized exchange YetuSwap.", + "explorer": "https://bscscan.com/token/0x6652048fa5e66ed63a0225ffd7c82e106b0aa18b", + "type": "BEP20", + "symbol": "YETU", + "decimals": 18, + "status": "active", + "id": "0x6652048Fa5E66ed63a0225FFd7C82e106b0Aa18b", + "links": [ + { + "name": "x", + "url": "https://x.com/yetuswap" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/WCgfoG3TKk0FVYsf" + }, + { + "name": "facebook", + "url": "https://facebook.com/yetuswap/" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/YetuSwap" + }, + { + "name": "medium", + "url": "https://medium.com/yetuswap" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6652048Fa5E66ed63a0225FFd7C82e106b0Aa18b/logo.png b/blockchains/smartchain/assets/0x6652048Fa5E66ed63a0225FFd7C82e106b0Aa18b/logo.png new file mode 100644 index 00000000..e37d60d2 Binary files /dev/null and b/blockchains/smartchain/assets/0x6652048Fa5E66ed63a0225FFd7C82e106b0Aa18b/logo.png differ diff --git a/blockchains/smartchain/assets/0x66696AB8c6aAeb22dc14a2Dc4A833682388Ea901/info.json b/blockchains/smartchain/assets/0x66696AB8c6aAeb22dc14a2Dc4A833682388Ea901/info.json new file mode 100644 index 00000000..909fb3f5 --- /dev/null +++ b/blockchains/smartchain/assets/0x66696AB8c6aAeb22dc14a2Dc4A833682388Ea901/info.json @@ -0,0 +1,11 @@ +{ + "name": "BongWeedCoin", + "type": "BEP20", + "symbol": "BWC", + "decimals": 9, + "website": "https://bongweed.info/", + "description": "Token to fight for Worldwide Hemp Legalization.", + "explorer": "https://bscscan.com/token/0x66696ab8c6aaeb22dc14a2dc4a833682388ea901", + "status": "active", + "id": "0x66696AB8c6aAeb22dc14a2Dc4A833682388Ea901" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x66696AB8c6aAeb22dc14a2Dc4A833682388Ea901/logo.png b/blockchains/smartchain/assets/0x66696AB8c6aAeb22dc14a2Dc4A833682388Ea901/logo.png new file mode 100644 index 00000000..f883d98c Binary files /dev/null and b/blockchains/smartchain/assets/0x66696AB8c6aAeb22dc14a2Dc4A833682388Ea901/logo.png differ diff --git a/blockchains/smartchain/assets/0x6679eB24F59dFe111864AEc72B443d1Da666B360/info.json b/blockchains/smartchain/assets/0x6679eB24F59dFe111864AEc72B443d1Da666B360/info.json new file mode 100644 index 00000000..8094c28d --- /dev/null +++ b/blockchains/smartchain/assets/0x6679eB24F59dFe111864AEc72B443d1Da666B360/info.json @@ -0,0 +1,11 @@ +{ + "name": "ARIVA", + "website": "https://ariva.digital/", + "description": "Ariva (ARV) is a cryptocurrency supported by Ariva Co., produced for active use in global and local tourism and travel networks in the near future.", + "explorer": "https://bscscan.com/token/0x6679eB24F59dFe111864AEc72B443d1Da666B360", + "type": "BEP20", + "symbol": "ARV", + "decimals": 8, + "status": "active", + "id": "0x6679eB24F59dFe111864AEc72B443d1Da666B360" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6679eB24F59dFe111864AEc72B443d1Da666B360/logo.png b/blockchains/smartchain/assets/0x6679eB24F59dFe111864AEc72B443d1Da666B360/logo.png new file mode 100644 index 00000000..fd597697 Binary files /dev/null and b/blockchains/smartchain/assets/0x6679eB24F59dFe111864AEc72B443d1Da666B360/logo.png differ diff --git a/blockchains/smartchain/assets/0x667bEbFf5cda3C4A460B514aB478Da0A8cF80910/info.json b/blockchains/smartchain/assets/0x667bEbFf5cda3C4A460B514aB478Da0A8cF80910/info.json new file mode 100644 index 00000000..845f3b80 --- /dev/null +++ b/blockchains/smartchain/assets/0x667bEbFf5cda3C4A460B514aB478Da0A8cF80910/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin And Ethereum Standard Token", + "type": "BEP20", + "symbol": "BEST", + "decimals": 18, + "website": "https://bestokens.network", + "description": "Hashrate 2.0 ecosystem token. Link traditional crypto assets mining industry and cutting-edge Defi tech.", + "explorer": "https://bscscan.com/token/0x667bEbFf5cda3C4A460B514aB478Da0A8cF80910", + "status": "active", + "id": "0x667bEbFf5cda3C4A460B514aB478Da0A8cF80910" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x667bEbFf5cda3C4A460B514aB478Da0A8cF80910/logo.png b/blockchains/smartchain/assets/0x667bEbFf5cda3C4A460B514aB478Da0A8cF80910/logo.png new file mode 100644 index 00000000..897ef13c Binary files /dev/null and b/blockchains/smartchain/assets/0x667bEbFf5cda3C4A460B514aB478Da0A8cF80910/logo.png differ diff --git a/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/info.json b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/info.json new file mode 100644 index 00000000..54aa5206 --- /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 00000000..4406b320 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 new file mode 100644 index 00000000..a6396a8b --- /dev/null +++ b/blockchains/smartchain/assets/0x66dA5cc445feC38A9475Ae7941f89110b9d256b9/info.json @@ -0,0 +1,32 @@ +{ + "name": "Vodka Token", + "type": "BEP20", + "symbol": "VODKA", + "decimals": 18, + "website": "https://vodkatoken.com/", + "description": "Vodka Token — collectible play-to-earn NFT game based on DeFi.", + "explorer": "https://bscscan.com/token/0x66dA5cc445feC38A9475Ae7941f89110b9d256b9", + "status": "active", + "id": "0x66dA5cc445feC38A9475Ae7941f89110b9d256b9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vodka-token" + }, + { + "name": "telegram", + "url": "https://t.me/vodkatoken" + }, + { + "name": "x", + "url": "https://x.com/VodkaToken" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vodka-token" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x66dA5cc445feC38A9475Ae7941f89110b9d256b9/logo.png b/blockchains/smartchain/assets/0x66dA5cc445feC38A9475Ae7941f89110b9d256b9/logo.png new file mode 100644 index 00000000..a34f4d11 Binary files /dev/null and b/blockchains/smartchain/assets/0x66dA5cc445feC38A9475Ae7941f89110b9d256b9/logo.png differ diff --git a/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/info.json b/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/info.json new file mode 100644 index 00000000..a324c762 --- /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 00000000..67c98a7d Binary files /dev/null and b/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/logo.png differ diff --git a/blockchains/smartchain/assets/0x6719F89Bb81b357D443eE93Eb254e9dBb590bFbE/info.json b/blockchains/smartchain/assets/0x6719F89Bb81b357D443eE93Eb254e9dBb590bFbE/info.json new file mode 100644 index 00000000..8abb2b9f --- /dev/null +++ b/blockchains/smartchain/assets/0x6719F89Bb81b357D443eE93Eb254e9dBb590bFbE/info.json @@ -0,0 +1,11 @@ +{ + "name": "BurnCoin", + "type": "BEP20", + "symbol": "BURN", + "decimals": 9, + "website": "https://theburncoin.com/", + "description": "Deflationary, frictionless yield and liquidity generation protocol that powers the play dead live gaming portal.", + "explorer": "https://bscscan.com/token/0x6719F89Bb81b357D443eE93Eb254e9dBb590bFbE", + "status": "active", + "id": "0x6719F89Bb81b357D443eE93Eb254e9dBb590bFbE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6719F89Bb81b357D443eE93Eb254e9dBb590bFbE/logo.png b/blockchains/smartchain/assets/0x6719F89Bb81b357D443eE93Eb254e9dBb590bFbE/logo.png new file mode 100644 index 00000000..4d8cba08 Binary files /dev/null and b/blockchains/smartchain/assets/0x6719F89Bb81b357D443eE93Eb254e9dBb590bFbE/logo.png differ diff --git a/blockchains/smartchain/assets/0x672147dD47674757C457eB155BAA382cc10705Dd/info.json b/blockchains/smartchain/assets/0x672147dD47674757C457eB155BAA382cc10705Dd/info.json new file mode 100644 index 00000000..6db6e783 --- /dev/null +++ b/blockchains/smartchain/assets/0x672147dD47674757C457eB155BAA382cc10705Dd/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (PoS) (Portal from Polygon)", + "type": "BEP20", + "symbol": "USDCpo", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://bscscan.com/token/0x672147dD47674757C457eB155BAA382cc10705Dd", + "status": "active", + "id": "0x672147dD47674757C457eB155BAA382cc10705Dd", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x672147dD47674757C457eB155BAA382cc10705Dd/logo.png b/blockchains/smartchain/assets/0x672147dD47674757C457eB155BAA382cc10705Dd/logo.png new file mode 100644 index 00000000..4e3f74d2 Binary files /dev/null and b/blockchains/smartchain/assets/0x672147dD47674757C457eB155BAA382cc10705Dd/logo.png differ diff --git a/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/info.json b/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/info.json new file mode 100644 index 00000000..2015f9f4 --- /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 00000000..51fbe28e 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 00000000..47b53042 --- /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 00000000..71b01c59 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 new file mode 100644 index 00000000..311f9383 --- /dev/null +++ b/blockchains/smartchain/assets/0x673Da443da2f6aE7c5c660A9F0D3DD24d1643D36/info.json @@ -0,0 +1,21 @@ +{ + "name": "RainbowToken", + "type": "BEP20", + "symbol": "RAINBOW", + "decimals": 9, + "website": "https://rainbowtoken.finance/", + "description": "7 colors. 7 features. 7% tax.", + "explorer": "https://bscscan.com/token/0x673da443da2f6ae7c5c660a9f0d3dd24d1643d36", + "status": "active", + "id": "0x673Da443da2f6aE7c5c660A9F0D3DD24d1643D36", + "links": [ + { + "name": "x", + "url": "https://x.com/rainbowtokenbsc" + }, + { + "name": "telegram", + "url": "https://t.me/rainbow_crypto" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x673Da443da2f6aE7c5c660A9F0D3DD24d1643D36/logo.png b/blockchains/smartchain/assets/0x673Da443da2f6aE7c5c660A9F0D3DD24d1643D36/logo.png new file mode 100644 index 00000000..b2377207 Binary files /dev/null and b/blockchains/smartchain/assets/0x673Da443da2f6aE7c5c660A9F0D3DD24d1643D36/logo.png differ diff --git a/blockchains/smartchain/assets/0x6775729FaD1438116b2E3B4Fb2878539795297A7/info.json b/blockchains/smartchain/assets/0x6775729FaD1438116b2E3B4Fb2878539795297A7/info.json new file mode 100644 index 00000000..2374b747 --- /dev/null +++ b/blockchains/smartchain/assets/0x6775729FaD1438116b2E3B4Fb2878539795297A7/info.json @@ -0,0 +1,33 @@ +{ + "name": "CoinAlpha", + "type": "BEP20", + "symbol": "ALP", + "decimals": 9, + "website": "https://coinalpha.app/", + "description": "CoinAlpha is community based coin listing and voting platform.", + "explorer": "https://bscscan.com/token/0x6775729FaD1438116b2E3B4Fb2878539795297A7", + "status": "active", + "id": "0x6775729FaD1438116b2E3B4Fb2878539795297A7", + "links": [ + { + "name": "x", + "url": "https://x.com/CoinAlpha3" + }, + { + "name": "telegram", + "url": "https://t.me/coinalpha_x100" + }, + { + "name": "facebook", + "url": "https://facebook.com/coinalphax4r" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinalpha/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coinalpha" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6775729FaD1438116b2E3B4Fb2878539795297A7/logo.png b/blockchains/smartchain/assets/0x6775729FaD1438116b2E3B4Fb2878539795297A7/logo.png new file mode 100644 index 00000000..66b75559 Binary files /dev/null and b/blockchains/smartchain/assets/0x6775729FaD1438116b2E3B4Fb2878539795297A7/logo.png differ diff --git a/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/info.json b/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/info.json new file mode 100644 index 00000000..5306dee9 --- /dev/null +++ b/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/info.json @@ -0,0 +1,28 @@ +{ + "name": "Cratos", + "type": "BEP20", + "symbol": "CRTS", + "decimals": 18, + "website": "https://www.cratostoken.com/", + "description": "CRATOS is an ERC-20 utility token designed to facilitate citizen participation in the CRATOS app, a real-time live vote platform.", + "explorer": "https://bscscan.com/token/0x678e840c640f619e17848045d23072844224dd37", + "status": "active", + "id": "0x678e840C640F619E17848045D23072844224dD37", + "links": [ + { + "name": "x", + "url": "https://x.com/cratostoken" + }, + { + "name": "telegram", + "url": "https://t.me/CratosToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cratos/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/logo.png b/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/logo.png new file mode 100644 index 00000000..cad91b5e Binary files /dev/null and b/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/logo.png differ diff --git a/blockchains/smartchain/assets/0x679D5b2d94f454c950d683D159b87aa8eae37C9e/info.json b/blockchains/smartchain/assets/0x679D5b2d94f454c950d683D159b87aa8eae37C9e/info.json new file mode 100644 index 00000000..49d9e20b --- /dev/null +++ b/blockchains/smartchain/assets/0x679D5b2d94f454c950d683D159b87aa8eae37C9e/info.json @@ -0,0 +1,11 @@ +{ + "name": "HAMSTER", + "website": "https://www.coinhamster.io/", + "description": "Hamster is MemeToken", + "explorer": "https://bscscan.com/token/0x679d5b2d94f454c950d683d159b87aa8eae37c9e", + "type": "BEP20", + "symbol": "HAM", + "decimals": 7, + "status": "active", + "id": "0x679D5b2d94f454c950d683D159b87aa8eae37C9e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x679D5b2d94f454c950d683D159b87aa8eae37C9e/logo.png b/blockchains/smartchain/assets/0x679D5b2d94f454c950d683D159b87aa8eae37C9e/logo.png new file mode 100644 index 00000000..1523d2e8 Binary files /dev/null and b/blockchains/smartchain/assets/0x679D5b2d94f454c950d683D159b87aa8eae37C9e/logo.png differ diff --git a/blockchains/smartchain/assets/0x679a61490DaDB65C8e356509a3F566513cf03F7c/info.json b/blockchains/smartchain/assets/0x679a61490DaDB65C8e356509a3F566513cf03F7c/info.json new file mode 100644 index 00000000..faf9d127 --- /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 00000000..8792b543 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 new file mode 100644 index 00000000..a39e251f --- /dev/null +++ b/blockchains/smartchain/assets/0x67Db74b6D1Ea807CB47248489c99D144323D348d/info.json @@ -0,0 +1,36 @@ +{ + "name": "MMS COIN", + "type": "BEP20", + "symbol": "MMSC", + "decimals": 8, + "website": "https://mms-soilminerals.com", + "description": "Crypto for Staking platform and marketplace platform we create an online store use MMSC shopping product", + "explorer": "https://bscscan.com/token/0x67Db74b6D1Ea807CB47248489c99D144323D348d", + "status": "active", + "id": "0x67Db74b6D1Ea807CB47248489c99D144323D348d", + "links": [ + { + "name": "x", + "url": "https://x.com/mmsplatform" + }, + { + "name": "github", + "url": "https://github.com/Goldcopytrade/MMSCOIN/" + }, + { + "name": "telegram", + "url": "https://t.me/+seMX1nx2Bgk4ZTFl" + }, + { + "name": "docs", + "url": "https://docs.mms-soilminerals.com" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mmsc-platform/" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x67Db74b6D1Ea807CB47248489c99D144323D348d/logo.png b/blockchains/smartchain/assets/0x67Db74b6D1Ea807CB47248489c99D144323D348d/logo.png new file mode 100644 index 00000000..da995520 Binary files /dev/null and b/blockchains/smartchain/assets/0x67Db74b6D1Ea807CB47248489c99D144323D348d/logo.png differ diff --git a/blockchains/smartchain/assets/0x67E8954493dCF031243a3498da73c167EdA512d4/info.json b/blockchains/smartchain/assets/0x67E8954493dCF031243a3498da73c167EdA512d4/info.json new file mode 100644 index 00000000..4083336b --- /dev/null +++ b/blockchains/smartchain/assets/0x67E8954493dCF031243a3498da73c167EdA512d4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Galaxium", + "website": "https://galaxium.space", + "description": "A decentralized finance (DeFi) global payment solution built on lightning fast open source code providing safe, secure, and seamless transactions with bulletproof BSC technology.", + "explorer": "https://bscscan.com/token/0x67e8954493dcf031243a3498da73c167eda512d4", + "type": "BEP20", + "symbol": "GLXM", + "decimals": 9, + "status": "active", + "id": "0x67E8954493dCF031243a3498da73c167EdA512d4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x67E8954493dCF031243a3498da73c167EdA512d4/logo.png b/blockchains/smartchain/assets/0x67E8954493dCF031243a3498da73c167EdA512d4/logo.png new file mode 100644 index 00000000..2bf2adef Binary files /dev/null and b/blockchains/smartchain/assets/0x67E8954493dCF031243a3498da73c167EdA512d4/logo.png differ diff --git a/blockchains/smartchain/assets/0x67b725d7e342d7B611fa85e859Df9697D9378B2e/info.json b/blockchains/smartchain/assets/0x67b725d7e342d7B611fa85e859Df9697D9378B2e/info.json new file mode 100644 index 00000000..9302583d --- /dev/null +++ b/blockchains/smartchain/assets/0x67b725d7e342d7B611fa85e859Df9697D9378B2e/info.json @@ -0,0 +1,32 @@ +{ + "name": "The Sandbox", + "symbol": "SAND", + "type": "BEP20", + "decimals": 18, + "description": "The Sandbox is a virtual world where players can build, own, and monetize their gaming experiences in the Ethereum blockchain using SAND, the platform’s utility token.", + "website": "http://www.sandbox.game/", + "explorer": "https://bscscan.com/token/0x67b725d7e342d7b611fa85e859df9697d9378b2e", + "status": "active", + "id": "0x67b725d7e342d7B611fa85e859Df9697D9378B2e", + "links": [ + { + "name": "x", + "url": "https://x.com/TheSandboxGame" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-sandbox/" + }, + { + "name": "telegram", + "url": "https://t.me/sandboxgame" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-sandbox/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x67b725d7e342d7B611fa85e859Df9697D9378B2e/logo.png b/blockchains/smartchain/assets/0x67b725d7e342d7B611fa85e859Df9697D9378B2e/logo.png new file mode 100644 index 00000000..5b4fa743 Binary files /dev/null and b/blockchains/smartchain/assets/0x67b725d7e342d7B611fa85e859Df9697D9378B2e/logo.png differ diff --git a/blockchains/smartchain/assets/0x67d012F731c23F0313CEA1186d0121779c77fcFE/info.json b/blockchains/smartchain/assets/0x67d012F731c23F0313CEA1186d0121779c77fcFE/info.json new file mode 100644 index 00000000..befae502 --- /dev/null +++ b/blockchains/smartchain/assets/0x67d012F731c23F0313CEA1186d0121779c77fcFE/info.json @@ -0,0 +1,12 @@ +{ + "name": "APOyield SOULS", + "website": "https://apoyield.xyz/", + "description": "APOyield is a deflationary friction less yield product with it's own token called SOUL. Initially the number of SOUL tokens is equal to the number of citizens of earth. With every transaction 2% of the SOULS gets condemned forever and lost in hell. Yet another 8% gets another chance of survival in a shattered form in wallets of all remaining holders.", + "explorer": "https://bscscan.com/token/0x67d012F731c23F0313CEA1186d0121779c77fcFE", + "research": "", + "type": "BEP20", + "symbol": "SOUL", + "decimals": 8, + "status": "active", + "id": "0x67d012F731c23F0313CEA1186d0121779c77fcFE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x67d012F731c23F0313CEA1186d0121779c77fcFE/logo.png b/blockchains/smartchain/assets/0x67d012F731c23F0313CEA1186d0121779c77fcFE/logo.png new file mode 100644 index 00000000..68aed744 Binary files /dev/null and b/blockchains/smartchain/assets/0x67d012F731c23F0313CEA1186d0121779c77fcFE/logo.png differ diff --git a/blockchains/smartchain/assets/0x67d66e8Ec1Fd25d98B3Ccd3B19B7dc4b4b7fC493/info.json b/blockchains/smartchain/assets/0x67d66e8Ec1Fd25d98B3Ccd3B19B7dc4b4b7fC493/info.json new file mode 100644 index 00000000..a1bc2bf8 --- /dev/null +++ b/blockchains/smartchain/assets/0x67d66e8Ec1Fd25d98B3Ccd3B19B7dc4b4b7fC493/info.json @@ -0,0 +1,57 @@ +{ + "name": "Feeder Finance", + "type": "BEP20", + "symbol": "FEED", + "decimals": 18, + "website": "https://feeder.finance/", + "description": "Feeder Finance is a DeFi aggregator for diversified yield generation on Binance Smart Chain (“BSC”). Feeder aims to allow investors to feed capital into lending protocols, liquidity pools, vaults, and other DeFi products in an automated and diversified process — A single deposit with macro exposure.", + "explorer": "https://bscscan.com/token/0x67d66e8Ec1Fd25d98B3Ccd3B19B7dc4b4b7fC493", + "status": "active", + "id": "0x67d66e8Ec1Fd25d98B3Ccd3B19B7dc4b4b7fC493", + "links": [ + { + "name": "github", + "url": "https://github.com/FeederFinance/" + }, + { + "name": "x", + "url": "https://x.com/FeederFinance" + }, + { + "name": "telegram", + "url": "https://t.me/FeederFinance" + }, + { + "name": "telegram_news", + "url": "https://t.me/FeederFinanceNews" + }, + { + "name": "medium", + "url": "https://medium.com/feeder-finance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/CBCrxVbkmv" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC7M0nZAc0IqmY3VZ8ZcettA" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/feeder-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/feeder-finance" + }, + { + "name": "blog", + "url": "https://blog.feeder.finance" + }, + { + "name": "docs", + "url": "https://docs.feeder.finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x67d66e8Ec1Fd25d98B3Ccd3B19B7dc4b4b7fC493/logo.png b/blockchains/smartchain/assets/0x67d66e8Ec1Fd25d98B3Ccd3B19B7dc4b4b7fC493/logo.png new file mode 100644 index 00000000..0ab20cf7 Binary files /dev/null and b/blockchains/smartchain/assets/0x67d66e8Ec1Fd25d98B3Ccd3B19B7dc4b4b7fC493/logo.png differ diff --git a/blockchains/smartchain/assets/0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2/info.json b/blockchains/smartchain/assets/0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2/info.json new file mode 100644 index 00000000..3928c67b --- /dev/null +++ b/blockchains/smartchain/assets/0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2/info.json @@ -0,0 +1,30 @@ +{ + "name": "DODO", + "website": "https://dodoex.io/", + "short_description": "a liquidity protocol powered by the Proactive Market Maker (PMM) algorithm", + "description": "DODO is a liquidity protocol powered by the Proactive Market Maker (PMM) algorithm and built for capital efficiency.", + "explorer": "https://bscscan.com/token/0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2", + "type": "BEP20", + "symbol": "DODO", + "decimals": 18, + "status": "active", + "id": "0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2", + "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/smartchain/assets/0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2/logo.png b/blockchains/smartchain/assets/0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2/logo.png new file mode 100644 index 00000000..3e5c7496 Binary files /dev/null and b/blockchains/smartchain/assets/0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2/logo.png differ diff --git a/blockchains/smartchain/assets/0x681fd3e49a6188Fc526784eE70AA1C269ee2B887/info.json b/blockchains/smartchain/assets/0x681fd3e49a6188Fc526784eE70AA1C269ee2B887/info.json new file mode 100644 index 00000000..3de7b268 --- /dev/null +++ b/blockchains/smartchain/assets/0x681fd3e49a6188Fc526784eE70AA1C269ee2B887/info.json @@ -0,0 +1,11 @@ +{ + "name": "Franklin", + "type": "BEP20", + "symbol": "FLy", + "decimals": 4, + "website": "https://tokenfly.co/", + "description": "Pegged Franklin (FLy) – the native token of the VRM and Black Ocean ecosystems. Token holders can enjoy discounted trading fees, additional rebates and use Black Ocean solutions, such as Liquidity and Dark pools, Token-sale launchpad, NFT market, margin trading and liquidity mining opportunities.", + "explorer": "https://bscscan.com/token/0x681fd3e49a6188Fc526784eE70AA1C269ee2B887", + "status": "active", + "id": "0x681fd3e49a6188Fc526784eE70AA1C269ee2B887" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x681fd3e49a6188Fc526784eE70AA1C269ee2B887/logo.png b/blockchains/smartchain/assets/0x681fd3e49a6188Fc526784eE70AA1C269ee2B887/logo.png new file mode 100644 index 00000000..88bfa4bd Binary files /dev/null and b/blockchains/smartchain/assets/0x681fd3e49a6188Fc526784eE70AA1C269ee2B887/logo.png differ diff --git a/blockchains/smartchain/assets/0x683b383E9D6Cc523F4C9764daceBB5752892fc53/info.json b/blockchains/smartchain/assets/0x683b383E9D6Cc523F4C9764daceBB5752892fc53/info.json new file mode 100644 index 00000000..799c5931 --- /dev/null +++ b/blockchains/smartchain/assets/0x683b383E9D6Cc523F4C9764daceBB5752892fc53/info.json @@ -0,0 +1,45 @@ +{ + "name": "SparkLab", + "type": "BEP20", + "symbol": "Spark", + "decimals": 18, + "website": "https://thesparklab.io", + "description": "Sparklab is a next generation portfolio tracker with tons of unique features to make your token management safer and easier. ", + "explorer": "https://bscscan.com/token/0x683b383E9D6Cc523F4C9764daceBB5752892fc53", + "status": "active", + "id": "0x683b383E9D6Cc523F4C9764daceBB5752892fc53", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SparkLabOfficialChannel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sparklab/" + }, + { + "name": "x", + "url": "https://x.com/Sparklab3" + }, + { + "name": "github", + "url": "https://github.com/TheSparkLab/SparkLab" + }, + { + "name": "facebook", + "url": "https://facebook.com/groups/400402991732597" + }, + { + "name": "discord", + "url": "https://discord.com/ea454HSz" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SparkLab/" + }, + { + "name": "whitepaper", + "url": "https://thesparklab.io/whitepapersparklab.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x683b383E9D6Cc523F4C9764daceBB5752892fc53/logo.png b/blockchains/smartchain/assets/0x683b383E9D6Cc523F4C9764daceBB5752892fc53/logo.png new file mode 100644 index 00000000..4f6ceaa9 Binary files /dev/null and b/blockchains/smartchain/assets/0x683b383E9D6Cc523F4C9764daceBB5752892fc53/logo.png differ diff --git a/blockchains/smartchain/assets/0x683fae4411249Ca05243dfb919c20920f3f5bfE0/info.json b/blockchains/smartchain/assets/0x683fae4411249Ca05243dfb919c20920f3f5bfE0/info.json new file mode 100644 index 00000000..dacb03a0 --- /dev/null +++ b/blockchains/smartchain/assets/0x683fae4411249Ca05243dfb919c20920f3f5bfE0/info.json @@ -0,0 +1,49 @@ +{ + "name": "Galaxy Heroes Coin", + "type": "BEP20", + "symbol": "GHC", + "decimals": 9, + "website": "https://galaxyheroescoin.com", + "description": "Galaxy Heroes Coin is more than just a token. It will have a never seen before NFT platform and gaming app. Be a hero, a Galaxy Hero!", + "explorer": "https://bscscan.com/token/0x683fae4411249Ca05243dfb919c20920f3f5bfE0", + "status": "abandoned", + "id": "0x683fae4411249Ca05243dfb919c20920f3f5bfE0", + "links": [ + { + "name": "x", + "url": "https://x.com/galaxyheroesghc" + }, + { + "name": "github", + "url": "https://github.com/sumner770/GalaxyHeroesCoin" + }, + { + "name": "telegram", + "url": "https://t.me/galaxyheroescoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/galaxy-heroes-coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/galaxyheroescoin" + }, + { + "name": "discord", + "url": "https://discord.com/invite/NWjxH4CB9R" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/galaxyheroescoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/GalaxyHeroesCoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC0XEhzirmXN0AZQIhoR_Vzg" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x68590a47578E5060a29fd99654f4556dBfa05D10/info.json b/blockchains/smartchain/assets/0x68590a47578E5060a29fd99654f4556dBfa05D10/info.json new file mode 100644 index 00000000..093afc70 --- /dev/null +++ b/blockchains/smartchain/assets/0x68590a47578E5060a29fd99654f4556dBfa05D10/info.json @@ -0,0 +1,25 @@ +{ + "name": "MoonRat", + "website": "https://moonrat.finance/", + "description": "MoonRat is a community driven, fair launched DeFi project built on Binance Smart Chain #BSC. Three functions occur during each trade: Reflection, LP Acquisition, & Burn. MoonRat brings the most revolutionary mechanism to BSC ecosystem: Earn $BNB just by holding $MRAT token", + "explorer": "https://bscscan.com/token/0x68590a47578E5060a29fd99654f4556dBfa05D10", + "type": "BEP20", + "symbol": "SMRAT", + "decimals": 9, + "status": "active", + "id": "0x68590a47578E5060a29fd99654f4556dBfa05D10", + "links": [ + { + "name": "x", + "url": "https://x.com/MoonRatFinance" + }, + { + "name": "telegram", + "url": "https://t.me/moonrat_finance" + }, + { + "name": "medium", + "url": "https://medium.com/moonrat-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x68590a47578E5060a29fd99654f4556dBfa05D10/logo.png b/blockchains/smartchain/assets/0x68590a47578E5060a29fd99654f4556dBfa05D10/logo.png new file mode 100644 index 00000000..f37ba78c Binary files /dev/null and b/blockchains/smartchain/assets/0x68590a47578E5060a29fd99654f4556dBfa05D10/logo.png differ diff --git a/blockchains/smartchain/assets/0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed/info.json b/blockchains/smartchain/assets/0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed/info.json new file mode 100644 index 00000000..2cfa7a36 --- /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 00000000..afa7fedd 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 new file mode 100644 index 00000000..6b12a3e6 --- /dev/null +++ b/blockchains/smartchain/assets/0x68810a6F5bB0491cB9Ccf8c52735A1acf5f28009/info.json @@ -0,0 +1,28 @@ +{ + "name": "ShibaZilla", + "website": "https://shibazilla.com", + "description": "ShibaZilla aims to go above and beyond for its community, by providing investors 5% liquidity and 5% Reflection Rewards.", + "explorer": "https://bscscan.com/token/0x68810a6F5bB0491cB9Ccf8c52735A1acf5f28009", + "type": "BEP20", + "symbol": "ShibaZilla", + "decimals": 9, + "status": "active", + "id": "0x68810a6F5bB0491cB9Ccf8c52735A1acf5f28009", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/shibazillacoin" + }, + { + "name": "x", + "url": "https://x.com/shibazillacoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/shibazillacoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x68810a6F5bB0491cB9Ccf8c52735A1acf5f28009/logo.png b/blockchains/smartchain/assets/0x68810a6F5bB0491cB9Ccf8c52735A1acf5f28009/logo.png new file mode 100644 index 00000000..46a776d9 Binary files /dev/null and b/blockchains/smartchain/assets/0x68810a6F5bB0491cB9Ccf8c52735A1acf5f28009/logo.png differ diff --git a/blockchains/smartchain/assets/0x68848E1d1fFd7B38D103106C74220c1ad3494AFC/info.json b/blockchains/smartchain/assets/0x68848E1d1fFd7B38D103106C74220c1ad3494AFC/info.json new file mode 100644 index 00000000..cb3a6212 --- /dev/null +++ b/blockchains/smartchain/assets/0x68848E1d1fFd7B38D103106C74220c1ad3494AFC/info.json @@ -0,0 +1,65 @@ +{ + "name": "Rewards Bunny", + "website": "https://www.rewardsbunny.com/", + "description": "Rewards Bunny ($RBunny) is a cashback platform where we reward users for their online shopping in Crypto or USD. Start saving now with deals and discounts from top participating brands like AliExpress, Agoda, ASOS, Booking.com, Bose, Klook, Viator, and etc.", + "explorer": "https://bscscan.com/token/0x68848e1d1ffd7b38d103106c74220c1ad3494afc", + "type": "BEP20", + "symbol": "RBunny", + "decimals": 18, + "status": "active", + "id": "0x68848E1d1fFd7B38D103106C74220c1ad3494AFC", + "links": [ + { + "name": "x", + "url": "https://x.com/RewardsBunny" + }, + { + "name": "whitepaper", + "url": "https://rewardsbunny.com/whitepaper" + }, + { + "name": "medium", + "url": "https://medium.com/@rewardsbunny" + }, + { + "name": "github", + "url": "https://github.com/RewardsBunny" + }, + { + "name": "discord", + "url": "https://discord.com/invite/teEuUaNdag" + }, + { + "name": "telegram", + "url": "https://t.me/RewardsBunny" + }, + { + "name": "telegram_news", + "url": "https://t.me/RewardsBunnyChannel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rewards-bunny/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rewards-bunny" + }, + { + "name": "facebook", + "url": "https://facebook.com/RewardsBunny/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/RewardsBunny/" + }, + { + "name": "youtube", + "url": "https://youtube.com/RewardsBunny" + }, + { + "name": "source_code", + "url": "https://github.com/rewardsbunny/RewardsBunny/tree/main" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x68848E1d1fFd7B38D103106C74220c1ad3494AFC/logo.png b/blockchains/smartchain/assets/0x68848E1d1fFd7B38D103106C74220c1ad3494AFC/logo.png new file mode 100644 index 00000000..f9060098 Binary files /dev/null and b/blockchains/smartchain/assets/0x68848E1d1fFd7B38D103106C74220c1ad3494AFC/logo.png differ diff --git a/blockchains/smartchain/assets/0x6884AE24dEB7E8fa80dc9D0d56C91d78a250E9b1/info.json b/blockchains/smartchain/assets/0x6884AE24dEB7E8fa80dc9D0d56C91d78a250E9b1/info.json new file mode 100644 index 00000000..b7c69920 --- /dev/null +++ b/blockchains/smartchain/assets/0x6884AE24dEB7E8fa80dc9D0d56C91d78a250E9b1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shield Token", + "type": "BEP20", + "symbol": "SHIELD", + "decimals": 9, + "website": "https://shieldtoken.net/", + "description": "The SHIELD Token protocol is designed for Holders by putting aside 8% of each transaction and adding them to a BNB pool. Each holder can withdraw from the pool once a day according to his share of shield tokens*. Furthermore, 6% of each transaction goes into LP and 2% of each SHIELD transaction gets reflected to all holders.", + "explorer": "https://bscscan.com/token/0x6884ae24deb7e8fa80dc9d0d56c91d78a250e9b1", + "status": "active", + "id": "0x6884AE24dEB7E8fa80dc9D0d56C91d78a250E9b1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6884AE24dEB7E8fa80dc9D0d56C91d78a250E9b1/logo.png b/blockchains/smartchain/assets/0x6884AE24dEB7E8fa80dc9D0d56C91d78a250E9b1/logo.png new file mode 100644 index 00000000..30b74862 Binary files /dev/null and b/blockchains/smartchain/assets/0x6884AE24dEB7E8fa80dc9D0d56C91d78a250E9b1/logo.png differ diff --git a/blockchains/smartchain/assets/0x689437C050678935DB89381fE0B8F6ED4A3eec66/info.json b/blockchains/smartchain/assets/0x689437C050678935DB89381fE0B8F6ED4A3eec66/info.json new file mode 100644 index 00000000..23e44d74 --- /dev/null +++ b/blockchains/smartchain/assets/0x689437C050678935DB89381fE0B8F6ED4A3eec66/info.json @@ -0,0 +1,21 @@ +{ + "name": "BABYSPACEFLOKI", + "type": "BEP20", + "symbol": "BSF", + "decimals": 9, + "website": "https://www.babyspacefloki.com", + "description": "Baby Space Floki has always dreamed of going to the moon and we want to send him there. Join him for the ride! There has been a long and noble history of sending dogs to space but we want Baby Space Floki to be the first dog to step foot on the moon.", + "explorer": "https://bscscan.com/token/0x689437C050678935DB89381fE0B8F6ED4A3eec66", + "status": "active", + "id": "0x689437C050678935DB89381fE0B8F6ED4A3eec66", + "links": [ + { + "name": "x", + "url": "https://x.com/BabySpaceFloki" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/babyspacefloki" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x689437C050678935DB89381fE0B8F6ED4A3eec66/logo.png b/blockchains/smartchain/assets/0x689437C050678935DB89381fE0B8F6ED4A3eec66/logo.png new file mode 100644 index 00000000..af8daa34 Binary files /dev/null and b/blockchains/smartchain/assets/0x689437C050678935DB89381fE0B8F6ED4A3eec66/logo.png differ diff --git a/blockchains/smartchain/assets/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D/info.json b/blockchains/smartchain/assets/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D/info.json new file mode 100644 index 00000000..6cec2f50 --- /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 00000000..7bef25c5 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 00000000..f81fc128 --- /dev/null +++ b/blockchains/smartchain/assets/0x68B07cEf227Cea1b2b6683921C8c825cd5C69Ec7/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Bitcoin Trust (Ondo Tokenized)", + "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 00000000..d163a75f 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 new file mode 100644 index 00000000..82fb7e4e --- /dev/null +++ b/blockchains/smartchain/assets/0x68D10dFe87a838D63BbEf6c9A0D0b44beB799DC1/info.json @@ -0,0 +1,41 @@ +{ + "name": "MagnetGold", + "type": "BEP20", + "symbol": "MTG", + "decimals": 18, + "website": "https://mtggold.com/", + "description": "MagnetGold will represent the heart of the ecosystem for Crypto investors/companies to grow their capital, investment, venture capital, families, traders and more. MTG supports funding startups, green energy, organic/agro, E-commerce, crypto awareness, real-estate and others.", + "explorer": "https://bscscan.com/token/0x68d10dfe87a838d63bbef6c9a0d0b44beb799dc1", + "status": "active", + "id": "0x68D10dFe87a838D63BbEf6c9A0D0b44beB799DC1", + "links": [ + { + "name": "telegram", + "url": "https://t.me/yourmagnetgold/" + }, + { + "name": "facebook", + "url": "https://facebook.com/yourmagnetgold/" + }, + { + "name": "x", + "url": "https://x.com/YMagnetgold" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UClEqjwDYM9DWOa2yyXB1luQ" + }, + { + "name": "whitepaper", + "url": "https://mtggold.com/images/MTGGOLD-WHITEPAPER.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magnet-gold/" + }, + { + "name": "medium", + "url": "https://medium.com/@magnetgold" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x68D10dFe87a838D63BbEf6c9A0D0b44beB799DC1/logo.png b/blockchains/smartchain/assets/0x68D10dFe87a838D63BbEf6c9A0D0b44beB799DC1/logo.png new file mode 100644 index 00000000..1c81bfa1 Binary files /dev/null and b/blockchains/smartchain/assets/0x68D10dFe87a838D63BbEf6c9A0D0b44beB799DC1/logo.png differ diff --git a/blockchains/smartchain/assets/0x68Db713779f7470c2FD43D3d06841D0192d44939/info.json b/blockchains/smartchain/assets/0x68Db713779f7470c2FD43D3d06841D0192d44939/info.json new file mode 100644 index 00000000..9e5a8f7d --- /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 00000000..19804981 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 new file mode 100644 index 00000000..79cb3661 --- /dev/null +++ b/blockchains/smartchain/assets/0x68E374F856bF25468D365E539b700b648Bf94B67/info.json @@ -0,0 +1,25 @@ +{ + "name": "Mist", + "website": "https://mist.game/", + "description": "Mist Token is the native in-game currency of Mist developed to incorporate NFTs with in-game functions for MMO audience.", + "explorer": "https://bscscan.com/token/0x68E374F856bF25468D365E539b700b648Bf94B67", + "type": "BEP20", + "symbol": "$MIST", + "decimals": 18, + "status": "active", + "id": "0x68E374F856bF25468D365E539b700b648Bf94B67", + "links": [ + { + "name": "telegram", + "url": "https://t.me/MistNFT" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mist/" + }, + { + "name": "x", + "url": "https://x.com/MistNft" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x68E374F856bF25468D365E539b700b648Bf94B67/logo.png b/blockchains/smartchain/assets/0x68E374F856bF25468D365E539b700b648Bf94B67/logo.png new file mode 100644 index 00000000..d3a7c383 Binary files /dev/null and b/blockchains/smartchain/assets/0x68E374F856bF25468D365E539b700b648Bf94B67/logo.png differ diff --git a/blockchains/smartchain/assets/0x68F3DDEE8BAE33691E7CD0372984fD857E842760/info.json b/blockchains/smartchain/assets/0x68F3DDEE8BAE33691E7CD0372984fD857E842760/info.json new file mode 100644 index 00000000..4ba52063 --- /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 00000000..3d012e40 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 new file mode 100644 index 00000000..219a13b2 --- /dev/null +++ b/blockchains/smartchain/assets/0x68b5edb385b59E30a7A7Db1E681a449E94DF0213/info.json @@ -0,0 +1,37 @@ +{ + "name": "Silva Token", + "website": "https://www.silva.finance/", + "description": "SILVA Token is a multi-functional platform which allows each participant to keep money in a multi-currency online wallet, buy and sell currency on the exchange, invest money, get a huge benefit in a convenient currency.", + "explorer": "https://bscscan.com/token/0x68b5edb385b59E30a7A7Db1E681a449E94DF0213", + "type": "BEP20", + "symbol": "SILVA", + "decimals": 9, + "status": "active", + "id": "0x68b5edb385b59E30a7A7Db1E681a449E94DF0213", + "links": [ + { + "name": "github", + "url": "https://github.com/SilvaToken" + }, + { + "name": "whitepaper", + "url": "https://www.silva.finance/whitepaper/" + }, + { + "name": "telegram", + "url": "https://t.me/SilvaTokenId" + }, + { + "name": "x", + "url": "https://x.com/ERANetworkGroup" + }, + { + "name": "facebook", + "url": "https://facebook.com/ERATokens/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCcMavJs-DvX_bqf9G6b70Gg" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x68b5edb385b59E30a7A7Db1E681a449E94DF0213/logo.png b/blockchains/smartchain/assets/0x68b5edb385b59E30a7A7Db1E681a449E94DF0213/logo.png new file mode 100644 index 00000000..e7dd282e Binary files /dev/null and b/blockchains/smartchain/assets/0x68b5edb385b59E30a7A7Db1E681a449E94DF0213/logo.png differ diff --git a/blockchains/smartchain/assets/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2/info.json b/blockchains/smartchain/assets/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2/info.json new file mode 100644 index 00000000..24beaa87 --- /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 00000000..54c5dbe2 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 new file mode 100644 index 00000000..bacd56cc --- /dev/null +++ b/blockchains/smartchain/assets/0x6904b1c25c91fBD9431621fbE495d7c49FCD171F/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cryptonite", + "type": "BEP20", + "symbol": "CRT", + "decimals": 9, + "website": "https://www.cryptoniterelief.com/", + "description": "Cryptonite from planet Crypton on a mission to earth to save the BSC community from all the Ruggers! Play to Earn Game / NFT trading platform", + "explorer": "https://bscscan.com/token/0x6904b1c25c91fBD9431621fbE495d7c49FCD171F", + "status": "active", + "id": "0x6904b1c25c91fBD9431621fbE495d7c49FCD171F", + "links": [ + { + "name": "x", + "url": "https://x.com/CRYPTONITE_CRT" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoniteToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6904b1c25c91fBD9431621fbE495d7c49FCD171F/logo.png b/blockchains/smartchain/assets/0x6904b1c25c91fBD9431621fbE495d7c49FCD171F/logo.png new file mode 100644 index 00000000..b2a835bf Binary files /dev/null and b/blockchains/smartchain/assets/0x6904b1c25c91fBD9431621fbE495d7c49FCD171F/logo.png differ diff --git a/blockchains/smartchain/assets/0x694Dc0619e7140D83F2627D573015565096832d3/info.json b/blockchains/smartchain/assets/0x694Dc0619e7140D83F2627D573015565096832d3/info.json new file mode 100644 index 00000000..d36d2d53 --- /dev/null +++ b/blockchains/smartchain/assets/0x694Dc0619e7140D83F2627D573015565096832d3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cougar Coin", + "website": "https://cougarcoin.org", + "description": "COUGAR is a community driven, fair launched DeFi Token. 6% of every transaction is donated to http://savelacougars.org to help fund California's first freeway wildlife crossing.", + "explorer": "https://bscscan.com/token/0x694dc0619e7140d83f2627d573015565096832d3", + "type": "BEP20", + "symbol": "COUGAR", + "decimals": 9, + "status": "active", + "id": "0x694Dc0619e7140D83F2627D573015565096832d3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x694Dc0619e7140D83F2627D573015565096832d3/logo.png b/blockchains/smartchain/assets/0x694Dc0619e7140D83F2627D573015565096832d3/logo.png new file mode 100644 index 00000000..512950b3 Binary files /dev/null and b/blockchains/smartchain/assets/0x694Dc0619e7140D83F2627D573015565096832d3/logo.png differ diff --git a/blockchains/smartchain/assets/0x69763Bf14262467DE510467CAE7d826FEda7F9BC/info.json b/blockchains/smartchain/assets/0x69763Bf14262467DE510467CAE7d826FEda7F9BC/info.json new file mode 100644 index 00000000..d96cfb2c --- /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 00000000..2c99fcb7 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 new file mode 100644 index 00000000..40371fe1 --- /dev/null +++ b/blockchains/smartchain/assets/0x697bd938e7E572E787ecd7bC74a31f1814C21264/info.json @@ -0,0 +1,48 @@ +{ + "name": "Digital Financial Exchange", + "type": "BEP20", + "symbol": "DIFX", + "decimals": 18, + "website": "https://difx.io/", + "description": "Digital Financial Exchange token (DIFX) is the native token associated with the cryptocurrency exchange DIFX. Based on the Binance Smart Chain blockchain, this digital asset is BEP-20 compliant and decentralized. DIFX's value is dependent in part on the reputation of its crypto exchange.", + "explorer": "https://bscscan.com/token/0x697bd938e7E572E787ecd7bC74a31f1814C21264", + "status": "active", + "id": "0x697bd938e7E572E787ecd7bC74a31f1814C21264", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/digital-financial-exchange/" + }, + { + "name": "telegram", + "url": "https://t.me/difx1" + }, + { + "name": "github", + "url": "https://github.com/DIFX-io" + }, + { + "name": "blog", + "url": "https://difxio.medium.com/" + }, + { + "name": "docs", + "url": "https://difx.io/assets/pdf/whitepaper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/difxexchange" + }, + { + "name": "x", + "url": "https://x.com/difx_io" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/difx_exchange/" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x697bd938e7E572E787ecd7bC74a31f1814C21264/logo.png b/blockchains/smartchain/assets/0x697bd938e7E572E787ecd7bC74a31f1814C21264/logo.png new file mode 100644 index 00000000..70462fd0 Binary files /dev/null and b/blockchains/smartchain/assets/0x697bd938e7E572E787ecd7bC74a31f1814C21264/logo.png differ diff --git a/blockchains/smartchain/assets/0x698111b771363B81D1179AD102e3d8B9cD093a11/info.json b/blockchains/smartchain/assets/0x698111b771363B81D1179AD102e3d8B9cD093a11/info.json new file mode 100644 index 00000000..e1ca54f1 --- /dev/null +++ b/blockchains/smartchain/assets/0x698111b771363B81D1179AD102e3d8B9cD093a11/info.json @@ -0,0 +1,24 @@ +{ + "name": "UKA DOGE COIN", + "type": "BEP20", + "symbol": "UDOGE", + "decimals": 18, + "website": "https://ukadoge.com/", + "description": "Uka Doge is an adventure game being built on a BSC and Ethereum, Polygon network", + "explorer": "https://bscscan.com/token/0x698111b771363b81d1179ad102e3d8b9cd093a11", + "status": "active", + "id": "0x698111b771363B81D1179AD102e3d8B9cD093a11", + "links": [ + { + "name": "x", + "url": "https://x.com/ukadoge" + }, + { + "name": "telegram", + "url": "https://t.me/ukadogechat" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x698111b771363B81D1179AD102e3d8B9cD093a11/logo.png b/blockchains/smartchain/assets/0x698111b771363B81D1179AD102e3d8B9cD093a11/logo.png new file mode 100644 index 00000000..5c584d4c Binary files /dev/null and b/blockchains/smartchain/assets/0x698111b771363B81D1179AD102e3d8B9cD093a11/logo.png differ diff --git a/blockchains/smartchain/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/smartchain/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 00000000..c8031489 --- /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 00000000..203a846c 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 00000000..031f4f49 --- /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 new file mode 100644 index 00000000..10b40098 --- /dev/null +++ b/blockchains/smartchain/assets/0x69C2fcAe7e30b429166BD616A322e32BeC036bCf/info.json @@ -0,0 +1,40 @@ +{ + "name": "MuratiAI", + "type": "BEP20", + "symbol": "MURATIAI", + "decimals": 18, + "website": "https://muratiai.com/", + "description": "The MuraAI platform is built on top of blockchain technology, providing a decentralized and secure environment for artist and animators to create and distribute their work.", + "explorer": "https://bscscan.com/token/0x69C2fcAe7e30b429166BD616A322e32BeC036bCf", + "status": "active", + "id": "0x69C2fcAe7e30b429166BD616A322e32BeC036bCf", + "links": [ + { + "name": "x", + "url": "https://x.com/MuratiAI" + }, + { + "name": "telegram", + "url": "https://t.me/muratiAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/muratiai/" + }, + { + "name": "whitepaper", + "url": "https://muratiai.com/wp-content/uploads/2023/05/Whitepaper-MuratiAI.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@MuratiAI" + }, + { + "name": "discord", + "url": "https://discord.com/invite/g2ybayjgGR" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x69C2fcAe7e30b429166BD616A322e32BeC036bCf/logo.png b/blockchains/smartchain/assets/0x69C2fcAe7e30b429166BD616A322e32BeC036bCf/logo.png new file mode 100644 index 00000000..3cc8ad72 Binary files /dev/null and b/blockchains/smartchain/assets/0x69C2fcAe7e30b429166BD616A322e32BeC036bCf/logo.png differ diff --git a/blockchains/smartchain/assets/0x69b14e8D3CEBfDD8196Bfe530954A0C226E5008E/info.json b/blockchains/smartchain/assets/0x69b14e8D3CEBfDD8196Bfe530954A0C226E5008E/info.json new file mode 100644 index 00000000..b47baffc --- /dev/null +++ b/blockchains/smartchain/assets/0x69b14e8D3CEBfDD8196Bfe530954A0C226E5008E/info.json @@ -0,0 +1,29 @@ +{ + "name": "SpacePi Token", + "type": "BEP20", + "symbol": "SpacePi", + "decimals": 9, + "website": "https://space-pi.com", + "description": "SpacePi is preparing to develop Pi Metaverse, PiNFT, PiSwap and other ecosystems", + "explorer": "https://bscscan.com/token/0x69b14e8D3CEBfDD8196Bfe530954A0C226E5008E", + "status": "active", + "id": "0x69b14e8D3CEBfDD8196Bfe530954A0C226E5008E", + "links": [ + { + "name": "x", + "url": "https://x.com/SpacePi_Com" + }, + { + "name": "telegram", + "url": "https://t.me/SpacePi_com" + }, + { + "name": "telegram_news", + "url": "https://t.me/space_pi_global" + } + ], + "tags": [ + "governance", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x69b14e8D3CEBfDD8196Bfe530954A0C226E5008E/logo.png b/blockchains/smartchain/assets/0x69b14e8D3CEBfDD8196Bfe530954A0C226E5008E/logo.png new file mode 100644 index 00000000..9372519f Binary files /dev/null and b/blockchains/smartchain/assets/0x69b14e8D3CEBfDD8196Bfe530954A0C226E5008E/logo.png differ diff --git a/blockchains/smartchain/assets/0x69bC4bbf7aa7A4e08D6542687aaD175A82D23fDE/info.json b/blockchains/smartchain/assets/0x69bC4bbf7aa7A4e08D6542687aaD175A82D23fDE/info.json new file mode 100644 index 00000000..c8bf3de2 --- /dev/null +++ b/blockchains/smartchain/assets/0x69bC4bbf7aa7A4e08D6542687aaD175A82D23fDE/info.json @@ -0,0 +1,11 @@ +{ + "name": "iDoge", + "type": "BEP20", + "symbol": "iDoge", + "decimals": 9, + "website": "https://idoge.co", + "description": "Influencer Doge (iDoge™) is a BEP-20 utility token that intends to produce easy passive income for our token holders by developing various profit-generating businesses in an assortment of different industries, such as art, clothing, entertainment, gaming, and software development. We aim to become the first meme token that pays a dividend to our tokenholders every quarter.", + "explorer": "https://bscscan.com/token/0x69bc4bbf7aa7a4e08d6542687aad175a82d23fde", + "status": "active", + "id": "0x69bC4bbf7aa7A4e08D6542687aaD175A82D23fDE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x69bC4bbf7aa7A4e08D6542687aaD175A82D23fDE/logo.png b/blockchains/smartchain/assets/0x69bC4bbf7aa7A4e08D6542687aaD175A82D23fDE/logo.png new file mode 100644 index 00000000..91811840 Binary files /dev/null and b/blockchains/smartchain/assets/0x69bC4bbf7aa7A4e08D6542687aaD175A82D23fDE/logo.png differ diff --git a/blockchains/smartchain/assets/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7/info.json b/blockchains/smartchain/assets/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7/info.json new file mode 100644 index 00000000..c6800d78 --- /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 00000000..38d4a7f1 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 new file mode 100644 index 00000000..c2426f8f --- /dev/null +++ b/blockchains/smartchain/assets/0x6A684b3578f5B07c0Aa02fAFc33ED248AE0c2dB2/info.json @@ -0,0 +1,42 @@ +{ + "name": "Tech Trees Coin", + "website": "https://www.techtrees.com/", + "description": "TechTrees Coin is a web 3.0 public welfare organization in response to Elon Musk‘s vision for low carbon emissions and sustainable development, with incorporated offices, experience of numerous field research and public service activities from Asia to Europe to Latin America. Our mission is to work towards global carbon neutrality and create a respect, brighter world. As Elon Musk says ’Don't build moats, build tech trees.", + "explorer": "https://bscscan.com/token/0x6a684b3578f5b07c0aa02fafc33ed248ae0c2db2", + "research": "https://whitepaper.techtrees.com/", + "symbol": "TTC", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x6A684b3578f5B07c0Aa02fAFc33ED248AE0c2dB2", + "tags": [ + "staking", + "gamefi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/TechTreeCoin/TTC" + }, + { + "name": "x", + "url": "https://x.com/TechTreesCoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/TechTrees" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.techtrees.com" + }, + { + "name": "telegram", + "url": "https://t.me/TechTreesCoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/techtreescoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6A684b3578f5B07c0Aa02fAFc33ED248AE0c2dB2/logo.png b/blockchains/smartchain/assets/0x6A684b3578f5B07c0Aa02fAFc33ED248AE0c2dB2/logo.png new file mode 100644 index 00000000..7a2acb6f Binary files /dev/null and b/blockchains/smartchain/assets/0x6A684b3578f5B07c0Aa02fAFc33ED248AE0c2dB2/logo.png differ diff --git a/blockchains/smartchain/assets/0x6A79E08db6c08b8F88703794bF1a47f5a01eB9dC/info.json b/blockchains/smartchain/assets/0x6A79E08db6c08b8F88703794bF1a47f5a01eB9dC/info.json new file mode 100644 index 00000000..feea8d12 --- /dev/null +++ b/blockchains/smartchain/assets/0x6A79E08db6c08b8F88703794bF1a47f5a01eB9dC/info.json @@ -0,0 +1,11 @@ +{ + "name": "WINLAMBO", + "type": "BEP20", + "symbol": "WINLAMBO", + "decimals": 9, + "website": "https://winlambo.fund/", + "description": "WINLAMBO is a Lambo generating token! Holders benefit from 2% passive income and a lifetime of chances at winning 210,000 BUSD.", + "explorer": "https://bscscan.com/token/0x6A79E08db6c08b8F88703794bF1a47f5a01eB9dC", + "status": "active", + "id": "0x6A79E08db6c08b8F88703794bF1a47f5a01eB9dC" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6A79E08db6c08b8F88703794bF1a47f5a01eB9dC/logo.png b/blockchains/smartchain/assets/0x6A79E08db6c08b8F88703794bF1a47f5a01eB9dC/logo.png new file mode 100644 index 00000000..0635e3b8 Binary files /dev/null and b/blockchains/smartchain/assets/0x6A79E08db6c08b8F88703794bF1a47f5a01eB9dC/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Aa47e1A3AF34285b47B9dF4C9D3Dc61953900C5/info.json b/blockchains/smartchain/assets/0x6Aa47e1A3AF34285b47B9dF4C9D3Dc61953900C5/info.json new file mode 100644 index 00000000..ccba71da --- /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 00000000..3fd8503a 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 00000000..4c2efd24 --- /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 00000000..d4aebe6c 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 new file mode 100644 index 00000000..69186001 --- /dev/null +++ b/blockchains/smartchain/assets/0x6Ad0F087501Eee603AeDa0407c52864bc7f83322/info.json @@ -0,0 +1,40 @@ +{ + "name": "METAVERSE FACE", + "type": "BEP20", + "symbol": "MEFA", + "decimals": 9, + "website": "https://www.meta-face.space/", + "description": "Decentralized blockchain platform providing Face Nft for Metaverse", + "explorer": "https://bscscan.com/token/0x6Ad0F087501Eee603AeDa0407c52864bc7f83322", + "status": "active", + "id": "0x6Ad0F087501Eee603AeDa0407c52864bc7f83322", + "links": [ + { + "name": "x", + "url": "https://x.com/Human_meta_face" + }, + { + "name": "github", + "url": "https://github.com/MetaFaceNft/mefa" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/Meta-Face" + }, + { + "name": "telegram", + "url": "https://t.me/metafacenft" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metaverse-face/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/metaverse-face" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Ad0F087501Eee603AeDa0407c52864bc7f83322/logo.png b/blockchains/smartchain/assets/0x6Ad0F087501Eee603AeDa0407c52864bc7f83322/logo.png new file mode 100644 index 00000000..33ef258c Binary files /dev/null and b/blockchains/smartchain/assets/0x6Ad0F087501Eee603AeDa0407c52864bc7f83322/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Ae9701B9c423F40d54556C9a443409D79cE170a/info.json b/blockchains/smartchain/assets/0x6Ae9701B9c423F40d54556C9a443409D79cE170a/info.json new file mode 100644 index 00000000..7e4b8956 --- /dev/null +++ b/blockchains/smartchain/assets/0x6Ae9701B9c423F40d54556C9a443409D79cE170a/info.json @@ -0,0 +1,21 @@ +{ + "name": "Polka City", + "type": "BEP20", + "symbol": "POLC", + "decimals": 18, + "website": "https://www.polkacity.io/", + "description": "PolkaCity is a unique fully contract-based metaverse project which combines NFT, DeFi and gaming worlds!", + "explorer": "https://bscscan.com/token/0x6Ae9701B9c423F40d54556C9a443409D79cE170a", + "status": "active", + "id": "0x6Ae9701B9c423F40d54556C9a443409D79cE170a", + "links": [ + { + "name": "x", + "url": "https://x.com/PolkaCity" + }, + { + "name": "telegram", + "url": "https://t.me/Polkacity" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Ae9701B9c423F40d54556C9a443409D79cE170a/logo.png b/blockchains/smartchain/assets/0x6Ae9701B9c423F40d54556C9a443409D79cE170a/logo.png new file mode 100644 index 00000000..5380c730 Binary files /dev/null and b/blockchains/smartchain/assets/0x6Ae9701B9c423F40d54556C9a443409D79cE170a/logo.png differ diff --git a/blockchains/smartchain/assets/0x6B9481FB5465ef9Ab9347b332058D894aB09B2f6/info.json b/blockchains/smartchain/assets/0x6B9481FB5465ef9Ab9347b332058D894aB09B2f6/info.json new file mode 100644 index 00000000..ded21d59 --- /dev/null +++ b/blockchains/smartchain/assets/0x6B9481FB5465ef9Ab9347b332058D894aB09B2f6/info.json @@ -0,0 +1,36 @@ +{ + "name": "Dinoland Metaverse", + "type": "BEP20", + "symbol": "DNL", + "decimals": 18, + "website": "https://dinoland.io", + "description": "DNL is a transferable representation of attributed utility functions specified in the protocol/code of Dinoland, and which is designed to be used solely as an interoperable utility token thereon.", + "explorer": "https://bscscan.com/token/0x6B9481FB5465ef9Ab9347b332058D894aB09B2f6", + "status": "active", + "id": "0x6B9481FB5465ef9Ab9347b332058D894aB09B2f6", + "links": [ + { + "name": "x", + "url": "https://x.com/dinolandgame" + }, + { + "name": "telegram", + "url": "https://t.me/dinolandofficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/dinolandgame" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dinoland" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dinoland" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6B9481FB5465ef9Ab9347b332058D894aB09B2f6/logo.png b/blockchains/smartchain/assets/0x6B9481FB5465ef9Ab9347b332058D894aB09B2f6/logo.png new file mode 100644 index 00000000..92a48d93 Binary files /dev/null and b/blockchains/smartchain/assets/0x6B9481FB5465ef9Ab9347b332058D894aB09B2f6/logo.png differ diff --git a/blockchains/smartchain/assets/0x6B9F6f911384886b2e622e406327085238F8A3C5/info.json b/blockchains/smartchain/assets/0x6B9F6f911384886b2e622e406327085238F8A3C5/info.json new file mode 100644 index 00000000..1e83c60a --- /dev/null +++ b/blockchains/smartchain/assets/0x6B9F6f911384886b2e622e406327085238F8A3C5/info.json @@ -0,0 +1,53 @@ +{ + "name": "HeroVerse", + "type": "BEP20", + "symbol": "HER", + "decimals": 18, + "description": "HeroVerse is the first Match-3 Puzzle and RPG Strategy Game on Binance Smart Chain.", + "website": "https://heroverse.io", + "explorer": "https://bscscan.com/token/0x6B9F6f911384886b2e622e406327085238F8A3C5", + "id": "0x6B9F6f911384886b2e622e406327085238F8A3C5", + "status": "active", + "links": [ + { + "name": "telegram", + "url": "https://t.me/heroverse_game" + }, + { + "name": "telegram_news", + "url": "https://t.me/heroverse_ann" + }, + { + "name": "x", + "url": "https://x.com/heroverse_game" + }, + { + "name": "facebook", + "url": "https://facebook.com/heroverse.offical" + }, + { + "name": "blog", + "url": "https://blog.heroverse.io" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC0X6s8hZdZQXgfA-aRF5sfg" + }, + { + "name": "github", + "url": "https://github.com/Heroverse" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.heroverse.io/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/heroverse" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/heroverse/ico/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6B9F6f911384886b2e622e406327085238F8A3C5/logo.png b/blockchains/smartchain/assets/0x6B9F6f911384886b2e622e406327085238F8A3C5/logo.png new file mode 100644 index 00000000..e8a29a46 Binary files /dev/null and b/blockchains/smartchain/assets/0x6B9F6f911384886b2e622e406327085238F8A3C5/logo.png differ diff --git a/blockchains/smartchain/assets/0x6BC5AbCc56874D7fACb90C2c3812cc19aAf9B204/info.json b/blockchains/smartchain/assets/0x6BC5AbCc56874D7fACb90C2c3812cc19aAf9B204/info.json new file mode 100644 index 00000000..bb74b21a --- /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 00000000..8269df1b 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 new file mode 100644 index 00000000..fa1a7d14 --- /dev/null +++ b/blockchains/smartchain/assets/0x6Bfd4cA8eC078d613eD6a5248Eb2c7a0d5c38b7b/info.json @@ -0,0 +1,25 @@ +{ + "name": "Ecochaintoken", + "website": "https://ecochaintoken.finance", + "description": "Ecochain Token is a decentralized deflationary token which aims to bring multiple aspects together to create stability in the ecosystem and economy", + "explorer": "https://bscscan.com/token/0x6bfd4ca8ec078d613ed6a5248eb2c7a0d5c38b7b", + "type": "BEP20", + "symbol": "ECT", + "decimals": 9, + "status": "active", + "id": "0x6Bfd4cA8eC078d613eD6a5248Eb2c7a0d5c38b7b", + "links": [ + { + "name": "reddit", + "url": "https://reddit.com/user/EcoChainOfficial?utm_medium=android_app&utm_source=share" + }, + { + "name": "x", + "url": "https://x.com/EcoChainToken?s=09" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/Id7sXKJ0Xvw5ZTY0" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Bfd4cA8eC078d613eD6a5248Eb2c7a0d5c38b7b/logo.png b/blockchains/smartchain/assets/0x6Bfd4cA8eC078d613eD6a5248Eb2c7a0d5c38b7b/logo.png new file mode 100644 index 00000000..9e411b45 Binary files /dev/null and b/blockchains/smartchain/assets/0x6Bfd4cA8eC078d613eD6a5248Eb2c7a0d5c38b7b/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Bfe75D1ad432050eA973C3A3DcD88F02e2444C3/info.json b/blockchains/smartchain/assets/0x6Bfe75D1ad432050eA973C3A3DcD88F02e2444C3/info.json new file mode 100644 index 00000000..94ac0682 --- /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 00000000..660cee02 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 new file mode 100644 index 00000000..9026c262 --- /dev/null +++ b/blockchains/smartchain/assets/0x6C43751FeF27C956f7E75D5c345a65df1465f7E0/info.json @@ -0,0 +1,40 @@ +{ + "name": "CR7 Token", + "type": "BEP20", + "symbol": "CR7", + "decimals": 18, + "website": "https://www.cr7.cash/", + "description": "CR7 Token is a token built for the next generation of fan engagement and the digital assets that power it!", + "explorer": "https://bscscan.com/token/0x6C43751FeF27C956f7E75D5c345a65df1465f7E0", + "status": "active", + "id": "0x6C43751FeF27C956f7E75D5c345a65df1465f7E0", + "links": [ + { + "name": "x", + "url": "https://x.com/CR7cash" + }, + { + "name": "github", + "url": "https://github.com/CR7cash" + }, + { + "name": "telegram", + "url": "https://t.me/cr7cash" + }, + { + "name": "whitepaper", + "url": "https://cr7.cash/assets/whitepaper.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCdxGttfREGLqCRKTizaq1gg" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x6c43751fef27c956f7e75d5c345a65df1465f7e0#code#L1" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6C43751FeF27C956f7E75D5c345a65df1465f7E0/logo.png b/blockchains/smartchain/assets/0x6C43751FeF27C956f7E75D5c345a65df1465f7E0/logo.png new file mode 100644 index 00000000..32a123d9 Binary files /dev/null and b/blockchains/smartchain/assets/0x6C43751FeF27C956f7E75D5c345a65df1465f7E0/logo.png differ diff --git a/blockchains/smartchain/assets/0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05/info.json b/blockchains/smartchain/assets/0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05/info.json new file mode 100644 index 00000000..e63f1d29 --- /dev/null +++ b/blockchains/smartchain/assets/0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05/info.json @@ -0,0 +1,34 @@ +{ + "name": "Little Rabbit", + "type": "BEP20", + "symbol": "LTRBT", + "decimals": 9, + "website": "https://littlerabbitproject.com/", + "description": "LTRBT Token is capable of gasless instant yield generation. This means that holder can generate yield just holding the token in their wallet, without any further action required.", + "explorer": "https://bscscan.com/token/0x6c46422a0f7dbbad9bec3bbbc1189bfaf9794b05", + "status": "active", + "id": "0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05", + "links": [ + { + "name": "x", + "url": "https://x.com/LTRBTtwt/" + }, + { + "name": "telegram", + "url": "https://t.me/littlerabbitchat" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/little-rabbit-v2/" + }, + { + "name": "whitepaper", + "url": "https://littlerabbitproject.com/littlerabbit.pdf" + } + ], + "tags": [ + "deflationary", + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05/logo.png b/blockchains/smartchain/assets/0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05/logo.png new file mode 100644 index 00000000..067cd284 Binary files /dev/null and b/blockchains/smartchain/assets/0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05/logo.png differ diff --git a/blockchains/smartchain/assets/0x6C9AE5d6746ee1B6bD03310079AA11d8EC409212/info.json b/blockchains/smartchain/assets/0x6C9AE5d6746ee1B6bD03310079AA11d8EC409212/info.json new file mode 100644 index 00000000..38ee9412 --- /dev/null +++ b/blockchains/smartchain/assets/0x6C9AE5d6746ee1B6bD03310079AA11d8EC409212/info.json @@ -0,0 +1,36 @@ +{ + "name": "FINO DAO", + "type": "BEP20", + "symbol": "FINO", + "decimals": 18, + "website": "https://finodao.com/", + "description": "Fino DAO Token is a new BEP20 token with an elastic supply and automatic LP adds.", + "explorer": "https://bscscan.com/token/0x6C9AE5d6746ee1B6bD03310079AA11d8EC409212", + "status": "active", + "id": "0x6C9AE5d6746ee1B6bD03310079AA11d8EC409212", + "links": [ + { + "name": "x", + "url": "https://x.com/Fino_DAO" + }, + { + "name": "telegram", + "url": "https://t.me/finofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fino-dao/" + }, + { + "name": "whitepaper", + "url": "https://finofinance.gitbook.io/fino" + }, + { + "name": "source_code", + "url": "https://github.com/finodao/smartcontracts/" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6C9AE5d6746ee1B6bD03310079AA11d8EC409212/logo.png b/blockchains/smartchain/assets/0x6C9AE5d6746ee1B6bD03310079AA11d8EC409212/logo.png new file mode 100644 index 00000000..b8642d69 Binary files /dev/null and b/blockchains/smartchain/assets/0x6C9AE5d6746ee1B6bD03310079AA11d8EC409212/logo.png differ diff --git a/blockchains/smartchain/assets/0x6CAD12b3618a3C7ef1FEb6C91FdC3251f58c2a90/info.json b/blockchains/smartchain/assets/0x6CAD12b3618a3C7ef1FEb6C91FdC3251f58c2a90/info.json new file mode 100644 index 00000000..05d5307d --- /dev/null +++ b/blockchains/smartchain/assets/0x6CAD12b3618a3C7ef1FEb6C91FdC3251f58c2a90/info.json @@ -0,0 +1,28 @@ +{ + "name": "Ninneko", + "type": "BEP20", + "symbol": "NINO", + "decimals": 18, + "website": "https://ninneko.com/", + "description": "NINO token is a utility token that was issued by Ninneko development team.", + "explorer": "https://bscscan.com/token/0x6CAD12b3618a3C7ef1FEb6C91FdC3251f58c2a90", + "status": "active", + "id": "0x6CAD12b3618a3C7ef1FEb6C91FdC3251f58c2a90", + "links": [ + { + "name": "x", + "url": "https://x.com/ninnekogame" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ninneko/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/ninneko/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6CAD12b3618a3C7ef1FEb6C91FdC3251f58c2a90/logo.png b/blockchains/smartchain/assets/0x6CAD12b3618a3C7ef1FEb6C91FdC3251f58c2a90/logo.png new file mode 100644 index 00000000..feae60cf Binary files /dev/null and b/blockchains/smartchain/assets/0x6CAD12b3618a3C7ef1FEb6C91FdC3251f58c2a90/logo.png differ diff --git a/blockchains/smartchain/assets/0x6CD502AB164e37231c20578214f874a8ADbdC7c2/info.json b/blockchains/smartchain/assets/0x6CD502AB164e37231c20578214f874a8ADbdC7c2/info.json new file mode 100644 index 00000000..ab16e543 --- /dev/null +++ b/blockchains/smartchain/assets/0x6CD502AB164e37231c20578214f874a8ADbdC7c2/info.json @@ -0,0 +1,25 @@ +{ + "name": "Se7en", + "website": "https://se7enbsc.com", + "description": "Se7en is a first of its kind Token. Sales restrictions with BNB dividends delivered directly to your wallet.", + "links": [ + { + "name": "x", + "url": "https://x.com/Se7enBSC" + }, + { + "name": "telegram", + "url": "https://t.me/SE7ENBSC" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Se7enBSC" + } + ], + "explorer": "https://bscscan.com/token/0x6CD502AB164e37231c20578214f874a8ADbdC7c2", + "type": "BEP20", + "symbol": "SE7EN", + "decimals": 18, + "status": "active", + "id": "0x6CD502AB164e37231c20578214f874a8ADbdC7c2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6CD502AB164e37231c20578214f874a8ADbdC7c2/logo.png b/blockchains/smartchain/assets/0x6CD502AB164e37231c20578214f874a8ADbdC7c2/logo.png new file mode 100644 index 00000000..0674bc18 Binary files /dev/null and b/blockchains/smartchain/assets/0x6CD502AB164e37231c20578214f874a8ADbdC7c2/logo.png differ diff --git a/blockchains/smartchain/assets/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454/info.json b/blockchains/smartchain/assets/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454/info.json new file mode 100644 index 00000000..9fbcc2be --- /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 00000000..6d41b83f Binary files /dev/null and b/blockchains/smartchain/assets/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Ced2d77eEb7a6e392CC2b1A3b44C872F49fa602/info.json b/blockchains/smartchain/assets/0x6Ced2d77eEb7a6e392CC2b1A3b44C872F49fa602/info.json new file mode 100644 index 00000000..9edbc9fa --- /dev/null +++ b/blockchains/smartchain/assets/0x6Ced2d77eEb7a6e392CC2b1A3b44C872F49fa602/info.json @@ -0,0 +1,28 @@ +{ + "name": "BZ DIAMOND", + "type": "BEP20", + "symbol": "BZD", + "decimals": 9, + "website": "https://bzdiamond.com", + "description": "BZ DIAMOND is setting the goals from January 2022 to grow by developing long-term partnerships with customers worldwide and across the industries", + "explorer": "https://bscscan.com/token/0x6Ced2d77eEb7a6e392CC2b1A3b44C872F49fa602", + "status": "active", + "id": "0x6Ced2d77eEb7a6e392CC2b1A3b44C872F49fa602", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/zedxion.cryptocurrency" + }, + { + "name": "github", + "url": "https://github.com/zedxioncryptocurrency" + }, + { + "name": "telegram", + "url": "https://t.me/zedxion" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Ced2d77eEb7a6e392CC2b1A3b44C872F49fa602/logo.png b/blockchains/smartchain/assets/0x6Ced2d77eEb7a6e392CC2b1A3b44C872F49fa602/logo.png new file mode 100644 index 00000000..8467e4d2 Binary files /dev/null and b/blockchains/smartchain/assets/0x6Ced2d77eEb7a6e392CC2b1A3b44C872F49fa602/logo.png differ diff --git a/blockchains/smartchain/assets/0x6D1054C3102E842314e250b9e9C4Be327b8DaaE2/info.json b/blockchains/smartchain/assets/0x6D1054C3102E842314e250b9e9C4Be327b8DaaE2/info.json new file mode 100644 index 00000000..db135236 --- /dev/null +++ b/blockchains/smartchain/assets/0x6D1054C3102E842314e250b9e9C4Be327b8DaaE2/info.json @@ -0,0 +1,28 @@ +{ + "name": "ZEBEC", + "type": "BEP20", + "symbol": "ZBC", + "decimals": 9, + "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://bscscan.com/token/0x6D1054C3102E842314e250b9e9C4Be327b8DaaE2", + "status": "active", + "id": "0x6D1054C3102E842314e250b9e9C4Be327b8DaaE2", + "links": [ + { + "name": "x", + "url": "https://x.com/Zebec_HQ" + }, + { + "name": "telegram", + "url": "https://t.me/zebecprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/zebec-protocol/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6D1054C3102E842314e250b9e9C4Be327b8DaaE2/logo.png b/blockchains/smartchain/assets/0x6D1054C3102E842314e250b9e9C4Be327b8DaaE2/logo.png new file mode 100644 index 00000000..2a6c1f2c Binary files /dev/null and b/blockchains/smartchain/assets/0x6D1054C3102E842314e250b9e9C4Be327b8DaaE2/logo.png differ diff --git a/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/info.json b/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/info.json new file mode 100644 index 00000000..b4d217a3 --- /dev/null +++ b/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/info.json @@ -0,0 +1,44 @@ +{ + "name": "Football World Community", + "type": "BEP20", + "symbol": "Fwc", + "decimals": 9, + "website": "https://www.fwctoken.io/", + "description": "FWC is a BEP-20 token designed for buying tickets to the World Cup, booking hotels, using various related services, placing bets, and participating in lotteries.", + "explorer": "https://bscscan.com/token/0x6d3a160b86edcd46d8f9bba25c2f88cccade19fc", + "status": "active", + "id": "0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc", + "links": [ + { + "name": "x", + "url": "https://x.com/fwcommunity_q2t" + }, + { + "name": "github", + "url": "https://github.com/Fwc-Token" + }, + { + "name": "telegram", + "url": "https://t.me/QATAR2022TOKEN_BSC" + }, + { + "name": "telegram_news", + "url": "https://t.me/Qatar2022tokenAnnouncements" + }, + { + "name": "medium", + "url": "https://medium.com/@community_77832" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/football-world-community" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qatar-2022-token/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/logo.png b/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/logo.png new file mode 100644 index 00000000..0665bfb8 Binary files /dev/null and b/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/logo.png differ diff --git a/blockchains/smartchain/assets/0x6D6bA21E4C4b29CA7Bfa1c344Ba1E35B8DaE7205/info.json b/blockchains/smartchain/assets/0x6D6bA21E4C4b29CA7Bfa1c344Ba1E35B8DaE7205/info.json new file mode 100644 index 00000000..eef9c2b3 --- /dev/null +++ b/blockchains/smartchain/assets/0x6D6bA21E4C4b29CA7Bfa1c344Ba1E35B8DaE7205/info.json @@ -0,0 +1,48 @@ +{ + "id": "0x6D6bA21E4C4b29CA7Bfa1c344Ba1E35B8DaE7205", + "name": "Katana Inu Token", + "website": "https://katanainu.com", + "description": "Katana Inu is a play2earn metaverse NFT-Game in an interactive openworld - All skins and weapons are NFTs. A project that focuses on driving Gaming & NFT crypto innovation through its innovative game offerings with auto staking in in-game reward method.", + "explorer": "https://bscscan.com/token/0x6d6ba21e4c4b29ca7bfa1c344ba1e35b8dae7205", + "type": "BEP20", + "symbol": "KATA", + "decimals": 18, + "status": "active", + "tags": [ + "gamefi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/katanainu/katacoin-contract" + }, + { + "name": "x", + "url": "https://x.com/katanainu" + }, + { + "name": "telegram_news", + "url": "https://t.me/katanainuannouncement" + }, + { + "name": "telegram", + "url": "https://t.me/katanainu" + }, + { + "name": "medium", + "url": "https://medium.com/@katanainu/katana-inu-a-great-play2earn-battle-royale-pc-game-with-nft-marketplace-on-layer-2-a56f9bbcce79" + }, + { + "name": "whitepaper", + "url": "https://katanainu.com/katanainuwhitepaper.pdf/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/katana-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/katana-inu" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6D6bA21E4C4b29CA7Bfa1c344Ba1E35B8DaE7205/logo.png b/blockchains/smartchain/assets/0x6D6bA21E4C4b29CA7Bfa1c344Ba1E35B8DaE7205/logo.png new file mode 100644 index 00000000..e6b50bc8 Binary files /dev/null and b/blockchains/smartchain/assets/0x6D6bA21E4C4b29CA7Bfa1c344Ba1E35B8DaE7205/logo.png differ diff --git a/blockchains/smartchain/assets/0x6D9229FcdD8Ca20D36696653D6D48110Bd328888/info.json b/blockchains/smartchain/assets/0x6D9229FcdD8Ca20D36696653D6D48110Bd328888/info.json new file mode 100644 index 00000000..1a4f841f --- /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 new file mode 100644 index 00000000..5101634e --- /dev/null +++ b/blockchains/smartchain/assets/0x6D949f9297A522c0f97C232CC209a67Bd7CfA471/info.json @@ -0,0 +1,25 @@ +{ + "name": "MoonRat", + "website": "https://moonrat.finance/", + "description": "MoonRat is a community driven, fair launched DeFi project built on Binance Smart Chain #BSC. Three functions occur during each trade: Reflection, LP Acquisition, & Burn. MoonRat brings the most revolutionary mechanism to BSC ecosystem: Earn $BNB just by holding $MRAT token", + "explorer": "https://bscscan.com/token/0x6D949f9297A522c0f97C232CC209a67Bd7CfA471", + "type": "BEP20", + "symbol": "MRAT", + "decimals": 9, + "status": "active", + "id": "0x6D949f9297A522c0f97C232CC209a67Bd7CfA471", + "links": [ + { + "name": "x", + "url": "https://x.com/MoonRatFinance" + }, + { + "name": "telegram", + "url": "https://t.me/moonrat_finance" + }, + { + "name": "medium", + "url": "https://medium.com/moonrat-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6D949f9297A522c0f97C232CC209a67Bd7CfA471/logo.png b/blockchains/smartchain/assets/0x6D949f9297A522c0f97C232CC209a67Bd7CfA471/logo.png new file mode 100644 index 00000000..78f96ed1 Binary files /dev/null and b/blockchains/smartchain/assets/0x6D949f9297A522c0f97C232CC209a67Bd7CfA471/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Dd60AFB2586D31Bf390450aDf5E6A9659d48c4A/info.json b/blockchains/smartchain/assets/0x6Dd60AFB2586D31Bf390450aDf5E6A9659d48c4A/info.json new file mode 100644 index 00000000..c5874c67 --- /dev/null +++ b/blockchains/smartchain/assets/0x6Dd60AFB2586D31Bf390450aDf5E6A9659d48c4A/info.json @@ -0,0 +1,28 @@ +{ + "name": "Mafagafo NFT Game", + "website": "https://www.mafagafo.com/", + "description": "Have FUN playing Mafagafo, COLLECT Genesis NFTs and PROFIT from MafaCoins.", + "explorer": "https://bscscan.com/token/0x6Dd60AFB2586D31Bf390450aDf5E6A9659d48c4A", + "type": "BEP20", + "symbol": "MAFA", + "decimals": 18, + "status": "active", + "id": "0x6Dd60AFB2586D31Bf390450aDf5E6A9659d48c4A", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mafagafo/" + }, + { + "name": "x", + "url": "https://x.com/mafagafogame" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.mafagafo.com/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Dd60AFB2586D31Bf390450aDf5E6A9659d48c4A/logo.png b/blockchains/smartchain/assets/0x6Dd60AFB2586D31Bf390450aDf5E6A9659d48c4A/logo.png new file mode 100644 index 00000000..7c8285a3 Binary files /dev/null and b/blockchains/smartchain/assets/0x6Dd60AFB2586D31Bf390450aDf5E6A9659d48c4A/logo.png differ diff --git a/blockchains/smartchain/assets/0x6E0fB6B19941FAf58982F09b33A9dceDa4377155/info.json b/blockchains/smartchain/assets/0x6E0fB6B19941FAf58982F09b33A9dceDa4377155/info.json new file mode 100644 index 00000000..92df315c --- /dev/null +++ b/blockchains/smartchain/assets/0x6E0fB6B19941FAf58982F09b33A9dceDa4377155/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nero Finance", + "website": "https://nero.finance/", + "description": "Nero is decentralized finance, with the concept of auto staking and auto-create orphan liquidity and support for payments without fees", + "explorer": "https://bscscan.com/token/0x6e0fb6b19941faf58982f09b33a9dceda4377155", + "type": "BEP20", + "symbol": "NERO", + "decimals": 0, + "status": "active", + "id": "0x6E0fB6B19941FAf58982F09b33A9dceDa4377155" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6E0fB6B19941FAf58982F09b33A9dceDa4377155/logo.png b/blockchains/smartchain/assets/0x6E0fB6B19941FAf58982F09b33A9dceDa4377155/logo.png new file mode 100644 index 00000000..720a0bb8 Binary files /dev/null and b/blockchains/smartchain/assets/0x6E0fB6B19941FAf58982F09b33A9dceDa4377155/logo.png differ diff --git a/blockchains/smartchain/assets/0x6E1b4BA8F5bE7708cD475795FC23924eD078A8d2/info.json b/blockchains/smartchain/assets/0x6E1b4BA8F5bE7708cD475795FC23924eD078A8d2/info.json new file mode 100644 index 00000000..14ba92d4 --- /dev/null +++ b/blockchains/smartchain/assets/0x6E1b4BA8F5bE7708cD475795FC23924eD078A8d2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Change Our World", + "website": "https://changeourworld.io/", + "description": "We are going to $CHANGE our world. Change is a community-driven Charity token. With your help, our community and partners can encourage positive action to benefit the lives of vulnerable communities and causes around the world. By turning the concept of charity on its head, everyone can “make it.” Do great things, earn great rewards.", + "explorer": "https://bscscan.com/token/0x6e1b4ba8f5be7708cd475795fc23924ed078a8d2", + "type": "BEP20", + "symbol": "CHANGE", + "decimals": 9, + "status": "active", + "id": "0x6E1b4BA8F5bE7708cD475795FC23924eD078A8d2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6E1b4BA8F5bE7708cD475795FC23924eD078A8d2/logo.png b/blockchains/smartchain/assets/0x6E1b4BA8F5bE7708cD475795FC23924eD078A8d2/logo.png new file mode 100644 index 00000000..7d73840a Binary files /dev/null and b/blockchains/smartchain/assets/0x6E1b4BA8F5bE7708cD475795FC23924eD078A8d2/logo.png differ diff --git a/blockchains/smartchain/assets/0x6E3e077A6C0E3c27fD6D00B97387D9b7Bd451BAB/info.json b/blockchains/smartchain/assets/0x6E3e077A6C0E3c27fD6D00B97387D9b7Bd451BAB/info.json new file mode 100644 index 00000000..2395839d --- /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 00000000..7f174a20 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 00000000..500ff958 --- /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 00000000..9b717a97 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 00000000..b4113f08 --- /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 00000000..18c08453 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 new file mode 100644 index 00000000..3f64a252 --- /dev/null +++ b/blockchains/smartchain/assets/0x6Ec90334d89dBdc89E08A133271be3d104128Edb/info.json @@ -0,0 +1,28 @@ +{ + "name": "WIKI CAT", + "website": "https://wikicatcoin.com/", + "description": "Wiki Cat is a tutorial token with unique deflationary mechanism created by Sir Mapy for SMC DAO.", + "explorer": "https://bscscan.com/token/0x6Ec90334d89dBdc89E08A133271be3d104128Edb", + "type": "BEP20", + "symbol": "WKC", + "decimals": 18, + "status": "active", + "id": "0x6Ec90334d89dBdc89E08A133271be3d104128Edb", + "tags": [ + "memes" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/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/0x6Ec90334d89dBdc89E08A133271be3d104128Edb/logo.png b/blockchains/smartchain/assets/0x6Ec90334d89dBdc89E08A133271be3d104128Edb/logo.png new file mode 100644 index 00000000..60bee770 Binary files /dev/null and b/blockchains/smartchain/assets/0x6Ec90334d89dBdc89E08A133271be3d104128Edb/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Ee270D24B593F85863E95B6a7dd916A5957719f/info.json b/blockchains/smartchain/assets/0x6Ee270D24B593F85863E95B6a7dd916A5957719f/info.json new file mode 100644 index 00000000..7da6d37e --- /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 00000000..e6527437 Binary files /dev/null and b/blockchains/smartchain/assets/0x6Ee270D24B593F85863E95B6a7dd916A5957719f/logo.png differ diff --git a/blockchains/smartchain/assets/0x6F2aFbF4f5e5e804C5b954889d7Bf3768A3C9a45/info.json b/blockchains/smartchain/assets/0x6F2aFbF4f5e5e804C5b954889d7Bf3768A3C9a45/info.json new file mode 100644 index 00000000..6b5b09c5 --- /dev/null +++ b/blockchains/smartchain/assets/0x6F2aFbF4f5e5e804C5b954889d7Bf3768A3C9a45/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hope", + "type": "BEP20", + "symbol": "HOPE", + "decimals": 18, + "website": "https://hope-token.com", + "description": "Hope Token is a charity crypto token powered by community and determined to change the world.HOPE Token is applying a 8% tax fee that will be subtracted from every transaction. 5% for charity, 1% devs, 1% marketing, 1% burn", + "explorer": "https://bscscan.com/token/0x6F2aFbF4f5e5e804C5b954889d7Bf3768A3C9a45", + "status": "active", + "id": "0x6F2aFbF4f5e5e804C5b954889d7Bf3768A3C9a45" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6F2aFbF4f5e5e804C5b954889d7Bf3768A3C9a45/logo.png b/blockchains/smartchain/assets/0x6F2aFbF4f5e5e804C5b954889d7Bf3768A3C9a45/logo.png new file mode 100644 index 00000000..cbc9360c Binary files /dev/null and b/blockchains/smartchain/assets/0x6F2aFbF4f5e5e804C5b954889d7Bf3768A3C9a45/logo.png differ diff --git a/blockchains/smartchain/assets/0x6F64cC61d0d5542E40e6f2828cBddA84507D214D/info.json b/blockchains/smartchain/assets/0x6F64cC61d0d5542E40e6f2828cBddA84507D214D/info.json new file mode 100644 index 00000000..8f77a9ef --- /dev/null +++ b/blockchains/smartchain/assets/0x6F64cC61d0d5542E40e6f2828cBddA84507D214D/info.json @@ -0,0 +1,67 @@ +{ + "name": "METANIAGAMES", + "type": "BEP20", + "symbol": "METANIA", + "decimals": 9, + "website": "https://metania.games/", + "description": "We produce various collections, games, NFTs that you can use in games, and maps for you to navigate in your own world.", + "explorer": "https://bscscan.com/token/0x6f64cc61d0d5542e40e6f2828cbdda84507d214d", + "status": "active", + "id": "0x6F64cC61d0d5542E40e6f2828cBddA84507D214D", + "links": [ + { + "name": "x", + "url": "https://x.com/MetaniaGames" + }, + { + "name": "github", + "url": "https://github.com/metaniagames/contract" + }, + { + "name": "telegram", + "url": "https://t.me/MetaniagamesG" + }, + { + "name": "telegram_news", + "url": "https://t.me/metaniachannel" + }, + { + "name": "medium", + "url": "https://metania.medium.com/" + }, + { + "name": "docs", + "url": "https://docs.metania.games/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/fsAdWdmMKG" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MetaniaGames/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x6f64cc61d0d5542e40e6f2828cbdda84507d214d#code" + }, + { + "name": "whitepaper", + "url": "https://docs.metania.games/metania-paper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metaniagames/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/metaniagames" + } + ], + "tags": [ + "nft", + "defi", + "staking", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6F64cC61d0d5542E40e6f2828cBddA84507D214D/logo.png b/blockchains/smartchain/assets/0x6F64cC61d0d5542E40e6f2828cBddA84507D214D/logo.png new file mode 100644 index 00000000..eb0d2ad4 Binary files /dev/null and b/blockchains/smartchain/assets/0x6F64cC61d0d5542E40e6f2828cBddA84507D214D/logo.png differ diff --git a/blockchains/smartchain/assets/0x6F75AC3b1b6Fbe8Bb5F948e25aF03620f26Ae838/info.json b/blockchains/smartchain/assets/0x6F75AC3b1b6Fbe8Bb5F948e25aF03620f26Ae838/info.json new file mode 100644 index 00000000..e3e9a64f --- /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 00000000..8df4c1fa 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 new file mode 100644 index 00000000..f9d881fa --- /dev/null +++ b/blockchains/smartchain/assets/0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e/info.json @@ -0,0 +1,28 @@ +{ + "name": "ARPA Token", + "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", + "type": "BEP20", + "symbol": "ARPA", + "decimals": 18, + "status": "active", + "id": "0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e", + "links": [ + { + "name": "x", + "url": "https://x.com/arpaofficial?source=user_profile---------------------------" + }, + { + "name": "telegram", + "url": "https://t.me/arpa_community" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arpa-chain/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e/logo.png b/blockchains/smartchain/assets/0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e/logo.png new file mode 100644 index 00000000..457e2538 Binary files /dev/null and b/blockchains/smartchain/assets/0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e/logo.png differ diff --git a/blockchains/smartchain/assets/0x6FB0fcA6B108E3636bb511A2F60c2b490e54171f/info.json b/blockchains/smartchain/assets/0x6FB0fcA6B108E3636bb511A2F60c2b490e54171f/info.json new file mode 100644 index 00000000..9f92be65 --- /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 new file mode 100644 index 00000000..2bdc7314 --- /dev/null +++ b/blockchains/smartchain/assets/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888/info.json @@ -0,0 +1,45 @@ +{ + "name": "VeChain", + "website": "https://vechain.org", + "description": "VeChain is the world’s leading blockchain platform offering Blockchain-as-a-Service to enterprises for products and information. VeChain strives to build a trust-free and distributed business ecosystem.", + "explorer": "https://bscscan.com/token/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888", + "research": "https://research.binance.com/en/projects/vechain", + "symbol": "VET", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/vechain" + }, + { + "name": "whitepaper", + "url": "https://www.vechain.org/whitepaper/#header" + }, + { + "name": "x", + "url": "https://x.com/vechainofficial" + }, + { + "name": "telegram", + "url": "https://t.me/vechain_official_english" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/vechain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vechain/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/vechain" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888/logo.png b/blockchains/smartchain/assets/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888/logo.png new file mode 100644 index 00000000..b07113f5 Binary files /dev/null and b/blockchains/smartchain/assets/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978/info.json b/blockchains/smartchain/assets/0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978/info.json new file mode 100644 index 00000000..e073e5c8 --- /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 00000000..0611dd1f 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 new file mode 100644 index 00000000..717869df --- /dev/null +++ b/blockchains/smartchain/assets/0x6Fb05b156788E88c8ad1e057e729362ff8c39d93/info.json @@ -0,0 +1,13 @@ +{ + "name": "Aircoins", + "website": "https://www.aircoins.io/", + "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", + "type": "BEP20", + "symbol": "AIRx", + "decimals": 8, + "status": "active", + "id": "0x6Fb05b156788E88c8ad1e057e729362ff8c39d93" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Fb05b156788E88c8ad1e057e729362ff8c39d93/logo.png b/blockchains/smartchain/assets/0x6Fb05b156788E88c8ad1e057e729362ff8c39d93/logo.png new file mode 100644 index 00000000..4800b2c2 Binary files /dev/null and b/blockchains/smartchain/assets/0x6Fb05b156788E88c8ad1e057e729362ff8c39d93/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Fc015dC3283369125cc31907eEF990b8F67a7a1/info.json b/blockchains/smartchain/assets/0x6Fc015dC3283369125cc31907eEF990b8F67a7a1/info.json new file mode 100644 index 00000000..2fd16847 --- /dev/null +++ b/blockchains/smartchain/assets/0x6Fc015dC3283369125cc31907eEF990b8F67a7a1/info.json @@ -0,0 +1,25 @@ +{ + "name": "Moon Chain", + "website": "https://moonchain.finance", + "description": "Leading Decentralized Ecosystem in DeFi and Stake Sharing. Generate passive daily income while staking your tokens.", + "explorer": "https://bscscan.com/token/0x6fc015dc3283369125cc31907eef990b8f67a7a1", + "type": "BEP20", + "symbol": "MCF", + "decimals": 0, + "status": "active", + "id": "0x6Fc015dC3283369125cc31907eEF990b8F67a7a1", + "links": [ + { + "name": "x", + "url": "https://x.com/MoonChainFinane" + }, + { + "name": "telegram", + "url": "https://t.me/moonchain_tg" + }, + { + "name": "telegram_news", + "url": "https://t.me/moonchain_ann" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6Fc015dC3283369125cc31907eEF990b8F67a7a1/logo.png b/blockchains/smartchain/assets/0x6Fc015dC3283369125cc31907eEF990b8F67a7a1/logo.png new file mode 100644 index 00000000..22bf19cf Binary files /dev/null and b/blockchains/smartchain/assets/0x6Fc015dC3283369125cc31907eEF990b8F67a7a1/logo.png differ diff --git a/blockchains/smartchain/assets/0x6a0258127BA84b4361351be5e63E1AF2c5aB8888/info.json b/blockchains/smartchain/assets/0x6a0258127BA84b4361351be5e63E1AF2c5aB8888/info.json new file mode 100644 index 00000000..48aec32a --- /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 new file mode 100644 index 00000000..9be10d8c --- /dev/null +++ b/blockchains/smartchain/assets/0x6a0b66710567b6beb81A71F7e9466450a91a384b/info.json @@ -0,0 +1,33 @@ +{ + "name": "PEAR DAO", + "website": "https://peardao.io/", + "description": "Pear is a non-custodial marketplace governed by the community-driven DAO that facilitates the trading of all things tradable against on-chain assets.", + "explorer": "https://bscscan.com/token/0x6a0b66710567b6beb81A71F7e9466450a91a384b", + "type": "BEP20", + "symbol": "PEX", + "decimals": 18, + "status": "active", + "id": "0x6a0b66710567b6beb81A71F7e9466450a91a384b", + "links": [ + { + "name": "whitepaper", + "url": "https://peardao.io/whitepaper" + }, + { + "name": "x", + "url": "https://x.com/officialpeardao" + }, + { + "name": "telegram", + "url": "https://t.me/peardaoEN" + }, + { + "name": "medium", + "url": "https://officialpeardao.medium.com" + } + ], + "tags": [ + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6a0b66710567b6beb81A71F7e9466450a91a384b/logo.png b/blockchains/smartchain/assets/0x6a0b66710567b6beb81A71F7e9466450a91a384b/logo.png new file mode 100644 index 00000000..ec617edb Binary files /dev/null and b/blockchains/smartchain/assets/0x6a0b66710567b6beb81A71F7e9466450a91a384b/logo.png differ diff --git a/blockchains/smartchain/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json b/blockchains/smartchain/assets/0x6a668332825450ACD2e449372057d31b3de16a1E/info.json new file mode 100644 index 00000000..e9b2f726 --- /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 00000000..857fe690 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 00000000..42331562 --- /dev/null +++ b/blockchains/smartchain/assets/0x6a708EAD771238919D85930b5a0f10454E1C331a/info.json @@ -0,0 +1,24 @@ +{ + "name": "SPDR S&P 500 ETF (Ondo Tokenized)", + "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 00000000..8e3a7a03 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 new file mode 100644 index 00000000..307daa94 --- /dev/null +++ b/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/info.json @@ -0,0 +1,48 @@ +{ + "name": "King of Legends", + "website": "http://kingoflegends.net", + "description": "King of Legends is a metaverse platform built specifically for the GameFi project.", + "explorer": "https://bscscan.com/token/0x6a731582f6189477c379A8da7d26Dcec3F0a0919", + "symbol": "KOL", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x6a731582f6189477c379A8da7d26Dcec3F0a0919", + "tags": [ + "gamefi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/King0fLegends" + }, + { + "name": "x", + "url": "https://x.com/kingofIegends" + }, + { + "name": "facebook", + "url": "https://facebook.com/kingoflegends.net" + }, + { + "name": "whitepaper", + "url": "https://kingoflegends.net/whitepaper.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCbnEsUX-GpUdX-xlSQOdzqw" + }, + { + "name": "telegram", + "url": "https://t.me/KingofLegends_Global" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/king-of-legends-2" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/king-of-legends" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/logo.png b/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/logo.png new file mode 100644 index 00000000..ce53a765 Binary files /dev/null and b/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/logo.png differ diff --git a/blockchains/smartchain/assets/0x6a8Fd46F88dBD7bdC2D536C604f811C63052ce0F/info.json b/blockchains/smartchain/assets/0x6a8Fd46F88dBD7bdC2D536C604f811C63052ce0F/info.json new file mode 100644 index 00000000..2af3fd9d --- /dev/null +++ b/blockchains/smartchain/assets/0x6a8Fd46F88dBD7bdC2D536C604f811C63052ce0F/info.json @@ -0,0 +1,25 @@ +{ + "name": "TRVL", + "website": "https://www.dtravel.com/", + "description": "Dtravel is a DAO: a community-owned and governed ecosystem that operates for the benefit of its community members.", + "explorer": "https://bscscan.com/token/0x6a8Fd46F88dBD7bdC2D536C604f811C63052ce0F", + "type": "BEP20", + "symbol": "TRVL", + "decimals": 18, + "status": "active", + "id": "0x6a8Fd46F88dBD7bdC2D536C604f811C63052ce0F", + "links": [ + { + "name": "x", + "url": "https://x.com/TRVL" + }, + { + "name": "telegram", + "url": "https://t.me/dtravelcommunity" + }, + { + "name": "medium", + "url": "https://medium.com/dtravel-community" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6a8Fd46F88dBD7bdC2D536C604f811C63052ce0F/logo.png b/blockchains/smartchain/assets/0x6a8Fd46F88dBD7bdC2D536C604f811C63052ce0F/logo.png new file mode 100644 index 00000000..061d6cf5 Binary files /dev/null and b/blockchains/smartchain/assets/0x6a8Fd46F88dBD7bdC2D536C604f811C63052ce0F/logo.png differ diff --git a/blockchains/smartchain/assets/0x6b23C89196DeB721e6Fd9726E6C76E4810a464bc/info.json b/blockchains/smartchain/assets/0x6b23C89196DeB721e6Fd9726E6C76E4810a464bc/info.json new file mode 100644 index 00000000..acac75eb --- /dev/null +++ b/blockchains/smartchain/assets/0x6b23C89196DeB721e6Fd9726E6C76E4810a464bc/info.json @@ -0,0 +1,65 @@ +{ + "name": "X World Games", + "type": "BEP20", + "symbol": "XWG", + "decimals": 18, + "website": "https://xwg.games/", + "description": "X World Games is the next-generation decentralized blockchain game ecosystem. \"X World\" represents an unknown universe to be explored, and \"Games\" represents more games that will be added to this ecosystem. The vision of X World Games is to build a diversified gaming ecosystem that connects traditional game players and the blockchain world and help more game developers who want to enter the crypto space to create the underlying blockchain framework.", + "explorer": "https://bscscan.com/token/0x6b23C89196DeB721e6Fd9726E6C76E4810a464bc", + "status": "active", + "id": "0x6b23C89196DeB721e6Fd9726E6C76E4810a464bc", + "links": [ + { + "name": "x", + "url": "https://x.com/xwg_games" + }, + { + "name": "github", + "url": "https://github.com/XWorldGames" + }, + { + "name": "telegram", + "url": "https://t.me/xworldgames" + }, + { + "name": "discord", + "url": "https://discord.com/invite/xworldgames" + }, + { + "name": "medium", + "url": "https://medium.com/x-world-games" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/XWorldGames/" + }, + { + "name": "facebook", + "url": "https://facebook.com/XWGgames" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/XWorldGames" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/x-world-games/" + }, + { + "name": "docs", + "url": "https://docs.xwg.games/" + }, + { + "name": "whitepaper", + "url": "https://docs.xwg.games/docs/whitepaper" + }, + { + "name": "telegram_news", + "url": "https://t.me/xwg_games_ann" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/x-world-games" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6b23C89196DeB721e6Fd9726E6C76E4810a464bc/logo.png b/blockchains/smartchain/assets/0x6b23C89196DeB721e6Fd9726E6C76E4810a464bc/logo.png new file mode 100644 index 00000000..9eeabfc8 Binary files /dev/null and b/blockchains/smartchain/assets/0x6b23C89196DeB721e6Fd9726E6C76E4810a464bc/logo.png differ diff --git a/blockchains/smartchain/assets/0x6b51231c43B1604815313801dB5E9E614914d6e4/info.json b/blockchains/smartchain/assets/0x6b51231c43B1604815313801dB5E9E614914d6e4/info.json new file mode 100644 index 00000000..c9015b44 --- /dev/null +++ b/blockchains/smartchain/assets/0x6b51231c43B1604815313801dB5E9E614914d6e4/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeGalaxy", + "type": "BEP20", + "symbol": "SG", + "decimals": 9, + "website": "https://safegalaxy.net/", + "description": "SAFEGALAXY is frictionless yield & liquidity generation smart contract protocol that works by applying 10% fee for each transaction and instantly splitting that fee by rewarding holders with 5% and auto locking 5% in Pancake LP. Holders don't need to do anything. Just hold SAFEGALAXY in their wallet to earn rewards. Contract allows to exclude certain addresses like Pancakeswap contract address from receiving rewards,or allow to include certain address to receive reward if required.", + "explorer": "https://bscscan.com/token/0x6b51231c43B1604815313801dB5E9E614914d6e4", + "status": "active", + "id": "0x6b51231c43B1604815313801dB5E9E614914d6e4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6b51231c43B1604815313801dB5E9E614914d6e4/logo.png b/blockchains/smartchain/assets/0x6b51231c43B1604815313801dB5E9E614914d6e4/logo.png new file mode 100644 index 00000000..ce721907 Binary files /dev/null and b/blockchains/smartchain/assets/0x6b51231c43B1604815313801dB5E9E614914d6e4/logo.png differ diff --git a/blockchains/smartchain/assets/0x6b9Cca56e783d1345785E4aA1188Bbd673E911A2/info.json b/blockchains/smartchain/assets/0x6b9Cca56e783d1345785E4aA1188Bbd673E911A2/info.json new file mode 100644 index 00000000..1b35cc97 --- /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 00000000..8df4c1fa Binary files /dev/null and b/blockchains/smartchain/assets/0x6b9Cca56e783d1345785E4aA1188Bbd673E911A2/logo.png differ diff --git a/blockchains/smartchain/assets/0x6bbf411a9a50ef4427d64d1Ea74ad294c2BBb0c8/info.json b/blockchains/smartchain/assets/0x6bbf411a9a50ef4427d64d1Ea74ad294c2BBb0c8/info.json new file mode 100644 index 00000000..1bcbc076 --- /dev/null +++ b/blockchains/smartchain/assets/0x6bbf411a9a50ef4427d64d1Ea74ad294c2BBb0c8/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeCap Token", + "type": "BEP20", + "symbol": "SFC", + "decimals": 18, + "website": "https://safecap.org/", + "description": "SafeCap Binance Smart Chain based project. SafeCap is an enterprise-grade, service-centric platform that brings user-friendly blockchain experience to millions.", + "explorer": "https://bscscan.com/token/0x6bbf411a9a50ef4427d64d1Ea74ad294c2BBb0c8", + "status": "active", + "id": "0x6bbf411a9a50ef4427d64d1Ea74ad294c2BBb0c8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6bbf411a9a50ef4427d64d1Ea74ad294c2BBb0c8/logo.png b/blockchains/smartchain/assets/0x6bbf411a9a50ef4427d64d1Ea74ad294c2BBb0c8/logo.png new file mode 100644 index 00000000..3e99f52e Binary files /dev/null and b/blockchains/smartchain/assets/0x6bbf411a9a50ef4427d64d1Ea74ad294c2BBb0c8/logo.png differ diff --git a/blockchains/smartchain/assets/0x6bf3a93793e52f75543c92AfEC4636559988e3c1/info.json b/blockchains/smartchain/assets/0x6bf3a93793e52f75543c92AfEC4636559988e3c1/info.json new file mode 100644 index 00000000..884a0ac4 --- /dev/null +++ b/blockchains/smartchain/assets/0x6bf3a93793e52f75543c92AfEC4636559988e3c1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crucifearous Finance", + "type": "BEP20", + "symbol": "CIFI", + "decimals": 9, + "website": "https://crucifearous.finance", + "description": "This is the request from https://github.com/trustwallet/assets/pull/10118 Already paid and just needed for new PR due to correction", + "explorer": "https://bscscan.com/token/0x6bf3a93793e52f75543c92AfEC4636559988e3c1", + "status": "active", + "id": "0x6bf3a93793e52f75543c92AfEC4636559988e3c1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6bf3a93793e52f75543c92AfEC4636559988e3c1/logo.png b/blockchains/smartchain/assets/0x6bf3a93793e52f75543c92AfEC4636559988e3c1/logo.png new file mode 100644 index 00000000..d09f88f5 Binary files /dev/null and b/blockchains/smartchain/assets/0x6bf3a93793e52f75543c92AfEC4636559988e3c1/logo.png differ diff --git a/blockchains/smartchain/assets/0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819/info.json b/blockchains/smartchain/assets/0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819/info.json new file mode 100644 index 00000000..4438f58a --- /dev/null +++ b/blockchains/smartchain/assets/0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819/info.json @@ -0,0 +1,31 @@ +{ + "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", + "type": "BEP20", + "symbol": "ADX", + "decimals": 18, + "status": "active", + "id": "0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819", + "tags": [ + "defi" + ], + "links": [ + { + "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/" + } + ] +} diff --git a/blockchains/smartchain/assets/0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819/logo.png b/blockchains/smartchain/assets/0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819/logo.png new file mode 100644 index 00000000..0f6b8459 Binary files /dev/null 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 new file mode 100644 index 00000000..f72fb37b --- /dev/null +++ b/blockchains/smartchain/assets/0x6bfd576220e8444CA4Cc5f89Efbd7f02a4C94C16/info.json @@ -0,0 +1,29 @@ +{ + "name": "Smaugs NFT", + "website": "https://www.smaugs.com/", + "description": "NFT Marketplace token to buy and sell NFT digital assets.", + "explorer": "https://bscscan.com/token/0x6bfd576220e8444CA4Cc5f89Efbd7f02a4C94C16", + "type": "BEP20", + "symbol": "SMG", + "decimals": 8, + "status": "active", + "id": "0x6bfd576220e8444CA4Cc5f89Efbd7f02a4C94C16", + "links": [ + { + "name": "x", + "url": "https://x.com/smaugsnft" + }, + { + "name": "telegram", + "url": "https://t.me/smaugsNFTs" + }, + { + "name": "discord", + "url": "https://discord.com/invite/K75pa8Te" + }, + { + "name": "medium", + "url": "https://medium.com/@smaugnft" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6bfd576220e8444CA4Cc5f89Efbd7f02a4C94C16/logo.png b/blockchains/smartchain/assets/0x6bfd576220e8444CA4Cc5f89Efbd7f02a4C94C16/logo.png new file mode 100644 index 00000000..23a5c0ea Binary files /dev/null and b/blockchains/smartchain/assets/0x6bfd576220e8444CA4Cc5f89Efbd7f02a4C94C16/logo.png differ diff --git a/blockchains/smartchain/assets/0x6c1dE9907263F0c12261d88b65cA18F31163F29D/info.json b/blockchains/smartchain/assets/0x6c1dE9907263F0c12261d88b65cA18F31163F29D/info.json new file mode 100644 index 00000000..5d890804 --- /dev/null +++ b/blockchains/smartchain/assets/0x6c1dE9907263F0c12261d88b65cA18F31163F29D/info.json @@ -0,0 +1,29 @@ +{ + "name": "OCTIONToken", + "website": "https://oction.io/", + "description": "Welcome to OCTION! Trade options through CeDeFi, with no middlemen, no centralized organization, lower fees, more option types and zero data or market manipulation. OCTION allows for options trading through a democratic framework on the Blockchain, specifically the Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x6c1dE9907263F0c12261d88b65cA18F31163F29D", + "type": "BEP20", + "symbol": "OCTI", + "decimals": 18, + "status": "active", + "id": "0x6c1dE9907263F0c12261d88b65cA18F31163F29D", + "links": [ + { + "name": "github", + "url": "https://github.com/OCTIONOFFICIAL" + }, + { + "name": "x", + "url": "https://x.com/octionofficial" + }, + { + "name": "telegram", + "url": "https://t.me/octionofficial" + }, + { + "name": "medium", + "url": "https://octionofficial.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6c1dE9907263F0c12261d88b65cA18F31163F29D/logo.png b/blockchains/smartchain/assets/0x6c1dE9907263F0c12261d88b65cA18F31163F29D/logo.png new file mode 100644 index 00000000..d46d9356 Binary files /dev/null and b/blockchains/smartchain/assets/0x6c1dE9907263F0c12261d88b65cA18F31163F29D/logo.png differ diff --git a/blockchains/smartchain/assets/0x6c2BE0F7EE3CAa392bA661151eaa6Fb900532B07/info.json b/blockchains/smartchain/assets/0x6c2BE0F7EE3CAa392bA661151eaa6Fb900532B07/info.json new file mode 100644 index 00000000..5f3f26ed --- /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 00000000..764413b6 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 00000000..e0eef158 --- /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/0x6c5FE6e99D2484db7E4BF34F365ABA42d0E4dC20/info.json b/blockchains/smartchain/assets/0x6c5FE6e99D2484db7E4BF34F365ABA42d0E4dC20/info.json new file mode 100644 index 00000000..211391d4 --- /dev/null +++ b/blockchains/smartchain/assets/0x6c5FE6e99D2484db7E4BF34F365ABA42d0E4dC20/info.json @@ -0,0 +1,11 @@ +{ + "name": "Absorber", + "type": "BEP20", + "symbol": "ABS", + "decimals": 18, + "website": "https://absorber.finance", + "description": "Absorber is a Hybrid Active and Passive Yield Farming Protocol, Designed for Long-Term Performance and Adoption of Mom-n-Pop Investors Worldwide, To break the Barrier Towards a Worldwide Passive Income Economic Incentive with a Deflationary Core and Ever Increasing Liquidity dictated by the Smart-contract code.", + "explorer": "https://bscscan.com/token/0x6c5FE6e99D2484db7E4BF34F365ABA42d0E4dC20", + "status": "active", + "id": "0x6c5FE6e99D2484db7E4BF34F365ABA42d0E4dC20" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6c5FE6e99D2484db7E4BF34F365ABA42d0E4dC20/logo.png b/blockchains/smartchain/assets/0x6c5FE6e99D2484db7E4BF34F365ABA42d0E4dC20/logo.png new file mode 100644 index 00000000..c15d70ad Binary files /dev/null and b/blockchains/smartchain/assets/0x6c5FE6e99D2484db7E4BF34F365ABA42d0E4dC20/logo.png differ diff --git a/blockchains/smartchain/assets/0x6c6D604D3f07aBE287C1A3dF0281e999A83495C0/info.json b/blockchains/smartchain/assets/0x6c6D604D3f07aBE287C1A3dF0281e999A83495C0/info.json new file mode 100644 index 00000000..2fa5aff7 --- /dev/null +++ b/blockchains/smartchain/assets/0x6c6D604D3f07aBE287C1A3dF0281e999A83495C0/info.json @@ -0,0 +1,14 @@ +{ + "name": "ROSE (Portal)", + "type": "BEP20", + "symbol": "ROSE", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://oasisprotocol.org/", + "explorer": "https://bscscan.com/token/0x6c6D604D3f07aBE287C1A3dF0281e999A83495C0", + "status": "active", + "id": "0x6c6D604D3f07aBE287C1A3dF0281e999A83495C0", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6c6D604D3f07aBE287C1A3dF0281e999A83495C0/logo.png b/blockchains/smartchain/assets/0x6c6D604D3f07aBE287C1A3dF0281e999A83495C0/logo.png new file mode 100644 index 00000000..32179bc3 Binary files /dev/null and b/blockchains/smartchain/assets/0x6c6D604D3f07aBE287C1A3dF0281e999A83495C0/logo.png differ diff --git a/blockchains/smartchain/assets/0x6cC43ffC4d2956eD15B8cD263Ac8E9884775e7DC/info.json b/blockchains/smartchain/assets/0x6cC43ffC4d2956eD15B8cD263Ac8E9884775e7DC/info.json new file mode 100644 index 00000000..5ff37550 --- /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 00000000..130614e4 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 new file mode 100644 index 00000000..7e700acb --- /dev/null +++ b/blockchains/smartchain/assets/0x6cC76132A84e2095c1F4f2EA71881dAEf8a75D5e/info.json @@ -0,0 +1,28 @@ +{ + "name": "Ninebot", + "website": "https://ninebot.io/", + "description": "Ninebot is an app to manage automatic trading on Binance. Ninebot also makes your trading transactions run automatically according to the settings in App you provide.", + "explorer": "https://bscscan.com/token/0x6cC76132A84e2095c1F4f2EA71881dAEf8a75D5e", + "type": "BEP20", + "symbol": "NBG", + "decimals": 18, + "status": "active", + "id": "0x6cC76132A84e2095c1F4f2EA71881dAEf8a75D5e", + "links": [ + { + "name": "x", + "url": "https://x.com/NinebotIO" + }, + { + "name": "telegram", + "url": "https://t.me/NineBotCommunity" + }, + { + "name": "docs", + "url": "https://docs.ninebot.io/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6cC76132A84e2095c1F4f2EA71881dAEf8a75D5e/logo.png b/blockchains/smartchain/assets/0x6cC76132A84e2095c1F4f2EA71881dAEf8a75D5e/logo.png new file mode 100644 index 00000000..668e357c Binary files /dev/null and b/blockchains/smartchain/assets/0x6cC76132A84e2095c1F4f2EA71881dAEf8a75D5e/logo.png differ diff --git a/blockchains/smartchain/assets/0x6cF8e39252Bee00D168Bd25BDf5834347D78e346/info.json b/blockchains/smartchain/assets/0x6cF8e39252Bee00D168Bd25BDf5834347D78e346/info.json new file mode 100644 index 00000000..ddc37b4f --- /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 00000000..a8ba8959 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 00000000..3404fdb7 --- /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 new file mode 100644 index 00000000..66a95e44 --- /dev/null +++ b/blockchains/smartchain/assets/0x6cf271270662be1C4fc1b7BB7D7D7Fc60Cc19125/info.json @@ -0,0 +1,43 @@ +{ + "name": "Kunci Coin", + "website": "https://kuncicoin.com/", + "description": "Kunci Coin is building the next generation blockchain for mass adoption, born to support NFT Marketplace, Metaverse, Decentralize Finance, and retail penetration.", + "tags": [ + "nft", + "defi", + "staking", + "gamefi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/Kuncicoin_id" + }, + { + "name": "facebook", + "url": "https://facebook.com/Kunci-Coin-111956938024588" + }, + { + "name": "telegram", + "url": "https://t.me/kunciofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kunci-coin/" + }, + { + "name": "github", + "url": "https://github.com/kuncicoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kunci-coin" + } + ], + "explorer": "https://bscscan.com/token/0x6cf271270662be1C4fc1b7BB7D7D7Fc60Cc19125", + "type": "BEP20", + "symbol": "KUNCI", + "decimals": 6, + "status": "active", + "id": "0x6cf271270662be1C4fc1b7BB7D7D7Fc60Cc19125" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6cf271270662be1C4fc1b7BB7D7D7Fc60Cc19125/logo.png b/blockchains/smartchain/assets/0x6cf271270662be1C4fc1b7BB7D7D7Fc60Cc19125/logo.png new file mode 100644 index 00000000..64fcefef Binary files /dev/null and b/blockchains/smartchain/assets/0x6cf271270662be1C4fc1b7BB7D7D7Fc60Cc19125/logo.png differ diff --git a/blockchains/smartchain/assets/0x6d34F621d2A1812434cE7Af6E04A344BFCE9B47E/info.json b/blockchains/smartchain/assets/0x6d34F621d2A1812434cE7Af6E04A344BFCE9B47E/info.json new file mode 100644 index 00000000..6445bf4c --- /dev/null +++ b/blockchains/smartchain/assets/0x6d34F621d2A1812434cE7Af6E04A344BFCE9B47E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Peppa Network", + "type": "BEP20", + "symbol": "PEPPA", + "decimals": 18, + "website": "https://peppa.network/", + "description": "Peppa Network is an innovative new cryptocurrency designed by enthusiasts for blockchain technology and children’s development.Our goal is to aid thedevelopment of the next generation, and to help parentsincentivise good behaviour. Participation in Peppa world will help users’ development in planning and application, while also engaging the imagination through a well-known character.", + "explorer": "https://bscscan.com/token/0x6d34F621d2A1812434cE7Af6E04A344BFCE9B47E", + "status": "active", + "id": "0x6d34F621d2A1812434cE7Af6E04A344BFCE9B47E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6d34F621d2A1812434cE7Af6E04A344BFCE9B47E/logo.png b/blockchains/smartchain/assets/0x6d34F621d2A1812434cE7Af6E04A344BFCE9B47E/logo.png new file mode 100644 index 00000000..9f6d1fe2 Binary files /dev/null and b/blockchains/smartchain/assets/0x6d34F621d2A1812434cE7Af6E04A344BFCE9B47E/logo.png differ diff --git a/blockchains/smartchain/assets/0x6d3A0Fb0070EA61F901eBc0b675c30450ACAc737/info.json b/blockchains/smartchain/assets/0x6d3A0Fb0070EA61F901eBc0b675c30450ACAc737/info.json new file mode 100644 index 00000000..c1a4c54e --- /dev/null +++ b/blockchains/smartchain/assets/0x6d3A0Fb0070EA61F901eBc0b675c30450ACAc737/info.json @@ -0,0 +1,41 @@ +{ + "name": "AetherV2", + "website": "https://aetheruniverse.com/", + "description": "AetherV2 is the first crypto token building a bridge between science and cryptocurrency.", + "explorer": "https://bscscan.com/token/0x6d3a0fb0070ea61f901ebc0b675c30450acac737", + "type": "BEP20", + "symbol": "ATH", + "decimals": 9, + "status": "active", + "id": "0x6d3A0Fb0070EA61F901eBc0b675c30450ACAc737", + "links": [ + { + "name": "x", + "url": "https://x.com/Aether_Crypto" + }, + { + "name": "telegram", + "url": "https://t.me/aether_BSC" + }, + { + "name": "facebook", + "url": "https://facebook.com/aether.crypto" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Aether_Crypto/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aetherv2" + }, + { + "name": "github", + "url": "https://github.com/psabadac/aetherv2" + }, + { + "name": "discord", + "url": "https://discord.com/invite/uvuArrUg" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6d3A0Fb0070EA61F901eBc0b675c30450ACAc737/logo.png b/blockchains/smartchain/assets/0x6d3A0Fb0070EA61F901eBc0b675c30450ACAc737/logo.png new file mode 100644 index 00000000..c8e15147 Binary files /dev/null and b/blockchains/smartchain/assets/0x6d3A0Fb0070EA61F901eBc0b675c30450ACAc737/logo.png differ diff --git a/blockchains/smartchain/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/info.json b/blockchains/smartchain/assets/0x6d482CeC5f9dd1f05CCee9Fd3ff79B246170F8e2/info.json new file mode 100644 index 00000000..1562758f --- /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 00000000..da0a1030 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 00000000..b9fbd8c5 --- /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 00000000..402424a1 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 00000000..5d1498fa --- /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 00000000..5968d83b 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 00000000..ad432ec5 --- /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 00000000..22b291b8 Binary files /dev/null and b/blockchains/smartchain/assets/0x6d8058cDaa406Ea4924D47B48F2ef5f18d35637c/logo.png differ diff --git a/blockchains/smartchain/assets/0x6d8D19cd276d1E5ecF33F50d40BD6865f614649c/info.json b/blockchains/smartchain/assets/0x6d8D19cd276d1E5ecF33F50d40BD6865f614649c/info.json new file mode 100644 index 00000000..5624680d --- /dev/null +++ b/blockchains/smartchain/assets/0x6d8D19cd276d1E5ecF33F50d40BD6865f614649c/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShinchanBsc", + "website": "https://shinchanbsc.org", + "description": "Shinchan BSC is a unique meme token with utility.", + "explorer": "https://bscscan.com/token/0x6d8d19cd276d1e5ecf33f50d40bd6865f614649c", + "type": "BEP20", + "symbol": "Shinchan", + "decimals": 18, + "status": "active", + "id": "0x6d8D19cd276d1E5ecF33F50d40BD6865f614649c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6d8D19cd276d1E5ecF33F50d40BD6865f614649c/logo.png b/blockchains/smartchain/assets/0x6d8D19cd276d1E5ecF33F50d40BD6865f614649c/logo.png new file mode 100644 index 00000000..777c1e34 Binary files /dev/null and b/blockchains/smartchain/assets/0x6d8D19cd276d1E5ecF33F50d40BD6865f614649c/logo.png differ diff --git a/blockchains/smartchain/assets/0x6d9fB3332f62Fc044d5075feEeA597A92F1ce0AD/info.json b/blockchains/smartchain/assets/0x6d9fB3332f62Fc044d5075feEeA597A92F1ce0AD/info.json new file mode 100644 index 00000000..603cd45c --- /dev/null +++ b/blockchains/smartchain/assets/0x6d9fB3332f62Fc044d5075feEeA597A92F1ce0AD/info.json @@ -0,0 +1,41 @@ +{ + "name": "Baby Doge Billionaire", + "website": "https://babydogebillionaire.net/", + "description": "The Richest Baby Dog In The Universe Has His Own Themed Token Now That Rewards All Investors, Whilst Giving Dogs And Other Animals A New Home!", + "explorer": "https://bscscan.com/token/0x6d9fB3332f62Fc044d5075feEeA597A92F1ce0AD", + "type": "BEP20", + "symbol": "BABYDB", + "decimals": 8, + "status": "active", + "id": "0x6d9fB3332f62Fc044d5075feEeA597A92F1ce0AD", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BabyDogeBillionaire" + }, + { + "name": "x", + "url": "https://x.com/BabyDogeBLN" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BabyDogeBillionaire/" + }, + { + "name": "facebook", + "url": "https://facebook.com/BabyDogeBLN/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC3Vl85CHvL9GvaXpHKkzfWw" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/baby-doge-billionaire" + }, + { + "name": "whitepaper", + "url": "https://babydogebillionaire.net/assets/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6d9fB3332f62Fc044d5075feEeA597A92F1ce0AD/logo.png b/blockchains/smartchain/assets/0x6d9fB3332f62Fc044d5075feEeA597A92F1ce0AD/logo.png new file mode 100644 index 00000000..ce6f1233 Binary files /dev/null and b/blockchains/smartchain/assets/0x6d9fB3332f62Fc044d5075feEeA597A92F1ce0AD/logo.png differ diff --git a/blockchains/smartchain/assets/0x6dAd06eed8b054EFaDcc24b8045678e4f939b831/info.json b/blockchains/smartchain/assets/0x6dAd06eed8b054EFaDcc24b8045678e4f939b831/info.json new file mode 100644 index 00000000..a2777d25 --- /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/0x6db3972c6a5535708e7A4F7Ad52F24d178D9A93e/info.json b/blockchains/smartchain/assets/0x6db3972c6a5535708e7A4F7Ad52F24d178D9A93e/info.json new file mode 100644 index 00000000..d28814d1 --- /dev/null +++ b/blockchains/smartchain/assets/0x6db3972c6a5535708e7A4F7Ad52F24d178D9A93e/info.json @@ -0,0 +1,49 @@ +{ + "name": "DVX", + "website": "https://www.drivenx.finance/", + "description": "DRIVENx - Made by humans for humans", + "explorer": "https://bscscan.com/token/0x6db3972c6a5535708e7A4F7Ad52F24d178D9A93e", + "type": "BEP20", + "symbol": "DRIVENx", + "decimals": 18, + "status": "active", + "id": "0x6db3972c6a5535708e7A4F7Ad52F24d178D9A93e", + "links": [ + { + "name": "x", + "url": "https://x.com/DRIVENprotocol" + }, + { + "name": "github", + "url": "https://github.com/DRIVENx" + }, + { + "name": "telegram", + "url": "https://t.me/DRIVENx" + }, + { + "name": "blog", + "url": "https://medium.com/drivenx" + }, + { + "name": "whitepaper", + "url": "https://drivenx.finance/wp-content/uploads/2021/07/DRIVENx-LITEPAPER.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/DRIVENx" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/DRIVENecosystem/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/qZ36FNT23w" + }, + { + "name": "facebook", + "url": "https://facebook.com/DRIVENprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6db3972c6a5535708e7A4F7Ad52F24d178D9A93e/logo.png b/blockchains/smartchain/assets/0x6db3972c6a5535708e7A4F7Ad52F24d178D9A93e/logo.png new file mode 100644 index 00000000..b5278e61 Binary files /dev/null and b/blockchains/smartchain/assets/0x6db3972c6a5535708e7A4F7Ad52F24d178D9A93e/logo.png differ diff --git a/blockchains/smartchain/assets/0x6dc3d0D6EC970BF5522611D8eFF127145D02b675/info.json b/blockchains/smartchain/assets/0x6dc3d0D6EC970BF5522611D8eFF127145D02b675/info.json new file mode 100644 index 00000000..55b9059e --- /dev/null +++ b/blockchains/smartchain/assets/0x6dc3d0D6EC970BF5522611D8eFF127145D02b675/info.json @@ -0,0 +1,29 @@ +{ + "name": "Revolotto", + "website": "https://revolotto.org", + "description": "Revolotto is a Deflationary token; four-dimensional, 80% to buyer, 9% to LP, 5% burns & 6% distribution.", + "explorer": "https://bscscan.com/token/0x6dc3d0D6EC970BF5522611D8eFF127145D02b675", + "type": "BEP20", + "symbol": "RVL", + "decimals": 18, + "status": "active", + "id": "0x6dc3d0D6EC970BF5522611D8eFF127145D02b675", + "links": [ + { + "name": "github", + "url": "https://github.com/revolotto" + }, + { + "name": "x", + "url": "https://x.com/revolotto" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Revolotto/" + }, + { + "name": "whitepaper", + "url": "https://revolotto.org/#whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6dc3d0D6EC970BF5522611D8eFF127145D02b675/logo.png b/blockchains/smartchain/assets/0x6dc3d0D6EC970BF5522611D8eFF127145D02b675/logo.png new file mode 100644 index 00000000..ea5473ea Binary files /dev/null and b/blockchains/smartchain/assets/0x6dc3d0D6EC970BF5522611D8eFF127145D02b675/logo.png differ diff --git a/blockchains/smartchain/assets/0x6e02Be885FcA1138038420fDdD4B41C59a8Cea6D/info.json b/blockchains/smartchain/assets/0x6e02Be885FcA1138038420fDdD4B41C59a8Cea6D/info.json new file mode 100644 index 00000000..1cfa48c6 --- /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 00000000..9f09dc81 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 00000000..a9e0781c --- /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 00000000..b6532cf8 Binary files /dev/null and b/blockchains/smartchain/assets/0x6e0AAfB414B620e096B9F7Fe85625D3E5cE41d3F/logo.png differ diff --git a/blockchains/smartchain/assets/0x6e0BEF56b648b3eEBaE3808B8cBe7EFE8755AD9C/info.json b/blockchains/smartchain/assets/0x6e0BEF56b648b3eEBaE3808B8cBe7EFE8755AD9C/info.json new file mode 100644 index 00000000..1b20b786 --- /dev/null +++ b/blockchains/smartchain/assets/0x6e0BEF56b648b3eEBaE3808B8cBe7EFE8755AD9C/info.json @@ -0,0 +1,11 @@ +{ + "name": "gabecoin", + "website": "https://gabecoin.io", + "description": "RIP Gabe, forever in our hearts.", + "explorer": "https://bscscan.com/token/0x6e0bef56b648b3eebae3808b8cbe7efe8755ad9c", + "type": "BEP20", + "symbol": "GABECOIN", + "decimals": 9, + "status": "active", + "id": "0x6e0BEF56b648b3eEBaE3808B8cBe7EFE8755AD9C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6e0BEF56b648b3eEBaE3808B8cBe7EFE8755AD9C/logo.png b/blockchains/smartchain/assets/0x6e0BEF56b648b3eEBaE3808B8cBe7EFE8755AD9C/logo.png new file mode 100644 index 00000000..3cc86453 Binary files /dev/null and b/blockchains/smartchain/assets/0x6e0BEF56b648b3eEBaE3808B8cBe7EFE8755AD9C/logo.png differ diff --git a/blockchains/smartchain/assets/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42/info.json b/blockchains/smartchain/assets/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42/info.json new file mode 100644 index 00000000..d3abf805 --- /dev/null +++ b/blockchains/smartchain/assets/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42/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://bscscan.com/token/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42", + "type": "BEP20", + "symbol": "BRG", + "decimals": 18, + "status": "abandoned", + "id": "0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42", + "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" + } + ] +} diff --git a/blockchains/smartchain/assets/0x6e9730EcFfBed43fD876A264C982e254ef05a0DE/info.json b/blockchains/smartchain/assets/0x6e9730EcFfBed43fD876A264C982e254ef05a0DE/info.json new file mode 100644 index 00000000..89c22beb --- /dev/null +++ b/blockchains/smartchain/assets/0x6e9730EcFfBed43fD876A264C982e254ef05a0DE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nord Finance", + "type": "BEP20", + "symbol": "NORD", + "decimals": 18, + "website": "https://nordfinance.io", + "description": "Nord Finance, a blockchain agnostic platform, is an advanced decentralized financial ecosystem focusing on simplifying decentralized finance products.", + "explorer": "https://bscscan.com/token/0x6e9730ecffbed43fd876a264c982e254ef05a0de", + "status": "active", + "id": "0x6e9730EcFfBed43fD876A264C982e254ef05a0DE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6e9730EcFfBed43fD876A264C982e254ef05a0DE/logo.png b/blockchains/smartchain/assets/0x6e9730EcFfBed43fD876A264C982e254ef05a0DE/logo.png new file mode 100644 index 00000000..42fc1359 Binary files /dev/null and b/blockchains/smartchain/assets/0x6e9730EcFfBed43fD876A264C982e254ef05a0DE/logo.png differ diff --git a/blockchains/smartchain/assets/0x6eA05F63DAF6b0Dc6b8bea94342330CC602c5536/info.json b/blockchains/smartchain/assets/0x6eA05F63DAF6b0Dc6b8bea94342330CC602c5536/info.json new file mode 100644 index 00000000..542d2daa --- /dev/null +++ b/blockchains/smartchain/assets/0x6eA05F63DAF6b0Dc6b8bea94342330CC602c5536/info.json @@ -0,0 +1,22 @@ +{ + "name": "SafeSex Finance", + "website": "https://safesexfinance.com/", + "short_description": "SafeSex Finance is token deployed on binance smart chain network. It is deflationary token with feature of rewarding holders in every transaction done by other buyers and sellers. SafeSex finance is working with aim of charity to sex victims, human trafficking victims, kids with poo economic condition for schools, autism community. It has aim to create awareness about safe sex education to the community with the help of defi.", + "description": "SafeSex Finance is token deployed on binance smart chain network. It is deflationary token with feature of rewarding holders in every transaction done by other buyers and sellers. SafeSex finance is working with aim of charity to sex victims, human trafficking victims, kids with poo economic condition for schools, autism community. It has aim to create awareness about safe sex education to the community with the help of defi.", + "explorer": "https://bscscan.com/token/0x6ea05f63daf6b0dc6b8bea94342330cc602c5536", + "type": "BEP20", + "symbol": "SEX", + "decimals": 9, + "status": "active", + "id": "0x6eA05F63DAF6b0Dc6b8bea94342330CC602c5536", + "links": [ + { + "name": "github", + "url": "https://github.com/safesexfinance" + }, + { + "name": "whitepaper", + "url": "https://30fde514-9cd9-448c-822b-163b0c205141.filesusr.com/ugd/7cbad4_7cf6e0aa6a554b49b69f5c52ec5ac907.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6eA05F63DAF6b0Dc6b8bea94342330CC602c5536/logo.png b/blockchains/smartchain/assets/0x6eA05F63DAF6b0Dc6b8bea94342330CC602c5536/logo.png new file mode 100644 index 00000000..ef29ad93 Binary files /dev/null and b/blockchains/smartchain/assets/0x6eA05F63DAF6b0Dc6b8bea94342330CC602c5536/logo.png differ diff --git a/blockchains/smartchain/assets/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C/info.json b/blockchains/smartchain/assets/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C/info.json new file mode 100644 index 00000000..c4bc5f2b --- /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 00000000..45dad943 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 00000000..5c661496 --- /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 new file mode 100644 index 00000000..56c0ef3f --- /dev/null +++ b/blockchains/smartchain/assets/0x6ef238E9E8CD2A96740897761C18894Fc086B9d0/info.json @@ -0,0 +1,40 @@ +{ + "name": "Mytheria", + "website": "https://mytheria.io/", + "description": "Mytheria- Clash of the Pantheons is the first-of-its-kind Play-to-Earn and Create-to-Earn with a captivating board game experience and innovative NFT marketplace.", + "explorer": "https://bscscan.com/token/0x6ef238E9E8CD2A96740897761C18894Fc086B9d0", + "type": "BEP20", + "symbol": "MYRA", + "decimals": 18, + "status": "active", + "id": "0x6ef238E9E8CD2A96740897761C18894Fc086B9d0", + "links": [ + { + "name": "x", + "url": "https://x.com/mytheria_MYRA" + }, + { + "name": "telegram", + "url": "https://t.me/MytheriaGlobal" + }, + { + "name": "discord", + "url": "https://discord.com/invite/PumYWDzYbz" + }, + { + "name": "facebook", + "url": "https://facebook.com/MytheriaOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mytheria/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/mytheria" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6ef238E9E8CD2A96740897761C18894Fc086B9d0/logo.png b/blockchains/smartchain/assets/0x6ef238E9E8CD2A96740897761C18894Fc086B9d0/logo.png new file mode 100644 index 00000000..bb43b99a Binary files /dev/null and b/blockchains/smartchain/assets/0x6ef238E9E8CD2A96740897761C18894Fc086B9d0/logo.png differ diff --git a/blockchains/smartchain/assets/0x6f28Cb07790c1049ecd7482d09Fd13B977B47201/info.json b/blockchains/smartchain/assets/0x6f28Cb07790c1049ecd7482d09Fd13B977B47201/info.json new file mode 100644 index 00000000..ffba0156 --- /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 00000000..6767ada8 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 new file mode 100644 index 00000000..86ec3b9e --- /dev/null +++ b/blockchains/smartchain/assets/0x6f373cD69c329B1DA2e00b861Ad950e59454aa18/info.json @@ -0,0 +1,44 @@ +{ + "name": "Doge Yellow Coin", + "type": "BEP20", + "symbol": "DOGEY", + "decimals": 9, + "website": "https://dogeyellow.com", + "description": "Doge Yellow Coin DOGEY Doge Yellow Coin is a new cryptocurrency born to emulate dogecoin with the help of Elon Musk", + "explorer": "https://bscscan.com/token/0x6f373cD69c329B1DA2e00b861Ad950e59454aa18", + "status": "active", + "id": "0x6f373cD69c329B1DA2e00b861Ad950e59454aa18", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/DogeYellowCoin1" + }, + { + "name": "github", + "url": "https://github.com/dogeyellowcoin" + }, + { + "name": "telegram", + "url": "https://t.me/dogeyellowcoin" + }, + { + "name": "telegram_news", + "url": "https://t.me/dogeyellownew" + }, + { + "name": "whitepaper", + "url": "https://dogeyellow.com/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/doge-yellow-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/doge-yellow-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6f373cD69c329B1DA2e00b861Ad950e59454aa18/logo.png b/blockchains/smartchain/assets/0x6f373cD69c329B1DA2e00b861Ad950e59454aa18/logo.png new file mode 100644 index 00000000..940d0be0 Binary files /dev/null and b/blockchains/smartchain/assets/0x6f373cD69c329B1DA2e00b861Ad950e59454aa18/logo.png differ diff --git a/blockchains/smartchain/assets/0x6f9F0c4ad9Af7EbD61Ac5A1D4e0F2227F7B0E5f9/info.json b/blockchains/smartchain/assets/0x6f9F0c4ad9Af7EbD61Ac5A1D4e0F2227F7B0E5f9/info.json new file mode 100644 index 00000000..c09edd5d --- /dev/null +++ b/blockchains/smartchain/assets/0x6f9F0c4ad9Af7EbD61Ac5A1D4e0F2227F7B0E5f9/info.json @@ -0,0 +1,32 @@ +{ + "name": "Era Token", + "website": "https://www.era7.io", + "description": "ERA TOKEN is the main currency in game which can be obtained by playing game modes and participating in many other activities.", + "explorer": "https://bscscan.com/token/0x6f9F0c4ad9Af7EbD61Ac5A1D4e0F2227F7B0E5f9", + "type": "BEP20", + "symbol": "ERA", + "decimals": 18, + "status": "active", + "id": "0x6f9F0c4ad9Af7EbD61Ac5A1D4e0F2227F7B0E5f9", + "links": [ + { + "name": "x", + "url": "https://x.com/Era7_official" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/aF3LUIC8PKVhNDA6" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/Era7_Official" + }, + { + "name": "discord", + "url": "https://discord.com/invite/jtFRzTv5Zw" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6f9F0c4ad9Af7EbD61Ac5A1D4e0F2227F7B0E5f9/logo.png b/blockchains/smartchain/assets/0x6f9F0c4ad9Af7EbD61Ac5A1D4e0F2227F7B0E5f9/logo.png new file mode 100644 index 00000000..9cbbfe91 Binary files /dev/null and b/blockchains/smartchain/assets/0x6f9F0c4ad9Af7EbD61Ac5A1D4e0F2227F7B0E5f9/logo.png differ diff --git a/blockchains/smartchain/assets/0x6fD2854CD1B05b8eB5F6d25C714184a92FEdAf4f/info.json b/blockchains/smartchain/assets/0x6fD2854CD1B05b8eB5F6d25C714184a92FEdAf4f/info.json new file mode 100644 index 00000000..5c7fd062 --- /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 00000000..1bbe1734 Binary files /dev/null and b/blockchains/smartchain/assets/0x6fD2854CD1B05b8eB5F6d25C714184a92FEdAf4f/logo.png differ diff --git a/blockchains/smartchain/assets/0x6fbFf934ec9D724450E66d9AcE621cb7E67CeB5A/info.json b/blockchains/smartchain/assets/0x6fbFf934ec9D724450E66d9AcE621cb7E67CeB5A/info.json new file mode 100644 index 00000000..27d00143 --- /dev/null +++ b/blockchains/smartchain/assets/0x6fbFf934ec9D724450E66d9AcE621cb7E67CeB5A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crypto Against Cancer Token", + "website": "https://cryptoagainstcancer.fund/", + "description": "CACT helping cancer research and treatment around the world, in addition to providing a BNB reward pool and reflection to holders through every transaction.", + "explorer": "https://bscscan.com/token/0x6fbff934ec9d724450e66d9ace621cb7e67ceb5a", + "type": "BEP20", + "symbol": "CACT", + "decimals": 9, + "status": "active", + "id": "0x6fbFf934ec9D724450E66d9AcE621cb7E67CeB5A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6fbFf934ec9D724450E66d9AcE621cb7E67CeB5A/logo.png b/blockchains/smartchain/assets/0x6fbFf934ec9D724450E66d9AcE621cb7E67CeB5A/logo.png new file mode 100644 index 00000000..337a549d Binary files /dev/null and b/blockchains/smartchain/assets/0x6fbFf934ec9D724450E66d9AcE621cb7E67CeB5A/logo.png differ diff --git a/blockchains/smartchain/assets/0x6fc68DeF64cA4cA7136B08b90BEA8655bAE78888/info.json b/blockchains/smartchain/assets/0x6fc68DeF64cA4cA7136B08b90BEA8655bAE78888/info.json new file mode 100644 index 00000000..d4b2782d --- /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 new file mode 100644 index 00000000..4228d608 --- /dev/null +++ b/blockchains/smartchain/assets/0x6fd7c98458a943f469E1Cf4eA85B173f5Cd342F4/info.json @@ -0,0 +1,26 @@ +{ + "name": "BillionHappiness", + "website": "https://billionhappiness.com/", + "description": "Billion Happiness has a token called BHC. Users can earn BHC cashback through shopping on the online store, NFT Marketplace and via staking/farming.", + "explorer": "https://bscscan.com/token/0x6fd7c98458a943f469E1Cf4eA85B173f5Cd342F4", + "research": "https://billionhappiness.medium.com/what-is-billion-happiness-be147e4b0fc0", + "type": "BEP20", + "symbol": "BHC", + "decimals": 18, + "status": "active", + "id": "0x6fd7c98458a943f469E1Cf4eA85B173f5Cd342F4", + "links": [ + { + "name": "github", + "url": "https://github.com/BHCHappiness/" + }, + { + "name": "x", + "url": "https://x.com/BHC_Happiness" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/BillionHappiness" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6fd7c98458a943f469E1Cf4eA85B173f5Cd342F4/logo.png b/blockchains/smartchain/assets/0x6fd7c98458a943f469E1Cf4eA85B173f5Cd342F4/logo.png new file mode 100644 index 00000000..b234daf8 Binary files /dev/null and b/blockchains/smartchain/assets/0x6fd7c98458a943f469E1Cf4eA85B173f5Cd342F4/logo.png differ diff --git a/blockchains/smartchain/assets/0x702b3f41772e321aacCdea91e1FCEF682D21125D/info.json b/blockchains/smartchain/assets/0x702b3f41772e321aacCdea91e1FCEF682D21125D/info.json new file mode 100644 index 00000000..4bde837f --- /dev/null +++ b/blockchains/smartchain/assets/0x702b3f41772e321aacCdea91e1FCEF682D21125D/info.json @@ -0,0 +1,11 @@ +{ + "name": "PinkSwap", + "website": "https://www.pinkswap.finance/", + "description": "Sale, swap, earn, lock all on one decentralized, community driven platform. Earn PinkS by staking LP & tokens. Welcome to PinkArmy Family!", + "explorer": "https://bscscan.com/token/0x702b3f41772e321aacCdea91e1FCEF682D21125D", + "type": "BEP20", + "symbol": "PINKS", + "decimals": 18, + "status": "active", + "id": "0x702b3f41772e321aacCdea91e1FCEF682D21125D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x702b3f41772e321aacCdea91e1FCEF682D21125D/logo.png b/blockchains/smartchain/assets/0x702b3f41772e321aacCdea91e1FCEF682D21125D/logo.png new file mode 100644 index 00000000..993dc4a5 Binary files /dev/null and b/blockchains/smartchain/assets/0x702b3f41772e321aacCdea91e1FCEF682D21125D/logo.png differ diff --git a/blockchains/smartchain/assets/0x7048F5227b032326cC8DBC53cF3FdDD947a2c757/info.json b/blockchains/smartchain/assets/0x7048F5227b032326cC8DBC53cF3FdDD947a2c757/info.json new file mode 100644 index 00000000..666653a4 --- /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 00000000..79a10787 Binary files /dev/null and b/blockchains/smartchain/assets/0x7048F5227b032326cC8DBC53cF3FdDD947a2c757/logo.png differ diff --git a/blockchains/smartchain/assets/0x7060d3F1CC70A07f4768560B9D9B692ac29244dE/info.json b/blockchains/smartchain/assets/0x7060d3F1CC70A07f4768560B9D9B692ac29244dE/info.json new file mode 100644 index 00000000..4b9e21d0 --- /dev/null +++ b/blockchains/smartchain/assets/0x7060d3F1CC70A07f4768560B9D9B692ac29244dE/info.json @@ -0,0 +1,11 @@ +{ + "name": "YeetToken", + "website": "https://www.yeettoken.com/", + "description": "A community token, yeetin' out of orbit.", + "explorer": "https://bscscan.com/token/0x7060d3F1CC70A07f4768560B9D9B692ac29244dE", + "type": "BEP20", + "symbol": "Yeet", + "decimals": 9, + "status": "active", + "id": "0x7060d3F1CC70A07f4768560B9D9B692ac29244dE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7060d3F1CC70A07f4768560B9D9B692ac29244dE/logo.png b/blockchains/smartchain/assets/0x7060d3F1CC70A07f4768560B9D9B692ac29244dE/logo.png new file mode 100644 index 00000000..fd9472e9 Binary files /dev/null and b/blockchains/smartchain/assets/0x7060d3F1CC70A07f4768560B9D9B692ac29244dE/logo.png differ diff --git a/blockchains/smartchain/assets/0x706954491EBFD6b38e5B1e6F079dBEfae0F5EBa0/info.json b/blockchains/smartchain/assets/0x706954491EBFD6b38e5B1e6F079dBEfae0F5EBa0/info.json new file mode 100644 index 00000000..67b932e1 --- /dev/null +++ b/blockchains/smartchain/assets/0x706954491EBFD6b38e5B1e6F079dBEfae0F5EBa0/info.json @@ -0,0 +1,18 @@ +{ + "name": "Charizard Token", + "website": "https://charizardtoken.com/", + "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", + "symbol": "CHZ006", + "decimals": 8, + "status": "active", + "id": "0x706954491EBFD6b38e5B1e6F079dBEfae0F5EBa0", + "links": [ + { + "name": "whitepaper", + "url": "https://charizardtoken.com/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x706954491EBFD6b38e5B1e6F079dBEfae0F5EBa0/logo.png b/blockchains/smartchain/assets/0x706954491EBFD6b38e5B1e6F079dBEfae0F5EBa0/logo.png new file mode 100644 index 00000000..4d33e3dc Binary files /dev/null and b/blockchains/smartchain/assets/0x706954491EBFD6b38e5B1e6F079dBEfae0F5EBa0/logo.png differ diff --git a/blockchains/smartchain/assets/0x707C9088313B20931c05D16227f146279eC28e4E/info.json b/blockchains/smartchain/assets/0x707C9088313B20931c05D16227f146279eC28e4E/info.json new file mode 100644 index 00000000..f12962b2 --- /dev/null +++ b/blockchains/smartchain/assets/0x707C9088313B20931c05D16227f146279eC28e4E/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeBabyShiba", + "website": "https://safebabyshiba.tech/", + "description": "SafeBabyShiba ($SBSH) is a community-focused, decentralized cryptocurrency with instant rewards thanks to active users! Join the moon mission. WAGMI! ", + "explorer": "https://bscscan.com/token/0x707C9088313B20931c05D16227f146279eC28e4E", + "type": "BEP20", + "symbol": "SBSH", + "decimals": 9, + "status": "active", + "id": "0x707C9088313B20931c05D16227f146279eC28e4E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x707C9088313B20931c05D16227f146279eC28e4E/logo.png b/blockchains/smartchain/assets/0x707C9088313B20931c05D16227f146279eC28e4E/logo.png new file mode 100644 index 00000000..f58320a6 Binary files /dev/null and b/blockchains/smartchain/assets/0x707C9088313B20931c05D16227f146279eC28e4E/logo.png differ diff --git a/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/info.json b/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/info.json new file mode 100644 index 00000000..dedf002d --- /dev/null +++ b/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/info.json @@ -0,0 +1,12 @@ +{ + "name": "BNB pegged Polkadot Token", + "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", + "research": "https://research.binance.com/en/projects/polkadot", + "type": "BEP20", + "symbol": "DOT", + "decimals": 18, + "status": "active", + "id": "0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/logo.png b/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/logo.png new file mode 100644 index 00000000..341b9483 Binary files /dev/null and b/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/logo.png differ diff --git a/blockchains/smartchain/assets/0x708739980021A0b0B2E555383fE1283697e140e9/info.json b/blockchains/smartchain/assets/0x708739980021A0b0B2E555383fE1283697e140e9/info.json new file mode 100644 index 00000000..a6b1456d --- /dev/null +++ b/blockchains/smartchain/assets/0x708739980021A0b0B2E555383fE1283697e140e9/info.json @@ -0,0 +1,11 @@ +{ + "name": "blocsport.one", + "type": "BEP20", + "symbol": "BLS", + "decimals": 18, + "website": "https://blocsport.one", + "description": "BLS is a sport token issued by blocsport.one for a purpose of DeFi sport operations.", + "explorer": "https://bscscan.com/token/0x708739980021A0b0B2E555383fE1283697e140e9", + "status": "active", + "id": "0x708739980021A0b0B2E555383fE1283697e140e9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x708739980021A0b0B2E555383fE1283697e140e9/logo.png b/blockchains/smartchain/assets/0x708739980021A0b0B2E555383fE1283697e140e9/logo.png new file mode 100644 index 00000000..9b1f96b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x708739980021A0b0B2E555383fE1283697e140e9/logo.png differ diff --git a/blockchains/smartchain/assets/0x708C671Aa997da536869B50B6C67FA0C32Ce80B2/info.json b/blockchains/smartchain/assets/0x708C671Aa997da536869B50B6C67FA0C32Ce80B2/info.json new file mode 100644 index 00000000..b6e13dd3 --- /dev/null +++ b/blockchains/smartchain/assets/0x708C671Aa997da536869B50B6C67FA0C32Ce80B2/info.json @@ -0,0 +1,33 @@ +{ + "name": "Curate", + "website": "https://curate.style", + "description": "The official token for Curate", + "explorer": "https://bscscan.com/token/0x708C671Aa997da536869B50B6C67FA0C32Ce80B2", + "type": "BEP20", + "symbol": "XCUR", + "decimals": 8, + "status": "active", + "id": "0x708C671Aa997da536869B50B6C67FA0C32Ce80B2", + "links": [ + { + "name": "telegram", + "url": "https://t.me/curate" + }, + { + "name": "x", + "url": "https://x.com/curateproject" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/XCUR" + }, + { + "name": "discord", + "url": "https://discord.com/invite/mtBpcqtBaK" + }, + { + "name": "github", + "url": "https://github.com/curate-project" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x708C671Aa997da536869B50B6C67FA0C32Ce80B2/logo.png b/blockchains/smartchain/assets/0x708C671Aa997da536869B50B6C67FA0C32Ce80B2/logo.png new file mode 100644 index 00000000..8f4521bb Binary files /dev/null and b/blockchains/smartchain/assets/0x708C671Aa997da536869B50B6C67FA0C32Ce80B2/logo.png differ diff --git a/blockchains/smartchain/assets/0x709A6bB090b8C4C72Cb44533624F3DF320a8bA80/info.json b/blockchains/smartchain/assets/0x709A6bB090b8C4C72Cb44533624F3DF320a8bA80/info.json new file mode 100644 index 00000000..bfd03eab --- /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 00000000..94d11b52 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 new file mode 100644 index 00000000..0afc8e77 --- /dev/null +++ b/blockchains/smartchain/assets/0x70B6C6A555507EE4ac91C15E5c80b7dc8FF3b489/info.json @@ -0,0 +1,24 @@ +{ + "name": "XTblock Token", + "website": "https://xtblock.io", + "description": "A hyper-capable network, XTblock aims to deliver not only a high-performance blockchain, but also the ability to decentralise artificial intelligence and bot computing. Therefore a powerful blockchain that will address the issues of speed, high latency and scalability is only one of its use cases. It's applicability goes far beyond.", + "explorer": "https://bscscan.com/token/0x70b6c6a555507ee4ac91c15e5c80b7dc8ff3b489", + "type": "BEP20", + "symbol": "XTT-b20", + "decimals": 18, + "status": "active", + "id": "0x70B6C6A555507EE4ac91C15E5c80b7dc8FF3b489", + "links": [ + { + "name": "x", + "url": "https://x.com/xtblockio" + }, + { + "name": "whitepaper", + "url": "https://github.com/xtblock/whitepaper/blob/main/XTblock-WhitePaper.pdf" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x70B6C6A555507EE4ac91C15E5c80b7dc8FF3b489/logo.png b/blockchains/smartchain/assets/0x70B6C6A555507EE4ac91C15E5c80b7dc8FF3b489/logo.png new file mode 100644 index 00000000..6ab49501 Binary files /dev/null and b/blockchains/smartchain/assets/0x70B6C6A555507EE4ac91C15E5c80b7dc8FF3b489/logo.png differ diff --git a/blockchains/smartchain/assets/0x70D8d5B3416888fD05e806195312DD2D9597d50C/info.json b/blockchains/smartchain/assets/0x70D8d5B3416888fD05e806195312DD2D9597d50C/info.json new file mode 100644 index 00000000..27b2599d --- /dev/null +++ b/blockchains/smartchain/assets/0x70D8d5B3416888fD05e806195312DD2D9597d50C/info.json @@ -0,0 +1,44 @@ +{ + "name": "MEXI", + "website": "https://metaxiz.com", + "description": "MEXI is the governance token of the Metaxiz system. Users can use MEXI for their NFT’s transactions on the Metaxiz marketplace, join the play-and-earn games in Metaxiz Metaverse and enjoy various functionalities of the Metaxiz ecosystem in the future.", + "explorer": "https://bscscan.com/token/0x70d8d5b3416888fd05e806195312dd2d9597d50c", + "links": [ + { + "name": "x", + "url": "https://x.com/Metaxiz_MEXI" + }, + { + "name": "telegram", + "url": "https://t.me/Metaxiz" + }, + { + "name": "docs", + "url": "https://docs.metaxiz.com/metaxiz" + }, + { + "name": "medium", + "url": "https://medium.com/@metaxiz" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/Metaxiz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metaxiz/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/metaxiz" + } + ], + "tags": [ + "gamefi" + ], + "type": "BEP20", + "symbol": "MEXI", + "decimals": 18, + "status": "active", + "id": "0x70D8d5B3416888fD05e806195312DD2D9597d50C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x70D8d5B3416888fD05e806195312DD2D9597d50C/logo.png b/blockchains/smartchain/assets/0x70D8d5B3416888fD05e806195312DD2D9597d50C/logo.png new file mode 100644 index 00000000..ef14a935 Binary files /dev/null and b/blockchains/smartchain/assets/0x70D8d5B3416888fD05e806195312DD2D9597d50C/logo.png differ diff --git a/blockchains/smartchain/assets/0x70a44672B9BBcF4D49dCEaA610eB580BD3c94c52/info.json b/blockchains/smartchain/assets/0x70a44672B9BBcF4D49dCEaA610eB580BD3c94c52/info.json new file mode 100644 index 00000000..b043ccc9 --- /dev/null +++ b/blockchains/smartchain/assets/0x70a44672B9BBcF4D49dCEaA610eB580BD3c94c52/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gamesafe.io", + "website": "https://gamesafe.io/", + "description": "GAMESAFE is a protocol specially built to reward its holders while increasing both the liquidity and value. A Digital Games will be out soon using Binance Smart Chain. ", + "explorer": "https://bscscan.com/token/0x70a44672B9BBcF4D49dCEaA610eB580BD3c94c52", + "type": "BEP20", + "symbol": "GAMESAFE", + "decimals": 9, + "status": "active", + "id": "0x70a44672B9BBcF4D49dCEaA610eB580BD3c94c52" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x70a44672B9BBcF4D49dCEaA610eB580BD3c94c52/logo.png b/blockchains/smartchain/assets/0x70a44672B9BBcF4D49dCEaA610eB580BD3c94c52/logo.png new file mode 100644 index 00000000..5df95092 Binary files /dev/null and b/blockchains/smartchain/assets/0x70a44672B9BBcF4D49dCEaA610eB580BD3c94c52/logo.png differ diff --git a/blockchains/smartchain/assets/0x70bd780076E25D087Ed9c35f4e4A540522Abe8cF/info.json b/blockchains/smartchain/assets/0x70bd780076E25D087Ed9c35f4e4A540522Abe8cF/info.json new file mode 100644 index 00000000..95ead102 --- /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 00000000..b3759cdc Binary files /dev/null and b/blockchains/smartchain/assets/0x70bd780076E25D087Ed9c35f4e4A540522Abe8cF/logo.png differ diff --git a/blockchains/smartchain/assets/0x7122f1C0777900B959573132dEac9a7209741Aa0/info.json b/blockchains/smartchain/assets/0x7122f1C0777900B959573132dEac9a7209741Aa0/info.json new file mode 100644 index 00000000..27db5730 --- /dev/null +++ b/blockchains/smartchain/assets/0x7122f1C0777900B959573132dEac9a7209741Aa0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tibetan Mastiff", + "website": "https://www.tibetanmastiff.io", + "description": "Tibetan Mastiff Is NFT - Non-Fungible Token. The birth of TMF (TMastiff) allowed the image of the Tibetan clam dog to be brought to the international community, and we believe that TMF (TMastiff) will flourish in the future.", + "explorer": "https://bscscan.com/token/0x7122f1c0777900b959573132deac9a7209741aa0", + "type": "BEP20", + "symbol": "TMF(TMastiff)", + "decimals": 9, + "status": "active", + "id": "0x7122f1C0777900B959573132dEac9a7209741Aa0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7122f1C0777900B959573132dEac9a7209741Aa0/logo.png b/blockchains/smartchain/assets/0x7122f1C0777900B959573132dEac9a7209741Aa0/logo.png new file mode 100644 index 00000000..8c599666 Binary files /dev/null and b/blockchains/smartchain/assets/0x7122f1C0777900B959573132dEac9a7209741Aa0/logo.png differ diff --git a/blockchains/smartchain/assets/0x7128E52cA302c5f5BeEB801B6aD373fDeBE3dc5E/info.json b/blockchains/smartchain/assets/0x7128E52cA302c5f5BeEB801B6aD373fDeBE3dc5E/info.json new file mode 100644 index 00000000..8c80745b --- /dev/null +++ b/blockchains/smartchain/assets/0x7128E52cA302c5f5BeEB801B6aD373fDeBE3dc5E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Orange Cat Token", + "website": "https://orangecat.info", + "description": "Orange Cat Token is a Binance Smart Chain based community DeFi token.", + "explorer": "https://bscscan.com/token/0x7128E52cA302c5f5BeEB801B6aD373fDeBE3dc5E", + "type": "BEP20", + "symbol": "OCAT", + "decimals": 18, + "status": "active", + "id": "0x7128E52cA302c5f5BeEB801B6aD373fDeBE3dc5E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7128E52cA302c5f5BeEB801B6aD373fDeBE3dc5E/logo.png b/blockchains/smartchain/assets/0x7128E52cA302c5f5BeEB801B6aD373fDeBE3dc5E/logo.png new file mode 100644 index 00000000..1f6222d5 Binary files /dev/null and b/blockchains/smartchain/assets/0x7128E52cA302c5f5BeEB801B6aD373fDeBE3dc5E/logo.png differ diff --git a/blockchains/smartchain/assets/0x712C0a4659a7C31A81FD5A47a2D83c63A07d7D06/info.json b/blockchains/smartchain/assets/0x712C0a4659a7C31A81FD5A47a2D83c63A07d7D06/info.json new file mode 100644 index 00000000..ed64b6d2 --- /dev/null +++ b/blockchains/smartchain/assets/0x712C0a4659a7C31A81FD5A47a2D83c63A07d7D06/info.json @@ -0,0 +1,11 @@ +{ + "name": "LIMON GROUP", + "type": "BEP20", + "symbol": "LIMON", + "decimals": 9, + "website": "https://limon.group/", + "description": "LIMON.GROUP system generates NFT Tokens based on Binance Smart Chain. LIMON NFT Tokens are interconnected to digital products and commercial physical products (EAN - European Article Number) distribute this between B2B or B2P. Our upcoming DEX exchange (P2P) owns an automatic market maker (AMM) for exchanging BEP-20 tokens. Liquidity pools and locks, farming and staking functionalities will be included.", + "explorer": "https://bscscan.com/token/0x712C0a4659a7C31A81FD5A47a2D83c63A07d7D06", + "status": "active", + "id": "0x712C0a4659a7C31A81FD5A47a2D83c63A07d7D06" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x712C0a4659a7C31A81FD5A47a2D83c63A07d7D06/logo.png b/blockchains/smartchain/assets/0x712C0a4659a7C31A81FD5A47a2D83c63A07d7D06/logo.png new file mode 100644 index 00000000..5f1e6457 Binary files /dev/null and b/blockchains/smartchain/assets/0x712C0a4659a7C31A81FD5A47a2D83c63A07d7D06/logo.png differ diff --git a/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/info.json b/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/info.json new file mode 100644 index 00000000..3203686d --- /dev/null +++ b/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/info.json @@ -0,0 +1,33 @@ +{ + "name": "BNB pegged BTCB Token", + "website": "https://binance.org", + "description": "Bitcoin BEP2 (BTCB) is a token on Binance Chain issued by Binance, where the price is pegged to BTC at a rate of 1 BTCB = 1 BTC.", + "explorer": "https://bscscan.com/token/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c", + "research": "", + "type": "BEP20", + "symbol": "BTCB", + "decimals": 18, + "status": "active", + "id": "0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/binance-chain/" + }, + { + "name": "x", + "url": "https://x.com/binance_dex" + }, + { + "name": "telegram", + "url": "https://t.me/BinanceDEXchange" + }, + { + "name": "blog", + "url": "https://binance.org/en/blog/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/logo.png b/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/logo.png new file mode 100644 index 00000000..f26deab0 Binary files /dev/null and b/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/logo.png differ diff --git a/blockchains/smartchain/assets/0x7138b48df7D98D7e3cc221BfE7192D0a178182D8/info.json b/blockchains/smartchain/assets/0x7138b48df7D98D7e3cc221BfE7192D0a178182D8/info.json new file mode 100644 index 00000000..f82bf7bb --- /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 00000000..55d382c4 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 new file mode 100644 index 00000000..bf9bc770 --- /dev/null +++ b/blockchains/smartchain/assets/0x7144E379C827fA71A7ecAA01d00607cBb7eB1b7A/info.json @@ -0,0 +1,33 @@ +{ + "name": "LoveDoge", + "website": "https://lovedoge.io", + "description": "Love Doge is released on the Binance Smart Chainthe next evolution of the contract that generates revenueand deflation: you get rewards in tokens instead of BNB", + "explorer": "https://bscscan.com/token/0x7144E379C827fA71A7ecAA01d00607cBb7eB1b7A", + "type": "BEP20", + "symbol": "LoveDoge", + "decimals": 9, + "status": "active", + "id": "0x7144E379C827fA71A7ecAA01d00607cBb7eB1b7A", + "links": [ + { + "name": "x", + "url": "https://x.com/LoveDoge10" + }, + { + "name": "telegram", + "url": "https://t.me/LoveDogeEN1" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/love-doge" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ttmGKFrdb4" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/CryptoMoonShots/comments/ofb5ta/lovedoge_a_bsc_gem_2nd_airdrop_in_6_days_locked/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7144E379C827fA71A7ecAA01d00607cBb7eB1b7A/logo.png b/blockchains/smartchain/assets/0x7144E379C827fA71A7ecAA01d00607cBb7eB1b7A/logo.png new file mode 100644 index 00000000..5482f817 Binary files /dev/null and b/blockchains/smartchain/assets/0x7144E379C827fA71A7ecAA01d00607cBb7eB1b7A/logo.png differ diff --git a/blockchains/smartchain/assets/0x714a84632Ed7edBbBFEb62DACf02DB4BeB4C69D9/info.json b/blockchains/smartchain/assets/0x714a84632Ed7edBbBFEb62DACf02DB4BeB4C69D9/info.json new file mode 100644 index 00000000..896391b9 --- /dev/null +++ b/blockchains/smartchain/assets/0x714a84632Ed7edBbBFEb62DACf02DB4BeB4C69D9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ketchup Token", + "website": "https://ketchupfinance.com/", + "description": "KetchupFinance is an automatic liquidity acquisition yield farm and AMM decentralized exchange running on Binance Smart Chain with lots of unique and creative features that let you earn and win.", + "explorer": "https://bscscan.com/token/0x714a84632Ed7edBbBFEb62DACf02DB4BeB4C69D9", + "type": "BEP20", + "symbol": "KETCHUP", + "decimals": 18, + "status": "active", + "id": "0x714a84632Ed7edBbBFEb62DACf02DB4BeB4C69D9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x714a84632Ed7edBbBFEb62DACf02DB4BeB4C69D9/logo.png b/blockchains/smartchain/assets/0x714a84632Ed7edBbBFEb62DACf02DB4BeB4C69D9/logo.png new file mode 100644 index 00000000..86d83b06 Binary files /dev/null and b/blockchains/smartchain/assets/0x714a84632Ed7edBbBFEb62DACf02DB4BeB4C69D9/logo.png differ diff --git a/blockchains/smartchain/assets/0x71507068e98049cBA81E9bbc8d901E4A2f4222Eb/info.json b/blockchains/smartchain/assets/0x71507068e98049cBA81E9bbc8d901E4A2f4222Eb/info.json new file mode 100644 index 00000000..add33585 --- /dev/null +++ b/blockchains/smartchain/assets/0x71507068e98049cBA81E9bbc8d901E4A2f4222Eb/info.json @@ -0,0 +1,28 @@ +{ + "name": "SoFi Technologies (Ondo Tokenized)", + "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 00000000..dcd5cc8d 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 00000000..5a1fd79e --- /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 new file mode 100644 index 00000000..2bc49742 --- /dev/null +++ b/blockchains/smartchain/assets/0x7153431234b9A6D1Fa53cD057D5a1AAC00C85c7f/info.json @@ -0,0 +1,37 @@ +{ + "name": "KichiCoin", + "symbol": "KICH", + "type": "BEP20", + "decimals": 9, + "description": "KichiCoin (KICH) is a revolutionary De-Fi community-driven utility token that provides safe, secure, hassle-free transactions for everyone, along with a weekly lottery system utilizing Chainlink VRF that brings joy to our holders. Kichi aims to create interactive games on the BSC network and NFT Platform for the education sector. KICHI (吉) COIN’s concept was born to unite the community together to achieve common goals that reward everyone involved. Doxxed Team!", + "website": "https://kichicoin.io/", + "explorer": "https://bscscan.com/token/0x7153431234b9A6D1Fa53cD057D5a1AAC00C85c7f", + "status": "active", + "id": "0x7153431234b9A6D1Fa53cD057D5a1AAC00C85c7f", + "links": [ + { + "name": "telegram", + "url": "https://t.me/kichicoin" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cHPHJtDJhq" + }, + { + "name": "x", + "url": "https://x.com/KichiCoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCoarDKyWdCkOW4nw62kUYQA" + }, + { + "name": "facebook", + "url": "https://facebook.com/KichiCoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/KichiCoinToken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7153431234b9A6D1Fa53cD057D5a1AAC00C85c7f/logo.png b/blockchains/smartchain/assets/0x7153431234b9A6D1Fa53cD057D5a1AAC00C85c7f/logo.png new file mode 100644 index 00000000..05f39969 Binary files /dev/null and b/blockchains/smartchain/assets/0x7153431234b9A6D1Fa53cD057D5a1AAC00C85c7f/logo.png differ diff --git a/blockchains/smartchain/assets/0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0/info.json b/blockchains/smartchain/assets/0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0/info.json new file mode 100644 index 00000000..8be7f4bc --- /dev/null +++ b/blockchains/smartchain/assets/0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0/info.json @@ -0,0 +1,17 @@ +{ + "name": "BNB pegged Axie Infinity Shard", + "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", + "research": "https://research.binance.com/en/projects/axie-infinity", + "type": "BEP20", + "symbol": "AXS", + "decimals": 18, + "status": "active", + "id": "0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0", + "tags": [ + "binance-peg", + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0/logo.png b/blockchains/smartchain/assets/0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0/logo.png new file mode 100644 index 00000000..73d60607 Binary files /dev/null and b/blockchains/smartchain/assets/0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0/logo.png differ diff --git a/blockchains/smartchain/assets/0x716a5d2244eb2Ca4865bF1DcD7979a225EBA8888/info.json b/blockchains/smartchain/assets/0x716a5d2244eb2Ca4865bF1DcD7979a225EBA8888/info.json new file mode 100644 index 00000000..d2fa6642 --- /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 new file mode 100644 index 00000000..dbd1415a --- /dev/null +++ b/blockchains/smartchain/assets/0x71E80e96Af604Afc23Ca2AED4C1C7466DB6dd0c4/info.json @@ -0,0 +1,29 @@ +{ + "name": "Baby Floki", + "website": "https://www.babyfloki.info/", + "description": "BABY FLOKI has been designed to be a deflationary token which rewards you $DOGE simply for holding! Named after Elon 'Dogefather' Musk's new Shiba Inu pup, this token is a sure way for you to reach your x1000!", + "explorer": "https://bscscan.com/token/0x71E80e96Af604Afc23Ca2AED4C1C7466DB6dd0c4", + "type": "BEP20", + "symbol": "BabyFloki", + "decimals": 9, + "status": "active", + "id": "0x71E80e96Af604Afc23Ca2AED4C1C7466DB6dd0c4", + "links": [ + { + "name": "telegram", + "url": "https://t.me/thebabyfloki" + }, + { + "name": "x", + "url": "https://x.com/thebabyfloki" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/TheBabyFloki/" + }, + { + "name": "whitepaper", + "url": "https://88b10f67-99c2-4cbf-b973-13cb422aaa60.filesusr.com/ugd/c4baae_cf7bc8952b7f4c44a493683c9ddf338b.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71E80e96Af604Afc23Ca2AED4C1C7466DB6dd0c4/logo.png b/blockchains/smartchain/assets/0x71E80e96Af604Afc23Ca2AED4C1C7466DB6dd0c4/logo.png new file mode 100644 index 00000000..868f1c30 Binary files /dev/null and b/blockchains/smartchain/assets/0x71E80e96Af604Afc23Ca2AED4C1C7466DB6dd0c4/logo.png differ diff --git a/blockchains/smartchain/assets/0x71a72Be5F11158CD24c16C75125Bd45be479ed0A/info.json b/blockchains/smartchain/assets/0x71a72Be5F11158CD24c16C75125Bd45be479ed0A/info.json new file mode 100644 index 00000000..69a18429 --- /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 new file mode 100644 index 00000000..7e8e8d68 --- /dev/null +++ b/blockchains/smartchain/assets/0x71aB195498b6dC1656aBb4D9233f83Ae5F19495B/info.json @@ -0,0 +1,24 @@ +{ + "name": "Marvin Inu", + "type": "BEP20", + "symbol": "MARVIN", + "decimals": 18, + "website": "https://marvininueth.com/", + "description": "Marvin INU has more than just hype backing it. The ambitious team behind this project has committed to providing multiple utilities within the ecosystem. Marvin is here to stay, not only as a tribute to Elon’s dog, but to bring you a full suite of treats, including his Launchpad, Staking, Farming, and more. ", + "explorer": "https://bscscan.com/token/0x71aB195498b6dC1656aBb4D9233f83Ae5F19495B", + "status": "active", + "id": "0x71aB195498b6dC1656aBb4D9233f83Ae5F19495B", + "links": [ + { + "name": "telegram", + "url": "https://t.me/MarvinInuofficial" + }, + { + "name": "x", + "url": "https://x.com/marvin_inu?s=21" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71aB195498b6dC1656aBb4D9233f83Ae5F19495B/logo.png b/blockchains/smartchain/assets/0x71aB195498b6dC1656aBb4D9233f83Ae5F19495B/logo.png new file mode 100644 index 00000000..d10df7c6 Binary files /dev/null and b/blockchains/smartchain/assets/0x71aB195498b6dC1656aBb4D9233f83Ae5F19495B/logo.png differ diff --git a/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json b/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json new file mode 100644 index 00000000..dc9e22dd --- /dev/null +++ b/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json @@ -0,0 +1,11 @@ +{ + "name": "PRIVATEUM INITIATIVE", + "website": "https://privateum.org", + "description": "PRIVATEUM is a technological and legal solution based community platform that enables private assets management", + "explorer": "https://bscscan.com/token/0x71afF23750db1f4edbE32C942157a478349035b2", + "type": "BEP20", + "symbol": "PVM", + "decimals": 18, + "status": "abandoned", + "id": "0x71afF23750db1f4edbE32C942157a478349035b2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71b87be9ccBABe4F393e809dfc26Df3c9720E0a2/info.json b/blockchains/smartchain/assets/0x71b87be9ccBABe4F393e809dfc26Df3c9720E0a2/info.json new file mode 100644 index 00000000..5b75ea12 --- /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 00000000..344a41c2 Binary files /dev/null and b/blockchains/smartchain/assets/0x71b87be9ccBABe4F393e809dfc26Df3c9720E0a2/logo.png differ diff --git a/blockchains/smartchain/assets/0x71be881e9C5d4465B3FfF61e89c6f3651E69B5bb/info.json b/blockchains/smartchain/assets/0x71be881e9C5d4465B3FfF61e89c6f3651E69B5bb/info.json new file mode 100644 index 00000000..3c97d6fc --- /dev/null +++ b/blockchains/smartchain/assets/0x71be881e9C5d4465B3FfF61e89c6f3651E69B5bb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Brazilian Digital Token", + "type": "BEP20", + "symbol": "BRZ", + "decimals": 4, + "website": "https://www.brztoken.io/", + "description": "BRZ is a fully backed Brazilian Real stablecoin, a multi-chain digital asset that provides international liquidity and ease-of-access to both Latin Americans and international players who wish to access the Brazilian market", + "explorer": "https://bscscan.com/token/0x71be881e9C5d4465B3FfF61e89c6f3651E69B5bb", + "status": "active", + "id": "0x71be881e9C5d4465B3FfF61e89c6f3651E69B5bb" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71be881e9C5d4465B3FfF61e89c6f3651E69B5bb/logo.png b/blockchains/smartchain/assets/0x71be881e9C5d4465B3FfF61e89c6f3651E69B5bb/logo.png new file mode 100644 index 00000000..bf7224b6 Binary files /dev/null and b/blockchains/smartchain/assets/0x71be881e9C5d4465B3FfF61e89c6f3651E69B5bb/logo.png differ diff --git a/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/info.json b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/info.json new file mode 100644 index 00000000..1f44ad15 --- /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 00000000..aab7d66f Binary files /dev/null and b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/logo.png differ diff --git a/blockchains/smartchain/assets/0x71e1611075800E89A460463FCDfbA3d0FEA8c01d/info.json b/blockchains/smartchain/assets/0x71e1611075800E89A460463FCDfbA3d0FEA8c01d/info.json new file mode 100644 index 00000000..00faeb59 --- /dev/null +++ b/blockchains/smartchain/assets/0x71e1611075800E89A460463FCDfbA3d0FEA8c01d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aerotyne", + "type": "BEP20", + "symbol": "ATYNE", + "decimals": 9, + "website": "https://aerotynetoken.com/", + "description": "Great ideas start in a small shed! This is the first giveaway-centered, meme-based, reflective crypto token to be launching on the Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x71e1611075800e89a460463fcdfba3d0fea8c01d", + "status": "active", + "id": "0x71e1611075800E89A460463FCDfbA3d0FEA8c01d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71e1611075800E89A460463FCDfbA3d0FEA8c01d/logo.png b/blockchains/smartchain/assets/0x71e1611075800E89A460463FCDfbA3d0FEA8c01d/logo.png new file mode 100644 index 00000000..b69cba78 Binary files /dev/null and b/blockchains/smartchain/assets/0x71e1611075800E89A460463FCDfbA3d0FEA8c01d/logo.png differ diff --git a/blockchains/smartchain/assets/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa/info.json b/blockchains/smartchain/assets/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa/info.json new file mode 100644 index 00000000..59af6200 --- /dev/null +++ b/blockchains/smartchain/assets/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa/info.json @@ -0,0 +1,41 @@ +{ + "name": "LordToken", + "type": "BEP20", + "symbol": "LTT", + "decimals": 9, + "website": "https://lordtoken.com", + "description": "LordToken’s ambition is to fill this gap, by granting access to anyone, regardless of his level of expertise, to a comprehensive set of tools while relying on premium customer service. The same goes for crypto: blockchain technology is quite complex, but if users are offered simple ways of interacting with it along with proper customer care, they will be able to take full advantage of it.", + "explorer": "https://bscscan.com/token/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa", + "status": "active", + "id": "0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa", + "links": [ + { + "name": "x", + "url": "https://x.com/lordtoken_off/" + }, + { + "name": "facebook", + "url": "https://facebook.com/LordToken-102969834974531/" + }, + { + "name": "whitepaper", + "url": "https://ico.lordtoken.com/en/register/information_document" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lordtoken/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/lordtoken" + }, + { + "name": "telegram", + "url": "https://t.me/LordTokenGroup" + } + ], + "tags": [ + "staking", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa/logo.png b/blockchains/smartchain/assets/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa/logo.png new file mode 100644 index 00000000..c1c81990 Binary files /dev/null and b/blockchains/smartchain/assets/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa/logo.png differ diff --git a/blockchains/smartchain/assets/0x7207Ab575daDD6025e2B334424C5eD10A0282778/info.json b/blockchains/smartchain/assets/0x7207Ab575daDD6025e2B334424C5eD10A0282778/info.json new file mode 100644 index 00000000..12965abe --- /dev/null +++ b/blockchains/smartchain/assets/0x7207Ab575daDD6025e2B334424C5eD10A0282778/info.json @@ -0,0 +1,11 @@ +{ + "name": "wShiba", + "website": "https://wshiba.net", + "description": "wShiba - A Pure Yield Farm Meme Token. The role of wShiba is as a yield farming token that generating returns from long-term holdings, while building a Zoopad (launchpad) for meme projects. A simple & transparent & effective project.", + "explorer": "https://bscscan.com/token/0x7207Ab575daDD6025e2B334424C5eD10A0282778", + "type": "BEP20", + "symbol": "wSHIB", + "decimals": 6, + "status": "active", + "id": "0x7207Ab575daDD6025e2B334424C5eD10A0282778" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7207Ab575daDD6025e2B334424C5eD10A0282778/logo.png b/blockchains/smartchain/assets/0x7207Ab575daDD6025e2B334424C5eD10A0282778/logo.png new file mode 100644 index 00000000..59670a49 Binary files /dev/null and b/blockchains/smartchain/assets/0x7207Ab575daDD6025e2B334424C5eD10A0282778/logo.png differ diff --git a/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/info.json b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/info.json new file mode 100644 index 00000000..6bb8be5a --- /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 00000000..99bcbded 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 new file mode 100644 index 00000000..ba201f9f --- /dev/null +++ b/blockchains/smartchain/assets/0x721F40adC793e951EdF2ECE86376e7a103211252/info.json @@ -0,0 +1,44 @@ +{ + "name": "CCN", + "type": "BEP20", + "symbol": "CCN", + "decimals": 12, + "website": "https://ccnnetwork.co/", + "description": "The world's first 24-hour crypto currency news and analysis network.", + "explorer": "https://bscscan.com/token/0x721F40adC793e951EdF2ECE86376e7a103211252", + "status": "active", + "id": "0x721F40adC793e951EdF2ECE86376e7a103211252", + "links": [ + { + "name": "x", + "url": "https://x.com/CCNnet" + }, + { + "name": "github", + "url": "https://github.com/ccnnetworkco" + }, + { + "name": "telegram", + "url": "https://t.me/ccnnetwork" + }, + { + "name": "whitepaper", + "url": "https://ccnnetwork.co/whitepaper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/CCNnetworkss" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptocurrencynetwork/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCmBAbGxaNUXhRokbO1GCzgg" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x721F40adC793e951EdF2ECE86376e7a103211252/logo.png b/blockchains/smartchain/assets/0x721F40adC793e951EdF2ECE86376e7a103211252/logo.png new file mode 100644 index 00000000..fb21b12f Binary files /dev/null and b/blockchains/smartchain/assets/0x721F40adC793e951EdF2ECE86376e7a103211252/logo.png differ diff --git a/blockchains/smartchain/assets/0x7269d98Af4aA705e0B1A5D8512FadB4d45817d5a/info.json b/blockchains/smartchain/assets/0x7269d98Af4aA705e0B1A5D8512FadB4d45817d5a/info.json new file mode 100644 index 00000000..ebabadc8 --- /dev/null +++ b/blockchains/smartchain/assets/0x7269d98Af4aA705e0B1A5D8512FadB4d45817d5a/info.json @@ -0,0 +1,29 @@ +{ + "name": "Shirtum", + "type": "BEP20", + "symbol": "SHI", + "decimals": 18, + "website": "https://shirtum.com", + "description": "Global marketplace of digital assets, for Players and Clubs to share their stories with fans and invite them to join in collecting digital sports memorabilia directly from their idols.", + "explorer": "https://bscscan.com/token/0x7269d98Af4aA705e0B1A5D8512FadB4d45817d5a", + "status": "active", + "id": "0x7269d98Af4aA705e0B1A5D8512FadB4d45817d5a", + "links": [ + { + "name": "x", + "url": "https://x.com/shirtumapp" + }, + { + "name": "github", + "url": "https://github.com/Shirtum" + }, + { + "name": "telegram", + "url": "https://t.me/shirtum" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/es/monedas/shirtum" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7269d98Af4aA705e0B1A5D8512FadB4d45817d5a/logo.png b/blockchains/smartchain/assets/0x7269d98Af4aA705e0B1A5D8512FadB4d45817d5a/logo.png new file mode 100644 index 00000000..85ade7b1 Binary files /dev/null and b/blockchains/smartchain/assets/0x7269d98Af4aA705e0B1A5D8512FadB4d45817d5a/logo.png differ diff --git a/blockchains/smartchain/assets/0x728C5baC3C3e370E372Fc4671f9ef6916b814d8B/info.json b/blockchains/smartchain/assets/0x728C5baC3C3e370E372Fc4671f9ef6916b814d8B/info.json new file mode 100644 index 00000000..6fe6e603 --- /dev/null +++ b/blockchains/smartchain/assets/0x728C5baC3C3e370E372Fc4671f9ef6916b814d8B/info.json @@ -0,0 +1,12 @@ +{ + "name": "UNFI", + "website": "https://unifiprotocol.com", + "description": "Unifi Protocol DAO is a group of non-custodial, interoperable, decentralized, multi-chain smart contracts providing the building blocks for DeFi development. ", + "explorer": "https://bscscan.com/token/0x728c5bac3c3e370e372fc4671f9ef6916b814d8b", + "research": "https://research.binance.com/en/projects/unifi-protocol-dao", + "type": "BEP20", + "symbol": "UNFI", + "decimals": 18, + "status": "active", + "id": "0x728C5baC3C3e370E372Fc4671f9ef6916b814d8B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x728C5baC3C3e370E372Fc4671f9ef6916b814d8B/logo.png b/blockchains/smartchain/assets/0x728C5baC3C3e370E372Fc4671f9ef6916b814d8B/logo.png new file mode 100644 index 00000000..3197cc1e Binary files /dev/null and b/blockchains/smartchain/assets/0x728C5baC3C3e370E372Fc4671f9ef6916b814d8B/logo.png differ diff --git a/blockchains/smartchain/assets/0x72B7D61E8fC8cF971960DD9cfA59B8C829D91991/info.json b/blockchains/smartchain/assets/0x72B7D61E8fC8cF971960DD9cfA59B8C829D91991/info.json new file mode 100644 index 00000000..00b88754 --- /dev/null +++ b/blockchains/smartchain/assets/0x72B7D61E8fC8cF971960DD9cfA59B8C829D91991/info.json @@ -0,0 +1,25 @@ +{ + "name": "AQUA", + "type": "BEP20", + "symbol": "AQUA", + "decimals": 18, + "website": "https://planetfinance.io/", + "description": "AQUA is a utility based cryptocurrency designed to accrue value & govern the planets.", + "explorer": "https://bscscan.com/token/0x72B7D61E8fC8cF971960DD9cfA59B8C829D91991", + "status": "active", + "id": "0x72B7D61E8fC8cF971960DD9cfA59B8C829D91991", + "links": [ + { + "name": "telegram", + "url": "https://t.me/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/0x72B7D61E8fC8cF971960DD9cfA59B8C829D91991/logo.png b/blockchains/smartchain/assets/0x72B7D61E8fC8cF971960DD9cfA59B8C829D91991/logo.png new file mode 100644 index 00000000..c984b322 Binary files /dev/null and b/blockchains/smartchain/assets/0x72B7D61E8fC8cF971960DD9cfA59B8C829D91991/logo.png differ diff --git a/blockchains/smartchain/assets/0x72Eb1aFddB5652e0f5c7B9A6cc1C3241348b16c6/info.json b/blockchains/smartchain/assets/0x72Eb1aFddB5652e0f5c7B9A6cc1C3241348b16c6/info.json new file mode 100644 index 00000000..4d2195e4 --- /dev/null +++ b/blockchains/smartchain/assets/0x72Eb1aFddB5652e0f5c7B9A6cc1C3241348b16c6/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAFEPIZZA", + "website": "https://safe-pizza.com/", + "description": "Two Missions, A Charity and Payment Token", + "explorer": "https://bscscan.com/token/0x72eb1afddb5652e0f5c7b9a6cc1c3241348b16c6", + "type": "BEP20", + "symbol": "PIZZA", + "decimals": 9, + "status": "abandoned", + "id": "0x72Eb1aFddB5652e0f5c7B9A6cc1C3241348b16c6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x72d2946094E6E57c2faDe4964777A9af2B7A51F9/info.json b/blockchains/smartchain/assets/0x72d2946094E6E57c2faDe4964777A9af2B7A51F9/info.json new file mode 100644 index 00000000..f9bf7364 --- /dev/null +++ b/blockchains/smartchain/assets/0x72d2946094E6E57c2faDe4964777A9af2B7A51F9/info.json @@ -0,0 +1,65 @@ +{ + "name": "Pixl Coin", + "type": "BEP20", + "symbol": "PXLC", + "decimals": 9, + "website": "https://pixlcoin.io", + "description": "Pixl Coin fuses the world of advertising with the metaverse. Today, the crypto space is manipulated and flooded with a vast variety of different projects of which a large number are dishonest. Through Pixl's community and dedication to the values of transparency, honesty and integrity, this is a space for investors to interact with vetted and trusted projects, and for those projects to demonstrate and advertise their true value.", + "explorer": "https://bscscan.com/token/0x72d2946094E6E57c2faDe4964777A9af2B7A51F9", + "status": "active", + "id": "0x72d2946094E6E57c2faDe4964777A9af2B7A51F9", + "links": [ + { + "name": "x", + "url": "https://x.com/PIXLCoin" + }, + { + "name": "github", + "url": "https://github.com/pixlcoin" + }, + { + "name": "telegram", + "url": "https://t.me/PixlCoinOfficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/PIXLUpdates" + }, + { + "name": "blog", + "url": "https://pixlcoin.io/blog" + }, + { + "name": "docs", + "url": "https://pixlcoin.io/" + }, + { + "name": "whitepaper", + "url": "https://pixlcoin.io/documents/PIXL_Coin_whitepaper_v1.01.pdf" + }, + { + "name": "discord", + "url": "https://discord.com/invite/vCJKe4V87Q" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/PixlCoin/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCapfVtQNmR444PAw8ufLK_w" + }, + { + "name": "facebook", + "url": "https://facebook.com/pixlofficial/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pixl-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pixl-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x72d2946094E6E57c2faDe4964777A9af2B7A51F9/logo.png b/blockchains/smartchain/assets/0x72d2946094E6E57c2faDe4964777A9af2B7A51F9/logo.png new file mode 100644 index 00000000..5c7bcd94 Binary files /dev/null and b/blockchains/smartchain/assets/0x72d2946094E6E57c2faDe4964777A9af2B7A51F9/logo.png differ diff --git a/blockchains/smartchain/assets/0x72fAa679E1008Ad8382959FF48E392042A8b06f7/info.json b/blockchains/smartchain/assets/0x72fAa679E1008Ad8382959FF48E392042A8b06f7/info.json new file mode 100644 index 00000000..4c930eef --- /dev/null +++ b/blockchains/smartchain/assets/0x72fAa679E1008Ad8382959FF48E392042A8b06f7/info.json @@ -0,0 +1,41 @@ +{ + "name": "AllianceBlock Token", + "website": "https://allianceblock.io", + "description": "AllianceBlock is establishing the world’s first globally compliant decentralized capital market. Our solution is built on the principles of censorship resistance, transparency, and openness. AllianceBlock’s Prometheus protocol aims to realize a decentralized, collaborative and sustainable capital market that brings together issuers, investors, institutions, traders, experts, advisors, other service providers, and even talent.", + "explorer": "https://bscscan.com/token/0x72fAa679E1008Ad8382959FF48E392042A8b06f7", + "type": "BEP20", + "symbol": "bALBT", + "decimals": 18, + "status": "active", + "id": "0x72fAa679E1008Ad8382959FF48E392042A8b06f7", + "links": [ + { + "name": "github", + "url": "https://github.com/Stichting-AllianceBlock-Foundation/AllianceBlock-Contracts" + }, + { + "name": "x", + "url": "https://x.com/allianceblock" + }, + { + "name": "telegram", + "url": "https://t.me/allianceblock" + }, + { + "name": "discord", + "url": "https://discord.com/invite/hF7AGgt" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Allianceblock/" + }, + { + "name": "medium", + "url": "https://medium.com/@allianceblock" + }, + { + "name": "whitepaper", + "url": "https://www.allianceblock.io/AllianceBlock_WhitePaper_n47oEn0Aa.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x72fAa679E1008Ad8382959FF48E392042A8b06f7/logo.png b/blockchains/smartchain/assets/0x72fAa679E1008Ad8382959FF48E392042A8b06f7/logo.png new file mode 100755 index 00000000..7532cfa3 Binary files /dev/null and b/blockchains/smartchain/assets/0x72fAa679E1008Ad8382959FF48E392042A8b06f7/logo.png differ diff --git a/blockchains/smartchain/assets/0x72fF5742319eF07061836F5C924aC6D72c919080/info.json b/blockchains/smartchain/assets/0x72fF5742319eF07061836F5C924aC6D72c919080/info.json new file mode 100644 index 00000000..db9f6e66 --- /dev/null +++ b/blockchains/smartchain/assets/0x72fF5742319eF07061836F5C924aC6D72c919080/info.json @@ -0,0 +1,29 @@ +{ + "name": "Gifto", + "type": "BEP20", + "symbol": "GFT", + "decimals": 18, + "website": "https://gifto.io/", + "description": "Gifto is a blockchain-based web3 gifting platform. Gifto's token, GFT, previously GTO, is listed on Binance since 2017 as the first-ever launchpad token on the exchange. The project is a hub for gifting blockchain gifts and is developing novelties: a web3 wallet, the Gifto store, and more.", + "explorer": "https://bscscan.com/token/0x72fF5742319eF07061836F5C924aC6D72c919080", + "status": "active", + "id": "0x72fF5742319eF07061836F5C924aC6D72c919080", + "links": [ + { + "name": "x", + "url": "https://x.com/GiftoMetaverse" + }, + { + "name": "telegram", + "url": "https://t.me/Gifto_Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gifto/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com//coins/gifto/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x72fF5742319eF07061836F5C924aC6D72c919080/logo.png b/blockchains/smartchain/assets/0x72fF5742319eF07061836F5C924aC6D72c919080/logo.png new file mode 100644 index 00000000..1eb8ea06 Binary files /dev/null and b/blockchains/smartchain/assets/0x72fF5742319eF07061836F5C924aC6D72c919080/logo.png differ diff --git a/blockchains/smartchain/assets/0x7313EA16493b2f55054Df0131A3A14B043ec8992/info.json b/blockchains/smartchain/assets/0x7313EA16493b2f55054Df0131A3A14B043ec8992/info.json new file mode 100644 index 00000000..05f4debf --- /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 00000000..1e8b0d3c 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 new file mode 100644 index 00000000..78666af4 --- /dev/null +++ b/blockchains/smartchain/assets/0x7320c128e89bA4584Ab02ed1C9c96285b726443C/info.json @@ -0,0 +1,40 @@ +{ + "name": "Kokoswap Token", + "type": "BEP20", + "symbol": "KOKO", + "decimals": 18, + "website": "https://kokoswap.org", + "description": "Kokoswap is a unique decentralised platform that is transforming the world of crypto, NFTs & Game-Fi.", + "explorer": "https://bscscan.com/token/0x7320c128e89bA4584Ab02ed1C9c96285b726443C", + "status": "active", + "id": "0x7320c128e89bA4584Ab02ed1C9c96285b726443C", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kokoswap/" + }, + { + "name": "telegram", + "url": "https://t.me/kokoswap" + }, + { + "name": "github", + "url": "https://github.com/Kokoswap-org" + }, + { + "name": "blog", + "url": "https://kokoswap.medium.com/" + }, + { + "name": "docs", + "url": "https://kokoswap.org/assets/pdf/kokoswap_whitepaper.pdf" + }, + { + "name": "x", + "url": "https://x.com/kokoswap" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7320c128e89bA4584Ab02ed1C9c96285b726443C/logo.png b/blockchains/smartchain/assets/0x7320c128e89bA4584Ab02ed1C9c96285b726443C/logo.png new file mode 100644 index 00000000..6a331f35 Binary files /dev/null and b/blockchains/smartchain/assets/0x7320c128e89bA4584Ab02ed1C9c96285b726443C/logo.png differ diff --git a/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/info.json b/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/info.json new file mode 100644 index 00000000..0fa806aa --- /dev/null +++ b/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/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://bscscan.com/token/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b", + "type": "BEP20", + "symbol": "XCN", + "decimals": 18, + "status": "active", + "id": "0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b", + "links": [ + { + "name": "github", + "url": "https://github.com/Onyx-Protocol" + }, + { + "name": "x", + "url": "https://x.com/OnyxProtocol" + }, + { + "name": "blog", + "url": "https://blog.chain.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chain/" + }, + { + "name": "telegram", + "url": "https://t.me/onyx" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/logo.png b/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/logo.png new file mode 100644 index 00000000..ac453498 Binary files /dev/null and b/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/logo.png differ diff --git a/blockchains/smartchain/assets/0x73419De8E3E26A17e0E6b0436e29dd04A25B061D/info.json b/blockchains/smartchain/assets/0x73419De8E3E26A17e0E6b0436e29dd04A25B061D/info.json new file mode 100644 index 00000000..eaca9e5f --- /dev/null +++ b/blockchains/smartchain/assets/0x73419De8E3E26A17e0E6b0436e29dd04A25B061D/info.json @@ -0,0 +1,40 @@ +{ + "name": "MIKU", + "type": "BEP20", + "symbol": "MIKU", + "decimals": 9, + "website": "https://mikubsc.com", + "description": "Miku is token built on binance smart chain with unique product and tokenomics, a unique original character created as a brand, a girl from heaven with blue hair and the power of wings, the goddess of trust and loyalty.", + "explorer": "https://bscscan.com/token/0x73419De8E3E26A17e0E6b0436e29dd04A25B061D", + "status": "active", + "id": "0x73419De8E3E26A17e0E6b0436e29dd04A25B061D", + "links": [ + { + "name": "x", + "url": "https://x.com/MikuBSC" + }, + { + "name": "telegram", + "url": "https://t.me/MikuBSC" + }, + { + "name": "medium", + "url": "https://medium.com/@mikucoin" + }, + { + "name": "whitepaper", + "url": "https://mikucoin.gitbook.io/miku-coin-official-whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/miku/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/miku" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x73419De8E3E26A17e0E6b0436e29dd04A25B061D/logo.png b/blockchains/smartchain/assets/0x73419De8E3E26A17e0E6b0436e29dd04A25B061D/logo.png new file mode 100644 index 00000000..448723cb Binary files /dev/null and b/blockchains/smartchain/assets/0x73419De8E3E26A17e0E6b0436e29dd04A25B061D/logo.png differ diff --git a/blockchains/smartchain/assets/0x734548a9e43d2D564600b1B2ed5bE9C2b911c6aB/info.json b/blockchains/smartchain/assets/0x734548a9e43d2D564600b1B2ed5bE9C2b911c6aB/info.json new file mode 100644 index 00000000..d118d208 --- /dev/null +++ b/blockchains/smartchain/assets/0x734548a9e43d2D564600b1B2ed5bE9C2b911c6aB/info.json @@ -0,0 +1,32 @@ +{ + "name": "PEEL Token", + "website": "https://metaapesgame.com", + "description": "PEEL is the governance token of Meta Apes, a mobile strategy game.", + "explorer": "https://bscscan.com/token/0x734548a9e43d2D564600b1B2ed5bE9C2b911c6aB", + "type": "BEP20", + "symbol": "PEEL", + "decimals": 18, + "status": "active", + "id": "0x734548a9e43d2D564600b1B2ed5bE9C2b911c6aB", + "tags": [ + "gamefi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MetaApesGame" + }, + { + "name": "docs", + "url": "https://meta-apes.gitbook.io/meta-apes-whitepaper" + }, + { + "name": "medium", + "url": "https://medium.com/@metaapesgame" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aave/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x734548a9e43d2D564600b1B2ed5bE9C2b911c6aB/logo.png b/blockchains/smartchain/assets/0x734548a9e43d2D564600b1B2ed5bE9C2b911c6aB/logo.png new file mode 100644 index 00000000..098bff1b Binary files /dev/null and b/blockchains/smartchain/assets/0x734548a9e43d2D564600b1B2ed5bE9C2b911c6aB/logo.png differ diff --git a/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/info.json b/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/info.json new file mode 100644 index 00000000..f8c7002e --- /dev/null +++ b/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/info.json @@ -0,0 +1,28 @@ +{ + "name": "ZEDXION", + "type": "BEP20", + "symbol": "USDZ", + "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/0x734D66f635523D7ddb7d2373C128333DA313041b", + "status": "active", + "id": "0x734D66f635523D7ddb7d2373C128333DA313041b", + "links": [ + { + "name": "x", + "url": "https://x.com/zedxionc" + }, + { + "name": "telegram", + "url": "https://t.me/zedxion" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usdz/" + } + ], + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/logo.png b/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/logo.png new file mode 100644 index 00000000..b1298b96 Binary files /dev/null and b/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/logo.png differ diff --git a/blockchains/smartchain/assets/0x734c5F3f8F6ad9697b26eCC6388678aaFd3dB3B2/info.json b/blockchains/smartchain/assets/0x734c5F3f8F6ad9697b26eCC6388678aaFd3dB3B2/info.json new file mode 100644 index 00000000..c1c62025 --- /dev/null +++ b/blockchains/smartchain/assets/0x734c5F3f8F6ad9697b26eCC6388678aaFd3dB3B2/info.json @@ -0,0 +1,33 @@ +{ + "name": "METAMUSK Token", + "website": "https://muskmetaverse.io/", + "description": "MetaMusk Token's fundamental objective is to transform the monetary system.", + "explorer": "https://bscscan.com/token/0x734c5F3f8F6ad9697b26eCC6388678aaFd3dB3B2", + "type": "BEP20", + "symbol": "METAMUSK", + "decimals": 18, + "status": "active", + "id": "0x734c5F3f8F6ad9697b26eCC6388678aaFd3dB3B2", + "links": [ + { + "name": "x", + "url": "https://x.com/MUSK_METAVERSE" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/Muskmetaverse" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCGTAQ4sM-nMibpVqKelfbKw" + }, + { + "name": "telegram", + "url": "https://t.me/MuskMetaverse_Official_Channel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/musk-metaverse/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x734c5F3f8F6ad9697b26eCC6388678aaFd3dB3B2/logo.png b/blockchains/smartchain/assets/0x734c5F3f8F6ad9697b26eCC6388678aaFd3dB3B2/logo.png new file mode 100644 index 00000000..9d312e5e Binary files /dev/null and b/blockchains/smartchain/assets/0x734c5F3f8F6ad9697b26eCC6388678aaFd3dB3B2/logo.png differ diff --git a/blockchains/smartchain/assets/0x735EBe3Ed47877a11023B904054a0ffE44e91AB7/info.json b/blockchains/smartchain/assets/0x735EBe3Ed47877a11023B904054a0ffE44e91AB7/info.json new file mode 100644 index 00000000..a316fcbc --- /dev/null +++ b/blockchains/smartchain/assets/0x735EBe3Ed47877a11023B904054a0ffE44e91AB7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alaska Inu", + "website": "https://alaskatoken.io/", + "description": "Alaska Inu is a 100% decentralized community experiment.", + "explorer": "https://bscscan.com/token/0x735ebe3ed47877a11023b904054a0ffe44e91ab7", + "type": "BEP20", + "symbol": "LAS", + "decimals": 18, + "status": "active", + "id": "0x735EBe3Ed47877a11023B904054a0ffE44e91AB7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x735EBe3Ed47877a11023B904054a0ffE44e91AB7/logo.png b/blockchains/smartchain/assets/0x735EBe3Ed47877a11023B904054a0ffE44e91AB7/logo.png new file mode 100644 index 00000000..f4fbc655 Binary files /dev/null and b/blockchains/smartchain/assets/0x735EBe3Ed47877a11023B904054a0ffE44e91AB7/logo.png differ diff --git a/blockchains/smartchain/assets/0x736f40aB52405353e29Cef4B87dC42f707FAB9E6/info.json b/blockchains/smartchain/assets/0x736f40aB52405353e29Cef4B87dC42f707FAB9E6/info.json new file mode 100644 index 00000000..36d9e726 --- /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 00000000..1b6686f0 Binary files /dev/null and b/blockchains/smartchain/assets/0x736f40aB52405353e29Cef4B87dC42f707FAB9E6/logo.png differ diff --git a/blockchains/smartchain/assets/0x737f0E47c4d4167a3eEcde5FA87306b6eEe3140e/info.json b/blockchains/smartchain/assets/0x737f0E47c4d4167a3eEcde5FA87306b6eEe3140e/info.json new file mode 100644 index 00000000..7ffd7550 --- /dev/null +++ b/blockchains/smartchain/assets/0x737f0E47c4d4167a3eEcde5FA87306b6eEe3140e/info.json @@ -0,0 +1,11 @@ +{ + "name": "KimJongMoon", + "type": "BEP20", + "symbol": "KIMJ", + "decimals": 9, + "website": "https://kimjongmoon.net", + "description": "KimJongMoon is a fun and unique deflationary DEFI cryptocurrency on the Binance Smart Chain network with a few development projects to be released in the near future (NFT marketplace, merch store, mini-games, and animated series).", + "explorer": "https://bscscan.com/token/0x737f0E47c4d4167a3eEcde5FA87306b6eEe3140e", + "status": "active", + "id": "0x737f0E47c4d4167a3eEcde5FA87306b6eEe3140e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x737f0E47c4d4167a3eEcde5FA87306b6eEe3140e/logo.png b/blockchains/smartchain/assets/0x737f0E47c4d4167a3eEcde5FA87306b6eEe3140e/logo.png new file mode 100644 index 00000000..59973837 Binary files /dev/null and b/blockchains/smartchain/assets/0x737f0E47c4d4167a3eEcde5FA87306b6eEe3140e/logo.png differ diff --git a/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/info.json b/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/info.json new file mode 100644 index 00000000..54aa3d6b --- /dev/null +++ b/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/info.json @@ -0,0 +1,56 @@ +{ + "name": "Ankr Staked MATIC", + "type": "BEP20", + "symbol": "ankrMATIC", + "decimals": 18, + "website": "https://ankr.com", + "description": "ankrMATIC represents your staked MATIC and provides liquidity for your staked position. All staking rewards are built into the token price, and ankrMATIC grows daily in value, but never in number", + "explorer": "https://bscscan.com/token/0x738d96caf7096659db4c1afbf1e1bdfd281f388c", + "status": "active", + "id": "0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C", + "links": [ + { + "name": "x", + "url": "https://x.com/ankr" + }, + { + "name": "github", + "url": "https://github.com/Ankr-network" + }, + { + "name": "telegram", + "url": "https://t.me/ankrnetwork" + }, + { + "name": "docs", + "url": "https://ankr.com/docs/staking/overview" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Ankrofficial/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@AnkrOfficial" + }, + { + "name": "whitepaper", + "url": "https://ankr.com/ankr-whitepaper-2.0.pdf" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ankr" + }, + { + "name": "medium", + "url": "https://medium.com/ankr-network" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ankr-staked-matic" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/logo.png b/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/logo.png new file mode 100644 index 00000000..22d28ab4 Binary files /dev/null and b/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/logo.png differ diff --git a/blockchains/smartchain/assets/0x738f3810b3dA0F3e6dC8C689D0d72f3b4992c43b/info.json b/blockchains/smartchain/assets/0x738f3810b3dA0F3e6dC8C689D0d72f3b4992c43b/info.json new file mode 100644 index 00000000..bb10e51f --- /dev/null +++ b/blockchains/smartchain/assets/0x738f3810b3dA0F3e6dC8C689D0d72f3b4992c43b/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream Band Protocol Token", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x738f3810b3dA0F3e6dC8C689D0d72f3b4992c43b", + "type": "BEP20", + "symbol": "crBAND", + "decimals": 8, + "status": "active", + "id": "0x738f3810b3dA0F3e6dC8C689D0d72f3b4992c43b", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x738f3810b3dA0F3e6dC8C689D0d72f3b4992c43b/logo.png b/blockchains/smartchain/assets/0x738f3810b3dA0F3e6dC8C689D0d72f3b4992c43b/logo.png new file mode 100644 index 00000000..a0c8cfd9 Binary files /dev/null and b/blockchains/smartchain/assets/0x738f3810b3dA0F3e6dC8C689D0d72f3b4992c43b/logo.png differ diff --git a/blockchains/smartchain/assets/0x739e81BCd49854d7BDF526302989f14A2E7994B2/info.json b/blockchains/smartchain/assets/0x739e81BCd49854d7BDF526302989f14A2E7994B2/info.json new file mode 100644 index 00000000..3211f452 --- /dev/null +++ b/blockchains/smartchain/assets/0x739e81BCd49854d7BDF526302989f14A2E7994B2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Centcex", + "type": "BEP20", + "symbol": "CENX", + "decimals": 9, + "website": "https://centcex.com", + "description": "Centcex is designed to build blockchain apps ", + "explorer": "https://bscscan.com/token/0x739e81bcd49854d7bdf526302989f14a2e7994b2", + "status": "active", + "id": "0x739e81BCd49854d7BDF526302989f14A2E7994B2", + "links": [ + { + "name": "telegram", + "url": "https://t.me/centcex" + }, + { + "name": "x", + "url": "https://x.com/centcex" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x739e81BCd49854d7BDF526302989f14A2E7994B2/logo.png b/blockchains/smartchain/assets/0x739e81BCd49854d7BDF526302989f14A2E7994B2/logo.png new file mode 100644 index 00000000..c4e8d94b Binary files /dev/null and b/blockchains/smartchain/assets/0x739e81BCd49854d7BDF526302989f14A2E7994B2/logo.png differ diff --git a/blockchains/smartchain/assets/0x7403802c0FFeE2d83FB13513e23aAF4a3a9C69f0/info.json b/blockchains/smartchain/assets/0x7403802c0FFeE2d83FB13513e23aAF4a3a9C69f0/info.json new file mode 100644 index 00000000..22386912 --- /dev/null +++ b/blockchains/smartchain/assets/0x7403802c0FFeE2d83FB13513e23aAF4a3a9C69f0/info.json @@ -0,0 +1,28 @@ +{ + "name": "Green Chart", + "type": "BEP20", + "symbol": "GREEN", + "decimals": 18, + "website": "https://green-chart.com/ ", + "description": "Green Chart provides a secure platform for yield farming for it's holders via staking rewards with a fixed APY compounding. ", + "explorer": "https://bscscan.com/token/0x7403802c0FFeE2d83FB13513e23aAF4a3a9C69f0", + "status": "active", + "id": "0x7403802c0FFeE2d83FB13513e23aAF4a3a9C69f0", + "links": [ + { + "name": "x", + "url": "https://x.com/GreenChartBSC" + }, + { + "name": "telegram", + "url": "https://t.me/greenchartbsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/green-chart/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7403802c0FFeE2d83FB13513e23aAF4a3a9C69f0/logo.png b/blockchains/smartchain/assets/0x7403802c0FFeE2d83FB13513e23aAF4a3a9C69f0/logo.png new file mode 100644 index 00000000..beb8f70c Binary files /dev/null and b/blockchains/smartchain/assets/0x7403802c0FFeE2d83FB13513e23aAF4a3a9C69f0/logo.png differ diff --git a/blockchains/smartchain/assets/0x740e075cBbEa22a082B9d6679e65e82767875b6A/info.json b/blockchains/smartchain/assets/0x740e075cBbEa22a082B9d6679e65e82767875b6A/info.json new file mode 100644 index 00000000..47589043 --- /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 00000000..8e2056d3 Binary files /dev/null and b/blockchains/smartchain/assets/0x740e075cBbEa22a082B9d6679e65e82767875b6A/logo.png differ diff --git a/blockchains/smartchain/assets/0x741F72BC9E29f662F2Eb41c5aB450A2cA33bE57D/info.json b/blockchains/smartchain/assets/0x741F72BC9E29f662F2Eb41c5aB450A2cA33bE57D/info.json new file mode 100644 index 00000000..edeaae4d --- /dev/null +++ b/blockchains/smartchain/assets/0x741F72BC9E29f662F2Eb41c5aB450A2cA33bE57D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Deez Nuts", + "website": "https://www.deeznutscoin.com", + "description": "DEEZNUTS is based on the popular “deeznuts” Internet meme but represents itself as a charity coin. DEEZNUTS Coin was created to raise awareness and funds for cancer research, while also leveraging the viral and humorous aspect of the meme. The coin is now trending and supported by a list of celebrities and billionaires from around the world that are helping to promote the charitable cause.", + "explorer": "https://bscscan.com/token/0x741F72BC9E29f662F2Eb41c5aB450A2cA33bE57D", + "type": "BEP20", + "symbol": "DEEZNUTS", + "decimals": 18, + "status": "active", + "id": "0x741F72BC9E29f662F2Eb41c5aB450A2cA33bE57D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x741F72BC9E29f662F2Eb41c5aB450A2cA33bE57D/logo.png b/blockchains/smartchain/assets/0x741F72BC9E29f662F2Eb41c5aB450A2cA33bE57D/logo.png new file mode 100644 index 00000000..083621b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x741F72BC9E29f662F2Eb41c5aB450A2cA33bE57D/logo.png differ diff --git a/blockchains/smartchain/assets/0x7425889FE94F9d693E8daefE88BCCed6AcFEf4c0/info.json b/blockchains/smartchain/assets/0x7425889FE94F9d693E8daefE88BCCed6AcFEf4c0/info.json new file mode 100644 index 00000000..7a69caa0 --- /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 00000000..483578e2 Binary files /dev/null and b/blockchains/smartchain/assets/0x7425889FE94F9d693E8daefE88BCCed6AcFEf4c0/logo.png differ diff --git a/blockchains/smartchain/assets/0x743370645599ad355c90744d7e9388426Ad52d1c/info.json b/blockchains/smartchain/assets/0x743370645599ad355c90744d7e9388426Ad52d1c/info.json new file mode 100644 index 00000000..7961a0b6 --- /dev/null +++ b/blockchains/smartchain/assets/0x743370645599ad355c90744d7e9388426Ad52d1c/info.json @@ -0,0 +1,11 @@ +{ + "name": "SiaCashCoin", + "website": "https://www.siacashcoin.com", + "description": "The SiaCashCoin ecosystem will bring about a revolution in the way your precious data will be stored, secured, and protected.", + "explorer": "https://bscscan.com/token/0x743370645599ad355c90744d7e9388426ad52d1c", + "type": "BEP20", + "symbol": "BSCC", + "decimals": 18, + "status": "active", + "id": "0x743370645599ad355c90744d7e9388426Ad52d1c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x743370645599ad355c90744d7e9388426Ad52d1c/logo.png b/blockchains/smartchain/assets/0x743370645599ad355c90744d7e9388426Ad52d1c/logo.png new file mode 100644 index 00000000..d831a9de Binary files /dev/null and b/blockchains/smartchain/assets/0x743370645599ad355c90744d7e9388426Ad52d1c/logo.png differ diff --git a/blockchains/smartchain/assets/0x7437203800140BA7d9081ddE8cEF09EE40E3Bf03/info.json b/blockchains/smartchain/assets/0x7437203800140BA7d9081ddE8cEF09EE40E3Bf03/info.json new file mode 100644 index 00000000..fcda1dc1 --- /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 00000000..69cee97e Binary files /dev/null and b/blockchains/smartchain/assets/0x7437203800140BA7d9081ddE8cEF09EE40E3Bf03/logo.png differ diff --git a/blockchains/smartchain/assets/0x746E53502e50A7eB0c1EAbaA6A99eEF970F47685/info.json b/blockchains/smartchain/assets/0x746E53502e50A7eB0c1EAbaA6A99eEF970F47685/info.json new file mode 100644 index 00000000..8da43d2e --- /dev/null +++ b/blockchains/smartchain/assets/0x746E53502e50A7eB0c1EAbaA6A99eEF970F47685/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xiaoji.cash", + "website": "http://Xiaoji.cash", + "description": "Xiaoji.cash is the Crypto currency on the Binance Smart Chain. ", + "explorer": "https://bscscan.com/token/0x746e53502e50a7eb0c1eabaa6a99eef970f47685", + "type": "BEP20", + "symbol": "Ji", + "decimals": 18, + "status": "active", + "id": "0x746E53502e50A7eB0c1EAbaA6A99eEF970F47685" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x746E53502e50A7eB0c1EAbaA6A99eEF970F47685/logo.png b/blockchains/smartchain/assets/0x746E53502e50A7eB0c1EAbaA6A99eEF970F47685/logo.png new file mode 100644 index 00000000..8e9e8c53 Binary files /dev/null and b/blockchains/smartchain/assets/0x746E53502e50A7eB0c1EAbaA6A99eEF970F47685/logo.png differ diff --git a/blockchains/smartchain/assets/0x748AD98b14C814B28812eB42ad219C8672909879/info.json b/blockchains/smartchain/assets/0x748AD98b14C814B28812eB42ad219C8672909879/info.json new file mode 100644 index 00000000..dea6fc9f --- /dev/null +++ b/blockchains/smartchain/assets/0x748AD98b14C814B28812eB42ad219C8672909879/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dice", + "type": "BEP20", + "symbol": "DICE", + "decimals": 18, + "website": "https://dice.finance/", + "description": "-", + "explorer": "https://bscscan.com/token/0x748AD98b14C814B28812eB42ad219C8672909879", + "status": "active", + "id": "0x748AD98b14C814B28812eB42ad219C8672909879" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x748AD98b14C814B28812eB42ad219C8672909879/logo.png b/blockchains/smartchain/assets/0x748AD98b14C814B28812eB42ad219C8672909879/logo.png new file mode 100644 index 00000000..4ece0377 Binary files /dev/null and b/blockchains/smartchain/assets/0x748AD98b14C814B28812eB42ad219C8672909879/logo.png differ diff --git a/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/info.json b/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/info.json new file mode 100644 index 00000000..e3a98866 --- /dev/null +++ b/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/info.json @@ -0,0 +1,52 @@ +{ + "name": "EG Token", + "type": "BEP20", + "symbol": "EG", + "decimals": 18, + "website": "https://egtoken.io/", + "description": "EG is a community-owned token at the heart of a powerful ecosystem. From enterprise integration to real-world giving, EG is at the forefront of meaningful social impact with crypto.", + "explorer": "https://bscscan.com/token/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF", + "status": "active", + "id": "0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF", + "links": [ + { + "name": "x", + "url": "https://x.com/elongateog" + }, + { + "name": "github", + "url": "https://github.com/EG-Ecosystem" + }, + { + "name": "telegram", + "url": "https://t.me/ElonGateChat" + }, + { + "name": "whitepaper", + "url": "https://wiki.elongate.cc/elongate/whitepaper" + }, + { + "name": "discord", + "url": "https://discord.com/invite/elongate" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCDkstMh4GixgbvrkcJuBiuA" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/eg-token" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF#code" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ElonGateToken" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/logo.png b/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/logo.png new file mode 100644 index 00000000..e501e346 Binary files /dev/null and b/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/logo.png differ diff --git a/blockchains/smartchain/assets/0x74B3abB94e9e1ECc25Bd77d6872949B4a9B2aACF/info.json b/blockchains/smartchain/assets/0x74B3abB94e9e1ECc25Bd77d6872949B4a9B2aACF/info.json new file mode 100644 index 00000000..e6db862b --- /dev/null +++ b/blockchains/smartchain/assets/0x74B3abB94e9e1ECc25Bd77d6872949B4a9B2aACF/info.json @@ -0,0 +1,11 @@ +{ + "name": "DeFireX on BSC", + "website": "https://defirex.org", + "description": "DeFireX provides an opportunity to earn in DeFi with minimum risks. Its DeFi service works directly with Venus and offers profitable and reliable yield farming in BUSD, USDT, BNB, DAI, DFX, ETH and other tokens.", + "explorer": "https://bscscan.com/token/0x74B3abB94e9e1ECc25Bd77d6872949B4a9B2aACF", + "type": "BEP20", + "symbol": "DFX", + "decimals": 18, + "status": "active", + "id": "0x74B3abB94e9e1ECc25Bd77d6872949B4a9B2aACF" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x74B3abB94e9e1ECc25Bd77d6872949B4a9B2aACF/logo.png b/blockchains/smartchain/assets/0x74B3abB94e9e1ECc25Bd77d6872949B4a9B2aACF/logo.png new file mode 100644 index 00000000..77a9e3e3 Binary files /dev/null and b/blockchains/smartchain/assets/0x74B3abB94e9e1ECc25Bd77d6872949B4a9B2aACF/logo.png differ diff --git a/blockchains/smartchain/assets/0x74CFD109898fe125737e8081D2A8DF4F318305cC/info.json b/blockchains/smartchain/assets/0x74CFD109898fe125737e8081D2A8DF4F318305cC/info.json new file mode 100644 index 00000000..248e647e --- /dev/null +++ b/blockchains/smartchain/assets/0x74CFD109898fe125737e8081D2A8DF4F318305cC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin ELON", + "website": "https://bitcoinelon.org", + "description": "The Memes Token", + "explorer": "https://bscscan.com/token/0x74CFD109898fe125737e8081D2A8DF4F318305cC", + "symbol": "BTCELON", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x74CFD109898fe125737e8081D2A8DF4F318305cC" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x74CFD109898fe125737e8081D2A8DF4F318305cC/logo.png b/blockchains/smartchain/assets/0x74CFD109898fe125737e8081D2A8DF4F318305cC/logo.png new file mode 100644 index 00000000..78e1d2d0 Binary files /dev/null and b/blockchains/smartchain/assets/0x74CFD109898fe125737e8081D2A8DF4F318305cC/logo.png differ diff --git a/blockchains/smartchain/assets/0x74a907Ab83F77A79c6e5DFBE7e330D557704d74c/info.json b/blockchains/smartchain/assets/0x74a907Ab83F77A79c6e5DFBE7e330D557704d74c/info.json new file mode 100644 index 00000000..5548578c --- /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 00000000..16c91ac7 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 00000000..aa88e2a2 --- /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 00000000..c11b92b9 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 new file mode 100644 index 00000000..05b42913 --- /dev/null +++ b/blockchains/smartchain/assets/0x74f08aF7528Ffb751e3A435ddD779b5C4565e684/info.json @@ -0,0 +1,59 @@ +{ + "name": "King Finance", + "type": "BEP20", + "symbol": "KING", + "decimals": 9, + "website": "https://kingworld.finance/", + "description": "KING is the parent company developing three of the most innovative services in decentralised finance: King Floki, King Land, & King Pad.", + "explorer": "https://bscscan.com/token/0x74f08aF7528Ffb751e3A435ddD779b5C4565e684", + "status": "active", + "id": "0x74f08aF7528Ffb751e3A435ddD779b5C4565e684", + "links": [ + { + "name": "x", + "url": "https://x.com/kingfinance" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/KingFinance/" + }, + { + "name": "telegram", + "url": "https://t.me/KlNGfinance" + }, + { + "name": "telegram_news", + "url": "https://t.me/kingannouncements" + }, + { + "name": "discord", + "url": "https://discord.com/invite/kingfinance" + }, + { + "name": "whitepaper", + "url": "https://king-finance.gitbook.io/king-whitepaper/" + }, + { + "name": "medium", + "url": "https://medium.com/@kingfinance" + }, + { + "name": "youtube", + "url": "https://youtube.com/@kingfinanceco" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/king/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/king-finance/" + } + ], + "tags": [ + "staking", + "nft", + "gamefi", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x74f08aF7528Ffb751e3A435ddD779b5C4565e684/logo.png b/blockchains/smartchain/assets/0x74f08aF7528Ffb751e3A435ddD779b5C4565e684/logo.png new file mode 100644 index 00000000..ce852180 Binary files /dev/null and b/blockchains/smartchain/assets/0x74f08aF7528Ffb751e3A435ddD779b5C4565e684/logo.png differ diff --git a/blockchains/smartchain/assets/0x74f3a669A8f35010F6f8811c495c0A5F60c5d04d/info.json b/blockchains/smartchain/assets/0x74f3a669A8f35010F6f8811c495c0A5F60c5d04d/info.json new file mode 100644 index 00000000..6434e706 --- /dev/null +++ b/blockchains/smartchain/assets/0x74f3a669A8f35010F6f8811c495c0A5F60c5d04d/info.json @@ -0,0 +1,11 @@ +{ + "name": "SMEGMARS", + "type": "BEP20", + "symbol": "SMGM", + "decimals": 10, + "website": "https://www.smegmars.space", + "description": "Tired of only going to the moon? Come to Mars instead! SpaceX's aspirational goal has been to land the first humans on Mars by 2024, but don’t wait until then. Let us take you there right now! We are a community-driven project that has implemented some of the best tokenomics around. Our goal is simple: end testicular cancer", + "explorer": "https://bscscan.com/token/0x74f3a669A8f35010F6f8811c495c0A5F60c5d04d", + "status": "active", + "id": "0x74f3a669A8f35010F6f8811c495c0A5F60c5d04d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x74f3a669A8f35010F6f8811c495c0A5F60c5d04d/logo.png b/blockchains/smartchain/assets/0x74f3a669A8f35010F6f8811c495c0A5F60c5d04d/logo.png new file mode 100644 index 00000000..6999f944 Binary files /dev/null and b/blockchains/smartchain/assets/0x74f3a669A8f35010F6f8811c495c0A5F60c5d04d/logo.png differ diff --git a/blockchains/smartchain/assets/0x75022d03eEaC2Da632B7d8054dA1306c6F8b870F/info.json b/blockchains/smartchain/assets/0x75022d03eEaC2Da632B7d8054dA1306c6F8b870F/info.json new file mode 100644 index 00000000..d76040c5 --- /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 00000000..524f18df Binary files /dev/null and b/blockchains/smartchain/assets/0x75022d03eEaC2Da632B7d8054dA1306c6F8b870F/logo.png differ diff --git a/blockchains/smartchain/assets/0x75344E5693ed5ecAdF4f292fFeb866c2cF8afCF1/info.json b/blockchains/smartchain/assets/0x75344E5693ed5ecAdF4f292fFeb866c2cF8afCF1/info.json new file mode 100644 index 00000000..19cb31ba --- /dev/null +++ b/blockchains/smartchain/assets/0x75344E5693ed5ecAdF4f292fFeb866c2cF8afCF1/info.json @@ -0,0 +1,14 @@ +{ + "name": "Saber (Portal)", + "type": "BEP20", + "symbol": "SBR", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://saber.so/", + "explorer": "https://bscscan.com/token/0x75344E5693ed5ecAdF4f292fFeb866c2cF8afCF1", + "status": "active", + "id": "0x75344E5693ed5ecAdF4f292fFeb866c2cF8afCF1", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75344E5693ed5ecAdF4f292fFeb866c2cF8afCF1/logo.png b/blockchains/smartchain/assets/0x75344E5693ed5ecAdF4f292fFeb866c2cF8afCF1/logo.png new file mode 100644 index 00000000..20b80f33 Binary files /dev/null and b/blockchains/smartchain/assets/0x75344E5693ed5ecAdF4f292fFeb866c2cF8afCF1/logo.png differ diff --git a/blockchains/smartchain/assets/0x753fc5E107fd8c63DC84Daa4bc08370F2c05ffc8/info.json b/blockchains/smartchain/assets/0x753fc5E107fd8c63DC84Daa4bc08370F2c05ffc8/info.json new file mode 100644 index 00000000..79c09495 --- /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 00000000..e4a6f23d 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 new file mode 100644 index 00000000..dc41545c --- /dev/null +++ b/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/info.json @@ -0,0 +1,32 @@ +{ + "name": "Artrade Token", + "type": "BEP20", + "symbol": "ATR", + "decimals": 9, + "website": "https://www.artrade.app/fr", + "description": "Artrade is an all-in-one art platform, secured by blockchain technology, helping creators sell their work at fair prices and connect with their community. Our platform is designed for both digital and traditional artists, curators, and collectors. Artrade stands out with its focus on content, protection from crypto volatility, and fostering connections within the art world. Whether you're an artist or a collector, Artrade is the place to be.", + "explorer": "https://bscscan.com/token/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4", + "status": "active", + "id": "0x7559C49c3Aec50E763A486bB232fA8d0d76078e4", + "links": [ + { + "name": "x", + "url": "https://x.com/ArtradeApp" + }, + { + "name": "github", + "url": "https://github.com/artradeapp/" + }, + { + "name": "telegram", + "url": "https://t.me/ArtradeEnglish" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCj5xp_nfvY01RVLT45_lOWQ" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/logo.png b/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/logo.png new file mode 100644 index 00000000..6b18ca20 Binary files /dev/null and b/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/logo.png differ diff --git a/blockchains/smartchain/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json b/blockchains/smartchain/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json new file mode 100644 index 00000000..79b0e44a --- /dev/null +++ b/blockchains/smartchain/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/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://bscscan.com/token/0x755f34709E369D37C6Fa52808aE84A32007d1155", + "type": "BEP20", + "symbol": "NABOX", + "decimals": 18, + "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/smartchain/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/logo.png b/blockchains/smartchain/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/logo.png new file mode 100644 index 00000000..ee3475dc Binary files /dev/null and b/blockchains/smartchain/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/logo.png differ diff --git a/blockchains/smartchain/assets/0x7565ab68D3F9DaDff127F864103C8c706Cf28235/info.json b/blockchains/smartchain/assets/0x7565ab68D3F9DaDff127F864103C8c706Cf28235/info.json new file mode 100644 index 00000000..9295b940 --- /dev/null +++ b/blockchains/smartchain/assets/0x7565ab68D3F9DaDff127F864103C8c706Cf28235/info.json @@ -0,0 +1,33 @@ +{ + "name": "TrustFi Network Token", + "website": "https://trustfi.org/", + "description": "TFI is the native token of TrustFi Network, a decentralized BaaS solution for DeFi market based on multichain environment.", + "explorer": "https://bscscan.com/token/0x7565ab68D3F9DaDff127F864103C8c706Cf28235", + "type": "BEP20", + "symbol": "TFI", + "decimals": 18, + "status": "active", + "id": "0x7565ab68D3F9DaDff127F864103C8c706Cf28235", + "links": [ + { + "name": "telegram", + "url": "https://t.me/trustfi_fans" + }, + { + "name": "x", + "url": "https://x.com/trustfiorg" + }, + { + "name": "blog", + "url": "https://medium.com/@trustfi" + }, + { + "name": "whitepaper", + "url": "https://docs.trustfi.org/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/trustfi-network-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7565ab68D3F9DaDff127F864103C8c706Cf28235/logo.png b/blockchains/smartchain/assets/0x7565ab68D3F9DaDff127F864103C8c706Cf28235/logo.png new file mode 100644 index 00000000..9e307695 Binary files /dev/null and b/blockchains/smartchain/assets/0x7565ab68D3F9DaDff127F864103C8c706Cf28235/logo.png differ diff --git a/blockchains/smartchain/assets/0x7567c2a46BCE46373b454682F3d95e6535BDe144/info.json b/blockchains/smartchain/assets/0x7567c2a46BCE46373b454682F3d95e6535BDe144/info.json new file mode 100644 index 00000000..1b41b3d1 --- /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 00000000..72641705 Binary files /dev/null and b/blockchains/smartchain/assets/0x7567c2a46BCE46373b454682F3d95e6535BDe144/logo.png differ diff --git a/blockchains/smartchain/assets/0x7576FdBbE682EAD7dA1f764a07190C1fd16201CD/info.json b/blockchains/smartchain/assets/0x7576FdBbE682EAD7dA1f764a07190C1fd16201CD/info.json new file mode 100644 index 00000000..73533fd0 --- /dev/null +++ b/blockchains/smartchain/assets/0x7576FdBbE682EAD7dA1f764a07190C1fd16201CD/info.json @@ -0,0 +1,11 @@ +{ + "name": "CatInu", + "website": "https://catinu.net", + "description": "CAT Token - created for people who love cats.", + "explorer": "https://bscscan.com/token/0x7576FdBbE682EAD7dA1f764a07190C1fd16201CD", + "type": "BEP20", + "symbol": "CatInu", + "decimals": 9, + "status": "active", + "id": "0x7576FdBbE682EAD7dA1f764a07190C1fd16201CD" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7576FdBbE682EAD7dA1f764a07190C1fd16201CD/logo.png b/blockchains/smartchain/assets/0x7576FdBbE682EAD7dA1f764a07190C1fd16201CD/logo.png new file mode 100644 index 00000000..8c9e58a4 Binary files /dev/null and b/blockchains/smartchain/assets/0x7576FdBbE682EAD7dA1f764a07190C1fd16201CD/logo.png differ diff --git a/blockchains/smartchain/assets/0x75856ea207CE7194E4E65c334BEc143D77701E4a/info.json b/blockchains/smartchain/assets/0x75856ea207CE7194E4E65c334BEc143D77701E4a/info.json new file mode 100644 index 00000000..d1f47c49 --- /dev/null +++ b/blockchains/smartchain/assets/0x75856ea207CE7194E4E65c334BEc143D77701E4a/info.json @@ -0,0 +1,21 @@ +{ + "name": "MiniSports Token", + "type": "BEP20", + "symbol": "MiniSports", + "decimals": 9, + "website": "https://minisportstoken.com/", + "description": "MiniSports is a sports based community token developed mainly to create a safehaven for sports lovers.", + "explorer": "https://bscscan.com/token/0x75856ea207CE7194E4E65c334BEc143D77701E4a", + "status": "active", + "id": "0x75856ea207CE7194E4E65c334BEc143D77701E4a", + "links": [ + { + "name": "x", + "url": "https://x.com/MiniSportsToken" + }, + { + "name": "telegram", + "url": "https://t.me/MiniSportsToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75856ea207CE7194E4E65c334BEc143D77701E4a/logo.png b/blockchains/smartchain/assets/0x75856ea207CE7194E4E65c334BEc143D77701E4a/logo.png new file mode 100644 index 00000000..74a9aae6 Binary files /dev/null and b/blockchains/smartchain/assets/0x75856ea207CE7194E4E65c334BEc143D77701E4a/logo.png differ diff --git a/blockchains/smartchain/assets/0x758d08864fB6cCE3062667225ca10b8F00496cc2/info.json b/blockchains/smartchain/assets/0x758d08864fB6cCE3062667225ca10b8F00496cc2/info.json new file mode 100644 index 00000000..2e856c5e --- /dev/null +++ b/blockchains/smartchain/assets/0x758d08864fB6cCE3062667225ca10b8F00496cc2/info.json @@ -0,0 +1,49 @@ +{ + "name": "NAOS Finance", + "website": "https://naos.finance/", + "description": "A DeFi lending protocol allowing lenders and SME borrowers to facilitate permissionless and borderless loaning/borrowing transactions", + "explorer": "https://bscscan.com/token/0x758d08864fb6cce3062667225ca10b8f00496cc2", + "type": "BEP20", + "symbol": "NAOS", + "decimals": 18, + "status": "active", + "id": "0x758d08864fB6cCE3062667225ca10b8F00496cc2", + "links": [ + { + "name": "x", + "url": "https://x.com/naos_finance" + }, + { + "name": "github", + "url": "https://github.com/NAOS-Finance" + }, + { + "name": "telegram", + "url": "https://t.me/naos_finance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/rRaPwCVTaA" + }, + { + "name": "medium", + "url": "https://medium.com/naos-finance" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCPu4TKw6uQaKFuXAUtzdtMg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/naos-finance/" + }, + { + "name": "docs", + "url": "https://naosfinance.gitbook.io/naos-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/naos-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x758d08864fB6cCE3062667225ca10b8F00496cc2/logo.png b/blockchains/smartchain/assets/0x758d08864fB6cCE3062667225ca10b8F00496cc2/logo.png new file mode 100644 index 00000000..1a5ed5ba Binary files /dev/null and b/blockchains/smartchain/assets/0x758d08864fB6cCE3062667225ca10b8F00496cc2/logo.png differ diff --git a/blockchains/smartchain/assets/0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB/info.json b/blockchains/smartchain/assets/0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB/info.json new file mode 100644 index 00000000..3988a173 --- /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 00000000..e543ce6e --- /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 00000000..58564c02 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 00000000..51b42748 --- /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 00000000..3491ae8f 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 new file mode 100644 index 00000000..cd1f6b7c --- /dev/null +++ b/blockchains/smartchain/assets/0x75aFA9915B2210Cd6329E820af0365e932bC1dd5/info.json @@ -0,0 +1,25 @@ +{ + "name": "Smurfs INU", + "type": "BEP20", + "symbol": "SMURF", + "decimals": 9, + "website": "https://smurfsinu.com", + "description": "SmurfsINU is designed to create a complex ecosystem in which DeFi and Metaverse are integrated together. Crypto users will access all DeFi & Metaverse services quickly, cheaply and effectively with only SmurfsINU platforms. For this, we are building the SmurfsVerse world and the SmurfINU DexWallet application. In addition, SmurfsINU is making special preparations for FIFA WorldCup Qatar 2022 and aims to be the mascot of the tournament.", + "explorer": "https://bscscan.com/token/0x75afa9915b2210cd6329e820af0365e932bc1dd5", + "status": "active", + "id": "0x75aFA9915B2210Cd6329E820af0365e932bC1dd5", + "links": [ + { + "name": "x", + "url": "https://x.com/smurfsinu_" + }, + { + "name": "telegram", + "url": "https://t.me/smurfsinu" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75aFA9915B2210Cd6329E820af0365e932bC1dd5/logo.png b/blockchains/smartchain/assets/0x75aFA9915B2210Cd6329E820af0365e932bC1dd5/logo.png new file mode 100644 index 00000000..7d5d7d9f Binary files /dev/null and b/blockchains/smartchain/assets/0x75aFA9915B2210Cd6329E820af0365e932bC1dd5/logo.png differ diff --git a/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/info.json b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/info.json new file mode 100644 index 00000000..87b68f19 --- /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 00000000..828b3695 Binary files /dev/null and b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/logo.png differ diff --git a/blockchains/smartchain/assets/0x75cc1fa47790b1D191061cC7d631Cbe65129AABC/info.json b/blockchains/smartchain/assets/0x75cc1fa47790b1D191061cC7d631Cbe65129AABC/info.json new file mode 100644 index 00000000..419749c2 --- /dev/null +++ b/blockchains/smartchain/assets/0x75cc1fa47790b1D191061cC7d631Cbe65129AABC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Doge DeFi", + "website": "https://www.dogedf.com/", + "explorer": "https://bscscan.com/token/0x75cc1fa47790b1D191061cC7d631Cbe65129AABC", + "description": "Decentralized financial service system. It is expected to provide the most powerful platform for decentralized trading and borrowing ", + "type": "BEP20", + "symbol": "DogeDF", + "decimals": 9, + "status": "active", + "id": "0x75cc1fa47790b1D191061cC7d631Cbe65129AABC" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75cc1fa47790b1D191061cC7d631Cbe65129AABC/logo.png b/blockchains/smartchain/assets/0x75cc1fa47790b1D191061cC7d631Cbe65129AABC/logo.png new file mode 100644 index 00000000..b81c5327 Binary files /dev/null and b/blockchains/smartchain/assets/0x75cc1fa47790b1D191061cC7d631Cbe65129AABC/logo.png differ diff --git a/blockchains/smartchain/assets/0x75dffAf163D67591fDCa3907a50655dB3a5516Ed/info.json b/blockchains/smartchain/assets/0x75dffAf163D67591fDCa3907a50655dB3a5516Ed/info.json new file mode 100644 index 00000000..20cfe052 --- /dev/null +++ b/blockchains/smartchain/assets/0x75dffAf163D67591fDCa3907a50655dB3a5516Ed/info.json @@ -0,0 +1,11 @@ +{ + "name": "Glitchy Token", + "website": "https://glitchy.wtf", + "description": "TODO", + "explorer": "https://bscscan.com/token/0x75dffAf163D67591fDCa3907a50655dB3a5516Ed", + "type": "BEP20", + "symbol": "Glitchy", + "decimals": 18, + "status": "active", + "id": "0x75dffAf163D67591fDCa3907a50655dB3a5516Ed" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75dffAf163D67591fDCa3907a50655dB3a5516Ed/logo.png b/blockchains/smartchain/assets/0x75dffAf163D67591fDCa3907a50655dB3a5516Ed/logo.png new file mode 100644 index 00000000..cf0d17e7 Binary files /dev/null and b/blockchains/smartchain/assets/0x75dffAf163D67591fDCa3907a50655dB3a5516Ed/logo.png differ diff --git a/blockchains/smartchain/assets/0x75e3CF3DC6748ff6c92FE77646bE7d2fdFdFA623/info.json b/blockchains/smartchain/assets/0x75e3CF3DC6748ff6c92FE77646bE7d2fdFdFA623/info.json new file mode 100644 index 00000000..f534f622 --- /dev/null +++ b/blockchains/smartchain/assets/0x75e3CF3DC6748ff6c92FE77646bE7d2fdFdFA623/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafePanda", + "website": "https://safepanda.net/", + "description": "Frictionless Yield & Liquidity Generation Token, Panda & Environmental Charity focused that rewards our community & our token holders.", + "explorer": "https://bscscan.com/token/0x75e3cf3dc6748ff6c92fe77646be7d2fdfdfa623", + "type": "BEP20", + "symbol": "SPND", + "decimals": 9, + "status": "active", + "id": "0x75e3CF3DC6748ff6c92FE77646bE7d2fdFdFA623" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75e3CF3DC6748ff6c92FE77646bE7d2fdFdFA623/logo.png b/blockchains/smartchain/assets/0x75e3CF3DC6748ff6c92FE77646bE7d2fdFdFA623/logo.png new file mode 100644 index 00000000..2340e404 Binary files /dev/null and b/blockchains/smartchain/assets/0x75e3CF3DC6748ff6c92FE77646bE7d2fdFdFA623/logo.png differ diff --git a/blockchains/smartchain/assets/0x75f53011f6D51C60e6DCbf54A8B1bCB54f07F0C9/info.json b/blockchains/smartchain/assets/0x75f53011f6D51C60e6DCbf54A8B1bCB54f07F0C9/info.json new file mode 100644 index 00000000..e6711657 --- /dev/null +++ b/blockchains/smartchain/assets/0x75f53011f6D51C60e6DCbf54A8B1bCB54f07F0C9/info.json @@ -0,0 +1,33 @@ +{ + "name": "GLMS Token", + "website": "https://www.glimpsenft.com/", + "description": "GLMS is the native token of the Glimpse social media application.", + "explorer": "https://bscscan.com/token/0x75f53011f6D51C60e6DCbf54A8B1bCB54f07F0C9", + "type": "BEP20", + "symbol": "GLMS", + "decimals": 18, + "status": "active", + "id": "0x75f53011f6D51C60e6DCbf54A8B1bCB54f07F0C9", + "links": [ + { + "name": "telegram", + "url": "https://t.me/glimpsetoken" + }, + { + "name": "x", + "url": "https://x.com/glimpse_nft" + }, + { + "name": "medium", + "url": "https://medium.com/@glimpsenft" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/glimpse/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCaHAkMglUoB9BhGOUBztgAQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75f53011f6D51C60e6DCbf54A8B1bCB54f07F0C9/logo.png b/blockchains/smartchain/assets/0x75f53011f6D51C60e6DCbf54A8B1bCB54f07F0C9/logo.png new file mode 100644 index 00000000..1ee994b7 Binary files /dev/null and b/blockchains/smartchain/assets/0x75f53011f6D51C60e6DCbf54A8B1bCB54f07F0C9/logo.png differ diff --git a/blockchains/smartchain/assets/0x762539b45A1dCcE3D36d080F74d1AED37844b878/info.json b/blockchains/smartchain/assets/0x762539b45A1dCcE3D36d080F74d1AED37844b878/info.json new file mode 100644 index 00000000..185ef570 --- /dev/null +++ b/blockchains/smartchain/assets/0x762539b45A1dCcE3D36d080F74d1AED37844b878/info.json @@ -0,0 +1,33 @@ +{ + "name": "LINA", + "website": "https://linear.finance", + "description": "Linear Finance is a cross-chain compatible, decentralized delta-one asset protocol to cost-effectively and instantly create, manage, and trade synthetic assets with unlimited liquidity", + "explorer": "https://bscscan.com/token/0x762539b45a1dcce3d36d080f74d1aed37844b878", + "type": "BEP20", + "symbol": "LINA", + "decimals": 18, + "status": "active", + "id": "0x762539b45A1dCcE3D36d080F74d1AED37844b878", + "links": [ + { + "name": "github", + "url": "https://github.com/Linear-finance/linear" + }, + { + "name": "x", + "url": "https://x.com/LinearFinance" + }, + { + "name": "telegram", + "url": "https://t.me/linearfinanceofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linear/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/linear-bsc/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x762539b45A1dCcE3D36d080F74d1AED37844b878/logo.png b/blockchains/smartchain/assets/0x762539b45A1dCcE3D36d080F74d1AED37844b878/logo.png new file mode 100644 index 00000000..c08b923c Binary files /dev/null and b/blockchains/smartchain/assets/0x762539b45A1dCcE3D36d080F74d1AED37844b878/logo.png differ diff --git a/blockchains/smartchain/assets/0x762a68697D7c8A0078Bd1d79BD50d0F2ef8A8AaF/info.json b/blockchains/smartchain/assets/0x762a68697D7c8A0078Bd1d79BD50d0F2ef8A8AaF/info.json new file mode 100644 index 00000000..89ff7371 --- /dev/null +++ b/blockchains/smartchain/assets/0x762a68697D7c8A0078Bd1d79BD50d0F2ef8A8AaF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sharpei ", + "type": "BEP20", + "symbol": "SHAB", + "decimals": 18, + "website": "https://sharpei.network/", + "description": "SHAB(Sharpei) was founded by Doge army and SHIB arm etc. SHAB community is decentralized. Creators of SHAB expect that SHAB community take power autonomously.The total supply of SHAB is 1,000,000,000,000,000, with no pre-sale, no team reservation. The private key has been threw away thoroughly. SHAB can be swapped in Pancakeswap of Binance ecosystem.", + "explorer": "https://bscscan.com/token/0x762a68697D7c8A0078Bd1d79BD50d0F2ef8A8AaF", + "status": "active", + "id": "0x762a68697D7c8A0078Bd1d79BD50d0F2ef8A8AaF" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x762a68697D7c8A0078Bd1d79BD50d0F2ef8A8AaF/logo.png b/blockchains/smartchain/assets/0x762a68697D7c8A0078Bd1d79BD50d0F2ef8A8AaF/logo.png new file mode 100644 index 00000000..2b208157 Binary files /dev/null and b/blockchains/smartchain/assets/0x762a68697D7c8A0078Bd1d79BD50d0F2ef8A8AaF/logo.png differ diff --git a/blockchains/smartchain/assets/0x7636244Bab612264e1B2dFd4bA6E26d0311b1Eb7/info.json b/blockchains/smartchain/assets/0x7636244Bab612264e1B2dFd4bA6E26d0311b1Eb7/info.json new file mode 100644 index 00000000..8328789f --- /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 00000000..0ebda653 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 new file mode 100644 index 00000000..55fd9964 --- /dev/null +++ b/blockchains/smartchain/assets/0x763ACA17f03C221d16Ba9191A66F75B78a403BCB/info.json @@ -0,0 +1,25 @@ +{ + "name": "Axienomics", + "website": "https://axintoken.com", + "description": "Axienomics is the first rebase token which rewards you with AxieInfinity (AXS)", + "explorer": "https://bscscan.com/token/0x763ACA17f03C221d16Ba9191A66F75B78a403BCB", + "type": "BEP20", + "symbol": "AXIN", + "decimals": 4, + "status": "active", + "id": "0x763ACA17f03C221d16Ba9191A66F75B78a403BCB", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/axienomics/" + }, + { + "name": "x", + "url": "https://x.com/axienomics" + }, + { + "name": "telegram", + "url": "https://t.me/AxienomicsOfficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x763ACA17f03C221d16Ba9191A66F75B78a403BCB/logo.png b/blockchains/smartchain/assets/0x763ACA17f03C221d16Ba9191A66F75B78a403BCB/logo.png new file mode 100644 index 00000000..9688d2f3 Binary files /dev/null and b/blockchains/smartchain/assets/0x763ACA17f03C221d16Ba9191A66F75B78a403BCB/logo.png differ diff --git a/blockchains/smartchain/assets/0x7643F0C207172497810ba6b76C5f3924d4ee7569/info.json b/blockchains/smartchain/assets/0x7643F0C207172497810ba6b76C5f3924d4ee7569/info.json new file mode 100644 index 00000000..9347c5af --- /dev/null +++ b/blockchains/smartchain/assets/0x7643F0C207172497810ba6b76C5f3924d4ee7569/info.json @@ -0,0 +1,11 @@ +{ + "name": "What Do You Meme Token", + "type": "BEP20", + "symbol": "WDYMEME", + "decimals": 18, + "website": "https://whatdoyoumemetoken.com/", + "description": "Whatdoyoumemetoken is taking a stab at all these bullshit tokens in the BEP20 Smart Chain we’ve seen it from the beginning and we are here to bring you a no bullshit token. Guaranteed.", + "explorer": "https://bscscan.com/token/0x7643F0C207172497810ba6b76C5f3924d4ee7569", + "status": "active", + "id": "0x7643F0C207172497810ba6b76C5f3924d4ee7569" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7643F0C207172497810ba6b76C5f3924d4ee7569/logo.png b/blockchains/smartchain/assets/0x7643F0C207172497810ba6b76C5f3924d4ee7569/logo.png new file mode 100644 index 00000000..a8cb2818 Binary files /dev/null and b/blockchains/smartchain/assets/0x7643F0C207172497810ba6b76C5f3924d4ee7569/logo.png differ diff --git a/blockchains/smartchain/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/info.json b/blockchains/smartchain/assets/0x766b0CD6ED6D90B5d49d2c36a3761E9728501BA9/info.json new file mode 100644 index 00000000..66a776fe --- /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 00000000..a49ae723 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 new file mode 100644 index 00000000..956e68ab --- /dev/null +++ b/blockchains/smartchain/assets/0x768d221E81524De52841AeD976370b2e4F990416/info.json @@ -0,0 +1,21 @@ +{ + "name": "Moon Maker Protocol", + "symbol": "MMP", + "type": "BEP20", + "decimals": 18, + "description": "Moon Maker Protocol is a DeFi launchpad project, which assist a novel DeFi token launching their to community.", + "website": "https://moonmakerprotocol.com", + "explorer": "https://bscscan.com/token/0x768d221E81524De52841AeD976370b2e4F990416", + "status": "active", + "id": "0x768d221E81524De52841AeD976370b2e4F990416", + "links": [ + { + "name": "x", + "url": "https://x.com/Moon Maker Protocol (MMP)" + }, + { + "name": "telegram", + "url": "https://t.me/moonmooncash" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x768d221E81524De52841AeD976370b2e4F990416/logo.png b/blockchains/smartchain/assets/0x768d221E81524De52841AeD976370b2e4F990416/logo.png new file mode 100644 index 00000000..d6b11c8b Binary files /dev/null and b/blockchains/smartchain/assets/0x768d221E81524De52841AeD976370b2e4F990416/logo.png differ diff --git a/blockchains/smartchain/assets/0x76A797A59Ba2C17726896976B7B3747BfD1d220f/info.json b/blockchains/smartchain/assets/0x76A797A59Ba2C17726896976B7B3747BfD1d220f/info.json new file mode 100644 index 00000000..a362d573 --- /dev/null +++ b/blockchains/smartchain/assets/0x76A797A59Ba2C17726896976B7B3747BfD1d220f/info.json @@ -0,0 +1,28 @@ +{ + "name": "Wrapped TON Coin", + "type": "BEP20", + "symbol": "TONCOIN", + "decimals": 9, + "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://bscscan.com/token/0x76A797A59Ba2C17726896976B7B3747BfD1d220f", + "status": "active", + "id": "0x76A797A59Ba2C17726896976B7B3747BfD1d220f", + "links": [ + { + "name": "github", + "url": "https://github.com/newton-blockchain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/toncoin/" + }, + { + "name": "telegram", + "url": "https://t.me/tonblockchain" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x76A797A59Ba2C17726896976B7B3747BfD1d220f/logo.png b/blockchains/smartchain/assets/0x76A797A59Ba2C17726896976B7B3747BfD1d220f/logo.png new file mode 100644 index 00000000..9ef1d563 Binary files /dev/null and b/blockchains/smartchain/assets/0x76A797A59Ba2C17726896976B7B3747BfD1d220f/logo.png differ diff --git a/blockchains/smartchain/assets/0x76B560b628F74BF192bE09F0449abef8e456BE79/info.json b/blockchains/smartchain/assets/0x76B560b628F74BF192bE09F0449abef8e456BE79/info.json new file mode 100644 index 00000000..5a2d584a --- /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 00000000..ae9f0c4e 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 new file mode 100644 index 00000000..a715335d --- /dev/null +++ b/blockchains/smartchain/assets/0x76E08e1c693D42551dd6ba7C2A659F74ff5Ba261/info.json @@ -0,0 +1,37 @@ +{ + "name": "Shakita Inu", + "website": "https://www.shakitainu.com/", + "description": "SHAK ($Shak) is a fun, community-focused cryptocurrency with a game in development and unique tokenomics to fuel it’s growth.", + "explorer": "https://bscscan.com/token/0x76e08e1c693d42551dd6ba7c2a659f74ff5ba261", + "type": "BEP20", + "symbol": "Shak", + "decimals": 18, + "status": "active", + "id": "0x76E08e1c693D42551dd6ba7C2A659F74ff5Ba261", + "links": [ + { + "name": "x", + "url": "https://x.com/ShakitaInu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shakita-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shakita-inu" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ShakitaInu/" + }, + { + "name": "telegram", + "url": "https://t.me/shakinu" + }, + { + "name": "telegram_news", + "url": "https://t.me/shakita_inu" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x76E08e1c693D42551dd6ba7C2A659F74ff5Ba261/logo.png b/blockchains/smartchain/assets/0x76E08e1c693D42551dd6ba7C2A659F74ff5Ba261/logo.png new file mode 100644 index 00000000..cdd8b53f Binary files /dev/null and b/blockchains/smartchain/assets/0x76E08e1c693D42551dd6ba7C2A659F74ff5Ba261/logo.png differ diff --git a/blockchains/smartchain/assets/0x76E39171Cb665a35981e744e2CEB7012F76caEAc/info.json b/blockchains/smartchain/assets/0x76E39171Cb665a35981e744e2CEB7012F76caEAc/info.json new file mode 100644 index 00000000..3a857b7e --- /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 00000000..3997bb79 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 new file mode 100644 index 00000000..cb8e9135 --- /dev/null +++ b/blockchains/smartchain/assets/0x76F34cd142ca4a5ea2E197ebffbF5234A1c29268/info.json @@ -0,0 +1,49 @@ +{ + "name": "Titan War", + "type": "BEP20", + "symbol": "TITAN", + "decimals": 8, + "website": "https://www.titanwar.io/", + "description": "A Decentralized Gaming Play to Earn Token Based On Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x76F34cd142ca4a5ea2E197ebffbF5234A1c29268", + "status": "active", + "id": "0x76F34cd142ca4a5ea2E197ebffbF5234A1c29268", + "links": [ + { + "name": "x", + "url": "https://x.com/TitanWarNFT" + }, + { + "name": "github", + "url": "https://github.com/TitanWarNFT" + }, + { + "name": "telegram", + "url": "https://t.me/TitanWarNFT" + }, + { + "name": "telegram_news", + "url": "https://t.me/TitanWarAnn" + }, + { + "name": "facebook", + "url": "https://facebook.com/TitanWarNFT" + }, + { + "name": "medium", + "url": "https://medium.com/@titanwarnft" + }, + { + "name": "discord", + "url": "https://discord.com/invite/YkrtxtF4xP" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1xTNlhRHj2DrA-pS05hmEn_p1_YgXSUfj/view" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCyT8GKH09kifnkEx2_5MaBg" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x76F34cd142ca4a5ea2E197ebffbF5234A1c29268/logo.png b/blockchains/smartchain/assets/0x76F34cd142ca4a5ea2E197ebffbF5234A1c29268/logo.png new file mode 100644 index 00000000..0872ccb8 Binary files /dev/null and b/blockchains/smartchain/assets/0x76F34cd142ca4a5ea2E197ebffbF5234A1c29268/logo.png differ diff --git a/blockchains/smartchain/assets/0x76F6cd75cE81E88916f8D933ab76efE18cEd6ad3/info.json b/blockchains/smartchain/assets/0x76F6cd75cE81E88916f8D933ab76efE18cEd6ad3/info.json new file mode 100644 index 00000000..b162acc7 --- /dev/null +++ b/blockchains/smartchain/assets/0x76F6cd75cE81E88916f8D933ab76efE18cEd6ad3/info.json @@ -0,0 +1,21 @@ +{ + "name": "NFT Global", + "type": "BEP20", + "symbol": "NFTG", + "decimals": 18, + "website": "https://nftglobal.space", + "description": "NFT Global is a revolutionary NFT marketplace for ambitious artists, collectors, and traders. Built on the Binance network, we are making NFTs more available and accessible.", + "explorer": "https://bscscan.com/token/0x76F6cd75cE81E88916f8D933ab76efE18cEd6ad3", + "status": "active", + "id": "0x76F6cd75cE81E88916f8D933ab76efE18cEd6ad3", + "links": [ + { + "name": "x", + "url": "https://x.com/NFT_Globall" + }, + { + "name": "telegram", + "url": "https://t.me/NFT_Globall" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x76F6cd75cE81E88916f8D933ab76efE18cEd6ad3/logo.png b/blockchains/smartchain/assets/0x76F6cd75cE81E88916f8D933ab76efE18cEd6ad3/logo.png new file mode 100644 index 00000000..a5c26376 Binary files /dev/null and b/blockchains/smartchain/assets/0x76F6cd75cE81E88916f8D933ab76efE18cEd6ad3/logo.png differ diff --git a/blockchains/smartchain/assets/0x76aECB353AbF596BD61EE6BDb07d70787DeC4FD6/info.json b/blockchains/smartchain/assets/0x76aECB353AbF596BD61EE6BDb07d70787DeC4FD6/info.json new file mode 100644 index 00000000..33238df4 --- /dev/null +++ b/blockchains/smartchain/assets/0x76aECB353AbF596BD61EE6BDb07d70787DeC4FD6/info.json @@ -0,0 +1,44 @@ +{ + "name": "CURE Token", + "website": "https://www.curetoken.net/", + "description": "$CURE is the first deflationary crypto token built around doing good. By design, this community powered token has exponential price growth benefits for both holders and charities.", + "explorer": "https://bscscan.com/token/0x76aECB353AbF596BD61EE6BDb07d70787DeC4FD6", + "type": "BEP20", + "symbol": "CURE", + "decimals": 9, + "status": "active", + "id": "0x76aECB353AbF596BD61EE6BDb07d70787DeC4FD6", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/cure_token" + }, + { + "name": "telegram", + "url": "https://t.me/CureTokenV2" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCXAxVIBP4pUMHVy_Zdo-82g" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cure-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cure-token-v2" + }, + { + "name": "whitepaper", + "url": "https://curetoken.net/whitepaper" + }, + { + "name": "facebook", + "url": "https://facebook.com/curetoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x76aECB353AbF596BD61EE6BDb07d70787DeC4FD6/logo.png b/blockchains/smartchain/assets/0x76aECB353AbF596BD61EE6BDb07d70787DeC4FD6/logo.png new file mode 100644 index 00000000..be6aebb1 Binary files /dev/null and b/blockchains/smartchain/assets/0x76aECB353AbF596BD61EE6BDb07d70787DeC4FD6/logo.png differ diff --git a/blockchains/smartchain/assets/0x76eDccAfc368752D2bEcC377c9bF834427aa6693/info.json b/blockchains/smartchain/assets/0x76eDccAfc368752D2bEcC377c9bF834427aa6693/info.json new file mode 100644 index 00000000..291fe8df --- /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 new file mode 100644 index 00000000..0c5a256a --- /dev/null +++ b/blockchains/smartchain/assets/0x7700Edc3DBb30cBB7603212E061c804220c3cA54/info.json @@ -0,0 +1,36 @@ +{ + "name": "Quantic", + "type": "BEP20", + "symbol": "Quantic", + "decimals": 18, + "website": "https://quantic.finance/ ", + "description": "Quantic is the next innovative DeFi release for the Binance Smart Chain that is designed to provide holders of $QUANTIC high passive returns just by holding the token, in which the smart contract does all the work for them.", + "explorer": "https://bscscan.com/token/0x7700Edc3DBb30cBB7603212E061c804220c3cA54", + "status": "active", + "id": "0x7700Edc3DBb30cBB7603212E061c804220c3cA54", + "links": [ + { + "name": "telegram", + "url": "https://t.me/quantic_finance" + }, + { + "name": "x", + "url": "https://x.com/Quantic_finance" + }, + { + "name": "discord", + "url": "https://discord.com/Rmh34XHuvy" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/quantic/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/quantic" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7700Edc3DBb30cBB7603212E061c804220c3cA54/logo.png b/blockchains/smartchain/assets/0x7700Edc3DBb30cBB7603212E061c804220c3cA54/logo.png new file mode 100644 index 00000000..77f2ee9f Binary files /dev/null and b/blockchains/smartchain/assets/0x7700Edc3DBb30cBB7603212E061c804220c3cA54/logo.png differ diff --git a/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/info.json b/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/info.json new file mode 100644 index 00000000..6abf21d2 --- /dev/null +++ b/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/info.json @@ -0,0 +1,25 @@ +{ + "name": "PulseAI", + "type": "BEP20", + "symbol": "Pulse", + "decimals": 9, + "website": "https://pulseai.app/", + "description": "PULSE AI uses artificial intelligence to analyze data, while blockchain provides a secure way to track transactions.", + "explorer": "https://bscscan.com/token/0x7704d0ead6f74e625d7371b079d8b2475bc852d4", + "status": "active", + "id": "0x7704d0EaD6F74E625d7371b079D8b2475bc852d4", + "links": [ + { + "name": "x", + "url": "https://x.com/pulseaiapp" + }, + { + "name": "telegram", + "url": "https://t.me/pulseaiapp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pulseai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/logo.png b/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/logo.png new file mode 100644 index 00000000..212f853d Binary files /dev/null and b/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/logo.png differ diff --git a/blockchains/smartchain/assets/0x77087aB5Df23cFB52449A188e80e9096201c2097/info.json b/blockchains/smartchain/assets/0x77087aB5Df23cFB52449A188e80e9096201c2097/info.json new file mode 100644 index 00000000..a77ef9a0 --- /dev/null +++ b/blockchains/smartchain/assets/0x77087aB5Df23cFB52449A188e80e9096201c2097/info.json @@ -0,0 +1,60 @@ +{ + "name": "HI", + "type": "BEP20", + "symbol": "HI", + "decimals": 18, + "website": "https://hi.com/", + "description": "hi is leveraging blockchain technology to build services that are community powered. Members of hi are the key stakeholders of this ecosystem and the business is committed to maximize membership value - not profits. Our first product is a digital wallet that provides members with the most seamless payment experience via social messengers. The HI is a membership token that powers the hi ecosystem.", + "explorer": "https://bscscan.com/token/0x77087aB5Df23cFB52449A188e80e9096201c2097", + "status": "active", + "id": "0x77087aB5Df23cFB52449A188e80e9096201c2097", + "links": [ + { + "name": "x", + "url": "https://x.com/hi_com_official" + }, + { + "name": "github", + "url": "https://github.com/HiChainGlobal/" + }, + { + "name": "telegram", + "url": "https://t.me/hi_official" + }, + { + "name": "blog", + "url": "https://resources.hi.com/news/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/hi-dollar" + }, + { + "name": "facebook", + "url": "https://facebook.com/hi.com.official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hi-dollar/" + }, + { + "name": "youtube", + "url": "https://youtube.com/hiofficialYT" + }, + { + "name": "reddit", + "url": "https://reddit.com/hi_official/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cfFQu8PQyw" + }, + { + "name": "whitepaper", + "url": "https://cms.hi.com/uploads/hi_Whitepaper_en_4da11a89e8.pdf" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x77087aB5Df23cFB52449A188e80e9096201c2097/logo.png b/blockchains/smartchain/assets/0x77087aB5Df23cFB52449A188e80e9096201c2097/logo.png new file mode 100644 index 00000000..8e592128 Binary files /dev/null and b/blockchains/smartchain/assets/0x77087aB5Df23cFB52449A188e80e9096201c2097/logo.png differ diff --git a/blockchains/smartchain/assets/0x773b532126b9F307665942b0fa4cDa0540CeDb71/info.json b/blockchains/smartchain/assets/0x773b532126b9F307665942b0fa4cDa0540CeDb71/info.json new file mode 100644 index 00000000..35c18c63 --- /dev/null +++ b/blockchains/smartchain/assets/0x773b532126b9F307665942b0fa4cDa0540CeDb71/info.json @@ -0,0 +1,25 @@ +{ + "name": "Booster", + "website": "https://boostertoken.com", + "description": "Booster is a Binance Smart Chain token with Auto LP and Static Rewards paid in 11 different tokens.", + "explorer": "https://bscscan.com/token/0x773b532126b9F307665942b0fa4cDa0540CeDb71", + "type": "BEP20", + "symbol": "BOOST", + "decimals": 18, + "status": "active", + "id": "0x773b532126b9F307665942b0fa4cDa0540CeDb71", + "links": [ + { + "name": "github", + "url": "https://github.com/BoosterToken" + }, + { + "name": "x", + "url": "https://x.com/BoosterToken" + }, + { + "name": "telegram", + "url": "https://t.me/BoosterToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x773b532126b9F307665942b0fa4cDa0540CeDb71/logo.png b/blockchains/smartchain/assets/0x773b532126b9F307665942b0fa4cDa0540CeDb71/logo.png new file mode 100644 index 00000000..50bfed96 Binary files /dev/null and b/blockchains/smartchain/assets/0x773b532126b9F307665942b0fa4cDa0540CeDb71/logo.png differ diff --git a/blockchains/smartchain/assets/0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5/info.json b/blockchains/smartchain/assets/0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5/info.json new file mode 100644 index 00000000..bc90fdf3 --- /dev/null +++ b/blockchains/smartchain/assets/0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5/info.json @@ -0,0 +1,28 @@ +{ + "name": "Ookeenga", + "website": "https://ookeenga.com/", + "description": "Ookeenga (OKG) is a 3D NFT gaming project which combines blockchain technology with breath-taking graphics, appealing world-building, and addictive gameplay to create a uniquely immersive play-to-earn experience developed by CROS Gamestudio and published by SPORES Network.", + "explorer": "https://bscscan.com/token/0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5", + "type": "BEP20", + "symbol": "OKG", + "decimals": 18, + "status": "active", + "id": "0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5", + "links": [ + { + "name": "x", + "url": "https://x.com/ookeenga" + }, + { + "name": "github", + "url": "https://github.com/crosgames" + }, + { + "name": "telegram", + "url": "https://t.me/ookeenga_global" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5/logo.png b/blockchains/smartchain/assets/0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5/logo.png new file mode 100644 index 00000000..eb1014fc Binary files /dev/null and b/blockchains/smartchain/assets/0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5/logo.png differ diff --git a/blockchains/smartchain/assets/0x77DFb1DaFC92c5Df29996f5528BA1829941cD3Bb/info.json b/blockchains/smartchain/assets/0x77DFb1DaFC92c5Df29996f5528BA1829941cD3Bb/info.json new file mode 100644 index 00000000..94d3544c --- /dev/null +++ b/blockchains/smartchain/assets/0x77DFb1DaFC92c5Df29996f5528BA1829941cD3Bb/info.json @@ -0,0 +1,22 @@ +{ + "name": "fyeth.finance", + "website": "https://fyeth.finance/", + "short_description": "Fyeth.finance is a peer-to-peer crypto-backed lending platform based in Europe.", + "description": "FYETH.FINANCE is a regulated financial institution licensed by the Estonian Financial Authority, wholly owned by the global fintech group Investment Evolution.", + "explorer": "https://bscscan.com/token/0x77dfb1dafc92c5df29996f5528ba1829941cd3bb", + "type": "BEP20", + "symbol": "yETH", + "decimals": 18, + "status": "active", + "id": "0x77DFb1DaFC92c5Df29996f5528BA1829941cD3Bb", + "links": [ + { + "name": "github", + "url": "https://github.com/RodionIyer/yETH" + }, + { + "name": "whitepaper", + "url": "https://fyeth.finance/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x77DFb1DaFC92c5Df29996f5528BA1829941cD3Bb/logo.png b/blockchains/smartchain/assets/0x77DFb1DaFC92c5Df29996f5528BA1829941cD3Bb/logo.png new file mode 100644 index 00000000..7bec9243 Binary files /dev/null and b/blockchains/smartchain/assets/0x77DFb1DaFC92c5Df29996f5528BA1829941cD3Bb/logo.png differ diff --git a/blockchains/smartchain/assets/0x77d547256A2cD95F32F67aE0313E450Ac200648d/info.json b/blockchains/smartchain/assets/0x77d547256A2cD95F32F67aE0313E450Ac200648d/info.json new file mode 100644 index 00000000..34394af7 --- /dev/null +++ b/blockchains/smartchain/assets/0x77d547256A2cD95F32F67aE0313E450Ac200648d/info.json @@ -0,0 +1,24 @@ +{ + "name": "S.S. Lazio Fan Token", + "type": "BEP20", + "symbol": "LAZIO", + "decimals": 8, + "website": "https://www.binance.com/en/fan-token/team-profile/lazio", + "description": "BEP-20 utility token for S.S. Lazio", + "explorer": "https://bscscan.com/token/0x77d547256A2cD95F32F67aE0313E450Ac200648d", + "status": "active", + "id": "0x77d547256A2cD95F32F67aE0313E450Ac200648d", + "links": [ + { + "name": "x", + "url": "https://x.com/OfficialSSLazio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/lazio-fan-token" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x77d547256A2cD95F32F67aE0313E450Ac200648d/logo.png b/blockchains/smartchain/assets/0x77d547256A2cD95F32F67aE0313E450Ac200648d/logo.png new file mode 100644 index 00000000..cdb3e573 Binary files /dev/null and b/blockchains/smartchain/assets/0x77d547256A2cD95F32F67aE0313E450Ac200648d/logo.png differ diff --git a/blockchains/smartchain/assets/0x77eB1bFf463b3a524b938902398eA5075073a252/info.json b/blockchains/smartchain/assets/0x77eB1bFf463b3a524b938902398eA5075073a252/info.json new file mode 100644 index 00000000..0e9f26bb --- /dev/null +++ b/blockchains/smartchain/assets/0x77eB1bFf463b3a524b938902398eA5075073a252/info.json @@ -0,0 +1,11 @@ +{ + "name": "Little Deer Token", + "type": "BEP20", + "symbol": "LDEER", + "decimals": 9, + "website": "https://littledeerbsc.com", + "description": "Little Deer is a 100% SAFU, Community-driven token with an active team that aims to be the future of Altcoins! Together with our hopes for Charity, we aim to revolutionize the BSC network through unique tokenomics and have a vibrant and rich community.", + "explorer": "https://bscscan.com/token/0x77eB1bFf463b3a524b938902398eA5075073a252", + "status": "active", + "id": "0x77eB1bFf463b3a524b938902398eA5075073a252" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x77eB1bFf463b3a524b938902398eA5075073a252/logo.png b/blockchains/smartchain/assets/0x77eB1bFf463b3a524b938902398eA5075073a252/logo.png new file mode 100644 index 00000000..054c7f74 Binary files /dev/null and b/blockchains/smartchain/assets/0x77eB1bFf463b3a524b938902398eA5075073a252/logo.png differ diff --git a/blockchains/smartchain/assets/0x780207B8C0Fdc32cF60E957415bFa1f2d4d9718c/info.json b/blockchains/smartchain/assets/0x780207B8C0Fdc32cF60E957415bFa1f2d4d9718c/info.json new file mode 100644 index 00000000..97e6688b --- /dev/null +++ b/blockchains/smartchain/assets/0x780207B8C0Fdc32cF60E957415bFa1f2d4d9718c/info.json @@ -0,0 +1,25 @@ +{ + "name": "Cashaa Token", + "type": "BEP20", + "symbol": "CAS", + "decimals": 18, + "website": "https://cashaa.com", + "description": "Cashaa is a global banking solution for the crypto industry. It’s the world’s first banking platform that enables the seamless transaction of both fiat and crypto from the one account dashboard.", + "explorer": "https://bscscan.com/token/0x780207B8C0Fdc32cF60E957415bFa1f2d4d9718c", + "status": "active", + "id": "0x780207B8C0Fdc32cF60E957415bFa1f2d4d9718c", + "links": [ + { + "name": "x", + "url": "https://x.com/yourcashaa" + }, + { + "name": "telegram", + "url": "https://t.me/cashaaltd" + }, + { + "name": "medium", + "url": "https://medium.com/cashaa/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x780207B8C0Fdc32cF60E957415bFa1f2d4d9718c/logo.png b/blockchains/smartchain/assets/0x780207B8C0Fdc32cF60E957415bFa1f2d4d9718c/logo.png new file mode 100644 index 00000000..8a85bbcd Binary files /dev/null and b/blockchains/smartchain/assets/0x780207B8C0Fdc32cF60E957415bFa1f2d4d9718c/logo.png differ diff --git a/blockchains/smartchain/assets/0x7819806b6eA4b5582c5aE3825a521b4067B5C7fE/info.json b/blockchains/smartchain/assets/0x7819806b6eA4b5582c5aE3825a521b4067B5C7fE/info.json new file mode 100644 index 00000000..9597e2cb --- /dev/null +++ b/blockchains/smartchain/assets/0x7819806b6eA4b5582c5aE3825a521b4067B5C7fE/info.json @@ -0,0 +1,11 @@ +{ + "name": "MAMADOGE", + "website": "https://www.mamadogecoin.com/", + "description": "MAMADOGE is the creator and birth mother of the #1 meme coin out there: DOGE Coin.", + "explorer": "https://bscscan.com/token/0x7819806b6eA4b5582c5aE3825a521b4067B5C7fE", + "type": "BEP20", + "symbol": "MAMADOGE", + "decimals": 18, + "status": "active", + "id": "0x7819806b6eA4b5582c5aE3825a521b4067B5C7fE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7819806b6eA4b5582c5aE3825a521b4067B5C7fE/logo.png b/blockchains/smartchain/assets/0x7819806b6eA4b5582c5aE3825a521b4067B5C7fE/logo.png new file mode 100644 index 00000000..894bab2d Binary files /dev/null and b/blockchains/smartchain/assets/0x7819806b6eA4b5582c5aE3825a521b4067B5C7fE/logo.png differ diff --git a/blockchains/smartchain/assets/0x784584933C2192Caa062E90d8140D94768CE62d8/info.json b/blockchains/smartchain/assets/0x784584933C2192Caa062E90d8140D94768CE62d8/info.json new file mode 100644 index 00000000..0e3d8e53 --- /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 00000000..3d67badd Binary files /dev/null and b/blockchains/smartchain/assets/0x784584933C2192Caa062E90d8140D94768CE62d8/logo.png differ diff --git a/blockchains/smartchain/assets/0x78473c046C43b40eBf162d597D07Df3Fd9584923/info.json b/blockchains/smartchain/assets/0x78473c046C43b40eBf162d597D07Df3Fd9584923/info.json new file mode 100644 index 00000000..b489a00c --- /dev/null +++ b/blockchains/smartchain/assets/0x78473c046C43b40eBf162d597D07Df3Fd9584923/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aku The Bodyguard", + "type": "BEP20", + "symbol": "AKU", + "decimals": 18, + "website": "https://akuthebodyguard.com/", + "description": "Aku is an ancient benevolent witch doctor. He is no longer a \"living\".", + "explorer": "https://bscscan.com/token/0x78473c046C43b40eBf162d597D07Df3Fd9584923", + "status": "active", + "id": "0x78473c046C43b40eBf162d597D07Df3Fd9584923" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x78473c046C43b40eBf162d597D07Df3Fd9584923/logo.png b/blockchains/smartchain/assets/0x78473c046C43b40eBf162d597D07Df3Fd9584923/logo.png new file mode 100644 index 00000000..5f8e9b7b Binary files /dev/null and b/blockchains/smartchain/assets/0x78473c046C43b40eBf162d597D07Df3Fd9584923/logo.png differ diff --git a/blockchains/smartchain/assets/0x7847bFfD0EB96C53a96aF526643E2546eFeC0828/info.json b/blockchains/smartchain/assets/0x7847bFfD0EB96C53a96aF526643E2546eFeC0828/info.json new file mode 100644 index 00000000..53bfa0be --- /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 00000000..56c9d672 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 new file mode 100644 index 00000000..63dfd9f4 --- /dev/null +++ b/blockchains/smartchain/assets/0x7859B01BbF675d67Da8cD128a50D155cd881B576/info.json @@ -0,0 +1,37 @@ +{ + "name": "Mars Ecosystem Token", + "website": "https://marsecosystem.com/", + "description": "Builds the central bank and reserve currency for DeFi.", + "explorer": "https://bscscan.com/token/0x7859B01BbF675d67Da8cD128a50D155cd881B576", + "type": "BEP20", + "symbol": "XMS", + "decimals": 18, + "status": "active", + "id": "0x7859B01BbF675d67Da8cD128a50D155cd881B576", + "links": [ + { + "name": "x", + "url": "https://x.com/MarsEcosystem" + }, + { + "name": "telegram", + "url": "https://t.me/mars_ecosystem" + }, + { + "name": "discord", + "url": "https://discord.com/invite/52TEnebg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mars-ecosystem-governance-token/" + }, + { + "name": "whitepaper", + "url": "https://docs.marsecosystem.com/" + }, + { + "name": "github", + "url": "https://github.com/marsecosystem" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7859B01BbF675d67Da8cD128a50D155cd881B576/logo.png b/blockchains/smartchain/assets/0x7859B01BbF675d67Da8cD128a50D155cd881B576/logo.png new file mode 100644 index 00000000..a06b2978 Binary files /dev/null and b/blockchains/smartchain/assets/0x7859B01BbF675d67Da8cD128a50D155cd881B576/logo.png differ diff --git a/blockchains/smartchain/assets/0x78650B139471520656b9E7aA7A5e9276814a38e9/info.json b/blockchains/smartchain/assets/0x78650B139471520656b9E7aA7A5e9276814a38e9/info.json new file mode 100644 index 00000000..117bbc0d --- /dev/null +++ b/blockchains/smartchain/assets/0x78650B139471520656b9E7aA7A5e9276814a38e9/info.json @@ -0,0 +1,30 @@ +{ + "name": "StandardBTCHashrateToken", + "website": "https://1-b.tc", + "description": "Bitcoin Standard Hashrate Token (BTCST) is a token collateralized by 0.1 TH/s of actual Bitcoin mining power standardized to an efficiency of 60 W/TH.", + "explorer": "https://bscscan.com/token/0x78650b139471520656b9e7aa7a5e9276814a38e9", + "research": "https://research.binance.com/en/projects/btcst", + "type": "BEP20", + "symbol": "BTCST", + "decimals": 17, + "status": "active", + "id": "0x78650B139471520656b9E7aA7A5e9276814a38e9", + "links": [ + { + "name": "x", + "url": "https://x.com/btcst2020" + }, + { + "name": "telegram", + "url": "https://t.me/BTCST_Community_EN" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/btc-standard-hashrate-token/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcoin-standard-hashrate-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x78650B139471520656b9E7aA7A5e9276814a38e9/logo.png b/blockchains/smartchain/assets/0x78650B139471520656b9E7aA7A5e9276814a38e9/logo.png new file mode 100644 index 00000000..6b713342 Binary files /dev/null and b/blockchains/smartchain/assets/0x78650B139471520656b9E7aA7A5e9276814a38e9/logo.png differ diff --git a/blockchains/smartchain/assets/0x7869044D36ea75975B793ca4312608cc3817895B/info.json b/blockchains/smartchain/assets/0x7869044D36ea75975B793ca4312608cc3817895B/info.json new file mode 100644 index 00000000..8fb40136 --- /dev/null +++ b/blockchains/smartchain/assets/0x7869044D36ea75975B793ca4312608cc3817895B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sensible Finance", + "type": "BEP20", + "symbol": "SENSI", + "decimals": 9, + "website": "https://sensible.finance", + "description": "The sensible project’s main aim is to let users create easy, fast and automatic yield farm portfolios and also to help with charity contributions to the people in need. This is done by smart contracts that take the user’s deposited funds and spread them across 10-15 yield farms. The yield is collected daily and sent to the user’s wallet.", + "explorer": "https://bscscan.com/token/0x7869044D36ea75975B793ca4312608cc3817895B", + "status": "active", + "id": "0x7869044D36ea75975B793ca4312608cc3817895B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7869044D36ea75975B793ca4312608cc3817895B/logo.png b/blockchains/smartchain/assets/0x7869044D36ea75975B793ca4312608cc3817895B/logo.png new file mode 100644 index 00000000..3407bc27 Binary files /dev/null and b/blockchains/smartchain/assets/0x7869044D36ea75975B793ca4312608cc3817895B/logo.png differ diff --git a/blockchains/smartchain/assets/0x7895B3DE4169635da889Ca842740748136Ac7B11/info.json b/blockchains/smartchain/assets/0x7895B3DE4169635da889Ca842740748136Ac7B11/info.json new file mode 100644 index 00000000..e4a3f07d --- /dev/null +++ b/blockchains/smartchain/assets/0x7895B3DE4169635da889Ca842740748136Ac7B11/info.json @@ -0,0 +1,11 @@ +{ + "name": "SUPER DOGE", + "website": "https://superdogebsc.com", + "description": "SUPER DOGE is DOGE Memes Token", + "explorer": "https://bscscan.com/token/0x7895B3DE4169635da889Ca842740748136Ac7B11", + "symbol": "SUPERDOGE", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x7895B3DE4169635da889Ca842740748136Ac7B11" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7895B3DE4169635da889Ca842740748136Ac7B11/logo.png b/blockchains/smartchain/assets/0x7895B3DE4169635da889Ca842740748136Ac7B11/logo.png new file mode 100644 index 00000000..4ab386ef Binary files /dev/null and b/blockchains/smartchain/assets/0x7895B3DE4169635da889Ca842740748136Ac7B11/logo.png differ diff --git a/blockchains/smartchain/assets/0x78A499a998Bdd5a84CF8b5aBe49100D82DE12f1C/info.json b/blockchains/smartchain/assets/0x78A499a998Bdd5a84CF8b5aBe49100D82DE12f1C/info.json new file mode 100644 index 00000000..671084fc --- /dev/null +++ b/blockchains/smartchain/assets/0x78A499a998Bdd5a84CF8b5aBe49100D82DE12f1C/info.json @@ -0,0 +1,25 @@ +{ + "name": "JOJO Token", + "website": "https://jojo.fun", + "description": "Decentralized Meme Coin Creates the BEST Metaverse on BSC, JOJO FUN METAVERSE = NFT + GameFi + SmartToy", + "explorer": "https://bscscan.com/token/0x78A499a998Bdd5a84CF8b5aBe49100D82DE12f1C", + "type": "BEP20", + "symbol": "JOJO", + "decimals": 9, + "status": "active", + "id": "0x78A499a998Bdd5a84CF8b5aBe49100D82DE12f1C", + "links": [ + { + "name": "telegram", + "url": "https://t.me/JOJO_Official" + }, + { + "name": "x", + "url": "https://x.com/JOJOMetaverse" + }, + { + "name": "blog", + "url": "https://jojometaverse.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x78A499a998Bdd5a84CF8b5aBe49100D82DE12f1C/logo.png b/blockchains/smartchain/assets/0x78A499a998Bdd5a84CF8b5aBe49100D82DE12f1C/logo.png new file mode 100644 index 00000000..aa5c1c4a Binary files /dev/null and b/blockchains/smartchain/assets/0x78A499a998Bdd5a84CF8b5aBe49100D82DE12f1C/logo.png differ diff --git a/blockchains/smartchain/assets/0x78C3AdE403438B37638304F9FbbFB1b76608c1BD/info.json b/blockchains/smartchain/assets/0x78C3AdE403438B37638304F9FbbFB1b76608c1BD/info.json new file mode 100644 index 00000000..5e1b8242 --- /dev/null +++ b/blockchains/smartchain/assets/0x78C3AdE403438B37638304F9FbbFB1b76608c1BD/info.json @@ -0,0 +1,21 @@ +{ + "name": "BinaHero", + "type": "BEP20", + "symbol": "HERO", + "decimals": 18, + "website": "https://binahero.com", + "description": "BinaHero is a decentralized NFT game that integrates collection, mining, market trading, and PVE. Players can play to earn in the game.", + "explorer": "https://bscscan.com/token/0x78C3AdE403438B37638304F9FbbFB1b76608c1BD", + "status": "active", + "id": "0x78C3AdE403438B37638304F9FbbFB1b76608c1BD", + "links": [ + { + "name": "x", + "url": "https://x.com/binahero" + }, + { + "name": "telegram", + "url": "https://t.me/BinaHero" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x78C3AdE403438B37638304F9FbbFB1b76608c1BD/logo.png b/blockchains/smartchain/assets/0x78C3AdE403438B37638304F9FbbFB1b76608c1BD/logo.png new file mode 100644 index 00000000..a5aa74a0 Binary files /dev/null and b/blockchains/smartchain/assets/0x78C3AdE403438B37638304F9FbbFB1b76608c1BD/logo.png differ diff --git a/blockchains/smartchain/assets/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3/info.json b/blockchains/smartchain/assets/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3/info.json new file mode 100644 index 00000000..0b399611 --- /dev/null +++ b/blockchains/smartchain/assets/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3/info.json @@ -0,0 +1,41 @@ +{ + "name": "ApolloX Token", + "type": "BEP20", + "symbol": "APX", + "decimals": 18, + "website": "https://www.apollox.com/en/APX", + "description": "APX is the native token of the ApolloX ecosystem, and ApolloX is a world class leading decentralized derivatives exchange.", + "explorer": "https://bscscan.com/token/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3", + "status": "active", + "id": "0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3", + "links": [ + { + "name": "reddit", + "url": "https://reddit.com/r/ApolloX_com" + }, + { + "name": "telegram", + "url": "https://t.me/apollox_com" + }, + { + "name": "facebook", + "url": "https://facebook.com/ApolloXcom" + }, + { + "name": "x", + "url": "https://x.com/ApolloX_com" + }, + { + "name": "blog", + "url": "https://apollox.zendesk.com/hc/en-us/categories/4408399479449" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/apollox" + } + ], + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3/logo.png b/blockchains/smartchain/assets/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3/logo.png new file mode 100644 index 00000000..e75f2037 Binary files /dev/null and b/blockchains/smartchain/assets/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3/logo.png differ diff --git a/blockchains/smartchain/assets/0x78aCc0B75fAbbac9FF8E01f221C13F50Ce6cDd63/info.json b/blockchains/smartchain/assets/0x78aCc0B75fAbbac9FF8E01f221C13F50Ce6cDd63/info.json new file mode 100644 index 00000000..b085038d --- /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 00000000..6488445b Binary files /dev/null and b/blockchains/smartchain/assets/0x78aCc0B75fAbbac9FF8E01f221C13F50Ce6cDd63/logo.png differ diff --git a/blockchains/smartchain/assets/0x78bc22a215C1eF8a2e41Fa1c39CD7BDC09bd5174/info.json b/blockchains/smartchain/assets/0x78bc22a215C1eF8a2e41Fa1c39CD7BDC09bd5174/info.json new file mode 100644 index 00000000..8452383a --- /dev/null +++ b/blockchains/smartchain/assets/0x78bc22a215C1eF8a2e41Fa1c39CD7BDC09bd5174/info.json @@ -0,0 +1,12 @@ +{ + "name": "Rocket Moon", + "website": "https://www.rocketmoon.org/", + "description": "An Autonomous Yield and deflationary token.", + "explorer": "https://bscscan.com/token/0x78bc22a215C1eF8a2e41Fa1c39CD7BDC09bd5174", + "research": "", + "type": "BEP20", + "symbol": "RMOON", + "decimals": 9, + "status": "active", + "id": "0x78bc22a215C1eF8a2e41Fa1c39CD7BDC09bd5174" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x78bc22a215C1eF8a2e41Fa1c39CD7BDC09bd5174/logo.png b/blockchains/smartchain/assets/0x78bc22a215C1eF8a2e41Fa1c39CD7BDC09bd5174/logo.png new file mode 100644 index 00000000..f6faa6bc Binary files /dev/null and b/blockchains/smartchain/assets/0x78bc22a215C1eF8a2e41Fa1c39CD7BDC09bd5174/logo.png differ diff --git a/blockchains/smartchain/assets/0x78c6E90aFa87E2C97cac1A07652Aa0998C6C9078/info.json b/blockchains/smartchain/assets/0x78c6E90aFa87E2C97cac1A07652Aa0998C6C9078/info.json new file mode 100644 index 00000000..b360b753 --- /dev/null +++ b/blockchains/smartchain/assets/0x78c6E90aFa87E2C97cac1A07652Aa0998C6C9078/info.json @@ -0,0 +1,29 @@ +{ + "name": "Hare Plus", + "type": "BEP20", + "symbol": "HARE PLUS", + "decimals": 18, + "website": "https://haretoken.finance/", + "description": "Hare is a new decentralized and community-centered cryptocurrency. Launched in June 2021 and its goal is to become one of the fastest-growing cryptocurrencies in the world", + "explorer": "https://bscscan.com/token/0x78c6E90aFa87E2C97cac1A07652Aa0998C6C9078", + "status": "active", + "id": "0x78c6E90aFa87E2C97cac1A07652Aa0998C6C9078", + "links": [ + { + "name": "x", + "url": "https://x.com/Hare_token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hare-plus/" + }, + { + "name": "telegram", + "url": "https://t.me/Hare_En" + } + ], + "tags": [ + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x78c6E90aFa87E2C97cac1A07652Aa0998C6C9078/logo.png b/blockchains/smartchain/assets/0x78c6E90aFa87E2C97cac1A07652Aa0998C6C9078/logo.png new file mode 100644 index 00000000..1def41bc Binary files /dev/null and b/blockchains/smartchain/assets/0x78c6E90aFa87E2C97cac1A07652Aa0998C6C9078/logo.png differ diff --git a/blockchains/smartchain/assets/0x78e1936f065Fd4082387622878C7d11c9f05ECF4/info.json b/blockchains/smartchain/assets/0x78e1936f065Fd4082387622878C7d11c9f05ECF4/info.json new file mode 100644 index 00000000..b236184d --- /dev/null +++ b/blockchains/smartchain/assets/0x78e1936f065Fd4082387622878C7d11c9f05ECF4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Jointer", + "type": "BEP20", + "symbol": "JNTR/b", + "decimals": 18, + "website": "https://jointer.io/", + "description": "-", + "explorer": "https://bscscan.com/token/0x78e1936f065Fd4082387622878C7d11c9f05ECF4", + "status": "active", + "id": "0x78e1936f065Fd4082387622878C7d11c9f05ECF4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x78e1936f065Fd4082387622878C7d11c9f05ECF4/logo.png b/blockchains/smartchain/assets/0x78e1936f065Fd4082387622878C7d11c9f05ECF4/logo.png new file mode 100644 index 00000000..a1c66a40 Binary files /dev/null and b/blockchains/smartchain/assets/0x78e1936f065Fd4082387622878C7d11c9f05ECF4/logo.png differ diff --git a/blockchains/smartchain/assets/0x790Be81C3cA0e53974bE2688cDb954732C9862e1/info.json b/blockchains/smartchain/assets/0x790Be81C3cA0e53974bE2688cDb954732C9862e1/info.json new file mode 100644 index 00000000..501b17b4 --- /dev/null +++ b/blockchains/smartchain/assets/0x790Be81C3cA0e53974bE2688cDb954732C9862e1/info.json @@ -0,0 +1,22 @@ +{ + "name": "CafeSwap Token", + "website": "https://cafeswap.finance/", + "description": "CafeSwap is a revolutionary yield farming and staking platform on Binance Smart Chain", + "research": "https://docs.cafeswap.finance/", + "explorer": "https://bscscan.com/token/0x790Be81C3cA0e53974bE2688cDb954732C9862e1", + "type": "BEP20", + "symbol": "BREW", + "decimals": 18, + "status": "active", + "id": "0x790Be81C3cA0e53974bE2688cDb954732C9862e1", + "links": [ + { + "name": "x", + "url": "https://x.com/cafeswapfinance" + }, + { + "name": "telegram", + "url": "https://t.me/CafeSwap" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x790Be81C3cA0e53974bE2688cDb954732C9862e1/logo.png b/blockchains/smartchain/assets/0x790Be81C3cA0e53974bE2688cDb954732C9862e1/logo.png new file mode 100644 index 00000000..e29d79f0 Binary files /dev/null and b/blockchains/smartchain/assets/0x790Be81C3cA0e53974bE2688cDb954732C9862e1/logo.png differ diff --git a/blockchains/smartchain/assets/0x7917C830ECA3360e24e09fD422310A734AC9D2c9/info.json b/blockchains/smartchain/assets/0x7917C830ECA3360e24e09fD422310A734AC9D2c9/info.json new file mode 100644 index 00000000..04ff454b --- /dev/null +++ b/blockchains/smartchain/assets/0x7917C830ECA3360e24e09fD422310A734AC9D2c9/info.json @@ -0,0 +1,48 @@ +{ + "name": "Head Football", + "type": "BEP20", + "symbol": "HEAD", + "decimals": 9, + "website": "https://www.headfootball.io/", + "description": "Head Football is a new crypto currency that allows you to enjoy the game and also make money by duelling other opponents. Please also check our previous PR fee already paid https://github.com/trustwallet/assets/pull/17660", + "explorer": "https://bscscan.com/token/0x7917c830eca3360e24e09fd422310a734ac9d2c9", + "status": "active", + "id": "0x7917C830ECA3360e24e09fD422310A734AC9D2c9", + "links": [ + { + "name": "x", + "url": "https://x.com/headfootball_io" + }, + { + "name": "github", + "url": "https://github.com/headfootball" + }, + { + "name": "telegram", + "url": "https://t.me/headfootball" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/HeadFootballOfficial" + }, + { + "name": "whitepaper", + "url": "https://www.headfootball.io/public/#whitepaper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/head-football/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC6-oBPHDxjx-262QWbWa8xg" + }, + { + "name": "source_code", + "url": "https://github.com/HeadFootball/HeadFootball" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7917C830ECA3360e24e09fD422310A734AC9D2c9/logo.png b/blockchains/smartchain/assets/0x7917C830ECA3360e24e09fD422310A734AC9D2c9/logo.png new file mode 100644 index 00000000..f1754a14 Binary files /dev/null and b/blockchains/smartchain/assets/0x7917C830ECA3360e24e09fD422310A734AC9D2c9/logo.png differ diff --git a/blockchains/smartchain/assets/0x793cEa0F1003411396b3A81A77d92Fe37015E7A9/info.json b/blockchains/smartchain/assets/0x793cEa0F1003411396b3A81A77d92Fe37015E7A9/info.json new file mode 100644 index 00000000..1a1fd25a --- /dev/null +++ b/blockchains/smartchain/assets/0x793cEa0F1003411396b3A81A77d92Fe37015E7A9/info.json @@ -0,0 +1,37 @@ +{ + "name": "Carbon Coin - CNES", + "type": "BEP20", + "symbol": "CBC", + "decimals": 18, + "website": "https://carbon-netrual.global/", + "description": "$CBC (Carbon Coin) is released on the basis of BINANCE SMART CHAIN platform and fully complies with BEP20* standard.", + "explorer": "https://bscscan.com/token/0x793cEa0F1003411396b3A81A77d92Fe37015E7A9", + "status": "active", + "id": "0x793cEa0F1003411396b3A81A77d92Fe37015E7A9", + "links": [ + { + "name": "whitepaper", + "url": "https://carbon-netrual.global/doc/CNES_GreenPaper_1.0.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/CNESCommunity" + }, + { + "name": "x", + "url": "https://x.com/cnesofficial" + }, + { + "name": "medium", + "url": "https://come-cnes.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/carbon-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/carbon-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x793cEa0F1003411396b3A81A77d92Fe37015E7A9/logo.png b/blockchains/smartchain/assets/0x793cEa0F1003411396b3A81A77d92Fe37015E7A9/logo.png new file mode 100644 index 00000000..e11d7057 Binary files /dev/null and b/blockchains/smartchain/assets/0x793cEa0F1003411396b3A81A77d92Fe37015E7A9/logo.png differ diff --git a/blockchains/smartchain/assets/0x795D2710E383F33fbEbe980a155b29757b6703f3/info.json b/blockchains/smartchain/assets/0x795D2710E383F33fbEbe980a155b29757b6703f3/info.json new file mode 100644 index 00000000..bbf61681 --- /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 00000000..0a8c14ba Binary files /dev/null and b/blockchains/smartchain/assets/0x795D2710E383F33fbEbe980a155b29757b6703f3/logo.png differ diff --git a/blockchains/smartchain/assets/0x795D38678D5a3f7Ad80DDED5e27644e9c0352904/info.json b/blockchains/smartchain/assets/0x795D38678D5a3f7Ad80DDED5e27644e9c0352904/info.json new file mode 100644 index 00000000..51fe360c --- /dev/null +++ b/blockchains/smartchain/assets/0x795D38678D5a3f7Ad80DDED5e27644e9c0352904/info.json @@ -0,0 +1,11 @@ +{ + "name": "upShib", + "type": "BEP20", + "symbol": "UPSHIB", + "decimals": 9, + "website": "https://www.upshib.space/", + "description": "A deflationary burn mechanism and static reward protocol, are the core functions of upShib.", + "explorer": "https://bscscan.com/token/0x795D38678D5a3f7Ad80DDED5e27644e9c0352904", + "status": "active", + "id": "0x795D38678D5a3f7Ad80DDED5e27644e9c0352904" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x795D38678D5a3f7Ad80DDED5e27644e9c0352904/logo.png b/blockchains/smartchain/assets/0x795D38678D5a3f7Ad80DDED5e27644e9c0352904/logo.png new file mode 100644 index 00000000..ea6e73e0 Binary files /dev/null and b/blockchains/smartchain/assets/0x795D38678D5a3f7Ad80DDED5e27644e9c0352904/logo.png differ diff --git a/blockchains/smartchain/assets/0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2/info.json b/blockchains/smartchain/assets/0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2/info.json new file mode 100644 index 00000000..16cb0e8e --- /dev/null +++ b/blockchains/smartchain/assets/0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2/info.json @@ -0,0 +1,29 @@ +{ + "name": "Kebab Token", + "website": "https://kebabfinance.com", + "description": "The strategically superior yield farming community on BSC.", + "explorer": "https://bscscan.com/token/0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2", + "type": "BEP20", + "symbol": "KEBAB", + "decimals": 18, + "status": "active", + "id": "0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2", + "links": [ + { + "name": "github", + "url": "https://github.com/chefkebab" + }, + { + "name": "x", + "url": "https://x.com/kebabfinance" + }, + { + "name": "telegram", + "url": "https://t.me/kebabfinance" + }, + { + "name": "medium", + "url": "https://kebabfinance1.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2/logo.png b/blockchains/smartchain/assets/0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2/logo.png new file mode 100644 index 00000000..ccccd0be Binary files /dev/null and b/blockchains/smartchain/assets/0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2/logo.png differ diff --git a/blockchains/smartchain/assets/0x797Bb0BeeA437D2762A755ea911C0046C1284568/info.json b/blockchains/smartchain/assets/0x797Bb0BeeA437D2762A755ea911C0046C1284568/info.json new file mode 100644 index 00000000..af53e500 --- /dev/null +++ b/blockchains/smartchain/assets/0x797Bb0BeeA437D2762A755ea911C0046C1284568/info.json @@ -0,0 +1,54 @@ +{ + "name": "Vulkania", + "type": "BEP20", + "symbol": "VLK", + "decimals": 18, + "website": "https://vulkania.io", + "description": "Vulkania offers customizable Blockchain Dashboards, one stop solutions for gathering data of crypto projects while saving time.", + "explorer": "https://bscscan.com/token/0x797bb0beea437d2762a755ea911c0046c1284568", + "status": "active", + "id": "0x797Bb0BeeA437D2762A755ea911C0046C1284568", + "links": [ + { + "name": "x", + "url": "https://x.com/VulkaniaApp" + }, + { + "name": "github", + "url": "https://github.com/Vulkania" + }, + { + "name": "telegram", + "url": "https://t.me/vulkaniaapp" + }, + { + "name": "telegram_news", + "url": "https://t.me/vulkaniannouncements" + }, + { + "name": "blog", + "url": "https://vulkania.io/blog/" + }, + { + "name": "whitepaper", + "url": "https://vulkania.io/blog/vulkania-whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vulkania/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vulkania" + }, + { + "name": "source_code", + "url": "https://solidity.finance/audits/Vulkania/" + } + ], + "tags": [ + "defi", + "staking", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x797Bb0BeeA437D2762A755ea911C0046C1284568/logo.png b/blockchains/smartchain/assets/0x797Bb0BeeA437D2762A755ea911C0046C1284568/logo.png new file mode 100644 index 00000000..fd08f102 Binary files /dev/null and b/blockchains/smartchain/assets/0x797Bb0BeeA437D2762A755ea911C0046C1284568/logo.png differ diff --git a/blockchains/smartchain/assets/0x7983c8E6D09da2156Ec7E56fddDa91a517561781/info.json b/blockchains/smartchain/assets/0x7983c8E6D09da2156Ec7E56fddDa91a517561781/info.json new file mode 100644 index 00000000..9c7b87fe --- /dev/null +++ b/blockchains/smartchain/assets/0x7983c8E6D09da2156Ec7E56fddDa91a517561781/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeFinance", + "website": "https://safefinance.network/", + "description": "The SafeFinance protocol is a community driven, fair launched Defi Token. We've implemented multiple mechanisms to reward every holders during each trade.", + "explorer": "https://bscscan.com/token/0x7983c8e6d09da2156ec7e56fddda91a517561781", + "type": "BEP20", + "symbol": "SFE", + "decimals": 9, + "status": "active", + "id": "0x7983c8E6D09da2156Ec7E56fddDa91a517561781" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7983c8E6D09da2156Ec7E56fddDa91a517561781/logo.png b/blockchains/smartchain/assets/0x7983c8E6D09da2156Ec7E56fddDa91a517561781/logo.png new file mode 100644 index 00000000..507620be Binary files /dev/null and b/blockchains/smartchain/assets/0x7983c8E6D09da2156Ec7E56fddDa91a517561781/logo.png differ diff --git a/blockchains/smartchain/assets/0x798EFf477fC1D7B3131B6F81a81eFeaA515a8888/info.json b/blockchains/smartchain/assets/0x798EFf477fC1D7B3131B6F81a81eFeaA515a8888/info.json new file mode 100644 index 00000000..f0fef702 --- /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 new file mode 100644 index 00000000..24eeb2d7 --- /dev/null +++ b/blockchains/smartchain/assets/0x798aF7725376765e7F3cA86d5e0Cf1BEaEf19F34/info.json @@ -0,0 +1,40 @@ +{ + "name": "Atomic Wallet Token", + "website": "https://atomicwallet.io", + "description": "Atomic Wallet is a decentralized cryptocurrency wallet that supports more than 500 coins and tokens, providing simplicity, safety, and convenience for its users.", + "explorer": "https://bscscan.com/token/0x798af7725376765e7f3ca86d5e0cf1beaef19f34", + "symbol": "AWC", + "type": "BEP20", + "decimals": 8, + "status": "active", + "id": "0x798aF7725376765e7F3cA86d5e0Cf1BEaEf19F34", + "tags": [ + "staking" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/atomic-wallet-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/atomic-wallet-coin/" + }, + { + "name": "github", + "url": "https://github.com/Atomicwallet/" + }, + { + "name": "x", + "url": "https://x.com/atomicwallet" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/atomicwallet/" + }, + { + "name": "telegram", + "url": "https://t.me/AtomicWalletNews" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x798aF7725376765e7F3cA86d5e0Cf1BEaEf19F34/logo.png b/blockchains/smartchain/assets/0x798aF7725376765e7F3cA86d5e0Cf1BEaEf19F34/logo.png new file mode 100644 index 00000000..7f2215bd Binary files /dev/null and b/blockchains/smartchain/assets/0x798aF7725376765e7F3cA86d5e0Cf1BEaEf19F34/logo.png differ diff --git a/blockchains/smartchain/assets/0x7996cF3FBc0655131BD5a6D66e1ae2720f1de45E/info.json b/blockchains/smartchain/assets/0x7996cF3FBc0655131BD5a6D66e1ae2720f1de45E/info.json new file mode 100644 index 00000000..637e20ff --- /dev/null +++ b/blockchains/smartchain/assets/0x7996cF3FBc0655131BD5a6D66e1ae2720f1de45E/info.json @@ -0,0 +1,11 @@ +{ + "name": "VELOREX", + "type": "BEP20", + "symbol": "VEX", + "decimals": 9, + "website": "https://velorex.cc/", + "description": "Velorex (VEX) is a decentralized finance token built on the BEP-20 platform. At Velorex we aim to facilitate global adoption of our cryptocurrency by introducing Debit Cards and Smart Wallets that dynamically interact with a variety of web3.90 and related programs within our block-chain from 2022 onward.", + "explorer": "https://bscscan.com/token/0x7996cf3fbc0655131bd5a6d66e1ae2720f1de45e", + "status": "active", + "id": "0x7996cF3FBc0655131BD5a6D66e1ae2720f1de45E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7996cF3FBc0655131BD5a6D66e1ae2720f1de45E/logo.png b/blockchains/smartchain/assets/0x7996cF3FBc0655131BD5a6D66e1ae2720f1de45E/logo.png new file mode 100644 index 00000000..95f980d5 Binary files /dev/null and b/blockchains/smartchain/assets/0x7996cF3FBc0655131BD5a6D66e1ae2720f1de45E/logo.png differ diff --git a/blockchains/smartchain/assets/0x799934c486133f2D01049AbcaC9Ca65ec642cAD6/info.json b/blockchains/smartchain/assets/0x799934c486133f2D01049AbcaC9Ca65ec642cAD6/info.json new file mode 100644 index 00000000..d091141d --- /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 00000000..6250193e 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 00000000..e11dc826 --- /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 00000000..24724129 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 new file mode 100644 index 00000000..011851ff --- /dev/null +++ b/blockchains/smartchain/assets/0x799e1Cf88A236e42b4A87c544A22A94aE95A6910/info.json @@ -0,0 +1,33 @@ +{ + "name": "MContent", + "website": "https://mcontent.net/", + "description": "MContent is introducing the world’s first digital content market place that aims to build a collaborative content ecosystem with the core purpose of seed funding, incubating and curating film makers and content producers around the World.", + "explorer": "https://bscscan.com/token/0x799e1cf88a236e42b4a87c544a22a94ae95a6910", + "type": "BEP20", + "symbol": "MCONTENT", + "decimals": 6, + "status": "active", + "id": "0x799e1Cf88A236e42b4A87c544A22A94aE95A6910", + "links": [ + { + "name": "x", + "url": "https://x.com/MContent_" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MContent/" + }, + { + "name": "telegram", + "url": "https://t.me/mcontentofficialchat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/vrzdQSdUqU" + }, + { + "name": "facebook", + "url": "https://facebook.com/mcontentofficial/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x799e1Cf88A236e42b4A87c544A22A94aE95A6910/logo.png b/blockchains/smartchain/assets/0x799e1Cf88A236e42b4A87c544A22A94aE95A6910/logo.png new file mode 100644 index 00000000..8d0be433 Binary files /dev/null and b/blockchains/smartchain/assets/0x799e1Cf88A236e42b4A87c544A22A94aE95A6910/logo.png differ diff --git a/blockchains/smartchain/assets/0x79CDc9cA057E16dFfd45BD803491f328f49e1762/info.json b/blockchains/smartchain/assets/0x79CDc9cA057E16dFfd45BD803491f328f49e1762/info.json new file mode 100644 index 00000000..2598a444 --- /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 00000000..8db792da 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 new file mode 100644 index 00000000..d20fbb2d --- /dev/null +++ b/blockchains/smartchain/assets/0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936/info.json @@ -0,0 +1,28 @@ +{ + "name": "Catgirl", + "website": "https://www.catgirl.io", + "description": "CATGIRL¢ is a NFT focused, community driven crypto currency, with real world use.", + "explorer": "https://bscscan.com/token/0x79ebc9a2ce02277a4b5b3a768b1c0a4ed75bd936", + "type": "BEP20", + "symbol": "CATGIRL", + "decimals": 9, + "status": "abandoned", + "id": "0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/3V8gZFP5kb" + }, + { + "name": "x", + "url": "https://x.com/catgirlcoin" + }, + { + "name": "telegram", + "url": "https://t.me/catgirlcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x79f8E9862c5240F316faBf31e5406e497d65484d/info.json b/blockchains/smartchain/assets/0x79f8E9862c5240F316faBf31e5406e497d65484d/info.json new file mode 100644 index 00000000..d0a7d081 --- /dev/null +++ b/blockchains/smartchain/assets/0x79f8E9862c5240F316faBf31e5406e497d65484d/info.json @@ -0,0 +1,29 @@ +{ + "name": "BITCOIN INTERNATIONAL", + "website": "https://btci.finance", + "description": "BITCOIN INTERNATIONAL is a non-inflationary Stake , Farm ,DeFi and NFT ecosystem aiming to provide yield generating investments strategies to long-term BTCI holders.", + "explorer": "https://bscscan.com/token/0x79f8E9862c5240F316faBf31e5406e497d65484d", + "type": "BEP20", + "symbol": "BTCI", + "decimals": 9, + "status": "active", + "id": "0x79f8E9862c5240F316faBf31e5406e497d65484d", + "links": [ + { + "name": "x", + "url": "https://x.com/btc_btci" + }, + { + "name": "telegram", + "url": "https://t.me/btc_btci" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC_Vf9yZiz4JJw2zJlv-RnBw" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/btcint" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x79f8E9862c5240F316faBf31e5406e497d65484d/logo.png b/blockchains/smartchain/assets/0x79f8E9862c5240F316faBf31e5406e497d65484d/logo.png new file mode 100644 index 00000000..00e99f1b Binary files /dev/null and b/blockchains/smartchain/assets/0x79f8E9862c5240F316faBf31e5406e497d65484d/logo.png differ diff --git a/blockchains/smartchain/assets/0x7A2172F3728962F6B952a1Cc1AD794DACbf9f3DA/info.json b/blockchains/smartchain/assets/0x7A2172F3728962F6B952a1Cc1AD794DACbf9f3DA/info.json new file mode 100644 index 00000000..199a9429 --- /dev/null +++ b/blockchains/smartchain/assets/0x7A2172F3728962F6B952a1Cc1AD794DACbf9f3DA/info.json @@ -0,0 +1,11 @@ +{ + "name": "VIDTC Company stocks", + "type": "BEP20", + "symbol": "VIDTC", + "decimals": 18, + "website": "https://about.v-id.org", + "description": "NFTs for equity and shared ownership", + "explorer": "https://bscscan.com/token/0x7a2172f3728962f6b952a1cc1ad794dacbf9f3da", + "status": "active", + "id": "0x7A2172F3728962F6B952a1Cc1AD794DACbf9f3DA" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7A2172F3728962F6B952a1Cc1AD794DACbf9f3DA/logo.png b/blockchains/smartchain/assets/0x7A2172F3728962F6B952a1Cc1AD794DACbf9f3DA/logo.png new file mode 100644 index 00000000..2f54fd3d Binary files /dev/null and b/blockchains/smartchain/assets/0x7A2172F3728962F6B952a1Cc1AD794DACbf9f3DA/logo.png differ diff --git a/blockchains/smartchain/assets/0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6/info.json b/blockchains/smartchain/assets/0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6/info.json new file mode 100644 index 00000000..14413ba9 --- /dev/null +++ b/blockchains/smartchain/assets/0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6/info.json @@ -0,0 +1,33 @@ +{ + "name": "IRR", + "type": "BEP20", + "symbol": "Toman", + "decimals": 4, + "website": "https://www.toman-irr.com/", + "description": "Toman offers a comprehensive solution to the major problems faced by the traditional, fiat-driven monetary system. Building a crypto powered ecosystem comprising Toman Token.", + "explorer": "https://bscscan.com/token/0x7a532aa9a2ab86f6bd7e1dcd93d3fdd2b0b410a6", + "status": "active", + "id": "0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6", + "links": [ + { + "name": "x", + "url": "https://x.com/IRR_Toman?s=20&t=rSm1Z7nA6bwkeYbXIVutjQ" + }, + { + "name": "github", + "url": "https://github.com/toman_irr" + }, + { + "name": "telegram", + "url": "https://t.me/IRR_toman" + }, + { + "name": "whitepaper", + "url": "https://woo.network/Litepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/wootrade/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6/logo.png b/blockchains/smartchain/assets/0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6/logo.png new file mode 100644 index 00000000..a1b756f3 Binary files /dev/null and b/blockchains/smartchain/assets/0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6/logo.png differ diff --git a/blockchains/smartchain/assets/0x7A565284572d03EC50c35396F7d6001252eb43B6/info.json b/blockchains/smartchain/assets/0x7A565284572d03EC50c35396F7d6001252eb43B6/info.json new file mode 100644 index 00000000..043fdad8 --- /dev/null +++ b/blockchains/smartchain/assets/0x7A565284572d03EC50c35396F7d6001252eb43B6/info.json @@ -0,0 +1,21 @@ +{ + "name": "DogeZilla", + "type": "BEP20", + "symbol": "DogeZilla", + "decimals": 9, + "website": "https://dogezillacoin.com", + "description": "DogeZilla is a community-driven project. We are a Memecoin + Utility in the crypto sphere. And we declared to disrupt the space with our DogeZilla Vault – Security to make crypto space safer for millions.", + "explorer": "https://bscscan.com/token/0x7a565284572d03ec50c35396f7d6001252eb43b6", + "status": "active", + "id": "0x7A565284572d03EC50c35396F7d6001252eb43B6", + "links": [ + { + "name": "x", + "url": "https://x.com/dogezillacoin" + }, + { + "name": "telegram", + "url": "https://t.me/DogeZillaPortal" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7A565284572d03EC50c35396F7d6001252eb43B6/logo.png b/blockchains/smartchain/assets/0x7A565284572d03EC50c35396F7d6001252eb43B6/logo.png new file mode 100644 index 00000000..48fe348e Binary files /dev/null and b/blockchains/smartchain/assets/0x7A565284572d03EC50c35396F7d6001252eb43B6/logo.png differ diff --git a/blockchains/smartchain/assets/0x7A848a5A8169aa6a2f603D056A749f924F504444/info.json b/blockchains/smartchain/assets/0x7A848a5A8169aa6a2f603D056A749f924F504444/info.json new file mode 100644 index 00000000..84575aac --- /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 00000000..ebf83b94 Binary files /dev/null and b/blockchains/smartchain/assets/0x7A848a5A8169aa6a2f603D056A749f924F504444/logo.png differ diff --git a/blockchains/smartchain/assets/0x7A9f28EB62C791422Aa23CeAE1dA9C847cBeC9b0/info.json b/blockchains/smartchain/assets/0x7A9f28EB62C791422Aa23CeAE1dA9C847cBeC9b0/info.json new file mode 100644 index 00000000..d8340531 --- /dev/null +++ b/blockchains/smartchain/assets/0x7A9f28EB62C791422Aa23CeAE1dA9C847cBeC9b0/info.json @@ -0,0 +1,11 @@ +{ + "name": "yieldwatch", + "type": "BEP20", + "symbol": "WATCH", + "decimals": 18, + "website": "https://yieldwatch.net", + "description": "yieldwatch.net is a smart yield farming dashboard that lets you monitor your liquidity pools, yield farming and token staking.", + "explorer": "https://bscscan.com/token/0x7a9f28eb62c791422aa23ceae1da9c847cbec9b0", + "status": "active", + "id": "0x7A9f28EB62C791422Aa23CeAE1dA9C847cBeC9b0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7A9f28EB62C791422Aa23CeAE1dA9C847cBeC9b0/logo.png b/blockchains/smartchain/assets/0x7A9f28EB62C791422Aa23CeAE1dA9C847cBeC9b0/logo.png new file mode 100644 index 00000000..25b29e8e Binary files /dev/null and b/blockchains/smartchain/assets/0x7A9f28EB62C791422Aa23CeAE1dA9C847cBeC9b0/logo.png differ diff --git a/blockchains/smartchain/assets/0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70/info.json b/blockchains/smartchain/assets/0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70/info.json new file mode 100644 index 00000000..ac2b0aac --- /dev/null +++ b/blockchains/smartchain/assets/0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70/info.json @@ -0,0 +1,45 @@ +{ + "name": "Doge Dash", + "website": "https://dogedash.com/", + "description": "Crypto Gaming made Easy: The aim of the game is simple... Dash as fast as you can through all of the 10 levels whilst collecting coins along the way. Successful players who complete all 10 levels will be rewarded with the collected Doge Dash coins direct to their wallets", + "explorer": "https://bscscan.com/token/0x7ae5709c585ccfb3e61ff312ec632c21a5f03f70", + "type": "BEP20", + "symbol": "DogeDash", + "decimals": 18, + "status": "active", + "id": "0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70", + "links": [ + { + "name": "telegram", + "url": "https://t.me/dogedashgame" + }, + { + "name": "x", + "url": "https://x.com/doge_dash" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/dogedashthegame/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCFrYj9uTa66nLgviytnXzvA" + }, + { + "name": "medium", + "url": "https://medium.com/@Dogedash_official" + }, + { + "name": "whitepaper", + "url": "https://dogedash.com/Doge_Dash_Whitepaper.pdf" + }, + { + "name": "whitepaper", + "url": "https://coinmarketcap.com/currencies/doge-dash/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/doge-dash" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70/logo.png b/blockchains/smartchain/assets/0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70/logo.png new file mode 100644 index 00000000..20aa95c9 Binary files /dev/null and b/blockchains/smartchain/assets/0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70/logo.png differ diff --git a/blockchains/smartchain/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/info.json b/blockchains/smartchain/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/info.json new file mode 100644 index 00000000..b8f0eb9e --- /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 00000000..ef21853a Binary files /dev/null and b/blockchains/smartchain/assets/0x7AEfc9965699fBea943e03264d96e50CD4A97b21/logo.png differ diff --git a/blockchains/smartchain/assets/0x7Aa0f568a5CC0b5395694Cb5aD8C9423F8C41A80/info.json b/blockchains/smartchain/assets/0x7Aa0f568a5CC0b5395694Cb5aD8C9423F8C41A80/info.json new file mode 100644 index 00000000..682f6a08 --- /dev/null +++ b/blockchains/smartchain/assets/0x7Aa0f568a5CC0b5395694Cb5aD8C9423F8C41A80/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeMusk", + "website": "https://www.safemusk.com/", + "description": "SafeMusk autonomous yield and liquidity generation protocol on BSC", + "explorer": "https://bscscan.com/token/0x7aa0f568a5cc0b5395694cb5ad8c9423f8c41a80", + "type": "BEP20", + "symbol": "SAFEMUSK", + "decimals": 9, + "status": "active", + "id": "0x7Aa0f568a5CC0b5395694Cb5aD8C9423F8C41A80" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7Aa0f568a5CC0b5395694Cb5aD8C9423F8C41A80/logo.png b/blockchains/smartchain/assets/0x7Aa0f568a5CC0b5395694Cb5aD8C9423F8C41A80/logo.png new file mode 100644 index 00000000..2791e350 Binary files /dev/null and b/blockchains/smartchain/assets/0x7Aa0f568a5CC0b5395694Cb5aD8C9423F8C41A80/logo.png differ diff --git a/blockchains/smartchain/assets/0x7Abf7f54F30a45c7c43D728A75d6741440d7c591/info.json b/blockchains/smartchain/assets/0x7Abf7f54F30a45c7c43D728A75d6741440d7c591/info.json new file mode 100644 index 00000000..fa623f01 --- /dev/null +++ b/blockchains/smartchain/assets/0x7Abf7f54F30a45c7c43D728A75d6741440d7c591/info.json @@ -0,0 +1,21 @@ +{ + "name": "ElonSperm", + "website": "https://elonsperm.com/", + "description": "Let's get Elon Sperm to Mars!", + "explorer": "https://bscscan.com/token/0x7Abf7f54F30a45c7c43D728A75d6741440d7c591", + "type": "BEP20", + "symbol": "SPERM", + "decimals": 9, + "status": "active", + "id": "0x7Abf7f54F30a45c7c43D728A75d6741440d7c591", + "links": [ + { + "name": "x", + "url": "https://x.com/elonsperm" + }, + { + "name": "telegram", + "url": "https://t.me/elonspermtomars" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7Abf7f54F30a45c7c43D728A75d6741440d7c591/logo.png b/blockchains/smartchain/assets/0x7Abf7f54F30a45c7c43D728A75d6741440d7c591/logo.png new file mode 100644 index 00000000..99a36c7c Binary files /dev/null and b/blockchains/smartchain/assets/0x7Abf7f54F30a45c7c43D728A75d6741440d7c591/logo.png differ diff --git a/blockchains/smartchain/assets/0x7B6bCA9E05566b2A8B084750663cFaa273a08888/info.json b/blockchains/smartchain/assets/0x7B6bCA9E05566b2A8B084750663cFaa273a08888/info.json new file mode 100644 index 00000000..d2864aed --- /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/0x7B7D3B71A12906270b1b4c187C75f45188E9aEf6/info.json b/blockchains/smartchain/assets/0x7B7D3B71A12906270b1b4c187C75f45188E9aEf6/info.json new file mode 100644 index 00000000..12c42391 --- /dev/null +++ b/blockchains/smartchain/assets/0x7B7D3B71A12906270b1b4c187C75f45188E9aEf6/info.json @@ -0,0 +1,11 @@ +{ + "name": "VIDTC Precious metals and stones", + "type": "BEP20", + "symbol": "VIDTC", + "decimals": 18, + "website": "https://about.v-id.org", + "description": "NFTs for valuables like diamonds or gold", + "explorer": "https://bscscan.com/token/0x7b7d3b71a12906270b1b4c187c75f45188e9aef6", + "status": "active", + "id": "0x7B7D3B71A12906270b1b4c187C75f45188E9aEf6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7B7D3B71A12906270b1b4c187C75f45188E9aEf6/logo.png b/blockchains/smartchain/assets/0x7B7D3B71A12906270b1b4c187C75f45188E9aEf6/logo.png new file mode 100644 index 00000000..52641426 Binary files /dev/null and b/blockchains/smartchain/assets/0x7B7D3B71A12906270b1b4c187C75f45188E9aEf6/logo.png differ diff --git a/blockchains/smartchain/assets/0x7B86b0836f3454e50C6F6a190cd692bB17da1928/info.json b/blockchains/smartchain/assets/0x7B86b0836f3454e50C6F6a190cd692bB17da1928/info.json new file mode 100644 index 00000000..e2c1bca9 --- /dev/null +++ b/blockchains/smartchain/assets/0x7B86b0836f3454e50C6F6a190cd692bB17da1928/info.json @@ -0,0 +1,32 @@ +{ + "name": "BEM", + "type": "BEP20", + "symbol": "BEM", + "decimals": 18, + "website": "https://bemil.io/", + "description": "BEM is a token issued by BEMIL MT INTERNATIONAL DOO", + "explorer": "https://bscscan.com/token/0x7B86b0836f3454e50C6F6a190cd692bB17da1928", + "status": "active", + "id": "0x7B86b0836f3454e50C6F6a190cd692bB17da1928", + "links": [ + { + "name": "x", + "url": "https://x.com/BemilGame" + }, + { + "name": "telegram", + "url": "https://t.me/bemil_chat" + }, + { + "name": "telegram_news", + "url": "https://t.me/bemil_official_channel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bemil-coin" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7B86b0836f3454e50C6F6a190cd692bB17da1928/logo.png b/blockchains/smartchain/assets/0x7B86b0836f3454e50C6F6a190cd692bB17da1928/logo.png new file mode 100644 index 00000000..7204a933 Binary files /dev/null and b/blockchains/smartchain/assets/0x7B86b0836f3454e50C6F6a190cd692bB17da1928/logo.png differ diff --git a/blockchains/smartchain/assets/0x7B9c3Df47F3326FbC0674d51dc3EB0f2Df29F37F/info.json b/blockchains/smartchain/assets/0x7B9c3Df47F3326FbC0674d51dc3EB0f2Df29F37F/info.json new file mode 100644 index 00000000..25f2974b --- /dev/null +++ b/blockchains/smartchain/assets/0x7B9c3Df47F3326FbC0674d51dc3EB0f2Df29F37F/info.json @@ -0,0 +1,25 @@ +{ + "name": "Lightning", + "website": "https://lightningprotocol.finance/", + "description": "Lightning is bringing Decentralised Venture Capital to Binance Smart Chain. $LIGHT holders gain exclusive presale access to the most exciting new #BSC projects via the Lightning Incubator and Launchpad, whilst also increasing their holdings thanks to Light's unique, deflationary, supply elasticity protocol.", + "explorer": "https://bscscan.com/token/0x7b9c3df47f3326fbc0674d51dc3eb0f2df29f37f", + "type": "BEP20", + "symbol": "LIGHT", + "decimals": 8, + "status": "abandoned", + "id": "0x7B9c3Df47F3326FbC0674d51dc3EB0f2Df29F37F", + "links": [ + { + "name": "x", + "url": "https://x.com/lightningDeFi" + }, + { + "name": "telegram", + "url": "https://t.me/LightningProtocol" + }, + { + "name": "discord", + "url": "https://discord.com/invite/CKf9ZDJq" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7BA3cD00229C1beCC95a4B056fF15C123DcB456D/info.json b/blockchains/smartchain/assets/0x7BA3cD00229C1beCC95a4B056fF15C123DcB456D/info.json new file mode 100644 index 00000000..8c78d3eb --- /dev/null +++ b/blockchains/smartchain/assets/0x7BA3cD00229C1beCC95a4B056fF15C123DcB456D/info.json @@ -0,0 +1,11 @@ +{ + "name": "SpaceVikings Token ", + "website": "https://SpaceVikings.finance", + "description": "SpaceVikings is a Danish DeFi Crypto project with real life use cases", + "explorer": "https://bscscan.com/token/0x7BA3cD00229C1beCC95a4B056fF15C123DcB456D", + "type": "BEP20", + "symbol": "SVT", + "decimals": 9, + "status": "active", + "id": "0x7BA3cD00229C1beCC95a4B056fF15C123DcB456D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7BA3cD00229C1beCC95a4B056fF15C123DcB456D/logo.png b/blockchains/smartchain/assets/0x7BA3cD00229C1beCC95a4B056fF15C123DcB456D/logo.png new file mode 100644 index 00000000..4d2e57e4 Binary files /dev/null and b/blockchains/smartchain/assets/0x7BA3cD00229C1beCC95a4B056fF15C123DcB456D/logo.png differ diff --git a/blockchains/smartchain/assets/0x7BA995f1662A01f3bE0DC299ce94Bb7e9C7075f5/info.json b/blockchains/smartchain/assets/0x7BA995f1662A01f3bE0DC299ce94Bb7e9C7075f5/info.json new file mode 100644 index 00000000..d6a40768 --- /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 00000000..a7211c01 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 new file mode 100644 index 00000000..5d4d819f --- /dev/null +++ b/blockchains/smartchain/assets/0x7Bd46f6Da97312AC2DBD1749f82E202764C0B914/info.json @@ -0,0 +1,53 @@ +{ + "name": "Ape Swap LP BUSD-BANANA", + "website": "https://apeswap.finance", + "description": "ApeSwap is an Automated Market Maker, Yield Farming, and Staking platform on Binance Smart Chain. ApeSwap was built by DeFi Apes, for DeFi Apes. We have a dedicated team of experienced monkeys, who have been in the crypto space for years.", + "explorer": "https://bscscan.com/token/0x7Bd46f6Da97312AC2DBD1749f82E202764C0B914", + "type": "BEP20", + "symbol": "APE-LP", + "decimals": 18, + "status": "active", + "id": "0x7Bd46f6Da97312AC2DBD1749f82E202764C0B914", + "links": [ + { + "name": "github", + "url": "https://github.com/ApeSwapFinance" + }, + { + "name": "docs", + "url": "https://apeswap.gitbook.io/apeswap-finance/" + }, + { + "name": "x", + "url": "https://x.com/ape_swap" + }, + { + "name": "telegram", + "url": "https://t.me/ape_swap" + }, + { + "name": "telegram_news", + "url": "https://t.me/ape_swap_news" + }, + { + "name": "medium", + "url": "https://ape-swap.medium.com/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AbVxfGRCSd/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Apeswap/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apeswap-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/apeswap-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7Bd46f6Da97312AC2DBD1749f82E202764C0B914/logo.png b/blockchains/smartchain/assets/0x7Bd46f6Da97312AC2DBD1749f82E202764C0B914/logo.png new file mode 100644 index 00000000..5676acf9 Binary files /dev/null and b/blockchains/smartchain/assets/0x7Bd46f6Da97312AC2DBD1749f82E202764C0B914/logo.png differ diff --git a/blockchains/smartchain/assets/0x7C38870e93A1f959cB6c533eB10bBc3e438AaC11/info.json b/blockchains/smartchain/assets/0x7C38870e93A1f959cB6c533eB10bBc3e438AaC11/info.json new file mode 100644 index 00000000..4c1aa2b4 --- /dev/null +++ b/blockchains/smartchain/assets/0x7C38870e93A1f959cB6c533eB10bBc3e438AaC11/info.json @@ -0,0 +1,11 @@ +{ + "name": "AliumToken", + "type": "BEP20", + "symbol": "ALM", + "decimals": 18, + "website": "https://alium.finance/", + "description": "Alium Swap is a MultiChain Decentralized Exchange with a Cross-Chain option already operating on Binance Smart Chain and Huobi ECOChain with Ethereum, Near, Matic, Avalanche, Solana, and Tron coming.", + "explorer": "https://bscscan.com/token/0x7C38870e93A1f959cB6c533eB10bBc3e438AaC11", + "status": "active", + "id": "0x7C38870e93A1f959cB6c533eB10bBc3e438AaC11" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7C38870e93A1f959cB6c533eB10bBc3e438AaC11/logo.png b/blockchains/smartchain/assets/0x7C38870e93A1f959cB6c533eB10bBc3e438AaC11/logo.png new file mode 100644 index 00000000..ea029724 Binary files /dev/null and b/blockchains/smartchain/assets/0x7C38870e93A1f959cB6c533eB10bBc3e438AaC11/logo.png differ diff --git a/blockchains/smartchain/assets/0x7C48834445f81f2F4453eAED510eb8a3a47A7CFA/info.json b/blockchains/smartchain/assets/0x7C48834445f81f2F4453eAED510eb8a3a47A7CFA/info.json new file mode 100644 index 00000000..fda4bc05 --- /dev/null +++ b/blockchains/smartchain/assets/0x7C48834445f81f2F4453eAED510eb8a3a47A7CFA/info.json @@ -0,0 +1,11 @@ +{ + "name": "BEES", + "type": "BEP20", + "symbol": "BEE", + "decimals": 9, + "website": "https://beesonbsc.net/", + "description": "Bees the first deflationary token on the BSC that will save the bees, which will save us. All for Bees.", + "explorer": "https://bscscan.com/token/0x7C48834445f81f2F4453eAED510eb8a3a47A7CFA", + "status": "active", + "id": "0x7C48834445f81f2F4453eAED510eb8a3a47A7CFA" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7C48834445f81f2F4453eAED510eb8a3a47A7CFA/logo.png b/blockchains/smartchain/assets/0x7C48834445f81f2F4453eAED510eb8a3a47A7CFA/logo.png new file mode 100644 index 00000000..d089a046 Binary files /dev/null and b/blockchains/smartchain/assets/0x7C48834445f81f2F4453eAED510eb8a3a47A7CFA/logo.png differ diff --git a/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/info.json b/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/info.json new file mode 100644 index 00000000..27aab593 --- /dev/null +++ b/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/info.json @@ -0,0 +1,28 @@ +{ + "name": "METAGALAXY LAND", + "website": "https://metagalaxyland.com", + "description": "The spacemap focuses on the development of the technology, operations infrastructure, new partnerships, and marketing initiatives.", + "explorer": "https://bscscan.com/token/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33", + "type": "BEP20", + "symbol": "MEGALAND", + "decimals": 18, + "status": "abandoned", + "id": "0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/metagalaxyland" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metagalaxy-land/" + }, + { + "name": "x", + "url": "https://x.com/metagalaxyland" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7CF23DfF6DEDBf80211FfaDa15Ae01463C47D034/info.json b/blockchains/smartchain/assets/0x7CF23DfF6DEDBf80211FfaDa15Ae01463C47D034/info.json new file mode 100644 index 00000000..abcd42f9 --- /dev/null +++ b/blockchains/smartchain/assets/0x7CF23DfF6DEDBf80211FfaDa15Ae01463C47D034/info.json @@ -0,0 +1,11 @@ +{ + "name": "legion For Justice", + "website": "https://legionforjustice.com/", + "description": "Legion For Justice is a community-driven project built on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x7cf23dff6dedbf80211ffada15ae01463c47d034", + "type": "BEP20", + "symbol": "LEGION", + "decimals": 8, + "status": "active", + "id": "0x7CF23DfF6DEDBf80211FfaDa15Ae01463C47D034" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7CF23DfF6DEDBf80211FfaDa15Ae01463C47D034/logo.png b/blockchains/smartchain/assets/0x7CF23DfF6DEDBf80211FfaDa15Ae01463C47D034/logo.png new file mode 100644 index 00000000..fd1a007b Binary files /dev/null and b/blockchains/smartchain/assets/0x7CF23DfF6DEDBf80211FfaDa15Ae01463C47D034/logo.png differ diff --git a/blockchains/smartchain/assets/0x7Ceb519718A80Dd78a8545AD8e7f401dE4f2faA7/info.json b/blockchains/smartchain/assets/0x7Ceb519718A80Dd78a8545AD8e7f401dE4f2faA7/info.json new file mode 100644 index 00000000..f595ca2a --- /dev/null +++ b/blockchains/smartchain/assets/0x7Ceb519718A80Dd78a8545AD8e7f401dE4f2faA7/info.json @@ -0,0 +1,45 @@ +{ + "name": "Duelist King Token", + "type": "BEP20", + "symbol": "DKT", + "decimals": 18, + "website": "https://duelistking.com/", + "description": "DKT is governance token of Duelist King NFT Trading Card Game.", + "explorer": "https://bscscan.com/token/0x7Ceb519718A80Dd78a8545AD8e7f401dE4f2faA7", + "status": "active", + "id": "0x7Ceb519718A80Dd78a8545AD8e7f401dE4f2faA7", + "links": [ + { + "name": "x", + "url": "https://x.com/DuelistKingNFT" + }, + { + "name": "telegram", + "url": "https://t.me/DuelistKingNFT" + }, + { + "name": "whitepaper", + "url": "https://duelistking.com/Duelist_King_WPP.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/duelist-king/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/duelist-king" + }, + { + "name": "source_code", + "url": "https://github.com/DK-DAO/infrastructure/" + }, + { + "name": "blog", + "url": "https://blog.duelistking.com" + }, + { + "name": "discord", + "url": "https://discord.com/invite/nvN2WqgPfw" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7Ceb519718A80Dd78a8545AD8e7f401dE4f2faA7/logo.png b/blockchains/smartchain/assets/0x7Ceb519718A80Dd78a8545AD8e7f401dE4f2faA7/logo.png new file mode 100644 index 00000000..11228973 Binary files /dev/null and b/blockchains/smartchain/assets/0x7Ceb519718A80Dd78a8545AD8e7f401dE4f2faA7/logo.png differ diff --git a/blockchains/smartchain/assets/0x7D2B2b15f1023425647626C4e411beA51F1aC0CD/info.json b/blockchains/smartchain/assets/0x7D2B2b15f1023425647626C4e411beA51F1aC0CD/info.json new file mode 100644 index 00000000..def59ed5 --- /dev/null +++ b/blockchains/smartchain/assets/0x7D2B2b15f1023425647626C4e411beA51F1aC0CD/info.json @@ -0,0 +1,11 @@ +{ + "name": "OWGaming", + "website": "https://www.owgaming.co", + "description": "Owgaming is a gaming tournament and competition geared token on the binance smart chain, a brand new amateur gamer launchpad", + "explorer": "https://bscscan.com/token/0x7D2B2b15f1023425647626C4e411beA51F1aC0CD", + "type": "BEP20", + "symbol": "OW", + "decimals": 9, + "status": "active", + "id": "0x7D2B2b15f1023425647626C4e411beA51F1aC0CD" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7D2B2b15f1023425647626C4e411beA51F1aC0CD/logo.png b/blockchains/smartchain/assets/0x7D2B2b15f1023425647626C4e411beA51F1aC0CD/logo.png new file mode 100644 index 00000000..c154b483 Binary files /dev/null and b/blockchains/smartchain/assets/0x7D2B2b15f1023425647626C4e411beA51F1aC0CD/logo.png differ diff --git a/blockchains/smartchain/assets/0x7D72DEDa97AfCE34caeb5DcbCc4001b7Ceb8074B/info.json b/blockchains/smartchain/assets/0x7D72DEDa97AfCE34caeb5DcbCc4001b7Ceb8074B/info.json new file mode 100644 index 00000000..7b18d14a --- /dev/null +++ b/blockchains/smartchain/assets/0x7D72DEDa97AfCE34caeb5DcbCc4001b7Ceb8074B/info.json @@ -0,0 +1,11 @@ +{ + "name": "MonkeyCoin", + "website": "http://monkeycoin.space", + "description": "MonkeyMoon - is an automatic liquidity generation protocol.", + "explorer": "https://bscscan.com/token/0x7d72deda97afce34caeb5dcbcc4001b7ceb8074b", + "type": "BEP20", + "symbol": "MKMOON", + "decimals": 9, + "status": "active", + "id": "0x7D72DEDa97AfCE34caeb5DcbCc4001b7Ceb8074B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7D72DEDa97AfCE34caeb5DcbCc4001b7Ceb8074B/logo.png b/blockchains/smartchain/assets/0x7D72DEDa97AfCE34caeb5DcbCc4001b7Ceb8074B/logo.png new file mode 100644 index 00000000..3a183f5e Binary files /dev/null and b/blockchains/smartchain/assets/0x7D72DEDa97AfCE34caeb5DcbCc4001b7Ceb8074B/logo.png differ diff --git a/blockchains/smartchain/assets/0x7DB54758503c25200B331131C219acD64CFa74c8/info.json b/blockchains/smartchain/assets/0x7DB54758503c25200B331131C219acD64CFa74c8/info.json new file mode 100644 index 00000000..f5b0b2b3 --- /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 00000000..dceb6754 --- /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 00000000..f5e627ea Binary files /dev/null and b/blockchains/smartchain/assets/0x7DC3a19BCC33a63549FF2520b5c67cB4670C1457/logo.png differ diff --git a/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json b/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json new file mode 100644 index 00000000..432c4c06 --- /dev/null +++ b/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/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://bscscan.com/token/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989", + "type": "BEP20", + "symbol": "GOMINING", + "decimals": 18, + "status": "active", + "id": "0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989", + "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/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/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/logo.png b/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/logo.png new file mode 100644 index 00000000..1d15389d Binary files /dev/null and b/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/logo.png differ diff --git a/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/info.json b/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/info.json new file mode 100644 index 00000000..0e485c68 --- /dev/null +++ b/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/info.json @@ -0,0 +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.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 new file mode 100644 index 00000000..5bc8414c Binary files /dev/null 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 new file mode 100644 index 00000000..3d09d78f --- /dev/null +++ b/blockchains/smartchain/assets/0x7E5d52C3335C91Af0da392BEa4BB9e43F2AbA62C/info.json @@ -0,0 +1,29 @@ +{ + "name": "Sheesh it is bussin bussin", + "website": "https://sheeshtoken.com", + "description": "Sheesh is a Crypto Token created to Bridge the world of Social Media/Gaming with the world of crypto.", + "explorer": "https://bscscan.com/token/0x7e5d52c3335c91af0da392bea4bb9e43f2aba62c", + "type": "BEP20", + "symbol": "Sheesh", + "decimals": 18, + "status": "active", + "id": "0x7E5d52C3335C91Af0da392BEa4BB9e43F2AbA62C", + "links": [ + { + "name": "x", + "url": "https://x.com/Sheeshtoken" + }, + { + "name": "telegram", + "url": "https://t.me/sheeshtokenchat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/uYxAQQTA" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SheeshToken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7E5d52C3335C91Af0da392BEa4BB9e43F2AbA62C/logo.png b/blockchains/smartchain/assets/0x7E5d52C3335C91Af0da392BEa4BB9e43F2AbA62C/logo.png new file mode 100644 index 00000000..9b636ca4 Binary files /dev/null and b/blockchains/smartchain/assets/0x7E5d52C3335C91Af0da392BEa4BB9e43F2AbA62C/logo.png differ diff --git a/blockchains/smartchain/assets/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/info.json b/blockchains/smartchain/assets/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/info.json new file mode 100644 index 00000000..5a4c80f5 --- /dev/null +++ b/blockchains/smartchain/assets/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/info.json @@ -0,0 +1,26 @@ +{ + "name": "Infiblue World Monie", + "symbol": "MONIE", + "type": "BEP20", + "decimals": 18, + "description": "Infiblue world is a GameFi, SocialFi DApp. It is a metaverse that offers players infinite way to make wealth and build social life.", + "website": "https://www.infiblue.world/", + "explorer": "https://bscscan.com/token/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3", + "status": "active", + "id": "0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3", + "tags": [], + "links": [ + { + "name": "github", + "url": "https://github.com/Infiblue-World" + }, + { + "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/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/logo.png b/blockchains/smartchain/assets/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/logo.png new file mode 100644 index 00000000..af881ef9 Binary files /dev/null and b/blockchains/smartchain/assets/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/logo.png differ diff --git a/blockchains/smartchain/assets/0x7E7c1d1a7DC1A978100E7faBe865cbb2Ce0b20B1/info.json b/blockchains/smartchain/assets/0x7E7c1d1a7DC1A978100E7faBe865cbb2Ce0b20B1/info.json new file mode 100644 index 00000000..c7a7ba73 --- /dev/null +++ b/blockchains/smartchain/assets/0x7E7c1d1a7DC1A978100E7faBe865cbb2Ce0b20B1/info.json @@ -0,0 +1,11 @@ +{ + "name": "ETET Token", + "website": "https://etet.finance/", + "description": "ETET is the equity token of ETET.Finance, the first decentralized Ethereum computing platform.", + "explorer": "https://bscscan.com/token/0x7E7c1d1a7DC1A978100E7faBe865cbb2Ce0b20B1", + "type": "BEP20", + "symbol": "ETET", + "decimals": 18, + "status": "active", + "id": "0x7E7c1d1a7DC1A978100E7faBe865cbb2Ce0b20B1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7E7c1d1a7DC1A978100E7faBe865cbb2Ce0b20B1/logo.png b/blockchains/smartchain/assets/0x7E7c1d1a7DC1A978100E7faBe865cbb2Ce0b20B1/logo.png new file mode 100644 index 00000000..90232aed Binary files /dev/null and b/blockchains/smartchain/assets/0x7E7c1d1a7DC1A978100E7faBe865cbb2Ce0b20B1/logo.png differ diff --git a/blockchains/smartchain/assets/0x7EA2b25C1a558C6F9b4649358183152b0eA4c03f/info.json b/blockchains/smartchain/assets/0x7EA2b25C1a558C6F9b4649358183152b0eA4c03f/info.json new file mode 100644 index 00000000..77e6f806 --- /dev/null +++ b/blockchains/smartchain/assets/0x7EA2b25C1a558C6F9b4649358183152b0eA4c03f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitchip Farm", + "website": "https://bitchip.farm/", + "description": "Next Gen Mining Chip Smaller, faster", + "explorer": "https://bscscan.com/token/0x7ea2b25c1a558c6f9b4649358183152b0ea4c03f", + "symbol": "CHIP", + "type": "BEP20", + "decimals": 8, + "status": "active", + "id": "0x7EA2b25C1a558C6F9b4649358183152b0eA4c03f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7EA2b25C1a558C6F9b4649358183152b0eA4c03f/logo.png b/blockchains/smartchain/assets/0x7EA2b25C1a558C6F9b4649358183152b0eA4c03f/logo.png new file mode 100644 index 00000000..4736ed4a Binary files /dev/null and b/blockchains/smartchain/assets/0x7EA2b25C1a558C6F9b4649358183152b0eA4c03f/logo.png differ diff --git a/blockchains/smartchain/assets/0x7EaeE60040135F20f508A393ca400dEd339d654e/info.json b/blockchains/smartchain/assets/0x7EaeE60040135F20f508A393ca400dEd339d654e/info.json new file mode 100644 index 00000000..5dbae1c9 --- /dev/null +++ b/blockchains/smartchain/assets/0x7EaeE60040135F20f508A393ca400dEd339d654e/info.json @@ -0,0 +1,41 @@ +{ + "name": "REVIVAL", + "website": "https://revivaldefi.com", + "description": "Revival is a BEP-20 Token that gives 11% reflections paid in BNB so you do not have to tap into your RVL holdings to use your reflections!", + "explorer": "https://bscscan.com/token/0x7EaeE60040135F20f508A393ca400dEd339d654e", + "type": "BEP20", + "symbol": "RVL", + "decimals": 9, + "status": "active", + "id": "0x7EaeE60040135F20f508A393ca400dEd339d654e", + "links": [ + { + "name": "github", + "url": "https://github.com/revivaldefitech/" + }, + { + "name": "x", + "url": "https://x.com/revivaldefi" + }, + { + "name": "telegram", + "url": "https://t.me/revivaldefi" + }, + { + "name": "discord", + "url": "https://discord.com/revivaldefi" + }, + { + "name": "whitepaper", + "url": "https://revivaldefi.com/assets/docs/Litepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/revival/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/revival" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7EaeE60040135F20f508A393ca400dEd339d654e/logo.png b/blockchains/smartchain/assets/0x7EaeE60040135F20f508A393ca400dEd339d654e/logo.png new file mode 100644 index 00000000..fec317ea Binary files /dev/null and b/blockchains/smartchain/assets/0x7EaeE60040135F20f508A393ca400dEd339d654e/logo.png differ diff --git a/blockchains/smartchain/assets/0x7Ee7F14427cC41D6dB17829eb57Dc74A26796b9D/info.json b/blockchains/smartchain/assets/0x7Ee7F14427cC41D6dB17829eb57Dc74A26796b9D/info.json new file mode 100644 index 00000000..b0287e01 --- /dev/null +++ b/blockchains/smartchain/assets/0x7Ee7F14427cC41D6dB17829eb57Dc74A26796b9D/info.json @@ -0,0 +1,40 @@ +{ + "name": "MoonRise", + "type": "BEP20", + "symbol": "MOONRISE", + "decimals": 9, + "website": "https://MoonRiseCoin.com", + "description": "MoonRise is the first MoonShot token on BSC, and is also a proprietary and hyper-deflationary buyback token with a suite of new innovations that help increase return for investors. On top of the automated buys from the Whale Wallet upon every market sell, \"Moon Shots\" will be activated at certain milestones using the Whale Wallet's BNB!", + "explorer": "https://bscscan.com/token/0x7Ee7F14427cC41D6dB17829eb57Dc74A26796b9D", + "status": "active", + "id": "0x7Ee7F14427cC41D6dB17829eb57Dc74A26796b9D", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MoonRise_BSC" + }, + { + "name": "telegram", + "url": "https://t.me/MoonRise_BSC" + }, + { + "name": "telegram_news", + "url": "https://t.me/MoonRise_BSC_News" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MoonRise_BSC" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/moonrise" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moonrise/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7Ee7F14427cC41D6dB17829eb57Dc74A26796b9D/logo.png b/blockchains/smartchain/assets/0x7Ee7F14427cC41D6dB17829eb57Dc74A26796b9D/logo.png new file mode 100644 index 00000000..38af60fe Binary files /dev/null and b/blockchains/smartchain/assets/0x7Ee7F14427cC41D6dB17829eb57Dc74A26796b9D/logo.png differ diff --git a/blockchains/smartchain/assets/0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272/info.json b/blockchains/smartchain/assets/0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272/info.json new file mode 100644 index 00000000..857d6877 --- /dev/null +++ b/blockchains/smartchain/assets/0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272/info.json @@ -0,0 +1,28 @@ +{ + "name": "Endless Board Game", + "website": "https://endlessboardgame.com", + "description": "ENG is the main key to the Endless Board Game gaming platform for different P2E games.", + "explorer": "https://bscscan.com/token/0x7eefb6aeb8bc2c1ba6be1d4273ec0758a1321272", + "type": "BEP20", + "symbol": "ENG", + "decimals": 18, + "status": "active", + "id": "0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272", + "links": [ + { + "name": "x", + "url": "https://x.com/EngToken" + }, + { + "name": "telegram", + "url": "https://t.me/endlessbg" + }, + { + "name": "whitepaper", + "url": "https://endlessboardgame.com/Content/ENG%20Whitepaper.pdf" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272/logo.png b/blockchains/smartchain/assets/0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272/logo.png new file mode 100644 index 00000000..311f7db8 Binary files /dev/null and b/blockchains/smartchain/assets/0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272/logo.png differ diff --git a/blockchains/smartchain/assets/0x7F39BcdCa8E0E581c1d43aaa1cB862AA1c8C2047/info.json b/blockchains/smartchain/assets/0x7F39BcdCa8E0E581c1d43aaa1cB862AA1c8C2047/info.json new file mode 100644 index 00000000..e21479a1 --- /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 00000000..44b8abde Binary files /dev/null and b/blockchains/smartchain/assets/0x7F39BcdCa8E0E581c1d43aaa1cB862AA1c8C2047/logo.png differ diff --git a/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/info.json b/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/info.json new file mode 100644 index 00000000..cdae47bc --- /dev/null +++ b/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/info.json @@ -0,0 +1,12 @@ +{ + "name": "BNB pegged YFII.finance Token", + "website": "https://yfii.finance", + "description": "DFI.Money (YFII) is a DeFi platform which aims to build products on aggregated liquidity provision, leveraged trading, automated marketing making.", + "explorer": "https://bscscan.com/token/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5", + "research": "https://research.binance.com/en/projects/dfimoney", + "type": "BEP20", + "symbol": "YFII", + "decimals": 18, + "status": "active", + "id": "0x7F70642d88cf1C4a3a7abb072B53B929b653edA5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/logo.png b/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/logo.png new file mode 100755 index 00000000..8b38b931 Binary files /dev/null and b/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/logo.png differ diff --git a/blockchains/smartchain/assets/0x7F8ba411ECBC0A135d669d5EaE5D15b0Ca0b0ea1/info.json b/blockchains/smartchain/assets/0x7F8ba411ECBC0A135d669d5EaE5D15b0Ca0b0ea1/info.json new file mode 100644 index 00000000..db53998a --- /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 00000000..e525d9b0 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 new file mode 100644 index 00000000..30c98a04 --- /dev/null +++ b/blockchains/smartchain/assets/0x7FA7dF4996AC59F398476892cfB195eD38543520/info.json @@ -0,0 +1,25 @@ +{ + "name": "Wagyuswap.org", + "type": "BEP20", + "symbol": "WAG", + "decimals": 18, + "website": "https://www.wagyuswap.app/", + "description": "Wag is the native currency of Wagyuswap DEX", + "explorer": "https://bscscan.com/token/0x7FA7dF4996AC59F398476892cfB195eD38543520", + "status": "active", + "id": "0x7FA7dF4996AC59F398476892cfB195eD38543520", + "links": [ + { + "name": "x", + "url": "https://x.com/WagyuSwap_app" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wagyuswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/wagyuswap" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7FA7dF4996AC59F398476892cfB195eD38543520/logo.png b/blockchains/smartchain/assets/0x7FA7dF4996AC59F398476892cfB195eD38543520/logo.png new file mode 100644 index 00000000..45e6862e Binary files /dev/null and b/blockchains/smartchain/assets/0x7FA7dF4996AC59F398476892cfB195eD38543520/logo.png differ diff --git a/blockchains/smartchain/assets/0x7FD049EB478b7b216F23299A37bc57EbDf098888/info.json b/blockchains/smartchain/assets/0x7FD049EB478b7b216F23299A37bc57EbDf098888/info.json new file mode 100644 index 00000000..91dde092 --- /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 new file mode 100644 index 00000000..7ce11f6e --- /dev/null +++ b/blockchains/smartchain/assets/0x7a983559e130723B70e45bd637773DbDfD3F71Db/info.json @@ -0,0 +1,25 @@ +{ + "name": "Diamond Boyz Coin", + "type": "BEP20", + "symbol": "DBZ", + "decimals": 18, + "website": "https://dbzcoin.com/", + "description": "DBZ Coin aims to become the leader in payment and verification for authentic jewelry purchases as well as set a standard for a faster remittance systems worldwide. By walking users through how to obtain Diamond Boyz Coin, is also introducing them to a new way to interact with the internet in an entertaining and valuable way.", + "explorer": "https://bscscan.com/token/0x7a983559e130723B70e45bd637773DbDfD3F71Db", + "status": "active", + "id": "0x7a983559e130723B70e45bd637773DbDfD3F71Db", + "links": [ + { + "name": "x", + "url": "https://x.com/johnnydangandco" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/Oawgdtvj3qNiODdh" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/diamond-boyz-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7a983559e130723B70e45bd637773DbDfD3F71Db/logo.png b/blockchains/smartchain/assets/0x7a983559e130723B70e45bd637773DbDfD3F71Db/logo.png new file mode 100644 index 00000000..4daf94f7 Binary files /dev/null and b/blockchains/smartchain/assets/0x7a983559e130723B70e45bd637773DbDfD3F71Db/logo.png differ diff --git a/blockchains/smartchain/assets/0x7aAAA5B10f97321345ACd76945083141bE1C5631/info.json b/blockchains/smartchain/assets/0x7aAAA5B10f97321345ACd76945083141bE1C5631/info.json new file mode 100644 index 00000000..97655246 --- /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 00000000..ec1447e7 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 00000000..09efee72 --- /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 00000000..2d656814 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 00000000..80065cd7 --- /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 00000000..9497e1e5 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 new file mode 100644 index 00000000..5d3f3ce4 --- /dev/null +++ b/blockchains/smartchain/assets/0x7b0b4C304B9149B692c1Acbc9dB4F4a1c17B2B91/info.json @@ -0,0 +1,21 @@ +{ + "name": "Baby Pig Token", + "website": "https://www.babypig.org", + "description": "A token launched for the NFT community, with the spirit of predecessor Pig Token.", + "explorer": "https://bscscan.com/token/0x7b0b4C304B9149B692c1Acbc9dB4F4a1c17B2B91", + "type": "BEP20", + "symbol": "BabyPig", + "decimals": 9, + "status": "active", + "id": "0x7b0b4C304B9149B692c1Acbc9dB4F4a1c17B2B91", + "links": [ + { + "name": "x", + "url": "https://x.com/BabyPigToken/status/1402976455219310602?s=24" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/QQRxmiTXZZ8wNTdl" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7b0b4C304B9149B692c1Acbc9dB4F4a1c17B2B91/logo.png b/blockchains/smartchain/assets/0x7b0b4C304B9149B692c1Acbc9dB4F4a1c17B2B91/logo.png new file mode 100644 index 00000000..fdde7de5 Binary files /dev/null and b/blockchains/smartchain/assets/0x7b0b4C304B9149B692c1Acbc9dB4F4a1c17B2B91/logo.png differ diff --git a/blockchains/smartchain/assets/0x7b5beB86af822125762bd0E9eb0Df3154ffbF640/info.json b/blockchains/smartchain/assets/0x7b5beB86af822125762bd0E9eb0Df3154ffbF640/info.json new file mode 100644 index 00000000..6eff4df0 --- /dev/null +++ b/blockchains/smartchain/assets/0x7b5beB86af822125762bd0E9eb0Df3154ffbF640/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeDoge", + "website": "https://safedoge.dog", + "description": "SAFEDOGE is a Frictionless Yield Generation DEFI protocol on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x7b5beb86af822125762bd0e9eb0df3154ffbf640", + "type": "BEP20", + "symbol": "SAFEDOGE", + "decimals": 9, + "status": "active", + "id": "0x7b5beB86af822125762bd0E9eb0Df3154ffbF640" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7b5beB86af822125762bd0E9eb0Df3154ffbF640/logo.png b/blockchains/smartchain/assets/0x7b5beB86af822125762bd0E9eb0Df3154ffbF640/logo.png new file mode 100644 index 00000000..0df9ef9d Binary files /dev/null and b/blockchains/smartchain/assets/0x7b5beB86af822125762bd0E9eb0Df3154ffbF640/logo.png differ diff --git a/blockchains/smartchain/assets/0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86/info.json b/blockchains/smartchain/assets/0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86/info.json new file mode 100644 index 00000000..98f6c25a --- /dev/null +++ b/blockchains/smartchain/assets/0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86/info.json @@ -0,0 +1,60 @@ +{ + "name": "Amazy Token", + "type": "BEP20", + "symbol": "AZY", + "decimals": 18, + "website": "https://amazy.io", + "description": "AMAZY is a crypto fitness app with two main courses: to Move and to Earn by equipping NFT sneakers, uniting the ideas of a healthy lifestyle and profiting simultaneously. The project focuses on becoming the ecosystem, called the AMAZY Realverse, focusing on a healthy lifestyle.", + "explorer": "https://bscscan.com/token/0x7b665b2f633d9363b89a98b094b1f9e732bd8f86", + "status": "active", + "id": "0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86", + "links": [ + { + "name": "x", + "url": "https://x.com/amazyio" + }, + { + "name": "github", + "url": "https://github.com/amazy-io" + }, + { + "name": "telegram", + "url": "https://t.me/amazyio_en" + }, + { + "name": "telegram_news", + "url": "https://t.me/amazyio" + }, + { + "name": "blog", + "url": "https://medium.com/@amazy" + }, + { + "name": "discord", + "url": "https://discord.com/invite/amazyio" + }, + { + "name": "whitepaper", + "url": "https://amazy-1.gitbook.io/whitepaper/" + }, + { + "name": "medium", + "url": "https://medium.com/@amazy" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCZmUQmMOzxqXO11BKiBrZfw" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/amazy/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/amazy" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86/logo.png b/blockchains/smartchain/assets/0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86/logo.png new file mode 100644 index 00000000..f1987647 Binary files /dev/null and b/blockchains/smartchain/assets/0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86/logo.png differ diff --git a/blockchains/smartchain/assets/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd/info.json b/blockchains/smartchain/assets/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd/info.json new file mode 100644 index 00000000..80c4e77d --- /dev/null +++ b/blockchains/smartchain/assets/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd/info.json @@ -0,0 +1,40 @@ +{ + "name": "iMe Lab", + "type": "BEP20", + "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://bscscan.com/token/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd", + "status": "active", + "id": "0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd", + "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/smartchain/assets/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd/logo.png b/blockchains/smartchain/assets/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd/logo.png new file mode 100644 index 00000000..533446f2 Binary files /dev/null and b/blockchains/smartchain/assets/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd/logo.png differ diff --git a/blockchains/smartchain/assets/0x7ba2710210b525AA5b90b4Dee4cC781dAD8Aec49/info.json b/blockchains/smartchain/assets/0x7ba2710210b525AA5b90b4Dee4cC781dAD8Aec49/info.json new file mode 100644 index 00000000..6ee99f5f --- /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 00000000..b09d5f63 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 new file mode 100644 index 00000000..853ba578 --- /dev/null +++ b/blockchains/smartchain/assets/0x7bb362962F2a4E2089466C79566572B37CFc5D78/info.json @@ -0,0 +1,30 @@ +{ + "name": "Bafe.io", + "website": "https://bafe.io", + "description": "Self generating liquidity token - Reflection paid back to holders.", + "explorer": "https://bscscan.com/token/0x7bb362962F2a4E2089466C79566572B37CFc5D78", + "research": "", + "type": "BEP20", + "symbol": "BAFE", + "decimals": 9, + "status": "active", + "id": "0x7bb362962F2a4E2089466C79566572B37CFc5D78", + "links": [ + { + "name": "x", + "url": "https://x.com/Bafeio" + }, + { + "name": "telegram", + "url": "https://t.me/bafeio" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZFR6MrB6Vg" + }, + { + "name": "medium", + "url": "https://bafe-io.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7bb362962F2a4E2089466C79566572B37CFc5D78/logo.png b/blockchains/smartchain/assets/0x7bb362962F2a4E2089466C79566572B37CFc5D78/logo.png new file mode 100644 index 00000000..c0e466b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x7bb362962F2a4E2089466C79566572B37CFc5D78/logo.png differ diff --git a/blockchains/smartchain/assets/0x7bd6FaBD64813c48545C9c0e312A0099d9be2540/info.json b/blockchains/smartchain/assets/0x7bd6FaBD64813c48545C9c0e312A0099d9be2540/info.json new file mode 100644 index 00000000..6e489c17 --- /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 00000000..87fb6982 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 new file mode 100644 index 00000000..9c14dadd --- /dev/null +++ b/blockchains/smartchain/assets/0x7c1608C004F20c3520f70b924E2BfeF092dA0043/info.json @@ -0,0 +1,41 @@ +{ + "name": "CZFarm", + "type": "BEP20", + "symbol": "CZF", + "decimals": 18, + "website": "https://czodiac.com", + "description": "Defi ecosystem by CZodiac with farms, pools, NFTs, stablecoin borrowing, and the best APR on BSC.", + "explorer": "https://bscscan.com/token/0x7c1608C004F20c3520f70b924E2BfeF092dA0043", + "status": "active", + "id": "0x7c1608C004F20c3520f70b924E2BfeF092dA0043", + "links": [ + { + "name": "x", + "url": "https://x.com/zodiacs_c" + }, + { + "name": "github", + "url": "https://github.com/chinese-zodiac/czodiac" + }, + { + "name": "telegram", + "url": "https://t.me/CZodiacofficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/CZodiacANN" + }, + { + "name": "whitepaper", + "url": "https://czodiac.gitbook.io/czodiac-litepapper/" + }, + { + "name": "medium", + "url": "https://czodiacs.medium.com/" + }, + { + "name": "discord", + "url": "https://discord.com/FEpu3xF2Hb" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7c1608C004F20c3520f70b924E2BfeF092dA0043/logo.png b/blockchains/smartchain/assets/0x7c1608C004F20c3520f70b924E2BfeF092dA0043/logo.png new file mode 100644 index 00000000..614ecf18 Binary files /dev/null and b/blockchains/smartchain/assets/0x7c1608C004F20c3520f70b924E2BfeF092dA0043/logo.png differ diff --git a/blockchains/smartchain/assets/0x7c63F96fEAFACD84e75a594C00faC3693386FBf0/info.json b/blockchains/smartchain/assets/0x7c63F96fEAFACD84e75a594C00faC3693386FBf0/info.json new file mode 100644 index 00000000..35f50d29 --- /dev/null +++ b/blockchains/smartchain/assets/0x7c63F96fEAFACD84e75a594C00faC3693386FBf0/info.json @@ -0,0 +1,11 @@ +{ + "name": "ASS", + "type": "BEP20", + "symbol": "ASS", + "decimals": 9, + "website": "https://assfinance.com", + "description": "$ASS is a community meme token with safemoon tokenomics here to be the new financial standard on BSC. Slam Some $ASS With Us!", + "explorer": "https://bscscan.com/token/0x7c63F96fEAFACD84e75a594C00faC3693386FBf0", + "status": "active", + "id": "0x7c63F96fEAFACD84e75a594C00faC3693386FBf0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7c63F96fEAFACD84e75a594C00faC3693386FBf0/logo.png b/blockchains/smartchain/assets/0x7c63F96fEAFACD84e75a594C00faC3693386FBf0/logo.png new file mode 100644 index 00000000..a3ca9d13 Binary files /dev/null and b/blockchains/smartchain/assets/0x7c63F96fEAFACD84e75a594C00faC3693386FBf0/logo.png differ diff --git a/blockchains/smartchain/assets/0x7c67DCCb04b67d4666fd97B2a00bb6D9B8D82E3F/info.json b/blockchains/smartchain/assets/0x7c67DCCb04b67d4666fd97B2a00bb6D9B8D82E3F/info.json new file mode 100644 index 00000000..c3071c74 --- /dev/null +++ b/blockchains/smartchain/assets/0x7c67DCCb04b67d4666fd97B2a00bb6D9B8D82E3F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Goatcoin", + "type": "BEP20", + "symbol": "GOAT", + "decimals": 18, + "website": "https://goatcoin.xyz", + "description": "Goatcoin - The governance and reward token of Goatcha.io | an NFT marketplace platform on BSC.", + "explorer": "https://bscscan.com/token/0x7c67DCCb04b67d4666fd97B2a00bb6D9B8D82E3F", + "status": "active", + "id": "0x7c67DCCb04b67d4666fd97B2a00bb6D9B8D82E3F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7c67DCCb04b67d4666fd97B2a00bb6D9B8D82E3F/logo.png b/blockchains/smartchain/assets/0x7c67DCCb04b67d4666fd97B2a00bb6D9B8D82E3F/logo.png new file mode 100644 index 00000000..9646030f Binary files /dev/null and b/blockchains/smartchain/assets/0x7c67DCCb04b67d4666fd97B2a00bb6D9B8D82E3F/logo.png differ diff --git a/blockchains/smartchain/assets/0x7c73967dC8c804Ea028247f5A953052f0CD5Fd58/info.json b/blockchains/smartchain/assets/0x7c73967dC8c804Ea028247f5A953052f0CD5Fd58/info.json new file mode 100644 index 00000000..53e71a33 --- /dev/null +++ b/blockchains/smartchain/assets/0x7c73967dC8c804Ea028247f5A953052f0CD5Fd58/info.json @@ -0,0 +1,36 @@ +{ + "name": "CyBloc Battery Token", + "website": "https://cyball.com", + "description": "CyBloc Battery Token is CyBall's primary Play-to-Earn reward and utility token with no fixed supply.", + "explorer": "https://bscscan.com/token/0x7c73967dc8c804ea028247f5a953052f0cd5fd58", + "type": "BEP20", + "symbol": "CBT", + "decimals": 18, + "status": "active", + "id": "0x7c73967dC8c804Ea028247f5A953052f0CD5Fd58", + "tags": [ + "gamefi" + ], + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/cyball" + }, + { + "name": "blog", + "url": "https://blog.cyball.com/" + }, + { + "name": "x", + "url": "https://x.com/CyBallOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/cyballofficial" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cybloc-battery-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7c73967dC8c804Ea028247f5A953052f0CD5Fd58/logo.png b/blockchains/smartchain/assets/0x7c73967dC8c804Ea028247f5A953052f0CD5Fd58/logo.png new file mode 100644 index 00000000..b9b7bb08 Binary files /dev/null and b/blockchains/smartchain/assets/0x7c73967dC8c804Ea028247f5A953052f0CD5Fd58/logo.png differ diff --git a/blockchains/smartchain/assets/0x7cE4AcCd9bb261508ABd20B134D6278902369057/info.json b/blockchains/smartchain/assets/0x7cE4AcCd9bb261508ABd20B134D6278902369057/info.json new file mode 100644 index 00000000..b91fd4a2 --- /dev/null +++ b/blockchains/smartchain/assets/0x7cE4AcCd9bb261508ABd20B134D6278902369057/info.json @@ -0,0 +1,11 @@ +{ + "name": "AINORI", + "type": "BEP20", + "symbol": "AIN", + "decimals": 18, + "website": "https://mycoinget.com/", + "description": "AINORI is develops various platforms such as Mining, Staking, Yield Farming, Binary Options, etc. called MyCoinGet. TAMAGO, which can be obtained from MyCoinGet mining,", + "explorer": "https://bscscan.com/token/0x7cE4AcCd9bb261508ABd20B134D6278902369057", + "status": "active", + "id": "0x7cE4AcCd9bb261508ABd20B134D6278902369057" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7cE4AcCd9bb261508ABd20B134D6278902369057/logo.png b/blockchains/smartchain/assets/0x7cE4AcCd9bb261508ABd20B134D6278902369057/logo.png new file mode 100644 index 00000000..c03179f1 Binary files /dev/null and b/blockchains/smartchain/assets/0x7cE4AcCd9bb261508ABd20B134D6278902369057/logo.png differ diff --git a/blockchains/smartchain/assets/0x7cF551258d6871b72EE1bD1624588a6245bF48c4/info.json b/blockchains/smartchain/assets/0x7cF551258d6871b72EE1bD1624588a6245bF48c4/info.json new file mode 100644 index 00000000..f4e52c10 --- /dev/null +++ b/blockchains/smartchain/assets/0x7cF551258d6871b72EE1bD1624588a6245bF48c4/info.json @@ -0,0 +1,28 @@ +{ + "name": "ChitCAT", + "website": "https://chitcat.io", + "description": "ChitCAT is a decentralized messaging dApp that utilizes blockchain technology and the IBC protocol to offer secure communication solutions.", + "explorer": "https://bscscan.com/token/0x7cF551258d6871b72EE1bD1624588a6245bF48c4", + "type": "BEP20", + "symbol": "CHITCAT", + "decimals": 18, + "status": "active", + "id": "0x7cF551258d6871b72EE1bD1624588a6245bF48c4", + "tags": [ + "memes" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/Chitcat_chat" + }, + { + "name": "x", + "url": "https://x.com/Chitcat_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chitcat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7cF551258d6871b72EE1bD1624588a6245bF48c4/logo.png b/blockchains/smartchain/assets/0x7cF551258d6871b72EE1bD1624588a6245bF48c4/logo.png new file mode 100644 index 00000000..2e905684 Binary files /dev/null and b/blockchains/smartchain/assets/0x7cF551258d6871b72EE1bD1624588a6245bF48c4/logo.png differ diff --git a/blockchains/smartchain/assets/0x7ccE94C0B2C8aE7661f02544E62178377Fe8cF92/info.json b/blockchains/smartchain/assets/0x7ccE94C0B2C8aE7661f02544E62178377Fe8cF92/info.json new file mode 100644 index 00000000..acd03093 --- /dev/null +++ b/blockchains/smartchain/assets/0x7ccE94C0B2C8aE7661f02544E62178377Fe8cF92/info.json @@ -0,0 +1,14 @@ +{ + "name": "Daddy Doge", + "type": "BEP20", + "symbol": "DaddyDoge", + "decimals": 9, + "website": "https://daddydoge.finance/", + "description": "Daddy Doge is a deflationary token based on the world renowned Doge meme. Each transaction carries a 9% benefiting holders by reflecting tokens, adding to the liquidity pool and adding to the marketing budget to ensure long term success.", + "explorer": "https://bscscan.com/token/0x7ccE94C0B2C8aE7661f02544E62178377Fe8cF92", + "status": "active", + "id": "0x7ccE94C0B2C8aE7661f02544E62178377Fe8cF92", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7ccE94C0B2C8aE7661f02544E62178377Fe8cF92/logo.png b/blockchains/smartchain/assets/0x7ccE94C0B2C8aE7661f02544E62178377Fe8cF92/logo.png new file mode 100644 index 00000000..0a292d04 Binary files /dev/null and b/blockchains/smartchain/assets/0x7ccE94C0B2C8aE7661f02544E62178377Fe8cF92/logo.png differ diff --git a/blockchains/smartchain/assets/0x7ce1e651374ec5324e6f37c4ff312D53428F0D50/info.json b/blockchains/smartchain/assets/0x7ce1e651374ec5324e6f37c4ff312D53428F0D50/info.json new file mode 100644 index 00000000..e7d54bae --- /dev/null +++ b/blockchains/smartchain/assets/0x7ce1e651374ec5324e6f37c4ff312D53428F0D50/info.json @@ -0,0 +1,11 @@ +{ + "name": "Caramel Swap", + "website": "https://caramelswap.finance", + "description": "CaramelSwap.finance - 3° generation Yield Farm on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x7ce1e651374ec5324e6f37c4ff312D53428F0D50", + "type": "BEP20", + "symbol": "MEL", + "decimals": 18, + "status": "active", + "id": "0x7ce1e651374ec5324e6f37c4ff312D53428F0D50" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7ce1e651374ec5324e6f37c4ff312D53428F0D50/logo.png b/blockchains/smartchain/assets/0x7ce1e651374ec5324e6f37c4ff312D53428F0D50/logo.png new file mode 100644 index 00000000..2d4fea61 Binary files /dev/null and b/blockchains/smartchain/assets/0x7ce1e651374ec5324e6f37c4ff312D53428F0D50/logo.png differ diff --git a/blockchains/smartchain/assets/0x7d0FA3b5771D9A71b188F9fF3D2ebaABf3faF299/info.json b/blockchains/smartchain/assets/0x7d0FA3b5771D9A71b188F9fF3D2ebaABf3faF299/info.json new file mode 100644 index 00000000..b284eb40 --- /dev/null +++ b/blockchains/smartchain/assets/0x7d0FA3b5771D9A71b188F9fF3D2ebaABf3faF299/info.json @@ -0,0 +1,33 @@ +{ + "name": "OMINO", + "type": "BEP20", + "symbol": "OMINO", + "decimals": 18, + "website": "https://omino.finance", + "description": "A community-built algorithmic and autonomous interest rate protocol for Yield Farmers", + "explorer": "https://bscscan.com/token/0x7d0FA3b5771D9A71b188F9fF3D2ebaABf3faF299", + "status": "active", + "id": "0x7d0FA3b5771D9A71b188F9fF3D2ebaABf3faF299", + "links": [ + { + "name": "x", + "url": "https://x.com/FinanceOmino" + }, + { + "name": "github", + "url": "https://github.com/ominofinance" + }, + { + "name": "telegram", + "url": "https://t.me/ominofinance" + }, + { + "name": "telegram_news", + "url": "https://t.me/ominofinancenews" + }, + { + "name": "blog", + "url": "https://medium.com/@ominofinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7d0FA3b5771D9A71b188F9fF3D2ebaABf3faF299/logo.png b/blockchains/smartchain/assets/0x7d0FA3b5771D9A71b188F9fF3D2ebaABf3faF299/logo.png new file mode 100644 index 00000000..80bf64b5 Binary files /dev/null and b/blockchains/smartchain/assets/0x7d0FA3b5771D9A71b188F9fF3D2ebaABf3faF299/logo.png differ diff --git a/blockchains/smartchain/assets/0x7d220240Cf958C5c47f2DAAC821dB965f9837e82/info.json b/blockchains/smartchain/assets/0x7d220240Cf958C5c47f2DAAC821dB965f9837e82/info.json new file mode 100644 index 00000000..24971074 --- /dev/null +++ b/blockchains/smartchain/assets/0x7d220240Cf958C5c47f2DAAC821dB965f9837e82/info.json @@ -0,0 +1,44 @@ +{ + "name": "WEB5 Inu", + "type": "BEP20", + "symbol": "WEB5", + "decimals": 9, + "website": "https://web5inu.org", + "description": "WEB5 INU aim to develop BNB Chain Charting Solution with WEB5 Identity enables developers to leverage Decentralized Identifiers", + "explorer": "https://bscscan.com/token/0x7d220240cf958c5c47f2daac821db965f9837e82", + "status": "active", + "id": "0x7d220240Cf958C5c47f2DAAC821dB965f9837e82", + "links": [ + { + "name": "x", + "url": "https://x.com/web5inu" + }, + { + "name": "github", + "url": "https://github.com/web5inu" + }, + { + "name": "telegram", + "url": "https://t.me/web5_global" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/web5-inu/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x7d220240cf958c5c47f2daac821db965f9837e82#code" + }, + { + "name": "whitepaper", + "url": "https://web5inu.org/assets/web5_inu_whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@Web5inu" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7d220240Cf958C5c47f2DAAC821dB965f9837e82/logo.png b/blockchains/smartchain/assets/0x7d220240Cf958C5c47f2DAAC821dB965f9837e82/logo.png new file mode 100644 index 00000000..71b5ec9c Binary files /dev/null and b/blockchains/smartchain/assets/0x7d220240Cf958C5c47f2DAAC821dB965f9837e82/logo.png differ diff --git a/blockchains/smartchain/assets/0x7d38315b92d0E7A85B35B2b7FE969B25935619D7/info.json b/blockchains/smartchain/assets/0x7d38315b92d0E7A85B35B2b7FE969B25935619D7/info.json new file mode 100644 index 00000000..f8dc7696 --- /dev/null +++ b/blockchains/smartchain/assets/0x7d38315b92d0E7A85B35B2b7FE969B25935619D7/info.json @@ -0,0 +1,67 @@ +{ + "name": "Ecoin Finance", + "type": "BEP20", + "symbol": "ECOIN", + "decimals": 18, + "website": "https://ecoin-finance.com/", + "description": "Ecoin Finance is a decentralized & deflationary BEP20 token powered by 'BNB Chain' network that will be an online payment platform replacing the fiat currency through our integrated debit card. People around the world will be able to make easy, fast, and secure payments using your ECOIN balance.", + "explorer": "https://bscscan.com/token/0x7d38315b92d0e7a85b35b2b7fe969b25935619d7", + "status": "active", + "id": "0x7d38315b92d0E7A85B35B2b7FE969B25935619D7", + "links": [ + { + "name": "x", + "url": "https://x.com/ecoin_finance_" + }, + { + "name": "telegram", + "url": "https://t.me/Ecoin_token" + }, + { + "name": "telegram_news", + "url": "https://t.me/EcoinFinanceOfficial" + }, + { + "name": "whitepaper", + "url": "https://ecoin-finance.com/files/white-paper-ecoin-finance-v2.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/ecoin.finance" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/ECoinFinance/videos" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x7d38315b92d0e7a85b35b2b7fe969b25935619d7#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/e-coin-finance-new/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ecoin-finance" + }, + { + "name": "medium", + "url": "https://medium.com/@ecoin.finance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/n5RK7JxDkX" + }, + { + "name": "docs", + "url": "https://ecoin-finance.com/articles/en/" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7d38315b92d0E7A85B35B2b7FE969B25935619D7/logo.png b/blockchains/smartchain/assets/0x7d38315b92d0E7A85B35B2b7FE969B25935619D7/logo.png new file mode 100644 index 00000000..7324dcc1 Binary files /dev/null and b/blockchains/smartchain/assets/0x7d38315b92d0E7A85B35B2b7FE969B25935619D7/logo.png differ diff --git a/blockchains/smartchain/assets/0x7d6b35ffBCbB8C59c34e4A58D10Bf81654e6Ff6d/info.json b/blockchains/smartchain/assets/0x7d6b35ffBCbB8C59c34e4A58D10Bf81654e6Ff6d/info.json new file mode 100644 index 00000000..e2358d0e --- /dev/null +++ b/blockchains/smartchain/assets/0x7d6b35ffBCbB8C59c34e4A58D10Bf81654e6Ff6d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Matrix", + "website": "https://matrixtoken.org", + "description": "Decentralized Defi Finance in MATRIX.", + "explorer": "https://bscscan.com/token/0x7d6b35ffBCbB8C59c34e4A58D10Bf81654e6Ff6d", + "type": "BEP20", + "symbol": "MATR", + "decimals": 8, + "status": "active", + "id": "0x7d6b35ffBCbB8C59c34e4A58D10Bf81654e6Ff6d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7d6b35ffBCbB8C59c34e4A58D10Bf81654e6Ff6d/logo.png b/blockchains/smartchain/assets/0x7d6b35ffBCbB8C59c34e4A58D10Bf81654e6Ff6d/logo.png new file mode 100644 index 00000000..e67ade39 Binary files /dev/null and b/blockchains/smartchain/assets/0x7d6b35ffBCbB8C59c34e4A58D10Bf81654e6Ff6d/logo.png differ diff --git a/blockchains/smartchain/assets/0x7d814b9eD370Ec0a502EdC3267393bF62d891B62/info.json b/blockchains/smartchain/assets/0x7d814b9eD370Ec0a502EdC3267393bF62d891B62/info.json new file mode 100644 index 00000000..f835e68f --- /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 00000000..4de8e645 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 new file mode 100644 index 00000000..70cfe423 --- /dev/null +++ b/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/info.json @@ -0,0 +1,29 @@ +{ + "name": "pTokens GALA", + "website": "https://gala.games/", + "description": "Gala Games is dedicated to decentralizing the multi-billion dollar gaming industry by giving players access to their in-game items.", + "explorer": "https://bscscan.com/token/0x7dDEE176F665cD201F93eEDE625770E2fD911990", + "type": "BEP20", + "symbol": "GALA", + "decimals": 18, + "status": "abandoned", + "id": "0x7dDEE176F665cD201F93eEDE625770E2fD911990", + "tags": [ + "nft", + "gamefi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/GoGalaGames" + }, + { + "name": "x", + "url": "https://x.com/GoGalaGames" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gala/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json b/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json new file mode 100644 index 00000000..cd5e96a7 --- /dev/null +++ b/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json @@ -0,0 +1,48 @@ +{ + "name": "Volt Inu", + "type": "BEP20", + "symbol": "VOLT", + "decimals": 9, + "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": "abandoned", + "id": "0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", + "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": "medium", + "url": "https://medium.com/@VoltInu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/volt-inu-v2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/volt-inu" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCDLlAleEEmhc7pVdB5pZWFg" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7e2AFE446A30fA67600a5174Df7f4002B8E15B03/info.json b/blockchains/smartchain/assets/0x7e2AFE446A30fA67600a5174Df7f4002B8E15B03/info.json new file mode 100644 index 00000000..84bebe53 --- /dev/null +++ b/blockchains/smartchain/assets/0x7e2AFE446A30fA67600a5174Df7f4002B8E15B03/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ormeus Coin", + "website": "https://ormeuscoin.com/", + "description": "Ormeus Coin is a new digital money system backed by an industrial crypto mining operation.", + "explorer": "https://bscscan.com/token/0x7e2AFE446A30fA67600a5174Df7f4002B8E15B03", + "type": "BEP20", + "symbol": "ORME", + "decimals": 18, + "status": "active", + "id": "0x7e2AFE446A30fA67600a5174Df7f4002B8E15B03" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7e2AFE446A30fA67600a5174Df7f4002B8E15B03/logo.png b/blockchains/smartchain/assets/0x7e2AFE446A30fA67600a5174Df7f4002B8E15B03/logo.png new file mode 100644 index 00000000..b309bc3a Binary files /dev/null and b/blockchains/smartchain/assets/0x7e2AFE446A30fA67600a5174Df7f4002B8E15B03/logo.png differ diff --git a/blockchains/smartchain/assets/0x7e2d99B3b4854E741dC6ada101937A1a3aAb861e/info.json b/blockchains/smartchain/assets/0x7e2d99B3b4854E741dC6ada101937A1a3aAb861e/info.json new file mode 100644 index 00000000..9681c9fe --- /dev/null +++ b/blockchains/smartchain/assets/0x7e2d99B3b4854E741dC6ada101937A1a3aAb861e/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEG Wrapped DOT", + "website": "https://fegtoken.com", + "description": "FEG Wrapped DOT", + "explorer": "https://bscscan.com/token/0x7e2d99b3b4854e741dc6ada101937a1a3aab861e", + "type": "BEP20", + "symbol": "fDOT", + "decimals": 18, + "status": "active", + "id": "0x7e2d99B3b4854E741dC6ada101937A1a3aAb861e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7e2d99B3b4854E741dC6ada101937A1a3aAb861e/logo.png b/blockchains/smartchain/assets/0x7e2d99B3b4854E741dC6ada101937A1a3aAb861e/logo.png new file mode 100644 index 00000000..75a93b6a Binary files /dev/null and b/blockchains/smartchain/assets/0x7e2d99B3b4854E741dC6ada101937A1a3aAb861e/logo.png differ diff --git a/blockchains/smartchain/assets/0x7e396BfC8a2f84748701167c2d622F041A1D7a17/info.json b/blockchains/smartchain/assets/0x7e396BfC8a2f84748701167c2d622F041A1D7a17/info.json new file mode 100644 index 00000000..4bfd0f35 --- /dev/null +++ b/blockchains/smartchain/assets/0x7e396BfC8a2f84748701167c2d622F041A1D7a17/info.json @@ -0,0 +1,11 @@ +{ + "name": "WMASS Token", + "website": "https://wmass.org/", + "description": "WMASS standardizes MASS to the BEP 20 format. The platform supports 1:1 conversion of MASS to tokens such as BEP 20. Wrapped MASS (WMASS) is the first wrapped token backed 1:1 by MASS. It's fully transparent, 100% verifiable and community led.", + "explorer": "https://bscscan.com/token/0x7e396BfC8a2f84748701167c2d622F041A1D7a17", + "type": "BEP20", + "symbol": "WMASS", + "decimals": 8, + "status": "active", + "id": "0x7e396BfC8a2f84748701167c2d622F041A1D7a17" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7e396BfC8a2f84748701167c2d622F041A1D7a17/logo.png b/blockchains/smartchain/assets/0x7e396BfC8a2f84748701167c2d622F041A1D7a17/logo.png new file mode 100644 index 00000000..7e93be98 Binary files /dev/null and b/blockchains/smartchain/assets/0x7e396BfC8a2f84748701167c2d622F041A1D7a17/logo.png differ diff --git a/blockchains/smartchain/assets/0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1/info.json b/blockchains/smartchain/assets/0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1/info.json new file mode 100644 index 00000000..875e7709 --- /dev/null +++ b/blockchains/smartchain/assets/0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1/info.json @@ -0,0 +1,33 @@ +{ + "name": "cybertronchain", + "website": "https://cybertronchain.com/beta/", + "description": "CYBERTRON is redefining the way payments move, consume and use real life. We are supporting the fee and future of the economy.", + "explorer": "https://bscscan.com/token/0x7e41e454b6a29c54e4cdb565e47542f4bcb37ef1", + "research": "https://cybertronchain.medium.com/", + "symbol": "CTC(TM)", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/Hansblock/cybertronchain/" + }, + { + "name": "x", + "url": "https://x.com/cybertronchain" + }, + { + "name": "telegram", + "url": "https://t.me/CTCglobal" + }, + { + "name": "whitepaper", + "url": "https://cybertronchain.com/beta/page6.php" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1/logo.png b/blockchains/smartchain/assets/0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1/logo.png new file mode 100644 index 00000000..795c86be Binary files /dev/null and b/blockchains/smartchain/assets/0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1/logo.png differ diff --git a/blockchains/smartchain/assets/0x7e4e3BA4675c39FF2863073e171b0a2E93A592E0/info.json b/blockchains/smartchain/assets/0x7e4e3BA4675c39FF2863073e171b0a2E93A592E0/info.json new file mode 100644 index 00000000..af4de0da --- /dev/null +++ b/blockchains/smartchain/assets/0x7e4e3BA4675c39FF2863073e171b0a2E93A592E0/info.json @@ -0,0 +1,11 @@ +{ + "name": "ShibaCash Token", + "website": "https://www.shibacashtoken.com/", + "description": "We are the original Shiba Cash token on Binance Smart Chain, the same tokenomics as the original Shiba Inu with no gimmicks!", + "explorer": "https://bscscan.com/token/0x7e4e3BA4675c39FF2863073e171b0a2E93A592E0", + "type": "BEP20", + "symbol": "SHIBACASH", + "decimals": 9, + "status": "active", + "id": "0x7e4e3BA4675c39FF2863073e171b0a2E93A592E0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7e4e3BA4675c39FF2863073e171b0a2E93A592E0/logo.png b/blockchains/smartchain/assets/0x7e4e3BA4675c39FF2863073e171b0a2E93A592E0/logo.png new file mode 100644 index 00000000..45ad2f44 Binary files /dev/null and b/blockchains/smartchain/assets/0x7e4e3BA4675c39FF2863073e171b0a2E93A592E0/logo.png differ diff --git a/blockchains/smartchain/assets/0x7e52a123Ed6DB6Ac872A875552935fBbD2544c86/info.json b/blockchains/smartchain/assets/0x7e52a123Ed6DB6Ac872A875552935fBbD2544c86/info.json new file mode 100644 index 00000000..c759a961 --- /dev/null +++ b/blockchains/smartchain/assets/0x7e52a123Ed6DB6Ac872A875552935fBbD2544c86/info.json @@ -0,0 +1,11 @@ +{ + "name": "SYL", + "type": "BEP20", + "symbol": "SYL", + "decimals": 6, + "website": "https://www.xsl-labs.io/", + "description": "SYL Token by XSL Labs: Decentralized Identity & Data Privacy", + "explorer": "https://bscscan.com/token/0x7e52a123Ed6DB6Ac872A875552935fBbD2544c86", + "status": "active", + "id": "0x7e52a123Ed6DB6Ac872A875552935fBbD2544c86" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7e52a123Ed6DB6Ac872A875552935fBbD2544c86/logo.png b/blockchains/smartchain/assets/0x7e52a123Ed6DB6Ac872A875552935fBbD2544c86/logo.png new file mode 100644 index 00000000..08448710 Binary files /dev/null and b/blockchains/smartchain/assets/0x7e52a123Ed6DB6Ac872A875552935fBbD2544c86/logo.png differ diff --git a/blockchains/smartchain/assets/0x7e8DB69dcff9209E486a100e611B0af300c3374e/info.json b/blockchains/smartchain/assets/0x7e8DB69dcff9209E486a100e611B0af300c3374e/info.json new file mode 100644 index 00000000..76e09632 --- /dev/null +++ b/blockchains/smartchain/assets/0x7e8DB69dcff9209E486a100e611B0af300c3374e/info.json @@ -0,0 +1,33 @@ +{ + "name": "Traders Coin", + "website": "https://trdctoken.com", + "description": "TRDC is a decentralized platform project of cryptocurrencies trading where users get full control of their money.", + "explorer": "https://bscscan.com/token/0x7e8DB69dcff9209E486a100e611B0af300c3374e", + "type": "BEP20", + "symbol": "TRDC", + "decimals": 18, + "status": "active", + "id": "0x7e8DB69dcff9209E486a100e611B0af300c3374e", + "links": [ + { + "name": "x", + "url": "https://x.com/TradersCoinTRDC" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/traderscoinTRDC/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/traders-coin/" + }, + { + "name": "telegram", + "url": "https://t.me/trdc_family" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/traders-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7e8DB69dcff9209E486a100e611B0af300c3374e/logo.png b/blockchains/smartchain/assets/0x7e8DB69dcff9209E486a100e611B0af300c3374e/logo.png new file mode 100644 index 00000000..eff39d34 Binary files /dev/null and b/blockchains/smartchain/assets/0x7e8DB69dcff9209E486a100e611B0af300c3374e/logo.png differ diff --git a/blockchains/smartchain/assets/0x7e9AB560d37E62883E882474b096643caB234B65/info.json b/blockchains/smartchain/assets/0x7e9AB560d37E62883E882474b096643caB234B65/info.json new file mode 100644 index 00000000..aeccafbb --- /dev/null +++ b/blockchains/smartchain/assets/0x7e9AB560d37E62883E882474b096643caB234B65/info.json @@ -0,0 +1,37 @@ +{ + "name": "Ultimate Champions Token", + "type": "BEP20", + "symbol": "CHAMP", + "decimals": 18, + "website": "https://token.ultimate-champions.com/", + "description": "Ultimate Champions is a free to play and play to earn fantasy sports game.", + "explorer": "https://bscscan.com/token/0x7e9AB560d37E62883E882474b096643caB234B65", + "status": "active", + "id": "0x7e9AB560d37E62883E882474b096643caB234B65", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ultimate-champions/" + }, + { + "name": "x", + "url": "https://x.com/UltiChamps" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.ultimate-champions.com/" + }, + { + "name": "medium", + "url": "https://ultimatechampions.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/ultimatechampions" + } + ], + "tags": [ + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7e9AB560d37E62883E882474b096643caB234B65/logo.png b/blockchains/smartchain/assets/0x7e9AB560d37E62883E882474b096643caB234B65/logo.png new file mode 100644 index 00000000..a16cde4b Binary files /dev/null and b/blockchains/smartchain/assets/0x7e9AB560d37E62883E882474b096643caB234B65/logo.png differ diff --git a/blockchains/smartchain/assets/0x7f05907CDe5C540bE2e572FDD488994ee15d67a3/info.json b/blockchains/smartchain/assets/0x7f05907CDe5C540bE2e572FDD488994ee15d67a3/info.json new file mode 100644 index 00000000..6b542c9e --- /dev/null +++ b/blockchains/smartchain/assets/0x7f05907CDe5C540bE2e572FDD488994ee15d67a3/info.json @@ -0,0 +1,11 @@ +{ + "name": "IRONY MAN", + "type": "BEP20", + "symbol": "IRONY", + "decimals": 9, + "website": "https://ironyman.cc/", + "description": "IRONY MAN", + "explorer": "https://bscscan.com/token/0x7f05907cde5c540be2e572fdd488994ee15d67a3", + "status": "active", + "id": "0x7f05907CDe5C540bE2e572FDD488994ee15d67a3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7f05907CDe5C540bE2e572FDD488994ee15d67a3/logo.png b/blockchains/smartchain/assets/0x7f05907CDe5C540bE2e572FDD488994ee15d67a3/logo.png new file mode 100644 index 00000000..985d4df3 Binary files /dev/null and b/blockchains/smartchain/assets/0x7f05907CDe5C540bE2e572FDD488994ee15d67a3/logo.png differ diff --git a/blockchains/smartchain/assets/0x7f1296e5aA692a98d86EaAe3ac1CD7723E74878d/info.json b/blockchains/smartchain/assets/0x7f1296e5aA692a98d86EaAe3ac1CD7723E74878d/info.json new file mode 100644 index 00000000..bb9e621f --- /dev/null +++ b/blockchains/smartchain/assets/0x7f1296e5aA692a98d86EaAe3ac1CD7723E74878d/info.json @@ -0,0 +1,25 @@ +{ + "name": "BIRD", + "website": "https://birdswap.com/#/", + "description": "Bird Finance is a DeFi platform focusing on smart pool and lending by its governance token BIRD. Bird Finance seeks the best the reward mining pool by strategy and automatically compounds it for maximal profit.", + "explorer": "https://bscscan.com/token/0x7f1296e5aA692a98d86EaAe3ac1CD7723E74878d", + "symbol": "BIRD", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x7f1296e5aA692a98d86EaAe3ac1CD7723E74878d", + "links": [ + { + "name": "github", + "url": "https://github.com/BirdFinance/bird-core" + }, + { + "name": "x", + "url": "https://x.com/bird_aggregator" + }, + { + "name": "telegram", + "url": "https://t.me/BirdFinanceGlobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7f1296e5aA692a98d86EaAe3ac1CD7723E74878d/logo.png b/blockchains/smartchain/assets/0x7f1296e5aA692a98d86EaAe3ac1CD7723E74878d/logo.png new file mode 100644 index 00000000..6dc0f553 Binary files /dev/null and b/blockchains/smartchain/assets/0x7f1296e5aA692a98d86EaAe3ac1CD7723E74878d/logo.png differ diff --git a/blockchains/smartchain/assets/0x7f247a00EaB12419e5dEB021B48f6eBf249CF86C/info.json b/blockchains/smartchain/assets/0x7f247a00EaB12419e5dEB021B48f6eBf249CF86C/info.json new file mode 100644 index 00000000..925045d6 --- /dev/null +++ b/blockchains/smartchain/assets/0x7f247a00EaB12419e5dEB021B48f6eBf249CF86C/info.json @@ -0,0 +1,25 @@ +{ + "name": "CGB COIN", + "type": "BEP20", + "symbol": "CGB", + "decimals": 18, + "website": "https://cgbcoin.co/", + "description": "A new smart blockchain based marketplace for trading digital goods and assets according to users interests. Automatic matching of buyers and sellers via unique artificial intelligence approach.", + "explorer": "https://bscscan.com/token/0x7f247a00EaB12419e5dEB021B48f6eBf249CF86C", + "status": "active", + "id": "0x7f247a00EaB12419e5dEB021B48f6eBf249CF86C", + "links": [ + { + "name": "x", + "url": "https://x.com/cgb_coin" + }, + { + "name": "facebook", + "url": "https://facebook.com/CgbcoinCryptoCurrency/" + }, + { + "name": "telegram", + "url": "https://t.me/cgbcoinfuturecurrency" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7f247a00EaB12419e5dEB021B48f6eBf249CF86C/logo.png b/blockchains/smartchain/assets/0x7f247a00EaB12419e5dEB021B48f6eBf249CF86C/logo.png new file mode 100644 index 00000000..81ba164a Binary files /dev/null and b/blockchains/smartchain/assets/0x7f247a00EaB12419e5dEB021B48f6eBf249CF86C/logo.png differ diff --git a/blockchains/smartchain/assets/0x7f479d78380Ad00341fdD7322fE8AEf766e29e5A/info.json b/blockchains/smartchain/assets/0x7f479d78380Ad00341fdD7322fE8AEf766e29e5A/info.json new file mode 100644 index 00000000..c106c15a --- /dev/null +++ b/blockchains/smartchain/assets/0x7f479d78380Ad00341fdD7322fE8AEf766e29e5A/info.json @@ -0,0 +1,32 @@ +{ + "name": "Whirl Finance", + "website": "https://www.whirl-finance.com/", + "description": "Whirl Finance is a multi-coin cryptocurrency wallet that securely stores your crypto assets in the most simple and easy way. Truly mobile-friendly, supporting major cryptocurrencies like Bitcoin, BNB, Ethereum, Ripple, and more. WHIRL is a utility token powered by Binance Smart Chain. It works by applying 2% fee to each transaction is automatically sent to burn address that continuously reduces the total supply.", + "explorer": "https://bscscan.com/token/0x7f479d78380ad00341fdd7322fe8aef766e29e5a", + "symbol": "WHIRL", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x7f479d78380Ad00341fdD7322fE8AEf766e29e5A", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/whirlfinance/sourcecode/commit/5bbbdbe26e4a5ee83ea21919cd2b1c807b283fad" + }, + { + "name": "x", + "url": "https://x.com/FinanceWhirl" + }, + { + "name": "telegram", + "url": "https://t.me/WhirlFinance" + }, + { + "name": "whitepaper", + "url": "https://1d0636a5-9aed-409e-8044-47ecc98472d0.filesusr.com/ugd/ac7f9f_0ec9abeb7daf46b4bd17251f600be7aa.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7f479d78380Ad00341fdD7322fE8AEf766e29e5A/logo.png b/blockchains/smartchain/assets/0x7f479d78380Ad00341fdD7322fE8AEf766e29e5A/logo.png new file mode 100644 index 00000000..3d092bf9 Binary files /dev/null and b/blockchains/smartchain/assets/0x7f479d78380Ad00341fdD7322fE8AEf766e29e5A/logo.png differ diff --git a/blockchains/smartchain/assets/0x7f4a15F5cf12E1650f090FB7Bc7B0f240f1bDe98/info.json b/blockchains/smartchain/assets/0x7f4a15F5cf12E1650f090FB7Bc7B0f240f1bDe98/info.json new file mode 100644 index 00000000..181ccbd3 --- /dev/null +++ b/blockchains/smartchain/assets/0x7f4a15F5cf12E1650f090FB7Bc7B0f240f1bDe98/info.json @@ -0,0 +1,11 @@ +{ + "name": "Great Ape", + "website": "https://greatape.cc/", + "description": "Great Ape is a unique community token on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x7f4a15f5cf12e1650f090fb7bc7b0f240f1bde98", + "type": "BEP20", + "symbol": "GREATAPE", + "decimals": 9, + "status": "active", + "id": "0x7f4a15F5cf12E1650f090FB7Bc7B0f240f1bDe98" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7f4a15F5cf12E1650f090FB7Bc7B0f240f1bDe98/logo.png b/blockchains/smartchain/assets/0x7f4a15F5cf12E1650f090FB7Bc7B0f240f1bDe98/logo.png new file mode 100644 index 00000000..314952c3 Binary files /dev/null and b/blockchains/smartchain/assets/0x7f4a15F5cf12E1650f090FB7Bc7B0f240f1bDe98/logo.png differ diff --git a/blockchains/smartchain/assets/0x7f4f3BC4A5634454398580b9112b7E493E2129Fa/info.json b/blockchains/smartchain/assets/0x7f4f3BC4A5634454398580b9112b7E493E2129Fa/info.json new file mode 100644 index 00000000..3b5fb23e --- /dev/null +++ b/blockchains/smartchain/assets/0x7f4f3BC4A5634454398580b9112b7E493E2129Fa/info.json @@ -0,0 +1,45 @@ +{ + "name": "Kodi", + "type": "BEP20", + "symbol": "KODI", + "decimals": 18, + "website": "https://kodicoin.com", + "description": "Kodi provides its users with the first ever crypto based Entertainment Network. Parallel to this, Kodi is operating a one stop shop Advertisement/Marketing Agency known as ‘PITCH’, which will function as a subsidiary company. Both entities will encompass a use case that will directly benefit $KODI holders. This whitepaper provides a detailed description of the use case, tokenomics, team, the future plans of PITCH and its utility token ($KODI).", + "explorer": "https://bscscan.com/token/0x7f4f3BC4A5634454398580b9112b7E493E2129Fa", + "status": "active", + "id": "0x7f4f3BC4A5634454398580b9112b7E493E2129Fa", + "links": [ + { + "name": "x", + "url": "https://x.com/kodi_coin" + }, + { + "name": "github", + "url": "https://github.com/kodicoinofficial" + }, + { + "name": "telegram", + "url": "https://t.me/kodicoinofficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/YdVyqjKuqe" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kodi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kodi/" + }, + { + "name": "whitepaper", + "url": "https://kodicoin.com/whitepaper/" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/KodiCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7f4f3BC4A5634454398580b9112b7E493E2129Fa/logo.png b/blockchains/smartchain/assets/0x7f4f3BC4A5634454398580b9112b7E493E2129Fa/logo.png new file mode 100644 index 00000000..e3c4da01 Binary files /dev/null and b/blockchains/smartchain/assets/0x7f4f3BC4A5634454398580b9112b7E493E2129Fa/logo.png differ diff --git a/blockchains/smartchain/assets/0x7f6Fe630261fF86a2A32f51714F2f64c02e0C895/info.json b/blockchains/smartchain/assets/0x7f6Fe630261fF86a2A32f51714F2f64c02e0C895/info.json new file mode 100644 index 00000000..2f862828 --- /dev/null +++ b/blockchains/smartchain/assets/0x7f6Fe630261fF86a2A32f51714F2f64c02e0C895/info.json @@ -0,0 +1,11 @@ +{ + "name": "BITCOIN Plus+", + "type": "BEP20", + "symbol": "BTCP", + "decimals": 6, + "website": "https://bitcoinp.io/", + "description": "BITCOIN PLUS offers a comprehensive solution to the major problems faced by the traditional, fiat-driven monetary system. Building a crypto powered ecosystem comprising BITCOIN PLUS Token.", + "explorer": "https://bscscan.com/token/0x7f6Fe630261fF86a2A32f51714F2f64c02e0C895", + "status": "active", + "id": "0x7f6Fe630261fF86a2A32f51714F2f64c02e0C895" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7f6Fe630261fF86a2A32f51714F2f64c02e0C895/logo.png b/blockchains/smartchain/assets/0x7f6Fe630261fF86a2A32f51714F2f64c02e0C895/logo.png new file mode 100644 index 00000000..37757068 Binary files /dev/null and b/blockchains/smartchain/assets/0x7f6Fe630261fF86a2A32f51714F2f64c02e0C895/logo.png differ diff --git a/blockchains/smartchain/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json b/blockchains/smartchain/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json new file mode 100644 index 00000000..a3ac3d34 --- /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/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/logo.png b/blockchains/smartchain/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/logo.png new file mode 100644 index 00000000..295e34ea Binary files /dev/null and b/blockchains/smartchain/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/logo.png differ diff --git a/blockchains/smartchain/assets/0x7f9C20c4C09c32478AE10A7543E5199C2F53691d/info.json b/blockchains/smartchain/assets/0x7f9C20c4C09c32478AE10A7543E5199C2F53691d/info.json new file mode 100644 index 00000000..1bd9379a --- /dev/null +++ b/blockchains/smartchain/assets/0x7f9C20c4C09c32478AE10A7543E5199C2F53691d/info.json @@ -0,0 +1,33 @@ +{ + "name": "P2E Token", + "type": "BEP20", + "symbol": "P2E", + "decimals": 18, + "website": "https://www.pls2e.io/", + "description": "PLS2E.io = DAO+DEX+NFTs+GameFi LaunchPad. The best GameFi infrastructure platform on BSC and put forward the concept of Earn As A Service (EAAS)", + "explorer": "https://bscscan.com/token/0x7f9C20c4C09c32478AE10A7543E5199C2F53691d", + "status": "active", + "id": "0x7f9C20c4C09c32478AE10A7543E5199C2F53691d", + "links": [ + { + "name": "x", + "url": "https://x.com/PLS2Eio" + }, + { + "name": "telegram", + "url": "https://t.me/p2e_official" + }, + { + "name": "github", + "url": "https://github.com/PLS2E-IO" + }, + { + "name": "telegram_news", + "url": "https://t.me/p2e_channel" + }, + { + "name": "whitepaper", + "url": "https://docs.pls2e.io/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7f9C20c4C09c32478AE10A7543E5199C2F53691d/logo.png b/blockchains/smartchain/assets/0x7f9C20c4C09c32478AE10A7543E5199C2F53691d/logo.png new file mode 100644 index 00000000..cf54a1b1 Binary files /dev/null and b/blockchains/smartchain/assets/0x7f9C20c4C09c32478AE10A7543E5199C2F53691d/logo.png differ diff --git a/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/info.json b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/info.json new file mode 100644 index 00000000..86a5cb60 --- /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 00000000..ee164b46 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 new file mode 100644 index 00000000..18f30eba --- /dev/null +++ b/blockchains/smartchain/assets/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c/info.json @@ -0,0 +1,24 @@ +{ + "name": "SEOR Network", + "website": "https://www.seor.io/", + "description": "SEOR is the next generation of decentralized Web3.0 application technology development infrastructure, which aims to provide users and developers of Web3.0 with an easy-to-use blockchain technology development platform.", + "explorer": "https://bscscan.com/token/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c", + "type": "BEP20", + "symbol": "SEOR", + "decimals": 18, + "status": "active", + "id": "0x800a25741A414Ea6E6e2B382435081A479A8Cc3c", + "links": [ + { + "name": "x", + "url": "https://x.com/SEOR001" + }, + { + "name": "telegram", + "url": "https://t.me/SeorGroup" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c/logo.png b/blockchains/smartchain/assets/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c/logo.png new file mode 100644 index 00000000..82dd911e Binary files /dev/null and b/blockchains/smartchain/assets/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c/logo.png differ diff --git a/blockchains/smartchain/assets/0x80106cb3EAD06659A5ad19DF39D9b4733863B9b0/info.json b/blockchains/smartchain/assets/0x80106cb3EAD06659A5ad19DF39D9b4733863B9b0/info.json new file mode 100644 index 00000000..67a7e9ac --- /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 00000000..35a50498 Binary files /dev/null and b/blockchains/smartchain/assets/0x80106cb3EAD06659A5ad19DF39D9b4733863B9b0/logo.png differ diff --git a/blockchains/smartchain/assets/0x802C68730212295149f2bEa78C25e2Cf5A05B8A0/info.json b/blockchains/smartchain/assets/0x802C68730212295149f2bEa78C25e2Cf5A05B8A0/info.json new file mode 100644 index 00000000..7f9b4179 --- /dev/null +++ b/blockchains/smartchain/assets/0x802C68730212295149f2bEa78C25e2Cf5A05B8A0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Corgi doge", + "type": "BEP20", + "symbol": "CORGI", + "decimals": 8, + "website": "https://www.corgidoge.com", + "description": "Corgi Doge is a payment protocol designed to be accessible and lightweight, with a focus on reducing transaction fees. Fast and free transactions on a secure and decentralized network make Corgi ideal for everyday payment.", + "explorer": "https://bscscan.com/token/0x802C68730212295149f2bEa78C25e2Cf5A05B8A0", + "status": "active", + "id": "0x802C68730212295149f2bEa78C25e2Cf5A05B8A0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x802C68730212295149f2bEa78C25e2Cf5A05B8A0/logo.png b/blockchains/smartchain/assets/0x802C68730212295149f2bEa78C25e2Cf5A05B8A0/logo.png new file mode 100644 index 00000000..ffcd84f3 Binary files /dev/null and b/blockchains/smartchain/assets/0x802C68730212295149f2bEa78C25e2Cf5A05B8A0/logo.png differ diff --git a/blockchains/smartchain/assets/0x8034Aa1EBB42a4E2110E91666497198e977c8d81/info.json b/blockchains/smartchain/assets/0x8034Aa1EBB42a4E2110E91666497198e977c8d81/info.json new file mode 100644 index 00000000..0b872f91 --- /dev/null +++ b/blockchains/smartchain/assets/0x8034Aa1EBB42a4E2110E91666497198e977c8d81/info.json @@ -0,0 +1,11 @@ +{ + "name": "1Million", + "website": "http://onemillion.capital", + "description": "At one million dollar coin you are more than just an investor. You’re an owner.", + "explorer": "https://bscscan.com/token/0x8034Aa1EBB42a4E2110E91666497198e977c8d81", + "type": "BEP20", + "symbol": "MLN", + "decimals": 4, + "status": "active", + "id": "0x8034Aa1EBB42a4E2110E91666497198e977c8d81" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8034Aa1EBB42a4E2110E91666497198e977c8d81/logo.png b/blockchains/smartchain/assets/0x8034Aa1EBB42a4E2110E91666497198e977c8d81/logo.png new file mode 100644 index 00000000..69ffd95c Binary files /dev/null and b/blockchains/smartchain/assets/0x8034Aa1EBB42a4E2110E91666497198e977c8d81/logo.png differ diff --git a/blockchains/smartchain/assets/0x8051A61319B7FF7010a200E39b30b9a084dbCB5f/info.json b/blockchains/smartchain/assets/0x8051A61319B7FF7010a200E39b30b9a084dbCB5f/info.json new file mode 100644 index 00000000..f8c4b65d --- /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 00000000..e081c455 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 00000000..80d907ea --- /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 00000000..3b6e478b --- /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/0x8076C74C5e3F5852037F31Ff0093Eeb8c8ADd8D3/info.json b/blockchains/smartchain/assets/0x8076C74C5e3F5852037F31Ff0093Eeb8c8ADd8D3/info.json new file mode 100644 index 00000000..6216b892 --- /dev/null +++ b/blockchains/smartchain/assets/0x8076C74C5e3F5852037F31Ff0093Eeb8c8ADd8D3/info.json @@ -0,0 +1,15 @@ +{ + "name": "Old SafeMoon", + "website": "https://safemoon.xyz", + "description": "Self generating liquidity token - Reflection paid back to holders.", + "explorer": "https://bscscan.com/token/0x8076c74c5e3f5852037f31ff0093eeb8c8add8d3", + "research": "", + "type": "BEP20", + "symbol": "SAFEMOON", + "decimals": 9, + "status": "abandoned", + "id": "0x8076C74C5e3F5852037F31Ff0093Eeb8c8ADd8D3", + "tags": [ + "deflationary" + ] +} diff --git a/blockchains/smartchain/assets/0x8077398Ff2c530f129a6dd8D7F1E8840312440CD/info.json b/blockchains/smartchain/assets/0x8077398Ff2c530f129a6dd8D7F1E8840312440CD/info.json new file mode 100644 index 00000000..95edafb0 --- /dev/null +++ b/blockchains/smartchain/assets/0x8077398Ff2c530f129a6dd8D7F1E8840312440CD/info.json @@ -0,0 +1,25 @@ +{ + "name": "Cloak Coin", + "website": "https://milotoken.io", + "description": "CLOAK will be the second token within our Milo Inu ecosystem. In our animated series CLOAK will be an indispensable partner of MILO. CLOAK and MILO will work together to maintain our entire ecosystem.", + "explorer": "https://bscscan.com/token/0x8077398ff2c530f129a6dd8d7f1e8840312440cd", + "type": "BEP20", + "symbol": "CLOAK", + "decimals": 9, + "status": "active", + "id": "0x8077398Ff2c530f129a6dd8D7F1E8840312440CD", + "links": [ + { + "name": "x", + "url": "https://x.com/MiloInu" + }, + { + "name": "telegram", + "url": "https://t.me/MiloInu" + } + ], + "tags": [ + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8077398Ff2c530f129a6dd8D7F1E8840312440CD/logo.png b/blockchains/smartchain/assets/0x8077398Ff2c530f129a6dd8D7F1E8840312440CD/logo.png new file mode 100644 index 00000000..ab21f735 Binary files /dev/null and b/blockchains/smartchain/assets/0x8077398Ff2c530f129a6dd8D7F1E8840312440CD/logo.png differ diff --git a/blockchains/smartchain/assets/0x8087E4c1735C1373F0D04b88d4Dbe1FAe1149123/info.json b/blockchains/smartchain/assets/0x8087E4c1735C1373F0D04b88d4Dbe1FAe1149123/info.json new file mode 100644 index 00000000..6cd9f778 --- /dev/null +++ b/blockchains/smartchain/assets/0x8087E4c1735C1373F0D04b88d4Dbe1FAe1149123/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoonJuice", + "type": "BEP20", + "symbol": "MOJO", + "decimals": 9, + "website": "https://www.moonjuice.app", + "description": "MoonJuice, The Block-Chain Powered Energy Drink; Bridging the gap between retail and crypto", + "explorer": "https://bscscan.com/token/0x8087E4c1735C1373F0D04b88d4Dbe1FAe1149123", + "status": "active", + "id": "0x8087E4c1735C1373F0D04b88d4Dbe1FAe1149123" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8087E4c1735C1373F0D04b88d4Dbe1FAe1149123/logo.png b/blockchains/smartchain/assets/0x8087E4c1735C1373F0D04b88d4Dbe1FAe1149123/logo.png new file mode 100644 index 00000000..99d5eaaf Binary files /dev/null and b/blockchains/smartchain/assets/0x8087E4c1735C1373F0D04b88d4Dbe1FAe1149123/logo.png differ diff --git a/blockchains/smartchain/assets/0x8087fdC95e14E7DBF0DE5A08b2558e54793795C0/info.json b/blockchains/smartchain/assets/0x8087fdC95e14E7DBF0DE5A08b2558e54793795C0/info.json new file mode 100644 index 00000000..0ace0ae3 --- /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 00000000..b7891be5 Binary files /dev/null and b/blockchains/smartchain/assets/0x8087fdC95e14E7DBF0DE5A08b2558e54793795C0/logo.png differ diff --git a/blockchains/smartchain/assets/0x808fac147a9C02723d0BE300AC4753eAf93C0e1F/info.json b/blockchains/smartchain/assets/0x808fac147a9C02723d0BE300AC4753eAf93C0e1F/info.json new file mode 100644 index 00000000..1fb97b2c --- /dev/null +++ b/blockchains/smartchain/assets/0x808fac147a9C02723d0BE300AC4753eAf93C0e1F/info.json @@ -0,0 +1,24 @@ +{ + "name": "BabyFlokiCoin", + "type": "BEP20", + "symbol": "BabyFlokiCoin", + "decimals": 9, + "website": "https://babyflokicoin.org/", + "description": "Baby Floki Coin is a new crypto coin brought to life by fans & members of the Shiba Inu/Doge community. BabyFlokiCoin is Elon Musk’s very own shiba inu and he’s on a mission to become the first puppy to go to the moon! He’s built to reward you by sending 5% of every transaction made to your wallet.", + "explorer": "https://bscscan.com/token/0x808fac147a9C02723d0BE300AC4753eAf93C0e1F", + "status": "active", + "id": "0x808fac147a9C02723d0BE300AC4753eAf93C0e1F", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-floki-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/baby-floki-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x808fac147a9C02723d0BE300AC4753eAf93C0e1F/logo.png b/blockchains/smartchain/assets/0x808fac147a9C02723d0BE300AC4753eAf93C0e1F/logo.png new file mode 100644 index 00000000..8344e00f Binary files /dev/null and b/blockchains/smartchain/assets/0x808fac147a9C02723d0BE300AC4753eAf93C0e1F/logo.png differ diff --git a/blockchains/smartchain/assets/0x8094e772fA4A60bdEb1DfEC56AB040e17DD608D5/info.json b/blockchains/smartchain/assets/0x8094e772fA4A60bdEb1DfEC56AB040e17DD608D5/info.json new file mode 100644 index 00000000..7c021c7b --- /dev/null +++ b/blockchains/smartchain/assets/0x8094e772fA4A60bdEb1DfEC56AB040e17DD608D5/info.json @@ -0,0 +1,45 @@ +{ + "name": "Koda Cryptocurrency", + "website": "https://koda.finance/", + "description": "Koda token is a futuristic currency created and developed by Summit BC development team and will be the native token on SummitSwap.", + "explorer": "https://bscscan.com/token/0x8094e772fA4A60bdEb1DfEC56AB040e17DD608D5", + "type": "BEP20", + "symbol": "KODA", + "decimals": 9, + "status": "active", + "id": "0x8094e772fA4A60bdEb1DfEC56AB040e17DD608D5", + "links": [ + { + "name": "x", + "url": "https://x.com/CoinKoda" + }, + { + "name": "telegram", + "url": "https://t.me/kodakingofdogaltschat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/FBgEmJmHuc" + }, + { + "name": "facebook", + "url": "https://facebook.com/KodaCryptocurrency/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCf6Cz6MU7uykVVVaByU01KA" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/summit-koda-token-new/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/koda-cryptocurrency" + }, + { + "name": "github", + "url": "https://github.com/Koda-Finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8094e772fA4A60bdEb1DfEC56AB040e17DD608D5/logo.png b/blockchains/smartchain/assets/0x8094e772fA4A60bdEb1DfEC56AB040e17DD608D5/logo.png new file mode 100644 index 00000000..59744670 Binary files /dev/null and b/blockchains/smartchain/assets/0x8094e772fA4A60bdEb1DfEC56AB040e17DD608D5/logo.png differ diff --git a/blockchains/smartchain/assets/0x8099C0c7b3E530F563d4B121Abd2Ee365c72fB78/info.json b/blockchains/smartchain/assets/0x8099C0c7b3E530F563d4B121Abd2Ee365c72fB78/info.json new file mode 100644 index 00000000..586c9fb9 --- /dev/null +++ b/blockchains/smartchain/assets/0x8099C0c7b3E530F563d4B121Abd2Ee365c72fB78/info.json @@ -0,0 +1,21 @@ +{ + "name": "XMPT Token", + "website": "https://www.xiamipool.com", + "description": "XiaMi Pool is user-centered and provides a stable, safe, fair and open business platform for cryptocurrency holders. With XMPT as the rights of proof mechanism, it provides users with all-around services such as project governance, node voting, node hosting, wallet services, PoS mining, and financial products", + "explorer": "https://bscscan.com/token/0x8099C0c7b3E530F563d4B121Abd2Ee365c72fB78", + "type": "BEP20", + "symbol": "XMPT", + "decimals": 18, + "status": "active", + "id": "0x8099C0c7b3E530F563d4B121Abd2Ee365c72fB78", + "links": [ + { + "name": "x", + "url": "https://x.com/xiamipool" + }, + { + "name": "telegram", + "url": "https://t.me/xiamipool" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8099C0c7b3E530F563d4B121Abd2Ee365c72fB78/logo.png b/blockchains/smartchain/assets/0x8099C0c7b3E530F563d4B121Abd2Ee365c72fB78/logo.png new file mode 100644 index 00000000..a1273a2b Binary files /dev/null and b/blockchains/smartchain/assets/0x8099C0c7b3E530F563d4B121Abd2Ee365c72fB78/logo.png differ diff --git a/blockchains/smartchain/assets/0x809A91d77F44c913dBc561172D5dFfcE573a7777/info.json b/blockchains/smartchain/assets/0x809A91d77F44c913dBc561172D5dFfcE573a7777/info.json new file mode 100644 index 00000000..da8355ae --- /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 00000000..25156a9d --- /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 00000000..a3cdfb7f 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 00000000..3c1d45bf --- /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 00000000..be0f7e9e 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 00000000..7cbf3503 --- /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 00000000..b3ee1260 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 new file mode 100644 index 00000000..7c5809de --- /dev/null +++ b/blockchains/smartchain/assets/0x80E15FE54e9D155f8366187A6a32BDEF9C2366c4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Binamon-Z1", + "type": "BEP20", + "symbol": "BMON-Z1", + "decimals": 18, + "website": "https://binamon.org", + "description": "A Complete Metaverse of Digital Monsters on Binance Smart Chain. With BMON-Z1 the users can buy boosters of NFT. The boosters have 3 monsters.Through a smart contract called Booster, the NFTs will be minted (BEP721) ,using the $BMON token (BEP-20). Community Governance. Buy NFT in itsphysical variant. Entry fee and rewards in tournaments.", + "explorer": "https://bscscan.com/token/0x80e15fe54e9d155f8366187a6a32bdef9c2366c4", + "status": "active", + "id": "0x80E15FE54e9D155f8366187A6a32BDEF9C2366c4", + "links": [ + { + "name": "x", + "url": "https://x.com/binamonok" + }, + { + "name": "telegram", + "url": "https://t.me/binamon" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x80E15FE54e9D155f8366187A6a32BDEF9C2366c4/logo.png b/blockchains/smartchain/assets/0x80E15FE54e9D155f8366187A6a32BDEF9C2366c4/logo.png new file mode 100644 index 00000000..fbe7e9e0 Binary files /dev/null and b/blockchains/smartchain/assets/0x80E15FE54e9D155f8366187A6a32BDEF9C2366c4/logo.png differ diff --git a/blockchains/smartchain/assets/0x80d04E44955AA9c3F24041B2A824A20A88E735a8/info.json b/blockchains/smartchain/assets/0x80d04E44955AA9c3F24041B2A824A20A88E735a8/info.json new file mode 100644 index 00000000..e5e8602a --- /dev/null +++ b/blockchains/smartchain/assets/0x80d04E44955AA9c3F24041B2A824A20A88E735a8/info.json @@ -0,0 +1,45 @@ +{ + "name": "Multiverse Capital (MVC.finance)", + "website": "https://mvc.finance/", + "description": "Multiverse Capital is a multichain farming deflation token. 10% of each buy goes to existing holders. 10% of each sell goes into treasury fund to be used for multi-chain farming & big marketing. Investors buy $MVC on BSC, MVC farm on multiple chains and return the profits to $MVC holders. $MVC is deflationary & has price floor supported by Buyback & Burn to Liquidity Fund.", + "explorer": "https://bscscan.com/token/0x80d04E44955AA9c3F24041B2A824A20A88E735a8", + "type": "BEP20", + "symbol": "MVC", + "decimals": 18, + "status": "active", + "id": "0x80d04E44955AA9c3F24041B2A824A20A88E735a8", + "links": [ + { + "name": "x", + "url": "https://x.com/mulversecapital" + }, + { + "name": "telegram", + "url": "https://t.me/MultiverseCapital" + }, + { + "name": "docs", + "url": "https://docs.mvc.finance/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MultiverseCapital/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCndb4evj241pF-U2WAHN59Q" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/multiverse-capital" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multiverse-capital/" + }, + { + "name": "github", + "url": "https://github.com/mvcfinance/contract/blob/main/MultiVerseCapital.sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x80d04E44955AA9c3F24041B2A824A20A88E735a8/logo.png b/blockchains/smartchain/assets/0x80d04E44955AA9c3F24041B2A824A20A88E735a8/logo.png new file mode 100644 index 00000000..b5bd8930 Binary files /dev/null and b/blockchains/smartchain/assets/0x80d04E44955AA9c3F24041B2A824A20A88E735a8/logo.png differ diff --git a/blockchains/smartchain/assets/0x80f3D493EBCe97e343c53D29a137942416B4ffC0/info.json b/blockchains/smartchain/assets/0x80f3D493EBCe97e343c53D29a137942416B4ffC0/info.json new file mode 100644 index 00000000..d3320a11 --- /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 00000000..8f7917bd 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 00000000..e6586475 --- /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 00000000..6678ea0d 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 new file mode 100644 index 00000000..528d0b86 --- /dev/null +++ b/blockchains/smartchain/assets/0x812Ff2420EC87eB40Da80a596f14756ACf98Dacc/info.json @@ -0,0 +1,29 @@ +{ + "name": "Hungry Bear", + "website": "https://hungrybear.finance", + "description": "Hungry Bear is token driven and supported by it's community. Two functions occur during each trade: Reflection & Burn.", + "explorer": "https://bscscan.com/token/0x812Ff2420EC87eB40Da80a596f14756ACf98Dacc", + "research": "", + "type": "BEP20", + "symbol": "HUNGRY", + "decimals": 8, + "status": "active", + "id": "0x812Ff2420EC87eB40Da80a596f14756ACf98Dacc", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/BSCBear" + }, + { + "name": "telegram", + "url": "https://t.me/HungryBearFinance" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/HungryBear/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x812Ff2420EC87eB40Da80a596f14756ACf98Dacc/logo.png b/blockchains/smartchain/assets/0x812Ff2420EC87eB40Da80a596f14756ACf98Dacc/logo.png new file mode 100644 index 00000000..02c800c0 Binary files /dev/null and b/blockchains/smartchain/assets/0x812Ff2420EC87eB40Da80a596f14756ACf98Dacc/logo.png differ diff --git a/blockchains/smartchain/assets/0x816e9e589F8C07149dA4E2496C547952338B27e2/info.json b/blockchains/smartchain/assets/0x816e9e589F8C07149dA4E2496C547952338B27e2/info.json new file mode 100644 index 00000000..062c3c08 --- /dev/null +++ b/blockchains/smartchain/assets/0x816e9e589F8C07149dA4E2496C547952338B27e2/info.json @@ -0,0 +1,22 @@ +{ + "name": "BITTO", + "website": "http://bitto.tech/", + "description": "BITTO is a licensed cryptocurrency exchange founded since 2017, with a recent expansion into DeFi in 2020. BITTO is found in more than 20 different cryptocurrency apps and websites and officially accepted in more than 4 international cryptocurrency wallets such as Trust, Enjin, and Coinpayment.", + "research": "", + "explorer": "https://bscscan.com/token/0x816e9e589F8C07149dA4E2496C547952338B27e2", + "type": "BEP20", + "symbol": "BITTO", + "decimals": 18, + "status": "active", + "id": "0x816e9e589F8C07149dA4E2496C547952338B27e2", + "links": [ + { + "name": "x", + "url": "https://x.com/bittoexchange" + }, + { + "name": "telegram", + "url": "https://t.me/bittoexchange" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x816e9e589F8C07149dA4E2496C547952338B27e2/logo.png b/blockchains/smartchain/assets/0x816e9e589F8C07149dA4E2496C547952338B27e2/logo.png new file mode 100644 index 00000000..4d78787c Binary files /dev/null and b/blockchains/smartchain/assets/0x816e9e589F8C07149dA4E2496C547952338B27e2/logo.png differ diff --git a/blockchains/smartchain/assets/0x8173dDa13Fd405e5BcA84Bd7F64e58cAF4810A32/info.json b/blockchains/smartchain/assets/0x8173dDa13Fd405e5BcA84Bd7F64e58cAF4810A32/info.json new file mode 100644 index 00000000..65380f51 --- /dev/null +++ b/blockchains/smartchain/assets/0x8173dDa13Fd405e5BcA84Bd7F64e58cAF4810A32/info.json @@ -0,0 +1,11 @@ +{ + "name": "Golden Ben", + "website": "https://benswap.finance/", + "description": "Golden Ben (GBEN) is the farming and governance token of BenSwap AMM. It is part of the Ben Token ecosystem", + "explorer": "https://bscscan.com/token/0x8173dDa13Fd405e5BcA84Bd7F64e58cAF4810A32", + "type": "BEP20", + "symbol": "GBEN", + "decimals": 18, + "status": "active", + "id": "0x8173dDa13Fd405e5BcA84Bd7F64e58cAF4810A32" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8173dDa13Fd405e5BcA84Bd7F64e58cAF4810A32/logo.png b/blockchains/smartchain/assets/0x8173dDa13Fd405e5BcA84Bd7F64e58cAF4810A32/logo.png new file mode 100644 index 00000000..67fad3e9 Binary files /dev/null and b/blockchains/smartchain/assets/0x8173dDa13Fd405e5BcA84Bd7F64e58cAF4810A32/logo.png differ diff --git a/blockchains/smartchain/assets/0x817942D5DE16092656568e9f67F54CCb462f8989/info.json b/blockchains/smartchain/assets/0x817942D5DE16092656568e9f67F54CCb462f8989/info.json new file mode 100644 index 00000000..e6e4e186 --- /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 00000000..50198ae8 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 new file mode 100644 index 00000000..9272fe6b --- /dev/null +++ b/blockchains/smartchain/assets/0x81859801b01764D4f0Fa5E64729f5a6C3b91435b/info.json @@ -0,0 +1,29 @@ +{ + "name": "bearn.fi", + "website": "https://bearn.fi", + "description": "Bearn Fi is a cross-chain product in DeFi that at its core provides yield generation, casino/gaming aggregation, bridge, treasury and governance on multi-chain: Binance Smart Chain blockchain (BSC) and Ethereum blockchain.", + "explorer": "https://bscscan.com/token/0x81859801b01764D4f0Fa5E64729f5a6C3b91435b", + "type": "BEP20", + "symbol": "BFI", + "decimals": 18, + "status": "active", + "id": "0x81859801b01764D4f0Fa5E64729f5a6C3b91435b", + "links": [ + { + "name": "github", + "url": "https://github.com/bearn-defi" + }, + { + "name": "x", + "url": "https://x.com/BearnFi" + }, + { + "name": "telegram", + "url": "https://t.me/Bearn_Fi" + }, + { + "name": "medium", + "url": "https://bearn-defi.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x81859801b01764D4f0Fa5E64729f5a6C3b91435b/logo.png b/blockchains/smartchain/assets/0x81859801b01764D4f0Fa5E64729f5a6C3b91435b/logo.png new file mode 100644 index 00000000..37ab5d25 Binary files /dev/null and b/blockchains/smartchain/assets/0x81859801b01764D4f0Fa5E64729f5a6C3b91435b/logo.png differ diff --git a/blockchains/smartchain/assets/0x818835503F55283cd51A4399f595e295A9338753/info.json b/blockchains/smartchain/assets/0x818835503F55283cd51A4399f595e295A9338753/info.json new file mode 100644 index 00000000..11d5f96e --- /dev/null +++ b/blockchains/smartchain/assets/0x818835503F55283cd51A4399f595e295A9338753/info.json @@ -0,0 +1,25 @@ +{ + "name": "AGI Token", + "symbol": "AGI", + "type": "BEP20", + "decimals": 18, + "description": "$LADYS is appropriating the tokenisation model to facilitate the accumulation of meme capital in the era of unstoppable meme coins.", + "website": "https://www.delysium.com/", + "explorer": "https://bscscan.com/token/0x818835503f55283cd51a4399f595e295a9338753", + "status": "active", + "id": "0x818835503F55283cd51A4399f595e295A9338753", + "links": [ + { + "name": "x", + "url": "https://x.com/The_Delysium" + }, + { + "name": "telegram", + "url": "https://t.me/TheDelysium" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/delysium/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x818835503F55283cd51A4399f595e295A9338753/logo.png b/blockchains/smartchain/assets/0x818835503F55283cd51A4399f595e295A9338753/logo.png new file mode 100644 index 00000000..72e3d645 Binary files /dev/null and b/blockchains/smartchain/assets/0x818835503F55283cd51A4399f595e295A9338753/logo.png differ diff --git a/blockchains/smartchain/assets/0x8191113581cBfa3fcdC6B0d2e6F84753D4850080/info.json b/blockchains/smartchain/assets/0x8191113581cBfa3fcdC6B0d2e6F84753D4850080/info.json new file mode 100644 index 00000000..a0462496 --- /dev/null +++ b/blockchains/smartchain/assets/0x8191113581cBfa3fcdC6B0d2e6F84753D4850080/info.json @@ -0,0 +1,37 @@ +{ + "name": "HOES", + "website": "https://traphouse.vip/", + "description": "HOES is the staked form of DRUGS. Hoes are used to stake for other tokens on the Traphouse.", + "explorer": "https://bscscan.com/token/0x8191113581cbfa3fcdc6b0d2e6f84753d4850080", + "type": "BEP20", + "symbol": "HOES", + "decimals": 18, + "status": "active", + "id": "0x8191113581cBfa3fcdC6B0d2e6F84753D4850080", + "links": [ + { + "name": "github", + "url": "https://github.com/thugs-defi" + }, + { + "name": "x", + "url": "https://x.com/ThugsFinance" + }, + { + "name": "telegram", + "url": "https://t.me/thugsfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AJDqFTP" + }, + { + "name": "medium", + "url": "https://thugsfinance.medium.com/" + }, + { + "name": "docs", + "url": "https://docs.thugs.fi/thugonomics/hoes" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8191113581cBfa3fcdC6B0d2e6F84753D4850080/logo.png b/blockchains/smartchain/assets/0x8191113581cBfa3fcdC6B0d2e6F84753D4850080/logo.png new file mode 100644 index 00000000..bc70b98b Binary files /dev/null and b/blockchains/smartchain/assets/0x8191113581cBfa3fcdC6B0d2e6F84753D4850080/logo.png differ diff --git a/blockchains/smartchain/assets/0x81C15D3E956e55e77E1f3F257f0A65Bd2725fC55/info.json b/blockchains/smartchain/assets/0x81C15D3E956e55e77E1f3F257f0A65Bd2725fC55/info.json new file mode 100644 index 00000000..3be71759 --- /dev/null +++ b/blockchains/smartchain/assets/0x81C15D3E956e55e77E1f3F257f0A65Bd2725fC55/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream Cardano Token", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x81C15D3E956e55e77E1f3F257f0A65Bd2725fC55", + "type": "BEP20", + "symbol": "crADA", + "decimals": 8, + "status": "active", + "id": "0x81C15D3E956e55e77E1f3F257f0A65Bd2725fC55", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x81C15D3E956e55e77E1f3F257f0A65Bd2725fC55/logo.png b/blockchains/smartchain/assets/0x81C15D3E956e55e77E1f3F257f0A65Bd2725fC55/logo.png new file mode 100644 index 00000000..c690140d Binary files /dev/null and b/blockchains/smartchain/assets/0x81C15D3E956e55e77E1f3F257f0A65Bd2725fC55/logo.png differ diff --git a/blockchains/smartchain/assets/0x81E4d494b85A24a58a6BA45c9B418b32a4E039de/info.json b/blockchains/smartchain/assets/0x81E4d494b85A24a58a6BA45c9B418b32a4E039de/info.json new file mode 100644 index 00000000..c414e637 --- /dev/null +++ b/blockchains/smartchain/assets/0x81E4d494b85A24a58a6BA45c9B418b32a4E039de/info.json @@ -0,0 +1,25 @@ +{ + "name": "MoonToken", + "website": "https://www.moontoken.xyz/", + "description": "We keep it simple, We Moon. Rugproof. Audited. Community Owned #MoonToken.", + "explorer": "https://bscscan.com/token/0x81E4d494b85A24a58a6BA45c9B418b32a4E039de", + "type": "BEP20", + "symbol": "MOON", + "decimals": 18, + "status": "active", + "id": "0x81E4d494b85A24a58a6BA45c9B418b32a4E039de", + "links": [ + { + "name": "x", + "url": "https://x.com/MoonToken_BSC" + }, + { + "name": "telegram", + "url": "https://t.me/MoonTokenBSCChat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/mtMQSNSE" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x81E4d494b85A24a58a6BA45c9B418b32a4E039de/logo.png b/blockchains/smartchain/assets/0x81E4d494b85A24a58a6BA45c9B418b32a4E039de/logo.png new file mode 100644 index 00000000..b76d966b Binary files /dev/null and b/blockchains/smartchain/assets/0x81E4d494b85A24a58a6BA45c9B418b32a4E039de/logo.png differ diff --git a/blockchains/smartchain/assets/0x81dD3724E3B1FB6123589777DD4CB44233B34A3B/info.json b/blockchains/smartchain/assets/0x81dD3724E3B1FB6123589777DD4CB44233B34A3B/info.json new file mode 100644 index 00000000..53a0dfba --- /dev/null +++ b/blockchains/smartchain/assets/0x81dD3724E3B1FB6123589777DD4CB44233B34A3B/info.json @@ -0,0 +1,36 @@ +{ + "name": "Flap Coin", + "type": "BEP20", + "symbol": "FLAP", + "decimals": 18, + "website": "https://flappybirdgo.com", + "description": "FlappyBird Go is the NFT game version of FlappyBird concept Play-to-Earn on Binance Smart Chain. Try to flap, Happy reward!", + "explorer": "https://bscscan.com/token/0x81dd3724e3b1fb6123589777dd4cb44233b34a3b", + "status": "active", + "id": "0x81dD3724E3B1FB6123589777DD4CB44233B34A3B", + "links": [ + { + "name": "x", + "url": "https://x.com/FlappyBird_Go" + }, + { + "name": "telegram", + "url": "https://t.me/FlappyBirdGo" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.flappybirdgo.com/" + }, + { + "name": "facebook", + "url": "https://facebook.com/FlappyBirdGo" + }, + { + "name": "medium", + "url": "https://flappybirdgo.medium.com/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x81dD3724E3B1FB6123589777DD4CB44233B34A3B/logo.png b/blockchains/smartchain/assets/0x81dD3724E3B1FB6123589777DD4CB44233B34A3B/logo.png new file mode 100644 index 00000000..13f4a367 Binary files /dev/null and b/blockchains/smartchain/assets/0x81dD3724E3B1FB6123589777DD4CB44233B34A3B/logo.png differ diff --git a/blockchains/smartchain/assets/0x82030CDBD9e4B7c5bb0b811A61DA6360D69449cc/info.json b/blockchains/smartchain/assets/0x82030CDBD9e4B7c5bb0b811A61DA6360D69449cc/info.json new file mode 100644 index 00000000..482f0db9 --- /dev/null +++ b/blockchains/smartchain/assets/0x82030CDBD9e4B7c5bb0b811A61DA6360D69449cc/info.json @@ -0,0 +1,37 @@ +{ + "name": "FEVR Token", + "type": "BEP20", + "symbol": "FEVR", + "decimals": 18, + "website": "https://realfevr.com/fevr", + "description": "FEVR is the fuel of the RealFevr ecosystem of video collectibles", + "explorer": "https://bscscan.com/token/0x82030CDBD9e4B7c5bb0b811A61DA6360D69449cc", + "status": "active", + "id": "0x82030CDBD9e4B7c5bb0b811A61DA6360D69449cc", + "links": [ + { + "name": "x", + "url": "https://x.com/realfevr" + }, + { + "name": "telegram", + "url": "https://t.me/realfevrofficial" + }, + { + "name": "github", + "url": "https://github.com/tbem/rf-erc20/blob/master/contracts/RealFevrToken.sol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/realfevr" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/realfevr/" + }, + { + "name": "whitepaper", + "url": "https://realfevr-production.s3.eu-central-1.amazonaws.com/nfts-markeplace/LitePaperExports.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x82030CDBD9e4B7c5bb0b811A61DA6360D69449cc/logo.png b/blockchains/smartchain/assets/0x82030CDBD9e4B7c5bb0b811A61DA6360D69449cc/logo.png new file mode 100644 index 00000000..27f2bfd8 Binary files /dev/null and b/blockchains/smartchain/assets/0x82030CDBD9e4B7c5bb0b811A61DA6360D69449cc/logo.png differ diff --git a/blockchains/smartchain/assets/0x8203612382f61baFaE549fBF31eFbf70992fA289/info.json b/blockchains/smartchain/assets/0x8203612382f61baFaE549fBF31eFbf70992fA289/info.json new file mode 100644 index 00000000..d93daf79 --- /dev/null +++ b/blockchains/smartchain/assets/0x8203612382f61baFaE549fBF31eFbf70992fA289/info.json @@ -0,0 +1,25 @@ +{ + "name": "ShibaPup", + "website": "https://www.shibapup.dog/", + "description": "ShibaPup is a BSC token focused in the dog driven community, providing a play to earn Shiba game.", + "explorer": "https://bscscan.com/token/0x8203612382f61bafae549fbf31efbf70992fa289", + "type": "BEP20", + "symbol": "ShibaPup", + "decimals": 18, + "status": "active", + "id": "0x8203612382f61baFaE549fBF31eFbf70992fA289", + "links": [ + { + "name": "x", + "url": "https://x.com/shibapupdog" + }, + { + "name": "telegram", + "url": "https://t.me/shibapupdog" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shibapup/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8203612382f61baFaE549fBF31eFbf70992fA289/logo.png b/blockchains/smartchain/assets/0x8203612382f61baFaE549fBF31eFbf70992fA289/logo.png new file mode 100644 index 00000000..e41e4c26 Binary files /dev/null and b/blockchains/smartchain/assets/0x8203612382f61baFaE549fBF31eFbf70992fA289/logo.png differ diff --git a/blockchains/smartchain/assets/0x82248D53De2B7608cAF53978A8E8C238DC42403a/info.json b/blockchains/smartchain/assets/0x82248D53De2B7608cAF53978A8E8C238DC42403a/info.json new file mode 100644 index 00000000..aca08dd1 --- /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 new file mode 100644 index 00000000..488bae91 --- /dev/null +++ b/blockchains/smartchain/assets/0x822DC83fA4dc997fFf24D0BC0A66fCB2954a6156/info.json @@ -0,0 +1,29 @@ +{ + "name": "BSocial", + "website": "https://bsocial.pro", + "description": "BSocial is a social network specialized for Cryptocurrency and MMO (making money online) communities.", + "explorer": "https://bscscan.com/token/0x822DC83fA4dc997fFf24D0BC0A66fCB2954a6156", + "type": "BEP20", + "symbol": "BINS", + "decimals": 18, + "status": "active", + "id": "0x822DC83fA4dc997fFf24D0BC0A66fCB2954a6156", + "links": [ + { + "name": "x", + "url": "https://x.com/Bsocialfi" + }, + { + "name": "telegram", + "url": "https://t.me/bsocialchannel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bsocial/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bsocial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x822DC83fA4dc997fFf24D0BC0A66fCB2954a6156/logo.png b/blockchains/smartchain/assets/0x822DC83fA4dc997fFf24D0BC0A66fCB2954a6156/logo.png new file mode 100644 index 00000000..6de12362 Binary files /dev/null and b/blockchains/smartchain/assets/0x822DC83fA4dc997fFf24D0BC0A66fCB2954a6156/logo.png differ diff --git a/blockchains/smartchain/assets/0x8236f1239530971868925e6017d4005763E9087f/info.json b/blockchains/smartchain/assets/0x8236f1239530971868925e6017d4005763E9087f/info.json new file mode 100644 index 00000000..bf7d9f1d --- /dev/null +++ b/blockchains/smartchain/assets/0x8236f1239530971868925e6017d4005763E9087f/info.json @@ -0,0 +1,25 @@ +{ + "name": "Dexigas", + "type": "BEP20", + "symbol": "DXG", + "decimals": 18, + "website": "https://dexioprotocol.com/", + "description": "Dexigas has been created to be the utility token within the Dexioprotocol gaming ecosystem.", + "explorer": "https://bscscan.com/token/0x8236f1239530971868925e6017d4005763E9087f", + "status": "active", + "id": "0x8236f1239530971868925e6017d4005763E9087f", + "links": [ + { + "name": "github", + "url": "https://github.com/Dexioprotocol" + }, + { + "name": "x", + "url": "https://x.com/dexioprotocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/dexioprotocoltoken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8236f1239530971868925e6017d4005763E9087f/logo.png b/blockchains/smartchain/assets/0x8236f1239530971868925e6017d4005763E9087f/logo.png new file mode 100644 index 00000000..bb244a46 Binary files /dev/null and b/blockchains/smartchain/assets/0x8236f1239530971868925e6017d4005763E9087f/logo.png differ diff --git a/blockchains/smartchain/assets/0x8244609023097AeF71C702cCbaEFC0bde5b48694/info.json b/blockchains/smartchain/assets/0x8244609023097AeF71C702cCbaEFC0bde5b48694/info.json new file mode 100644 index 00000000..c2e3893c --- /dev/null +++ b/blockchains/smartchain/assets/0x8244609023097AeF71C702cCbaEFC0bde5b48694/info.json @@ -0,0 +1,11 @@ +{ + "name": "WSBT Token", + "website": "https://wsbtbros.com/", + "description": "The WSBT token is a non-deflationary token build on the Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x8244609023097AeF71C702cCbaEFC0bde5b48694", + "type": "BEP20", + "symbol": "WSBT", + "decimals": 18, + "status": "active", + "id": "0x8244609023097AeF71C702cCbaEFC0bde5b48694" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8244609023097AeF71C702cCbaEFC0bde5b48694/logo.png b/blockchains/smartchain/assets/0x8244609023097AeF71C702cCbaEFC0bde5b48694/logo.png new file mode 100644 index 00000000..7ebea5a4 Binary files /dev/null and b/blockchains/smartchain/assets/0x8244609023097AeF71C702cCbaEFC0bde5b48694/logo.png differ diff --git a/blockchains/smartchain/assets/0x8249BC1dEA00660d2d38dF126b53C6c9A733e942/info.json b/blockchains/smartchain/assets/0x8249BC1dEA00660d2d38dF126b53C6c9A733e942/info.json new file mode 100644 index 00000000..7f41cd61 --- /dev/null +++ b/blockchains/smartchain/assets/0x8249BC1dEA00660d2d38dF126b53C6c9A733e942/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bami defi", + "website": "https://bami.money", + "description": "Bami is a financial city in which the currency used is BAMI (Bami Token). In Bami city, the citizens (users) use BAMI for trades, exchanges, investments, including: Bami Dashboard, Bami Exchange, Bami Lend, Bami Portfolio, Bami Pay, NFT.", + "explorer": "https://bscscan.com/token/0x8249BC1dEA00660d2d38dF126b53C6c9A733e942", + "type": "BEP20", + "symbol": "BAMI", + "decimals": 18, + "status": "active", + "id": "0x8249BC1dEA00660d2d38dF126b53C6c9A733e942" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8249BC1dEA00660d2d38dF126b53C6c9A733e942/logo.png b/blockchains/smartchain/assets/0x8249BC1dEA00660d2d38dF126b53C6c9A733e942/logo.png new file mode 100644 index 00000000..edf8f079 Binary files /dev/null and b/blockchains/smartchain/assets/0x8249BC1dEA00660d2d38dF126b53C6c9A733e942/logo.png differ diff --git a/blockchains/smartchain/assets/0x825791Bc83A377Ba3931E8a56504a1EACAAE0f76/info.json b/blockchains/smartchain/assets/0x825791Bc83A377Ba3931E8a56504a1EACAAE0f76/info.json new file mode 100644 index 00000000..3535278e --- /dev/null +++ b/blockchains/smartchain/assets/0x825791Bc83A377Ba3931E8a56504a1EACAAE0f76/info.json @@ -0,0 +1,24 @@ +{ + "name": "MetaHouse", + "website": "https://www.metahousebsc.com", + "description": "Meta House is part of the meta world.", + "explorer": "https://bscscan.com/token/0x825791Bc83A377Ba3931E8a56504a1EACAAE0f76", + "type": "BEP20", + "symbol": "Meta House", + "decimals": 9, + "status": "active", + "id": "0x825791Bc83A377Ba3931E8a56504a1EACAAE0f76", + "links": [ + { + "name": "telegram", + "url": "https://t.me/MetaHouseEN" + }, + { + "name": "x", + "url": "https://x.com/MetaHousebsc?s=09" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x825791Bc83A377Ba3931E8a56504a1EACAAE0f76/logo.png b/blockchains/smartchain/assets/0x825791Bc83A377Ba3931E8a56504a1EACAAE0f76/logo.png new file mode 100644 index 00000000..55bfca2d Binary files /dev/null and b/blockchains/smartchain/assets/0x825791Bc83A377Ba3931E8a56504a1EACAAE0f76/logo.png differ diff --git a/blockchains/smartchain/assets/0x8263CD1601FE73C066bf49cc09841f35348e3be0/info.json b/blockchains/smartchain/assets/0x8263CD1601FE73C066bf49cc09841f35348e3be0/info.json new file mode 100644 index 00000000..f5c3e31a --- /dev/null +++ b/blockchains/smartchain/assets/0x8263CD1601FE73C066bf49cc09841f35348e3be0/info.json @@ -0,0 +1,29 @@ +{ + "name": "Altura", + "website": "https://www.alturanft.com/", + "description": "Altura is the next generation gaming NFT platform.", + "explorer": "https://bscscan.com/token/0x8263cd1601fe73c066bf49cc09841f35348e3be0", + "type": "BEP20", + "symbol": "ALU", + "decimals": 18, + "status": "active", + "id": "0x8263CD1601FE73C066bf49cc09841f35348e3be0", + "links": [ + { + "name": "github", + "url": "https://github.com/Plutus-Gaming-NFTs-Reimagined" + }, + { + "name": "x", + "url": "https://x.com/altura_nft" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AlturaNFT/" + }, + { + "name": "telegram", + "url": "https://t.me/alturanft" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8263CD1601FE73C066bf49cc09841f35348e3be0/logo.png b/blockchains/smartchain/assets/0x8263CD1601FE73C066bf49cc09841f35348e3be0/logo.png new file mode 100644 index 00000000..7fa4c31d Binary files /dev/null and b/blockchains/smartchain/assets/0x8263CD1601FE73C066bf49cc09841f35348e3be0/logo.png differ diff --git a/blockchains/smartchain/assets/0x8267d169E1483E01AACBCfd22d294c47ECE9F07f/info.json b/blockchains/smartchain/assets/0x8267d169E1483E01AACBCfd22d294c47ECE9F07f/info.json new file mode 100644 index 00000000..438095ac --- /dev/null +++ b/blockchains/smartchain/assets/0x8267d169E1483E01AACBCfd22d294c47ECE9F07f/info.json @@ -0,0 +1,37 @@ +{ + "name": "DragonMoon", + "type": "BEP20", + "symbol": "DMOON", + "decimals": 9, + "website": "https://www.dmoon.xyz/", + "description": "The DragonMoon Protocol is a community driven, fair launched deflationary reflection token. Three common functions are Hold, Earn and Burn.", + "explorer": "https://bscscan.com/token/0x8267d169E1483E01AACBCfd22d294c47ECE9F07f", + "status": "active", + "id": "0x8267d169E1483E01AACBCfd22d294c47ECE9F07f", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/dmoonxyz" + }, + { + "name": "x", + "url": "https://x.com/dmoon_xyz" + }, + { + "name": "telegram_news", + "url": "https://t.me/dragonmoon01" + }, + { + "name": "telegram", + "url": "https://t.me/dmoon_official" + }, + { + "name": "telegram", + "url": "https://t.me/dmoon_cn" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/zh/currencies/dragonmoon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8267d169E1483E01AACBCfd22d294c47ECE9F07f/logo.png b/blockchains/smartchain/assets/0x8267d169E1483E01AACBCfd22d294c47ECE9F07f/logo.png new file mode 100644 index 00000000..597edd58 Binary files /dev/null and b/blockchains/smartchain/assets/0x8267d169E1483E01AACBCfd22d294c47ECE9F07f/logo.png differ diff --git a/blockchains/smartchain/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/info.json b/blockchains/smartchain/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/info.json new file mode 100644 index 00000000..48add6f6 --- /dev/null +++ b/blockchains/smartchain/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/info.json @@ -0,0 +1,33 @@ +{ + "name": "TravelCare", + "website": "https://travelcare.io/", + "description": "TRAVEL is the reward token of the Travel Care platform.", + "explorer": "https://bscscan.com/token/0x826e5ec70dbc5607ff9218011fbb97f9a8d97953", + "type": "BEP20", + "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/TravelCareToken" + }, + { + "name": "telegram", + "url": "https://t.me/TravelCareToken" + }, + { + "name": "whitepaper", + "url": "https://content.travelcare.io/whitepaper/whitepaperENG.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/logo.png b/blockchains/smartchain/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/logo.png new file mode 100644 index 00000000..6eaf751e Binary files /dev/null and b/blockchains/smartchain/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/logo.png differ diff --git a/blockchains/smartchain/assets/0x82715299f3f132FB85f3De1F7e8fAfd3d79f3eB5/info.json b/blockchains/smartchain/assets/0x82715299f3f132FB85f3De1F7e8fAfd3d79f3eB5/info.json new file mode 100644 index 00000000..ea7caaf5 --- /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 00000000..2ce033b0 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 00000000..04b2719f --- /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 00000000..cafc1778 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 new file mode 100644 index 00000000..6705ec32 --- /dev/null +++ b/blockchains/smartchain/assets/0x82A479264B36104be4FDb91618a59A4fC0F50650/info.json @@ -0,0 +1,40 @@ +{ + "name": "Birb", + "website": "https://birb.com", + "description": "Welcome to Birb, a high deflationary defi token built on the Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x82a479264b36104be4fdb91618a59a4fc0f50650", + "type": "BEP20", + "symbol": "BIRB", + "decimals": 18, + "status": "abandoned", + "id": "0x82A479264B36104be4FDb91618a59A4fC0F50650", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/birbdev" + }, + { + "name": "x", + "url": "https://x.com/BirbDefi" + }, + { + "name": "telegram", + "url": "https://t.me/birbdefi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/birb" + }, + { + "name": "whitepaper", + "url": "https://dessertswap.finance/audits/Birb%20BEP-20%20Audit%209082831.pdf" + }, + { + "name": "reddit", + "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 new file mode 100644 index 00000000..04022f8f --- /dev/null +++ b/blockchains/smartchain/assets/0x82C19905B036bf4E329740989DCF6aE441AE26c1/info.json @@ -0,0 +1,25 @@ +{ + "name": "CP", + "type": "BEP20", + "symbol": "CP", + "decimals": 18, + "website": "https://bsc.copuppy.io/", + "description": "CoPuppy is the most attractive Metaverse project on BSC. The project includes collectibles, Games, finance, etc., constructing an open Puppy World. CoPuppy has a unique ecosystem and economic model, which combines the current popular mining, NFT, GameFi , Metaverse and other popular concepts, and innovates on this basis.", + "explorer": "https://bscscan.com/token/0x82C19905B036bf4E329740989DCF6aE441AE26c1", + "status": "active", + "id": "0x82C19905B036bf4E329740989DCF6aE441AE26c1", + "links": [ + { + "name": "x", + "url": "https://x.com/CoPuppy_BSC" + }, + { + "name": "telegram", + "url": "https://t.me/copuppy_bsc" + }, + { + "name": "medium", + "url": "https://medium.com/copuppy-bsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x82C19905B036bf4E329740989DCF6aE441AE26c1/logo.png b/blockchains/smartchain/assets/0x82C19905B036bf4E329740989DCF6aE441AE26c1/logo.png new file mode 100644 index 00000000..4513b88f Binary files /dev/null and b/blockchains/smartchain/assets/0x82C19905B036bf4E329740989DCF6aE441AE26c1/logo.png differ diff --git a/blockchains/smartchain/assets/0x82D2f8E02Afb160Dd5A480a617692e62de9038C4/info.json b/blockchains/smartchain/assets/0x82D2f8E02Afb160Dd5A480a617692e62de9038C4/info.json new file mode 100644 index 00000000..2534a373 --- /dev/null +++ b/blockchains/smartchain/assets/0x82D2f8E02Afb160Dd5A480a617692e62de9038C4/info.json @@ -0,0 +1,25 @@ +{ + "name": "aleph.im BEP-20 v2", + "website": "https://aleph.im", + "description": "Aleph.im is a cross-blockchain layer-2 networkspecifically focused on decentralized applications and their related infrastructure (storage, computing servers, security).", + "explorer": "https://bscscan.com/token/0x82d2f8e02afb160dd5a480a617692e62de9038c4", + "type": "BEP20", + "symbol": "ALEPH", + "decimals": 18, + "status": "active", + "id": "0x82D2f8E02Afb160Dd5A480a617692e62de9038C4", + "links": [ + { + "name": "x", + "url": "https://x.com/aleph_im" + }, + { + "name": "telegram", + "url": "https://t.me/alephim" + }, + { + "name": "medium", + "url": "https://medium.com/aleph-im/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x82D2f8E02Afb160Dd5A480a617692e62de9038C4/logo.png b/blockchains/smartchain/assets/0x82D2f8E02Afb160Dd5A480a617692e62de9038C4/logo.png new file mode 100644 index 00000000..d3b78ccd Binary files /dev/null and b/blockchains/smartchain/assets/0x82D2f8E02Afb160Dd5A480a617692e62de9038C4/logo.png differ diff --git a/blockchains/smartchain/assets/0x82D6E409438E9c2eAEd8ceec4Bd95918cbd17c87/info.json b/blockchains/smartchain/assets/0x82D6E409438E9c2eAEd8ceec4Bd95918cbd17c87/info.json new file mode 100644 index 00000000..feeba43f --- /dev/null +++ b/blockchains/smartchain/assets/0x82D6E409438E9c2eAEd8ceec4Bd95918cbd17c87/info.json @@ -0,0 +1,28 @@ +{ + "name": "FOMO BABY", + "website": "https://fomobaby.app", + "description": "Fomo Baby is a deflationary rebasing token on BSC with an automated liquidity feature, Staking options, NFT’s & Lottery Draws.", + "explorer": "https://bscscan.com/token/0x82d6e409438e9c2eaed8ceec4bd95918cbd17c87", + "type": "BEP20", + "symbol": "FOMOBABY", + "decimals": 9, + "status": "active", + "id": "0x82D6E409438E9c2eAEd8ceec4Bd95918cbd17c87", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/fomobabytelegram" + }, + { + "name": "x", + "url": "https://x.com/fomobabybsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fomobaby/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x82D6E409438E9c2eAEd8ceec4Bd95918cbd17c87/logo.png b/blockchains/smartchain/assets/0x82D6E409438E9c2eAEd8ceec4Bd95918cbd17c87/logo.png new file mode 100644 index 00000000..b657cdea Binary files /dev/null and b/blockchains/smartchain/assets/0x82D6E409438E9c2eAEd8ceec4Bd95918cbd17c87/logo.png differ diff --git a/blockchains/smartchain/assets/0x82E07C1017032cFd889b1Ca81EBe722c4D4de825/info.json b/blockchains/smartchain/assets/0x82E07C1017032cFd889b1Ca81EBe722c4D4de825/info.json new file mode 100644 index 00000000..0ab50a7e --- /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 00000000..ba8cb66e Binary files /dev/null and b/blockchains/smartchain/assets/0x82E07C1017032cFd889b1Ca81EBe722c4D4de825/logo.png differ diff --git a/blockchains/smartchain/assets/0x82b4b883c813dF83623Dc7894c1895305680fec2/info.json b/blockchains/smartchain/assets/0x82b4b883c813dF83623Dc7894c1895305680fec2/info.json new file mode 100644 index 00000000..b2dccc84 --- /dev/null +++ b/blockchains/smartchain/assets/0x82b4b883c813dF83623Dc7894c1895305680fec2/info.json @@ -0,0 +1,11 @@ +{ + "name": "IceBreak-R Token", + "website": "https://icebreak-r.com", + "description": "ICEBRK token is the governance and utility token for the IceBreak-R Network, a social media driven NFT-marketplace and DeFi ecosystem", + "explorer": "https://bscscan.com/token/0x82b4b883c813dF83623Dc7894c1895305680fec2", + "type": "BEP20", + "symbol": "ICEBRK", + "decimals": 9, + "status": "active", + "id": "0x82b4b883c813dF83623Dc7894c1895305680fec2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x82b4b883c813dF83623Dc7894c1895305680fec2/logo.png b/blockchains/smartchain/assets/0x82b4b883c813dF83623Dc7894c1895305680fec2/logo.png new file mode 100644 index 00000000..c9a25f2d Binary files /dev/null and b/blockchains/smartchain/assets/0x82b4b883c813dF83623Dc7894c1895305680fec2/logo.png differ diff --git a/blockchains/smartchain/assets/0x830F7A104a3dF30879D526031D57DAa44BF85686/info.json b/blockchains/smartchain/assets/0x830F7A104a3dF30879D526031D57DAa44BF85686/info.json new file mode 100644 index 00000000..7cd45378 --- /dev/null +++ b/blockchains/smartchain/assets/0x830F7A104a3dF30879D526031D57DAa44BF85686/info.json @@ -0,0 +1,37 @@ +{ + "name": "iBNB", + "website": "https://ibnb.finance/", + "description": "iBNB is the first Dynamic DeFi token that adjusts it’s tax rates to sustain and rejuvenate supply pools, building upon existing transaction tax systems used by a large number of existing DeFi tokens by introducing a revolutionary new mechanic: Dynamic Tax Protocol.", + "explorer": "https://bscscan.com/token/0x830F7A104a3dF30879D526031D57DAa44BF85686", + "type": "BEP20", + "symbol": "iBNB", + "decimals": 9, + "status": "active", + "id": "0x830F7A104a3dF30879D526031D57DAa44BF85686", + "links": [ + { + "name": "x", + "url": "https://x.com/ibnbfinance" + }, + { + "name": "telegram", + "url": "https://t.me/IBNBFinance" + }, + { + "name": "whitepaper", + "url": "https://ibnb-finance.gitbook.io/ibnb-whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/i-bnb/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ibnb/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x830F7A104a3dF30879D526031D57DAa44BF85686#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x830F7A104a3dF30879D526031D57DAa44BF85686/logo.png b/blockchains/smartchain/assets/0x830F7A104a3dF30879D526031D57DAa44BF85686/logo.png new file mode 100644 index 00000000..92803f55 Binary files /dev/null and b/blockchains/smartchain/assets/0x830F7A104a3dF30879D526031D57DAa44BF85686/logo.png differ diff --git a/blockchains/smartchain/assets/0x83155E3fe0f6b3ec6343887F62Fadf7eDa784462/info.json b/blockchains/smartchain/assets/0x83155E3fe0f6b3ec6343887F62Fadf7eDa784462/info.json new file mode 100644 index 00000000..68fc7ec6 --- /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 00000000..611a8d9a 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 new file mode 100644 index 00000000..d81d691b --- /dev/null +++ b/blockchains/smartchain/assets/0x8316c1cB76b88be6450baF689860b73dC606B431/info.json @@ -0,0 +1,29 @@ +{ + "name": "SPO Token", + "website": "https://spores.app/about", + "description": "SPO token is designed for community governance and DeFi utilization with NFT-creator-centricity and DeFi-community-driven purpose. SPO is used to incentivize NFT creators, buyers, agents, liquidity providers across the ecosystem.", + "explorer": "https://bscscan.com/token/0x8316c1cb76b88be6450baf689860b73dc606b431", + "type": "BEP20", + "symbol": "SPO", + "decimals": 18, + "status": "abandoned", + "id": "0x8316c1cB76b88be6450baF689860b73dC606B431", + "links": [ + { + "name": "x", + "url": "https://x.com/Spores_Network" + }, + { + "name": "medium", + "url": "https://spores.medium.com" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/spores-network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spores-network" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x83300C06aDFd8225560f8505Dba7493A9B60194C/info.json b/blockchains/smartchain/assets/0x83300C06aDFd8225560f8505Dba7493A9B60194C/info.json new file mode 100644 index 00000000..1b07cf0a --- /dev/null +++ b/blockchains/smartchain/assets/0x83300C06aDFd8225560f8505Dba7493A9B60194C/info.json @@ -0,0 +1,32 @@ +{ + "name": "NDT METAVERSE", + "type": "BEP20", + "symbol": "NDT", + "decimals": 18, + "website": "https://ndtmetaverse.io", + "description": "NDT METAVERSE is a far-reaching technology that has brought breakthrough ideas into life. This token is a revolutionary product, as it is one of the latest developments in the crypto space that utilities state-of-the-art technologies.", + "explorer": "https://bscscan.com/token/0x83300C06aDFd8225560f8505Dba7493A9B60194C", + "status": "active", + "id": "0x83300C06aDFd8225560f8505Dba7493A9B60194C", + "links": [ + { + "name": "x", + "url": "https://x.com/MetaverseNdt" + }, + { + "name": "facebook", + "url": "https://facebook.com/NDT-Metaverse-101922252455454" + }, + { + "name": "whitepaper", + "url": "https://ndtmetaverse.io/NDT-Profile-Whitepaper.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCYDhnjyL-Tbrt8sFzIxnU1Q" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x83300C06aDFd8225560f8505Dba7493A9B60194C/logo.png b/blockchains/smartchain/assets/0x83300C06aDFd8225560f8505Dba7493A9B60194C/logo.png new file mode 100644 index 00000000..c2d1c4b7 Binary files /dev/null and b/blockchains/smartchain/assets/0x83300C06aDFd8225560f8505Dba7493A9B60194C/logo.png differ diff --git a/blockchains/smartchain/assets/0x8331cA5D8914b3E89D41344f1B231e4516953BcF/info.json b/blockchains/smartchain/assets/0x8331cA5D8914b3E89D41344f1B231e4516953BcF/info.json new file mode 100644 index 00000000..c0b6c599 --- /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 new file mode 100644 index 00000000..32652ef6 --- /dev/null +++ b/blockchains/smartchain/assets/0x834613c64522725b23b458aF04ED1590D189962F/info.json @@ -0,0 +1,57 @@ +{ + "name": "DAIKOKUTEN SAMA TOKEN", + "website": "https://daikokuten.finance/", + "description": "DKKS is project to makes the lives of all those who believe in the project always lucky in life, enrich spiritually ,materially and help people in the world.", + "explorer": "https://bscscan.com/token/0x834613c64522725b23b458aF04ED1590D189962F", + "type": "BEP20", + "symbol": "DKKS", + "decimals": 9, + "status": "active", + "id": "0x834613c64522725b23b458aF04ED1590D189962F", + "links": [ + { + "name": "github", + "url": "https://github.com/dkkstoken" + }, + { + "name": "x", + "url": "https://x.com/dkkstoken" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/daikokuten_sama" + }, + { + "name": "whitepaper", + "url": "https://github.com/dkkstoken/Whitepaper/blob/main/DAIKOKUTEN-WHITEPAPER.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/dkkstoken" + }, + { + "name": "telegram_news", + "url": "https://t.me/dkks_news" + }, + { + "name": "medium", + "url": "https://medium.com/@daikokuten_sama" + }, + { + "name": "facebook", + "url": "https://facebook.com/Daikokuten-Sama-107917314873088" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCScKOUFWSx3IUnvEvn1Y4zw" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/vi/currencies/daikokuten-sama/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/daikokuten-sama" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x834613c64522725b23b458aF04ED1590D189962F/logo.png b/blockchains/smartchain/assets/0x834613c64522725b23b458aF04ED1590D189962F/logo.png new file mode 100644 index 00000000..c3e2a2b9 Binary files /dev/null and b/blockchains/smartchain/assets/0x834613c64522725b23b458aF04ED1590D189962F/logo.png differ diff --git a/blockchains/smartchain/assets/0x834f50D03232dF90112490cC6d8b0a20B8C28888/info.json b/blockchains/smartchain/assets/0x834f50D03232dF90112490cC6d8b0a20B8C28888/info.json new file mode 100644 index 00000000..2524b720 --- /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 new file mode 100644 index 00000000..cf2314f9 --- /dev/null +++ b/blockchains/smartchain/assets/0x8357c604c5533fa0053BeAaA1494Da552ceA38f7/info.json @@ -0,0 +1,29 @@ +{ + "name": "SPO Token", + "website": "https://spores.app/about", + "description": "SPO token is designed for community governance and DeFi utilization with NFT-creator-centricity and DeFi-community-driven purpose. SPO is used to incentivize NFT creators, buyers, agents, liquidity providers across the ecosystem.", + "explorer": "https://bscscan.com/token/0x8357c604c5533fa0053BeAaA1494Da552ceA38f7", + "type": "BEP20", + "symbol": "SPO", + "decimals": 18, + "status": "active", + "id": "0x8357c604c5533fa0053BeAaA1494Da552ceA38f7", + "links": [ + { + "name": "x", + "url": "https://x.com/Spores_Network" + }, + { + "name": "medium", + "url": "https://spores.medium.com" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/spores-network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spores-network" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8357c604c5533fa0053BeAaA1494Da552ceA38f7/logo.png b/blockchains/smartchain/assets/0x8357c604c5533fa0053BeAaA1494Da552ceA38f7/logo.png new file mode 100644 index 00000000..e46acfac Binary files /dev/null and b/blockchains/smartchain/assets/0x8357c604c5533fa0053BeAaA1494Da552ceA38f7/logo.png differ diff --git a/blockchains/smartchain/assets/0x8379B36826675450c35e1eb45d2fd1E1aE8494A4/info.json b/blockchains/smartchain/assets/0x8379B36826675450c35e1eb45d2fd1E1aE8494A4/info.json new file mode 100644 index 00000000..5bf0eaf5 --- /dev/null +++ b/blockchains/smartchain/assets/0x8379B36826675450c35e1eb45d2fd1E1aE8494A4/info.json @@ -0,0 +1,29 @@ +{ + "name": "ALPHAKOMBAT TOKEN", + "type": "BEP20", + "symbol": "ALKOM", + "decimals": 18, + "website": "https://alphakombat.com/", + "description": "Alpha Kombat is a global blockchain tournament game with NFTs rewards, a platform created to reward your leisure and provide passive income through several token utilities and platform utilities.", + "explorer": "https://bscscan.com/token/0x8379B36826675450c35e1eb45d2fd1E1aE8494A4", + "status": "active", + "id": "0x8379B36826675450c35e1eb45d2fd1E1aE8494A4", + "links": [ + { + "name": "x", + "url": "https://x.com/AlphaKombatgame" + }, + { + "name": "telegram", + "url": "https://t.me/AlphaKombatChat" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alpha-kombat/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/alpha-kombat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8379B36826675450c35e1eb45d2fd1E1aE8494A4/logo.png b/blockchains/smartchain/assets/0x8379B36826675450c35e1eb45d2fd1E1aE8494A4/logo.png new file mode 100644 index 00000000..059cfb73 Binary files /dev/null and b/blockchains/smartchain/assets/0x8379B36826675450c35e1eb45d2fd1E1aE8494A4/logo.png differ diff --git a/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/info.json b/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/info.json new file mode 100644 index 00000000..eabde635 --- /dev/null +++ b/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/info.json @@ -0,0 +1,52 @@ +{ + "name": "WeSendit", + "type": "BEP20", + "symbol": "WSI", + "decimals": 18, + "website": "https://wesendit.io", + "description": "WeSendit token is at the heart of WeSendit's growth strategy. It aims to create a powerful, user-friendly system for sending, storing and managing data for businesses.", + "explorer": "https://bscscan.com/token/0x837A130aED114300Bab4f9f1F4f500682f7efd48", + "status": "active", + "id": "0x837A130aED114300Bab4f9f1F4f500682f7efd48", + "links": [ + { + "name": "x", + "url": "https://x.com/WeSendit" + }, + { + "name": "github", + "url": "https://github.com/wesenditmedia/contracts" + }, + { + "name": "telegram", + "url": "https://t.me/wesenditcom" + }, + { + "name": "telegram_news", + "url": "https://t.me/wesendit_announcement" + }, + { + "name": "whitepaper", + "url": "https://docsend.com/view/p6nvtkkgrim59tw7" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCtzAZUlSqfoKiFuOWE521Ug" + }, + { + "name": "facebook", + "url": "https://facebook.com/wesendit" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wesendit/" + }, + { + "name": "medium", + "url": "https://medium.com/@WeSendit" + } + ], + "tags": [ + "privacy" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/logo.png b/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/logo.png new file mode 100644 index 00000000..f13b159d Binary files /dev/null and b/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/logo.png differ diff --git a/blockchains/smartchain/assets/0x83850D97018f665EB746FBb8f18351e977d1b0D6/info.json b/blockchains/smartchain/assets/0x83850D97018f665EB746FBb8f18351e977d1b0D6/info.json new file mode 100644 index 00000000..83a82d20 --- /dev/null +++ b/blockchains/smartchain/assets/0x83850D97018f665EB746FBb8f18351e977d1b0D6/info.json @@ -0,0 +1,14 @@ +{ + "name": "Star Atlas (Portal)", + "type": "BEP20", + "symbol": "ATLAS", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://staratlas.com", + "explorer": "https://bscscan.com/token/0x83850D97018f665EB746FBb8f18351e977d1b0D6", + "status": "active", + "id": "0x83850D97018f665EB746FBb8f18351e977d1b0D6", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x83850D97018f665EB746FBb8f18351e977d1b0D6/logo.png b/blockchains/smartchain/assets/0x83850D97018f665EB746FBb8f18351e977d1b0D6/logo.png new file mode 100644 index 00000000..8cd9b22a Binary files /dev/null and b/blockchains/smartchain/assets/0x83850D97018f665EB746FBb8f18351e977d1b0D6/logo.png differ diff --git a/blockchains/smartchain/assets/0x8397Eb3EC07615cE88ff854d08e9E27B5155128b/info.json b/blockchains/smartchain/assets/0x8397Eb3EC07615cE88ff854d08e9E27B5155128b/info.json new file mode 100644 index 00000000..a90531e5 --- /dev/null +++ b/blockchains/smartchain/assets/0x8397Eb3EC07615cE88ff854d08e9E27B5155128b/info.json @@ -0,0 +1,25 @@ +{ + "name": "GIGA BLOCK", + "type": "BEP20", + "symbol": "GIGA", + "decimals": 18, + "website": "http://gigablocks.org/", + "description": "BLOCKCHAIN", + "explorer": "https://bscscan.com/token/0x8397Eb3EC07615cE88ff854d08e9E27B5155128b", + "status": "active", + "id": "0x8397Eb3EC07615cE88ff854d08e9E27B5155128b", + "links": [ + { + "name": "telegram", + "url": "https://t.me/OfficialGIGA" + }, + { + "name": "github", + "url": "https://github.com/Gigablocks" + } + ], + "tags": [ + "staking", + "deflationary" + ] +} diff --git a/blockchains/smartchain/assets/0x8397Eb3EC07615cE88ff854d08e9E27B5155128b/logo.png b/blockchains/smartchain/assets/0x8397Eb3EC07615cE88ff854d08e9E27B5155128b/logo.png new file mode 100644 index 00000000..40a2e379 Binary files /dev/null and b/blockchains/smartchain/assets/0x8397Eb3EC07615cE88ff854d08e9E27B5155128b/logo.png differ diff --git a/blockchains/smartchain/assets/0x83A86adf1a7c56e77d36d585B808052e0a2aAD0e/info.json b/blockchains/smartchain/assets/0x83A86adf1a7c56e77d36d585B808052e0a2aAD0e/info.json new file mode 100644 index 00000000..a9440107 --- /dev/null +++ b/blockchains/smartchain/assets/0x83A86adf1a7c56e77d36d585B808052e0a2aAD0e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Save Your Assets", + "type": "BEP20", + "symbol": "SYA", + "decimals": 9, + "website": "https://sya.today/", + "description": "The $SYA DeFi experiment is a new type of deflationary currency applying autonomous yield and liquidity generation.", + "explorer": "https://bscscan.com/token/0x83A86adf1a7c56e77d36d585B808052e0a2aAD0e", + "status": "active", + "id": "0x83A86adf1a7c56e77d36d585B808052e0a2aAD0e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x83A86adf1a7c56e77d36d585B808052e0a2aAD0e/logo.png b/blockchains/smartchain/assets/0x83A86adf1a7c56e77d36d585B808052e0a2aAD0e/logo.png new file mode 100644 index 00000000..77d75e48 Binary files /dev/null and b/blockchains/smartchain/assets/0x83A86adf1a7c56e77d36d585B808052e0a2aAD0e/logo.png differ diff --git a/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/info.json b/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/info.json new file mode 100644 index 00000000..d8ef6639 --- /dev/null +++ b/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/info.json @@ -0,0 +1,65 @@ +{ + "name": "HUDI", + "type": "BEP20", + "symbol": "HUDI", + "decimals": 18, + "website": "https://humandataincome.com/", + "description": "HUDI is the first web3 data exchange protocol empowering people and organizations to enrich, trade and monetize their data.", + "explorer": "https://bscscan.com/token/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458", + "status": "active", + "id": "0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458", + "links": [ + { + "name": "x", + "url": "https://x.com/humandataincome" + }, + { + "name": "telegram", + "url": "https://t.me/hudicommunity" + }, + { + "name": "telegram_news", + "url": "https://t.me/hudinews" + }, + { + "name": "docs", + "url": "https://docs.humandataincome.com" + }, + { + "name": "medium", + "url": "https://medium.com/humandataincome" + }, + { + "name": "github", + "url": "https://github.com/humandataincome" + }, + { + "name": "youtube", + "url": "https://youtube.com/@HumanDataIncome" + }, + { + "name": "facebook", + "url": "https://facebook.com/humandataincome" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hudi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hudi" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/hudi" + }, + { + "name": "whitepaper", + "url": "https://asset.humandataincome.com/docs/litepaper.pdf" + } + ], + "tags": [ + "memes", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/logo.png b/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/logo.png new file mode 100644 index 00000000..ad226e1f Binary files /dev/null and b/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/logo.png differ diff --git a/blockchains/smartchain/assets/0x83edD3923940422f780072052b30f2BE9DA9b831/info.json b/blockchains/smartchain/assets/0x83edD3923940422f780072052b30f2BE9DA9b831/info.json new file mode 100644 index 00000000..6f7a02f9 --- /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 00000000..c2c99c33 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 new file mode 100644 index 00000000..6cfca7dd --- /dev/null +++ b/blockchains/smartchain/assets/0x8401aAbA08f0be0d30B7D136C50fe5C461DBFA05/info.json @@ -0,0 +1,33 @@ +{ + "name": "Annex BUSD", + "website": "https://www.annex.finance/", + "description": "Money Markets. A Decentralized Marketplace for Lenders and Borrowers", + "explorer": "https://bscscan.com/token/0x8401aAbA08f0be0d30B7D136C50fe5C461DBFA05", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/AnnexFinance" + }, + { + "name": "medium", + "url": "https://annexfinance.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/Annex_finance_group" + }, + { + "name": "github", + "url": "https://github.com/annexfinance/annex-protocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AnnexFinance/" + } + ], + "symbol": "aBUSD", + "decimals": 8, + "status": "active", + "id": "0x8401aAbA08f0be0d30B7D136C50fe5C461DBFA05" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8401aAbA08f0be0d30B7D136C50fe5C461DBFA05/logo.png b/blockchains/smartchain/assets/0x8401aAbA08f0be0d30B7D136C50fe5C461DBFA05/logo.png new file mode 100644 index 00000000..d5c2547a Binary files /dev/null and b/blockchains/smartchain/assets/0x8401aAbA08f0be0d30B7D136C50fe5C461DBFA05/logo.png differ diff --git a/blockchains/smartchain/assets/0x840BCd536d647C3433bF830DBCb8debFa5B71c79/info.json b/blockchains/smartchain/assets/0x840BCd536d647C3433bF830DBCb8debFa5B71c79/info.json new file mode 100644 index 00000000..37b37376 --- /dev/null +++ b/blockchains/smartchain/assets/0x840BCd536d647C3433bF830DBCb8debFa5B71c79/info.json @@ -0,0 +1,41 @@ +{ + "name": "BNB Cash", + "type": "BEP20", + "symbol": "BNBCH", + "decimals": 9, + "website": "https://bnbfintech.com", + "description": "BNB Cash is the native token of the BNB Fintech ecosystem", + "explorer": "https://bscscan.com/token/0x840BCd536d647C3433bF830DBCb8debFa5B71c79", + "status": "active", + "id": "0x840BCd536d647C3433bF830DBCb8debFa5B71c79", + "links": [ + { + "name": "x", + "url": "https://x.com/BNBCashOfficial" + }, + { + "name": "github", + "url": "https://github.com/BNBCash" + }, + { + "name": "telegram", + "url": "https://t.me/BNBCashOfficial" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bnb-cash" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bnb-cash/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BNBCash/" + }, + { + "name": "facebook", + "url": "https://facebook.com/BNBCash" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x840BCd536d647C3433bF830DBCb8debFa5B71c79/logo.png b/blockchains/smartchain/assets/0x840BCd536d647C3433bF830DBCb8debFa5B71c79/logo.png new file mode 100644 index 00000000..4ff52ec7 Binary files /dev/null and b/blockchains/smartchain/assets/0x840BCd536d647C3433bF830DBCb8debFa5B71c79/logo.png differ diff --git a/blockchains/smartchain/assets/0x842668E2B9A73240aBF6532DEdC89c9c3e050C98/info.json b/blockchains/smartchain/assets/0x842668E2B9A73240aBF6532DEdC89c9c3e050C98/info.json new file mode 100644 index 00000000..c62e8ea9 --- /dev/null +++ b/blockchains/smartchain/assets/0x842668E2B9A73240aBF6532DEdC89c9c3e050C98/info.json @@ -0,0 +1,25 @@ +{ + "name": "Light DeFi", + "type": "BEP20", + "symbol": "LIGHT", + "decimals": 9, + "website": "https://lightdefi.org/", + "description": "With Light DeFi, the currency will not depend so much on buying strength and selling strength. There will be external liquidity that will provide an automatic valuation of the asset.", + "explorer": "https://bscscan.com/token/0x842668E2B9A73240aBF6532DEdC89c9c3e050C98", + "status": "active", + "id": "0x842668E2B9A73240aBF6532DEdC89c9c3e050C98", + "links": [ + { + "name": "x", + "url": "https://x.com/Light_DeFi" + }, + { + "name": "telegram", + "url": "https://t.me/grupolight" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x842668E2B9A73240aBF6532DEdC89c9c3e050C98#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x842668E2B9A73240aBF6532DEdC89c9c3e050C98/logo.png b/blockchains/smartchain/assets/0x842668E2B9A73240aBF6532DEdC89c9c3e050C98/logo.png new file mode 100644 index 00000000..ebafaba9 Binary files /dev/null and b/blockchains/smartchain/assets/0x842668E2B9A73240aBF6532DEdC89c9c3e050C98/logo.png differ diff --git a/blockchains/smartchain/assets/0x843D4a358471547f51534e3e51fae91cb4Dc3F28/info.json b/blockchains/smartchain/assets/0x843D4a358471547f51534e3e51fae91cb4Dc3F28/info.json new file mode 100644 index 00000000..e9ba7edb --- /dev/null +++ b/blockchains/smartchain/assets/0x843D4a358471547f51534e3e51fae91cb4Dc3F28/info.json @@ -0,0 +1,14 @@ +{ + "name": "loser coin Token", + "website": "https://loserswap.com", + "description": "Loser coin is created by two young man in China, aiming to provide a shelter for all losers and inspire them to never give up.", + "explorer": "https://bscscan.com/token/0x843D4a358471547f51534e3e51fae91cb4Dc3F28", + "type": "BEP20", + "symbol": "lowb", + "decimals": 18, + "status": "active", + "id": "0x843D4a358471547f51534e3e51fae91cb4Dc3F28", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x843D4a358471547f51534e3e51fae91cb4Dc3F28/logo.png b/blockchains/smartchain/assets/0x843D4a358471547f51534e3e51fae91cb4Dc3F28/logo.png new file mode 100644 index 00000000..53dbb73c Binary files /dev/null and b/blockchains/smartchain/assets/0x843D4a358471547f51534e3e51fae91cb4Dc3F28/logo.png differ diff --git a/blockchains/smartchain/assets/0x8443f091997f06a61670B735ED92734F5628692F/info.json b/blockchains/smartchain/assets/0x8443f091997f06a61670B735ED92734F5628692F/info.json new file mode 100644 index 00000000..67a0130e --- /dev/null +++ b/blockchains/smartchain/assets/0x8443f091997f06a61670B735ED92734F5628692F/info.json @@ -0,0 +1,12 @@ +{ + "name": "Bella Protocol", + "website": "https://bella.fi", + "description": "Bella Protocol is described to be a set of DeFi products for one-click crypto banking.", + "explorer": "https://bscscan.com/token/0x8443f091997f06a61670B735ED92734F5628692F", + "research": "https://research.binance.com/en/projects/bella", + "type": "BEP20", + "symbol": "BEL", + "decimals": 18, + "status": "active", + "id": "0x8443f091997f06a61670B735ED92734F5628692F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8443f091997f06a61670B735ED92734F5628692F/logo.png b/blockchains/smartchain/assets/0x8443f091997f06a61670B735ED92734F5628692F/logo.png new file mode 100644 index 00000000..e60767da Binary files /dev/null and b/blockchains/smartchain/assets/0x8443f091997f06a61670B735ED92734F5628692F/logo.png differ diff --git a/blockchains/smartchain/assets/0x844FA82f1E54824655470970F7004Dd90546bB28/info.json b/blockchains/smartchain/assets/0x844FA82f1E54824655470970F7004Dd90546bB28/info.json new file mode 100644 index 00000000..28b1c45a --- /dev/null +++ b/blockchains/smartchain/assets/0x844FA82f1E54824655470970F7004Dd90546bB28/info.json @@ -0,0 +1,22 @@ +{ + "name": "DOPPLE", + "website": "https://dopple.finance/", + "description": "Dopple is an automated market maker (AMM) designed for efficiently trading stablecoins and pegged assets on the Binance Smart Chain. Dopple's first pool is launching with a basket of a dollar-pegged stablecoins consisting of BUSD, USDT, DAI, USDC & UST.", + "research": "", + "explorer": "https://bscscan.com/token/0x844FA82f1E54824655470970F7004Dd90546bB28", + "type": "BEP20", + "symbol": "DOP", + "decimals": 18, + "status": "active", + "id": "0x844FA82f1E54824655470970F7004Dd90546bB28", + "links": [ + { + "name": "x", + "url": "https://x.com/dopplefi" + }, + { + "name": "telegram", + "url": "https://t.me/dopplefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x844FA82f1E54824655470970F7004Dd90546bB28/logo.png b/blockchains/smartchain/assets/0x844FA82f1E54824655470970F7004Dd90546bB28/logo.png new file mode 100644 index 00000000..ed026009 Binary files /dev/null and b/blockchains/smartchain/assets/0x844FA82f1E54824655470970F7004Dd90546bB28/logo.png differ diff --git a/blockchains/smartchain/assets/0x846F52020749715F02AEf25b5d1d65e48945649D/info.json b/blockchains/smartchain/assets/0x846F52020749715F02AEf25b5d1d65e48945649D/info.json new file mode 100644 index 00000000..94b7d999 --- /dev/null +++ b/blockchains/smartchain/assets/0x846F52020749715F02AEf25b5d1d65e48945649D/info.json @@ -0,0 +1,21 @@ +{ + "id": "0x846F52020749715F02AEf25b5d1d65e48945649D", + "name": "Umbrella Network Token", + "website": "https://www.umb.network", + "description": "Umbrella Network a Community owned, Decentralized Oracle built on Layer 2 for DeFi and Blockchain Applications powered by UMB cryptocurrency", + "explorer": "https://bscscan.com/token/0x846F52020749715F02AEf25b5d1d65e48945649D", + "decimals": 18, + "type": "BEP20", + "symbol": "UMB", + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/umbrella-network/overture" + }, + { + "name": "whitepaper", + "url": "https://www.umb.network/wp-content/uploads/2021/02/umb_litepaper_design_v3.1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x846F52020749715F02AEf25b5d1d65e48945649D/logo.png b/blockchains/smartchain/assets/0x846F52020749715F02AEf25b5d1d65e48945649D/logo.png new file mode 100644 index 00000000..de13ce26 Binary files /dev/null and b/blockchains/smartchain/assets/0x846F52020749715F02AEf25b5d1d65e48945649D/logo.png differ diff --git a/blockchains/smartchain/assets/0x84719A1082ed487c7eeac7d69885E3CC2009Ea78/info.json b/blockchains/smartchain/assets/0x84719A1082ed487c7eeac7d69885E3CC2009Ea78/info.json new file mode 100644 index 00000000..ed6857cd --- /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 00000000..56172ca7 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 new file mode 100644 index 00000000..dabc5b77 --- /dev/null +++ b/blockchains/smartchain/assets/0x84750e8EfacC62be5AFe7221Cf149A2520Cb1b60/info.json @@ -0,0 +1,25 @@ +{ + "name": "SCORPION", + "type": "BEP20", + "symbol": "$SCORP", + "decimals": 9, + "website": "https://www.thescorpioncoin.com/", + "description": "Scorpion token is a fair launch, community driven, hyper-deflationary DeFi protocol. Scorpion token holders benefit from passive rewards through static reflection, auto liquidity and auto burn. Proprietary anti-whale mechanisms built into the contract stop the supply from being controlled by syndicates.", + "explorer": "https://bscscan.com/token/0x84750e8EfacC62be5AFe7221Cf149A2520Cb1b60", + "status": "active", + "id": "0x84750e8EfacC62be5AFe7221Cf149A2520Cb1b60", + "links": [ + { + "name": "github", + "url": "https://github.com/scorpion-token/SCORPION" + }, + { + "name": "x", + "url": "https://x.com/scorpionbsc" + }, + { + "name": "telegram", + "url": "https://t.me/thescorpiontoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x84750e8EfacC62be5AFe7221Cf149A2520Cb1b60/logo.png b/blockchains/smartchain/assets/0x84750e8EfacC62be5AFe7221Cf149A2520Cb1b60/logo.png new file mode 100644 index 00000000..9b110ed8 Binary files /dev/null and b/blockchains/smartchain/assets/0x84750e8EfacC62be5AFe7221Cf149A2520Cb1b60/logo.png differ diff --git a/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/info.json b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/info.json new file mode 100644 index 00000000..ff112bc8 --- /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 00000000..e40c5e6a 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 00000000..39f83d01 --- /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 00000000..c7d3d81c 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 00000000..e03d9b66 --- /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 00000000..390d670e 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 00000000..f40d3f35 --- /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 00000000..aeed7e06 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 new file mode 100644 index 00000000..218a5920 --- /dev/null +++ b/blockchains/smartchain/assets/0x84B7BB9614Cf28226d1b0a07499472bc107e3000/info.json @@ -0,0 +1,49 @@ +{ + "name": "EverestCoin", + "type": "BEP20", + "symbol": "EVCoin", + "decimals": 9, + "website": "https://everestcoin.io", + "description": "EverestCoin is a Play to Earn Game token and will be the biggest token on BSC.", + "explorer": "https://bscscan.com/token/0x84B7BB9614Cf28226d1b0a07499472bc107e3000", + "status": "active", + "id": "0x84B7BB9614Cf28226d1b0a07499472bc107e3000", + "links": [ + { + "name": "x", + "url": "https://x.com/coineverest" + }, + { + "name": "github", + "url": "https://github.com/everestgithub" + }, + { + "name": "telegram", + "url": "https://t.me/TheEverestCoin" + }, + { + "name": "telegram_news", + "url": "https://t.me/EverestCoinChannel" + }, + { + "name": "blog", + "url": "https://blog.everestcoin.io" + }, + { + "name": "discord", + "url": "https://discord.com/S8V9H6yE" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/everestcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/everestcoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCRUb5jOLSi73bzUBh7Ao5og" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x84B7BB9614Cf28226d1b0a07499472bc107e3000/logo.png b/blockchains/smartchain/assets/0x84B7BB9614Cf28226d1b0a07499472bc107e3000/logo.png new file mode 100644 index 00000000..81852f80 Binary files /dev/null and b/blockchains/smartchain/assets/0x84B7BB9614Cf28226d1b0a07499472bc107e3000/logo.png differ diff --git a/blockchains/smartchain/assets/0x84F4f7cdb4574C9556A494DaB18ffc1D1D22316C/info.json b/blockchains/smartchain/assets/0x84F4f7cdb4574C9556A494DaB18ffc1D1D22316C/info.json new file mode 100644 index 00000000..b5daa8c6 --- /dev/null +++ b/blockchains/smartchain/assets/0x84F4f7cdb4574C9556A494DaB18ffc1D1D22316C/info.json @@ -0,0 +1,41 @@ +{ + "name": "KING SHIBA", + "type": "BEP20", + "symbol": "KINGSHIB", + "decimals": 9, + "website": "https://www.kingshibaofficial.com/", + "description": "The King of the Shiba Kingdom has arrived to the Binance Smart Chain to provide. His subjects protection for their investments and rewards for their fealty. King Shiba banishes all reward tokens from his lands, instead providing the kingdom reflection and daily burns to give it the best chance to moon.", + "explorer": "https://bscscan.com/token/0x84F4f7cdb4574C9556A494DaB18ffc1D1D22316C", + "status": "active", + "id": "0x84F4f7cdb4574C9556A494DaB18ffc1D1D22316C", + "links": [ + { + "name": "x", + "url": "https://x.com/KINGSHIBABSC" + }, + { + "name": "medium", + "url": "https://kingshiba.medium.com/" + }, + { + "name": "whitepaper", + "url": "https://88c7aa29-9453-4945-9104-cf4128243fe2.filesusr.com/ugd/df6cf8_0b5e22e276bb4c41897c84cc67945195.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/king-shiba/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/king-shiba" + }, + { + "name": "telegram", + "url": "https://t.me/KINGOFSHIBA" + }, + { + "name": "github", + "url": "https://github.com/Sperlo64/KING-SHIBA" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x84F4f7cdb4574C9556A494DaB18ffc1D1D22316C/logo.png b/blockchains/smartchain/assets/0x84F4f7cdb4574C9556A494DaB18ffc1D1D22316C/logo.png new file mode 100644 index 00000000..87200982 Binary files /dev/null and b/blockchains/smartchain/assets/0x84F4f7cdb4574C9556A494DaB18ffc1D1D22316C/logo.png differ diff --git a/blockchains/smartchain/assets/0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09/info.json b/blockchains/smartchain/assets/0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09/info.json new file mode 100644 index 00000000..53e7a11f --- /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 00000000..9601f043 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 new file mode 100644 index 00000000..a0e58fe0 --- /dev/null +++ b/blockchains/smartchain/assets/0x85102c0062Aa918cB9e26D94A284AafCa602Df13/info.json @@ -0,0 +1,29 @@ +{ + "name": "Avalon Protocol", + "website": "https://avalonprotocol.com/", + "description": "Avalon, frictionless yield and liquidity generation protocol on BSC.", + "explorer": "https://bscscan.com/token/0x85102c0062Aa918cB9e26D94A284AafCa602Df13", + "type": "BEP20", + "symbol": "AVLP", + "decimals": 9, + "status": "active", + "id": "0x85102c0062Aa918cB9e26D94A284AafCa602Df13", + "links": [ + { + "name": "x", + "url": "https://x.com/Avalon_Protocol" + }, + { + "name": "telegram", + "url": "https://t.me/AvalonProtocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AvalonProtocol/" + }, + { + "name": "medium", + "url": "https://medium.com/@avalonprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x85102c0062Aa918cB9e26D94A284AafCa602Df13/logo.png b/blockchains/smartchain/assets/0x85102c0062Aa918cB9e26D94A284AafCa602Df13/logo.png new file mode 100644 index 00000000..40a85230 Binary files /dev/null and b/blockchains/smartchain/assets/0x85102c0062Aa918cB9e26D94A284AafCa602Df13/logo.png differ diff --git a/blockchains/smartchain/assets/0x8519EA49c997f50cefFa444d240fB655e89248Aa/info.json b/blockchains/smartchain/assets/0x8519EA49c997f50cefFa444d240fB655e89248Aa/info.json new file mode 100644 index 00000000..75a83bd6 --- /dev/null +++ b/blockchains/smartchain/assets/0x8519EA49c997f50cefFa444d240fB655e89248Aa/info.json @@ -0,0 +1,25 @@ +{ + "name": "RAMP DEFI", + "website": "https://rampdefi.com/", + "description": "Unlocking Liquid Capital From Staked Assets", + "explorer": "https://bscscan.com/token/0x8519ea49c997f50ceffa444d240fb655e89248aa", + "type": "BEP20", + "symbol": "RAMP", + "decimals": 18, + "status": "active", + "id": "0x8519EA49c997f50cefFa444d240fB655e89248Aa", + "links": [ + { + "name": "x", + "url": "https://x.com/RampDefi" + }, + { + "name": "telegram", + "url": "https://t.me/rampdefiofficial" + }, + { + "name": "medium", + "url": "https://medium.com/rampdefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8519EA49c997f50cefFa444d240fB655e89248Aa/logo.png b/blockchains/smartchain/assets/0x8519EA49c997f50cefFa444d240fB655e89248Aa/logo.png new file mode 100644 index 00000000..e6d62663 Binary files /dev/null and b/blockchains/smartchain/assets/0x8519EA49c997f50cefFa444d240fB655e89248Aa/logo.png differ diff --git a/blockchains/smartchain/assets/0x851F7a700c5d67DB59612b871338a85526752c25/info.json b/blockchains/smartchain/assets/0x851F7a700c5d67DB59612b871338a85526752c25/info.json new file mode 100644 index 00000000..816ff850 --- /dev/null +++ b/blockchains/smartchain/assets/0x851F7a700c5d67DB59612b871338a85526752c25/info.json @@ -0,0 +1,11 @@ +{ + "name": "ArgonToken", + "type": "BEP20", + "symbol": "ARGON", + "decimals": 18, + "website": "https://argon.run", + "description": "Worlds first and only blockchain-based freelancer platform on the Binance Chain network, working with fully decentralized and smart contracts.", + "explorer": "https://bscscan.com/token/0x851f7a700c5d67db59612b871338a85526752c25", + "status": "active", + "id": "0x851F7a700c5d67DB59612b871338a85526752c25" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x851F7a700c5d67DB59612b871338a85526752c25/logo.png b/blockchains/smartchain/assets/0x851F7a700c5d67DB59612b871338a85526752c25/logo.png new file mode 100644 index 00000000..07fbf4ba Binary files /dev/null and b/blockchains/smartchain/assets/0x851F7a700c5d67DB59612b871338a85526752c25/logo.png differ diff --git a/blockchains/smartchain/assets/0x853A8Ab1c365ea54719EB13A54d6B22F1fBe7FEb/info.json b/blockchains/smartchain/assets/0x853A8Ab1c365ea54719EB13A54d6B22F1fBe7FEb/info.json new file mode 100644 index 00000000..46038620 --- /dev/null +++ b/blockchains/smartchain/assets/0x853A8Ab1c365ea54719EB13A54d6B22F1fBe7FEb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Investdex", + "website": "https://investdex.io", + "description": "First of its kind, Crypto Workstation. Manage crypto asset with a focus on Defi Space. Currently we have PancakeSwap UniSwap and QuickSwap integrated.", + "explorer": "https://bscscan.com/token/0x853a8ab1c365ea54719eb13a54d6b22f1fbe7feb", + "type": "BEP20", + "symbol": "INVEST", + "decimals": 18, + "status": "active", + "id": "0x853A8Ab1c365ea54719EB13A54d6B22F1fBe7FEb" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x853A8Ab1c365ea54719EB13A54d6B22F1fBe7FEb/logo.png b/blockchains/smartchain/assets/0x853A8Ab1c365ea54719EB13A54d6B22F1fBe7FEb/logo.png new file mode 100644 index 00000000..42869f1a Binary files /dev/null and b/blockchains/smartchain/assets/0x853A8Ab1c365ea54719EB13A54d6B22F1fBe7FEb/logo.png differ diff --git a/blockchains/smartchain/assets/0x854B4c305554c5fa72353e31b8480c0e5128A152/info.json b/blockchains/smartchain/assets/0x854B4c305554c5fa72353e31b8480c0e5128A152/info.json new file mode 100644 index 00000000..2cda160b --- /dev/null +++ b/blockchains/smartchain/assets/0x854B4c305554c5fa72353e31b8480c0e5128A152/info.json @@ -0,0 +1,37 @@ +{ + "name": "Welnance Coin", + "type": "BEP20", + "symbol": "WEL", + "decimals": 18, + "website": "https://welnance.com", + "description": "Dear Trust Wallet Team. According to the meeting, We have collaboration with the BSC team at the suggestion of the Sea Binance Team (telegram user @bibiapac @Jessbinance, @BrettBinance, @BinanceBrokerTeam). So We would like to submit our Logo to Trust Wallet for more business collaboration.", + "explorer": "https://bscscan.com/token/0x854B4c305554c5fa72353e31b8480c0e5128A152", + "status": "active", + "id": "0x854B4c305554c5fa72353e31b8480c0e5128A152", + "links": [ + { + "name": "x", + "url": "https://x.com/WelnanceWorld" + }, + { + "name": "github", + "url": "https://github.com/Welnance" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/8IPBEUZrLb4yNjQ1" + }, + { + "name": "telegram_news", + "url": "https://t.me/welnance" + }, + { + "name": "blog", + "url": "https://medium.com/@info_welnance" + }, + { + "name": "docs", + "url": "https://welnance.gitbook.io/welnance-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x854B4c305554c5fa72353e31b8480c0e5128A152/logo.png b/blockchains/smartchain/assets/0x854B4c305554c5fa72353e31b8480c0e5128A152/logo.png new file mode 100644 index 00000000..959184ea Binary files /dev/null and b/blockchains/smartchain/assets/0x854B4c305554c5fa72353e31b8480c0e5128A152/logo.png differ diff --git a/blockchains/smartchain/assets/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD/info.json b/blockchains/smartchain/assets/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD/info.json new file mode 100644 index 00000000..03853898 --- /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 00000000..adb3f79d Binary files /dev/null and b/blockchains/smartchain/assets/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD/logo.png differ diff --git a/blockchains/smartchain/assets/0x8578Eb576e126f67913a8bC0622e0A22EBa0989A/info.json b/blockchains/smartchain/assets/0x8578Eb576e126f67913a8bC0622e0A22EBa0989A/info.json new file mode 100644 index 00000000..34583b0e --- /dev/null +++ b/blockchains/smartchain/assets/0x8578Eb576e126f67913a8bC0622e0A22EBa0989A/info.json @@ -0,0 +1,11 @@ +{ + "name": "HashPanda", + "website": "https://hashpanda.co", + "description": "HashPanda is a social meme token with a mission to make cryptocurrencies mainstream.", + "explorer": "https://bscscan.com/token/0x8578eb576e126f67913a8bc0622e0a22eba0989a", + "type": "BEP20", + "symbol": "PANDA", + "decimals": 9, + "status": "active", + "id": "0x8578Eb576e126f67913a8bC0622e0A22EBa0989A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8578Eb576e126f67913a8bC0622e0A22EBa0989A/logo.png b/blockchains/smartchain/assets/0x8578Eb576e126f67913a8bC0622e0A22EBa0989A/logo.png new file mode 100644 index 00000000..fa5cc435 Binary files /dev/null and b/blockchains/smartchain/assets/0x8578Eb576e126f67913a8bC0622e0A22EBa0989A/logo.png differ diff --git a/blockchains/smartchain/assets/0x857B222Fc79e1cBBf8Ca5f78CB133d1b7CF34BBd/info.json b/blockchains/smartchain/assets/0x857B222Fc79e1cBBf8Ca5f78CB133d1b7CF34BBd/info.json new file mode 100644 index 00000000..7805c3f5 --- /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 00000000..9737b417 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 new file mode 100644 index 00000000..2037be2e --- /dev/null +++ b/blockchains/smartchain/assets/0x8592fb0E6724A90CE45f05F31B85BddD45931560/info.json @@ -0,0 +1,29 @@ +{ + "name": "Swinate", + "website": "https://www.swinate.io", + "description": "Swinate is the auto-generating liquidity protocol with static farming by holding on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x8592fb0E6724A90CE45f05F31B85BddD45931560", + "type": "BEP20", + "symbol": "SWIN", + "decimals": 9, + "status": "active", + "id": "0x8592fb0E6724A90CE45f05F31B85BddD45931560", + "links": [ + { + "name": "x", + "url": "https://x.com/SWINATEIO" + }, + { + "name": "telegram", + "url": "https://t.me/swinate" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCn0nYSaMt07CWtgU-e2lVkg/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Swinate" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8592fb0E6724A90CE45f05F31B85BddD45931560/logo.png b/blockchains/smartchain/assets/0x8592fb0E6724A90CE45f05F31B85BddD45931560/logo.png new file mode 100644 index 00000000..70397217 Binary files /dev/null and b/blockchains/smartchain/assets/0x8592fb0E6724A90CE45f05F31B85BddD45931560/logo.png differ diff --git a/blockchains/smartchain/assets/0x8595F9dA7b868b1822194fAEd312235E43007b49/info.json b/blockchains/smartchain/assets/0x8595F9dA7b868b1822194fAEd312235E43007b49/info.json new file mode 100644 index 00000000..ccf2aad7 --- /dev/null +++ b/blockchains/smartchain/assets/0x8595F9dA7b868b1822194fAEd312235E43007b49/info.json @@ -0,0 +1,14 @@ +{ + "name": "BNB pegged BitTorrent", + "website": "https://bittorrent.com/btt", + "description": "BNB pegged BitTorrent (BTT BEP20) is a token issued by Binance on Smart Chain; its price is pegged to BitTorrent (BTT) at a ratio of 1:1.", + "explorer": "https://bscscan.com/token/0x8595F9dA7b868b1822194fAEd312235E43007b49", + "type": "BEP20", + "symbol": "BTT", + "decimals": 18, + "status": "active", + "id": "0x8595F9dA7b868b1822194fAEd312235E43007b49", + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8595F9dA7b868b1822194fAEd312235E43007b49/logo.png b/blockchains/smartchain/assets/0x8595F9dA7b868b1822194fAEd312235E43007b49/logo.png new file mode 100644 index 00000000..75fb510b Binary files /dev/null and b/blockchains/smartchain/assets/0x8595F9dA7b868b1822194fAEd312235E43007b49/logo.png differ diff --git a/blockchains/smartchain/assets/0x8597ba143AC509189E89aaB3BA28d661A5dD9830/info.json b/blockchains/smartchain/assets/0x8597ba143AC509189E89aaB3BA28d661A5dD9830/info.json new file mode 100644 index 00000000..e702af38 --- /dev/null +++ b/blockchains/smartchain/assets/0x8597ba143AC509189E89aaB3BA28d661A5dD9830/info.json @@ -0,0 +1,11 @@ +{ + "name": "Old VANCAT Token", + "website": "https://www.vancattoken.com/", + "description": "VANCAT platform allows users to easily deposit BEP20 tokens (ANY tokens) into an NFT. VANCAT token is the governance token of the platform.", + "explorer": "https://bscscan.com/token/0x8597ba143ac509189e89aab3ba28d661a5dd9830", + "id": "0x8597ba143AC509189E89aaB3BA28d661A5dD9830", + "symbol": "VANCAT", + "type": "BEP20", + "decimals": 0, + "status": "abandoned" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/info.json b/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/info.json new file mode 100644 index 00000000..4ed06110 --- /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 00000000..64dec636 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 00000000..0ee77e95 --- /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/0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B/info.json b/blockchains/smartchain/assets/0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B/info.json new file mode 100644 index 00000000..5949ce6d --- /dev/null +++ b/blockchains/smartchain/assets/0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRON", + "symbol": "TRX", + "type": "BEP20", + "decimals": 18, + "description": "TRON is a dedicated to build the infrastructure for a truly decentralized Internet.", + "website": "https://tron.network/", + "explorer": "https://bscscan.com/token/0x85eac5ac2f758618dfa09bdbe0cf174e7d574d5b", + "status": "abandoned", + "id": "0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x85EE8e3E0068EdeeEE960979958d7F61416a9d84/info.json b/blockchains/smartchain/assets/0x85EE8e3E0068EdeeEE960979958d7F61416a9d84/info.json new file mode 100644 index 00000000..05cb1325 --- /dev/null +++ b/blockchains/smartchain/assets/0x85EE8e3E0068EdeeEE960979958d7F61416a9d84/info.json @@ -0,0 +1,29 @@ +{ + "name": "Story", + "website": "https://storytoken.app", + "description": "$STORY is the token fueling our crowdfunding platform called Story. Story provides anyone, anywhere with the platform to help others. Simply share their Story in 60 seconds or less and our community listens.", + "explorer": "https://bscscan.com/token/0x85EE8e3E0068EdeeEE960979958d7F61416a9d84", + "type": "BEP20", + "symbol": "STORY", + "decimals": 18, + "status": "active", + "id": "0x85EE8e3E0068EdeeEE960979958d7F61416a9d84", + "links": [ + { + "name": "x", + "url": "https://x.com/StoryToken_" + }, + { + "name": "telegram", + "url": "https://t.me/storytoken_official" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/story" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/story/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x85EE8e3E0068EdeeEE960979958d7F61416a9d84/logo.png b/blockchains/smartchain/assets/0x85EE8e3E0068EdeeEE960979958d7F61416a9d84/logo.png new file mode 100644 index 00000000..52eda937 Binary files /dev/null and b/blockchains/smartchain/assets/0x85EE8e3E0068EdeeEE960979958d7F61416a9d84/logo.png differ diff --git a/blockchains/smartchain/assets/0x861f1E1397daD68289e8f6a09a2ebb567f1B895C/info.json b/blockchains/smartchain/assets/0x861f1E1397daD68289e8f6a09a2ebb567f1B895C/info.json new file mode 100644 index 00000000..f488749d --- /dev/null +++ b/blockchains/smartchain/assets/0x861f1E1397daD68289e8f6a09a2ebb567f1B895C/info.json @@ -0,0 +1,28 @@ +{ + "name": "Menzy", + "type": "BEP20", + "symbol": "MNZ", + "decimals": 18, + "website": "https://www.menzy.io/", + "description": "Menzy is a movetoearn body movement & step count platform for earning passively. With Menzy we have developed a unique AI-based algorithmic system that detects any sort of activity or sport happening rewarding you for every move you make in $MNZ.", + "explorer": "https://bscscan.com/token/0x861f1E1397daD68289e8f6a09a2ebb567f1B895C", + "status": "active", + "id": "0x861f1E1397daD68289e8f6a09a2ebb567f1B895C", + "links": [ + { + "name": "x", + "url": "https://x.com/MNZtoken" + }, + { + "name": "telegram", + "url": "https://t.me/menzy_official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/menzy/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x861f1E1397daD68289e8f6a09a2ebb567f1B895C/logo.png b/blockchains/smartchain/assets/0x861f1E1397daD68289e8f6a09a2ebb567f1B895C/logo.png new file mode 100644 index 00000000..37aac3a3 Binary files /dev/null and b/blockchains/smartchain/assets/0x861f1E1397daD68289e8f6a09a2ebb567f1B895C/logo.png differ diff --git a/blockchains/smartchain/assets/0x8626F099434d9A7E603B8f0273880209eaBfc1c5/info.json b/blockchains/smartchain/assets/0x8626F099434d9A7E603B8f0273880209eaBfc1c5/info.json new file mode 100644 index 00000000..492f75a2 --- /dev/null +++ b/blockchains/smartchain/assets/0x8626F099434d9A7E603B8f0273880209eaBfc1c5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Berryswap", + "website": "https://berryswap.finance", + "description": "Berry swap exchange is a decentralized exchange platform built on the Binance smart chain BSC protocol, with an integrated seamless interoperability across all blockchain network and diverse contract systems.", + "explorer": "https://bscscan.com/token/0x8626F099434d9A7E603B8f0273880209eaBfc1c5", + "type": "BEP20", + "symbol": "Berry", + "decimals": 18, + "status": "active", + "id": "0x8626F099434d9A7E603B8f0273880209eaBfc1c5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8626F099434d9A7E603B8f0273880209eaBfc1c5/logo.png b/blockchains/smartchain/assets/0x8626F099434d9A7E603B8f0273880209eaBfc1c5/logo.png new file mode 100644 index 00000000..5306eb06 Binary files /dev/null and b/blockchains/smartchain/assets/0x8626F099434d9A7E603B8f0273880209eaBfc1c5/logo.png differ diff --git a/blockchains/smartchain/assets/0x862827E70221C3A0BA27aB608DDfE4d5D3Fe27C2/info.json b/blockchains/smartchain/assets/0x862827E70221C3A0BA27aB608DDfE4d5D3Fe27C2/info.json new file mode 100644 index 00000000..c771edc9 --- /dev/null +++ b/blockchains/smartchain/assets/0x862827E70221C3A0BA27aB608DDfE4d5D3Fe27C2/info.json @@ -0,0 +1,12 @@ +{ + "name": "SafeRune", + "website": "https://saferune.com", + "description": "Self generating liquidity token with 15% reflection back to holders. Valhalla awaits.", + "explorer": "https://bscscan.com/token/0x862827E70221C3A0BA27aB608DDfE4d5D3Fe27C2", + "research": "", + "type": "BEP20", + "symbol": "SAFERUNE", + "decimals": 9, + "status": "active", + "id": "0x862827E70221C3A0BA27aB608DDfE4d5D3Fe27C2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x862827E70221C3A0BA27aB608DDfE4d5D3Fe27C2/logo.png b/blockchains/smartchain/assets/0x862827E70221C3A0BA27aB608DDfE4d5D3Fe27C2/logo.png new file mode 100644 index 00000000..de6f8175 Binary files /dev/null and b/blockchains/smartchain/assets/0x862827E70221C3A0BA27aB608DDfE4d5D3Fe27C2/logo.png differ diff --git a/blockchains/smartchain/assets/0x86432b9beA373172C852D5bbAB1c275FeC3f15aE/info.json b/blockchains/smartchain/assets/0x86432b9beA373172C852D5bbAB1c275FeC3f15aE/info.json new file mode 100644 index 00000000..3f3f36b4 --- /dev/null +++ b/blockchains/smartchain/assets/0x86432b9beA373172C852D5bbAB1c275FeC3f15aE/info.json @@ -0,0 +1,29 @@ +{ + "name": "Sleepy Sloth", + "website": "https://sleepysloth.finance/", + "description": "Sleepy Sloth, frictionless yield and NFT Auction place.", + "explorer": "https://bscscan.com/token/0x86432b9beA373172C852D5bbAB1c275FeC3f15aE", + "type": "BEP20", + "symbol": "SLEEPY", + "decimals": 8, + "status": "active", + "id": "0x86432b9beA373172C852D5bbAB1c275FeC3f15aE", + "links": [ + { + "name": "x", + "url": "https://x.com/SleepySlothBsc" + }, + { + "name": "telegram", + "url": "https://t.me/sleepyslothfinance" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/SleepySlothFinance" + }, + { + "name": "medium", + "url": "https://medium.com/@SleepySlothFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x86432b9beA373172C852D5bbAB1c275FeC3f15aE/logo.png b/blockchains/smartchain/assets/0x86432b9beA373172C852D5bbAB1c275FeC3f15aE/logo.png new file mode 100644 index 00000000..c44e54fa Binary files /dev/null and b/blockchains/smartchain/assets/0x86432b9beA373172C852D5bbAB1c275FeC3f15aE/logo.png differ diff --git a/blockchains/smartchain/assets/0x865d0c78d08BD6e5f0db6BCbF36d3F8EB4ad48F8/info.json b/blockchains/smartchain/assets/0x865d0c78d08BD6e5f0db6BCbF36d3F8EB4ad48F8/info.json new file mode 100644 index 00000000..b3b95d98 --- /dev/null +++ b/blockchains/smartchain/assets/0x865d0c78d08BD6e5f0db6BCbF36d3F8EB4ad48F8/info.json @@ -0,0 +1,11 @@ +{ + "name": "KILIMANJARO", + "type": "BEP20", + "symbol": "KILIMANJARo", + "decimals": 4, + "website": "https://kilimanjaro.finance/", + "description": "BSC Fully deflationary lottery token with original lottery process.", + "explorer": "https://bscscan.com/token/0x865d0c78d08BD6e5f0db6BCbF36d3F8EB4ad48F8", + "status": "active", + "id": "0x865d0c78d08BD6e5f0db6BCbF36d3F8EB4ad48F8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x865d0c78d08BD6e5f0db6BCbF36d3F8EB4ad48F8/logo.png b/blockchains/smartchain/assets/0x865d0c78d08BD6e5f0db6BCbF36d3F8EB4ad48F8/logo.png new file mode 100644 index 00000000..e104de1f Binary files /dev/null and b/blockchains/smartchain/assets/0x865d0c78d08BD6e5f0db6BCbF36d3F8EB4ad48F8/logo.png differ diff --git a/blockchains/smartchain/assets/0x8677aBAD7B458bF16a0fB2676DFC7d3f55Ac202A/info.json b/blockchains/smartchain/assets/0x8677aBAD7B458bF16a0fB2676DFC7d3f55Ac202A/info.json new file mode 100644 index 00000000..1168df5a --- /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 00000000..4e50b5eb 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 00000000..29085174 --- /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 00000000..4aa234d3 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 new file mode 100644 index 00000000..05e4565d --- /dev/null +++ b/blockchains/smartchain/assets/0x8690Cb98496EF0f8c6417D78b5e0E29907668808/info.json @@ -0,0 +1,41 @@ +{ + "name": "Wraith Protocol", + "type": "BEP20", + "symbol": "WRAITH", + "decimals": 9, + "website": "https://wraithprotocol.io/", + "description": "Revolutionizing Privacy Throughout The Blockchain", + "explorer": "https://bscscan.com/token/0x8690Cb98496EF0f8c6417D78b5e0E29907668808", + "status": "active", + "id": "0x8690Cb98496EF0f8c6417D78b5e0E29907668808", + "links": [ + { + "name": "github", + "url": "https://github.com/WraithProtocol/" + }, + { + "name": "x", + "url": "https://x.com/WraithProtocol/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/WRAITH_Official/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wraith-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wraith-protocol/" + }, + { + "name": "telegram", + "url": "https://t.me/WraithOfficial" + }, + { + "name": "whitepaper", + "url": "https://wraithprotocol.io/wp-content/uploads/2021/08/wraithpaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8690Cb98496EF0f8c6417D78b5e0E29907668808/logo.png b/blockchains/smartchain/assets/0x8690Cb98496EF0f8c6417D78b5e0E29907668808/logo.png new file mode 100644 index 00000000..112f900e Binary files /dev/null and b/blockchains/smartchain/assets/0x8690Cb98496EF0f8c6417D78b5e0E29907668808/logo.png differ diff --git a/blockchains/smartchain/assets/0x869Dd7A64AfBe5370a8c591d9B8650BE60c0B8f6/info.json b/blockchains/smartchain/assets/0x869Dd7A64AfBe5370a8c591d9B8650BE60c0B8f6/info.json new file mode 100644 index 00000000..c8dde5a9 --- /dev/null +++ b/blockchains/smartchain/assets/0x869Dd7A64AfBe5370a8c591d9B8650BE60c0B8f6/info.json @@ -0,0 +1,28 @@ +{ + "name": "FastMoon", + "website": "https://fastmoon.finance", + "description": "FastMoon is extremely fast autonomous yield and liquidity generation protocol.", + "explorer": "https://bscscan.com/token/0x869Dd7A64AfBe5370a8c591d9B8650BE60c0B8f6", + "type": "BEP20", + "symbol": "FASTMOON", + "decimals": 9, + "status": "active", + "id": "0x869Dd7A64AfBe5370a8c591d9B8650BE60c0B8f6", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/fastmoonfinance" + }, + { + "name": "x", + "url": "https://x.com/FastMoon Finance" + }, + { + "name": "telegram", + "url": "https://t.me/FastMoonFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x869Dd7A64AfBe5370a8c591d9B8650BE60c0B8f6/logo.png b/blockchains/smartchain/assets/0x869Dd7A64AfBe5370a8c591d9B8650BE60c0B8f6/logo.png new file mode 100644 index 00000000..07ddadae Binary files /dev/null and b/blockchains/smartchain/assets/0x869Dd7A64AfBe5370a8c591d9B8650BE60c0B8f6/logo.png differ diff --git a/blockchains/smartchain/assets/0x86A45b508a375ac8f0FD387e7532B70f71291152/info.json b/blockchains/smartchain/assets/0x86A45b508a375ac8f0FD387e7532B70f71291152/info.json new file mode 100644 index 00000000..2f430491 --- /dev/null +++ b/blockchains/smartchain/assets/0x86A45b508a375ac8f0FD387e7532B70f71291152/info.json @@ -0,0 +1,25 @@ +{ + "name": "EMP Token", + "type": "BEP20", + "symbol": "EMP", + "decimals": 9, + "website": "https://emptoken.io/", + "description": "EMP Token DeFi is a decentralized token. It aims in the medium term to acquire mining rigs using 100% clean energy.", + "explorer": "https://bscscan.com/token/0x86A45b508a375ac8f0FD387e7532B70f71291152", + "status": "active", + "id": "0x86A45b508a375ac8f0FD387e7532B70f71291152", + "links": [ + { + "name": "x", + "url": "https://x.com/emptoken" + }, + { + "name": "telegram", + "url": "https://t.me/grupolight" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x86A45b508a375ac8f0FD387e7532B70f71291152#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x86A45b508a375ac8f0FD387e7532B70f71291152/logo.png b/blockchains/smartchain/assets/0x86A45b508a375ac8f0FD387e7532B70f71291152/logo.png new file mode 100644 index 00000000..5888a10f Binary files /dev/null and b/blockchains/smartchain/assets/0x86A45b508a375ac8f0FD387e7532B70f71291152/logo.png differ diff --git a/blockchains/smartchain/assets/0x86Bb94DdD16Efc8bc58e6b056e8df71D9e666429/info.json b/blockchains/smartchain/assets/0x86Bb94DdD16Efc8bc58e6b056e8df71D9e666429/info.json new file mode 100644 index 00000000..949caf5b --- /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 00000000..75caedcf 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 new file mode 100644 index 00000000..c1c1ba3c --- /dev/null +++ b/blockchains/smartchain/assets/0x86a53fcd199212FEa44FA7e16EB1f28812be911D/info.json @@ -0,0 +1,29 @@ +{ + "name": "Inflation Hedging Coin", + "type": "BEP20", + "symbol": "IHC", + "decimals": 18, + "website": "https://www.ihcoin.io/", + "description": "Inflation Hedging Coin (IHC) was founded to provide an alternative way to secure your wealth without the interference of the monetary hierarchy system in fighting against inflation, starting with a blockchain based form of finance, Decentralized Finance.", + "explorer": "https://bscscan.com/token/0x86a53fcd199212FEa44FA7e16EB1f28812be911D", + "status": "active", + "id": "0x86a53fcd199212FEa44FA7e16EB1f28812be911D", + "links": [ + { + "name": "x", + "url": "https://x.com/IHCoinofficial?s=20" + }, + { + "name": "facebook", + "url": "https://facebook.com/ihcoinofficial" + }, + { + "name": "telegram", + "url": "https://t.me/IHCglobalcommunity" + } + ], + "tags": [ + "staking", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x86a53fcd199212FEa44FA7e16EB1f28812be911D/logo.png b/blockchains/smartchain/assets/0x86a53fcd199212FEa44FA7e16EB1f28812be911D/logo.png new file mode 100644 index 00000000..92aa5434 Binary files /dev/null and b/blockchains/smartchain/assets/0x86a53fcd199212FEa44FA7e16EB1f28812be911D/logo.png differ diff --git a/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/info.json b/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/info.json new file mode 100644 index 00000000..3f275bc8 --- /dev/null +++ b/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/info.json @@ -0,0 +1,25 @@ +{ + "name": "Venus CAKE", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + } + ], + "explorer": "https://bscscan.com/token/0x86aC3974e2BD0d60825230fa6F355fF11409df5c", + "type": "BEP20", + "symbol": "vCAKE", + "decimals": 8, + "status": "active", + "id": "0x86aC3974e2BD0d60825230fa6F355fF11409df5c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/logo.png b/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/logo.png new file mode 100644 index 00000000..afc937dc Binary files /dev/null and b/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/logo.png differ diff --git a/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/info.json b/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/info.json new file mode 100644 index 00000000..500f529a --- /dev/null +++ b/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/info.json @@ -0,0 +1,53 @@ +{ + "name": "CRYPTO SNACK", + "type": "BEP20", + "symbol": "SNACK", + "decimals": 18, + "website": "https://cryptosnacks.org/", + "description": "Crypto Snack is the world’s fastest growing iGaming token", + "explorer": "https://bscscan.com/token/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657", + "status": "abandoned", + "id": "0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657", + "links": [ + { + "name": "x", + "url": "https://x.com/cryptosnack_" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoSnackCommunity" + }, + { + "name": "telegram_news", + "url": "https://t.me/CryptoSnackOfficial" + }, + { + "name": "medium", + "url": "https://cryptosnack.medium.com/" + }, + { + "name": "whitepaper", + "url": "https://cryptosnacks.org/white-paper" + }, + { + "name": "facebook", + "url": "https://facebook.com/CryptoSnackOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/es/currencies/crypto-snack/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/crypto-snack" + }, + { + "name": "github", + "url": "https://github.com/CryptoSnackProject" + }, + { + "name": "discord", + "url": "https://discord.com/invite/NyemjyETwA" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x86bBc9838C3370e0fD570b4ee8087f5aCa299977/info.json b/blockchains/smartchain/assets/0x86bBc9838C3370e0fD570b4ee8087f5aCa299977/info.json new file mode 100644 index 00000000..cf390f53 --- /dev/null +++ b/blockchains/smartchain/assets/0x86bBc9838C3370e0fD570b4ee8087f5aCa299977/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blackberry token", + "type": "BEP20", + "symbol": "BB", + "decimals": 0, + "website": "https://www.blackberrytoken.com/", + "description": "BlackBerry token is an innovative Binance Smart Chain token that is designed for maximizing profits in the DeFI yield generation.", + "explorer": "https://bscscan.com/token/0x86bBc9838C3370e0fD570b4ee8087f5aCa299977", + "status": "active", + "id": "0x86bBc9838C3370e0fD570b4ee8087f5aCa299977" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x86bBc9838C3370e0fD570b4ee8087f5aCa299977/logo.png b/blockchains/smartchain/assets/0x86bBc9838C3370e0fD570b4ee8087f5aCa299977/logo.png new file mode 100644 index 00000000..4be42af3 Binary files /dev/null and b/blockchains/smartchain/assets/0x86bBc9838C3370e0fD570b4ee8087f5aCa299977/logo.png differ diff --git a/blockchains/smartchain/assets/0x86c3E4FfAcdB3AF628ef985a518cd6ee22A22b28/info.json b/blockchains/smartchain/assets/0x86c3E4FfAcdB3AF628ef985a518cd6ee22A22b28/info.json new file mode 100644 index 00000000..35325b8a --- /dev/null +++ b/blockchains/smartchain/assets/0x86c3E4FfAcdB3AF628ef985a518cd6ee22A22b28/info.json @@ -0,0 +1,12 @@ +{ + "name": "Octans", + "website": "https://octanscrypto.com/", + "description": "OCTANS aka $OCTA is a auto yield and liquidity smart contract.", + "explorer": "https://bscscan.com/token/0x86c3E4FfAcdB3AF628ef985a518cd6ee22A22b28", + "research": "", + "type": "BEP20", + "symbol": "OCTA", + "decimals": 9, + "status": "active", + "id": "0x86c3E4FfAcdB3AF628ef985a518cd6ee22A22b28" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x86c3E4FfAcdB3AF628ef985a518cd6ee22A22b28/logo.png b/blockchains/smartchain/assets/0x86c3E4FfAcdB3AF628ef985a518cd6ee22A22b28/logo.png new file mode 100644 index 00000000..1fac7b51 Binary files /dev/null and b/blockchains/smartchain/assets/0x86c3E4FfAcdB3AF628ef985a518cd6ee22A22b28/logo.png differ diff --git a/blockchains/smartchain/assets/0x86dd49963fe91F0e5BC95d171Ff27EA996C0890C/info.json b/blockchains/smartchain/assets/0x86dd49963fe91F0e5BC95d171Ff27EA996C0890C/info.json new file mode 100644 index 00000000..7ce3112e --- /dev/null +++ b/blockchains/smartchain/assets/0x86dd49963fe91F0e5BC95d171Ff27EA996C0890C/info.json @@ -0,0 +1,11 @@ +{ + "name": "0xCharts Token", + "website": "https://0xcharts.io/", + "description": "0xCharts brings Multi-charts and portfolio tracking to the binance smart chain.", + "explorer": "https://bscscan.com/token/0x86dd49963fe91F0e5BC95d171Ff27EA996C0890C", + "type": "BEP20", + "symbol": "0XC", + "decimals": 9, + "status": "active", + "id": "0x86dd49963fe91F0e5BC95d171Ff27EA996C0890C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x86dd49963fe91F0e5BC95d171Ff27EA996C0890C/logo.png b/blockchains/smartchain/assets/0x86dd49963fe91F0e5BC95d171Ff27EA996C0890C/logo.png new file mode 100644 index 00000000..f5b0a0be Binary files /dev/null and b/blockchains/smartchain/assets/0x86dd49963fe91F0e5BC95d171Ff27EA996C0890C/logo.png differ diff --git a/blockchains/smartchain/assets/0x87076daE0086d79873031E96a4b52c85f998ecB5/info.json b/blockchains/smartchain/assets/0x87076daE0086d79873031E96a4b52c85f998ecB5/info.json new file mode 100644 index 00000000..9d0ff0a0 --- /dev/null +++ b/blockchains/smartchain/assets/0x87076daE0086d79873031E96a4b52c85f998ecB5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Revolt", + "type": "BEP20", + "symbol": "REVT", + "decimals": 9, + "website": "https://revoltcoin.io/", + "description": "Revolt is a community driven, fair launched DeFi Token. Revolt will be used as the main cryptocurrency and worldwide payment system for the R-Marketplace. ", + "explorer": "https://bscscan.com/token/0x87076daE0086d79873031E96a4b52c85f998ecB5", + "status": "active", + "id": "0x87076daE0086d79873031E96a4b52c85f998ecB5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x87076daE0086d79873031E96a4b52c85f998ecB5/logo.png b/blockchains/smartchain/assets/0x87076daE0086d79873031E96a4b52c85f998ecB5/logo.png new file mode 100644 index 00000000..6ac70ae3 Binary files /dev/null and b/blockchains/smartchain/assets/0x87076daE0086d79873031E96a4b52c85f998ecB5/logo.png differ diff --git a/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json b/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json new file mode 100644 index 00000000..b915f8d9 --- /dev/null +++ b/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json @@ -0,0 +1,30 @@ +{ + "name": "BHO Token", + "website": "https://bho.network", + "description": "Bring blockchain to life.", + "explorer": "https://bscscan.com/token/0x8717e80eff08f53a45b4a925009957e14860a8a8", + "id": "0x8717e80EfF08F53A45b4A925009957E14860A8a8", + "type": "BEP20", + "symbol": "BHO", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "x", + "url": "https://x.com/bhonetwork" + }, + { + "name": "telegram", + "url": "https://t.me/bhonetwork_en" + }, + { + "name": "github", + "url": "https://github.com/bhonetwork" + } + ], + "tags": [ + "gamefi", + "defi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/logo.png b/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/logo.png new file mode 100644 index 00000000..52474c1d Binary files /dev/null and b/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/logo.png differ diff --git a/blockchains/smartchain/assets/0x87266413e5b64DB72f11bB6795Ee976545DBAf43/info.json b/blockchains/smartchain/assets/0x87266413e5b64DB72f11bB6795Ee976545DBAf43/info.json new file mode 100644 index 00000000..bc4c3712 --- /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 00000000..b48c7db1 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 00000000..e7225d99 --- /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 00000000..b251792a 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 new file mode 100644 index 00000000..dd7e35a6 --- /dev/null +++ b/blockchains/smartchain/assets/0x8789337a176e6e7223Ff115F1CD85C993D42C25c/info.json @@ -0,0 +1,25 @@ +{ + "name": "Copiosa Coin", + "website": "https://copiosa.io", + "description": "Copiosa is a cryptocurrency and technological stack that sits on the Binance Smart Chain that wants to enable others to purchase small cap cryptocurrencies safely, simply and efficiently.", + "explorer": "https://bscscan.com/token/0x8789337a176e6e7223ff115f1cd85c993d42c25c", + "type": "BEP20", + "symbol": "COP", + "decimals": 18, + "status": "active", + "id": "0x8789337a176e6e7223Ff115F1CD85C993D42C25c", + "links": [ + { + "name": "x", + "url": "https://x.com/copiosaofficial" + }, + { + "name": "telegram", + "url": "https://t.me/copiosatelegram" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/copiosaofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8789337a176e6e7223Ff115F1CD85C993D42C25c/logo.png b/blockchains/smartchain/assets/0x8789337a176e6e7223Ff115F1CD85C993D42C25c/logo.png new file mode 100644 index 00000000..d24969f5 Binary files /dev/null and b/blockchains/smartchain/assets/0x8789337a176e6e7223Ff115F1CD85C993D42C25c/logo.png differ diff --git a/blockchains/smartchain/assets/0x87A2d9a9A6b2D61B2a57798f1b4b2DDd19458Fb6/info.json b/blockchains/smartchain/assets/0x87A2d9a9A6b2D61B2a57798f1b4b2DDd19458Fb6/info.json new file mode 100644 index 00000000..f33f9ed5 --- /dev/null +++ b/blockchains/smartchain/assets/0x87A2d9a9A6b2D61B2a57798f1b4b2DDd19458Fb6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Kingdom Game 4.0", + "website": "https://kingdomgame.org", + "description": "Kingdom Game 4.0 is a blockchain-based gaming platform that aims to provide a sustainable sharing economy model.", + "explorer": "https://bscscan.com/token/0x87A2d9a9A6b2D61B2a57798f1b4b2DDd19458Fb6", + "type": "BEP20", + "symbol": "KDG", + "decimals": 18, + "status": "active", + "id": "0x87A2d9a9A6b2D61B2a57798f1b4b2DDd19458Fb6", + "links": [ + { + "name": "x", + "url": "https://x.com/KingdomGame_KDG" + }, + { + "name": "telegram", + "url": "https://t.me/kdg_en" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x87A2d9a9A6b2D61B2a57798f1b4b2DDd19458Fb6/logo.png b/blockchains/smartchain/assets/0x87A2d9a9A6b2D61B2a57798f1b4b2DDd19458Fb6/logo.png new file mode 100644 index 00000000..43e75b74 Binary files /dev/null and b/blockchains/smartchain/assets/0x87A2d9a9A6b2D61B2a57798f1b4b2DDd19458Fb6/logo.png differ diff --git a/blockchains/smartchain/assets/0x87ECEa8512516Ced5db9375c63c23A0846c73a57/info.json b/blockchains/smartchain/assets/0x87ECEa8512516Ced5db9375c63c23A0846c73a57/info.json new file mode 100644 index 00000000..5a18a053 --- /dev/null +++ b/blockchains/smartchain/assets/0x87ECEa8512516Ced5db9375c63c23A0846c73a57/info.json @@ -0,0 +1,29 @@ +{ + "name": "EpiK Protocol", + "symbol": "BSC-EPK", + "type": "BEP20", + "decimals": 18, + "description": "The World's First Decentralized Protocol for AI Data Construction, Storage and Sharing.", + "website": "https://www.epik-protocol.io/", + "explorer": "https://bscscan.com/token/0x87ECEa8512516Ced5db9375c63c23A0846c73a57", + "status": "active", + "id": "0x87ECEa8512516Ced5db9375c63c23A0846c73a57", + "links": [ + { + "name": "x", + "url": "https://x.com/EpikProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/EpikProtocol" + }, + { + "name": "medium", + "url": "https://epikprotocol.medium.com/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Tz6kZbd" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x87ECEa8512516Ced5db9375c63c23A0846c73a57/logo.png b/blockchains/smartchain/assets/0x87ECEa8512516Ced5db9375c63c23A0846c73a57/logo.png new file mode 100644 index 00000000..1747467e Binary files /dev/null and b/blockchains/smartchain/assets/0x87ECEa8512516Ced5db9375c63c23A0846c73a57/logo.png differ diff --git a/blockchains/smartchain/assets/0x87Ffc48C9f89fc5dfA05836e083406D684FD6331/info.json b/blockchains/smartchain/assets/0x87Ffc48C9f89fc5dfA05836e083406D684FD6331/info.json new file mode 100644 index 00000000..35856bd7 --- /dev/null +++ b/blockchains/smartchain/assets/0x87Ffc48C9f89fc5dfA05836e083406D684FD6331/info.json @@ -0,0 +1,24 @@ +{ + "name": "Hachiko", + "type": "BEP20", + "symbol": "Hachiko", + "decimals": 9, + "website": "https://hachiko.cc/", + "description": "Hachiko is a deflationary token on the Binance Smart Chain. Fair launched and 100% community owned. Ownership renounced.", + "explorer": "https://bscscan.com/token/0x87Ffc48C9f89fc5dfA05836e083406D684FD6331", + "status": "active", + "id": "0x87Ffc48C9f89fc5dfA05836e083406D684FD6331", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/hachikobsc" + }, + { + "name": "telegram", + "url": "https://t.me/hachiko_bsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x87Ffc48C9f89fc5dfA05836e083406D684FD6331/logo.png b/blockchains/smartchain/assets/0x87Ffc48C9f89fc5dfA05836e083406D684FD6331/logo.png new file mode 100644 index 00000000..d569db84 Binary files /dev/null and b/blockchains/smartchain/assets/0x87Ffc48C9f89fc5dfA05836e083406D684FD6331/logo.png differ diff --git a/blockchains/smartchain/assets/0x87b1AccE6a1958E522233A737313C086551a5c76/info.json b/blockchains/smartchain/assets/0x87b1AccE6a1958E522233A737313C086551a5c76/info.json new file mode 100644 index 00000000..dc09f630 --- /dev/null +++ b/blockchains/smartchain/assets/0x87b1AccE6a1958E522233A737313C086551a5c76/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEG Wrapped BNB", + "website": "https://fegtoken.com", + "description": "FEG Wrapped BNB", + "explorer": "https://bscscan.com/token/0x87b1acce6a1958e522233a737313c086551a5c76", + "type": "BEP20", + "symbol": "fBNB", + "decimals": 18, + "status": "active", + "id": "0x87b1AccE6a1958E522233A737313C086551a5c76" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x87b1AccE6a1958E522233A737313C086551a5c76/logo.png b/blockchains/smartchain/assets/0x87b1AccE6a1958E522233A737313C086551a5c76/logo.png new file mode 100644 index 00000000..2d673403 Binary files /dev/null and b/blockchains/smartchain/assets/0x87b1AccE6a1958E522233A737313C086551a5c76/logo.png differ diff --git a/blockchains/smartchain/assets/0x881025D714C587611E47d89B7929c1cB4FF05B51/info.json b/blockchains/smartchain/assets/0x881025D714C587611E47d89B7929c1cB4FF05B51/info.json new file mode 100644 index 00000000..1e330bd3 --- /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 00000000..8c2eae61 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 new file mode 100644 index 00000000..a69e698d --- /dev/null +++ b/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus BTC", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B", + "type": "BEP20", + "symbol": "vBTC", + "decimals": 8, + "status": "active", + "id": "0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/logo.png b/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/logo.png new file mode 100644 index 00000000..17835fe3 Binary files /dev/null and b/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/logo.png differ diff --git a/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json b/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json new file mode 100644 index 00000000..292be90c --- /dev/null +++ b/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json @@ -0,0 +1,36 @@ +{ + "name": "SquidGrow", + "type": "BEP20", + "symbol": "SquidGrow", + "decimals": 19, + "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": "abandoned", + "id": "0x88479186BAC914E4313389a64881F5ed0153C765", + "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/smartchain/assets/0x8850D2c68c632E3B258e612abAA8FadA7E6958E5/info.json b/blockchains/smartchain/assets/0x8850D2c68c632E3B258e612abAA8FadA7E6958E5/info.json new file mode 100644 index 00000000..6279ccf2 --- /dev/null +++ b/blockchains/smartchain/assets/0x8850D2c68c632E3B258e612abAA8FadA7E6958E5/info.json @@ -0,0 +1,11 @@ +{ + "name": "PIG Token", + "website": "https://pigtoken.finance/", + "description": "high-yield frictionless farming token.", + "explorer": "https://bscscan.com/token/0x8850d2c68c632e3b258e612abaa8fada7e6958e5", + "type": "BEP20", + "symbol": "PIG", + "decimals": 9, + "status": "active", + "id": "0x8850D2c68c632E3B258e612abAA8FadA7E6958E5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8850D2c68c632E3B258e612abAA8FadA7E6958E5/logo.png b/blockchains/smartchain/assets/0x8850D2c68c632E3B258e612abAA8FadA7E6958E5/logo.png new file mode 100644 index 00000000..1cc67b90 Binary files /dev/null and b/blockchains/smartchain/assets/0x8850D2c68c632E3B258e612abAA8FadA7E6958E5/logo.png differ diff --git a/blockchains/smartchain/assets/0x8855cFbA493D8A22F924a5CE1B06EFBceA68FFeC/info.json b/blockchains/smartchain/assets/0x8855cFbA493D8A22F924a5CE1B06EFBceA68FFeC/info.json new file mode 100644 index 00000000..4a50e532 --- /dev/null +++ b/blockchains/smartchain/assets/0x8855cFbA493D8A22F924a5CE1B06EFBceA68FFeC/info.json @@ -0,0 +1,41 @@ +{ + "name": "Bimp.Finance", + "type": "BEP20", + "symbol": "BIMP", + "decimals": 9, + "website": "https://www.bimp.finance/", + "description": "BIMP is BNB In My Pocket. Bimp.Finance is the future of NFT merchandise selling for female online streamers. Our vision is to provide a platform where female streamers can sell a different NFT merchandise and gain commissions and royalties from every NFT sold through their channels. We envision that our platform NFT collection will provide a long-term revenue model for the both of our female streamers and Bimp investors.", + "explorer": "https://bscscan.com/token/0x8855cFbA493D8A22F924a5CE1B06EFBceA68FFeC", + "status": "active", + "id": "0x8855cFbA493D8A22F924a5CE1B06EFBceA68FFeC", + "links": [ + { + "name": "x", + "url": "https://x.com/BIMP_Official" + }, + { + "name": "telegram", + "url": "https://t.me/BimpFinance" + }, + { + "name": "github", + "url": "https://github.com/BIMPFinance" + }, + { + "name": "facebook", + "url": "https://facebook.com/bimpfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bimp-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bimp-finance" + }, + { + "name": "source_code", + "url": "https://github.com/BIMPFinance/bimp.finance/blob/main/bimpfinance.sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8855cFbA493D8A22F924a5CE1B06EFBceA68FFeC/logo.png b/blockchains/smartchain/assets/0x8855cFbA493D8A22F924a5CE1B06EFBceA68FFeC/logo.png new file mode 100644 index 00000000..3b3b8034 Binary files /dev/null and b/blockchains/smartchain/assets/0x8855cFbA493D8A22F924a5CE1B06EFBceA68FFeC/logo.png differ diff --git a/blockchains/smartchain/assets/0x885C5Fb8f0e67b2b0Cf3a437e6Cc6EBC0F9f9014/info.json b/blockchains/smartchain/assets/0x885C5Fb8f0e67b2b0Cf3a437e6Cc6EBC0F9f9014/info.json new file mode 100644 index 00000000..b80cf521 --- /dev/null +++ b/blockchains/smartchain/assets/0x885C5Fb8f0e67b2b0Cf3a437e6Cc6EBC0F9f9014/info.json @@ -0,0 +1,37 @@ +{ + "name": "GemGuardian", + "type": "BEP20", + "symbol": "GEMG", + "decimals": 18, + "website": "https://gemguardian.io", + "description": "GEMG is a GemGuardian NFT Game Token", + "explorer": "https://bscscan.com/token/0x885c5fb8f0e67b2b0cf3a437e6cc6ebc0f9f9014", + "status": "active", + "id": "0x885C5Fb8f0e67b2b0Cf3a437e6Cc6EBC0F9f9014", + "links": [ + { + "name": "x", + "url": "https://x.com/GemGuardianNFT" + }, + { + "name": "telegram", + "url": "https://t.me/GemGuardianOfficialChat" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gemguardian/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gemguardian/" + }, + { + "name": "medium", + "url": "https://gemguardian.medium.com/" + }, + { + "name": "whitepaper", + "url": "https://gemguardian.io/docs/gemguardian.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x885C5Fb8f0e67b2b0Cf3a437e6Cc6EBC0F9f9014/logo.png b/blockchains/smartchain/assets/0x885C5Fb8f0e67b2b0Cf3a437e6Cc6EBC0F9f9014/logo.png new file mode 100644 index 00000000..2e071aa4 Binary files /dev/null and b/blockchains/smartchain/assets/0x885C5Fb8f0e67b2b0Cf3a437e6Cc6EBC0F9f9014/logo.png differ diff --git a/blockchains/smartchain/assets/0x88672043905BdD272df55a5A7Bb1b7E1e693cBc5/info.json b/blockchains/smartchain/assets/0x88672043905BdD272df55a5A7Bb1b7E1e693cBc5/info.json new file mode 100644 index 00000000..921046ce --- /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 00000000..493195c5 Binary files /dev/null and b/blockchains/smartchain/assets/0x88672043905BdD272df55a5A7Bb1b7E1e693cBc5/logo.png differ diff --git a/blockchains/smartchain/assets/0x8869eac0D82245A2df50a0FAD770D72CE63649d1/info.json b/blockchains/smartchain/assets/0x8869eac0D82245A2df50a0FAD770D72CE63649d1/info.json new file mode 100644 index 00000000..f1a5a3a4 --- /dev/null +++ b/blockchains/smartchain/assets/0x8869eac0D82245A2df50a0FAD770D72CE63649d1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Doggy Swap", + "website": "https://doggyswap.io", + "description": "Doggy Swap is the all-in-one DeFi platform that provides both AMM and NFT Marketplace solutions in one place!", + "explorer": "https://bscscan.com/token/0x8869eac0d82245a2df50a0fad770d72ce63649d1", + "type": "BEP20", + "symbol": "DOGS", + "decimals": 18, + "status": "active", + "id": "0x8869eac0D82245A2df50a0FAD770D72CE63649d1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8869eac0D82245A2df50a0FAD770D72CE63649d1/logo.png b/blockchains/smartchain/assets/0x8869eac0D82245A2df50a0FAD770D72CE63649d1/logo.png new file mode 100644 index 00000000..e33718e9 Binary files /dev/null and b/blockchains/smartchain/assets/0x8869eac0D82245A2df50a0FAD770D72CE63649d1/logo.png differ diff --git a/blockchains/smartchain/assets/0x8873e32E39BB52ae06F9746B889D4A50df1096db/info.json b/blockchains/smartchain/assets/0x8873e32E39BB52ae06F9746B889D4A50df1096db/info.json new file mode 100644 index 00000000..3ed1fa2c --- /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 00000000..3c1f957c 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 new file mode 100644 index 00000000..bd120220 --- /dev/null +++ b/blockchains/smartchain/assets/0x88803312628fd21542F706B0C7dC8495c1c10B2e/info.json @@ -0,0 +1,28 @@ +{ + "name": "DeFi Degen Land", + "website": "https://defidegenland.com/", + "description": "DeFi Degen Land is a Metaverse / gamified DeFi where the player join an online 'world' that has the capability of interacting with the blockchain. DeFiDegenLand holders earns Bitcoin as an incentive to keep holding the token, also it's the native token on the metaverse.", + "explorer": "https://bscscan.com/token/0x88803312628fd21542F706B0C7dC8495c1c10B2e", + "type": "BEP20", + "symbol": "DDL", + "decimals": 18, + "status": "active", + "id": "0x88803312628fd21542F706B0C7dC8495c1c10B2e", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/DeFiDegenLand" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defi-degen-land/" + }, + { + "name": "x", + "url": "https://x.com/DeFi_Degen_Land" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x88803312628fd21542F706B0C7dC8495c1c10B2e/logo.png b/blockchains/smartchain/assets/0x88803312628fd21542F706B0C7dC8495c1c10B2e/logo.png new file mode 100644 index 00000000..d40d77ec Binary files /dev/null and b/blockchains/smartchain/assets/0x88803312628fd21542F706B0C7dC8495c1c10B2e/logo.png differ diff --git a/blockchains/smartchain/assets/0x8888818f35BbeD1C632364bf1b15446FAD088888/info.json b/blockchains/smartchain/assets/0x8888818f35BbeD1C632364bf1b15446FAD088888/info.json new file mode 100644 index 00000000..3e97e4a8 --- /dev/null +++ b/blockchains/smartchain/assets/0x8888818f35BbeD1C632364bf1b15446FAD088888/info.json @@ -0,0 +1,29 @@ +{ + "name": "PocMon", + "website": "https://pocmons.com/", + "description": "The PocMon Gaming NFT Ecosystem is designed to meet all kinds of decentralised gaming requests: from NFTs discovery, minting and trading to game currencies exchange, lootboxes and blockchain games store.", + "explorer": "https://bscscan.com/token/0x8888818f35BbeD1C632364bf1b15446FAD088888", + "type": "BEP20", + "symbol": "MON", + "decimals": 9, + "status": "active", + "id": "0x8888818f35BbeD1C632364bf1b15446FAD088888", + "links": [ + { + "name": "github", + "url": "https://github.com/Pocmoncom" + }, + { + "name": "telegram", + "url": "https://t.me/pocmoncom" + }, + { + "name": "x", + "url": "https://x.com/pocmoncom" + }, + { + "name": "whitepaper", + "url": "https://pocmoncom.gitbook.io/pocmon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8888818f35BbeD1C632364bf1b15446FAD088888/logo.png b/blockchains/smartchain/assets/0x8888818f35BbeD1C632364bf1b15446FAD088888/logo.png new file mode 100644 index 00000000..8203b239 Binary files /dev/null and b/blockchains/smartchain/assets/0x8888818f35BbeD1C632364bf1b15446FAD088888/logo.png differ diff --git a/blockchains/smartchain/assets/0x8888888888821672ABBA04f584E8343A9242B3aa/info.json b/blockchains/smartchain/assets/0x8888888888821672ABBA04f584E8343A9242B3aa/info.json new file mode 100644 index 00000000..30578493 --- /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 00000000..8ba144f6 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 new file mode 100644 index 00000000..5d9a64fa --- /dev/null +++ b/blockchains/smartchain/assets/0x88888888Fc33e4ECba8958c0c2AD361089E19885/info.json @@ -0,0 +1,40 @@ +{ + "name": "Birb", + "website": "https://birb.com", + "description": "As a high deflationary DeFi token built on the Binance Smart Chain, Birb aims at becoming a highly usable token with multiple use cases such as diverse security options, e-commerce plugins, and social $BIRB sending.", + "explorer": "https://bscscan.com/token/0x88888888Fc33e4ECba8958c0c2AD361089E19885", + "type": "BEP20", + "symbol": "BIRB", + "decimals": 18, + "status": "abandoned", + "id": "0x88888888Fc33e4ECba8958c0c2AD361089E19885", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/birbdev" + }, + { + "name": "x", + "url": "https://x.com/BirbDefi" + }, + { + "name": "telegram", + "url": "https://t.me/birbdefi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/birb" + }, + { + "name": "whitepaper", + "url": "https://dessertswap.finance/audits/Birb%20BEP-20%20Audit%209082831.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BirbDefi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8891de345808E77228677f0eFb56125DB1E93a49/info.json b/blockchains/smartchain/assets/0x8891de345808E77228677f0eFb56125DB1E93a49/info.json new file mode 100644 index 00000000..962f2286 --- /dev/null +++ b/blockchains/smartchain/assets/0x8891de345808E77228677f0eFb56125DB1E93a49/info.json @@ -0,0 +1,12 @@ +{ + "name": "Raven X", + "website": "https://ravenx.finance/", + "description": "RX is a charity coin that donates 2% of every transaction directly to the Binance charity wallet.", + "explorer": "https://bscscan.com/token/0x8891de345808E77228677f0eFb56125DB1E93a49", + "research": "https://ravenx.finance/", + "type": "BEP20", + "symbol": "RX", + "decimals": 9, + "status": "active", + "id": "0x8891de345808E77228677f0eFb56125DB1E93a49" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8891de345808E77228677f0eFb56125DB1E93a49/logo.png b/blockchains/smartchain/assets/0x8891de345808E77228677f0eFb56125DB1E93a49/logo.png new file mode 100644 index 00000000..08ca303b Binary files /dev/null and b/blockchains/smartchain/assets/0x8891de345808E77228677f0eFb56125DB1E93a49/logo.png differ diff --git a/blockchains/smartchain/assets/0x8893D5fA71389673C5c4b9b3cb4EE1ba71207556/info.json b/blockchains/smartchain/assets/0x8893D5fA71389673C5c4b9b3cb4EE1ba71207556/info.json new file mode 100644 index 00000000..94a08af9 --- /dev/null +++ b/blockchains/smartchain/assets/0x8893D5fA71389673C5c4b9b3cb4EE1ba71207556/info.json @@ -0,0 +1,21 @@ +{ + "name": "Squirrel Finance", + "website": "https://squirrel.finance", + "description": "Squirrel Finance is a new ecosystem on the BinanceSmartChain to empower simple & secure DeFi.", + "explorer": "https://bscscan.com/token/0x8893D5fA71389673C5c4b9b3cb4EE1ba71207556", + "type": "BEP20", + "symbol": "NUTS", + "decimals": 18, + "status": "active", + "id": "0x8893D5fA71389673C5c4b9b3cb4EE1ba71207556", + "links": [ + { + "name": "x", + "url": "https://x.com/SquirrelDeFi" + }, + { + "name": "telegram", + "url": "https://t.me/SquirrelDeFi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8893D5fA71389673C5c4b9b3cb4EE1ba71207556/logo.png b/blockchains/smartchain/assets/0x8893D5fA71389673C5c4b9b3cb4EE1ba71207556/logo.png new file mode 100644 index 00000000..b99f2e3c Binary files /dev/null and b/blockchains/smartchain/assets/0x8893D5fA71389673C5c4b9b3cb4EE1ba71207556/logo.png differ diff --git a/blockchains/smartchain/assets/0x8899eC96ed8C96b5C86C23c3f069c3dEf75b6d97/info.json b/blockchains/smartchain/assets/0x8899eC96ed8C96b5C86C23c3f069c3dEf75b6d97/info.json new file mode 100644 index 00000000..dc59aadc --- /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 00000000..d404475c 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 00000000..2021acee --- /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 00000000..2ce033b0 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 new file mode 100644 index 00000000..72c2c883 --- /dev/null +++ b/blockchains/smartchain/assets/0x88C926CA9234Ee194dc47be6e91d35e8CCbEed51/info.json @@ -0,0 +1,33 @@ +{ + "name": "MooCow", + "website": "https://moocow.me", + "description": "Wen moo? A deflationary DeFi token/cow that wants to take you to the moon.", + "explorer": "https://bscscan.com/token/0x88C926CA9234Ee194dc47be6e91d35e8CCbEed51", + "type": "BEP20", + "symbol": "MOO", + "decimals": 9, + "status": "active", + "id": "0x88C926CA9234Ee194dc47be6e91d35e8CCbEed51", + "links": [ + { + "name": "github", + "url": "https://github.com/moocowtoken/MooCow/" + }, + { + "name": "x", + "url": "https://x.com/moocowtoken" + }, + { + "name": "telegram", + "url": "https://t.me/moocowtoken" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Num2J4WzP2" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MooCowToken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x88C926CA9234Ee194dc47be6e91d35e8CCbEed51/logo.png b/blockchains/smartchain/assets/0x88C926CA9234Ee194dc47be6e91d35e8CCbEed51/logo.png new file mode 100644 index 00000000..1f5bbe25 Binary files /dev/null and b/blockchains/smartchain/assets/0x88C926CA9234Ee194dc47be6e91d35e8CCbEed51/logo.png differ diff --git a/blockchains/smartchain/assets/0x88D7e9B65dC24Cf54f5eDEF929225FC3E1580C25/info.json b/blockchains/smartchain/assets/0x88D7e9B65dC24Cf54f5eDEF929225FC3E1580C25/info.json new file mode 100644 index 00000000..eafa3435 --- /dev/null +++ b/blockchains/smartchain/assets/0x88D7e9B65dC24Cf54f5eDEF929225FC3E1580C25/info.json @@ -0,0 +1,36 @@ +{ + "name": "JumpToken", + "website": "https://jumptask.io", + "description": "JumpToken is a utility token for use in the JumpTask ecosystem, a decentralized work platform built to efficiently match work demand with a worldwide workforce", + "explorer": "https://bscscan.com/token/0x88d7e9b65dc24cf54f5edef929225fc3e1580c25", + "type": "BEP20", + "symbol": "JMPT", + "decimals": 18, + "status": "active", + "id": "0x88D7e9B65dC24Cf54f5eDEF929225FC3E1580C25", + "links": [ + { + "name": "x", + "url": "https://x.com/JumpTask_app" + }, + { + "name": "telegram", + "url": "https://t.me/jumptask" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jumptoken/" + }, + { + "name": "whitepaper", + "url": "https://gitbook.jumptask.io/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/jumptoken" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x88D7e9B65dC24Cf54f5eDEF929225FC3E1580C25/logo.png b/blockchains/smartchain/assets/0x88D7e9B65dC24Cf54f5eDEF929225FC3E1580C25/logo.png new file mode 100644 index 00000000..ea2e6f31 Binary files /dev/null and b/blockchains/smartchain/assets/0x88D7e9B65dC24Cf54f5eDEF929225FC3E1580C25/logo.png differ diff --git a/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/info.json b/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/info.json new file mode 100644 index 00000000..304a5bc6 --- /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 00000000..99779d45 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 new file mode 100644 index 00000000..c58b591e --- /dev/null +++ b/blockchains/smartchain/assets/0x88c55B3255aE1e6628C953C5CDfF27Ad3Cc33C81/info.json @@ -0,0 +1,25 @@ +{ + "name": "My Defi Legends", + "website": "https://mydefilegends.com", + "description": "My Defi Legends is a complete metaverse of Digital Heroes that live on the Binance Smart Chain (BSC), which allows millions of people to join the NFT & blockchain-based gaming world in an easy, creative and fun way.", + "explorer": "https://bscscan.com/token/0x88c55B3255aE1e6628C953C5CDfF27Ad3Cc33C81", + "type": "BEP20", + "symbol": "DLegends", + "decimals": 9, + "status": "active", + "id": "0x88c55B3255aE1e6628C953C5CDfF27Ad3Cc33C81", + "links": [ + { + "name": "github", + "url": "https://github.com/MyDefiLegendsOfficial/" + }, + { + "name": "x", + "url": "https://x.com/MyDefiLegends" + }, + { + "name": "telegram", + "url": "https://t.me/MyDefiLegends" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x88c55B3255aE1e6628C953C5CDfF27Ad3Cc33C81/logo.png b/blockchains/smartchain/assets/0x88c55B3255aE1e6628C953C5CDfF27Ad3Cc33C81/logo.png new file mode 100644 index 00000000..e56f5178 Binary files /dev/null and b/blockchains/smartchain/assets/0x88c55B3255aE1e6628C953C5CDfF27Ad3Cc33C81/logo.png differ diff --git a/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/info.json b/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/info.json new file mode 100644 index 00000000..f2ce99da --- /dev/null +++ b/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/info.json @@ -0,0 +1,43 @@ +{ + "name": "BNB pegged yearn.finance", + "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", + "research": "https://research.binance.com/en/projects/yearnfinance", + "type": "BEP20", + "symbol": "YFI", + "decimals": 18, + "status": "active", + "id": "0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e", + "tags": [ + "binance-peg", + "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/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/logo.png b/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/logo.png new file mode 100644 index 00000000..9c225f4b Binary files /dev/null and b/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/logo.png differ diff --git a/blockchains/smartchain/assets/0x891E4554227385c5c740F9B483E935E3CbC29F01/info.json b/blockchains/smartchain/assets/0x891E4554227385c5c740F9B483E935E3CbC29F01/info.json new file mode 100644 index 00000000..0bd37ba0 --- /dev/null +++ b/blockchains/smartchain/assets/0x891E4554227385c5c740F9B483E935E3CbC29F01/info.json @@ -0,0 +1,37 @@ +{ + "name": "Robust Token", + "website": "https://robustprotocol.fi", + "description": "Robust Token (RBT) is an original concept token on the Binance Smart Chain with a limited supply of 100 000 RBT and a 1% burn per transaction that gets converted into Robust Reward (RBW).", + "explorer": "https://bscscan.com/token/0x891E4554227385c5c740F9B483E935E3CbC29F01", + "type": "BEP20", + "symbol": "RBT", + "decimals": 18, + "status": "active", + "id": "0x891E4554227385c5c740F9B483E935E3CbC29F01", + "links": [ + { + "name": "telegram", + "url": "https://t.me/robustprotocol/" + }, + { + "name": "x", + "url": "https://x.com/robustprotocol/" + }, + { + "name": "docs", + "url": "https://docs.robustprotocol.fi/" + }, + { + "name": "whitepaper", + "url": "https://robustprotocol.fi/RobustProtocol.pdf" + }, + { + "name": "medium", + "url": "https://robustprotocol.medium.com/" + }, + { + "name": "github", + "url": "https://github.com/robustprotocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x891E4554227385c5c740F9B483E935E3CbC29F01/logo.png b/blockchains/smartchain/assets/0x891E4554227385c5c740F9B483E935E3CbC29F01/logo.png new file mode 100644 index 00000000..e97c59b9 Binary files /dev/null and b/blockchains/smartchain/assets/0x891E4554227385c5c740F9B483E935E3CbC29F01/logo.png differ diff --git a/blockchains/smartchain/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json b/blockchains/smartchain/assets/0x89233399708C18Ac6887F90A2B4Cd8Ba5fEdD06e/info.json new file mode 100644 index 00000000..447a176b --- /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 00000000..c82cd60e 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 new file mode 100644 index 00000000..209b919f --- /dev/null +++ b/blockchains/smartchain/assets/0x8927282a3d05EF5F7dc24eD0eE009be264d2ebd7/info.json @@ -0,0 +1,37 @@ +{ + "name": "Baby Floki Up", + "website": "https://babyflokiup.finance/", + "description": "As the little brother of $FLOKI, Baby Floki Up is here to bring the cutest most inspiring coin of the whole Doge family thanks to the #DogeFather Elon Musk", + "explorer": "https://bscscan.com/token/0x8927282a3d05ef5f7dc24ed0ee009be264d2ebd7", + "type": "BEP20", + "symbol": "BFU", + "decimals": 9, + "status": "active", + "id": "0x8927282a3d05EF5F7dc24eD0eE009be264d2ebd7", + "links": [ + { + "name": "telegram", + "url": "https://t.me/babyflokiupchat" + }, + { + "name": "x", + "url": "https://x.com/babyflokiup" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/babyflokiup/" + }, + { + "name": "whitepaper", + "url": "https://baby-floki-up-1.gitbook.io/baby-floki-up/-MlR5iPBdYX6tEQ8kpvS/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/vi/currencies/baby-floki-up/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/baby-floki-up" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8927282a3d05EF5F7dc24eD0eE009be264d2ebd7/logo.png b/blockchains/smartchain/assets/0x8927282a3d05EF5F7dc24eD0eE009be264d2ebd7/logo.png new file mode 100644 index 00000000..ff5a50b8 Binary files /dev/null and b/blockchains/smartchain/assets/0x8927282a3d05EF5F7dc24eD0eE009be264d2ebd7/logo.png differ diff --git a/blockchains/smartchain/assets/0x893F9C19e2b9f7865f6d0f953C38B34A3a6c17cF/info.json b/blockchains/smartchain/assets/0x893F9C19e2b9f7865f6d0f953C38B34A3a6c17cF/info.json new file mode 100644 index 00000000..3948edbb --- /dev/null +++ b/blockchains/smartchain/assets/0x893F9C19e2b9f7865f6d0f953C38B34A3a6c17cF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Reflect", + "type": "BEP20", + "symbol": "BTCR", + "decimals": 9, + "website": "https://bitcoinreflect.finance", + "description": "BTCR token is a community based project that enables cashless payment procedures via a secure blockchain connection with provenance. In future, Bitcoin Reflect can be used to buy goods online with crypto including products on eBay, amazon and etsy. Investors can profit from a decreasing supply that accumulates new tokens with every processed BTCR transaction. That results in more BTCR tokens directly processed as passive income into their own wallet, while the circulating supply decreases.", + "explorer": "https://bscscan.com/token/0x893F9C19e2b9f7865f6d0f953C38B34A3a6c17cF", + "status": "active", + "id": "0x893F9C19e2b9f7865f6d0f953C38B34A3a6c17cF" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x893F9C19e2b9f7865f6d0f953C38B34A3a6c17cF/logo.png b/blockchains/smartchain/assets/0x893F9C19e2b9f7865f6d0f953C38B34A3a6c17cF/logo.png new file mode 100644 index 00000000..db8b4eda Binary files /dev/null and b/blockchains/smartchain/assets/0x893F9C19e2b9f7865f6d0f953C38B34A3a6c17cF/logo.png differ diff --git a/blockchains/smartchain/assets/0x893e14FAfa8df32D9bE7eab810027eeA8828A98c/info.json b/blockchains/smartchain/assets/0x893e14FAfa8df32D9bE7eab810027eeA8828A98c/info.json new file mode 100644 index 00000000..dff2ff73 --- /dev/null +++ b/blockchains/smartchain/assets/0x893e14FAfa8df32D9bE7eab810027eeA8828A98c/info.json @@ -0,0 +1,21 @@ +{ + "name": "UNIMOON", + "type": "BEP20", + "symbol": "UNIMOON", + "decimals": 9, + "website": "https://unimoon.io/", + "description": "The First L1 Blockchain Built to Decentralize Social Me​dia", + "explorer": "https://bscscan.com/token/0x893e14FAfa8df32D9bE7eab810027eeA8828A98c", + "status": "active", + "id": "0x893e14FAfa8df32D9bE7eab810027eeA8828A98c", + "links": [ + { + "name": "x", + "url": "https://x.com/unimoonnetwork" + }, + { + "name": "telegram", + "url": "https://t.me/unimoonnetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x893e14FAfa8df32D9bE7eab810027eeA8828A98c/logo.png b/blockchains/smartchain/assets/0x893e14FAfa8df32D9bE7eab810027eeA8828A98c/logo.png new file mode 100644 index 00000000..1d0387c4 Binary files /dev/null and b/blockchains/smartchain/assets/0x893e14FAfa8df32D9bE7eab810027eeA8828A98c/logo.png differ diff --git a/blockchains/smartchain/assets/0x8943b6d1677a4Addbe5Aa58f429e11E856746Fba/info.json b/blockchains/smartchain/assets/0x8943b6d1677a4Addbe5Aa58f429e11E856746Fba/info.json new file mode 100644 index 00000000..d8709782 --- /dev/null +++ b/blockchains/smartchain/assets/0x8943b6d1677a4Addbe5Aa58f429e11E856746Fba/info.json @@ -0,0 +1,11 @@ +{ + "name": "DUI", + "website": "https://www.duicrypto.com/", + "description": "DuiCoin is the first hybrid CatDog meme coin! Dui is a real life animal and will represent our journey. The destiny? The first MemeCoin Ecosystem!", + "explorer": "https://bscscan.com/token/0x8943b6d1677a4addbe5aa58f429e11e856746fba", + "type": "BEP20", + "symbol": "$DUI", + "decimals": 9, + "status": "active", + "id": "0x8943b6d1677a4Addbe5Aa58f429e11E856746Fba" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8943b6d1677a4Addbe5Aa58f429e11E856746Fba/logo.png b/blockchains/smartchain/assets/0x8943b6d1677a4Addbe5Aa58f429e11E856746Fba/logo.png new file mode 100644 index 00000000..27072cea Binary files /dev/null and b/blockchains/smartchain/assets/0x8943b6d1677a4Addbe5Aa58f429e11E856746Fba/logo.png differ diff --git a/blockchains/smartchain/assets/0x89671544190eE39E469C8393009875dF6565457a/info.json b/blockchains/smartchain/assets/0x89671544190eE39E469C8393009875dF6565457a/info.json new file mode 100644 index 00000000..305e5615 --- /dev/null +++ b/blockchains/smartchain/assets/0x89671544190eE39E469C8393009875dF6565457a/info.json @@ -0,0 +1,11 @@ +{ + "name": "SpaceGrime", + "website": "https://spacegrime.com/", + "description": "SpaceGrime is the intergalactic crypto of the future", + "explorer": "https://bscscan.com/token/0x89671544190ee39e469c8393009875df6565457a", + "type": "BEP20", + "symbol": "GRIMEX", + "decimals": 18, + "status": "active", + "id": "0x89671544190eE39E469C8393009875dF6565457a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x89671544190eE39E469C8393009875dF6565457a/logo.png b/blockchains/smartchain/assets/0x89671544190eE39E469C8393009875dF6565457a/logo.png new file mode 100644 index 00000000..7159499f Binary files /dev/null and b/blockchains/smartchain/assets/0x89671544190eE39E469C8393009875dF6565457a/logo.png differ diff --git a/blockchains/smartchain/assets/0x89675DcCFE0c19bca178A0E0384Bd8E273a45cbA/info.json b/blockchains/smartchain/assets/0x89675DcCFE0c19bca178A0E0384Bd8E273a45cbA/info.json new file mode 100644 index 00000000..1e5f276a --- /dev/null +++ b/blockchains/smartchain/assets/0x89675DcCFE0c19bca178A0E0384Bd8E273a45cbA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dexview", + "website": "https://dexview.io", + "description": "Dexview aims to become a cross network real-time trading-view market and assets analytics platform, that offers the best user experience.", + "explorer": "https://bscscan.com/token/0x89675DcCFE0c19bca178A0E0384Bd8E273a45cbA", + "type": "BEP20", + "symbol": "DXW", + "decimals": 18, + "status": "active", + "id": "0x89675DcCFE0c19bca178A0E0384Bd8E273a45cbA" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x89675DcCFE0c19bca178A0E0384Bd8E273a45cbA/logo.png b/blockchains/smartchain/assets/0x89675DcCFE0c19bca178A0E0384Bd8E273a45cbA/logo.png new file mode 100644 index 00000000..eb11517a Binary files /dev/null and b/blockchains/smartchain/assets/0x89675DcCFE0c19bca178A0E0384Bd8E273a45cbA/logo.png differ diff --git a/blockchains/smartchain/assets/0x897304D4606B2d5FcAf886aa7AA143e478EC36C5/info.json b/blockchains/smartchain/assets/0x897304D4606B2d5FcAf886aa7AA143e478EC36C5/info.json new file mode 100644 index 00000000..be6a55ca --- /dev/null +++ b/blockchains/smartchain/assets/0x897304D4606B2d5FcAf886aa7AA143e478EC36C5/info.json @@ -0,0 +1,37 @@ +{ + "name": "Mind Music", + "type": "BEP20", + "symbol": "MND", + "decimals": 9, + "website": "https://mindmusic.finance", + "description": "Mind Music harnesses the power of music to capture the imagination of the world. Millions of people suffer everyday with poor mental health. Mind Music intends to collaborate with major worldwide artists to raise awareness on a global scale. Through our album releases, we will #breakthestigma, and bring people together for an incredibly important, long overdue conversation. Join us and be part of a musical revolution!", + "explorer": "https://bscscan.com/token/0x897304D4606B2d5FcAf886aa7AA143e478EC36C5", + "status": "abandoned", + "id": "0x897304D4606B2d5FcAf886aa7AA143e478EC36C5", + "migrate": { + "asset_id": "c20000714_t0xCB0B74476d72BBBC77f14724a859b2e960Ca1803", + "url": "https://mindmusic.finance" + }, + "links": [ + { + "name": "x", + "url": "https://x.com/mindmusic_bsc" + }, + { + "name": "telegram", + "url": "https://t.me/mindmusicbsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mind-music/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mind-music" + }, + { + "name": "github", + "url": "https://github.com/D-B-S-G/MindMusic/tree/main" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x897fE07d613037c206429628611A2665E18C657d/info.json b/blockchains/smartchain/assets/0x897fE07d613037c206429628611A2665E18C657d/info.json new file mode 100644 index 00000000..d3f27ec5 --- /dev/null +++ b/blockchains/smartchain/assets/0x897fE07d613037c206429628611A2665E18C657d/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nether", + "type": "BEP20", + "symbol": "NN", + "decimals": 18, + "website": "https://nether.network/", + "description": "-", + "explorer": "https://bscscan.com/token/0x897fE07d613037c206429628611A2665E18C657d", + "status": "active", + "id": "0x897fE07d613037c206429628611A2665E18C657d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x897fE07d613037c206429628611A2665E18C657d/logo.png b/blockchains/smartchain/assets/0x897fE07d613037c206429628611A2665E18C657d/logo.png new file mode 100644 index 00000000..e1f7fe30 Binary files /dev/null and b/blockchains/smartchain/assets/0x897fE07d613037c206429628611A2665E18C657d/logo.png differ diff --git a/blockchains/smartchain/assets/0x899dCdE4f486816aFae42442D4b1b6a7C6fE9c63/info.json b/blockchains/smartchain/assets/0x899dCdE4f486816aFae42442D4b1b6a7C6fE9c63/info.json new file mode 100644 index 00000000..98d7a09b --- /dev/null +++ b/blockchains/smartchain/assets/0x899dCdE4f486816aFae42442D4b1b6a7C6fE9c63/info.json @@ -0,0 +1,11 @@ +{ + "name": "MARGIN CALL TOKEN", + "website": "https://margincall.cc", + "description": "Margin call – token for community and community is owner", + "explorer": "https://bscscan.com/token/0x899dcde4f486816afae42442d4b1b6a7c6fe9c63", + "type": "BEP20", + "symbol": "$MC", + "decimals": 8, + "status": "active", + "id": "0x899dCdE4f486816aFae42442D4b1b6a7C6fE9c63" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x899dCdE4f486816aFae42442D4b1b6a7C6fE9c63/logo.png b/blockchains/smartchain/assets/0x899dCdE4f486816aFae42442D4b1b6a7C6fE9c63/logo.png new file mode 100644 index 00000000..28473955 Binary files /dev/null and b/blockchains/smartchain/assets/0x899dCdE4f486816aFae42442D4b1b6a7C6fE9c63/logo.png differ diff --git a/blockchains/smartchain/assets/0x89BAB39D627A9e34f0dc782C53457e80Ee8Fb9D9/info.json b/blockchains/smartchain/assets/0x89BAB39D627A9e34f0dc782C53457e80Ee8Fb9D9/info.json new file mode 100644 index 00000000..f063dbde --- /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 00000000..3c3218d6 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 00000000..502d4279 --- /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 00000000..7eaf95d5 Binary files /dev/null and b/blockchains/smartchain/assets/0x89b2607878ae19baB8020b8140eD550Ef3E953bb/logo.png differ diff --git a/blockchains/smartchain/assets/0x89d453108bD94B497bBB4496729cd26f92Aba533/info.json b/blockchains/smartchain/assets/0x89d453108bD94B497bBB4496729cd26f92Aba533/info.json new file mode 100644 index 00000000..a7740d55 --- /dev/null +++ b/blockchains/smartchain/assets/0x89d453108bD94B497bBB4496729cd26f92Aba533/info.json @@ -0,0 +1,11 @@ +{ + "name": "Supersonic Finance", + "website": "https://supersonic.finance", + "description": "The Nexus of a multichain DEX and Launchpad for developers.", + "explorer": "https://bscscan.com/token/0x89d453108bD94B497bBB4496729cd26f92Aba533", + "type": "BEP20", + "symbol": "SSN", + "decimals": 9, + "status": "active", + "id": "0x89d453108bD94B497bBB4496729cd26f92Aba533" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x89d453108bD94B497bBB4496729cd26f92Aba533/logo.png b/blockchains/smartchain/assets/0x89d453108bD94B497bBB4496729cd26f92Aba533/logo.png new file mode 100644 index 00000000..5e6b3f76 Binary files /dev/null and b/blockchains/smartchain/assets/0x89d453108bD94B497bBB4496729cd26f92Aba533/logo.png differ diff --git a/blockchains/smartchain/assets/0x89e4818eD21F668D65f7851839d2dD8cE5D208b0/info.json b/blockchains/smartchain/assets/0x89e4818eD21F668D65f7851839d2dD8cE5D208b0/info.json new file mode 100644 index 00000000..3e569304 --- /dev/null +++ b/blockchains/smartchain/assets/0x89e4818eD21F668D65f7851839d2dD8cE5D208b0/info.json @@ -0,0 +1,40 @@ +{ + "name": "Monetas", + "type": "BEP20", + "symbol": "MNTG", + "decimals": 18, + "website": "https://monetasglobal.com/", + "description": "Monetas Global is a leading player in the rapidly growing world of gaming. With a focus on gaming, our platform combines the excitement of play-to-earn elements with the unique ownership and collectability of NFTs", + "explorer": "https://bscscan.com/token/0x89e4818eD21F668D65f7851839d2dD8cE5D208b0", + "status": "active", + "id": "0x89e4818eD21F668D65f7851839d2dD8cE5D208b0", + "links": [ + { + "name": "x", + "url": "https://x.com/home" + }, + { + "name": "github", + "url": "https://github.com/monetas-tech" + }, + { + "name": "telegram", + "url": "https://t.me/monetasglobal" + }, + { + "name": "whitepaper", + "url": "https://monetasglobal.com/#whitepapers" + }, + { + "name": "facebook", + "url": "https://facebook.com/monetasglobal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/dexscan/bsc/0xf931442e35a0b3fe29cf4d9844f281bdfb51718d/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x89e4818eD21F668D65f7851839d2dD8cE5D208b0/logo.png b/blockchains/smartchain/assets/0x89e4818eD21F668D65f7851839d2dD8cE5D208b0/logo.png new file mode 100644 index 00000000..1909242e Binary files /dev/null and b/blockchains/smartchain/assets/0x89e4818eD21F668D65f7851839d2dD8cE5D208b0/logo.png differ diff --git a/blockchains/smartchain/assets/0x8A452Daaf59F79fD511484B5Ce9474E32DD189ce/info.json b/blockchains/smartchain/assets/0x8A452Daaf59F79fD511484B5Ce9474E32DD189ce/info.json new file mode 100644 index 00000000..6119612b --- /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 00000000..da90374f 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 new file mode 100644 index 00000000..ab2f9e4c --- /dev/null +++ b/blockchains/smartchain/assets/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f/info.json @@ -0,0 +1,72 @@ +{ + "name": "Cake Monster", + "type": "BEP20", + "symbol": "MONSTA", + "decimals": 18, + "website": "https://cake.monster", + "description": "Cake Monster is a Hyper-Deflationary and Dividend-Yielding asset on BNB Chain that introduces a new form of monetary policy.", + "explorer": "https://bscscan.com/token/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f", + "status": "active", + "id": "0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f", + "links": [ + { + "name": "docs", + "url": "https://docs.cake.monster" + }, + { + "name": "whitepaper", + "url": "https://cake.monster/whitepaper" + }, + { + "name": "telegram", + "url": "https://t.me/cakemnstr" + }, + { + "name": "telegram_news", + "url": "https://t.me/cakemnstrannouncement" + }, + { + "name": "x", + "url": "https://x.com/thecakemnstr" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cake-monster" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/cake-monster" + }, + { + "name": "medium", + "url": "https://cakemonster.medium.com" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/CAKEMONSTER" + }, + { + "name": "discord", + "url": "https://discord.com/invite/MonstaPartyNFTs" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCVDpZv6uXOArJ22BhtNCcCw" + }, + { + "name": "facebook", + "url": "https://facebook.com/officialcakemonster" + }, + { + "name": "github", + "url": "https://github.com/cake-monster" + } + ], + "tags": [ + "deflationary", + "defi", + "staking", + "nft", + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f/logo.png b/blockchains/smartchain/assets/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f/logo.png new file mode 100644 index 00000000..c7ff21db Binary files /dev/null and b/blockchains/smartchain/assets/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f/logo.png differ diff --git a/blockchains/smartchain/assets/0x8A83C31D6751833B4940b6e871c48d9A15a07b46/info.json b/blockchains/smartchain/assets/0x8A83C31D6751833B4940b6e871c48d9A15a07b46/info.json new file mode 100644 index 00000000..592fa407 --- /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 00000000..d7c1214c 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 new file mode 100644 index 00000000..7c18fac8 --- /dev/null +++ b/blockchains/smartchain/assets/0x8A9030c0ED9A5b9C7Ab39EBfEE11D90aF9945f6F/info.json @@ -0,0 +1,29 @@ +{ + "name": "SafeLaunchpad", + "website": "https://safelaunchpad.net", + "description": "SafeLaunchpad is High Deflationary Project Incubator Utility Token.", + "explorer": "https://bscscan.com/token/0x8A9030c0ED9A5b9C7Ab39EBfEE11D90aF9945f6F", + "type": "BEP20", + "symbol": "SLD", + "decimals": 9, + "status": "active", + "id": "0x8A9030c0ED9A5b9C7Ab39EBfEE11D90aF9945f6F", + "links": [ + { + "name": "github", + "url": "https://github.com/safelaunchpad/Contract" + }, + { + "name": "x", + "url": "https://x.com/safelaunchpad" + }, + { + "name": "telegram", + "url": "https://t.me/safelaunchpad" + }, + { + "name": "docs", + "url": "https://safelaunchpad.gitbook.io/safelaunchpad" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8A9030c0ED9A5b9C7Ab39EBfEE11D90aF9945f6F/logo.png b/blockchains/smartchain/assets/0x8A9030c0ED9A5b9C7Ab39EBfEE11D90aF9945f6F/logo.png new file mode 100644 index 00000000..32466ac7 Binary files /dev/null and b/blockchains/smartchain/assets/0x8A9030c0ED9A5b9C7Ab39EBfEE11D90aF9945f6F/logo.png differ diff --git a/blockchains/smartchain/assets/0x8A972Ed397bEd7C0Cbc84cc3EFbC760bb07F80bb/info.json b/blockchains/smartchain/assets/0x8A972Ed397bEd7C0Cbc84cc3EFbC760bb07F80bb/info.json new file mode 100644 index 00000000..f7622edc --- /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 00000000..3cf3b0c4 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 new file mode 100644 index 00000000..a33112bb --- /dev/null +++ b/blockchains/smartchain/assets/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d/info.json @@ -0,0 +1,38 @@ +{ + "name": "BNB pegged USD Coin", + "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", + "research": "https://research.binance.com/en/projects/usd-coin", + "type": "BEP20", + "symbol": "USDC", + "decimals": 18, + "status": "active", + "id": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d", + "tags": [ + "binance-peg", + "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/smartchain/assets/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d/logo.png b/blockchains/smartchain/assets/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d/logo.png new file mode 100644 index 00000000..eafbaac1 Binary files /dev/null and b/blockchains/smartchain/assets/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d/logo.png differ diff --git a/blockchains/smartchain/assets/0x8B0B1D4016f912561D9420ae6035AA543fE9a69d/info.json b/blockchains/smartchain/assets/0x8B0B1D4016f912561D9420ae6035AA543fE9a69d/info.json new file mode 100644 index 00000000..90fc3de0 --- /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 00000000..ddeb3360 Binary files /dev/null and b/blockchains/smartchain/assets/0x8B0B1D4016f912561D9420ae6035AA543fE9a69d/logo.png differ diff --git a/blockchains/smartchain/assets/0x8B3268a23131DAFBd77165690767F285C1AAC6C5/info.json b/blockchains/smartchain/assets/0x8B3268a23131DAFBd77165690767F285C1AAC6C5/info.json new file mode 100644 index 00000000..076ff34d --- /dev/null +++ b/blockchains/smartchain/assets/0x8B3268a23131DAFBd77165690767F285C1AAC6C5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cerberus Token", + "website": "https://gocerberus.finance/", + "description": "GoCerberus is automatic liquidity acquisition yield farm running on Binance Smart Chain. GoCerberus tokenomics is a hybrid between yield farming and Safemoon.", + "explorer": "https://bscscan.com/token/0x8B3268a23131DAFBd77165690767F285C1AAC6C5", + "type": "BEP20", + "symbol": "CERBERUS", + "decimals": 18, + "status": "active", + "id": "0x8B3268a23131DAFBd77165690767F285C1AAC6C5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8B3268a23131DAFBd77165690767F285C1AAC6C5/logo.png b/blockchains/smartchain/assets/0x8B3268a23131DAFBd77165690767F285C1AAC6C5/logo.png new file mode 100644 index 00000000..a1534e1b Binary files /dev/null and b/blockchains/smartchain/assets/0x8B3268a23131DAFBd77165690767F285C1AAC6C5/logo.png differ diff --git a/blockchains/smartchain/assets/0x8B6fA031c7D2E60fbFe4E663EC1B8f37Df1ba483/info.json b/blockchains/smartchain/assets/0x8B6fA031c7D2E60fbFe4E663EC1B8f37Df1ba483/info.json new file mode 100644 index 00000000..07f04db8 --- /dev/null +++ b/blockchains/smartchain/assets/0x8B6fA031c7D2E60fbFe4E663EC1B8f37Df1ba483/info.json @@ -0,0 +1,48 @@ +{ + "name": "CashCow", + "website": "https://cashcowprotocol.com", + "description": "CashCow is a fairly launched, low supply and highly deflationary DeFi Token that includes NFT and Play2Earn features", + "explorer": "https://bscscan.com/token/0x8B6fA031c7D2E60fbFe4E663EC1B8f37Df1ba483", + "type": "BEP20", + "symbol": "COW", + "decimals": 9, + "status": "active", + "id": "0x8B6fA031c7D2E60fbFe4E663EC1B8f37Df1ba483", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/CashCowProtocol" + }, + { + "name": "facebook", + "url": "https://facebook.com/CashCowProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/cashcowprotocol" + }, + { + "name": "discord", + "url": "https://discord.com/channels/866067292814311434/899447269961646100" + }, + { + "name": "whitepaper", + "url": "https://cashcowprotocol.gitbook.io/cashcow-protocol/about-cashcow/whitepaper" + }, + { + "name": "docs", + "url": "https://cashcowprotocol.gitbook.io/cashcow" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cashcow" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cashcow" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8B6fA031c7D2E60fbFe4E663EC1B8f37Df1ba483/logo.png b/blockchains/smartchain/assets/0x8B6fA031c7D2E60fbFe4E663EC1B8f37Df1ba483/logo.png new file mode 100644 index 00000000..ba5039db Binary files /dev/null and b/blockchains/smartchain/assets/0x8B6fA031c7D2E60fbFe4E663EC1B8f37Df1ba483/logo.png differ diff --git a/blockchains/smartchain/assets/0x8B9ABDD229ec0C4A28E01b91aacdC5dAAFc25C2b/info.json b/blockchains/smartchain/assets/0x8B9ABDD229ec0C4A28E01b91aacdC5dAAFc25C2b/info.json new file mode 100644 index 00000000..91ba6e7c --- /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 00000000..fe66d58c 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 00000000..2139bc6e --- /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 00000000..3c65f718 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 new file mode 100644 index 00000000..9645574f --- /dev/null +++ b/blockchains/smartchain/assets/0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97/info.json @@ -0,0 +1,25 @@ +{ + "name": "BinaryX", + "website": "https://www.binaryx.pro/", + "description": "BinaryX is a decentralized derivatives contract based on BSC. Users can trade binary options via BinaryX which adopts an improved AMM model.", + "explorer": "https://bscscan.com/token/0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97", + "type": "BEP20", + "symbol": "BNX", + "decimals": 18, + "status": "abandoned", + "id": "0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97", + "links": [ + { + "name": "telegram", + "url": "https://t.me/binaryxGlobal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binaryx/" + }, + { + "name": "x", + "url": "https://x.com/binary_x" + } + ] +} \ 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 00000000..63145a3c --- /dev/null +++ b/blockchains/smartchain/assets/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZigCoin", + "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 00000000..e610bbed 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 new file mode 100644 index 00000000..a134dbf5 --- /dev/null +++ b/blockchains/smartchain/assets/0x8D047F4F57A190C96c8b9704B39A1379E999D82B/info.json @@ -0,0 +1,33 @@ +{ + "name": "Etherconnect Coin", + "website": "https://etherconnect.co", + "description": "Etherconnect is an Open Decentralized Finance Ecosystem Platform for derivative financial instruments. It is on BEP20 blockchain technology, which helps you to turn your Crypto Holdings in to future growth.", + "explorer": "https://bscscan.com/token/0x8D047F4F57A190C96c8b9704B39A1379E999D82B", + "type": "BEP20", + "symbol": "ECC", + "decimals": 8, + "status": "active", + "id": "0x8D047F4F57A190C96c8b9704B39A1379E999D82B", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/etherconnect/" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/Etherconnct" + }, + { + "name": "medium", + "url": "https://etherconnect.medium.com/" + }, + { + "name": "x", + "url": "https://x.com/Etherconnt" + }, + { + "name": "facebook", + "url": "https://facebook.com/Etherconnt" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8D047F4F57A190C96c8b9704B39A1379E999D82B/logo.png b/blockchains/smartchain/assets/0x8D047F4F57A190C96c8b9704B39A1379E999D82B/logo.png new file mode 100644 index 00000000..274da560 Binary files /dev/null and b/blockchains/smartchain/assets/0x8D047F4F57A190C96c8b9704B39A1379E999D82B/logo.png differ diff --git a/blockchains/smartchain/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/info.json b/blockchains/smartchain/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/info.json new file mode 100644 index 00000000..7412412b --- /dev/null +++ b/blockchains/smartchain/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/info.json @@ -0,0 +1,41 @@ +{ + "name": "KIRA Network", + "website": "https://kira.network", + "description": "Maintain 100% liquidity of your capital, trade and use DeFi while simultaneously earning block and fee rewards by staking ANY digital asset", + "explorer": "https://bscscan.com/token/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E", + "type": "BEP20", + "symbol": "KEX", + "decimals": 6, + "status": "active", + "id": "0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E", + "links": [ + { + "name": "source_code", + "url": "https://git.kira.network" + }, + { + "name": "x", + "url": "https://x.com/kira_core" + }, + { + "name": "telegram", + "url": "https://t.me/kirainterex" + }, + { + "name": "blog", + "url": "https://blog.kira.network" + }, + { + "name": "whitepaper", + "url": "https://wp.kira.network/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kira-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kira-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/logo.png b/blockchains/smartchain/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/logo.png new file mode 100644 index 00000000..b6f64ab1 Binary files /dev/null and b/blockchains/smartchain/assets/0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E/logo.png differ diff --git a/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/info.json b/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/info.json new file mode 100644 index 00000000..ec25f050 --- /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 00000000..232f1cd5 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 new file mode 100644 index 00000000..1be9fd3d --- /dev/null +++ b/blockchains/smartchain/assets/0x8D2b2e3dcF0BcaD65765D256390c5154D3Ba19cF/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZOE CASH", + "type": "BEP20", + "symbol": "ZOE", + "decimals": 18, + "website": "https://zoe.cash", + "description": "Zoe Cash Decentralised multipurpose system integrating finance, online training, certifications, jobs, encrypted social interaction and monetisation of goals, stored and validated on a proprietary blockchain.", + "explorer": "https://bscscan.com/token/0x8D2b2e3dcF0BcaD65765D256390c5154D3Ba19cF", + "status": "active", + "id": "0x8D2b2e3dcF0BcaD65765D256390c5154D3Ba19cF", + "links": [ + { + "name": "x", + "url": "https://x.com/zoecashoficial" + }, + { + "name": "telegram", + "url": "https://t.me/zoecash" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8D2b2e3dcF0BcaD65765D256390c5154D3Ba19cF/logo.png b/blockchains/smartchain/assets/0x8D2b2e3dcF0BcaD65765D256390c5154D3Ba19cF/logo.png new file mode 100644 index 00000000..883a140f Binary files /dev/null and b/blockchains/smartchain/assets/0x8D2b2e3dcF0BcaD65765D256390c5154D3Ba19cF/logo.png differ diff --git a/blockchains/smartchain/assets/0x8D3437e683004bD36BF21D4d075cC10165A863E8/info.json b/blockchains/smartchain/assets/0x8D3437e683004bD36BF21D4d075cC10165A863E8/info.json new file mode 100644 index 00000000..643c97b9 --- /dev/null +++ b/blockchains/smartchain/assets/0x8D3437e683004bD36BF21D4d075cC10165A863E8/info.json @@ -0,0 +1,11 @@ +{ + "name": "hybrix", + "website": "https://hybrix.io", + "description": "Every distributed ledger and blockchain has its own strengths. The hybrix token gives access to all these benefits as it exists on top of all distributed ledger systems. The open hybrix protocol enables free transport of value between all distributed ledgers. A welcoming addition next to the possibilities of atomic swaps and decentralized exchanges.", + "explorer": "https://bscscan.com/token/0x8D3437e683004bD36BF21D4d075cC10165A863E8", + "type": "BEP20", + "symbol": "HY", + "decimals": 9, + "status": "active", + "id": "0x8D3437e683004bD36BF21D4d075cC10165A863E8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8D3437e683004bD36BF21D4d075cC10165A863E8/logo.png b/blockchains/smartchain/assets/0x8D3437e683004bD36BF21D4d075cC10165A863E8/logo.png new file mode 100644 index 00000000..a5167e37 Binary files /dev/null and b/blockchains/smartchain/assets/0x8D3437e683004bD36BF21D4d075cC10165A863E8/logo.png differ diff --git a/blockchains/smartchain/assets/0x8D512a03600981B8e86556fd5C0FbDd726Fe1821/info.json b/blockchains/smartchain/assets/0x8D512a03600981B8e86556fd5C0FbDd726Fe1821/info.json new file mode 100644 index 00000000..aefb8528 --- /dev/null +++ b/blockchains/smartchain/assets/0x8D512a03600981B8e86556fd5C0FbDd726Fe1821/info.json @@ -0,0 +1,20 @@ +{ + "name": "VanEck Semiconductor ETF 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 00000000..51fd15de 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 00000000..8a796084 --- /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 00000000..8e075782 Binary files /dev/null and b/blockchains/smartchain/assets/0x8D65744527f55d0b2338350912d5C99A81ddF0e2/logo.png differ diff --git a/blockchains/smartchain/assets/0x8DA0F18e4deB7Ba81dBD061DF57325a894014B5a/info.json b/blockchains/smartchain/assets/0x8DA0F18e4deB7Ba81dBD061DF57325a894014B5a/info.json new file mode 100644 index 00000000..8b412526 --- /dev/null +++ b/blockchains/smartchain/assets/0x8DA0F18e4deB7Ba81dBD061DF57325a894014B5a/info.json @@ -0,0 +1,11 @@ +{ + "name": "PinkElon", + "website": "https://www.pinkelon.finance/", + "description": "A new level in obtaining value . Auto-lock your lp and get access to passive value. Gain more rewards from your investments. Join us and let’s take this rocket to the moon.", + "explorer": "https://bscscan.com/token/0x8DA0F18e4deB7Ba81dBD061DF57325a894014B5a", + "type": "BEP20", + "symbol": "PINKE", + "decimals": 9, + "status": "active", + "id": "0x8DA0F18e4deB7Ba81dBD061DF57325a894014B5a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8DA0F18e4deB7Ba81dBD061DF57325a894014B5a/logo.png b/blockchains/smartchain/assets/0x8DA0F18e4deB7Ba81dBD061DF57325a894014B5a/logo.png new file mode 100644 index 00000000..88d18be0 Binary files /dev/null and b/blockchains/smartchain/assets/0x8DA0F18e4deB7Ba81dBD061DF57325a894014B5a/logo.png differ diff --git a/blockchains/smartchain/assets/0x8Dcff5Ba47aa24CFEb73A2262b7cD6D18739600c/info.json b/blockchains/smartchain/assets/0x8Dcff5Ba47aa24CFEb73A2262b7cD6D18739600c/info.json new file mode 100644 index 00000000..39abd1a3 --- /dev/null +++ b/blockchains/smartchain/assets/0x8Dcff5Ba47aa24CFEb73A2262b7cD6D18739600c/info.json @@ -0,0 +1,24 @@ +{ + "name": "J9CASINO", + "type": "BEP20", + "symbol": "J9BC", + "decimals": 2, + "website": "https://j9.io/about-j9bc", + "description": "J9BC is a digital currency issued by J9 Inter-national (J9.io) based on BSC Binance Smart Chain, with features of decentralization, anonymous transaction and security.", + "explorer": "https://bscscan.com/token/0x8dcff5ba47aa24cfeb73a2262b7cd6d18739600c", + "status": "active", + "id": "0x8Dcff5Ba47aa24CFEb73A2262b7cD6D18739600c", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/coins/j9casino" + }, + { + "name": "telegram", + "url": "https://t.me/j9token918" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/smartchain/assets/0x8Dcff5Ba47aa24CFEb73A2262b7cD6D18739600c/logo.png b/blockchains/smartchain/assets/0x8Dcff5Ba47aa24CFEb73A2262b7cD6D18739600c/logo.png new file mode 100644 index 00000000..0493eead Binary files /dev/null and b/blockchains/smartchain/assets/0x8Dcff5Ba47aa24CFEb73A2262b7cD6D18739600c/logo.png differ diff --git a/blockchains/smartchain/assets/0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4/info.json b/blockchains/smartchain/assets/0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4/info.json new file mode 100644 index 00000000..0a926992 --- /dev/null +++ b/blockchains/smartchain/assets/0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4/info.json @@ -0,0 +1,64 @@ +{ + "name": "Buddy DAO ", + "type": "BEP20", + "symbol": "BDY", + "decimals": 18, + "website": "https://www.buddydao.io", + "description": "BDY is the governance token for Buddy DAO a global credit network", + "explorer": "https://bscscan.com/token/0x8e062e7f7e95b9b51519a6f47c28f260ab1064e4", + "status": "active", + "id": "0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4", + "links": [ + { + "name": "x", + "url": "https://x.com/DaoBuddy" + }, + { + "name": "github", + "url": "https://github.com/trinitydao" + }, + { + "name": "telegram", + "url": "https://t.me/buddydaoio" + }, + { + "name": "telegram_news", + "url": "https://t.me/BuddyDAOANN" + }, + { + "name": "discord", + "url": "https://discord.com/invite/CYqkHW9NAj" + }, + { + "name": "whitepaper", + "url": "https://www.buddydao.io/whitepaper-v4-2.26.2022.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/buddy-dao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/buddy-dao" + }, + { + "name": "source_code", + "url": "https://github.com/trinitydao" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BuddyDAO/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCYGNDd028LNmL-vbpiPMkjQ" + }, + { + "name": "medium", + "url": "https://medium.com/@buddy.dao12" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4/logo.png b/blockchains/smartchain/assets/0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4/logo.png new file mode 100644 index 00000000..eceba730 Binary files /dev/null and b/blockchains/smartchain/assets/0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4/logo.png differ diff --git a/blockchains/smartchain/assets/0x8E984e03ab35795C60242c902ECe2450242C90e9/info.json b/blockchains/smartchain/assets/0x8E984e03ab35795C60242c902ECe2450242C90e9/info.json new file mode 100644 index 00000000..90c627fe --- /dev/null +++ b/blockchains/smartchain/assets/0x8E984e03ab35795C60242c902ECe2450242C90e9/info.json @@ -0,0 +1,41 @@ +{ + "name": "Kampay", + "type": "BEP20", + "symbol": "KAMPAY", + "decimals": 18, + "website": "https://www.kampay.io", + "description": "The Key to the African Economic Revolution", + "explorer": "https://bscscan.com/token/0x8E984e03ab35795C60242c902ECe2450242C90e9", + "status": "active", + "id": "0x8E984e03ab35795C60242c902ECe2450242C90e9", + "links": [ + { + "name": "youtube", + "url": "https://youtube.com/channel/UCpknNVgAtnOv7v61tf1Lalw" + }, + { + "name": "x", + "url": "https://x.com/KamPayToken" + }, + { + "name": "github", + "url": "https://github.com/Kampay-io/token" + }, + { + "name": "whitepaper", + "url": "https://assets.website-files.com/61225286ea7a95b66ebd8987/613a6b9289b7b53cea6d6c7f_White%20Paper%2009092021.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/KamPayOfficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/KamPayToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kampay/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8E984e03ab35795C60242c902ECe2450242C90e9/logo.png b/blockchains/smartchain/assets/0x8E984e03ab35795C60242c902ECe2450242C90e9/logo.png new file mode 100644 index 00000000..b70b7f38 Binary files /dev/null and b/blockchains/smartchain/assets/0x8E984e03ab35795C60242c902ECe2450242C90e9/logo.png differ diff --git a/blockchains/smartchain/assets/0x8E9f5173e16Ff93F81579d73A7f9723324d6B6aF/info.json b/blockchains/smartchain/assets/0x8E9f5173e16Ff93F81579d73A7f9723324d6B6aF/info.json new file mode 100644 index 00000000..9737cf5b --- /dev/null +++ b/blockchains/smartchain/assets/0x8E9f5173e16Ff93F81579d73A7f9723324d6B6aF/info.json @@ -0,0 +1,12 @@ +{ + "name": "Milk Protocol", + "website": "https://stakecow.com", + "description": "First yield farm on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x8E9f5173e16Ff93F81579d73A7f9723324d6B6aF", + "research": "", + "type": "BEP20", + "symbol": "MILK", + "decimals": 18, + "status": "active", + "id": "0x8E9f5173e16Ff93F81579d73A7f9723324d6B6aF" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8E9f5173e16Ff93F81579d73A7f9723324d6B6aF/logo.png b/blockchains/smartchain/assets/0x8E9f5173e16Ff93F81579d73A7f9723324d6B6aF/logo.png new file mode 100644 index 00000000..42b227e6 Binary files /dev/null and b/blockchains/smartchain/assets/0x8E9f5173e16Ff93F81579d73A7f9723324d6B6aF/logo.png differ diff --git a/blockchains/smartchain/assets/0x8Ea2f890CB86DFb0E376137451c6fD982AFefc15/info.json b/blockchains/smartchain/assets/0x8Ea2f890CB86DFb0E376137451c6fD982AFefc15/info.json new file mode 100644 index 00000000..041f64ac --- /dev/null +++ b/blockchains/smartchain/assets/0x8Ea2f890CB86DFb0E376137451c6fD982AFefc15/info.json @@ -0,0 +1,64 @@ +{ + "name": "AutoCrypto", + "type": "BEP20", + "symbol": "AU", + "decimals": 18, + "website": "https://www.autocrypto.ai/", + "description": "AutoCrypto is an automated broker app managed by an Artificial Intelligence that combines mathematical extrapolation polynomials alongside a pre-trained time-series prediction neuronal network to predict very precisely the evolution of the top 200 cryptocurrencies and investing automatically for you.", + "explorer": "https://bscscan.com/token/0x8Ea2f890CB86DFb0E376137451c6fD982AFefc15", + "status": "active", + "id": "0x8Ea2f890CB86DFb0E376137451c6fD982AFefc15", + "links": [ + { + "name": "x", + "url": "https://x.com/Autocrypto_ai" + }, + { + "name": "telegram", + "url": "https://t.me/AutoCryptoInternational" + }, + { + "name": "telegram_news", + "url": "https://t.me/AutoCryptoAnnouncements" + }, + { + "name": "discord", + "url": "https://discord.com/autocrypto" + }, + { + "name": "medium", + "url": "https://autocrypto.medium.com/" + }, + { + "name": "whitepaper", + "url": "https://autocrypto-web-assets.s3.eu-west-1.amazonaws.com/autocrypto-whitepaper-en.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AutoCrypto/" + }, + { + "name": "docs", + "url": "https://autocryptofinance.gitbook.io/autocrypto/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCELjg1NB4uQLc3A1saVc0Ig" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/autocrypto/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/autocrypto" + }, + { + "name": "github", + "url": "https://github.com/autocryptoai/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8Ea2f890CB86DFb0E376137451c6fD982AFefc15/logo.png b/blockchains/smartchain/assets/0x8Ea2f890CB86DFb0E376137451c6fD982AFefc15/logo.png new file mode 100644 index 00000000..5f8ee813 Binary files /dev/null and b/blockchains/smartchain/assets/0x8Ea2f890CB86DFb0E376137451c6fD982AFefc15/logo.png differ diff --git a/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/info.json b/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/info.json new file mode 100644 index 00000000..52e72885 --- /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 00000000..7b59e642 Binary files /dev/null and b/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/logo.png differ diff --git a/blockchains/smartchain/assets/0x8EbcA1ac949067ED8784FF9D07e4d084a3D82636/info.json b/blockchains/smartchain/assets/0x8EbcA1ac949067ED8784FF9D07e4d084a3D82636/info.json new file mode 100644 index 00000000..68ccbc08 --- /dev/null +++ b/blockchains/smartchain/assets/0x8EbcA1ac949067ED8784FF9D07e4d084a3D82636/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fuck$ Finance v2.0", + "website": "https://justbuyitffs.com/", + "description": "Fuck$ Finance is a community driven token that will allow its owners to interact with FFS tools that will be developed based on community's needs. FFS2 token will also be used to fund charity donations.", + "explorer": "https://bscscan.com/token/0x8ebca1ac949067ed8784ff9d07e4d084a3d82636", + "type": "BEP20", + "symbol": "FFS2", + "decimals": 9, + "status": "active", + "id": "0x8EbcA1ac949067ED8784FF9D07e4d084a3D82636" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8EbcA1ac949067ED8784FF9D07e4d084a3D82636/logo.png b/blockchains/smartchain/assets/0x8EbcA1ac949067ED8784FF9D07e4d084a3D82636/logo.png new file mode 100644 index 00000000..cb28e2c1 Binary files /dev/null and b/blockchains/smartchain/assets/0x8EbcA1ac949067ED8784FF9D07e4d084a3D82636/logo.png differ diff --git a/blockchains/smartchain/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/info.json b/blockchains/smartchain/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/info.json new file mode 100644 index 00000000..d45a318f --- /dev/null +++ b/blockchains/smartchain/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/info.json @@ -0,0 +1,49 @@ +{ + "name": "Restore Truth Token", + "type": "BEP20", + "symbol": "RTT", + "decimals": 18, + "website": "https://restoretruthtoken.com/", + "description": "Using the power of crypto, RTT puts American values at the forefront of its decision making, and you can play your part by using the RTT ecosystem to help fix issues important to you.", + "explorer": "https://bscscan.com/token/0x8f046a2457a8f1618cae4706fa57bf790e2532a6", + "status": "active", + "id": "0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6", + "links": [ + { + "name": "github", + "url": "https://github.com/restoretruthtoken/restoretruthtoken" + }, + { + "name": "x", + "url": "https://x.com/restoretruthRTT" + }, + { + "name": "telegram", + "url": "https://t.me/RestoreTruthTokenChat" + }, + { + "name": "whitepaper", + "url": "https://restoretruthtoken.com/rtt-business-plan/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/R7G7YMXYjt" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/RestoreTruthToken/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/restoretruthtoken/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/restore-truth-token" + } + ], + "tags": [ + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/logo.png b/blockchains/smartchain/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/logo.png new file mode 100644 index 00000000..808a7642 Binary files /dev/null and b/blockchains/smartchain/assets/0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6/logo.png differ diff --git a/blockchains/smartchain/assets/0x8F0528cE5eF7B51152A59745bEfDD91D97091d2F/info.json b/blockchains/smartchain/assets/0x8F0528cE5eF7B51152A59745bEfDD91D97091d2F/info.json new file mode 100644 index 00000000..f5bc7e62 --- /dev/null +++ b/blockchains/smartchain/assets/0x8F0528cE5eF7B51152A59745bEfDD91D97091d2F/info.json @@ -0,0 +1,11 @@ +{ + "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://bscscan.com/token/0x8f0528ce5ef7b51152a59745befdd91d97091d2f", + "type": "BEP20", + "symbol": "ALPACA", + "decimals": 18, + "status": "active", + "id": "0x8F0528cE5eF7B51152A59745bEfDD91D97091d2F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8F0528cE5eF7B51152A59745bEfDD91D97091d2F/logo.png b/blockchains/smartchain/assets/0x8F0528cE5eF7B51152A59745bEfDD91D97091d2F/logo.png new file mode 100644 index 00000000..9644ff85 Binary files /dev/null and b/blockchains/smartchain/assets/0x8F0528cE5eF7B51152A59745bEfDD91D97091d2F/logo.png differ diff --git a/blockchains/smartchain/assets/0x8F1B7df4a34C8Dd072CF6408Be9c778CFABdf8D0/info.json b/blockchains/smartchain/assets/0x8F1B7df4a34C8Dd072CF6408Be9c778CFABdf8D0/info.json new file mode 100644 index 00000000..ba404ec6 --- /dev/null +++ b/blockchains/smartchain/assets/0x8F1B7df4a34C8Dd072CF6408Be9c778CFABdf8D0/info.json @@ -0,0 +1,29 @@ +{ + "name": "Wrapped IQ.Cash", + "website": "https://IQ.cash/", + "description": "IQ is a multi-chain (NeoScrypt and BEP-20) masternode cryptocurrency for Investors, Traders and Miners. Fork of DASH. Users can earn rewards with masternodes, benefiting the entire network and ecosysytem.", + "explorer": "https://bscscan.com/token/0x8F1B7df4a34C8Dd072CF6408Be9c778CFABdf8D0", + "type": "BEP20", + "symbol": "WIQ", + "decimals": 18, + "status": "active", + "id": "0x8F1B7df4a34C8Dd072CF6408Be9c778CFABdf8D0", + "links": [ + { + "name": "x", + "url": "https://x.com/IQ_crypto" + }, + { + "name": "telegram", + "url": "https://t.me/IQ_cash" + }, + { + "name": "discord", + "url": "https://discord.com/invite/qekuX6r" + }, + { + "name": "facebook", + "url": "https://facebook.com/TradersFair/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8F1B7df4a34C8Dd072CF6408Be9c778CFABdf8D0/logo.png b/blockchains/smartchain/assets/0x8F1B7df4a34C8Dd072CF6408Be9c778CFABdf8D0/logo.png new file mode 100644 index 00000000..31eb6e90 Binary files /dev/null and b/blockchains/smartchain/assets/0x8F1B7df4a34C8Dd072CF6408Be9c778CFABdf8D0/logo.png differ diff --git a/blockchains/smartchain/assets/0x8F1E60D84182db487aC235acC65825e50b5477a1/info.json b/blockchains/smartchain/assets/0x8F1E60D84182db487aC235acC65825e50b5477a1/info.json new file mode 100644 index 00000000..59131c9b --- /dev/null +++ b/blockchains/smartchain/assets/0x8F1E60D84182db487aC235acC65825e50b5477a1/info.json @@ -0,0 +1,29 @@ +{ + "name": "Lendefi", + "type": "BEP20", + "symbol": "LDFI", + "decimals": 18, + "website": "https://lendefi.finance", + "description": "The Lendefi Protocol facilitates leveraged trading through secured lending, delivering confidence within the highly volatile cryptocurrency marketplace.", + "explorer": "https://bscscan.com/token/0x8F1E60D84182db487aC235acC65825e50b5477a1", + "status": "active", + "id": "0x8F1E60D84182db487aC235acC65825e50b5477a1", + "links": [ + { + "name": "x", + "url": "https://x.com/lendefi_io" + }, + { + "name": "github", + "url": "https://github.com/lendefi/" + }, + { + "name": "telegram", + "url": "https://t.me/lendefi_io" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lendefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8F1E60D84182db487aC235acC65825e50b5477a1/logo.png b/blockchains/smartchain/assets/0x8F1E60D84182db487aC235acC65825e50b5477a1/logo.png new file mode 100644 index 00000000..59d32aec Binary files /dev/null and b/blockchains/smartchain/assets/0x8F1E60D84182db487aC235acC65825e50b5477a1/logo.png differ diff --git a/blockchains/smartchain/assets/0x8F49733210700D38098d7375C221c7d02F700cc8/info.json b/blockchains/smartchain/assets/0x8F49733210700D38098d7375C221c7d02F700cc8/info.json new file mode 100644 index 00000000..391cbd9b --- /dev/null +++ b/blockchains/smartchain/assets/0x8F49733210700D38098d7375C221c7d02F700cc8/info.json @@ -0,0 +1,32 @@ +{ + "name": "Pallapay", + "type": "BEP20", + "symbol": "PALLA", + "decimals": 18, + "website": "https://www.pallapay.com", + "description": "Pallapay is the only payments solution in UAE which allows businesses to accept, process and disburse payments with its product suite.", + "explorer": "https://bscscan.com/token/0x8F49733210700D38098d7375C221c7d02F700cc8", + "status": "active", + "id": "0x8F49733210700D38098d7375C221c7d02F700cc8", + "links": [ + { + "name": "x", + "url": "https://x.com/pallapay_com" + }, + { + "name": "telegram", + "url": "https://t.me/pallapay_channel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pallapay" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/pallapay" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8F49733210700D38098d7375C221c7d02F700cc8/logo.png b/blockchains/smartchain/assets/0x8F49733210700D38098d7375C221c7d02F700cc8/logo.png new file mode 100644 index 00000000..5e3e2f53 Binary files /dev/null and b/blockchains/smartchain/assets/0x8F49733210700D38098d7375C221c7d02F700cc8/logo.png differ diff --git a/blockchains/smartchain/assets/0x8FD70eE385f470c8D6FDA2D93a4E49C849BAC6a6/info.json b/blockchains/smartchain/assets/0x8FD70eE385f470c8D6FDA2D93a4E49C849BAC6a6/info.json new file mode 100644 index 00000000..e3ba1ef5 --- /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 00000000..a6b39542 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 new file mode 100644 index 00000000..81c79c48 --- /dev/null +++ b/blockchains/smartchain/assets/0x8FFf93E810a2eDaaFc326eDEE51071DA9d398E83/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bitrise Token", + "type": "BEP20", + "symbol": "BRISE", + "decimals": 9, + "website": "https://www.bitrisetoken.com", + "description": "Bitrise Token - a Hyper Deflationary & BNB reward token", + "explorer": "https://bscscan.com/token/0x8FFf93E810a2eDaaFc326eDEE51071DA9d398E83", + "status": "active", + "id": "0x8FFf93E810a2eDaaFc326eDEE51071DA9d398E83", + "links": [ + { + "name": "telegram", + "url": "https://t.me/bitrisetoken" + }, + { + "name": "x", + "url": "https://x.com/bitrisetoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8FFf93E810a2eDaaFc326eDEE51071DA9d398E83/logo.png b/blockchains/smartchain/assets/0x8FFf93E810a2eDaaFc326eDEE51071DA9d398E83/logo.png new file mode 100644 index 00000000..bdc351d9 Binary files /dev/null and b/blockchains/smartchain/assets/0x8FFf93E810a2eDaaFc326eDEE51071DA9d398E83/logo.png differ diff --git a/blockchains/smartchain/assets/0x8Fdd1D12b3eC96F9f8e57DDa5D211152B2598888/info.json b/blockchains/smartchain/assets/0x8Fdd1D12b3eC96F9f8e57DDa5D211152B2598888/info.json new file mode 100644 index 00000000..30d72b09 --- /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 00000000..47464763 --- /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 00000000..c7f511bb 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 new file mode 100644 index 00000000..b9610de5 --- /dev/null +++ b/blockchains/smartchain/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/info.json @@ -0,0 +1,25 @@ +{ + "name": "Finxflo", + "type": "BEP20", + "symbol": "FXF", + "decimals": 18, + "website": "https://www.finxflo.com/", + "description": "Regulated and secure, the FINXFLO platform is designed to provide users with a one-stop solution with some of the best prices from the world's leading CeFi and DeFi protocols.", + "explorer": "https://bscscan.com/token/0x8a40c222996f9F3431f63Bf80244C36822060f12", + "status": "active", + "id": "0x8a40c222996f9F3431f63Bf80244C36822060f12", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/Finxflo/" + }, + { + "name": "telegram", + "url": "https://t.me/Finxflo_Community" + }, + { + "name": "x", + "url": "https://x.com/finxflo" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/logo.png b/blockchains/smartchain/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/logo.png new file mode 100644 index 00000000..4a66b935 Binary files /dev/null and b/blockchains/smartchain/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/logo.png differ diff --git a/blockchains/smartchain/assets/0x8a4840dc5975E424EC530ec88a8f27910a3CEF51/info.json b/blockchains/smartchain/assets/0x8a4840dc5975E424EC530ec88a8f27910a3CEF51/info.json new file mode 100644 index 00000000..4064c1fc --- /dev/null +++ b/blockchains/smartchain/assets/0x8a4840dc5975E424EC530ec88a8f27910a3CEF51/info.json @@ -0,0 +1,11 @@ +{ + "name": "4-Stock", + "type": "BEP20", + "symbol": "4STC", + "decimals": 18, + "website": "https://www.4-soft.com/", + "description": "4-Stock is a token for selling and buying a part of the company.", + "explorer": "https://bscscan.com/token/0x8a4840dc5975E424EC530ec88a8f27910a3CEF51", + "status": "active", + "id": "0x8a4840dc5975E424EC530ec88a8f27910a3CEF51" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8a4840dc5975E424EC530ec88a8f27910a3CEF51/logo.png b/blockchains/smartchain/assets/0x8a4840dc5975E424EC530ec88a8f27910a3CEF51/logo.png new file mode 100644 index 00000000..9ede2486 Binary files /dev/null and b/blockchains/smartchain/assets/0x8a4840dc5975E424EC530ec88a8f27910a3CEF51/logo.png differ diff --git a/blockchains/smartchain/assets/0x8a505D5Cb3Db9fcf404c0A72aF3dF8Be4eFB707c/info.json b/blockchains/smartchain/assets/0x8a505D5Cb3Db9fcf404c0A72aF3dF8Be4eFB707c/info.json new file mode 100644 index 00000000..f74e3404 --- /dev/null +++ b/blockchains/smartchain/assets/0x8a505D5Cb3Db9fcf404c0A72aF3dF8Be4eFB707c/info.json @@ -0,0 +1,25 @@ +{ + "name": "ENERGY COIN", + "type": "BEP20", + "symbol": "ENG", + "decimals": 18, + "website": "https://engcrypto.io/", + "description": "The Energy Web Decentralized Operating System Open-Source Technology. ENG Multi-Blockchain can make it possible to track low-carbon energy and certificates from their origin through every stage and transaction.", + "explorer": "https://bscscan.com/token/0x8a505D5Cb3Db9fcf404c0A72aF3dF8Be4eFB707c", + "status": "active", + "id": "0x8a505D5Cb3Db9fcf404c0A72aF3dF8Be4eFB707c", + "links": [ + { + "name": "whitepaper", + "url": "https://engcrypto.io/white_paper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/profile.php?id=100080916680027" + } + ], + "tags": [ + "nft", + "deflationary" + ] +} diff --git a/blockchains/smartchain/assets/0x8a505D5Cb3Db9fcf404c0A72aF3dF8Be4eFB707c/logo.png b/blockchains/smartchain/assets/0x8a505D5Cb3Db9fcf404c0A72aF3dF8Be4eFB707c/logo.png new file mode 100644 index 00000000..c2a20bec Binary files /dev/null and b/blockchains/smartchain/assets/0x8a505D5Cb3Db9fcf404c0A72aF3dF8Be4eFB707c/logo.png differ diff --git a/blockchains/smartchain/assets/0x8a646ec31EE33B12FF47E6C7DAaF4BC4df9ae54a/info.json b/blockchains/smartchain/assets/0x8a646ec31EE33B12FF47E6C7DAaF4BC4df9ae54a/info.json new file mode 100644 index 00000000..32f5ce13 --- /dev/null +++ b/blockchains/smartchain/assets/0x8a646ec31EE33B12FF47E6C7DAaF4BC4df9ae54a/info.json @@ -0,0 +1,11 @@ +{ + "name": "FairLife", + "type": "BEP20", + "symbol": "FAIRLIFE", + "decimals": 8, + "website": "https://fairlife.finance/", + "description": "$Fairlife is a Binance Smartchain (BSC) token that will use its transaction fees to donate to people in need.", + "explorer": "https://bscscan.com/token/0x8a646ec31EE33B12FF47E6C7DAaF4BC4df9ae54a", + "status": "active", + "id": "0x8a646ec31EE33B12FF47E6C7DAaF4BC4df9ae54a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8a646ec31EE33B12FF47E6C7DAaF4BC4df9ae54a/logo.png b/blockchains/smartchain/assets/0x8a646ec31EE33B12FF47E6C7DAaF4BC4df9ae54a/logo.png new file mode 100644 index 00000000..01b8192f Binary files /dev/null and b/blockchains/smartchain/assets/0x8a646ec31EE33B12FF47E6C7DAaF4BC4df9ae54a/logo.png differ diff --git a/blockchains/smartchain/assets/0x8a74BC8c372bC7f0E9cA3f6Ac0df51BE15aEC47A/info.json b/blockchains/smartchain/assets/0x8a74BC8c372bC7f0E9cA3f6Ac0df51BE15aEC47A/info.json new file mode 100644 index 00000000..31715fa7 --- /dev/null +++ b/blockchains/smartchain/assets/0x8a74BC8c372bC7f0E9cA3f6Ac0df51BE15aEC47A/info.json @@ -0,0 +1,25 @@ +{ + "name": "PulsePad.io", + "type": "BEP20", + "symbol": "PLSPAD", + "decimals": 18, + "website": "https://pulsepad.io/", + "description": "PulsePad is a launchpad", + "explorer": "https://bscscan.com/token/0x8a74BC8c372bC7f0E9cA3f6Ac0df51BE15aEC47A", + "status": "active", + "id": "0x8a74BC8c372bC7f0E9cA3f6Ac0df51BE15aEC47A", + "links": [ + { + "name": "x", + "url": "https://x.com/PulsePad_App" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pulsepad/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/pulsepad" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8a74BC8c372bC7f0E9cA3f6Ac0df51BE15aEC47A/logo.png b/blockchains/smartchain/assets/0x8a74BC8c372bC7f0E9cA3f6Ac0df51BE15aEC47A/logo.png new file mode 100644 index 00000000..60440738 Binary files /dev/null and b/blockchains/smartchain/assets/0x8a74BC8c372bC7f0E9cA3f6Ac0df51BE15aEC47A/logo.png differ diff --git a/blockchains/smartchain/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json b/blockchains/smartchain/assets/0x8aD3c73F833d3F9A523aB01476625F269aEB7Cf0/info.json new file mode 100644 index 00000000..fcb054e5 --- /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 00000000..63973551 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 new file mode 100644 index 00000000..e0938256 --- /dev/null +++ b/blockchains/smartchain/assets/0x8aa688AB789d1848d131C65D98CEAA8875D97eF1/info.json @@ -0,0 +1,61 @@ +{ + "name": "MultiVAC", + "symbol": "MTV", + "type": "BEP20", + "decimals": 18, + "description": "MultiVAC is the innovative sharding protocol and pioneering flexible computing framework. MultiVAC is also called 'Multi-core Ethereum'. As a high-throughput and flexible public blockchain platform, MultiVAC proposed an all-dimensional sharding solution to increase TPS of blockchain, and MultiVAC is the first one that proposed a flexible computing framework, so the developers can trade-off freely about the blockchain trilemma on this framework.", + "website": "https://www.mtv.ac/", + "explorer": "https://bscscan.com/token/0x8aa688ab789d1848d131c65d98ceaa8875d97ef1", + "status": "active", + "id": "0x8aa688AB789d1848d131C65D98CEAA8875D97eF1", + "links": [ + { + "name": "github", + "url": "https://github.com/multivactech" + }, + { + "name": "x", + "url": "https://x.com/MultiVAC_Global" + }, + { + "name": "blog", + "url": "https://multivac-global.medium.com" + }, + { + "name": "telegram", + "url": "https://t.me/MultiVAC2020" + }, + { + "name": "telegram_news", + "url": "https://t.me/MultiVACMTV" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC601thGbV-rneZB8KTtbqpA?sub_confirmation=1" + }, + { + "name": "facebook", + "url": "https://facebook.com/MultiVAC.MTV/" + }, + { + "name": "discord", + "url": "https://discord.com/zq8dbUZMCF" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MultiVAC_official/" + }, + { + "name": "whitepaper", + "url": "https://mtv.ac/assets/file/MultiVAC_Tech_Whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multivac/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/multivac" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8aa688AB789d1848d131C65D98CEAA8875D97eF1/logo.png b/blockchains/smartchain/assets/0x8aa688AB789d1848d131C65D98CEAA8875D97eF1/logo.png new file mode 100644 index 00000000..3b63f069 Binary files /dev/null and b/blockchains/smartchain/assets/0x8aa688AB789d1848d131C65D98CEAA8875D97eF1/logo.png differ diff --git a/blockchains/smartchain/assets/0x8ad8e9B85787ddd0D31b32ECF655E93bfc0747eF/info.json b/blockchains/smartchain/assets/0x8ad8e9B85787ddd0D31b32ECF655E93bfc0747eF/info.json new file mode 100644 index 00000000..98d88283 --- /dev/null +++ b/blockchains/smartchain/assets/0x8ad8e9B85787ddd0D31b32ECF655E93bfc0747eF/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sombra ", + "type": "BEP20", + "symbol": "SMBR", + "decimals": 9, + "website": "https://sombra.app", + "description": "Sombra is a social NFT marketplace and gaming ecosystem created to bring collectors, artists and innovators together to make the impossible possible.", + "explorer": "https://bscscan.com/token/0x8ad8e9B85787ddd0D31b32ECF655E93bfc0747eF", + "status": "active", + "id": "0x8ad8e9B85787ddd0D31b32ECF655E93bfc0747eF", + "links": [ + { + "name": "x", + "url": "https://x.com/sombranetwork" + }, + { + "name": "telegram", + "url": "https://t.me/sombranetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8ad8e9B85787ddd0D31b32ECF655E93bfc0747eF/logo.png b/blockchains/smartchain/assets/0x8ad8e9B85787ddd0D31b32ECF655E93bfc0747eF/logo.png new file mode 100644 index 00000000..a0dd6c82 Binary files /dev/null and b/blockchains/smartchain/assets/0x8ad8e9B85787ddd0D31b32ECF655E93bfc0747eF/logo.png differ diff --git a/blockchains/smartchain/assets/0x8afC14fb1954F909c167bDF06C93ED4e1E51592b/info.json b/blockchains/smartchain/assets/0x8afC14fb1954F909c167bDF06C93ED4e1E51592b/info.json new file mode 100644 index 00000000..b3541ddf --- /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 00000000..d45a97a9 Binary files /dev/null and b/blockchains/smartchain/assets/0x8afC14fb1954F909c167bDF06C93ED4e1E51592b/logo.png differ diff --git a/blockchains/smartchain/assets/0x8b04E56A8cd5f4D465b784ccf564899F30Aaf88C/info.json b/blockchains/smartchain/assets/0x8b04E56A8cd5f4D465b784ccf564899F30Aaf88C/info.json new file mode 100644 index 00000000..b0487ac6 --- /dev/null +++ b/blockchains/smartchain/assets/0x8b04E56A8cd5f4D465b784ccf564899F30Aaf88C/info.json @@ -0,0 +1,14 @@ +{ + "name": "AnchorUST (Portal)", + "type": "BEP20", + "symbol": "aUST", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://anchorprotocol.com/", + "explorer": "https://bscscan.com/token/0x8b04E56A8cd5f4D465b784ccf564899F30Aaf88C", + "status": "active", + "id": "0x8b04E56A8cd5f4D465b784ccf564899F30Aaf88C", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8b04E56A8cd5f4D465b784ccf564899F30Aaf88C/logo.png b/blockchains/smartchain/assets/0x8b04E56A8cd5f4D465b784ccf564899F30Aaf88C/logo.png new file mode 100644 index 00000000..715ef20d Binary files /dev/null and b/blockchains/smartchain/assets/0x8b04E56A8cd5f4D465b784ccf564899F30Aaf88C/logo.png differ diff --git a/blockchains/smartchain/assets/0x8b1869f79b9abF52001314A2E6990A96F039058D/info.json b/blockchains/smartchain/assets/0x8b1869f79b9abF52001314A2E6990A96F039058D/info.json new file mode 100644 index 00000000..e3c80cd6 --- /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 00000000..232a2ee3 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 new file mode 100644 index 00000000..c7dc6798 --- /dev/null +++ b/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json @@ -0,0 +1,68 @@ +{ + "name": "Axelar", + "type": "BEP20", + "symbol": "AXL", + "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://bscscan.com/token/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65", + "status": "active", + "id": "0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65", + "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" + }, + { + "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/axelar/" + }, + { + "name": "blog", + "url": "https://axelar.network/blog" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Axelarcore" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/logo.png b/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/logo.png new file mode 100644 index 00000000..6c156aba Binary files /dev/null and b/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/logo.png differ diff --git a/blockchains/smartchain/assets/0x8b303d5BbfBbf46F1a4d9741E491e06986894e18/info.json b/blockchains/smartchain/assets/0x8b303d5BbfBbf46F1a4d9741E491e06986894e18/info.json new file mode 100644 index 00000000..7d67149a --- /dev/null +++ b/blockchains/smartchain/assets/0x8b303d5BbfBbf46F1a4d9741E491e06986894e18/info.json @@ -0,0 +1,44 @@ +{ + "name": "Woonkly Power", + "type": "BEP20", + "symbol": "WOOP", + "decimals": 18, + "description": "Woonkly Metasocial Network is a Decentralized Social Network where all posts are converted into NFTs directly, where users have full control of their data and where the content is not uploaded to a server but to users' computers through IPFS", + "website": "https://woonkly.com", + "explorer": "https://bscscan.com/token/0x8b303d5bbfbbf46f1a4d9741e491e06986894e18", + "status": "active", + "id": "0x8b303d5BbfBbf46F1a4d9741E491e06986894e18", + "tags": [ + "defi" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/woonkly-power" + }, + { + "name": "facebook", + "url": "https://facebook.com/woonkly" + }, + { + "name": "telegram", + "url": "https://t.me/woonkly" + }, + { + "name": "x", + "url": "https://x.com/WoonklyEN" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/Woonkly" + }, + { + "name": "medium", + "url": "https://woonkly.medium.com" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.woonkly.com/woonkly.com-eng/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8b303d5BbfBbf46F1a4d9741E491e06986894e18/logo.png b/blockchains/smartchain/assets/0x8b303d5BbfBbf46F1a4d9741E491e06986894e18/logo.png new file mode 100644 index 00000000..52dfdeaa Binary files /dev/null and b/blockchains/smartchain/assets/0x8b303d5BbfBbf46F1a4d9741E491e06986894e18/logo.png differ diff --git a/blockchains/smartchain/assets/0x8b6ACf6041A81567f012Ff6A4C6D96d5818d74bF/info.json b/blockchains/smartchain/assets/0x8b6ACf6041A81567f012Ff6A4C6D96d5818d74bF/info.json new file mode 100644 index 00000000..6ed759fa --- /dev/null +++ b/blockchains/smartchain/assets/0x8b6ACf6041A81567f012Ff6A4C6D96d5818d74bF/info.json @@ -0,0 +1,24 @@ +{ + "name": "Micron Technology (Ondo Tokenized)", + "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 00000000..b3e96e21 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 00000000..466cf77d --- /dev/null +++ b/blockchains/smartchain/assets/0x8b872732b07be325a8803CDB480D9d20B6f8d11B/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Silver Trust (Ondo Tokenized)", + "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 00000000..140fda8b 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 new file mode 100644 index 00000000..09d22b56 --- /dev/null +++ b/blockchains/smartchain/assets/0x8bAc6b4AF65C8c1967a0FBc27cd37FD6059daa00/info.json @@ -0,0 +1,37 @@ +{ + "name": "Sphynx Network", + "website": "https://sphynx.network", + "description": "Sphynx Network is aiming to improve the fundamental nature of DeFi by using alchemy in blockchain technology to comply with the next generation of yield farming and liquidity mining by implementing the NFT stake.", + "explorer": "https://bscscan.com/token/0x8bAc6b4AF65C8c1967a0FBc27cd37FD6059daa00", + "type": "BEP20", + "symbol": "SPH", + "decimals": 18, + "status": "active", + "id": "0x8bAc6b4AF65C8c1967a0FBc27cd37FD6059daa00", + "links": [ + { + "name": "github", + "url": "https://github.com/SphynxNetworkGitHub" + }, + { + "name": "x", + "url": "https://x.com/SphynxNetwork" + }, + { + "name": "medium", + "url": "https://sphynx-network.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/sphynxnetwork" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sphynx-network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sphynx-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8bAc6b4AF65C8c1967a0FBc27cd37FD6059daa00/logo.png b/blockchains/smartchain/assets/0x8bAc6b4AF65C8c1967a0FBc27cd37FD6059daa00/logo.png new file mode 100644 index 00000000..025cf6ff Binary files /dev/null and b/blockchains/smartchain/assets/0x8bAc6b4AF65C8c1967a0FBc27cd37FD6059daa00/logo.png differ diff --git a/blockchains/smartchain/assets/0x8baf35803b452836a05A3e01ac36F3DDbF98bbE8/info.json b/blockchains/smartchain/assets/0x8baf35803b452836a05A3e01ac36F3DDbF98bbE8/info.json new file mode 100644 index 00000000..785eb0e7 --- /dev/null +++ b/blockchains/smartchain/assets/0x8baf35803b452836a05A3e01ac36F3DDbF98bbE8/info.json @@ -0,0 +1,29 @@ +{ + "name": "Loveswap DEX", + "type": "BEP20", + "symbol": "Loveswap", + "decimals": 8, + "website": "https://www.loveswap.com/", + "description": "MULTI BLOCKCHAIN - Decentralized Exchange Platform Network", + "explorer": "https://bscscan.com/token/0x8baf35803b452836a05A3e01ac36F3DDbF98bbE8", + "status": "active", + "id": "0x8baf35803b452836a05A3e01ac36F3DDbF98bbE8", + "links": [ + { + "name": "x", + "url": "https://x.com/loveswapdex" + }, + { + "name": "whitepaper", + "url": "https://www.loveswap.com/LoveswapWhitepaper.pdf" + }, + { + "name": "telegram_news", + "url": "https://t.me/LoveswapDex" + }, + { + "name": "telegram", + "url": "https://t.me/LoveswapDexGroup" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8baf35803b452836a05A3e01ac36F3DDbF98bbE8/logo.png b/blockchains/smartchain/assets/0x8baf35803b452836a05A3e01ac36F3DDbF98bbE8/logo.png new file mode 100644 index 00000000..03eef032 Binary files /dev/null and b/blockchains/smartchain/assets/0x8baf35803b452836a05A3e01ac36F3DDbF98bbE8/logo.png differ diff --git a/blockchains/smartchain/assets/0x8beAbaa4f025D00B4699d56a683758d692d17F20/info.json b/blockchains/smartchain/assets/0x8beAbaa4f025D00B4699d56a683758d692d17F20/info.json new file mode 100644 index 00000000..6358bdaa --- /dev/null +++ b/blockchains/smartchain/assets/0x8beAbaa4f025D00B4699d56a683758d692d17F20/info.json @@ -0,0 +1,33 @@ +{ + "name": "BABYXRP", + "type": "BEP20", + "symbol": "BBYXRP", + "decimals": 9, + "website": "https://www.babyxrp.org/", + "description": "BabyXrp is a deflationary token on BSc chain. BabyXrp rewards the long term holders with XRP every week.", + "explorer": "https://bscscan.com/token/0x8beAbaa4f025D00B4699d56a683758d692d17F20", + "status": "active", + "id": "0x8beAbaa4f025D00B4699d56a683758d692d17F20", + "links": [ + { + "name": "x", + "url": "https://x.com/officialbabyxrp" + }, + { + "name": "telegram", + "url": "https://t.me/OfficialBabyXRP" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/babyxrp/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/babyxrp" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BABYXRP_ARMY" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8beAbaa4f025D00B4699d56a683758d692d17F20/logo.png b/blockchains/smartchain/assets/0x8beAbaa4f025D00B4699d56a683758d692d17F20/logo.png new file mode 100644 index 00000000..25882453 Binary files /dev/null and b/blockchains/smartchain/assets/0x8beAbaa4f025D00B4699d56a683758d692d17F20/logo.png differ diff --git a/blockchains/smartchain/assets/0x8bfc1c564E4490790DFac641C9a0FecD3f91F584/info.json b/blockchains/smartchain/assets/0x8bfc1c564E4490790DFac641C9a0FecD3f91F584/info.json new file mode 100644 index 00000000..8f3492ef --- /dev/null +++ b/blockchains/smartchain/assets/0x8bfc1c564E4490790DFac641C9a0FecD3f91F584/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoonRetriever", + "website": "https://www.moonretriever.com", + "description": "FETCH is a BEP 20 cryptocurrency of the MoonRetriever project which is the first-ever DEFI project on Binance Smart Chain providing a crypto risk assessment platform ", + "explorer": "https://bscscan.com/token/0x8bfc1c564E4490790DFac641C9a0FecD3f91F584", + "type": "BEP20", + "symbol": "FETCH", + "decimals": 9, + "status": "active", + "id": "0x8bfc1c564E4490790DFac641C9a0FecD3f91F584" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8bfc1c564E4490790DFac641C9a0FecD3f91F584/logo.png b/blockchains/smartchain/assets/0x8bfc1c564E4490790DFac641C9a0FecD3f91F584/logo.png new file mode 100644 index 00000000..d8bdb609 Binary files /dev/null and b/blockchains/smartchain/assets/0x8bfc1c564E4490790DFac641C9a0FecD3f91F584/logo.png differ diff --git a/blockchains/smartchain/assets/0x8c025B35826e6C928769e3C7BA2d999999999999/info.json b/blockchains/smartchain/assets/0x8c025B35826e6C928769e3C7BA2d999999999999/info.json new file mode 100644 index 00000000..8475d5b1 --- /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 00000000..ce0a9b68 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 new file mode 100644 index 00000000..b2364960 --- /dev/null +++ b/blockchains/smartchain/assets/0x8c282eA9eACd1B95D44a3A18DCdd1D0472868998/info.json @@ -0,0 +1,32 @@ +{ + "name": "Ancient Kingdom", + "website": "https://acdom.io", + "description": "Ancient Kingdom is the 1st ancient martial arts game on the blockchain platform, pioneering the realization of real-time games on the blockchain platform.", + "explorer": "https://bscscan.com/token/0x8c282eA9eACd1B95D44a3A18DCdd1D0472868998", + "type": "BEP20", + "symbol": "DOM", + "decimals": 8, + "status": "active", + "id": "0x8c282eA9eACd1B95D44a3A18DCdd1D0472868998", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/AncientCommunity" + }, + { + "name": "x", + "url": "https://x.com/AncientKingNft" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCpSghae57xjFYfnUyBulpIw" + }, + { + "name": "discord", + "url": "https://discord.com/invite/gXHFkvva6a" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8c282eA9eACd1B95D44a3A18DCdd1D0472868998/logo.png b/blockchains/smartchain/assets/0x8c282eA9eACd1B95D44a3A18DCdd1D0472868998/logo.png new file mode 100644 index 00000000..857c075d Binary files /dev/null and b/blockchains/smartchain/assets/0x8c282eA9eACd1B95D44a3A18DCdd1D0472868998/logo.png differ diff --git a/blockchains/smartchain/assets/0x8c33Bca75E75F63C4Ba7C57C083935ce4BD49f59/info.json b/blockchains/smartchain/assets/0x8c33Bca75E75F63C4Ba7C57C083935ce4BD49f59/info.json new file mode 100644 index 00000000..84559ca2 --- /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 00000000..33e1b952 Binary files /dev/null and b/blockchains/smartchain/assets/0x8c33Bca75E75F63C4Ba7C57C083935ce4BD49f59/logo.png differ diff --git a/blockchains/smartchain/assets/0x8c5a93Fa9BB2b0f396E80b51323767043C58E686/info.json b/blockchains/smartchain/assets/0x8c5a93Fa9BB2b0f396E80b51323767043C58E686/info.json new file mode 100644 index 00000000..e84c3f2d --- /dev/null +++ b/blockchains/smartchain/assets/0x8c5a93Fa9BB2b0f396E80b51323767043C58E686/info.json @@ -0,0 +1,11 @@ +{ + "name": "Forestry", + "website": "https://forestrytoken.com", + "description": "What we do? Three words. We plant trees. Simple yet impactful.", + "explorer": "https://bscscan.com/token/0x8c5a93Fa9BB2b0f396E80b51323767043C58E686", + "type": "BEP20", + "symbol": "FORESTRY", + "decimals": 9, + "status": "active", + "id": "0x8c5a93Fa9BB2b0f396E80b51323767043C58E686" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8c5a93Fa9BB2b0f396E80b51323767043C58E686/logo.png b/blockchains/smartchain/assets/0x8c5a93Fa9BB2b0f396E80b51323767043C58E686/logo.png new file mode 100644 index 00000000..312dbd61 Binary files /dev/null and b/blockchains/smartchain/assets/0x8c5a93Fa9BB2b0f396E80b51323767043C58E686/logo.png differ diff --git a/blockchains/smartchain/assets/0x8c9979Dc208f74a5602c38691aa920F121e2f863/info.json b/blockchains/smartchain/assets/0x8c9979Dc208f74a5602c38691aa920F121e2f863/info.json new file mode 100644 index 00000000..18dff0fc --- /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 00000000..312aef28 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 new file mode 100644 index 00000000..018677f8 --- /dev/null +++ b/blockchains/smartchain/assets/0x8cc7E2a6de999758499658bB702143FD025E09B2/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream Litecoin Token", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x8cc7E2a6de999758499658bB702143FD025E09B2", + "type": "BEP20", + "symbol": "crLTC", + "decimals": 8, + "status": "active", + "id": "0x8cc7E2a6de999758499658bB702143FD025E09B2", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8cc7E2a6de999758499658bB702143FD025E09B2/logo.png b/blockchains/smartchain/assets/0x8cc7E2a6de999758499658bB702143FD025E09B2/logo.png new file mode 100644 index 00000000..f54ed016 Binary files /dev/null and b/blockchains/smartchain/assets/0x8cc7E2a6de999758499658bB702143FD025E09B2/logo.png differ diff --git a/blockchains/smartchain/assets/0x8cf8238abf7b933Bf8BB5Ea2C7E4Be101c11de2A/info.json b/blockchains/smartchain/assets/0x8cf8238abf7b933Bf8BB5Ea2C7E4Be101c11de2A/info.json new file mode 100644 index 00000000..d3842790 --- /dev/null +++ b/blockchains/smartchain/assets/0x8cf8238abf7b933Bf8BB5Ea2C7E4Be101c11de2A/info.json @@ -0,0 +1,45 @@ +{ + "name": "XP.network", + "type": "BEP20", + "symbol": "XPNET", + "decimals": 18, + "website": "https://xp.network", + "description": "XP.network is the first blockchain-agnostic NFT ecosystem", + "explorer": "https://bscscan.com/token/0x8cf8238abf7b933Bf8BB5Ea2C7E4Be101c11de2A", + "status": "active", + "id": "0x8cf8238abf7b933Bf8BB5Ea2C7E4Be101c11de2A", + "links": [ + { + "name": "x", + "url": "https://x.com/xpnetwork_" + }, + { + "name": "github", + "url": "https://github.com/xp-network/" + }, + { + "name": "telegram", + "url": "https://t.me/xp_network" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/xp-network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xp-network/" + }, + { + "name": "blog", + "url": "https://blog.xp.network/" + }, + { + "name": "whitepaper", + "url": "https://xp.network/whitepaper/" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/XP_network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8cf8238abf7b933Bf8BB5Ea2C7E4Be101c11de2A/logo.png b/blockchains/smartchain/assets/0x8cf8238abf7b933Bf8BB5Ea2C7E4Be101c11de2A/logo.png new file mode 100644 index 00000000..f4a20858 Binary files /dev/null and b/blockchains/smartchain/assets/0x8cf8238abf7b933Bf8BB5Ea2C7E4Be101c11de2A/logo.png differ diff --git a/blockchains/smartchain/assets/0x8d03e069840D6Fb103abC4F640C8cc07F7F4bc10/info.json b/blockchains/smartchain/assets/0x8d03e069840D6Fb103abC4F640C8cc07F7F4bc10/info.json new file mode 100644 index 00000000..4ef9f6dd --- /dev/null +++ b/blockchains/smartchain/assets/0x8d03e069840D6Fb103abC4F640C8cc07F7F4bc10/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlossomCoin", + "website": "https://www.blossomco.in/", + "description": "BlossomCoin ($BLOSM) is a charity-based token that rewards holders, but more importantly, plants trees and supports reforestation efforts worldwide.", + "explorer": "https://bscscan.com/token/0x8d03e069840D6Fb103abC4F640C8cc07F7F4bc10", + "type": "BEP20", + "symbol": "BLOSM", + "decimals": 9, + "status": "active", + "id": "0x8d03e069840D6Fb103abC4F640C8cc07F7F4bc10" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8d03e069840D6Fb103abC4F640C8cc07F7F4bc10/logo.png b/blockchains/smartchain/assets/0x8d03e069840D6Fb103abC4F640C8cc07F7F4bc10/logo.png new file mode 100644 index 00000000..abc0ebb9 Binary files /dev/null and b/blockchains/smartchain/assets/0x8d03e069840D6Fb103abC4F640C8cc07F7F4bc10/logo.png differ diff --git a/blockchains/smartchain/assets/0x8d0C064AB0973fE124Fa9EFAAd492060bAaCb62c/info.json b/blockchains/smartchain/assets/0x8d0C064AB0973fE124Fa9EFAAd492060bAaCb62c/info.json new file mode 100644 index 00000000..83310fc9 --- /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 00000000..40ded359 --- /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 US 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 00000000..444ccb65 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 00000000..ad37f616 --- /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 new file mode 100644 index 00000000..5b1ec9f7 --- /dev/null +++ b/blockchains/smartchain/assets/0x8d2F15Dccbf9cb28Ad8c564753f7C4bf30638151/info.json @@ -0,0 +1,37 @@ +{ + "name": "Nocovid19", + "website": "https://nocovid19.finance/", + "description": "CVD19 is a community driven, fair launched DeFi Token Built under BSC (Binance smart chain, To help adaption of cashless system of payment based on blockchain system in order to reduce COVID19 spread which can be caused by cash, Also the community make profit by just holding their CVD19 token due to deflation process during Token transfer and holding reward which occur automatically from CVD19 contract (auto staking)", + "explorer": "https://bscscan.com/token/0x8d2F15Dccbf9cb28Ad8c564753f7C4bf30638151", + "type": "BEP20", + "symbol": "CVD19", + "decimals": 9, + "status": "active", + "id": "0x8d2F15Dccbf9cb28Ad8c564753f7C4bf30638151", + "links": [ + { + "name": "github", + "url": "https://github.com/CVD19" + }, + { + "name": "x", + "url": "https://x.com/nocovid19_cvd19" + }, + { + "name": "telegram", + "url": "https://t.me/CVD19chat" + }, + { + "name": "telegram_news", + "url": "https://t.me/CVD19_channel" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/CVD19coin/" + }, + { + "name": "facebook", + "url": "https://facebook.com/CVD19-COIN-104675865192360/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8d2F15Dccbf9cb28Ad8c564753f7C4bf30638151/logo.png b/blockchains/smartchain/assets/0x8d2F15Dccbf9cb28Ad8c564753f7C4bf30638151/logo.png new file mode 100644 index 00000000..c80fd2ea Binary files /dev/null and b/blockchains/smartchain/assets/0x8d2F15Dccbf9cb28Ad8c564753f7C4bf30638151/logo.png differ diff --git a/blockchains/smartchain/assets/0x8d715f8e33CA31d00936E04addE913176df94fE5/info.json b/blockchains/smartchain/assets/0x8d715f8e33CA31d00936E04addE913176df94fE5/info.json new file mode 100644 index 00000000..b4ec1bb5 --- /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 new file mode 100644 index 00000000..362fbff9 --- /dev/null +++ b/blockchains/smartchain/assets/0x8d9fB713587174Ee97e91866050c383b5cEE6209/info.json @@ -0,0 +1,28 @@ +{ + "name": "VELHALLA.io", + "website": "https://velhalla.io/", + "description": "The Velas Metaverse. Velhalla is a metaverse unlike any other out there in the market.", + "explorer": "https://bscscan.com/token/0x8d9fB713587174Ee97e91866050c383b5cEE6209", + "type": "BEP20", + "symbol": "SCAR", + "decimals": 18, + "status": "active", + "id": "0x8d9fB713587174Ee97e91866050c383b5cEE6209", + "tags": [ + "nft" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/Velhallaofficial" + }, + { + "name": "x", + "url": "https://x.com/velhallaproject" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/velhalla/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8d9fB713587174Ee97e91866050c383b5cEE6209/logo.png b/blockchains/smartchain/assets/0x8d9fB713587174Ee97e91866050c383b5cEE6209/logo.png new file mode 100644 index 00000000..8627c197 Binary files /dev/null and b/blockchains/smartchain/assets/0x8d9fB713587174Ee97e91866050c383b5cEE6209/logo.png differ diff --git a/blockchains/smartchain/assets/0x8dA443F84fEA710266C8eB6bC34B71702d033EF2/info.json b/blockchains/smartchain/assets/0x8dA443F84fEA710266C8eB6bC34B71702d033EF2/info.json new file mode 100644 index 00000000..daf2cd61 --- /dev/null +++ b/blockchains/smartchain/assets/0x8dA443F84fEA710266C8eB6bC34B71702d033EF2/info.json @@ -0,0 +1,12 @@ +{ + "name": "Cartesi Token", + "website": "https://cartesi.io", + "description": "Cartesi Takes Smart Contracts to the Next Level.", + "explorer": "https://bscscan.com/token/0x8da443f84fea710266c8eb6bc34b71702d033ef2", + "research": "https://research.binance.com/en/projects/cartesi", + "type": "BEP20", + "symbol": "CTSI", + "decimals": 18, + "status": "active", + "id": "0x8dA443F84fEA710266C8eB6bC34B71702d033EF2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8dA443F84fEA710266C8eB6bC34B71702d033EF2/logo.png b/blockchains/smartchain/assets/0x8dA443F84fEA710266C8eB6bC34B71702d033EF2/logo.png new file mode 100644 index 00000000..bcce527e Binary files /dev/null and b/blockchains/smartchain/assets/0x8dA443F84fEA710266C8eB6bC34B71702d033EF2/logo.png differ diff --git a/blockchains/smartchain/assets/0x8dB1D28Ee0d822367aF8d220C0dc7cB6fe9DC442/info.json b/blockchains/smartchain/assets/0x8dB1D28Ee0d822367aF8d220C0dc7cB6fe9DC442/info.json new file mode 100644 index 00000000..5e6f2b27 --- /dev/null +++ b/blockchains/smartchain/assets/0x8dB1D28Ee0d822367aF8d220C0dc7cB6fe9DC442/info.json @@ -0,0 +1,25 @@ +{ + "name": "ETHPAD.network", + "type": "BEP20", + "symbol": "ETHPAD", + "decimals": 18, + "website": "https://ethpad.network/", + "description": "ETHPad is a launchpad token", + "explorer": "https://bscscan.com/token/0x8dB1D28Ee0d822367aF8d220C0dc7cB6fe9DC442", + "status": "active", + "id": "0x8dB1D28Ee0d822367aF8d220C0dc7cB6fe9DC442", + "links": [ + { + "name": "x", + "url": "https://x.com/ethpadofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ethpad/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/ethpad" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8dB1D28Ee0d822367aF8d220C0dc7cB6fe9DC442/logo.png b/blockchains/smartchain/assets/0x8dB1D28Ee0d822367aF8d220C0dc7cB6fe9DC442/logo.png new file mode 100644 index 00000000..98b0a84c Binary files /dev/null and b/blockchains/smartchain/assets/0x8dB1D28Ee0d822367aF8d220C0dc7cB6fe9DC442/logo.png differ diff --git a/blockchains/smartchain/assets/0x8dDB97556F6ae98B4d408c56B167139fE1Cbe3e8/info.json b/blockchains/smartchain/assets/0x8dDB97556F6ae98B4d408c56B167139fE1Cbe3e8/info.json new file mode 100644 index 00000000..961740d8 --- /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 00000000..2cb39057 Binary files /dev/null and b/blockchains/smartchain/assets/0x8dDB97556F6ae98B4d408c56B167139fE1Cbe3e8/logo.png differ diff --git a/blockchains/smartchain/assets/0x8e07Df508cA9c16362A84fA742b91Db3912Dd290/info.json b/blockchains/smartchain/assets/0x8e07Df508cA9c16362A84fA742b91Db3912Dd290/info.json new file mode 100644 index 00000000..ea3df630 --- /dev/null +++ b/blockchains/smartchain/assets/0x8e07Df508cA9c16362A84fA742b91Db3912Dd290/info.json @@ -0,0 +1,11 @@ +{ + "name": "NST Starter", + "type": "BEP20", + "symbol": "NST", + "decimals": 18, + "website": "https://www.nft-starter.com/", + "description": "The role of NFT-Starter is as a provider of technology to have a platform exclusively governed by NFT-Starter community. There are multiple benefits for NST holders such as earning BNB passively, IDO participation, voting power, farming (liquidity pool), earning rating star and many benefits coming in the future.", + "explorer": "https://bscscan.com/token/0x8e07Df508cA9c16362A84fA742b91Db3912Dd290", + "status": "active", + "id": "0x8e07Df508cA9c16362A84fA742b91Db3912Dd290" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8e07Df508cA9c16362A84fA742b91Db3912Dd290/logo.png b/blockchains/smartchain/assets/0x8e07Df508cA9c16362A84fA742b91Db3912Dd290/logo.png new file mode 100644 index 00000000..861d7739 Binary files /dev/null and b/blockchains/smartchain/assets/0x8e07Df508cA9c16362A84fA742b91Db3912Dd290/logo.png differ diff --git a/blockchains/smartchain/assets/0x8e11E90B463bf521382E2B88539F053270a3848c/info.json b/blockchains/smartchain/assets/0x8e11E90B463bf521382E2B88539F053270a3848c/info.json new file mode 100644 index 00000000..32092f81 --- /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 00000000..14b0f8b9 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 new file mode 100644 index 00000000..d9ae7224 --- /dev/null +++ b/blockchains/smartchain/assets/0x8e17ed70334C87eCE574C9d537BC153d8609e2a3/info.json @@ -0,0 +1,30 @@ +{ + "name": "WazirX Token", + "website": "https://wazirx.com", + "description": "The WRX token is used for trading fee discounts, WRX Trade Mining (unlock and earn WRX tokens by performing trades), paying for margin fees, and more.", + "explorer": "https://bscscan.com/token/0x8e17ed70334c87ece574c9d537bc153d8609e2a3", + "research": "https://research.binance.com/en/projects/wazirx", + "type": "BEP20", + "symbol": "WRX", + "decimals": 8, + "status": "active", + "id": "0x8e17ed70334C87eCE574C9d537BC153d8609e2a3", + "links": [ + { + "name": "whitepaper", + "url": "https://download.wazirx.com/wrx/wrx-whitepaper.pdf" + }, + { + "name": "x", + "url": "https://x.com/wazirxindiap" + }, + { + "name": "facebook", + "url": "https://facebook.com/wazirx" + }, + { + "name": "github", + "url": "https://github.com/wazirx" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8e17ed70334C87eCE574C9d537BC153d8609e2a3/logo.png b/blockchains/smartchain/assets/0x8e17ed70334C87eCE574C9d537BC153d8609e2a3/logo.png new file mode 100644 index 00000000..d5740aec Binary files /dev/null and b/blockchains/smartchain/assets/0x8e17ed70334C87eCE574C9d537BC153d8609e2a3/logo.png differ diff --git a/blockchains/smartchain/assets/0x8e2D8f40818FbaBA663Db6a24FB9B527Fc7100BE/info.json b/blockchains/smartchain/assets/0x8e2D8f40818FbaBA663Db6a24FB9B527Fc7100BE/info.json new file mode 100644 index 00000000..530a558f --- /dev/null +++ b/blockchains/smartchain/assets/0x8e2D8f40818FbaBA663Db6a24FB9B527Fc7100BE/info.json @@ -0,0 +1,53 @@ +{ + "name": "ORE Token", + "type": "BEP20", + "symbol": "ORE", + "decimals": 18, + "website": "https://ore-system.com/", + "description": "ORE Token is a component of The ORE System (c) Next-Gen Blockchain Ecosystem", + "explorer": "https://bscscan.com/token/0x8e2D8f40818FbaBA663Db6a24FB9B527Fc7100BE", + "status": "active", + "id": "0x8e2D8f40818FbaBA663Db6a24FB9B527Fc7100BE", + "links": [ + { + "name": "x", + "url": "https://x.com/ORESystemNFT" + }, + { + "name": "facebook", + "url": "https://facebook.com/oresystem" + }, + { + "name": "youtube", + "url": "https://youtube.com/OreSystem" + }, + { + "name": "telegram", + "url": "https://t.me/TheORESystem" + }, + { + "name": "discord", + "url": "https://discord.com/channels/881987778102034473/881987778991255625" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/" + }, + { + "name": "github", + "url": "https://github.com/ORESystem/OREToken/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/" + }, + { + "name": "whitepaper", + "url": "https://ore-system.com/wp-content/uploads/2021/09/ORE_System_White_Paper-v1.0.4.pdf" + }, + { + "name": "source_code", + "url": "https://github.com/ORESystem/OREToken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8e2D8f40818FbaBA663Db6a24FB9B527Fc7100BE/logo.png b/blockchains/smartchain/assets/0x8e2D8f40818FbaBA663Db6a24FB9B527Fc7100BE/logo.png new file mode 100644 index 00000000..f40c308b Binary files /dev/null and b/blockchains/smartchain/assets/0x8e2D8f40818FbaBA663Db6a24FB9B527Fc7100BE/logo.png differ diff --git a/blockchains/smartchain/assets/0x8e428aA75b271EbF905DB7e3F2970453E976481e/info.json b/blockchains/smartchain/assets/0x8e428aA75b271EbF905DB7e3F2970453E976481e/info.json new file mode 100644 index 00000000..ec5585b5 --- /dev/null +++ b/blockchains/smartchain/assets/0x8e428aA75b271EbF905DB7e3F2970453E976481e/info.json @@ -0,0 +1,53 @@ +{ + "name": "Next Token", + "type": "BEP20", + "symbol": "NXT", + "decimals": 18, + "website": "https://nxt-token.com/", + "description": "Connect companies to influencers.", + "explorer": "https://bscscan.com/token/0x8e428aA75b271EbF905DB7e3F2970453E976481e", + "status": "active", + "id": "0x8e428aA75b271EbF905DB7e3F2970453E976481e", + "links": [ + { + "name": "x", + "url": "https://x.com/token_next" + }, + { + "name": "github", + "url": "https://github.com/NXTtoken" + }, + { + "name": "telegram", + "url": "https://t.me/OFFICIALNXTTOKENChat" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/next-token/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x8e428aa75b271ebf905db7e3f2970453e976481e#contracts" + }, + { + "name": "discord", + "url": "https://discord.com/uv6Utknfsw" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/NextTokenOfficial" + }, + { + "name": "whitepaper", + "url": "https://nxt-token.com/en/white-paper" + }, + { + "name": "facebook", + "url": "https://facebook.com/NEXT-TOKEN-101559578929673" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/pi%C3%A8ces/next-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8e428aA75b271EbF905DB7e3F2970453E976481e/logo.png b/blockchains/smartchain/assets/0x8e428aA75b271EbF905DB7e3F2970453E976481e/logo.png new file mode 100644 index 00000000..348d4d40 Binary files /dev/null and b/blockchains/smartchain/assets/0x8e428aA75b271EbF905DB7e3F2970453E976481e/logo.png differ diff --git a/blockchains/smartchain/assets/0x8e87DB40C5E9335a8FE19333Ffc19AD95C665f60/info.json b/blockchains/smartchain/assets/0x8e87DB40C5E9335a8FE19333Ffc19AD95C665f60/info.json new file mode 100644 index 00000000..925a47de --- /dev/null +++ b/blockchains/smartchain/assets/0x8e87DB40C5E9335a8FE19333Ffc19AD95C665f60/info.json @@ -0,0 +1,61 @@ +{ + "name": "DOOiT", + "type": "BEP20", + "symbol": "DOO", + "decimals": 16, + "website": "https://tokendooit.com/", + "description": "DOOiT is here to bring a cryptocurrency exchange with high levels of security providing easy-to-use platform for everyone, even for newcomers to the crypto world. DOOiT also comes with its own token powered by BEP20 protocol. DOO is the Ticker we use for the DOOiT token. The Ticker is the abbreviation used to uniquely identify cryptocurrencies, this is the shortened name of the cryptocurrency. People can buy DOOiT tokens and any other tokens or coins using our Exchange Platform.", + "explorer": "https://bscscan.com/token/0x8e87DB40C5E9335a8FE19333Ffc19AD95C665f60", + "status": "active", + "id": "0x8e87DB40C5E9335a8FE19333Ffc19AD95C665f60", + "links": [ + { + "name": "x", + "url": "https://x.com/tokendooit" + }, + { + "name": "github", + "url": "https://github.com/TokenDOOit" + }, + { + "name": "telegram", + "url": "https://t.me/tokendooit" + }, + { + "name": "blog", + "url": "https://blog.tokendooit.com/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/jwmJ75eJff" + }, + { + "name": "reddit", + "url": "https://reddit.com/u/TokenDOOit/" + }, + { + "name": "medium", + "url": "https://medium.com/@tokendooit" + }, + { + "name": "whitepaper", + "url": "https://www.tokendooit.com/download/DOOit-Wallet-Whitepaper.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/TokenDOOit" + }, + { + "name": "facebook", + "url": "https://facebook.com/tokendooit/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dooit-token/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x8e87db40c5e9335a8fe19333ffc19ad95c665f60#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8e87DB40C5E9335a8FE19333Ffc19AD95C665f60/logo.png b/blockchains/smartchain/assets/0x8e87DB40C5E9335a8FE19333Ffc19AD95C665f60/logo.png new file mode 100644 index 00000000..65288148 Binary files /dev/null and b/blockchains/smartchain/assets/0x8e87DB40C5E9335a8FE19333Ffc19AD95C665f60/logo.png differ diff --git a/blockchains/smartchain/assets/0x8e9e4a8d7f1C65dcB42D9103832b27E75946055D/info.json b/blockchains/smartchain/assets/0x8e9e4a8d7f1C65dcB42D9103832b27E75946055D/info.json new file mode 100644 index 00000000..417ab014 --- /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 00000000..86dba01d Binary files /dev/null and b/blockchains/smartchain/assets/0x8e9e4a8d7f1C65dcB42D9103832b27E75946055D/logo.png differ diff --git a/blockchains/smartchain/assets/0x8eE4924BD493109337D839C23f628e75Ef5f1C4D/info.json b/blockchains/smartchain/assets/0x8eE4924BD493109337D839C23f628e75Ef5f1C4D/info.json new file mode 100644 index 00000000..9fe9c748 --- /dev/null +++ b/blockchains/smartchain/assets/0x8eE4924BD493109337D839C23f628e75Ef5f1C4D/info.json @@ -0,0 +1,14 @@ +{ + "name": "BEN Token", + "website": "https://bentoken.finance/", + "description": "Ben is a decentralized community experiment which is inspired by Elon Musk and Dogecoin.", + "explorer": "https://bscscan.com/token/0x8eE4924BD493109337D839C23f628e75Ef5f1C4D", + "type": "BEP20", + "symbol": "Ben", + "decimals": 18, + "status": "active", + "id": "0x8eE4924BD493109337D839C23f628e75Ef5f1C4D", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8eE4924BD493109337D839C23f628e75Ef5f1C4D/logo.png b/blockchains/smartchain/assets/0x8eE4924BD493109337D839C23f628e75Ef5f1C4D/logo.png new file mode 100644 index 00000000..e25d9450 Binary files /dev/null and b/blockchains/smartchain/assets/0x8eE4924BD493109337D839C23f628e75Ef5f1C4D/logo.png differ diff --git a/blockchains/smartchain/assets/0x8ea406242B84Ae39D1ff86a07C69FB33ED4b44B2/info.json b/blockchains/smartchain/assets/0x8ea406242B84Ae39D1ff86a07C69FB33ED4b44B2/info.json new file mode 100644 index 00000000..e8cad126 --- /dev/null +++ b/blockchains/smartchain/assets/0x8ea406242B84Ae39D1ff86a07C69FB33ED4b44B2/info.json @@ -0,0 +1,11 @@ +{ + "name": "ElonMars", + "website": "https://elonmars.org", + "description": "Our goal is to inform you about the current and future revolutionary projects of Elon Musk.", + "explorer": "https://bscscan.com/token/0x8ea406242B84Ae39D1ff86a07C69FB33ED4b44B2", + "type": "BEP20", + "symbol": "ELONMARS", + "decimals": 9, + "status": "active", + "id": "0x8ea406242B84Ae39D1ff86a07C69FB33ED4b44B2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8ea406242B84Ae39D1ff86a07C69FB33ED4b44B2/logo.png b/blockchains/smartchain/assets/0x8ea406242B84Ae39D1ff86a07C69FB33ED4b44B2/logo.png new file mode 100644 index 00000000..ec23f621 Binary files /dev/null and b/blockchains/smartchain/assets/0x8ea406242B84Ae39D1ff86a07C69FB33ED4b44B2/logo.png differ diff --git a/blockchains/smartchain/assets/0x8ebC361536094fD5B4FFB8521E31900614C9F55D/info.json b/blockchains/smartchain/assets/0x8ebC361536094fD5B4FFB8521E31900614C9F55D/info.json new file mode 100644 index 00000000..4c17ad58 --- /dev/null +++ b/blockchains/smartchain/assets/0x8ebC361536094fD5B4FFB8521E31900614C9F55D/info.json @@ -0,0 +1,21 @@ +{ + "name": "DARC Token", + "symbol": "DARC", + "type": "BEP20", + "decimals": 18, + "description": "DARC is the main token for Konstellation network, a blockchain ecosystem for the global financial services industry.", + "website": "https://konstellation.tech/", + "explorer": "https://bscscan.com/token/0x8ebC361536094fD5B4FFB8521E31900614C9F55D", + "status": "active", + "id": "0x8ebC361536094fD5B4FFB8521E31900614C9F55D", + "links": [ + { + "name": "x", + "url": "https://x.com/KNSTL_TECH" + }, + { + "name": "telegram", + "url": "https://t.me/Konstellation" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8ebC361536094fD5B4FFB8521E31900614C9F55D/logo.png b/blockchains/smartchain/assets/0x8ebC361536094fD5B4FFB8521E31900614C9F55D/logo.png new file mode 100644 index 00000000..9c293516 Binary files /dev/null and b/blockchains/smartchain/assets/0x8ebC361536094fD5B4FFB8521E31900614C9F55D/logo.png differ diff --git a/blockchains/smartchain/assets/0x8f20eBD7Cdb3eFdb51D58D582a21e1A0b41F4436/info.json b/blockchains/smartchain/assets/0x8f20eBD7Cdb3eFdb51D58D582a21e1A0b41F4436/info.json new file mode 100644 index 00000000..ccb94b3b --- /dev/null +++ b/blockchains/smartchain/assets/0x8f20eBD7Cdb3eFdb51D58D582a21e1A0b41F4436/info.json @@ -0,0 +1,11 @@ +{ + "name": "Unagi Token", + "type": "BEP20", + "symbol": "Unagi", + "decimals": 9, + "website": "https://unagiswap.finance/", + "description": "Unagi is a RFI tokenomics token - Reflection paid back to holders.", + "explorer": "https://bscscan.com/token/0x8f20eBD7Cdb3eFdb51D58D582a21e1A0b41F4436", + "status": "active", + "id": "0x8f20eBD7Cdb3eFdb51D58D582a21e1A0b41F4436" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8f20eBD7Cdb3eFdb51D58D582a21e1A0b41F4436/logo.png b/blockchains/smartchain/assets/0x8f20eBD7Cdb3eFdb51D58D582a21e1A0b41F4436/logo.png new file mode 100644 index 00000000..02a2048f Binary files /dev/null and b/blockchains/smartchain/assets/0x8f20eBD7Cdb3eFdb51D58D582a21e1A0b41F4436/logo.png differ diff --git a/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json b/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json new file mode 100644 index 00000000..06bcbaf2 --- /dev/null +++ b/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json @@ -0,0 +1,36 @@ +{ + "name": "Cherry Token", + "website": "https://cherry.network", + "description": "Trustless, distributed storage for decentralized applications", + "explorer": "https://bscscan.com/token/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C", + "type": "BEP20", + "symbol": "CHER", + "decimals": 18, + "status": "active", + "id": "0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C", + "links": [ + { + "name": "github", + "url": "https://github.com/cherrynetwork" + }, + { + "name": "x", + "url": "https://x.com/cherry_network" + }, + { + "name": "telegram", + "url": "https://t.me/cherrynetwork" + }, + { + "name": "medium", + "url": "https://medium.com/@cherryproject" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cherry-network" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/logo.png b/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/logo.png new file mode 100644 index 00000000..f21a9869 Binary files /dev/null and b/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/logo.png differ diff --git a/blockchains/smartchain/assets/0x8f4087Cb09E0F378f4278a314C94A636665dE24b/info.json b/blockchains/smartchain/assets/0x8f4087Cb09E0F378f4278a314C94A636665dE24b/info.json new file mode 100644 index 00000000..3f76459f --- /dev/null +++ b/blockchains/smartchain/assets/0x8f4087Cb09E0F378f4278a314C94A636665dE24b/info.json @@ -0,0 +1,29 @@ +{ + "name": "NAR Ticket Token (GOLD)", + "website": "https://narwhalswap.org", + "description": "Narwhalswap Protocol — DeFi Platform with Sustainability. We will build a new unique dapp and protocol to enhance the value of the DeFi, create diversified investment, and become the future of financial services.", + "explorer": "https://bscscan.com/token/0x8f4087cb09e0f378f4278a314c94a636665de24b", + "type": "BEP20", + "symbol": "GOLD", + "decimals": 18, + "status": "active", + "id": "0x8f4087Cb09E0F378f4278a314C94A636665dE24b", + "links": [ + { + "name": "x", + "url": "https://x.com/narwhalswap" + }, + { + "name": "telegram", + "url": "https://t.me/narwhalswap" + }, + { + "name": "medium", + "url": "https://medium.com/narwhalswap" + }, + { + "name": "docs", + "url": "https://docs.narwhalswap.org" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8f4087Cb09E0F378f4278a314C94A636665dE24b/logo.png b/blockchains/smartchain/assets/0x8f4087Cb09E0F378f4278a314C94A636665dE24b/logo.png new file mode 100644 index 00000000..e001f31c Binary files /dev/null and b/blockchains/smartchain/assets/0x8f4087Cb09E0F378f4278a314C94A636665dE24b/logo.png differ diff --git a/blockchains/smartchain/assets/0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21/info.json b/blockchains/smartchain/assets/0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21/info.json new file mode 100644 index 00000000..822bc5f1 --- /dev/null +++ b/blockchains/smartchain/assets/0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21/info.json @@ -0,0 +1,56 @@ +{ + "name": "Coinerr", + "type": "BEP20", + "symbol": "ERR", + "decimals": 9, + "website": "https://coinerr.io", + "description": "Eliminating online fraud by applying escrow system using smart contracts in Trustless methods where no 3rd party is needed in those unbreakable contracts.", + "explorer": "https://bscscan.com/token/0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21", + "status": "abandoned", + "id": "0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21", + "links": [ + { + "name": "x", + "url": "https://x.com/coinerr_err" + }, + { + "name": "github", + "url": "https://github.com/CoinerrERR" + }, + { + "name": "telegram", + "url": "https://t.me/CoinerrAR" + }, + { + "name": "telegram_news", + "url": "https://t.me/coinerr_ERR" + }, + { + "name": "whitepaper", + "url": "https://coinerr.io/papers/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinerr" + }, + { + "name": "facebook", + "url": "https://facebook.com/Coinerr.rr" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCfU0PKNbak6ltlc7U5rCT3w" + }, + { + "name": "medium", + "url": "https://coinerr.medium.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Coinerr_ERR" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/info.json b/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/info.json new file mode 100644 index 00000000..6f1572d1 --- /dev/null +++ b/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/info.json @@ -0,0 +1,12 @@ +{ + "name": "BNB pegged Bitcoin Cash Token", + "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", + "research": "https://research.binance.com/en/projects/bitcoin-cash", + "type": "BEP20", + "symbol": "BCH", + "decimals": 18, + "status": "active", + "id": "0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/logo.png b/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/logo.png new file mode 100644 index 00000000..e937e267 Binary files /dev/null and b/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/logo.png differ diff --git a/blockchains/smartchain/assets/0x9000Cac49C3841926Baac5b2E13c87D43e51B6a4/info.json b/blockchains/smartchain/assets/0x9000Cac49C3841926Baac5b2E13c87D43e51B6a4/info.json new file mode 100644 index 00000000..65ccaa89 --- /dev/null +++ b/blockchains/smartchain/assets/0x9000Cac49C3841926Baac5b2E13c87D43e51B6a4/info.json @@ -0,0 +1,65 @@ +{ + "name": "Portuma", + "type": "BEP20", + "symbol": "POR", + "decimals": 18, + "website": "https://portoken.com", + "description": "First In-game and Metaverse Ads Token On Blockchain. Portuma Token ($POR) is a BEP20 token issued on the Binance Smart Chain with a fixed supply of 10 Billion tokens in total. POR's bravest goal to offer an in-game advertising tool to all mobile and desktop game developers and companies and users of the world.", + "explorer": "https://bscscan.com/token/0x9000Cac49C3841926Baac5b2E13c87D43e51B6a4", + "status": "active", + "id": "0x9000Cac49C3841926Baac5b2E13c87D43e51B6a4", + "links": [ + { + "name": "x", + "url": "https://x.com/portuma" + }, + { + "name": "github", + "url": "https://github.com/portuma" + }, + { + "name": "telegram", + "url": "https://t.me/portumacommunity" + }, + { + "name": "telegram_news", + "url": "https://t.me/portumatoken" + }, + { + "name": "blog", + "url": "https://portumatoken.medium.com/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/4Sr4jKChEb" + }, + { + "name": "whitepaper", + "url": "https://portoken.com/portoken-whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://portumatoken.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCWy5m7fs4KWL75u-I8_D_5g" + }, + { + "name": "facebook", + "url": "https://facebook.com/portumatoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/portuma/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/portuma" + }, + { + "name": "source_code", + "url": "https://github.com/portuma/portoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9000Cac49C3841926Baac5b2E13c87D43e51B6a4/logo.png b/blockchains/smartchain/assets/0x9000Cac49C3841926Baac5b2E13c87D43e51B6a4/logo.png new file mode 100644 index 00000000..e7b4e858 Binary files /dev/null and b/blockchains/smartchain/assets/0x9000Cac49C3841926Baac5b2E13c87D43e51B6a4/logo.png differ diff --git a/blockchains/smartchain/assets/0x9001fD53504F7Bf253296cfFAdF5b6030CD61abb/info.json b/blockchains/smartchain/assets/0x9001fD53504F7Bf253296cfFAdF5b6030CD61abb/info.json new file mode 100644 index 00000000..1eb9fc4a --- /dev/null +++ b/blockchains/smartchain/assets/0x9001fD53504F7Bf253296cfFAdF5b6030CD61abb/info.json @@ -0,0 +1,29 @@ +{ + "name": "CyberFM Radio", + "website": "https://cyber-fm.com", + "description": "Utility token to reward Radio listeners and is 1 of 2 in the DLPRO Dual Token Economy.", + "explorer": "https://bscscan.com/token/0x9001fd53504f7bf253296cffadf5b6030cd61abb", + "type": "BEP20", + "symbol": "CYFM", + "decimals": 18, + "status": "active", + "id": "0x9001fD53504F7Bf253296cfFAdF5b6030CD61abb", + "links": [ + { + "name": "github", + "url": "https://github.com/CyberFM/" + }, + { + "name": "x", + "url": "https://x.com/CyberFM" + }, + { + "name": "telegram", + "url": "https://t.me/mftudotnet" + }, + { + "name": "facebook", + "url": "https://facebook.com/cyberfm" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9001fD53504F7Bf253296cfFAdF5b6030CD61abb/logo.png b/blockchains/smartchain/assets/0x9001fD53504F7Bf253296cfFAdF5b6030CD61abb/logo.png new file mode 100644 index 00000000..680f5c60 Binary files /dev/null and b/blockchains/smartchain/assets/0x9001fD53504F7Bf253296cfFAdF5b6030CD61abb/logo.png differ diff --git a/blockchains/smartchain/assets/0x901c31a669616Fec1420fe74cF7abAC9b59C8fE3/info.json b/blockchains/smartchain/assets/0x901c31a669616Fec1420fe74cF7abAC9b59C8fE3/info.json new file mode 100644 index 00000000..4e2195db --- /dev/null +++ b/blockchains/smartchain/assets/0x901c31a669616Fec1420fe74cF7abAC9b59C8fE3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Infinity Gold", + "type": "BEP20", + "symbol": "INFG", + "decimals": 8, + "website": "https://infinitygold.io", + "description": "Infinity Gold is a A gift token for members of the PPDAI International Digital Asset Entrepreneurs Association as a sign of loyalty aimed at the welfare of all its members.", + "explorer": "https://bscscan.com/token/0x901c31a669616Fec1420fe74cF7abAC9b59C8fE3", + "status": "active", + "id": "0x901c31a669616Fec1420fe74cF7abAC9b59C8fE3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x901c31a669616Fec1420fe74cF7abAC9b59C8fE3/logo.png b/blockchains/smartchain/assets/0x901c31a669616Fec1420fe74cF7abAC9b59C8fE3/logo.png new file mode 100644 index 00000000..860fb7ad Binary files /dev/null and b/blockchains/smartchain/assets/0x901c31a669616Fec1420fe74cF7abAC9b59C8fE3/logo.png differ diff --git a/blockchains/smartchain/assets/0x901cde16883306012500c609a9834dDC935d4444/info.json b/blockchains/smartchain/assets/0x901cde16883306012500c609a9834dDC935d4444/info.json new file mode 100644 index 00000000..0e48cc33 --- /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/0x9029FdFAe9A03135846381c7cE16595C3554e10A/info.json b/blockchains/smartchain/assets/0x9029FdFAe9A03135846381c7cE16595C3554e10A/info.json new file mode 100644 index 00000000..de7378ae --- /dev/null +++ b/blockchains/smartchain/assets/0x9029FdFAe9A03135846381c7cE16595C3554e10A/info.json @@ -0,0 +1,11 @@ +{ + "name": "OpenOcean", + "website": "https://openocean.finance/", + "description": "OpenOcean Token on Binance Smartchain", + "explorer": "https://bscscan.com/token/0x9029FdFAe9A03135846381c7cE16595C3554e10A", + "type": "BEP20", + "symbol": "OOE", + "decimals": 18, + "status": "active", + "id": "0x9029FdFAe9A03135846381c7cE16595C3554e10A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9029FdFAe9A03135846381c7cE16595C3554e10A/logo.png b/blockchains/smartchain/assets/0x9029FdFAe9A03135846381c7cE16595C3554e10A/logo.png new file mode 100644 index 00000000..694d6d6d Binary files /dev/null and b/blockchains/smartchain/assets/0x9029FdFAe9A03135846381c7cE16595C3554e10A/logo.png differ diff --git a/blockchains/smartchain/assets/0x904d7Ac5d005d16DBDc69f713D029e3C1800F8Ca/info.json b/blockchains/smartchain/assets/0x904d7Ac5d005d16DBDc69f713D029e3C1800F8Ca/info.json new file mode 100644 index 00000000..60800dfa --- /dev/null +++ b/blockchains/smartchain/assets/0x904d7Ac5d005d16DBDc69f713D029e3C1800F8Ca/info.json @@ -0,0 +1,11 @@ +{ + "name": "Martian DAO", + "type": "BEP20", + "symbol": "MDAO", + "decimals": 9, + "website": "https://www.martiandao.net/", + "description": "Martian DAO is a fun, engaging, and community driven project combining the tried-and-true tokenomics of high-yield frictionless farming and the new concept of injections via the process of liquidity events.", + "explorer": "https://bscscan.com/token/0x904d7Ac5d005d16DBDc69f713D029e3C1800F8Ca", + "status": "active", + "id": "0x904d7Ac5d005d16DBDc69f713D029e3C1800F8Ca" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x904d7Ac5d005d16DBDc69f713D029e3C1800F8Ca/logo.png b/blockchains/smartchain/assets/0x904d7Ac5d005d16DBDc69f713D029e3C1800F8Ca/logo.png new file mode 100644 index 00000000..1959a8b6 Binary files /dev/null and b/blockchains/smartchain/assets/0x904d7Ac5d005d16DBDc69f713D029e3C1800F8Ca/logo.png differ diff --git a/blockchains/smartchain/assets/0x90561f53a83D97C383E4842960969a6d9cfe1Ba9/info.json b/blockchains/smartchain/assets/0x90561f53a83D97C383E4842960969a6d9cfe1Ba9/info.json new file mode 100644 index 00000000..316b65f4 --- /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 00000000..11f404be 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 new file mode 100644 index 00000000..2bc93bff --- /dev/null +++ b/blockchains/smartchain/assets/0x90727C1195fB2246fd758172f9253873790d06a4/info.json @@ -0,0 +1,37 @@ +{ + "name": "Ethera", + "website": "https://ethera.cc", + "description": "Ethera is a new innovative yield farming protocol designed to reward its holders through passive staking. With a suite of BSC tools in development and other crypto variations in the pipeline.", + "explorer": "https://bscscan.com/token/0x90727C1195fB2246fd758172f9253873790d06a4", + "type": "BEP20", + "symbol": "ETA", + "decimals": 9, + "status": "active", + "id": "0x90727C1195fB2246fd758172f9253873790d06a4", + "links": [ + { + "name": "github", + "url": "https://github.com/Etheratoken" + }, + { + "name": "x", + "url": "https://x.com/Etheratoken" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Ethera/" + }, + { + "name": "telegram", + "url": "https://t.me/EtheraETA" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ethera" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ethera/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x90727C1195fB2246fd758172f9253873790d06a4/logo.png b/blockchains/smartchain/assets/0x90727C1195fB2246fd758172f9253873790d06a4/logo.png new file mode 100644 index 00000000..57101a02 Binary files /dev/null and b/blockchains/smartchain/assets/0x90727C1195fB2246fd758172f9253873790d06a4/logo.png differ diff --git a/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/info.json b/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/info.json new file mode 100644 index 00000000..f2f35fc9 --- /dev/null +++ b/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/info.json @@ -0,0 +1,36 @@ +{ + "name": "FqSwap", + "type": "BEP20", + "symbol": "FQS", + "decimals": 9, + "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": "abandoned", + "id": "0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0", + "links": [ + { + "name": "x", + "url": "https://x.com/fqswap" + }, + { + "name": "github", + "url": "https://github.com/fqswap" + }, + { + "name": "telegram", + "url": "https://t.me/FQS_SWAP" + }, + { + "name": "whitepaper", + "url": "https://fqswap.org/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fqswap/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json b/blockchains/smartchain/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json new file mode 100644 index 00000000..7c95fd6d --- /dev/null +++ b/blockchains/smartchain/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json @@ -0,0 +1,40 @@ +{ + "name": "OwlDAO Token", + "type": "BEP20", + "symbol": "OWL", + "decimals": 18, + "website": "https://owldao.io/", + "description": "OwlDAO is the Top 1 iGaming Solution Provider for Web 3.0. Owl.games is OwlDAO's signature casino. Supporting ETH, BSC, Matic, FTM, Solana, Near, Aptos, etc. Play with Metamask, WalletConnect directly!", + "explorer": "https://bscscan.com/token/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19", + "status": "active", + "id": "0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19", + "links": [ + { + "name": "x", + "url": "https://x.com/OWLDAOio" + }, + { + "name": "github", + "url": "https://github.com/theowlgame" + }, + { + "name": "telegram", + "url": "https://t.me/owlDAO" + }, + { + "name": "telegram_news", + "url": "https://t.me/owlDAONews" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/owldao" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/owldao/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/logo.png b/blockchains/smartchain/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/logo.png new file mode 100644 index 00000000..08ebbc0b Binary files /dev/null and b/blockchains/smartchain/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/logo.png differ diff --git a/blockchains/smartchain/assets/0x90869b3a42E399951bd5F5fF278B8CC5ee1Dc0fE/info.json b/blockchains/smartchain/assets/0x90869b3a42E399951bd5F5fF278B8CC5ee1Dc0fE/info.json new file mode 100644 index 00000000..41e1daac --- /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 00000000..9779f3e4 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 new file mode 100644 index 00000000..1ff4b8ba --- /dev/null +++ b/blockchains/smartchain/assets/0x9095e8d707E40982aFFce41C61c10895157A1B22/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream DAI", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0x9095e8d707E40982aFFce41C61c10895157A1B22", + "type": "BEP20", + "symbol": "crDAI", + "decimals": 8, + "status": "active", + "id": "0x9095e8d707E40982aFFce41C61c10895157A1B22", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9095e8d707E40982aFFce41C61c10895157A1B22/logo.png b/blockchains/smartchain/assets/0x9095e8d707E40982aFFce41C61c10895157A1B22/logo.png new file mode 100644 index 00000000..f0df049b Binary files /dev/null and b/blockchains/smartchain/assets/0x9095e8d707E40982aFFce41C61c10895157A1B22/logo.png differ diff --git a/blockchains/smartchain/assets/0x9096B4309224d751FCB43d7eB178dcFFc122aD15/info.json b/blockchains/smartchain/assets/0x9096B4309224d751FCB43d7eB178dcFFc122aD15/info.json new file mode 100644 index 00000000..a0c45bf1 --- /dev/null +++ b/blockchains/smartchain/assets/0x9096B4309224d751FCB43d7eB178dcFFc122aD15/info.json @@ -0,0 +1,50 @@ +{ + "name": "Legion Network", + "type": "BEP20", + "symbol": "LGX", + "decimals": 18, + "website": "https://legionnetwork.io", + "description": "The best of blockchain in one super app.", + "explorer": "https://bscscan.com/token/0x9096b4309224d751fcb43d7eb178dcffc122ad15", + "status": "active", + "id": "0x9096B4309224d751FCB43d7eB178dcFFc122aD15", + "links": [ + { + "name": "x", + "url": "https://x.com/LegionNetwork__" + }, + { + "name": "github", + "url": "https://github.com/lgxnetwork/lgxnetwork" + }, + { + "name": "telegram", + "url": "https://t.me/legionnetworkcommunity" + }, + { + "name": "telegram_news", + "url": "https://t.me/legionnetworkofficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/legionnetwork" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCynFmM09CqE5rmzlzOB1UNQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/legion-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/legion-network" + } + ], + "tags": [ + "nft", + "defi", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9096B4309224d751FCB43d7eB178dcFFc122aD15/logo.png b/blockchains/smartchain/assets/0x9096B4309224d751FCB43d7eB178dcFFc122aD15/logo.png new file mode 100644 index 00000000..44ccdd57 Binary files /dev/null and b/blockchains/smartchain/assets/0x9096B4309224d751FCB43d7eB178dcFFc122aD15/logo.png differ diff --git a/blockchains/smartchain/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json b/blockchains/smartchain/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/info.json new file mode 100644 index 00000000..a0d962fe --- /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 00000000..c4ee269a Binary files /dev/null and b/blockchains/smartchain/assets/0x90A2a4c76b5D8c0bc892A69EA28Aa775a8f2dD48/logo.png differ diff --git a/blockchains/smartchain/assets/0x90DF11a8ccE420675e73922419e3f4f3Fe13CCCb/info.json b/blockchains/smartchain/assets/0x90DF11a8ccE420675e73922419e3f4f3Fe13CCCb/info.json new file mode 100644 index 00000000..2958ac6c --- /dev/null +++ b/blockchains/smartchain/assets/0x90DF11a8ccE420675e73922419e3f4f3Fe13CCCb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Streamity", + "type": "BEP20", + "symbol": "STM", + "decimals": 18, + "website": "https://streamity.org", + "description": "-", + "explorer": "https://bscscan.com/token/0x90DF11a8ccE420675e73922419e3f4f3Fe13CCCb", + "status": "active", + "id": "0x90DF11a8ccE420675e73922419e3f4f3Fe13CCCb" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x90DF11a8ccE420675e73922419e3f4f3Fe13CCCb/logo.png b/blockchains/smartchain/assets/0x90DF11a8ccE420675e73922419e3f4f3Fe13CCCb/logo.png new file mode 100644 index 00000000..f9b6409f Binary files /dev/null and b/blockchains/smartchain/assets/0x90DF11a8ccE420675e73922419e3f4f3Fe13CCCb/logo.png differ diff --git a/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/info.json b/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/info.json new file mode 100644 index 00000000..b6d3f5b7 --- /dev/null +++ b/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/info.json @@ -0,0 +1,56 @@ +{ + "name": "SingularityDAO", + "type": "BEP20", + "symbol": "SDAO", + "decimals": 18, + "website": "https://www.singularitydao.ai", + "description": "SingularityDAO is a decentralised Portfolio Management Protocol designed to enable anybody to safely and easily manage crypto assets, supported by superior risk management and analytics tools; smart money, on-chain. A non-custodial protocol built to foster a new ecosystem of Digital Asset Managers to offer automated trading strategies leveraging AI-enhanced data analytics services.", + "explorer": "https://bscscan.com/token/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240", + "status": "active", + "id": "0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240", + "links": [ + { + "name": "x", + "url": "https://x.com/SingularityDao" + }, + { + "name": "telegram", + "url": "https://t.me/chatsight_bot?start=dmVyaWZ5OjotMTAwMTI4NzAxNjEzNw==" + }, + { + "name": "telegram_news", + "url": "https://t.me/sdaoann" + }, + { + "name": "discord", + "url": "https://discord.com/invite/singularitydao" + }, + { + "name": "github", + "url": "https://github.com/Singularity-DAO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/singularitydao" + }, + { + "name": "youtube", + "url": "https://youtube.com/@SingularityDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/singularitydao/" + }, + { + "name": "medium", + "url": "https://medium.com/singularitydao" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SingularityDAO/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/logo.png b/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/logo.png new file mode 100644 index 00000000..fa9315e1 Binary files /dev/null and b/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/logo.png differ diff --git a/blockchains/smartchain/assets/0x90bbdDbF3223363898065b9C736e2B86C655762b/info.json b/blockchains/smartchain/assets/0x90bbdDbF3223363898065b9C736e2B86C655762b/info.json new file mode 100644 index 00000000..85cf10f3 --- /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 00000000..e11bf2e8 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 00000000..441fdd5a --- /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 00000000..bdf4e7cc 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 new file mode 100644 index 00000000..0e4267a4 --- /dev/null +++ b/blockchains/smartchain/assets/0x9105F25A9D6B3d289cC7315b0b4e0b91F3806fB1/info.json @@ -0,0 +1,21 @@ +{ + "name": "ShibamasK", + "type": "BEP20", + "symbol": "SHBMA", + "decimals": 4, + "website": "https://shibamask.org", + "description": "Deflationary meme coin with products like NFT Market+ Mobile wallet", + "explorer": "https://bscscan.com/token/0x9105F25A9D6B3d289cC7315b0b4e0b91F3806fB1", + "status": "active", + "id": "0x9105F25A9D6B3d289cC7315b0b4e0b91F3806fB1", + "links": [ + { + "name": "x", + "url": "https://x.com/shibamaskcoin" + }, + { + "name": "github", + "url": "https://github.com/shibamask" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9105F25A9D6B3d289cC7315b0b4e0b91F3806fB1/logo.png b/blockchains/smartchain/assets/0x9105F25A9D6B3d289cC7315b0b4e0b91F3806fB1/logo.png new file mode 100644 index 00000000..76e189af Binary files /dev/null and b/blockchains/smartchain/assets/0x9105F25A9D6B3d289cC7315b0b4e0b91F3806fB1/logo.png differ diff --git a/blockchains/smartchain/assets/0x9130990dD16eD8BE8BE63E46CAd305C2C339Dac9/info.json b/blockchains/smartchain/assets/0x9130990dD16eD8BE8BE63E46CAd305C2C339Dac9/info.json new file mode 100644 index 00000000..513bcf53 --- /dev/null +++ b/blockchains/smartchain/assets/0x9130990dD16eD8BE8BE63E46CAd305C2C339Dac9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Medabots", + "website": "https://medabots.io", + "description": "Medacoin (by Medabots) is a new cryptocurrency that gives users the ability to manage their virtual in-game goods.", + "explorer": "https://bscscan.com/token/0x9130990dd16ed8be8be63e46cad305c2c339dac9", + "type": "BEP20", + "symbol": "MEDA", + "decimals": 9, + "status": "active", + "id": "0x9130990dD16eD8BE8BE63E46CAd305C2C339Dac9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9130990dD16eD8BE8BE63E46CAd305C2C339Dac9/logo.png b/blockchains/smartchain/assets/0x9130990dD16eD8BE8BE63E46CAd305C2C339Dac9/logo.png new file mode 100644 index 00000000..5c46998f Binary files /dev/null and b/blockchains/smartchain/assets/0x9130990dD16eD8BE8BE63E46CAd305C2C339Dac9/logo.png differ diff --git a/blockchains/smartchain/assets/0x9133049Fb1FdDC110c92BF5b7Df635abB70C89DC/info.json b/blockchains/smartchain/assets/0x9133049Fb1FdDC110c92BF5b7Df635abB70C89DC/info.json new file mode 100644 index 00000000..acf1b5f6 --- /dev/null +++ b/blockchains/smartchain/assets/0x9133049Fb1FdDC110c92BF5b7Df635abB70C89DC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pink token", + "website": "https://dot.finance", + "description": "Dot.Finance is a new DeFi platform designed to incentivize the growth of the Polkadot ecosystem.", + "explorer": "https://bscscan.com/token/0x9133049Fb1FdDC110c92BF5b7Df635abB70C89DC", + "type": "BEP20", + "symbol": "PINK", + "decimals": 18, + "status": "active", + "id": "0x9133049Fb1FdDC110c92BF5b7Df635abB70C89DC" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9133049Fb1FdDC110c92BF5b7Df635abB70C89DC/logo.png b/blockchains/smartchain/assets/0x9133049Fb1FdDC110c92BF5b7Df635abB70C89DC/logo.png new file mode 100644 index 00000000..a035260c Binary files /dev/null and b/blockchains/smartchain/assets/0x9133049Fb1FdDC110c92BF5b7Df635abB70C89DC/logo.png differ diff --git a/blockchains/smartchain/assets/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1/info.json b/blockchains/smartchain/assets/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1/info.json new file mode 100644 index 00000000..f91e71fa --- /dev/null +++ b/blockchains/smartchain/assets/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1/info.json @@ -0,0 +1,28 @@ +{ + "name": "Rijent Coin", + "type": "BEP20", + "symbol": "RTC", + "decimals": 9, + "website": "https://rijentcoin.com/", + "description": "Rijent Coin is a revolutionary utility token and crypto education platform designed to connect worldwide cryptocurrency users.", + "explorer": "https://bscscan.com/token/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1", + "status": "active", + "id": "0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1", + "links": [ + { + "name": "x", + "url": "https://x.com/RijentC" + }, + { + "name": "facebook", + "url": "https://facebook.com/rijentcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rijent-coin/" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1/logo.png b/blockchains/smartchain/assets/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1/logo.png new file mode 100644 index 00000000..af630eec Binary files /dev/null and b/blockchains/smartchain/assets/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1/logo.png differ diff --git a/blockchains/smartchain/assets/0x917841c010b3d86ED886F36F2C9807E07a2e3093/info.json b/blockchains/smartchain/assets/0x917841c010b3d86ED886F36F2C9807E07a2e3093/info.json new file mode 100644 index 00000000..45ce68d5 --- /dev/null +++ b/blockchains/smartchain/assets/0x917841c010b3d86ED886F36F2C9807E07a2e3093/info.json @@ -0,0 +1,36 @@ +{ + "name": "RisingSun Token", + "website": "https://risingsun.finance/", + "description": "RisingSun powers the greatest play to earn NFT card game ecosystem on the Binance Smart Chain. Over 4 billion collectable samurai battle cards make for one of the most unique gaming experiences on blockchain. The novel NFT card game is coming soon — SamuraiRising.", + "explorer": "https://bscscan.com/token/0x917841c010b3d86ED886F36F2C9807E07a2e3093", + "type": "BEP20", + "symbol": "RSUN", + "decimals": 9, + "status": "active", + "id": "0x917841c010b3d86ED886F36F2C9807E07a2e3093", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/RisingSun-Token" + }, + { + "name": "x", + "url": "https://x.com/risingsuntoken" + }, + { + "name": "telegram", + "url": "https://t.me/risingsun_token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/risingsun/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/risingsun" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x917841c010b3d86ED886F36F2C9807E07a2e3093/logo.png b/blockchains/smartchain/assets/0x917841c010b3d86ED886F36F2C9807E07a2e3093/logo.png new file mode 100644 index 00000000..3f89c813 Binary files /dev/null and b/blockchains/smartchain/assets/0x917841c010b3d86ED886F36F2C9807E07a2e3093/logo.png differ diff --git a/blockchains/smartchain/assets/0x918008C3d29496C37b478b611967BeaCA365aF36/info.json b/blockchains/smartchain/assets/0x918008C3d29496C37b478b611967BeaCA365aF36/info.json new file mode 100644 index 00000000..d79f4bf5 --- /dev/null +++ b/blockchains/smartchain/assets/0x918008C3d29496C37b478b611967BeaCA365aF36/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core MSCI EAFE ETF (Ondo Tokenized)", + "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 00000000..8adf5788 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 new file mode 100644 index 00000000..71ce97ef --- /dev/null +++ b/blockchains/smartchain/assets/0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A/info.json @@ -0,0 +1,32 @@ +{ + "name": "AntNetworX", + "type": "BEP20", + "symbol": "ANTX", + "decimals": 18, + "website": "https://www.antx.network/", + "description": "AntNetworX aims to help blockchain, Web3 and DeFi achieve mass adoption by providing seamless and accessible dApps for the next generation. We cover a vast range of solutions such as seamless Web3 UI, keyless smart wallet, Decentralised communication and blockchain gigs. AntNetworX has a first of its kind profit sharing model, with revenue and utility burns.", + "explorer": "https://bscscan.com/token/0x9186359f82c3c0cc005a0b3563dc4ccd2627d82a", + "status": "active", + "id": "0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A", + "links": [ + { + "name": "x", + "url": "https://x.com/AntNetworX" + }, + { + "name": "telegram", + "url": "https://t.me/AntXAnnouncements" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/antnetworx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A/logo.png b/blockchains/smartchain/assets/0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A/logo.png new file mode 100644 index 00000000..5e2379d4 Binary files /dev/null and b/blockchains/smartchain/assets/0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A/logo.png differ diff --git a/blockchains/smartchain/assets/0x91C62325F901EE29Da8E521CfE68980332A4Ca06/info.json b/blockchains/smartchain/assets/0x91C62325F901EE29Da8E521CfE68980332A4Ca06/info.json new file mode 100644 index 00000000..ff12e6dd --- /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 00000000..275ec766 Binary files /dev/null and b/blockchains/smartchain/assets/0x91C62325F901EE29Da8E521CfE68980332A4Ca06/logo.png differ diff --git a/blockchains/smartchain/assets/0x91Ca579B0D47E5cfD5D0862c21D5659d39C8eCf0/info.json b/blockchains/smartchain/assets/0x91Ca579B0D47E5cfD5D0862c21D5659d39C8eCf0/info.json new file mode 100644 index 00000000..496ab547 --- /dev/null +++ b/blockchains/smartchain/assets/0x91Ca579B0D47E5cfD5D0862c21D5659d39C8eCf0/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Solana)", + "type": "BEP20", + "symbol": "USDCso", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://bscscan.com/token/0x91Ca579B0D47E5cfD5D0862c21D5659d39C8eCf0", + "status": "active", + "id": "0x91Ca579B0D47E5cfD5D0862c21D5659d39C8eCf0", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x91Ca579B0D47E5cfD5D0862c21D5659d39C8eCf0/logo.png b/blockchains/smartchain/assets/0x91Ca579B0D47E5cfD5D0862c21D5659d39C8eCf0/logo.png new file mode 100644 index 00000000..c9ca8307 Binary files /dev/null and b/blockchains/smartchain/assets/0x91Ca579B0D47E5cfD5D0862c21D5659d39C8eCf0/logo.png differ diff --git a/blockchains/smartchain/assets/0x91Ea54a8A5426c0A0bEA55968Dd71abcE7b92751/info.json b/blockchains/smartchain/assets/0x91Ea54a8A5426c0A0bEA55968Dd71abcE7b92751/info.json new file mode 100644 index 00000000..c0b7ecf8 --- /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 00000000..b6532cf8 Binary files /dev/null and b/blockchains/smartchain/assets/0x91Ea54a8A5426c0A0bEA55968Dd71abcE7b92751/logo.png differ diff --git a/blockchains/smartchain/assets/0x91F8dA7A1F4B2C788317bA46C2D210f09AFB606B/info.json b/blockchains/smartchain/assets/0x91F8dA7A1F4B2C788317bA46C2D210f09AFB606B/info.json new file mode 100644 index 00000000..2038df2d --- /dev/null +++ b/blockchains/smartchain/assets/0x91F8dA7A1F4B2C788317bA46C2D210f09AFB606B/info.json @@ -0,0 +1,11 @@ +{ + "name": "A-May Daw Aung San Suu Kyi", + "type": "BEP20", + "symbol": "SUU", + "decimals": 18, + "description": "The Crypto Token that honours our National Hero A-May Daw Aung San Suu Kyi.", + "website": "https://www.suutoken.com", + "explorer": "https://bscscan.com/token/0x91F8dA7A1F4B2C788317bA46C2D210f09AFB606B", + "status": "active", + "id": "0x91F8dA7A1F4B2C788317bA46C2D210f09AFB606B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x91F8dA7A1F4B2C788317bA46C2D210f09AFB606B/logo.png b/blockchains/smartchain/assets/0x91F8dA7A1F4B2C788317bA46C2D210f09AFB606B/logo.png new file mode 100644 index 00000000..23404f27 Binary files /dev/null and b/blockchains/smartchain/assets/0x91F8dA7A1F4B2C788317bA46C2D210f09AFB606B/logo.png differ diff --git a/blockchains/smartchain/assets/0x91dba2CD05c8A0227B48c3e426077145d23B21df/info.json b/blockchains/smartchain/assets/0x91dba2CD05c8A0227B48c3e426077145d23B21df/info.json new file mode 100644 index 00000000..e1258017 --- /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 00000000..e37ebebd 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 00000000..cdde0687 --- /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 00000000..b0ed7260 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 new file mode 100644 index 00000000..a3b167bc --- /dev/null +++ b/blockchains/smartchain/assets/0x921d3a6ed8223AFb6358410F717e2FB13cbae700/info.json @@ -0,0 +1,28 @@ +{ + "name": "QRKITA TOKEN", + "website": "https://www.qrkita.exchange", + "description": "We Are First Online Qris Platform In Indonesia. Qrkita Provides The Latest Technology For Online And Offline Merchant To Boost Their Sales.", + "explorer": "https://bscscan.com/token/0x921d3a6ed8223AFb6358410F717e2FB13cbae700", + "type": "BEP20", + "symbol": "QRT", + "decimals": 9, + "status": "active", + "id": "0x921d3a6ed8223AFb6358410F717e2FB13cbae700", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/qrkita/qrkitatoken.sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qrkita-token/" + }, + { + "name": "x", + "url": "https://x.com/qrkitaexchanger?s=09" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x921d3a6ed8223AFb6358410F717e2FB13cbae700/logo.png b/blockchains/smartchain/assets/0x921d3a6ed8223AFb6358410F717e2FB13cbae700/logo.png new file mode 100644 index 00000000..b24f4c03 Binary files /dev/null and b/blockchains/smartchain/assets/0x921d3a6ed8223AFb6358410F717e2FB13cbae700/logo.png differ diff --git a/blockchains/smartchain/assets/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624/info.json b/blockchains/smartchain/assets/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624/info.json new file mode 100644 index 00000000..57521009 --- /dev/null +++ b/blockchains/smartchain/assets/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624/info.json @@ -0,0 +1,36 @@ +{ + "name": "IL CAPO", + "type": "BEP20", + "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 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": "x", + "url": "https://x.com/ilcapocoin" + }, + { + "name": "telegram", + "url": "https://t.me/capocoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/il-capo-of-crypto/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624/logo.png b/blockchains/smartchain/assets/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624/logo.png new file mode 100644 index 00000000..c23da603 Binary files /dev/null and b/blockchains/smartchain/assets/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624/logo.png differ diff --git a/blockchains/smartchain/assets/0x922B24b851c89fa2E219C269cc0a3fdB2fAf6d13/info.json b/blockchains/smartchain/assets/0x922B24b851c89fa2E219C269cc0a3fdB2fAf6d13/info.json new file mode 100644 index 00000000..90c0d71b --- /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 00000000..1012e8e4 Binary files /dev/null and b/blockchains/smartchain/assets/0x922B24b851c89fa2E219C269cc0a3fdB2fAf6d13/logo.png differ diff --git a/blockchains/smartchain/assets/0x922c77c7724d7B77fD7791BE5CC5314B70c3a781/info.json b/blockchains/smartchain/assets/0x922c77c7724d7B77fD7791BE5CC5314B70c3a781/info.json new file mode 100644 index 00000000..28b63d2c --- /dev/null +++ b/blockchains/smartchain/assets/0x922c77c7724d7B77fD7791BE5CC5314B70c3a781/info.json @@ -0,0 +1,11 @@ +{ + "name": "Super Shiba", + "website": "https://supershiba.xyz", + "description": "Super Shiba is the NEXT BIG meme project, it combines the staying power of memes with the revolutionary nature of NFTs to completely change the way we view memes and their ownership.", + "explorer": "https://bscscan.com/token/0x922c77c7724d7b77fd7791be5cc5314b70c3a781", + "type": "BEP20", + "symbol": "SSHIBA", + "decimals": 18, + "status": "active", + "id": "0x922c77c7724d7B77fD7791BE5CC5314B70c3a781" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x922c77c7724d7B77fD7791BE5CC5314B70c3a781/logo.png b/blockchains/smartchain/assets/0x922c77c7724d7B77fD7791BE5CC5314B70c3a781/logo.png new file mode 100644 index 00000000..02db3cb4 Binary files /dev/null and b/blockchains/smartchain/assets/0x922c77c7724d7B77fD7791BE5CC5314B70c3a781/logo.png differ diff --git a/blockchains/smartchain/assets/0x927fF4AD97991C1eeC44AB02c6970088ffa85250/info.json b/blockchains/smartchain/assets/0x927fF4AD97991C1eeC44AB02c6970088ffa85250/info.json new file mode 100644 index 00000000..f1d19986 --- /dev/null +++ b/blockchains/smartchain/assets/0x927fF4AD97991C1eeC44AB02c6970088ffa85250/info.json @@ -0,0 +1,25 @@ +{ + "name": "Xtremcoin", + "type": "BEP20", + "symbol": "XTR", + "decimals": 8, + "website": "https://www.xtremcoin.com", + "description": "Xtremcoin is a convenient online payment tool that combines functions of several cryptocurrency wallets and bank cards virtual and plastic ones.", + "explorer": "https://bscscan.com/token/0x927fF4AD97991C1eeC44AB02c6970088ffa85250", + "status": "abandoned", + "id": "0x927fF4AD97991C1eeC44AB02c6970088ffa85250", + "links": [ + { + "name": "x", + "url": "https://x.com/xtremcoin" + }, + { + "name": "github", + "url": "https://github.com/xtremcoin" + }, + { + "name": "telegram", + "url": "https://t.me/xtremcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x928e55daB735aa8260AF3cEDadA18B5f70C72f1b/info.json b/blockchains/smartchain/assets/0x928e55daB735aa8260AF3cEDadA18B5f70C72f1b/info.json new file mode 100644 index 00000000..6b9a4eb4 --- /dev/null +++ b/blockchains/smartchain/assets/0x928e55daB735aa8260AF3cEDadA18B5f70C72f1b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Frontier Token", + "website": "https://frontier.xyz/", + "description": "Frontier is a chain-agnostic DeFi aggregation layer. With our applications, users can participate in protocol tracking and management, staking, best-rate asset swapping, liquidity provision, CDP creation & monitoring, and more.", + "explorer": "https://bscscan.com/token/0x928e55daB735aa8260AF3cEDadA18B5f70C72f1b", + "type": "BEP20", + "symbol": "FRONT", + "decimals": 18, + "status": "active", + "id": "0x928e55daB735aa8260AF3cEDadA18B5f70C72f1b" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x928e55daB735aa8260AF3cEDadA18B5f70C72f1b/logo.png b/blockchains/smartchain/assets/0x928e55daB735aa8260AF3cEDadA18B5f70C72f1b/logo.png new file mode 100644 index 00000000..ef5b508b Binary files /dev/null and b/blockchains/smartchain/assets/0x928e55daB735aa8260AF3cEDadA18B5f70C72f1b/logo.png differ diff --git a/blockchains/smartchain/assets/0x929b77Bc478101c8Fd0a13Caa58381FE4242BDdE/info.json b/blockchains/smartchain/assets/0x929b77Bc478101c8Fd0a13Caa58381FE4242BDdE/info.json new file mode 100644 index 00000000..214dd45d --- /dev/null +++ b/blockchains/smartchain/assets/0x929b77Bc478101c8Fd0a13Caa58381FE4242BDdE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Spacelon", + "website": "https://spacelon.xyz", + "description": "Spacelon is Memes Token", + "explorer": "https://bscscan.com/token/0x929b77Bc478101c8Fd0a13Caa58381FE4242BDdE", + "symbol": "sELON", + "type": "BEP20", + "decimals": 0, + "status": "active", + "id": "0x929b77Bc478101c8Fd0a13Caa58381FE4242BDdE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x929b77Bc478101c8Fd0a13Caa58381FE4242BDdE/logo.png b/blockchains/smartchain/assets/0x929b77Bc478101c8Fd0a13Caa58381FE4242BDdE/logo.png new file mode 100644 index 00000000..874b0d28 Binary files /dev/null and b/blockchains/smartchain/assets/0x929b77Bc478101c8Fd0a13Caa58381FE4242BDdE/logo.png differ diff --git a/blockchains/smartchain/assets/0x92a42Db88Ed0F02c71D439e55962Ca7CAB0168b5/info.json b/blockchains/smartchain/assets/0x92a42Db88Ed0F02c71D439e55962Ca7CAB0168b5/info.json new file mode 100644 index 00000000..01ddf698 --- /dev/null +++ b/blockchains/smartchain/assets/0x92a42Db88Ed0F02c71D439e55962Ca7CAB0168b5/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tardigrades.Finance", + "type": "BEP20", + "symbol": "TRDG", + "decimals": 9, + "website": "https://tardigrades.finance/", + "description": "Tardigrades Finance offers frictionless rewards 5% Tax with 2.5% Burn / and 2.5% back to Holders for each transaction.", + "explorer": "https://bscscan.com/token/0x92a42Db88Ed0F02c71D439e55962Ca7CAB0168b5", + "status": "active", + "id": "0x92a42Db88Ed0F02c71D439e55962Ca7CAB0168b5", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x92a42Db88Ed0F02c71D439e55962Ca7CAB0168b5/logo.png b/blockchains/smartchain/assets/0x92a42Db88Ed0F02c71D439e55962Ca7CAB0168b5/logo.png new file mode 100644 index 00000000..1379c198 Binary files /dev/null and b/blockchains/smartchain/assets/0x92a42Db88Ed0F02c71D439e55962Ca7CAB0168b5/logo.png differ diff --git a/blockchains/smartchain/assets/0x92d504158A8Dc69de989dB5EDe3230D958fb8630/info.json b/blockchains/smartchain/assets/0x92d504158A8Dc69de989dB5EDe3230D958fb8630/info.json new file mode 100644 index 00000000..2296d168 --- /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 00000000..6cedbcd6 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 new file mode 100644 index 00000000..3c5825d4 --- /dev/null +++ b/blockchains/smartchain/assets/0x92dA433dA84d58DFe2aade1943349e491Cbd6820/info.json @@ -0,0 +1,44 @@ +{ + "name": "Rise of Defenders Token", + "type": "BEP20", + "symbol": "RDR", + "decimals": 18, + "website": "https://risedefenders.io/", + "description": "Rise of Defenders is a very interesting Metaverse NFT game, you can use your creativity and tactical thinking to become an excellent player and receive extremely attractive rewards.", + "explorer": "https://bscscan.com/token/0x92da433da84d58dfe2aade1943349e491cbd6820", + "status": "active", + "id": "0x92dA433dA84d58DFe2aade1943349e491Cbd6820", + "links": [ + { + "name": "x", + "url": "https://x.com/DefendersRise" + }, + { + "name": "github", + "url": "https://github.com/ROD-NFT/RiseOfDefendersContract" + }, + { + "name": "telegram", + "url": "https://t.me/RiseDefendersChat" + }, + { + "name": "telegram_news", + "url": "https://t.me/RiseDefendersAnn" + }, + { + "name": "docs", + "url": "https://docs.risedefenders.io/wellcome/rise-of-defenders" + }, + { + "name": "medium", + "url": "https://medium.com/@risedefenders" + }, + { + "name": "discord", + "url": "https://discord.com/invite/x7cAKWnWh4" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x92dA433dA84d58DFe2aade1943349e491Cbd6820/logo.png b/blockchains/smartchain/assets/0x92dA433dA84d58DFe2aade1943349e491Cbd6820/logo.png new file mode 100644 index 00000000..c633c330 Binary files /dev/null and b/blockchains/smartchain/assets/0x92dA433dA84d58DFe2aade1943349e491Cbd6820/logo.png differ diff --git a/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/info.json b/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/info.json new file mode 100644 index 00000000..047f8460 --- /dev/null +++ b/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/info.json @@ -0,0 +1,32 @@ +{ + "name": "Oggy Inu", + "type": "BEP20", + "symbol": "OGGY", + "decimals": 9, + "website": "https://oggyinu.com/", + "description": "OGGY INU is a BSC Meme Token. $OGGY is a community-driven token that can't be controlled by anyone.together with NFT OGGY, MarketPlace OGGY will be launched in the future.", + "explorer": "https://bscscan.com/token/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c", + "status": "active", + "id": "0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c", + "links": [ + { + "name": "x", + "url": "https://x.com/Oggy_Inu" + }, + { + "name": "telegram", + "url": "https://t.me/oggy_inu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oggy-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/oggy-inu" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/logo.png b/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/logo.png new file mode 100644 index 00000000..91bbd52b Binary files /dev/null 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 new file mode 100644 index 00000000..a54e1603 --- /dev/null +++ b/blockchains/smartchain/assets/0x930CEc48eddC7f80AFaD2b08997D0A43912B80d4/info.json @@ -0,0 +1,21 @@ +{ + "name": "The Spartans", + "type": "BEP20", + "symbol": "TSP", + "decimals": 18, + "website": "https://thespartans.io", + "description": "The Spartans - The first defense game based on BSC", + "explorer": "https://bscscan.com/token/0x930CEc48eddC7f80AFaD2b08997D0A43912B80d4", + "status": "active", + "id": "0x930CEc48eddC7f80AFaD2b08997D0A43912B80d4", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-spartans/" + }, + { + "name": "x", + "url": "https://x.com/TheSpartansBSC" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x930CEc48eddC7f80AFaD2b08997D0A43912B80d4/logo.png b/blockchains/smartchain/assets/0x930CEc48eddC7f80AFaD2b08997D0A43912B80d4/logo.png new file mode 100644 index 00000000..27a82f38 Binary files /dev/null and b/blockchains/smartchain/assets/0x930CEc48eddC7f80AFaD2b08997D0A43912B80d4/logo.png differ diff --git a/blockchains/smartchain/assets/0x9337a8f11f777cDAa310B5682b09b44Ed8bdcbAD/info.json b/blockchains/smartchain/assets/0x9337a8f11f777cDAa310B5682b09b44Ed8bdcbAD/info.json new file mode 100644 index 00000000..98f61b7d --- /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 00000000..b6532cf8 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 new file mode 100644 index 00000000..7ed4870b --- /dev/null +++ b/blockchains/smartchain/assets/0x934C9198582Bf2631128c5D4b051aacEF9a6224F/info.json @@ -0,0 +1,29 @@ +{ + "name": "Wanaka Wai Token", + "type": "BEP20", + "symbol": "WAI", + "decimals": 18, + "website": "https://wanakafarm.com", + "description": "Wanaka Farm aims to offer anNFT game where people can own their virtual lands, NFT items to plant, grow, harvest to relax and earn their crypto.", + "explorer": "https://bscscan.com/token/0x934C9198582Bf2631128c5D4b051aacEF9a6224F", + "status": "active", + "id": "0x934C9198582Bf2631128c5D4b051aacEF9a6224F", + "links": [ + { + "name": "whitepaper", + "url": "https://wanakafarm.com/papers/" + }, + { + "name": "telegram", + "url": "https://t.me/WanakaOfficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/wanakafarmofficial" + }, + { + "name": "x", + "url": "https://x.com/Wanaka_Farm" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x934C9198582Bf2631128c5D4b051aacEF9a6224F/logo.png b/blockchains/smartchain/assets/0x934C9198582Bf2631128c5D4b051aacEF9a6224F/logo.png new file mode 100644 index 00000000..c601264f Binary files /dev/null and b/blockchains/smartchain/assets/0x934C9198582Bf2631128c5D4b051aacEF9a6224F/logo.png differ diff --git a/blockchains/smartchain/assets/0x9351AbD19f42101dD36025E495B98E910b255d78/info.json b/blockchains/smartchain/assets/0x9351AbD19f42101dD36025E495B98E910b255d78/info.json new file mode 100644 index 00000000..d3dde983 --- /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 00000000..3df16e18 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 00000000..99efcd59 --- /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 00000000..8c9728c4 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 new file mode 100644 index 00000000..60915308 --- /dev/null +++ b/blockchains/smartchain/assets/0x936B6659Ad0C1b244Ba8Efe639092acae30dc8d6/info.json @@ -0,0 +1,36 @@ +{ + "name": "Corite", + "type": "BEP20", + "symbol": "CO", + "decimals": 6, + "website": "https://corite.com", + "description": "Corite is a blockchain-based music platform jointly powered by fans and artists to finance and promote music in a unique Engage-to-Earn (E2E) model.", + "explorer": "https://bscscan.com/token/0x936B6659Ad0C1b244Ba8Efe639092acae30dc8d6", + "status": "active", + "id": "0x936B6659Ad0C1b244Ba8Efe639092acae30dc8d6", + "links": [ + { + "name": "x", + "url": "https://x.com/coritecom" + }, + { + "name": "telegram", + "url": "https://t.me/corite" + }, + { + "name": "youtube", + "url": "https://youtube.com/corite" + }, + { + "name": "facebook", + "url": "https://facebook.com/corite" + }, + { + "name": "discord", + "url": "https://discord.com/invite/corite" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x936B6659Ad0C1b244Ba8Efe639092acae30dc8d6/logo.png b/blockchains/smartchain/assets/0x936B6659Ad0C1b244Ba8Efe639092acae30dc8d6/logo.png new file mode 100644 index 00000000..b97ae5f8 Binary files /dev/null and b/blockchains/smartchain/assets/0x936B6659Ad0C1b244Ba8Efe639092acae30dc8d6/logo.png differ diff --git a/blockchains/smartchain/assets/0x93862d63fd9Fd488B1328E9b47717d75e994a84B/info.json b/blockchains/smartchain/assets/0x93862d63fd9Fd488B1328E9b47717d75e994a84B/info.json new file mode 100644 index 00000000..0df6b68b --- /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 00000000..f66572b9 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 00000000..a7373c4b --- /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 00000000..7b17b73d Binary files /dev/null and b/blockchains/smartchain/assets/0x939Dd9E433552e325D78C33a16EF4cD8004D2F9C/logo.png differ diff --git a/blockchains/smartchain/assets/0x93DfC1e09b7164Bafd4860963B6D94CbC4284774/info.json b/blockchains/smartchain/assets/0x93DfC1e09b7164Bafd4860963B6D94CbC4284774/info.json new file mode 100644 index 00000000..55451459 --- /dev/null +++ b/blockchains/smartchain/assets/0x93DfC1e09b7164Bafd4860963B6D94CbC4284774/info.json @@ -0,0 +1,11 @@ +{ + "name": "NoCapCoin", + "type": "BEP20", + "symbol": "NCC", + "decimals": 9, + "website": "https://www.nocapcoin.net/", + "description": "A deflationary, community-oriented coin that provides rewards for holders through redistribution of coins", + "explorer": "https://bscscan.com/token/0x93DfC1e09b7164Bafd4860963B6D94CbC4284774", + "status": "active", + "id": "0x93DfC1e09b7164Bafd4860963B6D94CbC4284774" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x93DfC1e09b7164Bafd4860963B6D94CbC4284774/logo.png b/blockchains/smartchain/assets/0x93DfC1e09b7164Bafd4860963B6D94CbC4284774/logo.png new file mode 100644 index 00000000..8309882d Binary files /dev/null and b/blockchains/smartchain/assets/0x93DfC1e09b7164Bafd4860963B6D94CbC4284774/logo.png differ diff --git a/blockchains/smartchain/assets/0x93e24685E41Ca82fd7a66a69C64f3dECac789281/info.json b/blockchains/smartchain/assets/0x93e24685E41Ca82fd7a66a69C64f3dECac789281/info.json new file mode 100644 index 00000000..64aca538 --- /dev/null +++ b/blockchains/smartchain/assets/0x93e24685E41Ca82fd7a66a69C64f3dECac789281/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cheecoin", + "type": "BEP20", + "symbol": "CHEE", + "decimals": 9, + "description": "CHEECOIN is the 1st Hollywood NFT marketplace that also donates and supports animal healthcare and rescue.", + "website": "https://www.cheecoin.com", + "explorer": "https://bscscan.com/token/0x93e24685e41ca82fd7a66a69c64f3decac789281", + "status": "active", + "id": "0x93e24685E41Ca82fd7a66a69C64f3dECac789281" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x93e24685E41Ca82fd7a66a69C64f3dECac789281/logo.png b/blockchains/smartchain/assets/0x93e24685E41Ca82fd7a66a69C64f3dECac789281/logo.png new file mode 100644 index 00000000..67453974 Binary files /dev/null and b/blockchains/smartchain/assets/0x93e24685E41Ca82fd7a66a69C64f3dECac789281/logo.png differ diff --git a/blockchains/smartchain/assets/0x93f63d9455685621aBd73E63cC04f7e454270A66/info.json b/blockchains/smartchain/assets/0x93f63d9455685621aBd73E63cC04f7e454270A66/info.json new file mode 100644 index 00000000..cd6a1a86 --- /dev/null +++ b/blockchains/smartchain/assets/0x93f63d9455685621aBd73E63cC04f7e454270A66/info.json @@ -0,0 +1,11 @@ +{ + "name": "Weentar", + "website": "https://weentar.com/", + "description": "Weentar is a decentralised social media project. We are creating a platform that allows for celebrities, influencers and creators launch their social tokens as easily as creating a profile and also have their media content posted as NFT's on a decentralised social media platform on the Weentar blockchain.", + "explorer": "https://bscscan.com/token/0x93f63d9455685621aBd73E63cC04f7e454270A66", + "type": "BEP20", + "symbol": "$WNTR", + "decimals": 18, + "status": "active", + "id": "0x93f63d9455685621aBd73E63cC04f7e454270A66" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x93f63d9455685621aBd73E63cC04f7e454270A66/logo.png b/blockchains/smartchain/assets/0x93f63d9455685621aBd73E63cC04f7e454270A66/logo.png new file mode 100644 index 00000000..198f6249 Binary files /dev/null and b/blockchains/smartchain/assets/0x93f63d9455685621aBd73E63cC04f7e454270A66/logo.png differ diff --git a/blockchains/smartchain/assets/0x93fac02b22B6743423381D163aec418178019B7a/info.json b/blockchains/smartchain/assets/0x93fac02b22B6743423381D163aec418178019B7a/info.json new file mode 100644 index 00000000..c9f69ae5 --- /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 00000000..6ce23a13 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 new file mode 100644 index 00000000..57353dc7 --- /dev/null +++ b/blockchains/smartchain/assets/0x940230b6b7ef1979a28F32196A8e3439C645BA49/info.json @@ -0,0 +1,37 @@ +{ + "name": "Shib Army", + "type": "BEP20", + "symbol": "SHIBARMY", + "decimals": 18, + "website": "https://shibarmybsc.com", + "description": "SHIBARMY is a trendy project that pays you a huge chunk of SHIBA INU as dividend for holding. SHIBARMY is here to follow SHIBA INU’s footsteps.", + "explorer": "https://bscscan.com/token/0x940230b6b7ef1979a28F32196A8e3439C645BA49", + "status": "active", + "id": "0x940230b6b7ef1979a28F32196A8e3439C645BA49", + "links": [ + { + "name": "x", + "url": "https://x.com/shibarmybsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shib-army/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shib-army" + }, + { + "name": "telegram", + "url": "https://t.me/ShibarmyToken" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ShibArmyBscToken/" + }, + { + "name": "medium", + "url": "https://shibarmybsc.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x940230b6b7ef1979a28F32196A8e3439C645BA49/logo.png b/blockchains/smartchain/assets/0x940230b6b7ef1979a28F32196A8e3439C645BA49/logo.png new file mode 100644 index 00000000..537cfa6e Binary files /dev/null and b/blockchains/smartchain/assets/0x940230b6b7ef1979a28F32196A8e3439C645BA49/logo.png differ diff --git a/blockchains/smartchain/assets/0x940F442746D9AE699e63c378D52C4494ea02684f/info.json b/blockchains/smartchain/assets/0x940F442746D9AE699e63c378D52C4494ea02684f/info.json new file mode 100644 index 00000000..cd91f056 --- /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 00000000..8c3d69ff 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 00000000..108c6f0d --- /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 00000000..56d2b7fe Binary files /dev/null and b/blockchains/smartchain/assets/0x94174e3D1335db402dD03A092f7aA7ac2cb32be4/logo.png differ diff --git a/blockchains/smartchain/assets/0x94241428E0E36DF628E0C2485bC0e158A5dA3362/info.json b/blockchains/smartchain/assets/0x94241428E0E36DF628E0C2485bC0e158A5dA3362/info.json new file mode 100644 index 00000000..77d3a332 --- /dev/null +++ b/blockchains/smartchain/assets/0x94241428E0E36DF628E0C2485bC0e158A5dA3362/info.json @@ -0,0 +1,11 @@ +{ + "name": "CrazyTime", + "symbol": "CrazyTime", + "type": "BEP20", + "decimals": 9, + "description": "CrazyTime is an automatic LP generating lottery token. The lottery function randomly chooses a holder and sends them 5% of the transaction value in CrazyTime. ", + "website": "https://www.moochii.net/crazytime", + "explorer": "https://bscscan.com/token/0x94241428E0E36DF628E0C2485bC0e158A5dA3362", + "status": "active", + "id": "0x94241428E0E36DF628E0C2485bC0e158A5dA3362" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x94241428E0E36DF628E0C2485bC0e158A5dA3362/logo.png b/blockchains/smartchain/assets/0x94241428E0E36DF628E0C2485bC0e158A5dA3362/logo.png new file mode 100644 index 00000000..ffe5fc3f Binary files /dev/null and b/blockchains/smartchain/assets/0x94241428E0E36DF628E0C2485bC0e158A5dA3362/logo.png differ diff --git a/blockchains/smartchain/assets/0x942Ed7dfA2a564984747420D47C4f49c2b3140F9/info.json b/blockchains/smartchain/assets/0x942Ed7dfA2a564984747420D47C4f49c2b3140F9/info.json new file mode 100644 index 00000000..3fb62642 --- /dev/null +++ b/blockchains/smartchain/assets/0x942Ed7dfA2a564984747420D47C4f49c2b3140F9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dollar Future", + "type": "BEP20", + "symbol": "DLF", + "decimals": 18, + "description": "DLF is a dex protocol that bridges multiple blockchains allowing users to perform automated trading of decentralized tokens.", + "website": "https://www.dollarfuture.com", + "explorer": "https://bscscan.com/token/0x942Ed7dfA2a564984747420D47C4f49c2b3140F9", + "status": "active", + "id": "0x942Ed7dfA2a564984747420D47C4f49c2b3140F9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x942Ed7dfA2a564984747420D47C4f49c2b3140F9/logo.png b/blockchains/smartchain/assets/0x942Ed7dfA2a564984747420D47C4f49c2b3140F9/logo.png new file mode 100644 index 00000000..094f66c5 Binary files /dev/null and b/blockchains/smartchain/assets/0x942Ed7dfA2a564984747420D47C4f49c2b3140F9/logo.png differ diff --git a/blockchains/smartchain/assets/0x947950BcC74888a40Ffa2593C5798F11Fc9124C4/info.json b/blockchains/smartchain/assets/0x947950BcC74888a40Ffa2593C5798F11Fc9124C4/info.json new file mode 100644 index 00000000..18832d19 --- /dev/null +++ b/blockchains/smartchain/assets/0x947950BcC74888a40Ffa2593C5798F11Fc9124C4/info.json @@ -0,0 +1,35 @@ +{ + "name": "Sushi", + "website": "https://sushiswap.fi", + "description": "SushiSwap claims to be an evolution of #Uniswap with $SUSHI tokenomics.", + "explorer": "https://bscscan.com/token/0x947950bcc74888a40ffa2593c5798f11fc9124c4", + "research": "https://research.binance.com/en/projects/sushi", + "type": "BEP20", + "symbol": "SUSHI", + "decimals": 18, + "status": "active", + "id": "0x947950BcC74888a40Ffa2593C5798F11Fc9124C4", + "tags": [ + "defi", + "governance", + "nft" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/sushiswap" + }, + { + "name": "x", + "url": "https://x.com/sushiswap" + }, + { + "name": "blog", + "url": "https://medium.com/sushiswap" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sushiswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x947950BcC74888a40Ffa2593C5798F11Fc9124C4/logo.png b/blockchains/smartchain/assets/0x947950BcC74888a40Ffa2593C5798F11Fc9124C4/logo.png new file mode 100644 index 00000000..37523b87 Binary files /dev/null and b/blockchains/smartchain/assets/0x947950BcC74888a40Ffa2593C5798F11Fc9124C4/logo.png differ diff --git a/blockchains/smartchain/assets/0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8/info.json b/blockchains/smartchain/assets/0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8/info.json new file mode 100644 index 00000000..ce7a1847 --- /dev/null +++ b/blockchains/smartchain/assets/0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8/info.json @@ -0,0 +1,34 @@ +{ + "name": "Helmet.insure Governance Token", + "website": "https://helmet.insure", + "description": "HELMET is the governance token issued by helmet.insure with total supply of 100 million.", + "research": "", + "explorer": "https://bscscan.com/token/0x948d2a81086a075b3130bac19e4c6dee1d2e3fe8", + "type": "BEP20", + "symbol": "Helmet", + "decimals": 18, + "status": "active", + "id": "0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8", + "links": [ + { + "name": "github", + "url": "https://github.com/helmet-insure/helmet-insure.github.io" + }, + { + "name": "x", + "url": "https://x.com/Helmet_insure" + }, + { + "name": "telegram", + "url": "https://t.me/helmet_insure" + }, + { + "name": "discord", + "url": "https://discord.com/invite/QtTJZEVds5" + }, + { + "name": "medium", + "url": "https://helmetinsure.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8/logo.png b/blockchains/smartchain/assets/0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8/logo.png new file mode 100644 index 00000000..970a738b Binary files /dev/null and b/blockchains/smartchain/assets/0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8/logo.png differ diff --git a/blockchains/smartchain/assets/0x948fbdae1268F3721B1318212BFBFC3F785C8888/info.json b/blockchains/smartchain/assets/0x948fbdae1268F3721B1318212BFBFC3F785C8888/info.json new file mode 100644 index 00000000..95ccc19e --- /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/0x9498DC3c229Cf917fB131671bC15fb1d781Ef231/info.json b/blockchains/smartchain/assets/0x9498DC3c229Cf917fB131671bC15fb1d781Ef231/info.json new file mode 100644 index 00000000..92bbe591 --- /dev/null +++ b/blockchains/smartchain/assets/0x9498DC3c229Cf917fB131671bC15fb1d781Ef231/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pitmoons", + "website": "https://pitmoons.com", + "description": "Pitmoons is programmed to reward holders while increasing in both liquidity and value. It does this by applying a 4% tax on every transaction.", + "explorer": "https://bscscan.com/token/0X9498DC3C229CF917FB131671BC15FB1D781EF231", + "type": "BEP20", + "symbol": "PitMOONS", + "decimals": 9, + "status": "active", + "id": "0x9498DC3c229Cf917fB131671bC15fb1d781Ef231" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9498DC3c229Cf917fB131671bC15fb1d781Ef231/logo.png b/blockchains/smartchain/assets/0x9498DC3c229Cf917fB131671bC15fb1d781Ef231/logo.png new file mode 100644 index 00000000..a6752383 Binary files /dev/null and b/blockchains/smartchain/assets/0x9498DC3c229Cf917fB131671bC15fb1d781Ef231/logo.png differ diff --git a/blockchains/smartchain/assets/0x94BaBBE728D9411612Ee41b20241a6FA251b26Ce/info.json b/blockchains/smartchain/assets/0x94BaBBE728D9411612Ee41b20241a6FA251b26Ce/info.json new file mode 100644 index 00000000..8a009026 --- /dev/null +++ b/blockchains/smartchain/assets/0x94BaBBE728D9411612Ee41b20241a6FA251b26Ce/info.json @@ -0,0 +1,30 @@ +{ + "name": "GFORCE", + "website": "https://jetfuel.finance/gforce", + "description": "Gforce is an innovative token in the Jetfuel.Finance Ecosystem that is revolutionizing the passive yield and staking token landscape.", + "research": "https://jetfuel-finance-1.gitbook.io/jetfuel-finance/", + "explorer": "https://bscscan.com/token/0x94BaBBE728D9411612Ee41b20241a6FA251b26Ce", + "type": "BEP20", + "symbol": "GFCE", + "decimals": 9, + "status": "active", + "id": "0x94BaBBE728D9411612Ee41b20241a6FA251b26Ce", + "links": [ + { + "name": "source_code", + "url": "https://jetfuel.finance/contracts" + }, + { + "name": "x", + "url": "https://x.com/Jetfuelfinance" + }, + { + "name": "telegram", + "url": "https://t.me/jetfuelfinance" + }, + { + "name": "medium", + "url": "https://medium.com/@jetfuelfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x94BaBBE728D9411612Ee41b20241a6FA251b26Ce/logo.png b/blockchains/smartchain/assets/0x94BaBBE728D9411612Ee41b20241a6FA251b26Ce/logo.png new file mode 100644 index 00000000..ceb5d984 Binary files /dev/null and b/blockchains/smartchain/assets/0x94BaBBE728D9411612Ee41b20241a6FA251b26Ce/logo.png differ diff --git a/blockchains/smartchain/assets/0x94a1A356d4E67A3803BDfAA85c8CBA5Bc57fd988/info.json b/blockchains/smartchain/assets/0x94a1A356d4E67A3803BDfAA85c8CBA5Bc57fd988/info.json new file mode 100644 index 00000000..a4f57859 --- /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 00000000..478bc58b 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 new file mode 100644 index 00000000..1fd0a12f --- /dev/null +++ b/blockchains/smartchain/assets/0x94b69263FCA20119Ae817b6f783Fc0F13B02ad50/info.json @@ -0,0 +1,24 @@ +{ + "name": "League Of Ancients", + "type": "BEP20", + "symbol": "LOA", + "decimals": 18, + "website": "https://leagueofancients.com/", + "description": "Free-To-Play & Play-To-Earn NFT MOBA GameFi in Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x94b69263FCA20119Ae817b6f783Fc0F13B02ad50", + "status": "active", + "id": "0x94b69263FCA20119Ae817b6f783Fc0F13B02ad50", + "links": [ + { + "name": "x", + "url": "https://x.com/LOAOfficialMOBA" + }, + { + "name": "telegram", + "url": "https://t.me/leagueofancients" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x94b69263FCA20119Ae817b6f783Fc0F13B02ad50/logo.png b/blockchains/smartchain/assets/0x94b69263FCA20119Ae817b6f783Fc0F13B02ad50/logo.png new file mode 100644 index 00000000..72a982e1 Binary files /dev/null and b/blockchains/smartchain/assets/0x94b69263FCA20119Ae817b6f783Fc0F13B02ad50/logo.png differ diff --git a/blockchains/smartchain/assets/0x94ba29d58D419BD798B282476db3Dd9d97BA8C23/info.json b/blockchains/smartchain/assets/0x94ba29d58D419BD798B282476db3Dd9d97BA8C23/info.json new file mode 100644 index 00000000..936174d7 --- /dev/null +++ b/blockchains/smartchain/assets/0x94ba29d58D419BD798B282476db3Dd9d97BA8C23/info.json @@ -0,0 +1,25 @@ +{ + "name": "Frosted Cake", + "website": "https://frostedcaketoken.com/", + "description": "Frosted Cake is a deflationary passive income token, strategically developed for long term Investments, pushing Smart Contract Capabilities to its fullest potential. Frosted Cake is a real Incentive & Community token.", + "explorer": "https://bscscan.com/token/0x94ba29d58d419bd798b282476db3dd9d97ba8c23", + "type": "BEP20", + "symbol": "FROSTEDCAKE", + "decimals": 18, + "status": "active", + "id": "0x94ba29d58D419BD798B282476db3Dd9d97BA8C23", + "links": [ + { + "name": "telegram", + "url": "https://t.me/frostedcaketoken" + }, + { + "name": "x", + "url": "https://x.com/FrostedCakeBSC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/frostedcake/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x94ba29d58D419BD798B282476db3Dd9d97BA8C23/logo.png b/blockchains/smartchain/assets/0x94ba29d58D419BD798B282476db3Dd9d97BA8C23/logo.png new file mode 100644 index 00000000..d5253a42 Binary files /dev/null and b/blockchains/smartchain/assets/0x94ba29d58D419BD798B282476db3Dd9d97BA8C23/logo.png differ diff --git a/blockchains/smartchain/assets/0x94d7754541B829A87321d56121Bc544167Ac490D/info.json b/blockchains/smartchain/assets/0x94d7754541B829A87321d56121Bc544167Ac490D/info.json new file mode 100644 index 00000000..4785daf4 --- /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 00000000..c2491839 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 new file mode 100644 index 00000000..d0611113 --- /dev/null +++ b/blockchains/smartchain/assets/0x95111f630aC215Eb74599ED42C67E2c2790d69e2/info.json @@ -0,0 +1,29 @@ +{ + "name": "icarus.finance", + "website": "https://icarus.finance", + "description": "icarus.finace is a decentralized mining protocol that brings ETH and BTC mining to DeFi applications.", + "explorer": "https://bscscan.com/token/0x95111f630aC215Eb74599ED42C67E2c2790d69e2", + "type": "BEP20", + "symbol": "ICA", + "decimals": 18, + "status": "active", + "id": "0x95111f630aC215Eb74599ED42C67E2c2790d69e2", + "links": [ + { + "name": "x", + "url": "https://x.com/zetta_icarus" + }, + { + "name": "telegram", + "url": "https://t.me/icarus_finance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/FW5QtuzPdS" + }, + { + "name": "medium", + "url": "https://icarus-finance.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x95111f630aC215Eb74599ED42C67E2c2790d69e2/logo.png b/blockchains/smartchain/assets/0x95111f630aC215Eb74599ED42C67E2c2790d69e2/logo.png new file mode 100644 index 00000000..66fa5ee3 Binary files /dev/null and b/blockchains/smartchain/assets/0x95111f630aC215Eb74599ED42C67E2c2790d69e2/logo.png differ diff --git a/blockchains/smartchain/assets/0x9528cCEb678B90dAf02cA5cA45622D5cBaF58A30/info.json b/blockchains/smartchain/assets/0x9528cCEb678B90dAf02cA5cA45622D5cBaF58A30/info.json new file mode 100644 index 00000000..1e56d9dd --- /dev/null +++ b/blockchains/smartchain/assets/0x9528cCEb678B90dAf02cA5cA45622D5cBaF58A30/info.json @@ -0,0 +1,28 @@ +{ + "name": "Go Crypto Me", + "type": "BEP20", + "symbol": "GCME", + "decimals": 9, + "website": "https://gocryptome.io/", + "description": "Join the Future of Uncensored Crowdfunding. The #1 DAO operated, blockchain powered, crowdfunding platform", + "explorer": "https://bscscan.com/token/0x9528cCEb678B90dAf02cA5cA45622D5cBaF58A30", + "status": "active", + "id": "0x9528cCEb678B90dAf02cA5cA45622D5cBaF58A30", + "links": [ + { + "name": "github", + "url": "https://github.com/GoBlockchain2022/" + }, + { + "name": "x", + "url": "https://x.com/gocryptomecoin" + }, + { + "name": "telegram", + "url": "https://t.me/GoCryptoMe" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9528cCEb678B90dAf02cA5cA45622D5cBaF58A30/logo.png b/blockchains/smartchain/assets/0x9528cCEb678B90dAf02cA5cA45622D5cBaF58A30/logo.png new file mode 100644 index 00000000..8153681b Binary files /dev/null and b/blockchains/smartchain/assets/0x9528cCEb678B90dAf02cA5cA45622D5cBaF58A30/logo.png differ diff --git a/blockchains/smartchain/assets/0x952cEbF65f3A9F11ef0222Aefe0608d26621B097/info.json b/blockchains/smartchain/assets/0x952cEbF65f3A9F11ef0222Aefe0608d26621B097/info.json new file mode 100644 index 00000000..30034fb4 --- /dev/null +++ b/blockchains/smartchain/assets/0x952cEbF65f3A9F11ef0222Aefe0608d26621B097/info.json @@ -0,0 +1,33 @@ +{ + "name": "EDXA Labs", + "website": "https://edxa.co", + "description": "EDXA Dex and Yield Farm", + "explorer": "https://bscscan.com/token/0x952cEbF65f3A9F11ef0222Aefe0608d26621B097", + "type": "BEP20", + "symbol": "EDXA", + "decimals": 18, + "status": "active", + "id": "0x952cEbF65f3A9F11ef0222Aefe0608d26621B097", + "links": [ + { + "name": "github", + "url": "https://github.com/EdxaLabs" + }, + { + "name": "x", + "url": "https://x.com/EdxaLabs" + }, + { + "name": "telegram", + "url": "https://t.me/edxa_group_official" + }, + { + "name": "medium", + "url": "https://edxalabs.medium.com" + }, + { + "name": "whitepaper", + "url": "https://edxalabs.gitbook.io" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x952cEbF65f3A9F11ef0222Aefe0608d26621B097/logo.png b/blockchains/smartchain/assets/0x952cEbF65f3A9F11ef0222Aefe0608d26621B097/logo.png new file mode 100644 index 00000000..54b5e17f Binary files /dev/null and b/blockchains/smartchain/assets/0x952cEbF65f3A9F11ef0222Aefe0608d26621B097/logo.png differ diff --git a/blockchains/smartchain/assets/0x95336aC5f7E840e7716781313e1607F7C9D6BE25/info.json b/blockchains/smartchain/assets/0x95336aC5f7E840e7716781313e1607F7C9D6BE25/info.json new file mode 100644 index 00000000..748e466a --- /dev/null +++ b/blockchains/smartchain/assets/0x95336aC5f7E840e7716781313e1607F7C9D6BE25/info.json @@ -0,0 +1,41 @@ +{ + "name": "RobustSwap Token", + "website": "https://robustswap.com", + "description": "RobustSwap by Robust Protocol is an anti-bot and flash loan attack proof decentralized exchange (DEX), automated market maker (AMM) with yield farming designed to optimize profitability through scarcity and liquidity generation.", + "explorer": "https://bscscan.com/token/0x95336aC5f7E840e7716781313e1607F7C9D6BE25", + "type": "BEP20", + "symbol": "RBS", + "decimals": 18, + "status": "active", + "id": "0x95336aC5f7E840e7716781313e1607F7C9D6BE25", + "links": [ + { + "name": "github", + "url": "https://github.com/robustprotocol" + }, + { + "name": "docs", + "url": "https://docs.robustswap.com" + }, + { + "name": "x", + "url": "https://x.com/robustswap" + }, + { + "name": "telegram", + "url": "https://t.me/robustswap" + }, + { + "name": "telegram_news", + "url": "https://t.me/robustprotocol" + }, + { + "name": "medium", + "url": "https://robustprotocol.medium.com" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/robustprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x95336aC5f7E840e7716781313e1607F7C9D6BE25/logo.png b/blockchains/smartchain/assets/0x95336aC5f7E840e7716781313e1607F7C9D6BE25/logo.png new file mode 100644 index 00000000..80a8fb23 Binary files /dev/null and b/blockchains/smartchain/assets/0x95336aC5f7E840e7716781313e1607F7C9D6BE25/logo.png differ diff --git a/blockchains/smartchain/assets/0x954f15e80eF6901aAeB4c23cA17013c27b828888/info.json b/blockchains/smartchain/assets/0x954f15e80eF6901aAeB4c23cA17013c27b828888/info.json new file mode 100644 index 00000000..1020d85d --- /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 00000000..e007a1b6 --- /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 00000000..674e16a4 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 new file mode 100644 index 00000000..04c18f38 --- /dev/null +++ b/blockchains/smartchain/assets/0x95637d4FbE7153dCc3E26E71bdE7a2D82621F083/info.json @@ -0,0 +1,25 @@ +{ + "name": "ForeverFOMO", + "website": "https://foreverfomo.finance/", + "description": "ForeverFOMO is a price-elastic token with adjusting supply, moving towards the price of $1,500.000 per token. Different then just a normal pegged token/stable coin, rebases make price-elastic tokens into synthetic commodities with fluctuating values and supplies that gradually stabilize. Ultimately, rebases are designed to be tradable and potentially extremely profitable. On the path to $1.5m a token, ForeverFOMO will release NFTs, DAPPs, and more!", + "explorer": "https://bscscan.com/token/0x95637d4FbE7153dCc3E26E71bdE7a2D82621F083", + "type": "BEP20", + "symbol": "ForeverFOMO", + "decimals": 9, + "status": "active", + "id": "0x95637d4FbE7153dCc3E26E71bdE7a2D82621F083", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ForeverFOMO" + }, + { + "name": "x", + "url": "https://x.com/FomoForever" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ForeverFOMO/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x95637d4FbE7153dCc3E26E71bdE7a2D82621F083/logo.png b/blockchains/smartchain/assets/0x95637d4FbE7153dCc3E26E71bdE7a2D82621F083/logo.png new file mode 100644 index 00000000..a37a2f20 Binary files /dev/null and b/blockchains/smartchain/assets/0x95637d4FbE7153dCc3E26E71bdE7a2D82621F083/logo.png differ diff --git a/blockchains/smartchain/assets/0x9573c88aE3e37508f87649f87c4dd5373C9F31e0/info.json b/blockchains/smartchain/assets/0x9573c88aE3e37508f87649f87c4dd5373C9F31e0/info.json new file mode 100644 index 00000000..80fe3fad --- /dev/null +++ b/blockchains/smartchain/assets/0x9573c88aE3e37508f87649f87c4dd5373C9F31e0/info.json @@ -0,0 +1,41 @@ +{ + "name": "Monsta Infinite Token", + "type": "BEP20", + "symbol": "MONI", + "decimals": 18, + "website": "https://monstainfinite.com/", + "description": "Monsta Infinite is a decentralized game universe where anyone can earn tokens through playing the game competitively or for leisure.‌", + "explorer": "https://bscscan.com/token/0x9573c88aE3e37508f87649f87c4dd5373C9F31e0", + "status": "active", + "id": "0x9573c88aE3e37508f87649f87c4dd5373C9F31e0", + "links": [ + { + "name": "github", + "url": "https://github.com/monsta-infinite/" + }, + { + "name": "x", + "url": "https://x.com/Monsta_Infinite/" + }, + { + "name": "blog", + "url": "https://monstainfinite.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/monstainfinite/" + }, + { + "name": "docs", + "url": "https://docs.monstainfinite.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/monsta-infinite/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/monsta-infinite/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9573c88aE3e37508f87649f87c4dd5373C9F31e0/logo.png b/blockchains/smartchain/assets/0x9573c88aE3e37508f87649f87c4dd5373C9F31e0/logo.png new file mode 100644 index 00000000..384ba5b7 Binary files /dev/null and b/blockchains/smartchain/assets/0x9573c88aE3e37508f87649f87c4dd5373C9F31e0/logo.png differ diff --git a/blockchains/smartchain/assets/0x95935CD0e3e41B3eb5b6Bf7fCCF2A5FDDdc28888/info.json b/blockchains/smartchain/assets/0x95935CD0e3e41B3eb5b6Bf7fCCF2A5FDDdc28888/info.json new file mode 100644 index 00000000..97513c00 --- /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 new file mode 100644 index 00000000..bc7d9a46 --- /dev/null +++ b/blockchains/smartchain/assets/0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B/info.json @@ -0,0 +1,37 @@ +{ + "name": "DUET", + "type": "BEP20", + "symbol": "DUET", + "decimals": 18, + "website": "https://duet.finance/", + "description": "DUET Protocol is a multi-chain synthetic assets ecosystem, enabling pegged assets from various markets – from individual stocks, to indexes, ETFs, and commodities.", + "explorer": "https://bscscan.com/token/0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B", + "status": "active", + "id": "0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B", + "links": [ + { + "name": "x", + "url": "https://x.com/duetprotocol" + }, + { + "name": "github", + "url": "https://github.com/duet-protocol" + }, + { + "name": "discord", + "url": "https://discord.com/invite/duetprotocol" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/DuetProtocol" + }, + { + "name": "medium", + "url": "https://duetprotocol.medium.com/" + } + ], + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B/logo.png b/blockchains/smartchain/assets/0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B/logo.png new file mode 100644 index 00000000..62197171 Binary files /dev/null and b/blockchains/smartchain/assets/0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B/logo.png differ diff --git a/blockchains/smartchain/assets/0x95a1199EBA84ac5f19546519e287d43D2F0E1b41/info.json b/blockchains/smartchain/assets/0x95a1199EBA84ac5f19546519e287d43D2F0E1b41/info.json new file mode 100644 index 00000000..8a05c9e2 --- /dev/null +++ b/blockchains/smartchain/assets/0x95a1199EBA84ac5f19546519e287d43D2F0E1b41/info.json @@ -0,0 +1,25 @@ +{ + "name": "RABBIT", + "website": "https://rabbitfinance.io", + "description": "RABBIT token is a governance token of the Rabbit Finance. It will also capture the economic benefits of the protocol.", + "explorer": "https://bscscan.com/token/0x95a1199EBA84ac5f19546519e287d43D2F0E1b41", + "type": "BEP20", + "symbol": "RABBIT", + "decimals": 18, + "status": "active", + "id": "0x95a1199EBA84ac5f19546519e287d43D2F0E1b41", + "links": [ + { + "name": "x", + "url": "https://x.com/FinanceRabbit" + }, + { + "name": "medium", + "url": "https://rabbitfinance.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/RabbitFinanceEN" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x95a1199EBA84ac5f19546519e287d43D2F0E1b41/logo.png b/blockchains/smartchain/assets/0x95a1199EBA84ac5f19546519e287d43D2F0E1b41/logo.png new file mode 100644 index 00000000..97eafafa Binary files /dev/null and b/blockchains/smartchain/assets/0x95a1199EBA84ac5f19546519e287d43D2F0E1b41/logo.png differ diff --git a/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/info.json b/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/info.json new file mode 100644 index 00000000..90caed23 --- /dev/null +++ b/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus BUSD", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0x95c78222B3D6e262426483D42CfA53685A67Ab9D", + "type": "BEP20", + "symbol": "vBUSD", + "decimals": 8, + "status": "active", + "id": "0x95c78222B3D6e262426483D42CfA53685A67Ab9D", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/logo.png b/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/logo.png new file mode 100644 index 00000000..dedb7029 Binary files /dev/null and b/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/logo.png differ diff --git a/blockchains/smartchain/assets/0x95c91eEf65F50570cFC3f269961a00108Cf7BF59/info.json b/blockchains/smartchain/assets/0x95c91eEf65F50570cFC3f269961a00108Cf7BF59/info.json new file mode 100644 index 00000000..8a2ad71d --- /dev/null +++ b/blockchains/smartchain/assets/0x95c91eEf65F50570cFC3f269961a00108Cf7BF59/info.json @@ -0,0 +1,29 @@ +{ + "name": "The DONS", + "type": "BEP20", + "symbol": "DONS", + "decimals": 18, + "website": "https://thedons.vip/", + "description": "Wherever there is opportunity The $DONS will be there. Welcome to $DONS, the ultimate meme token for the crypto community! $DONS is a fun and exciting way to participate in the world of cryptocurrency while also showing off your love for memes. With $DONS, you can enjoy all the benefits of a decentralized currency while also sharing laughs and good vibes with other investors.", + "explorer": "https://bscscan.com/token/0x95c91eEf65F50570cFC3f269961a00108Cf7BF59", + "status": "active", + "id": "0x95c91eEf65F50570cFC3f269961a00108Cf7BF59", + "links": [ + { + "name": "x", + "url": "https://x.com/TheDonsCoin" + }, + { + "name": "telegram", + "url": "https://t.me/TheDonsCoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-dons/" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x95c91eEf65F50570cFC3f269961a00108Cf7BF59/logo.png b/blockchains/smartchain/assets/0x95c91eEf65F50570cFC3f269961a00108Cf7BF59/logo.png new file mode 100644 index 00000000..ec0be6a2 Binary files /dev/null and b/blockchains/smartchain/assets/0x95c91eEf65F50570cFC3f269961a00108Cf7BF59/logo.png differ diff --git a/blockchains/smartchain/assets/0x95df1652cBAB65fd566C088531B7760C9dA19f5F/info.json b/blockchains/smartchain/assets/0x95df1652cBAB65fd566C088531B7760C9dA19f5F/info.json new file mode 100644 index 00000000..c1b808c5 --- /dev/null +++ b/blockchains/smartchain/assets/0x95df1652cBAB65fd566C088531B7760C9dA19f5F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Astroape", + "type": "BEP20", + "symbol": "Astroape", + "decimals": 9, + "website": "https://astroape.finance/", + "description": "ASTROAPE TOKEN works with 3 simple functions in each transaction: Reward + LP Generation + Token burn thereby increasing the value of tokens with every buy or sell", + "explorer": "https://bscscan.com/token/0x95df1652cBAB65fd566C088531B7760C9dA19f5F", + "status": "active", + "id": "0x95df1652cBAB65fd566C088531B7760C9dA19f5F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x95df1652cBAB65fd566C088531B7760C9dA19f5F/logo.png b/blockchains/smartchain/assets/0x95df1652cBAB65fd566C088531B7760C9dA19f5F/logo.png new file mode 100644 index 00000000..802db28d Binary files /dev/null and b/blockchains/smartchain/assets/0x95df1652cBAB65fd566C088531B7760C9dA19f5F/logo.png differ diff --git a/blockchains/smartchain/assets/0x960a69E979d2F507E80121f41d984Ea8aD83cD76/info.json b/blockchains/smartchain/assets/0x960a69E979d2F507E80121f41d984Ea8aD83cD76/info.json new file mode 100644 index 00000000..0591327e --- /dev/null +++ b/blockchains/smartchain/assets/0x960a69E979d2F507E80121f41d984Ea8aD83cD76/info.json @@ -0,0 +1,41 @@ +{ + "name": "LFG Token", + "symbol": "LFG", + "type": "BEP20", + "decimals": 18, + "description": "Gamerse is the LFG (“Looking For Group”) platform for the entire NFT gaming industry, and we will be around for gamers of all shades and hues, no matter which title holds the #1 spot.", + "website": "https://www.gamerse.network", + "explorer": "https://bscscan.com/token/0x960a69e979d2f507e80121f41d984ea8ad83cd76", + "status": "active", + "id": "0x960a69E979d2F507E80121f41d984Ea8aD83cD76", + "links": [ + { + "name": "x", + "url": "https://x.com/Gamersenft" + }, + { + "name": "telegram", + "url": "https://t.me/gamersecommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/SVAXQ7rNrp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamerse/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gamerse" + }, + { + "name": "whitepaper", + "url": "https://gamerse.gitbook.io/gamerse/" + }, + { + "name": "medium", + "url": "https://gamerse.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x960a69E979d2F507E80121f41d984Ea8aD83cD76/logo.png b/blockchains/smartchain/assets/0x960a69E979d2F507E80121f41d984Ea8aD83cD76/logo.png new file mode 100644 index 00000000..4c99dd16 Binary files /dev/null and b/blockchains/smartchain/assets/0x960a69E979d2F507E80121f41d984Ea8aD83cD76/logo.png differ diff --git a/blockchains/smartchain/assets/0x9612F89F32c8A8419bE7a65358e485b76Db2d7f4/info.json b/blockchains/smartchain/assets/0x9612F89F32c8A8419bE7a65358e485b76Db2d7f4/info.json new file mode 100644 index 00000000..8a063deb --- /dev/null +++ b/blockchains/smartchain/assets/0x9612F89F32c8A8419bE7a65358e485b76Db2d7f4/info.json @@ -0,0 +1,33 @@ +{ + "name": "BulleX", + "website": "https://bullextoken.com/", + "description": "BulleX is revolutionizing the way we earn passive income. A Hyper-Deflationary Buy-Back token that automatically rewards holders with BNB. Our Rewards Pool ensures that rewards remain flowing should there be low volume.", + "explorer": "https://bscscan.com/token/0x9612F89F32c8A8419bE7a65358e485b76Db2d7f4", + "type": "BEP20", + "symbol": "BLX", + "decimals": 18, + "status": "active", + "id": "0x9612F89F32c8A8419bE7a65358e485b76Db2d7f4", + "links": [ + { + "name": "telegram", + "url": "https://t.me/bullextoken" + }, + { + "name": "github", + "url": "https://github.com/BullexTeam" + }, + { + "name": "x", + "url": "https://x.com/bullextoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bullex/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bullex" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9612F89F32c8A8419bE7a65358e485b76Db2d7f4/logo.png b/blockchains/smartchain/assets/0x9612F89F32c8A8419bE7a65358e485b76Db2d7f4/logo.png new file mode 100644 index 00000000..4b68d834 Binary files /dev/null and b/blockchains/smartchain/assets/0x9612F89F32c8A8419bE7a65358e485b76Db2d7f4/logo.png differ diff --git a/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json b/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json new file mode 100644 index 00000000..34147008 --- /dev/null +++ b/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/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/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", + "status": "abandoned", + "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", + "links": [ + { + "name": "x", + "url": "https://x.com/dypfinance" + }, + { + "name": "github", + "url": "https://github.com/dypfinance/" + }, + { + "name": "medium", + "url": "https://dypfinance.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defi-yield-protocol/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dypius" + }, + { + "name": "discord", + "url": "https://discord.com/invite/dypcaws" + }, + { + "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/0x9628542656482DdeE1989b04133f02A799eB0936/info.json b/blockchains/smartchain/assets/0x9628542656482DdeE1989b04133f02A799eB0936/info.json new file mode 100644 index 00000000..f0118d53 --- /dev/null +++ b/blockchains/smartchain/assets/0x9628542656482DdeE1989b04133f02A799eB0936/info.json @@ -0,0 +1,11 @@ +{ + "name": "Viagra", + "website": "https://viagrat.org/", + "description": "VIAGRA is a charity token to raise money for men's health issues.", + "explorer": "https://bscscan.com/token/0x9628542656482DdeE1989b04133f02A799eB0936", + "type": "BEP20", + "symbol": "VIAGRA", + "decimals": 9, + "status": "active", + "id": "0x9628542656482DdeE1989b04133f02A799eB0936" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9628542656482DdeE1989b04133f02A799eB0936/logo.png b/blockchains/smartchain/assets/0x9628542656482DdeE1989b04133f02A799eB0936/logo.png new file mode 100644 index 00000000..9efe2f55 Binary files /dev/null and b/blockchains/smartchain/assets/0x9628542656482DdeE1989b04133f02A799eB0936/logo.png differ diff --git a/blockchains/smartchain/assets/0x96412902aa9aFf61E13f085e70D3152C6ef2a817/info.json b/blockchains/smartchain/assets/0x96412902aa9aFf61E13f085e70D3152C6ef2a817/info.json new file mode 100644 index 00000000..c28776f5 --- /dev/null +++ b/blockchains/smartchain/assets/0x96412902aa9aFf61E13f085e70D3152C6ef2a817/info.json @@ -0,0 +1,14 @@ +{ + "name": "AVAX (Portal)", + "type": "BEP20", + "symbol": "AVAX", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.avax.network/", + "explorer": "https://bscscan.com/token/0x96412902aa9aFf61E13f085e70D3152C6ef2a817", + "status": "active", + "id": "0x96412902aa9aFf61E13f085e70D3152C6ef2a817", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x96412902aa9aFf61E13f085e70D3152C6ef2a817/logo.png b/blockchains/smartchain/assets/0x96412902aa9aFf61E13f085e70D3152C6ef2a817/logo.png new file mode 100644 index 00000000..5cfbd9ab Binary files /dev/null and b/blockchains/smartchain/assets/0x96412902aa9aFf61E13f085e70D3152C6ef2a817/logo.png differ diff --git a/blockchains/smartchain/assets/0x9641C1eee00471f7dA822167F6CF77202356179a/info.json b/blockchains/smartchain/assets/0x9641C1eee00471f7dA822167F6CF77202356179a/info.json new file mode 100644 index 00000000..321f838a --- /dev/null +++ b/blockchains/smartchain/assets/0x9641C1eee00471f7dA822167F6CF77202356179a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rhyme$ick Coin", + "website": "https://www.rhymesickco.in/", + "description": "The RSC coin is our introduction to the crypto world and the first of many “SMART COINS” to follow with real world applications and utility! These Smart Coins will target specific sectors of business including Music, Life Insurance, Business Loans, Banking, Entertainment, NFTs, Collectibles, Sports, Car and Home Savings, etc — and with star-power of RSC, will be the first to know about future coins! That means future gains for savvy investors.", + "explorer": "https://bscscan.com/token/0x9641C1eee00471f7dA822167F6CF77202356179a", + "type": "BEP20", + "symbol": "R$C", + "decimals": 9, + "status": "active", + "id": "0x9641C1eee00471f7dA822167F6CF77202356179a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9641C1eee00471f7dA822167F6CF77202356179a/logo.png b/blockchains/smartchain/assets/0x9641C1eee00471f7dA822167F6CF77202356179a/logo.png new file mode 100644 index 00000000..cd2d7c0f Binary files /dev/null and b/blockchains/smartchain/assets/0x9641C1eee00471f7dA822167F6CF77202356179a/logo.png differ diff --git a/blockchains/smartchain/assets/0x965F527D9159dCe6288a2219DB51fc6Eef120dD1/info.json b/blockchains/smartchain/assets/0x965F527D9159dCe6288a2219DB51fc6Eef120dD1/info.json new file mode 100644 index 00000000..f58f5156 --- /dev/null +++ b/blockchains/smartchain/assets/0x965F527D9159dCe6288a2219DB51fc6Eef120dD1/info.json @@ -0,0 +1,49 @@ +{ + "name": "Biswap Token", + "website": "https://biswap.org", + "description": "The First DEX on BSC network with a three-type referral system", + "explorer": "https://bscscan.com/token/0x965f527d9159dce6288a2219db51fc6eef120dd1", + "type": "BEP20", + "symbol": "BSW", + "decimals": 18, + "status": "active", + "id": "0x965F527D9159dCe6288a2219DB51fc6Eef120dD1", + "links": [ + { + "name": "github", + "url": "https://github.com/biswap-org" + }, + { + "name": "telegram", + "url": "https://t.me/biswap" + }, + { + "name": "telegram_news", + "url": "https://t.me/biswap_news" + }, + { + "name": "x", + "url": "https://x.com/Biswap_DEX" + }, + { + "name": "medium", + "url": "https://biswap-dex.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/biswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/biswap" + }, + { + "name": "docs", + "url": "https://docs.biswap.org/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCHartwkRUURf2Q7MlKOV84w" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x965F527D9159dCe6288a2219DB51fc6Eef120dD1/logo.png b/blockchains/smartchain/assets/0x965F527D9159dCe6288a2219DB51fc6Eef120dD1/logo.png new file mode 100644 index 00000000..adf7f357 Binary files /dev/null and b/blockchains/smartchain/assets/0x965F527D9159dCe6288a2219DB51fc6Eef120dD1/logo.png differ diff --git a/blockchains/smartchain/assets/0x965b0Df5BDA0E7a0649324D78f03D5F7F2De086a/info.json b/blockchains/smartchain/assets/0x965b0Df5BDA0E7a0649324D78f03D5F7F2De086a/info.json new file mode 100644 index 00000000..e29a3f15 --- /dev/null +++ b/blockchains/smartchain/assets/0x965b0Df5BDA0E7a0649324D78f03D5F7F2De086a/info.json @@ -0,0 +1,11 @@ +{ + "name": "COOK Token", + "website": "https://cook.finance/", + "description": "COOK token is a governance and utility token issued by Cook Protocol.", + "explorer": "https://bscscan.com/token/0x965b0Df5BDA0E7a0649324D78f03D5F7F2De086a", + "type": "BEP20", + "symbol": "COOK", + "decimals": 18, + "status": "active", + "id": "0x965b0Df5BDA0E7a0649324D78f03D5F7F2De086a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x965b0Df5BDA0E7a0649324D78f03D5F7F2De086a/logo.png b/blockchains/smartchain/assets/0x965b0Df5BDA0E7a0649324D78f03D5F7F2De086a/logo.png new file mode 100644 index 00000000..ede22bfe Binary files /dev/null and b/blockchains/smartchain/assets/0x965b0Df5BDA0E7a0649324D78f03D5F7F2De086a/logo.png differ diff --git a/blockchains/smartchain/assets/0x966EbCBA3c51E81f5CF159a1EaBeFd2327aB5E8D/info.json b/blockchains/smartchain/assets/0x966EbCBA3c51E81f5CF159a1EaBeFd2327aB5E8D/info.json new file mode 100644 index 00000000..5e4b040e --- /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 00000000..3cee526c 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 00000000..ceb0e65e --- /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 00000000..bce8b3c7 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 new file mode 100644 index 00000000..cc497e1a --- /dev/null +++ b/blockchains/smartchain/assets/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5/info.json @@ -0,0 +1,42 @@ +{ + "name": "BNB pegged IoTeX Network", + "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://bscscan.com/token/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5", + "type": "BEP20", + "symbol": "IOTX", + "decimals": 18, + "status": "active", + "id": "0x9678E42ceBEb63F23197D726B29b1CB20d0064E5", + "tags": [ + "binance-peg", + "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/smartchain/assets/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5/logo.png b/blockchains/smartchain/assets/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5/logo.png new file mode 100644 index 00000000..2e533fb2 Binary files /dev/null and b/blockchains/smartchain/assets/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5/logo.png differ diff --git a/blockchains/smartchain/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/info.json b/blockchains/smartchain/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/info.json new file mode 100644 index 00000000..65894a59 --- /dev/null +++ b/blockchains/smartchain/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/info.json @@ -0,0 +1,30 @@ +{ + "name": "Newscrypto", + "website": "https://newscrypto.io/", + "short_description": "Newscrypto is a project that brings together education, information and trading tools for traders in the crypto markets.", + "description": "Newscrypto is a project that brings together education, information and trading tools for traders in the crypto markets.", + "explorer": "https://bscscan.com/token/0x968f6f898a6df937fc1859b323ac2f14643e3fed", + "type": "BEP20", + "symbol": "NWC", + "decimals": 18, + "status": "active", + "id": "0x968F6f898a6Df937fC1859b323aC2F14643e3fED", + "links": [ + { + "name": "x", + "url": "https://x.com/NwcPublic" + }, + { + "name": "telegram", + "url": "https://t.me/nwc_public" + }, + { + "name": "facebook", + "url": "https://facebook.com/Newscrypto.io" + }, + { + "name": "whitepaper", + "url": "https://newscrypto.io/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/logo.png b/blockchains/smartchain/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/logo.png new file mode 100644 index 00000000..38003083 Binary files /dev/null and b/blockchains/smartchain/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/logo.png differ diff --git a/blockchains/smartchain/assets/0x96Dd399F9c3AFda1F194182F71600F1B65946501/info.json b/blockchains/smartchain/assets/0x96Dd399F9c3AFda1F194182F71600F1B65946501/info.json new file mode 100644 index 00000000..c7fc1fd4 --- /dev/null +++ b/blockchains/smartchain/assets/0x96Dd399F9c3AFda1F194182F71600F1B65946501/info.json @@ -0,0 +1,12 @@ +{ + "name": "Contentos", + "website": "https://www.contentos.io", + "description": "COS is the native asset in the Contentos blockchain: it is used for voting, paying gas fee for smart-contract execution, and simple transaction fee.", + "explorer": "https://bscscan.com/token/0x96dd399f9c3afda1f194182f71600f1b65946501", + "research": "https://research.binance.com/en/projects/contentos", + "type": "BEP20", + "symbol": "COS", + "decimals": 18, + "status": "active", + "id": "0x96Dd399F9c3AFda1F194182F71600F1B65946501" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x96Dd399F9c3AFda1F194182F71600F1B65946501/logo.png b/blockchains/smartchain/assets/0x96Dd399F9c3AFda1F194182F71600F1B65946501/logo.png new file mode 100644 index 00000000..e1109e68 Binary files /dev/null and b/blockchains/smartchain/assets/0x96Dd399F9c3AFda1F194182F71600F1B65946501/logo.png differ diff --git a/blockchains/smartchain/assets/0x96a3b63701DBC6D40A1C4153734778443b0175aD/info.json b/blockchains/smartchain/assets/0x96a3b63701DBC6D40A1C4153734778443b0175aD/info.json new file mode 100644 index 00000000..9e20c3e2 --- /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 00000000..fe0204c6 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 new file mode 100644 index 00000000..4b6b35dd --- /dev/null +++ b/blockchains/smartchain/assets/0x96aC1E773677FA02726B5A670CA96a7aDf7F8523/info.json @@ -0,0 +1,33 @@ +{ + "name": "Mini Hollywood Doge", + "website": "https://www.minihollywooddoge.com", + "description": "Mini Hollywood Doge is BEP20 Token based on a fun meme, but at its heart is a serious mission to contribute to charitable organisations as voted by its community of holders, and to enable a launchpad for future meme token projects.", + "explorer": "https://bscscan.com/token/0x96aC1E773677FA02726B5A670CA96a7aDf7F8523", + "type": "BEP20", + "symbol": "MOLLYDOGE ⭐", + "decimals": 9, + "status": "active", + "id": "0x96aC1E773677FA02726B5A670CA96a7aDf7F8523", + "links": [ + { + "name": "github", + "url": "https://github.com/minihollywooddoge" + }, + { + "name": "x", + "url": "https://x.com/DogeHollywood" + }, + { + "name": "telegram", + "url": "https://t.me/MiniHollywoodDoge" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mini-hollywood-doge" + }, + { + "name": "whitepaper", + "url": "https://503ed78d-728e-4e57-a382-25b391e649e1.filesusr.com/ugd/c294fa_c3ed87277a5c43b09f109904668bd741.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x96aC1E773677FA02726B5A670CA96a7aDf7F8523/logo.png b/blockchains/smartchain/assets/0x96aC1E773677FA02726B5A670CA96a7aDf7F8523/logo.png new file mode 100644 index 00000000..7b673dee Binary files /dev/null and b/blockchains/smartchain/assets/0x96aC1E773677FA02726B5A670CA96a7aDf7F8523/logo.png differ diff --git a/blockchains/smartchain/assets/0x96bbE4376802eCc0eFD330AF76B8873183270671/info.json b/blockchains/smartchain/assets/0x96bbE4376802eCc0eFD330AF76B8873183270671/info.json new file mode 100644 index 00000000..04797731 --- /dev/null +++ b/blockchains/smartchain/assets/0x96bbE4376802eCc0eFD330AF76B8873183270671/info.json @@ -0,0 +1,12 @@ +{ + "name": "Kindness Orbit", + "website": "https://kindnessorbit.com/", + "description": "KINDNESS ORBIT is a community driven project to promote kindness among kindness Orbit ecosystem. Acts of Kindness is a language every human understand and cherish. Simply hold KOBT in your wallet and you will get more. On each transaction the protocol automatically distributes rewards to holders.", + "explorer": "https://bscscan.com/token/0x96bbE4376802eCc0eFD330AF76B8873183270671", + "research": "", + "type": "BEP20", + "symbol": "KOBT", + "decimals": 9, + "status": "active", + "id": "0x96bbE4376802eCc0eFD330AF76B8873183270671" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x96bbE4376802eCc0eFD330AF76B8873183270671/logo.png b/blockchains/smartchain/assets/0x96bbE4376802eCc0eFD330AF76B8873183270671/logo.png new file mode 100644 index 00000000..46b39d8c Binary files /dev/null and b/blockchains/smartchain/assets/0x96bbE4376802eCc0eFD330AF76B8873183270671/logo.png differ diff --git a/blockchains/smartchain/assets/0x96fb784986284Cb6d4A8da6DD50dD7E85EF38F5D/info.json b/blockchains/smartchain/assets/0x96fb784986284Cb6d4A8da6DD50dD7E85EF38F5D/info.json new file mode 100644 index 00000000..26feba46 --- /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 new file mode 100644 index 00000000..a962fad1 --- /dev/null +++ b/blockchains/smartchain/assets/0x97012db0142825526239580CAeAce634C082bb34/info.json @@ -0,0 +1,36 @@ +{ + "name": "Petmoon", + "type": "BEP20", + "symbol": "PTM", + "decimals": 9, + "website": "https://petmoon.net/", + "description": "Petmoon is Play-to-Earn NFT game on the BSC network which integrates (BEP721) tokens into the dAPP. ", + "explorer": "https://bscscan.com/token/0x97012db0142825526239580caeace634c082bb34", + "status": "active", + "id": "0x97012db0142825526239580CAeAce634C082bb34", + "links": [ + { + "name": "x", + "url": "https://x.com/petmoonnft" + }, + { + "name": "telegram", + "url": "https://t.me/petmoon" + }, + { + "name": "telegram_news", + "url": "https://t.me/petmoonannouncements" + }, + { + "name": "youtube", + "url": "https://youtube.com/petmoon" + }, + { + "name": "github", + "url": "https://github.com/petmoon/petmoon" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x97012db0142825526239580CAeAce634C082bb34/logo.png b/blockchains/smartchain/assets/0x97012db0142825526239580CAeAce634C082bb34/logo.png new file mode 100644 index 00000000..074252dc Binary files /dev/null and b/blockchains/smartchain/assets/0x97012db0142825526239580CAeAce634C082bb34/logo.png differ diff --git a/blockchains/smartchain/assets/0x9720CA160Bbd4E7f3dD4bb3f8BD4227ca0342e63/info.json b/blockchains/smartchain/assets/0x9720CA160Bbd4E7f3dD4bb3f8BD4227ca0342e63/info.json new file mode 100644 index 00000000..1e2df5aa --- /dev/null +++ b/blockchains/smartchain/assets/0x9720CA160Bbd4E7f3dD4bb3f8BD4227ca0342e63/info.json @@ -0,0 +1,33 @@ +{ + "name": "GamesPad", + "website": "https://gamespad.io", + "description": "GMPD is the native token of GamesPad: the ultimate gaming, NFT, and metaverse ecosystem.", + "explorer": "https://bscscan.com/token/0x9720CA160Bbd4E7f3dD4bb3f8BD4227ca0342e63", + "type": "BEP20", + "symbol": "GMPD", + "decimals": 18, + "status": "active", + "id": "0x9720CA160Bbd4E7f3dD4bb3f8BD4227ca0342e63", + "links": [ + { + "name": "x", + "url": "https://x.com/gamespad_vc" + }, + { + "name": "telegram", + "url": "https://t.me/GamesPadChat" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamespad/" + }, + { + "name": "whitepaper", + "url": "https://gamespad.io/wp-content/uploads/2022/02/GamesPad-Whitepaper-compressed.pdf" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9720CA160Bbd4E7f3dD4bb3f8BD4227ca0342e63/logo.png b/blockchains/smartchain/assets/0x9720CA160Bbd4E7f3dD4bb3f8BD4227ca0342e63/logo.png new file mode 100644 index 00000000..de2cebd9 Binary files /dev/null and b/blockchains/smartchain/assets/0x9720CA160Bbd4E7f3dD4bb3f8BD4227ca0342e63/logo.png differ diff --git a/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/info.json b/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/info.json new file mode 100644 index 00000000..edb1772f --- /dev/null +++ b/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus BETH", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0x972207A639CC1B374B893cc33Fa251b55CEB7c07", + "type": "BEP20", + "symbol": "vBETH", + "decimals": 8, + "status": "active", + "id": "0x972207A639CC1B374B893cc33Fa251b55CEB7c07", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/logo.png b/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/logo.png new file mode 100644 index 00000000..43cb66cc Binary files /dev/null and b/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/logo.png differ diff --git a/blockchains/smartchain/assets/0x97300A4f628701672096460B5469C41a8d3ECb1A/info.json b/blockchains/smartchain/assets/0x97300A4f628701672096460B5469C41a8d3ECb1A/info.json new file mode 100644 index 00000000..2b790ef5 --- /dev/null +++ b/blockchains/smartchain/assets/0x97300A4f628701672096460B5469C41a8d3ECb1A/info.json @@ -0,0 +1,11 @@ +{ + "name": "1TRONIC Network", + "symbol": "1TRC", + "decimals": 18, + "type": "BEP20", + "website": "https://www.1tronic.io/", + "description": "1TRONIC Network is Payment Platform for Daily Necessities using Crypto and or Fiat Currencies", + "explorer": "https://bscscan.com/token/0x97300A4f628701672096460B5469C41a8d3ECb1A", + "status": "active", + "id": "0x97300A4f628701672096460B5469C41a8d3ECb1A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x97300A4f628701672096460B5469C41a8d3ECb1A/logo.png b/blockchains/smartchain/assets/0x97300A4f628701672096460B5469C41a8d3ECb1A/logo.png new file mode 100644 index 00000000..ad9355a2 Binary files /dev/null and b/blockchains/smartchain/assets/0x97300A4f628701672096460B5469C41a8d3ECb1A/logo.png differ diff --git a/blockchains/smartchain/assets/0x976427dd3E55e8a2D5e358DbC54528D1990AADf4/info.json b/blockchains/smartchain/assets/0x976427dd3E55e8a2D5e358DbC54528D1990AADf4/info.json new file mode 100644 index 00000000..0dca6fdc --- /dev/null +++ b/blockchains/smartchain/assets/0x976427dd3E55e8a2D5e358DbC54528D1990AADf4/info.json @@ -0,0 +1,11 @@ +{ + "name": "ARIX Token", + "website": "https://arixcoin.io", + "description": "ARIX is both centralized and decentralized helping both new and experienced traders access a user friendly, scalable, safest and the cheapest way to trade assets anywhere in the world.", + "explorer": "https://bscscan.com/token/0x976427dd3e55e8a2d5e358dbc54528d1990aadf4", + "type": "BEP20", + "symbol": "ARIX", + "decimals": 8, + "status": "active", + "id": "0x976427dd3E55e8a2D5e358DbC54528D1990AADf4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x976427dd3E55e8a2D5e358DbC54528D1990AADf4/logo.png b/blockchains/smartchain/assets/0x976427dd3E55e8a2D5e358DbC54528D1990AADf4/logo.png new file mode 100644 index 00000000..d2b3efde Binary files /dev/null and b/blockchains/smartchain/assets/0x976427dd3E55e8a2D5e358DbC54528D1990AADf4/logo.png differ diff --git a/blockchains/smartchain/assets/0x9767c8E438Aa18f550208e6d1fDf5f43541cC2c8/info.json b/blockchains/smartchain/assets/0x9767c8E438Aa18f550208e6d1fDf5f43541cC2c8/info.json new file mode 100644 index 00000000..4400885c --- /dev/null +++ b/blockchains/smartchain/assets/0x9767c8E438Aa18f550208e6d1fDf5f43541cC2c8/info.json @@ -0,0 +1,36 @@ +{ + "name": "Mango Man Intelligent", + "type": "BEP20", + "symbol": "MMIT ", + "decimals": 18, + "website": "https://mmint.io/", + "description": "The birth of mango man meme coin is attributed to the idea of motivating crypto beginners to do well in this arena.", + "explorer": "https://bscscan.com/token/0x9767c8e438aa18f550208e6d1fdf5f43541cc2c8", + "status": "active", + "id": "0x9767c8E438Aa18f550208e6d1fDf5f43541cC2c8", + "links": [ + { + "name": "x", + "url": "https://x.com/mangomanintell" + }, + { + "name": "facebook", + "url": "https://facebook.com/MangoManIntelligent" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mangoman-intelligent/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mangoman-intelligent" + }, + { + "name": "medium", + "url": "https://medium.com/@mangomanintelligent" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9767c8E438Aa18f550208e6d1fDf5f43541cC2c8/logo.png b/blockchains/smartchain/assets/0x9767c8E438Aa18f550208e6d1fDf5f43541cC2c8/logo.png new file mode 100644 index 00000000..be0c0715 Binary files /dev/null and b/blockchains/smartchain/assets/0x9767c8E438Aa18f550208e6d1fDf5f43541cC2c8/logo.png differ diff --git a/blockchains/smartchain/assets/0x976dd46dBA1217Fcf537224f92bea83c72768888/info.json b/blockchains/smartchain/assets/0x976dd46dBA1217Fcf537224f92bea83c72768888/info.json new file mode 100644 index 00000000..d2dd0496 --- /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/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1/info.json b/blockchains/smartchain/assets/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1/info.json new file mode 100644 index 00000000..313e040e --- /dev/null +++ b/blockchains/smartchain/assets/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1/info.json @@ -0,0 +1,11 @@ +{ + "name": "TeraBlock Token", + "website": "https://terablock.ai", + "description": "Machine Learning driven, personalised cryptocurrency trade automation to help you easily manage your assets.", + "explorer": "https://bscscan.com/token/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1", + "symbol": "TBC", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1/logo.png b/blockchains/smartchain/assets/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1/logo.png new file mode 100644 index 00000000..21d22c61 Binary files /dev/null and b/blockchains/smartchain/assets/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1/logo.png differ diff --git a/blockchains/smartchain/assets/0x97Ad911101d4285a13A3240Ee35618edC511A435/info.json b/blockchains/smartchain/assets/0x97Ad911101d4285a13A3240Ee35618edC511A435/info.json new file mode 100644 index 00000000..cbc39ac9 --- /dev/null +++ b/blockchains/smartchain/assets/0x97Ad911101d4285a13A3240Ee35618edC511A435/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kishu Baby", + "type": "BEP20", + "symbol": "KISHUBABY", + "decimals": 9, + "website": "https://kishu.baby/", + "description": "The Lovely KISHUBABY was created on June 27th, 2021 with the goal of being a decentralized meme project with a true purpose. Formed by an awesome team of highly-skilled devs, first-class marketing people, and a constantly ever-growing community.", + "explorer": "https://bscscan.com/token/0x97ad911101d4285a13a3240ee35618edc511a435", + "status": "active", + "id": "0x97Ad911101d4285a13A3240Ee35618edC511A435" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x97Ad911101d4285a13A3240Ee35618edC511A435/logo.png b/blockchains/smartchain/assets/0x97Ad911101d4285a13A3240Ee35618edC511A435/logo.png new file mode 100644 index 00000000..0d1a2f07 Binary files /dev/null and b/blockchains/smartchain/assets/0x97Ad911101d4285a13A3240Ee35618edC511A435/logo.png differ diff --git a/blockchains/smartchain/assets/0x97F4e15606cf335B7a6DAEC2BA02449Fb5Da69C6/info.json b/blockchains/smartchain/assets/0x97F4e15606cf335B7a6DAEC2BA02449Fb5Da69C6/info.json new file mode 100644 index 00000000..6f885734 --- /dev/null +++ b/blockchains/smartchain/assets/0x97F4e15606cf335B7a6DAEC2BA02449Fb5Da69C6/info.json @@ -0,0 +1,11 @@ +{ + "name": "VANCATDOG", + "website": "https://vancatdogtoken.com", + "description": "Token Programmed to Reward Holders", + "explorer": "https://bscscan.com/token/0x97F4e15606cf335B7a6DAEC2BA02449Fb5Da69C6", + "symbol": "VANCATDOG", + "type": "BEP20", + "decimals": 0, + "status": "active", + "id": "0x97F4e15606cf335B7a6DAEC2BA02449Fb5Da69C6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x97F4e15606cf335B7a6DAEC2BA02449Fb5Da69C6/logo.png b/blockchains/smartchain/assets/0x97F4e15606cf335B7a6DAEC2BA02449Fb5Da69C6/logo.png new file mode 100644 index 00000000..5a4b91da Binary files /dev/null and b/blockchains/smartchain/assets/0x97F4e15606cf335B7a6DAEC2BA02449Fb5Da69C6/logo.png differ diff --git a/blockchains/smartchain/assets/0x97a30C692eCe9C317235d48287d23d358170FC40/info.json b/blockchains/smartchain/assets/0x97a30C692eCe9C317235d48287d23d358170FC40/info.json new file mode 100644 index 00000000..287bfd25 --- /dev/null +++ b/blockchains/smartchain/assets/0x97a30C692eCe9C317235d48287d23d358170FC40/info.json @@ -0,0 +1,26 @@ +{ + "name": "CryptEx Token", + "website": "https://cryptexlock.me/", + "description": "CryptEx Locker is a powerful tool for protecting funds from rugs, team abuse and other forms of exploits. CryptEx allows users to lock tokens for a desired period of time or with additional conditions like multisignature proof.", + "explorer": "https://bscscan.com/token/0x97a30C692eCe9C317235d48287d23d358170FC40", + "code": "https://bscscan.com/address/0x97a30C692eCe9C317235d48287d23d358170FC40#code", + "type": "BEP20", + "symbol": "CRX", + "decimals": 18, + "status": "active", + "id": "0x97a30C692eCe9C317235d48287d23d358170FC40", + "links": [ + { + "name": "x", + "url": "https://x.com/ExLocker" + }, + { + "name": "telegram", + "url": "https://t.me/cryptexlocker" + }, + { + "name": "whitepaper", + "url": "https://cryptexlock.me/CryptEx-Whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x97a30C692eCe9C317235d48287d23d358170FC40/logo.png b/blockchains/smartchain/assets/0x97a30C692eCe9C317235d48287d23d358170FC40/logo.png new file mode 100644 index 00000000..6ea2eceb Binary files /dev/null and b/blockchains/smartchain/assets/0x97a30C692eCe9C317235d48287d23d358170FC40/logo.png differ diff --git a/blockchains/smartchain/assets/0x97c6825e6911578A515B11e25B552Ecd5fE58dbA/info.json b/blockchains/smartchain/assets/0x97c6825e6911578A515B11e25B552Ecd5fE58dbA/info.json new file mode 100644 index 00000000..a6480e75 --- /dev/null +++ b/blockchains/smartchain/assets/0x97c6825e6911578A515B11e25B552Ecd5fE58dbA/info.json @@ -0,0 +1,29 @@ +{ + "name": "BurningMoon", + "website": "https://burningmoon.finance/", + "description": "BurningMoon is a hyper-deflationary reward token with multiple use cases. It features unique tokenomics to create and sustain an entire ecosystem, which makes it very different from the tokens that are usually entering the cryptosphere.", + "explorer": "https://bscscan.com/token/0x97c6825e6911578a515b11e25b552ecd5fe58dba", + "type": "BEP20", + "symbol": "BM", + "decimals": 9, + "status": "active", + "id": "0x97c6825e6911578A515B11e25B552Ecd5fE58dbA", + "links": [ + { + "name": "x", + "url": "https://x.com/BurningMoonBSC" + }, + { + "name": "telegram", + "url": "https://t.me/BurningMoonBSC" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/burningmoon" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/burningmoon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x97c6825e6911578A515B11e25B552Ecd5fE58dbA/logo.png b/blockchains/smartchain/assets/0x97c6825e6911578A515B11e25B552Ecd5fE58dbA/logo.png new file mode 100644 index 00000000..67e73b2f Binary files /dev/null and b/blockchains/smartchain/assets/0x97c6825e6911578A515B11e25B552Ecd5fE58dbA/logo.png differ diff --git a/blockchains/smartchain/assets/0x97eA5EfDCb5961A99bA5C96123042507C0210Ec1/info.json b/blockchains/smartchain/assets/0x97eA5EfDCb5961A99bA5C96123042507C0210Ec1/info.json new file mode 100644 index 00000000..c8372c2b --- /dev/null +++ b/blockchains/smartchain/assets/0x97eA5EfDCb5961A99bA5C96123042507C0210Ec1/info.json @@ -0,0 +1,49 @@ +{ + "name": "Flokinomics", + "website": "https://www.flokinomics.com/", + "description": "Flokinomics is the first ever token on the BSC smartchain to combine rebase tokenomics with Doge rewards. Hold $FLOKIN and receive $DOGE directly to your BEP-20 wallet as a reward for holding", + "explorer": "https://bscscan.com/token/0x97ea5efdcb5961a99ba5c96123042507c0210ec1", + "type": "BEP20", + "symbol": "FLOKIN", + "decimals": 4, + "status": "active", + "id": "0x97eA5EfDCb5961A99bA5C96123042507C0210Ec1", + "links": [ + { + "name": "github", + "url": "https://github.com/monkey-shanti/flokinomics/" + }, + { + "name": "x", + "url": "https://x.com/FlokinomicsCoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/Flokinimocs312" + }, + { + "name": "medium", + "url": "https://medium.com/@flokinomics/hi-ef517b7321b1" + }, + { + "name": "facebook", + "url": "https://facebook.com/profile.php?id=100073605662953" + }, + { + "name": "discord", + "url": "https://discord.com/channels/894353700217294858/894353700217294861" + }, + { + "name": "whitepaper", + "url": "https://cbb353b7-15af-4249-8f91-cf282decdc17.filesusr.com/ugd/340d42_f0a20e41ff5944bf968367906b662cea.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/flokinomics/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/flokinomics/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x97eA5EfDCb5961A99bA5C96123042507C0210Ec1/logo.png b/blockchains/smartchain/assets/0x97eA5EfDCb5961A99bA5C96123042507C0210Ec1/logo.png new file mode 100644 index 00000000..6fd6e758 Binary files /dev/null and b/blockchains/smartchain/assets/0x97eA5EfDCb5961A99bA5C96123042507C0210Ec1/logo.png differ diff --git a/blockchains/smartchain/assets/0x9804021fab007caf29c8D75E3bEcACeC7860de30/info.json b/blockchains/smartchain/assets/0x9804021fab007caf29c8D75E3bEcACeC7860de30/info.json new file mode 100644 index 00000000..2ee146b4 --- /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 00000000..672e3c7d 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 new file mode 100644 index 00000000..d64d1c4d --- /dev/null +++ b/blockchains/smartchain/assets/0x980b37a82B60A32965b6e56356D14E0410ea440F/info.json @@ -0,0 +1,25 @@ +{ + "name": "Ronin Gamez", + "type": "BEP20", + "symbol": "RONINGMZ", + "decimals": 18, + "website": "https://roningamez.io/", + "description": "Token issued by Ronin Gamez studio as a transactional token for the future game launchpad", + "explorer": "https://bscscan.com/token/0x980b37a82B60A32965b6e56356D14E0410ea440F", + "status": "active", + "id": "0x980b37a82B60A32965b6e56356D14E0410ea440F", + "links": [ + { + "name": "x", + "url": "https://x.com/ronin_gamez" + }, + { + "name": "telegram", + "url": "https://t.me/RONINGAMEZ" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCwpmXZhLzaFyzMVvMXVombA" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x980b37a82B60A32965b6e56356D14E0410ea440F/logo.png b/blockchains/smartchain/assets/0x980b37a82B60A32965b6e56356D14E0410ea440F/logo.png new file mode 100644 index 00000000..01014645 Binary files /dev/null and b/blockchains/smartchain/assets/0x980b37a82B60A32965b6e56356D14E0410ea440F/logo.png differ diff --git a/blockchains/smartchain/assets/0x9810beac9af3C30d14cFB61cDd557E160f60FD50/info.json b/blockchains/smartchain/assets/0x9810beac9af3C30d14cFB61cDd557E160f60FD50/info.json new file mode 100644 index 00000000..c1085acd --- /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 00000000..b1097ce8 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 00000000..15011021 --- /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 00000000..d4973e74 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 new file mode 100644 index 00000000..c039ba65 --- /dev/null +++ b/blockchains/smartchain/assets/0x9840652DC04fb9db2C43853633f0F62BE6f00f98/info.json @@ -0,0 +1,29 @@ +{ + "name": "ChainGPT", + "type": "BEP20", + "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://bscscan.com/token/0x9840652DC04fb9db2C43853633f0F62BE6f00f98", + "status": "active", + "id": "0x9840652DC04fb9db2C43853633f0F62BE6f00f98", + "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/smartchain/assets/0x9840652DC04fb9db2C43853633f0F62BE6f00f98/logo.png b/blockchains/smartchain/assets/0x9840652DC04fb9db2C43853633f0F62BE6f00f98/logo.png new file mode 100644 index 00000000..11296a60 Binary files /dev/null and b/blockchains/smartchain/assets/0x9840652DC04fb9db2C43853633f0F62BE6f00f98/logo.png differ diff --git a/blockchains/smartchain/assets/0x984811e6f2695192add6f88615dF637bf52a5Cae/info.json b/blockchains/smartchain/assets/0x984811e6f2695192add6f88615dF637bf52a5Cae/info.json new file mode 100644 index 00000000..906c41a6 --- /dev/null +++ b/blockchains/smartchain/assets/0x984811e6f2695192add6f88615dF637bf52a5Cae/info.json @@ -0,0 +1,30 @@ +{ + "name": "Hoppy", + "website": "https://www.hoppy-meme.co", + "description": "For a Greener Future, one Hop at a time!", + "explorer": "https://bscscan.com/token/0x984811e6f2695192add6f88615dF637bf52a5Cae", + "type": "BEP20", + "symbol": "HOP", + "decimals": 9, + "status": "active", + "id": "0x984811e6f2695192add6f88615dF637bf52a5Cae", + "links": [ + { + "name": "telegram", + "url": "https://t.me/HoppyMeme_Official" + }, + { + "name": "x", + "url": "https://x.com/HoppyMeme" + }, + { + "name": "medium", + "url": "https://hoppymeme.medium.com/" + } + ], + "tags": [ + "nft", + "defi", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x984811e6f2695192add6f88615dF637bf52a5Cae/logo.png b/blockchains/smartchain/assets/0x984811e6f2695192add6f88615dF637bf52a5Cae/logo.png new file mode 100644 index 00000000..1cfa3288 Binary files /dev/null and b/blockchains/smartchain/assets/0x984811e6f2695192add6f88615dF637bf52a5Cae/logo.png differ diff --git a/blockchains/smartchain/assets/0x9853A30C69474BeD37595F9B149ad634b5c323d9/info.json b/blockchains/smartchain/assets/0x9853A30C69474BeD37595F9B149ad634b5c323d9/info.json new file mode 100644 index 00000000..90d6a529 --- /dev/null +++ b/blockchains/smartchain/assets/0x9853A30C69474BeD37595F9B149ad634b5c323d9/info.json @@ -0,0 +1,11 @@ +{ + "name": "TENDIE", + "website": "https://www.tendieswap.org/", + "description": "TendieSwap is a non-custodial prediction protocol that enables users to earn unlimited rewards on high-yield prediction markets. TENDIE ($TENDIE) is the utility token of the TendieSwap ecosystem and is based on the BEP-20 token standard with a dual deployment to MATIC coming soon.", + "explorer": "https://bscscan.com/token/0x9853a30c69474bed37595f9b149ad634b5c323d9", + "type": "BEP20", + "symbol": "TENDIE", + "decimals": 18, + "status": "active", + "id": "0x9853A30C69474BeD37595F9B149ad634b5c323d9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9853A30C69474BeD37595F9B149ad634b5c323d9/logo.png b/blockchains/smartchain/assets/0x9853A30C69474BeD37595F9B149ad634b5c323d9/logo.png new file mode 100644 index 00000000..854460ac Binary files /dev/null and b/blockchains/smartchain/assets/0x9853A30C69474BeD37595F9B149ad634b5c323d9/logo.png differ diff --git a/blockchains/smartchain/assets/0x986854779804799C1d68867F5E03e601E781e41b/info.json b/blockchains/smartchain/assets/0x986854779804799C1d68867F5E03e601E781e41b/info.json new file mode 100644 index 00000000..c219246e --- /dev/null +++ b/blockchains/smartchain/assets/0x986854779804799C1d68867F5E03e601E781e41b/info.json @@ -0,0 +1,14 @@ +{ + "name": "Lido DAO (Portal)", + "type": "BEP20", + "symbol": "LDO", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://stake.lido.fi/", + "explorer": "https://bscscan.com/token/0x986854779804799C1d68867F5E03e601E781e41b", + "status": "active", + "id": "0x986854779804799C1d68867F5E03e601E781e41b", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x986854779804799C1d68867F5E03e601E781e41b/logo.png b/blockchains/smartchain/assets/0x986854779804799C1d68867F5E03e601E781e41b/logo.png new file mode 100644 index 00000000..cc8b90ca Binary files /dev/null and b/blockchains/smartchain/assets/0x986854779804799C1d68867F5E03e601E781e41b/logo.png differ diff --git a/blockchains/smartchain/assets/0x986eedB84A934C81eDc0a080D03C6e3C1d7A8399/info.json b/blockchains/smartchain/assets/0x986eedB84A934C81eDc0a080D03C6e3C1d7A8399/info.json new file mode 100644 index 00000000..f558e489 --- /dev/null +++ b/blockchains/smartchain/assets/0x986eedB84A934C81eDc0a080D03C6e3C1d7A8399/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dogette", + "type": "BEP20", + "symbol": "MRSDOGE", + "decimals": 9, + "website": "https://www.mrsdoge.club/", + "description": "The first MEME token to incorporate Prediction Markets and Game Theory into NFTs, called mNFTs", + "explorer": "https://bscscan.com/token/0x986eedB84A934C81eDc0a080D03C6e3C1d7A8399", + "status": "active", + "id": "0x986eedB84A934C81eDc0a080D03C6e3C1d7A8399" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x986eedB84A934C81eDc0a080D03C6e3C1d7A8399/logo.png b/blockchains/smartchain/assets/0x986eedB84A934C81eDc0a080D03C6e3C1d7A8399/logo.png new file mode 100644 index 00000000..0c57b2f2 Binary files /dev/null and b/blockchains/smartchain/assets/0x986eedB84A934C81eDc0a080D03C6e3C1d7A8399/logo.png differ diff --git a/blockchains/smartchain/assets/0x9876F4b879cDe9Aa49Ffd260034A0698B7B33A49/info.json b/blockchains/smartchain/assets/0x9876F4b879cDe9Aa49Ffd260034A0698B7B33A49/info.json new file mode 100644 index 00000000..f07d209e --- /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 00000000..2ce033b0 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 00000000..9e5bd923 --- /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 00000000..419fcf7a 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 new file mode 100644 index 00000000..962f2b04 --- /dev/null +++ b/blockchains/smartchain/assets/0x988F7c894e4001EEB7B570CDE80dffE21CF7B6B9/info.json @@ -0,0 +1,40 @@ +{ + "name": "LUCRO", + "type": "BEP20", + "symbol": "LCR", + "decimals": 9, + "website": "https://evergrowegc.com/", + "description": "Lucro is an ecosystem token that powers a suite of leading utilities, including LunaSky - an NFT Marketplace, The Abstract - a 3d gaming/Metaverse platform and other utilities/partnerships under development.", + "explorer": "https://bscscan.com/token/0x988F7c894e4001EEB7B570CDE80dffE21CF7B6B9", + "status": "active", + "id": "0x988F7c894e4001EEB7B570CDE80dffE21CF7B6B9", + "links": [ + { + "name": "telegram", + "url": "https://t.me/evergrowcoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/evergrowegc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lucro/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lucro" + }, + { + "name": "x", + "url": "https://x.com/lucrotoken" + }, + { + "name": "discord", + "url": "https://discord.com/invite/evergrow" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x988F7c894e4001EEB7B570CDE80dffE21CF7B6B9/logo.png b/blockchains/smartchain/assets/0x988F7c894e4001EEB7B570CDE80dffE21CF7B6B9/logo.png new file mode 100644 index 00000000..370b240b Binary files /dev/null and b/blockchains/smartchain/assets/0x988F7c894e4001EEB7B570CDE80dffE21CF7B6B9/logo.png differ diff --git a/blockchains/smartchain/assets/0x988c11625472340b7B36FF1534893780E0d8d841/info.json b/blockchains/smartchain/assets/0x988c11625472340b7B36FF1534893780E0d8d841/info.json new file mode 100644 index 00000000..c36f6db6 --- /dev/null +++ b/blockchains/smartchain/assets/0x988c11625472340b7B36FF1534893780E0d8d841/info.json @@ -0,0 +1,37 @@ +{ + "name": "Wrapped Conceal", + "website": "https://conceal.network/", + "description": "Conceal Network is a secure peer-to-peer privacy framework empowering individuals and organizations to anonymously communicate and interact financially in a decentralized and censorship resistant environment.", + "explorer": "https://bscscan.com/token/0x988c11625472340b7B36FF1534893780E0d8d841", + "type": "BEP20", + "symbol": "wCCX", + "decimals": 6, + "status": "active", + "id": "0x988c11625472340b7B36FF1534893780E0d8d841", + "links": [ + { + "name": "github", + "url": "https://github.com/ConcealNetwork" + }, + { + "name": "x", + "url": "https://x.com/ConcealNetwork" + }, + { + "name": "telegram", + "url": "https://t.me/concealnetwork" + }, + { + "name": "discord", + "url": "https://discord.com/invite/YbpHVSd" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ConcealNetwork/" + }, + { + "name": "medium", + "url": "https://concealnetwork.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x988c11625472340b7B36FF1534893780E0d8d841/logo.png b/blockchains/smartchain/assets/0x988c11625472340b7B36FF1534893780E0d8d841/logo.png new file mode 100644 index 00000000..b9f69da4 Binary files /dev/null and b/blockchains/smartchain/assets/0x988c11625472340b7B36FF1534893780E0d8d841/logo.png differ diff --git a/blockchains/smartchain/assets/0x98920039fea77F10eC04c049D125A4217A4Fe0Eb/info.json b/blockchains/smartchain/assets/0x98920039fea77F10eC04c049D125A4217A4Fe0Eb/info.json new file mode 100644 index 00000000..400b274c --- /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 new file mode 100644 index 00000000..68788fc7 --- /dev/null +++ b/blockchains/smartchain/assets/0x98936Bde1CF1BFf1e7a8012Cee5e2583851f2067/info.json @@ -0,0 +1,33 @@ +{ + "name": "Annex", + "website": "https://www.annex.finance/", + "description": "Money Markets. A Decentralized Marketplace for Lenders and Borrowers", + "explorer": "https://bscscan.com/token/0x98936Bde1CF1BFf1e7a8012Cee5e2583851f2067", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/AnnexFinance" + }, + { + "name": "medium", + "url": "https://annexfinance.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/Annex_finance_group" + }, + { + "name": "github", + "url": "https://github.com/annexfinance/annex-protocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AnnexFinance/" + } + ], + "symbol": "ANN", + "decimals": 18, + "status": "active", + "id": "0x98936Bde1CF1BFf1e7a8012Cee5e2583851f2067" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x98936Bde1CF1BFf1e7a8012Cee5e2583851f2067/logo.png b/blockchains/smartchain/assets/0x98936Bde1CF1BFf1e7a8012Cee5e2583851f2067/logo.png new file mode 100644 index 00000000..b6d10cfc Binary files /dev/null and b/blockchains/smartchain/assets/0x98936Bde1CF1BFf1e7a8012Cee5e2583851f2067/logo.png differ diff --git a/blockchains/smartchain/assets/0x989b8F0219EB7aa0bED22E24f053Eb2B155f4394/info.json b/blockchains/smartchain/assets/0x989b8F0219EB7aa0bED22E24f053Eb2B155f4394/info.json new file mode 100644 index 00000000..ac529630 --- /dev/null +++ b/blockchains/smartchain/assets/0x989b8F0219EB7aa0bED22E24f053Eb2B155f4394/info.json @@ -0,0 +1,41 @@ +{ + "name": "MommyDoge Token", + "website": "https://mommydoge.com", + "description": "Mommy Doge is fully decentralized, environmental friendly and on a mission to support the Women's rights movement and gender equality initiatives", + "explorer": "https://bscscan.com/token/0x989b8f0219eb7aa0bed22e24f053eb2b155f4394", + "type": "BEP20", + "symbol": "MommyDoge", + "decimals": 9, + "status": "active", + "id": "0x989b8F0219EB7aa0bED22E24f053Eb2B155f4394", + "links": [ + { + "name": "whitepaper", + "url": "https://mommydoge.com/MommyDoge_Whitepaper.pdf" + }, + { + "name": "x", + "url": "https://x.com/NewMommyDoge" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MommyDogeCoin/" + }, + { + "name": "telegram", + "url": "https://t.me/MommyDogeCoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mommy-doge-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mommy-doge" + }, + { + "name": "discord", + "url": "https://discord.com/BGkFPN3WzT" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x989b8F0219EB7aa0bED22E24f053Eb2B155f4394/logo.png b/blockchains/smartchain/assets/0x989b8F0219EB7aa0bED22E24f053Eb2B155f4394/logo.png new file mode 100644 index 00000000..ad56c1ff Binary files /dev/null and b/blockchains/smartchain/assets/0x989b8F0219EB7aa0bED22E24f053Eb2B155f4394/logo.png differ diff --git a/blockchains/smartchain/assets/0x98A2500A2C3B8877B0eD5ac3ACC300C50Bf7064b/info.json b/blockchains/smartchain/assets/0x98A2500A2C3B8877B0eD5ac3ACC300C50Bf7064b/info.json new file mode 100644 index 00000000..3f312fa5 --- /dev/null +++ b/blockchains/smartchain/assets/0x98A2500A2C3B8877B0eD5ac3ACC300C50Bf7064b/info.json @@ -0,0 +1,45 @@ +{ + "name": "NOOT", + "type": "BEP20", + "symbol": "NOOT", + "decimals": 18, + "website": "https://www.noot.fun/", + "description": "Meme coin on the BNB chain, with 3% reflections and renounced contract. Audited and fast growing. With very own Chat2Earn Telegram bot.", + "explorer": "https://bscscan.com/token/0x98a2500a2c3b8877b0ed5ac3acc300c50bf7064b", + "status": "active", + "id": "0x98A2500A2C3B8877B0eD5ac3ACC300C50Bf7064b", + "links": [ + { + "name": "x", + "url": "https://x.com/nootcoinbnb" + }, + { + "name": "telegram", + "url": "https://t.me/nootnew" + }, + { + "name": "telegram_news", + "url": "https://t.me/nootcoin" + }, + { + "name": "docs", + "url": "https://docs.noot.fun/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/noot/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/noot" + }, + { + "name": "medium", + "url": "https://medium.com/@nootcoinbnb" + } + ], + "tags": [ + "memes", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x98A2500A2C3B8877B0eD5ac3ACC300C50Bf7064b/logo.png b/blockchains/smartchain/assets/0x98A2500A2C3B8877B0eD5ac3ACC300C50Bf7064b/logo.png new file mode 100644 index 00000000..897e2ba5 Binary files /dev/null and b/blockchains/smartchain/assets/0x98A2500A2C3B8877B0eD5ac3ACC300C50Bf7064b/logo.png differ diff --git a/blockchains/smartchain/assets/0x98BC4773Bd1e9A53631FD6028E06cd6cD17b7401/info.json b/blockchains/smartchain/assets/0x98BC4773Bd1e9A53631FD6028E06cd6cD17b7401/info.json new file mode 100644 index 00000000..47970480 --- /dev/null +++ b/blockchains/smartchain/assets/0x98BC4773Bd1e9A53631FD6028E06cd6cD17b7401/info.json @@ -0,0 +1,11 @@ +{ + "name": "Monkey TOKEN", + "website": "https://mbytoken.com", + "description": "MBY is made to make De-Fi great again", + "explorer": "https://bscscan.com/token/0x98BC4773Bd1e9A53631FD6028E06cd6cD17b7401", + "type": "BEP20", + "symbol": "MBY", + "decimals": 9, + "status": "active", + "id": "0x98BC4773Bd1e9A53631FD6028E06cd6cD17b7401" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x98BC4773Bd1e9A53631FD6028E06cd6cD17b7401/logo.png b/blockchains/smartchain/assets/0x98BC4773Bd1e9A53631FD6028E06cd6cD17b7401/logo.png new file mode 100644 index 00000000..6edba0e8 Binary files /dev/null and b/blockchains/smartchain/assets/0x98BC4773Bd1e9A53631FD6028E06cd6cD17b7401/logo.png differ diff --git a/blockchains/smartchain/assets/0x98f8669F6481EbB341B522fCD3663f79A3d1A6A7/info.json b/blockchains/smartchain/assets/0x98f8669F6481EbB341B522fCD3663f79A3d1A6A7/info.json new file mode 100644 index 00000000..a4f0fcfd --- /dev/null +++ b/blockchains/smartchain/assets/0x98f8669F6481EbB341B522fCD3663f79A3d1A6A7/info.json @@ -0,0 +1,34 @@ +{ + "name": "NEST Protocol", + "website": "https://nestprotocol.org/", + "description": "A defi infrastructure enabling all kinds of decentralized financial products trading", + "explorer": "https://bscscan.com/token/0x98f8669f6481ebb341b522fcd3663f79a3d1a6a7", + "symbol": "NEST", + "type": "BEP20", + "decimals": 18, + "id": "0x98f8669F6481EbB341B522fCD3663f79A3d1A6A7", + "status": "active", + "tags": [ + "defi", + "synthetics", + "deflationary" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nest-protocol/" + }, + { + "name": "github", + "url": "https://github.com/NEST-Protocol" + }, + { + "name": "x", + "url": "https://x.com/NEST_Protocol" + }, + { + "name": "whitepaper", + "url": "https://www.nestprotocol.org/doc/ennestwhitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x98f8669F6481EbB341B522fCD3663f79A3d1A6A7/logo.png b/blockchains/smartchain/assets/0x98f8669F6481EbB341B522fCD3663f79A3d1A6A7/logo.png new file mode 100644 index 00000000..0de1a124 Binary files /dev/null and b/blockchains/smartchain/assets/0x98f8669F6481EbB341B522fCD3663f79A3d1A6A7/logo.png differ diff --git a/blockchains/smartchain/assets/0x98fc5B3a39D712Fa5a826Df4F9c47Bb6c0F6F8a9/info.json b/blockchains/smartchain/assets/0x98fc5B3a39D712Fa5a826Df4F9c47Bb6c0F6F8a9/info.json new file mode 100644 index 00000000..f60c1169 --- /dev/null +++ b/blockchains/smartchain/assets/0x98fc5B3a39D712Fa5a826Df4F9c47Bb6c0F6F8a9/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitGay", + "website": "https://bitgay.org", + "description": "BitGay is the first LGBTQ+ community token on the Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x98fc5b3a39d712fa5a826df4f9c47bb6c0f6f8a9", + "type": "BEP20", + "symbol": "BitGay", + "decimals": 9, + "status": "active", + "id": "0x98fc5B3a39D712Fa5a826Df4F9c47Bb6c0F6F8a9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x98fc5B3a39D712Fa5a826Df4F9c47Bb6c0F6F8a9/logo.png b/blockchains/smartchain/assets/0x98fc5B3a39D712Fa5a826Df4F9c47Bb6c0F6F8a9/logo.png new file mode 100644 index 00000000..f5189870 Binary files /dev/null and b/blockchains/smartchain/assets/0x98fc5B3a39D712Fa5a826Df4F9c47Bb6c0F6F8a9/logo.png differ diff --git a/blockchains/smartchain/assets/0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79/info.json b/blockchains/smartchain/assets/0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79/info.json new file mode 100644 index 00000000..f62a6422 --- /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 00000000..cd7490c9 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 new file mode 100644 index 00000000..a2736458 --- /dev/null +++ b/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/info.json @@ -0,0 +1,25 @@ +{ + "name": "BNB pegged 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://bscscan.com/token/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85", + "type": "BEP20", + "symbol": "TT", + "decimals": 18, + "status": "active", + "id": "0x990E7154bB999FAa9b2fa5Ed29E822703311eA85", + "links": [ + { + "name": "x", + "url": "https://x.com/ThunderCoreLab" + }, + { + "name": "discord", + "url": "https://discord.com/channels/467102816230440970/468561199790030849" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/logo.png b/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/logo.png new file mode 100644 index 00000000..c408c0f2 Binary files /dev/null and b/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/logo.png differ diff --git a/blockchains/smartchain/assets/0x9910f48EF7bd0291bC050CF900D732C24b39Ec31/info.json b/blockchains/smartchain/assets/0x9910f48EF7bd0291bC050CF900D732C24b39Ec31/info.json new file mode 100644 index 00000000..c6dbe69d --- /dev/null +++ b/blockchains/smartchain/assets/0x9910f48EF7bd0291bC050CF900D732C24b39Ec31/info.json @@ -0,0 +1,33 @@ +{ + "name": "Mars Inu", + "type": "BEP20", + "symbol": "MARSINU", + "decimals": 9, + "website": "https://marsinu.com/", + "description": "MARS INU is a decentralized cryptocurrency token built on Binance Smart Chain network. It was created with the community and investor in mind.", + "explorer": "https://bscscan.com/token/0x9910f48EF7bd0291bC050CF900D732C24b39Ec31", + "status": "active", + "id": "0x9910f48EF7bd0291bC050CF900D732C24b39Ec31", + "links": [ + { + "name": "x", + "url": "https://x.com/MarsInuBsc" + }, + { + "name": "telegram", + "url": "https://t.me/MarsInuBsc" + }, + { + "name": "telegram_news", + "url": "https://t.me/MarsInuNews" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mars-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mars-inu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9910f48EF7bd0291bC050CF900D732C24b39Ec31/logo.png b/blockchains/smartchain/assets/0x9910f48EF7bd0291bC050CF900D732C24b39Ec31/logo.png new file mode 100644 index 00000000..125f3805 Binary files /dev/null and b/blockchains/smartchain/assets/0x9910f48EF7bd0291bC050CF900D732C24b39Ec31/logo.png differ diff --git a/blockchains/smartchain/assets/0x992879Cd8ce0c312d98648875B5A8D6D042cbF34/info.json b/blockchains/smartchain/assets/0x992879Cd8ce0c312d98648875B5A8D6D042cbF34/info.json new file mode 100644 index 00000000..abaaad6d --- /dev/null +++ b/blockchains/smartchain/assets/0x992879Cd8ce0c312d98648875B5A8D6D042cbF34/info.json @@ -0,0 +1,24 @@ +{ + "name": "Circle Internet Group (Ondo Tokenized)", + "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 00000000..33b0bad3 Binary files /dev/null and b/blockchains/smartchain/assets/0x992879Cd8ce0c312d98648875B5A8D6D042cbF34/logo.png differ diff --git a/blockchains/smartchain/assets/0x994517e000aa3F117E7Ad61B0e2336C76B4Fd94a/info.json b/blockchains/smartchain/assets/0x994517e000aa3F117E7Ad61B0e2336C76B4Fd94a/info.json new file mode 100644 index 00000000..5b9e0220 --- /dev/null +++ b/blockchains/smartchain/assets/0x994517e000aa3F117E7Ad61B0e2336C76B4Fd94a/info.json @@ -0,0 +1,11 @@ +{ + "name": "MATADOR Token", + "website": "https://www.matadortoken.com/", + "description": "Matador was created on the Binance Smart Chain Network with specific tokenomics that were created to divert market manipulators and to #stoptherug set to tax any transfer or sale at a rate of 30%, redistributing those funds to holders, liquidity and to burn.", + "explorer": "https://bscscan.com/token/0x994517e000aa3F117E7Ad61B0e2336C76B4Fd94a", + "type": "BEP20", + "symbol": "MTDR", + "decimals": 18, + "status": "active", + "id": "0x994517e000aa3F117E7Ad61B0e2336C76B4Fd94a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x994517e000aa3F117E7Ad61B0e2336C76B4Fd94a/logo.png b/blockchains/smartchain/assets/0x994517e000aa3F117E7Ad61B0e2336C76B4Fd94a/logo.png new file mode 100644 index 00000000..f062fbc8 Binary files /dev/null and b/blockchains/smartchain/assets/0x994517e000aa3F117E7Ad61B0e2336C76B4Fd94a/logo.png differ diff --git a/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json b/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json new file mode 100644 index 00000000..ad9d2a09 --- /dev/null +++ b/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json @@ -0,0 +1,39 @@ +{ + "name": "MetaDoge V2", + "type": "BEP20", + "symbol": "METADOGEV2", + "decimals": 18, + "website": "https://www.metadoge.live", + "description": "MetaDoge is a community-driven project. It is a Memecoin and utility token in the crypto sphere.", + "explorer": "https://bscscan.com/token/0x9953170dcAac530AD7D6949c7295207c6ec5669D", + "status": "active", + "id": "0x9953170dcAac530AD7D6949c7295207c6ec5669D", + "links": [ + { + "name": "x", + "url": "https://x.com/MetaDogeBSC" + }, + { + "name": "telegram", + "url": "https://t.me/MetaDoge_Official" + }, + { + "name": "whitepaper", + "url": "https://secureservercdn.net/160.153.137.163/nxz.d14.myftpupload.com/wp-content/uploads/2022/02/MetaDogeV2-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metadoge/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/metadoge-v2" + } + ], + "tags": [ + "nft", + "staking", + "memes", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/logo.png b/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/logo.png new file mode 100644 index 00000000..4d21eef1 Binary files /dev/null and b/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/logo.png differ diff --git a/blockchains/smartchain/assets/0x995ADd4bA29a628A57930a8a185c62cA044eC090/info.json b/blockchains/smartchain/assets/0x995ADd4bA29a628A57930a8a185c62cA044eC090/info.json new file mode 100644 index 00000000..181a6a3b --- /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 00000000..af75d5c9 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 00000000..100cc8e2 --- /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 00000000..df108d7a 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 new file mode 100644 index 00000000..29648e1e --- /dev/null +++ b/blockchains/smartchain/assets/0x996c1bf72Ec220289ae0edd3a8d77080642121a2/info.json @@ -0,0 +1,41 @@ +{ + "name": "DefiConnect", + "type": "BEP20", + "symbol": "DFC", + "decimals": 8, + "website": "https://deficonnect.tech/", + "description": "Defi Connect aims to bring real-life and DeFi together by building applications of DeFi in digital marketing, healthcare, transportation, and logistics", + "explorer": "https://bscscan.com/token/0x996c1bf72Ec220289ae0edd3a8d77080642121a2", + "status": "active", + "id": "0x996c1bf72Ec220289ae0edd3a8d77080642121a2", + "links": [ + { + "name": "x", + "url": "https://x.com/deficonnect" + }, + { + "name": "github", + "url": "https://github.com/deficonnect/dfctoken/" + }, + { + "name": "telegram", + "url": "https://t.me/deficonnectgroup" + }, + { + "name": "telegram_news", + "url": "https://t.me/deficonnect" + }, + { + "name": "blog", + "url": "https://deficonnect.medium.com/" + }, + { + "name": "medium", + "url": "https://deficonnect.medium.com/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x996c1bf72ec220289ae0edd3a8d77080642121a2#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x996c1bf72Ec220289ae0edd3a8d77080642121a2/logo.png b/blockchains/smartchain/assets/0x996c1bf72Ec220289ae0edd3a8d77080642121a2/logo.png new file mode 100644 index 00000000..6face351 Binary files /dev/null and b/blockchains/smartchain/assets/0x996c1bf72Ec220289ae0edd3a8d77080642121a2/logo.png differ diff --git a/blockchains/smartchain/assets/0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8/info.json b/blockchains/smartchain/assets/0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8/info.json new file mode 100644 index 00000000..6eeb52e7 --- /dev/null +++ b/blockchains/smartchain/assets/0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8/info.json @@ -0,0 +1,25 @@ +{ + "name": "PathFund", + "type": "BEP20", + "symbol": "PATH", + "decimals": 9, + "website": "https://pathfund.net", + "description": "The first pre-auditing self-sustained launchpad https://github.com/trustwallet/assets/pull/8804", + "explorer": "https://bscscan.com/token/0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8", + "status": "abandoned", + "id": "0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8", + "links": [ + { + "name": "x", + "url": "https://x.com/@PathFund" + }, + { + "name": "github", + "url": "https://github.com/PathFund" + }, + { + "name": "telegram", + "url": "https://t.me/PathFund" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x997A58129890bBdA032231A52eD1ddC845fc18e1/info.json b/blockchains/smartchain/assets/0x997A58129890bBdA032231A52eD1ddC845fc18e1/info.json new file mode 100644 index 00000000..2c5353eb --- /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 00000000..408cc5ca 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 00000000..fed3563f --- /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 00000000..6546dcac Binary files /dev/null and b/blockchains/smartchain/assets/0x998305efDC264b9674178899FFfBb44a47134a76/logo.png differ diff --git a/blockchains/smartchain/assets/0x9986aa69545dC44B66fc85Ba505Fd66FEAE0d6A5/info.json b/blockchains/smartchain/assets/0x9986aa69545dC44B66fc85Ba505Fd66FEAE0d6A5/info.json new file mode 100644 index 00000000..8c54282a --- /dev/null +++ b/blockchains/smartchain/assets/0x9986aa69545dC44B66fc85Ba505Fd66FEAE0d6A5/info.json @@ -0,0 +1,11 @@ +{ + "name": "BidCommerce", + "type": "BEP20", + "symbol": "BIDCOM", + "decimals": 9, + "website": "https://bidcommerce.app/", + "description": "First Blockchain Based E-commerce System And Farming Bsc Token.", + "explorer": "https://bscscan.com/token/0x9986aa69545dC44B66fc85Ba505Fd66FEAE0d6A5", + "status": "active", + "id": "0x9986aa69545dC44B66fc85Ba505Fd66FEAE0d6A5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9986aa69545dC44B66fc85Ba505Fd66FEAE0d6A5/logo.png b/blockchains/smartchain/assets/0x9986aa69545dC44B66fc85Ba505Fd66FEAE0d6A5/logo.png new file mode 100644 index 00000000..4410c330 Binary files /dev/null and b/blockchains/smartchain/assets/0x9986aa69545dC44B66fc85Ba505Fd66FEAE0d6A5/logo.png differ diff --git a/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/info.json b/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/info.json new file mode 100644 index 00000000..ec19b350 --- /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 00000000..8fd8d3e7 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 00000000..405efc0f --- /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 00000000..3da9a050 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 new file mode 100644 index 00000000..e48020c3 --- /dev/null +++ b/blockchains/smartchain/assets/0x99E3259d1D780746c62B4a90833d607b40Fb36Ce/info.json @@ -0,0 +1,29 @@ +{ + "name": "Community Doge Coin", + "website": "https://dogecoin.cc/", + "description": "CCDOGE is an auto-farming, auto-deflation, auto-market-maker token based on BSC network.", + "explorer": "https://bscscan.com/token/0x99E3259d1D780746c62B4a90833d607b40Fb36Ce", + "type": "BEP20", + "symbol": "CCDOGE", + "decimals": 9, + "status": "active", + "id": "0x99E3259d1D780746c62B4a90833d607b40Fb36Ce", + "links": [ + { + "name": "x", + "url": "https://x.com/CCdogecoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/community-doge-coin/" + }, + { + "name": "medium", + "url": "https://dogecoincc.medium.com" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/community-doge-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x99E3259d1D780746c62B4a90833d607b40Fb36Ce/logo.png b/blockchains/smartchain/assets/0x99E3259d1D780746c62B4a90833d607b40Fb36Ce/logo.png new file mode 100644 index 00000000..80093064 Binary files /dev/null and b/blockchains/smartchain/assets/0x99E3259d1D780746c62B4a90833d607b40Fb36Ce/logo.png differ diff --git a/blockchains/smartchain/assets/0x99e01F02d66455Bb106D91D469c9EAF6aB4904f6/info.json b/blockchains/smartchain/assets/0x99e01F02d66455Bb106D91D469c9EAF6aB4904f6/info.json new file mode 100644 index 00000000..fe1e6cb7 --- /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 00000000..0d5ffdea 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 new file mode 100644 index 00000000..0b1c1332 --- /dev/null +++ b/blockchains/smartchain/assets/0x9A21477b4e9EA5F7946D75876A186A1194559828/info.json @@ -0,0 +1,29 @@ +{ + "name": "FindShibby", + "type": "BEP20", + "symbol": "FSHIBBY", + "decimals": 18, + "website": "https://findshibby.cash", + "description": "Token that has real-world usecases: FindShibby App & Shibby Snacks. Choose your own rewards! Earn rewards in different tokens like SHIBA Inu, BNB, USDT and many more.", + "explorer": "https://bscscan.com/token/0x9A21477b4e9EA5F7946D75876A186A1194559828", + "status": "active", + "id": "0x9A21477b4e9EA5F7946D75876A186A1194559828", + "links": [ + { + "name": "telegram", + "url": "https://t.me/findshibby" + }, + { + "name": "x", + "url": "https://x.com/findshibby" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCnaZ_nwXn7UW66eHOwO505g" + }, + { + "name": "facebook", + "url": "https://facebook.com/findshibby" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9A21477b4e9EA5F7946D75876A186A1194559828/logo.png b/blockchains/smartchain/assets/0x9A21477b4e9EA5F7946D75876A186A1194559828/logo.png new file mode 100644 index 00000000..f1b860a0 Binary files /dev/null and b/blockchains/smartchain/assets/0x9A21477b4e9EA5F7946D75876A186A1194559828/logo.png differ diff --git a/blockchains/smartchain/assets/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/info.json b/blockchains/smartchain/assets/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/info.json new file mode 100644 index 00000000..14ad31dd --- /dev/null +++ b/blockchains/smartchain/assets/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/info.json @@ -0,0 +1,36 @@ +{ + "name": "ZILLION AAKAR XO", + "type": "BEP20", + "symbol": "ZAX", + "decimals": 9, + "website": "https://www.zillionxo.io/", + "description": "Zax is a simple utility token created with an existence on Binance Smart Chain! As the name suggests, this token encompasses the entire crypto universe in one circle.", + "explorer": "https://bscscan.com/token/0x9A2478C4036548864d96a97Fbf93f6a3341fedac", + "status": "active", + "id": "0x9A2478C4036548864d96a97Fbf93f6a3341fedac", + "links": [ + { + "name": "x", + "url": "https://x.com/ZillionXO" + }, + { + "name": "facebook", + "url": "https://facebook.com/people/Zillion-Aakar-XO/100083067863940/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zillion-aakar-xo/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/zillion-aakar-xo" + }, + { + "name": "medium", + "url": "https://medium.com/@zillionzax" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/logo.png b/blockchains/smartchain/assets/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/logo.png new file mode 100644 index 00000000..3f9f03bb Binary files /dev/null and b/blockchains/smartchain/assets/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/logo.png differ diff --git a/blockchains/smartchain/assets/0x9A2EADe89b40f9C4180f0B4ebD7a39ae0F2EFBA8/info.json b/blockchains/smartchain/assets/0x9A2EADe89b40f9C4180f0B4ebD7a39ae0F2EFBA8/info.json new file mode 100644 index 00000000..c3f9f2df --- /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 00000000..1298f07b 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 new file mode 100644 index 00000000..a7ae6879 --- /dev/null +++ b/blockchains/smartchain/assets/0x9A624b4190F38c888BbF7F845f14198f9C951de7/info.json @@ -0,0 +1,37 @@ +{ + "name": "BURNACE", + "type": "BEP20", + "symbol": "ACE", + "decimals": 8, + "website": "https://burnace.io", + "description": "Burnace is the World's Highest Hyper deflationary Token created to evolve with burn methods.", + "explorer": "https://bscscan.com/token/0x9A624b4190F38c888BbF7F845f14198f9C951de7", + "status": "active", + "id": "0x9A624b4190F38c888BbF7F845f14198f9C951de7", + "links": [ + { + "name": "x", + "url": "https://x.com/burnace_io" + }, + { + "name": "github", + "url": "https://github.com/burnace/burnace" + }, + { + "name": "telegram", + "url": "https://t.me/burnace" + }, + { + "name": "telegram_news", + "url": "https://t.me/burnacenews" + }, + { + "name": "blog", + "url": "https://burnace.medium.com" + }, + { + "name": "docs", + "url": "https://docs.burnace.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9A624b4190F38c888BbF7F845f14198f9C951de7/logo.png b/blockchains/smartchain/assets/0x9A624b4190F38c888BbF7F845f14198f9C951de7/logo.png new file mode 100644 index 00000000..713c88b1 Binary files /dev/null and b/blockchains/smartchain/assets/0x9A624b4190F38c888BbF7F845f14198f9C951de7/logo.png differ diff --git a/blockchains/smartchain/assets/0x9AA6FC71aed1130DeE06a91A487BF5eA481dE80D/info.json b/blockchains/smartchain/assets/0x9AA6FC71aed1130DeE06a91A487BF5eA481dE80D/info.json new file mode 100644 index 00000000..a9ba3fe8 --- /dev/null +++ b/blockchains/smartchain/assets/0x9AA6FC71aed1130DeE06a91A487BF5eA481dE80D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Coco Swap", + "type": "BEP20", + "symbol": "COCO", + "decimals": 18, + "website": "https://coco-swap.finance", + "description": "COCO Swap token will be the fuel behind the Coco Swap decentralized platform. It is a progressive deflatory token build on latest DeFi protocol systems.", + "explorer": "https://bscscan.com/token/0x9AA6FC71aed1130DeE06a91A487BF5eA481dE80D", + "status": "active", + "id": "0x9AA6FC71aed1130DeE06a91A487BF5eA481dE80D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9AA6FC71aed1130DeE06a91A487BF5eA481dE80D/logo.png b/blockchains/smartchain/assets/0x9AA6FC71aed1130DeE06a91A487BF5eA481dE80D/logo.png new file mode 100644 index 00000000..03dfcedd Binary files /dev/null and b/blockchains/smartchain/assets/0x9AA6FC71aed1130DeE06a91A487BF5eA481dE80D/logo.png differ diff --git a/blockchains/smartchain/assets/0x9AECF1aC2c833A59eAD9E46098B6dC89D95F7777/info.json b/blockchains/smartchain/assets/0x9AECF1aC2c833A59eAD9E46098B6dC89D95F7777/info.json new file mode 100644 index 00000000..a2236c0a --- /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 new file mode 100644 index 00000000..c1294256 --- /dev/null +++ b/blockchains/smartchain/assets/0x9Ab70e92319f0b9127df78868Fd3655fB9f1E322/info.json @@ -0,0 +1,36 @@ +{ + "name": "WeWay", + "type": "BEP20", + "symbol": "WWY", + "decimals": 18, + "website": "https://weway.io/", + "description": "Best Solutions for the best web 3.0 social relations.", + "explorer": "https://bscscan.com/token/0x9Ab70e92319f0b9127df78868Fd3655fB9f1E322", + "status": "active", + "id": "0x9Ab70e92319f0b9127df78868Fd3655fB9f1E322", + "links": [ + { + "name": "x", + "url": "https://x.com/WeWay_io" + }, + { + "name": "telegram_news", + "url": "https://t.me/WeWay_io" + }, + { + "name": "github", + "url": "https://github.com/wewayio/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weway/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/weway/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9Ab70e92319f0b9127df78868Fd3655fB9f1E322/logo.png b/blockchains/smartchain/assets/0x9Ab70e92319f0b9127df78868Fd3655fB9f1E322/logo.png new file mode 100644 index 00000000..868658f9 Binary files /dev/null and b/blockchains/smartchain/assets/0x9Ab70e92319f0b9127df78868Fd3655fB9f1E322/logo.png differ diff --git a/blockchains/smartchain/assets/0x9Ac983826058b8a9C7Aa1C9171441191232E8404/info.json b/blockchains/smartchain/assets/0x9Ac983826058b8a9C7Aa1C9171441191232E8404/info.json new file mode 100644 index 00000000..d01a5dad --- /dev/null +++ b/blockchains/smartchain/assets/0x9Ac983826058b8a9C7Aa1C9171441191232E8404/info.json @@ -0,0 +1,41 @@ +{ + "name": "BNB pegged 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", + "research": "https://research.binance.com/en/projects/synthetix", + "type": "BEP20", + "symbol": "SNX", + "decimals": 18, + "status": "active", + "id": "0x9Ac983826058b8a9C7Aa1C9171441191232E8404", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/Synthetixio/synthetix" + }, + { + "name": "x", + "url": "https://x.com/synthetix_io" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/synthetix_io/" + }, + { + "name": "blog", + "url": "https://blog.havven.io/" + }, + { + "name": "whitepaper", + "url": "https://synthetix.io/uploads/havven_whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/havven/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9Ac983826058b8a9C7Aa1C9171441191232E8404/logo.png b/blockchains/smartchain/assets/0x9Ac983826058b8a9C7Aa1C9171441191232E8404/logo.png new file mode 100644 index 00000000..2a850de0 Binary files /dev/null and b/blockchains/smartchain/assets/0x9Ac983826058b8a9C7Aa1C9171441191232E8404/logo.png differ diff --git a/blockchains/smartchain/assets/0x9Adf6E139025B29386115dcb7970020D69011937/info.json b/blockchains/smartchain/assets/0x9Adf6E139025B29386115dcb7970020D69011937/info.json new file mode 100644 index 00000000..bf932594 --- /dev/null +++ b/blockchains/smartchain/assets/0x9Adf6E139025B29386115dcb7970020D69011937/info.json @@ -0,0 +1,11 @@ +{ + "name": "GIFT Coin", + "website": "https://www.gift-coin.org/", + "description": "GIFT is a utility token for use with the GIFT platform. The token's utility is centered around crypto e-gifting.", + "explorer": "https://bscscan.com/token/0x9adf6e139025b29386115dcb7970020d69011937", + "type": "BEP20", + "symbol": "GIFT", + "decimals": 18, + "status": "active", + "id": "0x9Adf6E139025B29386115dcb7970020D69011937" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9Adf6E139025B29386115dcb7970020D69011937/logo.png b/blockchains/smartchain/assets/0x9Adf6E139025B29386115dcb7970020D69011937/logo.png new file mode 100644 index 00000000..e77f0426 Binary files /dev/null and b/blockchains/smartchain/assets/0x9Adf6E139025B29386115dcb7970020D69011937/logo.png differ diff --git a/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/info.json b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/info.json new file mode 100644 index 00000000..98d18857 --- /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 00000000..de6546b7 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 new file mode 100644 index 00000000..a4d13927 --- /dev/null +++ b/blockchains/smartchain/assets/0x9AeF8F6a15cC1de43Ce6445A6fE2d344D3843a29/info.json @@ -0,0 +1,21 @@ +{ + "name": "HalalCoin", + "website": "https://halalco.in", + "description": "HalalCoin is a deflationary store of value to help charity while making its community more wealthy.", + "explorer": "https://bscscan.com/token/0x9aef8f6a15cc1de43ce6445a6fe2d344d3843a29", + "type": "BEP20", + "symbol": "HALAL", + "decimals": 9, + "status": "active", + "id": "0x9AeF8F6a15cC1de43Ce6445A6fE2d344D3843a29", + "links": [ + { + "name": "x", + "url": "https://x.com/coin_halal" + }, + { + "name": "telegram", + "url": "https://t.me/halalcoindiscuss" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9AeF8F6a15cC1de43Ce6445A6fE2d344D3843a29/logo.png b/blockchains/smartchain/assets/0x9AeF8F6a15cC1de43Ce6445A6fE2d344D3843a29/logo.png new file mode 100644 index 00000000..84e5e211 Binary files /dev/null and b/blockchains/smartchain/assets/0x9AeF8F6a15cC1de43Ce6445A6fE2d344D3843a29/logo.png differ diff --git a/blockchains/smartchain/assets/0x9B44Df3318972bE845d83f961735609137C4C23c/info.json b/blockchains/smartchain/assets/0x9B44Df3318972bE845d83f961735609137C4C23c/info.json new file mode 100644 index 00000000..c55ac8f1 --- /dev/null +++ b/blockchains/smartchain/assets/0x9B44Df3318972bE845d83f961735609137C4C23c/info.json @@ -0,0 +1,12 @@ +{ + "name": "Propel", + "website": "https://payrue.com/", + "description": "PayRue is a financial platform that operates exchanges, wallets, and transfers with cryptocurrencies.", + "explorer": "https://bscscan.com/token/0x9b44df3318972be845d83f961735609137c4c23c", + "research": "", + "type": "BEP20", + "symbol": "PROPEL", + "decimals": 18, + "status": "active", + "id": "0x9B44Df3318972bE845d83f961735609137C4C23c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9B44Df3318972bE845d83f961735609137C4C23c/logo.png b/blockchains/smartchain/assets/0x9B44Df3318972bE845d83f961735609137C4C23c/logo.png new file mode 100644 index 00000000..61ac1bdf Binary files /dev/null and b/blockchains/smartchain/assets/0x9B44Df3318972bE845d83f961735609137C4C23c/logo.png differ diff --git a/blockchains/smartchain/assets/0x9B6B44FA816C5Da30DEb7d7d640D7644C2060b0e/info.json b/blockchains/smartchain/assets/0x9B6B44FA816C5Da30DEb7d7d640D7644C2060b0e/info.json new file mode 100644 index 00000000..94bdaae4 --- /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 00000000..6869fae3 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 00000000..805b2dc0 --- /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 00000000..af596565 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 00000000..986cf87f --- /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 00000000..1a14dd8a Binary files /dev/null and b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/logo.png differ diff --git a/blockchains/smartchain/assets/0x9BD547446Ea13C0c13Df2c1885e1f5B019a77441/info.json b/blockchains/smartchain/assets/0x9BD547446Ea13C0c13Df2c1885e1f5B019a77441/info.json new file mode 100644 index 00000000..bbfa04f0 --- /dev/null +++ b/blockchains/smartchain/assets/0x9BD547446Ea13C0c13Df2c1885e1f5B019a77441/info.json @@ -0,0 +1,12 @@ +{ + "name": "Tree Token", + "website": "https://www.koalaclancyfoundation.org.au", + "description": "Three Token pegged 1:1 with AUD for the donation distribution to Australian bushfire NGO partners.", + "explorer": "https://bscscan.com/token/0x9BD547446Ea13C0c13Df2c1885e1f5B019a77441", + "research": "", + "type": "BEP20", + "symbol": "TREE", + "decimals": 2, + "status": "active", + "id": "0x9BD547446Ea13C0c13Df2c1885e1f5B019a77441" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9BD547446Ea13C0c13Df2c1885e1f5B019a77441/logo.png b/blockchains/smartchain/assets/0x9BD547446Ea13C0c13Df2c1885e1f5B019a77441/logo.png new file mode 100644 index 00000000..fb5740f3 Binary files /dev/null and b/blockchains/smartchain/assets/0x9BD547446Ea13C0c13Df2c1885e1f5B019a77441/logo.png differ diff --git a/blockchains/smartchain/assets/0x9BeEE89723cEeC27d7c2834bec6834208FFdc202/info.json b/blockchains/smartchain/assets/0x9BeEE89723cEeC27d7c2834bec6834208FFdc202/info.json new file mode 100644 index 00000000..61f306d6 --- /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 00000000..8937d17d 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 new file mode 100644 index 00000000..60c2c925 --- /dev/null +++ b/blockchains/smartchain/assets/0x9C28E48Ea9170d9A9cB76d338655b8bd4124BC7A/info.json @@ -0,0 +1,30 @@ +{ + "name": "EarnX", + "website": "http://www.yearnclassic.finance/", + "short_description": "EarnX is the frictionless utility token for the unique physical NFTs on Yearn Classic platform", + "description": "EarnX is unheard of the version of NFTs that can retain their value lifelong and will be totally driven by our community. For EARNX, we will bring a completely new category of NFTs which will be a revolutionary in NFT ecosystem. eg., Persian Carpets NFTs which will be couriered to buyers with NFT RFID.", + "explorer": "https://bscscan.com/token/0x9c28e48ea9170d9a9cb76d338655b8bd4124bc7a", + "type": "BEP20", + "symbol": "EarnX", + "decimals": 9, + "status": "active", + "id": "0x9C28E48Ea9170d9A9cB76d338655b8bd4124BC7A", + "links": [ + { + "name": "github", + "url": "https://github.com/YearnClassic" + }, + { + "name": "x", + "url": "https://x.com/earn_finance" + }, + { + "name": "telegram", + "url": "https://t.me/earndefi" + }, + { + "name": "medium", + "url": "https://earnfinance.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9C28E48Ea9170d9A9cB76d338655b8bd4124BC7A/logo.png b/blockchains/smartchain/assets/0x9C28E48Ea9170d9A9cB76d338655b8bd4124BC7A/logo.png new file mode 100644 index 00000000..b17cfc68 Binary files /dev/null and b/blockchains/smartchain/assets/0x9C28E48Ea9170d9A9cB76d338655b8bd4124BC7A/logo.png differ diff --git a/blockchains/smartchain/assets/0x9C3Bbff333F4AEAB60B3c060607b7C505Ff30C82/info.json b/blockchains/smartchain/assets/0x9C3Bbff333F4AEAB60B3c060607b7C505Ff30C82/info.json new file mode 100644 index 00000000..a80af5da --- /dev/null +++ b/blockchains/smartchain/assets/0x9C3Bbff333F4AEAB60B3c060607b7C505Ff30C82/info.json @@ -0,0 +1,11 @@ +{ + "name": "upBNB", + "type": "BEP20", + "symbol": "upBNB", + "decimals": 18, + "website": "https://upbnb.finance/", + "description": "From the developers of Rootkit Finance - upBNB (upBNB) is The first ERC-31337 token on Binance Smart Chain. upBNB will be the cornerstone asset and vault for the upToken ecosystem on BSC", + "explorer": "https://bscscan.com/token/0x9c3bbff333f4aeab60b3c060607b7c505ff30c82", + "status": "active", + "id": "0x9C3Bbff333F4AEAB60B3c060607b7C505Ff30C82" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9C3Bbff333F4AEAB60B3c060607b7C505Ff30C82/logo.png b/blockchains/smartchain/assets/0x9C3Bbff333F4AEAB60B3c060607b7C505Ff30C82/logo.png new file mode 100644 index 00000000..32dc6c8a Binary files /dev/null and b/blockchains/smartchain/assets/0x9C3Bbff333F4AEAB60B3c060607b7C505Ff30C82/logo.png differ diff --git a/blockchains/smartchain/assets/0x9C65AB58d8d978DB963e63f2bfB7121627e3a739/info.json b/blockchains/smartchain/assets/0x9C65AB58d8d978DB963e63f2bfB7121627e3a739/info.json new file mode 100644 index 00000000..d474e86a --- /dev/null +++ b/blockchains/smartchain/assets/0x9C65AB58d8d978DB963e63f2bfB7121627e3a739/info.json @@ -0,0 +1,28 @@ +{ + "name": "MDX Token", + "website": "https://bsc.mdex.com/", + "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.", + "explorer": "https://bscscan.com/token/0x9C65AB58d8d978DB963e63f2bfB7121627e3a739", + "type": "BEP20", + "symbol": "MDX", + "decimals": 18, + "status": "active", + "id": "0x9C65AB58d8d978DB963e63f2bfB7121627e3a739", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/Mdextech" + }, + { + "name": "github", + "url": "https://github.com/mdexSwap" + }, + { + "name": "telegram", + "url": "https://t.me/MixDex" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9C65AB58d8d978DB963e63f2bfB7121627e3a739/logo.png b/blockchains/smartchain/assets/0x9C65AB58d8d978DB963e63f2bfB7121627e3a739/logo.png new file mode 100644 index 00000000..484410a9 Binary files /dev/null and b/blockchains/smartchain/assets/0x9C65AB58d8d978DB963e63f2bfB7121627e3a739/logo.png differ diff --git a/blockchains/smartchain/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/info.json b/blockchains/smartchain/assets/0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649/info.json new file mode 100644 index 00000000..fc4c8397 --- /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 00000000..8de8678b 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 new file mode 100644 index 00000000..7efa4f06 --- /dev/null +++ b/blockchains/smartchain/assets/0x9CEFd9588f076c5f805341864adC8a6F077A5b99/info.json @@ -0,0 +1,33 @@ +{ + "name": "867", + "type": "BEP20", + "symbol": "$867", + "decimals": 9, + "website": "https://867crypto.com/", + "description": "The $867 Casino is an all-inclusive crypto casino and community entertainment platform! With various casino style games scheduled for release! The 867 Casino is sure to entertain everyone! /KEEP_WATCHING The casino platform will allow holders of $867 tokens to access and play a wide range of casino style, casino tournament style games, and skill based games. ", + "explorer": "https://bscscan.com/token/0x9CEFd9588f076c5f805341864adC8a6F077A5b99", + "status": "active", + "id": "0x9CEFd9588f076c5f805341864adC8a6F077A5b99", + "links": [ + { + "name": "x", + "url": "https://x.com/867_crypto" + }, + { + "name": "telegram", + "url": "https://t.me/EightSixSeven" + }, + { + "name": "whitepaper", + "url": "https://867crypto.com/wp-content/uploads/2021/08/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/867/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/867" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9CEFd9588f076c5f805341864adC8a6F077A5b99/logo.png b/blockchains/smartchain/assets/0x9CEFd9588f076c5f805341864adC8a6F077A5b99/logo.png new file mode 100644 index 00000000..3e51560e Binary files /dev/null and b/blockchains/smartchain/assets/0x9CEFd9588f076c5f805341864adC8a6F077A5b99/logo.png differ diff --git a/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/info.json b/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/info.json new file mode 100644 index 00000000..0d9e04af --- /dev/null +++ b/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/info.json @@ -0,0 +1,36 @@ +{ + "name": "Galaxy Heroes", + "type": "BEP20", + "symbol": "GHC", + "decimals": 18, + "website": "https://galaxyheroes.com", + "description": "This is not your regular Binance Smart Chain Token. Here we build for the longterm and always based on utility development. GHC is your gateway to a decentralized galaxy where holders can take leadership of their finances and earn sparkly rewards.", + "explorer": "https://bscscan.com/token/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45", + "status": "active", + "id": "0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45", + "links": [ + { + "name": "x", + "url": "https://x.com/GalaxyHeroesGHC" + }, + { + "name": "facebook", + "url": "https://facebook.com/galaxyheroescoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/galaxy-heroes-coin-new/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/galaxy-heroes" + }, + { + "name": "telegram", + "url": "https://t.me/galaxyheroescoin" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/logo.png b/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/logo.png new file mode 100644 index 00000000..7fdeef83 Binary files /dev/null and b/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/logo.png differ diff --git a/blockchains/smartchain/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/info.json b/blockchains/smartchain/assets/0x9Ce84F6A69986a83d92C324df10bC8E64771030f/info.json new file mode 100644 index 00000000..83414475 --- /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 00000000..592987e1 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 00000000..ee812717 --- /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 00000000..5001a982 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 new file mode 100644 index 00000000..5f73085c --- /dev/null +++ b/blockchains/smartchain/assets/0x9D173E6c594f479B4d47001F8E6A95A7aDDa42bC/info.json @@ -0,0 +1,29 @@ +{ + "name": "CryptoZoon", + "type": "BEP20", + "symbol": "ZOON", + "decimals": 18, + "website": "https://cryptozoon.io", + "description": "CryptoZoon is a complete platform of Digital Creatures Universe live on the Binance Smart Chain (BSC).", + "explorer": "https://bscscan.com/token/0x9D173E6c594f479B4d47001F8E6A95A7aDDa42bC", + "status": "active", + "id": "0x9D173E6c594f479B4d47001F8E6A95A7aDDa42bC", + "links": [ + { + "name": "telegram", + "url": "https://t.me/CryptoZoonBSC" + }, + { + "name": "x", + "url": "https://x.com/CryptoZoonBSC" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/CryptoZoon" + }, + { + "name": "docs", + "url": "https://docs.cryptozoon.io/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9D173E6c594f479B4d47001F8E6A95A7aDDa42bC/logo.png b/blockchains/smartchain/assets/0x9D173E6c594f479B4d47001F8E6A95A7aDDa42bC/logo.png new file mode 100644 index 00000000..3d3e366c Binary files /dev/null and b/blockchains/smartchain/assets/0x9D173E6c594f479B4d47001F8E6A95A7aDDa42bC/logo.png differ diff --git a/blockchains/smartchain/assets/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb/info.json b/blockchains/smartchain/assets/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb/info.json new file mode 100644 index 00000000..3e1ca000 --- /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 00000000..af880bee 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 00000000..4b06307d --- /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 00000000..3c1a6a71 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 new file mode 100644 index 00000000..72cb115f --- /dev/null +++ b/blockchains/smartchain/assets/0x9D4451151A8dE5B545a1bC6c8fdEB9d94a2868e1/info.json @@ -0,0 +1,48 @@ +{ + "name": "Lunar", + "type": "BEP20", + "symbol": "LNR", + "decimals": 9, + "website": "https://lunar.io/", + "description": "Decentralization is great for democratizing finance, but along with it comes massive fragmentation of the user experience. Lunar believes it is time to re-centralize DeFi around the most important part of the network: The user. This begins with their DeFi application, Lunar, that aims to streamline the entire process of crypto and NFT trading into one intuitive interface\". Lunar replaces the 10+ seperate tools needed to trade and research crypto with a single platform that gives users near-instant access to the functionality they need. ", + "explorer": "https://bscscan.com/token/0x9d4451151a8de5b545a1bc6c8fdeb9d94a2868e1", + "status": "active", + "id": "0x9D4451151A8dE5B545a1bC6c8fdEB9d94a2868e1", + "links": [ + { + "name": "x", + "url": "https://x.com/lnrdefi" + }, + { + "name": "telegram", + "url": "https://t.me/lnrdefi" + }, + { + "name": "reddit", + "url": "https://reddit.com/lnrdefi" + }, + { + "name": "whitepaper", + "url": "https://assets.website-files.com/6170a5fc21aede0d60d88b70/61f3531f8911db1a407c9fc5_LunarWhitepaperV1.2.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/lnrdefi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lunar/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/" + }, + { + "name": "discord", + "url": "https://discord.com/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9D4451151A8dE5B545a1bC6c8fdEB9d94a2868e1/logo.png b/blockchains/smartchain/assets/0x9D4451151A8dE5B545a1bC6c8fdEB9d94a2868e1/logo.png new file mode 100644 index 00000000..058eb8e5 Binary files /dev/null and b/blockchains/smartchain/assets/0x9D4451151A8dE5B545a1bC6c8fdEB9d94a2868e1/logo.png differ diff --git a/blockchains/smartchain/assets/0x9D692bffEf6f6BedF4274053ff9998EFE3B2539E/info.json b/blockchains/smartchain/assets/0x9D692bffEf6f6BedF4274053ff9998EFE3B2539E/info.json new file mode 100644 index 00000000..bb4ce247 --- /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 00000000..2d9dc8f6 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 00000000..766bea56 --- /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 00000000..f403143b 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 new file mode 100644 index 00000000..7c621c3c --- /dev/null +++ b/blockchains/smartchain/assets/0x9D7c580e0bc4eA441Db96eebc7e1440d264bcE51/info.json @@ -0,0 +1,29 @@ +{ + "name": "MTLPX", + "website": "https://moonlift.io", + "description": "MoonLift is a community driven passive income generation protocol running on Binancesmartchain", + "explorer": "https://bscscan.com/token/0x9d7c580e0bc4ea441db96eebc7e1440d264bce51", + "type": "BEP20", + "symbol": "MLTPX", + "decimals": 18, + "status": "active", + "id": "0x9D7c580e0bc4eA441Db96eebc7e1440d264bcE51", + "links": [ + { + "name": "github", + "url": "https://github.com/moonlift/moonlift" + }, + { + "name": "x", + "url": "https://x.com/MoonliftI" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MoonliftProtocol_/" + }, + { + "name": "telegram", + "url": "https://t.me/MoonLift" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9D7c580e0bc4eA441Db96eebc7e1440d264bcE51/logo.png b/blockchains/smartchain/assets/0x9D7c580e0bc4eA441Db96eebc7e1440d264bcE51/logo.png new file mode 100644 index 00000000..24f1b05c Binary files /dev/null and b/blockchains/smartchain/assets/0x9D7c580e0bc4eA441Db96eebc7e1440d264bcE51/logo.png differ diff --git a/blockchains/smartchain/assets/0x9D986A3f147212327Dd658F712d5264a73a1fdB0/info.json b/blockchains/smartchain/assets/0x9D986A3f147212327Dd658F712d5264a73a1fdB0/info.json new file mode 100644 index 00000000..40318b73 --- /dev/null +++ b/blockchains/smartchain/assets/0x9D986A3f147212327Dd658F712d5264a73a1fdB0/info.json @@ -0,0 +1,29 @@ +{ + "name": "Landshare Token", + "website": "https://landshare.io", + "description": "Landshare brings tokenized real estate to the Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x9D986A3f147212327Dd658F712d5264a73a1fdB0", + "type": "BEP20", + "symbol": "LAND", + "decimals": 18, + "status": "abandoned", + "id": "0x9D986A3f147212327Dd658F712d5264a73a1fdB0", + "links": [ + { + "name": "x", + "url": "https://x.com/landshareio" + }, + { + "name": "github", + "url": "https://github.com/Landshare-io" + }, + { + "name": "telegram", + "url": "https://t.me/landshare" + }, + { + "name": "blog", + "url": "https://landshare.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9DAAa05946e486ADd2c81e0d32D936866B8449D9/info.json b/blockchains/smartchain/assets/0x9DAAa05946e486ADd2c81e0d32D936866B8449D9/info.json new file mode 100644 index 00000000..d6e11dc4 --- /dev/null +++ b/blockchains/smartchain/assets/0x9DAAa05946e486ADd2c81e0d32D936866B8449D9/info.json @@ -0,0 +1,11 @@ +{ + "name": "xxxNifty", + "website": "https://xxxNifty.com/", + "description": "xxxNifty is a NSFW Adult Content NFT Marketplace.", + "explorer": "https://bscscan.com/token/0x9daaa05946e486add2c81e0d32d936866b8449d9", + "type": "BEP20", + "symbol": "NSFW", + "decimals": 9, + "status": "active", + "id": "0x9DAAa05946e486ADd2c81e0d32D936866B8449D9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9DAAa05946e486ADd2c81e0d32D936866B8449D9/logo.png b/blockchains/smartchain/assets/0x9DAAa05946e486ADd2c81e0d32D936866B8449D9/logo.png new file mode 100644 index 00000000..e9b9d976 Binary files /dev/null and b/blockchains/smartchain/assets/0x9DAAa05946e486ADd2c81e0d32D936866B8449D9/logo.png differ diff --git a/blockchains/smartchain/assets/0x9DC8Ae7F7f88e1344c289d75cd0D4Ce07Dc4Aae6/info.json b/blockchains/smartchain/assets/0x9DC8Ae7F7f88e1344c289d75cd0D4Ce07Dc4Aae6/info.json new file mode 100644 index 00000000..a164d293 --- /dev/null +++ b/blockchains/smartchain/assets/0x9DC8Ae7F7f88e1344c289d75cd0D4Ce07Dc4Aae6/info.json @@ -0,0 +1,41 @@ +{ + "name": "BabyFlokiZilla", + "website": "https://babyflokizilla.com/", + "description": "BabyFlokiZilla is a Community-driven, Meme token on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x9dc8ae7f7f88e1344c289d75cd0d4ce07dc4aae6", + "type": "BEP20", + "symbol": "BabyFlokiZilla", + "decimals": 9, + "status": "active", + "id": "0x9DC8Ae7F7f88e1344c289d75cd0D4Ce07Dc4Aae6", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BabyFlokiZillaBSC" + }, + { + "name": "facebook", + "url": "https://facebook.com/Baby-Floki-Zilla-107460758405426" + }, + { + "name": "x", + "url": "https://x.com/BFZillaBSC" + }, + { + "name": "discord", + "url": "https://discord.com/invite/hfkGjSV9qs" + }, + { + "name": "whitepaper", + "url": "https://babyflokizilla.com/wp-content/uploads/2021/11/BabyFlokiZilla-White-Paper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/babyflokizilla/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/babyflokizilla" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9DC8Ae7F7f88e1344c289d75cd0D4Ce07Dc4Aae6/logo.png b/blockchains/smartchain/assets/0x9DC8Ae7F7f88e1344c289d75cd0D4Ce07Dc4Aae6/logo.png new file mode 100644 index 00000000..6296e8ac Binary files /dev/null and b/blockchains/smartchain/assets/0x9DC8Ae7F7f88e1344c289d75cd0D4Ce07Dc4Aae6/logo.png differ diff --git a/blockchains/smartchain/assets/0x9E1892eD30796FF96aBBb1b6A5e722C6ea9C46eB/info.json b/blockchains/smartchain/assets/0x9E1892eD30796FF96aBBb1b6A5e722C6ea9C46eB/info.json new file mode 100644 index 00000000..df5e91b9 --- /dev/null +++ b/blockchains/smartchain/assets/0x9E1892eD30796FF96aBBb1b6A5e722C6ea9C46eB/info.json @@ -0,0 +1,11 @@ +{ + "name": "CHAD", + "website": "https://chads.io/", + "description": "CHAD token is a community driven token with automatic LP and reflective rewards.", + "explorer": "https://bscscan.com/token/0x9E1892eD30796FF96aBBb1b6A5e722C6ea9C46eB", + "type": "BEP20", + "symbol": "CHAD", + "decimals": 18, + "status": "active", + "id": "0x9E1892eD30796FF96aBBb1b6A5e722C6ea9C46eB" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9E1892eD30796FF96aBBb1b6A5e722C6ea9C46eB/logo.png b/blockchains/smartchain/assets/0x9E1892eD30796FF96aBBb1b6A5e722C6ea9C46eB/logo.png new file mode 100644 index 00000000..129e5d26 Binary files /dev/null and b/blockchains/smartchain/assets/0x9E1892eD30796FF96aBBb1b6A5e722C6ea9C46eB/logo.png differ diff --git a/blockchains/smartchain/assets/0x9E24415d1e549EBc626a13a482Bb117a2B43e9CF/info.json b/blockchains/smartchain/assets/0x9E24415d1e549EBc626a13a482Bb117a2B43e9CF/info.json new file mode 100644 index 00000000..72b50cca --- /dev/null +++ b/blockchains/smartchain/assets/0x9E24415d1e549EBc626a13a482Bb117a2B43e9CF/info.json @@ -0,0 +1,25 @@ +{ + "name": "Lovely Inu Finance", + "type": "BEP20", + "symbol": "LOVELY", + "decimals": 8, + "website": "https://lovely.finance", + "description": "Lovely Inu ($LOVELY) is a community-focused, decentralized cryptocurrency with Attractive rewards for holders. Join the moon mission.", + "explorer": "https://bscscan.com/token/0x9e24415d1e549ebc626a13a482bb117a2b43e9cf", + "status": "active", + "id": "0x9E24415d1e549EBc626a13a482Bb117a2B43e9CF", + "links": [ + { + "name": "x", + "url": "https://x.com/Lovely_finance" + }, + { + "name": "telegram", + "url": "https://t.me/lovelyinu_coin" + }, + { + "name": "whitepaper", + "url": "https://lovely.finance/assets/images/whitepaper-lovely-inu.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9E24415d1e549EBc626a13a482Bb117a2B43e9CF/logo.png b/blockchains/smartchain/assets/0x9E24415d1e549EBc626a13a482Bb117a2B43e9CF/logo.png new file mode 100644 index 00000000..456b03db Binary files /dev/null and b/blockchains/smartchain/assets/0x9E24415d1e549EBc626a13a482Bb117a2B43e9CF/logo.png differ diff --git a/blockchains/smartchain/assets/0x9E3aD692084737DAF3f8e92bdFB4030965d2d5E6/info.json b/blockchains/smartchain/assets/0x9E3aD692084737DAF3f8e92bdFB4030965d2d5E6/info.json new file mode 100644 index 00000000..4feaec61 --- /dev/null +++ b/blockchains/smartchain/assets/0x9E3aD692084737DAF3f8e92bdFB4030965d2d5E6/info.json @@ -0,0 +1,21 @@ +{ + "name": "MetaPlay", + "type": "BEP20", + "symbol": "MPLAY", + "decimals": 18, + "website": "https://www.meta-play.io/", + "description": "MetaPlay project hosts professional and amateur e-sport tournaments especially for trendy games like CSGO and others. This all with a sizeable prize pool funded by all the transactions made whilst offering staking and launchpad for its holders focused on heavily vetted projects and GameFi niche.", + "explorer": "https://bscscan.com/token/0x9E3aD692084737DAF3f8e92bdFB4030965d2d5E6", + "status": "active", + "id": "0x9E3aD692084737DAF3f8e92bdFB4030965d2d5E6", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metaplay/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/metaplay" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9E3aD692084737DAF3f8e92bdFB4030965d2d5E6/logo.png b/blockchains/smartchain/assets/0x9E3aD692084737DAF3f8e92bdFB4030965d2d5E6/logo.png new file mode 100644 index 00000000..35dd6ec5 Binary files /dev/null and b/blockchains/smartchain/assets/0x9E3aD692084737DAF3f8e92bdFB4030965d2d5E6/logo.png differ diff --git a/blockchains/smartchain/assets/0x9E691FD624410D631c082202b050694233031cB7/info.json b/blockchains/smartchain/assets/0x9E691FD624410D631c082202b050694233031cB7/info.json new file mode 100644 index 00000000..4a5ff3d3 --- /dev/null +++ b/blockchains/smartchain/assets/0x9E691FD624410D631c082202b050694233031cB7/info.json @@ -0,0 +1,17 @@ +{ + "name": "CryptoBRL", + "website": "https://cryptobrl.com", + "description": "The CryptoBRL (cBRL) is a stablecoin pegged one for one to the Brazilian Real. It's supported and adopted by a consortium with several companies from Brazilian cryptocurrency market.", + "explorer": "https://bscscan.com/token/0x9E691FD624410D631c082202b050694233031cB7", + "type": "BEP20", + "symbol": "CBRL", + "decimals": 6, + "status": "active", + "id": "0x9E691FD624410D631c082202b050694233031cB7", + "links": [ + { + "name": "whitepaper", + "url": "https://cryptobrl.com/download/Whitepaper_CBRL.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9E691FD624410D631c082202b050694233031cB7/logo.png b/blockchains/smartchain/assets/0x9E691FD624410D631c082202b050694233031cB7/logo.png new file mode 100644 index 00000000..63ae0284 Binary files /dev/null and b/blockchains/smartchain/assets/0x9E691FD624410D631c082202b050694233031cB7/logo.png differ diff --git a/blockchains/smartchain/assets/0x9E6B3E35c8f563B45d864f9Ff697A144ad28A371/info.json b/blockchains/smartchain/assets/0x9E6B3E35c8f563B45d864f9Ff697A144ad28A371/info.json new file mode 100644 index 00000000..39bbdd32 --- /dev/null +++ b/blockchains/smartchain/assets/0x9E6B3E35c8f563B45d864f9Ff697A144ad28A371/info.json @@ -0,0 +1,25 @@ +{ + "name": "Dogemongo", + "website": "https://dogemongo.com/", + "description": "Combine the Playing Experience with your Favourite Dogemons!Start catching Dogemons today & If you’re a great trainer, you can find Crypto Currency as prey among other Dogemons.", + "explorer": "https://bscscan.com/token/0x9e6b3e35c8f563b45d864f9ff697a144ad28a371", + "type": "BEP20", + "symbol": "DOGO", + "decimals": 18, + "status": "active", + "id": "0x9E6B3E35c8f563B45d864f9Ff697A144ad28A371", + "links": [ + { + "name": "github", + "url": "https://github.com/DomgeonGo" + }, + { + "name": "x", + "url": "https://x.com/DogemonGoApp" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/dogemongoapp/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9E6B3E35c8f563B45d864f9Ff697A144ad28A371/logo.png b/blockchains/smartchain/assets/0x9E6B3E35c8f563B45d864f9Ff697A144ad28A371/logo.png new file mode 100644 index 00000000..374e8e45 Binary files /dev/null and b/blockchains/smartchain/assets/0x9E6B3E35c8f563B45d864f9Ff697A144ad28A371/logo.png differ diff --git a/blockchains/smartchain/assets/0x9E7942a24be24B18A56CEac7bA9926C5FBFc4E27/info.json b/blockchains/smartchain/assets/0x9E7942a24be24B18A56CEac7bA9926C5FBFc4E27/info.json new file mode 100644 index 00000000..a12f6efc --- /dev/null +++ b/blockchains/smartchain/assets/0x9E7942a24be24B18A56CEac7bA9926C5FBFc4E27/info.json @@ -0,0 +1,11 @@ +{ + "name": "Weed Token", + "type": "BEP20", + "symbol": "WEED", + "decimals": 18, + "website": "https://dankswap.finance", + "description": "AMM and yield farming platform on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0x9E7942a24be24B18A56CEac7bA9926C5FBFc4E27", + "status": "active", + "id": "0x9E7942a24be24B18A56CEac7bA9926C5FBFc4E27" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9E7942a24be24B18A56CEac7bA9926C5FBFc4E27/logo.png b/blockchains/smartchain/assets/0x9E7942a24be24B18A56CEac7bA9926C5FBFc4E27/logo.png new file mode 100644 index 00000000..ab9adb6d Binary files /dev/null and b/blockchains/smartchain/assets/0x9E7942a24be24B18A56CEac7bA9926C5FBFc4E27/logo.png differ diff --git a/blockchains/smartchain/assets/0x9E993671976a5AC51bBfB3Db9E34eAC8d518fe82/info.json b/blockchains/smartchain/assets/0x9E993671976a5AC51bBfB3Db9E34eAC8d518fe82/info.json new file mode 100644 index 00000000..9b909ad9 --- /dev/null +++ b/blockchains/smartchain/assets/0x9E993671976a5AC51bBfB3Db9E34eAC8d518fe82/info.json @@ -0,0 +1,11 @@ +{ + "name": "Summit Koda Token", + "type": "BEP20", + "symbol": "KODA", + "decimals": 9, + "website": "https://koda.finance", + "description": "Koda token is a futuristic currency created and developed by Summit BC development team and will be the native token on SummitSwap.", + "explorer": "https://bscscan.com/token/0x9E993671976a5AC51bBfB3Db9E34eAC8d518fe82", + "status": "abandoned", + "id": "0x9E993671976a5AC51bBfB3Db9E34eAC8d518fe82" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125/info.json b/blockchains/smartchain/assets/0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125/info.json new file mode 100644 index 00000000..6f0b0f69 --- /dev/null +++ b/blockchains/smartchain/assets/0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125/info.json @@ -0,0 +1,32 @@ +{ + "name": "GOMA", + "type": "BEP20", + "symbol": "GOMA", + "decimals": 9, + "website": "https://gomatoken.com", + "description": "GOMA is a Multi-chain Hyper-Deflationary Incentive, DeFi & Staking Ecosystem", + "explorer": "https://bscscan.com/token/0x9ec55d57208cb28a7714a2ea3468bd9d5bb15125", + "status": "active", + "id": "0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125", + "links": [ + { + "name": "x", + "url": "https://x.com/GOMAFinance" + }, + { + "name": "github", + "url": "https://github.com/GOMA-Finance" + }, + { + "name": "medium", + "url": "https://gomafinance.medium.com" + }, + { + "name": "docs", + "url": "https://goma-finance.gitbook.io/docs" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125/logo.png b/blockchains/smartchain/assets/0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125/logo.png new file mode 100644 index 00000000..5364ee3b Binary files /dev/null and b/blockchains/smartchain/assets/0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125/logo.png differ diff --git a/blockchains/smartchain/assets/0x9Eb5B7902D2be0B5AaBa2F096e043d3cD804e6dF/info.json b/blockchains/smartchain/assets/0x9Eb5B7902D2be0B5AaBa2F096e043d3cD804e6dF/info.json new file mode 100644 index 00000000..0f92058b --- /dev/null +++ b/blockchains/smartchain/assets/0x9Eb5B7902D2be0B5AaBa2F096e043d3cD804e6dF/info.json @@ -0,0 +1,37 @@ +{ + "name": "My Pet Social", + "type": "BEP20", + "symbol": "MPS", + "decimals": 18, + "website": "https://mypetsocial.org/", + "description": "MyPetSocial is a social network for NFTs gaming on Binance Smart Chain, where you can generate more profit from your NFTs. By making the most of NFTs usage, MyPetSocial promises to bring about the best users experience of the crypto world.", + "explorer": "https://bscscan.com/token/0x9Eb5B7902D2be0B5AaBa2F096e043d3cD804e6dF", + "status": "active", + "id": "0x9Eb5B7902D2be0B5AaBa2F096e043d3cD804e6dF", + "links": [ + { + "name": "x", + "url": "https://x.com/mypetsocial" + }, + { + "name": "telegram", + "url": "https://t.me/Mypetsocial" + }, + { + "name": "telegram_news", + "url": "https://t.me/MypetsocialAnn" + }, + { + "name": "docs", + "url": "https://docs.mypetsocial.org/" + }, + { + "name": "whitepaper", + "url": "https://mypetsocial.org/pitchdeck" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/my-pet-social/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9Eb5B7902D2be0B5AaBa2F096e043d3cD804e6dF/logo.png b/blockchains/smartchain/assets/0x9Eb5B7902D2be0B5AaBa2F096e043d3cD804e6dF/logo.png new file mode 100644 index 00000000..f84177c7 Binary files /dev/null and b/blockchains/smartchain/assets/0x9Eb5B7902D2be0B5AaBa2F096e043d3cD804e6dF/logo.png differ diff --git a/blockchains/smartchain/assets/0x9F3BCBE48E8b754F331Dfc694A894e8E686aC31D/info.json b/blockchains/smartchain/assets/0x9F3BCBE48E8b754F331Dfc694A894e8E686aC31D/info.json new file mode 100644 index 00000000..b0462fdc --- /dev/null +++ b/blockchains/smartchain/assets/0x9F3BCBE48E8b754F331Dfc694A894e8E686aC31D/info.json @@ -0,0 +1,33 @@ +{ + "name": "Acet", + "website": "https://acet.finance", + "description": "ACT (Acet) is DeFansFi Token. It is initiated on the concept of Zero Initial Supply.", + "explorer": "https://bscscan.com/token/0x9F3BCBE48E8b754F331Dfc694A894e8E686aC31D", + "type": "BEP20", + "symbol": "ACT", + "decimals": 18, + "status": "active", + "id": "0x9F3BCBE48E8b754F331Dfc694A894e8E686aC31D", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/acet/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/acet-token" + }, + { + "name": "x", + "url": "https://x.com/ACTDeFansFi" + }, + { + "name": "facebook", + "url": "https://facebook.com/ACTDeFansFi/" + }, + { + "name": "telegram", + "url": "https://t.me/acetdefansfi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9F3BCBE48E8b754F331Dfc694A894e8E686aC31D/logo.png b/blockchains/smartchain/assets/0x9F3BCBE48E8b754F331Dfc694A894e8E686aC31D/logo.png new file mode 100644 index 00000000..d36e049d Binary files /dev/null and b/blockchains/smartchain/assets/0x9F3BCBE48E8b754F331Dfc694A894e8E686aC31D/logo.png differ diff --git a/blockchains/smartchain/assets/0x9F70625680a4bd250d3c59C755632B09cD6D34Bc/info.json b/blockchains/smartchain/assets/0x9F70625680a4bd250d3c59C755632B09cD6D34Bc/info.json new file mode 100644 index 00000000..7d0d33b8 --- /dev/null +++ b/blockchains/smartchain/assets/0x9F70625680a4bd250d3c59C755632B09cD6D34Bc/info.json @@ -0,0 +1,21 @@ +{ + "name": "PumpShibaX", + "type": "BEP20", + "symbol": "PShibaX", + "decimals": 18, + "website": "https://www.pumpshibax.com/", + "description": "Welcome to the newest member of the legendary crypto dog family. PumpShibaX has watched his elders soar to amazing heights and he is now ready for his own moonshot and to surpass his father, Shiba PumpShibaX will release its Play to Earn (P2E) blockchain game, allowing users to earn rewards, purchase non-fungible tokens (NFTs) to use within the game In order to expand the PumpShibaX ecosystem, a decentralized application (dApp) will be enhanced to implement in-app betting.", + "explorer": "https://bscscan.com/token/0x9F70625680a4bd250d3c59C755632B09cD6D34Bc", + "status": "active", + "id": "0x9F70625680a4bd250d3c59C755632B09cD6D34Bc", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pumpshibax/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pumpshibax" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9F70625680a4bd250d3c59C755632B09cD6D34Bc/logo.png b/blockchains/smartchain/assets/0x9F70625680a4bd250d3c59C755632B09cD6D34Bc/logo.png new file mode 100644 index 00000000..8bfeb8b2 Binary files /dev/null and b/blockchains/smartchain/assets/0x9F70625680a4bd250d3c59C755632B09cD6D34Bc/logo.png differ diff --git a/blockchains/smartchain/assets/0x9F7371F5b85443EE59457468eDe9D244A71C08d6/info.json b/blockchains/smartchain/assets/0x9F7371F5b85443EE59457468eDe9D244A71C08d6/info.json new file mode 100644 index 00000000..87fc7cd1 --- /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 00000000..8f8389c0 Binary files /dev/null and b/blockchains/smartchain/assets/0x9F7371F5b85443EE59457468eDe9D244A71C08d6/logo.png differ diff --git a/blockchains/smartchain/assets/0x9FBbcAa3162c74b24751f7c4b9CFB4af0811a622/info.json b/blockchains/smartchain/assets/0x9FBbcAa3162c74b24751f7c4b9CFB4af0811a622/info.json new file mode 100644 index 00000000..5543e6b0 --- /dev/null +++ b/blockchains/smartchain/assets/0x9FBbcAa3162c74b24751f7c4b9CFB4af0811a622/info.json @@ -0,0 +1,11 @@ +{ + "name": "GeekHoldings", + "website": "https://geek.holdings", + "description": "He Defi Profect With Tranparent Longterm Protocols of User Retention and Growth.", + "explorer": "https://bscscan.com/token/0x9FBbcAa3162c74b24751f7c4b9CFB4af0811a622", + "type": "BEP20", + "symbol": "Geek", + "decimals": 9, + "status": "active", + "id": "0x9FBbcAa3162c74b24751f7c4b9CFB4af0811a622" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9FBbcAa3162c74b24751f7c4b9CFB4af0811a622/logo.png b/blockchains/smartchain/assets/0x9FBbcAa3162c74b24751f7c4b9CFB4af0811a622/logo.png new file mode 100644 index 00000000..454133b0 Binary files /dev/null and b/blockchains/smartchain/assets/0x9FBbcAa3162c74b24751f7c4b9CFB4af0811a622/logo.png differ diff --git a/blockchains/smartchain/assets/0x9FFaFC014832B803aAAab0D2e4D9c127Eca0E034/info.json b/blockchains/smartchain/assets/0x9FFaFC014832B803aAAab0D2e4D9c127Eca0E034/info.json new file mode 100644 index 00000000..88eb71ff --- /dev/null +++ b/blockchains/smartchain/assets/0x9FFaFC014832B803aAAab0D2e4D9c127Eca0E034/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cocoin", + "website": "https://cocoin.finance/", + "description": "COCO is a deflationary crypto currency with doxxed devs.", + "explorer": "https://bscscan.com/token/0x9FFaFC014832B803aAAab0D2e4D9c127Eca0E034", + "type": "BEP20", + "symbol": "COCO", + "decimals": 9, + "status": "active", + "id": "0x9FFaFC014832B803aAAab0D2e4D9c127Eca0E034" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9FFaFC014832B803aAAab0D2e4D9c127Eca0E034/logo.png b/blockchains/smartchain/assets/0x9FFaFC014832B803aAAab0D2e4D9c127Eca0E034/logo.png new file mode 100644 index 00000000..fe10aa47 Binary files /dev/null and b/blockchains/smartchain/assets/0x9FFaFC014832B803aAAab0D2e4D9c127Eca0E034/logo.png differ diff --git a/blockchains/smartchain/assets/0x9Fb677928dd244beFCD0BbEbdF6068dD4BEF559C/info.json b/blockchains/smartchain/assets/0x9Fb677928dd244beFCD0BbEbdF6068dD4BEF559C/info.json new file mode 100644 index 00000000..20a82d4d --- /dev/null +++ b/blockchains/smartchain/assets/0x9Fb677928dd244beFCD0BbEbdF6068dD4BEF559C/info.json @@ -0,0 +1,11 @@ +{ + "name": "BelaAqua", + "website": "https://www.belatoken.org", + "description": "Bela Aqua token is a BEP20 token which helps users generate passive income through reflections and powers the Bela charting ecosystem.", + "explorer": "https://bscscan.com/token/0x9Fb677928dd244beFCD0BbEbdF6068dD4BEF559C", + "type": "BEP20", + "symbol": "Aqua", + "decimals": 9, + "status": "active", + "id": "0x9Fb677928dd244beFCD0BbEbdF6068dD4BEF559C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9Fb677928dd244beFCD0BbEbdF6068dD4BEF559C/logo.png b/blockchains/smartchain/assets/0x9Fb677928dd244beFCD0BbEbdF6068dD4BEF559C/logo.png new file mode 100644 index 00000000..56fce094 Binary files /dev/null and b/blockchains/smartchain/assets/0x9Fb677928dd244beFCD0BbEbdF6068dD4BEF559C/logo.png differ diff --git a/blockchains/smartchain/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json b/blockchains/smartchain/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json new file mode 100644 index 00000000..f2ac4de7 --- /dev/null +++ b/blockchains/smartchain/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json @@ -0,0 +1,33 @@ +{ + "name": "Multichain", + "type": "BEP20", + "symbol": "MULTI", + "decimals": 18, + "website": "https://multichain.org/", + "description": "Multichain is a cross-chain router protocol (CRP), to be the ultimate router for Web3.", + "explorer": "https://bscscan.com/token/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3", + "status": "active", + "id": "0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3", + "links": [ + { + "name": "x", + "url": "https://x.com/multichainorg" + }, + { + "name": "github", + "url": "https://github.com/anyswap" + }, + { + "name": "telegram", + "url": "https://t.me/anyswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multichain/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/multichain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/logo.png b/blockchains/smartchain/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/logo.png new file mode 100644 index 00000000..9d7b0435 Binary files /dev/null and b/blockchains/smartchain/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/logo.png differ diff --git a/blockchains/smartchain/assets/0x9FdB6a13BdCF1188FbAFe5CD435A8b92a327D92e/info.json b/blockchains/smartchain/assets/0x9FdB6a13BdCF1188FbAFe5CD435A8b92a327D92e/info.json new file mode 100644 index 00000000..2cf07b52 --- /dev/null +++ b/blockchains/smartchain/assets/0x9FdB6a13BdCF1188FbAFe5CD435A8b92a327D92e/info.json @@ -0,0 +1,21 @@ +{ + "name": "GOLDMONEY", + "website": "https://goldmoney.network/", + "description": "GoldMoney is a a protocol that unifies leading BSC protocols and blockchain infrastructure by standardising communication between them to create and execute complex financial transactions, while championing Privacy, Anonymity and Sovereignty.", + "explorer": "https://bscscan.com/token/0x9fdb6a13bdcf1188fbafe5cd435a8b92a327d92e", + "type": "BEP20", + "symbol": "GDM", + "decimals": 18, + "status": "active", + "id": "0x9FdB6a13BdCF1188FbAFe5CD435A8b92a327D92e", + "links": [ + { + "name": "x", + "url": "https://x.com/goldmoney_gdm" + }, + { + "name": "telegram", + "url": "https://t.me/GOLDMONEY_ANNOUNCEMENT" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9FdB6a13BdCF1188FbAFe5CD435A8b92a327D92e/logo.png b/blockchains/smartchain/assets/0x9FdB6a13BdCF1188FbAFe5CD435A8b92a327D92e/logo.png new file mode 100644 index 00000000..1222f8d8 Binary files /dev/null and b/blockchains/smartchain/assets/0x9FdB6a13BdCF1188FbAFe5CD435A8b92a327D92e/logo.png differ diff --git a/blockchains/smartchain/assets/0x9a3077F34cC30F9BF8E93A0369119bae0113d9cC/info.json b/blockchains/smartchain/assets/0x9a3077F34cC30F9BF8E93A0369119bae0113d9cC/info.json new file mode 100644 index 00000000..80921050 --- /dev/null +++ b/blockchains/smartchain/assets/0x9a3077F34cC30F9BF8E93A0369119bae0113d9cC/info.json @@ -0,0 +1,33 @@ +{ + "name": "PolyPlay", + "website": "https://polyplay.net/", + "description": "PolyPlay is the Gaming Gold Standard Coin. Gamers can participate in Epsorts tournaments just by holding Play token and win rewards in crypto", + "explorer": "https://bscscan.com/token/0x9a3077f34cc30f9bf8e93a0369119bae0113d9cc", + "type": "BEP20", + "symbol": "PLAY", + "decimals": 18, + "status": "active", + "id": "0x9a3077F34cC30F9BF8E93A0369119bae0113d9cC", + "links": [ + { + "name": "github", + "url": "https://github.com/polyplaygames" + }, + { + "name": "x", + "url": "https://x.com/polyplaycoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/polyplay" + }, + { + "name": "medium", + "url": "https://polyplay.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polyplay/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9a3077F34cC30F9BF8E93A0369119bae0113d9cC/logo.png b/blockchains/smartchain/assets/0x9a3077F34cC30F9BF8E93A0369119bae0113d9cC/logo.png new file mode 100644 index 00000000..580ed8b1 Binary files /dev/null and b/blockchains/smartchain/assets/0x9a3077F34cC30F9BF8E93A0369119bae0113d9cC/logo.png differ diff --git a/blockchains/smartchain/assets/0x9a6fDa69FA9859B169EF17b600Ce81c59Cf16F01/info.json b/blockchains/smartchain/assets/0x9a6fDa69FA9859B169EF17b600Ce81c59Cf16F01/info.json new file mode 100644 index 00000000..1b6f17dd --- /dev/null +++ b/blockchains/smartchain/assets/0x9a6fDa69FA9859B169EF17b600Ce81c59Cf16F01/info.json @@ -0,0 +1,11 @@ +{ + "name": "COLD FINANCE", + "website": "https://www.coldfinance.io", + "description": "Cold Finance - COLD is an autonomous yield and liquidity generation protocol which is based on Binance Smart chain which will reward the community through the tokens in the ecosystem.", + "explorer": "https://bscscan.com/token/0x9a6fda69fa9859b169ef17b600ce81c59cf16f01", + "type": "BEP20", + "symbol": "COLD", + "decimals": 9, + "status": "active", + "id": "0x9a6fDa69FA9859B169EF17b600Ce81c59Cf16F01" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9a6fDa69FA9859B169EF17b600Ce81c59Cf16F01/logo.png b/blockchains/smartchain/assets/0x9a6fDa69FA9859B169EF17b600Ce81c59Cf16F01/logo.png new file mode 100644 index 00000000..14607d04 Binary files /dev/null and b/blockchains/smartchain/assets/0x9a6fDa69FA9859B169EF17b600Ce81c59Cf16F01/logo.png differ diff --git a/blockchains/smartchain/assets/0x9a7B87651C6C93cedb831B2B3b5549142a813Cfe/info.json b/blockchains/smartchain/assets/0x9a7B87651C6C93cedb831B2B3b5549142a813Cfe/info.json new file mode 100644 index 00000000..d32cc247 --- /dev/null +++ b/blockchains/smartchain/assets/0x9a7B87651C6C93cedb831B2B3b5549142a813Cfe/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kokomo Token", + "website": "https://kokomoswap.io", + "description": "A fun & easy AMM DEX on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x9a7B87651C6C93cedb831B2B3b5549142a813Cfe", + "type": "BEP20", + "symbol": "KOKOMO", + "decimals": 18, + "status": "active", + "id": "0x9a7B87651C6C93cedb831B2B3b5549142a813Cfe" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9a7B87651C6C93cedb831B2B3b5549142a813Cfe/logo.png b/blockchains/smartchain/assets/0x9a7B87651C6C93cedb831B2B3b5549142a813Cfe/logo.png new file mode 100644 index 00000000..880e925f Binary files /dev/null and b/blockchains/smartchain/assets/0x9a7B87651C6C93cedb831B2B3b5549142a813Cfe/logo.png differ diff --git a/blockchains/smartchain/assets/0x9a946c3Cb16c08334b69aE249690C236Ebd5583E/info.json b/blockchains/smartchain/assets/0x9a946c3Cb16c08334b69aE249690C236Ebd5583E/info.json new file mode 100644 index 00000000..01bf7b50 --- /dev/null +++ b/blockchains/smartchain/assets/0x9a946c3Cb16c08334b69aE249690C236Ebd5583E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blizzard.Money", + "type": "BEP20", + "symbol": "xBLZD", + "decimals": 18, + "website": "https://blizzard.money", + "description": "Blizzard.Money is an innovative hub for economic invention on the Binance Smart Chain. Home to the first SnowBank, RFI token staking pool, and BSC gaming platform, there is something for Yetis of all shapes and sizes on Blizzard.Money", + "explorer": "https://bscscan.com/token/0x9a946c3Cb16c08334b69aE249690C236Ebd5583E", + "status": "active", + "id": "0x9a946c3Cb16c08334b69aE249690C236Ebd5583E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9a946c3Cb16c08334b69aE249690C236Ebd5583E/logo.png b/blockchains/smartchain/assets/0x9a946c3Cb16c08334b69aE249690C236Ebd5583E/logo.png new file mode 100644 index 00000000..3d8eb3a7 Binary files /dev/null and b/blockchains/smartchain/assets/0x9a946c3Cb16c08334b69aE249690C236Ebd5583E/logo.png differ diff --git a/blockchains/smartchain/assets/0x9a95f03A305db3BD25D9C891793118D56C73d012/info.json b/blockchains/smartchain/assets/0x9a95f03A305db3BD25D9C891793118D56C73d012/info.json new file mode 100644 index 00000000..00f57ef3 --- /dev/null +++ b/blockchains/smartchain/assets/0x9a95f03A305db3BD25D9C891793118D56C73d012/info.json @@ -0,0 +1,61 @@ +{ + "name": "Shiba Monk", + "type": "BEP20", + "symbol": "SHIBAMONK", + "decimals": 9, + "website": "https://shibamonk.com/", + "description": "Shiba Monk's purpose is to create a platform devoted to teaching people mindfulness. By teaching people to take care of their minds, we can improve their mental health and create a better world for everyone.", + "explorer": "https://bscscan.com/token/0x9a95f03A305db3BD25D9C891793118D56C73d012", + "status": "active", + "id": "0x9a95f03A305db3BD25D9C891793118D56C73d012", + "links": [ + { + "name": "x", + "url": "https://x.com/shiba_monk" + }, + { + "name": "telegram", + "url": "https://t.me/shiba_monk" + }, + { + "name": "github", + "url": "https://github.com/SHIBAMONK/shibamonk" + }, + { + "name": "forum", + "url": "https://bitcointalk.org/index.php?topic=5370041" + }, + { + "name": "discord", + "url": "https://discord.com/invite/swQFMMsJ" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/shibamonk" + }, + { + "name": "whitepaper", + "url": "https://emily-9.gitbook.io/shiba-monk-whitepaper/" + }, + { + "name": "medium", + "url": "https://medium.com/@shibamonk" + }, + { + "name": "facebook", + "url": "https://facebook.com/shibamonk" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-monk/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shiba-monk" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x9a95f03a305db3bd25d9c891793118d56c73d012#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9a95f03A305db3BD25D9C891793118D56C73d012/logo.png b/blockchains/smartchain/assets/0x9a95f03A305db3BD25D9C891793118D56C73d012/logo.png new file mode 100644 index 00000000..617466a7 Binary files /dev/null and b/blockchains/smartchain/assets/0x9a95f03A305db3BD25D9C891793118D56C73d012/logo.png differ diff --git a/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/info.json b/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/info.json new file mode 100644 index 00000000..8c6b553b --- /dev/null +++ b/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/info.json @@ -0,0 +1,38 @@ +{ + "name": "Anonverse", + "website": "https://anonverse.space/", + "description": "Multi-element decentralized autonomous application platform.1st Global platform that integrates fully decentralized non-custodial protocol, security solutions, GameFi and DAO! Anonverse, Security Audit, Play2Earn, Compete2Earn, DAO!", + "explorer": "https://bscscan.com/token/0x9a980a084D8D72B219e1C79d91faf06Bec874D51", + "type": "BEP20", + "symbol": "ANON", + "decimals": 18, + "status": "active", + "id": "0x9a980a084D8D72B219e1C79d91faf06Bec874D51", + "links": [ + { + "name": "x", + "url": "https://x.com/anon_metaverse" + }, + { + "name": "telegram", + "url": "https://t.me/ANONVERSE_official" + }, + { + "name": "docs", + "url": "https://anonverse.gitbook.io/anonverse/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/YuHanzb7bS" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/anonverse/" + } + ], + "tags": [ + "gamefi", + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/logo.png b/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/logo.png new file mode 100644 index 00000000..1ea778d6 Binary files /dev/null and b/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/logo.png differ diff --git a/blockchains/smartchain/assets/0x9a99eA92Ed1e0c963078ac5c0867dF85eC6d06B7/info.json b/blockchains/smartchain/assets/0x9a99eA92Ed1e0c963078ac5c0867dF85eC6d06B7/info.json new file mode 100644 index 00000000..1a74362a --- /dev/null +++ b/blockchains/smartchain/assets/0x9a99eA92Ed1e0c963078ac5c0867dF85eC6d06B7/info.json @@ -0,0 +1,11 @@ +{ + "name": "QuantumToken", + "website": "https://quantumchain.app", + "description": "QTM - Yield farm QTUM on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0x9a99eA92Ed1e0c963078ac5c0867dF85eC6d06B7", + "type": "BEP20", + "symbol": "QTM", + "decimals": 8, + "status": "active", + "id": "0x9a99eA92Ed1e0c963078ac5c0867dF85eC6d06B7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9a99eA92Ed1e0c963078ac5c0867dF85eC6d06B7/logo.png b/blockchains/smartchain/assets/0x9a99eA92Ed1e0c963078ac5c0867dF85eC6d06B7/logo.png new file mode 100644 index 00000000..811b42b2 Binary files /dev/null and b/blockchains/smartchain/assets/0x9a99eA92Ed1e0c963078ac5c0867dF85eC6d06B7/logo.png differ diff --git a/blockchains/smartchain/assets/0x9abDbA20EdFbA06B782126b4D8d72A5853918FD0/info.json b/blockchains/smartchain/assets/0x9abDbA20EdFbA06B782126b4D8d72A5853918FD0/info.json new file mode 100644 index 00000000..8d4c1362 --- /dev/null +++ b/blockchains/smartchain/assets/0x9abDbA20EdFbA06B782126b4D8d72A5853918FD0/info.json @@ -0,0 +1,49 @@ +{ + "name": "Taboo", + "type": "BEP20", + "symbol": "TABOO", + "decimals": 9, + "website": "https://taboo.community/", + "description": "Taboo is an adult NFT & Streaming media project. Specializing in highly, exclusive content. With models, who are not strictly porn stars. Their marketplace is cutting-edge, built by the Enjin Coin Marketplace Developers. Features include Cross-Chain, DeFi protocols, upcoming VR, and a fiat on-ramp, to allow users unfamiliar with crypto, easy access to the platform's features.", + "explorer": "https://bscscan.com/token/0x9abDbA20EdFbA06B782126b4D8d72A5853918FD0", + "status": "active", + "id": "0x9abDbA20EdFbA06B782126b4D8d72A5853918FD0", + "links": [ + { + "name": "x", + "url": "https://x.com/TABOOOFFICIAL2" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/TwoPHvu0f6sxZTA9" + }, + { + "name": "telegram_news", + "url": "https://t.me/joinchat/Avg3E29yhdBjNDU1" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/taboo-token/" + }, + { + "name": "blog", + "url": "https://tabootoken.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/taboo-token" + }, + { + "name": "medium", + "url": "https://tabootoken.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCdNC5ODDYkRTbDfS8DlTq8Q" + }, + { + "name": "github", + "url": "https://github.com/TabooOFFICIAL/TABOO" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9abDbA20EdFbA06B782126b4D8d72A5853918FD0/logo.png b/blockchains/smartchain/assets/0x9abDbA20EdFbA06B782126b4D8d72A5853918FD0/logo.png new file mode 100644 index 00000000..9a0dfdc8 Binary files /dev/null and b/blockchains/smartchain/assets/0x9abDbA20EdFbA06B782126b4D8d72A5853918FD0/logo.png differ diff --git a/blockchains/smartchain/assets/0x9b17bAADf0f21F03e35249e0e59723F34994F806/info.json b/blockchains/smartchain/assets/0x9b17bAADf0f21F03e35249e0e59723F34994F806/info.json new file mode 100644 index 00000000..9a74d5a5 --- /dev/null +++ b/blockchains/smartchain/assets/0x9b17bAADf0f21F03e35249e0e59723F34994F806/info.json @@ -0,0 +1,11 @@ +{ + "name": "inSure", + "type": "BEP20", + "symbol": "SURE", + "decimals": 18, + "website": "https://insuretoken.net", + "description": "inSure DeFi is a Decentralized Insurance Ecosystem, trusted by thousands of community members to protect their crypto portfolios from scams, exchange closures, and drastic devaluations. inSure DeFi provides insurance solutions for the crypto space to stabilize and secure Crypto & DeFi portfolios.", + "explorer": "https://bscscan.com/token/0x9b17bAADf0f21F03e35249e0e59723F34994F806", + "status": "active", + "id": "0x9b17bAADf0f21F03e35249e0e59723F34994F806" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9b17bAADf0f21F03e35249e0e59723F34994F806/logo.png b/blockchains/smartchain/assets/0x9b17bAADf0f21F03e35249e0e59723F34994F806/logo.png new file mode 100644 index 00000000..5fbabcc4 Binary files /dev/null and b/blockchains/smartchain/assets/0x9b17bAADf0f21F03e35249e0e59723F34994F806/logo.png differ diff --git a/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/info.json b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/info.json new file mode 100644 index 00000000..ccca562b --- /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 00000000..488a2ec3 Binary files /dev/null and b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/logo.png differ diff --git a/blockchains/smartchain/assets/0x9b76D1B12Ff738c113200EB043350022EBf12Ff0/info.json b/blockchains/smartchain/assets/0x9b76D1B12Ff738c113200EB043350022EBf12Ff0/info.json new file mode 100644 index 00000000..5a565053 --- /dev/null +++ b/blockchains/smartchain/assets/0x9b76D1B12Ff738c113200EB043350022EBf12Ff0/info.json @@ -0,0 +1,11 @@ +{ + "name": "TIKI", + "type": "BEP20", + "symbol": "TIKI", + "decimals": 18, + "website": "https://tikitoken.finance/", + "description": "The biggest BNB reflection token and the only one with auto-claim feature. Simply hold $TIKI tokens in your wallet and you'll earn BNB.", + "explorer": "https://bscscan.com/token/0x9b76D1B12Ff738c113200EB043350022EBf12Ff0", + "status": "active", + "id": "0x9b76D1B12Ff738c113200EB043350022EBf12Ff0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9b76D1B12Ff738c113200EB043350022EBf12Ff0/logo.png b/blockchains/smartchain/assets/0x9b76D1B12Ff738c113200EB043350022EBf12Ff0/logo.png new file mode 100644 index 00000000..d5d56b74 Binary files /dev/null and b/blockchains/smartchain/assets/0x9b76D1B12Ff738c113200EB043350022EBf12Ff0/logo.png differ diff --git a/blockchains/smartchain/assets/0x9b8E987e6fEc8Cf1380C4dcA7071e2C7853AEEA1/info.json b/blockchains/smartchain/assets/0x9b8E987e6fEc8Cf1380C4dcA7071e2C7853AEEA1/info.json new file mode 100644 index 00000000..047d2c6a --- /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 00000000..2ce033b0 Binary files /dev/null and b/blockchains/smartchain/assets/0x9b8E987e6fEc8Cf1380C4dcA7071e2C7853AEEA1/logo.png differ diff --git a/blockchains/smartchain/assets/0x9b93c29595dd603f75854EbA3C5f4EE078EE4454/info.json b/blockchains/smartchain/assets/0x9b93c29595dd603f75854EbA3C5f4EE078EE4454/info.json new file mode 100644 index 00000000..5d852228 --- /dev/null +++ b/blockchains/smartchain/assets/0x9b93c29595dd603f75854EbA3C5f4EE078EE4454/info.json @@ -0,0 +1,11 @@ +{ + "name": "Strite", + "type": "BEP20", + "symbol": "STRI", + "decimals": 18, + "website": "https://stritefinance.org", + "description": "Strite Finance was built soon after the emergence of non-fungible tokens. With the incredible hype behind these NFTs, Strite aims to connect yield staking with the new age of digital media. To put it plain and simple, Strite envisions a strong connection with non-fungible tokens. This will include a public marketplace where individuals can buy & sell specific NFTs in a user-friendly manner.", + "explorer": "https://bscscan.com/token/0x9b93c29595dd603f75854EbA3C5f4EE078EE4454", + "status": "active", + "id": "0x9b93c29595dd603f75854EbA3C5f4EE078EE4454" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9b93c29595dd603f75854EbA3C5f4EE078EE4454/logo.png b/blockchains/smartchain/assets/0x9b93c29595dd603f75854EbA3C5f4EE078EE4454/logo.png new file mode 100644 index 00000000..fdfdee5d Binary files /dev/null and b/blockchains/smartchain/assets/0x9b93c29595dd603f75854EbA3C5f4EE078EE4454/logo.png differ diff --git a/blockchains/smartchain/assets/0x9b9D617D3445f0147Ece2322BaCe8db2768D2770/info.json b/blockchains/smartchain/assets/0x9b9D617D3445f0147Ece2322BaCe8db2768D2770/info.json new file mode 100644 index 00000000..0cb49010 --- /dev/null +++ b/blockchains/smartchain/assets/0x9b9D617D3445f0147Ece2322BaCe8db2768D2770/info.json @@ -0,0 +1,21 @@ +{ + "name": "CUE Protocol", + "website": "https://cuep.io/", + "description": "CUE Protocol is a deflationary asset with actual use cases through dapps.", + "explorer": "https://bscscan.com/token/0x9b9D617D3445f0147Ece2322BaCe8db2768D2770", + "type": "BEP20", + "symbol": "CUE", + "decimals": 18, + "status": "active", + "id": "0x9b9D617D3445f0147Ece2322BaCe8db2768D2770", + "links": [ + { + "name": "x", + "url": "https://x.com/cueprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/cueprotolchat" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9b9D617D3445f0147Ece2322BaCe8db2768D2770/logo.png b/blockchains/smartchain/assets/0x9b9D617D3445f0147Ece2322BaCe8db2768D2770/logo.png new file mode 100644 index 00000000..eb97081b Binary files /dev/null and b/blockchains/smartchain/assets/0x9b9D617D3445f0147Ece2322BaCe8db2768D2770/logo.png differ diff --git a/blockchains/smartchain/assets/0x9bA4c78b048EEed69f4eD3CFddeda7B51BAF7cA8/info.json b/blockchains/smartchain/assets/0x9bA4c78b048EEed69f4eD3CFddeda7B51BAF7cA8/info.json new file mode 100644 index 00000000..6ef93e1c --- /dev/null +++ b/blockchains/smartchain/assets/0x9bA4c78b048EEed69f4eD3CFddeda7B51BAF7cA8/info.json @@ -0,0 +1,11 @@ +{ + "name": "GenShards", + "website": "https://genshards.com", + "description": "Genesis Shards transforms NFTs into a liquidity vehicle for Pre-IDO tokens and a whole new suite of DeFi products across multiple blockchains.", + "explorer": "https://bscscan.com/token/0x9bA4c78b048EEed69f4eD3CFddeda7B51BAF7cA8", + "type": "BEP20", + "symbol": "GS", + "decimals": 18, + "status": "active", + "id": "0x9bA4c78b048EEed69f4eD3CFddeda7B51BAF7cA8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9bA4c78b048EEed69f4eD3CFddeda7B51BAF7cA8/logo.png b/blockchains/smartchain/assets/0x9bA4c78b048EEed69f4eD3CFddeda7B51BAF7cA8/logo.png new file mode 100644 index 00000000..fe0359c8 Binary files /dev/null and b/blockchains/smartchain/assets/0x9bA4c78b048EEed69f4eD3CFddeda7B51BAF7cA8/logo.png differ diff --git a/blockchains/smartchain/assets/0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A/info.json b/blockchains/smartchain/assets/0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A/info.json new file mode 100644 index 00000000..ea2228ba --- /dev/null +++ b/blockchains/smartchain/assets/0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A/info.json @@ -0,0 +1,41 @@ +{ + "name": "SpookyShiba", + "type": "BEP20", + "symbol": "SPKY", + "decimals": 18, + "website": "https://SpookyShibaBSC.com", + "description": "SpookyShiba is an E-Sports company and meme token with a unique multiplayer game with an integrated NFT marketplace.", + "explorer": "https://bscscan.com/token/0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A", + "status": "active", + "id": "0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A", + "links": [ + { + "name": "x", + "url": "https://x.com/ShibaSpooky" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spooky-shiba/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/spookyshiba" + }, + { + "name": "telegram", + "url": "https://t.me/SpookyShibaOfficial" + }, + { + "name": "discord", + "url": "https://discord.com/P6hkCFc5kR" + }, + { + "name": "telegram_news", + "url": "https://t.me/SpookyShibaNewsChannel" + } + ], + "tags": [ + "gamefi", + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A/logo.png b/blockchains/smartchain/assets/0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A/logo.png new file mode 100644 index 00000000..7664103d Binary files /dev/null and b/blockchains/smartchain/assets/0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A/logo.png differ diff --git a/blockchains/smartchain/assets/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e/info.json b/blockchains/smartchain/assets/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e/info.json new file mode 100644 index 00000000..f749577a --- /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 00000000..e428af92 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 00000000..91035600 --- /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/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/logo.png b/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/logo.png new file mode 100644 index 00000000..2f0ea80c Binary files /dev/null and b/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/logo.png differ diff --git a/blockchains/smartchain/assets/0x9c9843a65302BA0F1778593CaE1De6478596eFFB/info.json b/blockchains/smartchain/assets/0x9c9843a65302BA0F1778593CaE1De6478596eFFB/info.json new file mode 100644 index 00000000..141521f1 --- /dev/null +++ b/blockchains/smartchain/assets/0x9c9843a65302BA0F1778593CaE1De6478596eFFB/info.json @@ -0,0 +1,11 @@ +{ + "name": "TrustMax", + "website": "https://trustmax.io", + "description": "TRUSTMAX is a blockchain technology development project protected and managed by Bright Invest GmbH, Darmstadt.", + "explorer": "https://bscscan.com/token/0x9c9843a65302ba0f1778593cae1de6478596effb", + "type": "BEP20", + "symbol": "TMX", + "decimals": 18, + "status": "active", + "id": "0x9c9843a65302BA0F1778593CaE1De6478596eFFB" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9c9843a65302BA0F1778593CaE1De6478596eFFB/logo.png b/blockchains/smartchain/assets/0x9c9843a65302BA0F1778593CaE1De6478596eFFB/logo.png new file mode 100644 index 00000000..56deffc6 Binary files /dev/null and b/blockchains/smartchain/assets/0x9c9843a65302BA0F1778593CaE1De6478596eFFB/logo.png differ diff --git a/blockchains/smartchain/assets/0x9c9d4302A1A550b446401e56000F76Bc761C3A33/info.json b/blockchains/smartchain/assets/0x9c9d4302A1A550b446401e56000F76Bc761C3A33/info.json new file mode 100644 index 00000000..788c87bf --- /dev/null +++ b/blockchains/smartchain/assets/0x9c9d4302A1A550b446401e56000F76Bc761C3A33/info.json @@ -0,0 +1,11 @@ +{ + "name": "OurGlass", + "symbol": "GLASS", + "type": "BEP20", + "decimals": 9, + "description": "GLASS is a fully decentralized frictionless yield producing AI. OurGlass is an auto-staking smart contract designed to pay you yield endlessly on the Binance Smart Chain", + "website": "https://our.glass", + "explorer": "https://bscscan.com/token/0x9c9d4302A1A550b446401e56000F76Bc761C3A33", + "status": "active", + "id": "0x9c9d4302A1A550b446401e56000F76Bc761C3A33" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9c9d4302A1A550b446401e56000F76Bc761C3A33/logo.png b/blockchains/smartchain/assets/0x9c9d4302A1A550b446401e56000F76Bc761C3A33/logo.png new file mode 100644 index 00000000..b91f8e10 Binary files /dev/null and b/blockchains/smartchain/assets/0x9c9d4302A1A550b446401e56000F76Bc761C3A33/logo.png differ diff --git a/blockchains/smartchain/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json b/blockchains/smartchain/assets/0x9d275685dC284C8eB1C79f6ABA7a63Dc75ec890a/info.json new file mode 100644 index 00000000..4ed19bb9 --- /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 00000000..2af9425e 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 new file mode 100644 index 00000000..84493bb3 --- /dev/null +++ b/blockchains/smartchain/assets/0x9d3E14B607b2f569CfAFe29AF71e811d7E575CFe/info.json @@ -0,0 +1,37 @@ +{ + "name": "FlokiBonk", + "website": "https://flokibonk.com/", + "description": "FlokiBonk is a meme token on BSC, created to support and unite meme creators. FlokiBonk token has built-in automatic yield generation properties. 10% tax on each transaction split evenly to provide reflections to holders and increase the price floor through LP Acquisition", + "explorer": "https://bscscan.com/token/0x9d3E14B607b2f569CfAFe29AF71e811d7E575CFe", + "type": "BEP20", + "symbol": "FLOBO", + "decimals": 9, + "status": "active", + "id": "0x9d3E14B607b2f569CfAFe29AF71e811d7E575CFe", + "links": [ + { + "name": "github", + "url": "https://github.com/FlokiBonk/FlokiBonk-Token" + }, + { + "name": "x", + "url": "https://x.com/FLOKO_BONKO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/flokibonk" + }, + { + "name": "telegram", + "url": "https://t.me/FlokiBonk" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/flokibonk/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/flokibonk" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9d3E14B607b2f569CfAFe29AF71e811d7E575CFe/logo.png b/blockchains/smartchain/assets/0x9d3E14B607b2f569CfAFe29AF71e811d7E575CFe/logo.png new file mode 100644 index 00000000..e70e2454 Binary files /dev/null and b/blockchains/smartchain/assets/0x9d3E14B607b2f569CfAFe29AF71e811d7E575CFe/logo.png differ diff --git a/blockchains/smartchain/assets/0x9d70a3EE3079A6FA2bB16591414678b7Ad91f0b5/info.json b/blockchains/smartchain/assets/0x9d70a3EE3079A6FA2bB16591414678b7Ad91f0b5/info.json new file mode 100644 index 00000000..9c99cc8d --- /dev/null +++ b/blockchains/smartchain/assets/0x9d70a3EE3079A6FA2bB16591414678b7Ad91f0b5/info.json @@ -0,0 +1,11 @@ +{ + "name": "MemePad", + "website": "https://memepad.co", + "description": "MemePad is an IDO launchpad that focuses primarily on Meme Coins and Micro-Cap projects.", + "explorer": "https://bscscan.com/token/0x9d70a3EE3079A6FA2bB16591414678b7Ad91f0b5", + "type": "BEP20", + "symbol": "MEPAD", + "decimals": 18, + "status": "active", + "id": "0x9d70a3EE3079A6FA2bB16591414678b7Ad91f0b5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9d70a3EE3079A6FA2bB16591414678b7Ad91f0b5/logo.png b/blockchains/smartchain/assets/0x9d70a3EE3079A6FA2bB16591414678b7Ad91f0b5/logo.png new file mode 100644 index 00000000..4010a24c Binary files /dev/null and b/blockchains/smartchain/assets/0x9d70a3EE3079A6FA2bB16591414678b7Ad91f0b5/logo.png differ diff --git a/blockchains/smartchain/assets/0x9e06E1203BdC3747eE3Ab5fa9488619BcF2A2666/info.json b/blockchains/smartchain/assets/0x9e06E1203BdC3747eE3Ab5fa9488619BcF2A2666/info.json new file mode 100644 index 00000000..b1eee0bd --- /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 00000000..9696bf6f 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 new file mode 100644 index 00000000..0d891c4a --- /dev/null +++ b/blockchains/smartchain/assets/0x9e26c50B8A3b7652c3fD2B378252A8647a0C9268/info.json @@ -0,0 +1,53 @@ +{ + "name": "Shibance Token", + "website": "https://shibance.com", + "description": "The First Meme DEX and Launchpad on BSC", + "explorer": "https://bscscan.com/token/0x9e26c50B8A3b7652c3fD2B378252A8647a0C9268", + "type": "BEP20", + "symbol": "WOOF", + "decimals": 18, + "status": "active", + "id": "0x9e26c50B8A3b7652c3fD2B378252A8647a0C9268", + "links": [ + { + "name": "github", + "url": "https://github.com/shibance" + }, + { + "name": "x", + "url": "https://x.com/shibance" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/shibance" + }, + { + "name": "telegram", + "url": "https://t.me/shibance" + }, + { + "name": "telegram_news", + "url": "https://t.me/shibance_announcements" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCmIEiNh39XFtqJXRM02BT4Q" + }, + { + "name": "docs", + "url": "https://docs.shibance.com" + }, + { + "name": "medium", + "url": "https://shibance.medium.com" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shibance-token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shibance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9e26c50B8A3b7652c3fD2B378252A8647a0C9268/logo.png b/blockchains/smartchain/assets/0x9e26c50B8A3b7652c3fD2B378252A8647a0C9268/logo.png new file mode 100644 index 00000000..bf9b9e22 Binary files /dev/null and b/blockchains/smartchain/assets/0x9e26c50B8A3b7652c3fD2B378252A8647a0C9268/logo.png differ diff --git a/blockchains/smartchain/assets/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848/info.json b/blockchains/smartchain/assets/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848/info.json new file mode 100644 index 00000000..957b3ca2 --- /dev/null +++ b/blockchains/smartchain/assets/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848/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/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848", + "type": "BEP20", + "symbol": "QDX", + "decimals": 18, + "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 00000000..ae8ff273 --- /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 00000000..a15a0ef6 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 new file mode 100644 index 00000000..12df7c29 --- /dev/null +++ b/blockchains/smartchain/assets/0x9e5965d28E8D44CAE8F9b809396E0931F9Df71CA/info.json @@ -0,0 +1,49 @@ +{ + "name": "Space SIP", + "type": "BEP20", + "symbol": "SIP", + "decimals": 18, + "website": "https://sip.space", + "description": "Space SIP is the first NFT space battleship game with worldclass design of gaming experience in a real-value collectible ecosystem.", + "explorer": "https://bscscan.com/token/0x9e5965d28E8D44CAE8F9b809396E0931F9Df71CA", + "status": "active", + "id": "0x9e5965d28E8D44CAE8F9b809396E0931F9Df71CA", + "links": [ + { + "name": "x", + "url": "https://x.com/0xSpaceSip" + }, + { + "name": "telegram", + "url": "https://t.me/SpaceSip" + }, + { + "name": "github", + "url": "https://github.com/spacesip" + }, + { + "name": "medium", + "url": "https://medium.com/space-sip" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/space-sip/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCh_KnT_TXsifGlIr8oVnztg" + }, + { + "name": "facebook", + "url": "https://facebook.com/0xSpaceSip" + }, + { + "name": "whitepaper", + "url": "https://docsend.com/view/gsftc6iyryh8na8v" + }, + { + "name": "discord", + "url": "https://discord.com/invite/HvVTRAT9" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9e5965d28E8D44CAE8F9b809396E0931F9Df71CA/logo.png b/blockchains/smartchain/assets/0x9e5965d28E8D44CAE8F9b809396E0931F9Df71CA/logo.png new file mode 100644 index 00000000..a2df58d7 Binary files /dev/null and b/blockchains/smartchain/assets/0x9e5965d28E8D44CAE8F9b809396E0931F9Df71CA/logo.png differ diff --git a/blockchains/smartchain/assets/0x9eBBEB7f6b842377714EAdD987CaA4510205107A/info.json b/blockchains/smartchain/assets/0x9eBBEB7f6b842377714EAdD987CaA4510205107A/info.json new file mode 100644 index 00000000..e60428e7 --- /dev/null +++ b/blockchains/smartchain/assets/0x9eBBEB7f6b842377714EAdD987CaA4510205107A/info.json @@ -0,0 +1,41 @@ +{ + "name": "Brewery", + "type": "BEP20", + "symbol": "BRE", + "decimals": 18, + "website": "https://bobabrewery.com/", + "description": "Boba Brewery is the first exclusive launchpad for decentralized fundraising in Boba ecosystem, offering the hottest and innovative projects in a fair, secure, and efficient way.", + "explorer": "https://bscscan.com/token/0x9eBBEB7f6b842377714EAdD987CaA4510205107A", + "status": "active", + "id": "0x9eBBEB7f6b842377714EAdD987CaA4510205107A", + "links": [ + { + "name": "x", + "url": "https://x.com/boba_brewery" + }, + { + "name": "github", + "url": "https://github.com/BobaBrewery" + }, + { + "name": "telegram", + "url": "https://t.me/+6jNxyl-l96FhNDM5" + }, + { + "name": "docs", + "url": "https://docs.bobabrewery.com/" + }, + { + "name": "medium", + "url": "https://medium.com/@boba_brewery" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/boba-brewery/" + } + ], + "tags": [ + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9eBBEB7f6b842377714EAdD987CaA4510205107A/logo.png b/blockchains/smartchain/assets/0x9eBBEB7f6b842377714EAdD987CaA4510205107A/logo.png new file mode 100644 index 00000000..2bdde77a Binary files /dev/null and b/blockchains/smartchain/assets/0x9eBBEB7f6b842377714EAdD987CaA4510205107A/logo.png differ diff --git a/blockchains/smartchain/assets/0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27/info.json b/blockchains/smartchain/assets/0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27/info.json new file mode 100644 index 00000000..ec73dc83 --- /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 00000000..1cf7d100 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 new file mode 100644 index 00000000..d3940c77 --- /dev/null +++ b/blockchains/smartchain/assets/0x9eeB6c5ff183E6001c65a12D70026b900AE76781/info.json @@ -0,0 +1,28 @@ +{ + "name": "Irena Green Energy", + "type": "BEP20", + "symbol": "IRENA", + "decimals": 9, + "website": "https://irenamining.com/", + "description": "The future is now in renewable green energy and eco-friendly electric cars and solar panels", + "explorer": "https://bscscan.com/token/0x9eeB6c5ff183E6001c65a12D70026b900AE76781", + "status": "active", + "id": "0x9eeB6c5ff183E6001c65a12D70026b900AE76781", + "links": [ + { + "name": "telegram", + "url": "https://t.me/irena_coin_global" + }, + { + "name": "x", + "url": "https://x.com/Irenagreencoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/irena-green-energy/" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9eeB6c5ff183E6001c65a12D70026b900AE76781/logo.png b/blockchains/smartchain/assets/0x9eeB6c5ff183E6001c65a12D70026b900AE76781/logo.png new file mode 100644 index 00000000..b7ff2555 Binary files /dev/null and b/blockchains/smartchain/assets/0x9eeB6c5ff183E6001c65a12D70026b900AE76781/logo.png differ diff --git a/blockchains/smartchain/assets/0x9f16E46c73b43BDB70861247d537bEE4eA18F639/info.json b/blockchains/smartchain/assets/0x9f16E46c73b43BDB70861247d537bEE4eA18F639/info.json new file mode 100644 index 00000000..a7bd13de --- /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 00000000..8232eae7 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 00000000..f463e012 --- /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 00000000..bfa2555a 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 00000000..e094e343 --- /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 new file mode 100644 index 00000000..774cf6d3 --- /dev/null +++ b/blockchains/smartchain/assets/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/info.json @@ -0,0 +1,29 @@ +{ + "name": "Tokocrypto Token", + "type": "BEP20", + "symbol": "TKO", + "decimals": 18, + "website": "http://www.tokocrypto.com/", + "description": "The first local Indonesian Crypto Asset Project to offer a unique hybrid token model.", + "explorer": "https://bscscan.com/token/0x9f589e3eabe42ebC94A44727b3f3531C0c877809", + "status": "active", + "id": "0x9f589e3eabe42ebC94A44727b3f3531C0c877809", + "links": [ + { + "name": "telegram", + "url": "https://t.me/tkogroupofficial" + }, + { + "name": "x", + "url": "https://x.com/tkobytokocrypto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tokocrypto/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tokocrypto/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/logo.png b/blockchains/smartchain/assets/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/logo.png new file mode 100644 index 00000000..e7f9cbad Binary files /dev/null and b/blockchains/smartchain/assets/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/logo.png differ diff --git a/blockchains/smartchain/assets/0x9f9830631cd280d62772944a2AF06213E7A23771/info.json b/blockchains/smartchain/assets/0x9f9830631cd280d62772944a2AF06213E7A23771/info.json new file mode 100644 index 00000000..829f023a --- /dev/null +++ b/blockchains/smartchain/assets/0x9f9830631cd280d62772944a2AF06213E7A23771/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kryptobellion.com", + "website": "https://kryptobellion.com/", + "description": "Kryptobellion is a fast-paced NFT battle game, where users build a strategic deck from thousands of fighters from hundreds of clans.", + "explorer": "https://bscscan.com/token/0x9f9830631cd280d62772944a2af06213e7a23771", + "type": "BEP20", + "symbol": "KRYPTO", + "decimals": 18, + "status": "active", + "id": "0x9f9830631cd280d62772944a2AF06213E7A23771" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9f9830631cd280d62772944a2AF06213E7A23771/logo.png b/blockchains/smartchain/assets/0x9f9830631cd280d62772944a2AF06213E7A23771/logo.png new file mode 100644 index 00000000..27e5aa9b Binary files /dev/null and b/blockchains/smartchain/assets/0x9f9830631cd280d62772944a2AF06213E7A23771/logo.png differ diff --git a/blockchains/smartchain/assets/0x9fD87aEfe02441B123c3c32466cD9dB4c578618f/info.json b/blockchains/smartchain/assets/0x9fD87aEfe02441B123c3c32466cD9dB4c578618f/info.json new file mode 100644 index 00000000..71562ad8 --- /dev/null +++ b/blockchains/smartchain/assets/0x9fD87aEfe02441B123c3c32466cD9dB4c578618f/info.json @@ -0,0 +1,25 @@ +{ + "name": "Thetan Gem", + "symbol": "THG", + "type": "BEP20", + "decimals": 18, + "description": "Thetan Arena is an e-sport game based on Blockchain technology. You can gather your friends, form a team, battle with others and earn money with just your skills. Thetan Arena's gameplay is designed to revolve around the combination of your personal skills and teamwork with various game modes: MOBA & Battle Royale, coming with monthly updates and attractive rewards. Gear your heroes up with a large selection of hundreds of weapons. Play for Free, Play to Earn!", + "website": "https://thetanarena.com/", + "explorer": "https://bscscan.com/token/0x9fD87aEfe02441B123c3c32466cD9dB4c578618f", + "status": "active", + "id": "0x9fD87aEfe02441B123c3c32466cD9dB4c578618f", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/thetan-arena/" + }, + { + "name": "x", + "url": "https://x.com/thetanarena" + }, + { + "name": "telegram", + "url": "https://t.me/thetanarena" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9fD87aEfe02441B123c3c32466cD9dB4c578618f/logo.png b/blockchains/smartchain/assets/0x9fD87aEfe02441B123c3c32466cD9dB4c578618f/logo.png new file mode 100644 index 00000000..95586f01 Binary files /dev/null and b/blockchains/smartchain/assets/0x9fD87aEfe02441B123c3c32466cD9dB4c578618f/logo.png differ diff --git a/blockchains/smartchain/assets/0xA001862BA0866Ee3e3a2613fAb5954861452B9Bf/info.json b/blockchains/smartchain/assets/0xA001862BA0866Ee3e3a2613fAb5954861452B9Bf/info.json new file mode 100644 index 00000000..517a3e48 --- /dev/null +++ b/blockchains/smartchain/assets/0xA001862BA0866Ee3e3a2613fAb5954861452B9Bf/info.json @@ -0,0 +1,32 @@ +{ + "name": "ENHANCE", + "type": "BEP20", + "symbol": "ENH", + "decimals": 18, + "website": "https://helloenhance.com", + "description": "Enhance is a reflectionary token that distributes safemoon with every transaction while including burn and liquidity pooling mechanisms on chain.", + "explorer": "https://bscscan.com/token/0xA001862BA0866Ee3e3a2613fAb5954861452B9Bf", + "status": "active", + "id": "0xA001862BA0866Ee3e3a2613fAb5954861452B9Bf", + "links": [ + { + "name": "x", + "url": "https://x.com/enhancetoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/enhancetoken/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EnhanceToken/" + }, + { + "name": "facebook", + "url": "https://facebook.com/enhancetoken/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA001862BA0866Ee3e3a2613fAb5954861452B9Bf/logo.png b/blockchains/smartchain/assets/0xA001862BA0866Ee3e3a2613fAb5954861452B9Bf/logo.png new file mode 100644 index 00000000..c3d52c48 Binary files /dev/null and b/blockchains/smartchain/assets/0xA001862BA0866Ee3e3a2613fAb5954861452B9Bf/logo.png differ diff --git a/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/info.json b/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/info.json new file mode 100644 index 00000000..55074951 --- /dev/null +++ b/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/info.json @@ -0,0 +1,14 @@ +{ + "name": "wBitcoin", + "website": "https://wbitcoin.net", + "description": "Yield farm Bitcoin on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0xa01b9cafe2230093fbf0000b43701e03717f77ce", + "symbol": "wBTC", + "type": "BEP20", + "decimals": 8, + "status": "abandoned", + "id": "0xA01b9cAFE2230093fbf0000B43701E03717F77cE", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA03C3a233940485D46eE77407343DA3221198427/info.json b/blockchains/smartchain/assets/0xA03C3a233940485D46eE77407343DA3221198427/info.json new file mode 100644 index 00000000..3ab5cf4a --- /dev/null +++ b/blockchains/smartchain/assets/0xA03C3a233940485D46eE77407343DA3221198427/info.json @@ -0,0 +1,14 @@ +{ + "name": "SAFESUN", + "type": "BEP20", + "symbol": "SAFESUN", + "decimals": 9, + "website": "https://safesuncrypto.com", + "description": "SafeSun is a cryptocurrency based on open-source BEP-20 interface, which aims to provide incentives and benefits to its holders.", + "explorer": "https://bscscan.com/token/0xA03C3a233940485D46eE77407343DA3221198427", + "status": "active", + "id": "0xA03C3a233940485D46eE77407343DA3221198427", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA03C3a233940485D46eE77407343DA3221198427/logo.png b/blockchains/smartchain/assets/0xA03C3a233940485D46eE77407343DA3221198427/logo.png new file mode 100644 index 00000000..6da058bc Binary files /dev/null and b/blockchains/smartchain/assets/0xA03C3a233940485D46eE77407343DA3221198427/logo.png differ diff --git a/blockchains/smartchain/assets/0xA060E0c0588D26CabA4a0009513337aCE50752dd/info.json b/blockchains/smartchain/assets/0xA060E0c0588D26CabA4a0009513337aCE50752dd/info.json new file mode 100644 index 00000000..18dba6d2 --- /dev/null +++ b/blockchains/smartchain/assets/0xA060E0c0588D26CabA4a0009513337aCE50752dd/info.json @@ -0,0 +1,25 @@ +{ + "name": "Zooshi", + "type": "BEP20", + "symbol": "ZOOSHI", + "decimals": 18, + "website": "https://zooshi.io/", + "description": "Zooshi is a hyper deflationary token on the Binance Smart Chain, with rewards backed by $SUSHI, paid out hourly. We have an arcade with play-to-earn mechanics!", + "explorer": "https://bscscan.com/token/0xA060E0c0588D26CabA4a0009513337aCE50752dd", + "status": "active", + "id": "0xA060E0c0588D26CabA4a0009513337aCE50752dd", + "links": [ + { + "name": "x", + "url": "https://x.com/zooshicoin" + }, + { + "name": "telegram", + "url": "https://t.me/zooshicoin" + }, + { + "name": "telegram_news", + "url": "https://t.me/zooshicoinannouncements" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA060E0c0588D26CabA4a0009513337aCE50752dd/logo.png b/blockchains/smartchain/assets/0xA060E0c0588D26CabA4a0009513337aCE50752dd/logo.png new file mode 100644 index 00000000..cd03b5f2 Binary files /dev/null and b/blockchains/smartchain/assets/0xA060E0c0588D26CabA4a0009513337aCE50752dd/logo.png differ diff --git a/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/info.json b/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/info.json new file mode 100644 index 00000000..0bcba34f --- /dev/null +++ b/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus BNB", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0xA07c5b74C9B40447a954e1466938b865b6BBea36", + "type": "BEP20", + "symbol": "vBNB", + "decimals": 8, + "status": "active", + "id": "0xA07c5b74C9B40447a954e1466938b865b6BBea36", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/logo.png b/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/logo.png new file mode 100644 index 00000000..420e2055 Binary files /dev/null and b/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/logo.png differ diff --git a/blockchains/smartchain/assets/0xA0C2A0A34c04135429a38f7F9a4354090e00145A/info.json b/blockchains/smartchain/assets/0xA0C2A0A34c04135429a38f7F9a4354090e00145A/info.json new file mode 100644 index 00000000..a69f4ddd --- /dev/null +++ b/blockchains/smartchain/assets/0xA0C2A0A34c04135429a38f7F9a4354090e00145A/info.json @@ -0,0 +1,29 @@ +{ + "name": "Primex Token", + "website": "https://prxeco.io/", + "description": "PRX is a token issued by Primex under Binance Smart-Chain.", + "explorer": "https://bscscan.com/token/0xA0C2A0A34c04135429a38f7F9a4354090e00145A", + "type": "BEP20", + "symbol": "PRX", + "decimals": 9, + "status": "active", + "id": "0xA0C2A0A34c04135429a38f7F9a4354090e00145A", + "links": [ + { + "name": "x", + "url": "https://x.com/PrimexCapital" + }, + { + "name": "github", + "url": "https://github.com/primexdev" + }, + { + "name": "telegram", + "url": "https://t.me/prxeco" + }, + { + "name": "whitepaper", + "url": "https://prxeco.io/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA0C2A0A34c04135429a38f7F9a4354090e00145A/logo.png b/blockchains/smartchain/assets/0xA0C2A0A34c04135429a38f7F9a4354090e00145A/logo.png new file mode 100644 index 00000000..a3cc8b28 Binary files /dev/null and b/blockchains/smartchain/assets/0xA0C2A0A34c04135429a38f7F9a4354090e00145A/logo.png differ diff --git a/blockchains/smartchain/assets/0xA0C3Ef24414ED9C9B456740128d8E63D016A9e11/info.json b/blockchains/smartchain/assets/0xA0C3Ef24414ED9C9B456740128d8E63D016A9e11/info.json new file mode 100644 index 00000000..42f96c68 --- /dev/null +++ b/blockchains/smartchain/assets/0xA0C3Ef24414ED9C9B456740128d8E63D016A9e11/info.json @@ -0,0 +1,53 @@ +{ + "name": "Ape Swap LP BNB-ETH", + "website": "https://apeswap.finance", + "description": "ApeSwap is an Automated Market Maker, Yield Farming, and Staking platform on Binance Smart Chain. ApeSwap was built by DeFi Apes, for DeFi Apes. We have a dedicated team of experienced monkeys, who have been in the crypto space for years.", + "explorer": "https://bscscan.com/token/0xA0C3Ef24414ED9C9B456740128d8E63D016A9e11", + "type": "BEP20", + "symbol": "APE-LP", + "decimals": 18, + "status": "active", + "id": "0xA0C3Ef24414ED9C9B456740128d8E63D016A9e11", + "links": [ + { + "name": "github", + "url": "https://github.com/ApeSwapFinance" + }, + { + "name": "docs", + "url": "https://apeswap.gitbook.io/apeswap-finance/" + }, + { + "name": "x", + "url": "https://x.com/ape_swap" + }, + { + "name": "telegram", + "url": "https://t.me/ape_swap" + }, + { + "name": "telegram_news", + "url": "https://t.me/ape_swap_news" + }, + { + "name": "medium", + "url": "https://ape-swap.medium.com/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AbVxfGRCSd/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Apeswap/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apeswap-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/apeswap-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA0C3Ef24414ED9C9B456740128d8E63D016A9e11/logo.png b/blockchains/smartchain/assets/0xA0C3Ef24414ED9C9B456740128d8E63D016A9e11/logo.png new file mode 100644 index 00000000..5676acf9 Binary files /dev/null and b/blockchains/smartchain/assets/0xA0C3Ef24414ED9C9B456740128d8E63D016A9e11/logo.png differ diff --git a/blockchains/smartchain/assets/0xA1303E6199b319a891b79685F0537D289af1FC83/info.json b/blockchains/smartchain/assets/0xA1303E6199b319a891b79685F0537D289af1FC83/info.json new file mode 100644 index 00000000..f04c22cb --- /dev/null +++ b/blockchains/smartchain/assets/0xA1303E6199b319a891b79685F0537D289af1FC83/info.json @@ -0,0 +1,29 @@ +{ + "name": "NAR Token", + "website": "https://narwhalswap.org", + "description": "Narwhalswap Protocol — DeFi Platform with Sustainability. We will build a new unique dapp and protocol to enhance the value of the DeFi, create diversified investment, and become the future of financial services.", + "explorer": "https://bscscan.com/token/0xa1303e6199b319a891b79685f0537d289af1fc83", + "type": "BEP20", + "symbol": "NAR", + "decimals": 18, + "status": "active", + "id": "0xA1303E6199b319a891b79685F0537D289af1FC83", + "links": [ + { + "name": "x", + "url": "https://x.com/narwhalswap" + }, + { + "name": "telegram", + "url": "https://t.me/narwhalswap" + }, + { + "name": "medium", + "url": "https://medium.com/narwhalswap" + }, + { + "name": "docs", + "url": "https://docs.narwhalswap.org" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA1303E6199b319a891b79685F0537D289af1FC83/logo.png b/blockchains/smartchain/assets/0xA1303E6199b319a891b79685F0537D289af1FC83/logo.png new file mode 100644 index 00000000..75de53f1 Binary files /dev/null and b/blockchains/smartchain/assets/0xA1303E6199b319a891b79685F0537D289af1FC83/logo.png differ diff --git a/blockchains/smartchain/assets/0xA176fa55bef56D18ab671251957aCB0Db630539b/info.json b/blockchains/smartchain/assets/0xA176fa55bef56D18ab671251957aCB0Db630539b/info.json new file mode 100644 index 00000000..bef2d129 --- /dev/null +++ b/blockchains/smartchain/assets/0xA176fa55bef56D18ab671251957aCB0Db630539b/info.json @@ -0,0 +1,49 @@ +{ + "name": "SymBULL", + "type": "BEP20", + "symbol": "SYMBULL", + "decimals": 9, + "website": "https://symbull.com", + "description": "A Decentralized Token that created a Crypto EcoVERSE! SymBULL, RIDE, CHARGE, BullSwap, Innovative Reward System,and BullRUN NFT Game! All holders of SymBULL will earn 8% reward from every Buy/Sell Transaction in BUSD, which is automatically sent to your wallet by simply holding SymBULL.", + "explorer": "https://bscscan.com/token/0xA176fa55bef56D18ab671251957aCB0Db630539b", + "status": "active", + "id": "0xA176fa55bef56D18ab671251957aCB0Db630539b", + "links": [ + { + "name": "x", + "url": "https://x.com/SymBULLCoin" + }, + { + "name": "telegram", + "url": "https://t.me/symbull" + }, + { + "name": "blog", + "url": "https://symbull.medium.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/symbull/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/symbull/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/symbull" + }, + { + "name": "facebook", + "url": "https://facebook.com/SymBull" + }, + { + "name": "whitepaper", + "url": "https://secureservercdn.net/50.62.172.157/9h7.c40.myftpupload.com/wp-content/uploads/2021/10/SymBull-Whitepaper-1.pdf" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xa176fa55bef56d18ab671251957acb0db630539b#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA176fa55bef56D18ab671251957aCB0Db630539b/logo.png b/blockchains/smartchain/assets/0xA176fa55bef56D18ab671251957aCB0Db630539b/logo.png new file mode 100644 index 00000000..f552b008 Binary files /dev/null and b/blockchains/smartchain/assets/0xA176fa55bef56D18ab671251957aCB0Db630539b/logo.png differ diff --git a/blockchains/smartchain/assets/0xA18BBdCd86e4178d10eCd9316667cfE4C4AA8717/info.json b/blockchains/smartchain/assets/0xA18BBdCd86e4178d10eCd9316667cfE4C4AA8717/info.json new file mode 100644 index 00000000..28ee2148 --- /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 00000000..c47cd8d6 Binary files /dev/null and b/blockchains/smartchain/assets/0xA18BBdCd86e4178d10eCd9316667cfE4C4AA8717/logo.png differ diff --git a/blockchains/smartchain/assets/0xA1928c0D8F83C0bFB7ebE51B412b1FD29A277893/info.json b/blockchains/smartchain/assets/0xA1928c0D8F83C0bFB7ebE51B412b1FD29A277893/info.json new file mode 100644 index 00000000..02c1431a --- /dev/null +++ b/blockchains/smartchain/assets/0xA1928c0D8F83C0bFB7ebE51B412b1FD29A277893/info.json @@ -0,0 +1,12 @@ +{ + "name": "SatisFi Token", + "website": "https://satis.finance", + "description": "SAT is the native token of SatisFinance, 4th generation yield farming project on BSC.", + "explorer": "https://bscscan.com/token/0xA1928c0D8F83C0bFB7ebE51B412b1FD29A277893", + "research": "https://docs.satis.finance/tokenomics/main-token-sat", + "type": "BEP20", + "symbol": "SAT", + "decimals": 18, + "status": "active", + "id": "0xA1928c0D8F83C0bFB7ebE51B412b1FD29A277893" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA1928c0D8F83C0bFB7ebE51B412b1FD29A277893/logo.png b/blockchains/smartchain/assets/0xA1928c0D8F83C0bFB7ebE51B412b1FD29A277893/logo.png new file mode 100644 index 00000000..fc05530c Binary files /dev/null and b/blockchains/smartchain/assets/0xA1928c0D8F83C0bFB7ebE51B412b1FD29A277893/logo.png differ diff --git a/blockchains/smartchain/assets/0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3/info.json b/blockchains/smartchain/assets/0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3/info.json new file mode 100644 index 00000000..2c1f3dbf --- /dev/null +++ b/blockchains/smartchain/assets/0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3/info.json @@ -0,0 +1,41 @@ +{ + "name": "API Inu", + "type": "BEP20", + "symbol": "API", + "decimals": 9, + "website": "https://www.apiinu.com/", + "description": "API Inu provide a traditional API service to smart contracts in a decentralized way.", + "explorer": "https://bscscan.com/token/0xa1943bc4a417ffd2e9e11a97383fa3f9548291c3", + "status": "active", + "id": "0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3", + "links": [ + { + "name": "x", + "url": "https://x.com/apiinu" + }, + { + "name": "github", + "url": "https://github.com/apiinu" + }, + { + "name": "telegram", + "url": "https://t.me/apiinu" + }, + { + "name": "whitepaper", + "url": "https://apiinu.com/assets/api_inu_whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@apiinu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/api-inu/" + } + ], + "tags": [ + "defi", + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3/logo.png b/blockchains/smartchain/assets/0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3/logo.png new file mode 100644 index 00000000..b6c4d9d3 Binary files /dev/null and b/blockchains/smartchain/assets/0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3/logo.png differ diff --git a/blockchains/smartchain/assets/0xA1A0C7849e6916945a78F8AF843738c051ab15F3/info.json b/blockchains/smartchain/assets/0xA1A0C7849e6916945a78F8AF843738c051ab15F3/info.json new file mode 100644 index 00000000..a1384808 --- /dev/null +++ b/blockchains/smartchain/assets/0xA1A0C7849e6916945a78F8AF843738c051ab15F3/info.json @@ -0,0 +1,11 @@ +{ + "name": "MetaMoon.io", + "website": "https://metamoon.io/", + "description": "The MetaMoon is a NFT market and DeFi Token. Reflection, Auto LP, and Burn.", + "explorer": "https://bscscan.com/token/0xA1A0C7849e6916945a78F8AF843738c051ab15F3", + "type": "BEP20", + "symbol": "MetaMoon", + "decimals": 9, + "status": "active", + "id": "0xA1A0C7849e6916945a78F8AF843738c051ab15F3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA1A0C7849e6916945a78F8AF843738c051ab15F3/logo.png b/blockchains/smartchain/assets/0xA1A0C7849e6916945a78F8AF843738c051ab15F3/logo.png new file mode 100644 index 00000000..a7904939 Binary files /dev/null and b/blockchains/smartchain/assets/0xA1A0C7849e6916945a78F8AF843738c051ab15F3/logo.png differ diff --git a/blockchains/smartchain/assets/0xA1efCe38CB265Af369e891bC3026d0285545D4E5/info.json b/blockchains/smartchain/assets/0xA1efCe38CB265Af369e891bC3026d0285545D4E5/info.json new file mode 100644 index 00000000..8fcb5074 --- /dev/null +++ b/blockchains/smartchain/assets/0xA1efCe38CB265Af369e891bC3026d0285545D4E5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Safetesla", + "type": "BEP20", + "symbol": "SAFETESLA", + "decimals": 9, + "website": "https://www.safetesla.com/", + "description": "Safetesla is frictionless yield & liquidity generation smart contract protocol", + "explorer": "https://bscscan.com/token/0xa1efce38cb265af369e891bc3026d0285545d4e5", + "status": "active", + "id": "0xA1efCe38CB265Af369e891bC3026d0285545D4E5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA1efCe38CB265Af369e891bC3026d0285545D4E5/logo.png b/blockchains/smartchain/assets/0xA1efCe38CB265Af369e891bC3026d0285545D4E5/logo.png new file mode 100644 index 00000000..25e8dbca Binary files /dev/null and b/blockchains/smartchain/assets/0xA1efCe38CB265Af369e891bC3026d0285545D4E5/logo.png differ diff --git a/blockchains/smartchain/assets/0xA1fd12820F0c1C492DD87f8a0d12043d8f24f8a6/info.json b/blockchains/smartchain/assets/0xA1fd12820F0c1C492DD87f8a0d12043d8f24f8a6/info.json new file mode 100644 index 00000000..56f40c24 --- /dev/null +++ b/blockchains/smartchain/assets/0xA1fd12820F0c1C492DD87f8a0d12043d8f24f8a6/info.json @@ -0,0 +1,11 @@ +{ + "name": "EUSD", + "website": "https://e-usd.network", + "description": "Decentralizing the U.S dollar to create a stable token", + "explorer": "https://bscscan.com/token/0xa1fd12820f0c1c492dd87f8a0d12043d8f24f8a6", + "type": "BEP20", + "symbol": "EUSD", + "decimals": 18, + "status": "active", + "id": "0xA1fd12820F0c1C492DD87f8a0d12043d8f24f8a6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA1fd12820F0c1C492DD87f8a0d12043d8f24f8a6/logo.png b/blockchains/smartchain/assets/0xA1fd12820F0c1C492DD87f8a0d12043d8f24f8a6/logo.png new file mode 100644 index 00000000..11427a25 Binary files /dev/null and b/blockchains/smartchain/assets/0xA1fd12820F0c1C492DD87f8a0d12043d8f24f8a6/logo.png differ diff --git a/blockchains/smartchain/assets/0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd/info.json b/blockchains/smartchain/assets/0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd/info.json new file mode 100644 index 00000000..5a670f8d --- /dev/null +++ b/blockchains/smartchain/assets/0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd/info.json @@ -0,0 +1,44 @@ +{ + "name": "X Doge", + "type": "BEP20", + "symbol": "X", + "decimals": 9, + "website": "https://xdoge.app", + "description": "X Doge is the next evolutionary Decentralized Finance cryptocurrency that strives to provide wide ranging DeFi services from premier charting solutions.", + "explorer": "https://bscscan.com/token/0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd", + "status": "active", + "id": "0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd", + "links": [ + { + "name": "x", + "url": "https://x.com/xdogeapp" + }, + { + "name": "github", + "url": "https://github.com/xdogeapp" + }, + { + "name": "telegram", + "url": "https://t.me/xdogeapp" + }, + { + "name": "whitepaper", + "url": "https://xdoge.app/assets/xdoge_whitepaper_v1.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@xdogeapp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/x-doge/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xa2086f4a3955a520a1743d68cdbcf064ee1746cd#code" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd/logo.png b/blockchains/smartchain/assets/0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd/logo.png new file mode 100644 index 00000000..db55eb58 Binary files /dev/null and b/blockchains/smartchain/assets/0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd/logo.png differ diff --git a/blockchains/smartchain/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/info.json b/blockchains/smartchain/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/info.json new file mode 100644 index 00000000..69a0df11 --- /dev/null +++ b/blockchains/smartchain/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/info.json @@ -0,0 +1,33 @@ +{ + "name": "Automata", + "website": "https://www.ata.network", + "description": "Automata Network is a decentralized service protocol that provides a privacy middleware layer for dApps across multiple blockchains.", + "explorer": "https://bscscan.com/token/0xa2120b9e674d3fc3875f415a7df52e382f141225", + "type": "BEP20", + "symbol": "ATA", + "decimals": 18, + "status": "active", + "id": "0xA2120b9e674d3fC3875f415A7DF52e382F141225", + "links": [ + { + "name": "github", + "url": "https://github.com/automata-network" + }, + { + "name": "x", + "url": "https://x.com/automatanetwork" + }, + { + "name": "telegram", + "url": "https://t.me/ata_network" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/automata/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/automata-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/logo.png b/blockchains/smartchain/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/logo.png new file mode 100644 index 00000000..0184935a Binary files /dev/null and b/blockchains/smartchain/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/logo.png differ diff --git a/blockchains/smartchain/assets/0xA2171868C06e578ffF91fDfD186b22A3dF3fF2C7/info.json b/blockchains/smartchain/assets/0xA2171868C06e578ffF91fDfD186b22A3dF3fF2C7/info.json new file mode 100644 index 00000000..58d395be --- /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 00000000..03dc14d6 Binary files /dev/null and b/blockchains/smartchain/assets/0xA2171868C06e578ffF91fDfD186b22A3dF3fF2C7/logo.png differ diff --git a/blockchains/smartchain/assets/0xA2D3e8E0723c6Cd0fBC0409FEc13B9E67B2420bc/info.json b/blockchains/smartchain/assets/0xA2D3e8E0723c6Cd0fBC0409FEc13B9E67B2420bc/info.json new file mode 100644 index 00000000..3400030e --- /dev/null +++ b/blockchains/smartchain/assets/0xA2D3e8E0723c6Cd0fBC0409FEc13B9E67B2420bc/info.json @@ -0,0 +1,11 @@ +{ + "name": "NFTShiba.Finance", + "type": "BEP20", + "symbol": "NFTSHIBA", + "decimals": 9, + "website": "https://nft-shiba.info", + "description": "NFTShiba Finance is a NFT ART Meme and NFT Defi. NFTShiba Finance operates as a deflationary automated liquidity-locking and self-staking direct distribution protocol, providing safe, secure and hassle-free transactions and yield-generation for all holders.", + "explorer": "https://bscscan.com/token/0xA2D3e8E0723c6Cd0fBC0409FEc13B9E67B2420bc", + "status": "active", + "id": "0xA2D3e8E0723c6Cd0fBC0409FEc13B9E67B2420bc" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA2D3e8E0723c6Cd0fBC0409FEc13B9E67B2420bc/logo.png b/blockchains/smartchain/assets/0xA2D3e8E0723c6Cd0fBC0409FEc13B9E67B2420bc/logo.png new file mode 100644 index 00000000..e8327f1b Binary files /dev/null and b/blockchains/smartchain/assets/0xA2D3e8E0723c6Cd0fBC0409FEc13B9E67B2420bc/logo.png differ diff --git a/blockchains/smartchain/assets/0xA2a26349448ddAfAe34949a6Cc2cEcF78c0497aC/info.json b/blockchains/smartchain/assets/0xA2a26349448ddAfAe34949a6Cc2cEcF78c0497aC/info.json new file mode 100644 index 00000000..22bc057d --- /dev/null +++ b/blockchains/smartchain/assets/0xA2a26349448ddAfAe34949a6Cc2cEcF78c0497aC/info.json @@ -0,0 +1,25 @@ +{ + "name": "TrusterCoin", + "type": "BEP20", + "symbol": "TSC", + "decimals": 9, + "website": "https://trustercoin.com", + "description": "TrusterCoin is a utility token for business tokenization platform at a time when entrepreneurs through blockchain technology.", + "explorer": "https://bscscan.com/token/0xA2a26349448ddAfAe34949a6Cc2cEcF78c0497aC", + "status": "active", + "id": "0xA2a26349448ddAfAe34949a6Cc2cEcF78c0497aC", + "links": [ + { + "name": "telegram", + "url": "https://t.me/joinchat/9chNb2ktauczY2Nh" + }, + { + "name": "facebook", + "url": "https://facebook.com/trustercoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC7kAc4_H2GqebP163LoNvwQlkm," + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA2a26349448ddAfAe34949a6Cc2cEcF78c0497aC/logo.png b/blockchains/smartchain/assets/0xA2a26349448ddAfAe34949a6Cc2cEcF78c0497aC/logo.png new file mode 100644 index 00000000..a8f2358e Binary files /dev/null and b/blockchains/smartchain/assets/0xA2a26349448ddAfAe34949a6Cc2cEcF78c0497aC/logo.png differ diff --git a/blockchains/smartchain/assets/0xA2f46fe221f34Dac4Cf078e6946A7cb4e373AD28/info.json b/blockchains/smartchain/assets/0xA2f46fe221f34Dac4Cf078e6946A7cb4e373AD28/info.json new file mode 100644 index 00000000..68b880a3 --- /dev/null +++ b/blockchains/smartchain/assets/0xA2f46fe221f34Dac4Cf078e6946A7cb4e373AD28/info.json @@ -0,0 +1,11 @@ +{ + "name": "BAFI Token", + "website": "https://bafi.finance", + "description": "BAFI is a utility token for bafi decentralized exchange ans IDO platform.", + "explorer": "https://bscscan.com/token/0xa2f46fe221f34dac4cf078e6946a7cb4e373ad28", + "type": "BEP20", + "symbol": "BAFI", + "decimals": 18, + "status": "active", + "id": "0xA2f46fe221f34Dac4Cf078e6946A7cb4e373AD28" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA2f46fe221f34Dac4Cf078e6946A7cb4e373AD28/logo.png b/blockchains/smartchain/assets/0xA2f46fe221f34Dac4Cf078e6946A7cb4e373AD28/logo.png new file mode 100644 index 00000000..06d75303 Binary files /dev/null and b/blockchains/smartchain/assets/0xA2f46fe221f34Dac4Cf078e6946A7cb4e373AD28/logo.png differ diff --git a/blockchains/smartchain/assets/0xA325Ad6D9c92B55A3Fc5aD7e412B1518F96441C0/info.json b/blockchains/smartchain/assets/0xA325Ad6D9c92B55A3Fc5aD7e412B1518F96441C0/info.json new file mode 100644 index 00000000..904b17f8 --- /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 00000000..2b7b599e Binary files /dev/null and b/blockchains/smartchain/assets/0xA325Ad6D9c92B55A3Fc5aD7e412B1518F96441C0/logo.png differ diff --git a/blockchains/smartchain/assets/0xA327179d47faD68d09e4501a838daaaf74faBb7c/info.json b/blockchains/smartchain/assets/0xA327179d47faD68d09e4501a838daaaf74faBb7c/info.json new file mode 100644 index 00000000..b2114664 --- /dev/null +++ b/blockchains/smartchain/assets/0xA327179d47faD68d09e4501a838daaaf74faBb7c/info.json @@ -0,0 +1,12 @@ +{ + "name": "SafeXI", + "website": "https://safe-xi.com", + "description": "Autonomous yield and liquidity generation protocol.", + "explorer": "https://bscscan.com/token/0xA327179d47faD68d09e4501a838daaaf74faBb7c", + "research": "", + "type": "BEP20", + "symbol": "SXI", + "decimals": 9, + "status": "active", + "id": "0xA327179d47faD68d09e4501a838daaaf74faBb7c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA327179d47faD68d09e4501a838daaaf74faBb7c/logo.png b/blockchains/smartchain/assets/0xA327179d47faD68d09e4501a838daaaf74faBb7c/logo.png new file mode 100644 index 00000000..71118a91 Binary files /dev/null and b/blockchains/smartchain/assets/0xA327179d47faD68d09e4501a838daaaf74faBb7c/logo.png differ diff --git a/blockchains/smartchain/assets/0xA3424FB48b9FA2FF8D3366eD91f36b4cDa7cAdd8/info.json b/blockchains/smartchain/assets/0xA3424FB48b9FA2FF8D3366eD91f36b4cDa7cAdd8/info.json new file mode 100644 index 00000000..2e4d87dd --- /dev/null +++ b/blockchains/smartchain/assets/0xA3424FB48b9FA2FF8D3366eD91f36b4cDa7cAdd8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vacay", + "website": "https://vacay.finance", + "description": "Vacay is a new Defi token on the Binance Smart Chain with the objective of making cryptocurrency payments a mainstream option for international travelers and the broader hostitality industry.", + "explorer": "https://bscscan.com/token/0xa3424fb48b9fa2ff8d3366ed91f36b4cda7cadd8", + "type": "BEP20", + "symbol": "Vacay", + "decimals": 18, + "status": "active", + "id": "0xA3424FB48b9FA2FF8D3366eD91f36b4cDa7cAdd8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA3424FB48b9FA2FF8D3366eD91f36b4cDa7cAdd8/logo.png b/blockchains/smartchain/assets/0xA3424FB48b9FA2FF8D3366eD91f36b4cDa7cAdd8/logo.png new file mode 100644 index 00000000..3c34f85c Binary files /dev/null and b/blockchains/smartchain/assets/0xA3424FB48b9FA2FF8D3366eD91f36b4cDa7cAdd8/logo.png differ diff --git a/blockchains/smartchain/assets/0xA38898a4Ae982Cb0131104a6746f77fA0dA57aAA/info.json b/blockchains/smartchain/assets/0xA38898a4Ae982Cb0131104a6746f77fA0dA57aAA/info.json new file mode 100644 index 00000000..126c0aa6 --- /dev/null +++ b/blockchains/smartchain/assets/0xA38898a4Ae982Cb0131104a6746f77fA0dA57aAA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Project Quantum", + "website": "https://quantumworks.co.uk/", + "description": "Project Quantum is taking AAA gaming into the 21st Century, with cryptocurrency at the core of the economy.", + "explorer": "https://bscscan.com/token/0xA38898a4Ae982Cb0131104a6746f77fA0dA57aAA", + "type": "BEP20", + "symbol": "QBIT", + "decimals": 2, + "status": "active", + "id": "0xA38898a4Ae982Cb0131104a6746f77fA0dA57aAA" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA38898a4Ae982Cb0131104a6746f77fA0dA57aAA/logo.png b/blockchains/smartchain/assets/0xA38898a4Ae982Cb0131104a6746f77fA0dA57aAA/logo.png new file mode 100644 index 00000000..c437a7b3 Binary files /dev/null and b/blockchains/smartchain/assets/0xA38898a4Ae982Cb0131104a6746f77fA0dA57aAA/logo.png differ diff --git a/blockchains/smartchain/assets/0xA38f6b2848cAE0b61DDd3EC36560801e7eDA2b62/info.json b/blockchains/smartchain/assets/0xA38f6b2848cAE0b61DDd3EC36560801e7eDA2b62/info.json new file mode 100644 index 00000000..1c439b05 --- /dev/null +++ b/blockchains/smartchain/assets/0xA38f6b2848cAE0b61DDd3EC36560801e7eDA2b62/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAFEMOON RED", + "website": "https://safemoonred.com", + "description": "SAFEMOON RED is Binance Smart Chain Memes Token", + "explorer": "https://bscscan.com/token/0xA38f6b2848cAE0b61DDd3EC36560801e7eDA2b62", + "symbol": "SMR", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xA38f6b2848cAE0b61DDd3EC36560801e7eDA2b62" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA38f6b2848cAE0b61DDd3EC36560801e7eDA2b62/logo.png b/blockchains/smartchain/assets/0xA38f6b2848cAE0b61DDd3EC36560801e7eDA2b62/logo.png new file mode 100644 index 00000000..cb81c458 Binary files /dev/null and b/blockchains/smartchain/assets/0xA38f6b2848cAE0b61DDd3EC36560801e7eDA2b62/logo.png differ diff --git a/blockchains/smartchain/assets/0xA3B089C886E6d721f49DEF8E050F3b9D4362560B/info.json b/blockchains/smartchain/assets/0xA3B089C886E6d721f49DEF8E050F3b9D4362560B/info.json new file mode 100644 index 00000000..47ba80b2 --- /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 00000000..2b78123f 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 00000000..73158584 --- /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 00000000..8a3fd699 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 new file mode 100644 index 00000000..1482bab3 --- /dev/null +++ b/blockchains/smartchain/assets/0xA3b89C5F75C530f33E612177001F5602E9C2830F/info.json @@ -0,0 +1,33 @@ +{ + "name": "miniBABYDOGE", + "type": "BEP20", + "symbol": "miniBABYDOGE", + "decimals": 18, + "website": "https://www.minibabydogeofficial.com/", + "description": "miniBabydoge is a BEP20 project that is focused on the entire cryptocurrency community. We plan to build a strong community through honest, friendly and constant social media engagement on our channels, thereby facilitating mainstream adoption of decentralised blockchain technology.", + "explorer": "https://bscscan.com/token/0xa3b89c5f75c530f33e612177001f5602e9c2830f", + "status": "active", + "id": "0xA3b89C5F75C530f33E612177001F5602E9C2830F", + "links": [ + { + "name": "telegram", + "url": "https://t.me/miniBABYDOGEofficialgroup" + }, + { + "name": "x", + "url": "https://x.com/MBabydoge" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mini-baby-doge/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mini-baby-doge" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xa3b89c5f75c530f33e612177001f5602e9c2830f#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA3b89C5F75C530f33E612177001F5602E9C2830F/logo.png b/blockchains/smartchain/assets/0xA3b89C5F75C530f33E612177001F5602E9C2830F/logo.png new file mode 100644 index 00000000..f30d4001 Binary files /dev/null and b/blockchains/smartchain/assets/0xA3b89C5F75C530f33E612177001F5602E9C2830F/logo.png differ diff --git a/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/info.json b/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/info.json new file mode 100644 index 00000000..2e4ed77d --- /dev/null +++ b/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/info.json @@ -0,0 +1,58 @@ +{ + "name": "Lepasa", + "type": "BEP20", + "symbol": "Lepa", + "decimals": 18, + "website": "https://www.lepasa.com", + "description": "LEPA is the utility token of LEPASA- A decentralised metaverse project with a vision to establish a complete ecosystem for the developers and users.", + "explorer": "https://bscscan.com/token/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86", + "status": "active", + "id": "0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86", + "links": [ + { + "name": "x", + "url": "https://x.com/lepasaorg" + }, + { + "name": "github", + "url": "https://github.com/lepasa" + }, + { + "name": "telegram", + "url": "https://t.me/lepasa" + }, + { + "name": "docs", + "url": "https://docs.lepasa.com" + }, + { + "name": "discord", + "url": "https://discord.com/invite/fUeCwJ9y5M" + }, + { + "name": "telegram_news", + "url": "https://t.me/lepasaorg" + }, + { + "name": "whitepaper", + "url": "https://app.lepasa.com/assets/docs/whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://lepasa.medium.com" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lepasa" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/lepasa" + } + ], + "tags": [ + "wrapped", + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/logo.png b/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/logo.png new file mode 100644 index 00000000..1ccdc6a3 Binary files /dev/null and b/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/logo.png differ diff --git a/blockchains/smartchain/assets/0xA40A4e8e6dc3d57B941551300b45a1E17CCbc15c/info.json b/blockchains/smartchain/assets/0xA40A4e8e6dc3d57B941551300b45a1E17CCbc15c/info.json new file mode 100644 index 00000000..6aaf3d97 --- /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 00000000..3a6f7dfb 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 00000000..a34f5891 --- /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 00000000..9e1b2771 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 00000000..d174f9b7 --- /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 00000000..6c932394 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 new file mode 100644 index 00000000..7f8d45f3 --- /dev/null +++ b/blockchains/smartchain/assets/0xA4d872235dde5694AF92a1d0df20d723E8e9E5fC/info.json @@ -0,0 +1,30 @@ +{ + "name": "GNBU", + "website": "https://nimbusplatform.io", + "description": "Nimbus - Creating Value Based on Real Use cases for Digital Assets.", + "explorer": "https://bscscan.com/token/0xA4d872235dde5694AF92a1d0df20d723E8e9E5fC", + "type": "BEP20", + "symbol": "GNBU", + "decimals": 18, + "status": "active", + "id": "0xA4d872235dde5694AF92a1d0df20d723E8e9E5fC", + "links": [ + { + "name": "x", + "url": "https://x.com/nmbplatform" + }, + { + "name": "telegram", + "url": "https://t.me/nmbplatform" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCOl3hXqESQ54chKSn5nsfPg" + } + ], + "tags": [ + "governance", + "staking", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA4d872235dde5694AF92a1d0df20d723E8e9E5fC/logo.png b/blockchains/smartchain/assets/0xA4d872235dde5694AF92a1d0df20d723E8e9E5fC/logo.png new file mode 100644 index 00000000..dc92b4ca Binary files /dev/null and b/blockchains/smartchain/assets/0xA4d872235dde5694AF92a1d0df20d723E8e9E5fC/logo.png differ diff --git a/blockchains/smartchain/assets/0xA501Cb70CB2beCFfEB5aC491f91E2f7916E5a3fC/info.json b/blockchains/smartchain/assets/0xA501Cb70CB2beCFfEB5aC491f91E2f7916E5a3fC/info.json new file mode 100644 index 00000000..0d9347b7 --- /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 00000000..af6a8f40 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 00000000..0d19c23c --- /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 00000000..91dadf19 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 00000000..ff792be8 --- /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 00000000..12335ab8 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 new file mode 100644 index 00000000..25177d13 --- /dev/null +++ b/blockchains/smartchain/assets/0xA53E61578fF54f1ad70186Be99332a6e20b6ffa9/info.json @@ -0,0 +1,52 @@ +{ + "name": "Golden Doge", + "type": "BEP20", + "symbol": "GDOGE", + "decimals": 9, + "website": "https://goldendoge.finance", + "description": "Golden Doge (GDOGE) is a community token that has a special Golden Vault which gets filled by 5% of every GDOGE transaction on Pancakeswap and rewards the GDOGE community in BNB.", + "explorer": "https://bscscan.com/token/0xA53E61578fF54f1ad70186Be99332a6e20b6ffa9", + "status": "active", + "id": "0xA53E61578fF54f1ad70186Be99332a6e20b6ffa9", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/GoldenDoge11" + }, + { + "name": "github", + "url": "https://github.com/Golden-Doge-Token" + }, + { + "name": "telegram", + "url": "https://t.me/en_goldendoge" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/GoldenDogeFinancial/" + }, + { + "name": "whitepaper", + "url": "https://goldendoge.finance/wp-content/uploads/2021/07/whitepaper.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCU05l0GIRWfWO2FudFh11Vw" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/golden-doge" + }, + { + "name": "medium", + "url": "https://medium.com/@goldendogefinance" + }, + { + "name": "source_code", + "url": "https://github.com/Golden-Doge-Token/contract/blob/main/smart%20contract.sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA53E61578fF54f1ad70186Be99332a6e20b6ffa9/logo.png b/blockchains/smartchain/assets/0xA53E61578fF54f1ad70186Be99332a6e20b6ffa9/logo.png new file mode 100644 index 00000000..eb6a7b8a Binary files /dev/null and b/blockchains/smartchain/assets/0xA53E61578fF54f1ad70186Be99332a6e20b6ffa9/logo.png differ diff --git a/blockchains/smartchain/assets/0xA55BB91dE33B4abdf3aC64913D98A55ad84Dc3A8/info.json b/blockchains/smartchain/assets/0xA55BB91dE33B4abdf3aC64913D98A55ad84Dc3A8/info.json new file mode 100644 index 00000000..3cae97d3 --- /dev/null +++ b/blockchains/smartchain/assets/0xA55BB91dE33B4abdf3aC64913D98A55ad84Dc3A8/info.json @@ -0,0 +1,13 @@ +{ + "name": "BlowFish", + "website": "https://blowfish.one/", + "telegram": "https://t.me/blowfishtokengroup", + "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", + "symbol": "BLOWF", + "decimals": 18, + "status": "active", + "id": "0xA55BB91dE33B4abdf3aC64913D98A55ad84Dc3A8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA55BB91dE33B4abdf3aC64913D98A55ad84Dc3A8/logo.png b/blockchains/smartchain/assets/0xA55BB91dE33B4abdf3aC64913D98A55ad84Dc3A8/logo.png new file mode 100644 index 00000000..693e1b80 Binary files /dev/null and b/blockchains/smartchain/assets/0xA55BB91dE33B4abdf3aC64913D98A55ad84Dc3A8/logo.png differ diff --git a/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/info.json b/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/info.json new file mode 100644 index 00000000..b15eb539 --- /dev/null +++ b/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/info.json @@ -0,0 +1,36 @@ +{ + "name": "Adamant", + "website": "https://www.adamantcoin.com/", + "description": "Adamant is a hyperdeflationary token and is the Governance Token of the charity NFT Game Adamant Mine", + "explorer": "https://bscscan.com/token/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69", + "type": "BEP20", + "symbol": "ADMC", + "decimals": 9, + "status": "active", + "id": "0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/adamant/" + }, + { + "name": "x", + "url": "https://x.com/adamantcoin" + }, + { + "name": "telegram", + "url": "https://t.me/admcadamant" + }, + { + "name": "medium", + "url": "https://adamantcoin.medium.com/" + }, + { + "name": "discord", + "url": "https://discord.com/adamant" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/logo.png b/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/logo.png new file mode 100644 index 00000000..16dd834f Binary files /dev/null and b/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/logo.png differ diff --git a/blockchains/smartchain/assets/0xA56B49dB164D37BE2F5Df2830dB0C666380cEa66/info.json b/blockchains/smartchain/assets/0xA56B49dB164D37BE2F5Df2830dB0C666380cEa66/info.json new file mode 100644 index 00000000..d4c432fa --- /dev/null +++ b/blockchains/smartchain/assets/0xA56B49dB164D37BE2F5Df2830dB0C666380cEa66/info.json @@ -0,0 +1,11 @@ +{ + "name": "PUGDOG INU", + "website": "https://pugdoginu.com/", + "description": "PUGDOG A community-driven decentralized rewarding network Fully decentralized and Community own, Zero Dev token.", + "explorer": "https://bscscan.com/token/0xa56b49db164d37be2f5df2830db0c666380cea66", + "type": "BEP20", + "symbol": "PUGDOG", + "decimals": 0, + "status": "active", + "id": "0xA56B49dB164D37BE2F5Df2830dB0C666380cEa66" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA56B49dB164D37BE2F5Df2830dB0C666380cEa66/logo.png b/blockchains/smartchain/assets/0xA56B49dB164D37BE2F5Df2830dB0C666380cEa66/logo.png new file mode 100644 index 00000000..a9e25a06 Binary files /dev/null and b/blockchains/smartchain/assets/0xA56B49dB164D37BE2F5Df2830dB0C666380cEa66/logo.png differ diff --git a/blockchains/smartchain/assets/0xA5713050600030Edb6BC13d9EdA894c3500B4444/info.json b/blockchains/smartchain/assets/0xA5713050600030Edb6BC13d9EdA894c3500B4444/info.json new file mode 100644 index 00000000..ae16524d --- /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/0xA57ac35CE91Ee92CaEfAA8dc04140C8e232c2E50/info.json b/blockchains/smartchain/assets/0xA57ac35CE91Ee92CaEfAA8dc04140C8e232c2E50/info.json new file mode 100644 index 00000000..cf913615 --- /dev/null +++ b/blockchains/smartchain/assets/0xA57ac35CE91Ee92CaEfAA8dc04140C8e232c2E50/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pitbull", + "type": "BEP20", + "symbol": "PIT", + "decimals": 9, + "website": "https://pitbull.community", + "description": "Pitbull(PIT) is a deflationary token with 2% automatic liquidity provided on sells and 2% each trades rewards holders. The token has been abandoned by the developer and raised by the community.", + "explorer": "https://bscscan.com/token/0xA57ac35CE91Ee92CaEfAA8dc04140C8e232c2E50", + "status": "active", + "id": "0xA57ac35CE91Ee92CaEfAA8dc04140C8e232c2E50" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA57ac35CE91Ee92CaEfAA8dc04140C8e232c2E50/logo.png b/blockchains/smartchain/assets/0xA57ac35CE91Ee92CaEfAA8dc04140C8e232c2E50/logo.png new file mode 100644 index 00000000..7c4f131b Binary files /dev/null and b/blockchains/smartchain/assets/0xA57ac35CE91Ee92CaEfAA8dc04140C8e232c2E50/logo.png differ diff --git a/blockchains/smartchain/assets/0xA58950F05FeA2277d2608748412bf9F802eA4901/info.json b/blockchains/smartchain/assets/0xA58950F05FeA2277d2608748412bf9F802eA4901/info.json new file mode 100644 index 00000000..4dc1ef7a --- /dev/null +++ b/blockchains/smartchain/assets/0xA58950F05FeA2277d2608748412bf9F802eA4901/info.json @@ -0,0 +1,11 @@ +{ + "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://bscscan.com/token/0xA58950F05FeA2277d2608748412bf9F802eA4901", + "type": "BEP20", + "symbol": "WSG", + "decimals": 18, + "status": "active", + "id": "0xA58950F05FeA2277d2608748412bf9F802eA4901" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA58950F05FeA2277d2608748412bf9F802eA4901/logo.png b/blockchains/smartchain/assets/0xA58950F05FeA2277d2608748412bf9F802eA4901/logo.png new file mode 100644 index 00000000..b087d7f6 Binary files /dev/null and b/blockchains/smartchain/assets/0xA58950F05FeA2277d2608748412bf9F802eA4901/logo.png differ diff --git a/blockchains/smartchain/assets/0xA5Ff48e326958E0CE6FdF9518de561F2B5f57dA3/info.json b/blockchains/smartchain/assets/0xA5Ff48e326958E0CE6FdF9518de561F2B5f57dA3/info.json new file mode 100644 index 00000000..c73272b7 --- /dev/null +++ b/blockchains/smartchain/assets/0xA5Ff48e326958E0CE6FdF9518de561F2B5f57dA3/info.json @@ -0,0 +1,45 @@ +{ + "name": "Polkalokr", + "type": "BEP20", + "symbol": "LKR", + "decimals": 18, + "website": "https://polkalokr.com", + "description": "Simplifying blockchain for individuals and businesses of all sizes - from new projects to enterprises - Polkalokr's solutions provide an on-ramp into crypto with no coding required.", + "explorer": "https://bscscan.com/token/0xA5Ff48e326958E0CE6FdF9518de561F2B5f57dA3", + "status": "active", + "id": "0xA5Ff48e326958E0CE6FdF9518de561F2B5f57dA3", + "links": [ + { + "name": "x", + "url": "https://x.com/Polkalokr" + }, + { + "name": "github", + "url": "https://github.com/Polkalokr" + }, + { + "name": "telegram", + "url": "https://t.me/Polkalokr" + }, + { + "name": "telegram_news", + "url": "https://t.me/polkalokrannouncements" + }, + { + "name": "blog", + "url": "https://medium.com/polkalokr" + }, + { + "name": "medium", + "url": "https://medium.com/polkalokr" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polkalokr/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/polkalokr" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA5Ff48e326958E0CE6FdF9518de561F2B5f57dA3/logo.png b/blockchains/smartchain/assets/0xA5Ff48e326958E0CE6FdF9518de561F2B5f57dA3/logo.png new file mode 100644 index 00000000..35022c20 Binary files /dev/null and b/blockchains/smartchain/assets/0xA5Ff48e326958E0CE6FdF9518de561F2B5f57dA3/logo.png differ diff --git a/blockchains/smartchain/assets/0xA60Dad644BE617d4380Ef2a03f3075Ebbc9d0770/info.json b/blockchains/smartchain/assets/0xA60Dad644BE617d4380Ef2a03f3075Ebbc9d0770/info.json new file mode 100644 index 00000000..8ced66c2 --- /dev/null +++ b/blockchains/smartchain/assets/0xA60Dad644BE617d4380Ef2a03f3075Ebbc9d0770/info.json @@ -0,0 +1,11 @@ +{ + "name": "KingDoge", + "website": "https://kingdoge.io/", + "description": "The KingDoge is a community-driven DeFi. We love doges and we know what they can do. We will do much better.", + "explorer": "https://bscscan.com/token/0xA60Dad644BE617d4380Ef2a03f3075Ebbc9d0770", + "type": "BEP20", + "symbol": "KDOGE", + "decimals": 9, + "status": "active", + "id": "0xA60Dad644BE617d4380Ef2a03f3075Ebbc9d0770" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA60Dad644BE617d4380Ef2a03f3075Ebbc9d0770/logo.png b/blockchains/smartchain/assets/0xA60Dad644BE617d4380Ef2a03f3075Ebbc9d0770/logo.png new file mode 100644 index 00000000..cf7679ea Binary files /dev/null and b/blockchains/smartchain/assets/0xA60Dad644BE617d4380Ef2a03f3075Ebbc9d0770/logo.png differ diff --git a/blockchains/smartchain/assets/0xA64455a4553C9034236734FadDAddbb64aCE4Cc7/info.json b/blockchains/smartchain/assets/0xA64455a4553C9034236734FadDAddbb64aCE4Cc7/info.json new file mode 100644 index 00000000..eedc8c7f --- /dev/null +++ b/blockchains/smartchain/assets/0xA64455a4553C9034236734FadDAddbb64aCE4Cc7/info.json @@ -0,0 +1,28 @@ +{ + "name": "Santos FC Fan Token", + "type": "BEP20", + "symbol": "SANTOS", + "decimals": 8, + "website": "https://www.binance.com/en/fan-token/team-profile/porto", + "description": "BEP-20 utility token for Santos FC football club", + "explorer": "https://bscscan.com/token/0xA64455a4553C9034236734FadDAddbb64aCE4Cc7", + "status": "active", + "id": "0xA64455a4553C9034236734FadDAddbb64aCE4Cc7", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/santos-fc-fan-token/" + }, + { + "name": "x", + "url": "https://x.com/SantosFC" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/santos-fc-fan-token" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA64455a4553C9034236734FadDAddbb64aCE4Cc7/logo.png b/blockchains/smartchain/assets/0xA64455a4553C9034236734FadDAddbb64aCE4Cc7/logo.png new file mode 100644 index 00000000..266b680e Binary files /dev/null and b/blockchains/smartchain/assets/0xA64455a4553C9034236734FadDAddbb64aCE4Cc7/logo.png differ diff --git a/blockchains/smartchain/assets/0xA656F993bD14B2B59a28d1e610476AD18849b107/info.json b/blockchains/smartchain/assets/0xA656F993bD14B2B59a28d1e610476AD18849b107/info.json new file mode 100644 index 00000000..5dca167c --- /dev/null +++ b/blockchains/smartchain/assets/0xA656F993bD14B2B59a28d1e610476AD18849b107/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAFERMOON", + "type": "BEP20", + "symbol": "SAFERMOON", + "decimals": 9, + "website": "https://safermoon.net/", + "description": "SAFERMOON is an audited, vetted, and trusted RFI static reward token that benefits investors who hold. 10% trade fees provide a combination of rewards to token holders and liquidity, which increases SAFERMOON's price floor.", + "explorer": "https://bscscan.com/token/0xA656F993bD14B2B59a28d1e610476AD18849b107", + "status": "active", + "id": "0xA656F993bD14B2B59a28d1e610476AD18849b107" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA656F993bD14B2B59a28d1e610476AD18849b107/logo.png b/blockchains/smartchain/assets/0xA656F993bD14B2B59a28d1e610476AD18849b107/logo.png new file mode 100644 index 00000000..53bdc0ac Binary files /dev/null and b/blockchains/smartchain/assets/0xA656F993bD14B2B59a28d1e610476AD18849b107/logo.png differ diff --git a/blockchains/smartchain/assets/0xA67a13c9283Da5AABB199Da54a9Cb4cD8B9b16bA/info.json b/blockchains/smartchain/assets/0xA67a13c9283Da5AABB199Da54a9Cb4cD8B9b16bA/info.json new file mode 100644 index 00000000..02b2c609 --- /dev/null +++ b/blockchains/smartchain/assets/0xA67a13c9283Da5AABB199Da54a9Cb4cD8B9b16bA/info.json @@ -0,0 +1,29 @@ +{ + "name": "Nobility", + "website": "https://nobilitytoken.com/", + "description": "Nobility is a BSC token that will revolutionize the esports landscape by organizing and providing tournaments with large prize pools, helping content creators earn more from playing the games they love, and more use cases that will fill glaring holes within the community.", + "explorer": "https://bscscan.com/token/0xA67a13c9283Da5AABB199Da54a9Cb4cD8B9b16bA", + "type": "BEP20", + "symbol": "NBL", + "decimals": 18, + "status": "active", + "id": "0xA67a13c9283Da5AABB199Da54a9Cb4cD8B9b16bA", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nobility-new/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nobility-new" + }, + { + "name": "x", + "url": "https://x.com/nobilitytoken" + }, + { + "name": "telegram", + "url": "https://t.me/thenobilitytoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA67a13c9283Da5AABB199Da54a9Cb4cD8B9b16bA/logo.png b/blockchains/smartchain/assets/0xA67a13c9283Da5AABB199Da54a9Cb4cD8B9b16bA/logo.png new file mode 100644 index 00000000..104f1a62 Binary files /dev/null and b/blockchains/smartchain/assets/0xA67a13c9283Da5AABB199Da54a9Cb4cD8B9b16bA/logo.png differ diff --git a/blockchains/smartchain/assets/0xA6F78EBC10Da383Abc2dD83550c84CEBFd468888/info.json b/blockchains/smartchain/assets/0xA6F78EBC10Da383Abc2dD83550c84CEBFd468888/info.json new file mode 100644 index 00000000..35605e2c --- /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/0xA6Fd7B5C9eee30309B00B65436a284e2053251e5/info.json b/blockchains/smartchain/assets/0xA6Fd7B5C9eee30309B00B65436a284e2053251e5/info.json new file mode 100644 index 00000000..247db2d8 --- /dev/null +++ b/blockchains/smartchain/assets/0xA6Fd7B5C9eee30309B00B65436a284e2053251e5/info.json @@ -0,0 +1,11 @@ +{ + "name": "HORA OS", + "type": "BEP20", + "symbol": "HORA", + "decimals": 18, + "website": "https://horaos.com/", + "description": "Hora OS is an operating system built to administer a network of computers through a decentralized protocol.", + "explorer": "https://bscscan.com/token/0xA6Fd7B5C9eee30309B00B65436a284e2053251e5", + "status": "active", + "id": "0xA6Fd7B5C9eee30309B00B65436a284e2053251e5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA6Fd7B5C9eee30309B00B65436a284e2053251e5/logo.png b/blockchains/smartchain/assets/0xA6Fd7B5C9eee30309B00B65436a284e2053251e5/logo.png new file mode 100644 index 00000000..5a6ce7a6 Binary files /dev/null and b/blockchains/smartchain/assets/0xA6Fd7B5C9eee30309B00B65436a284e2053251e5/logo.png differ diff --git a/blockchains/smartchain/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json b/blockchains/smartchain/assets/0xA6a65AC27E76cD53cB790473E4345c46e5eBf961/info.json new file mode 100644 index 00000000..dcc792ce --- /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 00000000..7cb316a4 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 new file mode 100644 index 00000000..6e9ae556 --- /dev/null +++ b/blockchains/smartchain/assets/0xA72Ff2B799324B042AE379809eE54dACE99db3A5/info.json @@ -0,0 +1,28 @@ +{ + "name": "Miss Doge", + "website": "https://missdoge.net", + "description": "Here's the magnificent Miss of Baby Doge 🐶 seeing her family members being famous, she couldn't bear with that and she knew this is the time for her show.", + "explorer": "https://bscscan.com/token/0xA72Ff2B799324B042AE379809eE54dACE99db3A5", + "type": "BEP20", + "symbol": "MDOGE", + "decimals": 9, + "status": "active", + "id": "0xA72Ff2B799324B042AE379809eE54dACE99db3A5", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/MissDoge" + }, + { + "name": "x", + "url": "https://x.com/DogeMiss" + }, + { + "name": "telegram", + "url": "https://t.me/missdoge" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA72Ff2B799324B042AE379809eE54dACE99db3A5/logo.png b/blockchains/smartchain/assets/0xA72Ff2B799324B042AE379809eE54dACE99db3A5/logo.png new file mode 100644 index 00000000..cc5e0a90 Binary files /dev/null and b/blockchains/smartchain/assets/0xA72Ff2B799324B042AE379809eE54dACE99db3A5/logo.png differ diff --git a/blockchains/smartchain/assets/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C/info.json b/blockchains/smartchain/assets/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C/info.json new file mode 100644 index 00000000..52e55c8c --- /dev/null +++ b/blockchains/smartchain/assets/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C/info.json @@ -0,0 +1,24 @@ +{ + "name": "Landshare Token", + "type": "BEP20", + "symbol": "LAND", + "decimals": 18, + "website": "https://landshare.io", + "description": "Bringing Real Estate to the Blockchain", + "explorer": "https://bscscan.com/token/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C", + "status": "active", + "id": "0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C", + "links": [ + { + "name": "x", + "url": "https://x.com/landshareio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/landshare/" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C/logo.png b/blockchains/smartchain/assets/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C/logo.png new file mode 100644 index 00000000..6ef22229 Binary files /dev/null and b/blockchains/smartchain/assets/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C/logo.png differ diff --git a/blockchains/smartchain/assets/0xA73505453F58E367c80F16685079dAD6f4EA6b18/info.json b/blockchains/smartchain/assets/0xA73505453F58E367c80F16685079dAD6f4EA6b18/info.json new file mode 100644 index 00000000..26850f00 --- /dev/null +++ b/blockchains/smartchain/assets/0xA73505453F58E367c80F16685079dAD6f4EA6b18/info.json @@ -0,0 +1,33 @@ +{ + "name": "UnderMineGold", + "website": "https://www.underminegold.com", + "description": "UnderMineGold project will become a platform, which includes NFT, De-Fi and game.", + "explorer": "https://bscscan.com/token/0xA73505453F58E367c80F16685079dAD6f4EA6b18", + "type": "BEP20", + "symbol": "UMG", + "decimals": 9, + "status": "active", + "id": "0xA73505453F58E367c80F16685079dAD6f4EA6b18", + "links": [ + { + "name": "telegram", + "url": "https://t.me/UndermineGOLDchina" + }, + { + "name": "x", + "url": "https://x.com/UnderMineGold" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/underinegold" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/underminegold" + }, + { + "name": "whitepaper", + "url": "https://www.underminegold.com/en/UMG_White_Paper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA73505453F58E367c80F16685079dAD6f4EA6b18/logo.png b/blockchains/smartchain/assets/0xA73505453F58E367c80F16685079dAD6f4EA6b18/logo.png new file mode 100644 index 00000000..1e48cb58 Binary files /dev/null and b/blockchains/smartchain/assets/0xA73505453F58E367c80F16685079dAD6f4EA6b18/logo.png differ diff --git a/blockchains/smartchain/assets/0xA753D241fFcE10A3570eDa72f6561C04b1f9Ae77/info.json b/blockchains/smartchain/assets/0xA753D241fFcE10A3570eDa72f6561C04b1f9Ae77/info.json new file mode 100644 index 00000000..ffcb40ca --- /dev/null +++ b/blockchains/smartchain/assets/0xA753D241fFcE10A3570eDa72f6561C04b1f9Ae77/info.json @@ -0,0 +1,21 @@ +{ + "name": "TitsV2", + "website": "https://titscoin.io/", + "description": "TitsV2coin dedicated to crypto lovers around the world who encourage breast cancer awareness and the enhancement or correction done by breast augmentation.", + "explorer": "https://bscscan.com/token/0xa753d241ffce10a3570eda72f6561c04b1f9ae77", + "type": "BEP20", + "symbol": "TITS", + "decimals": 9, + "status": "active", + "id": "0xA753D241fFcE10A3570eDa72f6561C04b1f9Ae77", + "links": [ + { + "name": "whitepaper", + "url": "https://titscoin.io/whitepaper" + }, + { + "name": "x", + "url": "https://x.com/titsfortits2" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA753D241fFcE10A3570eDa72f6561C04b1f9Ae77/logo.png b/blockchains/smartchain/assets/0xA753D241fFcE10A3570eDa72f6561C04b1f9Ae77/logo.png new file mode 100644 index 00000000..9f31585d Binary files /dev/null and b/blockchains/smartchain/assets/0xA753D241fFcE10A3570eDa72f6561C04b1f9Ae77/logo.png differ diff --git a/blockchains/smartchain/assets/0xA77346760341460B42C230ca6D21d4c8E743Fa9c/info.json b/blockchains/smartchain/assets/0xA77346760341460B42C230ca6D21d4c8E743Fa9c/info.json new file mode 100644 index 00000000..c02cb04e --- /dev/null +++ b/blockchains/smartchain/assets/0xA77346760341460B42C230ca6D21d4c8E743Fa9c/info.json @@ -0,0 +1,50 @@ +{ + "name": "MicroPets", + "type": "BEP20", + "symbol": "PETS", + "decimals": 18, + "website": "https://micropets.io/", + "description": "Meet MicroPets – Home to the cutest NFT’s on the Binance Smart Chain! We’ve taken your favorite memes and packaged them up into adorable pets you can trade or stake. The rarer the MicroPet the better the rewards.", + "explorer": "https://bscscan.com/token/0xa77346760341460b42c230ca6d21d4c8e743fa9c", + "status": "active", + "id": "0xA77346760341460B42C230ca6D21d4c8E743Fa9c", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/micropets/" + }, + { + "name": "x", + "url": "https://x.com/MicroPetsBSC" + }, + { + "name": "telegram", + "url": "https://t.me/MicroPets" + }, + { + "name": "github", + "url": "https://github.com/micropets2021" + }, + { + "name": "whitepaper", + "url": "https://micropets.io/uploads/MicroPetsWhitepaper.pdf" + }, + { + "name": "discord", + "url": "https://discord.com/invite/UeMh9AAnfv" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/micropetsbsc/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/micropets" + } + ], + "tags": [ + "nft", + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA77346760341460B42C230ca6D21d4c8E743Fa9c/logo.png b/blockchains/smartchain/assets/0xA77346760341460B42C230ca6D21d4c8E743Fa9c/logo.png new file mode 100644 index 00000000..1c22736d Binary files /dev/null and b/blockchains/smartchain/assets/0xA77346760341460B42C230ca6D21d4c8E743Fa9c/logo.png differ diff --git a/blockchains/smartchain/assets/0xA78628eCba2BF5fedf3fE27A7CEdaa363b46708f/info.json b/blockchains/smartchain/assets/0xA78628eCba2BF5fedf3fE27A7CEdaa363b46708f/info.json new file mode 100644 index 00000000..34ce8d0f --- /dev/null +++ b/blockchains/smartchain/assets/0xA78628eCba2BF5fedf3fE27A7CEdaa363b46708f/info.json @@ -0,0 +1,25 @@ +{ + "name": "Little Bunny Rocket", + "type": "BEP20", + "symbol": "LBR", + "decimals": 9, + "website": "http://www.littlebunnyrocket.com", + "description": "Little Bunny Rocket is a collateralized cryptocurrency that grants investor holding LBR instant rewards on all transaction and protect them with its unique burn protocol. Little Bunny Rocket’s innovative ecosystem and LBR dApps will bring a true revolution to the cryptocurrency space and set new standard for security in DeFi.", + "explorer": "https://bscscan.com/token/0xA78628eCba2BF5fedf3fE27A7CEdaa363b46708f", + "status": "active", + "id": "0xA78628eCba2BF5fedf3fE27A7CEdaa363b46708f", + "links": [ + { + "name": "github", + "url": "https://github.com/littlebunnyrocket/littlebunnyrocket" + }, + { + "name": "x", + "url": "https://x.com/l_bunnyrocket" + }, + { + "name": "telegram", + "url": "https://t.me/littlebunnyrocket" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA78628eCba2BF5fedf3fE27A7CEdaa363b46708f/logo.png b/blockchains/smartchain/assets/0xA78628eCba2BF5fedf3fE27A7CEdaa363b46708f/logo.png new file mode 100644 index 00000000..789f9557 Binary files /dev/null and b/blockchains/smartchain/assets/0xA78628eCba2BF5fedf3fE27A7CEdaa363b46708f/logo.png differ diff --git a/blockchains/smartchain/assets/0xA7e288771A90F4f65df907521E7F3bA36D860A54/info.json b/blockchains/smartchain/assets/0xA7e288771A90F4f65df907521E7F3bA36D860A54/info.json new file mode 100644 index 00000000..dbefc34f --- /dev/null +++ b/blockchains/smartchain/assets/0xA7e288771A90F4f65df907521E7F3bA36D860A54/info.json @@ -0,0 +1,45 @@ +{ + "name": "BTC GAME", + "type": "BEP20", + "symbol": "BTCGAME", + "decimals": 9, + "website": "https://btcgamee.com", + "description": "Btc Game is a blockchain-based community driven social games experience that pays dividends to the players. The platform is filled with reward systems to give players many ways to win and earn over time.", + "explorer": "https://bscscan.com/token/0xA7e288771A90F4f65df907521E7F3bA36D860A54", + "status": "active", + "id": "0xA7e288771A90F4f65df907521E7F3bA36D860A54", + "links": [ + { + "name": "x", + "url": "https://x.com/BtcGameofficial" + }, + { + "name": "github", + "url": "https://github.com/btcgamee" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/KZ0FMWzF-EU4YzU1" + }, + { + "name": "facebook", + "url": "https://facebook.com/btcgame.official" + }, + { + "name": "discord", + "url": "https://discord.com/channels/887210364704522241/887210365568561184" + }, + { + "name": "medium", + "url": "https://medium.com/@btcgamee/bitcoin-game-a5c88bc3f515" + }, + { + "name": "whitepaper", + "url": "https://btcgamee.com/wp-content/uploads/2021/09/BtcGame-Whitepaper-1.1-3.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/watch?v=SB9TB3W_LBA" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA7e288771A90F4f65df907521E7F3bA36D860A54/logo.png b/blockchains/smartchain/assets/0xA7e288771A90F4f65df907521E7F3bA36D860A54/logo.png new file mode 100644 index 00000000..20ee2625 Binary files /dev/null and b/blockchains/smartchain/assets/0xA7e288771A90F4f65df907521E7F3bA36D860A54/logo.png differ diff --git a/blockchains/smartchain/assets/0xA7f552078dcC247C2684336020c03648500C6d9F/info.json b/blockchains/smartchain/assets/0xA7f552078dcC247C2684336020c03648500C6d9F/info.json new file mode 100644 index 00000000..313e0a75 --- /dev/null +++ b/blockchains/smartchain/assets/0xA7f552078dcC247C2684336020c03648500C6d9F/info.json @@ -0,0 +1,32 @@ +{ + "name": "Ellipsis", + "website": "https://ellipsis.finance/", + "description": "Ellipsis Finance aims to offer secure low-slippage stable swapping.", + "explorer": "https://bscscan.com/token/0xA7f552078dcC247C2684336020c03648500C6d9F", + "type": "BEP20", + "symbol": "EPS", + "decimals": 18, + "status": "abandoned", + "id": "0xA7f552078dcC247C2684336020c03648500C6d9F", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/Ellipsisfi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ellipsis/" + }, + { + "name": "telegram", + "url": "https://t.me/ellipsisfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ellipsis/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA81AfE5D5390e5B645d46097B5D2975f04A47EbB/info.json b/blockchains/smartchain/assets/0xA81AfE5D5390e5B645d46097B5D2975f04A47EbB/info.json new file mode 100644 index 00000000..31a7fe1d --- /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 00000000..8e5c65fd 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 00000000..584c5b73 --- /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 00000000..60ee0af8 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 new file mode 100644 index 00000000..00707a9a --- /dev/null +++ b/blockchains/smartchain/assets/0xA84d7A90bDbBe6dE3FFFe9B7F549366320EF90D3/info.json @@ -0,0 +1,28 @@ +{ + "name": "ZenFi AI Token", + "website": "https://zenfi.ai", + "description": "ZENFI AI provisions an Intelligent Metaverse", + "explorer": "https://bscscan.com/token/0xA84d7A90bDbBe6dE3FFFe9B7F549366320EF90D3", + "type": "BEP20", + "symbol": "ZENFI", + "decimals": 8, + "status": "active", + "id": "0xA84d7A90bDbBe6dE3FFFe9B7F549366320EF90D3", + "tags": [ + "nft" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/zenfiai" + }, + { + "name": "github", + "url": "https://github.com/zenfiaigit" + }, + { + "name": "telegram", + "url": "https://t.me/ZenFiAI" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA84d7A90bDbBe6dE3FFFe9B7F549366320EF90D3/logo.png b/blockchains/smartchain/assets/0xA84d7A90bDbBe6dE3FFFe9B7F549366320EF90D3/logo.png new file mode 100644 index 00000000..451580cd Binary files /dev/null and b/blockchains/smartchain/assets/0xA84d7A90bDbBe6dE3FFFe9B7F549366320EF90D3/logo.png differ diff --git a/blockchains/smartchain/assets/0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929/info.json b/blockchains/smartchain/assets/0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929/info.json new file mode 100644 index 00000000..ef3b3417 --- /dev/null +++ b/blockchains/smartchain/assets/0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929/info.json @@ -0,0 +1,12 @@ +{ + "name": "CertiK Token", + "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", + "research": "https://research.binance.com/en/projects/certik", + "type": "BEP20", + "symbol": "CTK", + "decimals": 6, + "status": "active", + "id": "0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929/logo.png b/blockchains/smartchain/assets/0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929/logo.png new file mode 100644 index 00000000..c0f16770 Binary files /dev/null and b/blockchains/smartchain/assets/0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929/logo.png differ diff --git a/blockchains/smartchain/assets/0xA8c514D991F59baB02d32b68f04204cB89261c88/info.json b/blockchains/smartchain/assets/0xA8c514D991F59baB02d32b68f04204cB89261c88/info.json new file mode 100644 index 00000000..2830a20b --- /dev/null +++ b/blockchains/smartchain/assets/0xA8c514D991F59baB02d32b68f04204cB89261c88/info.json @@ -0,0 +1,11 @@ +{ + "name": "Safe Protocol", + "website": "https://safeprotocol.io", + "description": "First Blockchain Socio-Political Media Platform", + "explorer": "https://bscscan.com/token/0xA8c514D991F59baB02d32b68f04204cB89261c88", + "type": "BEP20", + "symbol": "SAFEP", + "decimals": 8, + "status": "active", + "id": "0xA8c514D991F59baB02d32b68f04204cB89261c88" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA8c514D991F59baB02d32b68f04204cB89261c88/logo.png b/blockchains/smartchain/assets/0xA8c514D991F59baB02d32b68f04204cB89261c88/logo.png new file mode 100644 index 00000000..1cbfb635 Binary files /dev/null and b/blockchains/smartchain/assets/0xA8c514D991F59baB02d32b68f04204cB89261c88/logo.png differ diff --git a/blockchains/smartchain/assets/0xA8fcEe78B782eF97380326E90DF80D72f025f020/info.json b/blockchains/smartchain/assets/0xA8fcEe78B782eF97380326E90DF80D72f025f020/info.json new file mode 100644 index 00000000..657747df --- /dev/null +++ b/blockchains/smartchain/assets/0xA8fcEe78B782eF97380326E90DF80D72f025f020/info.json @@ -0,0 +1,25 @@ +{ + "name": "Tacocat", + "website": "https://tacocat.life", + "description": "Tacocat is a community coin that builds up public involvement to establish a first of its' kind crypto lifestyle brand. Tacocat brings the energy and ideas of the crypto community to the global audience with a unique style of cross-platform engagement.", + "explorer": "https://bscscan.com/token/0xa8fcee78b782ef97380326e90df80d72f025f020", + "type": "BEP20", + "symbol": "TACOCAT", + "decimals": 9, + "status": "active", + "id": "0xA8fcEe78B782eF97380326E90DF80D72f025f020", + "links": [ + { + "name": "x", + "url": "https://x.com/TacoCatCrew" + }, + { + "name": "telegram", + "url": "https://t.me/TacoCatCrew" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/tacocatcrew" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA8fcEe78B782eF97380326E90DF80D72f025f020/logo.png b/blockchains/smartchain/assets/0xA8fcEe78B782eF97380326E90DF80D72f025f020/logo.png new file mode 100644 index 00000000..189ddd72 Binary files /dev/null and b/blockchains/smartchain/assets/0xA8fcEe78B782eF97380326E90DF80D72f025f020/logo.png differ diff --git a/blockchains/smartchain/assets/0xA9165b3167CEa2dD839f29cFc9D3Fa3979198888/info.json b/blockchains/smartchain/assets/0xA9165b3167CEa2dD839f29cFc9D3Fa3979198888/info.json new file mode 100644 index 00000000..7eceb3f6 --- /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 00000000..d280fa4c --- /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 00000000..975275ff Binary files /dev/null and b/blockchains/smartchain/assets/0xA99600043E84181A9d4137aD1cefB8cfE9138674/logo.png differ diff --git a/blockchains/smartchain/assets/0xA997E5AaaE60987Eb0B59A336dce6B158B113100/info.json b/blockchains/smartchain/assets/0xA997E5AaaE60987Eb0B59A336dce6B158B113100/info.json new file mode 100644 index 00000000..7a344d55 --- /dev/null +++ b/blockchains/smartchain/assets/0xA997E5AaaE60987Eb0B59A336dce6B158B113100/info.json @@ -0,0 +1,11 @@ +{ + "name": "SeChain", + "type": "BEP20", + "symbol": "SNN", + "decimals": 3, + "website": "https://sechain.finance/", + "description": "SeChain project is building the future of decentralized services, where the service provider & the customers can get the work done in decentralized environment.", + "explorer": "https://bscscan.com/token/0xA997E5AaaE60987Eb0B59A336dce6B158B113100", + "status": "active", + "id": "0xA997E5AaaE60987Eb0B59A336dce6B158B113100" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA997E5AaaE60987Eb0B59A336dce6B158B113100/logo.png b/blockchains/smartchain/assets/0xA997E5AaaE60987Eb0B59A336dce6B158B113100/logo.png new file mode 100644 index 00000000..634a86d0 Binary files /dev/null and b/blockchains/smartchain/assets/0xA997E5AaaE60987Eb0B59A336dce6B158B113100/logo.png differ diff --git a/blockchains/smartchain/assets/0xA9F059F63cd432B65A723EEeFf69304FD780070c/info.json b/blockchains/smartchain/assets/0xA9F059F63cd432B65A723EEeFf69304FD780070c/info.json new file mode 100644 index 00000000..76402686 --- /dev/null +++ b/blockchains/smartchain/assets/0xA9F059F63cd432B65A723EEeFf69304FD780070c/info.json @@ -0,0 +1,36 @@ +{ + "name": "Sanji Inu", + "type": "BEP20", + "symbol": "SANJI", + "decimals": 9, + "website": "https://sanjiinu.club/", + "description": "Sanji Inu is a community meme token, ownership will be removed. The project will be developed in the direction of NFT and adventure game to give One Piece fans an experience of the journey across the ocean.", + "explorer": "https://bscscan.com/token/0xA9F059F63cd432B65A723EEeFf69304FD780070c", + "status": "active", + "id": "0xA9F059F63cd432B65A723EEeFf69304FD780070c", + "links": [ + { + "name": "x", + "url": "https://x.com/sanjiinu_tw/" + }, + { + "name": "telegram", + "url": "https://t.me/sanjiinucommunity" + }, + { + "name": "github", + "url": "https://github.com/Sanji-Inu" + }, + { + "name": "whitepaper", + "url": "https://sanjiinu.club/assets/Whitepaper-Sanji-inu.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sanji-inu/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA9F059F63cd432B65A723EEeFf69304FD780070c/logo.png b/blockchains/smartchain/assets/0xA9F059F63cd432B65A723EEeFf69304FD780070c/logo.png new file mode 100644 index 00000000..dffcfe14 Binary files /dev/null and b/blockchains/smartchain/assets/0xA9F059F63cd432B65A723EEeFf69304FD780070c/logo.png differ diff --git a/blockchains/smartchain/assets/0xA9eE28C80f960B889dFbd1902055218cBa016F75/info.json b/blockchains/smartchain/assets/0xA9eE28C80f960B889dFbd1902055218cBa016F75/info.json new file mode 100644 index 00000000..00f41b03 --- /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 00000000..75ae30e6 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 00000000..87a35e16 --- /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 00000000..d5c48229 Binary files /dev/null and b/blockchains/smartchain/assets/0xAA28cB97D7f7E172f54deE950743886D2d65447d/logo.png differ diff --git a/blockchains/smartchain/assets/0xAA5c91F3df88B8B3863d0899bcA33E70482beD2A/info.json b/blockchains/smartchain/assets/0xAA5c91F3df88B8B3863d0899bcA33E70482beD2A/info.json new file mode 100644 index 00000000..ce87d981 --- /dev/null +++ b/blockchains/smartchain/assets/0xAA5c91F3df88B8B3863d0899bcA33E70482beD2A/info.json @@ -0,0 +1,11 @@ +{ + "name": "WAIVLENGTH", + "website": "https://www.waivlength.io/", + "description": "Waivlength aims to establish an accountable social media platform using KYC protocols", + "explorer": "https://bscscan.com/token/0xAA5c91F3df88B8B3863d0899bcA33E70482beD2A", + "type": "BEP20", + "symbol": "WAIV", + "decimals": 9, + "status": "active", + "id": "0xAA5c91F3df88B8B3863d0899bcA33E70482beD2A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAA5c91F3df88B8B3863d0899bcA33E70482beD2A/logo.png b/blockchains/smartchain/assets/0xAA5c91F3df88B8B3863d0899bcA33E70482beD2A/logo.png new file mode 100644 index 00000000..e3d9cd76 Binary files /dev/null and b/blockchains/smartchain/assets/0xAA5c91F3df88B8B3863d0899bcA33E70482beD2A/logo.png differ diff --git a/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json b/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json new file mode 100644 index 00000000..bbfe42ff --- /dev/null +++ b/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json @@ -0,0 +1,57 @@ +{ + "name": "QANX Token", + "website": "https://qanplatform.com", + "description": "QANX is the utility token of QAN Platform.", + "explorer": "https://bscscan.com/token/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa", + "type": "BEP20", + "symbol": "QANX", + "decimals": 18, + "status": "abandoned", + "id": "0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa", + "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/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json b/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json new file mode 100644 index 00000000..974560a5 --- /dev/null +++ b/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json @@ -0,0 +1,57 @@ +{ + "name": "QANX Token", + "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/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png b/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png new file mode 100644 index 00000000..7f5462e0 Binary files /dev/null and b/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png differ diff --git a/blockchains/smartchain/assets/0xAAa304aBe41870600274160df1fC9F0C136a13Cc/info.json b/blockchains/smartchain/assets/0xAAa304aBe41870600274160df1fC9F0C136a13Cc/info.json new file mode 100644 index 00000000..585c4e3d --- /dev/null +++ b/blockchains/smartchain/assets/0xAAa304aBe41870600274160df1fC9F0C136a13Cc/info.json @@ -0,0 +1,11 @@ +{ + "name": "AstroPup", + "type": "BEP20", + "symbol": "ASTRO", + "decimals": 9, + "website": "https://astropup.finance/", + "description": "AstroPup ($ASTRO) is a lighthearted deflationary meme token, with a 10% tax applied to every transaction.", + "explorer": "https://bscscan.com/token/0xaaa304abe41870600274160df1fc9f0c136a13cc", + "status": "active", + "id": "0xAAa304aBe41870600274160df1fC9F0C136a13Cc" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAAa304aBe41870600274160df1fC9F0C136a13Cc/logo.png b/blockchains/smartchain/assets/0xAAa304aBe41870600274160df1fC9F0C136a13Cc/logo.png new file mode 100644 index 00000000..022aa569 Binary files /dev/null and b/blockchains/smartchain/assets/0xAAa304aBe41870600274160df1fC9F0C136a13Cc/logo.png differ diff --git a/blockchains/smartchain/assets/0xAB15B79880f11cFfb58dB25eC2bc39d28c4d80d2/info.json b/blockchains/smartchain/assets/0xAB15B79880f11cFfb58dB25eC2bc39d28c4d80d2/info.json new file mode 100644 index 00000000..b4ac045a --- /dev/null +++ b/blockchains/smartchain/assets/0xAB15B79880f11cFfb58dB25eC2bc39d28c4d80d2/info.json @@ -0,0 +1,25 @@ +{ + "name": "StarMon", + "website": "https://starmon.io", + "description": "Starmon Metaverse builds a virtual world: Andres Land. There are many creatures with superpowers called Starmon.", + "explorer": "https://bscscan.com/token/0xAB15B79880f11cFfb58dB25eC2bc39d28c4d80d2", + "type": "BEP20", + "symbol": "SMON", + "decimals": 18, + "status": "active", + "id": "0xAB15B79880f11cFfb58dB25eC2bc39d28c4d80d2", + "links": [ + { + "name": "github", + "url": "https://github.com/StarMon-protocol/" + }, + { + "name": "x", + "url": "https://x.com/StarMonGame" + }, + { + "name": "telegram", + "url": "https://t.me/StarMon_Official" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAB15B79880f11cFfb58dB25eC2bc39d28c4d80d2/logo.png b/blockchains/smartchain/assets/0xAB15B79880f11cFfb58dB25eC2bc39d28c4d80d2/logo.png new file mode 100644 index 00000000..bfba5af3 Binary files /dev/null and b/blockchains/smartchain/assets/0xAB15B79880f11cFfb58dB25eC2bc39d28c4d80d2/logo.png differ diff --git a/blockchains/smartchain/assets/0xAB844d316B5a5093b7e7EdDE11cc08BeCCA36d1C/info.json b/blockchains/smartchain/assets/0xAB844d316B5a5093b7e7EdDE11cc08BeCCA36d1C/info.json new file mode 100644 index 00000000..cff7fbba --- /dev/null +++ b/blockchains/smartchain/assets/0xAB844d316B5a5093b7e7EdDE11cc08BeCCA36d1C/info.json @@ -0,0 +1,14 @@ +{ + "name": "Anubi Coin", + "symbol": "ANUBI", + "type": "BEP20", + "decimals": 9, + "description": "Anubi is community driven token.", + "website": "https://anubitoken.net/", + "explorer": "https://bscscan.com/token/0xAB844d316B5a5093b7e7EdDE11cc08BeCCA36d1C", + "status": "active", + "id": "0xAB844d316B5a5093b7e7EdDE11cc08BeCCA36d1C", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAB844d316B5a5093b7e7EdDE11cc08BeCCA36d1C/logo.png b/blockchains/smartchain/assets/0xAB844d316B5a5093b7e7EdDE11cc08BeCCA36d1C/logo.png new file mode 100644 index 00000000..465439e9 Binary files /dev/null and b/blockchains/smartchain/assets/0xAB844d316B5a5093b7e7EdDE11cc08BeCCA36d1C/logo.png differ diff --git a/blockchains/smartchain/assets/0xABEB9c25a0FFFc526817c81A34EeF6765A233cEf/info.json b/blockchains/smartchain/assets/0xABEB9c25a0FFFc526817c81A34EeF6765A233cEf/info.json new file mode 100644 index 00000000..258a2bbf --- /dev/null +++ b/blockchains/smartchain/assets/0xABEB9c25a0FFFc526817c81A34EeF6765A233cEf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Flame Chain", + "type": "BEP20", + "symbol": "FLAME", + "decimals": 8, + "website": "https://flamechain.io/", + "description": "Flame Chain project has some great Features secure, useful, & easy-to-use Product based on Binance Smart Chain, it will include easy cryptocurrency payments integration, and even a digital arbitration system.", + "explorer": "https://bscscan.com/token/0xABEB9c25a0FFFc526817c81A34EeF6765A233cEf", + "status": "active", + "id": "0xABEB9c25a0FFFc526817c81A34EeF6765A233cEf" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xABEB9c25a0FFFc526817c81A34EeF6765A233cEf/logo.png b/blockchains/smartchain/assets/0xABEB9c25a0FFFc526817c81A34EeF6765A233cEf/logo.png new file mode 100644 index 00000000..41186db3 Binary files /dev/null and b/blockchains/smartchain/assets/0xABEB9c25a0FFFc526817c81A34EeF6765A233cEf/logo.png differ diff --git a/blockchains/smartchain/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/info.json b/blockchains/smartchain/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/info.json new file mode 100644 index 00000000..ac750479 --- /dev/null +++ b/blockchains/smartchain/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/info.json @@ -0,0 +1,33 @@ +{ + "name": "My Neighbor Alice", + "symbol": "ALICE", + "type": "BEP20", + "decimals": 6, + "description": "A social simulation Blockchain game owned by players.", + "website": "https://www.myneighboralice.com", + "explorer": "https://bscscan.com/token/0xAC51066d7bEC65Dc4589368da368b212745d63E8", + "status": "active", + "id": "0xAC51066d7bEC65Dc4589368da368b212745d63E8", + "links": [ + { + "name": "telegram", + "url": "https://t.me/MyNeighborAlice" + }, + { + "name": "x", + "url": "https://x.com/MyNeighborAlice/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MyNeighborAlice/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/myneighboralice/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/my-neighbor-alice/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/logo.png b/blockchains/smartchain/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/logo.png new file mode 100644 index 00000000..7b7eaca5 Binary files /dev/null and b/blockchains/smartchain/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/logo.png differ diff --git a/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/info.json b/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/info.json new file mode 100644 index 00000000..703f6da0 --- /dev/null +++ b/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/info.json @@ -0,0 +1,44 @@ +{ + "name": "BNB Tiger Inu", + "type": "BEP20", + "symbol": "BNBTIGER", + "decimals": 9, + "website": "https://bnbtiger.top/", + "description": "BNBTiger is the king of beasts. They are the symbol of victory and strength. Powerful and tough.and our $BNBTIGER community is the same.", + "explorer": "https://bscscan.com/token/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D", + "status": "active", + "id": "0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D", + "links": [ + { + "name": "x", + "url": "https://x.com/BnbTiger" + }, + { + "name": "telegram", + "url": "https://t.me/BNBTigerEN" + }, + { + "name": "github", + "url": "https://github.com/Tech-Audit/Smart-Contract-Audits/blob/main/TECHAUDIT_BNBTIGER.pdf" + }, + { + "name": "medium", + "url": "https://bnbtiger.medium.com/bnbtiger-6300a46ca53" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bnbtiger/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bnb-tiger-inu" + }, + { + "name": "whitepaper", + "url": "https://bnbtiger.top/static/upload/file/20230203/1675386735503028.pdf" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/logo.png b/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/logo.png new file mode 100644 index 00000000..1bb98fde Binary files /dev/null and b/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/logo.png differ diff --git a/blockchains/smartchain/assets/0xACce5119881693B1502ECAF732eb1d592adFc54b/info.json b/blockchains/smartchain/assets/0xACce5119881693B1502ECAF732eb1d592adFc54b/info.json new file mode 100644 index 00000000..0062d665 --- /dev/null +++ b/blockchains/smartchain/assets/0xACce5119881693B1502ECAF732eb1d592adFc54b/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeWojak", + "symbol": "WOJAK", + "type": "BEP20", + "decimals": 9, + "description": "SafeWojak is a retail friendly due diligence platform, aiming to alleviate traders from falling victim to unaudited and malicious token contracts.", + "website": "https://safewojak.com/", + "explorer": "https://bscscan.com/token/0xACce5119881693B1502ECAF732eb1d592adFc54b", + "status": "active", + "id": "0xACce5119881693B1502ECAF732eb1d592adFc54b" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xACce5119881693B1502ECAF732eb1d592adFc54b/logo.png b/blockchains/smartchain/assets/0xACce5119881693B1502ECAF732eb1d592adFc54b/logo.png new file mode 100644 index 00000000..405f3202 Binary files /dev/null and b/blockchains/smartchain/assets/0xACce5119881693B1502ECAF732eb1d592adFc54b/logo.png differ diff --git a/blockchains/smartchain/assets/0xAD0A3901eFf23b9143985bCB42F0171a112A2fD3/info.json b/blockchains/smartchain/assets/0xAD0A3901eFf23b9143985bCB42F0171a112A2fD3/info.json new file mode 100644 index 00000000..6941c86f --- /dev/null +++ b/blockchains/smartchain/assets/0xAD0A3901eFf23b9143985bCB42F0171a112A2fD3/info.json @@ -0,0 +1,36 @@ +{ + "name": "MinerBlox Token", + "website": "https://minerblox.com/", + "description": "MinerBlox Token will be needed to mint GPUs and start mining or to improve your machine's HashPower to extract even more tokens", + "explorer": "https://bscscan.com/token/0xAD0A3901eFf23b9143985bCB42F0171a112A2fD3", + "type": "BEP20", + "symbol": "MBLOX", + "decimals": 18, + "status": "active", + "id": "0xAD0A3901eFf23b9143985bCB42F0171a112A2fD3", + "tags": [ + "nft" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MinerBloxOffi" + }, + { + "name": "telegram", + "url": "https://t.me/minerblox" + }, + { + "name": "discord", + "url": "https://discord.com/invite/pXQSym4YQN" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/minerblox/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/minerblox" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAD0A3901eFf23b9143985bCB42F0171a112A2fD3/logo.png b/blockchains/smartchain/assets/0xAD0A3901eFf23b9143985bCB42F0171a112A2fD3/logo.png new file mode 100644 index 00000000..31390550 Binary files /dev/null and b/blockchains/smartchain/assets/0xAD0A3901eFf23b9143985bCB42F0171a112A2fD3/logo.png differ diff --git a/blockchains/smartchain/assets/0xAD20C467180aCC243e42D41649712052b64F4444/info.json b/blockchains/smartchain/assets/0xAD20C467180aCC243e42D41649712052b64F4444/info.json new file mode 100644 index 00000000..9853d8b3 --- /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 new file mode 100644 index 00000000..86f29127 --- /dev/null +++ b/blockchains/smartchain/assets/0xAD29AbB318791D579433D831ed122aFeAf29dcfe/info.json @@ -0,0 +1,32 @@ +{ + "name": "Fantom", + "symbol": "FTM", + "type": "BEP20", + "decimals": 18, + "description": "Fantom is a directed acyclic graph (DAG) smart contract platform providing decentralized finance (DeFi) services to developers using its own bespoke consensus algorithm.", + "website": "http://fantom.foundation", + "explorer": "https://bscscan.com/token/0xad29abb318791d579433d831ed122afeaf29dcfe", + "status": "active", + "id": "0xAD29AbB318791D579433D831ed122aFeAf29dcfe", + "tags": [ + "defi" + ], + "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/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAD29AbB318791D579433D831ed122aFeAf29dcfe/logo.png b/blockchains/smartchain/assets/0xAD29AbB318791D579433D831ed122aFeAf29dcfe/logo.png new file mode 100644 index 00000000..4c55ec1d Binary files /dev/null and b/blockchains/smartchain/assets/0xAD29AbB318791D579433D831ed122aFeAf29dcfe/logo.png differ diff --git a/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/info.json b/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/info.json new file mode 100644 index 00000000..8214ba68 --- /dev/null +++ b/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/info.json @@ -0,0 +1,12 @@ +{ + "name": "BNB pegged Band Protocol Token", + "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", + "research": "https://research.binance.com/en/projects/band-protocol", + "type": "BEP20", + "symbol": "BAND", + "decimals": 18, + "status": "active", + "id": "0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/logo.png b/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/logo.png new file mode 100644 index 00000000..9db68a25 Binary files /dev/null and b/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/logo.png differ diff --git a/blockchains/smartchain/assets/0xAD86d0E9764ba90DDD68747D64BFfBd79879a238/info.json b/blockchains/smartchain/assets/0xAD86d0E9764ba90DDD68747D64BFfBd79879a238/info.json new file mode 100644 index 00000000..0c2e830a --- /dev/null +++ b/blockchains/smartchain/assets/0xAD86d0E9764ba90DDD68747D64BFfBd79879a238/info.json @@ -0,0 +1,25 @@ +{ + "name": "PAID Network", + "website": "https://paidnetwork.com/#token", + "description": "PAID Network is a comprehensive business toolkit for business transaction needs.", + "explorer": "https://bscscan.com/token/0xad86d0e9764ba90ddd68747d64bffbd79879a238", + "type": "BEP20", + "symbol": "PAID", + "decimals": 18, + "status": "active", + "id": "0xAD86d0E9764ba90DDD68747D64BFfBd79879a238", + "links": [ + { + "name": "x", + "url": "https://x.com/paid_network" + }, + { + "name": "medium", + "url": "https://paidnetwork.medium.com" + }, + { + "name": "github", + "url": "https://github.com/PAIDNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAD86d0E9764ba90DDD68747D64BFfBd79879a238/logo.png b/blockchains/smartchain/assets/0xAD86d0E9764ba90DDD68747D64BFfBd79879a238/logo.png new file mode 100644 index 00000000..5493df31 Binary files /dev/null and b/blockchains/smartchain/assets/0xAD86d0E9764ba90DDD68747D64BFfBd79879a238/logo.png differ diff --git a/blockchains/smartchain/assets/0xAD90c05BC51672eEdfeE36E58b3ff1A78bbC146d/info.json b/blockchains/smartchain/assets/0xAD90c05BC51672eEdfeE36E58b3ff1A78bbC146d/info.json new file mode 100644 index 00000000..cd175404 --- /dev/null +++ b/blockchains/smartchain/assets/0xAD90c05BC51672eEdfeE36E58b3ff1A78bbC146d/info.json @@ -0,0 +1,12 @@ +{ + "name": "XSPACE FINANCE", + "website": "https://xspace.finance/", + "description": "xSpace Finance offers a 100% community-driven Defi token XSPACE with deflationary mechanism", + "explorer": "https://bscscan.com/token/0xad90c05bc51672eedfee36e58b3ff1a78bbc146d", + "research": "https://xspace.finance/whitepaper_xspace.pdf", + "type": "BEP20", + "symbol": "XSPACE", + "decimals": 9, + "status": "active", + "id": "0xAD90c05BC51672eEdfeE36E58b3ff1A78bbC146d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAD90c05BC51672eEdfeE36E58b3ff1A78bbC146d/logo.png b/blockchains/smartchain/assets/0xAD90c05BC51672eEdfeE36E58b3ff1A78bbC146d/logo.png new file mode 100644 index 00000000..a79a54bb Binary files /dev/null and b/blockchains/smartchain/assets/0xAD90c05BC51672eEdfeE36E58b3ff1A78bbC146d/logo.png differ diff --git a/blockchains/smartchain/assets/0xADCFC6bf853a0a8ad7f9Ff4244140D10cf01363C/info.json b/blockchains/smartchain/assets/0xADCFC6bf853a0a8ad7f9Ff4244140D10cf01363C/info.json new file mode 100644 index 00000000..f3474c00 --- /dev/null +++ b/blockchains/smartchain/assets/0xADCFC6bf853a0a8ad7f9Ff4244140D10cf01363C/info.json @@ -0,0 +1,25 @@ +{ + "name": "TrustPad", + "website": "https://trustpad.io/", + "description": "TrustPad is a decentralized multi-chain fundraising platform enabling projects to raise capital and promise safety to early stage investors.", + "explorer": "https://bscscan.com/token/0xadcfc6bf853a0a8ad7f9ff4244140d10cf01363c", + "type": "BEP20", + "symbol": "TPAD", + "decimals": 9, + "status": "active", + "id": "0xADCFC6bf853a0a8ad7f9Ff4244140D10cf01363C", + "links": [ + { + "name": "x", + "url": "https://x.com/TrustPad" + }, + { + "name": "telegram", + "url": "https://t.me/TrustPad" + }, + { + "name": "medium", + "url": "https://medium.com/@TrustPad" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xADCFC6bf853a0a8ad7f9Ff4244140D10cf01363C/logo.png b/blockchains/smartchain/assets/0xADCFC6bf853a0a8ad7f9Ff4244140D10cf01363C/logo.png new file mode 100644 index 00000000..a2d33edf Binary files /dev/null and b/blockchains/smartchain/assets/0xADCFC6bf853a0a8ad7f9Ff4244140D10cf01363C/logo.png differ diff --git a/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json b/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json new file mode 100644 index 00000000..bf655ca0 --- /dev/null +++ b/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json @@ -0,0 +1,49 @@ +{ + "name": "GAMER", + "website": "https://gmr.center", + "description": "GMR: The decentralised gaming token and social GameFi platform. Create. Empower. Game.", + "explorer": "https://bscscan.com/token/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884", + "type": "BEP20", + "symbol": "GMR", + "decimals": 18, + "status": "abandoned", + "id": "0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884", + "links": [ + { + "name": "github", + "url": "https://github.com/gmr-center/gmr-token-v2" + }, + { + "name": "x", + "url": "https://x.com/GMRCenter" + }, + { + "name": "telegram", + "url": "https://t.me/gmrcenter" + }, + { + "name": "discord", + "url": "https://discord.com/invite/gmrcenter" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/GMR_Finance" + }, + { + "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" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json b/blockchains/smartchain/assets/0xAE2f842EF90C0d5213259Ab82639D5BBF649b08E/info.json new file mode 100644 index 00000000..4eec8121 --- /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 00000000..b6fb457e 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 new file mode 100644 index 00000000..d47ac390 --- /dev/null +++ b/blockchains/smartchain/assets/0xAE4cA3272792d8499575AEFacdc299F0cBdc9270/info.json @@ -0,0 +1,25 @@ +{ + "name": "SOMDEJ", + "website": "https://www.somdejcoin.com/", + "description": "Somdejcoin (SDC) is a DeFi Token created from the blockchain as a digital coin to collect. So that Thai people and people around the world have access to the world's first digital coin Somdej. Based on the history of Thais and Asians with long-standing culture", + "explorer": "https://bscscan.com/token/0xAE4cA3272792d8499575AEFacdc299F0cBdc9270", + "type": "BEP20", + "symbol": "SDC", + "decimals": 18, + "status": "active", + "id": "0xAE4cA3272792d8499575AEFacdc299F0cBdc9270", + "links": [ + { + "name": "telegram", + "url": "https://t.me/joinchat/NWpAwc8hKOFkZWI1" + }, + { + "name": "x", + "url": "https://x.com/somdejcoin" + } + ], + "tags": [ + "defi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAE4cA3272792d8499575AEFacdc299F0cBdc9270/logo.png b/blockchains/smartchain/assets/0xAE4cA3272792d8499575AEFacdc299F0cBdc9270/logo.png new file mode 100644 index 00000000..c4599001 Binary files /dev/null and b/blockchains/smartchain/assets/0xAE4cA3272792d8499575AEFacdc299F0cBdc9270/logo.png differ diff --git a/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/info.json b/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/info.json new file mode 100644 index 00000000..066d9dde --- /dev/null +++ b/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/info.json @@ -0,0 +1,24 @@ +{ + "name": "Metaverse", + "symbol": "MV", + "type": "BEP20", + "decimals": 18, + "description": "Gensokishi Online -META WORLD- Token with utility to configure metaverse.", + "website": "https://genso.game/", + "explorer": "https://bscscan.com/token/0xAE788F80F2756A86aa2F410C651F2aF83639B95b", + "status": "active", + "id": "0xAE788F80F2756A86aa2F410C651F2aF83639B95b", + "links": [ + { + "name": "x", + "url": "https://x.com/genso_meta" + }, + { + "name": "telegram", + "url": "https://t.me/gensometamain" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/logo.png b/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/logo.png new file mode 100644 index 00000000..edb82f05 Binary files /dev/null and b/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/logo.png differ diff --git a/blockchains/smartchain/assets/0xAECf6d1afF214feF70042740054f0f6D0Caa98Ab/info.json b/blockchains/smartchain/assets/0xAECf6d1afF214feF70042740054f0f6D0Caa98Ab/info.json new file mode 100644 index 00000000..335c6539 --- /dev/null +++ b/blockchains/smartchain/assets/0xAECf6d1afF214feF70042740054f0f6D0Caa98Ab/info.json @@ -0,0 +1,11 @@ +{ + "name": "Baby Shiba Inu", + "website": "https://www.babyshibatoken.com/", + "description": "Baby Shiba Inu offers an innovative mix of a multi-stage rewards system for staking and NFT presence. Anyone holding the token contributes to a charitable cause as the team is committed to making donations to Shiba Rescue America Organization", + "explorer": "https://bscscan.com/token/0xAECf6d1afF214feF70042740054f0f6D0Caa98Ab", + "type": "BEP20", + "symbol": "BabyShibaInu", + "decimals": 9, + "status": "active", + "id": "0xAECf6d1afF214feF70042740054f0f6D0Caa98Ab" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAECf6d1afF214feF70042740054f0f6D0Caa98Ab/logo.png b/blockchains/smartchain/assets/0xAECf6d1afF214feF70042740054f0f6D0Caa98Ab/logo.png new file mode 100644 index 00000000..bd434f86 Binary files /dev/null and b/blockchains/smartchain/assets/0xAECf6d1afF214feF70042740054f0f6D0Caa98Ab/logo.png differ diff --git a/blockchains/smartchain/assets/0xAEb9864bfB718818904e9c70e4aB4e52b50b6481/info.json b/blockchains/smartchain/assets/0xAEb9864bfB718818904e9c70e4aB4e52b50b6481/info.json new file mode 100644 index 00000000..68157aa0 --- /dev/null +++ b/blockchains/smartchain/assets/0xAEb9864bfB718818904e9c70e4aB4e52b50b6481/info.json @@ -0,0 +1,11 @@ +{ + "name": "PEA Token", + "type": "BEP20", + "symbol": "PEA", + "decimals": 18, + "website": "https://pea.farm/", + "explorer": "https://bscscan.com/token/0xAEb9864bfB718818904e9c70e4aB4e52b50b6481", + "status": "active", + "id": "0xAEb9864bfB718818904e9c70e4aB4e52b50b6481", + "description": "PEA Farm is virtual blockchain game that uses blockchain technology and NFT to create a variety of digital assets and give the ownership to the players." +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAEb9864bfB718818904e9c70e4aB4e52b50b6481/logo.png b/blockchains/smartchain/assets/0xAEb9864bfB718818904e9c70e4aB4e52b50b6481/logo.png new file mode 100644 index 00000000..99b4ed48 Binary files /dev/null and b/blockchains/smartchain/assets/0xAEb9864bfB718818904e9c70e4aB4e52b50b6481/logo.png differ diff --git a/blockchains/smartchain/assets/0xAEe234825dC4687faE606485c1eBD06336052bCc/info.json b/blockchains/smartchain/assets/0xAEe234825dC4687faE606485c1eBD06336052bCc/info.json new file mode 100644 index 00000000..8042e843 --- /dev/null +++ b/blockchains/smartchain/assets/0xAEe234825dC4687faE606485c1eBD06336052bCc/info.json @@ -0,0 +1,11 @@ +{ + "name": "Duke inu Token", + "symbol": "Duke", + "type": "BEP20", + "decimals": 9, + "description": "Duke Token is a decentralized meme token to incentivize the crypto space. Duke tokens is an experimental community driven project and the first with underlying utility & products.", + "website": "https://duketoken.com", + "explorer": "https://bscscan.com/token/0xAEe234825dC4687faE606485c1eBD06336052bCc", + "status": "active", + "id": "0xAEe234825dC4687faE606485c1eBD06336052bCc" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAEe234825dC4687faE606485c1eBD06336052bCc/logo.png b/blockchains/smartchain/assets/0xAEe234825dC4687faE606485c1eBD06336052bCc/logo.png new file mode 100644 index 00000000..a776fc58 Binary files /dev/null and b/blockchains/smartchain/assets/0xAEe234825dC4687faE606485c1eBD06336052bCc/logo.png differ diff --git a/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/info.json b/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/info.json new file mode 100644 index 00000000..f24956fa --- /dev/null +++ b/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/info.json @@ -0,0 +1,66 @@ +{ + "name": "Puli", + "type": "BEP20", + "symbol": "PULI", + "decimals": 9, + "website": "https://pulitoken.net/", + "description": "Puli (PULI) delivers simple yet very addicting P2E games supported by a novel NFT system. The first game, Puli Runner, was successfully launched on 31 January 2022. The team has also acquired a gaming studio for the development of Play-to-Earn games, which includes support for Android and IOS. The purpose and key features of the token include a 10% Buy and 10% Sell tax that are used to fund aggressive marketing, development and stable liquidity. In addition, the asset can be staked for added earnings with instructions available at their website.", + "explorer": "https://bscscan.com/token/0xaef0a177c8c329cbc8508292bb7e06c00786bbfc", + "status": "active", + "id": "0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC", + "links": [ + { + "name": "x", + "url": "https://x.com/puli_token" + }, + { + "name": "telegram", + "url": "https://t.me/Puli_Inu" + }, + { + "name": "discord", + "url": "https://discord.com/" + }, + { + "name": "github", + "url": "https://github.com/interfinetwork/audited-codes/blob/main/PULIINU.sol" + }, + { + "name": "whitepaper", + "url": "https://docs.whitepaper.pulitoken.net/" + }, + { + "name": "telegram_news", + "url": "https://t.me/puli_inu_announcements" + }, + { + "name": "reddit", + "url": "https://reddit.com/Puli_Inu/" + }, + { + "name": "facebook", + "url": "https://facebook.com/groups/1645662419114677" + }, + { + "name": "source_code", + "url": "https://github.com/interfinetwork/audited-codes/blob/main/PULIINU.sol" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCvAYp8cyMZzEcurdjHdqQZQ/featured" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/puli-inu" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/puli-inu" + } + ], + "tags": [ + "nft", + "gamefi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/logo.png b/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/logo.png new file mode 100644 index 00000000..cc601de9 Binary files /dev/null and b/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/logo.png differ diff --git a/blockchains/smartchain/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json b/blockchains/smartchain/assets/0xAF072F109A2C173D822a4fe9af311A1B18F83d19/info.json new file mode 100644 index 00000000..c5e92d47 --- /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 00000000..472c951a 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 00000000..7aa81149 --- /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/0xAF169E53e9f07DE6F9F4Eac67e2833C623f0c122/info.json b/blockchains/smartchain/assets/0xAF169E53e9f07DE6F9F4Eac67e2833C623f0c122/info.json new file mode 100644 index 00000000..302c5a7f --- /dev/null +++ b/blockchains/smartchain/assets/0xAF169E53e9f07DE6F9F4Eac67e2833C623f0c122/info.json @@ -0,0 +1,12 @@ +{ + "name": "Torpedo", + "website": "https://torpedo.live", + "description": "Torpedo is the first BSC underwater GEM.", + "explorer": "https://bscscan.com/token/0xaf169e53e9f07de6f9f4eac67e2833c623f0c122", + "research": "https://torpedo.live", + "type": "BEP20", + "symbol": "TORPEDO", + "decimals": 9, + "status": "active", + "id": "0xAF169E53e9f07DE6F9F4Eac67e2833C623f0c122" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAF169E53e9f07DE6F9F4Eac67e2833C623f0c122/logo.png b/blockchains/smartchain/assets/0xAF169E53e9f07DE6F9F4Eac67e2833C623f0c122/logo.png new file mode 100644 index 00000000..12f8b4ed Binary files /dev/null and b/blockchains/smartchain/assets/0xAF169E53e9f07DE6F9F4Eac67e2833C623f0c122/logo.png differ diff --git a/blockchains/smartchain/assets/0xAF3287cAe99C982586c07401C0d911Bf7De6CD82/info.json b/blockchains/smartchain/assets/0xAF3287cAe99C982586c07401C0d911Bf7De6CD82/info.json new file mode 100644 index 00000000..61fb17e4 --- /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 00000000..13261079 Binary files /dev/null and b/blockchains/smartchain/assets/0xAF3287cAe99C982586c07401C0d911Bf7De6CD82/logo.png differ diff --git a/blockchains/smartchain/assets/0xAF83F292fcED83032f52ced45ef7DBDdb586441a/info.json b/blockchains/smartchain/assets/0xAF83F292fcED83032f52ced45ef7DBDdb586441a/info.json new file mode 100644 index 00000000..ce9d3317 --- /dev/null +++ b/blockchains/smartchain/assets/0xAF83F292fcED83032f52ced45ef7DBDdb586441a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Twinci Token", + "website": "https://twinci.io", + "description": "Twinci - The first NFTs Social-Marketplace. Create, sell and collect digital items secured with blockchain", + "explorer": "https://bscscan.com/token/0xaf83f292fced83032f52ced45ef7dbddb586441a", + "type": "BEP20", + "symbol": "TWIN", + "decimals": 18, + "status": "active", + "id": "0xAF83F292fcED83032f52ced45ef7DBDdb586441a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAF83F292fcED83032f52ced45ef7DBDdb586441a/logo.png b/blockchains/smartchain/assets/0xAF83F292fcED83032f52ced45ef7DBDdb586441a/logo.png new file mode 100644 index 00000000..53ce1e0c Binary files /dev/null and b/blockchains/smartchain/assets/0xAF83F292fcED83032f52ced45ef7DBDdb586441a/logo.png differ diff --git a/blockchains/smartchain/assets/0xAa46e2c21B7763a73DB48e9b318899253E66e20C/info.json b/blockchains/smartchain/assets/0xAa46e2c21B7763a73DB48e9b318899253E66e20C/info.json new file mode 100644 index 00000000..7d1e579c --- /dev/null +++ b/blockchains/smartchain/assets/0xAa46e2c21B7763a73DB48e9b318899253E66e20C/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream XRP", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0xAa46e2c21B7763a73DB48e9b318899253E66e20C", + "type": "BEP20", + "symbol": "crXRP", + "decimals": 8, + "status": "active", + "id": "0xAa46e2c21B7763a73DB48e9b318899253E66e20C", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAa46e2c21B7763a73DB48e9b318899253E66e20C/logo.png b/blockchains/smartchain/assets/0xAa46e2c21B7763a73DB48e9b318899253E66e20C/logo.png new file mode 100644 index 00000000..7f8702de Binary files /dev/null and b/blockchains/smartchain/assets/0xAa46e2c21B7763a73DB48e9b318899253E66e20C/logo.png differ diff --git a/blockchains/smartchain/assets/0xAa5e67BD3558BC3207E617FdC9bDF2316F8b7777/info.json b/blockchains/smartchain/assets/0xAa5e67BD3558BC3207E617FdC9bDF2316F8b7777/info.json new file mode 100644 index 00000000..ae3a3ea7 --- /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/0xAa7E7C03C6864ccA116D34EC5B7103b030dE5262/info.json b/blockchains/smartchain/assets/0xAa7E7C03C6864ccA116D34EC5B7103b030dE5262/info.json new file mode 100644 index 00000000..0a7601aa --- /dev/null +++ b/blockchains/smartchain/assets/0xAa7E7C03C6864ccA116D34EC5B7103b030dE5262/info.json @@ -0,0 +1,11 @@ +{ + "name": "ElonXCoin", + "website": "https://elonxcoinbsc.space", + "description": "ElonXCoin is Memes Token", + "explorer": "https://bscscan.com/token/0xAa7E7C03C6864ccA116D34EC5B7103b030dE5262", + "symbol": "ElonX", + "type": "BEP20", + "decimals": 0, + "status": "active", + "id": "0xAa7E7C03C6864ccA116D34EC5B7103b030dE5262" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAa7E7C03C6864ccA116D34EC5B7103b030dE5262/logo.png b/blockchains/smartchain/assets/0xAa7E7C03C6864ccA116D34EC5B7103b030dE5262/logo.png new file mode 100644 index 00000000..50b4229f Binary files /dev/null and b/blockchains/smartchain/assets/0xAa7E7C03C6864ccA116D34EC5B7103b030dE5262/logo.png differ diff --git a/blockchains/smartchain/assets/0xAa817f5FE9F6385AA903a7FA994B4b403ab2b862/info.json b/blockchains/smartchain/assets/0xAa817f5FE9F6385AA903a7FA994B4b403ab2b862/info.json new file mode 100644 index 00000000..6df997a0 --- /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 00000000..4b3146c7 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 00000000..2b7611d9 --- /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 00000000..c8a4bc1f 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 00000000..27341b3e --- /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 00000000..68ea3afe 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 new file mode 100644 index 00000000..88c4b72e --- /dev/null +++ b/blockchains/smartchain/assets/0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57/info.json @@ -0,0 +1,11 @@ +{ + "name": "CreamPYE", + "type": "BEP20", + "symbol": "PYE", + "decimals": 18, + "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": "abandoned", + "id": "0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/info.json b/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/info.json new file mode 100644 index 00000000..793fc11a --- /dev/null +++ b/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/info.json @@ -0,0 +1,33 @@ +{ + "name": "Azbit", + "website": "https://azbit.com", + "description": "AZBIT TOKEN (AZ) is a decentralized cryptocurrency asset founded by the Seychelles-based Azbit platform. The Azbit (AZ) token project was announced in 2018 at the Consensus conference held in New York. ", + "explorer": "https://bscscan.com/token/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74", + "research": "https://azbit.com", + "symbol": "AZ", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/azbit-com/" + }, + { + "name": "x", + "url": "https://x.com/azbit_news" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Azbit/" + }, + { + "name": "whitepaper", + "url": "https://cdn.azbit.com/docs/en/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/logo.png b/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/logo.png new file mode 100644 index 00000000..073b8760 Binary files /dev/null and b/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/logo.png differ diff --git a/blockchains/smartchain/assets/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C/info.json b/blockchains/smartchain/assets/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C/info.json new file mode 100644 index 00000000..8fe14142 --- /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/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C/logo.png b/blockchains/smartchain/assets/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C/logo.png new file mode 100644 index 00000000..57b19dd2 Binary files /dev/null and b/blockchains/smartchain/assets/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C/logo.png differ diff --git a/blockchains/smartchain/assets/0xAb14952d2902343fde7c65D7dC095e5c8bE86920/info.json b/blockchains/smartchain/assets/0xAb14952d2902343fde7c65D7dC095e5c8bE86920/info.json new file mode 100644 index 00000000..95f447b6 --- /dev/null +++ b/blockchains/smartchain/assets/0xAb14952d2902343fde7c65D7dC095e5c8bE86920/info.json @@ -0,0 +1,33 @@ +{ + "name": "GOMA Finance", + "type": "BEP20", + "symbol": "GOMA", + "decimals": 9, + "website": "https://GomaToken.com", + "description": "GOMA is a Hyper-Deflationary Community DeFi token foused on staking, reflection and NFTs.", + "explorer": "https://bscscan.com/token/0xAb14952d2902343fde7c65D7dC095e5c8bE86920", + "status": "abandoned", + "id": "0xAb14952d2902343fde7c65D7dC095e5c8bE86920", + "links": [ + { + "name": "github", + "url": "https://github.com/GOMA-Finance" + }, + { + "name": "x", + "url": "https://x.com/GomaShibaToken" + }, + { + "name": "telegram", + "url": "https://t.me/GomaShiba" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/goma-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/goma-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAb301DaE71f5B386C566f484e636Aee60318F12F/info.json b/blockchains/smartchain/assets/0xAb301DaE71f5B386C566f484e636Aee60318F12F/info.json new file mode 100644 index 00000000..916605a4 --- /dev/null +++ b/blockchains/smartchain/assets/0xAb301DaE71f5B386C566f484e636Aee60318F12F/info.json @@ -0,0 +1,11 @@ +{ + "name": "CocosTokenV2", + "symbol": "COCOS", + "type": "BEP20", + "decimals": 18, + "description": "https://research.binance.com/en/projects/cocos-bcx", + "website": "http://www.cocosbcx.io/en/", + "explorer": "https://bscscan.com/token/0xab301dae71f5b386c566f484e636aee60318f12f", + "status": "active", + "id": "0xAb301DaE71f5B386C566f484e636Aee60318F12F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAb301DaE71f5B386C566f484e636Aee60318F12F/logo.png b/blockchains/smartchain/assets/0xAb301DaE71f5B386C566f484e636Aee60318F12F/logo.png new file mode 100644 index 00000000..3575393d Binary files /dev/null and b/blockchains/smartchain/assets/0xAb301DaE71f5B386C566f484e636Aee60318F12F/logo.png differ diff --git a/blockchains/smartchain/assets/0xAbc69f2025bDb12efcdB8fd048d240fFf943ca82/info.json b/blockchains/smartchain/assets/0xAbc69f2025bDb12efcdB8fd048d240fFf943ca82/info.json new file mode 100644 index 00000000..163c6c3a --- /dev/null +++ b/blockchains/smartchain/assets/0xAbc69f2025bDb12efcdB8fd048d240fFf943ca82/info.json @@ -0,0 +1,53 @@ +{ + "name": "Vanity", + "type": "BEP20", + "symbol": "VNY", + "decimals": 9, + "website": "https://vanitytoken.net", + "description": "$VNY is the first token ever released on any blockchain to provide Custom Wallet Addresses for Bitcoin, Ethereum, Binance Smart Chain, Litecoin and Dogecoin Chains.", + "explorer": "https://bscscan.com/token/0xAbc69f2025bDb12efcdB8fd048d240fFf943ca82", + "status": "active", + "id": "0xAbc69f2025bDb12efcdB8fd048d240fFf943ca82", + "links": [ + { + "name": "x", + "url": "https://x.com/vanitytoken" + }, + { + "name": "github", + "url": "https://github.com/VanityTokenOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/vanitytokenofficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/rxr4Xc8KnS" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/vanitytokenofficial" + }, + { + "name": "whitepaper", + "url": "https://vanitytoken.net/litepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vanity/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vanity/" + }, + { + "name": "source_code", + "url": "https://raw.githubusercontent.com/VanityTokenOfficial/VANITY/main/Contract/VANITY.sol" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UClJFNLaXDLy2OeMDYhvgmfg" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAbc69f2025bDb12efcdB8fd048d240fFf943ca82/logo.png b/blockchains/smartchain/assets/0xAbc69f2025bDb12efcdB8fd048d240fFf943ca82/logo.png new file mode 100644 index 00000000..beac5f00 Binary files /dev/null and b/blockchains/smartchain/assets/0xAbc69f2025bDb12efcdB8fd048d240fFf943ca82/logo.png differ diff --git a/blockchains/smartchain/assets/0xAc0C8dA4A4748d8d821A0973d00b157aA78C473D/info.json b/blockchains/smartchain/assets/0xAc0C8dA4A4748d8d821A0973d00b157aA78C473D/info.json new file mode 100644 index 00000000..bfd82c3c --- /dev/null +++ b/blockchains/smartchain/assets/0xAc0C8dA4A4748d8d821A0973d00b157aA78C473D/info.json @@ -0,0 +1,25 @@ +{ + "name": "YFIONE", + "website": "https://yfione.org/", + "description": "YFiONE explores the systematic production of new Defi products and will help develop, market and launch these Defi products to help it develop its biology and provide ideal benefits for community projects and users.", + "explorer": "https://bscscan.com/token/0xac0c8da4a4748d8d821a0973d00b157aa78c473d", + "type": "BEP20", + "symbol": "YFO", + "decimals": 18, + "status": "active", + "id": "0xAc0C8dA4A4748d8d821A0973d00b157aA78C473D", + "links": [ + { + "name": "github", + "url": "https://github.com/YFI-ONE" + }, + { + "name": "x", + "url": "https://x.com/yfione" + }, + { + "name": "telegram", + "url": "https://t.me/YFI_ONE" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAc0C8dA4A4748d8d821A0973d00b157aA78C473D/logo.png b/blockchains/smartchain/assets/0xAc0C8dA4A4748d8d821A0973d00b157aA78C473D/logo.png new file mode 100644 index 00000000..1a9a36ea Binary files /dev/null and b/blockchains/smartchain/assets/0xAc0C8dA4A4748d8d821A0973d00b157aA78C473D/logo.png differ diff --git a/blockchains/smartchain/assets/0xAc45475ABE6F9516e233a824aA013933B61bbB5C/info.json b/blockchains/smartchain/assets/0xAc45475ABE6F9516e233a824aA013933B61bbB5C/info.json new file mode 100644 index 00000000..d7076698 --- /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 00000000..f942bab4 Binary files /dev/null and b/blockchains/smartchain/assets/0xAc45475ABE6F9516e233a824aA013933B61bbB5C/logo.png differ diff --git a/blockchains/smartchain/assets/0xAc4c2903fb2f073e94De57c79D8Bec5155662122/info.json b/blockchains/smartchain/assets/0xAc4c2903fb2f073e94De57c79D8Bec5155662122/info.json new file mode 100644 index 00000000..01edd8df --- /dev/null +++ b/blockchains/smartchain/assets/0xAc4c2903fb2f073e94De57c79D8Bec5155662122/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lock Chain Finance", + "type": "BEP20", + "symbol": "LOCKCHAIN", + "decimals": 0, + "website": "http://lockchainfinance.com/", + "description": "Lock Chain Finance is a DeFi platform that lets everyone gain more profit from staking, liquidity mining, yield farming and many more!", + "explorer": "https://bscscan.com/token/0xAc4c2903fb2f073e94De57c79D8Bec5155662122", + "status": "active", + "id": "0xAc4c2903fb2f073e94De57c79D8Bec5155662122" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAc4c2903fb2f073e94De57c79D8Bec5155662122/logo.png b/blockchains/smartchain/assets/0xAc4c2903fb2f073e94De57c79D8Bec5155662122/logo.png new file mode 100644 index 00000000..e1ce445b Binary files /dev/null and b/blockchains/smartchain/assets/0xAc4c2903fb2f073e94De57c79D8Bec5155662122/logo.png differ diff --git a/blockchains/smartchain/assets/0xAcABD3f9b8F76fFd2724604185Fa5AFA5dF25aC6/info.json b/blockchains/smartchain/assets/0xAcABD3f9b8F76fFd2724604185Fa5AFA5dF25aC6/info.json new file mode 100644 index 00000000..b8c1153e --- /dev/null +++ b/blockchains/smartchain/assets/0xAcABD3f9b8F76fFd2724604185Fa5AFA5dF25aC6/info.json @@ -0,0 +1,29 @@ +{ + "name": "Monster Slayer Share", + "website": "https://monsterslayer.finance/", + "description": "MSS holders have voting rights and the ability to create proposals to improve the protocol. MSS holders also have many rights such as MSC minted will be distributed to MSS holders who have staked their tokens inside the boardroom.", + "explorer": "https://bscscan.com/token/0xAcABD3f9b8F76fFd2724604185Fa5AFA5dF25aC6", + "type": "BEP20", + "symbol": "MSS", + "decimals": 18, + "status": "active", + "id": "0xAcABD3f9b8F76fFd2724604185Fa5AFA5dF25aC6", + "links": [ + { + "name": "github", + "url": "https://github.com/monsterslayerfinance/bdollar-smartcontracts" + }, + { + "name": "x", + "url": "https://x.com/monsterslayerfi" + }, + { + "name": "telegram", + "url": "https://t.me/monsterslayer_announcement" + }, + { + "name": "medium", + "url": "https://medium.com/@monsterslayerfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAcABD3f9b8F76fFd2724604185Fa5AFA5dF25aC6/logo.png b/blockchains/smartchain/assets/0xAcABD3f9b8F76fFd2724604185Fa5AFA5dF25aC6/logo.png new file mode 100644 index 00000000..969242b0 Binary files /dev/null and b/blockchains/smartchain/assets/0xAcABD3f9b8F76fFd2724604185Fa5AFA5dF25aC6/logo.png differ diff --git a/blockchains/smartchain/assets/0xAcD7B3D9c10e97d0efA418903C0c7669E702E4C0/info.json b/blockchains/smartchain/assets/0xAcD7B3D9c10e97d0efA418903C0c7669E702E4C0/info.json new file mode 100644 index 00000000..339d085b --- /dev/null +++ b/blockchains/smartchain/assets/0xAcD7B3D9c10e97d0efA418903C0c7669E702E4C0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Eleven Finance", + "website": "https://eleven.finance", + "description": "Eleven Finance is a platform empowering high APY vaults in the Binance Smart Chain ecosystem.", + "explorer": "https://bscscan.com/token/0xAcD7B3D9c10e97d0efA418903C0c7669E702E4C0", + "type": "BEP20", + "symbol": "ELE", + "decimals": 18, + "status": "active", + "id": "0xAcD7B3D9c10e97d0efA418903C0c7669E702E4C0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAcD7B3D9c10e97d0efA418903C0c7669E702E4C0/logo.png b/blockchains/smartchain/assets/0xAcD7B3D9c10e97d0efA418903C0c7669E702E4C0/logo.png new file mode 100644 index 00000000..6d5a903b Binary files /dev/null and b/blockchains/smartchain/assets/0xAcD7B3D9c10e97d0efA418903C0c7669E702E4C0/logo.png differ diff --git a/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/info.json b/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/info.json new file mode 100644 index 00000000..b7012004 --- /dev/null +++ b/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/info.json @@ -0,0 +1,28 @@ +{ + "name": "KING FOREVER", + "type": "BEP20", + "symbol": "KFR", + "decimals": 9, + "website": "https://kingforevertoken.com/", + "description": "King Forever, a community driven deflationary token, with a 3 way to earn Entertainment Ecosystem and a MMORPG Metaverse Game!", + "explorer": "https://bscscan.com/token/0xacff4e9e9110971e1a4d8f013f5f97dd8fb4f430", + "status": "active", + "id": "0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430", + "links": [ + { + "name": "x", + "url": "https://x.com/kingforeverbsc" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/king-forever" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/king-forever/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/logo.png b/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/logo.png new file mode 100644 index 00000000..1ccab279 Binary files /dev/null and b/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/logo.png differ diff --git a/blockchains/smartchain/assets/0xAcab3Ee32aacdbC745667FB261ED7af1de5c5EcD/info.json b/blockchains/smartchain/assets/0xAcab3Ee32aacdbC745667FB261ED7af1de5c5EcD/info.json new file mode 100644 index 00000000..4b5fa4da --- /dev/null +++ b/blockchains/smartchain/assets/0xAcab3Ee32aacdbC745667FB261ED7af1de5c5EcD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Orange Token", + "website": "https://orange-token.website", + "description": "A Community driven, fair launched DeFi Token. Renounced & burnt.", + "explorer": "https://bscscan.com/token/0xAcab3Ee32aacdbC745667FB261ED7af1de5c5EcD", + "type": "BEP20", + "symbol": "ORANGE", + "decimals": 9, + "status": "active", + "id": "0xAcab3Ee32aacdbC745667FB261ED7af1de5c5EcD" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAcab3Ee32aacdbC745667FB261ED7af1de5c5EcD/logo.png b/blockchains/smartchain/assets/0xAcab3Ee32aacdbC745667FB261ED7af1de5c5EcD/logo.png new file mode 100644 index 00000000..00e01706 Binary files /dev/null and b/blockchains/smartchain/assets/0xAcab3Ee32aacdbC745667FB261ED7af1de5c5EcD/logo.png differ diff --git a/blockchains/smartchain/assets/0xAce8C5e6e492Aa7AEbF31a8053F8a487f62CeB84/info.json b/blockchains/smartchain/assets/0xAce8C5e6e492Aa7AEbF31a8053F8a487f62CeB84/info.json new file mode 100644 index 00000000..4af13c49 --- /dev/null +++ b/blockchains/smartchain/assets/0xAce8C5e6e492Aa7AEbF31a8053F8a487f62CeB84/info.json @@ -0,0 +1,11 @@ +{ + "name": "NOTHING", + "website": "https://www.nothingcoincrypto.com/", + "description": "Nothing is a deflationary BEP20 token that charges a 10% transaction fee and offers static rewards to holders along with automatic LP generation. What’s the difference between a meme coin that claims to do something innovative and a meme coin that does nothing? Nothing.", + "explorer": "https://bscscan.com/token/0xace8c5e6e492aa7aebf31a8053f8a487f62ceb84", + "type": "BEP20", + "symbol": "NADA", + "decimals": 18, + "status": "active", + "id": "0xAce8C5e6e492Aa7AEbF31a8053F8a487f62CeB84" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAce8C5e6e492Aa7AEbF31a8053F8a487f62CeB84/logo.png b/blockchains/smartchain/assets/0xAce8C5e6e492Aa7AEbF31a8053F8a487f62CeB84/logo.png new file mode 100644 index 00000000..541451fd Binary files /dev/null and b/blockchains/smartchain/assets/0xAce8C5e6e492Aa7AEbF31a8053F8a487f62CeB84/logo.png differ diff --git a/blockchains/smartchain/assets/0xAd6172123E1Bd3B4ce0B01ef92fDD63E83590b99/info.json b/blockchains/smartchain/assets/0xAd6172123E1Bd3B4ce0B01ef92fDD63E83590b99/info.json new file mode 100644 index 00000000..94ec669a --- /dev/null +++ b/blockchains/smartchain/assets/0xAd6172123E1Bd3B4ce0B01ef92fDD63E83590b99/info.json @@ -0,0 +1,11 @@ +{ + "name": "OxSwapToken", + "website": "https://oxswap.finance", + "description": "OxSwap is new and fastest swap exchange and Staking Farm on Binance Smart Chain. Much lower fees other than swap exchange almost free of fee.", + "explorer": "https://bscscan.com/token/0xAd6172123E1Bd3B4ce0B01ef92fDD63E83590b99", + "type": "BEP20", + "symbol": "OXT", + "decimals": 18, + "status": "active", + "id": "0xAd6172123E1Bd3B4ce0B01ef92fDD63E83590b99" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAd6172123E1Bd3B4ce0B01ef92fDD63E83590b99/logo.png b/blockchains/smartchain/assets/0xAd6172123E1Bd3B4ce0B01ef92fDD63E83590b99/logo.png new file mode 100644 index 00000000..5f10d243 Binary files /dev/null and b/blockchains/smartchain/assets/0xAd6172123E1Bd3B4ce0B01ef92fDD63E83590b99/logo.png differ diff --git a/blockchains/smartchain/assets/0xAd9787017e82f6368BbE4893b475CaadA2258564/info.json b/blockchains/smartchain/assets/0xAd9787017e82f6368BbE4893b475CaadA2258564/info.json new file mode 100644 index 00000000..1d8323f9 --- /dev/null +++ b/blockchains/smartchain/assets/0xAd9787017e82f6368BbE4893b475CaadA2258564/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitcoinAsset", + "type": "BEP20", + "symbol": "BTA", + "decimals": 18, + "website": "https://bitcoinasset.io/", + "description": "BTA is an asset that deserves to be valued the higher in the future and is worthy of long-term storage like bitcoin", + "explorer": "https://bscscan.com/token/0xAd9787017e82f6368BbE4893b475CaadA2258564", + "status": "active", + "id": "0xAd9787017e82f6368BbE4893b475CaadA2258564" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAd9787017e82f6368BbE4893b475CaadA2258564/logo.png b/blockchains/smartchain/assets/0xAd9787017e82f6368BbE4893b475CaadA2258564/logo.png new file mode 100644 index 00000000..a7c8d76c Binary files /dev/null and b/blockchains/smartchain/assets/0xAd9787017e82f6368BbE4893b475CaadA2258564/logo.png differ diff --git a/blockchains/smartchain/assets/0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB/info.json b/blockchains/smartchain/assets/0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB/info.json new file mode 100644 index 00000000..16041285 --- /dev/null +++ b/blockchains/smartchain/assets/0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB/info.json @@ -0,0 +1,28 @@ +{ + "name": "Binance-Peg COTI Token", + "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", + "type": "BEP20", + "symbol": "COTI", + "decimals": 18, + "status": "active", + "id": "0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/COTInetwork" + }, + { + "name": "telegram", + "url": "https://t.me/COTInetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coti/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB/logo.png b/blockchains/smartchain/assets/0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB/logo.png new file mode 100644 index 00000000..3a3da339 Binary files /dev/null and b/blockchains/smartchain/assets/0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB/logo.png differ diff --git a/blockchains/smartchain/assets/0xAdaf3be815Cd4345229324E02e839dE85cE95DC2/info.json b/blockchains/smartchain/assets/0xAdaf3be815Cd4345229324E02e839dE85cE95DC2/info.json new file mode 100644 index 00000000..31a21886 --- /dev/null +++ b/blockchains/smartchain/assets/0xAdaf3be815Cd4345229324E02e839dE85cE95DC2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Doraemoon", + "website": "https://doraemoon.io", + "description": "Doraemoon is a super cross chain (BSC, Polygon, Solana). Doraemoon ($DORA) is a next–gen cryptocurrency that combines auto-liquidity, frictionless yield, token burn, especially $DORA is a community driven DeFi token.", + "explorer": "https://bscscan.com/token/0xAdaf3be815Cd4345229324E02e839dE85cE95DC2", + "type": "BEP20", + "symbol": "DORA", + "decimals": 18, + "status": "active", + "id": "0xAdaf3be815Cd4345229324E02e839dE85cE95DC2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAdaf3be815Cd4345229324E02e839dE85cE95DC2/logo.png b/blockchains/smartchain/assets/0xAdaf3be815Cd4345229324E02e839dE85cE95DC2/logo.png new file mode 100644 index 00000000..222a1164 Binary files /dev/null and b/blockchains/smartchain/assets/0xAdaf3be815Cd4345229324E02e839dE85cE95DC2/logo.png differ diff --git a/blockchains/smartchain/assets/0xAe0D2cC54e4821D8aec9aDd89125B70d34Ac906e/info.json b/blockchains/smartchain/assets/0xAe0D2cC54e4821D8aec9aDd89125B70d34Ac906e/info.json new file mode 100644 index 00000000..0feaed2d --- /dev/null +++ b/blockchains/smartchain/assets/0xAe0D2cC54e4821D8aec9aDd89125B70d34Ac906e/info.json @@ -0,0 +1,11 @@ +{ + "name": "APE INU", + "website": "https://apeinu.com/", + "description": "The purpose of our coin is to build a vast community world wide for all apes to call home, our very own planet of the apes.", + "explorer": "https://bscscan.com/token/0xAe0D2cC54e4821D8aec9aDd89125B70d34Ac906e", + "type": "BEP20", + "symbol": "APE", + "decimals": 18, + "status": "active", + "id": "0xAe0D2cC54e4821D8aec9aDd89125B70d34Ac906e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAe0D2cC54e4821D8aec9aDd89125B70d34Ac906e/logo.png b/blockchains/smartchain/assets/0xAe0D2cC54e4821D8aec9aDd89125B70d34Ac906e/logo.png new file mode 100644 index 00000000..6a792400 Binary files /dev/null and b/blockchains/smartchain/assets/0xAe0D2cC54e4821D8aec9aDd89125B70d34Ac906e/logo.png differ diff --git a/blockchains/smartchain/assets/0xAe2DF9F730c54400934c06a17462c41C08a06ED8/info.json b/blockchains/smartchain/assets/0xAe2DF9F730c54400934c06a17462c41C08a06ED8/info.json new file mode 100644 index 00000000..eaf1d718 --- /dev/null +++ b/blockchains/smartchain/assets/0xAe2DF9F730c54400934c06a17462c41C08a06ED8/info.json @@ -0,0 +1,37 @@ +{ + "name": "DogeBonk", + "type": "BEP20", + "symbol": "DOBO", + "decimals": 9, + "website": "https://dogebonk.com", + "description": "DogeBonk is a fluffy token on BSC with deflationary properties and automatic yield generation. 10% tax on each transaction. No presale. Anti-snipe protection.", + "explorer": "https://bscscan.com/token/0xae2df9f730c54400934c06a17462c41c08a06ed8", + "status": "active", + "id": "0xAe2DF9F730c54400934c06a17462c41C08a06ED8", + "links": [ + { + "name": "x", + "url": "https://x.com/dogebonk_token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogebonk/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dogebonk" + }, + { + "name": "telegram", + "url": "https://t.me/dogebonk_community" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AxdDSjJ8VP" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/DogeBONK" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAe2DF9F730c54400934c06a17462c41C08a06ED8/logo.png b/blockchains/smartchain/assets/0xAe2DF9F730c54400934c06a17462c41C08a06ED8/logo.png new file mode 100644 index 00000000..1fd5712e Binary files /dev/null and b/blockchains/smartchain/assets/0xAe2DF9F730c54400934c06a17462c41C08a06ED8/logo.png differ diff --git a/blockchains/smartchain/assets/0xAe6e3B04d3eb991E30fA2474563fE2a89E351cdA/info.json b/blockchains/smartchain/assets/0xAe6e3B04d3eb991E30fA2474563fE2a89E351cdA/info.json new file mode 100644 index 00000000..63b5fe7c --- /dev/null +++ b/blockchains/smartchain/assets/0xAe6e3B04d3eb991E30fA2474563fE2a89E351cdA/info.json @@ -0,0 +1,11 @@ +{ + "name": "PancakeFork Finance", + "type": "BEP20", + "symbol": "CAKF", + "decimals": 18, + "description": "PancakeFork Finance is one of the most popular AMM on BSC Network with Yield Farming, Staking & Automated Market Making services at very low swap trading fees.", + "website": "https://pancakefork.finance", + "explorer": "https://bscscan.com/token/0xAe6e3B04d3eb991E30fA2474563fE2a89E351cdA", + "status": "active", + "id": "0xAe6e3B04d3eb991E30fA2474563fE2a89E351cdA" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAe6e3B04d3eb991E30fA2474563fE2a89E351cdA/logo.png b/blockchains/smartchain/assets/0xAe6e3B04d3eb991E30fA2474563fE2a89E351cdA/logo.png new file mode 100644 index 00000000..b4d21ca0 Binary files /dev/null and b/blockchains/smartchain/assets/0xAe6e3B04d3eb991E30fA2474563fE2a89E351cdA/logo.png differ diff --git a/blockchains/smartchain/assets/0xAe9269f27437f0fcBC232d39Ec814844a51d6b8f/info.json b/blockchains/smartchain/assets/0xAe9269f27437f0fcBC232d39Ec814844a51d6b8f/info.json new file mode 100644 index 00000000..a6c2956b --- /dev/null +++ b/blockchains/smartchain/assets/0xAe9269f27437f0fcBC232d39Ec814844a51d6b8f/info.json @@ -0,0 +1,12 @@ +{ + "name": "Burger Swap Token", + "website": "https://burgerswap.org", + "description": "A democratized AMM on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xAe9269f27437f0fcBC232d39Ec814844a51d6b8f", + "research": "https://research.binance.com/en/projects/burger-swap", + "type": "BEP20", + "symbol": "BURGER", + "decimals": 18, + "status": "active", + "id": "0xAe9269f27437f0fcBC232d39Ec814844a51d6b8f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAe9269f27437f0fcBC232d39Ec814844a51d6b8f/logo.png b/blockchains/smartchain/assets/0xAe9269f27437f0fcBC232d39Ec814844a51d6b8f/logo.png new file mode 100644 index 00000000..e0eb194a Binary files /dev/null and b/blockchains/smartchain/assets/0xAe9269f27437f0fcBC232d39Ec814844a51d6b8f/logo.png differ diff --git a/blockchains/smartchain/assets/0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681/info.json b/blockchains/smartchain/assets/0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681/info.json new file mode 100644 index 00000000..1ff2359b --- /dev/null +++ b/blockchains/smartchain/assets/0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681/info.json @@ -0,0 +1,62 @@ +{ + "name": "HODLX", + "type": "BEP20", + "symbol": "HODLX", + "decimals": 18, + "website": "https://hodltoken.net/about-hodlx", + "description": "HODLX Token launched on the Binance Smart Chain (BSC) on April 1, 2022, as an innovative tax-free token packed full of utility. As the native token of HODLX.Exchange, $HODLX offers an array of ways to earn, including yield-farming – available for $HODL, $HODLX and BNB pairings, and staking – available for $HODL, $HODLX, and HODL Hands NFTs.", + "explorer": "https://bscscan.com/token/0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681", + "status": "active", + "id": "0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681", + "links": [ + { + "name": "x", + "url": "https://x.com/OFFICIAL_HODLX" + }, + { + "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/hodlx/" + }, + { + "name": "telegram_news", + "url": "https://t.me/HodlAnnouncements" + }, + { + "name": "blog", + "url": "https://hodltoken.net/news/" + }, + { + "name": "whitepaper", + "url": "https://hodltoken.net/whitepaper/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681#code" + } + ], + "tags": [ + "defi", + "staking", + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681/logo.png b/blockchains/smartchain/assets/0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681/logo.png new file mode 100644 index 00000000..2f38ab0b Binary files /dev/null and b/blockchains/smartchain/assets/0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681/logo.png differ diff --git a/blockchains/smartchain/assets/0xAed5985afC12aA09d87F55B4b1e6bC3B8f7B0208/info.json b/blockchains/smartchain/assets/0xAed5985afC12aA09d87F55B4b1e6bC3B8f7B0208/info.json new file mode 100644 index 00000000..c5d7ffcc --- /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 00000000..9b38323e 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 new file mode 100644 index 00000000..ebc7c6f7 --- /dev/null +++ b/blockchains/smartchain/assets/0xAf41054C1487b0e5E2B9250C0332eCBCe6CE9d71/info.json @@ -0,0 +1,32 @@ +{ + "name": "Ellipsis X", + "website": "https://ellipsis.finance/", + "description": "Ellipsis Finance aims to offer secure low-slippage stable swapping.", + "explorer": "https://bscscan.com/token/0xAf41054C1487b0e5E2B9250C0332eCBCe6CE9d71", + "type": "BEP20", + "symbol": "EPX", + "decimals": 18, + "status": "active", + "id": "0xAf41054C1487b0e5E2B9250C0332eCBCe6CE9d71", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/Ellipsisfi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ellipsis/" + }, + { + "name": "telegram", + "url": "https://t.me/ellipsisfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ellipsis/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAf41054C1487b0e5E2B9250C0332eCBCe6CE9d71/logo.png b/blockchains/smartchain/assets/0xAf41054C1487b0e5E2B9250C0332eCBCe6CE9d71/logo.png new file mode 100644 index 00000000..a4474059 Binary files /dev/null and b/blockchains/smartchain/assets/0xAf41054C1487b0e5E2B9250C0332eCBCe6CE9d71/logo.png differ diff --git a/blockchains/smartchain/assets/0xAf48B7e315a52518CfBF7d96C455D9dFAD94cB48/info.json b/blockchains/smartchain/assets/0xAf48B7e315a52518CfBF7d96C455D9dFAD94cB48/info.json new file mode 100644 index 00000000..6beb8d55 --- /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 00000000..416c5e0a 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 new file mode 100644 index 00000000..f86486d3 --- /dev/null +++ b/blockchains/smartchain/assets/0xAf7BfA6240745Fd41D1ED4b5fADE9DCAF369bA6c/info.json @@ -0,0 +1,37 @@ +{ + "name": "MaticVerse", + "type": "BEP20", + "symbol": "Mverse", + "decimals": 18, + "website": "https://maticverse.io/", + "description": "MATICVERSE is your gateway to the Baby Vengers multiverse!", + "explorer": "https://bscscan.com/token/0xAf7BfA6240745Fd41D1ED4b5fADE9DCAF369bA6c", + "status": "active", + "id": "0xAf7BfA6240745Fd41D1ED4b5fADE9DCAF369bA6c", + "links": [ + { + "name": "x", + "url": "https://x.com/maticverse" + }, + { + "name": "telegram", + "url": "https://t.me/MaticVerse" + }, + { + "name": "telegram_news", + "url": "https://t.me/MaticVerse_Ann" + }, + { + "name": "whitepaper", + "url": "https://maticverse.io/assets/whitepaper_v2.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/babymatic/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/maticverse" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAf7BfA6240745Fd41D1ED4b5fADE9DCAF369bA6c/logo.png b/blockchains/smartchain/assets/0xAf7BfA6240745Fd41D1ED4b5fADE9DCAF369bA6c/logo.png new file mode 100644 index 00000000..5e5a82d2 Binary files /dev/null and b/blockchains/smartchain/assets/0xAf7BfA6240745Fd41D1ED4b5fADE9DCAF369bA6c/logo.png differ diff --git a/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/info.json b/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/info.json new file mode 100644 index 00000000..a55a906f --- /dev/null +++ b/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/info.json @@ -0,0 +1,32 @@ +{ + "name": "RatBoyBSC", + "type": "BEP20", + "symbol": "WENTXN", + "decimals": 4, + "website": "https://ratboybsc.com", + "description": "Ratboy is a project on the Binance Smart Chain dedicated to cleaning the rats in the space. These include the ruggers and scammers which run away with investor’s funds. The utilities which will accompany this coin are based on avoiding these rats of BSC and to publicly shame them. This way one step at a time we can make people double think before attempting to scam, due to the public shame which follows.", + "explorer": "https://bscscan.com/token/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd", + "status": "active", + "id": "0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd", + "links": [ + { + "name": "x", + "url": "https://x.com/ratboybsc" + }, + { + "name": "telegram", + "url": "https://t.me/ratboyofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ratboy-bsc/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/ratboy-bsc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/logo.png b/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/logo.png new file mode 100644 index 00000000..70a81100 Binary files /dev/null and b/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/logo.png differ diff --git a/blockchains/smartchain/assets/0xB0228Eb6c0b49f8265e6E161c3a987eeD7471F42/info.json b/blockchains/smartchain/assets/0xB0228Eb6c0b49f8265e6E161c3a987eeD7471F42/info.json new file mode 100644 index 00000000..bd67034e --- /dev/null +++ b/blockchains/smartchain/assets/0xB0228Eb6c0b49f8265e6E161c3a987eeD7471F42/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fanspel Token", + "website": "https://www.fanspel.io", + "description": "Fanspel Token is a new blockchain innovation that provides gamified experience for users to earn cryptocurrency.", + "explorer": "https://bscscan.com/token/0xb0228eb6c0b49f8265e6e161c3a987eed7471f42", + "type": "BEP20", + "symbol": "FAN", + "decimals": 18, + "status": "active", + "id": "0xB0228Eb6c0b49f8265e6E161c3a987eeD7471F42" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB0228Eb6c0b49f8265e6E161c3a987eeD7471F42/logo.png b/blockchains/smartchain/assets/0xB0228Eb6c0b49f8265e6E161c3a987eeD7471F42/logo.png new file mode 100644 index 00000000..080c1f0f Binary files /dev/null and b/blockchains/smartchain/assets/0xB0228Eb6c0b49f8265e6E161c3a987eeD7471F42/logo.png differ diff --git a/blockchains/smartchain/assets/0xB04906e95AB5D797aDA81508115611fee694c2b3/info.json b/blockchains/smartchain/assets/0xB04906e95AB5D797aDA81508115611fee694c2b3/info.json new file mode 100644 index 00000000..d2c9d5a1 --- /dev/null +++ b/blockchains/smartchain/assets/0xB04906e95AB5D797aDA81508115611fee694c2b3/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Ethereum)", + "type": "BEP20", + "symbol": "USDCet", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://bscscan.com/token/0xB04906e95AB5D797aDA81508115611fee694c2b3", + "status": "active", + "id": "0xB04906e95AB5D797aDA81508115611fee694c2b3", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB04906e95AB5D797aDA81508115611fee694c2b3/logo.png b/blockchains/smartchain/assets/0xB04906e95AB5D797aDA81508115611fee694c2b3/logo.png new file mode 100644 index 00000000..ed00e43f Binary files /dev/null and b/blockchains/smartchain/assets/0xB04906e95AB5D797aDA81508115611fee694c2b3/logo.png differ diff --git a/blockchains/smartchain/assets/0xB05513809549b8654fA1228b123A36c78a3356F4/info.json b/blockchains/smartchain/assets/0xB05513809549b8654fA1228b123A36c78a3356F4/info.json new file mode 100644 index 00000000..06955dff --- /dev/null +++ b/blockchains/smartchain/assets/0xB05513809549b8654fA1228b123A36c78a3356F4/info.json @@ -0,0 +1,11 @@ +{ + "name": "BossDog", + "type": "BEP20", + "symbol": "$BOSSDOG", + "decimals": 9, + "website": "https://bossdogtoken.com/", + "description": "Yield-generating contract with 🔥burn (50% of total supply), 💰liquidity (5% fee) and 🙌redistribution (5% fee).", + "explorer": "https://bscscan.com/token/0xB05513809549b8654fA1228b123A36c78a3356F4", + "status": "active", + "id": "0xB05513809549b8654fA1228b123A36c78a3356F4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB05513809549b8654fA1228b123A36c78a3356F4/logo.png b/blockchains/smartchain/assets/0xB05513809549b8654fA1228b123A36c78a3356F4/logo.png new file mode 100644 index 00000000..9a8f6249 Binary files /dev/null and b/blockchains/smartchain/assets/0xB05513809549b8654fA1228b123A36c78a3356F4/logo.png differ diff --git a/blockchains/smartchain/assets/0xB068bD15AEDf75Be6c2c6d0Be10b286a32087120/info.json b/blockchains/smartchain/assets/0xB068bD15AEDf75Be6c2c6d0Be10b286a32087120/info.json new file mode 100644 index 00000000..95f33373 --- /dev/null +++ b/blockchains/smartchain/assets/0xB068bD15AEDf75Be6c2c6d0Be10b286a32087120/info.json @@ -0,0 +1,45 @@ +{ + "name": "Tokenoid", + "type": "BEP20", + "symbol": "NOID", + "decimals": 9, + "website": "https://tokenoid.io/", + "description": "TokeNoid is developing games using the blockchain technology for their transactions. More game, More utility for NOID.", + "explorer": "https://bscscan.com/token/0xB068bD15AEDf75Be6c2c6d0Be10b286a32087120", + "status": "active", + "id": "0xB068bD15AEDf75Be6c2c6d0Be10b286a32087120", + "links": [ + { + "name": "x", + "url": "https://x.com/NoidToken" + }, + { + "name": "github", + "url": "https://github.com/TokeNOID/" + }, + { + "name": "telegram", + "url": "https://t.me/TokeNOIDOfficial_Chat" + }, + { + "name": "telegram_news", + "url": "https://t.me/TokeNOIDOfficial_Ann" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tokenoid/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tokenoid" + }, + { + "name": "docs", + "url": "https://tokenoid-studio.gitbook.io/welcome-to-gitbook/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCYiyO8VMCZvakrMCqkOpyDw" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB068bD15AEDf75Be6c2c6d0Be10b286a32087120/logo.png b/blockchains/smartchain/assets/0xB068bD15AEDf75Be6c2c6d0Be10b286a32087120/logo.png new file mode 100644 index 00000000..aca8d416 Binary files /dev/null and b/blockchains/smartchain/assets/0xB068bD15AEDf75Be6c2c6d0Be10b286a32087120/logo.png differ diff --git a/blockchains/smartchain/assets/0xB0752Aa50B089EE6eA9aCD51373207Fa460E87bb/info.json b/blockchains/smartchain/assets/0xB0752Aa50B089EE6eA9aCD51373207Fa460E87bb/info.json new file mode 100644 index 00000000..ab6c32fd --- /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 00000000..940143ce Binary files /dev/null and b/blockchains/smartchain/assets/0xB0752Aa50B089EE6eA9aCD51373207Fa460E87bb/logo.png differ diff --git a/blockchains/smartchain/assets/0xB09FE1613fE03E7361319d2a43eDc17422f36B09/info.json b/blockchains/smartchain/assets/0xB09FE1613fE03E7361319d2a43eDc17422f36B09/info.json new file mode 100644 index 00000000..651ec3ce --- /dev/null +++ b/blockchains/smartchain/assets/0xB09FE1613fE03E7361319d2a43eDc17422f36B09/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bogged Finance", + "website": "https://bogtools.io/", + "description": "The BOG Token powers Bogged Finance and the BogTools suite of DeFi Tools.", + "explorer": "https://bscscan.com/token/0xB09FE1613fE03E7361319d2a43eDc17422f36B09", + "type": "BEP20", + "symbol": "BOG", + "decimals": 18, + "status": "active", + "id": "0xB09FE1613fE03E7361319d2a43eDc17422f36B09" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB09FE1613fE03E7361319d2a43eDc17422f36B09/logo.png b/blockchains/smartchain/assets/0xB09FE1613fE03E7361319d2a43eDc17422f36B09/logo.png new file mode 100644 index 00000000..e0373b94 Binary files /dev/null and b/blockchains/smartchain/assets/0xB09FE1613fE03E7361319d2a43eDc17422f36B09/logo.png differ diff --git a/blockchains/smartchain/assets/0xB0B924C4a31b7d4581a7F78F57ceE1E65736Be1D/info.json b/blockchains/smartchain/assets/0xB0B924C4a31b7d4581a7F78F57ceE1E65736Be1D/info.json new file mode 100644 index 00000000..55b23909 --- /dev/null +++ b/blockchains/smartchain/assets/0xB0B924C4a31b7d4581a7F78F57ceE1E65736Be1D/info.json @@ -0,0 +1,21 @@ +{ + "name": "HappyCoin", + "website": "https://thehappycoin.co", + "description": "HappyCoin is a BEP20 charity-oriented token that is helping to fight mental illness across the world.", + "explorer": "https://bscscan.com/token/0xb0b924c4a31b7d4581a7f78f57cee1e65736be1d", + "type": "BEP20", + "symbol": "HAPPY", + "decimals": 9, + "status": "active", + "id": "0xB0B924C4a31b7d4581a7F78F57ceE1E65736Be1D", + "links": [ + { + "name": "x", + "url": "https://x.com/the_happy_coin" + }, + { + "name": "telegram", + "url": "https://t.me/happy_coinTG" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB0B924C4a31b7d4581a7F78F57ceE1E65736Be1D/logo.png b/blockchains/smartchain/assets/0xB0B924C4a31b7d4581a7F78F57ceE1E65736Be1D/logo.png new file mode 100644 index 00000000..2aa14509 Binary files /dev/null and b/blockchains/smartchain/assets/0xB0B924C4a31b7d4581a7F78F57ceE1E65736Be1D/logo.png differ diff --git a/blockchains/smartchain/assets/0xB0D502E938ed5f4df2E681fE6E419ff29631d62b/info.json b/blockchains/smartchain/assets/0xB0D502E938ed5f4df2E681fE6E419ff29631d62b/info.json new file mode 100644 index 00000000..2cc737ca --- /dev/null +++ b/blockchains/smartchain/assets/0xB0D502E938ed5f4df2E681fE6E419ff29631d62b/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://bscscan.com/token/0xb0d502e938ed5f4df2e681fe6e419ff29631d62b", + "type": "BEP20", + "symbol": "STG", + "decimals": 18, + "status": "active", + "id": "0xB0D502E938ed5f4df2E681fE6E419ff29631d62b", + "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/smartchain/assets/0xB0D502E938ed5f4df2E681fE6E419ff29631d62b/logo.png b/blockchains/smartchain/assets/0xB0D502E938ed5f4df2E681fE6E419ff29631d62b/logo.png new file mode 100644 index 00000000..f983849d Binary files /dev/null and b/blockchains/smartchain/assets/0xB0D502E938ed5f4df2E681fE6E419ff29631d62b/logo.png differ diff --git a/blockchains/smartchain/assets/0xB0a1DE764A033A76f28E821fBe402EDBFEe937dB/info.json b/blockchains/smartchain/assets/0xB0a1DE764A033A76f28E821fBe402EDBFEe937dB/info.json new file mode 100644 index 00000000..e88799fa --- /dev/null +++ b/blockchains/smartchain/assets/0xB0a1DE764A033A76f28E821fBe402EDBFEe937dB/info.json @@ -0,0 +1,21 @@ +{ + "name": "xDitto", + "website": "https://ditto.money", + "description": "xDitto is a secondary, non-rebasing asset that backs the Ditto elastic supply token.", + "explorer": "https://bscscan.com/token/0xB0a1DE764A033A76f28E821fBe402EDBFEe937dB", + "type": "BEP20", + "symbol": "XDITTO", + "decimals": 18, + "status": "active", + "id": "0xB0a1DE764A033A76f28E821fBe402EDBFEe937dB", + "links": [ + { + "name": "github", + "url": "https://github.com/ditto-money/" + }, + { + "name": "x", + "url": "https://x.com/dittomoney_" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB0a1DE764A033A76f28E821fBe402EDBFEe937dB/logo.png b/blockchains/smartchain/assets/0xB0a1DE764A033A76f28E821fBe402EDBFEe937dB/logo.png new file mode 100644 index 00000000..7268d7d0 Binary files /dev/null and b/blockchains/smartchain/assets/0xB0a1DE764A033A76f28E821fBe402EDBFEe937dB/logo.png differ diff --git a/blockchains/smartchain/assets/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B/info.json b/blockchains/smartchain/assets/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B/info.json new file mode 100644 index 00000000..934f4160 --- /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 00000000..4e0fba0c 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 new file mode 100644 index 00000000..0d5bd106 --- /dev/null +++ b/blockchains/smartchain/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/info.json @@ -0,0 +1,33 @@ +{ + "name": "Impossible Finance", + "website": "https://impossible.finance", + "description": "Impossible Finance is a builder-focused multichain ecosystem featuring decentralized incubator, launchpad, and swap. IF is the governance and fee accrual token for the swap.", + "explorer": "https://bscscan.com/token/0xb0e1fc65c1a741b4662b813eb787d369b8614af1", + "type": "BEP20", + "symbol": "IF", + "decimals": 18, + "status": "active", + "id": "0xB0e1fc65C1a741b4662B813eB787d369b8614Af1", + "links": [ + { + "name": "github", + "url": "https://github.com/impossiblefinance" + }, + { + "name": "x", + "url": "https://x.com/impossiblefi" + }, + { + "name": "blog", + "url": "https://medium.com/impossiblefinance" + }, + { + "name": "telegram", + "url": "https://t.me/ImpossibleFinance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/impossible-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/logo.png b/blockchains/smartchain/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/logo.png new file mode 100644 index 00000000..8fcaf7fc Binary files /dev/null and b/blockchains/smartchain/assets/0xB0e1fc65C1a741b4662B813eB787d369b8614Af1/logo.png differ diff --git a/blockchains/smartchain/assets/0xB1035523a844371C2877f8a3b2F2f8d337403b6F/info.json b/blockchains/smartchain/assets/0xB1035523a844371C2877f8a3b2F2f8d337403b6F/info.json new file mode 100644 index 00000000..fc64015f --- /dev/null +++ b/blockchains/smartchain/assets/0xB1035523a844371C2877f8a3b2F2f8d337403b6F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shibby", + "website": "https://shibby.finance", + "description": "SHIBBY is the worlds first DAO combined with Safemoon Tokenomics on BSC", + "explorer": "https://bscscan.com/token/0xB1035523a844371C2877f8a3b2F2f8d337403b6F", + "type": "BEP20", + "symbol": "SHIBBY", + "decimals": 9, + "status": "active", + "id": "0xB1035523a844371C2877f8a3b2F2f8d337403b6F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB1035523a844371C2877f8a3b2F2f8d337403b6F/logo.png b/blockchains/smartchain/assets/0xB1035523a844371C2877f8a3b2F2f8d337403b6F/logo.png new file mode 100644 index 00000000..d0f0321a Binary files /dev/null and b/blockchains/smartchain/assets/0xB1035523a844371C2877f8a3b2F2f8d337403b6F/logo.png differ diff --git a/blockchains/smartchain/assets/0xB1731E5e035CB039298159EcB191cB3fe666Dd0e/info.json b/blockchains/smartchain/assets/0xB1731E5e035CB039298159EcB191cB3fe666Dd0e/info.json new file mode 100644 index 00000000..63af910d --- /dev/null +++ b/blockchains/smartchain/assets/0xB1731E5e035CB039298159EcB191cB3fe666Dd0e/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEED Token", + "website": "https://feedtoken.org", + "description": "Feed Token is a charity-oriented token for a world matter cause.", + "explorer": "https://bscscan.com/token/0xB1731E5e035CB039298159EcB191cB3fe666Dd0e", + "type": "BEP20", + "symbol": "FEED", + "decimals": 9, + "status": "active", + "id": "0xB1731E5e035CB039298159EcB191cB3fe666Dd0e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB1731E5e035CB039298159EcB191cB3fe666Dd0e/logo.png b/blockchains/smartchain/assets/0xB1731E5e035CB039298159EcB191cB3fe666Dd0e/logo.png new file mode 100644 index 00000000..95dcdab1 Binary files /dev/null and b/blockchains/smartchain/assets/0xB1731E5e035CB039298159EcB191cB3fe666Dd0e/logo.png differ diff --git a/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/info.json b/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/info.json new file mode 100644 index 00000000..0598d94b --- /dev/null +++ b/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/info.json @@ -0,0 +1,44 @@ +{ + "name": "Moonlight Token", + "type": "BEP20", + "symbol": "MOONLIGHT", + "decimals": 9, + "website": "https://bubblemaps.io", + "description": "Hold Moonlight Token to get premium access to Bubblemaps", + "explorer": "https://bscscan.com/token/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382", + "status": "active", + "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 new file mode 100644 index 00000000..31ef60f9 Binary files /dev/null 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 00000000..bf99d37b --- /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 00000000..cd6189a8 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 new file mode 100644 index 00000000..5e1a47fb --- /dev/null +++ b/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus XRP", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0xB248a295732e0225acd3337607cc01068e3b9c10", + "type": "BEP20", + "symbol": "vXRP", + "decimals": 8, + "status": "active", + "id": "0xB248a295732e0225acd3337607cc01068e3b9c10", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/logo.png b/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/logo.png new file mode 100644 index 00000000..1e5d46d7 Binary files /dev/null and b/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/logo.png differ diff --git a/blockchains/smartchain/assets/0xB265cBa9bd6e34FA412bD8b4C1514C902C0e7E7d/info.json b/blockchains/smartchain/assets/0xB265cBa9bd6e34FA412bD8b4C1514C902C0e7E7d/info.json new file mode 100644 index 00000000..ef324ef7 --- /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 00000000..41ef489e Binary files /dev/null and b/blockchains/smartchain/assets/0xB265cBa9bd6e34FA412bD8b4C1514C902C0e7E7d/logo.png differ diff --git a/blockchains/smartchain/assets/0xB27ADAfFB9fEa1801459a1a81B17218288c097cc/info.json b/blockchains/smartchain/assets/0xB27ADAfFB9fEa1801459a1a81B17218288c097cc/info.json new file mode 100644 index 00000000..7fe469c0 --- /dev/null +++ b/blockchains/smartchain/assets/0xB27ADAfFB9fEa1801459a1a81B17218288c097cc/info.json @@ -0,0 +1,11 @@ +{ + "name": "PooCoin", + "website": "https://poocoin.app/", + "description": "PooCoin Reflect Token. 8% fee is charged on each transaction. 4% is distributed to token holders 4% is burned. Initial supply: 10,000,000. No more than 100,000 can be traded in 1 transaction.", + "explorer": "https://bscscan.com/token/0xB27ADAfFB9fEa1801459a1a81B17218288c097cc", + "type": "BEP20", + "symbol": "POOCOIN", + "decimals": 8, + "status": "active", + "id": "0xB27ADAfFB9fEa1801459a1a81B17218288c097cc" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB27ADAfFB9fEa1801459a1a81B17218288c097cc/logo.png b/blockchains/smartchain/assets/0xB27ADAfFB9fEa1801459a1a81B17218288c097cc/logo.png new file mode 100644 index 00000000..97f0bb25 Binary files /dev/null and b/blockchains/smartchain/assets/0xB27ADAfFB9fEa1801459a1a81B17218288c097cc/logo.png differ diff --git a/blockchains/smartchain/assets/0xB2BD0749DBE21f623d9BABa856D3B0f0e1BFEc9C/info.json b/blockchains/smartchain/assets/0xB2BD0749DBE21f623d9BABa856D3B0f0e1BFEc9C/info.json new file mode 100644 index 00000000..2794ca58 --- /dev/null +++ b/blockchains/smartchain/assets/0xB2BD0749DBE21f623d9BABa856D3B0f0e1BFEc9C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dusk Network", + "symbol": "DUSK", + "type": "BEP20", + "decimals": 18, + "description": "Dusk Network is technology for securities. An open source and secure blockchain (DLT) infrastructure that businesses use to tokenize financial instruments and automate costly processes.", + "website": "https://dusk.network/", + "explorer": "https://bscscan.com/token/0xb2bd0749dbe21f623d9baba856d3b0f0e1bfec9c", + "status": "active", + "id": "0xB2BD0749DBE21f623d9BABa856D3B0f0e1BFEc9C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB2BD0749DBE21f623d9BABa856D3B0f0e1BFEc9C/logo.png b/blockchains/smartchain/assets/0xB2BD0749DBE21f623d9BABa856D3B0f0e1BFEc9C/logo.png new file mode 100644 index 00000000..e59c692b Binary files /dev/null and b/blockchains/smartchain/assets/0xB2BD0749DBE21f623d9BABa856D3B0f0e1BFEc9C/logo.png differ diff --git a/blockchains/smartchain/assets/0xB2f7e860E302b18819970ceA41BcFc7349834e81/info.json b/blockchains/smartchain/assets/0xB2f7e860E302b18819970ceA41BcFc7349834e81/info.json new file mode 100644 index 00000000..6f0ab7de --- /dev/null +++ b/blockchains/smartchain/assets/0xB2f7e860E302b18819970ceA41BcFc7349834e81/info.json @@ -0,0 +1,11 @@ +{ + "name": "LUCK-INU", + "type": "BEP20", + "symbol": "LUCK-INU", + "decimals": 9, + "website": "https://www.luckinutoken.com/", + "description": "The last 7 buyers win a Jackpot, paid in BNB instantly Countdown available in the website & telegram bot. If you buy at the right time, you win.", + "explorer": "https://bscscan.com/token/0xB2f7e860E302b18819970ceA41BcFc7349834e81", + "status": "active", + "id": "0xB2f7e860E302b18819970ceA41BcFc7349834e81" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB2f7e860E302b18819970ceA41BcFc7349834e81/logo.png b/blockchains/smartchain/assets/0xB2f7e860E302b18819970ceA41BcFc7349834e81/logo.png new file mode 100644 index 00000000..9cbf6beb Binary files /dev/null and b/blockchains/smartchain/assets/0xB2f7e860E302b18819970ceA41BcFc7349834e81/logo.png differ diff --git a/blockchains/smartchain/assets/0xB31FD05CAF496CEf34C945667E90dd89C20E0D09/info.json b/blockchains/smartchain/assets/0xB31FD05CAF496CEf34C945667E90dd89C20E0D09/info.json new file mode 100644 index 00000000..df6f9ecf --- /dev/null +++ b/blockchains/smartchain/assets/0xB31FD05CAF496CEf34C945667E90dd89C20E0D09/info.json @@ -0,0 +1,28 @@ +{ + "name": "MagicStaves", + "type": "BEP20", + "symbol": "MAST", + "decimals": 18, + "website": "https://mast.magic-cube.finance/#/farms", + "description": "MAST is a BEP-20 incentive token based on the Binance Smart Chain network launched by Magic cube DAO. The value and significance of MAST issuance is to promote the management and governance among the Magic cube DAO communities", + "explorer": "https://bscscan.com/token/0xB31FD05CAF496CEf34C945667E90dd89C20E0D09", + "status": "active", + "id": "0xB31FD05CAF496CEf34C945667E90dd89C20E0D09", + "links": [ + { + "name": "x", + "url": "https://x.com/MagicCubeDeFi" + }, + { + "name": "telegram", + "url": "https://t.me/magicpowercommunityglobal" + }, + { + "name": "github", + "url": "https://github.com/MagicCubeFinance" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB31FD05CAF496CEf34C945667E90dd89C20E0D09/logo.png b/blockchains/smartchain/assets/0xB31FD05CAF496CEf34C945667E90dd89C20E0D09/logo.png new file mode 100644 index 00000000..0503464e Binary files /dev/null and b/blockchains/smartchain/assets/0xB31FD05CAF496CEf34C945667E90dd89C20E0D09/logo.png differ diff --git a/blockchains/smartchain/assets/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96/info.json b/blockchains/smartchain/assets/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96/info.json new file mode 100644 index 00000000..5d6615d7 --- /dev/null +++ b/blockchains/smartchain/assets/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96/info.json @@ -0,0 +1,29 @@ +{ + "name": "LOFcrypto", + "website": "https://lofcrypto.com/", + "description": "$LOF is a High-Yield, Deflationary, and Frictionless Farming Token on the Binance Smart Chain. We support content creators & always reward our holders. At $LOF, we care and have made it one of our top goals to donate to charities preventing human trafficking. We’re proud to say that within 24 hours of launch $LOF reached a historical figure $29 million market cap with a record amount of holders. We are humbled & grateful for those who believed in our project from day one.", + "explorer": "https://bscscan.com/token/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96", + "type": "BEP20", + "symbol": "LOF", + "decimals": 9, + "status": "abandoned", + "id": "0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96", + "links": [ + { + "name": "github", + "url": "https://github.com/LonelyFans/LonelyFans/" + }, + { + "name": "x", + "url": "https://x.com/LOFcrypto" + }, + { + "name": "telegram", + "url": "https://t.me/LOFcrypto" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/LOFcrypto/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/info.json b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/info.json new file mode 100644 index 00000000..361effad --- /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 00000000..20119148 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 00000000..0b8ce46e --- /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 00000000..7692d40a Binary files /dev/null and b/blockchains/smartchain/assets/0xB35a9EAB5D25282f4e668798B629a9294e9A47aa/logo.png differ diff --git a/blockchains/smartchain/assets/0xB3670F91E86a96EeDA0c75b1573035A6277226fb/info.json b/blockchains/smartchain/assets/0xB3670F91E86a96EeDA0c75b1573035A6277226fb/info.json new file mode 100644 index 00000000..5053695d --- /dev/null +++ b/blockchains/smartchain/assets/0xB3670F91E86a96EeDA0c75b1573035A6277226fb/info.json @@ -0,0 +1,11 @@ +{ + "name": "BUYBACK Token", + "website": "https://www.buybacktoken.net/", + "description": "Buyback is a utility token for defi aplications and also have Reflection, Auto Funding, and Burn mechanism. ", + "explorer": "https://bscscan.com/token/0xb3670f91e86a96eeda0c75b1573035a6277226fb", + "type": "BEP20", + "symbol": "BBT", + "decimals": 18, + "status": "active", + "id": "0xB3670F91E86a96EeDA0c75b1573035A6277226fb" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB3670F91E86a96EeDA0c75b1573035A6277226fb/logo.png b/blockchains/smartchain/assets/0xB3670F91E86a96EeDA0c75b1573035A6277226fb/logo.png new file mode 100644 index 00000000..5a4bff06 Binary files /dev/null and b/blockchains/smartchain/assets/0xB3670F91E86a96EeDA0c75b1573035A6277226fb/logo.png differ diff --git a/blockchains/smartchain/assets/0xB3b8326C75893632945cA6E4f4Bd76E7a7c7D5Ac/info.json b/blockchains/smartchain/assets/0xB3b8326C75893632945cA6E4f4Bd76E7a7c7D5Ac/info.json new file mode 100644 index 00000000..a2215af6 --- /dev/null +++ b/blockchains/smartchain/assets/0xB3b8326C75893632945cA6E4f4Bd76E7a7c7D5Ac/info.json @@ -0,0 +1,37 @@ +{ + "name": "Binance Smart Chain BOY CZ", + "type": "BEP20", + "symbol": "BSCCZ", + "decimals": 8, + "website": "https://bscgirl.site/", + "description": "Binance Smart Chain BOY CZ is a token of the same project as Binance Smart Chain Girl.", + "explorer": "https://bscscan.com/token/0xB3b8326C75893632945cA6E4f4Bd76E7a7c7D5Ac", + "status": "active", + "id": "0xB3b8326C75893632945cA6E4f4Bd76E7a7c7D5Ac", + "links": [ + { + "name": "x", + "url": "https://x.com/BSC_Girl?s=09" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/X21yx11I-hMyMzQ1" + }, + { + "name": "whitepaper", + "url": "https://bscgirl.site/wp-content/uploads/2021/06/BSCGIRL_whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://bscgirl.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/user/Belew101" + }, + { + "name": "facebook", + "url": "https://facebook.com/BSCGIRL.CHAN/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB3b8326C75893632945cA6E4f4Bd76E7a7c7D5Ac/logo.png b/blockchains/smartchain/assets/0xB3b8326C75893632945cA6E4f4Bd76E7a7c7D5Ac/logo.png new file mode 100644 index 00000000..4604b28a Binary files /dev/null and b/blockchains/smartchain/assets/0xB3b8326C75893632945cA6E4f4Bd76E7a7c7D5Ac/logo.png differ diff --git a/blockchains/smartchain/assets/0xB46aCB1f8D0fF6369C2f00146897aeA1dFCf2414/info.json b/blockchains/smartchain/assets/0xB46aCB1f8D0fF6369C2f00146897aeA1dFCf2414/info.json new file mode 100644 index 00000000..c2b40cdd --- /dev/null +++ b/blockchains/smartchain/assets/0xB46aCB1f8D0fF6369C2f00146897aeA1dFCf2414/info.json @@ -0,0 +1,21 @@ +{ + "name": "Andromeda V2", + "type": "BEP20", + "symbol": "M31", + "decimals": 18, + "website": "https://orbitlaunch.io", + "description": "Andromeda M31, we value honesty and transparency. We work hard for our investments and YOUR investments. We also strive to make a lasting impact in decentralized finance.", + "explorer": "https://bscscan.com/token/0xB46aCB1f8D0fF6369C2f00146897aeA1dFCf2414", + "status": "active", + "id": "0xB46aCB1f8D0fF6369C2f00146897aeA1dFCf2414", + "links": [ + { + "name": "telegram", + "url": "https://t.me/orbitlaunchbsc" + }, + { + "name": "x", + "url": "https://x.com/Orbit_crypto_" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB46aCB1f8D0fF6369C2f00146897aeA1dFCf2414/logo.png b/blockchains/smartchain/assets/0xB46aCB1f8D0fF6369C2f00146897aeA1dFCf2414/logo.png new file mode 100644 index 00000000..2d01fabc Binary files /dev/null and b/blockchains/smartchain/assets/0xB46aCB1f8D0fF6369C2f00146897aeA1dFCf2414/logo.png differ diff --git a/blockchains/smartchain/assets/0xB47D8D9CD415DAE40E364b140ae6aF186e2332f4/info.json b/blockchains/smartchain/assets/0xB47D8D9CD415DAE40E364b140ae6aF186e2332f4/info.json new file mode 100644 index 00000000..e862380f --- /dev/null +++ b/blockchains/smartchain/assets/0xB47D8D9CD415DAE40E364b140ae6aF186e2332f4/info.json @@ -0,0 +1,11 @@ +{ + "name": "SwiftMoon", + "type": "BEP20", + "symbol": "SMOON", + "decimals": 18, + "website": "https://swiftmoon.online/", + "description": "Swift Moon combines the Rebasing concept, Auto Liquidity Generation, Deflation and Reflection all in one token on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0xb47d8d9cd415dae40e364b140ae6af186e2332f4", + "status": "active", + "id": "0xB47D8D9CD415DAE40E364b140ae6aF186e2332f4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB47D8D9CD415DAE40E364b140ae6aF186e2332f4/logo.png b/blockchains/smartchain/assets/0xB47D8D9CD415DAE40E364b140ae6aF186e2332f4/logo.png new file mode 100644 index 00000000..8d7602b4 Binary files /dev/null and b/blockchains/smartchain/assets/0xB47D8D9CD415DAE40E364b140ae6aF186e2332f4/logo.png differ diff --git a/blockchains/smartchain/assets/0xB4AA0CD9FACeB466DB69b825DC666EdAF3293d28/info.json b/blockchains/smartchain/assets/0xB4AA0CD9FACeB466DB69b825DC666EdAF3293d28/info.json new file mode 100644 index 00000000..b9cf13e0 --- /dev/null +++ b/blockchains/smartchain/assets/0xB4AA0CD9FACeB466DB69b825DC666EdAF3293d28/info.json @@ -0,0 +1,37 @@ +{ + "name": "Damn Token", + "website": "https://damncool.io/", + "description": "DAMN Connecting the World through Blockchain Innovations.", + "explorer": "https://bscscan.com/token/0xB4AA0CD9FACeB466DB69b825DC666EdAF3293d28", + "type": "BEP20", + "symbol": "DAMN", + "decimals": 18, + "status": "active", + "id": "0xB4AA0CD9FACeB466DB69b825DC666EdAF3293d28", + "links": [ + { + "name": "x", + "url": "https://x.com/_DAMNCool_" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/DAMNCoolOfficial/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/damn-token/" + }, + { + "name": "github", + "url": "https://github.com/damncoolFrank/" + }, + { + "name": "telegram", + "url": "https://t.me/DAMN_Community" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/damn-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB4AA0CD9FACeB466DB69b825DC666EdAF3293d28/logo.png b/blockchains/smartchain/assets/0xB4AA0CD9FACeB466DB69b825DC666EdAF3293d28/logo.png new file mode 100644 index 00000000..9a182f9a Binary files /dev/null and b/blockchains/smartchain/assets/0xB4AA0CD9FACeB466DB69b825DC666EdAF3293d28/logo.png differ diff --git a/blockchains/smartchain/assets/0xB547607EAE3B10d94B211DA84A3B51BFa545774d/info.json b/blockchains/smartchain/assets/0xB547607EAE3B10d94B211DA84A3B51BFa545774d/info.json new file mode 100644 index 00000000..520cf01e --- /dev/null +++ b/blockchains/smartchain/assets/0xB547607EAE3B10d94B211DA84A3B51BFa545774d/info.json @@ -0,0 +1,37 @@ +{ + "name": "Doge Raca", + "type": "BEP20", + "symbol": "DoCa", + "decimals": 9, + "website": "https://dogeraca.com/", + "description": "DOCA is the BEST MEMECOIN. Unique features to shill to the MARS: Memecoin - DeFi - GameFi - Metaverse", + "explorer": "https://bscscan.com/token/0xB547607EAE3B10d94B211DA84A3B51BFa545774d", + "status": "active", + "id": "0xB547607EAE3B10d94B211DA84A3B51BFa545774d", + "links": [ + { + "name": "x", + "url": "https://x.com/dogeraca" + }, + { + "name": "github", + "url": "https://github.com/dogeraca" + }, + { + "name": "telegram", + "url": "https://t.me/DogeRaca_Chat" + }, + { + "name": "telegram_news", + "url": "https://t.me/dogeraca" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/doge-raca" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/doge-raca/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB547607EAE3B10d94B211DA84A3B51BFa545774d/logo.png b/blockchains/smartchain/assets/0xB547607EAE3B10d94B211DA84A3B51BFa545774d/logo.png new file mode 100644 index 00000000..057899d0 Binary files /dev/null and b/blockchains/smartchain/assets/0xB547607EAE3B10d94B211DA84A3B51BFa545774d/logo.png differ diff --git a/blockchains/smartchain/assets/0xB5791d504367dEE4BA3A379fb3d3d5A6B955cb2e/info.json b/blockchains/smartchain/assets/0xB5791d504367dEE4BA3A379fb3d3d5A6B955cb2e/info.json new file mode 100644 index 00000000..cc0c8c66 --- /dev/null +++ b/blockchains/smartchain/assets/0xB5791d504367dEE4BA3A379fb3d3d5A6B955cb2e/info.json @@ -0,0 +1,11 @@ +{ + "name": "The Luxury Coin", + "type": "BEP20", + "symbol": "TLB", + "decimals": 18, + "description": "Utility token to increase adoption of cryptocurrency.", + "website": "https://theluxurybank.com", + "explorer": "https://bscscan.com/token/0xb5791d504367dee4ba3a379fb3d3d5a6b955cb2e", + "status": "active", + "id": "0xB5791d504367dEE4BA3A379fb3d3d5A6B955cb2e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB5791d504367dEE4BA3A379fb3d3d5A6B955cb2e/logo.png b/blockchains/smartchain/assets/0xB5791d504367dEE4BA3A379fb3d3d5A6B955cb2e/logo.png new file mode 100644 index 00000000..5bfc7404 Binary files /dev/null and b/blockchains/smartchain/assets/0xB5791d504367dEE4BA3A379fb3d3d5A6B955cb2e/logo.png differ diff --git a/blockchains/smartchain/assets/0xB583961E033Dfe0FfF161952f7BA21c411b6103d/info.json b/blockchains/smartchain/assets/0xB583961E033Dfe0FfF161952f7BA21c411b6103d/info.json new file mode 100644 index 00000000..888c547e --- /dev/null +++ b/blockchains/smartchain/assets/0xB583961E033Dfe0FfF161952f7BA21c411b6103d/info.json @@ -0,0 +1,62 @@ +{ + "name": "YOUWHO", + "type": "BEP20", + "symbol": "YOU", + "decimals": 18, + "website": "https://youwho.io", + "description": "YOUWHO is a Crypto Based On-Demand Services Platform with the main focus of eliminating global unemployment. The YOUWHO platform enables everyone in the world to list their service (eg. maid, doctor, electrician, gardener, dog walker, saturation diver, astrophysicist, etc. whatever skill you possess!) and book and use these same services, effectively offering peer to peer services on a global scale.", + "explorer": "https://bscscan.com/token/0xB583961E033Dfe0FfF161952f7BA21c411b6103d", + "status": "active", + "id": "0xB583961E033Dfe0FfF161952f7BA21c411b6103d", + "links": [ + { + "name": "x", + "url": "https://x.com/you_youwho" + }, + { + "name": "github", + "url": "https://github.com/youwhoyou" + }, + { + "name": "telegram", + "url": "https://t.me/you_youwho" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Sm77UDXdzZ" + }, + { + "name": "whitepaper", + "url": "https://wp.youwho.io" + }, + { + "name": "docs", + "url": "https://deck.youwho.io" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/youwho/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCrHJ4_9G1hVs9oeYBGs7CdQ" + }, + { + "name": "telegram_news", + "url": "https://t.me/you_youwho" + }, + { + "name": "facebook", + "url": "https://facebook.com/youwhouhu" + }, + { + "name": "blog", + "url": "https://why.youwho.io/news" + } + ], + "tags": [ + "governance", + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB583961E033Dfe0FfF161952f7BA21c411b6103d/logo.png b/blockchains/smartchain/assets/0xB583961E033Dfe0FfF161952f7BA21c411b6103d/logo.png new file mode 100644 index 00000000..b93b2864 Binary files /dev/null and b/blockchains/smartchain/assets/0xB583961E033Dfe0FfF161952f7BA21c411b6103d/logo.png differ diff --git a/blockchains/smartchain/assets/0xB5bCF4fAa81457e98f4609a2a3291dF64E246f01/info.json b/blockchains/smartchain/assets/0xB5bCF4fAa81457e98f4609a2a3291dF64E246f01/info.json new file mode 100644 index 00000000..d6650123 --- /dev/null +++ b/blockchains/smartchain/assets/0xB5bCF4fAa81457e98f4609a2a3291dF64E246f01/info.json @@ -0,0 +1,21 @@ +{ + "name": "Parabolic", + "type": "BEP20", + "symbol": "PARA", + "decimals": 9, + "website": "https://parabolictoken.com/", + "description": "Parabolic Token has been carefully designed to achieve a single purpose – GOING PARABOLIC! Our super addictive game and tokenomics will benefit the coin and consistently take it to new heights. Our game will be released in November!", + "explorer": "https://bscscan.com/token/0xB5bCF4fAa81457e98f4609a2a3291dF64E246f01", + "status": "active", + "id": "0xB5bCF4fAa81457e98f4609a2a3291dF64E246f01", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/parabolic/" + }, + { + "name": "telegram", + "url": "https://t.me/ParabolicToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB5bCF4fAa81457e98f4609a2a3291dF64E246f01/logo.png b/blockchains/smartchain/assets/0xB5bCF4fAa81457e98f4609a2a3291dF64E246f01/logo.png new file mode 100644 index 00000000..de791171 Binary files /dev/null and b/blockchains/smartchain/assets/0xB5bCF4fAa81457e98f4609a2a3291dF64E246f01/logo.png differ diff --git a/blockchains/smartchain/assets/0xB64E638E60D154B43f660a6BF8fD8a3b249a6a21/info.json b/blockchains/smartchain/assets/0xB64E638E60D154B43f660a6BF8fD8a3b249a6a21/info.json new file mode 100644 index 00000000..970eb3cf --- /dev/null +++ b/blockchains/smartchain/assets/0xB64E638E60D154B43f660a6BF8fD8a3b249a6a21/info.json @@ -0,0 +1,11 @@ +{ + "name": "WAULTx", + "type": "BEP20", + "symbol": "WAULTx", + "decimals": 18, + "website": "https://wault.finance/", + "description": "Wault Finance is a decentralized finance hub that connects all of the primary DeFi use-cases within one simple ecosystem, on the Binance Smart Chain. In short, an all-in-one DeFi Platform! We’ve built a protocol including 2 tokens – WAULTx and WEX – and some unique features such as: WaultSwap (AMM), Wault Launchpad (new project presales), Wault Locker (liquidity locks for new or established projects), Wault Farms (staking and farming) and many other great services.", + "explorer": "https://bscscan.com/token/0xB64E638E60D154B43f660a6BF8fD8a3b249a6a21", + "status": "active", + "id": "0xB64E638E60D154B43f660a6BF8fD8a3b249a6a21" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB64E638E60D154B43f660a6BF8fD8a3b249a6a21/logo.png b/blockchains/smartchain/assets/0xB64E638E60D154B43f660a6BF8fD8a3b249a6a21/logo.png new file mode 100644 index 00000000..3c3be8cb Binary files /dev/null and b/blockchains/smartchain/assets/0xB64E638E60D154B43f660a6BF8fD8a3b249a6a21/logo.png differ diff --git a/blockchains/smartchain/assets/0xB667bbfE0DcEdae1a53555a0e8B0a14EAf0d5231/info.json b/blockchains/smartchain/assets/0xB667bbfE0DcEdae1a53555a0e8B0a14EAf0d5231/info.json new file mode 100644 index 00000000..eebc0d1d --- /dev/null +++ b/blockchains/smartchain/assets/0xB667bbfE0DcEdae1a53555a0e8B0a14EAf0d5231/info.json @@ -0,0 +1,15 @@ +{ + "name": "SafeComet", + "website": "https://safecometcrypto.com", + "description": "Self generating liquidity token - Reflection paid back to holders.", + "explorer": "https://bscscan.com/token/0xB667bbfE0DcEdae1a53555a0e8B0a14EAf0d5231", + "research": "", + "type": "BEP20", + "symbol": "SAFECOMET", + "decimals": 9, + "status": "active", + "id": "0xB667bbfE0DcEdae1a53555a0e8B0a14EAf0d5231", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB667bbfE0DcEdae1a53555a0e8B0a14EAf0d5231/logo.png b/blockchains/smartchain/assets/0xB667bbfE0DcEdae1a53555a0e8B0a14EAf0d5231/logo.png new file mode 100644 index 00000000..983c5ef1 Binary files /dev/null and b/blockchains/smartchain/assets/0xB667bbfE0DcEdae1a53555a0e8B0a14EAf0d5231/logo.png differ diff --git a/blockchains/smartchain/assets/0xB6D053E260d410eAc02eA28755696F90A8ECca2B/info.json b/blockchains/smartchain/assets/0xB6D053E260d410eAc02eA28755696F90A8ECca2B/info.json new file mode 100644 index 00000000..60b4f9e6 --- /dev/null +++ b/blockchains/smartchain/assets/0xB6D053E260d410eAc02eA28755696F90A8ECca2B/info.json @@ -0,0 +1,11 @@ +{ + "name": "SHIKOKU INU", + "website": "https://shikoku.exchange/", + "description": "SHIKO is a 100% community-driven decentralized utility token offering multiple swap capabilities and investment tools.", + "explorer": "https://bscscan.com/token/0xB6D053E260d410eAc02eA28755696F90A8ECca2B", + "type": "BEP20", + "symbol": "SHIKO", + "decimals": 9, + "status": "active", + "id": "0xB6D053E260d410eAc02eA28755696F90A8ECca2B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB6D053E260d410eAc02eA28755696F90A8ECca2B/logo.png b/blockchains/smartchain/assets/0xB6D053E260d410eAc02eA28755696F90A8ECca2B/logo.png new file mode 100644 index 00000000..b1babcd1 Binary files /dev/null and b/blockchains/smartchain/assets/0xB6D053E260d410eAc02eA28755696F90A8ECca2B/logo.png differ diff --git a/blockchains/smartchain/assets/0xB71aC215670aA57c8ac382547D0a0f0A962a73E5/info.json b/blockchains/smartchain/assets/0xB71aC215670aA57c8ac382547D0a0f0A962a73E5/info.json new file mode 100644 index 00000000..f8cf12fc --- /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 00000000..3dfcaa62 Binary files /dev/null and b/blockchains/smartchain/assets/0xB71aC215670aA57c8ac382547D0a0f0A962a73E5/logo.png differ diff --git a/blockchains/smartchain/assets/0xB723F6dCE74BbdE8f19ac882e539C1C53fDb888B/info.json b/blockchains/smartchain/assets/0xB723F6dCE74BbdE8f19ac882e539C1C53fDb888B/info.json new file mode 100644 index 00000000..840a3f49 --- /dev/null +++ b/blockchains/smartchain/assets/0xB723F6dCE74BbdE8f19ac882e539C1C53fDb888B/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEG Wrapped ADA", + "symbol": "fADA", + "type": "BEP20", + "decimals": 18, + "description": "FEG Wrapped ADA", + "website": "https://fegtoken.com", + "explorer": "https://bscscan.com/token/0xb723f6dce74bbde8f19ac882e539c1c53fdb888b", + "status": "active", + "id": "0xB723F6dCE74BbdE8f19ac882e539C1C53fDb888B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB723F6dCE74BbdE8f19ac882e539C1C53fDb888B/logo.png b/blockchains/smartchain/assets/0xB723F6dCE74BbdE8f19ac882e539C1C53fDb888B/logo.png new file mode 100644 index 00000000..379f1b3d Binary files /dev/null and b/blockchains/smartchain/assets/0xB723F6dCE74BbdE8f19ac882e539C1C53fDb888B/logo.png differ diff --git a/blockchains/smartchain/assets/0xB72842D6F5feDf91D22d56202802Bb9A79C6322E/info.json b/blockchains/smartchain/assets/0xB72842D6F5feDf91D22d56202802Bb9A79C6322E/info.json new file mode 100644 index 00000000..2c08687d --- /dev/null +++ b/blockchains/smartchain/assets/0xB72842D6F5feDf91D22d56202802Bb9A79C6322E/info.json @@ -0,0 +1,11 @@ +{ + "name": "MOchi MArket", + "symbol": "MOMA", + "type": "BEP20", + "decimals": 18, + "description": "The multi-chain decentralized exchange ecosystem for non-fungible tokens", + "website": "https://mochi.market", + "explorer": "https://bscscan.com/token/0xB72842D6F5feDf91D22d56202802Bb9A79C6322E", + "status": "active", + "id": "0xB72842D6F5feDf91D22d56202802Bb9A79C6322E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB72842D6F5feDf91D22d56202802Bb9A79C6322E/logo.png b/blockchains/smartchain/assets/0xB72842D6F5feDf91D22d56202802Bb9A79C6322E/logo.png new file mode 100644 index 00000000..18286489 Binary files /dev/null and b/blockchains/smartchain/assets/0xB72842D6F5feDf91D22d56202802Bb9A79C6322E/logo.png differ diff --git a/blockchains/smartchain/assets/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5/info.json b/blockchains/smartchain/assets/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5/info.json new file mode 100644 index 00000000..36dc9bd4 --- /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 00000000..a92c4598 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 new file mode 100644 index 00000000..5e55eaab --- /dev/null +++ b/blockchains/smartchain/assets/0xB7DAcf54a54bFea818F21472d3E71a89287841A7/info.json @@ -0,0 +1,28 @@ +{ + "name": "WealthSecrets", + "website": "https://www.wealthsecrets.io", + "description": "We allow access to different odds slips, sell likely winnable odds, P2P betting and the creation of your bet event with our WSC token.", + "explorer": "https://bscscan.com/token/0xB7DAcf54a54bFea818F21472d3E71a89287841A7", + "type": "BEP20", + "symbol": "WSC", + "decimals": 18, + "status": "active", + "id": "0xB7DAcf54a54bFea818F21472d3E71a89287841A7", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/wealthsecretsofficial" + }, + { + "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 diff --git a/blockchains/smartchain/assets/0xB7DAcf54a54bFea818F21472d3E71a89287841A7/logo.png b/blockchains/smartchain/assets/0xB7DAcf54a54bFea818F21472d3E71a89287841A7/logo.png new file mode 100644 index 00000000..2faa03d0 Binary files /dev/null and b/blockchains/smartchain/assets/0xB7DAcf54a54bFea818F21472d3E71a89287841A7/logo.png differ diff --git a/blockchains/smartchain/assets/0xB7Dba4C673beDB174DC3Ff7Ec65d17C863d39b16/info.json b/blockchains/smartchain/assets/0xB7Dba4C673beDB174DC3Ff7Ec65d17C863d39b16/info.json new file mode 100644 index 00000000..4bfa7c2d --- /dev/null +++ b/blockchains/smartchain/assets/0xB7Dba4C673beDB174DC3Ff7Ec65d17C863d39b16/info.json @@ -0,0 +1,41 @@ +{ + "name": "FatCake", + "type": "BEP20", + "symbol": "FATCAKE", + "decimals": 18, + "website": "https://www.fatecosystem.com", + "description": "Fat Cake Token is your investment position into F.A.T.E. (Financial Assets & Tokenized Ecosystem). Holders of the token become investors into the business and earn dividends from the profits of the ecosystem. Gaming, Social Media, Payment Processing, OmniDex, Launchpad, and much more.", + "explorer": "https://bscscan.com/token/0xB7Dba4C673beDB174DC3Ff7Ec65d17C863d39b16", + "status": "active", + "id": "0xB7Dba4C673beDB174DC3Ff7Ec65d17C863d39b16", + "links": [ + { + "name": "x", + "url": "https://x.com/FatCakeToken" + }, + { + "name": "github", + "url": "https://github.com/FreezyEx/FATCAKE" + }, + { + "name": "telegram", + "url": "https://t.me/fatecosystem" + }, + { + "name": "whitepaper", + "url": "https://ba1eeeb9-8780-4702-a175-a98ed2b9ba07.filesusr.com/ugd/8b9157_cab43e21359e45a7b90d1b6507ffea6d.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fatcake/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fatcake" + }, + { + "name": "discord", + "url": "https://discord.com/vVHgkbY5" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB7Dba4C673beDB174DC3Ff7Ec65d17C863d39b16/logo.png b/blockchains/smartchain/assets/0xB7Dba4C673beDB174DC3Ff7Ec65d17C863d39b16/logo.png new file mode 100644 index 00000000..f5a39134 Binary files /dev/null and b/blockchains/smartchain/assets/0xB7Dba4C673beDB174DC3Ff7Ec65d17C863d39b16/logo.png differ diff --git a/blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/info.json b/blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/info.json new file mode 100644 index 00000000..df2df06f --- /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/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/logo.png b/blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/logo.png new file mode 100644 index 00000000..abd32439 Binary files /dev/null and b/blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/logo.png differ diff --git a/blockchains/smartchain/assets/0xB7FeEAb5ea787e83a40f185237C717597363E0d6/info.json b/blockchains/smartchain/assets/0xB7FeEAb5ea787e83a40f185237C717597363E0d6/info.json new file mode 100644 index 00000000..19a1200e --- /dev/null +++ b/blockchains/smartchain/assets/0xB7FeEAb5ea787e83a40f185237C717597363E0d6/info.json @@ -0,0 +1,25 @@ +{ + "name": "Xenon Play", + "type": "BEP20", + "symbol": "XPLAY", + "decimals": 18, + "website": "https://xenonpay.org", + "description": "Introducing Xenon Play (XPLAY) Xenon Play functions as the official Xenon Reward that can be generated from the Xenon Machine after activating the reward mechanism by inserting Xenon Liquidity Tokens or Xenon Pay Tokens. You can also use Xenon Play in the upcoming Xenon Pay Gaming Series such as Xenon Kart: Crypto Edition or Xenon Play: Minigames. Both games will have a Play To Earn game mode. The total currency supply of Xenon Play exists out of 500,000,000 XPLAY.", + "explorer": "https://bscscan.com/token/0xB7FeEAb5ea787e83a40f185237C717597363E0d6", + "status": "active", + "id": "0xB7FeEAb5ea787e83a40f185237C717597363E0d6", + "links": [ + { + "name": "x", + "url": "https://x.com/PayX2P" + }, + { + "name": "whitepaper", + "url": "https://assets.website-files.com/610aef4e2da61c281db06172/6116c6bdb929435fbc897923_Whitepaper_X2P_Official.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/xenonpaycommunity" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB7FeEAb5ea787e83a40f185237C717597363E0d6/logo.png b/blockchains/smartchain/assets/0xB7FeEAb5ea787e83a40f185237C717597363E0d6/logo.png new file mode 100644 index 00000000..96db4bac Binary files /dev/null and b/blockchains/smartchain/assets/0xB7FeEAb5ea787e83a40f185237C717597363E0d6/logo.png differ diff --git a/blockchains/smartchain/assets/0xB7d9905eDf8B7B093E3C74af8d6982D0F3d37762/info.json b/blockchains/smartchain/assets/0xB7d9905eDf8B7B093E3C74af8d6982D0F3d37762/info.json new file mode 100644 index 00000000..f72bdc66 --- /dev/null +++ b/blockchains/smartchain/assets/0xB7d9905eDf8B7B093E3C74af8d6982D0F3d37762/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ngnt", + "type": "BEP20", + "symbol": "NGNT", + "decimals": 2, + "website": "https://ngnt.org/", + "description": "-", + "explorer": "https://bscscan.com/token/0xB7d9905eDf8B7B093E3C74af8d6982D0F3d37762", + "status": "active", + "id": "0xB7d9905eDf8B7B093E3C74af8d6982D0F3d37762" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB7d9905eDf8B7B093E3C74af8d6982D0F3d37762/logo.png b/blockchains/smartchain/assets/0xB7d9905eDf8B7B093E3C74af8d6982D0F3d37762/logo.png new file mode 100644 index 00000000..b3b8d79c Binary files /dev/null and b/blockchains/smartchain/assets/0xB7d9905eDf8B7B093E3C74af8d6982D0F3d37762/logo.png differ diff --git a/blockchains/smartchain/assets/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14/info.json b/blockchains/smartchain/assets/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14/info.json new file mode 100644 index 00000000..c6efeec5 --- /dev/null +++ b/blockchains/smartchain/assets/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14/info.json @@ -0,0 +1,32 @@ +{ + "name": "Square Token", + "type": "BEP20", + "symbol": "SQUA", + "decimals": 18, + "website": "https://squaretoken.org", + "description": "The token SQUARE is a token developed exclusively for payment of fees within the Goarbit ecosystem - being automatically burned at the time of fee payment, making it a deflationary and utility token.", + "explorer": "https://bscscan.com/token/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14", + "status": "active", + "id": "0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14", + "links": [ + { + "name": "x", + "url": "https://x.com/tokensquare" + }, + { + "name": "telegram", + "url": "https://t.me/officialsquaretoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/square-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/square-token" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14/logo.png b/blockchains/smartchain/assets/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14/logo.png new file mode 100644 index 00000000..6e47bf3c Binary files /dev/null and b/blockchains/smartchain/assets/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14/logo.png differ diff --git a/blockchains/smartchain/assets/0xB84cBbF09b3Ed388a45cD875ebba41a20365e6e7/info.json b/blockchains/smartchain/assets/0xB84cBbF09b3Ed388a45cD875ebba41a20365e6e7/info.json new file mode 100644 index 00000000..97f910de --- /dev/null +++ b/blockchains/smartchain/assets/0xB84cBbF09b3Ed388a45cD875ebba41a20365e6e7/info.json @@ -0,0 +1,21 @@ +{ + "name": "BitShiba", + "website": "https://www.bitshiba.io/", + "description": "The Shiba Inu Killer on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0xb84cbbf09b3ed388a45cd875ebba41a20365e6e7", + "type": "BEP20", + "symbol": "SHIBA", + "decimals": 18, + "status": "active", + "id": "0xB84cBbF09b3Ed388a45cD875ebba41a20365e6e7", + "links": [ + { + "name": "x", + "url": "https://x.com/BitShibaToken" + }, + { + "name": "telegram", + "url": "https://t.me/Bitshibatoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB84cBbF09b3Ed388a45cD875ebba41a20365e6e7/logo.png b/blockchains/smartchain/assets/0xB84cBbF09b3Ed388a45cD875ebba41a20365e6e7/logo.png new file mode 100644 index 00000000..19377c8c Binary files /dev/null and b/blockchains/smartchain/assets/0xB84cBbF09b3Ed388a45cD875ebba41a20365e6e7/logo.png differ diff --git a/blockchains/smartchain/assets/0xB89ADD4A17eaDB084a065f9CAcE752a268dab8b3/info.json b/blockchains/smartchain/assets/0xB89ADD4A17eaDB084a065f9CAcE752a268dab8b3/info.json new file mode 100644 index 00000000..d1e20141 --- /dev/null +++ b/blockchains/smartchain/assets/0xB89ADD4A17eaDB084a065f9CAcE752a268dab8b3/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZETBNB", + "type": "BEP20", + "symbol": "ZETBNB", + "decimals": 0, + "website": "https://zetbnb.finance/", + "description": "$ZETBNB is Multi Purpose Project | Auto-generate Advertisment , liquidity , DeFi , and NFT aircraft Market | project built on Binance Smart Chain #BSC", + "explorer": "https://bscscan.com/token/0xB89ADD4A17eaDB084a065f9CAcE752a268dab8b3", + "status": "active", + "id": "0xB89ADD4A17eaDB084a065f9CAcE752a268dab8b3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB89ADD4A17eaDB084a065f9CAcE752a268dab8b3/logo.png b/blockchains/smartchain/assets/0xB89ADD4A17eaDB084a065f9CAcE752a268dab8b3/logo.png new file mode 100644 index 00000000..7c644bfb Binary files /dev/null and b/blockchains/smartchain/assets/0xB89ADD4A17eaDB084a065f9CAcE752a268dab8b3/logo.png differ diff --git a/blockchains/smartchain/assets/0xB8c463c727742A1Fa673d36aE32cB5f4bad33FeA/info.json b/blockchains/smartchain/assets/0xB8c463c727742A1Fa673d36aE32cB5f4bad33FeA/info.json new file mode 100644 index 00000000..88a6a1d9 --- /dev/null +++ b/blockchains/smartchain/assets/0xB8c463c727742A1Fa673d36aE32cB5f4bad33FeA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Smart Chain Black", + "website": "https://smartchainblack.com", + "description": "BNBB is Binance Smart Chain Token", + "explorer": "https://bscscan.com/token/0xB8c463c727742A1Fa673d36aE32cB5f4bad33FeA", + "symbol": "BNBB", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xB8c463c727742A1Fa673d36aE32cB5f4bad33FeA" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB8c463c727742A1Fa673d36aE32cB5f4bad33FeA/logo.png b/blockchains/smartchain/assets/0xB8c463c727742A1Fa673d36aE32cB5f4bad33FeA/logo.png new file mode 100644 index 00000000..397458f4 Binary files /dev/null and b/blockchains/smartchain/assets/0xB8c463c727742A1Fa673d36aE32cB5f4bad33FeA/logo.png differ diff --git a/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/info.json b/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/info.json new file mode 100644 index 00000000..7d57d003 --- /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 00000000..11b60376 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 00000000..236dc957 --- /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 00000000..b887c399 Binary files /dev/null and b/blockchains/smartchain/assets/0xB96D0f29a0aC9AF4a32835e90EC6531389765089/logo.png differ diff --git a/blockchains/smartchain/assets/0xB99172949554E6C10c28c880eC0306d2A9d5C753/info.json b/blockchains/smartchain/assets/0xB99172949554E6C10c28c880eC0306d2A9d5C753/info.json new file mode 100644 index 00000000..61d6b7de --- /dev/null +++ b/blockchains/smartchain/assets/0xB99172949554E6C10c28c880eC0306d2A9d5C753/info.json @@ -0,0 +1,11 @@ +{ + "name": "LunaDoge", + "type": "BEP20", + "symbol": "LOGE", + "decimals": 9, + "website": "https://lunadoge.finance/", + "description": "LunaDoge is the first ethical mememoin. LunaDoge is 100% transparent. LunaDoge is community-driven and used a fair launch to distribute tokens. All team tokens and LP tokens have been locked. Holders earn passive rewards through static reflection, as they watch their balance of $LOGE grow exponentially", + "explorer": "https://bscscan.com/token/0xb99172949554e6c10c28c880ec0306d2a9d5c753", + "status": "active", + "id": "0xB99172949554E6C10c28c880eC0306d2A9d5C753" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB99172949554E6C10c28c880eC0306d2A9d5C753/logo.png b/blockchains/smartchain/assets/0xB99172949554E6C10c28c880eC0306d2A9d5C753/logo.png new file mode 100644 index 00000000..a8efb6e8 Binary files /dev/null and b/blockchains/smartchain/assets/0xB99172949554E6C10c28c880eC0306d2A9d5C753/logo.png differ diff --git a/blockchains/smartchain/assets/0xB9F0f69EC5D6E95F793DAe134001E326Df7e22C1/info.json b/blockchains/smartchain/assets/0xB9F0f69EC5D6E95F793DAe134001E326Df7e22C1/info.json new file mode 100644 index 00000000..be31f834 --- /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 new file mode 100644 index 00000000..6726f816 --- /dev/null +++ b/blockchains/smartchain/assets/0xB9F41715D64e85C0d78bC4ed6857ef54Cd5B2737/info.json @@ -0,0 +1,21 @@ +{ + "name": "ART COIN", + "type": "BEP20", + "symbol": "ARTC", + "decimals": 18, + "website": "https://smartuse.art/", + "description": "ARTC is the smartest way to be involved with crypto. ART COIN brings everything under one format for utility of your crypto.", + "explorer": "https://bscscan.com/token/0xB9F41715D64e85C0d78bC4ed6857ef54Cd5B2737", + "status": "active", + "id": "0xB9F41715D64e85C0d78bC4ed6857ef54Cd5B2737", + "links": [ + { + "name": "x", + "url": "https://x.com/artccoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/ART-COIN-100248662370343/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB9F41715D64e85C0d78bC4ed6857ef54Cd5B2737/logo.png b/blockchains/smartchain/assets/0xB9F41715D64e85C0d78bC4ed6857ef54Cd5B2737/logo.png new file mode 100644 index 00000000..38964d8d Binary files /dev/null and b/blockchains/smartchain/assets/0xB9F41715D64e85C0d78bC4ed6857ef54Cd5B2737/logo.png differ diff --git a/blockchains/smartchain/assets/0xB9d35811424600fa9E8cD62A0471fBd025131cb8/info.json b/blockchains/smartchain/assets/0xB9d35811424600fa9E8cD62A0471fBd025131cb8/info.json new file mode 100644 index 00000000..dc56aa7a --- /dev/null +++ b/blockchains/smartchain/assets/0xB9d35811424600fa9E8cD62A0471fBd025131cb8/info.json @@ -0,0 +1,36 @@ +{ + "name": "YES WORLD", + "type": "BEP20", + "symbol": "YES", + "decimals": 18, + "website": "https://yesworld.io", + "description": "An Asset-based token with aim to reduce carbon emissions using several utilities for the token.", + "explorer": "https://bscscan.com/token/0xb9d35811424600fa9e8cd62a0471fbd025131cb8", + "status": "active", + "id": "0xB9d35811424600fa9E8cD62A0471fBd025131cb8", + "links": [ + { + "name": "x", + "url": "https://x.com/yesworld24" + }, + { + "name": "github", + "url": "https://github.com/yesworld24" + }, + { + "name": "telegram", + "url": "https://t.me/yesworld24" + }, + { + "name": "youtube", + "url": "https://youtube.com/yesworld24" + }, + { + "name": "whitepaper", + "url": "https://yesworld.io/YesWorld-Whitepaper.pdf" + } + ], + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB9d35811424600fa9E8cD62A0471fBd025131cb8/logo.png b/blockchains/smartchain/assets/0xB9d35811424600fa9E8cD62A0471fBd025131cb8/logo.png new file mode 100644 index 00000000..99909fe6 Binary files /dev/null and b/blockchains/smartchain/assets/0xB9d35811424600fa9E8cD62A0471fBd025131cb8/logo.png differ diff --git a/blockchains/smartchain/assets/0xBA0aEe6868CAf469b6EA99fdc13877b81f8b9440/info.json b/blockchains/smartchain/assets/0xBA0aEe6868CAf469b6EA99fdc13877b81f8b9440/info.json new file mode 100644 index 00000000..13008cac --- /dev/null +++ b/blockchains/smartchain/assets/0xBA0aEe6868CAf469b6EA99fdc13877b81f8b9440/info.json @@ -0,0 +1,11 @@ +{ + "name": "Spider Swap", + "type": "BEP20", + "symbol": "SPIDER", + "decimals": 18, + "website": "https://www.spiderswap.in", + "description": "Spider is more then just a community token.", + "explorer": "https://bscscan.com/token/0xBA0aEe6868CAf469b6EA99fdc13877b81f8b9440", + "status": "active", + "id": "0xBA0aEe6868CAf469b6EA99fdc13877b81f8b9440" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBA0aEe6868CAf469b6EA99fdc13877b81f8b9440/logo.png b/blockchains/smartchain/assets/0xBA0aEe6868CAf469b6EA99fdc13877b81f8b9440/logo.png new file mode 100644 index 00000000..baeefa17 Binary files /dev/null and b/blockchains/smartchain/assets/0xBA0aEe6868CAf469b6EA99fdc13877b81f8b9440/logo.png differ diff --git a/blockchains/smartchain/assets/0xBA26397cdFF25F0D26E815d218Ef3C77609ae7f1/info.json b/blockchains/smartchain/assets/0xBA26397cdFF25F0D26E815d218Ef3C77609ae7f1/info.json new file mode 100644 index 00000000..b7aff484 --- /dev/null +++ b/blockchains/smartchain/assets/0xBA26397cdFF25F0D26E815d218Ef3C77609ae7f1/info.json @@ -0,0 +1,12 @@ +{ + "name": "LYPTUS Token", + "website": "https://koaladefi.finance/", + "description": "High yields BSC farm brought by the Koalas. Earn LYPTUS through yield, then stake it in Pools to earn more tokens! Security first on Koala DeFi.", + "explorer": "https://bscscan.com/token/0xba26397cdff25f0d26e815d218ef3c77609ae7f1", + "research": "https://research.binance.com/", + "type": "BEP20", + "symbol": "LYPTUS", + "decimals": 18, + "status": "active", + "id": "0xBA26397cdFF25F0D26E815d218Ef3C77609ae7f1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBA26397cdFF25F0D26E815d218Ef3C77609ae7f1/logo.png b/blockchains/smartchain/assets/0xBA26397cdFF25F0D26E815d218Ef3C77609ae7f1/logo.png new file mode 100644 index 00000000..318d53e0 Binary files /dev/null and b/blockchains/smartchain/assets/0xBA26397cdFF25F0D26E815d218Ef3C77609ae7f1/logo.png differ diff --git a/blockchains/smartchain/assets/0xBA96731324dE188ebC1eD87ca74544dDEbC07D7f/info.json b/blockchains/smartchain/assets/0xBA96731324dE188ebC1eD87ca74544dDEbC07D7f/info.json new file mode 100644 index 00000000..5d9fab72 --- /dev/null +++ b/blockchains/smartchain/assets/0xBA96731324dE188ebC1eD87ca74544dDEbC07D7f/info.json @@ -0,0 +1,33 @@ +{ + "name": "Titano", + "website": "https://titano.finance", + "description": "Titano Finance is transforming DeFi with the Titano Autostaking Protocol (TAP) that delivers the industry’s highest fixed APY, rebasing rewards every 30 minutes, and a simple buy-hold-earn system that grows your portfolio in your wallet, fast", + "explorer": "https://bscscan.com/token/0xBA96731324dE188ebC1eD87ca74544dDEbC07D7f", + "type": "BEP20", + "symbol": "TITANO", + "decimals": 18, + "status": "active", + "id": "0xBA96731324dE188ebC1eD87ca74544dDEbC07D7f", + "links": [ + { + "name": "x", + "url": "https://x.com/TitanoFinance" + }, + { + "name": "github", + "url": "https://github.com/Titano-finance" + }, + { + "name": "telegram", + "url": "https://t.me/titano_finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/titano" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/titano/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBA96731324dE188ebC1eD87ca74544dDEbC07D7f/logo.png b/blockchains/smartchain/assets/0xBA96731324dE188ebC1eD87ca74544dDEbC07D7f/logo.png new file mode 100644 index 00000000..b2885492 Binary files /dev/null and b/blockchains/smartchain/assets/0xBA96731324dE188ebC1eD87ca74544dDEbC07D7f/logo.png differ diff --git a/blockchains/smartchain/assets/0xBB1106c7dEb7cC60EfA51391760b14aEd8CB5BEd/info.json b/blockchains/smartchain/assets/0xBB1106c7dEb7cC60EfA51391760b14aEd8CB5BEd/info.json new file mode 100644 index 00000000..561dbf71 --- /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 00000000..53645537 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 new file mode 100644 index 00000000..b94d8e18 --- /dev/null +++ b/blockchains/smartchain/assets/0xBB994E80E2eDc45dCe9065bda73ADc7E9337b64F/info.json @@ -0,0 +1,37 @@ +{ + "name": "Only 1 Token", + "website": "https://only1token.com", + "description": "O1T is a single BEP20 token shared by its holders", + "explorer": "https://bscscan.com/token/0xBB994E80E2eDc45dCe9065bda73ADc7E9337b64F", + "type": "BEP20", + "symbol": "O1T", + "decimals": 18, + "status": "active", + "id": "0xBB994E80E2eDc45dCe9065bda73ADc7E9337b64F", + "links": [ + { + "name": "telegram", + "url": "https://t.me/only1token" + }, + { + "name": "x", + "url": "https://x.com/OnlyOneToken" + }, + { + "name": "medium", + "url": "https://only1token.medium.com" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/Only1Token" + }, + { + "name": "whitepaper", + "url": "https://only1token.medium.com/o1t-lightpaper-8729898a392e" + }, + { + "name": "facebook", + "url": "https://facebook.com/only1token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBB994E80E2eDc45dCe9065bda73ADc7E9337b64F/logo.png b/blockchains/smartchain/assets/0xBB994E80E2eDc45dCe9065bda73ADc7E9337b64F/logo.png new file mode 100644 index 00000000..cb85fcf6 Binary files /dev/null and b/blockchains/smartchain/assets/0xBB994E80E2eDc45dCe9065bda73ADc7E9337b64F/logo.png differ diff --git a/blockchains/smartchain/assets/0xBBFFA24cCF2d4D9e9737B1BA4A25A5EFFA71451E/info.json b/blockchains/smartchain/assets/0xBBFFA24cCF2d4D9e9737B1BA4A25A5EFFA71451E/info.json new file mode 100644 index 00000000..b7d452be --- /dev/null +++ b/blockchains/smartchain/assets/0xBBFFA24cCF2d4D9e9737B1BA4A25A5EFFA71451E/info.json @@ -0,0 +1,25 @@ +{ + "name": "Tech Earnbd", + "type": "BEP20", + "symbol": "BDT", + "decimals": 18, + "website": "http://techearnbd.info", + "description": "Tech Earnbd is a platform currency representing value and wealth in the decentralized economy used for the exchange of values between BDT!", + "explorer": "https://bscscan.com/token/0xbbffa24ccf2d4d9e9737b1ba4a25a5effa71451e", + "status": "active", + "id": "0xBBFFA24cCF2d4D9e9737B1BA4A25A5EFFA71451E", + "links": [ + { + "name": "github", + "url": "https://github.com/Techearnbdt" + }, + { + "name": "x", + "url": "https://x.com/Techearnbdt" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/Techearnbd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBBFFA24cCF2d4D9e9737B1BA4A25A5EFFA71451E/logo.png b/blockchains/smartchain/assets/0xBBFFA24cCF2d4D9e9737B1BA4A25A5EFFA71451E/logo.png new file mode 100644 index 00000000..eda4485b Binary files /dev/null and b/blockchains/smartchain/assets/0xBBFFA24cCF2d4D9e9737B1BA4A25A5EFFA71451E/logo.png differ diff --git a/blockchains/smartchain/assets/0xBBdFebA7DDCcF88a96eA43909bA70feF54fe7777/info.json b/blockchains/smartchain/assets/0xBBdFebA7DDCcF88a96eA43909bA70feF54fe7777/info.json new file mode 100644 index 00000000..3e7ce22b --- /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 new file mode 100644 index 00000000..5cd9b731 --- /dev/null +++ b/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/info.json @@ -0,0 +1,40 @@ +{ + "name": "Safe Energy", + "type": "BEP20", + "symbol": "EnergyX", + "decimals": 8, + "website": "https://safeenergyx.io", + "description": "Safe Energy, or $ENERGYX is a community-driven deflationary token (cryptocurrency), with future projects to reduce our carbon footprint by making renewable energy sources more accessible.", + "explorer": "https://bscscan.com/token/0xBBe899c61198D1826a43e20ea19efC46E50c2B00", + "status": "active", + "id": "0xBBe899c61198D1826a43e20ea19efC46E50c2B00", + "links": [ + { + "name": "x", + "url": "https://x.com/OfficialEnergyX" + }, + { + "name": "telegram", + "url": "https://t.me/OfficialSafeEnergyX" + }, + { + "name": "whitepaper", + "url": "https://safeenergyx.io/whitepaper.html" + }, + { + "name": "facebook", + "url": "https://facebook.com/SafeEnergyX" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/safe-energy/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/safe-energy" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/logo.png b/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/logo.png new file mode 100644 index 00000000..423279da Binary files /dev/null and b/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/logo.png differ diff --git a/blockchains/smartchain/assets/0xBC12aD556581ff7162E595E5956F5F3845FDB38c/info.json b/blockchains/smartchain/assets/0xBC12aD556581ff7162E595E5956F5F3845FDB38c/info.json new file mode 100644 index 00000000..3a3b6de5 --- /dev/null +++ b/blockchains/smartchain/assets/0xBC12aD556581ff7162E595E5956F5F3845FDB38c/info.json @@ -0,0 +1,21 @@ +{ + "name": "Helicopter Finance", + "type": "BEP20", + "symbol": "COPTER", + "decimals": 9, + "website": "https://helicopterfinance.co/", + "description": "Helicopter Finance is Auto-liquidity token forked off Safemoon. USP of stimulus packages where major coins will be airdropped to holders - charity utility TBA.", + "explorer": "https://bscscan.com/token/0xBC12aD556581ff7162E595E5956F5F3845FDB38c", + "status": "active", + "id": "0xBC12aD556581ff7162E595E5956F5F3845FDB38c", + "links": [ + { + "name": "x", + "url": "https://x.com/Helicoptercorp" + }, + { + "name": "telegram", + "url": "https://t.me/helicopter_finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBC12aD556581ff7162E595E5956F5F3845FDB38c/logo.png b/blockchains/smartchain/assets/0xBC12aD556581ff7162E595E5956F5F3845FDB38c/logo.png new file mode 100644 index 00000000..fac6624f Binary files /dev/null and b/blockchains/smartchain/assets/0xBC12aD556581ff7162E595E5956F5F3845FDB38c/logo.png differ diff --git a/blockchains/smartchain/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json b/blockchains/smartchain/assets/0xBC7170a1280Be28513B4e940C681537EB25e39f4/info.json new file mode 100644 index 00000000..8d7fe39d --- /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 00000000..a3d18c9a 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 new file mode 100644 index 00000000..84679e6e --- /dev/null +++ b/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json @@ -0,0 +1,45 @@ +{ + "name": "iDeFiYieldProtocol", + "type": "BEP20", + "symbol": "iDYP", + "decimals": 18, + "website": "https://www.dypius.com/", + "description": "iDYP is part of the Dypius dual token economy and is used as a component of smart contract strategies related to staking, analytical tools, NFTs, and metaverse.", + "explorer": "https://bscscan.com/token/0xBD100d061E120b2c67A24453CF6368E63f1Be056", + "status": "active", + "id": "0xBD100d061E120b2c67A24453CF6368E63f1Be056", + "links": [ + { + "name": "x", + "url": "https://x.com/dypfinance" + }, + { + "name": "github", + "url": "https://github.com/dypfinance/" + }, + { + "name": "medium", + "url": "https://dypfinance.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/idefiyieldprotocol/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/idefiyieldprotocol" + }, + { + "name": "discord", + "url": "https://discord.com/invite/dypcaws" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/drive/folders/1PprliiDlNB6Cx-35eaEun-gmjk0-a1O4" + } + ], + "tags": [ + "governance", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png b/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png new file mode 100644 index 00000000..68ecfe32 Binary files /dev/null and b/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png differ diff --git a/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/info.json b/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/info.json new file mode 100644 index 00000000..c719f183 --- /dev/null +++ b/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/info.json @@ -0,0 +1,21 @@ +{ + "name": "AI Token", + "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 00000000..dfb8d424 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 00000000..8188c1d8 --- /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 00000000..70061094 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 new file mode 100644 index 00000000..baa5bae7 --- /dev/null +++ b/blockchains/smartchain/assets/0xBDAC5C8bc3FF38083437bB712D55b668F44F6DF1/info.json @@ -0,0 +1,25 @@ +{ + "name": "Simargl Token", + "website": "https://simar.gl", + "description": "Simargl Token is going to be a cross-chain DeFi with auto trading capabilities.", + "explorer": "https://bscscan.com/token/0xBDAC5C8bc3FF38083437bB712D55b668F44F6DF1", + "type": "BEP20", + "symbol": "SIMA", + "decimals": 9, + "status": "active", + "id": "0xBDAC5C8bc3FF38083437bB712D55b668F44F6DF1", + "links": [ + { + "name": "github", + "url": "https://github.com/SimarglToken/" + }, + { + "name": "x", + "url": "https://x.com/SimarglToken" + }, + { + "name": "telegram", + "url": "https://t.me/SimarglToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBDAC5C8bc3FF38083437bB712D55b668F44F6DF1/logo.png b/blockchains/smartchain/assets/0xBDAC5C8bc3FF38083437bB712D55b668F44F6DF1/logo.png new file mode 100644 index 00000000..6ac12c1f Binary files /dev/null and b/blockchains/smartchain/assets/0xBDAC5C8bc3FF38083437bB712D55b668F44F6DF1/logo.png differ diff --git a/blockchains/smartchain/assets/0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673/info.json b/blockchains/smartchain/assets/0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673/info.json new file mode 100644 index 00000000..556abfe5 --- /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 00000000..1e9ff4a3 Binary files /dev/null and b/blockchains/smartchain/assets/0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673/logo.png differ diff --git a/blockchains/smartchain/assets/0xBE2a26889CE30a1515055a192797083B1FDe8844/info.json b/blockchains/smartchain/assets/0xBE2a26889CE30a1515055a192797083B1FDe8844/info.json new file mode 100644 index 00000000..7cee8501 --- /dev/null +++ b/blockchains/smartchain/assets/0xBE2a26889CE30a1515055a192797083B1FDe8844/info.json @@ -0,0 +1,11 @@ +{ + "name": "STRIKE", + "website": "https://www.strikecoin.co/", + "description": "StrikeCoin is a ground-breaking frictionless liquidity protocol with limitless potential. With straight forward transparent Tokenomics StrikeCoin allows for a fair and high yield investment for all Holders. The real-world use and scalability of StrikeCoin is our main driver. Future integration to the equities, crypto and NFT trading markets will open further opportunities and allow StrikeCoin to grow in both use and value for years to come.", + "explorer": "https://bscscan.com/token/0xbe2a26889ce30a1515055a192797083b1fde8844", + "type": "BEP20", + "symbol": "STRIKE", + "decimals": 3, + "status": "active", + "id": "0xBE2a26889CE30a1515055a192797083B1FDe8844" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBE2a26889CE30a1515055a192797083B1FDe8844/logo.png b/blockchains/smartchain/assets/0xBE2a26889CE30a1515055a192797083B1FDe8844/logo.png new file mode 100644 index 00000000..9f19ddf8 Binary files /dev/null and b/blockchains/smartchain/assets/0xBE2a26889CE30a1515055a192797083B1FDe8844/logo.png differ diff --git a/blockchains/smartchain/assets/0xBE82F76637DBA2C114C41Df856c2C51e522E2Cb8/info.json b/blockchains/smartchain/assets/0xBE82F76637DBA2C114C41Df856c2C51e522E2Cb8/info.json new file mode 100644 index 00000000..a7ec5549 --- /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 00000000..5d52eb31 Binary files /dev/null and b/blockchains/smartchain/assets/0xBE82F76637DBA2C114C41Df856c2C51e522E2Cb8/logo.png differ diff --git a/blockchains/smartchain/assets/0xBE878cffB39A347A70809b5D98B65Dd85De2e37B/info.json b/blockchains/smartchain/assets/0xBE878cffB39A347A70809b5D98B65Dd85De2e37B/info.json new file mode 100644 index 00000000..78d91cf6 --- /dev/null +++ b/blockchains/smartchain/assets/0xBE878cffB39A347A70809b5D98B65Dd85De2e37B/info.json @@ -0,0 +1,11 @@ +{ + "name": "NewBTC", + "website": "https://www.newbtc.one/", + "description": "NBTC is a new version of Bitcoin that solves all issues of traditional Bitcoin and adds unique features to it. It is based on Binance Smart Chain technology which is faster, cheaper, and environment-friendly for daily use.", + "explorer": "https://bscscan.com/token/0xbe878cffb39a347a70809b5d98b65dd85de2e37b", + "type": "BEP20", + "symbol": "NBTC", + "decimals": 9, + "status": "active", + "id": "0xBE878cffB39A347A70809b5D98B65Dd85De2e37B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBE878cffB39A347A70809b5D98B65Dd85De2e37B/logo.png b/blockchains/smartchain/assets/0xBE878cffB39A347A70809b5D98B65Dd85De2e37B/logo.png new file mode 100644 index 00000000..77ee5330 Binary files /dev/null and b/blockchains/smartchain/assets/0xBE878cffB39A347A70809b5D98B65Dd85De2e37B/logo.png differ diff --git a/blockchains/smartchain/assets/0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4/info.json b/blockchains/smartchain/assets/0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4/info.json new file mode 100644 index 00000000..227eaa8b --- /dev/null +++ b/blockchains/smartchain/assets/0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4/info.json @@ -0,0 +1,41 @@ +{ + "name": "Million", + "website": "https://milliontoken.org", + "description": "Million is a digital currency with 1,000,000 total supply. https://milliontoken.org", + "explorer": "https://bscscan.com/token/0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4", + "type": "BEP20", + "symbol": "MM", + "decimals": 18, + "status": "active", + "id": "0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/million" + }, + { + "name": "telegram", + "url": "https://t.me/millionjacuzzibar" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/milliontoken/" + }, + { + "name": "x", + "url": "https://x.com/Million__Token" + }, + { + "name": "facebook", + "url": "https://facebook.com/groups/milliontoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/million/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/million" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4/logo.png b/blockchains/smartchain/assets/0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4/logo.png new file mode 100644 index 00000000..20b89158 Binary files /dev/null and b/blockchains/smartchain/assets/0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4/logo.png differ diff --git a/blockchains/smartchain/assets/0xBFBAD3694417e7F272afF380fC56F8A4aB86eC5f/info.json b/blockchains/smartchain/assets/0xBFBAD3694417e7F272afF380fC56F8A4aB86eC5f/info.json new file mode 100644 index 00000000..277c9460 --- /dev/null +++ b/blockchains/smartchain/assets/0xBFBAD3694417e7F272afF380fC56F8A4aB86eC5f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mad Bull", + "website": "https://madbull.xyz", + "description": "Mad Bull is a giveaway, meme based, community centered crypto token launched on the Binance Smart Chain directly giving back to our holders.", + "explorer": "https://bscscan.com/token/0xBFBAD3694417e7F272afF380fC56F8A4aB86eC5f", + "type": "BEP20", + "symbol": "MBULL", + "decimals": 9, + "status": "active", + "id": "0xBFBAD3694417e7F272afF380fC56F8A4aB86eC5f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBFBAD3694417e7F272afF380fC56F8A4aB86eC5f/logo.png b/blockchains/smartchain/assets/0xBFBAD3694417e7F272afF380fC56F8A4aB86eC5f/logo.png new file mode 100644 index 00000000..639e3f82 Binary files /dev/null and b/blockchains/smartchain/assets/0xBFBAD3694417e7F272afF380fC56F8A4aB86eC5f/logo.png differ diff --git a/blockchains/smartchain/assets/0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D/info.json b/blockchains/smartchain/assets/0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D/info.json new file mode 100644 index 00000000..d11239ba --- /dev/null +++ b/blockchains/smartchain/assets/0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D/info.json @@ -0,0 +1,41 @@ +{ + "name": "Navcoin", + "website": "https://navcoin.org", + "description": "Navcoin is a cutting edge privacy coin governed by a community driven DAO fund with the ability to wrap coins for use in the DEFI universe. All backed by the eco-friendly proof-of-stake mining model.", + "explorer": "https://bscscan.com/token/0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D", + "research": "https://navcoin.org/en/project-activity/", + "type": "BEP20", + "symbol": "WNAV", + "decimals": 8, + "status": "active", + "id": "0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D", + "tags": [ + "privacy" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/NAVCoin" + }, + { + "name": "x", + "url": "https://x.com/Navcoin" + }, + { + "name": "telegram", + "url": "https://t.me/navcoin" + }, + { + "name": "discord", + "url": "https://discord.com/invite/y4Vu9jw" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/NavCoin/" + }, + { + "name": "medium", + "url": "https://medium.com/nav-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D/logo.png b/blockchains/smartchain/assets/0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D/logo.png new file mode 100644 index 00000000..903acb34 Binary files /dev/null and b/blockchains/smartchain/assets/0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D/logo.png differ diff --git a/blockchains/smartchain/assets/0xBa007b6170C602C08545ff97395677408688D3a2/info.json b/blockchains/smartchain/assets/0xBa007b6170C602C08545ff97395677408688D3a2/info.json new file mode 100644 index 00000000..13f29413 --- /dev/null +++ b/blockchains/smartchain/assets/0xBa007b6170C602C08545ff97395677408688D3a2/info.json @@ -0,0 +1,40 @@ +{ + "name": "MetaPlanet", + "type": "BEP20", + "symbol": "MPL", + "decimals": 9, + "website": "https://www.metaplanetofficial.com", + "description": "MetaPlanet is an Ultimate Defi + Gamefi Ecosystem. Its mission is to develop a full suite of professional defi applications and gamefi sector play to reward crypto investors and help them profit from the industry's growth. Metaplanet's platform gives customers access to the same types of institutional crypto tools used by the world's leading financial services provider and dozens of other well-known worldwide businesses. The benefits of these tools include timeline accuracy and a significant depth of crypto market data.", + "explorer": "https://bscscan.com/token/0xBa007b6170C602C08545ff97395677408688D3a2", + "status": "active", + "id": "0xBa007b6170C602C08545ff97395677408688D3a2", + "links": [ + { + "name": "x", + "url": "https://x.com/METAPLANETBSC" + }, + { + "name": "telegram", + "url": "https://t.me/MetaPlanetOfficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCR3oaKMppnBEFmmI0Ov40fg" + }, + { + "name": "whitepaper", + "url": "https://metaplanetofficial.com/Whitepaper-Metaplanet.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/metaplanet" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metaplanet" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBa007b6170C602C08545ff97395677408688D3a2/logo.png b/blockchains/smartchain/assets/0xBa007b6170C602C08545ff97395677408688D3a2/logo.png new file mode 100644 index 00000000..88b3e513 Binary files /dev/null and b/blockchains/smartchain/assets/0xBa007b6170C602C08545ff97395677408688D3a2/logo.png differ diff --git a/blockchains/smartchain/assets/0xBa07EED3d09055d60CAEf2bDfCa1c05792f2dFad/info.json b/blockchains/smartchain/assets/0xBa07EED3d09055d60CAEf2bDfCa1c05792f2dFad/info.json new file mode 100644 index 00000000..738fa007 --- /dev/null +++ b/blockchains/smartchain/assets/0xBa07EED3d09055d60CAEf2bDfCa1c05792f2dFad/info.json @@ -0,0 +1,11 @@ +{ + "name": "MiniDOGE", + "type": "BEP20", + "symbol": "MiniDOGE", + "decimals": 9, + "website": "https://minidoge.finance", + "description": "The World's first Auto-Boost, Hyper Deflationary Coin is here! Every sell gives members more with the auto-boost and hyper deflation system in place. ", + "explorer": "https://bscscan.com/token/0xBa07EED3d09055d60CAEf2bDfCa1c05792f2dFad", + "status": "active", + "id": "0xBa07EED3d09055d60CAEf2bDfCa1c05792f2dFad" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBa07EED3d09055d60CAEf2bDfCa1c05792f2dFad/logo.png b/blockchains/smartchain/assets/0xBa07EED3d09055d60CAEf2bDfCa1c05792f2dFad/logo.png new file mode 100644 index 00000000..f21484c4 Binary files /dev/null and b/blockchains/smartchain/assets/0xBa07EED3d09055d60CAEf2bDfCa1c05792f2dFad/logo.png differ diff --git a/blockchains/smartchain/assets/0xBa7d871B6705d75580aB383dBEf577DB61020159/info.json b/blockchains/smartchain/assets/0xBa7d871B6705d75580aB383dBEf577DB61020159/info.json new file mode 100644 index 00000000..2e15b98a --- /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 00000000..09d12b6c 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 00000000..60ce4ebf --- /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 00000000..ce572a3b Binary files /dev/null and b/blockchains/smartchain/assets/0xBaC2588D2272fF6E5826E2882042Fa2926039CBa/logo.png differ diff --git a/blockchains/smartchain/assets/0xBaCbF768795C50FC5E877830A127276741651D0a/info.json b/blockchains/smartchain/assets/0xBaCbF768795C50FC5E877830A127276741651D0a/info.json new file mode 100644 index 00000000..9c8fe701 --- /dev/null +++ b/blockchains/smartchain/assets/0xBaCbF768795C50FC5E877830A127276741651D0a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fire Token", + "type": "BEP20", + "symbol": "FIRE", + "decimals": 18, + "description": "Fire Token is a deflationary BEP-20 that uses the reflection model to benefit holders and guarantee the project longevity. What makes Fire Token different from the rest of the BEP-20 is that it has a built-in mechanism to guarantee funding for growth.", + "website": "https://firetoken.xyz/", + "explorer": "https://bscscan.com/token/0xbacbf768795c50fc5e877830a127276741651d0a", + "status": "active", + "id": "0xBaCbF768795C50FC5E877830A127276741651D0a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBaCbF768795C50FC5E877830A127276741651D0a/logo.png b/blockchains/smartchain/assets/0xBaCbF768795C50FC5E877830A127276741651D0a/logo.png new file mode 100644 index 00000000..e8edfdde Binary files /dev/null and b/blockchains/smartchain/assets/0xBaCbF768795C50FC5E877830A127276741651D0a/logo.png differ diff --git a/blockchains/smartchain/assets/0xBb238FcE6E2eE90781cD160C9C6eAf3a4CfAD801/info.json b/blockchains/smartchain/assets/0xBb238FcE6E2eE90781cD160C9C6eAf3a4CfAD801/info.json new file mode 100644 index 00000000..6b89a4c6 --- /dev/null +++ b/blockchains/smartchain/assets/0xBb238FcE6E2eE90781cD160C9C6eAf3a4CfAD801/info.json @@ -0,0 +1,33 @@ +{ + "name": "BAGEL", + "symbol": "BAGEL", + "type": "BEP20", + "decimals": 18, + "description": "BAGEL is the native governance token of Bagels Finance. Token holders can deposit their BAGEL into Boardroom smart contract and join Bagels DAO governance. In the Boardroom, when making key decisions regarding the future roadmap, product and op-erations of Bagels, like interest rate, crypto value ratio, liquidation penalty rates, etc, BAGEL holders can vote for their preferable proposals. ", + "website": "https://app.bagels.finance", + "explorer": "https://bscscan.com/token/0xBb238FcE6E2eE90781cD160C9C6eAf3a4CfAD801", + "status": "active", + "id": "0xBb238FcE6E2eE90781cD160C9C6eAf3a4CfAD801", + "links": [ + { + "name": "github", + "url": "https://github.com/bagels-dev" + }, + { + "name": "x", + "url": "https://x.com/BagelsFinance" + }, + { + "name": "telegram", + "url": "https://t.me/bagelsfinance" + }, + { + "name": "medium", + "url": "https://bagelsfinance.medium.com" + }, + { + "name": "whitepaper", + "url": "https://scigroup2018.gitbook.io/bagels-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBb238FcE6E2eE90781cD160C9C6eAf3a4CfAD801/logo.png b/blockchains/smartchain/assets/0xBb238FcE6E2eE90781cD160C9C6eAf3a4CfAD801/logo.png new file mode 100644 index 00000000..4058363f Binary files /dev/null and b/blockchains/smartchain/assets/0xBb238FcE6E2eE90781cD160C9C6eAf3a4CfAD801/logo.png differ diff --git a/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/info.json b/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/info.json new file mode 100644 index 00000000..f9882b69 --- /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 00000000..242f44fd 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 new file mode 100644 index 00000000..c5e61dee --- /dev/null +++ b/blockchains/smartchain/assets/0xBb2FA5B2D19209f4Cf50cF745Efc32641A7c9fb1/info.json @@ -0,0 +1,33 @@ +{ + "name": "Hakuna Matata", + "website": "https://hakunamatatatoken.com", + "description": "A token based on the Binance Smart Chain. With an NFT marketplace, play to earn gaming, charity donations, manual buy back, token burns and a perk of choosing your reflections in BUSD or HKUN token.", + "explorer": "https://bscscan.com/token/0xBb2FA5B2D19209f4Cf50cF745Efc32641A7c9fb1", + "type": "BEP20", + "symbol": "HKUN", + "decimals": 9, + "status": "active", + "id": "0xBb2FA5B2D19209f4Cf50cF745Efc32641A7c9fb1", + "links": [ + { + "name": "x", + "url": "https://x.com/HKUNtoken" + }, + { + "name": "telegram", + "url": "https://t.me/HKUNtoken" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC-UUoGWO_MCcPusXptzCmkA" + }, + { + "name": "whitepaper", + "url": "https://hakunamatatatoken.com/wp-content/uploads/2021/09/HakunaMatata_Whitepaper_v1.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hakunamatata-new" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBb2FA5B2D19209f4Cf50cF745Efc32641A7c9fb1/logo.png b/blockchains/smartchain/assets/0xBb2FA5B2D19209f4Cf50cF745Efc32641A7c9fb1/logo.png new file mode 100644 index 00000000..107b1bc9 Binary files /dev/null and b/blockchains/smartchain/assets/0xBb2FA5B2D19209f4Cf50cF745Efc32641A7c9fb1/logo.png differ diff --git a/blockchains/smartchain/assets/0xBb44Fbeb1bCA7E032D34005791d1b99DfEE187A9/info.json b/blockchains/smartchain/assets/0xBb44Fbeb1bCA7E032D34005791d1b99DfEE187A9/info.json new file mode 100644 index 00000000..31d76edc --- /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 00000000..4d97ef89 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 new file mode 100644 index 00000000..157ab808 --- /dev/null +++ b/blockchains/smartchain/assets/0xBb46693eBbEa1aC2070E59B4D043b47e2e095f86/info.json @@ -0,0 +1,25 @@ +{ + "name": "BFG Token", + "website": "https://betfury.io/", + "description": "BFG is the internal token of BetFury platform launched on BSC.", + "explorer": "https://bscscan.com/token/0xbb46693ebbea1ac2070e59b4d043b47e2e095f86", + "type": "BEP20", + "symbol": "BFG", + "decimals": 18, + "status": "active", + "id": "0xBb46693eBbEa1aC2070E59B4D043b47e2e095f86", + "links": [ + { + "name": "x", + "url": "https://x.com/betfury_gaming" + }, + { + "name": "telegram", + "url": "https://t.me/betfuryofficialchannel" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCTlThuhFNg6yFw8hak4upDw" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBb46693eBbEa1aC2070E59B4D043b47e2e095f86/logo.png b/blockchains/smartchain/assets/0xBb46693eBbEa1aC2070E59B4D043b47e2e095f86/logo.png new file mode 100644 index 00000000..b18ef642 Binary files /dev/null and b/blockchains/smartchain/assets/0xBb46693eBbEa1aC2070E59B4D043b47e2e095f86/logo.png differ diff --git a/blockchains/smartchain/assets/0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26/info.json b/blockchains/smartchain/assets/0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26/info.json new file mode 100644 index 00000000..f08a5570 --- /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 00000000..5b61215f 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 new file mode 100644 index 00000000..f890b3a2 --- /dev/null +++ b/blockchains/smartchain/assets/0xBbcF57177D8752B21d080bf30a06CE20aD6333F8/info.json @@ -0,0 +1,28 @@ +{ + "name": "Zamzam", + "type": "BEP20", + "symbol": "ZAM", + "decimals": 18, + "website": "https://zam.io/", + "description": "Zam.io is aiming to build a hybrid on-chain CeFi&DeFi Ecosystem that bridges real-world capital to blockchain and accelerates the transition to the new DEconomy.", + "explorer": "https://bscscan.com/token/0xBbcF57177D8752B21d080bf30a06CE20aD6333F8", + "status": "active", + "id": "0xBbcF57177D8752B21d080bf30a06CE20aD6333F8", + "links": [ + { + "name": "x", + "url": "https://x.com/zam_io" + }, + { + "name": "telegram", + "url": "https://t.me/zam_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zamio/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBbcF57177D8752B21d080bf30a06CE20aD6333F8/logo.png b/blockchains/smartchain/assets/0xBbcF57177D8752B21d080bf30a06CE20aD6333F8/logo.png new file mode 100644 index 00000000..8e5e88c4 Binary files /dev/null and b/blockchains/smartchain/assets/0xBbcF57177D8752B21d080bf30a06CE20aD6333F8/logo.png differ diff --git a/blockchains/smartchain/assets/0xBc7d6B50616989655AfD682fb42743507003056D/info.json b/blockchains/smartchain/assets/0xBc7d6B50616989655AfD682fb42743507003056D/info.json new file mode 100644 index 00000000..323b4251 --- /dev/null +++ b/blockchains/smartchain/assets/0xBc7d6B50616989655AfD682fb42743507003056D/info.json @@ -0,0 +1,36 @@ +{ + "name": "Alchemy", + "type": "BEP20", + "symbol": "ACH", + "decimals": 8, + "website": "https://www.alchemytech.io/index.html", + "description": "Alchemy is the pioneer of Hybrid Crypto-Fiat Gateway that is bridging the gap between the fiat and crypto economies - driving crypto adoption by making payments, blockchain solutions and DeFI services readily available to everyone.", + "explorer": "https://bscscan.com/token/0xBc7d6B50616989655AfD682fb42743507003056D", + "status": "active", + "id": "0xBc7d6B50616989655AfD682fb42743507003056D", + "links": [ + { + "name": "x", + "url": "https://x.com/AlchemyPay" + }, + { + "name": "github", + "url": "https://github.com/Alchemy-GPS/ERC20Token/blob/master/ACH.sol" + }, + { + "name": "telegram", + "url": "https://t.me/Alchemy_Notice" + }, + { + "name": "telegram_news", + "url": "https://t.me/alchemy_official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/zh/currencies/alchemy-pay/" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBc7d6B50616989655AfD682fb42743507003056D/logo.png b/blockchains/smartchain/assets/0xBc7d6B50616989655AfD682fb42743507003056D/logo.png new file mode 100644 index 00000000..33b4cabe Binary files /dev/null and b/blockchains/smartchain/assets/0xBc7d6B50616989655AfD682fb42743507003056D/logo.png differ diff --git a/blockchains/smartchain/assets/0xBca703C64f616A17b4f2763F34f93400Dbe20F17/info.json b/blockchains/smartchain/assets/0xBca703C64f616A17b4f2763F34f93400Dbe20F17/info.json new file mode 100644 index 00000000..5eb19ce4 --- /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 00000000..7b80defb 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 new file mode 100644 index 00000000..7f7095a1 --- /dev/null +++ b/blockchains/smartchain/assets/0xBd65a197408230247F05247A71D1A9Aea9Db0C3c/info.json @@ -0,0 +1,29 @@ +{ + "name": "POLKADOG", + "type": "BEP20", + "symbol": "EINSTEIN", + "decimals": 18, + "website": "https://polkadog.io", + "description": "EINSTEIN is back from the future! Einstein is an innovative NFT and fair DeFi project that provides frictionless token both flexible and functional, available on multiple DEXs to provide optimum choice and benefits a plenty. With daily prizes through our NFT lottery, and incredible Tokenomics rewards whether you are holding, selling or yield farming, follow our memorable mascot EINSTEIN – he’s leading the charge towards the good times!", + "explorer": "https://bscscan.com/token/0xBd65a197408230247F05247A71D1A9Aea9Db0C3c", + "status": "active", + "id": "0xBd65a197408230247F05247A71D1A9Aea9Db0C3c", + "links": [ + { + "name": "x", + "url": "https://x.com/_EINSTEINISBACK" + }, + { + "name": "telegram", + "url": "https://t.me/polkadog_io_official" + }, + { + "name": "medium", + "url": "https://medium.com/@EINSTEINISBACK" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Polkadog_Official/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBd65a197408230247F05247A71D1A9Aea9Db0C3c/logo.png b/blockchains/smartchain/assets/0xBd65a197408230247F05247A71D1A9Aea9Db0C3c/logo.png new file mode 100644 index 00000000..1d17fadc Binary files /dev/null and b/blockchains/smartchain/assets/0xBd65a197408230247F05247A71D1A9Aea9Db0C3c/logo.png differ diff --git a/blockchains/smartchain/assets/0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639/info.json b/blockchains/smartchain/assets/0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639/info.json new file mode 100644 index 00000000..b1e7508a --- /dev/null +++ b/blockchains/smartchain/assets/0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639/info.json @@ -0,0 +1,21 @@ +{ + "name": "EDU Coin", + "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 00000000..db4bc4a2 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 00000000..83336234 --- /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 00000000..fc7f2223 Binary files /dev/null and b/blockchains/smartchain/assets/0xBe1a001FE942f96Eea22bA08783140B9Dcc09D28/logo.png differ diff --git a/blockchains/smartchain/assets/0xBe4092e90DA0b5F3Fbb395BE20bB344DE964E3De/info.json b/blockchains/smartchain/assets/0xBe4092e90DA0b5F3Fbb395BE20bB344DE964E3De/info.json new file mode 100644 index 00000000..928b9a2d --- /dev/null +++ b/blockchains/smartchain/assets/0xBe4092e90DA0b5F3Fbb395BE20bB344DE964E3De/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sephiroth Inu", + "type": "BEP20", + "symbol": "SEPHI", + "decimals": 9, + "website": "https://www.sephirothinu.com", + "description": "SephirothInu is a Charity Token that aims to help less fortunate animals.", + "explorer": "https://bscscan.com/token/0xBe4092e90DA0b5F3Fbb395BE20bB344DE964E3De", + "status": "active", + "id": "0xBe4092e90DA0b5F3Fbb395BE20bB344DE964E3De" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBe4092e90DA0b5F3Fbb395BE20bB344DE964E3De/logo.png b/blockchains/smartchain/assets/0xBe4092e90DA0b5F3Fbb395BE20bB344DE964E3De/logo.png new file mode 100644 index 00000000..4d4a8ad4 Binary files /dev/null and b/blockchains/smartchain/assets/0xBe4092e90DA0b5F3Fbb395BE20bB344DE964E3De/logo.png differ diff --git a/blockchains/smartchain/assets/0xBe4628d7E02e9257875149FA4981C400a01A49A3/info.json b/blockchains/smartchain/assets/0xBe4628d7E02e9257875149FA4981C400a01A49A3/info.json new file mode 100644 index 00000000..df2734a2 --- /dev/null +++ b/blockchains/smartchain/assets/0xBe4628d7E02e9257875149FA4981C400a01A49A3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Jail Doge", + "website": "https://jaildoge.net", + "description": "Jail Doge is a deflationary DeFi token that takes a 9% tax from each buy and sell. This tax acts to benefit the project as a whole by putting 3% in the liquidity pool for a stable price floor, 3% proportionally reflected back to all holders of a JAILDOGE token and 3% added to a marketing wallet to make sure that the project is able to succeed in the long term.", + "explorer": "https://bscscan.com/token/0xBe4628d7E02e9257875149FA4981C400a01A49A3", + "type": "BEP20", + "symbol": "JAILDOGE", + "decimals": 9, + "status": "active", + "id": "0xBe4628d7E02e9257875149FA4981C400a01A49A3", + "links": [ + { + "name": "x", + "url": "https://x.com/jaildoge" + }, + { + "name": "telegram", + "url": "https://t.me/jaildoge" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBe4628d7E02e9257875149FA4981C400a01A49A3/logo.png b/blockchains/smartchain/assets/0xBe4628d7E02e9257875149FA4981C400a01A49A3/logo.png new file mode 100644 index 00000000..e33064e4 Binary files /dev/null and b/blockchains/smartchain/assets/0xBe4628d7E02e9257875149FA4981C400a01A49A3/logo.png differ diff --git a/blockchains/smartchain/assets/0xBe6dE6b614b079236839404440E3e8867B5d6751/info.json b/blockchains/smartchain/assets/0xBe6dE6b614b079236839404440E3e8867B5d6751/info.json new file mode 100644 index 00000000..d89255e5 --- /dev/null +++ b/blockchains/smartchain/assets/0xBe6dE6b614b079236839404440E3e8867B5d6751/info.json @@ -0,0 +1,41 @@ +{ + "name": "Wolverine", + "type": "BEP20", + "symbol": "WLVR", + "decimals": 9, + "website": "https://wolverineofficial.com/", + "description": "$WLV aims to protect wildlife through our signature token – with benefits to our investors such as minimum taxes, Reflections and consistent marketing to increase the value of $WLV.", + "explorer": "https://bscscan.com/token/0xBe6dE6b614b079236839404440E3e8867B5d6751", + "status": "active", + "id": "0xBe6dE6b614b079236839404440E3e8867B5d6751", + "links": [ + { + "name": "x", + "url": "https://x.com/WolverineBSC" + }, + { + "name": "telegram", + "url": "https://t.me/wolverinebsc" + }, + { + "name": "github", + "url": "https://github.com/WolverineBSC" + }, + { + "name": "whitepaper", + "url": "https://wolverineofficial.com/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wolverine/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wolverine" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xbe6de6b614b079236839404440e3e8867b5d6751#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBe6dE6b614b079236839404440E3e8867B5d6751/logo.png b/blockchains/smartchain/assets/0xBe6dE6b614b079236839404440E3e8867B5d6751/logo.png new file mode 100644 index 00000000..1deb0e0b Binary files /dev/null and b/blockchains/smartchain/assets/0xBe6dE6b614b079236839404440E3e8867B5d6751/logo.png differ diff --git a/blockchains/smartchain/assets/0xBe96fcF736AD906b1821Ef74A0e4e346C74e6221/info.json b/blockchains/smartchain/assets/0xBe96fcF736AD906b1821Ef74A0e4e346C74e6221/info.json new file mode 100644 index 00000000..d0f060a5 --- /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 00000000..67d2e4b0 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 new file mode 100644 index 00000000..5d5d8e6f --- /dev/null +++ b/blockchains/smartchain/assets/0xBea7086c99A85D4b5E6A0494C18B037fDD8eE932/info.json @@ -0,0 +1,31 @@ +{ + "name": "Freedom Reserve", + "type": "BEP20", + "symbol": "bFR", + "decimals": 18, + "website": "https://freedomreserv.eth.link/", + "short_description": "Project to build a zero inflation cryptocurrency for the British Isles.", + "description": "Freedom Reserve is a Project to build a Store of Value and unit of exchange suitable for the people of the British Isles", + "explorer": "https://bscscan.com/token/0xbea7086c99a85d4b5e6a0494c18b037fdd8ee932", + "research": "https://research.binance.com/", + "status": "active", + "id": "0xBea7086c99A85D4b5E6A0494C18B037fDD8eE932", + "links": [ + { + "name": "github", + "url": "https://github.com/Freedom-Reserve" + }, + { + "name": "x", + "url": "https://x.com/@FreedomRsv" + }, + { + "name": "telegram", + "url": "https://t.me/freedomreserve1" + }, + { + "name": "whitepaper", + "url": "https://freedomreserv.eth.link/img/FreedomReserveWhitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBea7086c99A85D4b5E6A0494C18B037fDD8eE932/logo.png b/blockchains/smartchain/assets/0xBea7086c99A85D4b5E6A0494C18B037fDD8eE932/logo.png new file mode 100644 index 00000000..dd92529a Binary files /dev/null and b/blockchains/smartchain/assets/0xBea7086c99A85D4b5E6A0494C18B037fDD8eE932/logo.png differ diff --git a/blockchains/smartchain/assets/0xBf38A8b9cf02223b44f823e15f45219E9978b491/info.json b/blockchains/smartchain/assets/0xBf38A8b9cf02223b44f823e15f45219E9978b491/info.json new file mode 100644 index 00000000..8fd325e8 --- /dev/null +++ b/blockchains/smartchain/assets/0xBf38A8b9cf02223b44f823e15f45219E9978b491/info.json @@ -0,0 +1,28 @@ +{ + "name": "DIVINER", + "type": "BEP20", + "symbol": "DIV", + "decimals": 18, + "website": "https://www.diviner.io", + "description": "We’ve been endeavoring to maintain the fairness of the project by avoiding external funding and keeping self-funding, in order to ensure its long-term significance. We sincerely hold that Diviner will be the cradle of cross-NFT, game, and cross-meta-universe.", + "explorer": "https://bscscan.com/token/0xBf38A8b9cf02223b44f823e15f45219E9978b491", + "status": "active", + "id": "0xBf38A8b9cf02223b44f823e15f45219E9978b491", + "links": [ + { + "name": "x", + "url": "https://x.com/DivinerFi" + }, + { + "name": "telegram", + "url": "https://t.me/Diviner_Games" + }, + { + "name": "docs", + "url": "https://docs.diviner.games/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBf38A8b9cf02223b44f823e15f45219E9978b491/logo.png b/blockchains/smartchain/assets/0xBf38A8b9cf02223b44f823e15f45219E9978b491/logo.png new file mode 100644 index 00000000..b223aed2 Binary files /dev/null and b/blockchains/smartchain/assets/0xBf38A8b9cf02223b44f823e15f45219E9978b491/logo.png differ diff --git a/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/info.json b/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/info.json new file mode 100644 index 00000000..896a85d3 --- /dev/null +++ b/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/info.json @@ -0,0 +1,35 @@ +{ + "name": "BNB pegged 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", + "research": "https://research.binance.com/en/projects/uniswap", + "type": "BEP20", + "symbol": "UNI", + "decimals": 18, + "status": "active", + "id": "0xBf5140A22578168FD562DCcF235E5D43A02ce9B1", + "tags": [ + "binance-peg", + "defi", + "governance" + ], + "links": [ + { + "name": "blog", + "url": "https://uniswap.org/blog/uni/" + }, + { + "name": "x", + "url": "https://x.com/UniswapProtocol" + }, + { + "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/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/logo.png b/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/logo.png new file mode 100644 index 00000000..893ef55c Binary files /dev/null and b/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/logo.png differ diff --git a/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/info.json b/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/info.json new file mode 100644 index 00000000..990120ee --- /dev/null +++ b/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/info.json @@ -0,0 +1,40 @@ +{ + "name": "EverGrow Coin", + "type": "BEP20", + "symbol": "EGC", + "decimals": 9, + "website": "https://evergrowegc.com/", + "description": "EverGrow is a deflationary token designed to become more scarce over time through regular burn. All holders of $EGC will earn an 8% reward from every Buy/Transfer/Sell Transaction in $BUSD", + "explorer": "https://bscscan.com/token/0xC001BBe2B87079294C63EcE98BdD0a88D761434e", + "status": "active", + "id": "0xC001BBe2B87079294C63EcE98BdD0a88D761434e", + "links": [ + { + "name": "telegram", + "url": "https://t.me/evergrowcoin" + }, + { + "name": "x", + "url": "https://x.com/evergrowcoinEGC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/evergrowcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/evergrowcoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/evergrowegc" + }, + { + "name": "discord", + "url": "https://discord.com/invite/evergrow" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/logo.png b/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/logo.png new file mode 100644 index 00000000..4a60835a Binary files /dev/null and b/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/logo.png differ diff --git a/blockchains/smartchain/assets/0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F/info.json b/blockchains/smartchain/assets/0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F/info.json new file mode 100644 index 00000000..c5a573bf --- /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 00000000..d9ef3cb9 Binary files /dev/null and b/blockchains/smartchain/assets/0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F/logo.png differ diff --git a/blockchains/smartchain/assets/0xC0366a104b429f0806BfA98d0008DAA9555b2BEd/info.json b/blockchains/smartchain/assets/0xC0366a104b429f0806BfA98d0008DAA9555b2BEd/info.json new file mode 100644 index 00000000..ff76448a --- /dev/null +++ b/blockchains/smartchain/assets/0xC0366a104b429f0806BfA98d0008DAA9555b2BEd/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeMars", + "type": "BEP20", + "symbol": "SMARS", + "decimals": 9, + "website": "https://safemars.fi", + "description": "The SafeMars Protocol is a community driven, fair launched DeFi Token. Three simple functions occur during each trade: Reflection, LP Acquisition & Burn.", + "explorer": "https://bscscan.com/token/0xC0366a104b429f0806BfA98d0008DAA9555b2BEd", + "status": "active", + "id": "0xC0366a104b429f0806BfA98d0008DAA9555b2BEd" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC0366a104b429f0806BfA98d0008DAA9555b2BEd/logo.png b/blockchains/smartchain/assets/0xC0366a104b429f0806BfA98d0008DAA9555b2BEd/logo.png new file mode 100644 index 00000000..7380e418 Binary files /dev/null and b/blockchains/smartchain/assets/0xC0366a104b429f0806BfA98d0008DAA9555b2BEd/logo.png differ diff --git a/blockchains/smartchain/assets/0xC070C8Ae94977f78d04553D33449DEf944F24254/info.json b/blockchains/smartchain/assets/0xC070C8Ae94977f78d04553D33449DEf944F24254/info.json new file mode 100644 index 00000000..261fa65a --- /dev/null +++ b/blockchains/smartchain/assets/0xC070C8Ae94977f78d04553D33449DEf944F24254/info.json @@ -0,0 +1,11 @@ +{ + "name": "TCGCoin", + "type": "BEP20", + "symbol": "TCGCoin", + "decimals": 9, + "website": "https://www.tcgcoin.tech", + "description": "Buy, Sell, Trade, or use our Trade and Grade service for Pokémon, Yu-Gi-Oh, Magic The Gathering, and other TCG Cards or any Sports Memorabilia and NFT’s through the TCG Trading platform and pay with our own cryptocurrency TCGCoin", + "explorer": "https://bscscan.com/token/0xC070C8Ae94977f78d04553D33449DEf944F24254", + "status": "active", + "id": "0xC070C8Ae94977f78d04553D33449DEf944F24254" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC070C8Ae94977f78d04553D33449DEf944F24254/logo.png b/blockchains/smartchain/assets/0xC070C8Ae94977f78d04553D33449DEf944F24254/logo.png new file mode 100644 index 00000000..ea5f7089 Binary files /dev/null and b/blockchains/smartchain/assets/0xC070C8Ae94977f78d04553D33449DEf944F24254/logo.png differ diff --git a/blockchains/smartchain/assets/0xC07D28F8e9D9b5644676196aFE14af09e1c79AfD/info.json b/blockchains/smartchain/assets/0xC07D28F8e9D9b5644676196aFE14af09e1c79AfD/info.json new file mode 100644 index 00000000..88475ea8 --- /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 00000000..4d7c2e5b Binary files /dev/null and b/blockchains/smartchain/assets/0xC07D28F8e9D9b5644676196aFE14af09e1c79AfD/logo.png differ diff --git a/blockchains/smartchain/assets/0xC0A51ac9d548BdcDe53Fa59448029e41A39FEB20/info.json b/blockchains/smartchain/assets/0xC0A51ac9d548BdcDe53Fa59448029e41A39FEB20/info.json new file mode 100644 index 00000000..1d0019f5 --- /dev/null +++ b/blockchains/smartchain/assets/0xC0A51ac9d548BdcDe53Fa59448029e41A39FEB20/info.json @@ -0,0 +1,11 @@ +{ + "name": "Robonomics Token", + "website": "https://robonomics.network", + "description": "Robonomics Token bridged by Anyswap", + "explorer": "https://bscscan.com/token/0xC0A51ac9d548BdcDe53Fa59448029e41A39FEB20", + "type": "BEP20", + "symbol": "XRT", + "decimals": 9, + "status": "active", + "id": "0xC0A51ac9d548BdcDe53Fa59448029e41A39FEB20" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC0A51ac9d548BdcDe53Fa59448029e41A39FEB20/logo.png b/blockchains/smartchain/assets/0xC0A51ac9d548BdcDe53Fa59448029e41A39FEB20/logo.png new file mode 100644 index 00000000..13f6f27e Binary files /dev/null and b/blockchains/smartchain/assets/0xC0A51ac9d548BdcDe53Fa59448029e41A39FEB20/logo.png differ diff --git a/blockchains/smartchain/assets/0xC0A696BBb66352E5b88624F1d1B8909C34Dc4E4a/info.json b/blockchains/smartchain/assets/0xC0A696BBb66352E5b88624F1d1B8909C34Dc4E4a/info.json new file mode 100644 index 00000000..acee4009 --- /dev/null +++ b/blockchains/smartchain/assets/0xC0A696BBb66352E5b88624F1d1B8909C34Dc4E4a/info.json @@ -0,0 +1,44 @@ +{ + "name": "Secured Ship", + "website": "https://securedship.com/", + "description": "Secured Ship is a P2E Tournament Gaming Project with future implementation of NFT and Marketplace developed on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xC0A696BBb66352E5b88624F1d1B8909C34Dc4E4a", + "type": "BEP20", + "symbol": "SHIP", + "decimals": 9, + "status": "active", + "id": "0xC0A696BBb66352E5b88624F1d1B8909C34Dc4E4a", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/secured-ship/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/secured-ship" + }, + { + "name": "telegram", + "url": "https://t.me/securedship" + }, + { + "name": "telegram_news", + "url": "https://t.me/securedshipannouncement" + }, + { + "name": "x", + "url": "https://x.com/SecuredShip" + }, + { + "name": "discord", + "url": "https://discord.com/invite/YDggVaD5cc" + }, + { + "name": "facebook", + "url": "https://facebook.com/securedship" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC0A696BBb66352E5b88624F1d1B8909C34Dc4E4a/logo.png b/blockchains/smartchain/assets/0xC0A696BBb66352E5b88624F1d1B8909C34Dc4E4a/logo.png new file mode 100644 index 00000000..bbf4fb9e Binary files /dev/null and b/blockchains/smartchain/assets/0xC0A696BBb66352E5b88624F1d1B8909C34Dc4E4a/logo.png differ diff --git a/blockchains/smartchain/assets/0xC0B417e7F83db438631Eb5E096684dd742E5294F/info.json b/blockchains/smartchain/assets/0xC0B417e7F83db438631Eb5E096684dd742E5294F/info.json new file mode 100644 index 00000000..7b9d14b0 --- /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 00000000..f4934d7e Binary files /dev/null and b/blockchains/smartchain/assets/0xC0B417e7F83db438631Eb5E096684dd742E5294F/logo.png differ diff --git a/blockchains/smartchain/assets/0xC0c2150cf0870E2d7aBc7cDe17C20A542faFBB9B/info.json b/blockchains/smartchain/assets/0xC0c2150cf0870E2d7aBc7cDe17C20A542faFBB9B/info.json new file mode 100644 index 00000000..f4a7c038 --- /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 00000000..9eed14f5 Binary files /dev/null and b/blockchains/smartchain/assets/0xC0c2150cf0870E2d7aBc7cDe17C20A542faFBB9B/logo.png differ diff --git a/blockchains/smartchain/assets/0xC13B7a43223BB9Bf4B69BD68Ab20ca1B79d81C75/info.json b/blockchains/smartchain/assets/0xC13B7a43223BB9Bf4B69BD68Ab20ca1B79d81C75/info.json new file mode 100644 index 00000000..72df2e5a --- /dev/null +++ b/blockchains/smartchain/assets/0xC13B7a43223BB9Bf4B69BD68Ab20ca1B79d81C75/info.json @@ -0,0 +1,11 @@ +{ + "name": "Juggernaut DeFi", + "type": "BEP20", + "symbol": "JGN", + "decimals": 18, + "website": "https://jgndefi.com", + "description": "Juggernaut is a complete custom DeFi synthetics suite, governance, and NFT ecosystem + marketplace.", + "explorer": "https://bscscan.com/token/0xC13B7a43223BB9Bf4B69BD68Ab20ca1B79d81C75", + "status": "active", + "id": "0xC13B7a43223BB9Bf4B69BD68Ab20ca1B79d81C75" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC13B7a43223BB9Bf4B69BD68Ab20ca1B79d81C75/logo.png b/blockchains/smartchain/assets/0xC13B7a43223BB9Bf4B69BD68Ab20ca1B79d81C75/logo.png new file mode 100644 index 00000000..43bf1b3e Binary files /dev/null and b/blockchains/smartchain/assets/0xC13B7a43223BB9Bf4B69BD68Ab20ca1B79d81C75/logo.png differ diff --git a/blockchains/smartchain/assets/0xC142ba8ccD36d80C3a001342fb83E4C3d218A873/info.json b/blockchains/smartchain/assets/0xC142ba8ccD36d80C3a001342fb83E4C3d218A873/info.json new file mode 100644 index 00000000..ec89163e --- /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 00000000..6e354498 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 new file mode 100644 index 00000000..c8f67196 --- /dev/null +++ b/blockchains/smartchain/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/info.json @@ -0,0 +1,41 @@ +{ + "name": "Multi-Chain Capital", + "type": "BEP20", + "symbol": "MCC", + "decimals": 9, + "website": "https://mchain.capital", + "description": "You buy on Ethereum and BSC, we farm on multiple chains and return the profits to $MCC holders. ", + "explorer": "https://bscscan.com/token/0xC146B7CdBaff065090077151d391f4c96Aa09e0C", + "status": "active", + "id": "0xC146B7CdBaff065090077151d391f4c96Aa09e0C", + "links": [ + { + "name": "x", + "url": "https://x.com/MulChainCapital" + }, + { + "name": "github", + "url": "https://github.com/mchaindev" + }, + { + "name": "telegram", + "url": "https://t.me/MultiChainCapital" + }, + { + "name": "blog", + "url": "https://multichaincapital.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-chain-capital-new/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/multi-chain-capital" + } + ], + "tags": [ + "defi", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/logo.png b/blockchains/smartchain/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/logo.png new file mode 100644 index 00000000..f160ae9d Binary files /dev/null and b/blockchains/smartchain/assets/0xC146B7CdBaff065090077151d391f4c96Aa09e0C/logo.png differ diff --git a/blockchains/smartchain/assets/0xC14dF1E2fFf3708816495e7364Ff274aCEEcAd91/info.json b/blockchains/smartchain/assets/0xC14dF1E2fFf3708816495e7364Ff274aCEEcAd91/info.json new file mode 100644 index 00000000..f0a2dc9c --- /dev/null +++ b/blockchains/smartchain/assets/0xC14dF1E2fFf3708816495e7364Ff274aCEEcAd91/info.json @@ -0,0 +1,11 @@ +{ + "name": "N1CE Token", + "type": "BEP20", + "symbol": "N1CE", + "decimals": 18, + "website": "https://www.n1ce.community/", + "description": "A community of people who loves cryptocurrencies and blockchain, with a high level of expertise they can share with others", + "explorer": "https://bscscan.com/token/0xc14df1e2fff3708816495e7364ff274aceecad91", + "status": "active", + "id": "0xC14dF1E2fFf3708816495e7364Ff274aCEEcAd91" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC14dF1E2fFf3708816495e7364Ff274aCEEcAd91/logo.png b/blockchains/smartchain/assets/0xC14dF1E2fFf3708816495e7364Ff274aCEEcAd91/logo.png new file mode 100644 index 00000000..a5e77931 Binary files /dev/null and b/blockchains/smartchain/assets/0xC14dF1E2fFf3708816495e7364Ff274aCEEcAd91/logo.png differ diff --git a/blockchains/smartchain/assets/0xC16f47C4A7eD39372B9a0e3e2016cEDe9b4cB83a/info.json b/blockchains/smartchain/assets/0xC16f47C4A7eD39372B9a0e3e2016cEDe9b4cB83a/info.json new file mode 100644 index 00000000..bc6d47d1 --- /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 00000000..88eb0a6c 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 new file mode 100644 index 00000000..ead44634 --- /dev/null +++ b/blockchains/smartchain/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json @@ -0,0 +1,55 @@ +{ + "name": "EverRise", + "type": "BEP20", + "symbol": "RISE", + "decimals": 18, + "website": "https://www.everrise.com/", + "description": "The Original Buyback Token Powering The EverRise Ecosystem. EverRise token (RISE) is a multi-chain collateralized cryptocurrency that protects both the ecosystem and investors with its innovative buyback and staking protocol.", + "explorer": "https://bscscan.com/token/0xC17c30e98541188614dF99239cABD40280810cA3", + "status": "active", + "id": "0xC17c30e98541188614dF99239cABD40280810cA3", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/everrise/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/everrise" + }, + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png b/blockchains/smartchain/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png new file mode 100644 index 00000000..fb9f7a63 Binary files /dev/null and b/blockchains/smartchain/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png differ diff --git a/blockchains/smartchain/assets/0xC183062db25FC96325485ea369C979CE881Ac0eA/info.json b/blockchains/smartchain/assets/0xC183062db25FC96325485ea369C979CE881Ac0eA/info.json new file mode 100644 index 00000000..9c174520 --- /dev/null +++ b/blockchains/smartchain/assets/0xC183062db25FC96325485ea369C979CE881Ac0eA/info.json @@ -0,0 +1,36 @@ +{ + "name": "ShibElon", + "type": "BEP20", + "symbol": "SHIBELON", + "decimals": 4, + "website": "https://shibelon.net/", + "description": "Shibelon is the future of crypto, born to be best and unleash its wrath on the whole binance smart chain.", + "explorer": "https://bscscan.com/token/0xC183062db25FC96325485ea369C979CE881Ac0eA", + "status": "active", + "id": "0xC183062db25FC96325485ea369C979CE881Ac0eA", + "links": [ + { + "name": "x", + "url": "https://x.com/shibelon_moon" + }, + { + "name": "docs", + "url": "https://secureservercdn.net/160.153.137.99/g0s.991.myftpupload.com/wp-content/uploads/2021/11/WHITEPAPER-SHIBELON-2.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/shibelon_moon" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shibelon" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shibelon" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC183062db25FC96325485ea369C979CE881Ac0eA/logo.png b/blockchains/smartchain/assets/0xC183062db25FC96325485ea369C979CE881Ac0eA/logo.png new file mode 100644 index 00000000..26babd9f Binary files /dev/null and b/blockchains/smartchain/assets/0xC183062db25FC96325485ea369C979CE881Ac0eA/logo.png differ diff --git a/blockchains/smartchain/assets/0xC18994df2Dfd0C2767bB1758bAe83e95762bBea3/info.json b/blockchains/smartchain/assets/0xC18994df2Dfd0C2767bB1758bAe83e95762bBea3/info.json new file mode 100644 index 00000000..57f84f43 --- /dev/null +++ b/blockchains/smartchain/assets/0xC18994df2Dfd0C2767bB1758bAe83e95762bBea3/info.json @@ -0,0 +1,11 @@ +{ + "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 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", + "decimals": 9, + "status": "active", + "id": "0xC18994df2Dfd0C2767bB1758bAe83e95762bBea3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC18994df2Dfd0C2767bB1758bAe83e95762bBea3/logo.png b/blockchains/smartchain/assets/0xC18994df2Dfd0C2767bB1758bAe83e95762bBea3/logo.png new file mode 100644 index 00000000..f5c73626 Binary files /dev/null and b/blockchains/smartchain/assets/0xC18994df2Dfd0C2767bB1758bAe83e95762bBea3/logo.png differ diff --git a/blockchains/smartchain/assets/0xC1999565b29e5FA35A24ecC16A4DCF632FB22D1e/info.json b/blockchains/smartchain/assets/0xC1999565b29e5FA35A24ecC16A4DCF632FB22D1e/info.json new file mode 100644 index 00000000..c3646505 --- /dev/null +++ b/blockchains/smartchain/assets/0xC1999565b29e5FA35A24ecC16A4DCF632FB22D1e/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoCandy", + "type": "BEP20", + "symbol": "SWEETS", + "decimals": 18, + "website": "https://cryptocandy.club/", + "description": "CryptoCandy aims to be the sweetest Community Token on Binance Smart Chain by building gaming ecosystems around it.", + "explorer": "https://bscscan.com/token/0xC1999565b29e5FA35A24ecC16A4DCF632FB22D1e", + "status": "active", + "id": "0xC1999565b29e5FA35A24ecC16A4DCF632FB22D1e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC1999565b29e5FA35A24ecC16A4DCF632FB22D1e/logo.png b/blockchains/smartchain/assets/0xC1999565b29e5FA35A24ecC16A4DCF632FB22D1e/logo.png new file mode 100644 index 00000000..67f7586f Binary files /dev/null and b/blockchains/smartchain/assets/0xC1999565b29e5FA35A24ecC16A4DCF632FB22D1e/logo.png differ diff --git a/blockchains/smartchain/assets/0xC1CD1fc18fE1Ec87A24F2858cAC493CcA86632c6/info.json b/blockchains/smartchain/assets/0xC1CD1fc18fE1Ec87A24F2858cAC493CcA86632c6/info.json new file mode 100644 index 00000000..784ef9f6 --- /dev/null +++ b/blockchains/smartchain/assets/0xC1CD1fc18fE1Ec87A24F2858cAC493CcA86632c6/info.json @@ -0,0 +1,24 @@ +{ + "name": "BB Coin", + "type": "BEP20", + "symbol": "BBC", + "decimals": 18, + "website": "https://bbpay.io", + "description": "BBC is a world class digital asset, with a comprehensive technology that includes digital currency, e-commerce, education platforms cater to its community members, both local and international. World without borders, BBC will be a sought after digital economic platform-running business online seamlessly.", + "explorer": "https://bscscan.com/token/0xC1CD1fc18fE1Ec87A24F2858cAC493CcA86632c6", + "status": "active", + "id": "0xC1CD1fc18fE1Ec87A24F2858cAC493CcA86632c6", + "links": [ + { + "name": "x", + "url": "https://x.com/BigboysCoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/Bigboyscoin" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC1CD1fc18fE1Ec87A24F2858cAC493CcA86632c6/logo.png b/blockchains/smartchain/assets/0xC1CD1fc18fE1Ec87A24F2858cAC493CcA86632c6/logo.png new file mode 100644 index 00000000..d767131d Binary files /dev/null and b/blockchains/smartchain/assets/0xC1CD1fc18fE1Ec87A24F2858cAC493CcA86632c6/logo.png differ diff --git a/blockchains/smartchain/assets/0xC1DcB8D805Cf51a5DacC9FA36c28bf2c8D1492B4/info.json b/blockchains/smartchain/assets/0xC1DcB8D805Cf51a5DacC9FA36c28bf2c8D1492B4/info.json new file mode 100644 index 00000000..4ed9c865 --- /dev/null +++ b/blockchains/smartchain/assets/0xC1DcB8D805Cf51a5DacC9FA36c28bf2c8D1492B4/info.json @@ -0,0 +1,11 @@ +{ + "name": "HUSH COIN", + "type": "BEP20", + "symbol": "HUSH", + "decimals": 9, + "website": "https://www.hushcoin.me/", + "description": "Hush Coin ($HUSH) was specifically created with the ambitious goal to “change the way you engage”.", + "explorer": "https://bscscan.com/token/0xC1DcB8D805Cf51a5DacC9FA36c28bf2c8D1492B4", + "status": "active", + "id": "0xC1DcB8D805Cf51a5DacC9FA36c28bf2c8D1492B4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC1DcB8D805Cf51a5DacC9FA36c28bf2c8D1492B4/logo.png b/blockchains/smartchain/assets/0xC1DcB8D805Cf51a5DacC9FA36c28bf2c8D1492B4/logo.png new file mode 100644 index 00000000..db5308af Binary files /dev/null and b/blockchains/smartchain/assets/0xC1DcB8D805Cf51a5DacC9FA36c28bf2c8D1492B4/logo.png differ diff --git a/blockchains/smartchain/assets/0xC227f8EECC481A8e8BAa30A4754B109b81C4DfA4/info.json b/blockchains/smartchain/assets/0xC227f8EECC481A8e8BAa30A4754B109b81C4DfA4/info.json new file mode 100644 index 00000000..8f26e2e8 --- /dev/null +++ b/blockchains/smartchain/assets/0xC227f8EECC481A8e8BAa30A4754B109b81C4DfA4/info.json @@ -0,0 +1,22 @@ +{ + "name": "Vox.Finance", + "website": "https://app.vox.finance", + "description": "Yield farming token with low supply and 2% burn rate.", + "explorer": "https://bscscan.com/token/0xc227f8eecc481a8e8baa30a4754b109b81c4dfa4", + "research": "https://app.vox.finance/whitepaper", + "type": "BEP20", + "symbol": "VOXb", + "decimals": 18, + "status": "active", + "id": "0xC227f8EECC481A8e8BAa30A4754B109b81C4DfA4", + "links": [ + { + "name": "source_code", + "url": "https://gitlab.com/vox.finance/vox-finance-contracts" + }, + { + "name": "whitepaper", + "url": "https://app.vox.finance/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC227f8EECC481A8e8BAa30A4754B109b81C4DfA4/logo.png b/blockchains/smartchain/assets/0xC227f8EECC481A8e8BAa30A4754B109b81C4DfA4/logo.png new file mode 100644 index 00000000..1e906ed5 Binary files /dev/null and b/blockchains/smartchain/assets/0xC227f8EECC481A8e8BAa30A4754B109b81C4DfA4/logo.png differ diff --git a/blockchains/smartchain/assets/0xC24bF9808617Db1C9F7Ba4B43bDBEd5875Ddc7c7/info.json b/blockchains/smartchain/assets/0xC24bF9808617Db1C9F7Ba4B43bDBEd5875Ddc7c7/info.json new file mode 100644 index 00000000..fe814f40 --- /dev/null +++ b/blockchains/smartchain/assets/0xC24bF9808617Db1C9F7Ba4B43bDBEd5875Ddc7c7/info.json @@ -0,0 +1,11 @@ +{ + "name": "SpacePath", + "type": "BEP20", + "symbol": "SP", + "decimals": 9, + "website": "https://spacepath.net/", + "description": "SpacePath token is backed by the SpacePath marketplace. The first NFT marketplace with no platform fees.", + "explorer": "https://bscscan.com/token/0xC24bF9808617Db1C9F7Ba4B43bDBEd5875Ddc7c7", + "status": "active", + "id": "0xC24bF9808617Db1C9F7Ba4B43bDBEd5875Ddc7c7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC24bF9808617Db1C9F7Ba4B43bDBEd5875Ddc7c7/logo.png b/blockchains/smartchain/assets/0xC24bF9808617Db1C9F7Ba4B43bDBEd5875Ddc7c7/logo.png new file mode 100644 index 00000000..e6017a9a Binary files /dev/null and b/blockchains/smartchain/assets/0xC24bF9808617Db1C9F7Ba4B43bDBEd5875Ddc7c7/logo.png differ diff --git a/blockchains/smartchain/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/info.json b/blockchains/smartchain/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/info.json new file mode 100644 index 00000000..8ad1ced0 --- /dev/null +++ b/blockchains/smartchain/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xion Global Token", + "website": "https://xion.finance", + "description": "Xion is bringing cross chain decentralised payments, loyalty and financial rewards to a global commerce industry. Think 'Stripe' for web 3.", + "explorer": "https://bscscan.com/token/0xc25af3123d2420054c8fcd144c21113aa2853f39", + "type": "BEP20", + "symbol": "XGT", + "decimals": 18, + "status": "active", + "id": "0xC25AF3123d2420054c8fcd144c21113aa2853F39" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/logo.png b/blockchains/smartchain/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/logo.png new file mode 100644 index 00000000..59a5a187 Binary files /dev/null and b/blockchains/smartchain/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/logo.png differ diff --git a/blockchains/smartchain/assets/0xC2C7fcdDC37f6737ca2481ebda6B81Ee279fE20C/info.json b/blockchains/smartchain/assets/0xC2C7fcdDC37f6737ca2481ebda6B81Ee279fE20C/info.json new file mode 100644 index 00000000..6132f43b --- /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 00000000..b4095558 Binary files /dev/null and b/blockchains/smartchain/assets/0xC2C7fcdDC37f6737ca2481ebda6B81Ee279fE20C/logo.png differ diff --git a/blockchains/smartchain/assets/0xC30F12CD65f61ded24db6C415C84F999C9704eBC/info.json b/blockchains/smartchain/assets/0xC30F12CD65f61ded24db6C415C84F999C9704eBC/info.json new file mode 100644 index 00000000..c9a876cc --- /dev/null +++ b/blockchains/smartchain/assets/0xC30F12CD65f61ded24db6C415C84F999C9704eBC/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sabaka Inu", + "website": "https://sabakatoken.com/", + "description": "Earning money and helping dogs at the same time.", + "explorer": "https://bscscan.com/token/0xC30F12CD65f61ded24db6C415C84F999C9704eBC", + "type": "BEP20", + "symbol": "SABAKA INU", + "decimals": 9, + "status": "active", + "id": "0xC30F12CD65f61ded24db6C415C84F999C9704eBC" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC30F12CD65f61ded24db6C415C84F999C9704eBC/logo.png b/blockchains/smartchain/assets/0xC30F12CD65f61ded24db6C415C84F999C9704eBC/logo.png new file mode 100644 index 00000000..8997cc29 Binary files /dev/null and b/blockchains/smartchain/assets/0xC30F12CD65f61ded24db6C415C84F999C9704eBC/logo.png differ diff --git a/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/info.json b/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/info.json new file mode 100644 index 00000000..b9c3dc1e --- /dev/null +++ b/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/info.json @@ -0,0 +1,43 @@ +{ + "name": "Pepa Inu", + "type": "BEP20", + "symbol": "PEPA", + "decimals": 9, + "website": "https://pepa-inu.com/", + "description": "The newest and most exciting memecoin! With a community-driven approach and a burning passion for memes, we believe Pepa Inu is the next big thing in the meme market. Join us on this journey to revolutionize the world of memecoins and let's go to the moon together!", + "explorer": "https://bscscan.com/token/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa", + "status": "active", + "id": "0xC3137c696796D69F783CD0Be4aB4bB96814234Aa", + "links": [ + { + "name": "x", + "url": "https://x.com/pepa_inu" + }, + { + "name": "telegram", + "url": "https://t.me/pepa_inu" + }, + { + "name": "facebook", + "url": "https://facebook.com/people/Pepa-Inu/100089890814045" + }, + { + "name": "whitepaper", + "url": "https://www.pepa-inu.com/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepa-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pepa-inu" + } + ], + "tags": [ + "memes", + "deflationary", + "staking", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/logo.png b/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/logo.png new file mode 100644 index 00000000..c0153625 Binary files /dev/null and b/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/logo.png differ diff --git a/blockchains/smartchain/assets/0xC3571b3f9721D07919dc42af7fce2784B56e8E3c/info.json b/blockchains/smartchain/assets/0xC3571b3f9721D07919dc42af7fce2784B56e8E3c/info.json new file mode 100644 index 00000000..802c0178 --- /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 00000000..4fec37da 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 00000000..cdbad33b --- /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 00000000..229a2857 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 00000000..4e7655d5 --- /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 new file mode 100644 index 00000000..548d9578 --- /dev/null +++ b/blockchains/smartchain/assets/0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5/info.json @@ -0,0 +1,40 @@ +{ + "name": "Kiba Inu", + "type": "BEP20", + "symbol": "KIBA", + "decimals": 18, + "website": "https://kibainu.org/", + "description": "Kiba Inu is restoring integrity to meme coins by building the safest Dex and Launchpad in the space. KibaSwap already includes our swap, KibaFomo, Honeypot Checker, KibaTools, and KibaReports. We are a meme coin to capitalize on the fun and organic growth that are common in this space. We are a utility that solves the problems newcomers and OG’s face frequently. We are a community that is regarded as the best and others try to emulate. Best of all, we are just getting started.", + "explorer": "https://bscscan.com/token/0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5", + "status": "active", + "id": "0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5", + "links": [ + { + "name": "x", + "url": "https://x.com/kibainuworld" + }, + { + "name": "telegram", + "url": "https://t.me/KibaInuGlobal" + }, + { + "name": "discord", + "url": "https://discord.com/invite/TU8NGUquPc" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCHyByhie4oQjM3uMdrsLYzA" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kiba-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kiba-inu" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5/logo.png b/blockchains/smartchain/assets/0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5/logo.png new file mode 100644 index 00000000..5715ecaa Binary files /dev/null and b/blockchains/smartchain/assets/0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5/logo.png differ diff --git a/blockchains/smartchain/assets/0xC409eC8a33f31437Ed753C82EEd3c5F16d6D7e22/info.json b/blockchains/smartchain/assets/0xC409eC8a33f31437Ed753C82EEd3c5F16d6D7e22/info.json new file mode 100644 index 00000000..c39f27da --- /dev/null +++ b/blockchains/smartchain/assets/0xC409eC8a33f31437Ed753C82EEd3c5F16d6D7e22/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tokyo AU Token", + "type": "BEP20", + "symbol": "TOKAU", + "decimals": 18, + "website": "https://tokau.io/", + "description": "In short, the distance between you and your favorite idol is only one NFT, on TOKAU!", + "explorer": "https://bscscan.com/token/0xC409eC8a33f31437Ed753C82EEd3c5F16d6D7e22", + "status": "active", + "id": "0xC409eC8a33f31437Ed753C82EEd3c5F16d6D7e22", + "links": [ + { + "name": "x", + "url": "https://x.com/TOKAU_JP" + }, + { + "name": "telegram", + "url": "https://t.me/tokau2021" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC409eC8a33f31437Ed753C82EEd3c5F16d6D7e22/logo.png b/blockchains/smartchain/assets/0xC409eC8a33f31437Ed753C82EEd3c5F16d6D7e22/logo.png new file mode 100644 index 00000000..14d1050a Binary files /dev/null and b/blockchains/smartchain/assets/0xC409eC8a33f31437Ed753C82EEd3c5F16d6D7e22/logo.png differ diff --git a/blockchains/smartchain/assets/0xC468aCf451922712Cf45aF9801dF89578B0418b4/info.json b/blockchains/smartchain/assets/0xC468aCf451922712Cf45aF9801dF89578B0418b4/info.json new file mode 100644 index 00000000..24ba3b48 --- /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 00000000..45c63bb2 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 new file mode 100644 index 00000000..49ffb8a4 --- /dev/null +++ b/blockchains/smartchain/assets/0xC477c189d6C572F6C618eA76658B062b1530224c/info.json @@ -0,0 +1,21 @@ +{ + "name": "CryptonlyFanz", + "type": "BEP20", + "symbol": "COF", + "decimals": 9, + "website": "https://www.cryptonlyfanz.com/", + "description": "Cryptonlyfanz is a decentralized social network dedicated to providing a platform that connects exclusive influencer content and their fanz like never before. Our decentralized platform is powered by COF Token; a cryptocurrency with embedded features that sustains a low-cost environment where content creators and subscribers can connect with little interference from a third party. To learn more please reference our “", + "explorer": "https://bscscan.com/token/0xC477c189d6C572F6C618eA76658B062b1530224c", + "status": "active", + "id": "0xC477c189d6C572F6C618eA76658B062b1530224c", + "links": [ + { + "name": "telegram", + "url": "https://t.me/CryptonlyFanz" + }, + { + "name": "x", + "url": "https://x.com/CryptonlyFanz" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC477c189d6C572F6C618eA76658B062b1530224c/logo.png b/blockchains/smartchain/assets/0xC477c189d6C572F6C618eA76658B062b1530224c/logo.png new file mode 100644 index 00000000..4a2c27ca Binary files /dev/null and b/blockchains/smartchain/assets/0xC477c189d6C572F6C618eA76658B062b1530224c/logo.png differ diff --git a/blockchains/smartchain/assets/0xC481E366aaD63dF7304DF888705B86523c3E8681/info.json b/blockchains/smartchain/assets/0xC481E366aaD63dF7304DF888705B86523c3E8681/info.json new file mode 100644 index 00000000..ea6b94e7 --- /dev/null +++ b/blockchains/smartchain/assets/0xC481E366aaD63dF7304DF888705B86523c3E8681/info.json @@ -0,0 +1,11 @@ +{ + "name": "Film Vault Protocol", + "website": "https://filmvault.io", + "description": "The Film Vault protocol is a dApp/Smart Contract to Learn, Invest and Profit from the Independent Film Industry. Built with latest openzeppellin secured smart contract in Solidity, deployed in both Ethereun Network [ERC20] and Binance Smart Chain [BEP20] with a multi chain tokenomics of 1Million FILMVAULT max supply, and unique 10 year minting strategy.", + "explorer": "https://bscscan.com/token/0xc481e366aad63df7304df888705b86523c3e8681", + "type": "BEP20", + "symbol": "FILMVAULT", + "decimals": 9, + "status": "active", + "id": "0xC481E366aaD63dF7304DF888705B86523c3E8681" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC481E366aaD63dF7304DF888705B86523c3E8681/logo.png b/blockchains/smartchain/assets/0xC481E366aaD63dF7304DF888705B86523c3E8681/logo.png new file mode 100644 index 00000000..36c1427a Binary files /dev/null and b/blockchains/smartchain/assets/0xC481E366aaD63dF7304DF888705B86523c3E8681/logo.png differ diff --git a/blockchains/smartchain/assets/0xC4A1cc5cA8955a4650BDC109bddf110E33a1e344/info.json b/blockchains/smartchain/assets/0xC4A1cc5cA8955a4650BDC109bddf110E33a1e344/info.json new file mode 100644 index 00000000..7fe21cb7 --- /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 00000000..eb506a50 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 new file mode 100644 index 00000000..ef84e52d --- /dev/null +++ b/blockchains/smartchain/assets/0xC4B35d3A24E3e8941c5d87fD21D0725642F50308/info.json @@ -0,0 +1,29 @@ +{ + "name": "DeFiPIE", + "website": "https://defipie.com", + "description": "DeFiPIE allows everyone to create lending pools for any assets on Ethereum and Binance Smart Chain networks. Users can supply their assets and borrow other assets.", + "explorer": "https://bscscan.com/token/0xC4B35d3A24E3e8941c5d87fD21D0725642F50308", + "type": "BEP20", + "symbol": "PIE", + "decimals": 18, + "status": "active", + "id": "0xC4B35d3A24E3e8941c5d87fD21D0725642F50308", + "links": [ + { + "name": "github", + "url": "https://github.com/DefiPie" + }, + { + "name": "x", + "url": "https://x.com/defipiepie" + }, + { + "name": "telegram", + "url": "https://t.me/defipie" + }, + { + "name": "medium", + "url": "https://medium.com/defipie" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC4B35d3A24E3e8941c5d87fD21D0725642F50308/logo.png b/blockchains/smartchain/assets/0xC4B35d3A24E3e8941c5d87fD21D0725642F50308/logo.png new file mode 100644 index 00000000..fe37ce71 Binary files /dev/null and b/blockchains/smartchain/assets/0xC4B35d3A24E3e8941c5d87fD21D0725642F50308/logo.png differ diff --git a/blockchains/smartchain/assets/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/info.json b/blockchains/smartchain/assets/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/info.json new file mode 100644 index 00000000..0397f62a --- /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/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/logo.png b/blockchains/smartchain/assets/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/logo.png new file mode 100644 index 00000000..e7a3b11e Binary files /dev/null and b/blockchains/smartchain/assets/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/logo.png differ diff --git a/blockchains/smartchain/assets/0xC4a88a72B848255Fd24Da3C1aD6755D980535FB1/info.json b/blockchains/smartchain/assets/0xC4a88a72B848255Fd24Da3C1aD6755D980535FB1/info.json new file mode 100644 index 00000000..3de96849 --- /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 00000000..3ec067f7 Binary files /dev/null and b/blockchains/smartchain/assets/0xC4a88a72B848255Fd24Da3C1aD6755D980535FB1/logo.png differ diff --git a/blockchains/smartchain/assets/0xC4b790e1D5f0c3d8AA526F0A8098eD2A1ff0886a/info.json b/blockchains/smartchain/assets/0xC4b790e1D5f0c3d8AA526F0A8098eD2A1ff0886a/info.json new file mode 100644 index 00000000..b1272184 --- /dev/null +++ b/blockchains/smartchain/assets/0xC4b790e1D5f0c3d8AA526F0A8098eD2A1ff0886a/info.json @@ -0,0 +1,11 @@ +{ + "name": "420x", + "website": "https://420xcoin.com/", + "description": "420x coin is the first crypto project that has the potential of becoming a mainstream brand, payment solution and cultural movement.", + "explorer": "https://bscscan.com/token/0xC4b790e1D5f0c3d8AA526F0A8098eD2A1ff0886a", + "type": "BEP20", + "symbol": "420x", + "decimals": 9, + "status": "active", + "id": "0xC4b790e1D5f0c3d8AA526F0A8098eD2A1ff0886a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC4b790e1D5f0c3d8AA526F0A8098eD2A1ff0886a/logo.png b/blockchains/smartchain/assets/0xC4b790e1D5f0c3d8AA526F0A8098eD2A1ff0886a/logo.png new file mode 100644 index 00000000..d20522ec Binary files /dev/null and b/blockchains/smartchain/assets/0xC4b790e1D5f0c3d8AA526F0A8098eD2A1ff0886a/logo.png differ diff --git a/blockchains/smartchain/assets/0xC4eEFF5aab678C3FF32362D80946A3f5De4a1861/info.json b/blockchains/smartchain/assets/0xC4eEFF5aab678C3FF32362D80946A3f5De4a1861/info.json new file mode 100644 index 00000000..97206a95 --- /dev/null +++ b/blockchains/smartchain/assets/0xC4eEFF5aab678C3FF32362D80946A3f5De4a1861/info.json @@ -0,0 +1,57 @@ +{ + "name": "RiceFarm Token", + "website": "https://ricefarm.fi", + "description": "RiceFarm is the next generation of Yield Farming with the highest burn rate on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xC4eEFF5aab678C3FF32362D80946A3f5De4a1861", + "type": "BEP20", + "symbol": "RICE", + "decimals": 18, + "status": "active", + "id": "0xC4eEFF5aab678C3FF32362D80946A3f5De4a1861", + "links": [ + { + "name": "github", + "url": "https://github.com/rice-farm" + }, + { + "name": "x", + "url": "https://x.com/fuzionchain" + }, + { + "name": "telegram", + "url": "https://t.me/fuzionchain" + }, + { + "name": "telegram_news", + "url": "https://t.me/fuzionnews" + }, + { + "name": "discord", + "url": "https://discord.com/invite/24uAPzKYFu" + }, + { + "name": "docs", + "url": "https://docs.ricefarm.fi/" + }, + { + "name": "facebook", + "url": "https://facebook.com/FuzionChain/" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/BitcoinNewsChannel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ricefarm-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ricefarm" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/TeslaSafe/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC4eEFF5aab678C3FF32362D80946A3f5De4a1861/logo.png b/blockchains/smartchain/assets/0xC4eEFF5aab678C3FF32362D80946A3f5De4a1861/logo.png new file mode 100644 index 00000000..b5534be3 Binary files /dev/null and b/blockchains/smartchain/assets/0xC4eEFF5aab678C3FF32362D80946A3f5De4a1861/logo.png differ diff --git a/blockchains/smartchain/assets/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e/info.json b/blockchains/smartchain/assets/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e/info.json new file mode 100644 index 00000000..b33b35ca --- /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 00000000..29a4e6a0 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 new file mode 100644 index 00000000..f4390b53 --- /dev/null +++ b/blockchains/smartchain/assets/0xC544D8aB2b5ED395B96E3Ec87462801ECa579aE1/info.json @@ -0,0 +1,28 @@ +{ + "name": "Starfish OS", + "type": "BEP20", + "symbol": "SFO", + "decimals": 18, + "website": "https://www.sfos.io", + "description": "Starfish OS is a starfish-style institution consensus collaboration system.", + "explorer": "https://bscscan.com/token/0xc544d8ab2b5ed395b96e3ec87462801eca579ae1", + "status": "active", + "id": "0xC544D8aB2b5ED395B96E3Ec87462801ECa579aE1", + "links": [ + { + "name": "x", + "url": "https://x.com/StarfishOS" + }, + { + "name": "github", + "url": "https://github.com/starfishos" + }, + { + "name": "telegram", + "url": "https://t.me/starfishos" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC544D8aB2b5ED395B96E3Ec87462801ECa579aE1/logo.png b/blockchains/smartchain/assets/0xC544D8aB2b5ED395B96E3Ec87462801ECa579aE1/logo.png new file mode 100644 index 00000000..ce3cc8f1 Binary files /dev/null and b/blockchains/smartchain/assets/0xC544D8aB2b5ED395B96E3Ec87462801ECa579aE1/logo.png differ diff --git a/blockchains/smartchain/assets/0xC563Ad73d229Ac33fbDC64Ab34AB27657B04158c/info.json b/blockchains/smartchain/assets/0xC563Ad73d229Ac33fbDC64Ab34AB27657B04158c/info.json new file mode 100644 index 00000000..572743d5 --- /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 new file mode 100644 index 00000000..318584f8 --- /dev/null +++ b/blockchains/smartchain/assets/0xC598275452fA319d75ee5f176FD3B8384925b425/info.json @@ -0,0 +1,25 @@ +{ + "name": "Stream", + "type": "BEP20", + "symbol": "STRM", + "decimals": 18, + "website": "https://stream-coin.com/", + "description": "LiveView is to provide an all-in-one platform for viewers to be able to watch and choose whichever videos they want around the world.", + "explorer": "https://bscscan.com/token/0xC598275452fA319d75ee5f176FD3B8384925b425", + "status": "active", + "id": "0xC598275452fA319d75ee5f176FD3B8384925b425", + "links": [ + { + "name": "x", + "url": "https://x.com/streamcoin_strm" + }, + { + "name": "github", + "url": "https://github.com/stream-coin-tech" + } + ], + "tags": [ + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC598275452fA319d75ee5f176FD3B8384925b425/logo.png b/blockchains/smartchain/assets/0xC598275452fA319d75ee5f176FD3B8384925b425/logo.png new file mode 100644 index 00000000..95389061 Binary files /dev/null and b/blockchains/smartchain/assets/0xC598275452fA319d75ee5f176FD3B8384925b425/logo.png differ diff --git a/blockchains/smartchain/assets/0xC5FFc1cb7533931D737E13A9b68eBb45270f3298/info.json b/blockchains/smartchain/assets/0xC5FFc1cb7533931D737E13A9b68eBb45270f3298/info.json new file mode 100644 index 00000000..338801d4 --- /dev/null +++ b/blockchains/smartchain/assets/0xC5FFc1cb7533931D737E13A9b68eBb45270f3298/info.json @@ -0,0 +1,11 @@ +{ + "name": "UltimateToken", + "website": "https://ultimatetokenbsc.com/", + "description": "The UltimateToken is a community driven, fair launched DeFi Token. Three simple functions occur during each trade: Reflection, LP Acquisition, and Burn.", + "explorer": "https://bscscan.com/token/0xC5FFc1cb7533931D737E13A9b68eBb45270f3298", + "type": "BEP20", + "symbol": "ULTIMATE", + "decimals": 18, + "status": "active", + "id": "0xC5FFc1cb7533931D737E13A9b68eBb45270f3298" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC5FFc1cb7533931D737E13A9b68eBb45270f3298/logo.png b/blockchains/smartchain/assets/0xC5FFc1cb7533931D737E13A9b68eBb45270f3298/logo.png new file mode 100644 index 00000000..3863081b Binary files /dev/null and b/blockchains/smartchain/assets/0xC5FFc1cb7533931D737E13A9b68eBb45270f3298/logo.png differ diff --git a/blockchains/smartchain/assets/0xC5a83aD9f3586e143D2C718E8999206887eF9dDc/info.json b/blockchains/smartchain/assets/0xC5a83aD9f3586e143D2C718E8999206887eF9dDc/info.json new file mode 100644 index 00000000..cb24f9a3 --- /dev/null +++ b/blockchains/smartchain/assets/0xC5a83aD9f3586e143D2C718E8999206887eF9dDc/info.json @@ -0,0 +1,33 @@ +{ + "name": "Annex BNB", + "website": "https://www.annex.finance/", + "description": "Money Markets. A Decentralized Marketplace for Lenders and Borrowers", + "explorer": "https://bscscan.com/token/0xC5a83aD9f3586e143D2C718E8999206887eF9dDc", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/AnnexFinance" + }, + { + "name": "medium", + "url": "https://annexfinance.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/Annex_finance_group" + }, + { + "name": "github", + "url": "https://github.com/annexfinance/annex-protocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AnnexFinance/" + } + ], + "symbol": "aBNB", + "decimals": 8, + "status": "active", + "id": "0xC5a83aD9f3586e143D2C718E8999206887eF9dDc" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC5a83aD9f3586e143D2C718E8999206887eF9dDc/logo.png b/blockchains/smartchain/assets/0xC5a83aD9f3586e143D2C718E8999206887eF9dDc/logo.png new file mode 100644 index 00000000..f46efe4f Binary files /dev/null and b/blockchains/smartchain/assets/0xC5a83aD9f3586e143D2C718E8999206887eF9dDc/logo.png differ diff --git a/blockchains/smartchain/assets/0xC62eF0d8e137499833AbB05Dee47007D2b334bA6/info.json b/blockchains/smartchain/assets/0xC62eF0d8e137499833AbB05Dee47007D2b334bA6/info.json new file mode 100644 index 00000000..f6bd5668 --- /dev/null +++ b/blockchains/smartchain/assets/0xC62eF0d8e137499833AbB05Dee47007D2b334bA6/info.json @@ -0,0 +1,25 @@ +{ + "name": "GAMEX", + "website": "https://www.game-x.co", + "description": "GAMEX is a project with goal of creating a gaming ecosystem revolving around the benefits of the players.", + "explorer": "https://bscscan.com/token/0xc62ef0d8e137499833abb05dee47007d2b334ba6", + "type": "BEP20", + "symbol": "GMX", + "decimals": 9, + "status": "active", + "id": "0xC62eF0d8e137499833AbB05Dee47007D2b334bA6", + "links": [ + { + "name": "x", + "url": "https://x.com/gamexofficial1?s=21" + }, + { + "name": "telegram", + "url": "https://t.me/monetaryunitchat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/7ddzPkkk" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC62eF0d8e137499833AbB05Dee47007D2b334bA6/logo.png b/blockchains/smartchain/assets/0xC62eF0d8e137499833AbB05Dee47007D2b334bA6/logo.png new file mode 100644 index 00000000..9e4cd241 Binary files /dev/null and b/blockchains/smartchain/assets/0xC62eF0d8e137499833AbB05Dee47007D2b334bA6/logo.png differ diff --git a/blockchains/smartchain/assets/0xC632F90affeC7121120275610BF17Df9963F181c/info.json b/blockchains/smartchain/assets/0xC632F90affeC7121120275610BF17Df9963F181c/info.json new file mode 100644 index 00000000..10fbb01e --- /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 new file mode 100644 index 00000000..d783f2b0 --- /dev/null +++ b/blockchains/smartchain/assets/0xC638a73969C0F7442Ba8F5Ffda9968434891034B/info.json @@ -0,0 +1,44 @@ +{ + "name": "Dabb Doge ", + "type": "BEP20", + "symbol": "DDoge ", + "decimals": 18, + "website": "https://www.dabbdoge.com/", + "description": "DABB DOGE is a decentralized peer-to-peer digital currency that enables instant transactions to anyone anywhere in the world without any transaction fees", + "explorer": "https://bscscan.com/token/0xC638a73969C0F7442Ba8F5Ffda9968434891034B", + "status": "active", + "id": "0xC638a73969C0F7442Ba8F5Ffda9968434891034B", + "links": [ + { + "name": "x", + "url": "https://x.com/DabbDoge/" + }, + { + "name": "github", + "url": "https://github.com/dabbdoge" + }, + { + "name": "telegram", + "url": "https://t.me/dabbdoge" + }, + { + "name": "whitepaper", + "url": "https://www.dabbdoge.com/dabb-doge-whitepaper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/dabbdoge" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dabb-doge/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xC638a73969C0F7442Ba8F5Ffda9968434891034B#code" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC638a73969C0F7442Ba8F5Ffda9968434891034B/logo.png b/blockchains/smartchain/assets/0xC638a73969C0F7442Ba8F5Ffda9968434891034B/logo.png new file mode 100644 index 00000000..a801840a Binary files /dev/null and b/blockchains/smartchain/assets/0xC638a73969C0F7442Ba8F5Ffda9968434891034B/logo.png differ diff --git a/blockchains/smartchain/assets/0xC64B6aF2D11AE5F908Ea12F1C3D1888eB8Ee5639/info.json b/blockchains/smartchain/assets/0xC64B6aF2D11AE5F908Ea12F1C3D1888eB8Ee5639/info.json new file mode 100644 index 00000000..6fada6cd --- /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 00000000..7c18079f Binary files /dev/null and b/blockchains/smartchain/assets/0xC64B6aF2D11AE5F908Ea12F1C3D1888eB8Ee5639/logo.png differ diff --git a/blockchains/smartchain/assets/0xC66c8b40E9712708d0b4F27c9775Dc934B65F0d9/info.json b/blockchains/smartchain/assets/0xC66c8b40E9712708d0b4F27c9775Dc934B65F0d9/info.json new file mode 100644 index 00000000..3a42fad2 --- /dev/null +++ b/blockchains/smartchain/assets/0xC66c8b40E9712708d0b4F27c9775Dc934B65F0d9/info.json @@ -0,0 +1,11 @@ +{ + "name": "ElonTech", + "type": "BEP20", + "symbol": "ETCH", + "decimals": 18, + "website": "https://elontech.finance/", + "description": "ElonTech is Binance Smart Chain Token developed for building the first decentralized Tech Valley.", + "explorer": "https://bscscan.com/token/0xC66c8b40E9712708d0b4F27c9775Dc934B65F0d9", + "status": "active", + "id": "0xC66c8b40E9712708d0b4F27c9775Dc934B65F0d9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC66c8b40E9712708d0b4F27c9775Dc934B65F0d9/logo.png b/blockchains/smartchain/assets/0xC66c8b40E9712708d0b4F27c9775Dc934B65F0d9/logo.png new file mode 100644 index 00000000..51a14935 Binary files /dev/null and b/blockchains/smartchain/assets/0xC66c8b40E9712708d0b4F27c9775Dc934B65F0d9/logo.png differ diff --git a/blockchains/smartchain/assets/0xC6f9eDbeE6042a237D72493bBdA3eE2c3c62F708/info.json b/blockchains/smartchain/assets/0xC6f9eDbeE6042a237D72493bBdA3eE2c3c62F708/info.json new file mode 100644 index 00000000..92813696 --- /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 00000000..71fbf201 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 00000000..d88d1694 --- /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 00000000..c556d05e Binary files /dev/null and b/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/logo.png differ diff --git a/blockchains/smartchain/assets/0xC70636a779118e57E1c6fdAfDd1f919Fae912d2f/info.json b/blockchains/smartchain/assets/0xC70636a779118e57E1c6fdAfDd1f919Fae912d2f/info.json new file mode 100644 index 00000000..605ec134 --- /dev/null +++ b/blockchains/smartchain/assets/0xC70636a779118e57E1c6fdAfDd1f919Fae912d2f/info.json @@ -0,0 +1,11 @@ +{ + "name": "MUNCH", + "type": "BEP20", + "symbol": "Munch", + "decimals": 9, + "website": "https://munchproject.io/", + "description": "Munch a charity crypto coin", + "explorer": "https://bscscan.com/token/0xC70636a779118e57E1c6fdAfDd1f919Fae912d2f", + "status": "active", + "id": "0xC70636a779118e57E1c6fdAfDd1f919Fae912d2f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC70636a779118e57E1c6fdAfDd1f919Fae912d2f/logo.png b/blockchains/smartchain/assets/0xC70636a779118e57E1c6fdAfDd1f919Fae912d2f/logo.png new file mode 100644 index 00000000..5d163be6 Binary files /dev/null and b/blockchains/smartchain/assets/0xC70636a779118e57E1c6fdAfDd1f919Fae912d2f/logo.png differ diff --git a/blockchains/smartchain/assets/0xC72cC401122dBDC812EC88a2150AAD5a39467401/info.json b/blockchains/smartchain/assets/0xC72cC401122dBDC812EC88a2150AAD5a39467401/info.json new file mode 100644 index 00000000..30912b0b --- /dev/null +++ b/blockchains/smartchain/assets/0xC72cC401122dBDC812EC88a2150AAD5a39467401/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wallet Swap", + "type": "BEP20", + "symbol": "WSWAP", + "decimals": 0, + "website": "https://wswap.site/", + "description": "Wallet Swap is a decentralized Binance Smartchain & Ethereum Web3 Mobile Wallet. The app works with several crypto tokens and blockchain wallets.", + "explorer": "https://bscscan.com/token/0xc72cc401122dbdc812ec88a2150aad5a39467401", + "status": "active", + "id": "0xC72cC401122dBDC812EC88a2150AAD5a39467401" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC72cC401122dBDC812EC88a2150AAD5a39467401/logo.png b/blockchains/smartchain/assets/0xC72cC401122dBDC812EC88a2150AAD5a39467401/logo.png new file mode 100644 index 00000000..b4afc44d Binary files /dev/null and b/blockchains/smartchain/assets/0xC72cC401122dBDC812EC88a2150AAD5a39467401/logo.png differ diff --git a/blockchains/smartchain/assets/0xC737B44CB0Aa18815a1F6918EB338dEe7e7E6bD7/info.json b/blockchains/smartchain/assets/0xC737B44CB0Aa18815a1F6918EB338dEe7e7E6bD7/info.json new file mode 100644 index 00000000..633062d8 --- /dev/null +++ b/blockchains/smartchain/assets/0xC737B44CB0Aa18815a1F6918EB338dEe7e7E6bD7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Comfy Token", + "type": "BEP20", + "symbol": "COMFY", + "decimals": 9, + "website": "https://www.comfytoken.com/", + "description": "ComfyToken has created a distinctive DeFi ecosystem, designed to facilitate a comfy global transition to cryptocurrency.", + "explorer": "https://bscscan.com/token/0xC737B44CB0Aa18815a1F6918EB338dEe7e7E6bD7", + "status": "active", + "id": "0xC737B44CB0Aa18815a1F6918EB338dEe7e7E6bD7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC737B44CB0Aa18815a1F6918EB338dEe7e7E6bD7/logo.png b/blockchains/smartchain/assets/0xC737B44CB0Aa18815a1F6918EB338dEe7e7E6bD7/logo.png new file mode 100644 index 00000000..ecda52cc Binary files /dev/null and b/blockchains/smartchain/assets/0xC737B44CB0Aa18815a1F6918EB338dEe7e7E6bD7/logo.png differ diff --git a/blockchains/smartchain/assets/0xC75bcC3ae0844c16Fd1881b8bb47BD509303a135/info.json b/blockchains/smartchain/assets/0xC75bcC3ae0844c16Fd1881b8bb47BD509303a135/info.json new file mode 100644 index 00000000..df29b77f --- /dev/null +++ b/blockchains/smartchain/assets/0xC75bcC3ae0844c16Fd1881b8bb47BD509303a135/info.json @@ -0,0 +1,29 @@ +{ + "name": "Metaverse Inu", + "type": "BEP20", + "symbol": "MetaInu", + "decimals": 9, + "website": "https://metaverseinu.org", + "description": "Decentralized Inu Meme Coin of the Metaverse. MetaverseInu is the first official Inu-based meme coin of the Metaverse universe which aims to create a decentralized, fast and unique chain with the enhanced MetaverseInu genesis structure.", + "explorer": "https://bscscan.com/token/0xC75bcC3ae0844c16Fd1881b8bb47BD509303a135", + "status": "active", + "id": "0xC75bcC3ae0844c16Fd1881b8bb47BD509303a135", + "links": [ + { + "name": "x", + "url": "https://x.com/Metaverse_Inu" + }, + { + "name": "github", + "url": "https://github.com/MetaverseInu" + }, + { + "name": "discord", + "url": "https://discord.com/invite/wupjWu8Jds" + }, + { + "name": "telegram", + "url": "https://t.me/Metaverse_Inu" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC75bcC3ae0844c16Fd1881b8bb47BD509303a135/logo.png b/blockchains/smartchain/assets/0xC75bcC3ae0844c16Fd1881b8bb47BD509303a135/logo.png new file mode 100644 index 00000000..29088ce0 Binary files /dev/null and b/blockchains/smartchain/assets/0xC75bcC3ae0844c16Fd1881b8bb47BD509303a135/logo.png differ diff --git a/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/info.json b/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/info.json new file mode 100644 index 00000000..6f4ac39a --- /dev/null +++ b/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/info.json @@ -0,0 +1,24 @@ +{ + "name": "ApeCoin", + "type": "BEP20", + "symbol": "APE", + "decimals": 18, + "website": "https://apecoin.com", + "description": "ApeCoin is an BEP-20 governance and utility token used within the APE ecosystem to empower a decentralized community building at the forefront of web3.", + "explorer": "https://bscscan.com/token/0xc762043e211571eb34f1ef377e5e8e76914962f9", + "status": "active", + "id": "0xC762043E211571eB34f1ef377e5e8e76914962f9", + "links": [ + { + "name": "x", + "url": "https://x.com/apecoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apecoin-ape/" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/logo.png b/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/logo.png new file mode 100644 index 00000000..f7a107f9 Binary files /dev/null and b/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/logo.png differ diff --git a/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/info.json b/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/info.json new file mode 100644 index 00000000..3b4120a8 --- /dev/null +++ b/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/info.json @@ -0,0 +1,41 @@ +{ + "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 new file mode 100644 index 00000000..4ba143a0 Binary files /dev/null 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 new file mode 100644 index 00000000..d9bb74cd --- /dev/null +++ b/blockchains/smartchain/assets/0xC7B7844494c516b840A7a4575ff3E60ff0f056a9/info.json @@ -0,0 +1,29 @@ +{ + "name": "Mech Master", + "type": "BEP20", + "symbol": "MECH", + "decimals": 18, + "website": "https://mechmaster.io/", + "description": "Mech Master is a first-ever 3D Mecha NFT game, with strategic RPG elements, where you can earn tokens through skillful gameplay and smart trading on the Marketplace. Players can assemble a lineup full of giant Mechas with gorgeous 3D models to battle against others, recruit pilots, collect weapons, buy land and build your own top-secret base on the Moon!", + "explorer": "https://bscscan.com/token/0xC7B7844494c516b840A7a4575ff3E60ff0f056a9", + "status": "active", + "id": "0xC7B7844494c516b840A7a4575ff3E60ff0f056a9", + "links": [ + { + "name": "x", + "url": "https://x.com/MechMaster_IO" + }, + { + "name": "telegram", + "url": "https://t.me/MechMaster_Official" + }, + { + "name": "facebook", + "url": "https://facebook.com/mechmaster.io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mech-master/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC7B7844494c516b840A7a4575ff3E60ff0f056a9/logo.png b/blockchains/smartchain/assets/0xC7B7844494c516b840A7a4575ff3E60ff0f056a9/logo.png new file mode 100644 index 00000000..28641e9f Binary files /dev/null and b/blockchains/smartchain/assets/0xC7B7844494c516b840A7a4575ff3E60ff0f056a9/logo.png differ diff --git a/blockchains/smartchain/assets/0xC7Bc24c4C18F8251D31611114d0e7B5F5ef76762/info.json b/blockchains/smartchain/assets/0xC7Bc24c4C18F8251D31611114d0e7B5F5ef76762/info.json new file mode 100644 index 00000000..d6ad29c2 --- /dev/null +++ b/blockchains/smartchain/assets/0xC7Bc24c4C18F8251D31611114d0e7B5F5ef76762/info.json @@ -0,0 +1,11 @@ +{ + "name": "Richie", + "type": "BEP20", + "symbol": "RICH", + "decimals": 9, + "website": "https://www.getrichie.com/", + "description": "Richie is a community token in the true sense of the word. There will be a donation wallet instead of a burn mechanism and 1.5% of the tokens will be allocated there. Putting good intentions to good use, the team will shortlist 4 charities, do a poll and let the community decide.", + "explorer": "https://bscscan.com/token/0xC7Bc24c4C18F8251D31611114d0e7B5F5ef76762", + "status": "active", + "id": "0xC7Bc24c4C18F8251D31611114d0e7B5F5ef76762" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC7Bc24c4C18F8251D31611114d0e7B5F5ef76762/logo.png b/blockchains/smartchain/assets/0xC7Bc24c4C18F8251D31611114d0e7B5F5ef76762/logo.png new file mode 100644 index 00000000..af716d11 Binary files /dev/null and b/blockchains/smartchain/assets/0xC7Bc24c4C18F8251D31611114d0e7B5F5ef76762/logo.png differ diff --git a/blockchains/smartchain/assets/0xC7D43F2B51F44f09fBB8a691a0451E8FFCF36c0a/info.json b/blockchains/smartchain/assets/0xC7D43F2B51F44f09fBB8a691a0451E8FFCF36c0a/info.json new file mode 100644 index 00000000..512e5bdf --- /dev/null +++ b/blockchains/smartchain/assets/0xC7D43F2B51F44f09fBB8a691a0451E8FFCF36c0a/info.json @@ -0,0 +1,11 @@ +{ + "name": "EverRise (old)", + "type": "BEP20", + "symbol": "RISE (old)", + "decimals": 9, + "website": "https://www.everrisecoin.com/", + "description": "EverRise token holders are not only rewarded through static rewards but also through true automatic burns every trade from within the liquidity pool.", + "explorer": "https://bscscan.com/token/0xC7D43F2B51F44f09fBB8a691a0451E8FFCF36c0a", + "status": "abandoned", + "id": "0xC7D43F2B51F44f09fBB8a691a0451E8FFCF36c0a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC7FB8c5eFE8564205eE5CbA4dE8eeA8a086a4bd2/info.json b/blockchains/smartchain/assets/0xC7FB8c5eFE8564205eE5CbA4dE8eeA8a086a4bd2/info.json new file mode 100644 index 00000000..fa7b753c --- /dev/null +++ b/blockchains/smartchain/assets/0xC7FB8c5eFE8564205eE5CbA4dE8eeA8a086a4bd2/info.json @@ -0,0 +1,11 @@ +{ + "name": "PocketRocket", + "type": "BEP20", + "symbol": "POCROC", + "decimals": 9, + "website": "https://pocketrocket.xyz/", + "description": "PocketRocket aims to achieve the impossible by giving away vehicles to its holders. Constantly rewarding holders with dividends as well as constantly deflating the supply with an automatic burn function with every transaction. This is achieved by our Car Wallet automatically transferring PocketRocketTokens, making it an anti-dump project! We are calculated to result on a moon mission that hasn’t yet been seen in the Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xC7FB8c5eFE8564205eE5CbA4dE8eeA8a086a4bd2", + "status": "active", + "id": "0xC7FB8c5eFE8564205eE5CbA4dE8eeA8a086a4bd2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC7FB8c5eFE8564205eE5CbA4dE8eeA8a086a4bd2/logo.png b/blockchains/smartchain/assets/0xC7FB8c5eFE8564205eE5CbA4dE8eeA8a086a4bd2/logo.png new file mode 100644 index 00000000..549dc4ec Binary files /dev/null and b/blockchains/smartchain/assets/0xC7FB8c5eFE8564205eE5CbA4dE8eeA8a086a4bd2/logo.png differ diff --git a/blockchains/smartchain/assets/0xC7d8D35EBA58a0935ff2D5a33Df105DD9f071731/info.json b/blockchains/smartchain/assets/0xC7d8D35EBA58a0935ff2D5a33Df105DD9f071731/info.json new file mode 100644 index 00000000..8b7f492d --- /dev/null +++ b/blockchains/smartchain/assets/0xC7d8D35EBA58a0935ff2D5a33Df105DD9f071731/info.json @@ -0,0 +1,12 @@ +{ + "name": "Hedget", + "website": "https://www.hedget.com", + "description": "Hedget is a decentralised protocol for options trading.", + "explorer": "https://bscscan.com/token/0xc7d8d35eba58a0935ff2d5a33df105dd9f071731", + "research": "", + "type": "BEP20", + "symbol": "HGET", + "decimals": 6, + "status": "active", + "id": "0xC7d8D35EBA58a0935ff2D5a33Df105DD9f071731" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC7d8D35EBA58a0935ff2D5a33Df105DD9f071731/logo.png b/blockchains/smartchain/assets/0xC7d8D35EBA58a0935ff2D5a33Df105DD9f071731/logo.png new file mode 100644 index 00000000..9d0f4c8d Binary files /dev/null and b/blockchains/smartchain/assets/0xC7d8D35EBA58a0935ff2D5a33Df105DD9f071731/logo.png differ diff --git a/blockchains/smartchain/assets/0xC7dDF690942b74171F7e3763baf260B686516bc0/info.json b/blockchains/smartchain/assets/0xC7dDF690942b74171F7e3763baf260B686516bc0/info.json new file mode 100644 index 00000000..485788c4 --- /dev/null +++ b/blockchains/smartchain/assets/0xC7dDF690942b74171F7e3763baf260B686516bc0/info.json @@ -0,0 +1,44 @@ +{ + "name": "Atlantis", + "type": "BEP20", + "symbol": "ATLS", + "decimals": 18, + "website": "https://atlantisfi.io", + "description": "Utilizing an innovative elastic supply protocol, Atlantis makes it workable for token circulation to be paid straight forwardly corresponding to the age rebase rewards. ", + "explorer": "https://bscscan.com/token/0xC7dDF690942b74171F7e3763baf260B686516bc0", + "status": "active", + "id": "0xC7dDF690942b74171F7e3763baf260B686516bc0", + "links": [ + { + "name": "x", + "url": "https://x.com/AtlantisFi" + }, + { + "name": "whitepaper", + "url": "https://atlantisfi.gitbook.io/docs" + }, + { + "name": "telegram", + "url": "https://t.me/AtlantisFi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/atlantis-finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/atlantis-finance" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xc7ddf690942b74171f7e3763baf260b686516bc0#code" + }, + { + "name": "github", + "url": "https://github.com/AtlantisFi" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC7dDF690942b74171F7e3763baf260B686516bc0/logo.png b/blockchains/smartchain/assets/0xC7dDF690942b74171F7e3763baf260B686516bc0/logo.png new file mode 100644 index 00000000..4a82155c Binary files /dev/null and b/blockchains/smartchain/assets/0xC7dDF690942b74171F7e3763baf260B686516bc0/logo.png differ diff --git a/blockchains/smartchain/assets/0xC808592e5b4585F982bc728d63b227634bc007a4/info.json b/blockchains/smartchain/assets/0xC808592e5b4585F982bc728d63b227634bc007a4/info.json new file mode 100644 index 00000000..35f0167f --- /dev/null +++ b/blockchains/smartchain/assets/0xC808592e5b4585F982bc728d63b227634bc007a4/info.json @@ -0,0 +1,29 @@ +{ + "name": "CryptoFrog.Finance", + "website": "https://cryptofrog.finance", + "description": "CryptoFrog.Finance is the first collectible frog NFT and a yield farming project on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xC808592e5b4585F982bc728d63b227634bc007a4", + "type": "BEP20", + "symbol": "FROG", + "decimals": 18, + "status": "active", + "id": "0xC808592e5b4585F982bc728d63b227634bc007a4", + "links": [ + { + "name": "github", + "url": "https://github.com/cryptofrogfinance" + }, + { + "name": "x", + "url": "https://x.com/CryptoFrogFi" + }, + { + "name": "telegram", + "url": "https://t.me/cryptofrogfinance" + }, + { + "name": "medium", + "url": "https://cryptofrogfinance.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC808592e5b4585F982bc728d63b227634bc007a4/logo.png b/blockchains/smartchain/assets/0xC808592e5b4585F982bc728d63b227634bc007a4/logo.png new file mode 100644 index 00000000..62e35821 Binary files /dev/null and b/blockchains/smartchain/assets/0xC808592e5b4585F982bc728d63b227634bc007a4/logo.png differ diff --git a/blockchains/smartchain/assets/0xC836DCC9c880D4558C301e6d439db1B1DCaF7F3a/info.json b/blockchains/smartchain/assets/0xC836DCC9c880D4558C301e6d439db1B1DCaF7F3a/info.json new file mode 100644 index 00000000..e1522cee --- /dev/null +++ b/blockchains/smartchain/assets/0xC836DCC9c880D4558C301e6d439db1B1DCaF7F3a/info.json @@ -0,0 +1,21 @@ +{ + "name": "BNB Gold", + "website": "https://bnbgold.network/", + "description": "BNBGOLD is the governance token for the BNBGOLD Ecosystem.", + "explorer": "https://bscscan.com/token/0xC836DCC9c880D4558C301e6d439db1B1DCaF7F3a", + "type": "BEP20", + "symbol": "BNB GOLD", + "decimals": 18, + "status": "active", + "id": "0xC836DCC9c880D4558C301e6d439db1B1DCaF7F3a", + "links": [ + { + "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/0xC836DCC9c880D4558C301e6d439db1B1DCaF7F3a/logo.png b/blockchains/smartchain/assets/0xC836DCC9c880D4558C301e6d439db1B1DCaF7F3a/logo.png new file mode 100644 index 00000000..7eea8c09 Binary files /dev/null and b/blockchains/smartchain/assets/0xC836DCC9c880D4558C301e6d439db1B1DCaF7F3a/logo.png differ diff --git a/blockchains/smartchain/assets/0xC882910038927090B5c4e03d3dBe506A05168546/info.json b/blockchains/smartchain/assets/0xC882910038927090B5c4e03d3dBe506A05168546/info.json new file mode 100644 index 00000000..a55bba34 --- /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 00000000..c1167b9b 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 new file mode 100644 index 00000000..ad57249e --- /dev/null +++ b/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/info.json @@ -0,0 +1,32 @@ +{ + "name": "KISSAN", + "type": "BEP20", + "symbol": "KSN", + "decimals": 18, + "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": "abandoned", + "id": "0xC8A11F433512C16ED895245F34BCC2ca44eb06bd", + "links": [ + { + "name": "x", + "url": "https://x.com/ksntoken" + }, + { + "name": "telegram", + "url": "https://t.me/Kissancoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/ksntoken" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCOw9CTedlx_tWFNpf0YIncw" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0xC974bE717f52Dcc701fE50fAD36d163b1e9A3a82/info.json b/blockchains/smartchain/assets/0xC974bE717f52Dcc701fE50fAD36d163b1e9A3a82/info.json new file mode 100644 index 00000000..6ea112e1 --- /dev/null +++ b/blockchains/smartchain/assets/0xC974bE717f52Dcc701fE50fAD36d163b1e9A3a82/info.json @@ -0,0 +1,11 @@ +{ + "name": "Healing Potion Token", + "type": "BEP20", + "symbol": "HPPOT", + "decimals": 9, + "website": "https://healingpot.info", + "description": "Healing potion is a wallet regeneration token that allows investors to earn passive income as they hold. 7% of every transaction is distributed equally among holders and an extra 5% is sent straight to the liquidity pool. ", + "explorer": "https://bscscan.com/token/0xc974be717f52dcc701fe50fad36d163b1e9a3a82", + "status": "active", + "id": "0xC974bE717f52Dcc701fE50fAD36d163b1e9A3a82" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC974bE717f52Dcc701fE50fAD36d163b1e9A3a82/logo.png b/blockchains/smartchain/assets/0xC974bE717f52Dcc701fE50fAD36d163b1e9A3a82/logo.png new file mode 100644 index 00000000..c0c3f93d Binary files /dev/null and b/blockchains/smartchain/assets/0xC974bE717f52Dcc701fE50fAD36d163b1e9A3a82/logo.png differ diff --git a/blockchains/smartchain/assets/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51/info.json b/blockchains/smartchain/assets/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51/info.json new file mode 100644 index 00000000..6225ff30 --- /dev/null +++ b/blockchains/smartchain/assets/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51/info.json @@ -0,0 +1,29 @@ +{ + "name": "Bunny Token", + "website": "https://pancakebunny.finance", + "description": "PancakeBunny is a new and rapidly growing DeFi yield aggregator that is used for PancakeSwap. PancakeBunny protocol empowers farmers to leverage their yield-seeking tendencies to optimize yield compounding strategy on BSC. We are providing strategies for the various needs of farmers from the highest yield seekers to the risk reward optimizing smart investors.", + "explorer": "https://bscscan.com/token/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51", + "type": "BEP20", + "symbol": "BUNNY", + "decimals": 18, + "status": "active", + "id": "0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51", + "links": [ + { + "name": "github", + "url": "https://github.com/PancakeBunny-finance/Bunny" + }, + { + "name": "x", + "url": "https://x.com/PancakeBunnyFin" + }, + { + "name": "telegram", + "url": "https://t.me/pancakebunny_fin" + }, + { + "name": "medium", + "url": "https://pancakebunny.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51/logo.png b/blockchains/smartchain/assets/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51/logo.png new file mode 100644 index 00000000..34d8a5ef Binary files /dev/null and b/blockchains/smartchain/assets/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51/logo.png differ diff --git a/blockchains/smartchain/assets/0xC9882dEF23bc42D53895b8361D0b1EDC7570Bc6A/info.json b/blockchains/smartchain/assets/0xC9882dEF23bc42D53895b8361D0b1EDC7570Bc6A/info.json new file mode 100644 index 00000000..65d6a772 --- /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 00000000..e50fb522 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 00000000..029d204d --- /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 00000000..b74c6549 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 00000000..a2bac681 --- /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 00000000..c8d4e76e Binary files /dev/null and b/blockchains/smartchain/assets/0xC9ac219C6A3eB0E0AcBb5911099c6a79D29F585d/logo.png differ diff --git a/blockchains/smartchain/assets/0xC9c7C6A590E82C576de7553142d47a5fb63f9e90/info.json b/blockchains/smartchain/assets/0xC9c7C6A590E82C576de7553142d47a5fb63f9e90/info.json new file mode 100644 index 00000000..848dc442 --- /dev/null +++ b/blockchains/smartchain/assets/0xC9c7C6A590E82C576de7553142d47a5fb63f9e90/info.json @@ -0,0 +1,11 @@ +{ + "name": "BirdChain", + "website": "https://www.birdchainapp.com/", + "description": "Birdchain is base in the era of sharing Economy allowing users to benefit greatly by using blockchain tech. Birdchain has multiple products such as DEFI, NFT, etc. Birdchain has currently built an incentivized App that revolves around an easy-to-use, high-engagement, marketing & content platform where users engage with content and get rewarded. we are working to add more use cases to the token. such as incentivize users for liquidity provision to the Birdchainswap defi platform.", + "explorer": "https://bscscan.com/token/0xC9c7C6A590E82C576de7553142d47a5fb63f9e90", + "type": "BEP20", + "symbol": "BIRD", + "decimals": 18, + "status": "active", + "id": "0xC9c7C6A590E82C576de7553142d47a5fb63f9e90" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC9c7C6A590E82C576de7553142d47a5fb63f9e90/logo.png b/blockchains/smartchain/assets/0xC9c7C6A590E82C576de7553142d47a5fb63f9e90/logo.png new file mode 100644 index 00000000..164b4a43 Binary files /dev/null and b/blockchains/smartchain/assets/0xC9c7C6A590E82C576de7553142d47a5fb63f9e90/logo.png differ diff --git a/blockchains/smartchain/assets/0xCA0a9Df6a8cAD800046C1DDc5755810718b65C44/info.json b/blockchains/smartchain/assets/0xCA0a9Df6a8cAD800046C1DDc5755810718b65C44/info.json new file mode 100644 index 00000000..02380a4a --- /dev/null +++ b/blockchains/smartchain/assets/0xCA0a9Df6a8cAD800046C1DDc5755810718b65C44/info.json @@ -0,0 +1,12 @@ +{ + "name": "TokenClub", + "website": "http://www.tokenclub.com", + "description": "TokenClub provides investors with one-stop services, and aims at building an autonomous, trusting, and efficient investor community.", + "explorer": "https://bscscan.com/token/0xCA0a9Df6a8cAD800046C1DDc5755810718b65C44", + "research": "https://research.binance.com/en/projects/tokenclub", + "type": "BEP20", + "symbol": "TCT", + "decimals": 18, + "status": "active", + "id": "0xCA0a9Df6a8cAD800046C1DDc5755810718b65C44" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCA0a9Df6a8cAD800046C1DDc5755810718b65C44/logo.png b/blockchains/smartchain/assets/0xCA0a9Df6a8cAD800046C1DDc5755810718b65C44/logo.png new file mode 100644 index 00000000..45407627 Binary files /dev/null and b/blockchains/smartchain/assets/0xCA0a9Df6a8cAD800046C1DDc5755810718b65C44/logo.png differ diff --git a/blockchains/smartchain/assets/0xCA1aCAB14e85F30996aC83c64fF93Ded7586977C/info.json b/blockchains/smartchain/assets/0xCA1aCAB14e85F30996aC83c64fF93Ded7586977C/info.json new file mode 100644 index 00000000..5e8dfa9d --- /dev/null +++ b/blockchains/smartchain/assets/0xCA1aCAB14e85F30996aC83c64fF93Ded7586977C/info.json @@ -0,0 +1,36 @@ +{ + "name": "Antex", + "website": "https://antex.org", + "description": "AntEx provides an ever-growing suite of decentralized services. The objective is to bring value to the DeFi space as a whole by delivering disruptive, flexible and audited technology. Strengthen your project and reward your communities using our services.", + "explorer": "https://bscscan.com/token/0xca1acab14e85f30996ac83c64ff93ded7586977c", + "type": "BEP20", + "symbol": "ANTEX", + "decimals": 8, + "status": "active", + "id": "0xCA1aCAB14e85F30996aC83c64fF93Ded7586977C", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/AntExChat" + }, + { + "name": "x", + "url": "https://x.com/Antex_Official" + }, + { + "name": "facebook", + "url": "https://facebook.com/antexannoucement" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/antexofficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/nC7eRbtfrM" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCA1aCAB14e85F30996aC83c64fF93Ded7586977C/logo.png b/blockchains/smartchain/assets/0xCA1aCAB14e85F30996aC83c64fF93Ded7586977C/logo.png new file mode 100644 index 00000000..a8a3e920 Binary files /dev/null and b/blockchains/smartchain/assets/0xCA1aCAB14e85F30996aC83c64fF93Ded7586977C/logo.png differ diff --git a/blockchains/smartchain/assets/0xCA3c1dC12b0dD0D65964abaA533106CF4F372C78/info.json b/blockchains/smartchain/assets/0xCA3c1dC12b0dD0D65964abaA533106CF4F372C78/info.json new file mode 100644 index 00000000..03d5bf4f --- /dev/null +++ b/blockchains/smartchain/assets/0xCA3c1dC12b0dD0D65964abaA533106CF4F372C78/info.json @@ -0,0 +1,11 @@ +{ + "name": "ChubbyAkita", + "type": "BEP20", + "symbol": "CAKITA", + "decimals": 9, + "website": "https://www.chubbyakita.com", + "description": "Chubby Akita $CAKITA is a fair deflationary decentralized community experiment. With a built in burn and redistribution function, anyone willing to hold $CAKITA may potentially be rewarded with chubby gains.", + "explorer": "https://bscscan.com/token/0xCA3c1dC12b0dD0D65964abaA533106CF4F372C78", + "status": "active", + "id": "0xCA3c1dC12b0dD0D65964abaA533106CF4F372C78" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCA3c1dC12b0dD0D65964abaA533106CF4F372C78/logo.png b/blockchains/smartchain/assets/0xCA3c1dC12b0dD0D65964abaA533106CF4F372C78/logo.png new file mode 100644 index 00000000..26523455 Binary files /dev/null and b/blockchains/smartchain/assets/0xCA3c1dC12b0dD0D65964abaA533106CF4F372C78/logo.png differ diff --git a/blockchains/smartchain/assets/0xCA69C118Fa550387794d48900a866891217E5C9F/info.json b/blockchains/smartchain/assets/0xCA69C118Fa550387794d48900a866891217E5C9F/info.json new file mode 100644 index 00000000..2957833c --- /dev/null +++ b/blockchains/smartchain/assets/0xCA69C118Fa550387794d48900a866891217E5C9F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mocktail", + "type": "BEP20", + "symbol": "MOK", + "decimals": 18, + "website": "https://docs.mocktailswap.finance/", + "description": "MOCKTAIL is the world's first ERC 1155 standard Semi-Fungible Token (SFT) on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xCA69C118Fa550387794d48900a866891217E5C9F", + "status": "active", + "id": "0xCA69C118Fa550387794d48900a866891217E5C9F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCA69C118Fa550387794d48900a866891217E5C9F/logo.png b/blockchains/smartchain/assets/0xCA69C118Fa550387794d48900a866891217E5C9F/logo.png new file mode 100644 index 00000000..728c5355 Binary files /dev/null and b/blockchains/smartchain/assets/0xCA69C118Fa550387794d48900a866891217E5C9F/logo.png differ diff --git a/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json b/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json new file mode 100644 index 00000000..7dffc8c2 --- /dev/null +++ b/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json @@ -0,0 +1,28 @@ +{ + "name": "ARAW", + "symbol": "ARAW", + "type": "BEP20", + "decimals": 18, + "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": "abandoned", + "id": "0xCA7661Ba64A7667E3006c421C181502d545D1911", + "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/smartchain/assets/0xCAAE2A2F939F51d97CdFa9A86e79e3F085b799f3/info.json b/blockchains/smartchain/assets/0xCAAE2A2F939F51d97CdFa9A86e79e3F085b799f3/info.json new file mode 100644 index 00000000..d28da951 --- /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 00000000..2c2ea51a 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 00000000..da400b45 --- /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 00000000..b4cf2ce8 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 00000000..55cfd401 --- /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 00000000..2c7f9149 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 new file mode 100644 index 00000000..b9d1bf66 --- /dev/null +++ b/blockchains/smartchain/assets/0xCB0B74476d72BBBC77f14724a859b2e960Ca1803/info.json @@ -0,0 +1,32 @@ +{ + "name": "Mind Music", + "type": "BEP20", + "symbol": "MND", + "decimals": 9, + "website": "https://mindmusic.finance", + "description": "Mind Music is the world’s first record label to be powered by crypto. 20% of all the profits made from the record label are used to buy & burn the token and increase its value for the holders.", + "explorer": "https://bscscan.com/token/0xCB0B74476d72BBBC77f14724a859b2e960Ca1803", + "status": "active", + "id": "0xCB0B74476d72BBBC77f14724a859b2e960Ca1803", + "links": [ + { + "name": "x", + "url": "https://x.com/mindmusic_bsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mind-music/" + }, + { + "name": "telegram", + "url": "https://t.me/mindmusicbsc" + }, + { + "name": "facebook", + "url": "https://facebook.com/mindmusicbsc" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCB0B74476d72BBBC77f14724a859b2e960Ca1803/logo.png b/blockchains/smartchain/assets/0xCB0B74476d72BBBC77f14724a859b2e960Ca1803/logo.png new file mode 100644 index 00000000..1c88ef40 Binary files /dev/null and b/blockchains/smartchain/assets/0xCB0B74476d72BBBC77f14724a859b2e960Ca1803/logo.png differ diff --git a/blockchains/smartchain/assets/0xCB35e52bEbFE06909C216bE822fa982EfDD60F95/info.json b/blockchains/smartchain/assets/0xCB35e52bEbFE06909C216bE822fa982EfDD60F95/info.json new file mode 100644 index 00000000..d0f7c792 --- /dev/null +++ b/blockchains/smartchain/assets/0xCB35e52bEbFE06909C216bE822fa982EfDD60F95/info.json @@ -0,0 +1,11 @@ +{ + "name": "BabyApe", + "website": "https://babyape.org/", + "description": "Ride the baby wave. You’ve seen baby doge, baby sanshu, and baby kishu, but not baby ape! This is a coin made by apes for apes, and we have big plans in store.", + "explorer": "https://bscscan.com/token/0xCB35e52bEbFE06909C216bE822fa982EfDD60F95", + "type": "BEP20", + "symbol": "BAPE", + "decimals": 9, + "status": "active", + "id": "0xCB35e52bEbFE06909C216bE822fa982EfDD60F95" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCB35e52bEbFE06909C216bE822fa982EfDD60F95/logo.png b/blockchains/smartchain/assets/0xCB35e52bEbFE06909C216bE822fa982EfDD60F95/logo.png new file mode 100644 index 00000000..8c5abd6d Binary files /dev/null and b/blockchains/smartchain/assets/0xCB35e52bEbFE06909C216bE822fa982EfDD60F95/logo.png differ diff --git a/blockchains/smartchain/assets/0xCB6b5d0562bB2ACBd930c3112857E5121A02B522/info.json b/blockchains/smartchain/assets/0xCB6b5d0562bB2ACBd930c3112857E5121A02B522/info.json new file mode 100644 index 00000000..46a65426 --- /dev/null +++ b/blockchains/smartchain/assets/0xCB6b5d0562bB2ACBd930c3112857E5121A02B522/info.json @@ -0,0 +1,11 @@ +{ + "name": "Paynshop", + "type": "BEP20", + "symbol": "PAYNS", + "decimals": 3, + "website": "https://paynshop.store/", + "description": "PaynShop is a ecommerce built on blockchain technology that will offer fantastic value for shoppers and casual purchasers.", + "explorer": "https://bscscan.com/token/0xCB6b5d0562bB2ACBd930c3112857E5121A02B522", + "status": "active", + "id": "0xCB6b5d0562bB2ACBd930c3112857E5121A02B522" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCB6b5d0562bB2ACBd930c3112857E5121A02B522/logo.png b/blockchains/smartchain/assets/0xCB6b5d0562bB2ACBd930c3112857E5121A02B522/logo.png new file mode 100644 index 00000000..78ae2508 Binary files /dev/null and b/blockchains/smartchain/assets/0xCB6b5d0562bB2ACBd930c3112857E5121A02B522/logo.png differ diff --git a/blockchains/smartchain/assets/0xCB7A1Dc3a40FB64eA57D297Cef439A103fc11E66/info.json b/blockchains/smartchain/assets/0xCB7A1Dc3a40FB64eA57D297Cef439A103fc11E66/info.json new file mode 100644 index 00000000..ea9d4637 --- /dev/null +++ b/blockchains/smartchain/assets/0xCB7A1Dc3a40FB64eA57D297Cef439A103fc11E66/info.json @@ -0,0 +1,11 @@ +{ + "name": "MILF", + "website": "https://milf.finance", + "description": "MILF (Mothers I'd Like to Fund) is a decentralized community coin aimed at funding mothers. Visit our community at https://t.me/milffinance_official", + "explorer": "https://bscscan.com/token/0xCB7A1Dc3a40FB64eA57D297Cef439A103fc11E66", + "type": "BEP20", + "symbol": "MILF", + "decimals": 9, + "status": "active", + "id": "0xCB7A1Dc3a40FB64eA57D297Cef439A103fc11E66" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCB7A1Dc3a40FB64eA57D297Cef439A103fc11E66/logo.png b/blockchains/smartchain/assets/0xCB7A1Dc3a40FB64eA57D297Cef439A103fc11E66/logo.png new file mode 100644 index 00000000..496c5494 Binary files /dev/null and b/blockchains/smartchain/assets/0xCB7A1Dc3a40FB64eA57D297Cef439A103fc11E66/logo.png differ diff --git a/blockchains/smartchain/assets/0xCBE5BcA571628894A38836b0baE833ff012f71D8/info.json b/blockchains/smartchain/assets/0xCBE5BcA571628894A38836b0baE833ff012f71D8/info.json new file mode 100644 index 00000000..8784965e --- /dev/null +++ b/blockchains/smartchain/assets/0xCBE5BcA571628894A38836b0baE833ff012f71D8/info.json @@ -0,0 +1,40 @@ +{ + "name": "Infinity Rocket Token", + "type": "BEP20", + "symbol": "IRT", + "decimals": 18, + "website": "https://irocket.pro/", + "description": "Infinity Rocket is a multi-purpose platform that allows you to simplify the launch and promotion of any projects on the blockchain.", + "explorer": "https://bscscan.com/token/0xCBE5BcA571628894A38836b0baE833ff012f71D8", + "status": "active", + "id": "0xCBE5BcA571628894A38836b0baE833ff012f71D8", + "links": [ + { + "name": "x", + "url": "https://x.com/iRocketToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/infinity-rocket-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/infinity-rocket-token" + }, + { + "name": "telegram", + "url": "https://t.me/irocketeng" + }, + { + "name": "whitepaper", + "url": "https://irocket.pro/docs/IRT-WhitePaper-v1.0.0.pdf" + }, + { + "name": "github", + "url": "https://github.com/InfinityRocket" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCBE5BcA571628894A38836b0baE833ff012f71D8/logo.png b/blockchains/smartchain/assets/0xCBE5BcA571628894A38836b0baE833ff012f71D8/logo.png new file mode 100644 index 00000000..1927207a Binary files /dev/null and b/blockchains/smartchain/assets/0xCBE5BcA571628894A38836b0baE833ff012f71D8/logo.png differ diff --git a/blockchains/smartchain/assets/0xCC0d50F79E18AF6D89f36692dB59Aef77E45aFEd/info.json b/blockchains/smartchain/assets/0xCC0d50F79E18AF6D89f36692dB59Aef77E45aFEd/info.json new file mode 100644 index 00000000..71958f27 --- /dev/null +++ b/blockchains/smartchain/assets/0xCC0d50F79E18AF6D89f36692dB59Aef77E45aFEd/info.json @@ -0,0 +1,24 @@ +{ + "name": "PEACOCKCOIN 2.0", + "type": "BEP20", + "symbol": "PEKC", + "decimals": 9, + "website": "https://www.peacockcoin.finance/", + "description": "Peacockcoin is a deflationary yield token on Binance Smart Chain and ETHEREUM Network, with multi-dimensional NFTs.", + "explorer": "https://bscscan.com/token/0xCC0d50F79E18AF6D89f36692dB59Aef77E45aFEd", + "status": "active", + "id": "0xCC0d50F79E18AF6D89f36692dB59Aef77E45aFEd", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/peacockcoin" + }, + { + "name": "telegram", + "url": "https://t.me/peacockcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCC0d50F79E18AF6D89f36692dB59Aef77E45aFEd/logo.png b/blockchains/smartchain/assets/0xCC0d50F79E18AF6D89f36692dB59Aef77E45aFEd/logo.png new file mode 100644 index 00000000..d2665bf4 Binary files /dev/null and b/blockchains/smartchain/assets/0xCC0d50F79E18AF6D89f36692dB59Aef77E45aFEd/logo.png differ diff --git a/blockchains/smartchain/assets/0xCC42724C6683B7E57334c4E856f4c9965ED682bD/info.json b/blockchains/smartchain/assets/0xCC42724C6683B7E57334c4E856f4c9965ED682bD/info.json new file mode 100644 index 00000000..beabfc7c --- /dev/null +++ b/blockchains/smartchain/assets/0xCC42724C6683B7E57334c4E856f4c9965ED682bD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Matic Token", + "symbol": "MATIC", + "type": "BEP20", + "decimals": 18, + "description": "Matic Network is a layer-2 scaling solution that uses sidechains for off-chain computation while ensuring asset security using Plasma framework and a decentralized network of Proof-of-Stake (PoS) vailidators.", + "website": "https://matic.network/", + "explorer": "https://bscscan.com/token/0xcc42724c6683b7e57334c4e856f4c9965ed682bd", + "status": "active", + "id": "0xCC42724C6683B7E57334c4E856f4c9965ED682bD" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCC42724C6683B7E57334c4E856f4c9965ED682bD/logo.png b/blockchains/smartchain/assets/0xCC42724C6683B7E57334c4E856f4c9965ED682bD/logo.png new file mode 100644 index 00000000..68141461 Binary files /dev/null and b/blockchains/smartchain/assets/0xCC42724C6683B7E57334c4E856f4c9965ED682bD/logo.png differ diff --git a/blockchains/smartchain/assets/0xCC5667333F5e997aC9F0C26d41b7ddA65b2b675a/info.json b/blockchains/smartchain/assets/0xCC5667333F5e997aC9F0C26d41b7ddA65b2b675a/info.json new file mode 100644 index 00000000..1cd2c55f --- /dev/null +++ b/blockchains/smartchain/assets/0xCC5667333F5e997aC9F0C26d41b7ddA65b2b675a/info.json @@ -0,0 +1,29 @@ +{ + "name": "GloryDoge", + "website": "https://glorydogecoin.com", + "description": "Building a secure DeFi ecosystem to help bring creative ideas to life and protect early investors' funds.", + "explorer": "https://bscscan.com/token/0xCC5667333F5e997aC9F0C26d41b7ddA65b2b675a", + "type": "BEP20", + "symbol": "GLORYD", + "decimals": 18, + "status": "active", + "id": "0xCC5667333F5e997aC9F0C26d41b7ddA65b2b675a", + "links": [ + { + "name": "x", + "url": "https://x.com/GloryDogeCoin" + }, + { + "name": "telegram", + "url": "https://t.me/GloryDogeCoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/glorydoge" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/glorydoge" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCC5667333F5e997aC9F0C26d41b7ddA65b2b675a/logo.png b/blockchains/smartchain/assets/0xCC5667333F5e997aC9F0C26d41b7ddA65b2b675a/logo.png new file mode 100644 index 00000000..7b106817 Binary files /dev/null and b/blockchains/smartchain/assets/0xCC5667333F5e997aC9F0C26d41b7ddA65b2b675a/logo.png differ diff --git a/blockchains/smartchain/assets/0xCD40F2670CF58720b694968698A5514e924F742d/info.json b/blockchains/smartchain/assets/0xCD40F2670CF58720b694968698A5514e924F742d/info.json new file mode 100644 index 00000000..8ffa5409 --- /dev/null +++ b/blockchains/smartchain/assets/0xCD40F2670CF58720b694968698A5514e924F742d/info.json @@ -0,0 +1,32 @@ +{ + "name": "OddzToken", + "website": "https://oddz.fi/", + "description": "Oddz is the World’s first multi-chain options and derivatives trading protocol to be deployed on the Binance Smart Chain, Polkadot, and Ethereum.", + "explorer": "https://bscscan.com/token/0xCD40F2670CF58720b694968698A5514e924F742d", + "type": "BEP20", + "symbol": "ODDZ", + "decimals": 18, + "status": "active", + "id": "0xCD40F2670CF58720b694968698A5514e924F742d", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/oddz-finance" + }, + { + "name": "x", + "url": "https://x.com/oddz_finance" + }, + { + "name": "telegram", + "url": "https://t.me/oddz_finance" + }, + { + "name": "medium", + "url": "https://medium.com/oddz-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCD40F2670CF58720b694968698A5514e924F742d/logo.png b/blockchains/smartchain/assets/0xCD40F2670CF58720b694968698A5514e924F742d/logo.png new file mode 100644 index 00000000..e80daa2e Binary files /dev/null and b/blockchains/smartchain/assets/0xCD40F2670CF58720b694968698A5514e924F742d/logo.png differ diff --git a/blockchains/smartchain/assets/0xCD89B587A38FCCE8877E558133ef6bf8e0727b91/info.json b/blockchains/smartchain/assets/0xCD89B587A38FCCE8877E558133ef6bf8e0727b91/info.json new file mode 100644 index 00000000..e26db3b9 --- /dev/null +++ b/blockchains/smartchain/assets/0xCD89B587A38FCCE8877E558133ef6bf8e0727b91/info.json @@ -0,0 +1,11 @@ +{ + "name": "HighTechAIBot Token", + "website": "https://htaibot.finance/", + "description": "Htaibot is a community limited, driven, fair launched DeFi Token. Half of supply set for airdrop to holders", + "explorer": "https://bscscan.com/token/0xCD89B587A38FCCE8877E558133ef6bf8e0727b91", + "type": "BEP20", + "symbol": "AIBOT", + "decimals": 18, + "status": "active", + "id": "0xCD89B587A38FCCE8877E558133ef6bf8e0727b91" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCD89B587A38FCCE8877E558133ef6bf8e0727b91/logo.png b/blockchains/smartchain/assets/0xCD89B587A38FCCE8877E558133ef6bf8e0727b91/logo.png new file mode 100644 index 00000000..57365be0 Binary files /dev/null and b/blockchains/smartchain/assets/0xCD89B587A38FCCE8877E558133ef6bf8e0727b91/logo.png differ diff --git a/blockchains/smartchain/assets/0xCD95B05Ebe61244de4dF9c2C4123920F016a06DF/info.json b/blockchains/smartchain/assets/0xCD95B05Ebe61244de4dF9c2C4123920F016a06DF/info.json new file mode 100644 index 00000000..91603ff1 --- /dev/null +++ b/blockchains/smartchain/assets/0xCD95B05Ebe61244de4dF9c2C4123920F016a06DF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rose Finance", + "type": "BEP20", + "symbol": "ROF", + "decimals": 10, + "website": "https://www.roseflower.finance/", + "description": "Rose Finance is a payment protocol for social network designed to be accessible and lightweight, with a focus on reducing transaction fees based on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0xCD95B05Ebe61244de4dF9c2C4123920F016a06DF", + "status": "active", + "id": "0xCD95B05Ebe61244de4dF9c2C4123920F016a06DF" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCD95B05Ebe61244de4dF9c2C4123920F016a06DF/logo.png b/blockchains/smartchain/assets/0xCD95B05Ebe61244de4dF9c2C4123920F016a06DF/logo.png new file mode 100644 index 00000000..f7cad470 Binary files /dev/null and b/blockchains/smartchain/assets/0xCD95B05Ebe61244de4dF9c2C4123920F016a06DF/logo.png differ diff --git a/blockchains/smartchain/assets/0xCD9b26795d834d75867d950898695a30b1Eb17E1/info.json b/blockchains/smartchain/assets/0xCD9b26795d834d75867d950898695a30b1Eb17E1/info.json new file mode 100644 index 00000000..179d5505 --- /dev/null +++ b/blockchains/smartchain/assets/0xCD9b26795d834d75867d950898695a30b1Eb17E1/info.json @@ -0,0 +1,11 @@ +{ + "name": "VIDTC NFT Claim", + "type": "BEP20", + "symbol": "VIDTC", + "decimals": 0, + "website": "https://vidt-datalink.com", + "description": "NFTs for anything digital, verified by VIDT Datalink", + "explorer": "https://bscscan.com/token/0xCD9b26795d834d75867d950898695a30b1Eb17E1", + "status": "active", + "id": "0xCD9b26795d834d75867d950898695a30b1Eb17E1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCD9b26795d834d75867d950898695a30b1Eb17E1/logo.png b/blockchains/smartchain/assets/0xCD9b26795d834d75867d950898695a30b1Eb17E1/logo.png new file mode 100644 index 00000000..093a9b10 Binary files /dev/null and b/blockchains/smartchain/assets/0xCD9b26795d834d75867d950898695a30b1Eb17E1/logo.png differ diff --git a/blockchains/smartchain/assets/0xCDB943908DE5Ee37998a53f23467017d1A307E60/info.json b/blockchains/smartchain/assets/0xCDB943908DE5Ee37998a53f23467017d1A307E60/info.json new file mode 100644 index 00000000..88917cb9 --- /dev/null +++ b/blockchains/smartchain/assets/0xCDB943908DE5Ee37998a53f23467017d1A307E60/info.json @@ -0,0 +1,25 @@ +{ + "name": "Son of Doge V2", + "website": "https://www.sonofdogev2.com/", + "description": "SON aims to build a sustainable, long term token that will drive an NFT market place.", + "explorer": "https://bscscan.com/token/0xCDB943908DE5Ee37998a53f23467017d1A307E60", + "type": "BEP20", + "symbol": "SODV2", + "decimals": 9, + "status": "active", + "id": "0xCDB943908DE5Ee37998a53f23467017d1A307E60", + "links": [ + { + "name": "x", + "url": "https://x.com/SonOfDogev2" + }, + { + "name": "telegram", + "url": "https://t.me/SonOfDogeV2" + }, + { + "name": "facebook", + "url": "https://facebook.com/SonOfDoge" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCDB943908DE5Ee37998a53f23467017d1A307E60/logo.png b/blockchains/smartchain/assets/0xCDB943908DE5Ee37998a53f23467017d1A307E60/logo.png new file mode 100644 index 00000000..a89b308d Binary files /dev/null and b/blockchains/smartchain/assets/0xCDB943908DE5Ee37998a53f23467017d1A307E60/logo.png differ diff --git a/blockchains/smartchain/assets/0xCE0466Bae0e867239719dC386CA84b1F3eFE6914/info.json b/blockchains/smartchain/assets/0xCE0466Bae0e867239719dC386CA84b1F3eFE6914/info.json new file mode 100644 index 00000000..ebab522b --- /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 00000000..a680bccc 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 00000000..f1a0ca96 --- /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 00000000..0d2288e0 Binary files /dev/null and b/blockchains/smartchain/assets/0xCE13951DdC789ca61D80142Daff472f898D3d2bC/logo.png differ diff --git a/blockchains/smartchain/assets/0xCE195c777e1ce96C30ebeC54C91d20417a068706/info.json b/blockchains/smartchain/assets/0xCE195c777e1ce96C30ebeC54C91d20417a068706/info.json new file mode 100644 index 00000000..354a1c96 --- /dev/null +++ b/blockchains/smartchain/assets/0xCE195c777e1ce96C30ebeC54C91d20417a068706/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hugo Finance", + "website": "https://www.hugo.finance/", + "description": "Hugo is a DeFi Token on the Binance Smart Chain which will be used on a Decentralized Platform where holders votes matter to shape the future of the platform.", + "explorer": "https://bscscan.com/token/0xce195c777e1ce96c30ebec54c91d20417a068706", + "type": "BEP20", + "symbol": "HUGO", + "decimals": 9, + "status": "active", + "id": "0xCE195c777e1ce96C30ebeC54C91d20417a068706" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCE195c777e1ce96C30ebeC54C91d20417a068706/logo.png b/blockchains/smartchain/assets/0xCE195c777e1ce96C30ebeC54C91d20417a068706/logo.png new file mode 100644 index 00000000..b13fbde5 Binary files /dev/null and b/blockchains/smartchain/assets/0xCE195c777e1ce96C30ebeC54C91d20417a068706/logo.png differ diff --git a/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/info.json b/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/info.json new file mode 100644 index 00000000..15dfe7ad --- /dev/null +++ b/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/info.json @@ -0,0 +1,44 @@ +{ + "name": "Thoreum V4 (Thoreum.AI)", + "website": "https://thoreum.capital/", + "description": "THOREUM v4 is upgraded from Thoreum V3 with even more deflationary and value building features: AI Powered Collective Burning, Deepening liquidity and Liquidity Arbitrage Mechanism", + "explorer": "https://bscscan.com/token/0xCE1b3e5087e8215876aF976032382dd338cF8401", + "type": "BEP20", + "symbol": "THOREUMv4", + "decimals": 18, + "status": "active", + "id": "0xCE1b3e5087e8215876aF976032382dd338cF8401", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ThoreumFinance" + }, + { + "name": "telegram", + "url": "https://t.me/Thoreum" + }, + { + "name": "docs", + "url": "https://docs.thoreum.capital/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Thoreum_official/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UChv01NIAIwQm4gmJuSGd49Q" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/thoreum-v2/" + }, + { + "name": "github", + "url": "https://github.com/ThoreumFinance/ThoreumCapital" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/logo.png b/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/logo.png new file mode 100644 index 00000000..262a5caf Binary files /dev/null and b/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/logo.png differ diff --git a/blockchains/smartchain/assets/0xCE262761DF57c72999146b7A6a752da03835db4a/info.json b/blockchains/smartchain/assets/0xCE262761DF57c72999146b7A6a752da03835db4a/info.json new file mode 100644 index 00000000..4ff0737d --- /dev/null +++ b/blockchains/smartchain/assets/0xCE262761DF57c72999146b7A6a752da03835db4a/info.json @@ -0,0 +1,53 @@ +{ + "name": "Mu Continent", + "website": "https://www.mucoin.us", + "description": "A sustainable economic model with Vaults, Hold and Earn, and Black Hole design.", + "explorer": "https://bscscan.com/token/0xce262761df57c72999146b7a6a752da03835db4a", + "type": "BEP20", + "symbol": "MU", + "decimals": 9, + "status": "active", + "id": "0xCE262761DF57c72999146b7A6a752da03835db4a", + "links": [ + { + "name": "x", + "url": "https://x.com/MUConFinTech" + }, + { + "name": "github", + "url": "https://github.com/MuConFinTech" + }, + { + "name": "telegram", + "url": "https://t.me/mucontinent" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCbXy0g1sIMP2ZEvfeloF1dw" + }, + { + "name": "medium", + "url": "https://mucommunity.medium.com" + }, + { + "name": "telegram_news", + "url": "https://t.me/MuContinentANN" + }, + { + "name": "whitepaper", + "url": "https://mucoin.us/whitepaper/" + }, + { + "name": "source_code", + "url": "https://github.com/MuConFinTech/Mu/blob/main/MuSmartContract.sol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mu-continent" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mu-continent" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCE262761DF57c72999146b7A6a752da03835db4a/logo.png b/blockchains/smartchain/assets/0xCE262761DF57c72999146b7A6a752da03835db4a/logo.png new file mode 100644 index 00000000..f56d13c6 Binary files /dev/null and b/blockchains/smartchain/assets/0xCE262761DF57c72999146b7A6a752da03835db4a/logo.png differ diff --git a/blockchains/smartchain/assets/0xCE393C06594A5D91210Fd4f157Cd8F6D86006D57/info.json b/blockchains/smartchain/assets/0xCE393C06594A5D91210Fd4f157Cd8F6D86006D57/info.json new file mode 100644 index 00000000..2bfc5d7f --- /dev/null +++ b/blockchains/smartchain/assets/0xCE393C06594A5D91210Fd4f157Cd8F6D86006D57/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aqua Pig", + "type": "BEP20", + "symbol": "AquaPig", + "decimals": 9, + "website": "https://www.aquapig.space/", + "description": "AQUAPIG is all of us! This project was born out of a spirit of community and coming together, to help each other navigate the murky waters of the crypto world, and have fun at the same time! A true community led project is transparent, open to suggestion, considerate of criticism, and ready to meet the needs and exceed the expectations of those it serves. We hope that after looking at our road map and engaging with our community that you will join us on this journey.", + "explorer": "https://bscscan.com/token/0xCE393C06594A5D91210Fd4f157Cd8F6D86006D57", + "status": "active", + "id": "0xCE393C06594A5D91210Fd4f157Cd8F6D86006D57" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCE393C06594A5D91210Fd4f157Cd8F6D86006D57/logo.png b/blockchains/smartchain/assets/0xCE393C06594A5D91210Fd4f157Cd8F6D86006D57/logo.png new file mode 100644 index 00000000..102e499a Binary files /dev/null and b/blockchains/smartchain/assets/0xCE393C06594A5D91210Fd4f157Cd8F6D86006D57/logo.png differ diff --git a/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/info.json b/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/info.json new file mode 100644 index 00000000..11a4bf9b --- /dev/null +++ b/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/info.json @@ -0,0 +1,52 @@ +{ + "name": "Bobcoin", + "type": "BEP20", + "symbol": "BOBC", + "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", + "status": "active", + "id": "0xCE6bD1833BD077f62B2c1F9a777bB829801d6811", + "links": [ + { + "name": "x", + "url": "https://x.com/" + }, + { + "name": "telegram", + "url": "https://t.me/bobEco" + }, + { + "name": "blog", + "url": "https://bob.eco/news" + }, + { + "name": "medium", + "url": "https://medium.com/@BobEco" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bobcoin" + }, + { + "name": "source_code", + "url": "https://github.com/CryptoMechanics/bobc-token" + }, + { + "name": "facebook", + "url": "https://facebook.com/Bobecoltd" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bobcoin/" + }, + { + "name": "whitepaper", + "url": "https://bob.eco/Bob_eco_Whitepaper.pdf" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/logo.png b/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/logo.png new file mode 100644 index 00000000..991a7435 Binary files /dev/null and b/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/logo.png differ diff --git a/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/info.json b/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/info.json new file mode 100644 index 00000000..3f8a98d0 --- /dev/null +++ b/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/info.json @@ -0,0 +1,33 @@ +{ + "name": "TRON", + "type": "BEP20", + "symbol": "TRX", + "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", + "status": "active", + "id": "0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3", + "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/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/logo.png b/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/logo.png new file mode 100644 index 00000000..74ec9785 Binary files /dev/null and b/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/logo.png differ diff --git a/blockchains/smartchain/assets/0xCF2aDB160d78528127Df3ba471Cb3Ede0f06b99e/info.json b/blockchains/smartchain/assets/0xCF2aDB160d78528127Df3ba471Cb3Ede0f06b99e/info.json new file mode 100644 index 00000000..34ec4238 --- /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 00000000..b2d4e3f9 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 00000000..5a9ff2a3 --- /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 00000000..4d148ee9 Binary files /dev/null and b/blockchains/smartchain/assets/0xCF3E84E62002ca459Db81B2032d7Fe13715BAd51/logo.png differ diff --git a/blockchains/smartchain/assets/0xCF9f991b14620f5ad144Eec11f9bc7Bf08987622/info.json b/blockchains/smartchain/assets/0xCF9f991b14620f5ad144Eec11f9bc7Bf08987622/info.json new file mode 100644 index 00000000..5532e86e --- /dev/null +++ b/blockchains/smartchain/assets/0xCF9f991b14620f5ad144Eec11f9bc7Bf08987622/info.json @@ -0,0 +1,11 @@ +{ + "name": "PORNROCKET", + "website": "https://pornrocket.co/", + "description": "$PORNROCKET is revolutionizing the way adult entertainers share their saucy content with their fans and monetize their influence through a subscription based offering.", + "explorer": "https://bscscan.com/token/0xcf9f991b14620f5ad144eec11f9bc7bf08987622", + "type": "BEP20", + "symbol": "PORNROCKET", + "decimals": 9, + "status": "active", + "id": "0xCF9f991b14620f5ad144Eec11f9bc7Bf08987622" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCF9f991b14620f5ad144Eec11f9bc7Bf08987622/logo.png b/blockchains/smartchain/assets/0xCF9f991b14620f5ad144Eec11f9bc7Bf08987622/logo.png new file mode 100644 index 00000000..07fc4dd5 Binary files /dev/null and b/blockchains/smartchain/assets/0xCF9f991b14620f5ad144Eec11f9bc7Bf08987622/logo.png differ diff --git a/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/info.json b/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/info.json new file mode 100644 index 00000000..a80766aa --- /dev/null +++ b/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/info.json @@ -0,0 +1,33 @@ +{ + "name": "beefy.finance", + "website": "https://beefy.finance/", + "description": "The Multichain Yield Optimizer", + "explorer": "https://bscscan.com/token/0xCa3F508B8e4Dd382eE878A314789373D80A5190A", + "type": "BEP20", + "symbol": "BIFI", + "decimals": 18, + "status": "abandoned", + "id": "0xCa3F508B8e4Dd382eE878A314789373D80A5190A", + "links": [ + { + "name": "github", + "url": "https://github.com/beefyfinance" + }, + { + "name": "x", + "url": "https://x.com/beefyfinance" + }, + { + "name": "telegram", + "url": "https://t.me/beefyannouncement" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/beefy-finance/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/beefy-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCa3a5c955F1F01f20aAcF9501B03E4aa235e478B/info.json b/blockchains/smartchain/assets/0xCa3a5c955F1F01f20aAcF9501B03E4aa235e478B/info.json new file mode 100644 index 00000000..19f98fa3 --- /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 00000000..cc54cd49 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 new file mode 100644 index 00000000..9951a0ce --- /dev/null +++ b/blockchains/smartchain/assets/0xCa578afEe65FD2268D383f8Fc4a9fc6Ae1d2Def0/info.json @@ -0,0 +1,33 @@ +{ + "name": "Fairmoon", + "type": "BEP20", + "symbol": "FAIR", + "decimals": 9, + "website": "https://fairmoon.community/", + "description": "Fairmoon’s native BEP-20 token $FAIR is a hybrid utility token. It is both a community-owned deflationary frictionless yield token and a launchpad platform token for participating in IDO launch tiers. Passive income and liquidity generation are built into the smart contract to allow token holders to effortlessly gain more tokens automatically.", + "explorer": "https://bscscan.com/token/0xCa578afEe65FD2268D383f8Fc4a9fc6Ae1d2Def0", + "status": "active", + "id": "0xCa578afEe65FD2268D383f8Fc4a9fc6Ae1d2Def0", + "links": [ + { + "name": "x", + "url": "https://x.com/fairmooncoin" + }, + { + "name": "telegram", + "url": "https://t.me/fairmooncoin" + }, + { + "name": "discord", + "url": "https://discord.com/invite/RhCfUMsYVa" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/fairmoon" + }, + { + "name": "medium", + "url": "https://fairmoon.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCa578afEe65FD2268D383f8Fc4a9fc6Ae1d2Def0/logo.png b/blockchains/smartchain/assets/0xCa578afEe65FD2268D383f8Fc4a9fc6Ae1d2Def0/logo.png new file mode 100644 index 00000000..b76f7272 Binary files /dev/null and b/blockchains/smartchain/assets/0xCa578afEe65FD2268D383f8Fc4a9fc6Ae1d2Def0/logo.png differ diff --git a/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/info.json b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/info.json new file mode 100644 index 00000000..55df35ca --- /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 00000000..a3fb80da Binary files /dev/null and b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/logo.png differ diff --git a/blockchains/smartchain/assets/0xCaC9881a8EeCc6e98Ff3E681Ab497F263Fa88437/info.json b/blockchains/smartchain/assets/0xCaC9881a8EeCc6e98Ff3E681Ab497F263Fa88437/info.json new file mode 100644 index 00000000..ace9e4e9 --- /dev/null +++ b/blockchains/smartchain/assets/0xCaC9881a8EeCc6e98Ff3E681Ab497F263Fa88437/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitcoinX Token", + "type": "BEP20", + "symbol": "BTCX", + "decimals": 9, + "website": "https://bitcoinx.today/", + "description": "BitcoinX is the new version of Bitcoin. BitcoinX is completely decentralized, and it's thriving community owns it. Bitcoin tax is 6% - 3% sent to all holders and 3% added to the liquidity. Liquidity is locked for 25years", + "explorer": "https://bscscan.com/token/0xCaC9881a8EeCc6e98Ff3E681Ab497F263Fa88437", + "status": "active", + "id": "0xCaC9881a8EeCc6e98Ff3E681Ab497F263Fa88437" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCaC9881a8EeCc6e98Ff3E681Ab497F263Fa88437/logo.png b/blockchains/smartchain/assets/0xCaC9881a8EeCc6e98Ff3E681Ab497F263Fa88437/logo.png new file mode 100644 index 00000000..0e6e5820 Binary files /dev/null and b/blockchains/smartchain/assets/0xCaC9881a8EeCc6e98Ff3E681Ab497F263Fa88437/logo.png differ diff --git a/blockchains/smartchain/assets/0xCaE755389BEe1b066F4713f3909983B48161aE2E/info.json b/blockchains/smartchain/assets/0xCaE755389BEe1b066F4713f3909983B48161aE2E/info.json new file mode 100644 index 00000000..f0d804c7 --- /dev/null +++ b/blockchains/smartchain/assets/0xCaE755389BEe1b066F4713f3909983B48161aE2E/info.json @@ -0,0 +1,11 @@ +{ + "name": "NanoDOGEToken", + "website": "https://nanodoge.io", + "description": "NanoDOGE is a community based token with automatic buy-backs and reflections to all holders", + "explorer": "https://bscscan.com/token/0xCaE755389BEe1b066F4713f3909983B48161aE2E", + "type": "BEP20", + "symbol": "NanoDOGE", + "decimals": 9, + "status": "active", + "id": "0xCaE755389BEe1b066F4713f3909983B48161aE2E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCaE755389BEe1b066F4713f3909983B48161aE2E/logo.png b/blockchains/smartchain/assets/0xCaE755389BEe1b066F4713f3909983B48161aE2E/logo.png new file mode 100644 index 00000000..eef13b6f Binary files /dev/null and b/blockchains/smartchain/assets/0xCaE755389BEe1b066F4713f3909983B48161aE2E/logo.png differ diff --git a/blockchains/smartchain/assets/0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5/info.json b/blockchains/smartchain/assets/0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5/info.json new file mode 100644 index 00000000..4a0e99fb --- /dev/null +++ b/blockchains/smartchain/assets/0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5/info.json @@ -0,0 +1,36 @@ +{ + "name": "DecentralizedUnited", + "type": "BEP20", + "symbol": "DCU", + "decimals": 9, + "website": "https://dcu.finance/", + "description": "Decentralized United aims to unite the Defi space with its unique utilities and games, which makes it a one stop shop with our Trade to Earn Smart Swap, Anon Bridge and Root Layer Yielding utilities.", + "explorer": "https://bscscan.com/token/0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5", + "status": "active", + "id": "0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5", + "links": [ + { + "name": "x", + "url": "https://x.com/DCUsmartswap" + }, + { + "name": "telegram", + "url": "https://t.me/DecentralizedUnited" + }, + { + "name": "discord", + "url": "https://discord.com/X4Q83ppwkZ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/decentralizedunited/" + }, + { + "name": "facebook", + "url": "https://facebook.com/groups/391197236447689" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5/logo.png b/blockchains/smartchain/assets/0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5/logo.png new file mode 100644 index 00000000..12fcb92a Binary files /dev/null and b/blockchains/smartchain/assets/0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5/logo.png differ diff --git a/blockchains/smartchain/assets/0xCb87Cee8c77CdFD310fb3C58ff72e688d46f90b1/info.json b/blockchains/smartchain/assets/0xCb87Cee8c77CdFD310fb3C58ff72e688d46f90b1/info.json new file mode 100644 index 00000000..837fc6c8 --- /dev/null +++ b/blockchains/smartchain/assets/0xCb87Cee8c77CdFD310fb3C58ff72e688d46f90b1/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream Bitcoin Cash Token", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0xCb87Cee8c77CdFD310fb3C58ff72e688d46f90b1", + "type": "BEP20", + "symbol": "crBCH", + "decimals": 8, + "status": "active", + "id": "0xCb87Cee8c77CdFD310fb3C58ff72e688d46f90b1", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCb87Cee8c77CdFD310fb3C58ff72e688d46f90b1/logo.png b/blockchains/smartchain/assets/0xCb87Cee8c77CdFD310fb3C58ff72e688d46f90b1/logo.png new file mode 100644 index 00000000..b5e7ed24 Binary files /dev/null and b/blockchains/smartchain/assets/0xCb87Cee8c77CdFD310fb3C58ff72e688d46f90b1/logo.png differ diff --git a/blockchains/smartchain/assets/0xCd1fAFf6e578Fa5cAC469d2418C95671bA1a62Fe/info.json b/blockchains/smartchain/assets/0xCd1fAFf6e578Fa5cAC469d2418C95671bA1a62Fe/info.json new file mode 100644 index 00000000..5a6f240f --- /dev/null +++ b/blockchains/smartchain/assets/0xCd1fAFf6e578Fa5cAC469d2418C95671bA1a62Fe/info.json @@ -0,0 +1,56 @@ +{ + "name": "Torum", + "type": "BEP20", + "symbol": "XTM", + "decimals": 18, + "website": "https://intro.torum.com", + "description": "Torum is a SocialFi ecosystem (Social + NFT + DeFi + Metaverse) that is specially designed to connect cryptocurrency users", + "explorer": "https://bscscan.com/token/0xCd1fAFf6e578Fa5cAC469d2418C95671bA1a62Fe", + "status": "active", + "id": "0xCd1fAFf6e578Fa5cAC469d2418C95671bA1a62Fe", + "links": [ + { + "name": "x", + "url": "https://x.com/torum_official/" + }, + { + "name": "telegram", + "url": "https://t.me/torum_official_group_en" + }, + { + "name": "telegram_news", + "url": "https://t.me/torum_official" + }, + { + "name": "discord", + "url": "https://discord.com/torum" + }, + { + "name": "reddit", + "url": "https://reddit.com/torumtech/" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.s3.us-east-2.amazonaws.com/torum-whitepaper-V4.0-EN.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/torum-official" + }, + { + "name": "facebook", + "url": "https://facebook.com/torum.official/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/torum/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/torum" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCd1fAFf6e578Fa5cAC469d2418C95671bA1a62Fe/logo.png b/blockchains/smartchain/assets/0xCd1fAFf6e578Fa5cAC469d2418C95671bA1a62Fe/logo.png new file mode 100644 index 00000000..5ff013c2 Binary files /dev/null and b/blockchains/smartchain/assets/0xCd1fAFf6e578Fa5cAC469d2418C95671bA1a62Fe/logo.png differ diff --git a/blockchains/smartchain/assets/0xCd2eCd5e06b1a330789B30e8AdA3D11c51503a71/info.json b/blockchains/smartchain/assets/0xCd2eCd5e06b1a330789B30e8AdA3D11c51503a71/info.json new file mode 100644 index 00000000..1c748ec4 --- /dev/null +++ b/blockchains/smartchain/assets/0xCd2eCd5e06b1a330789B30e8AdA3D11c51503a71/info.json @@ -0,0 +1,11 @@ +{ + "name": "Piggy Bank Token", + "type": "BEP20", + "symbol": "PIGGY", + "decimals": 9, + "website": "https://piggybanktoken.com/", + "description": "PiggyBankToken is a fair launched, hyper-deflationary DeFi token on the Binance Smart Chain Network.", + "explorer": "https://bscscan.com/token/0xcd2ecd5e06b1a330789b30e8ada3d11c51503a71", + "status": "active", + "id": "0xCd2eCd5e06b1a330789B30e8AdA3D11c51503a71" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCd2eCd5e06b1a330789B30e8AdA3D11c51503a71/logo.png b/blockchains/smartchain/assets/0xCd2eCd5e06b1a330789B30e8AdA3D11c51503a71/logo.png new file mode 100644 index 00000000..676eabd6 Binary files /dev/null and b/blockchains/smartchain/assets/0xCd2eCd5e06b1a330789B30e8AdA3D11c51503a71/logo.png differ diff --git a/blockchains/smartchain/assets/0xCd77880edea8E7D1f2be011BE560B45B96Ba68Ad/info.json b/blockchains/smartchain/assets/0xCd77880edea8E7D1f2be011BE560B45B96Ba68Ad/info.json new file mode 100644 index 00000000..0d98a6c1 --- /dev/null +++ b/blockchains/smartchain/assets/0xCd77880edea8E7D1f2be011BE560B45B96Ba68Ad/info.json @@ -0,0 +1,11 @@ +{ + "name": "PAPP Mobile", + "type": "BEP20", + "symbol": "PAPP", + "decimals": 18, + "website": "https://pappmobile.com/", + "description": "PAPP Mobile ($PAPP) is a BEP20 token issued on the Binance Smart Chain with a fixed supply of 1 Trillion tokens in total. PAPP's bravest goal to offer an alternative payment tool to all mobile application developers and users of the world.", + "explorer": "https://bscscan.com/token/0xCd77880edea8E7D1f2be011BE560B45B96Ba68Ad", + "status": "active", + "id": "0xCd77880edea8E7D1f2be011BE560B45B96Ba68Ad" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCd77880edea8E7D1f2be011BE560B45B96Ba68Ad/logo.png b/blockchains/smartchain/assets/0xCd77880edea8E7D1f2be011BE560B45B96Ba68Ad/logo.png new file mode 100644 index 00000000..cbb21c72 Binary files /dev/null and b/blockchains/smartchain/assets/0xCd77880edea8E7D1f2be011BE560B45B96Ba68Ad/logo.png differ diff --git a/blockchains/smartchain/assets/0xCdcaef3cE3a138C47ddB0B04a9b04649c13D50Ed/info.json b/blockchains/smartchain/assets/0xCdcaef3cE3a138C47ddB0B04a9b04649c13D50Ed/info.json new file mode 100644 index 00000000..442f0921 --- /dev/null +++ b/blockchains/smartchain/assets/0xCdcaef3cE3a138C47ddB0B04a9b04649c13D50Ed/info.json @@ -0,0 +1,64 @@ +{ + "name": "Mystery", + "type": "BEP20", + "symbol": "MYST", + "decimals": 9, + "website": "https://mysterbox.io", + "description": "We are a strong mysterious community based project focused on having fun, giveaways, donations, and building strong utilities.", + "explorer": "https://bscscan.com/token/0xcdcaef3ce3a138c47ddb0b04a9b04649c13d50ed", + "status": "active", + "id": "0xCdcaef3cE3a138C47ddB0B04a9b04649c13D50Ed", + "links": [ + { + "name": "x", + "url": "https://x.com/mysterbox_io" + }, + { + "name": "github", + "url": "https://github.com/mysterboxio/Mystery" + }, + { + "name": "telegram", + "url": "https://t.me/mysterbox_io" + }, + { + "name": "telegram_news", + "url": "https://t.me/Mysterycryptoannouncements" + }, + { + "name": "discord", + "url": "https://discord.com/DjwzVkyG" + }, + { + "name": "whitepaper", + "url": "https://mysterbox.io/pdfviewer/whitepaper" + }, + { + "name": "medium", + "url": "https://medium.com/@MysterBox_io" + }, + { + "name": "reddit", + "url": "https://reddit.com/MysteryCrypto" + }, + { + "name": "facebook", + "url": "https://facebook.com/mysterboxio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mystery" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mystery" + }, + { + "name": "source_code", + "url": "https://github.com/mysterboxio/Mystery/blob/main/Mystery%20Source%20Code.sol" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCdcaef3cE3a138C47ddB0B04a9b04649c13D50Ed/logo.png b/blockchains/smartchain/assets/0xCdcaef3cE3a138C47ddB0B04a9b04649c13D50Ed/logo.png new file mode 100644 index 00000000..36f0ce5c Binary files /dev/null and b/blockchains/smartchain/assets/0xCdcaef3cE3a138C47ddB0B04a9b04649c13D50Ed/logo.png differ diff --git a/blockchains/smartchain/assets/0xCe5814eFfF15D53EFd8025B9F2006D4d7D640b9B/info.json b/blockchains/smartchain/assets/0xCe5814eFfF15D53EFd8025B9F2006D4d7D640b9B/info.json new file mode 100644 index 00000000..1cec3c12 --- /dev/null +++ b/blockchains/smartchain/assets/0xCe5814eFfF15D53EFd8025B9F2006D4d7D640b9B/info.json @@ -0,0 +1,25 @@ +{ + "name": "MoonStar", + "website": "https://moonstartoken.com/", + "description": "MOONSTAR is a stealth launched, community driven, DeFi Token programmed to reward holders through its frictionless yield and liquidity generation protocol.", + "explorer": "https://bscscan.com/token/0xce5814efff15d53efd8025b9f2006d4d7d640b9b", + "type": "BEP20", + "symbol": "MOONSTAR", + "decimals": 9, + "status": "active", + "id": "0xCe5814eFfF15D53EFd8025B9F2006D4d7D640b9B", + "links": [ + { + "name": "x", + "url": "https://x.com/MoonStarToken/" + }, + { + "name": "telegram", + "url": "https://t.me/moonstarchat/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bnVZC6JScn/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCe5814eFfF15D53EFd8025B9F2006D4d7D640b9B/logo.png b/blockchains/smartchain/assets/0xCe5814eFfF15D53EFd8025B9F2006D4d7D640b9B/logo.png new file mode 100644 index 00000000..598ed604 Binary files /dev/null and b/blockchains/smartchain/assets/0xCe5814eFfF15D53EFd8025B9F2006D4d7D640b9B/logo.png differ diff --git a/blockchains/smartchain/assets/0xCed0CE92F4bdC3c2201E255FAF12f05cf8206dA8/info.json b/blockchains/smartchain/assets/0xCed0CE92F4bdC3c2201E255FAF12f05cf8206dA8/info.json new file mode 100644 index 00000000..0120975f --- /dev/null +++ b/blockchains/smartchain/assets/0xCed0CE92F4bdC3c2201E255FAF12f05cf8206dA8/info.json @@ -0,0 +1,26 @@ +{ + "name": "Orakuru", + "website": "https://orakuru.io/", + "description": "The Orakuru (ora-ku-ru) is Binance Smart Chain’s community owned and operated Oracle. A trustless feed of prices and off-chain data powering the 3.0. Unstoppable, all-seeing.", + "symbol": "ORK", + "type": "BEP20", + "decimals": 18, + "status": "active", + "explorer": "https://bscscan.com/token/0xCed0CE92F4bdC3c2201E255FAF12f05cf8206dA8", + "id": "0xCed0CE92F4bdC3c2201E255FAF12f05cf8206dA8", + "tags": [], + "links": [ + { + "name": "github", + "url": "https://github.com/orakurudata" + }, + { + "name": "x", + "url": "https://x.com/orakuru_ork" + }, + { + "name": "whitepaper", + "url": "https://orakuru.io/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCed0CE92F4bdC3c2201E255FAF12f05cf8206dA8/logo.png b/blockchains/smartchain/assets/0xCed0CE92F4bdC3c2201E255FAF12f05cf8206dA8/logo.png new file mode 100644 index 00000000..324a9948 Binary files /dev/null and b/blockchains/smartchain/assets/0xCed0CE92F4bdC3c2201E255FAF12f05cf8206dA8/logo.png differ diff --git a/blockchains/smartchain/assets/0xCf10117b30C7a5FC7C77B611bFC2555610DD4B3A/info.json b/blockchains/smartchain/assets/0xCf10117b30C7a5FC7C77B611bFC2555610DD4B3A/info.json new file mode 100644 index 00000000..98e03025 --- /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 00000000..7f1f58d8 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 00000000..8e248359 --- /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 00000000..af466179 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 new file mode 100644 index 00000000..c0d8d830 --- /dev/null +++ b/blockchains/smartchain/assets/0xD00A7EdD637B776eC5a6461F5e7ac055F14a0C1E/info.json @@ -0,0 +1,29 @@ +{ + "name": "ShibaZilla", + "website": "https://shibazillatoken.com", + "description": "SHIBZILLA is a METAVERSE token which rewards you with $SHIB", + "explorer": "https://bscscan.com/token/0xD00A7EdD637B776eC5a6461F5e7ac055F14a0C1E", + "type": "BEP20", + "symbol": "SHIBAZ", + "decimals": 4, + "status": "active", + "id": "0xD00A7EdD637B776eC5a6461F5e7ac055F14a0C1E", + "links": [ + { + "name": "github", + "url": "https://github.com/ShibaZilla" + }, + { + "name": "x", + "url": "https://x.com/ShibZillaBSC" + }, + { + "name": "telegram", + "url": "https://t.me/shibzillaofficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SHIBZILLABSC" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD00A7EdD637B776eC5a6461F5e7ac055F14a0C1E/logo.png b/blockchains/smartchain/assets/0xD00A7EdD637B776eC5a6461F5e7ac055F14a0C1E/logo.png new file mode 100644 index 00000000..91481322 Binary files /dev/null and b/blockchains/smartchain/assets/0xD00A7EdD637B776eC5a6461F5e7ac055F14a0C1E/logo.png differ diff --git a/blockchains/smartchain/assets/0xD0194F0f077968DA8ca59811e9407f54AE6c9432/info.json b/blockchains/smartchain/assets/0xD0194F0f077968DA8ca59811e9407f54AE6c9432/info.json new file mode 100644 index 00000000..cc392c9d --- /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 00000000..3e6a522c 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 new file mode 100644 index 00000000..ebf217c7 --- /dev/null +++ b/blockchains/smartchain/assets/0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b/info.json @@ -0,0 +1,33 @@ +{ + "name": "MiniFootball", + "type": "BEP20", + "symbol": "MiniFootball", + "decimals": 9, + "website": "https://minifootballtoken.com", + "description": "MiniFootball is a new crypto that combines the greatest fans from Football and Doge, creating the greatest community in the world!", + "explorer": "https://bscscan.com/token/0xd024ac1195762f6f13f8cfdf3cdd2c97b33b248b", + "status": "active", + "id": "0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b", + "links": [ + { + "name": "x", + "url": "https://x.com/minifootballbsc" + }, + { + "name": "telegram", + "url": "https://t.me/minifootballtoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/minifootball/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/minifootball/" + } + ], + "tags": [ + "gamefi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b/logo.png b/blockchains/smartchain/assets/0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b/logo.png new file mode 100644 index 00000000..871e542f Binary files /dev/null and b/blockchains/smartchain/assets/0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b/logo.png differ diff --git a/blockchains/smartchain/assets/0xD029B392580d555F35CCa1987f27D248cF883716/info.json b/blockchains/smartchain/assets/0xD029B392580d555F35CCa1987f27D248cF883716/info.json new file mode 100644 index 00000000..9f877a17 --- /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 00000000..c022dad5 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 00000000..dab9bc56 --- /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 00000000..1ba6eba7 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 new file mode 100644 index 00000000..79cfb357 --- /dev/null +++ b/blockchains/smartchain/assets/0xD05A0c5C68ACba9AA9952fA65189038840752977/info.json @@ -0,0 +1,49 @@ +{ + "name": "ZillaMatrix", + "website": "https://zillamatrix.com/", + "description": "A rebase token, born to be unleashed and destined to reign in the ZillaMatrix.", + "explorer": "https://bscscan.com/token/0xd05a0c5c68acba9aa9952fa65189038840752977", + "type": "BEP20", + "symbol": "ZMAX", + "decimals": 2, + "status": "active", + "id": "0xD05A0c5C68ACba9AA9952fA65189038840752977", + "links": [ + { + "name": "github", + "url": "https://github.com/monkey-shanti/ZillaMatrix/" + }, + { + "name": "x", + "url": "https://x.com/zillamatrix" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ZillaMatrixBsc/" + }, + { + "name": "medium", + "url": "https://medium.com/@ZillaMatrix" + }, + { + "name": "facebook", + "url": "https://facebook.com/ZillaMatrix-111312108032120" + }, + { + "name": "discord", + "url": "https://discord.com/invite/kU2z3KsrkZ" + }, + { + "name": "whitepaper", + "url": "https://dropbox.com/s/rv9yezsua2gdltx/ZillaMatrix%20WhitePaper%20v1.pdf?dl=0" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zillamatrix/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zillamatrix" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD05A0c5C68ACba9AA9952fA65189038840752977/logo.png b/blockchains/smartchain/assets/0xD05A0c5C68ACba9AA9952fA65189038840752977/logo.png new file mode 100644 index 00000000..127bada9 Binary files /dev/null and b/blockchains/smartchain/assets/0xD05A0c5C68ACba9AA9952fA65189038840752977/logo.png differ diff --git a/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/info.json b/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/info.json new file mode 100644 index 00000000..4213354d --- /dev/null +++ b/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/info.json @@ -0,0 +1,48 @@ +{ + "name": "Magpie Token", + "type": "BEP20", + "symbol": "MGP", + "decimals": 18, + "website": "https://www.magpiexyz.io/", + "description": "Magpie XYZ is a platform built on BNB Chain to boost yields for liquidity providers and governance token holders of veTokenomics protocols. Essentially the platform incentivizes governance token holders and liquidity providers to pool their assets together so that the platform can acquire governance tokens, convert into veTokens, boost yield for liquidity providers, and in return share part of protocol revenues derived from liquidity providers’ boosted profits back to governance token holders.", + "explorer": "https://bscscan.com/token/0xd06716e1ff2e492cc5034c2e81805562dd3b45fa", + "status": "active", + "id": "0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa", + "links": [ + { + "name": "x", + "url": "https://x.com/magpiexyz_io" + }, + { + "name": "telegram", + "url": "https://t.me/magpiexyz_official" + }, + { + "name": "telegram_news", + "url": "https://t.me/magpiexyz_io" + }, + { + "name": "docs", + "url": "https://docs.magpiexyz.io/" + }, + { + "name": "blog", + "url": "https://blog.magpiexyz.io/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/magpiexyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magpie/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/magpie" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/logo.png b/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/logo.png new file mode 100644 index 00000000..0d35e83d Binary files /dev/null and b/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/logo.png differ diff --git a/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/info.json b/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/info.json new file mode 100644 index 00000000..b2049171 --- /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 00000000..e6309995 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 new file mode 100644 index 00000000..cade4968 --- /dev/null +++ b/blockchains/smartchain/assets/0xD0ACCF05878caFe24ff8b3F82F194C62Ed755707/info.json @@ -0,0 +1,21 @@ +{ + "name": "SIMP Token", + "type": "BEP20", + "symbol": "SIMP", + "decimals": 6, + "website": "https://letsallsimp.com", + "description": "$SIMP is a frictionless farming token operating on the Binance Smart Chain, designed to power trust and transactions for Adult Entertainment Stars and their communities, starting by powering the existing PocketStars & RocketStars platforms.", + "explorer": "https://bscscan.com/token/0xD0ACCF05878caFe24ff8b3F82F194C62Ed755707", + "status": "active", + "id": "0xD0ACCF05878caFe24ff8b3F82F194C62Ed755707", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/simp-token/" + }, + { + "name": "x", + "url": "https://x.com/letsallsimp" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD0ACCF05878caFe24ff8b3F82F194C62Ed755707/logo.png b/blockchains/smartchain/assets/0xD0ACCF05878caFe24ff8b3F82F194C62Ed755707/logo.png new file mode 100644 index 00000000..fe5fe566 Binary files /dev/null and b/blockchains/smartchain/assets/0xD0ACCF05878caFe24ff8b3F82F194C62Ed755707/logo.png differ diff --git a/blockchains/smartchain/assets/0xD0f4afA85a667d27837e9c07c81169869c16Dd16/info.json b/blockchains/smartchain/assets/0xD0f4afA85a667d27837e9c07c81169869c16Dd16/info.json new file mode 100644 index 00000000..013d8e96 --- /dev/null +++ b/blockchains/smartchain/assets/0xD0f4afA85a667d27837e9c07c81169869c16Dd16/info.json @@ -0,0 +1,49 @@ +{ + "name": "bPRIVA", + "type": "BEP20", + "symbol": "bPRIVA", + "decimals": 8, + "website": "https://privapp.network/", + "description": "Chain signatures, secret chain transactions and hashed wallet addresses are used to hide sender-recipient addresses and transaction amounts. Chain signatures are defined as digital contracts that can be signed by all users belonging to a group, who have the key.", + "explorer": "https://bscscan.com/token/0xD0f4afA85a667d27837e9c07c81169869c16Dd16", + "status": "active", + "id": "0xD0f4afA85a667d27837e9c07c81169869c16Dd16", + "links": [ + { + "name": "x", + "url": "https://x.com/PrivappNetwork" + }, + { + "name": "github", + "url": "https://github.com/PrivappNetwork" + }, + { + "name": "telegram", + "url": "https://t.me/PrivappNetworkGlobal" + }, + { + "name": "telegram_news", + "url": "https://t.me/PrivappNetwork" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Privapp_Network/" + }, + { + "name": "whitepaper", + "url": "https://privapp.network/themes/documents/privapp-network-whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@privappnetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/privapp-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/privapp-network" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD0f4afA85a667d27837e9c07c81169869c16Dd16/logo.png b/blockchains/smartchain/assets/0xD0f4afA85a667d27837e9c07c81169869c16Dd16/logo.png new file mode 100644 index 00000000..5f52b784 Binary files /dev/null and b/blockchains/smartchain/assets/0xD0f4afA85a667d27837e9c07c81169869c16Dd16/logo.png differ diff --git a/blockchains/smartchain/assets/0xD1102332a213E21faF78B69C03572031F3552c33/info.json b/blockchains/smartchain/assets/0xD1102332a213E21faF78B69C03572031F3552c33/info.json new file mode 100644 index 00000000..01ce7345 --- /dev/null +++ b/blockchains/smartchain/assets/0xD1102332a213E21faF78B69C03572031F3552c33/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bolt Dollar", + "website": "https://boltdollar.finance/", + "description": "Bolt Dollar - previously Bat True Dollar - is a community owned and driven algorithmic stable coin project established on BSC", + "explorer": "https://bscscan.com/token/0xD1102332a213E21faF78B69C03572031F3552c33", + "type": "BEP20", + "symbol": "BTD", + "decimals": 18, + "status": "active", + "id": "0xD1102332a213E21faF78B69C03572031F3552c33" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD1102332a213E21faF78B69C03572031F3552c33/logo.png b/blockchains/smartchain/assets/0xD1102332a213E21faF78B69C03572031F3552c33/logo.png new file mode 100644 index 00000000..d69c1b43 Binary files /dev/null and b/blockchains/smartchain/assets/0xD1102332a213E21faF78B69C03572031F3552c33/logo.png differ diff --git a/blockchains/smartchain/assets/0xD1587Ee50e0333f0C4aDcF261379A61B1486c5d2/info.json b/blockchains/smartchain/assets/0xD1587Ee50e0333f0C4aDcF261379A61B1486c5d2/info.json new file mode 100644 index 00000000..284fe6e6 --- /dev/null +++ b/blockchains/smartchain/assets/0xD1587Ee50e0333f0C4aDcF261379A61B1486c5d2/info.json @@ -0,0 +1,24 @@ +{ + "name": "WindSwap", + "website": "https://windswap.finance/", + "description": "WindSwap is a Deflationary Bridging Token & DEX Platform.", + "explorer": "https://bscscan.com/token/0xD1587Ee50e0333f0C4aDcF261379A61B1486c5d2", + "type": "BEP20", + "symbol": "WINDY", + "decimals": 8, + "status": "active", + "id": "0xD1587Ee50e0333f0C4aDcF261379A61B1486c5d2", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/windswap" + }, + { + "name": "telegram", + "url": "https://t.me/windswapmembers" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD1587Ee50e0333f0C4aDcF261379A61B1486c5d2/logo.png b/blockchains/smartchain/assets/0xD1587Ee50e0333f0C4aDcF261379A61B1486c5d2/logo.png new file mode 100644 index 00000000..78d4290c Binary files /dev/null and b/blockchains/smartchain/assets/0xD1587Ee50e0333f0C4aDcF261379A61B1486c5d2/logo.png differ diff --git a/blockchains/smartchain/assets/0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B/info.json b/blockchains/smartchain/assets/0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B/info.json new file mode 100644 index 00000000..2e0fb08c --- /dev/null +++ b/blockchains/smartchain/assets/0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B/info.json @@ -0,0 +1,48 @@ +{ + "name": "X AI", + "type": "BEP20", + "symbol": "XAI", + "decimals": 9, + "website": "https://xai.codes", + "description": "X AI intends to promptly establish a robust presence in the DeFi market by offering exceptional use cases.", + "explorer": "https://bscscan.com/token/0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B", + "status": "active", + "id": "0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B", + "links": [ + { + "name": "x", + "url": "https://x.com/xai_codes" + }, + { + "name": "github", + "url": "https://github.com/xaicodes" + }, + { + "name": "telegram", + "url": "https://t.me/xai_codes" + }, + { + "name": "whitepaper", + "url": "https://xai.codes/assets/XAI_whitepaper.pdf" + }, + { + "name": "source_code", + "url": "https://github.com/xaicodes/contract/blob/main/xai_contract.sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xai/" + }, + { + "name": "docs", + "url": "https://docs.xai.codes" + }, + { + "name": "medium", + "url": "https://medium.com/@XAI_Codes" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B/logo.png b/blockchains/smartchain/assets/0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B/logo.png new file mode 100644 index 00000000..2d695ea1 Binary files /dev/null and b/blockchains/smartchain/assets/0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B/logo.png differ diff --git a/blockchains/smartchain/assets/0xD1A6eFF20958403F9fa137760e62dfDE4516a0b1/info.json b/blockchains/smartchain/assets/0xD1A6eFF20958403F9fa137760e62dfDE4516a0b1/info.json new file mode 100644 index 00000000..22d0f36c --- /dev/null +++ b/blockchains/smartchain/assets/0xD1A6eFF20958403F9fa137760e62dfDE4516a0b1/info.json @@ -0,0 +1,29 @@ +{ + "name": "MetaMatrix", + "type": "BEP20", + "symbol": "MTX", + "decimals": 18, + "website": "https://www.metamatrix.network", + "description": "MetaMatrix is a cryptocurrency built on Binance Smart Chain (BEP20). MetaMatrix is also a community NFT Marketplace connected with an NFT Launchpad platform.", + "explorer": "https://bscscan.com/token/0xD1A6eFF20958403F9fa137760e62dfDE4516a0b1", + "status": "active", + "id": "0xD1A6eFF20958403F9fa137760e62dfDE4516a0b1", + "links": [ + { + "name": "x", + "url": "https://x.com/MetaMatrixBSC" + }, + { + "name": "telegram", + "url": "https://t.me/MetaverseMatrix" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metamatrix/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/metamatrix/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD1A6eFF20958403F9fa137760e62dfDE4516a0b1/logo.png b/blockchains/smartchain/assets/0xD1A6eFF20958403F9fa137760e62dfDE4516a0b1/logo.png new file mode 100644 index 00000000..488ec23d Binary files /dev/null and b/blockchains/smartchain/assets/0xD1A6eFF20958403F9fa137760e62dfDE4516a0b1/logo.png differ diff --git a/blockchains/smartchain/assets/0xD1FdF57241df3C36dad469060caC9f1ea2eE7585/info.json b/blockchains/smartchain/assets/0xD1FdF57241df3C36dad469060caC9f1ea2eE7585/info.json new file mode 100644 index 00000000..4b02f0bd --- /dev/null +++ b/blockchains/smartchain/assets/0xD1FdF57241df3C36dad469060caC9f1ea2eE7585/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lunapad", + "type": "BEP20", + "symbol": "LunaPad", + "decimals": 18, + "website": "https://www.luna-pad.com/", + "description": "Luna-Pad is peer to peer innovative Launchpad to launch new projects in TerraLuna ecosystem & Binance smart chain Luna-Pad comes up with the most transformative technologies since the Terra ecosystem adoption is increasing massively. Luna-Pad stands firmly in support to give exposure to the upcoming projects willing to join Terra and BSC ecosystem. Luna-Pad gives liberty to it's investors to participate in token sale conducted by Luna-Pad on its Launchpad.", + "explorer": "https://bscscan.com/token/0xD1FdF57241df3C36dad469060caC9f1ea2eE7585", + "status": "active", + "id": "0xD1FdF57241df3C36dad469060caC9f1ea2eE7585", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/luna-pad" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/luna-pad" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD1FdF57241df3C36dad469060caC9f1ea2eE7585/logo.png b/blockchains/smartchain/assets/0xD1FdF57241df3C36dad469060caC9f1ea2eE7585/logo.png new file mode 100644 index 00000000..2402e4d2 Binary files /dev/null and b/blockchains/smartchain/assets/0xD1FdF57241df3C36dad469060caC9f1ea2eE7585/logo.png differ diff --git a/blockchains/smartchain/assets/0xD22202d23fE7dE9E3DbE11a2a88F42f4CB9507cf/info.json b/blockchains/smartchain/assets/0xD22202d23fE7dE9E3DbE11a2a88F42f4CB9507cf/info.json new file mode 100644 index 00000000..77dc8785 --- /dev/null +++ b/blockchains/smartchain/assets/0xD22202d23fE7dE9E3DbE11a2a88F42f4CB9507cf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Minereum BSC", + "type": "BEP20", + "symbol": "MNEB", + "decimals": 8, + "website": "https://bsc.minereum.com/", + "description": "Minereum BSC - First Self Mining Smart Contract on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0xD22202d23fE7dE9E3DbE11a2a88F42f4CB9507cf", + "status": "active", + "id": "0xD22202d23fE7dE9E3DbE11a2a88F42f4CB9507cf" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD22202d23fE7dE9E3DbE11a2a88F42f4CB9507cf/logo.png b/blockchains/smartchain/assets/0xD22202d23fE7dE9E3DbE11a2a88F42f4CB9507cf/logo.png new file mode 100644 index 00000000..e0d3d26c Binary files /dev/null and b/blockchains/smartchain/assets/0xD22202d23fE7dE9E3DbE11a2a88F42f4CB9507cf/logo.png differ diff --git a/blockchains/smartchain/assets/0xD2618bC9c9cDC40ff19e200a7d14A09799C0a152/info.json b/blockchains/smartchain/assets/0xD2618bC9c9cDC40ff19e200a7d14A09799C0a152/info.json new file mode 100644 index 00000000..1d6a76d7 --- /dev/null +++ b/blockchains/smartchain/assets/0xD2618bC9c9cDC40ff19e200a7d14A09799C0a152/info.json @@ -0,0 +1,33 @@ +{ + "name": "Uncle Doge", + "website": "https://uncle-doge.com/", + "description": "Uncle Doge is a community focused token with unique tokenomics. At the center of the tokenomics is the “Kraken” the buy back mechanism that ensures price stability. In addition token olders recieve 1% in reflections and benefit from the burned tokens through the Kraken. The community is global, with over 12,000 holders on launch day and over 16M volume.", + "explorer": "https://bscscan.com/token/0xd2618bc9c9cdc40ff19e200a7d14a09799c0a152", + "type": "BEP20", + "symbol": "UDOGE", + "decimals": 9, + "status": "active", + "id": "0xD2618bC9c9cDC40ff19e200a7d14A09799C0a152", + "links": [ + { + "name": "x", + "url": "https://x.com/UncleDogeBSC" + }, + { + "name": "telegram", + "url": "https://t.me/UncleDogeOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uncle-doge/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uncle-doge" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xd2618bc9c9cdc40ff19e200a7d14a09799c0a152#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD2618bC9c9cDC40ff19e200a7d14A09799C0a152/logo.png b/blockchains/smartchain/assets/0xD2618bC9c9cDC40ff19e200a7d14A09799C0a152/logo.png new file mode 100644 index 00000000..d214368f Binary files /dev/null and b/blockchains/smartchain/assets/0xD2618bC9c9cDC40ff19e200a7d14A09799C0a152/logo.png differ diff --git a/blockchains/smartchain/assets/0xD2Df38F3A7Cbc24FfB78322aB272Ce58c4604444/info.json b/blockchains/smartchain/assets/0xD2Df38F3A7Cbc24FfB78322aB272Ce58c4604444/info.json new file mode 100644 index 00000000..96f47858 --- /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 new file mode 100644 index 00000000..bce09d76 --- /dev/null +++ b/blockchains/smartchain/assets/0xD2f9B51C6a1b5598f0ea51eF95d70cB045692D0F/info.json @@ -0,0 +1,21 @@ +{ + "name": "Safeicarus", + "website": "https://www.safeicarus.io/", + "description": "Safeicarus is programmed to reward holders while increasing in both liquidity and value. It does this by applying a 13% tax on transactions 5% goes to holders 8% is auto-locked to liquidity.", + "explorer": "https://bscscan.com/token/0xD2f9B51C6a1b5598f0ea51eF95d70cB045692D0F", + "type": "BEP20", + "symbol": "SAFEICARUS", + "decimals": 9, + "status": "active", + "id": "0xD2f9B51C6a1b5598f0ea51eF95d70cB045692D0F", + "links": [ + { + "name": "x", + "url": "https://x.com/safeicarus" + }, + { + "name": "telegram", + "url": "https://t.me/safeicarus" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD2f9B51C6a1b5598f0ea51eF95d70cB045692D0F/logo.png b/blockchains/smartchain/assets/0xD2f9B51C6a1b5598f0ea51eF95d70cB045692D0F/logo.png new file mode 100644 index 00000000..d6ffb988 Binary files /dev/null and b/blockchains/smartchain/assets/0xD2f9B51C6a1b5598f0ea51eF95d70cB045692D0F/logo.png differ diff --git a/blockchains/smartchain/assets/0xD30e25a8BeAC6E4E69EEeD90FF94A9105b5A08b8/info.json b/blockchains/smartchain/assets/0xD30e25a8BeAC6E4E69EEeD90FF94A9105b5A08b8/info.json new file mode 100644 index 00000000..a1711678 --- /dev/null +++ b/blockchains/smartchain/assets/0xD30e25a8BeAC6E4E69EEeD90FF94A9105b5A08b8/info.json @@ -0,0 +1,11 @@ +{ + "name": "UNICAT", + "type": "BEP20", + "symbol": "UCAT", + "decimals": 18, + "website": "https://unicat.finance", + "description": "UniCat Yield Farm", + "explorer": "https://bscscan.com/token/0xD30e25a8BeAC6E4E69EEeD90FF94A9105b5A08b8", + "status": "active", + "id": "0xD30e25a8BeAC6E4E69EEeD90FF94A9105b5A08b8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD30e25a8BeAC6E4E69EEeD90FF94A9105b5A08b8/logo.png b/blockchains/smartchain/assets/0xD30e25a8BeAC6E4E69EEeD90FF94A9105b5A08b8/logo.png new file mode 100644 index 00000000..3ad913e7 Binary files /dev/null and b/blockchains/smartchain/assets/0xD30e25a8BeAC6E4E69EEeD90FF94A9105b5A08b8/logo.png differ diff --git a/blockchains/smartchain/assets/0xD3113A0AD20a46F6a662C63fe8E637f7713E59c7/info.json b/blockchains/smartchain/assets/0xD3113A0AD20a46F6a662C63fe8E637f7713E59c7/info.json new file mode 100644 index 00000000..42af7c04 --- /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 00000000..37a5ada8 Binary files /dev/null and b/blockchains/smartchain/assets/0xD3113A0AD20a46F6a662C63fe8E637f7713E59c7/logo.png differ diff --git a/blockchains/smartchain/assets/0xD37c1417DA7Bf5b02ffDEa8d5427022DC88A0eE2/info.json b/blockchains/smartchain/assets/0xD37c1417DA7Bf5b02ffDEa8d5427022DC88A0eE2/info.json new file mode 100644 index 00000000..c8269175 --- /dev/null +++ b/blockchains/smartchain/assets/0xD37c1417DA7Bf5b02ffDEa8d5427022DC88A0eE2/info.json @@ -0,0 +1,11 @@ +{ + "name": "LifeLine", + "type": "BEP20", + "symbol": "LLT", + "decimals": 8, + "website": "https://lifelinetoken.com/", + "description": "A charity-oriented token for helping children’s hospitals with cancer care.", + "explorer": "https://bscscan.com/token/0xD37c1417DA7Bf5b02ffDEa8d5427022DC88A0eE2", + "status": "active", + "id": "0xD37c1417DA7Bf5b02ffDEa8d5427022DC88A0eE2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD37c1417DA7Bf5b02ffDEa8d5427022DC88A0eE2/logo.png b/blockchains/smartchain/assets/0xD37c1417DA7Bf5b02ffDEa8d5427022DC88A0eE2/logo.png new file mode 100644 index 00000000..cb47648c Binary files /dev/null and b/blockchains/smartchain/assets/0xD37c1417DA7Bf5b02ffDEa8d5427022DC88A0eE2/logo.png differ diff --git a/blockchains/smartchain/assets/0xD3AB99C79d831df2a44C10739E7BB1847f843f49/info.json b/blockchains/smartchain/assets/0xD3AB99C79d831df2a44C10739E7BB1847f843f49/info.json new file mode 100644 index 00000000..042dd287 --- /dev/null +++ b/blockchains/smartchain/assets/0xD3AB99C79d831df2a44C10739E7BB1847f843f49/info.json @@ -0,0 +1,11 @@ +{ + "name": "Burncoin", + "website": "https://burncoin.net/", + "description": "Burncoin is a super deflationary token thanks to the buy back protocol", + "explorer": "https://bscscan.com/token/0xd3ab99c79d831df2a44c10739e7bb1847f843f49", + "type": "BEP20", + "symbol": "BURNC", + "decimals": 9, + "status": "active", + "id": "0xD3AB99C79d831df2a44C10739E7BB1847f843f49" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD3AB99C79d831df2a44C10739E7BB1847f843f49/logo.png b/blockchains/smartchain/assets/0xD3AB99C79d831df2a44C10739E7BB1847f843f49/logo.png new file mode 100644 index 00000000..da56f51d Binary files /dev/null and b/blockchains/smartchain/assets/0xD3AB99C79d831df2a44C10739E7BB1847f843f49/logo.png differ diff --git a/blockchains/smartchain/assets/0xD3Ac199E6e6A1668ED6566b6F6dcdf7641868731/info.json b/blockchains/smartchain/assets/0xD3Ac199E6e6A1668ED6566b6F6dcdf7641868731/info.json new file mode 100644 index 00000000..4156a072 --- /dev/null +++ b/blockchains/smartchain/assets/0xD3Ac199E6e6A1668ED6566b6F6dcdf7641868731/info.json @@ -0,0 +1,28 @@ +{ + "name": "Metawhale Token", + "type": "BEP20", + "symbol": "MTW", + "decimals": 8, + "description": "MTW is a stablecoin issued by Metawhaleworld in partnership with Binance.MetaWhale is a virtual platform powered by the Binance Blockchain", + "website": "https://metawhaleworld.com", + "explorer": "https://bscscan.com/token/0xd3ac199e6e6a1668ed6566b6f6dcdf7641868731", + "id": "0xD3Ac199E6e6A1668ED6566b6F6dcdf7641868731", + "status": "active", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MetawhaleWorld" + }, + { + "name": "facebook", + "url": "https://facebook.com/MetaWhaleMTW" + }, + { + "name": "whitepaper", + "url": "https://metawhaleworld.com/wp-content/uploads/2022/01/Metawhale-1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD3Ac199E6e6A1668ED6566b6F6dcdf7641868731/logo.png b/blockchains/smartchain/assets/0xD3Ac199E6e6A1668ED6566b6F6dcdf7641868731/logo.png new file mode 100644 index 00000000..a87e965c Binary files /dev/null and b/blockchains/smartchain/assets/0xD3Ac199E6e6A1668ED6566b6F6dcdf7641868731/logo.png differ diff --git a/blockchains/smartchain/assets/0xD3Af8E09894D69E937e37eeF46Df1cBF82b35C81/info.json b/blockchains/smartchain/assets/0xD3Af8E09894D69E937e37eeF46Df1cBF82b35C81/info.json new file mode 100644 index 00000000..0f322129 --- /dev/null +++ b/blockchains/smartchain/assets/0xD3Af8E09894D69E937e37eeF46Df1cBF82b35C81/info.json @@ -0,0 +1,33 @@ +{ + "name": "NanoDogeCoin", + "website": "https://www.nanodogecoin.com/", + "description": "NanoDogeCoin (INDC) is the revolutionary token that allows investors to earn USD Tether while helping to save dogs worldwide.", + "explorer": "https://bscscan.com/token/0xd3af8e09894d69e937e37eef46df1cbf82b35c81", + "type": "BEP20", + "symbol": "INDC", + "decimals": 9, + "status": "active", + "id": "0xD3Af8E09894D69E937e37eeF46Df1cBF82b35C81", + "links": [ + { + "name": "telegram", + "url": "https://t.me/NanoDogecoin" + }, + { + "name": "x", + "url": "https://x.com/nanodogecoinbsc" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nano-dogecoin" + }, + { + "name": "medium", + "url": "https://nanodoge.medium.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/NanoDogeCoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD3Af8E09894D69E937e37eeF46Df1cBF82b35C81/logo.png b/blockchains/smartchain/assets/0xD3Af8E09894D69E937e37eeF46Df1cBF82b35C81/logo.png new file mode 100644 index 00000000..77bf36cd Binary files /dev/null and b/blockchains/smartchain/assets/0xD3Af8E09894D69E937e37eeF46Df1cBF82b35C81/logo.png differ diff --git a/blockchains/smartchain/assets/0xD3FC8C63997694e3d3C2Be668FE52C9406924444/info.json b/blockchains/smartchain/assets/0xD3FC8C63997694e3d3C2Be668FE52C9406924444/info.json new file mode 100644 index 00000000..5abe25e7 --- /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/0xD3aBd3fdc3463F3a82c80adc581DA2432e42c215/info.json b/blockchains/smartchain/assets/0xD3aBd3fdc3463F3a82c80adc581DA2432e42c215/info.json new file mode 100644 index 00000000..1051636e --- /dev/null +++ b/blockchains/smartchain/assets/0xD3aBd3fdc3463F3a82c80adc581DA2432e42c215/info.json @@ -0,0 +1,11 @@ +{ + "name": "Golden Shiba Inu Token", + "type": "BEP20", + "symbol": "GOLDEN INU", + "decimals": 8, + "website": "https://goldenshibainu.com/", + "description": "Golden Shiba Inu. Projects built on the foundation of community involvement are the untamed wilderness of our future.", + "explorer": "https://bscscan.com/token/0xD3aBd3fdc3463F3a82c80adc581DA2432e42c215", + "status": "active", + "id": "0xD3aBd3fdc3463F3a82c80adc581DA2432e42c215" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD3aBd3fdc3463F3a82c80adc581DA2432e42c215/logo.png b/blockchains/smartchain/assets/0xD3aBd3fdc3463F3a82c80adc581DA2432e42c215/logo.png new file mode 100644 index 00000000..37ca465c Binary files /dev/null and b/blockchains/smartchain/assets/0xD3aBd3fdc3463F3a82c80adc581DA2432e42c215/logo.png differ diff --git a/blockchains/smartchain/assets/0xD3b77Ac07c963b8cEAD47000A5208434D9A8734d/info.json b/blockchains/smartchain/assets/0xD3b77Ac07c963b8cEAD47000A5208434D9A8734d/info.json new file mode 100644 index 00000000..6cc863a1 --- /dev/null +++ b/blockchains/smartchain/assets/0xD3b77Ac07c963b8cEAD47000A5208434D9A8734d/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAFETREES", + "type": "BEP20", + "symbol": "TREES", + "decimals": 9, + "website": "https://safetrees.space", + "description": "SAFETREES project is creating a free and easy-to-use solution that will help tree growers monitor, authenticate and validate tree growth status through a mobile application. The growers can tokenize their real growing trees as TREES-NFT and traded them to a crypto Auction platform that we are currently developing. The users of the platform can adopt a TREES-NFT from the tree growers with $TREES token or buy carbon offsets that supports our environment-centre projects.", + "explorer": "https://bscscan.com/token/0xD3b77Ac07c963b8cEAD47000A5208434D9A8734d", + "status": "active", + "id": "0xD3b77Ac07c963b8cEAD47000A5208434D9A8734d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD3b77Ac07c963b8cEAD47000A5208434D9A8734d/logo.png b/blockchains/smartchain/assets/0xD3b77Ac07c963b8cEAD47000A5208434D9A8734d/logo.png new file mode 100644 index 00000000..82305702 Binary files /dev/null and b/blockchains/smartchain/assets/0xD3b77Ac07c963b8cEAD47000A5208434D9A8734d/logo.png differ diff --git a/blockchains/smartchain/assets/0xD3ba3FB9014AB0b67ea9af05d9b690BFa2305DC2/info.json b/blockchains/smartchain/assets/0xD3ba3FB9014AB0b67ea9af05d9b690BFa2305DC2/info.json new file mode 100644 index 00000000..2281a0e7 --- /dev/null +++ b/blockchains/smartchain/assets/0xD3ba3FB9014AB0b67ea9af05d9b690BFa2305DC2/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEG Wrapped BTCB", + "symbol": "fBTCB", + "type": "BEP20", + "decimals": 18, + "description": "FEG Wrapped BTCB", + "website": "https://fegtoken.com", + "explorer": "https://bscscan.com/token/0xd3ba3fb9014ab0b67ea9af05d9b690bfa2305dc2", + "status": "active", + "id": "0xD3ba3FB9014AB0b67ea9af05d9b690BFa2305DC2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD3ba3FB9014AB0b67ea9af05d9b690BFa2305DC2/logo.png b/blockchains/smartchain/assets/0xD3ba3FB9014AB0b67ea9af05d9b690BFa2305DC2/logo.png new file mode 100644 index 00000000..c42da6a9 Binary files /dev/null and b/blockchains/smartchain/assets/0xD3ba3FB9014AB0b67ea9af05d9b690BFa2305DC2/logo.png differ diff --git a/blockchains/smartchain/assets/0xD3c51de3E6DD9b53D7f37699AFB3EE3Bf9B9b3F4/info.json b/blockchains/smartchain/assets/0xD3c51de3E6DD9b53D7f37699AFB3EE3Bf9B9b3F4/info.json new file mode 100644 index 00000000..ed464fa7 --- /dev/null +++ b/blockchains/smartchain/assets/0xD3c51de3E6DD9b53D7f37699AFB3EE3Bf9B9b3F4/info.json @@ -0,0 +1,11 @@ +{ + "name": "MContent", + "website": "https://mcontent.net", + "description": "MContent is a token built on the Binance Smart Chain, that aims to build a collaborative content ecosystem with the core purpose of seed funding, incubating and curating film makers and content producers around the World.", + "explorer": "https://bscscan.com/token/0xD3c51de3E6DD9b53D7f37699AFB3EE3Bf9B9b3F4", + "type": "BEP20", + "symbol": "MCONTENT", + "decimals": 6, + "status": "active", + "id": "0xD3c51de3E6DD9b53D7f37699AFB3EE3Bf9B9b3F4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD3c51de3E6DD9b53D7f37699AFB3EE3Bf9B9b3F4/logo.png b/blockchains/smartchain/assets/0xD3c51de3E6DD9b53D7f37699AFB3EE3Bf9B9b3F4/logo.png new file mode 100644 index 00000000..e27c3bba Binary files /dev/null and b/blockchains/smartchain/assets/0xD3c51de3E6DD9b53D7f37699AFB3EE3Bf9B9b3F4/logo.png differ diff --git a/blockchains/smartchain/assets/0xD4099A517f2Fbe8a730d2ECaad1D0824B75e084a/info.json b/blockchains/smartchain/assets/0xD4099A517f2Fbe8a730d2ECaad1D0824B75e084a/info.json new file mode 100644 index 00000000..ca2ece21 --- /dev/null +++ b/blockchains/smartchain/assets/0xD4099A517f2Fbe8a730d2ECaad1D0824B75e084a/info.json @@ -0,0 +1,25 @@ +{ + "name": "The Monopolist", + "website": "https://themonopolist.io", + "description": "In The Monopolist, the players will build their own tactics through rolling dice, investing in buying land, building properties, collecting accommodation fees, and so on, to win the others by various ways. When you become the winner of any battles, you will earn $MONO and $MOB token, especially have chances to receive new characters, materials or items, which you can bring to NFT market for more earnings.", + "explorer": "https://bscscan.com/token/0xD4099A517f2Fbe8a730d2ECaad1D0824B75e084a", + "type": "BEP20", + "symbol": "MONO", + "decimals": 18, + "status": "active", + "id": "0xD4099A517f2Fbe8a730d2ECaad1D0824B75e084a", + "links": [ + { + "name": "telegram", + "url": "https://t.me/themonopolist" + }, + { + "name": "x", + "url": "https://x.com/MonoNFTsGame" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-monopolist" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD4099A517f2Fbe8a730d2ECaad1D0824B75e084a/logo.png b/blockchains/smartchain/assets/0xD4099A517f2Fbe8a730d2ECaad1D0824B75e084a/logo.png new file mode 100644 index 00000000..44db1591 Binary files /dev/null and b/blockchains/smartchain/assets/0xD4099A517f2Fbe8a730d2ECaad1D0824B75e084a/logo.png differ diff --git a/blockchains/smartchain/assets/0xD40bEDb44C081D2935eebA6eF5a3c8A31A1bBE13/info.json b/blockchains/smartchain/assets/0xD40bEDb44C081D2935eebA6eF5a3c8A31A1bBE13/info.json new file mode 100644 index 00000000..89564ce5 --- /dev/null +++ b/blockchains/smartchain/assets/0xD40bEDb44C081D2935eebA6eF5a3c8A31A1bBE13/info.json @@ -0,0 +1,11 @@ +{ + "name": "Metahero", + "type": "BEP20", + "symbol": "HERO", + "decimals": 18, + "website": "https://metahero.io/", + "description": "Next-Gen Deflationary Real Utility Token Coupled with Ultra-HD Metascanning Technology", + "explorer": "https://bscscan.com/token/0xD40bEDb44C081D2935eebA6eF5a3c8A31A1bBE13", + "status": "active", + "id": "0xD40bEDb44C081D2935eebA6eF5a3c8A31A1bBE13" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD40bEDb44C081D2935eebA6eF5a3c8A31A1bBE13/logo.png b/blockchains/smartchain/assets/0xD40bEDb44C081D2935eebA6eF5a3c8A31A1bBE13/logo.png new file mode 100644 index 00000000..1085bfbc Binary files /dev/null and b/blockchains/smartchain/assets/0xD40bEDb44C081D2935eebA6eF5a3c8A31A1bBE13/logo.png differ diff --git a/blockchains/smartchain/assets/0xD41C4805A9A3128f9F7A7074Da25965371Ba50d5/info.json b/blockchains/smartchain/assets/0xD41C4805A9A3128f9F7A7074Da25965371Ba50d5/info.json new file mode 100644 index 00000000..f41d0cd4 --- /dev/null +++ b/blockchains/smartchain/assets/0xD41C4805A9A3128f9F7A7074Da25965371Ba50d5/info.json @@ -0,0 +1,61 @@ +{ + "name": "Coinscope", + "website": "https://coinscope.co", + "description": "Coinscope is the leading early coin listing and voting website. It is aiming to make crypto discoverable and efficient globally. It provides all the essential tools to assist users draw their own conclusions.", + "explorer": "https://bscscan.com/token/0xd41c4805a9a3128f9f7a7074da25965371ba50d5", + "type": "BEP20", + "symbol": "COINSCOPE", + "decimals": 18, + "status": "active", + "id": "0xD41C4805A9A3128f9F7A7074Da25965371Ba50d5", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinscope" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coinscope" + }, + { + "name": "telegram", + "url": "https://t.me/coinscope_co" + }, + { + "name": "x", + "url": "https://x.com/@coinscopecrypto" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Coinscope" + }, + { + "name": "medium", + "url": "https://medium.com/@coinscopecrypto" + }, + { + "name": "facebook", + "url": "https://facebook.com/Coinscopecrypto" + }, + { + "name": "docs", + "url": "https://docs.coinscope.co" + }, + { + "name": "telegram_news", + "url": "https://t.me/coinscope_news" + }, + { + "name": "blog", + "url": "https://coinscope.co/blog" + }, + { + "name": "whitepaper", + "url": "https://firebasestorage.googleapis.com/v0/b/coinscopeassets.appspot.com/o/coinscope-whitepaper.pdf?alt=media" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCrQZWj09aoP_IpeRT0Gng-g" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD41C4805A9A3128f9F7A7074Da25965371Ba50d5/logo.png b/blockchains/smartchain/assets/0xD41C4805A9A3128f9F7A7074Da25965371Ba50d5/logo.png new file mode 100644 index 00000000..b9cf7ec2 Binary files /dev/null and b/blockchains/smartchain/assets/0xD41C4805A9A3128f9F7A7074Da25965371Ba50d5/logo.png differ diff --git a/blockchains/smartchain/assets/0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb/info.json b/blockchains/smartchain/assets/0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb/info.json new file mode 100644 index 00000000..fef3d3bc --- /dev/null +++ b/blockchains/smartchain/assets/0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb/info.json @@ -0,0 +1,34 @@ +{ + "name": "SafePal Token", + "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", + "research": "https://research.binance.com/en/projects/safepal", + "type": "BEP20", + "symbol": "SFP", + "decimals": 18, + "status": "active", + "id": "0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb", + "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/smartchain/assets/0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb/logo.png b/blockchains/smartchain/assets/0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb/logo.png new file mode 100644 index 00000000..aae67834 Binary files /dev/null and b/blockchains/smartchain/assets/0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb/logo.png differ diff --git a/blockchains/smartchain/assets/0xD438b82543FB109F34575c825edAeEFC98f1F2b4/info.json b/blockchains/smartchain/assets/0xD438b82543FB109F34575c825edAeEFC98f1F2b4/info.json new file mode 100644 index 00000000..64171626 --- /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 00000000..eb840e17 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 new file mode 100644 index 00000000..40ebd56b --- /dev/null +++ b/blockchains/smartchain/assets/0xD44FD09d74cd13838F137B590497595d6b3FEeA4/info.json @@ -0,0 +1,45 @@ +{ + "name": "CryptoMines", + "type": "BEP20", + "symbol": "ETERNAL", + "decimals": 18, + "website": "https://cryptomines.app", + "description": "CryptoMines is a SciFi play-to-earn NFT game designed to provide the users with a fun experience by collecting Workers and Spaceships to travel through the universe searching for $ETERNAL, this mineral allows them to live another day and make some profits along the way.", + "explorer": "https://bscscan.com/token/0xD44FD09d74cd13838F137B590497595d6b3FEeA4", + "status": "active", + "id": "0xD44FD09d74cd13838F137B590497595d6b3FEeA4", + "links": [ + { + "name": "x", + "url": "https://x.com/cryptominesapp" + }, + { + "name": "telegram", + "url": "https://t.me/cryptominesapp" + }, + { + "name": "telegram_news", + "url": "https://t.me/joinchat/dav21Cm7oBkwYzcx" + }, + { + "name": "youtube", + "url": "https://youtube.com/watch?v=e6GsGwBwlgs" + }, + { + "name": "whitepaper", + "url": "https://docs.cryptomines.app/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptomines/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/es/monedas/cryptomines-eternal" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Q7cMb3Cqe" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD44FD09d74cd13838F137B590497595d6b3FEeA4/logo.png b/blockchains/smartchain/assets/0xD44FD09d74cd13838F137B590497595d6b3FEeA4/logo.png new file mode 100644 index 00000000..b78e5e16 Binary files /dev/null and b/blockchains/smartchain/assets/0xD44FD09d74cd13838F137B590497595d6b3FEeA4/logo.png differ diff --git a/blockchains/smartchain/assets/0xD48474E7444727bF500a32D5AbE01943f3A59A64/info.json b/blockchains/smartchain/assets/0xD48474E7444727bF500a32D5AbE01943f3A59A64/info.json new file mode 100644 index 00000000..e316fded --- /dev/null +++ b/blockchains/smartchain/assets/0xD48474E7444727bF500a32D5AbE01943f3A59A64/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitBook", + "type": "BEP20", + "symbol": "BBT", + "decimals": 8, + "website": "https://www.bitbook.network", + "description": "BitBook is the travel platform where users can book accommodation and earn tokens in the process providing a passive income to users that create and share travel content.", + "explorer": "https://bscscan.com/token/0xD48474E7444727bF500a32D5AbE01943f3A59A64", + "status": "active", + "id": "0xD48474E7444727bF500a32D5AbE01943f3A59A64" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD48474E7444727bF500a32D5AbE01943f3A59A64/logo.png b/blockchains/smartchain/assets/0xD48474E7444727bF500a32D5AbE01943f3A59A64/logo.png new file mode 100644 index 00000000..1990994e Binary files /dev/null and b/blockchains/smartchain/assets/0xD48474E7444727bF500a32D5AbE01943f3A59A64/logo.png differ diff --git a/blockchains/smartchain/assets/0xD50787A5f21bcC10C1a738E7DE33001786c5fc24/info.json b/blockchains/smartchain/assets/0xD50787A5f21bcC10C1a738E7DE33001786c5fc24/info.json new file mode 100644 index 00000000..181426b1 --- /dev/null +++ b/blockchains/smartchain/assets/0xD50787A5f21bcC10C1a738E7DE33001786c5fc24/info.json @@ -0,0 +1,12 @@ +{ + "name": "SMARTWORTH", + "website": "https://smartworth.org", + "description": "A token with its own digital ecosystem, that reinvests in both the platform and the community with each transaction.", + "explorer": "https://bscscan.com/token/0xd50787a5f21bcc10c1a738e7de33001786c5fc24", + "research": "https://smartworth.org", + "type": "BEP20", + "symbol": "SMARTWORTH", + "decimals": 18, + "status": "active", + "id": "0xD50787A5f21bcC10C1a738E7DE33001786c5fc24" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD50787A5f21bcC10C1a738E7DE33001786c5fc24/logo.png b/blockchains/smartchain/assets/0xD50787A5f21bcC10C1a738E7DE33001786c5fc24/logo.png new file mode 100644 index 00000000..776cf286 Binary files /dev/null and b/blockchains/smartchain/assets/0xD50787A5f21bcC10C1a738E7DE33001786c5fc24/logo.png differ diff --git a/blockchains/smartchain/assets/0xD585F9C5953CA97DA3551f20725a274c9e442ff3/info.json b/blockchains/smartchain/assets/0xD585F9C5953CA97DA3551f20725a274c9e442ff3/info.json new file mode 100644 index 00000000..ad6ee165 --- /dev/null +++ b/blockchains/smartchain/assets/0xD585F9C5953CA97DA3551f20725a274c9e442ff3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pegazus Finance", + "type": "BEP20", + "symbol": "PEG", + "decimals": 9, + "website": "https://pegazus.finance/", + "description": "Pegazus is a charity - oriented token, a new cryptocurrency (BEP-20 Token) and smart contract ecosystem..", + "explorer": "https://bscscan.com/token/0xd585f9c5953ca97da3551f20725a274c9e442ff3", + "status": "active", + "id": "0xD585F9C5953CA97DA3551f20725a274c9e442ff3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD585F9C5953CA97DA3551f20725a274c9e442ff3/logo.png b/blockchains/smartchain/assets/0xD585F9C5953CA97DA3551f20725a274c9e442ff3/logo.png new file mode 100644 index 00000000..17f23298 Binary files /dev/null and b/blockchains/smartchain/assets/0xD585F9C5953CA97DA3551f20725a274c9e442ff3/logo.png differ diff --git a/blockchains/smartchain/assets/0xD589699b20903fC061701Ad6A35Cb78Bb5Dd734E/info.json b/blockchains/smartchain/assets/0xD589699b20903fC061701Ad6A35Cb78Bb5Dd734E/info.json new file mode 100644 index 00000000..ce1796ad --- /dev/null +++ b/blockchains/smartchain/assets/0xD589699b20903fC061701Ad6A35Cb78Bb5Dd734E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dare Token", + "type": "BEP20", + "symbol": "DRE", + "decimals": 18, + "website": "https://www.daretoken.io/", + "description": "DareToken is a revolutionary funtech market project aimed at decentralizing online competitions and challenges", + "explorer": "https://bscscan.com/token/0xD589699b20903fC061701Ad6A35Cb78Bb5Dd734E", + "status": "active", + "id": "0xD589699b20903fC061701Ad6A35Cb78Bb5Dd734E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD589699b20903fC061701Ad6A35Cb78Bb5Dd734E/logo.png b/blockchains/smartchain/assets/0xD589699b20903fC061701Ad6A35Cb78Bb5Dd734E/logo.png new file mode 100644 index 00000000..fabad253 Binary files /dev/null and b/blockchains/smartchain/assets/0xD589699b20903fC061701Ad6A35Cb78Bb5Dd734E/logo.png differ diff --git a/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/info.json b/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/info.json new file mode 100644 index 00000000..dfdfae91 --- /dev/null +++ b/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/info.json @@ -0,0 +1,32 @@ +{ + "name": "TwogeInu", + "website": "https://twogeinu.io", + "description": "Twoge is an innovative deflationary token aiming to revolutionize Defi, building its own Twoge Blockchain, introducing a multi-chain swap (TwogeSwap) across Binance, Ethereum...", + "explorer": "https://bscscan.com/token/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE", + "symbol": "TWOGE", + "type": "BEP20", + "decimals": 5, + "status": "active", + "id": "0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE", + "tags": [ + "memes" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/TwogeInu" + }, + { + "name": "x", + "url": "https://x.com/twogeinu" + }, + { + "name": "github", + "url": "https://github.com/twogeinu" + }, + { + "name": "whitepaper", + "url": "https://github.com/twogeinu/whitepaper/blob/main/Twoge%20Whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/logo.png b/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/logo.png new file mode 100644 index 00000000..ca66658d Binary files /dev/null and b/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/logo.png differ diff --git a/blockchains/smartchain/assets/0xD5a0dAd4E6f399CdC346ff04fd90ec0B511fCeF9/info.json b/blockchains/smartchain/assets/0xD5a0dAd4E6f399CdC346ff04fd90ec0B511fCeF9/info.json new file mode 100644 index 00000000..16fae9c4 --- /dev/null +++ b/blockchains/smartchain/assets/0xD5a0dAd4E6f399CdC346ff04fd90ec0B511fCeF9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Beer Token", + "type": "BEP20", + "symbol": "BEER", + "decimals": 9, + "website": "https://beertoken.co", + "description": "Beer Token is a new currency on a mission to make cryptocurrency normalized in the beer buying world.", + "explorer": "https://bscscan.com/token/0xD5a0dAd4E6f399CdC346ff04fd90ec0B511fCeF9", + "status": "active", + "id": "0xD5a0dAd4E6f399CdC346ff04fd90ec0B511fCeF9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD5a0dAd4E6f399CdC346ff04fd90ec0B511fCeF9/logo.png b/blockchains/smartchain/assets/0xD5a0dAd4E6f399CdC346ff04fd90ec0B511fCeF9/logo.png new file mode 100644 index 00000000..44eab43e Binary files /dev/null and b/blockchains/smartchain/assets/0xD5a0dAd4E6f399CdC346ff04fd90ec0B511fCeF9/logo.png differ diff --git a/blockchains/smartchain/assets/0xD5b531B071A9cC7Fb4751800652B4505254e4444/info.json b/blockchains/smartchain/assets/0xD5b531B071A9cC7Fb4751800652B4505254e4444/info.json new file mode 100644 index 00000000..e4ab4d06 --- /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 new file mode 100644 index 00000000..7fa7ae35 --- /dev/null +++ b/blockchains/smartchain/assets/0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C/info.json @@ -0,0 +1,41 @@ +{ + "name": "ElonBank", + "website": "https://elonbank.io", + "description": "ElonBank is a financial protocol that includes mechanisms for auto-staking, auto-compounding, and auto-liquidity.", + "explorer": "https://bscscan.com/token/0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C", + "type": "BEP20", + "symbol": "ElonBank", + "decimals": 5, + "status": "active", + "id": "0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C", + "links": [ + { + "name": "x", + "url": "https://x.com/ElonBankBSC" + }, + { + "name": "facebook", + "url": "https://facebook.com/ElonBank-110185674954444" + }, + { + "name": "whitepaper", + "url": "https://docs.elonbank.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elonbank/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/elonbank" + }, + { + "name": "telegram", + "url": "https://t.me/elonbankbscglobal" + } + ], + "tags": [ + "staking", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C/logo.png b/blockchains/smartchain/assets/0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C/logo.png new file mode 100644 index 00000000..19c75d71 Binary files /dev/null and b/blockchains/smartchain/assets/0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C/logo.png differ diff --git a/blockchains/smartchain/assets/0xD71239a33C8542Bd42130c1B4ACA0673B4e4f48B/info.json b/blockchains/smartchain/assets/0xD71239a33C8542Bd42130c1B4ACA0673B4e4f48B/info.json new file mode 100644 index 00000000..c3de63fc --- /dev/null +++ b/blockchains/smartchain/assets/0xD71239a33C8542Bd42130c1B4ACA0673B4e4f48B/info.json @@ -0,0 +1,32 @@ +{ + "name": "LFW Token", + "type": "BEP20", + "symbol": "LFW", + "decimals": 18, + "description": "By the time you get into our journey, you will find out that Legend of Fantasy War (LFW) is not just any ordinary game, it contains its own ecosystem and the most unique concept of many different universes within one world, we call it the Legendary Fantasy World.", + "website": "https://legendfantasywar.com", + "explorer": "https://bscscan.com/token/0xD71239a33C8542Bd42130c1B4ACA0673B4e4f48B", + "status": "active", + "id": "0xD71239a33C8542Bd42130c1B4ACA0673B4e4f48B", + "tags": [ + "nft" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/Legend_LFW" + }, + { + "name": "telegram", + "url": "https://t.me/LFWofficial" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/legend-of-fantasy-war" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/legend-of-fantasy-war" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD71239a33C8542Bd42130c1B4ACA0673B4e4f48B/logo.png b/blockchains/smartchain/assets/0xD71239a33C8542Bd42130c1B4ACA0673B4e4f48B/logo.png new file mode 100644 index 00000000..397e84f3 Binary files /dev/null and b/blockchains/smartchain/assets/0xD71239a33C8542Bd42130c1B4ACA0673B4e4f48B/logo.png differ diff --git a/blockchains/smartchain/assets/0xD74b782E05AA25c50e7330Af541d46E18f36661C/info.json b/blockchains/smartchain/assets/0xD74b782E05AA25c50e7330Af541d46E18f36661C/info.json new file mode 100644 index 00000000..02870132 --- /dev/null +++ b/blockchains/smartchain/assets/0xD74b782E05AA25c50e7330Af541d46E18f36661C/info.json @@ -0,0 +1,11 @@ +{ + "name": "RichQuack", + "type": "BEP20", + "symbol": "QUACK", + "decimals": 9, + "website": "https://www.RichQuack.com", + "description": "RichQUACK is a stealth fair launched token that has passsed Security Audit by TechRate, LP Locked, RUG-Proof & 100% community-driven project. Deflationary token with built in 10% transaction fee: 5% Safe Auto-Farm Redistributed to Holders including BlackHole, 5% for Auto LP", + "explorer": "https://bscscan.com/token/0xD74b782E05AA25c50e7330Af541d46E18f36661C", + "status": "active", + "id": "0xD74b782E05AA25c50e7330Af541d46E18f36661C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD74b782E05AA25c50e7330Af541d46E18f36661C/logo.png b/blockchains/smartchain/assets/0xD74b782E05AA25c50e7330Af541d46E18f36661C/logo.png new file mode 100644 index 00000000..6a6dd5e2 Binary files /dev/null and b/blockchains/smartchain/assets/0xD74b782E05AA25c50e7330Af541d46E18f36661C/logo.png differ diff --git a/blockchains/smartchain/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json b/blockchains/smartchain/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/info.json new file mode 100644 index 00000000..cb39601c --- /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 00000000..6a9e9da2 Binary files /dev/null and b/blockchains/smartchain/assets/0xD76f5Faf6888e24D9F04Bf92a0c8B921FE4390e0/logo.png differ diff --git a/blockchains/smartchain/assets/0xD7730681B1DC8f6F969166B29D8A5EA8568616a3/info.json b/blockchains/smartchain/assets/0xD7730681B1DC8f6F969166B29D8A5EA8568616a3/info.json new file mode 100644 index 00000000..20ffeb60 --- /dev/null +++ b/blockchains/smartchain/assets/0xD7730681B1DC8f6F969166B29D8A5EA8568616a3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nafter", + "website": "https://nafter.io", + "description": "Nafter is an online marketplace for creators and fans to buy, sell, mint & collect content NFTs - all in one app.", + "explorer": "https://bscscan.com/token/0xD7730681B1DC8f6F969166B29D8A5EA8568616a3", + "type": "BEP20", + "symbol": "NAFT", + "decimals": 18, + "status": "active", + "id": "0xD7730681B1DC8f6F969166B29D8A5EA8568616a3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD7730681B1DC8f6F969166B29D8A5EA8568616a3/logo.png b/blockchains/smartchain/assets/0xD7730681B1DC8f6F969166B29D8A5EA8568616a3/logo.png new file mode 100644 index 00000000..7bb32896 Binary files /dev/null and b/blockchains/smartchain/assets/0xD7730681B1DC8f6F969166B29D8A5EA8568616a3/logo.png differ diff --git a/blockchains/smartchain/assets/0xD78Bd47A6934959583b47F081Ce0f9Fd5E0338D1/info.json b/blockchains/smartchain/assets/0xD78Bd47A6934959583b47F081Ce0f9Fd5E0338D1/info.json new file mode 100644 index 00000000..e64ba506 --- /dev/null +++ b/blockchains/smartchain/assets/0xD78Bd47A6934959583b47F081Ce0f9Fd5E0338D1/info.json @@ -0,0 +1,11 @@ +{ + "name": "TeaCrypto Finance", + "type": "BEP20", + "symbol": "TCF", + "decimals": 18, + "website": "https://teacrypto.finance", + "description": "TeaCrypto.Finance is a blockchain innovation hub with a DAO-driven seed stage fund, decentralized incubator, and launchpad, for empowering next innovations of the blockchain ecosystem, through community-driven governance, feedback, involvement and funding mechanisms.", + "explorer": "https://bscscan.com/token/0xD78Bd47A6934959583b47F081Ce0f9Fd5E0338D1", + "status": "active", + "id": "0xD78Bd47A6934959583b47F081Ce0f9Fd5E0338D1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD78Bd47A6934959583b47F081Ce0f9Fd5E0338D1/logo.png b/blockchains/smartchain/assets/0xD78Bd47A6934959583b47F081Ce0f9Fd5E0338D1/logo.png new file mode 100644 index 00000000..8be7e631 Binary files /dev/null and b/blockchains/smartchain/assets/0xD78Bd47A6934959583b47F081Ce0f9Fd5E0338D1/logo.png differ diff --git a/blockchains/smartchain/assets/0xD7B729ef857Aa773f47D37088A1181bB3fbF0099/info.json b/blockchains/smartchain/assets/0xD7B729ef857Aa773f47D37088A1181bB3fbF0099/info.json new file mode 100644 index 00000000..f5cadf9a --- /dev/null +++ b/blockchains/smartchain/assets/0xD7B729ef857Aa773f47D37088A1181bB3fbF0099/info.json @@ -0,0 +1,11 @@ +{ + "name": "OLD BOG Token", + "website": "https://bogtools.io/", + "description": "The old BOG token has been deprecated, you may sell or burn this token.", + "explorer": "https://bscscan.com/token/0xD7B729ef857Aa773f47D37088A1181bB3fbF0099", + "type": "BEP20", + "symbol": "BOG", + "decimals": 18, + "status": "abandoned", + "id": "0xD7B729ef857Aa773f47D37088A1181bB3fbF0099" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD7B729ef857Aa773f47D37088A1181bB3fbF0099/logo.png b/blockchains/smartchain/assets/0xD7B729ef857Aa773f47D37088A1181bB3fbF0099/logo.png new file mode 100644 index 00000000..21722c26 Binary files /dev/null and b/blockchains/smartchain/assets/0xD7B729ef857Aa773f47D37088A1181bB3fbF0099/logo.png differ diff --git a/blockchains/smartchain/assets/0xD7a6353a23ED2c4fcaC29A63CBBe3f65ffEf41F5/info.json b/blockchains/smartchain/assets/0xD7a6353a23ED2c4fcaC29A63CBBe3f65ffEf41F5/info.json new file mode 100644 index 00000000..9a3bc751 --- /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 00000000..5fb20048 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 00000000..60620819 --- /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 00000000..df2bffa2 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 00000000..4ad82792 --- /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 00000000..963c3714 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 new file mode 100644 index 00000000..f9346c29 --- /dev/null +++ b/blockchains/smartchain/assets/0xD80BeA63a208770e1c371DFBF70Cb13469D29Ae6/info.json @@ -0,0 +1,33 @@ +{ + "name": "Agrocash X", + "type": "BEP20", + "symbol": "xAGC", + "decimals": 9, + "website": "https://cryptoagrocash.com", + "description": "The cryptocurrency for Agribusiness", + "explorer": "https://bscscan.com/token/0xD80BeA63a208770e1c371DFBF70Cb13469D29Ae6", + "status": "active", + "id": "0xD80BeA63a208770e1c371DFBF70Cb13469D29Ae6", + "links": [ + { + "name": "x", + "url": "https://x.com/cryptoagrocash" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1AJrTNeY29JZWV-JNAkrSXDW1qCYetg9M/view" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/agrocash-x" + }, + { + "name": "telegram", + "url": "https://t.me/agrocashxptbr" + }, + { + "name": "docs", + "url": "https://drive.google.com/file/d/12QYe9KfTejQyWW9JpcY9VHWyjCGH6xqo/view" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD80BeA63a208770e1c371DFBF70Cb13469D29Ae6/logo.png b/blockchains/smartchain/assets/0xD80BeA63a208770e1c371DFBF70Cb13469D29Ae6/logo.png new file mode 100644 index 00000000..91df348c Binary files /dev/null and b/blockchains/smartchain/assets/0xD80BeA63a208770e1c371DFBF70Cb13469D29Ae6/logo.png differ diff --git a/blockchains/smartchain/assets/0xD83C88DB3A6cA4a32FFf1603b0f7DDce01F5f727/info.json b/blockchains/smartchain/assets/0xD83C88DB3A6cA4a32FFf1603b0f7DDce01F5f727/info.json new file mode 100644 index 00000000..93786549 --- /dev/null +++ b/blockchains/smartchain/assets/0xD83C88DB3A6cA4a32FFf1603b0f7DDce01F5f727/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream USD Coin", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0xD83C88DB3A6cA4a32FFf1603b0f7DDce01F5f727", + "type": "BEP20", + "symbol": "crUSDC", + "decimals": 8, + "status": "active", + "id": "0xD83C88DB3A6cA4a32FFf1603b0f7DDce01F5f727", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD83C88DB3A6cA4a32FFf1603b0f7DDce01F5f727/logo.png b/blockchains/smartchain/assets/0xD83C88DB3A6cA4a32FFf1603b0f7DDce01F5f727/logo.png new file mode 100644 index 00000000..1255ad0f Binary files /dev/null and b/blockchains/smartchain/assets/0xD83C88DB3A6cA4a32FFf1603b0f7DDce01F5f727/logo.png differ diff --git a/blockchains/smartchain/assets/0xD83cec69ED9d8044597A793445C86a5e763b0E3D/info.json b/blockchains/smartchain/assets/0xD83cec69ED9d8044597A793445C86a5e763b0E3D/info.json new file mode 100644 index 00000000..78bee353 --- /dev/null +++ b/blockchains/smartchain/assets/0xD83cec69ED9d8044597A793445C86a5e763b0E3D/info.json @@ -0,0 +1,11 @@ +{ + "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 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", + "decimals": 9, + "status": "active", + "id": "0xD83cec69ED9d8044597A793445C86a5e763b0E3D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD83cec69ED9d8044597A793445C86a5e763b0E3D/logo.png b/blockchains/smartchain/assets/0xD83cec69ED9d8044597A793445C86a5e763b0E3D/logo.png new file mode 100644 index 00000000..46fe88c4 Binary files /dev/null and b/blockchains/smartchain/assets/0xD83cec69ED9d8044597A793445C86a5e763b0E3D/logo.png differ diff --git a/blockchains/smartchain/assets/0xD890661EF4f88452265D36a290Fa09aC476C2020/info.json b/blockchains/smartchain/assets/0xD890661EF4f88452265D36a290Fa09aC476C2020/info.json new file mode 100644 index 00000000..519da137 --- /dev/null +++ b/blockchains/smartchain/assets/0xD890661EF4f88452265D36a290Fa09aC476C2020/info.json @@ -0,0 +1,11 @@ +{ + "name": "Brazil Technology", + "website": "https://braziltechnology.org", + "description": "O MAIOR PROJETO DeFi 100% BRASILEIRO.", + "explorer": "https://bscscan.com/token/0xD890661EF4f88452265D36a290Fa09aC476C2020", + "type": "BEP20", + "symbol": "BTEC", + "decimals": 9, + "status": "active", + "id": "0xD890661EF4f88452265D36a290Fa09aC476C2020" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD890661EF4f88452265D36a290Fa09aC476C2020/logo.png b/blockchains/smartchain/assets/0xD890661EF4f88452265D36a290Fa09aC476C2020/logo.png new file mode 100644 index 00000000..b338805b Binary files /dev/null and b/blockchains/smartchain/assets/0xD890661EF4f88452265D36a290Fa09aC476C2020/logo.png differ diff --git a/blockchains/smartchain/assets/0xD8F61cdECA41dEF1a7923F308a042F678109f54B/info.json b/blockchains/smartchain/assets/0xD8F61cdECA41dEF1a7923F308a042F678109f54B/info.json new file mode 100644 index 00000000..4d42649b --- /dev/null +++ b/blockchains/smartchain/assets/0xD8F61cdECA41dEF1a7923F308a042F678109f54B/info.json @@ -0,0 +1,37 @@ +{ + "name": "BuffedShiba", + "type": "BEP20", + "symbol": "BSHIB", + "decimals": 18, + "website": "https://www.buffedshiba.com/", + "description": "BuffedShiba is a community driven token inspired by the commonly known Buff Doge meme.", + "explorer": "https://bscscan.com/token/0xD8F61cdECA41dEF1a7923F308a042F678109f54B", + "status": "active", + "id": "0xD8F61cdECA41dEF1a7923F308a042F678109f54B", + "links": [ + { + "name": "x", + "url": "https://x.com/BuffedShiba" + }, + { + "name": "telegram", + "url": "https://t.me/BuffedShiba" + }, + { + "name": "telegram_news", + "url": "https://t.me/BuffedShibaAnnouncements" + }, + { + "name": "facebook", + "url": "https://facebook.com/buffedshiba" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/de/currencies/buffedshiba/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/buffedshiba" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD8F61cdECA41dEF1a7923F308a042F678109f54B/logo.png b/blockchains/smartchain/assets/0xD8F61cdECA41dEF1a7923F308a042F678109f54B/logo.png new file mode 100644 index 00000000..190ed57c Binary files /dev/null and b/blockchains/smartchain/assets/0xD8F61cdECA41dEF1a7923F308a042F678109f54B/logo.png differ diff --git a/blockchains/smartchain/assets/0xD914Bde476B6e44b7A1579b21F0F9193EA55F852/info.json b/blockchains/smartchain/assets/0xD914Bde476B6e44b7A1579b21F0F9193EA55F852/info.json new file mode 100644 index 00000000..db648c86 --- /dev/null +++ b/blockchains/smartchain/assets/0xD914Bde476B6e44b7A1579b21F0F9193EA55F852/info.json @@ -0,0 +1,11 @@ +{ + "name": "HuskyShiba", + "type": "BEP20", + "symbol": "HSHIBA", + "decimals": 9, + "website": "https://huskyshiba.com/", + "description": "Husky Shiba is a community driven charity token, 50% of all generated liquidity will be donated to charities chosen by the community! We have already made our first donation, after only 24hr's, and we donated $100,000! Check out our website for more info. ", + "explorer": "https://bscscan.com/token/0xD914Bde476B6e44b7A1579b21F0F9193EA55F852", + "status": "active", + "id": "0xD914Bde476B6e44b7A1579b21F0F9193EA55F852" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD914Bde476B6e44b7A1579b21F0F9193EA55F852/logo.png b/blockchains/smartchain/assets/0xD914Bde476B6e44b7A1579b21F0F9193EA55F852/logo.png new file mode 100644 index 00000000..c84721a5 Binary files /dev/null and b/blockchains/smartchain/assets/0xD914Bde476B6e44b7A1579b21F0F9193EA55F852/logo.png differ diff --git a/blockchains/smartchain/assets/0xD919C54AdeF039727038De350215627383c4ccC4/info.json b/blockchains/smartchain/assets/0xD919C54AdeF039727038De350215627383c4ccC4/info.json new file mode 100644 index 00000000..9f6f20f3 --- /dev/null +++ b/blockchains/smartchain/assets/0xD919C54AdeF039727038De350215627383c4ccC4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Abduction Protocol", + "website": "https://abductionprotocol.io/", + "description": "AbductionProtocol is an experimental DeFi project that uses a bot to provide \"inorganic permanent marketing\". Our primary goal is to make a reliable long-term investment that is completely automated, ever-growing, and community-run.", + "explorer": "https://bscscan.com/token/0xD919C54AdeF039727038De350215627383c4ccC4", + "type": "BEP20", + "symbol": "ABDUCT", + "decimals": 9, + "status": "active", + "id": "0xD919C54AdeF039727038De350215627383c4ccC4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD919C54AdeF039727038De350215627383c4ccC4/logo.png b/blockchains/smartchain/assets/0xD919C54AdeF039727038De350215627383c4ccC4/logo.png new file mode 100644 index 00000000..cff41b3f Binary files /dev/null and b/blockchains/smartchain/assets/0xD919C54AdeF039727038De350215627383c4ccC4/logo.png differ diff --git a/blockchains/smartchain/assets/0xD91a6660e938F2A4CA9117d104f31a30Be7f251B/info.json b/blockchains/smartchain/assets/0xD91a6660e938F2A4CA9117d104f31a30Be7f251B/info.json new file mode 100644 index 00000000..b3c6276a --- /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 new file mode 100644 index 00000000..4df63281 --- /dev/null +++ b/blockchains/smartchain/assets/0xD930f493E153d745aFB124F9859bE8479e4b1862/info.json @@ -0,0 +1,37 @@ +{ + "name": "Spaceman LOL Token", + "website": "https://www.spaceman.lol/", + "description": "Spaceman is a fairly propelled DeFi Token.", + "explorer": "https://bscscan.com/token/0xD930f493E153d745aFB124F9859bE8479e4b1862", + "type": "BEP20", + "symbol": "SML", + "decimals": 18, + "status": "active", + "id": "0xD930f493E153d745aFB124F9859bE8479e4b1862", + "links": [ + { + "name": "github", + "url": "https://github.com/syllena/spaceman-lol" + }, + { + "name": "x", + "url": "https://x.com/spaceman_lol" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/REDAvsM_ZAM3MmQ0" + }, + { + "name": "discord", + "url": "https://discord.com/invite/xEAzmzMZ" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/spaceman_lol" + }, + { + "name": "medium", + "url": "https://spaceman-lol.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD930f493E153d745aFB124F9859bE8479e4b1862/logo.png b/blockchains/smartchain/assets/0xD930f493E153d745aFB124F9859bE8479e4b1862/logo.png new file mode 100644 index 00000000..0782749b Binary files /dev/null and b/blockchains/smartchain/assets/0xD930f493E153d745aFB124F9859bE8479e4b1862/logo.png differ diff --git a/blockchains/smartchain/assets/0xD983A29d0E966a3C51b540085314057D3bb4A227/info.json b/blockchains/smartchain/assets/0xD983A29d0E966a3C51b540085314057D3bb4A227/info.json new file mode 100644 index 00000000..4ed8c480 --- /dev/null +++ b/blockchains/smartchain/assets/0xD983A29d0E966a3C51b540085314057D3bb4A227/info.json @@ -0,0 +1,11 @@ +{ + "name": "Polarium.Finance", + "type": "BEP20", + "symbol": "POLARIUM", + "decimals": 8, + "website": "https://www.polarium.finance", + "description": "Future Gaming Community Token.We will provide exclusive reward, NFTs and partnership along gamer community across the world.", + "explorer": "https://bscscan.com/token/0xD983A29d0E966a3C51b540085314057D3bb4A227", + "status": "active", + "id": "0xD983A29d0E966a3C51b540085314057D3bb4A227" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD983A29d0E966a3C51b540085314057D3bb4A227/logo.png b/blockchains/smartchain/assets/0xD983A29d0E966a3C51b540085314057D3bb4A227/logo.png new file mode 100644 index 00000000..927a6941 Binary files /dev/null and b/blockchains/smartchain/assets/0xD983A29d0E966a3C51b540085314057D3bb4A227/logo.png differ diff --git a/blockchains/smartchain/assets/0xD98560689C6e748DC37bc410B4d3096B1aA3D8C2/info.json b/blockchains/smartchain/assets/0xD98560689C6e748DC37bc410B4d3096B1aA3D8C2/info.json new file mode 100644 index 00000000..b73f4f66 --- /dev/null +++ b/blockchains/smartchain/assets/0xD98560689C6e748DC37bc410B4d3096B1aA3D8C2/info.json @@ -0,0 +1,38 @@ +{ + "name": "DeFi For You.", + "website": "https://defi.com.vn", + "description": "DEFI For You. Is a listing where by users can make pawn loans online to a worldwide market. We are basically letting you run your own online finance company with rates of your choosing. If you ever dreamed of owning your own bank well now you can. DEFi For You aims to clean up the Pawn industry using DFY smart contracts. At last Cryptocurrency has come if age. This is a world first and the market is limitless.", + "explorer": "https://bscscan.com/token/0xd98560689c6e748dc37bc410b4d3096b1aa3d8c2", + "research": "", + "type": "BEP20", + "symbol": "DFY", + "decimals": 18, + "status": "active", + "id": "0xD98560689C6e748DC37bc410B4d3096B1aA3D8C2", + "links": [ + { + "name": "github", + "url": "https://github.com/defi-vn/DeFi-VN-Smart-Contract" + }, + { + "name": "x", + "url": "https://x.com/DeFi For You." + }, + { + "name": "telegram", + "url": "https://t.me/DefiForYouDFY" + }, + { + "name": "facebook", + "url": "https://facebook.com/DeFiForYouDFY" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/DeFiForYou" + }, + { + "name": "whitepaper", + "url": "https://defi.com.vn/document/DFY-White-Paper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD98560689C6e748DC37bc410B4d3096B1aA3D8C2/logo.png b/blockchains/smartchain/assets/0xD98560689C6e748DC37bc410B4d3096B1aA3D8C2/logo.png new file mode 100644 index 00000000..68868948 Binary files /dev/null and b/blockchains/smartchain/assets/0xD98560689C6e748DC37bc410B4d3096B1aA3D8C2/logo.png differ diff --git a/blockchains/smartchain/assets/0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0/info.json b/blockchains/smartchain/assets/0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0/info.json new file mode 100644 index 00000000..d0e3283d --- /dev/null +++ b/blockchains/smartchain/assets/0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0/info.json @@ -0,0 +1,29 @@ +{ + "name": "INPA Coin", + "type": "BEP20", + "symbol": "INPA", + "decimals": 18, + "website": "https://inpacoin.com/", + "description": "INPA Coin (International Non-Fungible permanent asset) is an Autonomous yield and Liquidity generation protocol", + "explorer": "https://bscscan.com/token/0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0", + "status": "active", + "id": "0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0", + "links": [ + { + "name": "x", + "url": "https://x.com/inpacoin2021" + }, + { + "name": "telegram", + "url": "https://t.me/inpacoinofficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/inpacoinofficial" + }, + { + "name": "github", + "url": "https://github.com/INPACOINOfficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0/logo.png b/blockchains/smartchain/assets/0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0/logo.png new file mode 100644 index 00000000..82549dc1 Binary files /dev/null and b/blockchains/smartchain/assets/0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0/logo.png differ diff --git a/blockchains/smartchain/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json b/blockchains/smartchain/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/info.json new file mode 100644 index 00000000..0edbd35c --- /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 00000000..df73bbcc Binary files /dev/null and b/blockchains/smartchain/assets/0xD9FC3E075d45254a1D834fEa18AF8041207DeA0A/logo.png differ diff --git a/blockchains/smartchain/assets/0xD9a0DC07D25ed65DA8eD4321C42f7f35De81bf2D/info.json b/blockchains/smartchain/assets/0xD9a0DC07D25ed65DA8eD4321C42f7f35De81bf2D/info.json new file mode 100644 index 00000000..56496f38 --- /dev/null +++ b/blockchains/smartchain/assets/0xD9a0DC07D25ed65DA8eD4321C42f7f35De81bf2D/info.json @@ -0,0 +1,11 @@ +{ + "name": "FishSwap", + "type": "BEP20", + "symbol": "FISH", + "decimals": 18, + "website": "https://FishSwap.App/", + "description": "FISH is governance of FishSwap - A Decentralzied Exchange Protocol with Optimized Yield Farming, Pools and Lottery features. ", + "explorer": "https://bscscan.com/token/0xD9a0DC07D25ed65DA8eD4321C42f7f35De81bf2D", + "status": "active", + "id": "0xD9a0DC07D25ed65DA8eD4321C42f7f35De81bf2D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD9a0DC07D25ed65DA8eD4321C42f7f35De81bf2D/logo.png b/blockchains/smartchain/assets/0xD9a0DC07D25ed65DA8eD4321C42f7f35De81bf2D/logo.png new file mode 100644 index 00000000..3da3a70f Binary files /dev/null and b/blockchains/smartchain/assets/0xD9a0DC07D25ed65DA8eD4321C42f7f35De81bf2D/logo.png differ diff --git a/blockchains/smartchain/assets/0xDA1060158F7D593667cCE0a15DB346BB3FfB3596/info.json b/blockchains/smartchain/assets/0xDA1060158F7D593667cCE0a15DB346BB3FfB3596/info.json new file mode 100644 index 00000000..d747c05a --- /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 00000000..500d45b7 Binary files /dev/null and b/blockchains/smartchain/assets/0xDA1060158F7D593667cCE0a15DB346BB3FfB3596/logo.png differ diff --git a/blockchains/smartchain/assets/0xDA360309C59CB8C434b28A91b823344a96444278/info.json b/blockchains/smartchain/assets/0xDA360309C59CB8C434b28A91b823344a96444278/info.json new file mode 100644 index 00000000..419e1017 --- /dev/null +++ b/blockchains/smartchain/assets/0xDA360309C59CB8C434b28A91b823344a96444278/info.json @@ -0,0 +1,11 @@ +{ + "name": "Merlin Lab", + "website": "https://merlinlab.com/farm", + "description": "$MERL is a deflationary coin by Merlin Lab used for its DeFi Ecosystem.", + "explorer": "https://bscscan.com/token/0xDA360309C59CB8C434b28A91b823344a96444278", + "type": "BEP20", + "symbol": "MERL", + "decimals": 18, + "status": "active", + "id": "0xDA360309C59CB8C434b28A91b823344a96444278" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDA360309C59CB8C434b28A91b823344a96444278/logo.png b/blockchains/smartchain/assets/0xDA360309C59CB8C434b28A91b823344a96444278/logo.png new file mode 100644 index 00000000..e1c03b86 Binary files /dev/null and b/blockchains/smartchain/assets/0xDA360309C59CB8C434b28A91b823344a96444278/logo.png differ diff --git a/blockchains/smartchain/assets/0xDAa52A3A1B1c76D52D80B8933202c83Da9B786e4/info.json b/blockchains/smartchain/assets/0xDAa52A3A1B1c76D52D80B8933202c83Da9B786e4/info.json new file mode 100644 index 00000000..7bf8c87b --- /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 00000000..15832722 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 new file mode 100644 index 00000000..d759c8b3 --- /dev/null +++ b/blockchains/smartchain/assets/0xDB0170e2d0c1CC1b2E7a90313d9B9afA4f250289/info.json @@ -0,0 +1,25 @@ +{ + "name": "ADAPad.io", + "type": "BEP20", + "symbol": "ADAPAD", + "decimals": 18, + "website": "https://adapad.io/", + "description": "ADAPad is launchpad", + "explorer": "https://bscscan.com/token/0xDB0170e2d0c1CC1b2E7a90313d9B9afA4f250289", + "status": "active", + "id": "0xDB0170e2d0c1CC1b2E7a90313d9B9afA4f250289", + "links": [ + { + "name": "x", + "url": "https://x.com/ADAPadofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/adapad/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/adapad" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDB0170e2d0c1CC1b2E7a90313d9B9afA4f250289/logo.png b/blockchains/smartchain/assets/0xDB0170e2d0c1CC1b2E7a90313d9B9afA4f250289/logo.png new file mode 100644 index 00000000..ae4b7857 Binary files /dev/null and b/blockchains/smartchain/assets/0xDB0170e2d0c1CC1b2E7a90313d9B9afA4f250289/logo.png differ diff --git a/blockchains/smartchain/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/info.json b/blockchains/smartchain/assets/0xDB021b1B247fe2F1fa57e0A87C748Cc1E321F07F/info.json new file mode 100644 index 00000000..1ef1a837 --- /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 00000000..40c6216b 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 new file mode 100644 index 00000000..bfdf23d4 --- /dev/null +++ b/blockchains/smartchain/assets/0xDB79c12d1d0670988A39B0E48b96e955eF922d24/info.json @@ -0,0 +1,36 @@ +{ + "name": "Teddy Doge V2", + "type": "BEP20", + "symbol": "Teddy V2", + "decimals": 18, + "website": "https://teddydoge.finance", + "description": "A one-stop full-featured decentralized exchange.", + "explorer": "https://bscscan.com/token/0xDB79c12d1d0670988A39B0E48b96e955eF922d24", + "status": "active", + "id": "0xDB79c12d1d0670988A39B0E48b96e955eF922d24", + "links": [ + { + "name": "x", + "url": "https://x.com/Teddydoge1" + }, + { + "name": "github", + "url": "https://github.com/Teddydogev2/TeddydogeV2" + }, + { + "name": "telegram", + "url": "https://t.me/TeddyDoge_Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/teddydoge/" + }, + { + "name": "whitepaper", + "url": "https://teddydoge.finance/Whitepaper.pdf" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDB79c12d1d0670988A39B0E48b96e955eF922d24/logo.png b/blockchains/smartchain/assets/0xDB79c12d1d0670988A39B0E48b96e955eF922d24/logo.png new file mode 100644 index 00000000..5f42e043 Binary files /dev/null and b/blockchains/smartchain/assets/0xDB79c12d1d0670988A39B0E48b96e955eF922d24/logo.png differ diff --git a/blockchains/smartchain/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/info.json b/blockchains/smartchain/assets/0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7/info.json new file mode 100644 index 00000000..f6155bf6 --- /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 00000000..78a6538f 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 00000000..fa004881 --- /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 00000000..4e61ec4c Binary files /dev/null and b/blockchains/smartchain/assets/0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4/logo.png differ diff --git a/blockchains/smartchain/assets/0xDCD289ECF644bEC54393ba6Ce8dB35e9B5Ff75e7/info.json b/blockchains/smartchain/assets/0xDCD289ECF644bEC54393ba6Ce8dB35e9B5Ff75e7/info.json new file mode 100644 index 00000000..35b64318 --- /dev/null +++ b/blockchains/smartchain/assets/0xDCD289ECF644bEC54393ba6Ce8dB35e9B5Ff75e7/info.json @@ -0,0 +1,11 @@ +{ + "name": "FairLunar", + "website": "https://fairlunar.space", + "description": "FairLunar is a community-drievn token with it’s own usecase", + "explorer": "https://bscscan.com/token/0xdcd289ecf644bec54393ba6ce8db35e9b5ff75e7", + "type": "BEP20", + "symbol": "FLUNAR", + "decimals": 9, + "status": "active", + "id": "0xDCD289ECF644bEC54393ba6Ce8dB35e9B5Ff75e7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDCD289ECF644bEC54393ba6Ce8dB35e9B5Ff75e7/logo.png b/blockchains/smartchain/assets/0xDCD289ECF644bEC54393ba6Ce8dB35e9B5Ff75e7/logo.png new file mode 100644 index 00000000..99652210 Binary files /dev/null and b/blockchains/smartchain/assets/0xDCD289ECF644bEC54393ba6Ce8dB35e9B5Ff75e7/logo.png differ diff --git a/blockchains/smartchain/assets/0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef/info.json b/blockchains/smartchain/assets/0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef/info.json new file mode 100644 index 00000000..de0c4433 --- /dev/null +++ b/blockchains/smartchain/assets/0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef/info.json @@ -0,0 +1,25 @@ +{ + "name": "Offshore Plan", + "type": "BEP20", + "symbol": "OPC", + "decimals": 18, + "website": "https://www.douglas-amc.org", + "description": "The Offshore Plan is an offshore plan launched by the Bulgarian DSK Bank institution for the offshore financing of South Korea and Bulgaria. It promotes a more complete regulatory system in the global cryptocurrency market, and has a stronger effect on cross-border remittances and offshore finance. A digital economic alliance with border circulation, value open sharing, and industrial collaborative innovation.", + "explorer": "https://bscscan.com/token/0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef", + "status": "active", + "id": "0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef", + "links": [ + { + "name": "x", + "url": "https://x.com/DouglasAMC" + }, + { + "name": "telegram", + "url": "https://t.me/OffshorePlanChian" + } + ], + "tags": [ + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef/logo.png b/blockchains/smartchain/assets/0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef/logo.png new file mode 100644 index 00000000..e9f509c1 Binary files /dev/null and b/blockchains/smartchain/assets/0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef/logo.png differ diff --git a/blockchains/smartchain/assets/0xDD87Df4697527e6fBc5586cB0105bD8aB0FA7A61/info.json b/blockchains/smartchain/assets/0xDD87Df4697527e6fBc5586cB0105bD8aB0FA7A61/info.json new file mode 100644 index 00000000..f2d876ee --- /dev/null +++ b/blockchains/smartchain/assets/0xDD87Df4697527e6fBc5586cB0105bD8aB0FA7A61/info.json @@ -0,0 +1,11 @@ +{ + "name": "Game Token", + "website": "https://gametoken.finance", + "description": "GME - Yield Farm on BSC with its own game shop. Usecase for GME to buy games on all gaming platforms (pc, psn, xbox, nintendo) at gamemarket.", + "explorer": "https://bscscan.com/token/0xDD87Df4697527e6fBc5586cB0105bD8aB0FA7A61", + "type": "BEP20", + "symbol": "GMEv3", + "decimals": 18, + "status": "active", + "id": "0xDD87Df4697527e6fBc5586cB0105bD8aB0FA7A61" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDD87Df4697527e6fBc5586cB0105bD8aB0FA7A61/logo.png b/blockchains/smartchain/assets/0xDD87Df4697527e6fBc5586cB0105bD8aB0FA7A61/logo.png new file mode 100644 index 00000000..17c96273 Binary files /dev/null and b/blockchains/smartchain/assets/0xDD87Df4697527e6fBc5586cB0105bD8aB0FA7A61/logo.png differ diff --git a/blockchains/smartchain/assets/0xDE2F075f6F14EB9D96755b24E416A53E736Ca363/info.json b/blockchains/smartchain/assets/0xDE2F075f6F14EB9D96755b24E416A53E736Ca363/info.json new file mode 100644 index 00000000..4a5aaead --- /dev/null +++ b/blockchains/smartchain/assets/0xDE2F075f6F14EB9D96755b24E416A53E736Ca363/info.json @@ -0,0 +1,29 @@ +{ + "name": "Frax Share", + "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://bscscan.com/token/0xDE2F075f6F14EB9D96755b24E416A53E736Ca363", + "type": "BEP20", + "symbol": "FXS", + "decimals": 18, + "status": "active", + "id": "0xDE2F075f6F14EB9D96755b24E416A53E736Ca363", + "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/smartchain/assets/0xDE2F075f6F14EB9D96755b24E416A53E736Ca363/logo.png b/blockchains/smartchain/assets/0xDE2F075f6F14EB9D96755b24E416A53E736Ca363/logo.png new file mode 100644 index 00000000..5072baa5 Binary files /dev/null and b/blockchains/smartchain/assets/0xDE2F075f6F14EB9D96755b24E416A53E736Ca363/logo.png differ diff --git a/blockchains/smartchain/assets/0xDE4e179CC1d3b298216B96893767b9b01A6Bc413/info.json b/blockchains/smartchain/assets/0xDE4e179CC1d3b298216B96893767b9b01A6Bc413/info.json new file mode 100644 index 00000000..31a215a8 --- /dev/null +++ b/blockchains/smartchain/assets/0xDE4e179CC1d3b298216B96893767b9b01A6Bc413/info.json @@ -0,0 +1,11 @@ +{ + "name": "KingToken", + "website": "https://swapking.net", + "description": "A decentralized exchange with 100% profit distribution, trading mining and and automated market maker combination.", + "explorer": "https://bscscan.com/token/0xde4e179cc1d3b298216b96893767b9b01a6bc413", + "type": "BEP20", + "symbol": "KING", + "decimals": 18, + "status": "active", + "id": "0xDE4e179CC1d3b298216B96893767b9b01A6Bc413" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDE4e179CC1d3b298216B96893767b9b01A6Bc413/logo.png b/blockchains/smartchain/assets/0xDE4e179CC1d3b298216B96893767b9b01A6Bc413/logo.png new file mode 100644 index 00000000..d76f5eb5 Binary files /dev/null and b/blockchains/smartchain/assets/0xDE4e179CC1d3b298216B96893767b9b01A6Bc413/logo.png differ diff --git a/blockchains/smartchain/assets/0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB/info.json b/blockchains/smartchain/assets/0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB/info.json new file mode 100644 index 00000000..68b79d8c --- /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 00000000..6f9ef7a8 Binary files /dev/null and b/blockchains/smartchain/assets/0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB/logo.png differ diff --git a/blockchains/smartchain/assets/0xDE619A9E0eEeAA9F8CD39522Ed788234837F3B26/info.json b/blockchains/smartchain/assets/0xDE619A9E0eEeAA9F8CD39522Ed788234837F3B26/info.json new file mode 100644 index 00000000..4c290205 --- /dev/null +++ b/blockchains/smartchain/assets/0xDE619A9E0eEeAA9F8CD39522Ed788234837F3B26/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hungarian Vizsla Inu", + "symbol": "HVI", + "type": "BEP20", + "decimals": 9, + "description": "Vizsla Inu is the best dogs meme and Charity Token in Hungary", + "website": "https://vizslainu.com/", + "explorer": "https://bscscan.com/token/0xde619a9e0eeeaa9f8cd39522ed788234837f3b26", + "status": "active", + "id": "0xDE619A9E0eEeAA9F8CD39522Ed788234837F3B26" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDE619A9E0eEeAA9F8CD39522Ed788234837F3B26/logo.png b/blockchains/smartchain/assets/0xDE619A9E0eEeAA9F8CD39522Ed788234837F3B26/logo.png new file mode 100644 index 00000000..6aedd82a Binary files /dev/null and b/blockchains/smartchain/assets/0xDE619A9E0eEeAA9F8CD39522Ed788234837F3B26/logo.png differ diff --git a/blockchains/smartchain/assets/0xDE9D6036FCA870f7efc5A82722Ae694c371Ac909/info.json b/blockchains/smartchain/assets/0xDE9D6036FCA870f7efc5A82722Ae694c371Ac909/info.json new file mode 100644 index 00000000..c13849ce --- /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 00000000..eae90c65 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 00000000..2a2998aa --- /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/0xDF91842028B9ae0B9993025182fEA1eAfEC66771/info.json b/blockchains/smartchain/assets/0xDF91842028B9ae0B9993025182fEA1eAfEC66771/info.json new file mode 100644 index 00000000..f25ef671 --- /dev/null +++ b/blockchains/smartchain/assets/0xDF91842028B9ae0B9993025182fEA1eAfEC66771/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tyrannosaurus Rex", + "website": "https://trextoken.net/", + "description": "Tyrannosaurus Rex ($TREX) is a 100% community-focused and decentralized utility token that has no buy fee and only selling fee to encourage buying and discourage selling", + "explorer": "https://bscscan.com/token/0xdf91842028b9ae0b9993025182fea1eafec66771", + "type": "BEP20", + "symbol": "TREX", + "decimals": 9, + "status": "active", + "id": "0xDF91842028B9ae0B9993025182fEA1eAfEC66771" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDF91842028B9ae0B9993025182fEA1eAfEC66771/logo.png b/blockchains/smartchain/assets/0xDF91842028B9ae0B9993025182fEA1eAfEC66771/logo.png new file mode 100644 index 00000000..59ee945e Binary files /dev/null and b/blockchains/smartchain/assets/0xDF91842028B9ae0B9993025182fEA1eAfEC66771/logo.png differ diff --git a/blockchains/smartchain/assets/0xDa182944E84092e11370CA521f10AEF488888888/info.json b/blockchains/smartchain/assets/0xDa182944E84092e11370CA521f10AEF488888888/info.json new file mode 100644 index 00000000..317cc64f --- /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 new file mode 100644 index 00000000..da31900c --- /dev/null +++ b/blockchains/smartchain/assets/0xDa4714fEE90Ad7DE50bC185ccD06b175D23906c1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Godzilla", + "website": "https://godzillacoin.io/", + "description": "Godzilla from the underwater world will break the old blockchain order and lead to a new community.Godzilla=Game + DEFI + DAO + NFT.", + "explorer": "https://bscscan.com/token/0xDa4714fEE90Ad7DE50bC185ccD06b175D23906c1", + "type": "BEP20", + "symbol": "GODZ", + "decimals": 9, + "status": "active", + "id": "0xDa4714fEE90Ad7DE50bC185ccD06b175D23906c1", + "links": [ + { + "name": "x", + "url": "https://x.com/coingodzilla" + }, + { + "name": "telegram", + "url": "https://t.me/godzillaen" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDa4714fEE90Ad7DE50bC185ccD06b175D23906c1/logo.png b/blockchains/smartchain/assets/0xDa4714fEE90Ad7DE50bC185ccD06b175D23906c1/logo.png new file mode 100644 index 00000000..c03fef48 Binary files /dev/null and b/blockchains/smartchain/assets/0xDa4714fEE90Ad7DE50bC185ccD06b175D23906c1/logo.png differ diff --git a/blockchains/smartchain/assets/0xDa6802BbEC06Ab447A68294A63DE47eD4506ACAA/info.json b/blockchains/smartchain/assets/0xDa6802BbEC06Ab447A68294A63DE47eD4506ACAA/info.json new file mode 100644 index 00000000..d9f65e7e --- /dev/null +++ b/blockchains/smartchain/assets/0xDa6802BbEC06Ab447A68294A63DE47eD4506ACAA/info.json @@ -0,0 +1,33 @@ +{ + "name": "CrypterToken", + "type": "BEP20", + "symbol": "CRYPT", + "decimals": 9, + "website": "https://crypter.quest/", + "description": "Crypter is a hyper deflationary token with great utility. Holders of CRYPT will receive 8% of every Buy/Sell transaction in BUSD. Crypter's ecosystem will consist of a Facebook-like social network platform with integrated DAPPs (Crypter DEX, Crypter Wallet, a Sniper Bot and a Portfolio Tracker). A skill-based fighting game similar to Tekken will also be developed (ChainQuest). Crypter will eventually become the first engage-to-earn social trading platform.", + "explorer": "https://bscscan.com/token/0xDa6802BbEC06Ab447A68294A63DE47eD4506ACAA", + "status": "active", + "id": "0xDa6802BbEC06Ab447A68294A63DE47eD4506ACAA", + "links": [ + { + "name": "x", + "url": "https://x.com/CrypterOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/cryptermain" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cryptertoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptertoken/" + }, + { + "name": "whitepaper", + "url": "https://crypter.quest/Crypter-Whitepaper-V2" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDa6802BbEC06Ab447A68294A63DE47eD4506ACAA/logo.png b/blockchains/smartchain/assets/0xDa6802BbEC06Ab447A68294A63DE47eD4506ACAA/logo.png new file mode 100644 index 00000000..36ef2879 Binary files /dev/null and b/blockchains/smartchain/assets/0xDa6802BbEC06Ab447A68294A63DE47eD4506ACAA/logo.png differ diff --git a/blockchains/smartchain/assets/0xDad07D0Ca26ed4109Bc00893dBee3Ed4cE8ce2a4/info.json b/blockchains/smartchain/assets/0xDad07D0Ca26ed4109Bc00893dBee3Ed4cE8ce2a4/info.json new file mode 100644 index 00000000..8f3f270f --- /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 00000000..a3964e69 Binary files /dev/null and b/blockchains/smartchain/assets/0xDad07D0Ca26ed4109Bc00893dBee3Ed4cE8ce2a4/logo.png differ diff --git a/blockchains/smartchain/assets/0xDaf4F11947E73f0eeBEf4a820f4Be9B854aa993B/info.json b/blockchains/smartchain/assets/0xDaf4F11947E73f0eeBEf4a820f4Be9B854aa993B/info.json new file mode 100644 index 00000000..0ff0e60b --- /dev/null +++ b/blockchains/smartchain/assets/0xDaf4F11947E73f0eeBEf4a820f4Be9B854aa993B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stellar Diamond", + "type": "BEP20", + "symbol": "XLD", + "decimals": 9, + "website": "https://stellardiamond.net", + "description": "The project is based on a BEP20 token called XLD. Its main feature involves an auto-claim BNB rewarding process, in which the contract periodically sends out BNB to addresses that hold XLD tokens. ", + "explorer": "https://bscscan.com/token/0xDaf4F11947E73f0eeBEf4a820f4Be9B854aa993B", + "status": "active", + "id": "0xDaf4F11947E73f0eeBEf4a820f4Be9B854aa993B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDaf4F11947E73f0eeBEf4a820f4Be9B854aa993B/logo.png b/blockchains/smartchain/assets/0xDaf4F11947E73f0eeBEf4a820f4Be9B854aa993B/logo.png new file mode 100644 index 00000000..7766267c Binary files /dev/null and b/blockchains/smartchain/assets/0xDaf4F11947E73f0eeBEf4a820f4Be9B854aa993B/logo.png differ diff --git a/blockchains/smartchain/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json b/blockchains/smartchain/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json new file mode 100644 index 00000000..2e8747ce --- /dev/null +++ b/blockchains/smartchain/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json @@ -0,0 +1,47 @@ +{ + "name": "Vote-escrowed EverRise", + "type": "BEP20", + "symbol": "veRISE", + "decimals": 18, + "website": "https://www.everrise.com/", + "description": "Virtual token that allows the Vote Escrowed (ve) EverRise weighted governance tokens from EverRise Staking NFTs to display in wallet balances.", + "explorer": "https://bscscan.com/token/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", + "status": "active", + "id": "0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", + "links": [ + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png b/blockchains/smartchain/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png new file mode 100644 index 00000000..47ffbe08 Binary files /dev/null and b/blockchains/smartchain/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png differ diff --git a/blockchains/smartchain/assets/0xDbCa1Fecbd2d3AE9EfC48f3E823fedE48530551a/info.json b/blockchains/smartchain/assets/0xDbCa1Fecbd2d3AE9EfC48f3E823fedE48530551a/info.json new file mode 100644 index 00000000..ba2a0385 --- /dev/null +++ b/blockchains/smartchain/assets/0xDbCa1Fecbd2d3AE9EfC48f3E823fedE48530551a/info.json @@ -0,0 +1,11 @@ +{ + "name": "BYCOIN NFT", + "type": "BEP20", + "symbol": "BYCO", + "decimals": 9, + "website": "https://bycoin.digital/", + "description": "BYCOIN NFT DATATOKENS TURN DATA INTO DATA ASSETS. THIS ENABLES DATA WALLETS, DATA EXCHANGES, AND DATA CO-OPS BY LEVERAGING CRYPTO WALLETS, EXCHANGES AND GENERATE WITH OUR ALGORITHM NFT TOKENS.", + "explorer": "https://bscscan.com/token/0xDbCa1Fecbd2d3AE9EfC48f3E823fedE48530551a", + "status": "active", + "id": "0xDbCa1Fecbd2d3AE9EfC48f3E823fedE48530551a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDbCa1Fecbd2d3AE9EfC48f3E823fedE48530551a/logo.png b/blockchains/smartchain/assets/0xDbCa1Fecbd2d3AE9EfC48f3E823fedE48530551a/logo.png new file mode 100644 index 00000000..2374ed8b Binary files /dev/null and b/blockchains/smartchain/assets/0xDbCa1Fecbd2d3AE9EfC48f3E823fedE48530551a/logo.png differ diff --git a/blockchains/smartchain/assets/0xDc06717F367e57A16e06CcE0c4761604460da8Fc/info.json b/blockchains/smartchain/assets/0xDc06717F367e57A16e06CcE0c4761604460da8Fc/info.json new file mode 100644 index 00000000..3aab768d --- /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 00000000..cd5b24ff Binary files /dev/null and b/blockchains/smartchain/assets/0xDc06717F367e57A16e06CcE0c4761604460da8Fc/logo.png differ diff --git a/blockchains/smartchain/assets/0xDc0f0a5719c39764b011eDd02811BD228296887C/info.json b/blockchains/smartchain/assets/0xDc0f0a5719c39764b011eDd02811BD228296887C/info.json new file mode 100644 index 00000000..fe904e3b --- /dev/null +++ b/blockchains/smartchain/assets/0xDc0f0a5719c39764b011eDd02811BD228296887C/info.json @@ -0,0 +1,11 @@ +{ + "name": "DOS Network Token", + "symbol": "DOS", + "type": "BEP20", + "decimals": 18, + "description": "DOS Network describes itself as a decentralized oracle service supporting multiple heterogeneous blockchains.", + "website": "https://dos.network/", + "explorer": "https://bscscan.com/token/0xdc0f0a5719c39764b011edd02811bd228296887c", + "status": "active", + "id": "0xDc0f0a5719c39764b011eDd02811BD228296887C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDc0f0a5719c39764b011eDd02811BD228296887C/logo.png b/blockchains/smartchain/assets/0xDc0f0a5719c39764b011eDd02811BD228296887C/logo.png new file mode 100644 index 00000000..82a97b12 Binary files /dev/null and b/blockchains/smartchain/assets/0xDc0f0a5719c39764b011eDd02811BD228296887C/logo.png differ diff --git a/blockchains/smartchain/assets/0xDc3d56d9f3A2b3cAb5Bd6cA6549229c33cB11AaB/info.json b/blockchains/smartchain/assets/0xDc3d56d9f3A2b3cAb5Bd6cA6549229c33cB11AaB/info.json new file mode 100644 index 00000000..a8704ac8 --- /dev/null +++ b/blockchains/smartchain/assets/0xDc3d56d9f3A2b3cAb5Bd6cA6549229c33cB11AaB/info.json @@ -0,0 +1,11 @@ +{ + "name": "BabYoda", + "website": "https://babyoda.net/", + "description": "BABYODA was inspired by the idea of joining the forces of cuteness overload and the legacy of Master Yoda in one, ultimate meme token.​ ", + "explorer": "https://bscscan.com/token/0xdc3d56d9f3a2b3cab5bd6ca6549229c33cb11aab", + "type": "BEP20", + "symbol": "BABYODA", + "decimals": 9, + "status": "active", + "id": "0xDc3d56d9f3A2b3cAb5Bd6cA6549229c33cB11AaB" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDc3d56d9f3A2b3cAb5Bd6cA6549229c33cB11AaB/logo.png b/blockchains/smartchain/assets/0xDc3d56d9f3A2b3cAb5Bd6cA6549229c33cB11AaB/logo.png new file mode 100644 index 00000000..96cfc0dc Binary files /dev/null and b/blockchains/smartchain/assets/0xDc3d56d9f3A2b3cAb5Bd6cA6549229c33cB11AaB/logo.png differ diff --git a/blockchains/smartchain/assets/0xDc49d53330317cBc6924fA53042e0C9bCa0A8d63/info.json b/blockchains/smartchain/assets/0xDc49d53330317cBc6924fA53042e0C9bCa0A8d63/info.json new file mode 100644 index 00000000..15c03b49 --- /dev/null +++ b/blockchains/smartchain/assets/0xDc49d53330317cBc6924fA53042e0C9bCa0A8d63/info.json @@ -0,0 +1,32 @@ +{ + "name": "DOGEDI", + "type": "BEP20", + "symbol": "DOGEDI", + "decimals": 12, + "website": "https://dogedi.com", + "description": "DOGEDI ($DOGEDI or DOGEDI) is a collateralized cryptocurrency that grants investors holding DOGEDI instant BNB rewards on all transactions with AUTOCLAIM", + "explorer": "https://bscscan.com/token/0xDc49d53330317cBc6924fA53042e0C9bCa0A8d63", + "status": "active", + "id": "0xDc49d53330317cBc6924fA53042e0C9bCa0A8d63", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/DogediToken" + }, + { + "name": "telegram", + "url": "https://t.me/dogeditokenofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogedi/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/dogedi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDc49d53330317cBc6924fA53042e0C9bCa0A8d63/logo.png b/blockchains/smartchain/assets/0xDc49d53330317cBc6924fA53042e0C9bCa0A8d63/logo.png new file mode 100644 index 00000000..fc8ca003 Binary files /dev/null and b/blockchains/smartchain/assets/0xDc49d53330317cBc6924fA53042e0C9bCa0A8d63/logo.png differ diff --git a/blockchains/smartchain/assets/0xDcb624C870d73CDD0B3345762977CB14dE598cd0/info.json b/blockchains/smartchain/assets/0xDcb624C870d73CDD0B3345762977CB14dE598cd0/info.json new file mode 100644 index 00000000..674caca0 --- /dev/null +++ b/blockchains/smartchain/assets/0xDcb624C870d73CDD0B3345762977CB14dE598cd0/info.json @@ -0,0 +1,11 @@ +{ + "name": "YFIH2", + "website": "https://h2finance.io", + "description": "YFIH2 is the first token of H2.Finance which mission is to help energy companies by lending money for their green energy investments.", + "explorer": "https://bscscan.com/token/0xDcb624C870d73CDD0B3345762977CB14dE598cd0", + "type": "BEP20", + "symbol": "YFIH2", + "decimals": 18, + "status": "active", + "id": "0xDcb624C870d73CDD0B3345762977CB14dE598cd0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDcb624C870d73CDD0B3345762977CB14dE598cd0/logo.png b/blockchains/smartchain/assets/0xDcb624C870d73CDD0B3345762977CB14dE598cd0/logo.png new file mode 100644 index 00000000..950047af Binary files /dev/null and b/blockchains/smartchain/assets/0xDcb624C870d73CDD0B3345762977CB14dE598cd0/logo.png differ diff --git a/blockchains/smartchain/assets/0xDcd4536508060dab8F43C334B3a6C72c39528DA5/info.json b/blockchains/smartchain/assets/0xDcd4536508060dab8F43C334B3a6C72c39528DA5/info.json new file mode 100644 index 00000000..596aae18 --- /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 00000000..136dac3e Binary files /dev/null and b/blockchains/smartchain/assets/0xDcd4536508060dab8F43C334B3a6C72c39528DA5/logo.png differ diff --git a/blockchains/smartchain/assets/0xDcd7C0BeDDe5a0421f59423648E3F956fcDDd5BE/info.json b/blockchains/smartchain/assets/0xDcd7C0BeDDe5a0421f59423648E3F956fcDDd5BE/info.json new file mode 100644 index 00000000..c62aa27f --- /dev/null +++ b/blockchains/smartchain/assets/0xDcd7C0BeDDe5a0421f59423648E3F956fcDDd5BE/info.json @@ -0,0 +1,11 @@ +{ + "name": "UAVcoin", + "type": "BEP20", + "symbol": "UAV", + "decimals": 18, + "website": "https://uavcoin.co", + "description": "For A Decentralized Drone Flight Time, Security Protocol And Hardware Use Data Tabulation", + "explorer": "https://bscscan.com/token/0xDcd7C0BeDDe5a0421f59423648E3F956fcDDd5BE", + "status": "active", + "id": "0xDcd7C0BeDDe5a0421f59423648E3F956fcDDd5BE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDcd7C0BeDDe5a0421f59423648E3F956fcDDd5BE/logo.png b/blockchains/smartchain/assets/0xDcd7C0BeDDe5a0421f59423648E3F956fcDDd5BE/logo.png new file mode 100644 index 00000000..ffe4cfd4 Binary files /dev/null and b/blockchains/smartchain/assets/0xDcd7C0BeDDe5a0421f59423648E3F956fcDDd5BE/logo.png differ diff --git a/blockchains/smartchain/assets/0xDd17629D05E068A9D118ee35d11101d4140D0586/info.json b/blockchains/smartchain/assets/0xDd17629D05E068A9D118ee35d11101d4140D0586/info.json new file mode 100644 index 00000000..38c5cb22 --- /dev/null +++ b/blockchains/smartchain/assets/0xDd17629D05E068A9D118ee35d11101d4140D0586/info.json @@ -0,0 +1,49 @@ +{ + "name": "YoCoin", + "type": "BEP20", + "symbol": "YOCO", + "decimals": 9, + "website": "https://yoco.finance", + "description": "A Safe, Secure, Eco-Friendly, DeFi Cryptocurrency Engineered with the Lowest Trading Fees Available as well as Automatic Rewards for Life!", + "explorer": "https://bscscan.com/token/0xDd17629D05E068A9D118ee35d11101d4140D0586", + "status": "active", + "id": "0xDd17629D05E068A9D118ee35d11101d4140D0586", + "links": [ + { + "name": "x", + "url": "https://x.com/yocoiny" + }, + { + "name": "telegram", + "url": "https://t.me/YOCOyocoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/yocoin-yoco/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/yocoiny" + }, + { + "name": "discord", + "url": "https://discord.com/discord.gg/yocoinyoco" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/yocoinyoco" + }, + { + "name": "whitepaper", + "url": "https://yoco.finance/whitepaper/" + }, + { + "name": "facebook", + "url": "https://facebook.com/groups/yocoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/yocoinyoco" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDd17629D05E068A9D118ee35d11101d4140D0586/logo.png b/blockchains/smartchain/assets/0xDd17629D05E068A9D118ee35d11101d4140D0586/logo.png new file mode 100644 index 00000000..fca5e380 Binary files /dev/null and b/blockchains/smartchain/assets/0xDd17629D05E068A9D118ee35d11101d4140D0586/logo.png differ diff --git a/blockchains/smartchain/assets/0xDd30269730A980cCE44F00Bbf9a7537131844444/info.json b/blockchains/smartchain/assets/0xDd30269730A980cCE44F00Bbf9a7537131844444/info.json new file mode 100644 index 00000000..a52902ab --- /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/0xDdC0dBd7dC799ae53A98a60b54999cb6eBb3Abf0/info.json b/blockchains/smartchain/assets/0xDdC0dBd7dC799ae53A98a60b54999cb6eBb3Abf0/info.json new file mode 100644 index 00000000..cdc83ddc --- /dev/null +++ b/blockchains/smartchain/assets/0xDdC0dBd7dC799ae53A98a60b54999cb6eBb3Abf0/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeBLAST", + "website": "https://safeblastcrypto.com/", + "description": "SafeBLAST(BLAST) is an Autonomous yield and Liquidity generation protocol.", + "explorer": "https://bscscan.com/token/0xddc0dbd7dc799ae53a98a60b54999cb6ebb3abf0", + "type": "BEP20", + "symbol": "BLAST", + "decimals": 9, + "status": "active", + "id": "0xDdC0dBd7dC799ae53A98a60b54999cb6eBb3Abf0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDdC0dBd7dC799ae53A98a60b54999cb6eBb3Abf0/logo.png b/blockchains/smartchain/assets/0xDdC0dBd7dC799ae53A98a60b54999cb6eBb3Abf0/logo.png new file mode 100644 index 00000000..34180c9c Binary files /dev/null and b/blockchains/smartchain/assets/0xDdC0dBd7dC799ae53A98a60b54999cb6eBb3Abf0/logo.png differ diff --git a/blockchains/smartchain/assets/0xDe04da55B74435d7B9f2C5c62D9F1b53929b09AA/info.json b/blockchains/smartchain/assets/0xDe04da55B74435d7B9f2C5c62D9F1b53929b09AA/info.json new file mode 100644 index 00000000..ddfd8cad --- /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 00000000..d2923c65 Binary files /dev/null and b/blockchains/smartchain/assets/0xDe04da55B74435d7B9f2C5c62D9F1b53929b09AA/logo.png differ diff --git a/blockchains/smartchain/assets/0xDeb9acA4F54ABd9b82Ca91B52fCCCF869882B9Fe/info.json b/blockchains/smartchain/assets/0xDeb9acA4F54ABd9b82Ca91B52fCCCF869882B9Fe/info.json new file mode 100644 index 00000000..ee381788 --- /dev/null +++ b/blockchains/smartchain/assets/0xDeb9acA4F54ABd9b82Ca91B52fCCCF869882B9Fe/info.json @@ -0,0 +1,11 @@ +{ + "name": "GDOGE", + "website": "https://gdoge.finance/", + "description": "Every transaction is taxed 5%: 2% is distributed to holders and 3% is locked in liquidity forever", + "explorer": "https://bscscan.com/token/0xdeb9aca4f54abd9b82ca91b52fcccf869882b9fe", + "type": "BEP20", + "symbol": "GDOGE", + "decimals": 9, + "status": "active", + "id": "0xDeb9acA4F54ABd9b82Ca91B52fCCCF869882B9Fe" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDeb9acA4F54ABd9b82Ca91B52fCCCF869882B9Fe/logo.png b/blockchains/smartchain/assets/0xDeb9acA4F54ABd9b82Ca91B52fCCCF869882B9Fe/logo.png new file mode 100644 index 00000000..fd41378a Binary files /dev/null and b/blockchains/smartchain/assets/0xDeb9acA4F54ABd9b82Ca91B52fCCCF869882B9Fe/logo.png differ diff --git a/blockchains/smartchain/assets/0xDeb9e5D630CEa02cf83258aAf5bAD933F7a43AE7/info.json b/blockchains/smartchain/assets/0xDeb9e5D630CEa02cf83258aAf5bAD933F7a43AE7/info.json new file mode 100644 index 00000000..24f51455 --- /dev/null +++ b/blockchains/smartchain/assets/0xDeb9e5D630CEa02cf83258aAf5bAD933F7a43AE7/info.json @@ -0,0 +1,33 @@ +{ + "name": "BabyBitcoin", + "type": "BEP20", + "symbol": "BABYBITC", + "decimals": 9, + "website": "https://babybitcoin.app", + "description": "BabyBitcoin aims to provide continuous benefits for all project investors and token holders.", + "explorer": "https://bscscan.com/token/0xdeb9e5d630cea02cf83258aaf5bad933f7a43ae7", + "status": "active", + "id": "0xDeb9e5D630CEa02cf83258aAf5bAD933F7a43AE7", + "links": [ + { + "name": "x", + "url": "https://x.com/BabyBITC_bsc" + }, + { + "name": "github", + "url": "https://github.com/BabyBitcoinOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/babybitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/babybitcoin" + }, + { + "name": "telegram", + "url": "https://t.me/Baby_Bitcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDeb9e5D630CEa02cf83258aAf5bAD933F7a43AE7/logo.png b/blockchains/smartchain/assets/0xDeb9e5D630CEa02cf83258aAf5bAD933F7a43AE7/logo.png new file mode 100644 index 00000000..9e832919 Binary files /dev/null and b/blockchains/smartchain/assets/0xDeb9e5D630CEa02cf83258aAf5bAD933F7a43AE7/logo.png differ diff --git a/blockchains/smartchain/assets/0xDf394853D830424CaFCCF7Be7dF065366cF31a69/info.json b/blockchains/smartchain/assets/0xDf394853D830424CaFCCF7Be7dF065366cF31a69/info.json new file mode 100644 index 00000000..519013fd --- /dev/null +++ b/blockchains/smartchain/assets/0xDf394853D830424CaFCCF7Be7dF065366cF31a69/info.json @@ -0,0 +1,25 @@ +{ + "name": "BICHON TOKENT", + "website": "https://bichontoken.com", + "audit": "https://www.certik.org/projects/bichon", + "description": "A cute Deflationary Cryptocurrency on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xDf394853D830424CaFCCF7Be7dF065366cF31a69", + "type": "BEP20", + "symbol": "BICHON", + "decimals": 9, + "status": "active", + "id": "0xDf394853D830424CaFCCF7Be7dF065366cF31a69", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/BICHON MEME TOKEN" + }, + { + "name": "telegram", + "url": "https://t.me/bichoncommunity" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDf394853D830424CaFCCF7Be7dF065366cF31a69/logo.png b/blockchains/smartchain/assets/0xDf394853D830424CaFCCF7Be7dF065366cF31a69/logo.png new file mode 100644 index 00000000..56e041b5 Binary files /dev/null and b/blockchains/smartchain/assets/0xDf394853D830424CaFCCF7Be7dF065366cF31a69/logo.png differ diff --git a/blockchains/smartchain/assets/0xDf5301b96ceCCb9C2a61505B3A7577111056A4C5/info.json b/blockchains/smartchain/assets/0xDf5301b96ceCCb9C2a61505B3A7577111056A4C5/info.json new file mode 100644 index 00000000..845b8b12 --- /dev/null +++ b/blockchains/smartchain/assets/0xDf5301b96ceCCb9C2a61505B3A7577111056A4C5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Captain", + "type": "BEP20", + "symbol": "CAPT", + "decimals": 9, + "website": "https://capttoken.com/", + "description": "CAPT token is the main token and store of value for CaptainSwap", + "explorer": "https://bscscan.com/token/0xDf5301b96ceCCb9C2a61505B3A7577111056A4C5", + "status": "active", + "id": "0xDf5301b96ceCCb9C2a61505B3A7577111056A4C5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDf5301b96ceCCb9C2a61505B3A7577111056A4C5/logo.png b/blockchains/smartchain/assets/0xDf5301b96ceCCb9C2a61505B3A7577111056A4C5/logo.png new file mode 100644 index 00000000..d7729e1f Binary files /dev/null and b/blockchains/smartchain/assets/0xDf5301b96ceCCb9C2a61505B3A7577111056A4C5/logo.png differ diff --git a/blockchains/smartchain/assets/0xDfDec49462f7D3C3b0A48E729F77A0645CDFA7c0/info.json b/blockchains/smartchain/assets/0xDfDec49462f7D3C3b0A48E729F77A0645CDFA7c0/info.json new file mode 100644 index 00000000..c1102843 --- /dev/null +++ b/blockchains/smartchain/assets/0xDfDec49462f7D3C3b0A48E729F77A0645CDFA7c0/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeGem.finance", + "website": "https://www.safegem.finance/", + "description": "SafeGem is a frictionless high-yield generation protocol combined with continuous permanent burn, with a grand vision! We aim to create an exclusive platform that will authenticate precious stones by providing digital certification for gems.", + "explorer": "https://bscscan.com/token/0xDfDec49462f7D3C3b0A48E729F77A0645CDFA7c0", + "type": "BEP20", + "symbol": "GEMS", + "decimals": 9, + "status": "active", + "id": "0xDfDec49462f7D3C3b0A48E729F77A0645CDFA7c0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDfDec49462f7D3C3b0A48E729F77A0645CDFA7c0/logo.png b/blockchains/smartchain/assets/0xDfDec49462f7D3C3b0A48E729F77A0645CDFA7c0/logo.png new file mode 100644 index 00000000..6f1b5b5a Binary files /dev/null and b/blockchains/smartchain/assets/0xDfDec49462f7D3C3b0A48E729F77A0645CDFA7c0/logo.png differ diff --git a/blockchains/smartchain/assets/0xE02018491ADf33B3Ef3001a0e2F2139821dA8d2F/info.json b/blockchains/smartchain/assets/0xE02018491ADf33B3Ef3001a0e2F2139821dA8d2F/info.json new file mode 100644 index 00000000..5c963439 --- /dev/null +++ b/blockchains/smartchain/assets/0xE02018491ADf33B3Ef3001a0e2F2139821dA8d2F/info.json @@ -0,0 +1,11 @@ +{ + "name": "SuperNova", + "website": "https://supernova.investments/", + "description": "Yield farm SPR on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xE02018491ADf33B3Ef3001a0e2F2139821dA8d2F", + "type": "BEP20", + "symbol": "SPR", + "decimals": 8, + "status": "active", + "id": "0xE02018491ADf33B3Ef3001a0e2F2139821dA8d2F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE02018491ADf33B3Ef3001a0e2F2139821dA8d2F/logo.png b/blockchains/smartchain/assets/0xE02018491ADf33B3Ef3001a0e2F2139821dA8d2F/logo.png new file mode 100644 index 00000000..1141bede Binary files /dev/null and b/blockchains/smartchain/assets/0xE02018491ADf33B3Ef3001a0e2F2139821dA8d2F/logo.png differ diff --git a/blockchains/smartchain/assets/0xE02dF9e3e622DeBdD69fb838bB799E3F168902c5/info.json b/blockchains/smartchain/assets/0xE02dF9e3e622DeBdD69fb838bB799E3F168902c5/info.json new file mode 100644 index 00000000..8aea4cd2 --- /dev/null +++ b/blockchains/smartchain/assets/0xE02dF9e3e622DeBdD69fb838bB799E3F168902c5/info.json @@ -0,0 +1,29 @@ +{ + "name": "Bakery Token", + "website": "https://bakeryswap.org", + "description": "BakerySwap, an AMM Dex on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xE02dF9e3e622DeBdD69fb838bB799E3F168902c5", + "research": "https://research.binance.com/en/projects/bakerytoken", + "type": "BEP20", + "symbol": "BAKE", + "decimals": 18, + "status": "active", + "id": "0xE02dF9e3e622DeBdD69fb838bB799E3F168902c5", + "tags": [ + "defi" + ], + "links": [ + { + "name": "blog", + "url": "https://medium.com/@BakerySwap" + }, + { + "name": "x", + "url": "https://x.com/bakery_swap" + }, + { + "name": "telegram", + "url": "https://t.me/bakeryswap" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE02dF9e3e622DeBdD69fb838bB799E3F168902c5/logo.png b/blockchains/smartchain/assets/0xE02dF9e3e622DeBdD69fb838bB799E3F168902c5/logo.png new file mode 100644 index 00000000..268ebd42 Binary files /dev/null and b/blockchains/smartchain/assets/0xE02dF9e3e622DeBdD69fb838bB799E3F168902c5/logo.png differ diff --git a/blockchains/smartchain/assets/0xE03495fCa9e644d55B65c30ed9fdC3321C260126/info.json b/blockchains/smartchain/assets/0xE03495fCa9e644d55B65c30ed9fdC3321C260126/info.json new file mode 100644 index 00000000..abdf4a41 --- /dev/null +++ b/blockchains/smartchain/assets/0xE03495fCa9e644d55B65c30ed9fdC3321C260126/info.json @@ -0,0 +1,41 @@ +{ + "name": "WhenLambo", + "type": "BEP20", + "symbol": "WHENLAMBO", + "decimals": 18, + "website": "https://whenlambo.vip/", + "description": "WhenLambo is a fully decentralized reflection & automated liquidity token with CAKE rewards for token holders and a unique chance to win big in our special draw system!", + "explorer": "https://bscscan.com/token/0xE03495fCa9e644d55B65c30ed9fdC3321C260126", + "status": "active", + "id": "0xE03495fCa9e644d55B65c30ed9fdC3321C260126", + "links": [ + { + "name": "x", + "url": "https://x.com/@WhenLamboTokens" + }, + { + "name": "github", + "url": "https://github.com/whenlambotoken/whenlambo-protocol" + }, + { + "name": "telegram", + "url": "https://t.me/WhenLamboTokens" + }, + { + "name": "telegram_news", + "url": "https://t.me/WhenLamboTokensNews" + }, + { + "name": "medium", + "url": "https://medium.com/@WhenLamboTokens" + }, + { + "name": "whitepaper", + "url": "https://whenlambo.vip/roadmap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/whenlambo/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE03495fCa9e644d55B65c30ed9fdC3321C260126/logo.png b/blockchains/smartchain/assets/0xE03495fCa9e644d55B65c30ed9fdC3321C260126/logo.png new file mode 100644 index 00000000..5e1b3f98 Binary files /dev/null and b/blockchains/smartchain/assets/0xE03495fCa9e644d55B65c30ed9fdC3321C260126/logo.png differ diff --git a/blockchains/smartchain/assets/0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb/info.json b/blockchains/smartchain/assets/0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb/info.json new file mode 100644 index 00000000..e8118b49 --- /dev/null +++ b/blockchains/smartchain/assets/0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb/info.json @@ -0,0 +1,80 @@ +{ + "name": "ZionTopia", + "type": "BEP20", + "symbol": "ZION", + "decimals": 9, + "website": "https://ziontopia.com/", + "description": "ZionTopia will act as a tokenized decentralised VR Crypto Underground world. The ZionTopia Metaverse will work as a real estate and present shops that can be purchased, sold or governed by the ZION token holders.", + "explorer": "https://bscscan.com/token/0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb", + "status": "active", + "id": "0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb", + "links": [ + { + "name": "x", + "url": "https://x.com/zion_topia" + }, + { + "name": "github", + "url": "https://github.com/ZionTopia" + }, + { + "name": "telegram", + "url": "https://t.me/ziontopia" + }, + { + "name": "telegram_news", + "url": "https://t.me/" + }, + { + "name": "blog", + "url": "https://medium.com/@ziontopia" + }, + { + "name": "docs", + "url": "https://medium.com/@ziontopia" + }, + { + "name": "forum", + "url": "https://www.reddit.com/user/ziontopia" + }, + { + "name": "discord", + "url": "https://discord.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/ziontopia" + }, + { + "name": "whitepaper", + "url": "https://cdnziontopia.com/router/whitepaper.php" + }, + { + "name": "medium", + "url": "https://medium.com/@ziontopia" + }, + { + "name": "youtube", + "url": "https://youtube.com/ziontopia" + }, + { + "name": "facebook", + "url": "https://facebook.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ziontopia" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ziontopia" + }, + { + "name": "source_code", + "url": "https://github.com/ZionTopia/ziontopia/blob/main/ziontopia" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb/logo.png b/blockchains/smartchain/assets/0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb/logo.png new file mode 100644 index 00000000..a0f69fd2 Binary files /dev/null and b/blockchains/smartchain/assets/0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb/logo.png differ diff --git a/blockchains/smartchain/assets/0xE0F324A026ca55492637009d98034103Db4a6967/info.json b/blockchains/smartchain/assets/0xE0F324A026ca55492637009d98034103Db4a6967/info.json new file mode 100644 index 00000000..38b71a01 --- /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 00000000..d51b9160 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 new file mode 100644 index 00000000..852401f5 --- /dev/null +++ b/blockchains/smartchain/assets/0xE0b1EF69BC4AB4173989C1190f0d77A813f3B726/info.json @@ -0,0 +1,37 @@ +{ + "name": "Fat Cat Killer", + "website": "https://fatcatkiller.com/", + "description": "Fat Cat Killer is a secure, medium for crypto payment processing. Integration with commonly used Point-of-Sale systems uniquely position it in hospitality venues. Low transaction rates offer unbeatable savings for both buyers and merchants with luxury brands.", + "explorer": "https://bscscan.com/token/0xe0b1ef69bc4ab4173989c1190f0d77a813f3b726", + "type": "BEP20", + "symbol": "KILLER", + "decimals": 9, + "status": "active", + "id": "0xE0b1EF69BC4AB4173989C1190f0d77A813f3B726", + "links": [ + { + "name": "x", + "url": "https://x.com/Fat_Cat_Killer" + }, + { + "name": "facebook", + "url": "https://facebook.com/FatCatKiller/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fat-cat-killer/" + }, + { + "name": "telegram", + "url": "https://t.me/FatCatKillerPortal" + }, + { + "name": "whitepaper", + "url": "https://fatcatkiller.com/wp-content/uploads/2022/04/FINAL-WHITE-PAPER-ENG-2022-04-22.pdf" + } + ], + "tags": [ + "defi", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE0b1EF69BC4AB4173989C1190f0d77A813f3B726/logo.png b/blockchains/smartchain/assets/0xE0b1EF69BC4AB4173989C1190f0d77A813f3B726/logo.png new file mode 100644 index 00000000..69c42e1a Binary files /dev/null and b/blockchains/smartchain/assets/0xE0b1EF69BC4AB4173989C1190f0d77A813f3B726/logo.png differ diff --git a/blockchains/smartchain/assets/0xE10e9822A5de22F8761919310DDA35CD997d63c0/info.json b/blockchains/smartchain/assets/0xE10e9822A5de22F8761919310DDA35CD997d63c0/info.json new file mode 100644 index 00000000..9052fe1a --- /dev/null +++ b/blockchains/smartchain/assets/0xE10e9822A5de22F8761919310DDA35CD997d63c0/info.json @@ -0,0 +1,33 @@ +{ + "name": "THUGS", + "website": "https://thugs.fi/", + "description": "THUGS is a Binance Smart Chain DeFi Token with a burn mechanism, forever locked initial liquidity & the centerpiece of the Thugs Fi ecosystem (StreetSwap Exchange, Traphouse Yield Farm & NFT Marketplace).", + "explorer": "https://bscscan.com/token/0xE10e9822A5de22F8761919310DDA35CD997d63c0", + "type": "BEP20", + "symbol": "THUGS", + "decimals": 18, + "status": "active", + "id": "0xE10e9822A5de22F8761919310DDA35CD997d63c0", + "links": [ + { + "name": "x", + "url": "https://x.com/ThugsFinance" + }, + { + "name": "telegram", + "url": "https://t.me/thugsfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AJDqFTP" + }, + { + "name": "medium", + "url": "https://thugsfinance.medium.com/" + }, + { + "name": "docs", + "url": "https://docs.thugs.fi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE10e9822A5de22F8761919310DDA35CD997d63c0/logo.png b/blockchains/smartchain/assets/0xE10e9822A5de22F8761919310DDA35CD997d63c0/logo.png new file mode 100644 index 00000000..d651456f Binary files /dev/null and b/blockchains/smartchain/assets/0xE10e9822A5de22F8761919310DDA35CD997d63c0/logo.png differ diff --git a/blockchains/smartchain/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json b/blockchains/smartchain/assets/0xE1385FDd5ffB10081Cd52C56584F25EFa9084015/info.json new file mode 100644 index 00000000..7f1a05a4 --- /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 00000000..41bfda5c 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 00000000..4de03038 --- /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 00000000..1bc23284 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 00000000..917973c7 --- /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/0xE2271046A181b41f20Ad1A4076A4FA0Fd0853D09/info.json b/blockchains/smartchain/assets/0xE2271046A181b41f20Ad1A4076A4FA0Fd0853D09/info.json new file mode 100644 index 00000000..69ad36eb --- /dev/null +++ b/blockchains/smartchain/assets/0xE2271046A181b41f20Ad1A4076A4FA0Fd0853D09/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeUniverse V2", + "type": "BEP20", + "symbol": "SAFUV2", + "decimals": 9, + "website": "https://safeuniverse.net/", + "description": "SAFUV2, A Frictionless Yield Generation, Community Driven Protocol.", + "explorer": "https://bscscan.com/token/0xE2271046A181b41f20Ad1A4076A4FA0Fd0853D09", + "status": "active", + "id": "0xE2271046A181b41f20Ad1A4076A4FA0Fd0853D09" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE2271046A181b41f20Ad1A4076A4FA0Fd0853D09/logo.png b/blockchains/smartchain/assets/0xE2271046A181b41f20Ad1A4076A4FA0Fd0853D09/logo.png new file mode 100644 index 00000000..3267db0a Binary files /dev/null and b/blockchains/smartchain/assets/0xE2271046A181b41f20Ad1A4076A4FA0Fd0853D09/logo.png differ diff --git a/blockchains/smartchain/assets/0xE256BC2A4F5297F8ba6f043F180a46300eCbCbB1/info.json b/blockchains/smartchain/assets/0xE256BC2A4F5297F8ba6f043F180a46300eCbCbB1/info.json new file mode 100644 index 00000000..037b52ab --- /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 00000000..dec445cf Binary files /dev/null and b/blockchains/smartchain/assets/0xE256BC2A4F5297F8ba6f043F180a46300eCbCbB1/logo.png differ diff --git a/blockchains/smartchain/assets/0xE27cef1A1CE062f236bE7a6331F101230cc14E02/info.json b/blockchains/smartchain/assets/0xE27cef1A1CE062f236bE7a6331F101230cc14E02/info.json new file mode 100644 index 00000000..a43316fa --- /dev/null +++ b/blockchains/smartchain/assets/0xE27cef1A1CE062f236bE7a6331F101230cc14E02/info.json @@ -0,0 +1,11 @@ +{ + "name": "LittlePandaMoon", + "type": "BEP20", + "symbol": "LTPM", + "decimals": 9, + "website": "https://littlepandamoon.com", + "description": "Panda Protocol is a community driven, fair launched DeFi Token. Three simple functions occur during each trade: Reflection, LP Acquisition, and Burn.", + "explorer": "https://bscscan.com/token/0xE27cef1A1CE062f236bE7a6331F101230cc14E02", + "status": "active", + "id": "0xE27cef1A1CE062f236bE7a6331F101230cc14E02" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE27cef1A1CE062f236bE7a6331F101230cc14E02/logo.png b/blockchains/smartchain/assets/0xE27cef1A1CE062f236bE7a6331F101230cc14E02/logo.png new file mode 100644 index 00000000..a2a2e929 Binary files /dev/null and b/blockchains/smartchain/assets/0xE27cef1A1CE062f236bE7a6331F101230cc14E02/logo.png differ diff --git a/blockchains/smartchain/assets/0xE283D0e3B8c102BAdF5E8166B73E02D96d92F688/info.json b/blockchains/smartchain/assets/0xE283D0e3B8c102BAdF5E8166B73E02D96d92F688/info.json new file mode 100644 index 00000000..cc008a62 --- /dev/null +++ b/blockchains/smartchain/assets/0xE283D0e3B8c102BAdF5E8166B73E02D96d92F688/info.json @@ -0,0 +1,11 @@ +{ + "name": "Elephant Money", + "type": "BEP20", + "symbol": "ELEPHANT", + "decimals": 9, + "website": "https://elephant.money", + "description": "- Rediscover innovation with rewards without farming or staking Balanced distribution. Fueled by ecosystem contracts. Frictionless rewards directly to holder’s wallet Locked-liquidity. Auto-rebalancing burn address. A cashflow asset", + "explorer": "https://bscscan.com/token/0xE283D0e3B8c102BAdF5E8166B73E02D96d92F688", + "status": "active", + "id": "0xE283D0e3B8c102BAdF5E8166B73E02D96d92F688" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE283D0e3B8c102BAdF5E8166B73E02D96d92F688/logo.png b/blockchains/smartchain/assets/0xE283D0e3B8c102BAdF5E8166B73E02D96d92F688/logo.png new file mode 100644 index 00000000..02068a52 Binary files /dev/null and b/blockchains/smartchain/assets/0xE283D0e3B8c102BAdF5E8166B73E02D96d92F688/logo.png differ diff --git a/blockchains/smartchain/assets/0xE285510E5C14c2b8ff46147D9145f034B8Ff073B/info.json b/blockchains/smartchain/assets/0xE285510E5C14c2b8ff46147D9145f034B8Ff073B/info.json new file mode 100644 index 00000000..2e4dbd74 --- /dev/null +++ b/blockchains/smartchain/assets/0xE285510E5C14c2b8ff46147D9145f034B8Ff073B/info.json @@ -0,0 +1,11 @@ +{ + "name": "VanCat Sperm Token", + "website": "https://www.vancatsperm.com/", + "description": "VANCAT Sperm Token (VCSPERM) is a subtoken of VANCAT Token and VANCAT universe. Users must have VCSPERM to mint Special NFTs", + "explorer": "https://bscscan.com/token/0xe285510e5c14c2b8ff46147d9145f034b8ff073b", + "id": "0xE285510E5C14c2b8ff46147D9145f034B8Ff073B", + "symbol": "VCSPERM", + "type": "BEP20", + "decimals": 0, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE285510E5C14c2b8ff46147D9145f034B8Ff073B/logo.png b/blockchains/smartchain/assets/0xE285510E5C14c2b8ff46147D9145f034B8Ff073B/logo.png new file mode 100644 index 00000000..562b3f42 Binary files /dev/null and b/blockchains/smartchain/assets/0xE285510E5C14c2b8ff46147D9145f034B8Ff073B/logo.png differ diff --git a/blockchains/smartchain/assets/0xE3233fdb23F1c27aB37Bd66A19a1f1762fCf5f3F/info.json b/blockchains/smartchain/assets/0xE3233fdb23F1c27aB37Bd66A19a1f1762fCf5f3F/info.json new file mode 100644 index 00000000..0eaadf4b --- /dev/null +++ b/blockchains/smartchain/assets/0xE3233fdb23F1c27aB37Bd66A19a1f1762fCf5f3F/info.json @@ -0,0 +1,25 @@ +{ + "name": "Elemon", + "website": "https://elemon.io/", + "description": "Elemon is a NFTs game based on blockchain technology with the purposes and missions to deliver sustainable values to all users and investors in the Cryptocurrency field. More specifically, Elemon is constructed with a comprehensive ecosystem and hosted on the BSC platform with ERC-721 standard.", + "explorer": "https://bscscan.com/token/0xE3233fdb23F1c27aB37Bd66A19a1f1762fCf5f3F", + "symbol": "ELMON", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xE3233fdb23F1c27aB37Bd66A19a1f1762fCf5f3F", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ElemonAnnouncement" + }, + { + "name": "x", + "url": "https://x.com/ElemonGame" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elemon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE3233fdb23F1c27aB37Bd66A19a1f1762fCf5f3F/logo.png b/blockchains/smartchain/assets/0xE3233fdb23F1c27aB37Bd66A19a1f1762fCf5f3F/logo.png new file mode 100644 index 00000000..e1833c2a Binary files /dev/null and b/blockchains/smartchain/assets/0xE3233fdb23F1c27aB37Bd66A19a1f1762fCf5f3F/logo.png differ diff --git a/blockchains/smartchain/assets/0xE36fb7548d16D1B1DDB484A322f06e4ECd3E1f68/info.json b/blockchains/smartchain/assets/0xE36fb7548d16D1B1DDB484A322f06e4ECd3E1f68/info.json new file mode 100644 index 00000000..b5ad8af1 --- /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/0xE3894CB9E92ca78524Fb6a30Ff072FA5E533c162/info.json b/blockchains/smartchain/assets/0xE3894CB9E92ca78524Fb6a30Ff072FA5E533c162/info.json new file mode 100644 index 00000000..40f5df94 --- /dev/null +++ b/blockchains/smartchain/assets/0xE3894CB9E92ca78524Fb6a30Ff072FA5E533c162/info.json @@ -0,0 +1,11 @@ +{ + "name": "Everlasting Parachain", + "type": "BEP20", + "symbol": "ELP", + "decimals": 18, + "website": "https://www.cycan.network/", + "description": "Everlasting Parachain(ELP) is the canary network of the Cycan network. The ELP is based on Polkadot's canary network Kusama. The goal of the Cycan network is to build a decentralized asset management protocol based on the Substrate framework.", + "explorer": "https://bscscan.com/token/0xE3894CB9E92ca78524Fb6a30Ff072FA5E533c162", + "status": "active", + "id": "0xE3894CB9E92ca78524Fb6a30Ff072FA5E533c162" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE3894CB9E92ca78524Fb6a30Ff072FA5E533c162/logo.png b/blockchains/smartchain/assets/0xE3894CB9E92ca78524Fb6a30Ff072FA5E533c162/logo.png new file mode 100644 index 00000000..99c45719 Binary files /dev/null and b/blockchains/smartchain/assets/0xE3894CB9E92ca78524Fb6a30Ff072FA5E533c162/logo.png differ diff --git a/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/info.json b/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/info.json new file mode 100644 index 00000000..d26f5543 --- /dev/null +++ b/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/info.json @@ -0,0 +1,33 @@ +{ + "decimals": 9, + "description": "NELO is a protocol and infrastructure that is leveraging the Proof-of-Stake consensus algorithm to help developers deploy their games and Metaverse projects.", + "explorer": "https://bscscan.com/token/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F", + "id": "0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F", + "links": [ + { + "name": "x", + "url": "https://x.com/NELOnetwork" + }, + { + "name": "telegram", + "url": "https://t.me/NELOnetwork" + }, + { + "name": "discord", + "url": "https://discord.com/invite/NELOnetwork" + }, + { + "name": "facebook", + "url": "https://facebook.com/NELOnetwork/" + } + ], + "name": "NELO", + "status": "active", + "symbol": "NELO", + "tags": [ + "nft", + "defi" + ], + "type": "BEP20", + "website": "https://nelo.network/" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/logo.png b/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/logo.png new file mode 100644 index 00000000..1a6210ab Binary files /dev/null and b/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/logo.png differ diff --git a/blockchains/smartchain/assets/0xE3Ba88c38D2789FE58465020CC0FB60b70c10d32/info.json b/blockchains/smartchain/assets/0xE3Ba88c38D2789FE58465020CC0FB60b70c10d32/info.json new file mode 100644 index 00000000..184add83 --- /dev/null +++ b/blockchains/smartchain/assets/0xE3Ba88c38D2789FE58465020CC0FB60b70c10d32/info.json @@ -0,0 +1,12 @@ +{ + "name": "Kindcow Finance", + "website": "https://kindcow.finance", + "description": "The true Decentralized Finance, with no third party control. Everyone can vote their own project! The more votes the more KIND burned, the less supply!", + "explorer": "https://bscscan.com/token/0xE3Ba88c38D2789FE58465020CC0FB60b70c10d32", + "research": "", + "type": "BEP20", + "symbol": "KIND", + "decimals": 8, + "status": "active", + "id": "0xE3Ba88c38D2789FE58465020CC0FB60b70c10d32" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE3Ba88c38D2789FE58465020CC0FB60b70c10d32/logo.png b/blockchains/smartchain/assets/0xE3Ba88c38D2789FE58465020CC0FB60b70c10d32/logo.png new file mode 100644 index 00000000..53b9c3e0 Binary files /dev/null and b/blockchains/smartchain/assets/0xE3Ba88c38D2789FE58465020CC0FB60b70c10d32/logo.png differ diff --git a/blockchains/smartchain/assets/0xE3b17E6D290A0F28bd32aF4064637057627004D5/info.json b/blockchains/smartchain/assets/0xE3b17E6D290A0F28bd32aF4064637057627004D5/info.json new file mode 100644 index 00000000..b89161eb --- /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 00000000..1e2bfeca Binary files /dev/null and b/blockchains/smartchain/assets/0xE3b17E6D290A0F28bd32aF4064637057627004D5/logo.png differ diff --git a/blockchains/smartchain/assets/0xE3e8cC42DA487d1116D26687856e9FB684817c52/info.json b/blockchains/smartchain/assets/0xE3e8cC42DA487d1116D26687856e9FB684817c52/info.json new file mode 100644 index 00000000..eee362c5 --- /dev/null +++ b/blockchains/smartchain/assets/0xE3e8cC42DA487d1116D26687856e9FB684817c52/info.json @@ -0,0 +1,11 @@ +{ + "name": "RASTA", + "type": "BEP20", + "symbol": "RASTA", + "decimals": 18, + "website": "https://rasta.finance", + "description": "A Community Oriented Project, with Rastafarian Ideology, deployed on the Binance Smart Chain. ", + "explorer": "https://bscscan.com/token/0xE3e8cC42DA487d1116D26687856e9FB684817c52", + "status": "active", + "id": "0xE3e8cC42DA487d1116D26687856e9FB684817c52" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE3e8cC42DA487d1116D26687856e9FB684817c52/logo.png b/blockchains/smartchain/assets/0xE3e8cC42DA487d1116D26687856e9FB684817c52/logo.png new file mode 100644 index 00000000..b6daec1d Binary files /dev/null and b/blockchains/smartchain/assets/0xE3e8cC42DA487d1116D26687856e9FB684817c52/logo.png differ diff --git a/blockchains/smartchain/assets/0xE40255C5d7fa7ceEc5120408C78C787CECB4cfdb/info.json b/blockchains/smartchain/assets/0xE40255C5d7fa7ceEc5120408C78C787CECB4cfdb/info.json new file mode 100644 index 00000000..d0699208 --- /dev/null +++ b/blockchains/smartchain/assets/0xE40255C5d7fa7ceEc5120408C78C787CECB4cfdb/info.json @@ -0,0 +1,19 @@ +{ + "name": "SWGb", + "ticker": "SWGb", + "website": "https://swirgepay.com", + "description": "Swirge is an ecosystem that embodies a decentralized social media, a decentralized financial system, and a marketplace built on the blockchain technology.", + "explorer": "https://bscscan.com/token/0xE40255C5d7fa7ceEc5120408C78C787CECB4cfdb", + "research": "https://swirgepay.com", + "type": "BEP20", + "symbol": "SWGb", + "decimals": 18, + "status": "active", + "id": "0xE40255C5d7fa7ceEc5120408C78C787CECB4cfdb", + "links": [ + { + "name": "whitepaper", + "url": "https://swirgepay.com/docs/not-so-whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE40255C5d7fa7ceEc5120408C78C787CECB4cfdb/logo.png b/blockchains/smartchain/assets/0xE40255C5d7fa7ceEc5120408C78C787CECB4cfdb/logo.png new file mode 100644 index 00000000..9d2e9003 Binary files /dev/null and b/blockchains/smartchain/assets/0xE40255C5d7fa7ceEc5120408C78C787CECB4cfdb/logo.png differ diff --git a/blockchains/smartchain/assets/0xE405f6Ae74ad3efD31C23A40CE23b3D3A3B95FB9/info.json b/blockchains/smartchain/assets/0xE405f6Ae74ad3efD31C23A40CE23b3D3A3B95FB9/info.json new file mode 100644 index 00000000..378253ad --- /dev/null +++ b/blockchains/smartchain/assets/0xE405f6Ae74ad3efD31C23A40CE23b3D3A3B95FB9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tokyo Inu", + "type": "BEP20", + "symbol": "TOKI", + "decimals": 9, + "website": "https://www.tokyoinu.com/", + "description": "Tokyo Inu is a family member of Shiba BUILT with peer-to-peer cryptocurrency + Automated Rewards Farming (ARF) technology.", + "explorer": "https://bscscan.com/token/0xE405f6Ae74ad3efD31C23A40CE23b3D3A3B95FB9", + "status": "active", + "id": "0xE405f6Ae74ad3efD31C23A40CE23b3D3A3B95FB9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE405f6Ae74ad3efD31C23A40CE23b3D3A3B95FB9/logo.png b/blockchains/smartchain/assets/0xE405f6Ae74ad3efD31C23A40CE23b3D3A3B95FB9/logo.png new file mode 100644 index 00000000..813a1f3c Binary files /dev/null and b/blockchains/smartchain/assets/0xE405f6Ae74ad3efD31C23A40CE23b3D3A3B95FB9/logo.png differ diff --git a/blockchains/smartchain/assets/0xE4145407d1952B6C1d5bE9039a2EfFA3A0ed3baa/info.json b/blockchains/smartchain/assets/0xE4145407d1952B6C1d5bE9039a2EfFA3A0ed3baa/info.json new file mode 100644 index 00000000..ac2e0087 --- /dev/null +++ b/blockchains/smartchain/assets/0xE4145407d1952B6C1d5bE9039a2EfFA3A0ed3baa/info.json @@ -0,0 +1,33 @@ +{ + "name": "Annex BTC", + "website": "https://www.annex.finance/", + "description": "Money Markets. A Decentralized Marketplace for Lenders and Borrowers", + "explorer": "https://bscscan.com/token/0xE4145407d1952B6C1d5bE9039a2EfFA3A0ed3baa", + "type": "BEP20", + "links": [ + { + "name": "x", + "url": "https://x.com/AnnexFinance" + }, + { + "name": "medium", + "url": "https://annexfinance.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/Annex_finance_group" + }, + { + "name": "github", + "url": "https://github.com/annexfinance/annex-protocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AnnexFinance/" + } + ], + "symbol": "aBTC", + "decimals": 8, + "status": "active", + "id": "0xE4145407d1952B6C1d5bE9039a2EfFA3A0ed3baa" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE4145407d1952B6C1d5bE9039a2EfFA3A0ed3baa/logo.png b/blockchains/smartchain/assets/0xE4145407d1952B6C1d5bE9039a2EfFA3A0ed3baa/logo.png new file mode 100644 index 00000000..339cadb8 Binary files /dev/null and b/blockchains/smartchain/assets/0xE4145407d1952B6C1d5bE9039a2EfFA3A0ed3baa/logo.png differ diff --git a/blockchains/smartchain/assets/0xE41d9E1311209F2e05850F9de6201Ab4B930Bfc2/info.json b/blockchains/smartchain/assets/0xE41d9E1311209F2e05850F9de6201Ab4B930Bfc2/info.json new file mode 100644 index 00000000..1dcb615c --- /dev/null +++ b/blockchains/smartchain/assets/0xE41d9E1311209F2e05850F9de6201Ab4B930Bfc2/info.json @@ -0,0 +1,37 @@ +{ + "name": "SPONSEE", + "type": "BEP20", + "symbol": "SPON", + "decimals": 18, + "website": "https://sponsee.io/", + "description": "Sponsee is the bridge that connects influencers with businesses in a fast, efficient and safe manner. Through the use of smart contracts, processes like peer reviews, dispute resolution(JURY Protocol), digital contracture are integrated into one seamless workflow.", + "explorer": "https://bscscan.com/token/0xE41d9E1311209F2e05850F9de6201Ab4B930Bfc2", + "status": "active", + "id": "0xE41d9E1311209F2e05850F9de6201Ab4B930Bfc2", + "links": [ + { + "name": "github", + "url": "https://github.com/Sponsee/" + }, + { + "name": "x", + "url": "https://x.com/SPONtoken" + }, + { + "name": "telegram", + "url": "https://t.me/Sponsee/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sponsee/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sponsee/" + }, + { + "name": "facebook", + "url": "https://facebook.com/SponseeApp/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE41d9E1311209F2e05850F9de6201Ab4B930Bfc2/logo.png b/blockchains/smartchain/assets/0xE41d9E1311209F2e05850F9de6201Ab4B930Bfc2/logo.png new file mode 100644 index 00000000..81f83884 Binary files /dev/null and b/blockchains/smartchain/assets/0xE41d9E1311209F2e05850F9de6201Ab4B930Bfc2/logo.png differ diff --git a/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json b/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json new file mode 100644 index 00000000..3b66dbd9 --- /dev/null +++ b/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/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/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb", + "status": "abandoned", + "id": "0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb", + "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/0xE440b9af0AE99174b3FAaB87174E31634D135f6d/info.json b/blockchains/smartchain/assets/0xE440b9af0AE99174b3FAaB87174E31634D135f6d/info.json new file mode 100644 index 00000000..12805451 --- /dev/null +++ b/blockchains/smartchain/assets/0xE440b9af0AE99174b3FAaB87174E31634D135f6d/info.json @@ -0,0 +1,11 @@ +{ + "name": "MONETAS", + "type": "BEP20", + "symbol": "MNTG", + "decimals": 18, + "website": "https://monetasglobal.com/", + "description": "monetas", + "explorer": "https://bscscan.com/token/0xE440b9af0AE99174b3FAaB87174E31634D135f6d", + "status": "abandoned", + "id": "0xE440b9af0AE99174b3FAaB87174E31634D135f6d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE44946b6A075b2C99fDe1dD0c4dA4a3436211f8C/info.json b/blockchains/smartchain/assets/0xE44946b6A075b2C99fDe1dD0c4dA4a3436211f8C/info.json new file mode 100644 index 00000000..8d1e7309 --- /dev/null +++ b/blockchains/smartchain/assets/0xE44946b6A075b2C99fDe1dD0c4dA4a3436211f8C/info.json @@ -0,0 +1,29 @@ +{ + "name": "MUFC Token", + "website": "https://mutoken.io", + "description": "Built by the fan community, Manchester United Fan Token (MUFC) is a cryptocurrency representing voting rights in distribution mechanism as well as various benefits and rewards for holders, which they can leverage to engage and express the love to the Manchester United F.C. football club", + "explorer": "https://bscscan.com/token/0xE44946b6A075b2C99fDe1dD0c4dA4a3436211f8C", + "type": "BEP20", + "symbol": "MUFC", + "decimals": 18, + "status": "active", + "id": "0xE44946b6A075b2C99fDe1dD0c4dA4a3436211f8C", + "links": [ + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1rzrF-drYWCire2ghGarFi-J1gI_lWo0S/view" + }, + { + "name": "x", + "url": "https://x.com/mufantoken" + }, + { + "name": "telegram", + "url": "https://t.me/MUFC_official_channel" + }, + { + "name": "medium", + "url": "https://medium.com/@mufantoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE44946b6A075b2C99fDe1dD0c4dA4a3436211f8C/logo.png b/blockchains/smartchain/assets/0xE44946b6A075b2C99fDe1dD0c4dA4a3436211f8C/logo.png new file mode 100644 index 00000000..5b43afc9 Binary files /dev/null and b/blockchains/smartchain/assets/0xE44946b6A075b2C99fDe1dD0c4dA4a3436211f8C/logo.png differ diff --git a/blockchains/smartchain/assets/0xE49b84771470A87F4D9544685ea0F0517933B2B4/info.json b/blockchains/smartchain/assets/0xE49b84771470A87F4D9544685ea0F0517933B2B4/info.json new file mode 100644 index 00000000..78f440b8 --- /dev/null +++ b/blockchains/smartchain/assets/0xE49b84771470A87F4D9544685ea0F0517933B2B4/info.json @@ -0,0 +1,21 @@ +{ + "name": "CryptoLocally (GIV)", + "website": "https://cryptolocally.com/", + "description": "A non-custodial, smart contract powered P2P gateway to blockchain and DeFi", + "explorer": "https://bscscan.com/token/0xe49b84771470a87f4d9544685ea0f0517933b2b4", + "type": "BEP20", + "symbol": "GIV", + "decimals": 8, + "status": "active", + "id": "0xE49b84771470A87F4D9544685ea0F0517933B2B4", + "links": [ + { + "name": "github", + "url": "https://github.com/CryptoLocally/Resources" + }, + { + "name": "whitepaper", + "url": "https://cryptolocally.com/en/blog/giv-whitepaper/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE49b84771470A87F4D9544685ea0F0517933B2B4/logo.png b/blockchains/smartchain/assets/0xE49b84771470A87F4D9544685ea0F0517933B2B4/logo.png new file mode 100644 index 00000000..4382e0fe Binary files /dev/null and b/blockchains/smartchain/assets/0xE49b84771470A87F4D9544685ea0F0517933B2B4/logo.png differ diff --git a/blockchains/smartchain/assets/0xE4Ae305ebE1AbE663f261Bc00534067C80ad677C/info.json b/blockchains/smartchain/assets/0xE4Ae305ebE1AbE663f261Bc00534067C80ad677C/info.json new file mode 100644 index 00000000..97fc50d5 --- /dev/null +++ b/blockchains/smartchain/assets/0xE4Ae305ebE1AbE663f261Bc00534067C80ad677C/info.json @@ -0,0 +1,12 @@ +{ + "name": "Spartan Protocol Token", + "website": "https://spartanprotocol.org", + "description": "A protocol for incentivised liquidity and synthetic assets on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xE4Ae305ebE1AbE663f261Bc00534067C80ad677C", + "research": "https://research.binance.com/en/projects/spartan-protocol", + "type": "BEP20", + "symbol": "SPARTA", + "decimals": 18, + "status": "active", + "id": "0xE4Ae305ebE1AbE663f261Bc00534067C80ad677C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE4Ae305ebE1AbE663f261Bc00534067C80ad677C/logo.png b/blockchains/smartchain/assets/0xE4Ae305ebE1AbE663f261Bc00534067C80ad677C/logo.png new file mode 100644 index 00000000..cde0e350 Binary files /dev/null and b/blockchains/smartchain/assets/0xE4Ae305ebE1AbE663f261Bc00534067C80ad677C/logo.png differ diff --git a/blockchains/smartchain/assets/0xE4C293Eadbb9d72d68a680F1A66979726992c396/info.json b/blockchains/smartchain/assets/0xE4C293Eadbb9d72d68a680F1A66979726992c396/info.json new file mode 100644 index 00000000..0798d1c0 --- /dev/null +++ b/blockchains/smartchain/assets/0xE4C293Eadbb9d72d68a680F1A66979726992c396/info.json @@ -0,0 +1,32 @@ +{ + "name": "LucidLandsGem", + "type": "BEP20", + "symbol": "LLG", + "decimals": 9, + "website": "https://lucidlands.io/", + "description": "Lucid Lands is the first decentralized NFT play-to-earn game on BSC network that integrates both 3D-animated gaming NFT and 2D unique computer-generated collective NFT marketplace.", + "explorer": "https://bscscan.com/token/0xe4c293eadbb9d72d68a680f1a66979726992c396", + "status": "active", + "id": "0xE4C293Eadbb9d72d68a680F1A66979726992c396", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lucid-lands-v2/" + }, + { + "name": "x", + "url": "https://x.com/LucidLands" + }, + { + "name": "telegram", + "url": "https://t.me/LucidLandsOffical" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/lucid-lands" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE4C293Eadbb9d72d68a680F1A66979726992c396/logo.png b/blockchains/smartchain/assets/0xE4C293Eadbb9d72d68a680F1A66979726992c396/logo.png new file mode 100644 index 00000000..3ac8d0a2 Binary files /dev/null and b/blockchains/smartchain/assets/0xE4C293Eadbb9d72d68a680F1A66979726992c396/logo.png differ diff --git a/blockchains/smartchain/assets/0xE4E12c9CEc3e8cAE405202A97f66AFA695075fa0/info.json b/blockchains/smartchain/assets/0xE4E12c9CEc3e8cAE405202A97f66AFA695075fa0/info.json new file mode 100644 index 00000000..9ca933aa --- /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 00000000..e43feccb Binary files /dev/null and b/blockchains/smartchain/assets/0xE4E12c9CEc3e8cAE405202A97f66AFA695075fa0/logo.png differ diff --git a/blockchains/smartchain/assets/0xE4FAE3Faa8300810C835970b9187c268f55D998F/info.json b/blockchains/smartchain/assets/0xE4FAE3Faa8300810C835970b9187c268f55D998F/info.json new file mode 100644 index 00000000..9c8b7fb4 --- /dev/null +++ b/blockchains/smartchain/assets/0xE4FAE3Faa8300810C835970b9187c268f55D998F/info.json @@ -0,0 +1,14 @@ +{ + "name": "CateCoin ", + "website": "http://catecoin.club", + "description": "Decentralised MEME Platform with NFT Market", + "explorer": "https://bscscan.com/token/0xE4FAE3Faa8300810C835970b9187c268f55D998F", + "type": "BEP20", + "symbol": "CATE", + "decimals": 9, + "status": "active", + "id": "0xE4FAE3Faa8300810C835970b9187c268f55D998F", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE4FAE3Faa8300810C835970b9187c268f55D998F/logo.png b/blockchains/smartchain/assets/0xE4FAE3Faa8300810C835970b9187c268f55D998F/logo.png new file mode 100644 index 00000000..52dd4a22 Binary files /dev/null and b/blockchains/smartchain/assets/0xE4FAE3Faa8300810C835970b9187c268f55D998F/logo.png differ diff --git a/blockchains/smartchain/assets/0xE53D384Cf33294C1882227ae4f90D64cF2a5dB70/info.json b/blockchains/smartchain/assets/0xE53D384Cf33294C1882227ae4f90D64cF2a5dB70/info.json new file mode 100644 index 00000000..ad4323bd --- /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 00000000..39994a24 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 new file mode 100644 index 00000000..48296ab7 --- /dev/null +++ b/blockchains/smartchain/assets/0xE540980f909873370bBE9C19Db7c3B5ba4DEF701/info.json @@ -0,0 +1,29 @@ +{ + "name": "iLayer", + "website": "https://www.ilayer.io/", + "description": "Sustainable and ongoing buy-back generation.The iLayer token will be the first project on the iLayer ecosystem and will have a 5% Buy-back tax on each transaction which will be locked in the contract and be used to allow buy-back of some of the tokens whenever a sell occurs.", + "explorer": "https://bscscan.com/token/0xE540980f909873370bBE9C19Db7c3B5ba4DEF701", + "type": "BEP20", + "symbol": "iLayer", + "decimals": 9, + "status": "active", + "id": "0xE540980f909873370bBE9C19Db7c3B5ba4DEF701", + "links": [ + { + "name": "x", + "url": "https://x.com/iLayerEcosystem" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/ilayer" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ilayer/" + }, + { + "name": "telegram", + "url": "https://t.me/iLayerEcosystem" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE540980f909873370bBE9C19Db7c3B5ba4DEF701/logo.png b/blockchains/smartchain/assets/0xE540980f909873370bBE9C19Db7c3B5ba4DEF701/logo.png new file mode 100644 index 00000000..baa15648 Binary files /dev/null and b/blockchains/smartchain/assets/0xE540980f909873370bBE9C19Db7c3B5ba4DEF701/logo.png differ diff --git a/blockchains/smartchain/assets/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50/info.json b/blockchains/smartchain/assets/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50/info.json new file mode 100644 index 00000000..d3656bf5 --- /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 00000000..efe387ee Binary files /dev/null and b/blockchains/smartchain/assets/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50/logo.png differ diff --git a/blockchains/smartchain/assets/0xE5904E9816b309d3eD4d061c922f5aa8f3B24C92/info.json b/blockchains/smartchain/assets/0xE5904E9816b309d3eD4d061c922f5aa8f3B24C92/info.json new file mode 100644 index 00000000..b2a54b06 --- /dev/null +++ b/blockchains/smartchain/assets/0xE5904E9816b309d3eD4d061c922f5aa8f3B24C92/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cyber Time Finance", + "symbol": "NFTL", + "type": "BEP20", + "decimals": 18, + "description": "NFT Fantasy League", + "website": "https://cybertime.finance/", + "explorer": "https://bscscan.com/token/0xe5904e9816b309d3ed4d061c922f5aa8f3b24c92", + "status": "active", + "id": "0xE5904E9816b309d3eD4d061c922f5aa8f3B24C92" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE5904E9816b309d3eD4d061c922f5aa8f3B24C92/logo.png b/blockchains/smartchain/assets/0xE5904E9816b309d3eD4d061c922f5aa8f3B24C92/logo.png new file mode 100644 index 00000000..15a67880 Binary files /dev/null and b/blockchains/smartchain/assets/0xE5904E9816b309d3eD4d061c922f5aa8f3B24C92/logo.png differ diff --git a/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/info.json b/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/info.json new file mode 100644 index 00000000..d6619096 --- /dev/null +++ b/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/info.json @@ -0,0 +1,32 @@ +{ + "name": "Sheikh Inu", + "type": "BEP20", + "symbol": "SHINU", + "decimals": 18, + "website": "https://sheikhinu.io/", + "description": "Purely meme token on BSC, driven by our oriental dream to become a group of Sheikh’s we focus on our community to thicken all of our sacks together.", + "explorer": "https://bscscan.com/token/0xe5b5d4bea7468b4994fa676949308a79497aa24c", + "status": "active", + "id": "0xE5b5d4Bea7468B4994FA676949308a79497aa24c", + "links": [ + { + "name": "x", + "url": "https://x.com/sheikhinutoken" + }, + { + "name": "github", + "url": "https://github.com/Sheikhinu" + }, + { + "name": "telegram", + "url": "https://t.me/sheikhinu" + }, + { + "name": "whitepaper", + "url": "https://sheikhinu.io/whitepaper.pdf" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/logo.png b/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/logo.png new file mode 100644 index 00000000..876c6f40 Binary files /dev/null and b/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/logo.png differ diff --git a/blockchains/smartchain/assets/0xE5c355c993dE69C06b5DD1A0c9a2c39b4Cde5511/info.json b/blockchains/smartchain/assets/0xE5c355c993dE69C06b5DD1A0c9a2c39b4Cde5511/info.json new file mode 100644 index 00000000..f8089dfd --- /dev/null +++ b/blockchains/smartchain/assets/0xE5c355c993dE69C06b5DD1A0c9a2c39b4Cde5511/info.json @@ -0,0 +1,24 @@ +{ + "name": "Frog Inu", + "type": "BEP20", + "symbol": "FGI", + "decimals": 9, + "website": "https://froginu.io/", + "description": "Frog Inu is a meme token that only rewards investors for holding, the number of rewards received will increase over time if investors hold them longer. We are the safest place for long- and short-term investors in the meme category.", + "explorer": "https://bscscan.com/token/0xE5c355c993dE69C06b5DD1A0c9a2c39b4Cde5511", + "status": "active", + "id": "0xE5c355c993dE69C06b5DD1A0c9a2c39b4Cde5511", + "links": [ + { + "name": "x", + "url": "https://x.com/Froginutoken" + }, + { + "name": "telegram", + "url": "https://t.me/FrogInuOfficial" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE5c355c993dE69C06b5DD1A0c9a2c39b4Cde5511/logo.png b/blockchains/smartchain/assets/0xE5c355c993dE69C06b5DD1A0c9a2c39b4Cde5511/logo.png new file mode 100644 index 00000000..3c154ea9 Binary files /dev/null and b/blockchains/smartchain/assets/0xE5c355c993dE69C06b5DD1A0c9a2c39b4Cde5511/logo.png differ diff --git a/blockchains/smartchain/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json b/blockchains/smartchain/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/info.json new file mode 100644 index 00000000..5f94b6d5 --- /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 00000000..a0ca86f1 Binary files /dev/null and b/blockchains/smartchain/assets/0xE5f6d3b2405ABdfE6F660e63202B25D23763160d/logo.png differ diff --git a/blockchains/smartchain/assets/0xE60ef2b118C35c987CE28d3b69f84378F2b84b4a/info.json b/blockchains/smartchain/assets/0xE60ef2b118C35c987CE28d3b69f84378F2b84b4a/info.json new file mode 100644 index 00000000..9118129e --- /dev/null +++ b/blockchains/smartchain/assets/0xE60ef2b118C35c987CE28d3b69f84378F2b84b4a/info.json @@ -0,0 +1,11 @@ +{ + "name": "NudesCoin", + "website": "https://www.nudezcoin.com/", + "description": "NudezCoin is the cryptocurrency of choice for adult content creators and independent porn platforms.", + "explorer": "https://bscscan.com/token/0xE60ef2b118C35c987CE28d3b69f84378F2b84b4a", + "type": "BEP20", + "symbol": "NUDEZ", + "decimals": 9, + "status": "active", + "id": "0xE60ef2b118C35c987CE28d3b69f84378F2b84b4a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE60ef2b118C35c987CE28d3b69f84378F2b84b4a/logo.png b/blockchains/smartchain/assets/0xE60ef2b118C35c987CE28d3b69f84378F2b84b4a/logo.png new file mode 100644 index 00000000..8b8cc699 Binary files /dev/null and b/blockchains/smartchain/assets/0xE60ef2b118C35c987CE28d3b69f84378F2b84b4a/logo.png differ diff --git a/blockchains/smartchain/assets/0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3/info.json b/blockchains/smartchain/assets/0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3/info.json new file mode 100644 index 00000000..b794da1d --- /dev/null +++ b/blockchains/smartchain/assets/0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3/info.json @@ -0,0 +1,28 @@ +{ + "name": "SwftCoin", + "website": "https://www.swft.pro/#/", + "description": "SWFTC provides SWFT Blockchain with the sources of liquidity needed to offer faster cross-chain swaps at the best rates, and with low fees.", + "explorer": "https://bscscan.com/token/0xe64e30276c2f826febd3784958d6da7b55dfbad3", + "type": "BEP20", + "symbol": "SWFTC", + "decimals": 18, + "status": "active", + "id": "0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/SwftCoin" + }, + { + "name": "github", + "url": "https://github.com/SwftCoins/SwftCoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/swftcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3/logo.png b/blockchains/smartchain/assets/0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3/logo.png new file mode 100644 index 00000000..aea07177 Binary files /dev/null and b/blockchains/smartchain/assets/0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3/logo.png differ diff --git a/blockchains/smartchain/assets/0xE64F5Cb844946C1F102Bd25bBD87a5aB4aE89Fbe/info.json b/blockchains/smartchain/assets/0xE64F5Cb844946C1F102Bd25bBD87a5aB4aE89Fbe/info.json new file mode 100644 index 00000000..13051605 --- /dev/null +++ b/blockchains/smartchain/assets/0xE64F5Cb844946C1F102Bd25bBD87a5aB4aE89Fbe/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://bscscan.com/token/0xe64f5cb844946c1f102bd25bbd87a5ab4ae89fbe", + "type": "BEP20", + "symbol": "bROOBEE", + "decimals": 18, + "status": "active", + "id": "0xE64F5Cb844946C1F102Bd25bBD87a5aB4aE89Fbe" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE64F5Cb844946C1F102Bd25bBD87a5aB4aE89Fbe/logo.png b/blockchains/smartchain/assets/0xE64F5Cb844946C1F102Bd25bBD87a5aB4aE89Fbe/logo.png new file mode 100644 index 00000000..36b2745d Binary files /dev/null and b/blockchains/smartchain/assets/0xE64F5Cb844946C1F102Bd25bBD87a5aB4aE89Fbe/logo.png differ diff --git a/blockchains/smartchain/assets/0xE665d9abcFe78962385Aa5A8aa0A35E33B8F2C20/info.json b/blockchains/smartchain/assets/0xE665d9abcFe78962385Aa5A8aa0A35E33B8F2C20/info.json new file mode 100644 index 00000000..f1ec2235 --- /dev/null +++ b/blockchains/smartchain/assets/0xE665d9abcFe78962385Aa5A8aa0A35E33B8F2C20/info.json @@ -0,0 +1,28 @@ +{ + "name": "NextMoon", + "website": "https://nextmoon.org/", + "description": "Token for the NextMoon ecosystem, focused on NFTs and high potential blockchain assets. The contract has a 5 percent burn rate on each transaction.", + "explorer": "https://bscscan.com/token/0xe665d9abcfe78962385aa5a8aa0a35e33b8f2c20", + "type": "BEP20", + "symbol": "NextMoon", + "decimals": 0, + "status": "active", + "id": "0xE665d9abcFe78962385Aa5A8aa0A35E33B8F2C20", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/NextMoonToken" + }, + { + "name": "telegram", + "url": "https://t.me/NextMoonToken" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/NextMoonToken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE665d9abcFe78962385Aa5A8aa0A35E33B8F2C20/logo.png b/blockchains/smartchain/assets/0xE665d9abcFe78962385Aa5A8aa0A35E33B8F2C20/logo.png new file mode 100644 index 00000000..f8efb615 Binary files /dev/null and b/blockchains/smartchain/assets/0xE665d9abcFe78962385Aa5A8aa0A35E33B8F2C20/logo.png differ diff --git a/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/info.json b/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/info.json new file mode 100644 index 00000000..e00fa3ec --- /dev/null +++ b/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/info.json @@ -0,0 +1,45 @@ +{ + "name": "CZUSD", + "type": "BEP20", + "symbol": "CZUSD", + "decimals": 18, + "website": "https://czodiac.com", + "description": "CZUSD is a digital stablecoin in the CZODIAC ecosystem, enabling seamless exchange. It employs CzusdGate for swaps and ScorchPeg for a flexible rate, while the Gnosis Multikey Safe secures collateral.", + "explorer": "https://bscscan.com/token/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70", + "status": "active", + "id": "0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70", + "links": [ + { + "name": "x", + "url": "https://x.com/zodiacs_c" + }, + { + "name": "github", + "url": "https://github.com/chinese-zodiac/czodiac" + }, + { + "name": "medium", + "url": "https://czodiacs.medium.com/" + }, + { + "name": "whitepaper", + "url": "https://czodiac.gitbook.io/czodiac-litepapper/tokenomics/czusd" + }, + { + "name": "telegram", + "url": "https://t.me/CZodiacofficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/CZodiacANN" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Tg9JFQxzbs" + } + ], + "tags": [ + "stablecoin", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/logo.png b/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/logo.png new file mode 100644 index 00000000..cec4d397 Binary files /dev/null and b/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/logo.png differ diff --git a/blockchains/smartchain/assets/0xE692714717a89E4F2ab89dd17d8DDdD7bb52De8e/info.json b/blockchains/smartchain/assets/0xE692714717a89E4F2ab89dd17d8DDdD7bb52De8e/info.json new file mode 100644 index 00000000..061f1cf1 --- /dev/null +++ b/blockchains/smartchain/assets/0xE692714717a89E4F2ab89dd17d8DDdD7bb52De8e/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream Tezos Token", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0xE692714717a89E4F2ab89dd17d8DDdD7bb52De8e", + "type": "BEP20", + "symbol": "crXTZ", + "decimals": 8, + "status": "active", + "id": "0xE692714717a89E4F2ab89dd17d8DDdD7bb52De8e", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE692714717a89E4F2ab89dd17d8DDdD7bb52De8e/logo.png b/blockchains/smartchain/assets/0xE692714717a89E4F2ab89dd17d8DDdD7bb52De8e/logo.png new file mode 100644 index 00000000..84b8f9de Binary files /dev/null and b/blockchains/smartchain/assets/0xE692714717a89E4F2ab89dd17d8DDdD7bb52De8e/logo.png differ diff --git a/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/info.json b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/info.json new file mode 100644 index 00000000..57f93f66 --- /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 00000000..0d6c3031 Binary files /dev/null and b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/logo.png differ diff --git a/blockchains/smartchain/assets/0xE6FFa2e574a8BBEb5243D2109b6B11D4a459F88B/info.json b/blockchains/smartchain/assets/0xE6FFa2e574a8BBEb5243D2109b6B11D4a459F88B/info.json new file mode 100644 index 00000000..22bf54b0 --- /dev/null +++ b/blockchains/smartchain/assets/0xE6FFa2e574a8BBEb5243D2109b6B11D4a459F88B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hippo Token", + "type": "BEP20", + "symbol": "HIP", + "decimals": 18, + "website": "https://hippo.cycan.network/", + "description": "Hippo (HIP) is a visionary decentralized community initiative, created by the Cycan community. Our vision is to build a Decentralized Autonomous Organization(DAO) driven and governed entirely by the community.", + "explorer": "https://bscscan.com/token/0xE6FFa2e574a8BBEb5243D2109b6B11D4a459F88B", + "status": "active", + "id": "0xE6FFa2e574a8BBEb5243D2109b6B11D4a459F88B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE6FFa2e574a8BBEb5243D2109b6B11D4a459F88B/logo.png b/blockchains/smartchain/assets/0xE6FFa2e574a8BBEb5243D2109b6B11D4a459F88B/logo.png new file mode 100644 index 00000000..4b923c18 Binary files /dev/null and b/blockchains/smartchain/assets/0xE6FFa2e574a8BBEb5243D2109b6B11D4a459F88B/logo.png differ diff --git a/blockchains/smartchain/assets/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03/info.json b/blockchains/smartchain/assets/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03/info.json new file mode 100644 index 00000000..94c265ea --- /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 00000000..24992b02 Binary files /dev/null and b/blockchains/smartchain/assets/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03/logo.png differ diff --git a/blockchains/smartchain/assets/0xE73BB2b15f0a5f45729a9F6C4a9A51B380Bf0dFf/info.json b/blockchains/smartchain/assets/0xE73BB2b15f0a5f45729a9F6C4a9A51B380Bf0dFf/info.json new file mode 100644 index 00000000..38489604 --- /dev/null +++ b/blockchains/smartchain/assets/0xE73BB2b15f0a5f45729a9F6C4a9A51B380Bf0dFf/info.json @@ -0,0 +1,11 @@ +{ + "name": "Medical Veda", + "type": "BEP20", + "symbol": "MVEDA", + "decimals": 9, + "website": "http://medicalveda.finance/", + "description": "MedicalVeda seeks to address the modern-day challenges faced by the health care industry. It leverages innovative technologies such as Blockchain, Defi, Artificial Intelligence and Smart Contracts", + "explorer": "https://bscscan.com/token/0xE73BB2b15f0a5f45729a9F6C4a9A51B380Bf0dFf", + "status": "active", + "id": "0xE73BB2b15f0a5f45729a9F6C4a9A51B380Bf0dFf" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE73BB2b15f0a5f45729a9F6C4a9A51B380Bf0dFf/logo.png b/blockchains/smartchain/assets/0xE73BB2b15f0a5f45729a9F6C4a9A51B380Bf0dFf/logo.png new file mode 100644 index 00000000..f8ddd125 Binary files /dev/null and b/blockchains/smartchain/assets/0xE73BB2b15f0a5f45729a9F6C4a9A51B380Bf0dFf/logo.png differ diff --git a/blockchains/smartchain/assets/0xE7784072FC769D8b7f8C0a3Fa008722eEF5dDDD5/info.json b/blockchains/smartchain/assets/0xE7784072FC769D8b7f8C0a3Fa008722eEF5dDDD5/info.json new file mode 100644 index 00000000..705059e1 --- /dev/null +++ b/blockchains/smartchain/assets/0xE7784072FC769D8b7f8C0a3Fa008722eEF5dDDD5/info.json @@ -0,0 +1,29 @@ +{ + "name": "HEDGE Token", + "website": "https://www.hedge-finance.com", + "description": "A custom tailored reflection token offering dynamic rewards based on market conditions and community input", + "explorer": "https://bscscan.com/token/0xE7784072FC769D8b7f8C0a3Fa008722eEF5dDDD5", + "type": "BEP20", + "symbol": "HEDGE", + "decimals": 18, + "status": "active", + "id": "0xE7784072FC769D8b7f8C0a3Fa008722eEF5dDDD5", + "links": [ + { + "name": "x", + "url": "https://x.com/Hedge_Finance" + }, + { + "name": "github", + "url": "https://github.com/dogekingbsc" + }, + { + "name": "telegram", + "url": "https://t.me/HedgeFinancial" + }, + { + "name": "blog", + "url": "https://hedge-finance.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE7784072FC769D8b7f8C0a3Fa008722eEF5dDDD5/logo.png b/blockchains/smartchain/assets/0xE7784072FC769D8b7f8C0a3Fa008722eEF5dDDD5/logo.png new file mode 100644 index 00000000..9cb0c4ec Binary files /dev/null and b/blockchains/smartchain/assets/0xE7784072FC769D8b7f8C0a3Fa008722eEF5dDDD5/logo.png differ diff --git a/blockchains/smartchain/assets/0xE77932B1216125848e82C3967e75698362168f99/info.json b/blockchains/smartchain/assets/0xE77932B1216125848e82C3967e75698362168f99/info.json new file mode 100644 index 00000000..477fbb47 --- /dev/null +++ b/blockchains/smartchain/assets/0xE77932B1216125848e82C3967e75698362168f99/info.json @@ -0,0 +1,24 @@ +{ + "name": "Galaxy Finance Token", + "type": "BEP20", + "symbol": "GFT", + "decimals": 18, + "website": "https://galaxyfinance.io/", + "description": "Galaxy Finance is First Ecosystem that Scaling Decentralized Applications.", + "explorer": "https://bscscan.com/token/0xE77932B1216125848e82C3967e75698362168f99", + "status": "active", + "id": "0xE77932B1216125848e82C3967e75698362168f99", + "links": [ + { + "name": "x", + "url": "https://x.com/galaxyfinance3" + }, + { + "name": "telegram", + "url": "https://t.me/galaxyfinance_channel" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE77932B1216125848e82C3967e75698362168f99/logo.png b/blockchains/smartchain/assets/0xE77932B1216125848e82C3967e75698362168f99/logo.png new file mode 100644 index 00000000..42f9b1e8 Binary files /dev/null and b/blockchains/smartchain/assets/0xE77932B1216125848e82C3967e75698362168f99/logo.png differ diff --git a/blockchains/smartchain/assets/0xE78a58ACB18811E840DD828d4f0116389e953592/info.json b/blockchains/smartchain/assets/0xE78a58ACB18811E840DD828d4f0116389e953592/info.json new file mode 100644 index 00000000..efbe0e22 --- /dev/null +++ b/blockchains/smartchain/assets/0xE78a58ACB18811E840DD828d4f0116389e953592/info.json @@ -0,0 +1,11 @@ +{ + "name": "VoltBit", + "website": "https://www.voltbit.org/", + "description": "A deflationary cryptocurrency that has a locked liquidity and is community backed. Our aim is to help those without electricity receive it in a way that helps our planet.", + "explorer": "https://bscscan.com/token/0xe78a58acb18811e840dd828d4f0116389e953592", + "type": "BEP20", + "symbol": "VBit", + "decimals": 9, + "status": "active", + "id": "0xE78a58ACB18811E840DD828d4f0116389e953592" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE78a58ACB18811E840DD828d4f0116389e953592/logo.png b/blockchains/smartchain/assets/0xE78a58ACB18811E840DD828d4f0116389e953592/logo.png new file mode 100644 index 00000000..719f676b Binary files /dev/null and b/blockchains/smartchain/assets/0xE78a58ACB18811E840DD828d4f0116389e953592/logo.png differ diff --git a/blockchains/smartchain/assets/0xE7A8E7d7729859EA6eEdbd4D67F8c97A22b11435/info.json b/blockchains/smartchain/assets/0xE7A8E7d7729859EA6eEdbd4D67F8c97A22b11435/info.json new file mode 100644 index 00000000..e77ecf32 --- /dev/null +++ b/blockchains/smartchain/assets/0xE7A8E7d7729859EA6eEdbd4D67F8c97A22b11435/info.json @@ -0,0 +1,11 @@ +{ + "name": "Frozencake", + "type": "BEP20", + "symbol": "FROZEN", + "decimals": 18, + "website": "https://frozencake.finance", + "description": "A next evolution DeFi exchange on BinanceSmartChain.", + "explorer": "https://bscscan.com/token/0xE7A8E7d7729859EA6eEdbd4D67F8c97A22b11435", + "status": "active", + "id": "0xE7A8E7d7729859EA6eEdbd4D67F8c97A22b11435" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE7A8E7d7729859EA6eEdbd4D67F8c97A22b11435/logo.png b/blockchains/smartchain/assets/0xE7A8E7d7729859EA6eEdbd4D67F8c97A22b11435/logo.png new file mode 100644 index 00000000..b75ce471 Binary files /dev/null and b/blockchains/smartchain/assets/0xE7A8E7d7729859EA6eEdbd4D67F8c97A22b11435/logo.png differ diff --git a/blockchains/smartchain/assets/0xE7Cb24F449973D5B3520E5b93D88B405903c75Fb/info.json b/blockchains/smartchain/assets/0xE7Cb24F449973D5B3520E5b93D88B405903c75Fb/info.json new file mode 100644 index 00000000..c13ebd5d --- /dev/null +++ b/blockchains/smartchain/assets/0xE7Cb24F449973D5B3520E5b93D88B405903c75Fb/info.json @@ -0,0 +1,11 @@ +{ + "name": "BNbitcoin Token", + "website": "https://bnbitcoin.org", + "description": "BNbitcoin is the native, pure Proof-of-Work mined token on the Binance Smart Chain", + "explorer": "https://bscscan.com/token/0xE7Cb24F449973D5B3520E5b93D88B405903c75Fb", + "type": "BEP20", + "symbol": "BNBTC", + "decimals": 8, + "status": "active", + "id": "0xE7Cb24F449973D5B3520E5b93D88B405903c75Fb" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE7Cb24F449973D5B3520E5b93D88B405903c75Fb/logo.png b/blockchains/smartchain/assets/0xE7Cb24F449973D5B3520E5b93D88B405903c75Fb/logo.png new file mode 100644 index 00000000..cc9eccc5 Binary files /dev/null and b/blockchains/smartchain/assets/0xE7Cb24F449973D5B3520E5b93D88B405903c75Fb/logo.png differ diff --git a/blockchains/smartchain/assets/0xE7ddF606841ee278A30E5C90486681e68ddd8cbF/info.json b/blockchains/smartchain/assets/0xE7ddF606841ee278A30E5C90486681e68ddd8cbF/info.json new file mode 100644 index 00000000..228e9d7c --- /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 00000000..3cac9a56 Binary files /dev/null and b/blockchains/smartchain/assets/0xE7ddF606841ee278A30E5C90486681e68ddd8cbF/logo.png differ diff --git a/blockchains/smartchain/assets/0xE7df368e774976d0E21c4E6537aE4B07904D731d/info.json b/blockchains/smartchain/assets/0xE7df368e774976d0E21c4E6537aE4B07904D731d/info.json new file mode 100644 index 00000000..9711cbec --- /dev/null +++ b/blockchains/smartchain/assets/0xE7df368e774976d0E21c4E6537aE4B07904D731d/info.json @@ -0,0 +1,11 @@ +{ + "name": "SimurghToken", + "type": "BEP20", + "symbol": "SIMURGH", + "decimals": 18, + "website": "https://simurgh.finance/", + "description": "Simurgh is an automatic liquidity acquisition yield farm running on Binance Smart Chain with lots of unique and creative features.", + "explorer": "https://bscscan.com/token/0xE7df368e774976d0E21c4E6537aE4B07904D731d", + "status": "active", + "id": "0xE7df368e774976d0E21c4E6537aE4B07904D731d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE7df368e774976d0E21c4E6537aE4B07904D731d/logo.png b/blockchains/smartchain/assets/0xE7df368e774976d0E21c4E6537aE4B07904D731d/logo.png new file mode 100644 index 00000000..72db11fd Binary files /dev/null and b/blockchains/smartchain/assets/0xE7df368e774976d0E21c4E6537aE4B07904D731d/logo.png differ diff --git a/blockchains/smartchain/assets/0xE81257d932280AE440B17AFc5f07C8A110D21432/info.json b/blockchains/smartchain/assets/0xE81257d932280AE440B17AFc5f07C8A110D21432/info.json new file mode 100644 index 00000000..dbae2c30 --- /dev/null +++ b/blockchains/smartchain/assets/0xE81257d932280AE440B17AFc5f07C8A110D21432/info.json @@ -0,0 +1,45 @@ +{ + "name": "Zuki Moba", + "type": "BEP20", + "symbol": "ZUKI", + "decimals": 18, + "website": "https://zukimoba.com/", + "description": "Zuki Moba is a MOBA Esport Game (Multiplayer Online Battle Arena) which is built with a Decentralized Economy application community-oriented. In-game NFT is used to build characters, game items, and Metaverse structures. In addition, Play to Earn mechanism is applied to create economic benefits for Gamers, creating a unique point compared to traditional MOBA games. $ZUKI is Zuki Moba's in-game token", + "explorer": "https://bscscan.com/token/0xE81257d932280AE440B17AFc5f07C8A110D21432", + "status": "active", + "id": "0xE81257d932280AE440B17AFc5f07C8A110D21432", + "links": [ + { + "name": "x", + "url": "https://x.com/ZukiMoba" + }, + { + "name": "facebook", + "url": "https://facebook.com/ZukiMoba/" + }, + { + "name": "docs", + "url": "https://docs.zukimoba.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zuki-moba/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zuki-moba" + }, + { + "name": "telegram", + "url": "https://t.me/ZukiMoba" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ZukiMoba/" + }, + { + "name": "discord", + "url": "https://discord.com/channels/893120976399769601/893120976865341522" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE81257d932280AE440B17AFc5f07C8A110D21432/logo.png b/blockchains/smartchain/assets/0xE81257d932280AE440B17AFc5f07C8A110D21432/logo.png new file mode 100644 index 00000000..9f7708f8 Binary files /dev/null and b/blockchains/smartchain/assets/0xE81257d932280AE440B17AFc5f07C8A110D21432/logo.png differ diff --git a/blockchains/smartchain/assets/0xE815f6941d19D1e20b0e1f92471c6143809F4444/info.json b/blockchains/smartchain/assets/0xE815f6941d19D1e20b0e1f92471c6143809F4444/info.json new file mode 100644 index 00000000..48ddaf22 --- /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 00000000..b99f203c 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 new file mode 100644 index 00000000..293b803a --- /dev/null +++ b/blockchains/smartchain/assets/0xE8176d414560cFE1Bf82Fd73B986823B89E4F545/info.json @@ -0,0 +1,29 @@ +{ + "name": "Step Hero", + "website": "https://stephero.io/", + "description": "The lucrative NFT fantasy-themed RPG Game on BSC and Polygon", + "explorer": "https://bscscan.com/token/0xE8176d414560cFE1Bf82Fd73B986823B89E4F545", + "type": "BEP20", + "symbol": "HERO", + "decimals": 18, + "status": "active", + "id": "0xE8176d414560cFE1Bf82Fd73B986823B89E4F545", + "links": [ + { + "name": "x", + "url": "https://x.com/StepHeroNFTs" + }, + { + "name": "telegram", + "url": "https://t.me/stephero_chat" + }, + { + "name": "facebook", + "url": "https://facebook.com/StepHeroNFTs" + }, + { + "name": "github", + "url": "https://github.com/stepherogame" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE8176d414560cFE1Bf82Fd73B986823B89E4F545/logo.png b/blockchains/smartchain/assets/0xE8176d414560cFE1Bf82Fd73B986823B89E4F545/logo.png new file mode 100644 index 00000000..e77fdf56 Binary files /dev/null and b/blockchains/smartchain/assets/0xE8176d414560cFE1Bf82Fd73B986823B89E4F545/logo.png differ diff --git a/blockchains/smartchain/assets/0xE846D164B88eD2e1209609fea3cf7a3D89D70D2D/info.json b/blockchains/smartchain/assets/0xE846D164B88eD2e1209609fea3cf7a3D89D70D2D/info.json new file mode 100644 index 00000000..fa9bf8e8 --- /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 00000000..ffc2c9a5 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 00000000..cda00977 --- /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 00000000..12902f11 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 00000000..a6e9ad70 --- /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 00000000..597e5a03 Binary files /dev/null and b/blockchains/smartchain/assets/0xE87afb3076AeB0f9B14E368DE8145ae6a2826A14/logo.png differ diff --git a/blockchains/smartchain/assets/0xE8813E1C7EAF1DE10D331Ed6C0B210eb36561356/info.json b/blockchains/smartchain/assets/0xE8813E1C7EAF1DE10D331Ed6C0B210eb36561356/info.json new file mode 100644 index 00000000..07dd5b2a --- /dev/null +++ b/blockchains/smartchain/assets/0xE8813E1C7EAF1DE10D331Ed6C0B210eb36561356/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bishoku Inu", + "website": "https://www.bishokuinu.com/", + "description": "Bishoku Inu ($BISHOKU) is a community-focused, decentralized cryptocurrency with instant rewards thanks to active users!", + "explorer": "https://bscscan.com/token/0xE8813E1C7EAF1DE10D331Ed6C0B210eb36561356", + "type": "BEP20", + "symbol": "BISHOKU", + "decimals": 9, + "status": "active", + "id": "0xE8813E1C7EAF1DE10D331Ed6C0B210eb36561356" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE8813E1C7EAF1DE10D331Ed6C0B210eb36561356/logo.png b/blockchains/smartchain/assets/0xE8813E1C7EAF1DE10D331Ed6C0B210eb36561356/logo.png new file mode 100644 index 00000000..3837537c Binary files /dev/null and b/blockchains/smartchain/assets/0xE8813E1C7EAF1DE10D331Ed6C0B210eb36561356/logo.png differ diff --git a/blockchains/smartchain/assets/0xE8c93310af068aa50bd7bF0ebFa459Df2a02ceba/info.json b/blockchains/smartchain/assets/0xE8c93310af068aa50bd7bF0ebFa459Df2a02ceba/info.json new file mode 100644 index 00000000..b23598fe --- /dev/null +++ b/blockchains/smartchain/assets/0xE8c93310af068aa50bd7bF0ebFa459Df2a02ceba/info.json @@ -0,0 +1,49 @@ +{ + "name": "HoneyMoon", + "type": "BEP20", + "symbol": "MOON", + "decimals": 18, + "website": "https://moon.honeyfarm.finance?utm_source=twt&utm_medium=wallet&utm_campaign=twt", + "description": "MOON is a native token of HoneyFarm Layer 3 - HoneyMoon", + "explorer": "https://bscscan.com/token/0xE8c93310af068aa50bd7bF0ebFa459Df2a02ceba", + "status": "active", + "id": "0xE8c93310af068aa50bd7bF0ebFa459Df2a02ceba", + "links": [ + { + "name": "x", + "url": "https://x.com/HoneyFarmFi" + }, + { + "name": "github", + "url": "https://github.com/HoneyFarmFi/HoneyFarmContracts" + }, + { + "name": "telegram", + "url": "https://t.me/HoneyFarmChat" + }, + { + "name": "telegram_news", + "url": "https://t.me/HoneyFarmAnn" + }, + { + "name": "blog", + "url": "https://medium.com/@honeyfarmchef" + }, + { + "name": "docs", + "url": "https://docs.honeyfarm.finance/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/honeymoon-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/honeymoon-token" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/HoneyFarm_Official/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE8c93310af068aa50bd7bF0ebFa459Df2a02ceba/logo.png b/blockchains/smartchain/assets/0xE8c93310af068aa50bd7bF0ebFa459Df2a02ceba/logo.png new file mode 100644 index 00000000..2fc8b2b2 Binary files /dev/null and b/blockchains/smartchain/assets/0xE8c93310af068aa50bd7bF0ebFa459Df2a02ceba/logo.png differ diff --git a/blockchains/smartchain/assets/0xE8ff70859Ce4cbd72E4352b4fb45F5BF39d07464/info.json b/blockchains/smartchain/assets/0xE8ff70859Ce4cbd72E4352b4fb45F5BF39d07464/info.json new file mode 100644 index 00000000..8a7bd752 --- /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 00000000..42dcbb8a 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 00000000..bd96f641 --- /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 00000000..85171c99 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 new file mode 100644 index 00000000..7c5e17f0 --- /dev/null +++ b/blockchains/smartchain/assets/0xE93B4fb367F3678A32f28254355f9f6ac000c976/info.json @@ -0,0 +1,49 @@ +{ + "name": "Celestial", + "type": "BEP20", + "symbol": "Crystal", + "decimals": 18, + "website": "https://celt.game/", + "description": "Celestial is a cross chain metaverse game that combines Gamefi, Socialfi, and NFTSwap with the theme of interstellar warfare.", + "explorer": "https://bscscan.com/token/0xE93B4fb367F3678A32f28254355f9f6ac000c976", + "status": "active", + "id": "0xE93B4fb367F3678A32f28254355f9f6ac000c976", + "links": [ + { + "name": "x", + "url": "https://x.com/GameCelt" + }, + { + "name": "github", + "url": "https://github.com/CeltGame" + }, + { + "name": "telegram", + "url": "https://t.me/CELT_Game" + }, + { + "name": "telegram_news", + "url": "https://t.me/CELT_Announcement" + }, + { + "name": "whitepaper", + "url": "https://bsc.celt.game/static/CELESTIAL_Whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@celestial.gamefi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crystal/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/crystal" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC3L64zz-sbwaEgMVotqLkTA" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE93B4fb367F3678A32f28254355f9f6ac000c976/logo.png b/blockchains/smartchain/assets/0xE93B4fb367F3678A32f28254355f9f6ac000c976/logo.png new file mode 100644 index 00000000..81e6b65f Binary files /dev/null and b/blockchains/smartchain/assets/0xE93B4fb367F3678A32f28254355f9f6ac000c976/logo.png differ diff --git a/blockchains/smartchain/assets/0xE942C48044FB1C7f4C9eB456f6097fa4A1A17B8f/info.json b/blockchains/smartchain/assets/0xE942C48044FB1C7f4C9eB456f6097fa4A1A17B8f/info.json new file mode 100644 index 00000000..a2d27b55 --- /dev/null +++ b/blockchains/smartchain/assets/0xE942C48044FB1C7f4C9eB456f6097fa4A1A17B8f/info.json @@ -0,0 +1,44 @@ +{ + "name": "Elvantis", + "type": "BEP20", + "symbol": "ELV", + "decimals": 18, + "website": "https://elvantis.com/", + "description": "Elvantis is a metaverse-inspired online NFT game that combines what you love about gaming with the addictive thrill of collectables. ", + "explorer": "Https://bscscan.com/token/0xE942C48044FB1C7f4C9eB456f6097fa4A1A17B8f", + "status": "active", + "id": "0xE942C48044FB1C7f4C9eB456f6097fa4A1A17B8f", + "links": [ + { + "name": "x", + "url": "https://x.com/ElvantisGame" + }, + { + "name": "discord", + "url": "https://discord.com/6YwurDbfRq" + }, + { + "name": "medium", + "url": "https://medium.com/@ElvantisOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elvantis/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCUmWgv0WmRMzC1yEFsn6vGQ" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/ElvantisOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/ELVANTIS" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE942C48044FB1C7f4C9eB456f6097fa4A1A17B8f/logo.png b/blockchains/smartchain/assets/0xE942C48044FB1C7f4C9eB456f6097fa4A1A17B8f/logo.png new file mode 100644 index 00000000..e82a7b2a Binary files /dev/null and b/blockchains/smartchain/assets/0xE942C48044FB1C7f4C9eB456f6097fa4A1A17B8f/logo.png differ diff --git a/blockchains/smartchain/assets/0xE94444Ba62208431a27C764E2e28794e81f5B235/info.json b/blockchains/smartchain/assets/0xE94444Ba62208431a27C764E2e28794e81f5B235/info.json new file mode 100644 index 00000000..8f1ad1bd --- /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 00000000..c99b1db1 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 00000000..44f23cbd --- /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 00000000..0517a8ae 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 new file mode 100644 index 00000000..ade3acf3 --- /dev/null +++ b/blockchains/smartchain/assets/0xE9c7a827a4bA133b338b844C19241c864E95d75f/info.json @@ -0,0 +1,32 @@ +{ + "name": "FileSystemVideo", + "type": "BEP20", + "symbol": "FSV", + "decimals": 6, + "website": "https://www.fs.video", + "description": "FSV is the world's first interstellar video public chain based on ipfs application, focusing on distributed storage of video files.", + "explorer": "https://bscscan.com/token/0xE9c7a827a4bA133b338b844C19241c864E95d75f", + "status": "active", + "id": "0xE9c7a827a4bA133b338b844C19241c864E95d75f", + "links": [ + { + "name": "x", + "url": "https://x.com/FSV_fsvideo" + }, + { + "name": "github", + "url": "https://github.com/FileSystemVideo" + }, + { + "name": "telegram", + "url": "https://t.me/FSV1111" + }, + { + "name": "whitepaper", + "url": "https://dsw3rxqm9wq1x.cloudfront.net/book/FSV-White-Paper.pdf" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE9c7a827a4bA133b338b844C19241c864E95d75f/logo.png b/blockchains/smartchain/assets/0xE9c7a827a4bA133b338b844C19241c864E95d75f/logo.png new file mode 100644 index 00000000..bedbb848 Binary files /dev/null and b/blockchains/smartchain/assets/0xE9c7a827a4bA133b338b844C19241c864E95d75f/logo.png differ diff --git a/blockchains/smartchain/assets/0xE9d78BF51ae04c7E1263A76ED89a65537B9cA903/info.json b/blockchains/smartchain/assets/0xE9d78BF51ae04c7E1263A76ED89a65537B9cA903/info.json new file mode 100644 index 00000000..96609292 --- /dev/null +++ b/blockchains/smartchain/assets/0xE9d78BF51ae04c7E1263A76ED89a65537B9cA903/info.json @@ -0,0 +1,37 @@ +{ + "name": "Game Coin", + "type": "BEP20", + "symbol": "GMEX", + "decimals": 9, + "website": "https://www.thegamecoin.net", + "description": "Game Coin aims to allow any athlete in the world the ability to create their own sports token.", + "explorer": "https://bscscan.com/token/0xE9d78BF51ae04c7E1263A76ED89a65537B9cA903", + "status": "active", + "id": "0xE9d78BF51ae04c7E1263A76ED89a65537B9cA903", + "links": [ + { + "name": "x", + "url": "https://x.com/GameCoinGMEX" + }, + { + "name": "telegram", + "url": "https://t.me/TheGameCoin_GME_CHAT" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/game-coin/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/GameCoinCrypto/" + }, + { + "name": "facebook", + "url": "https://facebook.com/GameCoinGMEX/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCrYDr-2HjWwtGG0meSxzNsA" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE9d78BF51ae04c7E1263A76ED89a65537B9cA903/logo.png b/blockchains/smartchain/assets/0xE9d78BF51ae04c7E1263A76ED89a65537B9cA903/logo.png new file mode 100644 index 00000000..51c910b0 Binary files /dev/null and b/blockchains/smartchain/assets/0xE9d78BF51ae04c7E1263A76ED89a65537B9cA903/logo.png differ diff --git a/blockchains/smartchain/assets/0xEA01a1a3CF143f90b4aC6D069Bd369826574CD45/info.json b/blockchains/smartchain/assets/0xEA01a1a3CF143f90b4aC6D069Bd369826574CD45/info.json new file mode 100644 index 00000000..7df46f69 --- /dev/null +++ b/blockchains/smartchain/assets/0xEA01a1a3CF143f90b4aC6D069Bd369826574CD45/info.json @@ -0,0 +1,33 @@ +{ + "name": "XXT-Token", + "type": "BEP20", + "symbol": "XXT", + "decimals": 9, + "website": "https://xxt-token.com", + "description": "The XXT-Token is a cryptocurrency designed to be the means of payment and integrate the entire adult entertainment ecosystem. Our objective is to use the token as currency to pay and receive for services and products, integrating customers, stores, hotels, sex-shops, motels, suppliers, adult live stream, bars and nightclubs.", + "explorer": "https://bscscan.com/token/0xEA01a1a3CF143f90b4aC6D069Bd369826574CD45", + "status": "active", + "id": "0xEA01a1a3CF143f90b4aC6D069Bd369826574CD45", + "links": [ + { + "name": "x", + "url": "https://x.com/xxt_token" + }, + { + "name": "telegram", + "url": "https://t.me/xxt_token_brz" + }, + { + "name": "whitepaper", + "url": "https://xxt-token.com/wp-content/uploads/2021/06/XXT-Token-US.pdf" + }, + { + "name": "docs", + "url": "https://xxt-token.com/wp-content/uploads/2021/09/XXT-Token-Full-Smart-Contract-Security-Audit.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/pt-br/currencies/xxt-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEA01a1a3CF143f90b4aC6D069Bd369826574CD45/logo.png b/blockchains/smartchain/assets/0xEA01a1a3CF143f90b4aC6D069Bd369826574CD45/logo.png new file mode 100644 index 00000000..4ac62dfa Binary files /dev/null and b/blockchains/smartchain/assets/0xEA01a1a3CF143f90b4aC6D069Bd369826574CD45/logo.png differ diff --git a/blockchains/smartchain/assets/0xEA130432a9feE9ca1A7eDa84028650d38Bd0E232/info.json b/blockchains/smartchain/assets/0xEA130432a9feE9ca1A7eDa84028650d38Bd0E232/info.json new file mode 100644 index 00000000..a40d7828 --- /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 00000000..34299b5b 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 new file mode 100644 index 00000000..2b0c960d --- /dev/null +++ b/blockchains/smartchain/assets/0xEA466cd2583A0290b9E7b987a769a7Eb468FB0A5/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream YFI", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0xEA466cd2583A0290b9E7b987a769a7Eb468FB0A5", + "type": "BEP20", + "symbol": "crYFI", + "decimals": 8, + "status": "active", + "id": "0xEA466cd2583A0290b9E7b987a769a7Eb468FB0A5", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEA466cd2583A0290b9E7b987a769a7Eb468FB0A5/logo.png b/blockchains/smartchain/assets/0xEA466cd2583A0290b9E7b987a769a7Eb468FB0A5/logo.png new file mode 100644 index 00000000..06217db9 Binary files /dev/null and b/blockchains/smartchain/assets/0xEA466cd2583A0290b9E7b987a769a7Eb468FB0A5/logo.png differ diff --git a/blockchains/smartchain/assets/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8/info.json b/blockchains/smartchain/assets/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8/info.json new file mode 100644 index 00000000..3f575f95 --- /dev/null +++ b/blockchains/smartchain/assets/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8/info.json @@ -0,0 +1,32 @@ +{ + "name": "Muu Inu", + "type": "BEP20", + "symbol": "MINU", + "decimals": 9, + "website": "https://muuinu.com", + "description": "Muu Inu is a unique utility token on the BSC chain. It has a total supply of 1 Trillion and is listed on pancakeswap. The utility we aim to bring to this project and holders includes: Play2Earn game, Staking, NFTs", + "explorer": "https://bscscan.com/token/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8", + "status": "active", + "id": "0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8", + "links": [ + { + "name": "x", + "url": "https://x.com/muuinuofficial" + }, + { + "name": "telegram", + "url": "https://t.me/MuuInu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/muu-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/muu-inu" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8/logo.png b/blockchains/smartchain/assets/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8/logo.png new file mode 100644 index 00000000..c27df7e4 Binary files /dev/null and b/blockchains/smartchain/assets/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8/logo.png differ diff --git a/blockchains/smartchain/assets/0xEAc9873291dDAcA754EA5642114151f3035c67A2/info.json b/blockchains/smartchain/assets/0xEAc9873291dDAcA754EA5642114151f3035c67A2/info.json new file mode 100644 index 00000000..6705ceaa --- /dev/null +++ b/blockchains/smartchain/assets/0xEAc9873291dDAcA754EA5642114151f3035c67A2/info.json @@ -0,0 +1,25 @@ +{ + "name": "Decubate Token", + "website": "https://decubate.com", + "description": "Decubate is a community-powered investment platform that is bringing the $3 trillion global startup economy on-chain, unlocking liquidity for investors, and accelerating the mass adoption of blockchain technology.", + "explorer": "https://bscscan.com/token/0xEAc9873291dDAcA754EA5642114151f3035c67A2", + "type": "BEP20", + "symbol": "DCB", + "decimals": 18, + "status": "active", + "id": "0xEAc9873291dDAcA754EA5642114151f3035c67A2", + "links": [ + { + "name": "telegram", + "url": "https://t.me/decubate" + }, + { + "name": "x", + "url": "https://x.com/decubate" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/decubate/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEAc9873291dDAcA754EA5642114151f3035c67A2/logo.png b/blockchains/smartchain/assets/0xEAc9873291dDAcA754EA5642114151f3035c67A2/logo.png new file mode 100644 index 00000000..b3dff8c8 Binary files /dev/null and b/blockchains/smartchain/assets/0xEAc9873291dDAcA754EA5642114151f3035c67A2/logo.png differ diff --git a/blockchains/smartchain/assets/0xEB2DFCdB56Cf568B3Da3927C6DE97b0849b329D8/info.json b/blockchains/smartchain/assets/0xEB2DFCdB56Cf568B3Da3927C6DE97b0849b329D8/info.json new file mode 100644 index 00000000..245c2972 --- /dev/null +++ b/blockchains/smartchain/assets/0xEB2DFCdB56Cf568B3Da3927C6DE97b0849b329D8/info.json @@ -0,0 +1,11 @@ +{ + "name": "NFT Classic", + "website": "https://nftclassic.finance/", + "description": "NFT Classic employs functions : Automatic Farm. In each trade , the contract takes tokens from sellers and buyers by 10%.", + "explorer": "https://bscscan.com/token/0xeb2dfcdb56cf568b3da3927c6de97b0849b329d8", + "type": "BEP20", + "symbol": "NFTClassic", + "decimals": 9, + "status": "active", + "id": "0xEB2DFCdB56Cf568B3Da3927C6DE97b0849b329D8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEB2DFCdB56Cf568B3Da3927C6DE97b0849b329D8/logo.png b/blockchains/smartchain/assets/0xEB2DFCdB56Cf568B3Da3927C6DE97b0849b329D8/logo.png new file mode 100644 index 00000000..ec00dff8 Binary files /dev/null and b/blockchains/smartchain/assets/0xEB2DFCdB56Cf568B3Da3927C6DE97b0849b329D8/logo.png differ diff --git a/blockchains/smartchain/assets/0xEB35aCBD23CF9D1C13D276815B9969eFfC5c878f/info.json b/blockchains/smartchain/assets/0xEB35aCBD23CF9D1C13D276815B9969eFfC5c878f/info.json new file mode 100644 index 00000000..895d8526 --- /dev/null +++ b/blockchains/smartchain/assets/0xEB35aCBD23CF9D1C13D276815B9969eFfC5c878f/info.json @@ -0,0 +1,25 @@ +{ + "name": "MiniShibaInu", + "type": "BEP20", + "symbol": "MiniSHIBA", + "decimals": 9, + "website": "https://www.minishibatoken.com/", + "description": "MiniShiba is built by a strong team of crypto experts that aim to build a sustainable, long term token bringing innovative ideas into the crypto space. In addition, we focus on building a strong community of investors that are in it for the long run. Join MiniShiba now and become part of this revolution. ", + "explorer": "https://bscscan.com/token/0xEB35aCBD23CF9D1C13D276815B9969eFfC5c878f", + "status": "active", + "id": "0xEB35aCBD23CF9D1C13D276815B9969eFfC5c878f", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mini-shiba/" + }, + { + "name": "telegram", + "url": "https://t.me/MiniShibaInu" + }, + { + "name": "x", + "url": "https://x.com/MiniShiba_Token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEB35aCBD23CF9D1C13D276815B9969eFfC5c878f/logo.png b/blockchains/smartchain/assets/0xEB35aCBD23CF9D1C13D276815B9969eFfC5c878f/logo.png new file mode 100644 index 00000000..b017743e Binary files /dev/null and b/blockchains/smartchain/assets/0xEB35aCBD23CF9D1C13D276815B9969eFfC5c878f/logo.png differ diff --git a/blockchains/smartchain/assets/0xEC126e20e7cb114dd3BA356100eaca2Cc2921322/info.json b/blockchains/smartchain/assets/0xEC126e20e7cb114dd3BA356100eaca2Cc2921322/info.json new file mode 100644 index 00000000..25b9029a --- /dev/null +++ b/blockchains/smartchain/assets/0xEC126e20e7cb114dd3BA356100eaca2Cc2921322/info.json @@ -0,0 +1,25 @@ +{ + "name": "Solar Energy", + "website": "https://www.solarenergycoin.tech", + "description": "Solar Energy ($SEG) is a deflationary BEP20 token from Binance Smart Chain", + "explorer": "https://bscscan.com/token/0xEC126e20e7cb114dd3BA356100eaca2Cc2921322", + "type": "BEP20", + "symbol": "SEG", + "decimals": 18, + "status": "active", + "id": "0xEC126e20e7cb114dd3BA356100eaca2Cc2921322", + "links": [ + { + "name": "telegram", + "url": "https://t.me/solarenergyfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solar-energy/" + }, + { + "name": "x", + "url": "https://x.com/solarenergy2021" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEC126e20e7cb114dd3BA356100eaca2Cc2921322/logo.png b/blockchains/smartchain/assets/0xEC126e20e7cb114dd3BA356100eaca2Cc2921322/logo.png new file mode 100644 index 00000000..91861f7e Binary files /dev/null and b/blockchains/smartchain/assets/0xEC126e20e7cb114dd3BA356100eaca2Cc2921322/logo.png differ diff --git a/blockchains/smartchain/assets/0xEC43D3153C1f08946fA71cDD3A14Af64fd58f27e/info.json b/blockchains/smartchain/assets/0xEC43D3153C1f08946fA71cDD3A14Af64fd58f27e/info.json new file mode 100644 index 00000000..decac4cd --- /dev/null +++ b/blockchains/smartchain/assets/0xEC43D3153C1f08946fA71cDD3A14Af64fd58f27e/info.json @@ -0,0 +1,33 @@ +{ + "name": "PAWN MY NFT", + "type": "BEP20", + "symbol": "PNFT", + "decimals": 9, + "website": "http://pawnmynft.online/", + "description": "NFT borrowing and lending made easy at your fingertips", + "explorer": "https://bscscan.com/token/0xEC43D3153C1f08946fA71cDD3A14Af64fd58f27e", + "status": "active", + "id": "0xEC43D3153C1f08946fA71cDD3A14Af64fd58f27e", + "links": [ + { + "name": "x", + "url": "https://x.com/PawnMyNFT" + }, + { + "name": "telegram", + "url": "https://t.me/PawnMyNFT" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pawn-my-nft" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pawn-my-nft/" + }, + { + "name": "facebook", + "url": "https://facebook.com/pawnmynft/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEC43D3153C1f08946fA71cDD3A14Af64fd58f27e/logo.png b/blockchains/smartchain/assets/0xEC43D3153C1f08946fA71cDD3A14Af64fd58f27e/logo.png new file mode 100644 index 00000000..9a799b89 Binary files /dev/null and b/blockchains/smartchain/assets/0xEC43D3153C1f08946fA71cDD3A14Af64fd58f27e/logo.png differ diff --git a/blockchains/smartchain/assets/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294/info.json b/blockchains/smartchain/assets/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294/info.json new file mode 100644 index 00000000..322577c2 --- /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 00000000..18809aac 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 00000000..6fbcd95b --- /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 00000000..8bd6718f 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 00000000..31c993a6 --- /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 00000000..a181e631 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 new file mode 100644 index 00000000..ba56f479 --- /dev/null +++ b/blockchains/smartchain/assets/0xECa41281c24451168a37211F0bc2b8645AF45092/info.json @@ -0,0 +1,11 @@ +{ + "name": "TokenPocket Token", + "type": "BEP20", + "symbol": "TPT", + "decimals": 4, + "website": "https://www.tokenpocket.pro/", + "description": "TokenPocket is the world's largest decentralized multi-chain digital asset wallet, covering over 10 million users (including over 3 million monthly active users) in more than 200 countries and regions. As the only token in the TokenPocket ecology, TPT has ecological governance rights. At the same time, TPT circulates in a variety of scenarios as a means of payment and proves the benefits and rights of membership, which opens up a channel in the entire TokenPocket product line.", + "explorer": "https://bscscan.com/token/0xeca41281c24451168a37211f0bc2b8645af45092", + "status": "active", + "id": "0xECa41281c24451168a37211F0bc2b8645AF45092" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xECa41281c24451168a37211F0bc2b8645AF45092/logo.png b/blockchains/smartchain/assets/0xECa41281c24451168a37211F0bc2b8645AF45092/logo.png new file mode 100644 index 00000000..a10842ff Binary files /dev/null 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 00000000..903f85d1 --- /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 00000000..1d051d8d Binary files /dev/null and b/blockchains/smartchain/assets/0xED19B2B301E8a4e18c5DCa374a27e7d209Ba02c9/logo.png differ diff --git a/blockchains/smartchain/assets/0xED1b4BdB29cA09545b9BEdC6c0E854074E121eB3/info.json b/blockchains/smartchain/assets/0xED1b4BdB29cA09545b9BEdC6c0E854074E121eB3/info.json new file mode 100644 index 00000000..bc4dc274 --- /dev/null +++ b/blockchains/smartchain/assets/0xED1b4BdB29cA09545b9BEdC6c0E854074E121eB3/info.json @@ -0,0 +1,11 @@ +{ + "name": "xxxNifty", + "website": "https://xxxNifty.com/", + "description": "xxxNifty is a NSFW Adult Content NFT Marketplace.", + "explorer": "https://bscscan.com/token/0xed1b4bdb29ca09545b9bedc6c0e854074e121eb3", + "type": "BEP20", + "symbol": "NSFW", + "decimals": 18, + "status": "active", + "id": "0xED1b4BdB29cA09545b9BEdC6c0E854074E121eB3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xED1b4BdB29cA09545b9BEdC6c0E854074E121eB3/logo.png b/blockchains/smartchain/assets/0xED1b4BdB29cA09545b9BEdC6c0E854074E121eB3/logo.png new file mode 100644 index 00000000..369675a2 Binary files /dev/null and b/blockchains/smartchain/assets/0xED1b4BdB29cA09545b9BEdC6c0E854074E121eB3/logo.png differ diff --git a/blockchains/smartchain/assets/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586/info.json b/blockchains/smartchain/assets/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586/info.json new file mode 100644 index 00000000..f969f729 --- /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 00000000..bddcf9c9 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 00000000..69f71a8d --- /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 00000000..4a67b3a0 Binary files /dev/null and b/blockchains/smartchain/assets/0xEDB3124e96c64C177Eb709CbC64F9977dB40Ea74/logo.png differ diff --git a/blockchains/smartchain/assets/0xEDd822B00c48D8A1C416ee17507bEFC2ad71d8c4/info.json b/blockchains/smartchain/assets/0xEDd822B00c48D8A1C416ee17507bEFC2ad71d8c4/info.json new file mode 100644 index 00000000..51df6046 --- /dev/null +++ b/blockchains/smartchain/assets/0xEDd822B00c48D8A1C416ee17507bEFC2ad71d8c4/info.json @@ -0,0 +1,11 @@ +{ + "name": "My Shiba Inu", + "website": "https://shiba.limited/", + "description": "Yield farm Shiba on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xEDd822B00c48D8A1C416ee17507bEFC2ad71d8c4", + "type": "BEP20", + "symbol": "Shiba", + "decimals": 8, + "status": "active", + "id": "0xEDd822B00c48D8A1C416ee17507bEFC2ad71d8c4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEDd822B00c48D8A1C416ee17507bEFC2ad71d8c4/logo.png b/blockchains/smartchain/assets/0xEDd822B00c48D8A1C416ee17507bEFC2ad71d8c4/logo.png new file mode 100644 index 00000000..21174c56 Binary files /dev/null and b/blockchains/smartchain/assets/0xEDd822B00c48D8A1C416ee17507bEFC2ad71d8c4/logo.png differ diff --git a/blockchains/smartchain/assets/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/info.json b/blockchains/smartchain/assets/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/info.json new file mode 100644 index 00000000..f6b341de --- /dev/null +++ b/blockchains/smartchain/assets/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/info.json @@ -0,0 +1,36 @@ +{ + "name": "HyperChainX", + "type": "BEP20", + "symbol": "HYPER", + "decimals": 7, + "website": "https://hyperchainx.com", + "description": "HyperChain X is revolutionizing the gaming industry with its all-in-one platform specifically designed for gamers. Our platform offers a range of features including buy-in tournaments, 1 vs 1 high stake battles, and the ability for esport teams to create their own leagues. We also have a live streaming feature and an NFT marketplace/launchpad that is unrivaled in the industry.", + "explorer": "https://bscscan.com/token/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28", + "status": "active", + "id": "0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28", + "links": [ + { + "name": "x", + "url": "https://x.com/HyperchainX" + }, + { + "name": "telegram", + "url": "https://t.me/hyperchainx" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hyperchainx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hyperchainx" + }, + { + "name": "medium", + "url": "https://medium.com/@hyperchainx" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/logo.png b/blockchains/smartchain/assets/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/logo.png new file mode 100644 index 00000000..6248d059 Binary files /dev/null and b/blockchains/smartchain/assets/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/logo.png differ diff --git a/blockchains/smartchain/assets/0xEE738a9e5FB78c24D26ceCD30389ED977C38D0Ca/info.json b/blockchains/smartchain/assets/0xEE738a9e5FB78c24D26ceCD30389ED977C38D0Ca/info.json new file mode 100644 index 00000000..9b2115d3 --- /dev/null +++ b/blockchains/smartchain/assets/0xEE738a9e5FB78c24D26ceCD30389ED977C38D0Ca/info.json @@ -0,0 +1,11 @@ +{ + "name": "Fair Safe", + "website": "https://fairsafe.finance/", + "description": "A deflationary, auto-staking, community owned token.", + "explorer": "https://bscscan.com/token/0xEE738a9e5FB78c24D26ceCD30389ED977C38D0Ca", + "type": "BEP20", + "symbol": "FSAFE", + "decimals": 9, + "status": "active", + "id": "0xEE738a9e5FB78c24D26ceCD30389ED977C38D0Ca" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEE738a9e5FB78c24D26ceCD30389ED977C38D0Ca/logo.png b/blockchains/smartchain/assets/0xEE738a9e5FB78c24D26ceCD30389ED977C38D0Ca/logo.png new file mode 100644 index 00000000..918b4e75 Binary files /dev/null and b/blockchains/smartchain/assets/0xEE738a9e5FB78c24D26ceCD30389ED977C38D0Ca/logo.png differ diff --git a/blockchains/smartchain/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json b/blockchains/smartchain/assets/0xEEdb0273c5Af792745180e9fF568cD01550fFA13/info.json new file mode 100644 index 00000000..c4bf7ada --- /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 00000000..7051dcb4 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 new file mode 100644 index 00000000..685f58e6 --- /dev/null +++ b/blockchains/smartchain/assets/0xEF2ec90e0b8D4CdFdB090989EA1Bc663F0D680BF/info.json @@ -0,0 +1,21 @@ +{ + "name": "Orfano", + "website": "https://orfano.io", + "description": "Orfano is a charity focused token on the Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xEF2ec90e0b8D4CdFdB090989EA1Bc663F0D680BF", + "type": "BEP20", + "symbol": "ORF", + "decimals": 9, + "status": "active", + "id": "0xEF2ec90e0b8D4CdFdB090989EA1Bc663F0D680BF", + "links": [ + { + "name": "x", + "url": "https://x.com/orfanoBSC" + }, + { + "name": "telegram", + "url": "https://t.me/OrfanoToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEF2ec90e0b8D4CdFdB090989EA1Bc663F0D680BF/logo.png b/blockchains/smartchain/assets/0xEF2ec90e0b8D4CdFdB090989EA1Bc663F0D680BF/logo.png new file mode 100644 index 00000000..72a6bc29 Binary files /dev/null and b/blockchains/smartchain/assets/0xEF2ec90e0b8D4CdFdB090989EA1Bc663F0D680BF/logo.png differ diff --git a/blockchains/smartchain/assets/0xEF6d459FE81C3Ed53d292c936b2df5a8084975De/info.json b/blockchains/smartchain/assets/0xEF6d459FE81C3Ed53d292c936b2df5a8084975De/info.json new file mode 100644 index 00000000..edb9313c --- /dev/null +++ b/blockchains/smartchain/assets/0xEF6d459FE81C3Ed53d292c936b2df5a8084975De/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream Tether USD", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0xEF6d459FE81C3Ed53d292c936b2df5a8084975De", + "type": "BEP20", + "symbol": "crUSDT", + "decimals": 8, + "status": "active", + "id": "0xEF6d459FE81C3Ed53d292c936b2df5a8084975De", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEF6d459FE81C3Ed53d292c936b2df5a8084975De/logo.png b/blockchains/smartchain/assets/0xEF6d459FE81C3Ed53d292c936b2df5a8084975De/logo.png new file mode 100644 index 00000000..1f70c93a Binary files /dev/null and b/blockchains/smartchain/assets/0xEF6d459FE81C3Ed53d292c936b2df5a8084975De/logo.png differ diff --git a/blockchains/smartchain/assets/0xEFEa4829b1bc90658784f15116C2dFD0E0929B0d/info.json b/blockchains/smartchain/assets/0xEFEa4829b1bc90658784f15116C2dFD0E0929B0d/info.json new file mode 100644 index 00000000..8c906349 --- /dev/null +++ b/blockchains/smartchain/assets/0xEFEa4829b1bc90658784f15116C2dFD0E0929B0d/info.json @@ -0,0 +1,29 @@ +{ + "name": "Baby DeFido", + "type": "BEP20", + "symbol": "BabyDeFido", + "decimals": 9, + "website": "https://www.babydefido.finance/", + "description": "BabyDeFido is a memecoin based on Coinbase's Dog mascot DeFido, a french dogge. BabyDeFido is a low tax coin with reflections in native tokens, with staking and an Ethereum bridge along the road.", + "explorer": "https://bscscan.com/token/0xEFEa4829b1bc90658784f15116C2dFD0E0929B0d", + "status": "active", + "id": "0xEFEa4829b1bc90658784f15116C2dFD0E0929B0d", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BabyDeFido_BSC" + }, + { + "name": "x", + "url": "https://x.com/Baby_Defido" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-defido/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/baby-defido" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEFEa4829b1bc90658784f15116C2dFD0E0929B0d/logo.png b/blockchains/smartchain/assets/0xEFEa4829b1bc90658784f15116C2dFD0E0929B0d/logo.png new file mode 100644 index 00000000..39df617b Binary files /dev/null and b/blockchains/smartchain/assets/0xEFEa4829b1bc90658784f15116C2dFD0E0929B0d/logo.png differ diff --git a/blockchains/smartchain/assets/0xEFbA8b41e3495ad52258DFe916199Dc643F99dA2/info.json b/blockchains/smartchain/assets/0xEFbA8b41e3495ad52258DFe916199Dc643F99dA2/info.json new file mode 100644 index 00000000..c34f64cc --- /dev/null +++ b/blockchains/smartchain/assets/0xEFbA8b41e3495ad52258DFe916199Dc643F99dA2/info.json @@ -0,0 +1,11 @@ +{ + "name": "SWASS.Finance", + "website": "https://swass.finance", + "description": "SWASS is a revolutionary tokenomics access token for DApp's, web services, and more.", + "explorer": "https://bscscan.com/token/0xefba8b41e3495ad52258dfe916199dc643f99da2", + "type": "BEP20", + "symbol": "SWASS", + "decimals": 9, + "status": "active", + "id": "0xEFbA8b41e3495ad52258DFe916199Dc643F99dA2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEFbA8b41e3495ad52258DFe916199Dc643F99dA2/logo.png b/blockchains/smartchain/assets/0xEFbA8b41e3495ad52258DFe916199Dc643F99dA2/logo.png new file mode 100644 index 00000000..6e8f3fde Binary files /dev/null and b/blockchains/smartchain/assets/0xEFbA8b41e3495ad52258DFe916199Dc643F99dA2/logo.png differ diff --git a/blockchains/smartchain/assets/0xEFf13653EEb698Ba291B8BfF7AAaaB648132c2D7/info.json b/blockchains/smartchain/assets/0xEFf13653EEb698Ba291B8BfF7AAaaB648132c2D7/info.json new file mode 100644 index 00000000..cb19e48a --- /dev/null +++ b/blockchains/smartchain/assets/0xEFf13653EEb698Ba291B8BfF7AAaaB648132c2D7/info.json @@ -0,0 +1,25 @@ +{ + "name": "BNB Shinobi", + "website": "https://bnbshinobi.com/", + "description": "BNB Shinobi is the all encompassing BSC reward coin, blockchain arcade, & blockchain metaverse.", + "explorer": "https://bscscan.com/token/0xeff13653eeb698ba291b8bff7aaaab648132c2d7", + "type": "BEP20", + "symbol": "CHAKRA", + "decimals": 9, + "status": "active", + "id": "0xEFf13653EEb698Ba291B8BfF7AAaaB648132c2D7", + "links": [ + { + "name": "github", + "url": "https://github.com/Bnbshinobi/" + }, + { + "name": "x", + "url": "https://x.com/BnbShinobi" + }, + { + "name": "telegram", + "url": "https://t.me/bnbshinobi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEFf13653EEb698Ba291B8BfF7AAaaB648132c2D7/logo.png b/blockchains/smartchain/assets/0xEFf13653EEb698Ba291B8BfF7AAaaB648132c2D7/logo.png new file mode 100644 index 00000000..1b2d3237 Binary files /dev/null and b/blockchains/smartchain/assets/0xEFf13653EEb698Ba291B8BfF7AAaaB648132c2D7/logo.png differ diff --git a/blockchains/smartchain/assets/0xEa8eACCe22bbB89709482c0100E75e7Ab90f53f4/info.json b/blockchains/smartchain/assets/0xEa8eACCe22bbB89709482c0100E75e7Ab90f53f4/info.json new file mode 100644 index 00000000..e4d0abcb --- /dev/null +++ b/blockchains/smartchain/assets/0xEa8eACCe22bbB89709482c0100E75e7Ab90f53f4/info.json @@ -0,0 +1,11 @@ +{ + "name": "TheChadToken", + "type": "BEP20", + "symbol": "CHAD", + "decimals": 9, + "website": "https://www.thechadtoken.com/", + "description": "Chad is the greatest Binance Smart Chain meme token ever created. You already know this. That’s why you’re buying it.", + "explorer": "https://bscscan.com/token/0xEa8eACCe22bbB89709482c0100E75e7Ab90f53f4", + "status": "active", + "id": "0xEa8eACCe22bbB89709482c0100E75e7Ab90f53f4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEa8eACCe22bbB89709482c0100E75e7Ab90f53f4/logo.png b/blockchains/smartchain/assets/0xEa8eACCe22bbB89709482c0100E75e7Ab90f53f4/logo.png new file mode 100644 index 00000000..b14d928d Binary files /dev/null and b/blockchains/smartchain/assets/0xEa8eACCe22bbB89709482c0100E75e7Ab90f53f4/logo.png differ diff --git a/blockchains/smartchain/assets/0xEae2BBBC0000F605bD37A02c7fE346a3b68B03eb/info.json b/blockchains/smartchain/assets/0xEae2BBBC0000F605bD37A02c7fE346a3b68B03eb/info.json new file mode 100644 index 00000000..b4612cc9 --- /dev/null +++ b/blockchains/smartchain/assets/0xEae2BBBC0000F605bD37A02c7fE346a3b68B03eb/info.json @@ -0,0 +1,33 @@ +{ + "name": "CRIR MSH", + "type": "BEP20", + "symbol": "MSH", + "decimals": 18, + "website": "https://www.crirmsh.com", + "description": "A Fast & Secure Cryptocurrency and Multi chain DEX.", + "explorer": "https://bscscan.com/token/0xeae2bbbc0000f605bd37a02c7fe346a3b68b03eb", + "status": "active", + "id": "0xEae2BBBC0000F605bD37A02c7fE346a3b68B03eb", + "links": [ + { + "name": "x", + "url": "https://x.com/CRIR_MSH" + }, + { + "name": "github", + "url": "https://github.com/crirmsh" + }, + { + "name": "telegram", + "url": "https://t.me/MSH_WORLD_GROUP" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/crir-msh" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crir-msh" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEae2BBBC0000F605bD37A02c7fE346a3b68B03eb/logo.png b/blockchains/smartchain/assets/0xEae2BBBC0000F605bD37A02c7fE346a3b68B03eb/logo.png new file mode 100644 index 00000000..076195af Binary files /dev/null and b/blockchains/smartchain/assets/0xEae2BBBC0000F605bD37A02c7fE346a3b68B03eb/logo.png differ diff --git a/blockchains/smartchain/assets/0xEc3D04C82aF8C4b97Ecd058D543c2c0673ca72dC/info.json b/blockchains/smartchain/assets/0xEc3D04C82aF8C4b97Ecd058D543c2c0673ca72dC/info.json new file mode 100644 index 00000000..07dde7e7 --- /dev/null +++ b/blockchains/smartchain/assets/0xEc3D04C82aF8C4b97Ecd058D543c2c0673ca72dC/info.json @@ -0,0 +1,48 @@ +{ + "name": "Baby Doge Money Maker", + "website": "https://babydogemoneymaker.com/", + "description": "The One And Only Doge And Lucky Cat Hybrid In Crypto World!", + "explorer": "https://bscscan.com/token/0xEc3D04C82aF8C4b97Ecd058D543c2c0673ca72dC", + "type": "BEP20", + "symbol": "BABYDOGEMM", + "decimals": 8, + "status": "active", + "id": "0xEc3D04C82aF8C4b97Ecd058D543c2c0673ca72dC", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/BabyDogeMoneyMaker" + }, + { + "name": "x", + "url": "https://x.com/BabyDMoneyMaker" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BabyDogeMoneyMaker/" + }, + { + "name": "facebook", + "url": "https://facebook.com/BABYDMONEYMAKER/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCcoVgeOmjqHj3NG_tsnHc_w" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-doge-money-maker/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/baby-doge-money-maker" + }, + { + "name": "whitepaper", + "url": "https://babydogemoneymaker.com/assets/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEc3D04C82aF8C4b97Ecd058D543c2c0673ca72dC/logo.png b/blockchains/smartchain/assets/0xEc3D04C82aF8C4b97Ecd058D543c2c0673ca72dC/logo.png new file mode 100644 index 00000000..153a47de Binary files /dev/null and b/blockchains/smartchain/assets/0xEc3D04C82aF8C4b97Ecd058D543c2c0673ca72dC/logo.png differ diff --git a/blockchains/smartchain/assets/0xEc7d0327fC48ef7EfA975A4e3327F28576C3ef96/info.json b/blockchains/smartchain/assets/0xEc7d0327fC48ef7EfA975A4e3327F28576C3ef96/info.json new file mode 100644 index 00000000..60b73202 --- /dev/null +++ b/blockchains/smartchain/assets/0xEc7d0327fC48ef7EfA975A4e3327F28576C3ef96/info.json @@ -0,0 +1,25 @@ +{ + "name": "Moon Protocol", + "website": "https://moonprotocol.finance/", + "description": "The Moon Protocol Bridge objective is to provide a tool that connects every single DeFi platform. Thanks to Moon Protocol Bridge, you’ll be able to manage and trade with ease, no matter which protocol your favorite asset is using.", + "explorer": "https://bscscan.com/token/0xEc7d0327fC48ef7EfA975A4e3327F28576C3ef96", + "type": "BEP20", + "symbol": "MPF", + "decimals": 0, + "status": "active", + "id": "0xEc7d0327fC48ef7EfA975A4e3327F28576C3ef96", + "links": [ + { + "name": "x", + "url": "https://x.com/ProtocolMoon" + }, + { + "name": "telegram", + "url": "https://t.me/MoonProtocolGroupTG" + }, + { + "name": "telegram_news", + "url": "https://t.me/MoonProtocolann" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEc7d0327fC48ef7EfA975A4e3327F28576C3ef96/logo.png b/blockchains/smartchain/assets/0xEc7d0327fC48ef7EfA975A4e3327F28576C3ef96/logo.png new file mode 100644 index 00000000..f778892c Binary files /dev/null and b/blockchains/smartchain/assets/0xEc7d0327fC48ef7EfA975A4e3327F28576C3ef96/logo.png differ diff --git a/blockchains/smartchain/assets/0xEcCA434e838eEbE30E561d0Ec3E3016efd1d340A/info.json b/blockchains/smartchain/assets/0xEcCA434e838eEbE30E561d0Ec3E3016efd1d340A/info.json new file mode 100644 index 00000000..594ccfb4 --- /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 00000000..e8e324bf 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 00000000..9330a53f --- /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 00000000..aa527486 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 00000000..5f548719 --- /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 00000000..c9ccc6c6 Binary files /dev/null and b/blockchains/smartchain/assets/0xEd2a500eB2b66679e0BbD76e51a60049aE5f3271/logo.png differ diff --git a/blockchains/smartchain/assets/0xEd438051437c22A9Ef249B68c7E292435fE8B858/info.json b/blockchains/smartchain/assets/0xEd438051437c22A9Ef249B68c7E292435fE8B858/info.json new file mode 100644 index 00000000..52c6d36c --- /dev/null +++ b/blockchains/smartchain/assets/0xEd438051437c22A9Ef249B68c7E292435fE8B858/info.json @@ -0,0 +1,14 @@ +{ + "name": "Mooni", + "type": "BEP20", + "symbol": "MOONI", + "decimals": 9, + "website": "https://moonidefi.com", + "description": "Mooni(MOONI) token has had ownership renounced by the development team. MOONI DeFi is the incubator based on Binance Smart chain with innovative product launches, where community gets rewarded in ecosystem tokens.", + "explorer": "https://bscscan.com/token/0xEd438051437c22A9Ef249B68c7E292435fE8B858", + "status": "active", + "id": "0xEd438051437c22A9Ef249B68c7E292435fE8B858", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEd438051437c22A9Ef249B68c7E292435fE8B858/logo.png b/blockchains/smartchain/assets/0xEd438051437c22A9Ef249B68c7E292435fE8B858/logo.png new file mode 100644 index 00000000..75a03c2e Binary files /dev/null and b/blockchains/smartchain/assets/0xEd438051437c22A9Ef249B68c7E292435fE8B858/logo.png differ diff --git a/blockchains/smartchain/assets/0xEd44623b06616BCceC876617c124F5461Bd5f79B/info.json b/blockchains/smartchain/assets/0xEd44623b06616BCceC876617c124F5461Bd5f79B/info.json new file mode 100644 index 00000000..adc50011 --- /dev/null +++ b/blockchains/smartchain/assets/0xEd44623b06616BCceC876617c124F5461Bd5f79B/info.json @@ -0,0 +1,45 @@ +{ + "name": "BFK WARZONE", + "type": "BEP20", + "symbol": "BFK", + "decimals": 9, + "website": "https://bfkwarzone.com", + "description": "Battle Fort Knox - BFK is a complete gaming ecosystem with our native token $BFK, our NFT Marketplace, and our P2E 2D shooter coming to iOS, Android, and Windows.", + "explorer": "https://bscscan.com/token/0xEd44623b06616BCceC876617c124F5461Bd5f79B", + "status": "active", + "id": "0xEd44623b06616BCceC876617c124F5461Bd5f79B", + "links": [ + { + "name": "x", + "url": "https://x.com/bfkwarzone" + }, + { + "name": "github", + "url": "https://github.com/bfkwarzone" + }, + { + "name": "telegram", + "url": "https://t.me/bfkwarzone" + }, + { + "name": "telegram_news", + "url": "https://t.me/bfkannouncements" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bfk-warzone" + }, + { + "name": "facebook", + "url": "https://facebook.com/BFK-Warzone-113049517816470" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.bfkwarzone.app/whitepaper.pdf" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xed44623b06616bccec876617c124f5461bd5f79b#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEd44623b06616BCceC876617c124F5461Bd5f79B/logo.png b/blockchains/smartchain/assets/0xEd44623b06616BCceC876617c124F5461Bd5f79B/logo.png new file mode 100644 index 00000000..acd02628 Binary files /dev/null and b/blockchains/smartchain/assets/0xEd44623b06616BCceC876617c124F5461Bd5f79B/logo.png differ diff --git a/blockchains/smartchain/assets/0xEd579847e45B0c48cfd608Da829073B2F7e65Cf0/info.json b/blockchains/smartchain/assets/0xEd579847e45B0c48cfd608Da829073B2F7e65Cf0/info.json new file mode 100644 index 00000000..be3be1a0 --- /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 00000000..e2b95e78 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 new file mode 100644 index 00000000..57dad019 --- /dev/null +++ b/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/info.json @@ -0,0 +1,38 @@ +{ + "name": "Prosper", + "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": "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 new file mode 100644 index 00000000..a42ef003 Binary files /dev/null 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 00000000..7fe8ae22 --- /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 00000000..8bf17512 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 new file mode 100644 index 00000000..36a94152 --- /dev/null +++ b/blockchains/smartchain/assets/0xEda3866f07566d9379a91A07F8D62e19C03183e0/info.json @@ -0,0 +1,29 @@ +{ + "name": "HashBit", + "type": "BEP20", + "symbol": "HBIT", + "decimals": 18, + "website": "https://hashbit.org/", + "description": "HashBit (HBIT) is a highly scalable peer-to-peer digital currency that enables industry-leading transaction speeds with negligible fees. HashBit-Peg HBIT Token main goal is to make it possible to send and receive payments through the most popular messaging apps.", + "explorer": "https://bscscan.com/token/0xEda3866f07566d9379a91A07F8D62e19C03183e0", + "status": "active", + "id": "0xEda3866f07566d9379a91A07F8D62e19C03183e0", + "links": [ + { + "name": "x", + "url": "https://x.com/HashBitorg" + }, + { + "name": "telegram", + "url": "https://t.me/hashbitofficial/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hashbit-blockchain/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/hashbit/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEda3866f07566d9379a91A07F8D62e19C03183e0/logo.png b/blockchains/smartchain/assets/0xEda3866f07566d9379a91A07F8D62e19C03183e0/logo.png new file mode 100644 index 00000000..3544e757 Binary files /dev/null and b/blockchains/smartchain/assets/0xEda3866f07566d9379a91A07F8D62e19C03183e0/logo.png differ diff --git a/blockchains/smartchain/assets/0xEda6Af1212893f5605508287b046194593c87777/info.json b/blockchains/smartchain/assets/0xEda6Af1212893f5605508287b046194593c87777/info.json new file mode 100644 index 00000000..7317e958 --- /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 new file mode 100644 index 00000000..cfddd27c --- /dev/null +++ b/blockchains/smartchain/assets/0xEe0736c93E98B2e9fbf11f47dB19E7B68Db71E94/info.json @@ -0,0 +1,36 @@ +{ + "name": "FarmerDoge", + "type": "BEP20", + "symbol": "CROP", + "decimals": 18, + "website": "https://www.farmerdoge.net/", + "description": "CROP is the world's first multi-currency rewards token. This allows us to farm any cryptocurrency on the Binance smart chain. Buy & Hold CROP and let the teams crypto analysts build your portfolio with both top 200 cryptocurrencies & newly launched moonshots.", + "explorer": "https://bscscan.com/token/0xEe0736c93E98B2e9fbf11f47dB19E7B68Db71E94", + "status": "active", + "id": "0xEe0736c93E98B2e9fbf11f47dB19E7B68Db71E94", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/farmerdoge/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/farmerdoge-v3" + }, + { + "name": "x", + "url": "https://x.com/FarmerDogeBSC?t=GNh1BY1qXDmD69TqtZwuCQ&s=09" + }, + { + "name": "telegram", + "url": "https://t.me/FarmerDogeCrypto" + }, + { + "name": "facebook", + "url": "https://facebook.com/FarmerDoge-101777302236101/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEe0736c93E98B2e9fbf11f47dB19E7B68Db71E94/logo.png b/blockchains/smartchain/assets/0xEe0736c93E98B2e9fbf11f47dB19E7B68Db71E94/logo.png new file mode 100644 index 00000000..f3c761f6 Binary files /dev/null and b/blockchains/smartchain/assets/0xEe0736c93E98B2e9fbf11f47dB19E7B68Db71E94/logo.png differ diff --git a/blockchains/smartchain/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/info.json b/blockchains/smartchain/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/info.json new file mode 100644 index 00000000..2aa251de --- /dev/null +++ b/blockchains/smartchain/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/info.json @@ -0,0 +1,11 @@ +{ + "name": "O3 Swap", + "type": "BEP20", + "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://bscscan.com/token/0xEe9801669C6138E84bD50dEB500827b776777d28", + "status": "active", + "id": "0xEe9801669C6138E84bD50dEB500827b776777d28" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/logo.png b/blockchains/smartchain/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/logo.png new file mode 100644 index 00000000..8327b516 Binary files /dev/null and b/blockchains/smartchain/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/logo.png differ diff --git a/blockchains/smartchain/assets/0xEf11aB854b475Bd0c5Db37f6bFFAB443219d656d/info.json b/blockchains/smartchain/assets/0xEf11aB854b475Bd0c5Db37f6bFFAB443219d656d/info.json new file mode 100644 index 00000000..e75d7169 --- /dev/null +++ b/blockchains/smartchain/assets/0xEf11aB854b475Bd0c5Db37f6bFFAB443219d656d/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEG Wrapped USDT", + "symbol": "fUSDT", + "type": "BEP20", + "decimals": 18, + "description": "FEG Wrapped USDT", + "website": "https://fegtoken.com", + "explorer": "https://bscscan.com/token/0xef11ab854b475bd0c5db37f6bffab443219d656d", + "status": "active", + "id": "0xEf11aB854b475Bd0c5Db37f6bFFAB443219d656d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEf11aB854b475Bd0c5Db37f6bFFAB443219d656d/logo.png b/blockchains/smartchain/assets/0xEf11aB854b475Bd0c5Db37f6bFFAB443219d656d/logo.png new file mode 100644 index 00000000..7df0f296 Binary files /dev/null and b/blockchains/smartchain/assets/0xEf11aB854b475Bd0c5Db37f6bFFAB443219d656d/logo.png differ diff --git a/blockchains/smartchain/assets/0xEf80743f78d98FC2B47a2253B293152ce8B879ba/info.json b/blockchains/smartchain/assets/0xEf80743f78d98FC2B47a2253B293152ce8B879ba/info.json new file mode 100644 index 00000000..67e4c7ec --- /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 00000000..3537e046 Binary files /dev/null and b/blockchains/smartchain/assets/0xEf80743f78d98FC2B47a2253B293152ce8B879ba/logo.png differ diff --git a/blockchains/smartchain/assets/0xEfd39883aDb365fbf591bC0d624c9e1b12AEA35f/info.json b/blockchains/smartchain/assets/0xEfd39883aDb365fbf591bC0d624c9e1b12AEA35f/info.json new file mode 100644 index 00000000..e9a936ce --- /dev/null +++ b/blockchains/smartchain/assets/0xEfd39883aDb365fbf591bC0d624c9e1b12AEA35f/info.json @@ -0,0 +1,11 @@ +{ + "name": "DinkDoink", + "website": "https://dinkdoink.net", + "description": "DinkDoink is a cryptocurrency bridging the gap between entertainment and crypto!", + "explorer": "https://bscscan.com/token/0xEfd39883aDb365fbf591bC0d624c9e1b12AEA35f", + "type": "BEP20", + "symbol": "DINK", + "decimals": 9, + "status": "active", + "id": "0xEfd39883aDb365fbf591bC0d624c9e1b12AEA35f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEfd39883aDb365fbf591bC0d624c9e1b12AEA35f/logo.png b/blockchains/smartchain/assets/0xEfd39883aDb365fbf591bC0d624c9e1b12AEA35f/logo.png new file mode 100644 index 00000000..00d898db Binary files /dev/null and b/blockchains/smartchain/assets/0xEfd39883aDb365fbf591bC0d624c9e1b12AEA35f/logo.png differ diff --git a/blockchains/smartchain/assets/0xF017E2773e4ee0590C81D79ccbcF1B2De1D22877/info.json b/blockchains/smartchain/assets/0xF017E2773e4ee0590C81D79ccbcF1B2De1D22877/info.json new file mode 100644 index 00000000..9c909800 --- /dev/null +++ b/blockchains/smartchain/assets/0xF017E2773e4ee0590C81D79ccbcF1B2De1D22877/info.json @@ -0,0 +1,29 @@ +{ + "name": "SAFEMOONCASH", + "website": "https://safemooncash.org", + "description": "Safemoon Cash is – in short – a rug proof, ownership renounced community driven project that will bring rivalry to Safemoon with positive vibes only.", + "explorer": "https://bscscan.com/token/0xF017E2773e4ee0590C81D79ccbcF1B2De1D22877", + "type": "BEP20", + "symbol": "SAFEMOONCASH", + "decimals": 9, + "status": "active", + "id": "0xF017E2773e4ee0590C81D79ccbcF1B2De1D22877", + "links": [ + { + "name": "x", + "url": "https://x.com/safemooncash" + }, + { + "name": "telegram", + "url": "https://t.me/safemooncash" + }, + { + "name": "discord", + "url": "https://discord.com/invite/fDp6pQ4Hbd" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SAFEMOONCASHCommunity/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF017E2773e4ee0590C81D79ccbcF1B2De1D22877/logo.png b/blockchains/smartchain/assets/0xF017E2773e4ee0590C81D79ccbcF1B2De1D22877/logo.png new file mode 100644 index 00000000..9b9e7a1e Binary files /dev/null and b/blockchains/smartchain/assets/0xF017E2773e4ee0590C81D79ccbcF1B2De1D22877/logo.png differ diff --git a/blockchains/smartchain/assets/0xF02b31b0B6dCabd579e41A0250288608FA43F898/info.json b/blockchains/smartchain/assets/0xF02b31b0B6dCabd579e41A0250288608FA43F898/info.json new file mode 100644 index 00000000..e87d5693 --- /dev/null +++ b/blockchains/smartchain/assets/0xF02b31b0B6dCabd579e41A0250288608FA43F898/info.json @@ -0,0 +1,32 @@ +{ + "id": "0xF02b31b0B6dCabd579e41A0250288608FA43F898", + "name": "Athos Meta", + "website": "https://athos-meta.io/", + "description": "Athos Meta is a decentralized blockchain and orients itself to be the first ecosystem owning 5 spectacular areas: Auto Bot Trade, Farming, Staking, Gaming and Betting that brings maximum profit to investors and holders", + "explorer": "https://bscscan.com/token/0xF02b31b0B6dCabd579e41A0250288608FA43F898", + "symbol": "ATM", + "type": "BEP20", + "decimals": 18, + "status": "active", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/AthosMeta" + }, + { + "name": "x", + "url": "https://x.com/AthosMeta" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/AthosMeta" + }, + { + "name": "whitepaper", + "url": "https://athos-meta.io/Whitepaper-EN.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF02b31b0B6dCabd579e41A0250288608FA43F898/logo.png b/blockchains/smartchain/assets/0xF02b31b0B6dCabd579e41A0250288608FA43F898/logo.png new file mode 100644 index 00000000..f326efce Binary files /dev/null and b/blockchains/smartchain/assets/0xF02b31b0B6dCabd579e41A0250288608FA43F898/logo.png differ diff --git a/blockchains/smartchain/assets/0xF033e18BA0a37B6C3FFa17ff639a7b00Dc5d323e/info.json b/blockchains/smartchain/assets/0xF033e18BA0a37B6C3FFa17ff639a7b00Dc5d323e/info.json new file mode 100644 index 00000000..a5855ec8 --- /dev/null +++ b/blockchains/smartchain/assets/0xF033e18BA0a37B6C3FFa17ff639a7b00Dc5d323e/info.json @@ -0,0 +1,11 @@ +{ + "name": "ChiwawaSwap", + "website": "https://chiwawaswap.site", + "description": "Chiwawa Swap is for strategists, building the people’s gateway to financial freedom on DEFI to find yield-bearing opportunities.", + "explorer": "https://bscscan.com/token/0xF033e18BA0a37B6C3FFa17ff639a7b00Dc5d323e", + "type": "BEP20", + "symbol": "CHIWAWA", + "decimals": 0, + "status": "active", + "id": "0xF033e18BA0a37B6C3FFa17ff639a7b00Dc5d323e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF033e18BA0a37B6C3FFa17ff639a7b00Dc5d323e/logo.png b/blockchains/smartchain/assets/0xF033e18BA0a37B6C3FFa17ff639a7b00Dc5d323e/logo.png new file mode 100644 index 00000000..c269cf04 Binary files /dev/null and b/blockchains/smartchain/assets/0xF033e18BA0a37B6C3FFa17ff639a7b00Dc5d323e/logo.png differ diff --git a/blockchains/smartchain/assets/0xF03E02AcbC5eb22de027eA4F59235966F5810D4f/info.json b/blockchains/smartchain/assets/0xF03E02AcbC5eb22de027eA4F59235966F5810D4f/info.json new file mode 100644 index 00000000..f3fa8abc --- /dev/null +++ b/blockchains/smartchain/assets/0xF03E02AcbC5eb22de027eA4F59235966F5810D4f/info.json @@ -0,0 +1,24 @@ +{ + "name": "Pi INU Token", + "type": "BEP20", + "symbol": "PINU", + "decimals": 18, + "description": "Pi network concept INU Token", + "website": "https://pi-inu.com", + "explorer": "https://bscscan.com/token/0xF03E02AcbC5eb22de027eA4F59235966F5810D4f", + "id": "0xF03E02AcbC5eb22de027eA4F59235966F5810D4f", + "status": "active", + "tags": [ + "memes" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/Pi_INU_Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pi-inu" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF03E02AcbC5eb22de027eA4F59235966F5810D4f/logo.png b/blockchains/smartchain/assets/0xF03E02AcbC5eb22de027eA4F59235966F5810D4f/logo.png new file mode 100644 index 00000000..1528a945 Binary files /dev/null and b/blockchains/smartchain/assets/0xF03E02AcbC5eb22de027eA4F59235966F5810D4f/logo.png differ diff --git a/blockchains/smartchain/assets/0xF078580015Cdfaa849BDAd8B38e72F5803C316c4/info.json b/blockchains/smartchain/assets/0xF078580015Cdfaa849BDAd8B38e72F5803C316c4/info.json new file mode 100644 index 00000000..dfe7aafd --- /dev/null +++ b/blockchains/smartchain/assets/0xF078580015Cdfaa849BDAd8B38e72F5803C316c4/info.json @@ -0,0 +1,32 @@ +{ + "name": "Son of Doge", + "type": "BEP20", + "symbol": "SOD", + "decimals": 9, + "website": "https://www.sonofdogev2.com/", + "description": "SON aims to build a sustainable, long term token that will drive an NFT market place.", + "explorer": "https://bscscan.com/token/0xF078580015Cdfaa849BDAd8B38e72F5803C316c4", + "status": "active", + "id": "0xF078580015Cdfaa849BDAd8B38e72F5803C316c4", + "links": [ + { + "name": "x", + "url": "https://x.com/Sonofdoge_" + }, + { + "name": "telegram", + "url": "https://t.me/SonOfDoge" + }, + { + "name": "facebook", + "url": "https://facebook.com/SonOfDoge/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCLxITJiksMrsUYvRGMTES9g?app=desktop" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF078580015Cdfaa849BDAd8B38e72F5803C316c4/logo.png b/blockchains/smartchain/assets/0xF078580015Cdfaa849BDAd8B38e72F5803C316c4/logo.png new file mode 100644 index 00000000..fffc9371 Binary files /dev/null and b/blockchains/smartchain/assets/0xF078580015Cdfaa849BDAd8B38e72F5803C316c4/logo.png differ diff --git a/blockchains/smartchain/assets/0xF0A8EcBCE8caADB7A07d1FcD0f87Ae1Bd688dF43/info.json b/blockchains/smartchain/assets/0xF0A8EcBCE8caADB7A07d1FcD0f87Ae1Bd688dF43/info.json new file mode 100644 index 00000000..c7af44a2 --- /dev/null +++ b/blockchains/smartchain/assets/0xF0A8EcBCE8caADB7A07d1FcD0f87Ae1Bd688dF43/info.json @@ -0,0 +1,28 @@ +{ + "name": "CryptoGodz", + "website": "https://cryptogodz.io", + "description": "CRYPTOGODZA VIRTUAL UNIVERSE OF FANTASY HEROES FOR P2P NFT GAMING", + "explorer": "https://bscscan.com/token/0xF0A8EcBCE8caADB7A07d1FcD0f87Ae1Bd688dF43", + "type": "BEP20", + "symbol": "GODZ", + "decimals": 18, + "status": "active", + "id": "0xF0A8EcBCE8caADB7A07d1FcD0f87Ae1Bd688dF43", + "tags": [ + "nft" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/cryptogodz1" + }, + { + "name": "x", + "url": "https://x.com/CryptogodzNFTG" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/cryptogodz/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF0A8EcBCE8caADB7A07d1FcD0f87Ae1Bd688dF43/logo.png b/blockchains/smartchain/assets/0xF0A8EcBCE8caADB7A07d1FcD0f87Ae1Bd688dF43/logo.png new file mode 100644 index 00000000..0451ea00 Binary files /dev/null and b/blockchains/smartchain/assets/0xF0A8EcBCE8caADB7A07d1FcD0f87Ae1Bd688dF43/logo.png differ diff --git a/blockchains/smartchain/assets/0xF0B6E02Bb5903Bc98792aebe98e72007D3D7E5e8/info.json b/blockchains/smartchain/assets/0xF0B6E02Bb5903Bc98792aebe98e72007D3D7E5e8/info.json new file mode 100644 index 00000000..00e6fb16 --- /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 00000000..bd473246 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 00000000..d61b2aaa --- /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 00000000..8cb13a7e Binary files /dev/null and b/blockchains/smartchain/assets/0xF0EBB572643336834d516C485ad31d3299999999/logo.png differ diff --git a/blockchains/smartchain/assets/0xF0a0913BA2b173c1fbCa1c1b2FCFC0E3678f66a9/info.json b/blockchains/smartchain/assets/0xF0a0913BA2b173c1fbCa1c1b2FCFC0E3678f66a9/info.json new file mode 100644 index 00000000..f2c961d7 --- /dev/null +++ b/blockchains/smartchain/assets/0xF0a0913BA2b173c1fbCa1c1b2FCFC0E3678f66a9/info.json @@ -0,0 +1,11 @@ +{ + "name": "BFI-COIN", + "type": "BEP20", + "symbol": "BFIC", + "decimals": 8, + "website": "https://bficoin.io/", + "description": "Bfic Protocol is a decentralized network that allows anyone to invoice a payment for which the recipient can pay in a secure way.", + "explorer": "https://bscscan.com/token/0xf0a0913ba2b173c1fbca1c1b2fcfc0e3678f66a9", + "status": "active", + "id": "0xF0a0913BA2b173c1fbCa1c1b2FCFC0E3678f66a9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF0a0913BA2b173c1fbCa1c1b2FCFC0E3678f66a9/logo.png b/blockchains/smartchain/assets/0xF0a0913BA2b173c1fbCa1c1b2FCFC0E3678f66a9/logo.png new file mode 100644 index 00000000..6a25d5ee Binary files /dev/null and b/blockchains/smartchain/assets/0xF0a0913BA2b173c1fbCa1c1b2FCFC0E3678f66a9/logo.png differ diff --git a/blockchains/smartchain/assets/0xF11215614946E7990842b96F998B4797187D8888/info.json b/blockchains/smartchain/assets/0xF11215614946E7990842b96F998B4797187D8888/info.json new file mode 100644 index 00000000..bac9ea4f --- /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 new file mode 100644 index 00000000..efbf0b19 --- /dev/null +++ b/blockchains/smartchain/assets/0xF14D3692B0055Db9Ca4c04065165d59B87E763f1/info.json @@ -0,0 +1,40 @@ +{ + "name": "MetaBUSDCoin", + "type": "BEP20", + "symbol": "MBC", + "decimals": 18, + "website": "https://metabusdcoin.com/", + "description": "MetaBusdCoin is a deflationary reward token, rewarding holders in a stable coin pegged to the Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xF14D3692B0055Db9Ca4c04065165d59B87E763f1", + "status": "active", + "id": "0xF14D3692B0055Db9Ca4c04065165d59B87E763f1", + "links": [ + { + "name": "x", + "url": "https://x.com/MetaBUSDCoin" + }, + { + "name": "telegram", + "url": "https://t.me/MetaBUSDCoin" + }, + { + "name": "discord", + "url": "https://discord.com/channels/913264078078759014/915762320242778162" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/metabusdcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metabusdcoin" + }, + { + "name": "whitepaper", + "url": "https://metabusdcoin.com/assets/files/WhitePaper.pdf" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF14D3692B0055Db9Ca4c04065165d59B87E763f1/logo.png b/blockchains/smartchain/assets/0xF14D3692B0055Db9Ca4c04065165d59B87E763f1/logo.png new file mode 100644 index 00000000..893c3183 Binary files /dev/null and b/blockchains/smartchain/assets/0xF14D3692B0055Db9Ca4c04065165d59B87E763f1/logo.png differ diff --git a/blockchains/smartchain/assets/0xF15B8f7465b92799F6EE440F86B3CAB5A4dbc65A/info.json b/blockchains/smartchain/assets/0xF15B8f7465b92799F6EE440F86B3CAB5A4dbc65A/info.json new file mode 100644 index 00000000..efd0ecc1 --- /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 00000000..15357053 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 new file mode 100644 index 00000000..6084a882 --- /dev/null +++ b/blockchains/smartchain/assets/0xF16e1Ad313E3Bf4E3381b58731b45fA116ECF53f/info.json @@ -0,0 +1,25 @@ +{ + "name": "LuckyPig", + "type": "BEP20", + "symbol": "LuckyPig", + "decimals": 9, + "website": "https://www.luckypigtoken.com/", + "description": "Luckypig, the Bsc token we all need right now! Let's bring the old Bsc era back with a pinch of hot features to avoid dumps. Luckypig will bring NFT, lottery/jackpot concepts together and a contract with low taxes. Our team's longterm goal is to build an online casino which will be pegged with our token.", + "explorer": "https://bscscan.com/token/0xF16e1Ad313E3Bf4E3381b58731b45fA116ECF53f", + "status": "abandoned", + "id": "0xF16e1Ad313E3Bf4E3381b58731b45fA116ECF53f", + "migrate": { + "asset_id": "c20000714_t0x06c0783C6B6f268D9f408F74a2Fe368Be732F9FF", + "url": "https://t.me/luckypigtoken/185327" + }, + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/luckypig/" + }, + { + "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 new file mode 100644 index 00000000..6ec31acf --- /dev/null +++ b/blockchains/smartchain/assets/0xF18e1289FCe882e4dB55Ec8A349D027a9a5B3169/info.json @@ -0,0 +1,24 @@ +{ + "name": "MetaBotChain", + "website": "https://metabotchain.com/", + "description": "MetaBotChain is an app to manage assets or trade on Crypto exchange 1% Fee transaction send to MBCH LP holder", + "explorer": "https://bscscan.com/token/0xF18e1289FCe882e4dB55Ec8A349D027a9a5B3169", + "type": "BEP20", + "symbol": "MBCH", + "decimals": 18, + "status": "active", + "id": "0xF18e1289FCe882e4dB55Ec8A349D027a9a5B3169", + "links": [ + { + "name": "x", + "url": "https://x.com/Metabotchain" + }, + { + "name": "telegram", + "url": "https://t.me/@Metabotchain" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF18e1289FCe882e4dB55Ec8A349D027a9a5B3169/logo.png b/blockchains/smartchain/assets/0xF18e1289FCe882e4dB55Ec8A349D027a9a5B3169/logo.png new file mode 100644 index 00000000..cd26b87f Binary files /dev/null and b/blockchains/smartchain/assets/0xF18e1289FCe882e4dB55Ec8A349D027a9a5B3169/logo.png differ diff --git a/blockchains/smartchain/assets/0xF19b09DA89722F0a6960F9bF9701A63AE891603A/info.json b/blockchains/smartchain/assets/0xF19b09DA89722F0a6960F9bF9701A63AE891603A/info.json new file mode 100644 index 00000000..9c6dd3ed --- /dev/null +++ b/blockchains/smartchain/assets/0xF19b09DA89722F0a6960F9bF9701A63AE891603A/info.json @@ -0,0 +1,41 @@ +{ + "name": "TetraHedra", + "website": "https://tetra-hedra.com", + "description": "TetraHedra is an arabic leading Token that has many unique features it is a must to read about us so you can have a better understanding about the nature of our defi process.", + "explorer": "https://bscscan.com/token/0xF19b09DA89722F0a6960F9bF9701A63AE891603A", + "type": "BEP20", + "symbol": "TTH", + "decimals": 9, + "status": "active", + "id": "0xF19b09DA89722F0a6960F9bF9701A63AE891603A", + "links": [ + { + "name": "x", + "url": "https://x.com/TetraHedraTTH" + }, + { + "name": "facebook", + "url": "https://facebook.com/tetrahedra2021" + }, + { + "name": "telegram", + "url": "https://t.me/TetraHedraChat" + }, + { + "name": "telegram_news", + "url": "https://t.me/TetraHedranews" + }, + { + "name": "whitepaper", + "url": "https://tetra-hedra.com/img/TetraHedra-Whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tetrahedra" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tetrahedra" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF19b09DA89722F0a6960F9bF9701A63AE891603A/logo.png b/blockchains/smartchain/assets/0xF19b09DA89722F0a6960F9bF9701A63AE891603A/logo.png new file mode 100644 index 00000000..2636cfb7 Binary files /dev/null and b/blockchains/smartchain/assets/0xF19b09DA89722F0a6960F9bF9701A63AE891603A/logo.png differ diff --git a/blockchains/smartchain/assets/0xF1A71bcCe29b598d812a30BaedFf860a7Dce0aff/info.json b/blockchains/smartchain/assets/0xF1A71bcCe29b598d812a30BaedFf860a7Dce0aff/info.json new file mode 100644 index 00000000..f3a3c197 --- /dev/null +++ b/blockchains/smartchain/assets/0xF1A71bcCe29b598d812a30BaedFf860a7Dce0aff/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mars - Climb Token Finance ", + "website": "https://www.climbtoken.finance/", + "description": "The First DEX on BSC that offers dividends in BUSD, rewards and distribution of fees directly to holders. Enjoy the highest APRsnce.", + "explorer": "https://bscscan.com/token/0xF1A71bcCe29b598d812a30BaedFf860a7Dce0aff", + "type": "BEP20", + "symbol": "MARS", + "decimals": 18, + "status": "active", + "id": "0xF1A71bcCe29b598d812a30BaedFf860a7Dce0aff" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF1A71bcCe29b598d812a30BaedFf860a7Dce0aff/logo.png b/blockchains/smartchain/assets/0xF1A71bcCe29b598d812a30BaedFf860a7Dce0aff/logo.png new file mode 100644 index 00000000..5521bfcb Binary files /dev/null and b/blockchains/smartchain/assets/0xF1A71bcCe29b598d812a30BaedFf860a7Dce0aff/logo.png differ diff --git a/blockchains/smartchain/assets/0xF215A127A196e3988C09d052e16BcFD365Cd7AA3/info.json b/blockchains/smartchain/assets/0xF215A127A196e3988C09d052e16BcFD365Cd7AA3/info.json new file mode 100644 index 00000000..6ea20260 --- /dev/null +++ b/blockchains/smartchain/assets/0xF215A127A196e3988C09d052e16BcFD365Cd7AA3/info.json @@ -0,0 +1,12 @@ +{ + "name": "Wrapped Mirror TSLA Token", + "website": "https://mirror.finance", + "description": "Mirror Protocol allows the creation of fungible assets, “synthetics”, that track the price of real-world assets.", + "explorer": "https://bscscan.com/token/0xF215A127A196e3988C09d052e16BcFD365Cd7AA3", + "research": "", + "type": "BEP20", + "symbol": "mTSLA", + "decimals": 18, + "status": "active", + "id": "0xF215A127A196e3988C09d052e16BcFD365Cd7AA3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF215A127A196e3988C09d052e16BcFD365Cd7AA3/logo.png b/blockchains/smartchain/assets/0xF215A127A196e3988C09d052e16BcFD365Cd7AA3/logo.png new file mode 100644 index 00000000..22059ed9 Binary files /dev/null and b/blockchains/smartchain/assets/0xF215A127A196e3988C09d052e16BcFD365Cd7AA3/logo.png differ diff --git a/blockchains/smartchain/assets/0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e/info.json b/blockchains/smartchain/assets/0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e/info.json new file mode 100644 index 00000000..cac84cb8 --- /dev/null +++ b/blockchains/smartchain/assets/0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e/info.json @@ -0,0 +1,30 @@ +{ + "name": "Reef.finance", + "website": "https://reef.finance", + "description": "Reef Finance is a multi-chain smart yield engine and liquidity aggregator where any DeFi protocol can integrate into.", + "explorer": "https://bscscan.com/token/0xf21768ccbc73ea5b6fd3c687208a7c2def2d966e", + "research": "https://research.binance.com/en/projects/reef-finance", + "type": "BEP20", + "symbol": "REEF", + "decimals": 18, + "status": "active", + "id": "0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e", + "links": [ + { + "name": "x", + "url": "https://x.com/ReefDeFi" + }, + { + "name": "telegram", + "url": "https://t.me/reefdefi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/reef-finance/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/reef/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e/logo.png b/blockchains/smartchain/assets/0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e/logo.png new file mode 100644 index 00000000..7eed97f7 Binary files /dev/null and b/blockchains/smartchain/assets/0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e/logo.png differ diff --git a/blockchains/smartchain/assets/0xF218184Af829Cf2b0019F8E6F0b2423498a36983/info.json b/blockchains/smartchain/assets/0xF218184Af829Cf2b0019F8E6F0b2423498a36983/info.json new file mode 100644 index 00000000..5c3a222d --- /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 00000000..9a0131c5 Binary files /dev/null and b/blockchains/smartchain/assets/0xF218184Af829Cf2b0019F8E6F0b2423498a36983/logo.png differ diff --git a/blockchains/smartchain/assets/0xF27580F6a58FF785c60B7c15fD394AB442aAA451/info.json b/blockchains/smartchain/assets/0xF27580F6a58FF785c60B7c15fD394AB442aAA451/info.json new file mode 100644 index 00000000..32ee052f --- /dev/null +++ b/blockchains/smartchain/assets/0xF27580F6a58FF785c60B7c15fD394AB442aAA451/info.json @@ -0,0 +1,14 @@ +{ + "name": "Nicheman", + "type": "BEP20", + "symbol": "Nicheman", + "decimals": 9, + "website": "https://nicheman.space", + "description": "Nicheman is a defi project developed for the investors/enthusiasts who always wanted to own a coin that is community-driven and fairly launched. ", + "explorer": "https://bscscan.com/token/0xF27580F6a58FF785c60B7c15fD394AB442aAA451", + "status": "active", + "id": "0xF27580F6a58FF785c60B7c15fD394AB442aAA451", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF27580F6a58FF785c60B7c15fD394AB442aAA451/logo.png b/blockchains/smartchain/assets/0xF27580F6a58FF785c60B7c15fD394AB442aAA451/logo.png new file mode 100644 index 00000000..e8ea3be6 Binary files /dev/null and b/blockchains/smartchain/assets/0xF27580F6a58FF785c60B7c15fD394AB442aAA451/logo.png differ diff --git a/blockchains/smartchain/assets/0xF28709f1daa6CEE2847C5B9526ceba457331742b/info.json b/blockchains/smartchain/assets/0xF28709f1daa6CEE2847C5B9526ceba457331742b/info.json new file mode 100644 index 00000000..62f60727 --- /dev/null +++ b/blockchains/smartchain/assets/0xF28709f1daa6CEE2847C5B9526ceba457331742b/info.json @@ -0,0 +1,49 @@ +{ + "name": "$MLNX", + "website": "https://melontokenbsc.com/", + "description": "MELONx - We can beat breast cancer. Together!", + "explorer": "https://bscscan.com/token/0xF28709f1daa6CEE2847C5B9526ceba457331742b", + "type": "BEP20", + "symbol": "$MLNX", + "decimals": 18, + "status": "active", + "id": "0xF28709f1daa6CEE2847C5B9526ceba457331742b", + "links": [ + { + "name": "x", + "url": "https://x.com/melontokenbsc" + }, + { + "name": "github", + "url": "https://github.com/DRIVENx" + }, + { + "name": "telegram", + "url": "https://t.me/melonbsc" + }, + { + "name": "blog", + "url": "https://medium.com/@drivenprotocol" + }, + { + "name": "whitepaper", + "url": "https://melontokenbsc.com/wp-content/uploads/2021/08/MELONx-Whitepaper.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/DRIVENx" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/DRIVENecosystem/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/qZ36FNT23w" + }, + { + "name": "facebook", + "url": "https://facebook.com/melontoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF28709f1daa6CEE2847C5B9526ceba457331742b/logo.png b/blockchains/smartchain/assets/0xF28709f1daa6CEE2847C5B9526ceba457331742b/logo.png new file mode 100644 index 00000000..b298057e Binary files /dev/null and b/blockchains/smartchain/assets/0xF28709f1daa6CEE2847C5B9526ceba457331742b/logo.png differ diff --git a/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/info.json b/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/info.json new file mode 100644 index 00000000..ddd422a4 --- /dev/null +++ b/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/info.json @@ -0,0 +1,44 @@ +{ + "name": "Thoreum V2", + "website": "https://thoreum.capital/", + "description": "THOREUM v2 is a Multi-chain Venture Capital Platform that rewards its HOLDers by leveraging multi-chain investment opportunities. Thoreum phase 1 - Mining completed, phase 2 - Hyper deflationary & maximizing profits.", + "explorer": "https://bscscan.com/token/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d", + "type": "BEP20", + "symbol": "THOREUM", + "decimals": 18, + "status": "abandoned", + "id": "0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/ThoreumFinance" + }, + { + "name": "telegram", + "url": "https://t.me/Thoreum" + }, + { + "name": "docs", + "url": "https://docs.thoreum.capital/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Thoreum_official/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UChv01NIAIwQm4gmJuSGd49Q" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/thoreum-v2/" + }, + { + "name": "github", + "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 new file mode 100644 index 00000000..c86b3f5d --- /dev/null +++ b/blockchains/smartchain/assets/0xF2DA079867785018E6d823DD0FF332f05AAfe485/info.json @@ -0,0 +1,28 @@ +{ + "name": "VEKTOR", + "type": "BEP20", + "symbol": "VEKTOR", + "decimals": 9, + "website": "https://www.crypto-vektor.com/", + "description": "We are an international team consisting of investors, programmers, engineers, founders, project managers, and crypto enthusiasts. We are not only invested but have also realized and successfully established many projects ourselves. Due to our network, we are personally very well connected with many partners and decision makers in the whole field.", + "explorer": "https://bscscan.com/token/0xF2DA079867785018E6d823DD0FF332f05AAfe485", + "status": "active", + "id": "0xF2DA079867785018E6d823DD0FF332f05AAfe485", + "links": [ + { + "name": "x", + "url": "https://x.com/Vektor_vektor?t=pE8hrBoFe7yDCYMEojK9Kw&s=09" + }, + { + "name": "telegram", + "url": "https://t.me/VEKTOR_mentoring" + }, + { + "name": "github", + "url": "https://github.com/CRYPTO-VEKTOR?tab=projects" + } + ], + "tags": [ + "privacy" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF2DA079867785018E6d823DD0FF332f05AAfe485/logo.png b/blockchains/smartchain/assets/0xF2DA079867785018E6d823DD0FF332f05AAfe485/logo.png new file mode 100644 index 00000000..555bd6f9 Binary files /dev/null and b/blockchains/smartchain/assets/0xF2DA079867785018E6d823DD0FF332f05AAfe485/logo.png differ diff --git a/blockchains/smartchain/assets/0xF2E71B054B6b0F3C5513Af505E6c072008ECFaCD/info.json b/blockchains/smartchain/assets/0xF2E71B054B6b0F3C5513Af505E6c072008ECFaCD/info.json new file mode 100644 index 00000000..f77f05d3 --- /dev/null +++ b/blockchains/smartchain/assets/0xF2E71B054B6b0F3C5513Af505E6c072008ECFaCD/info.json @@ -0,0 +1,24 @@ +{ + "name": "Brixel War", + "website": "https://brixelwar.com/", + "description": "Brixel War - A Play-to-Earn game based on Smart Chain.", + "explorer": "https://bscscan.com/token/0xf2e71b054b6b0f3c5513af505e6c072008ecfacd", + "type": "BEP20", + "symbol": "BXS", + "decimals": 18, + "status": "active", + "id": "0xF2E71B054B6b0F3C5513Af505E6c072008ECFaCD", + "links": [ + { + "name": "x", + "url": "https://x.com/BrixelWar" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/brixel-war/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF2E71B054B6b0F3C5513Af505E6c072008ECFaCD/logo.png b/blockchains/smartchain/assets/0xF2E71B054B6b0F3C5513Af505E6c072008ECFaCD/logo.png new file mode 100644 index 00000000..a46fe472 Binary files /dev/null and b/blockchains/smartchain/assets/0xF2E71B054B6b0F3C5513Af505E6c072008ECFaCD/logo.png differ diff --git a/blockchains/smartchain/assets/0xF325884D9bcac457271fE7F7B6be1765348fCCa2/info.json b/blockchains/smartchain/assets/0xF325884D9bcac457271fE7F7B6be1765348fCCa2/info.json new file mode 100644 index 00000000..e7b620aa --- /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 00000000..c10c4abc 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 00000000..d7b06388 --- /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 new file mode 100644 index 00000000..74c78ff4 --- /dev/null +++ b/blockchains/smartchain/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json @@ -0,0 +1,24 @@ +{ + "name": "GroveCoin", + "type": "BEP20", + "symbol": "GRV", + "decimals": 8, + "website": "https://www.grovetoken.com", + "description": "Grove Coin is a decentralized and secure green coin built for the future of our planet. Our mission is to Create wealth, for all Grovers, by harnessing the opportunities of a secure, decentralized digital currency in an environmentally conscious way. By compensating nature for years of abuse, Grove will create a healthier, wealthier future for all.", + "explorer": "https://bscscan.com/token/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c", + "status": "active", + "id": "0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c", + "links": [ + { + "name": "x", + "url": "https://x.com/GroveToken" + }, + { + "name": "facebook", + "url": "https://facebook.com/GroveTokenOfficial" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/logo.png b/blockchains/smartchain/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/logo.png new file mode 100644 index 00000000..4c8c7bcd Binary files /dev/null and b/blockchains/smartchain/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/logo.png differ diff --git a/blockchains/smartchain/assets/0xF37cAc4783a343D6258DdD52AA4e2566C0CbE25a/info.json b/blockchains/smartchain/assets/0xF37cAc4783a343D6258DdD52AA4e2566C0CbE25a/info.json new file mode 100644 index 00000000..acf7efbc --- /dev/null +++ b/blockchains/smartchain/assets/0xF37cAc4783a343D6258DdD52AA4e2566C0CbE25a/info.json @@ -0,0 +1,24 @@ +{ + "name": "Elgos Company Token", + "type": "BEP20", + "symbol": "ELGOS", + "decimals": 18, + "website": "https://elgos.app", + "description": "Elgos is a urban mobility application, and ELGOS is our token.", + "explorer": "https://bscscan.com/token/0xF37cAc4783a343D6258DdD52AA4e2566C0CbE25a", + "status": "active", + "id": "0xF37cAc4783a343D6258DdD52AA4e2566C0CbE25a", + "links": [ + { + "name": "whitepaper", + "url": "https://elgos.app/white-paper-elgos/" + }, + { + "name": "github", + "url": "https://github.com/SymmaBlockchain" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0xF37cAc4783a343D6258DdD52AA4e2566C0CbE25a/logo.png b/blockchains/smartchain/assets/0xF37cAc4783a343D6258DdD52AA4e2566C0CbE25a/logo.png new file mode 100644 index 00000000..403e41c3 Binary files /dev/null and b/blockchains/smartchain/assets/0xF37cAc4783a343D6258DdD52AA4e2566C0CbE25a/logo.png differ diff --git a/blockchains/smartchain/assets/0xF3c7CECF8cBC3066F9a87b310cEBE198d00479aC/info.json b/blockchains/smartchain/assets/0xF3c7CECF8cBC3066F9a87b310cEBE198d00479aC/info.json new file mode 100644 index 00000000..74b2f95f --- /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 00000000..9c3d32ed 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 00000000..bd4d6025 --- /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 00000000..43982f9b 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 00000000..5ae43d40 --- /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 00000000..7bde4f2c 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 new file mode 100644 index 00000000..2103acf5 --- /dev/null +++ b/blockchains/smartchain/assets/0xF41082C4CB71FB4628a9b17214B2624e0e2048a9/info.json @@ -0,0 +1,41 @@ +{ + "name": "Real Trump Token V2", + "website": "https://realtrumptoken.com/", + "description": "Real Trump Token is a crypto designed to donate into organizations that put America First & President Donald J. Trump's 2024 re-election.", + "explorer": "https://bscscan.com/token/0xf41082c4cb71fb4628a9b17214b2624e0e2048a9", + "type": "BEP20", + "symbol": "RTTv2", + "decimals": 9, + "status": "abandoned", + "id": "0xF41082C4CB71FB4628a9b17214B2624e0e2048a9", + "migrate": { + "asset_id": "c10000714_t0x8F046a2457a8F1618cAe4706Fa57Bf790e2532a6", + "url": "https://restoretruthtoken.com/rtt-rebrand/" + }, + "links": [ + { + "name": "x", + "url": "https://x.com/realtrumptoken" + }, + { + "name": "github", + "url": "https://github.com/realtrumptoken/realtrumptoken" + }, + { + "name": "telegram", + "url": "https://t.me/realtrumptokenchat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/k4yVP8xVn5" + }, + { + "name": "facebook", + "url": "https://facebook.com/Real-Trump-Token-RTT-105614135073370" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/real-trump-token-v2" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF41D6F9680ea216aad62baa7101AF40FEe688046/info.json b/blockchains/smartchain/assets/0xF41D6F9680ea216aad62baa7101AF40FEe688046/info.json new file mode 100644 index 00000000..de394b69 --- /dev/null +++ b/blockchains/smartchain/assets/0xF41D6F9680ea216aad62baa7101AF40FEe688046/info.json @@ -0,0 +1,11 @@ +{ + "name": "ComPro Token", + "website": "https://defi.compro.finance", + "description": "ComPro.Finaace, decentralized protocol for the synthetic assets.", + "explorer": "https://bscscan.com/token/0xf41d6f9680ea216aad62baa7101af40fee688046", + "type": "BEP20", + "symbol": "COPR", + "decimals": 18, + "status": "active", + "id": "0xF41D6F9680ea216aad62baa7101AF40FEe688046" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF41D6F9680ea216aad62baa7101AF40FEe688046/logo.png b/blockchains/smartchain/assets/0xF41D6F9680ea216aad62baa7101AF40FEe688046/logo.png new file mode 100644 index 00000000..4a998f67 Binary files /dev/null and b/blockchains/smartchain/assets/0xF41D6F9680ea216aad62baa7101AF40FEe688046/logo.png differ diff --git a/blockchains/smartchain/assets/0xF4308ae29c84238f3386C01d3CF6266AC6939ADE/info.json b/blockchains/smartchain/assets/0xF4308ae29c84238f3386C01d3CF6266AC6939ADE/info.json new file mode 100644 index 00000000..a1a10bb4 --- /dev/null +++ b/blockchains/smartchain/assets/0xF4308ae29c84238f3386C01d3CF6266AC6939ADE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lazy", + "website": "https://lazymint.finance", + "description": "LAZY is the native token of LazyMint Finance, The new type of Yield Farm with Automatic Liquidity Acquisition integrated with Delegated Farming on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xF4308ae29c84238f3386C01d3CF6266AC6939ADE", + "type": "BEP20", + "symbol": "LAZY", + "decimals": 18, + "status": "active", + "id": "0xF4308ae29c84238f3386C01d3CF6266AC6939ADE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF4308ae29c84238f3386C01d3CF6266AC6939ADE/logo.png b/blockchains/smartchain/assets/0xF4308ae29c84238f3386C01d3CF6266AC6939ADE/logo.png new file mode 100644 index 00000000..eed0a072 Binary files /dev/null and b/blockchains/smartchain/assets/0xF4308ae29c84238f3386C01d3CF6266AC6939ADE/logo.png differ diff --git a/blockchains/smartchain/assets/0xF46306CDC35B845ebcc823Be8363249b21F7eE63/info.json b/blockchains/smartchain/assets/0xF46306CDC35B845ebcc823Be8363249b21F7eE63/info.json new file mode 100644 index 00000000..ba86e265 --- /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 00000000..e8cdea81 Binary files /dev/null and b/blockchains/smartchain/assets/0xF46306CDC35B845ebcc823Be8363249b21F7eE63/logo.png differ diff --git a/blockchains/smartchain/assets/0xF4Ed363144981D3A65f42e7D0DC54FF9EEf559A1/info.json b/blockchains/smartchain/assets/0xF4Ed363144981D3A65f42e7D0DC54FF9EEf559A1/info.json new file mode 100644 index 00000000..36e1d227 --- /dev/null +++ b/blockchains/smartchain/assets/0xF4Ed363144981D3A65f42e7D0DC54FF9EEf559A1/info.json @@ -0,0 +1,11 @@ +{ + "name": "FaraCrystal", + "website": "https://faraland.io/", + "description": "Faraland is an NFT project focusing on a true `Play to Earn` game. Users can summon Heroes with different races and equip them with powerful items and sending them into expedition to earn valuable resources.", + "explorer": "https://bscscan.com/token/0xF4Ed363144981D3A65f42e7D0DC54FF9EEf559A1", + "symbol": "FARA", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xF4Ed363144981D3A65f42e7D0DC54FF9EEf559A1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF4Ed363144981D3A65f42e7D0DC54FF9EEf559A1/logo.png b/blockchains/smartchain/assets/0xF4Ed363144981D3A65f42e7D0DC54FF9EEf559A1/logo.png new file mode 100644 index 00000000..79bb4787 Binary files /dev/null and b/blockchains/smartchain/assets/0xF4Ed363144981D3A65f42e7D0DC54FF9EEf559A1/logo.png differ diff --git a/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json b/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json new file mode 100644 index 00000000..9212339c --- /dev/null +++ b/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json @@ -0,0 +1,25 @@ +{ + "name": "BlockBank", + "website": "https://blockbank.ai", + "description": "BlockBank is powered by our platform's utility token called BBANK. Users are able to gain access to our credit card rewards program, use our robo advisor, cefi and defi wallet, increase their APY % and earn interest on their tokens by staking BBANK in their BlockBank cryptocurrency wallet.", + "explorer": "https://bscscan.com/token/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267", + "type": "BEP20", + "symbol": "BBANK", + "decimals": 18, + "status": "abandoned", + "id": "0xF4b5470523cCD314C6B9dA041076e7D79E0Df267", + "links": [ + { + "name": "github", + "url": "https://github.com/BlockBank-team/" + }, + { + "name": "x", + "url": "https://x.com/BLOCKBANKapp?s=09" + }, + { + "name": "reddit", + "url": "https://reddit.com/u/BlockBankAi?utm_medium=android_app&utm_source=share" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF520f5D709dCD40529caaFc02B297e7225ff8372/info.json b/blockchains/smartchain/assets/0xF520f5D709dCD40529caaFc02B297e7225ff8372/info.json new file mode 100644 index 00000000..94b1bf24 --- /dev/null +++ b/blockchains/smartchain/assets/0xF520f5D709dCD40529caaFc02B297e7225ff8372/info.json @@ -0,0 +1,37 @@ +{ + "name": "MoonWilly", + "website": "https://moonwilly.com", + "description": "MoonWilly is Certificate Of Deposit on Binance Smart Chain. Holders Earn Passive Rewards in DAI (USD Stablecoin) every Hour, Forever.", + "explorer": "https://bscscan.com/token/0xf520f5d709dcd40529caafc02b297e7225ff8372", + "type": "BEP20", + "symbol": "MoonWilly", + "decimals": 18, + "status": "active", + "id": "0xF520f5D709dCD40529caaFc02B297e7225ff8372", + "links": [ + { + "name": "github", + "url": "https://github.com/top1st/Moonwilly-Protocal/" + }, + { + "name": "x", + "url": "https://x.com/Moonwillycoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/moonwilly" + }, + { + "name": "telegram", + "url": "https://t.me/moonwillyproject" + }, + { + "name": "facebook", + "url": "https://facebook.com/MoonWilly-101277595537126" + }, + { + "name": "medium", + "url": "https://medium.com/@moonwillycoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF520f5D709dCD40529caaFc02B297e7225ff8372/logo.png b/blockchains/smartchain/assets/0xF520f5D709dCD40529caaFc02B297e7225ff8372/logo.png new file mode 100644 index 00000000..fa86d244 Binary files /dev/null and b/blockchains/smartchain/assets/0xF520f5D709dCD40529caaFc02B297e7225ff8372/logo.png differ diff --git a/blockchains/smartchain/assets/0xF53FC93D811a3BBC7637a41381FE7475DB919B1B/info.json b/blockchains/smartchain/assets/0xF53FC93D811a3BBC7637a41381FE7475DB919B1B/info.json new file mode 100644 index 00000000..6846f916 --- /dev/null +++ b/blockchains/smartchain/assets/0xF53FC93D811a3BBC7637a41381FE7475DB919B1B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Chihuahua Coin", + "website": "https://huahuacoin.com", + "description": "A Sustainable Community Driven Crypto Project Token to fund shelters and save our Chihuahua friends across the world.", + "explorer": "https://bscscan.com/token/0xF53FC93D811a3BBC7637a41381FE7475DB919B1B", + "type": "BEP20", + "symbol": "HuaHua", + "decimals": 18, + "status": "active", + "id": "0xF53FC93D811a3BBC7637a41381FE7475DB919B1B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF53FC93D811a3BBC7637a41381FE7475DB919B1B/logo.png b/blockchains/smartchain/assets/0xF53FC93D811a3BBC7637a41381FE7475DB919B1B/logo.png new file mode 100644 index 00000000..e8513f9c Binary files /dev/null and b/blockchains/smartchain/assets/0xF53FC93D811a3BBC7637a41381FE7475DB919B1B/logo.png differ diff --git a/blockchains/smartchain/assets/0xF54b94eA21e1Da5d51eF00fd4502225e5394F874/info.json b/blockchains/smartchain/assets/0xF54b94eA21e1Da5d51eF00fd4502225e5394F874/info.json new file mode 100644 index 00000000..09b01303 --- /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 00000000..8adf5788 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 00000000..965ada67 --- /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 00000000..3049a5b1 Binary files /dev/null and b/blockchains/smartchain/assets/0xF563E86e461dE100CfCfD8b65dAA542d3d4B0550/logo.png differ diff --git a/blockchains/smartchain/assets/0xF565aaf0b8EB813a1c8C956D2C59F1ce27FD2366/info.json b/blockchains/smartchain/assets/0xF565aaf0b8EB813a1c8C956D2C59F1ce27FD2366/info.json new file mode 100644 index 00000000..f45cdf77 --- /dev/null +++ b/blockchains/smartchain/assets/0xF565aaf0b8EB813a1c8C956D2C59F1ce27FD2366/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoonShield", + "website": "https://moonshield.finance", + "description": "MoonShield is a community driven DeFi project on the Binance Smart Chain - Users receive BNB weekly just for holding MSHLD. Audited. Contract Renounced.", + "explorer": "https://bscscan.com/token/0xf565aaf0b8eb813a1c8c956d2c59f1ce27fd2366", + "type": "BEP20", + "symbol": "MSHLD", + "decimals": 9, + "status": "active", + "id": "0xF565aaf0b8EB813a1c8C956D2C59F1ce27FD2366" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF565aaf0b8EB813a1c8C956D2C59F1ce27FD2366/logo.png b/blockchains/smartchain/assets/0xF565aaf0b8EB813a1c8C956D2C59F1ce27FD2366/logo.png new file mode 100644 index 00000000..4d48e171 Binary files /dev/null and b/blockchains/smartchain/assets/0xF565aaf0b8EB813a1c8C956D2C59F1ce27FD2366/logo.png differ diff --git a/blockchains/smartchain/assets/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49/info.json b/blockchains/smartchain/assets/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49/info.json new file mode 100644 index 00000000..9319a44c --- /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 00000000..77ba6a3a 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 00000000..696342b8 --- /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/0xF5a367b7809e5683538C93Ce638B9258A0B88271/info.json b/blockchains/smartchain/assets/0xF5a367b7809e5683538C93Ce638B9258A0B88271/info.json new file mode 100644 index 00000000..caa72cd0 --- /dev/null +++ b/blockchains/smartchain/assets/0xF5a367b7809e5683538C93Ce638B9258A0B88271/info.json @@ -0,0 +1,14 @@ +{ + "name": "Aurory (Portal)", + "type": "BEP20", + "symbol": "AURY", + "decimals": 9, + "description": "Cross Chain Portal Bridged Token", + "website": "https://aurory.io/", + "explorer": "https://bscscan.com/token/0xF5a367b7809e5683538C93Ce638B9258A0B88271", + "status": "active", + "id": "0xF5a367b7809e5683538C93Ce638B9258A0B88271", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF5a367b7809e5683538C93Ce638B9258A0B88271/logo.png b/blockchains/smartchain/assets/0xF5a367b7809e5683538C93Ce638B9258A0B88271/logo.png new file mode 100644 index 00000000..a45f0578 Binary files /dev/null and b/blockchains/smartchain/assets/0xF5a367b7809e5683538C93Ce638B9258A0B88271/logo.png differ diff --git a/blockchains/smartchain/assets/0xF5d8A096CcCb31b9D7bcE5afE812BE23e3D4690d/info.json b/blockchains/smartchain/assets/0xF5d8A096CcCb31b9D7bcE5afE812BE23e3D4690d/info.json new file mode 100644 index 00000000..ce76a496 --- /dev/null +++ b/blockchains/smartchain/assets/0xF5d8A096CcCb31b9D7bcE5afE812BE23e3D4690d/info.json @@ -0,0 +1,45 @@ +{ + "name": "Happy Fans Token", + "website": "https://happyfans.club/", + "description": "Happy Fans is a subscription-based social network based on blockchain technology", + "explorer": "https://bscscan.com/token/0xF5d8A096CcCb31b9D7bcE5afE812BE23e3D4690d", + "type": "BEP20", + "symbol": "HAPPY", + "decimals": 18, + "status": "active", + "id": "0xF5d8A096CcCb31b9D7bcE5afE812BE23e3D4690d", + "links": [ + { + "name": "github", + "url": "https://github.com/Happy-Fans" + }, + { + "name": "telegram", + "url": "https://t.me/happyfanstoken" + }, + { + "name": "x", + "url": "https://x.com/HappyFansToken" + }, + { + "name": "medium", + "url": "https://medium.com/@happyfans" + }, + { + "name": "facebook", + "url": "https://facebook.com/HappyFansToken/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/happy-fans//" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/happyfans?__cf_chl_jschl_tk__=pmd_5x_GoFW3u34PANtYRW3VKkBxVgRP8WqudEv07qjGtCA-1634245295-0-gqNtZGzNAhCjcnBszQjR" + }, + { + "name": "whitepaper", + "url": "https://happyfans.club/wp-content/uploads/2021/09/litepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF5d8A096CcCb31b9D7bcE5afE812BE23e3D4690d/logo.png b/blockchains/smartchain/assets/0xF5d8A096CcCb31b9D7bcE5afE812BE23e3D4690d/logo.png new file mode 100644 index 00000000..ec46dea0 Binary files /dev/null and b/blockchains/smartchain/assets/0xF5d8A096CcCb31b9D7bcE5afE812BE23e3D4690d/logo.png differ diff --git a/blockchains/smartchain/assets/0xF62723F8B7Bf9962d9577F099e7BB1Bdf9715610/info.json b/blockchains/smartchain/assets/0xF62723F8B7Bf9962d9577F099e7BB1Bdf9715610/info.json new file mode 100644 index 00000000..77bd9949 --- /dev/null +++ b/blockchains/smartchain/assets/0xF62723F8B7Bf9962d9577F099e7BB1Bdf9715610/info.json @@ -0,0 +1,11 @@ +{ + "name": "wLink", + "website": "https://wlink.finance", + "description": "Yield farm wLink on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xF62723F8B7Bf9962d9577F099e7BB1Bdf9715610", + "type": "BEP20", + "symbol": "wLink", + "decimals": 8, + "status": "active", + "id": "0xF62723F8B7Bf9962d9577F099e7BB1Bdf9715610" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF62723F8B7Bf9962d9577F099e7BB1Bdf9715610/logo.png b/blockchains/smartchain/assets/0xF62723F8B7Bf9962d9577F099e7BB1Bdf9715610/logo.png new file mode 100644 index 00000000..1f38d01f Binary files /dev/null and b/blockchains/smartchain/assets/0xF62723F8B7Bf9962d9577F099e7BB1Bdf9715610/logo.png differ diff --git a/blockchains/smartchain/assets/0xF6530899dE1dAaE4388E1286EBa6379d7DDf9c8F/info.json b/blockchains/smartchain/assets/0xF6530899dE1dAaE4388E1286EBa6379d7DDf9c8F/info.json new file mode 100644 index 00000000..c819119f --- /dev/null +++ b/blockchains/smartchain/assets/0xF6530899dE1dAaE4388E1286EBa6379d7DDf9c8F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aurora Finance", + "type": "BEP20", + "symbol": "AURO", + "decimals": 9, + "website": "https://auro.finance/", + "description": "Aurora Finance (AURO) is a new project that provides automated rewards to users who hold the token.", + "explorer": "https://bscscan.com/token/0xF6530899dE1dAaE4388E1286EBa6379d7DDf9c8F", + "status": "active", + "id": "0xF6530899dE1dAaE4388E1286EBa6379d7DDf9c8F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF6530899dE1dAaE4388E1286EBa6379d7DDf9c8F/logo.png b/blockchains/smartchain/assets/0xF6530899dE1dAaE4388E1286EBa6379d7DDf9c8F/logo.png new file mode 100644 index 00000000..500b4f38 Binary files /dev/null and b/blockchains/smartchain/assets/0xF6530899dE1dAaE4388E1286EBa6379d7DDf9c8F/logo.png differ diff --git a/blockchains/smartchain/assets/0xF65C1C0478eFDe3c19b49EcBE7ACc57BB6B1D713/info.json b/blockchains/smartchain/assets/0xF65C1C0478eFDe3c19b49EcBE7ACc57BB6B1D713/info.json new file mode 100644 index 00000000..9c027520 --- /dev/null +++ b/blockchains/smartchain/assets/0xF65C1C0478eFDe3c19b49EcBE7ACc57BB6B1D713/info.json @@ -0,0 +1,53 @@ +{ + "name": "Ape Swap LP BNB-BANANA", + "website": "https://apeswap.finance", + "description": "ApeSwap is an Automated Market Maker, Yield Farming, and Staking platform on Binance Smart Chain. ApeSwap was built by DeFi Apes, for DeFi Apes. We have a dedicated team of experienced monkeys, who have been in the crypto space for years.", + "explorer": "https://bscscan.com/token/0xF65C1C0478eFDe3c19b49EcBE7ACc57BB6B1D713", + "type": "BEP20", + "symbol": "APE-LP", + "decimals": 18, + "status": "active", + "id": "0xF65C1C0478eFDe3c19b49EcBE7ACc57BB6B1D713", + "links": [ + { + "name": "github", + "url": "https://github.com/ApeSwapFinance" + }, + { + "name": "docs", + "url": "https://apeswap.gitbook.io/apeswap-finance/" + }, + { + "name": "x", + "url": "https://x.com/ape_swap" + }, + { + "name": "telegram", + "url": "https://t.me/ape_swap" + }, + { + "name": "telegram_news", + "url": "https://t.me/ape_swap_news" + }, + { + "name": "medium", + "url": "https://ape-swap.medium.com/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AbVxfGRCSd/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Apeswap/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apeswap-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/apeswap-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF65C1C0478eFDe3c19b49EcBE7ACc57BB6B1D713/logo.png b/blockchains/smartchain/assets/0xF65C1C0478eFDe3c19b49EcBE7ACc57BB6B1D713/logo.png new file mode 100644 index 00000000..5676acf9 Binary files /dev/null and b/blockchains/smartchain/assets/0xF65C1C0478eFDe3c19b49EcBE7ACc57BB6B1D713/logo.png differ diff --git a/blockchains/smartchain/assets/0xF68C9Df95a18B2A5a5fa1124d79EEEffBaD0B6Fa/info.json b/blockchains/smartchain/assets/0xF68C9Df95a18B2A5a5fa1124d79EEEffBaD0B6Fa/info.json new file mode 100644 index 00000000..526843bf --- /dev/null +++ b/blockchains/smartchain/assets/0xF68C9Df95a18B2A5a5fa1124d79EEEffBaD0B6Fa/info.json @@ -0,0 +1,12 @@ +{ + "name": "Anyswap-BEP20", + "website": "https://bsc.anyswap.exchange", + "description": "Anyswap aims to create a multi-platform cross-chain DEX using Fusion’s DCRM technology.", + "explorer": "https://bscscan.com/token/0xF68C9Df95a18B2A5a5fa1124d79EEEffBaD0B6Fa", + "research": "", + "type": "BEP20", + "symbol": "ANY", + "decimals": 18, + "status": "active", + "id": "0xF68C9Df95a18B2A5a5fa1124d79EEEffBaD0B6Fa" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF68C9Df95a18B2A5a5fa1124d79EEEffBaD0B6Fa/logo.png b/blockchains/smartchain/assets/0xF68C9Df95a18B2A5a5fa1124d79EEEffBaD0B6Fa/logo.png new file mode 100644 index 00000000..5f2f0206 Binary files /dev/null and b/blockchains/smartchain/assets/0xF68C9Df95a18B2A5a5fa1124d79EEEffBaD0B6Fa/logo.png differ diff --git a/blockchains/smartchain/assets/0xF6Cb4ad242BaB681EfFc5dE40f7c8FF921a12d63/info.json b/blockchains/smartchain/assets/0xF6Cb4ad242BaB681EfFc5dE40f7c8FF921a12d63/info.json new file mode 100644 index 00000000..50c46ad1 --- /dev/null +++ b/blockchains/smartchain/assets/0xF6Cb4ad242BaB681EfFc5dE40f7c8FF921a12d63/info.json @@ -0,0 +1,40 @@ +{ + "name": "Centric SWAP", + "type": "BEP20", + "symbol": "CNS", + "decimals": 8, + "description": "Centric is an innovative dual-token digital currency & decentralized blockchain protocol built on sound economics that yields a return hourly.", + "explorer": "https://bscscan.com/token/0xF6Cb4ad242BaB681EfFc5dE40f7c8FF921a12d63", + "website": "https://www.centric.com/", + "status": "active", + "id": "0xF6Cb4ad242BaB681EfFc5dE40f7c8FF921a12d63", + "tags": [ + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/Centric-Org" + }, + { + "name": "x", + "url": "https://x.com/centricrise" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/joincentric" + }, + { + "name": "discord", + "url": "https://discord.com/invite/KjwY64h" + }, + { + "name": "telegram", + "url": "https://t.me/CentricChat" + }, + { + "name": "telegram_news", + "url": "https://t.me/centric" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF6Cb4ad242BaB681EfFc5dE40f7c8FF921a12d63/logo.png b/blockchains/smartchain/assets/0xF6Cb4ad242BaB681EfFc5dE40f7c8FF921a12d63/logo.png new file mode 100644 index 00000000..cdc8ccd2 Binary files /dev/null and b/blockchains/smartchain/assets/0xF6Cb4ad242BaB681EfFc5dE40f7c8FF921a12d63/logo.png differ diff --git a/blockchains/smartchain/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/info.json b/blockchains/smartchain/assets/0xF6D87E523512704C29E9b7cA3e9e6226bDCE3EA1/info.json new file mode 100644 index 00000000..44f897fe --- /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 00000000..d55ca6ed 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 new file mode 100644 index 00000000..2c1882c5 --- /dev/null +++ b/blockchains/smartchain/assets/0xF6a22B0593df74F218027A2d8b7953c9b4542AA1/info.json @@ -0,0 +1,54 @@ +{ + "name": "LinkSync", + "type": "BEP20", + "symbol": "SYNC", + "decimals": 9, + "website": "https://linksync.tech", + "description": "LinkSync aims to provide a safe trading environment to early crypto investors by designing an online platform that restricts access to scam projects while giving increased visibility and in- sights on promising projects. Our teams of experts will evaluate KYC, PoC, white papers, smart contracts and many more.", + "explorer": "https://bscscan.com/token/0xF6a22B0593df74F218027A2d8b7953c9b4542AA1", + "status": "active", + "id": "0xF6a22B0593df74F218027A2d8b7953c9b4542AA1", + "links": [ + { + "name": "x", + "url": "https://x.com/LinkSync_Tech" + }, + { + "name": "telegram", + "url": "https://t.me/LinkSyncOfficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/vfZzUxr3sz" + }, + { + "name": "whitepaper", + "url": "https://linksync.tech/Whitepaper.pdf" + }, + { + "name": "github", + "url": "https://github.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linksync/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/linksync" + }, + { + "name": "medium", + "url": "https://medium.com/@LinkSync" + }, + { + "name": "facebook", + "url": "https://facebook.com/Linksyncofficial" + } + ], + "tags": [ + "deflationary", + "nft", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF6a22B0593df74F218027A2d8b7953c9b4542AA1/logo.png b/blockchains/smartchain/assets/0xF6a22B0593df74F218027A2d8b7953c9b4542AA1/logo.png new file mode 100644 index 00000000..88a924f9 Binary files /dev/null and b/blockchains/smartchain/assets/0xF6a22B0593df74F218027A2d8b7953c9b4542AA1/logo.png differ diff --git a/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/info.json b/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/info.json new file mode 100644 index 00000000..dff0adfd --- /dev/null +++ b/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/info.json @@ -0,0 +1,52 @@ +{ + "name": "Galactic Quadrant", + "type": "BEP20", + "symbol": "GQ", + "decimals": 18, + "website": "https://outerringmmo.com/", + "description": "Galactic Quadrant is a utility token for the Outer Ring video game that allows making in-game and off-games purchases.", + "explorer": "https://bscscan.com/token/0xF700D4c708C2be1463E355F337603183D20E0808", + "status": "active", + "id": "0xF700D4c708C2be1463E355F337603183D20E0808", + "links": [ + { + "name": "x", + "url": "https://x.com/OuterRingMMO" + }, + { + "name": "github", + "url": "https://github.com/OuterRingMMO" + }, + { + "name": "telegram", + "url": "https://t.me/outerringofficialeng" + }, + { + "name": "blog", + "url": "https://outerringmmo.com/news/" + }, + { + "name": "docs", + "url": "https://outerringmmo.com/faqs/" + }, + { + "name": "whitepaper", + "url": "https://outerringmmo.com/whitepaper" + }, + { + "name": "facebook", + "url": "https://facebook.com/OuterRingMMO/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/outer-ring" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/outer-ring-mmo-gq/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/logo.png b/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/logo.png new file mode 100644 index 00000000..a498c4b2 Binary files /dev/null and b/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/logo.png differ diff --git a/blockchains/smartchain/assets/0xF70c14AD93905f39eE3Df2D4fB92b87c31D779e0/info.json b/blockchains/smartchain/assets/0xF70c14AD93905f39eE3Df2D4fB92b87c31D779e0/info.json new file mode 100644 index 00000000..53e17299 --- /dev/null +++ b/blockchains/smartchain/assets/0xF70c14AD93905f39eE3Df2D4fB92b87c31D779e0/info.json @@ -0,0 +1,33 @@ +{ + "name": "Mini Cardano", + "website": "https://minicardano.finance/", + "description": "The first and biggest Cardano ADA reflection token with auto-claim feature.", + "explorer": "https://bscscan.com/token/0xF70c14AD93905f39eE3Df2D4fB92b87c31D779e0", + "type": "BEP20", + "symbol": "MADA", + "decimals": 9, + "status": "active", + "id": "0xF70c14AD93905f39eE3Df2D4fB92b87c31D779e0", + "links": [ + { + "name": "x", + "url": "https://x.com/minicardano" + }, + { + "name": "telegram", + "url": "https://t.me/mini_cardano" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mini-cardano" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mini-cardano/" + }, + { + "name": "github", + "url": "https://github.com/Mini-Cardano/MiniCardano-Contract" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF70c14AD93905f39eE3Df2D4fB92b87c31D779e0/logo.png b/blockchains/smartchain/assets/0xF70c14AD93905f39eE3Df2D4fB92b87c31D779e0/logo.png new file mode 100644 index 00000000..5c7cb1c6 Binary files /dev/null and b/blockchains/smartchain/assets/0xF70c14AD93905f39eE3Df2D4fB92b87c31D779e0/logo.png differ diff --git a/blockchains/smartchain/assets/0xF73d8276C15Ce56b2f4AeE5920e62F767A7f3aEA/info.json b/blockchains/smartchain/assets/0xF73d8276C15Ce56b2f4AeE5920e62F767A7f3aEA/info.json new file mode 100644 index 00000000..4b44f811 --- /dev/null +++ b/blockchains/smartchain/assets/0xF73d8276C15Ce56b2f4AeE5920e62F767A7f3aEA/info.json @@ -0,0 +1,33 @@ +{ + "name": "TCGCoin 2.0", + "type": "BEP20", + "symbol": "TCG2", + "decimals": 9, + "website": "https://tcg.world/", + "description": "TCG Coin 2.0 is the foundation for two online economies bringing gaming and collectible trading and selling to the Binance chain.", + "explorer": "https://bscscan.com/token/0xF73d8276C15Ce56b2f4AeE5920e62F767A7f3aEA", + "status": "active", + "id": "0xF73d8276C15Ce56b2f4AeE5920e62F767A7f3aEA", + "links": [ + { + "name": "x", + "url": "https://x.com/OfficialTCGCoin/" + }, + { + "name": "telegram", + "url": "https://t.me/TCGGaming/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tcgcoin-2-0/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tcgcoin-2-0/" + }, + { + "name": "facebook", + "url": "https://facebook.com/TCGCoinOfficial/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF73d8276C15Ce56b2f4AeE5920e62F767A7f3aEA/logo.png b/blockchains/smartchain/assets/0xF73d8276C15Ce56b2f4AeE5920e62F767A7f3aEA/logo.png new file mode 100644 index 00000000..7184bfc0 Binary files /dev/null and b/blockchains/smartchain/assets/0xF73d8276C15Ce56b2f4AeE5920e62F767A7f3aEA/logo.png differ diff --git a/blockchains/smartchain/assets/0xF75031f6501ab9041D2BBE8FD1129bF2c5e66a8d/info.json b/blockchains/smartchain/assets/0xF75031f6501ab9041D2BBE8FD1129bF2c5e66a8d/info.json new file mode 100644 index 00000000..6c5c7cdf --- /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 00000000..6aedaa7f 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 new file mode 100644 index 00000000..c5db4c0a --- /dev/null +++ b/blockchains/smartchain/assets/0xF750A26EB0aCf95556e8529E72eD530f3b60f348/info.json @@ -0,0 +1,21 @@ +{ + "name": "GreenTrust", + "website": "https://www.greentrusttoken.com/", + "description": "GreenTrust is conceived as a sustainable DeFi application providing advanced features via a highly generalized programming language based on Binance Smart Chain. The goal of GreenTrust token is to contrast the carbon emission of the blockchain technology, among several other concepts being developed in partnership with GreenTrust, have the potential to contribute to substantially increase the efficiency of the computational industry, and ultimately reduce its impact on the environment.", + "explorer": "https://bscscan.com/token/0xf750a26eb0acf95556e8529e72ed530f3b60f348", + "type": "BEP20", + "symbol": "GNT", + "decimals": 18, + "status": "active", + "id": "0xF750A26EB0aCf95556e8529E72eD530f3b60f348", + "links": [ + { + "name": "x", + "url": "https://x.com/GNT_token" + }, + { + "name": "telegram", + "url": "https://t.me/greentrusttoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF750A26EB0aCf95556e8529E72eD530f3b60f348/logo.png b/blockchains/smartchain/assets/0xF750A26EB0aCf95556e8529E72eD530f3b60f348/logo.png new file mode 100644 index 00000000..e39789b7 Binary files /dev/null and b/blockchains/smartchain/assets/0xF750A26EB0aCf95556e8529E72eD530f3b60f348/logo.png differ diff --git a/blockchains/smartchain/assets/0xF7844CB890F4C339c497aeAb599aBDc3c874B67A/info.json b/blockchains/smartchain/assets/0xF7844CB890F4C339c497aeAb599aBDc3c874B67A/info.json new file mode 100644 index 00000000..f4c122e5 --- /dev/null +++ b/blockchains/smartchain/assets/0xF7844CB890F4C339c497aeAb599aBDc3c874B67A/info.json @@ -0,0 +1,11 @@ +{ + "name": "NFT-Art.Finance", + "symbol": "NFTART", + "type": "BEP20", + "decimals": 9, + "description": "Powering a new NFT/DeFi platform for all types of content.", + "website": "https://nft-art.finance/", + "explorer": "https://bscscan.com/token/0xf7844cb890f4c339c497aeab599abdc3c874b67a", + "status": "active", + "id": "0xF7844CB890F4C339c497aeAb599aBDc3c874B67A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF7844CB890F4C339c497aeAb599aBDc3c874B67A/logo.png b/blockchains/smartchain/assets/0xF7844CB890F4C339c497aeAb599aBDc3c874B67A/logo.png new file mode 100644 index 00000000..f78984db Binary files /dev/null and b/blockchains/smartchain/assets/0xF7844CB890F4C339c497aeAb599aBDc3c874B67A/logo.png differ diff --git a/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/info.json b/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/info.json new file mode 100644 index 00000000..ba766f1a --- /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 00000000..2c15abc9 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 new file mode 100644 index 00000000..eca9313f --- /dev/null +++ b/blockchains/smartchain/assets/0xF7A086BFf67DeD4Aa785e8a0a81D4345d9bb4740/info.json @@ -0,0 +1,28 @@ +{ + "name": "MetaSafeMoon", + "website": "https://metasafemoon.net", + "description": "The first BEP20 Token that will make it possible for you to buy land on the moon.", + "explorer": "https://bscscan.com/token/0xF7A086BFf67DeD4Aa785e8a0a81D4345d9bb4740", + "type": "BEP20", + "symbol": "METASFMA", + "decimals": 9, + "status": "active", + "id": "0xF7A086BFf67DeD4Aa785e8a0a81D4345d9bb4740", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/MetaSafeMoonOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metasafemoon/" + }, + { + "name": "x", + "url": "https://x.com/MetaSafeMoon" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF7A086BFf67DeD4Aa785e8a0a81D4345d9bb4740/logo.png b/blockchains/smartchain/assets/0xF7A086BFf67DeD4Aa785e8a0a81D4345d9bb4740/logo.png new file mode 100644 index 00000000..f135061b Binary files /dev/null and b/blockchains/smartchain/assets/0xF7A086BFf67DeD4Aa785e8a0a81D4345d9bb4740/logo.png differ diff --git a/blockchains/smartchain/assets/0xF7F80f8437ACb6338329677280172368676b3401/info.json b/blockchains/smartchain/assets/0xF7F80f8437ACb6338329677280172368676b3401/info.json new file mode 100644 index 00000000..0701c4ff --- /dev/null +++ b/blockchains/smartchain/assets/0xF7F80f8437ACb6338329677280172368676b3401/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tether/EURO", + "type": "BEP20", + "symbol": "EUR/T", + "decimals": 6, + "website": "https://tether.work/", + "description": "EUR/T offers a comprehensive solution to the major problems faced by the traditional, fiat-driven monetary system. Building a crypto powered ecosystem comprising EUR/T Token.", + "explorer": "https://bscscan.com/token/0xF7F80f8437ACb6338329677280172368676b3401", + "status": "active", + "id": "0xF7F80f8437ACb6338329677280172368676b3401" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF7F80f8437ACb6338329677280172368676b3401/logo.png b/blockchains/smartchain/assets/0xF7F80f8437ACb6338329677280172368676b3401/logo.png new file mode 100644 index 00000000..f6cf16da Binary files /dev/null and b/blockchains/smartchain/assets/0xF7F80f8437ACb6338329677280172368676b3401/logo.png differ diff --git a/blockchains/smartchain/assets/0xF7d6243b937136d432AdBc643f311b5A9436b0B0/info.json b/blockchains/smartchain/assets/0xF7d6243b937136d432AdBc643f311b5A9436b0B0/info.json new file mode 100644 index 00000000..3216270f --- /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 00000000..fde074ac 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 00000000..bf2a16bc --- /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 00000000..bfb78443 Binary files /dev/null and b/blockchains/smartchain/assets/0xF8228D64435B55687157a5C9b132642FE04aC381/logo.png differ diff --git a/blockchains/smartchain/assets/0xF823f18d13DF1ffdCed206708D389Dd455Bb802b/info.json b/blockchains/smartchain/assets/0xF823f18d13DF1ffdCed206708D389Dd455Bb802b/info.json new file mode 100644 index 00000000..4792cf75 --- /dev/null +++ b/blockchains/smartchain/assets/0xF823f18d13DF1ffdCed206708D389Dd455Bb802b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cashcow Finance", + "website": "https://cashcow.finance", + "description": "CCF tokens will be operating on Binance Smart Chain's main page, adopting the BEP-20 protocol.", + "explorer": "https://bscscan.com/token/0xf823f18d13df1ffdced206708d389dd455bb802b", + "type": "BEP20", + "symbol": "CCF", + "decimals": 18, + "status": "active", + "id": "0xF823f18d13DF1ffdCed206708D389Dd455Bb802b" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF823f18d13DF1ffdCed206708D389Dd455Bb802b/logo.png b/blockchains/smartchain/assets/0xF823f18d13DF1ffdCed206708D389Dd455Bb802b/logo.png new file mode 100644 index 00000000..e9fb4cfd Binary files /dev/null and b/blockchains/smartchain/assets/0xF823f18d13DF1ffdCed206708D389Dd455Bb802b/logo.png differ diff --git a/blockchains/smartchain/assets/0xF8584516b7d2c156C763C874d6813E06b57e4cB5/info.json b/blockchains/smartchain/assets/0xF8584516b7d2c156C763C874d6813E06b57e4cB5/info.json new file mode 100644 index 00000000..36ede4dc --- /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 00000000..589aee44 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 00000000..e73a7007 --- /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 00000000..cd8e72d7 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 new file mode 100644 index 00000000..68e9dd65 --- /dev/null +++ b/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/info.json @@ -0,0 +1,16 @@ +{ + "name": "BNB pegged 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", + "research": "https://research.binance.com/en/projects/chainlink", + "type": "BEP20", + "symbol": "LINK", + "decimals": 18, + "status": "active", + "id": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD", + "tags": [ + "binance-peg", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/logo.png b/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/logo.png new file mode 100644 index 00000000..ab55f5e2 Binary files /dev/null and b/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/logo.png differ diff --git a/blockchains/smartchain/assets/0xF8fC63200e181439823251020d691312FDcF5090/info.json b/blockchains/smartchain/assets/0xF8fC63200e181439823251020d691312FDcF5090/info.json new file mode 100644 index 00000000..b86ee50d --- /dev/null +++ b/blockchains/smartchain/assets/0xF8fC63200e181439823251020d691312FDcF5090/info.json @@ -0,0 +1,11 @@ +{ + "name": "Exzocoin Token", + "website": "https://exzocoin.com/", + "description": "ExzoCoin 2.0 (EXZO) is a utility token that will be utilized on our decentralized exchange mobile application", + "explorer": "https://bscscan.com/token/0xF8fC63200e181439823251020d691312FDcF5090", + "type": "BEP20", + "symbol": "EXZO", + "decimals": 9, + "status": "active", + "id": "0xF8fC63200e181439823251020d691312FDcF5090" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF8fC63200e181439823251020d691312FDcF5090/logo.png b/blockchains/smartchain/assets/0xF8fC63200e181439823251020d691312FDcF5090/logo.png new file mode 100644 index 00000000..c7902d6e Binary files /dev/null and b/blockchains/smartchain/assets/0xF8fC63200e181439823251020d691312FDcF5090/logo.png differ diff --git a/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/info.json b/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/info.json new file mode 100644 index 00000000..f0d89cda --- /dev/null +++ b/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/info.json @@ -0,0 +1,30 @@ +{ + "name": "Venus DOGE", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9", + "type": "BEP20", + "symbol": "vDOGE", + "decimals": 8, + "status": "active", + "id": "0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9", + "links": [ + { + "name": "github", + "url": "https://github.com/VenusProtocol/venus-protocol" + }, + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/logo.png b/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/logo.png new file mode 100644 index 00000000..18c53b17 Binary files /dev/null and b/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/logo.png differ diff --git a/blockchains/smartchain/assets/0xF93f6b686f4A6557151455189a9173735D668154/info.json b/blockchains/smartchain/assets/0xF93f6b686f4A6557151455189a9173735D668154/info.json new file mode 100644 index 00000000..16227d25 --- /dev/null +++ b/blockchains/smartchain/assets/0xF93f6b686f4A6557151455189a9173735D668154/info.json @@ -0,0 +1,46 @@ +{ + "name": "LFG Token", + "symbol": "LFG", + "type": "BEP20", + "decimals": 18, + "description": "GAMΞRSΞ is the new home for NFT gaming and the metaverse social economy. Our cross-chain, cross-platform, and cross-verse solutions are unifying the fragmented NFT gaming ecosystem.", + "website": "https://www.gamerse.com", + "explorer": "https://bscscan.com/token/0xF93f6b686f4A6557151455189a9173735D668154", + "status": "active", + "id": "0xF93f6b686f4A6557151455189a9173735D668154", + "links": [ + { + "name": "x", + "url": "https://x.com/Gamersenft" + }, + { + "name": "telegram", + "url": "https://t.me/gamersecommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/SVAXQ7rNrp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamerse/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gamerse" + }, + { + "name": "whitepaper", + "url": "https://gamerse.gitbook.io/gamerse/" + }, + { + "name": "medium", + "url": "https://gamerse.medium.com/" + } + ], + "tags": [ + "nft", + "gamefi", + "metaverse" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF93f6b686f4A6557151455189a9173735D668154/logo.png b/blockchains/smartchain/assets/0xF93f6b686f4A6557151455189a9173735D668154/logo.png new file mode 100644 index 00000000..4c99dd16 Binary files /dev/null and b/blockchains/smartchain/assets/0xF93f6b686f4A6557151455189a9173735D668154/logo.png differ diff --git a/blockchains/smartchain/assets/0xF94CA0B303e52d68b63626Bed7f680fa4DC3f779/info.json b/blockchains/smartchain/assets/0xF94CA0B303e52d68b63626Bed7f680fa4DC3f779/info.json new file mode 100644 index 00000000..2f4a7f8f --- /dev/null +++ b/blockchains/smartchain/assets/0xF94CA0B303e52d68b63626Bed7f680fa4DC3f779/info.json @@ -0,0 +1,21 @@ +{ + "name": "UnderDog", + "website": "https://underdog.finance", + "description": "UnderDog.Finance is a community based project, we are a deflationary token with 1 % burn and 4 % rewards to holders for every transaction", + "explorer": "https://bscscan.com/token/0xf94ca0b303e52d68b63626bed7f680fa4dc3f779", + "type": "BEP20", + "symbol": "DOG", + "decimals": 9, + "status": "active", + "id": "0xF94CA0B303e52d68b63626Bed7f680fa4DC3f779", + "links": [ + { + "name": "x", + "url": "https://x.com/@underdogdefi" + }, + { + "name": "telegram", + "url": "https://t.me/underdogfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF94CA0B303e52d68b63626Bed7f680fa4DC3f779/logo.png b/blockchains/smartchain/assets/0xF94CA0B303e52d68b63626Bed7f680fa4DC3f779/logo.png new file mode 100644 index 00000000..95f4c1f1 Binary files /dev/null and b/blockchains/smartchain/assets/0xF94CA0B303e52d68b63626Bed7f680fa4DC3f779/logo.png differ diff --git a/blockchains/smartchain/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json b/blockchains/smartchain/assets/0xF9523E369c5f55ad72DbAA75B0a9b92B3D8b147e/info.json new file mode 100644 index 00000000..1780ad52 --- /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 00000000..c866fd61 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 new file mode 100644 index 00000000..88241acd --- /dev/null +++ b/blockchains/smartchain/assets/0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6/info.json @@ -0,0 +1,29 @@ +{ + "name": "Goose Golden Egg", + "website": "https://www.goosedefi.com/", + "description": "2nd generation yield farming on binance smart chain", + "explorer": "https://bscscan.com/token/0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6", + "type": "BEP20", + "symbol": "EGG", + "decimals": 18, + "status": "active", + "id": "0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6", + "links": [ + { + "name": "x", + "url": "https://x.com/FinanceGoose" + }, + { + "name": "telegram", + "url": "https://t.me/goosedefi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Ezh5KH9epd" + }, + { + "name": "medium", + "url": "https://goosefinance.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6/logo.png b/blockchains/smartchain/assets/0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6/logo.png new file mode 100644 index 00000000..7f1845b1 Binary files /dev/null and b/blockchains/smartchain/assets/0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6/logo.png differ diff --git a/blockchains/smartchain/assets/0xF95a5532D67C944dfa7EDDD2f8c358Fe0dc7FAc2/info.json b/blockchains/smartchain/assets/0xF95a5532D67C944dfa7EDDD2f8c358Fe0dc7FAc2/info.json new file mode 100644 index 00000000..9f9378d3 --- /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 00000000..fe8f75a7 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 00000000..0883c7aa --- /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 00000000..4be71cd2 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 new file mode 100644 index 00000000..d11c9276 --- /dev/null +++ b/blockchains/smartchain/assets/0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835/info.json @@ -0,0 +1,32 @@ +{ + "name": "Symbiosis", + "type": "BEP20", + "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://bscscan.com/token/0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835", + "status": "active", + "id": "0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835", + "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/smartchain/assets/0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835/logo.png b/blockchains/smartchain/assets/0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835/logo.png new file mode 100644 index 00000000..26f3dbd5 Binary files /dev/null and b/blockchains/smartchain/assets/0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835/logo.png differ diff --git a/blockchains/smartchain/assets/0xF9A5E6533E4Cb0791eCBb79F710EE8eE980Eb853/info.json b/blockchains/smartchain/assets/0xF9A5E6533E4Cb0791eCBb79F710EE8eE980Eb853/info.json new file mode 100644 index 00000000..c3d0ae29 --- /dev/null +++ b/blockchains/smartchain/assets/0xF9A5E6533E4Cb0791eCBb79F710EE8eE980Eb853/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gold Bee", + "website": "http://goldbee.org/", + "description": "Gold Bee Token is a platfrom for the future of funding that is built on top of the Smart Chain blockchain.It accelerates growth of start-up companies buy offering tools and services that save both time and resources GBE Token", + "explorer": "https://bscscan.com/token/0xf9a5e6533e4cb0791ecbb79f710ee8ee980eb853", + "type": "BEP20", + "symbol": "GBE", + "decimals": 18, + "status": "active", + "id": "0xF9A5E6533E4Cb0791eCBb79F710EE8eE980Eb853" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF9A5E6533E4Cb0791eCBb79F710EE8eE980Eb853/logo.png b/blockchains/smartchain/assets/0xF9A5E6533E4Cb0791eCBb79F710EE8eE980Eb853/logo.png new file mode 100644 index 00000000..2b17dcdc Binary files /dev/null and b/blockchains/smartchain/assets/0xF9A5E6533E4Cb0791eCBb79F710EE8eE980Eb853/logo.png differ diff --git a/blockchains/smartchain/assets/0xF9d6DDF44016953dBf7aB135A0F64d7A41870EDE/info.json b/blockchains/smartchain/assets/0xF9d6DDF44016953dBf7aB135A0F64d7A41870EDE/info.json new file mode 100644 index 00000000..7de9b9c8 --- /dev/null +++ b/blockchains/smartchain/assets/0xF9d6DDF44016953dBf7aB135A0F64d7A41870EDE/info.json @@ -0,0 +1,37 @@ +{ + "name": "Doge Floki Coin", + "type": "BEP20", + "symbol": "DOFI", + "decimals": 9, + "website": "https://dogefloki.site", + "description": "Doge Floki Coin DOFI is a new cryptocurrency born to emulate dogecoin with the help of Elon Musk", + "explorer": "https://bscscan.com/token/0xF9d6DDF44016953dBf7aB135A0F64d7A41870EDE", + "status": "active", + "id": "0xF9d6DDF44016953dBf7aB135A0F64d7A41870EDE", + "links": [ + { + "name": "x", + "url": "https://x.com/dogeflokiglobal" + }, + { + "name": "whitepaper", + "url": "https://dogefloki.site/whitepaper.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/dogeflokiglobal" + }, + { + "name": "telegram_news", + "url": "https://t.me/dogeflokinews" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/doge-floki-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/doge-floki-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF9d6DDF44016953dBf7aB135A0F64d7A41870EDE/logo.png b/blockchains/smartchain/assets/0xF9d6DDF44016953dBf7aB135A0F64d7A41870EDE/logo.png new file mode 100644 index 00000000..79332798 Binary files /dev/null and b/blockchains/smartchain/assets/0xF9d6DDF44016953dBf7aB135A0F64d7A41870EDE/logo.png differ diff --git a/blockchains/smartchain/assets/0xFA344C08C93066A4d6266063C6Ebc63925a18467/info.json b/blockchains/smartchain/assets/0xFA344C08C93066A4d6266063C6Ebc63925a18467/info.json new file mode 100644 index 00000000..04678ca5 --- /dev/null +++ b/blockchains/smartchain/assets/0xFA344C08C93066A4d6266063C6Ebc63925a18467/info.json @@ -0,0 +1,12 @@ +{ + "name": "SafeBull", + "website": "https://safe-bull.com", + "description": "SafeBull plans to develop a non-fungible token (NFT) exchange, as well as charity projects and crypto educational apps.", + "explorer": "https://bscscan.com/token/0xFA344C08C93066A4d6266063C6Ebc63925a18467", + "research": "", + "type": "BEP20", + "symbol": "SAFEBULL", + "decimals": 9, + "status": "active", + "id": "0xFA344C08C93066A4d6266063C6Ebc63925a18467" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFA344C08C93066A4d6266063C6Ebc63925a18467/logo.png b/blockchains/smartchain/assets/0xFA344C08C93066A4d6266063C6Ebc63925a18467/logo.png new file mode 100644 index 00000000..13fe0f53 Binary files /dev/null and b/blockchains/smartchain/assets/0xFA344C08C93066A4d6266063C6Ebc63925a18467/logo.png differ diff --git a/blockchains/smartchain/assets/0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5/info.json b/blockchains/smartchain/assets/0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5/info.json new file mode 100644 index 00000000..84ebf9ea --- /dev/null +++ b/blockchains/smartchain/assets/0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5/info.json @@ -0,0 +1,45 @@ +{ + "name": "Affinity", + "type": "BEP20", + "symbol": "AFNTY", + "decimals": 9, + "website": "https://www.affinitybsc.com", + "description": "Affinity was built with community as its guiding principle. It starts by giving the most rewards of any reflection token currently on the market — 84% of all fees collected are put directy back into holder’s wallets in the form of BUSD, Cardano ADA, and Affinity. It continues into this project’s primary use case, ADAPT, which is built to make sending cryptocurrency to friends, family and businesses secure and easier than ever", + "explorer": "https://bscscan.com/token/0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5", + "status": "active", + "id": "0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5", + "links": [ + { + "name": "x", + "url": "https://x.com/AffinityBSC" + }, + { + "name": "reddit", + "url": "https://reddit.com/AffinityBSC" + }, + { + "name": "telegram", + "url": "https://t.me/AffinityBSC" + }, + { + "name": "discord", + "url": "https://discord.com/invite/affinitybsc" + }, + { + "name": "whitepaper", + "url": "https://affinitybsc.com/Affinitywhitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/safeaffinity/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCtbkIqnNuKbgWHYH7ndb1Pg" + } + ], + "tags": [ + "defi", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5/logo.png b/blockchains/smartchain/assets/0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5/logo.png new file mode 100644 index 00000000..c2b15bea Binary files /dev/null and b/blockchains/smartchain/assets/0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5/logo.png differ diff --git a/blockchains/smartchain/assets/0xFAd8E46123D7b4e77496491769C167FF894d2ACB/info.json b/blockchains/smartchain/assets/0xFAd8E46123D7b4e77496491769C167FF894d2ACB/info.json new file mode 100644 index 00000000..345dd154 --- /dev/null +++ b/blockchains/smartchain/assets/0xFAd8E46123D7b4e77496491769C167FF894d2ACB/info.json @@ -0,0 +1,33 @@ +{ + "name": "Fox Finance", + "website": "https://foxfinance.io/", + "description": "Fox Finance is a progressive auto-staking token that pays out rewards just for holding it within your wallet. It also rewards community environmental action via Fox in Action token drops.", + "explorer": "https://bscscan.com/token/0xFAd8E46123D7b4e77496491769C167FF894d2ACB", + "type": "BEP20", + "symbol": "FOX", + "decimals": 9, + "status": "active", + "id": "0xFAd8E46123D7b4e77496491769C167FF894d2ACB", + "links": [ + { + "name": "x", + "url": "https://x.com/foxfinancebsc" + }, + { + "name": "telegram", + "url": "https://t.me/foxfinancebsc" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZAvHGr3VGS" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/foxfinance/" + }, + { + "name": "medium", + "url": "https://medium.com/@foxfinance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFAd8E46123D7b4e77496491769C167FF894d2ACB/logo.png b/blockchains/smartchain/assets/0xFAd8E46123D7b4e77496491769C167FF894d2ACB/logo.png new file mode 100644 index 00000000..cd647cb5 Binary files /dev/null and b/blockchains/smartchain/assets/0xFAd8E46123D7b4e77496491769C167FF894d2ACB/logo.png differ diff --git a/blockchains/smartchain/assets/0xFBE22D27B6e153244882fD7bdfE7C6109918281B/info.json b/blockchains/smartchain/assets/0xFBE22D27B6e153244882fD7bdfE7C6109918281B/info.json new file mode 100644 index 00000000..31625096 --- /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 00000000..78152f37 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 new file mode 100644 index 00000000..ab195f32 --- /dev/null +++ b/blockchains/smartchain/assets/0xFBb4F2f342c6DaaB63Ab85b0226716C4D1e26F36/info.json @@ -0,0 +1,25 @@ +{ + "name": "Coinracer", + "website": "https://coinracer.io", + "description": "The one and the only low-poly multiplayer blockchain-powered skill-based racing game you can play to earn! With our smart contract-backed CoinracerSmartPool back-end, you can race and earn $CRACE tokens completely decentralized.", + "explorer": "https://bscscan.com/token/0xFBb4F2f342c6DaaB63Ab85b0226716C4D1e26F36", + "type": "BEP20", + "symbol": "CRACE", + "decimals": 18, + "status": "active", + "id": "0xFBb4F2f342c6DaaB63Ab85b0226716C4D1e26F36", + "links": [ + { + "name": "x", + "url": "https://x.com/coin_racer" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/uVEV57tKZ05hODY0" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinracer" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFBb4F2f342c6DaaB63Ab85b0226716C4D1e26F36/logo.png b/blockchains/smartchain/assets/0xFBb4F2f342c6DaaB63Ab85b0226716C4D1e26F36/logo.png new file mode 100644 index 00000000..b00f0a92 Binary files /dev/null and b/blockchains/smartchain/assets/0xFBb4F2f342c6DaaB63Ab85b0226716C4D1e26F36/logo.png differ diff --git a/blockchains/smartchain/assets/0xFBdF0366F800CC79d6663DA26bc0BF21FB455Aa6/info.json b/blockchains/smartchain/assets/0xFBdF0366F800CC79d6663DA26bc0BF21FB455Aa6/info.json new file mode 100644 index 00000000..aed97d4a --- /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 00000000..5716d513 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 00000000..73714609 --- /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 00000000..4d148ee9 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 new file mode 100644 index 00000000..f1dc45ed --- /dev/null +++ b/blockchains/smartchain/assets/0xFC206f429d55c71cb7294EfF40c6ADb20dC21508/info.json @@ -0,0 +1,45 @@ +{ + "name": "DeHub", + "type": "BEP20", + "symbol": "DeHub", + "decimals": 5, + "website": "https://www.dehub.net/", + "description": "Blockchain's first gaming and streaming aggregator platform. ", + "explorer": "https://bscscan.com/token/0xFC206f429d55c71cb7294EfF40c6ADb20dC21508", + "status": "active", + "id": "0xFC206f429d55c71cb7294EfF40c6ADb20dC21508", + "links": [ + { + "name": "x", + "url": "https://x.com/dehub_official" + }, + { + "name": "github", + "url": "https://github.com/DeHubToken/dehub-public-contract" + }, + { + "name": "telegram", + "url": "https://t.me/Dehubofficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/McWBqA6xJR" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dehub/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dehub" + }, + { + "name": "whitepaper", + "url": "https://www.dehub.net/uploads/Dehub%20Whitepaper%20V2.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@dehub.bsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFC206f429d55c71cb7294EfF40c6ADb20dC21508/logo.png b/blockchains/smartchain/assets/0xFC206f429d55c71cb7294EfF40c6ADb20dC21508/logo.png new file mode 100644 index 00000000..450c5751 Binary files /dev/null and b/blockchains/smartchain/assets/0xFC206f429d55c71cb7294EfF40c6ADb20dC21508/logo.png differ diff --git a/blockchains/smartchain/assets/0xFC3dA4A1b6faDaB364039525dD2AB7c0c16521cd/info.json b/blockchains/smartchain/assets/0xFC3dA4A1b6faDaB364039525dD2AB7c0c16521cd/info.json new file mode 100644 index 00000000..971693f1 --- /dev/null +++ b/blockchains/smartchain/assets/0xFC3dA4A1b6faDaB364039525dD2AB7c0c16521cd/info.json @@ -0,0 +1,57 @@ +{ + "name": "MRWEB", + "symbol": "AMA", + "type": "BEP20", + "decimals": 18, + "description": "MRweb is a peer-to-peer Internet currency that enables instant, near-zero cost payments to anyone in the world. MRweb is an open source.", + "website": "https://mrweb.finance", + "explorer": "https://bscscan.com/token/0xFC3dA4A1b6faDaB364039525dD2AB7c0c16521cd", + "status": "active", + "id": "0xFC3dA4A1b6faDaB364039525dD2AB7c0c16521cd", + "links": [ + { + "name": "github", + "url": "https://github.com/Mrwebfi" + }, + { + "name": "whitepaper", + "url": "https://mrweb.finance/WhitePaper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/Mrweb-finance-108394238009953" + }, + { + "name": "telegram", + "url": "https://t.me/mrwebfinance" + }, + { + "name": "telegram_news", + "url": "https://t.me/Mrwebfinance_official" + }, + { + "name": "medium", + "url": "https://mrwebfi.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCvYLTpHvy4X-FE9Gp7H0gbw" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mrweb-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mrweb-finance" + }, + { + "name": "x", + "url": "https://x.com/MrwebFinance" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Mrweb_Finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFC3dA4A1b6faDaB364039525dD2AB7c0c16521cd/logo.png b/blockchains/smartchain/assets/0xFC3dA4A1b6faDaB364039525dD2AB7c0c16521cd/logo.png new file mode 100644 index 00000000..db0792f6 Binary files /dev/null and b/blockchains/smartchain/assets/0xFC3dA4A1b6faDaB364039525dD2AB7c0c16521cd/logo.png differ diff --git a/blockchains/smartchain/assets/0xFC646D0B564bf191B3d3adF2B620a792E485e6Da/info.json b/blockchains/smartchain/assets/0xFC646D0B564bf191B3d3adF2B620a792E485e6Da/info.json new file mode 100644 index 00000000..d1c4a28d --- /dev/null +++ b/blockchains/smartchain/assets/0xFC646D0B564bf191B3d3adF2B620a792E485e6Da/info.json @@ -0,0 +1,25 @@ +{ + "name": "HalfPizza Token", + "type": "BEP20", + "symbol": "PIZA", + "decimals": 18, + "website": "https://halfpizza.com", + "description": "Decentralized Finance, Reward-based and Decentralized Autonomous Organization, BTC price predition, NFT market and so on.", + "explorer": "https://bscscan.com/token/0xFC646D0B564bf191B3d3adF2B620a792E485e6Da", + "status": "active", + "id": "0xFC646D0B564bf191B3d3adF2B620a792E485e6Da", + "links": [ + { + "name": "x", + "url": "https://x.com/HalfPizza3" + }, + { + "name": "github", + "url": "https://github.com/halfpizza" + }, + { + "name": "telegram", + "url": "https://t.me/s2LPWnB1200zMmY0" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFC646D0B564bf191B3d3adF2B620a792E485e6Da/logo.png b/blockchains/smartchain/assets/0xFC646D0B564bf191B3d3adF2B620a792E485e6Da/logo.png new file mode 100644 index 00000000..02405d35 Binary files /dev/null and b/blockchains/smartchain/assets/0xFC646D0B564bf191B3d3adF2B620a792E485e6Da/logo.png differ diff --git a/blockchains/smartchain/assets/0xFD42728b76772A82cCaD527E298Dd15A55F4DdD6/info.json b/blockchains/smartchain/assets/0xFD42728b76772A82cCaD527E298Dd15A55F4DdD6/info.json new file mode 100644 index 00000000..03d0f655 --- /dev/null +++ b/blockchains/smartchain/assets/0xFD42728b76772A82cCaD527E298Dd15A55F4DdD6/info.json @@ -0,0 +1,11 @@ +{ + "name": "KarenCoin", + "website": "https://www.karencointoken.com/", + "description": "Karen Coin is a meme based token built on value driven tokenomics", + "explorer": "https://bscscan.com/token/0xFD42728b76772A82cCaD527E298Dd15A55F4DdD6", + "type": "BEP20", + "symbol": "KAREN", + "decimals": 9, + "status": "active", + "id": "0xFD42728b76772A82cCaD527E298Dd15A55F4DdD6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFD42728b76772A82cCaD527E298Dd15A55F4DdD6/logo.png b/blockchains/smartchain/assets/0xFD42728b76772A82cCaD527E298Dd15A55F4DdD6/logo.png new file mode 100644 index 00000000..8157df69 Binary files /dev/null and b/blockchains/smartchain/assets/0xFD42728b76772A82cCaD527E298Dd15A55F4DdD6/logo.png differ diff --git a/blockchains/smartchain/assets/0xFE7E350009a1f3915352022B1BFc2087D7B1D1CD/info.json b/blockchains/smartchain/assets/0xFE7E350009a1f3915352022B1BFc2087D7B1D1CD/info.json new file mode 100644 index 00000000..c9d74932 --- /dev/null +++ b/blockchains/smartchain/assets/0xFE7E350009a1f3915352022B1BFc2087D7B1D1CD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Titscoin", + "website": "https://titscoin.io/", + "description": "Tits Coin is a the first coin ever designed to leverage the revolutionary power of cryptocurrency in the 21st century to find a cure for Breast Cancer once and for all.", + "explorer": "https://bscscan.com/token/0xFE7E350009a1f3915352022B1BFc2087D7B1D1CD", + "type": "BEP20", + "symbol": "TITS", + "decimals": 9, + "status": "active", + "id": "0xFE7E350009a1f3915352022B1BFc2087D7B1D1CD" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFE7E350009a1f3915352022B1BFc2087D7B1D1CD/logo.png b/blockchains/smartchain/assets/0xFE7E350009a1f3915352022B1BFc2087D7B1D1CD/logo.png new file mode 100644 index 00000000..4a2edabd Binary files /dev/null and b/blockchains/smartchain/assets/0xFE7E350009a1f3915352022B1BFc2087D7B1D1CD/logo.png differ diff --git a/blockchains/smartchain/assets/0xFEbfA339E44c28E2aa9E62Ea1027C9CB4e378605/info.json b/blockchains/smartchain/assets/0xFEbfA339E44c28E2aa9E62Ea1027C9CB4e378605/info.json new file mode 100644 index 00000000..676cdcb7 --- /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 00000000..79704ce1 Binary files /dev/null and b/blockchains/smartchain/assets/0xFEbfA339E44c28E2aa9E62Ea1027C9CB4e378605/logo.png differ diff --git a/blockchains/smartchain/assets/0xFF3F9cc3083580baFD140e8f05cf2d7C3AF15b53/info.json b/blockchains/smartchain/assets/0xFF3F9cc3083580baFD140e8f05cf2d7C3AF15b53/info.json new file mode 100644 index 00000000..ac3f91c6 --- /dev/null +++ b/blockchains/smartchain/assets/0xFF3F9cc3083580baFD140e8f05cf2d7C3AF15b53/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ultraman Token", + "website": "https://CryptoUltraman.com/", + "description": "The Creation Token (UMAN) is the native token of Crypto Ultraman. It allows its holders to freely create Crypto Ultraman works, which will be permanently stored and publicly visible on the BSC blockchain. Therefore, simplifying the creation itself makes IP more diversified and personalized in its development. This opens up a whole new dimension for NFT Ultraman, in which the value level of each piece of NFT in the entire market is strongly influenced by consumer preferences.", + "explorer": "https://bscscan.com/token/0xFF3F9cc3083580baFD140e8f05cf2d7C3AF15b53", + "type": "BEP20", + "symbol": "UMAN", + "decimals": 18, + "status": "active", + "id": "0xFF3F9cc3083580baFD140e8f05cf2d7C3AF15b53" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFF3F9cc3083580baFD140e8f05cf2d7C3AF15b53/logo.png b/blockchains/smartchain/assets/0xFF3F9cc3083580baFD140e8f05cf2d7C3AF15b53/logo.png new file mode 100644 index 00000000..6147623d Binary files /dev/null and b/blockchains/smartchain/assets/0xFF3F9cc3083580baFD140e8f05cf2d7C3AF15b53/logo.png differ diff --git a/blockchains/smartchain/assets/0xFF4A68eE05086b5F5b5713f3781A3DBc45de8888/info.json b/blockchains/smartchain/assets/0xFF4A68eE05086b5F5b5713f3781A3DBc45de8888/info.json new file mode 100644 index 00000000..f294ed6c --- /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/0xFF749E976358791a3799262B8FccedF8D0888563/info.json b/blockchains/smartchain/assets/0xFF749E976358791a3799262B8FccedF8D0888563/info.json new file mode 100644 index 00000000..14848c34 --- /dev/null +++ b/blockchains/smartchain/assets/0xFF749E976358791a3799262B8FccedF8D0888563/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shopaneum", + "type": "BEP20", + "symbol": "SPN", + "decimals": 18, + "website": "https://shopaneum.com", + "description": "Shopaneum is the e-commerce platform, Allowing consumers to enjoy online shopping seamlessy, securely, and cost effectively. It serves as the bridge between the cryptocurrency world and the e-commerce world to satisfy consumers who previously couldn't shop while using digital assets.", + "explorer": "https://bscscan.com/token/0xFF749E976358791a3799262B8FccedF8D0888563", + "status": "active", + "id": "0xFF749E976358791a3799262B8FccedF8D0888563" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFF749E976358791a3799262B8FccedF8D0888563/logo.png b/blockchains/smartchain/assets/0xFF749E976358791a3799262B8FccedF8D0888563/logo.png new file mode 100644 index 00000000..5542e8b5 Binary files /dev/null and b/blockchains/smartchain/assets/0xFF749E976358791a3799262B8FccedF8D0888563/logo.png differ diff --git a/blockchains/smartchain/assets/0xFFEfa817f367A3f7D7910447b2d43588383E7777/info.json b/blockchains/smartchain/assets/0xFFEfa817f367A3f7D7910447b2d43588383E7777/info.json new file mode 100644 index 00000000..70e21f35 --- /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/0xFa01D3A2B25cdF3b1A6B2361FA07CC71A5F2fBA0/info.json b/blockchains/smartchain/assets/0xFa01D3A2B25cdF3b1A6B2361FA07CC71A5F2fBA0/info.json new file mode 100644 index 00000000..b7fa092e --- /dev/null +++ b/blockchains/smartchain/assets/0xFa01D3A2B25cdF3b1A6B2361FA07CC71A5F2fBA0/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hukku", + "website": "https://hukku.io/", + "description": "Hukku Protects your house and wallet. Unruggable. Hukku is so Cute.", + "explorer": "https://bscscan.com/token/0xFa01D3A2B25cdF3b1A6B2361FA07CC71A5F2fBA0", + "type": "BEP20", + "symbol": "HUKKU", + "decimals": 9, + "status": "active", + "id": "0xFa01D3A2B25cdF3b1A6B2361FA07CC71A5F2fBA0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFa01D3A2B25cdF3b1A6B2361FA07CC71A5F2fBA0/logo.png b/blockchains/smartchain/assets/0xFa01D3A2B25cdF3b1A6B2361FA07CC71A5F2fBA0/logo.png new file mode 100644 index 00000000..0ac2d0f4 Binary files /dev/null and b/blockchains/smartchain/assets/0xFa01D3A2B25cdF3b1A6B2361FA07CC71A5F2fBA0/logo.png differ diff --git a/blockchains/smartchain/assets/0xFa17b330bCC4e7F3E2456996d89A5a54AB044831/info.json b/blockchains/smartchain/assets/0xFa17b330bCC4e7F3E2456996d89A5a54AB044831/info.json new file mode 100644 index 00000000..7c2b29ab --- /dev/null +++ b/blockchains/smartchain/assets/0xFa17b330bCC4e7F3E2456996d89A5a54AB044831/info.json @@ -0,0 +1,45 @@ +{ + "name": "Cardence", + "type": "BEP20", + "symbol": "$CRDN", + "decimals": 18, + "website": "https://cardence.io", + "description": "Cardence is a launchpad for new projects on Cardano platform creating a trustless fund raising ecosystem for carefully vetted Cardano projects.", + "explorer": "https://bscscan.com/token/0xfa17b330bcc4e7f3e2456996d89a5a54ab044831", + "status": "active", + "id": "0xFa17b330bCC4e7F3E2456996d89A5a54AB044831", + "links": [ + { + "name": "x", + "url": "https://x.com/cardence_io" + }, + { + "name": "telegram", + "url": "https://t.me/cardence_chat" + }, + { + "name": "whitepaper", + "url": "https://docs.cardence.io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cardence-io/" + }, + { + "name": "medium", + "url": "https://medium.com/cardence" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Cardence/" + }, + { + "name": "youtube", + "url": "https://youtube.com/user/ismulad" + }, + { + "name": "facebook", + "url": "https://facebook.com/cardence.io" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFa17b330bCC4e7F3E2456996d89A5a54AB044831/logo.png b/blockchains/smartchain/assets/0xFa17b330bCC4e7F3E2456996d89A5a54AB044831/logo.png new file mode 100644 index 00000000..1d358946 Binary files /dev/null and b/blockchains/smartchain/assets/0xFa17b330bCC4e7F3E2456996d89A5a54AB044831/logo.png differ diff --git a/blockchains/smartchain/assets/0xFa363022816aBf82f18a9C2809dCd2BB393F6AC5/info.json b/blockchains/smartchain/assets/0xFa363022816aBf82f18a9C2809dCd2BB393F6AC5/info.json new file mode 100644 index 00000000..fe9d4d59 --- /dev/null +++ b/blockchains/smartchain/assets/0xFa363022816aBf82f18a9C2809dCd2BB393F6AC5/info.json @@ -0,0 +1,37 @@ +{ + "name": "HONEY", + "type": "BEP20", + "symbol": "HONEY", + "decimals": 18, + "website": "https://honey.honeyfarm.finance", + "description": "A Native Token of HoneyFarm Finance Layer 1", + "explorer": "https://bscscan.com/token/0xFa363022816aBf82f18a9C2809dCd2BB393F6AC5", + "status": "active", + "id": "0xFa363022816aBf82f18a9C2809dCd2BB393F6AC5", + "links": [ + { + "name": "x", + "url": "https://x.com/HoneyFarmFi" + }, + { + "name": "github", + "url": "https://github.com/HoneyFarmFi/HoneyFarmContracts" + }, + { + "name": "telegram", + "url": "https://t.me/HoneyFarmChat" + }, + { + "name": "telegram_news", + "url": "https://t.me/HoneyFarmAnn" + }, + { + "name": "blog", + "url": "https://medium.com/@honeyfarmchef" + }, + { + "name": "docs", + "url": "https://docs.honeyfarm.finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFa363022816aBf82f18a9C2809dCd2BB393F6AC5/logo.png b/blockchains/smartchain/assets/0xFa363022816aBf82f18a9C2809dCd2BB393F6AC5/logo.png new file mode 100644 index 00000000..43162a43 Binary files /dev/null and b/blockchains/smartchain/assets/0xFa363022816aBf82f18a9C2809dCd2BB393F6AC5/logo.png differ diff --git a/blockchains/smartchain/assets/0xFaAb744dB9def8e13194600Ed02bC5D5BEd3B85C/info.json b/blockchains/smartchain/assets/0xFaAb744dB9def8e13194600Ed02bC5D5BEd3B85C/info.json new file mode 100644 index 00000000..b8383d50 --- /dev/null +++ b/blockchains/smartchain/assets/0xFaAb744dB9def8e13194600Ed02bC5D5BEd3B85C/info.json @@ -0,0 +1,11 @@ +{ + "name": "NEFTiPEDiA", + "type": "BEP20", + "symbol": "NFT", + "decimals": 16, + "website": "https://neftipedia.com/", + "description": "NEFTiPEDiA is NEFTiPEDiA is a marketplace that will fulfil the niche of much required decentralized venue for selling not only the pieces of art or other intangible valuables but also will allow trading is jewelry, fashion and even vehicles and property", + "explorer": "https://bscscan.com/token/0xFaAb744dB9def8e13194600Ed02bC5D5BEd3B85C", + "status": "active", + "id": "0xFaAb744dB9def8e13194600Ed02bC5D5BEd3B85C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFaAb744dB9def8e13194600Ed02bC5D5BEd3B85C/logo.png b/blockchains/smartchain/assets/0xFaAb744dB9def8e13194600Ed02bC5D5BEd3B85C/logo.png new file mode 100644 index 00000000..814edf87 Binary files /dev/null and b/blockchains/smartchain/assets/0xFaAb744dB9def8e13194600Ed02bC5D5BEd3B85C/logo.png differ diff --git a/blockchains/smartchain/assets/0xFbC37a1865DD46091A45221F575062A3b8b2e676/info.json b/blockchains/smartchain/assets/0xFbC37a1865DD46091A45221F575062A3b8b2e676/info.json new file mode 100644 index 00000000..280cdd7b --- /dev/null +++ b/blockchains/smartchain/assets/0xFbC37a1865DD46091A45221F575062A3b8b2e676/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hyperboost", + "type": "BEP20", + "symbol": "Hyperboost", + "decimals": 9, + "website": "https://hyperboostworld.com/", + "description": "HyperBoost was birthed by the community seeking a new opportunity to start with. You would also be happy to know that it’s an advance hyper-deflationary token with a cutting-edge hyper buyback burn protocol built in to earn passive rewards through static reflections and burns, so more HyperBoost are automatically added to your wallet for each transaction.", + "explorer": "https://bscscan.com/token/0xFbC37a1865DD46091A45221F575062A3b8b2e676", + "status": "active", + "id": "0xFbC37a1865DD46091A45221F575062A3b8b2e676", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hyperboost/" + }, + { + "name": "x", + "url": "https://x.com/HyperBoostBSC" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFbC37a1865DD46091A45221F575062A3b8b2e676/logo.png b/blockchains/smartchain/assets/0xFbC37a1865DD46091A45221F575062A3b8b2e676/logo.png new file mode 100644 index 00000000..8ece0c8d Binary files /dev/null and b/blockchains/smartchain/assets/0xFbC37a1865DD46091A45221F575062A3b8b2e676/logo.png differ diff --git a/blockchains/smartchain/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json b/blockchains/smartchain/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json new file mode 100644 index 00000000..7fafae13 --- /dev/null +++ b/blockchains/smartchain/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZEDXION", + "type": "BEP20", + "symbol": "ZEDXION", + "decimals": 18, + "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/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341", + "status": "abandoned", + "id": "0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFbDB1Fa163a0e8d90DD88104F44C093882A71914/info.json b/blockchains/smartchain/assets/0xFbDB1Fa163a0e8d90DD88104F44C093882A71914/info.json new file mode 100644 index 00000000..ac80b3ba --- /dev/null +++ b/blockchains/smartchain/assets/0xFbDB1Fa163a0e8d90DD88104F44C093882A71914/info.json @@ -0,0 +1,36 @@ +{ + "name": "FRZ Solar System Coin", + "type": "BEP20", + "symbol": "FRZSSCOIN", + "decimals": 18, + "website": "https://frzss.com/", + "description": "FRZSSCOIN is the native asset of the FRZ ecosystem and will be used for listing and staking on exchanges, airdrops, token burning and advertisement. ", + "explorer": "https://bscscan.com/token/0xfbdb1fa163a0e8d90dd88104f44c093882a71914", + "status": "active", + "id": "0xFbDB1Fa163a0e8d90DD88104F44C093882A71914", + "links": [ + { + "name": "x", + "url": "https://x.com/frztoken" + }, + { + "name": "github", + "url": "https://github.com/frzss-dev" + }, + { + "name": "telegram", + "url": "https://t.me/frzsstoken" + }, + { + "name": "whitepaper", + "url": "https://frzss.com/#whitepaper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/frz-solar-system-coin/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFbDB1Fa163a0e8d90DD88104F44C093882A71914/logo.png b/blockchains/smartchain/assets/0xFbDB1Fa163a0e8d90DD88104F44C093882A71914/logo.png new file mode 100644 index 00000000..9a18cc8e Binary files /dev/null and b/blockchains/smartchain/assets/0xFbDB1Fa163a0e8d90DD88104F44C093882A71914/logo.png differ diff --git a/blockchains/smartchain/assets/0xFc263946439b0d802bF4C5a6fCd34E2885259f91/info.json b/blockchains/smartchain/assets/0xFc263946439b0d802bF4C5a6fCd34E2885259f91/info.json new file mode 100644 index 00000000..a87f971a --- /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 00000000..484e882d 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 00000000..f6343ff1 --- /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 00000000..06a2827a 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 new file mode 100644 index 00000000..4009bee5 --- /dev/null +++ b/blockchains/smartchain/assets/0xFd431CB76965cF80c6FCec011a273B46df23EB04/info.json @@ -0,0 +1,25 @@ +{ + "name": "Cocopad", + "website": "http://cocopad.co/", + "description": "COCOPAD IS THE BEST DECENTRALIZED IDO PLATFORM FOR THE # BSC - BINANCE SMART CHAIN NETWORK.", + "explorer": "https://bscscan.com/token/0xFd431CB76965cF80c6FCec011a273B46df23EB04", + "type": "BEP20", + "symbol": "COCO", + "decimals": 18, + "status": "active", + "id": "0xFd431CB76965cF80c6FCec011a273B46df23EB04", + "links": [ + { + "name": "x", + "url": "https://x.com/Cocopad_BSC" + }, + { + "name": "telegram", + "url": "https://t.me/cocopad_official" + }, + { + "name": "medium", + "url": "https://cocopad.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFd431CB76965cF80c6FCec011a273B46df23EB04/logo.png b/blockchains/smartchain/assets/0xFd431CB76965cF80c6FCec011a273B46df23EB04/logo.png new file mode 100644 index 00000000..aaaedd25 Binary files /dev/null and b/blockchains/smartchain/assets/0xFd431CB76965cF80c6FCec011a273B46df23EB04/logo.png differ diff --git a/blockchains/smartchain/assets/0xFd54E565e6de7509B07CDBa5769178045F212530/info.json b/blockchains/smartchain/assets/0xFd54E565e6de7509B07CDBa5769178045F212530/info.json new file mode 100644 index 00000000..ccaec131 --- /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 00000000..63883bc4 Binary files /dev/null and b/blockchains/smartchain/assets/0xFd54E565e6de7509B07CDBa5769178045F212530/logo.png differ diff --git a/blockchains/smartchain/assets/0xFd78aAEd1e3f2d06DbDE9510C6dC14112eCA896D/info.json b/blockchains/smartchain/assets/0xFd78aAEd1e3f2d06DbDE9510C6dC14112eCA896D/info.json new file mode 100644 index 00000000..8344e373 --- /dev/null +++ b/blockchains/smartchain/assets/0xFd78aAEd1e3f2d06DbDE9510C6dC14112eCA896D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Anonymous", + "type": "BEP20", + "symbol": "ANON", + "decimals": 9, + "website": "https://4n0nym0u5.com", + "description": "We are Anonymous (ANON)", + "explorer": "https://bscscan.com/token/0xFd78aAEd1e3f2d06DbDE9510C6dC14112eCA896D", + "status": "active", + "id": "0xFd78aAEd1e3f2d06DbDE9510C6dC14112eCA896D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFd78aAEd1e3f2d06DbDE9510C6dC14112eCA896D/logo.png b/blockchains/smartchain/assets/0xFd78aAEd1e3f2d06DbDE9510C6dC14112eCA896D/logo.png new file mode 100644 index 00000000..532ebe57 Binary files /dev/null and b/blockchains/smartchain/assets/0xFd78aAEd1e3f2d06DbDE9510C6dC14112eCA896D/logo.png differ diff --git a/blockchains/smartchain/assets/0xFd7B3A77848f1C2D67E05E54d78d174a0C850335/info.json b/blockchains/smartchain/assets/0xFd7B3A77848f1C2D67E05E54d78d174a0C850335/info.json new file mode 100644 index 00000000..ab555eec --- /dev/null +++ b/blockchains/smartchain/assets/0xFd7B3A77848f1C2D67E05E54d78d174a0C850335/info.json @@ -0,0 +1,15 @@ +{ + "name": "BNB pegged Ontology Token", + "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", + "research": "https://research.binance.com/en/projects/ontology", + "type": "BEP20", + "symbol": "ONT", + "decimals": 18, + "status": "active", + "id": "0xFd7B3A77848f1C2D67E05E54d78d174a0C850335", + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFd7B3A77848f1C2D67E05E54d78d174a0C850335/logo.png b/blockchains/smartchain/assets/0xFd7B3A77848f1C2D67E05E54d78d174a0C850335/logo.png new file mode 100644 index 00000000..25ffd17b Binary files /dev/null and b/blockchains/smartchain/assets/0xFd7B3A77848f1C2D67E05E54d78d174a0C850335/logo.png differ diff --git a/blockchains/smartchain/assets/0xFd914Bbb4302D69b9A8c3c96023DB6a02bE62778/info.json b/blockchains/smartchain/assets/0xFd914Bbb4302D69b9A8c3c96023DB6a02bE62778/info.json new file mode 100644 index 00000000..4456d9d5 --- /dev/null +++ b/blockchains/smartchain/assets/0xFd914Bbb4302D69b9A8c3c96023DB6a02bE62778/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ken-Inu", + "type": "BEP20", + "symbol": "KENU", + "decimals": 9, + "website": "https://keninu.com/", + "description": "Ken Inu ($KENU) is a decentralized, peer-to-peer, MEME digital currency, developing a community-driven ecosystem based on it’s native BSC token.", + "explorer": "https://bscscan.com/token/0xFd914Bbb4302D69b9A8c3c96023DB6a02bE62778", + "status": "active", + "id": "0xFd914Bbb4302D69b9A8c3c96023DB6a02bE62778" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFd914Bbb4302D69b9A8c3c96023DB6a02bE62778/logo.png b/blockchains/smartchain/assets/0xFd914Bbb4302D69b9A8c3c96023DB6a02bE62778/logo.png new file mode 100644 index 00000000..fca3043c Binary files /dev/null and b/blockchains/smartchain/assets/0xFd914Bbb4302D69b9A8c3c96023DB6a02bE62778/logo.png differ diff --git a/blockchains/smartchain/assets/0xFd91Fa8fab5cA11569E256fa8844Bc2abecc331D/info.json b/blockchains/smartchain/assets/0xFd91Fa8fab5cA11569E256fa8844Bc2abecc331D/info.json new file mode 100644 index 00000000..27eca84a --- /dev/null +++ b/blockchains/smartchain/assets/0xFd91Fa8fab5cA11569E256fa8844Bc2abecc331D/info.json @@ -0,0 +1,11 @@ +{ + "name": "VANGOLD Token", + "website": "https://www.vangold.finance/", + "description": "VANGOLD is one of the worlds first blockchain-based freelancer platform on the Binance Chain network, working with 100% decentralized smart contract.", + "explorer": "https://bscscan.com/token/0xfd91fa8fab5ca11569e256fa8844bc2abecc331d", + "type": "BEP20", + "symbol": "VGD", + "decimals": 18, + "status": "active", + "id": "0xFd91Fa8fab5cA11569E256fa8844Bc2abecc331D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFd91Fa8fab5cA11569E256fa8844Bc2abecc331D/logo.png b/blockchains/smartchain/assets/0xFd91Fa8fab5cA11569E256fa8844Bc2abecc331D/logo.png new file mode 100644 index 00000000..55466219 Binary files /dev/null and b/blockchains/smartchain/assets/0xFd91Fa8fab5cA11569E256fa8844Bc2abecc331D/logo.png differ diff --git a/blockchains/smartchain/assets/0xFdb624a9a617820260e5B3CB024C85da0441e6A8/info.json b/blockchains/smartchain/assets/0xFdb624a9a617820260e5B3CB024C85da0441e6A8/info.json new file mode 100644 index 00000000..d4ae8776 --- /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 00000000..5e337750 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 00000000..f9f444bd --- /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 00000000..d193ae87 Binary files /dev/null and b/blockchains/smartchain/assets/0xFdc66A08B0d0Dc44c17bbd471B88f49F50CdD20F/logo.png differ diff --git a/blockchains/smartchain/assets/0xFeA292e5ea4510881bDB840E3CeC63aBd43f936f/info.json b/blockchains/smartchain/assets/0xFeA292e5ea4510881bDB840E3CeC63aBd43f936f/info.json new file mode 100644 index 00000000..112a6825 --- /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 00000000..66f09f85 Binary files /dev/null and b/blockchains/smartchain/assets/0xFeA292e5ea4510881bDB840E3CeC63aBd43f936f/logo.png differ diff --git a/blockchains/smartchain/assets/0xFeCD05B947471b5E51645E2d8326445cC266477a/info.json b/blockchains/smartchain/assets/0xFeCD05B947471b5E51645E2d8326445cC266477a/info.json new file mode 100644 index 00000000..ebd431a5 --- /dev/null +++ b/blockchains/smartchain/assets/0xFeCD05B947471b5E51645E2d8326445cC266477a/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeWin", + "website": "https://safewin.org", + "description": "SAFEWIN is a utility token created for the SafeWin app.", + "explorer": "https://bscscan.com/token/0xFeCD05B947471b5E51645E2d8326445cC266477a", + "type": "BEP20", + "symbol": "SAFEWIN", + "decimals": 9, + "status": "active", + "id": "0xFeCD05B947471b5E51645E2d8326445cC266477a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFeCD05B947471b5E51645E2d8326445cC266477a/logo.png b/blockchains/smartchain/assets/0xFeCD05B947471b5E51645E2d8326445cC266477a/logo.png new file mode 100644 index 00000000..6c051b71 Binary files /dev/null and b/blockchains/smartchain/assets/0xFeCD05B947471b5E51645E2d8326445cC266477a/logo.png differ diff --git a/blockchains/smartchain/assets/0xFeea0bDd3D07eb6FE305938878C0caDBFa169042/info.json b/blockchains/smartchain/assets/0xFeea0bDd3D07eb6FE305938878C0caDBFa169042/info.json new file mode 100644 index 00000000..e3d71c09 --- /dev/null +++ b/blockchains/smartchain/assets/0xFeea0bDd3D07eb6FE305938878C0caDBFa169042/info.json @@ -0,0 +1,28 @@ +{ + "name": "8PAY Network", + "website": "https://8pay.network", + "description": "DEFI platform for automatic trustless crypto payments.", + "explorer": "https://bscscan.com/token/0xFeea0bDd3D07eb6FE305938878C0caDBFa169042", + "type": "BEP20", + "symbol": "8PAY", + "decimals": 18, + "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/0xFf7d6A96ae471BbCD7713aF9CB1fEeB16cf56B41/info.json b/blockchains/smartchain/assets/0xFf7d6A96ae471BbCD7713aF9CB1fEeB16cf56B41/info.json new file mode 100644 index 00000000..cb43c9a2 --- /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 00000000..cc69383c 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 new file mode 100644 index 00000000..c9190475 --- /dev/null +++ b/blockchains/smartchain/assets/0xFfB3eDd21be33d5e78C9e0C2A275b3Fd42670D67/info.json @@ -0,0 +1,22 @@ +{ + "name": "STAKD Finance (STAKD)", + "website": "https://stakd.finance/", + "description": "STAKD Finance is a powerful DeFi ecosystem on Binance Smart Chain that wants to revolutionize the DeFi sector on BSC by providing all in one solution for everyone.", + "research": "https://docs.stakd.finance/", + "explorer": "https://bscscan.com/token/0xFfB3eDd21be33d5e78C9e0C2A275b3Fd42670D67", + "type": "BEP20", + "symbol": "STAKD", + "decimals": 18, + "status": "active", + "id": "0xFfB3eDd21be33d5e78C9e0C2A275b3Fd42670D67", + "links": [ + { + "name": "x", + "url": "https://x.com/STAKD_finance" + }, + { + "name": "telegram", + "url": "https://t.me/stakdfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFfB3eDd21be33d5e78C9e0C2A275b3Fd42670D67/logo.png b/blockchains/smartchain/assets/0xFfB3eDd21be33d5e78C9e0C2A275b3Fd42670D67/logo.png new file mode 100644 index 00000000..aca9f06e Binary files /dev/null and b/blockchains/smartchain/assets/0xFfB3eDd21be33d5e78C9e0C2A275b3Fd42670D67/logo.png differ diff --git a/blockchains/smartchain/assets/0xFfBa7529AC181c2Ee1844548e6D7061c9A597dF4/info.json b/blockchains/smartchain/assets/0xFfBa7529AC181c2Ee1844548e6D7061c9A597dF4/info.json new file mode 100644 index 00000000..3c0a556c --- /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 00000000..9ceff157 Binary files /dev/null and b/blockchains/smartchain/assets/0xFfBa7529AC181c2Ee1844548e6D7061c9A597dF4/logo.png differ diff --git a/blockchains/smartchain/assets/0xFfaA85705aE216363e4e843B67fF3C238Fcf0de2/info.json b/blockchains/smartchain/assets/0xFfaA85705aE216363e4e843B67fF3C238Fcf0de2/info.json new file mode 100644 index 00000000..1b133850 --- /dev/null +++ b/blockchains/smartchain/assets/0xFfaA85705aE216363e4e843B67fF3C238Fcf0de2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Euro Shiba Inu", + "type": "BEP20", + "symbol": "EShib", + "decimals": 9, + "website": "https://www.eshib.es/", + "description": "EShib rewards its holders with 5%, another 5% goes to donations in case of natural disasters, educate, care for and improve the environment, reforest and classify said lands as a protected area, train companies in the world of cryptocurrency.", + "explorer": "https://bscscan.com/token/0xFfaA85705aE216363e4e843B67fF3C238Fcf0de2", + "status": "active", + "id": "0xFfaA85705aE216363e4e843B67fF3C238Fcf0de2", + "links": [ + { + "name": "github", + "url": "https://github.com/Euroshibainu" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/drive/folders/1NTbSMvhewwMt037K-T4ZS9QR1L-q0zv4?usp=sharing" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/smartchain/assets/0xFfaA85705aE216363e4e843B67fF3C238Fcf0de2/logo.png b/blockchains/smartchain/assets/0xFfaA85705aE216363e4e843B67fF3C238Fcf0de2/logo.png new file mode 100644 index 00000000..6aa23bab Binary files /dev/null and b/blockchains/smartchain/assets/0xFfaA85705aE216363e4e843B67fF3C238Fcf0de2/logo.png differ diff --git a/blockchains/smartchain/assets/0xa016F295A5957cB80D03d8E5464A429007555124/info.json b/blockchains/smartchain/assets/0xa016F295A5957cB80D03d8E5464A429007555124/info.json new file mode 100644 index 00000000..ff306e1e --- /dev/null +++ b/blockchains/smartchain/assets/0xa016F295A5957cB80D03d8E5464A429007555124/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeHamsters", + "website": "https://safehamsters.io", + "description": "Welcome to the hamster army! The time has come when it is worth rewriting history.", + "explorer": "https://bscscan.com/token/0xa016F295A5957cB80D03d8E5464A429007555124", + "type": "BEP20", + "symbol": "SAFEHAMSTERS", + "decimals": 9, + "status": "active", + "id": "0xa016F295A5957cB80D03d8E5464A429007555124" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa016F295A5957cB80D03d8E5464A429007555124/logo.png b/blockchains/smartchain/assets/0xa016F295A5957cB80D03d8E5464A429007555124/logo.png new file mode 100644 index 00000000..c182a026 Binary files /dev/null and b/blockchains/smartchain/assets/0xa016F295A5957cB80D03d8E5464A429007555124/logo.png differ diff --git a/blockchains/smartchain/assets/0xa026Ad2ceDa16Ca5FC28fd3C72f99e2C332c8a26/info.json b/blockchains/smartchain/assets/0xa026Ad2ceDa16Ca5FC28fd3C72f99e2C332c8a26/info.json new file mode 100644 index 00000000..0f0bf362 --- /dev/null +++ b/blockchains/smartchain/assets/0xa026Ad2ceDa16Ca5FC28fd3C72f99e2C332c8a26/info.json @@ -0,0 +1,29 @@ +{ + "name": "XCAD", + "type": "BEP20", + "symbol": "XCAD", + "decimals": 18, + "website": "https://xcadnetwork.com/", + "description": "XCAD Network is a tokenisation & NFT platform for content creators.", + "explorer": "https://bscscan.com/token/0xa026ad2ceda16ca5fc28fd3c72f99e2c332c8a26", + "status": "active", + "id": "0xa026Ad2ceDa16Ca5FC28fd3C72f99e2C332c8a26", + "links": [ + { + "name": "x", + "url": "https://x.com/XcademyOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/xcademy" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xcad-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/xcad-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa026Ad2ceDa16Ca5FC28fd3C72f99e2C332c8a26/logo.png b/blockchains/smartchain/assets/0xa026Ad2ceDa16Ca5FC28fd3C72f99e2C332c8a26/logo.png new file mode 100644 index 00000000..2fc6d63b Binary files /dev/null and b/blockchains/smartchain/assets/0xa026Ad2ceDa16Ca5FC28fd3C72f99e2C332c8a26/logo.png differ diff --git a/blockchains/smartchain/assets/0xa03110800894b3CcF8723D991d80875561F96777/info.json b/blockchains/smartchain/assets/0xa03110800894b3CcF8723D991d80875561F96777/info.json new file mode 100644 index 00000000..abf04534 --- /dev/null +++ b/blockchains/smartchain/assets/0xa03110800894b3CcF8723D991d80875561F96777/info.json @@ -0,0 +1,36 @@ +{ + "name": "BIT GAME VERSE TOKEN", + "type": "BEP20", + "symbol": "BGVT", + "decimals": 18, + "website": "https://bgverse.io/", + "description": "Bit Game Verse is the trending crypto channel which enables earning through different gaming channels. It is a peer to peer marketplace , where transactions take place directly between the crypto traders.", + "explorer": "https://bscscan.com/token/0xa03110800894b3CcF8723D991d80875561F96777", + "status": "active", + "id": "0xa03110800894b3CcF8723D991d80875561F96777", + "links": [ + { + "name": "x", + "url": "https://x.com/BITGAMEVERSE" + }, + { + "name": "facebook", + "url": "https://facebook.com/BITGAMEVERSE" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bit-game-verse-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bit-game-verse-token" + }, + { + "name": "medium", + "url": "https://medium.com/@bitgameverse" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa03110800894b3CcF8723D991d80875561F96777/logo.png b/blockchains/smartchain/assets/0xa03110800894b3CcF8723D991d80875561F96777/logo.png new file mode 100644 index 00000000..592ac274 Binary files /dev/null and b/blockchains/smartchain/assets/0xa03110800894b3CcF8723D991d80875561F96777/logo.png differ diff --git a/blockchains/smartchain/assets/0xa042d20aBE198E516d885Da52a633B6D44F339B9/info.json b/blockchains/smartchain/assets/0xa042d20aBE198E516d885Da52a633B6D44F339B9/info.json new file mode 100644 index 00000000..45619f4e --- /dev/null +++ b/blockchains/smartchain/assets/0xa042d20aBE198E516d885Da52a633B6D44F339B9/info.json @@ -0,0 +1,25 @@ +{ + "name": "MustangToken", + "type": "BEP20", + "symbol": "MUST", + "decimals": 9, + "website": "https://mustangtoken.net", + "description": "Mustangtoken is a progressive auto-staking token that pays out rewards just for holding it within your wallet! Half of each fee is reflected back to holders, and the other half is added to the BNB/Snowge Liquidity Pool.", + "explorer": "https://bscscan.com/token/0xa042d20abe198e516d885da52a633b6d44f339b9", + "status": "active", + "id": "0xa042d20aBE198E516d885Da52a633B6D44F339B9", + "links": [ + { + "name": "x", + "url": "https://x.com/Mustangtoken" + }, + { + "name": "telegram", + "url": "https://t.me/MustangToken" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Mustangtoken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa042d20aBE198E516d885Da52a633B6D44F339B9/logo.png b/blockchains/smartchain/assets/0xa042d20aBE198E516d885Da52a633B6D44F339B9/logo.png new file mode 100644 index 00000000..c8e4f232 Binary files /dev/null and b/blockchains/smartchain/assets/0xa042d20aBE198E516d885Da52a633B6D44F339B9/logo.png differ diff --git a/blockchains/smartchain/assets/0xa04F060077D90Fe2647B61e4dA4aD1F97d6649dc/info.json b/blockchains/smartchain/assets/0xa04F060077D90Fe2647B61e4dA4aD1F97d6649dc/info.json new file mode 100644 index 00000000..404c3b46 --- /dev/null +++ b/blockchains/smartchain/assets/0xa04F060077D90Fe2647B61e4dA4aD1F97d6649dc/info.json @@ -0,0 +1,12 @@ +{ + "name": "Wrapped Mirror NFLX Token", + "website": "https://mirror.finance", + "description": "Mirror Protocol allows the creation of fungible assets, “synthetics”, that track the price of real-world assets.", + "explorer": "https://bscscan.com/token/0xa04F060077D90Fe2647B61e4dA4aD1F97d6649dc", + "research": "", + "type": "BEP20", + "symbol": "mNFLX", + "decimals": 18, + "status": "active", + "id": "0xa04F060077D90Fe2647B61e4dA4aD1F97d6649dc" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa04F060077D90Fe2647B61e4dA4aD1F97d6649dc/logo.png b/blockchains/smartchain/assets/0xa04F060077D90Fe2647B61e4dA4aD1F97d6649dc/logo.png new file mode 100644 index 00000000..6d6b1623 Binary files /dev/null and b/blockchains/smartchain/assets/0xa04F060077D90Fe2647B61e4dA4aD1F97d6649dc/logo.png differ diff --git a/blockchains/smartchain/assets/0xa09699fc0cbb1F85128450A0ff6a3c4d3A7E7B9B/info.json b/blockchains/smartchain/assets/0xa09699fc0cbb1F85128450A0ff6a3c4d3A7E7B9B/info.json new file mode 100644 index 00000000..00f42f79 --- /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 00000000..c1a48336 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 new file mode 100644 index 00000000..49cc3bff --- /dev/null +++ b/blockchains/smartchain/assets/0xa0A9961b7477D1a530f06a1ee805d5E532e73d97/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ariadne", + "symbol": "ARDN", + "type": "BEP20", + "decimals": 18, + "description": "Ariadne is a cross-chain DeFi marketplace that is lowering the fees to enter/exit farms on multiple blockchains and saves swaps and bridges costs for both EVM and non-EVM chains.", + "website": "https://ariadne.finance", + "explorer": "https://bscscan.com/token/0xa0A9961b7477D1a530f06a1ee805d5E532e73d97", + "status": "active", + "id": "0xa0A9961b7477D1a530f06a1ee805d5E532e73d97", + "links": [ + { + "name": "medium", + "url": "https://medium.com/ariadne-project" + }, + { + "name": "x", + "url": "https://x.com/ariadne_finance" + }, + { + "name": "telegram", + "url": "https://t.me/ariadne_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ariadne/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa0A9961b7477D1a530f06a1ee805d5E532e73d97/logo.png b/blockchains/smartchain/assets/0xa0A9961b7477D1a530f06a1ee805d5E532e73d97/logo.png new file mode 100644 index 00000000..fcefa0fa Binary files /dev/null and b/blockchains/smartchain/assets/0xa0A9961b7477D1a530f06a1ee805d5E532e73d97/logo.png differ diff --git a/blockchains/smartchain/assets/0xa0Af324cC24ad0060bcE52dE359aFfD6deCb5cF2/info.json b/blockchains/smartchain/assets/0xa0Af324cC24ad0060bcE52dE359aFfD6deCb5cF2/info.json new file mode 100644 index 00000000..f5237db8 --- /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 new file mode 100644 index 00000000..741e991b --- /dev/null +++ b/blockchains/smartchain/assets/0xa0CC3A881AEf241d6cB3B7Db3168BD26094560BE/info.json @@ -0,0 +1,48 @@ +{ + "name": "Crypto Inu", + "type": "BEP20", + "symbol": "ABCD", + "decimals": 9, + "website": "https://cabcd.org", + "description": "Crypto Inu is an immersive multiplayer board game with 3D and VR modes that incorporates metaverse real estate investment.", + "explorer": "https://bscscan.com/token/0xa0cc3a881aef241d6cb3b7db3168bd26094560be", + "status": "active", + "id": "0xa0CC3A881AEf241d6cB3B7Db3168BD26094560BE", + "links": [ + { + "name": "x", + "url": "https://x.com/CryptoInu_ABCD" + }, + { + "name": "github", + "url": "https://github.com/cryptoinu-abcd" + }, + { + "name": "telegram", + "url": "https://t.me/cryptoinu_main" + }, + { + "name": "telegram_news", + "url": "https://t.me/cryptoinuann" + }, + { + "name": "whitepaper", + "url": "https://cabcd.org/assets/whitepaper_abcd_v1.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@crypto_inu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crypto-inu/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xa0cc3a881aef241d6cb3b7db3168bd26094560be#code" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa0CC3A881AEf241d6cB3B7Db3168BD26094560BE/logo.png b/blockchains/smartchain/assets/0xa0CC3A881AEf241d6cB3B7Db3168BD26094560BE/logo.png new file mode 100644 index 00000000..08e01391 Binary files /dev/null and b/blockchains/smartchain/assets/0xa0CC3A881AEf241d6cB3B7Db3168BD26094560BE/logo.png differ diff --git a/blockchains/smartchain/assets/0xa0e7566D693D015B59F2FD0e7fd26a8aC5Ca03dE/info.json b/blockchains/smartchain/assets/0xa0e7566D693D015B59F2FD0e7fd26a8aC5Ca03dE/info.json new file mode 100644 index 00000000..b9e54b44 --- /dev/null +++ b/blockchains/smartchain/assets/0xa0e7566D693D015B59F2FD0e7fd26a8aC5Ca03dE/info.json @@ -0,0 +1,33 @@ +{ + "name": "CatBoy", + "type": "BEP20", + "symbol": "CTB", + "decimals": 18, + "website": "https://catboy.finance/", + "description": "CatGirl has found her soulmate. He’s called CatBoy. Witness how CatBoy will conquer the Binance Blockchain and go to the highest high the Binance Blockchain has ever seen.", + "explorer": "https://bscscan.com/token/0xa0e7566D693D015B59F2FD0e7fd26a8aC5Ca03dE", + "status": "active", + "id": "0xa0e7566D693D015B59F2FD0e7fd26a8aC5Ca03dE", + "links": [ + { + "name": "x", + "url": "https://x.com/bsccatboy" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/catboyfinance/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/catboy/" + }, + { + "name": "telegram", + "url": "https://t.me/catboybscofficial" + }, + { + "name": "whitepaper", + "url": "https://catboy.finance/wp-content/uploads/2021/11/Whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa0e7566D693D015B59F2FD0e7fd26a8aC5Ca03dE/logo.png b/blockchains/smartchain/assets/0xa0e7566D693D015B59F2FD0e7fd26a8aC5Ca03dE/logo.png new file mode 100644 index 00000000..2015e048 Binary files /dev/null and b/blockchains/smartchain/assets/0xa0e7566D693D015B59F2FD0e7fd26a8aC5Ca03dE/logo.png differ diff --git a/blockchains/smartchain/assets/0xa123aB52a32267Dc357B7599739d3C6CAF856fe4/info.json b/blockchains/smartchain/assets/0xa123aB52a32267Dc357B7599739d3C6CAF856fe4/info.json new file mode 100644 index 00000000..19e093ae --- /dev/null +++ b/blockchains/smartchain/assets/0xa123aB52a32267Dc357B7599739d3C6CAF856fe4/info.json @@ -0,0 +1,11 @@ +{ + "name": "AIR", + "website": "https://aircoin.cool", + "description": "AIR was issued to mock the madness of the cryptocurrency market. AIR is everywhere, after buying Air coin you get nothing but AIR.", + "explorer": "https://bscscan.com/token/0xa123aB52a32267Dc357B7599739d3C6CAF856fe4", + "type": "BEP20", + "symbol": "AIR", + "decimals": 18, + "status": "abandoned", + "id": "0xa123aB52a32267Dc357B7599739d3C6CAF856fe4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa178398a3A816d049588cC46D431f5EEC4dd7e96/info.json b/blockchains/smartchain/assets/0xa178398a3A816d049588cC46D431f5EEC4dd7e96/info.json new file mode 100644 index 00000000..13bdede1 --- /dev/null +++ b/blockchains/smartchain/assets/0xa178398a3A816d049588cC46D431f5EEC4dd7e96/info.json @@ -0,0 +1,11 @@ +{ + "name": "ClearMoon", + "type": "BEP20", + "symbol": "CLEARMOON", + "decimals": 9, + "website": "https://clearmoon.io", + "description": "The ClearMoon Network is a community-driven, viral networking project dedicated to Crypto Education in DeFi.", + "explorer": "https://bscscan.com/token/0xa178398a3A816d049588cC46D431f5EEC4dd7e96", + "status": "active", + "id": "0xa178398a3A816d049588cC46D431f5EEC4dd7e96" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa178398a3A816d049588cC46D431f5EEC4dd7e96/logo.png b/blockchains/smartchain/assets/0xa178398a3A816d049588cC46D431f5EEC4dd7e96/logo.png new file mode 100644 index 00000000..e262a4b5 Binary files /dev/null and b/blockchains/smartchain/assets/0xa178398a3A816d049588cC46D431f5EEC4dd7e96/logo.png differ diff --git a/blockchains/smartchain/assets/0xa1832f7F4e534aE557f9B5AB76dE54B1873e498B/info.json b/blockchains/smartchain/assets/0xa1832f7F4e534aE557f9B5AB76dE54B1873e498B/info.json new file mode 100644 index 00000000..9a1878f4 --- /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 00000000..988d81d3 Binary files /dev/null and b/blockchains/smartchain/assets/0xa1832f7F4e534aE557f9B5AB76dE54B1873e498B/logo.png differ diff --git a/blockchains/smartchain/assets/0xa184088a740c695E156F91f5cC086a06bb78b827/info.json b/blockchains/smartchain/assets/0xa184088a740c695E156F91f5cC086a06bb78b827/info.json new file mode 100644 index 00000000..4b73baf4 --- /dev/null +++ b/blockchains/smartchain/assets/0xa184088a740c695E156F91f5cC086a06bb78b827/info.json @@ -0,0 +1,12 @@ +{ + "name": "AUTOv2", + "website": "https://autofarm.network", + "description": "Autofarm is a suite of products in Decentralized Finance (DeFi) that provides DEX aggregation and, yield farming aggregation on the various blockchains.", + "explorer": "https://bscscan.com/token/0xa184088a740c695e156f91f5cc086a06bb78b827", + "research": "", + "type": "BEP20", + "symbol": "AUTO", + "decimals": 18, + "status": "active", + "id": "0xa184088a740c695E156F91f5cC086a06bb78b827" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa184088a740c695E156F91f5cC086a06bb78b827/logo.png b/blockchains/smartchain/assets/0xa184088a740c695E156F91f5cC086a06bb78b827/logo.png new file mode 100644 index 00000000..37bdbcce Binary files /dev/null and b/blockchains/smartchain/assets/0xa184088a740c695E156F91f5cC086a06bb78b827/logo.png differ diff --git a/blockchains/smartchain/assets/0xa1FD60c51C0BDAC1Ff5BB6067A24d61441E39569/info.json b/blockchains/smartchain/assets/0xa1FD60c51C0BDAC1Ff5BB6067A24d61441E39569/info.json new file mode 100644 index 00000000..0c12f8aa --- /dev/null +++ b/blockchains/smartchain/assets/0xa1FD60c51C0BDAC1Ff5BB6067A24d61441E39569/info.json @@ -0,0 +1,21 @@ +{ + "name": "SafeNebula", + "website": "https://safenebula.com", + "description": "The SafeNebula Protocol is a community driven, fair launched DeFi Token. Three simple functions occur during each trade: Reflection, LP Acquisition, & Burn.", + "explorer": "https://bscscan.com/token/0xa1fd60c51c0bdac1ff5bb6067a24d61441e39569", + "type": "BEP20", + "symbol": "SNBL", + "decimals": 18, + "status": "active", + "id": "0xa1FD60c51C0BDAC1Ff5BB6067A24d61441E39569", + "links": [ + { + "name": "x", + "url": "https://x.com/safe_nebula" + }, + { + "name": "telegram", + "url": "https://t.me/safenebula" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa1FD60c51C0BDAC1Ff5BB6067A24d61441E39569/logo.png b/blockchains/smartchain/assets/0xa1FD60c51C0BDAC1Ff5BB6067A24d61441E39569/logo.png new file mode 100644 index 00000000..1c09f484 Binary files /dev/null and b/blockchains/smartchain/assets/0xa1FD60c51C0BDAC1Ff5BB6067A24d61441E39569/logo.png differ diff --git a/blockchains/smartchain/assets/0xa1bc3505BB77735cE17484d00FfdE8C6eF53707b/info.json b/blockchains/smartchain/assets/0xa1bc3505BB77735cE17484d00FfdE8C6eF53707b/info.json new file mode 100644 index 00000000..a289fd83 --- /dev/null +++ b/blockchains/smartchain/assets/0xa1bc3505BB77735cE17484d00FfdE8C6eF53707b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Story", + "website": "https://storytoken.app", + "description": "$STORY is the deflationary token fueling our crowdfunding platform called Story. Story provides anyone, anywhere with the platform to help others. Simply share their Story in 60 seconds or less and our community listens.", + "explorer": "https://bscscan.com/token/0xa1bc3505BB77735cE17484d00FfdE8C6eF53707b", + "type": "BEP20", + "symbol": "STORY", + "decimals": 9, + "status": "abandoned", + "id": "0xa1bc3505BB77735cE17484d00FfdE8C6eF53707b" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/info.json b/blockchains/smartchain/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/info.json new file mode 100644 index 00000000..4463091f --- /dev/null +++ b/blockchains/smartchain/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/info.json @@ -0,0 +1,12 @@ +{ + "name": "Alpha Finance", + "website": "https://alphafinance.io", + "description": "Alpha Finance Lab is a cross-chain DeFi platform, focusing on building an ecosystem of products that will interoperate and bring alpha to users across different blockchains starting with Binance Smart Chain (BSC) and Ethereum.", + "explorer": "https://bscscan.com/token/0xa1faa113cbE53436Df28FF0aEe54275c13B40975", + "research": "https://research.binance.com/en/projects/alpha-finance-lab", + "type": "BEP20", + "symbol": "ALPHA", + "decimals": 18, + "status": "active", + "id": "0xa1faa113cbE53436Df28FF0aEe54275c13B40975" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/logo.png b/blockchains/smartchain/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/logo.png new file mode 100644 index 00000000..3c6e3f61 Binary files /dev/null and b/blockchains/smartchain/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/logo.png differ diff --git a/blockchains/smartchain/assets/0xa20Be0B824b963Bc7D11D124CdEfa0bC7cE85533/info.json b/blockchains/smartchain/assets/0xa20Be0B824b963Bc7D11D124CdEfa0bC7cE85533/info.json new file mode 100644 index 00000000..caf4ddc0 --- /dev/null +++ b/blockchains/smartchain/assets/0xa20Be0B824b963Bc7D11D124CdEfa0bC7cE85533/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped Dai", + "website": "https://wdai.io", + "description": "Yield farm Ddai on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xa20Be0B824b963Bc7D11D124CdEfa0bC7cE85533", + "type": "BEP20", + "symbol": "Ddai", + "decimals": 8, + "status": "active", + "id": "0xa20Be0B824b963Bc7D11D124CdEfa0bC7cE85533" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa20Be0B824b963Bc7D11D124CdEfa0bC7cE85533/logo.png b/blockchains/smartchain/assets/0xa20Be0B824b963Bc7D11D124CdEfa0bC7cE85533/logo.png new file mode 100644 index 00000000..58bf6b42 Binary files /dev/null and b/blockchains/smartchain/assets/0xa20Be0B824b963Bc7D11D124CdEfa0bC7cE85533/logo.png differ diff --git a/blockchains/smartchain/assets/0xa260E12d2B924cb899AE80BB58123ac3fEE1E2F0/info.json b/blockchains/smartchain/assets/0xa260E12d2B924cb899AE80BB58123ac3fEE1E2F0/info.json new file mode 100644 index 00000000..c2f47829 --- /dev/null +++ b/blockchains/smartchain/assets/0xa260E12d2B924cb899AE80BB58123ac3fEE1E2F0/info.json @@ -0,0 +1,32 @@ +{ + "name": "Hooked Token", + "website": "https://hooked.io", + "description": "The on-ramp layer for massive Web3 adoption to form the ecosystem of future community-owned economies.", + "explorer": "https://bscscan.com/token/0xa260E12d2B924cb899AE80BB58123ac3fEE1E2F0", + "symbol": "HOOK", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xa260E12d2B924cb899AE80BB58123ac3fEE1E2F0", + "links": [ + { + "name": "telegram", + "url": "https://t.me/HookedProtocolOfficial" + }, + { + "name": "x", + "url": "https://x.com/HookedProtocol" + }, + { + "name": "discord", + "url": "https://discord.com/invite/hookedprotocol" + }, + { + "name": "whitepaper", + "url": "https://hooked-protocol.gitbook.io/hooked-protocol-whitepaper" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa260E12d2B924cb899AE80BB58123ac3fEE1E2F0/logo.png b/blockchains/smartchain/assets/0xa260E12d2B924cb899AE80BB58123ac3fEE1E2F0/logo.png new file mode 100644 index 00000000..10c26b8b Binary files /dev/null and b/blockchains/smartchain/assets/0xa260E12d2B924cb899AE80BB58123ac3fEE1E2F0/logo.png differ diff --git a/blockchains/smartchain/assets/0xa28c865d1922332D338fA1E213Cd4Ef055BC4444/info.json b/blockchains/smartchain/assets/0xa28c865d1922332D338fA1E213Cd4Ef055BC4444/info.json new file mode 100644 index 00000000..77d0b8a2 --- /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/info.json b/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/info.json new file mode 100644 index 00000000..3d4eeda8 --- /dev/null +++ b/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/info.json @@ -0,0 +1,12 @@ +{ + "name": "Injective", + "website": "https://injectiveprotocol.com", + "description": "The Universal Layer-2 DeFi Protocol for Cross-Chain Derivatives Trading.", + "explorer": "https://bscscan.com/token/0xa2b726b1145a4773f68593cf171187d8ebe4d495", + "research": "https://research.binance.com/en/projects/injective-protocol", + "type": "BEP20", + "symbol": "INJ", + "decimals": 18, + "status": "active", + "id": "0xa2B726B1145A4773F68593CF171187d8EBe4d495" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/logo.png b/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/logo.png new file mode 100644 index 00000000..e9a2fe6b Binary files /dev/null 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 00000000..6843fe7d --- /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 00000000..4cc976d6 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 00000000..ed36e2d3 --- /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 00000000..83259616 Binary files /dev/null and b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png differ diff --git a/blockchains/smartchain/assets/0xa30CbbD41E2b8cbb6EA3923Ab215C782F8F9b51B/info.json b/blockchains/smartchain/assets/0xa30CbbD41E2b8cbb6EA3923Ab215C782F8F9b51B/info.json new file mode 100644 index 00000000..0e2b7f36 --- /dev/null +++ b/blockchains/smartchain/assets/0xa30CbbD41E2b8cbb6EA3923Ab215C782F8F9b51B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Yuki Inu", + "type": "BEP20", + "symbol": "YUKINU", + "decimals": 9, + "website": "https://www.yukitoken.com/", + "description": "The happiest meme token inspired by shiba inu", + "explorer": "https://bscscan.com/token/0xa30CbbD41E2b8cbb6EA3923Ab215C782F8F9b51B", + "status": "active", + "id": "0xa30CbbD41E2b8cbb6EA3923Ab215C782F8F9b51B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa30CbbD41E2b8cbb6EA3923Ab215C782F8F9b51B/logo.png b/blockchains/smartchain/assets/0xa30CbbD41E2b8cbb6EA3923Ab215C782F8F9b51B/logo.png new file mode 100644 index 00000000..b0917924 Binary files /dev/null and b/blockchains/smartchain/assets/0xa30CbbD41E2b8cbb6EA3923Ab215C782F8F9b51B/logo.png differ diff --git a/blockchains/smartchain/assets/0xa321fC1171EB85498faD47D3d127368eBa70265C/info.json b/blockchains/smartchain/assets/0xa321fC1171EB85498faD47D3d127368eBa70265C/info.json new file mode 100644 index 00000000..51dfc516 --- /dev/null +++ b/blockchains/smartchain/assets/0xa321fC1171EB85498faD47D3d127368eBa70265C/info.json @@ -0,0 +1,21 @@ +{ + "name": "SafeDrive", + "type": "BEP20", + "symbol": "Drive", + "decimals": 9, + "website": "https://www.drive-token.com", + "description": "A new cryptocurrency based on BNB smart chain. 4% of each transaction is always distributed to all holders as a reward. Thus, personal wealth increases automatically with every purchase or sale.", + "explorer": "https://bscscan.com/token/0xa321fC1171EB85498faD47D3d127368eBa70265C", + "status": "active", + "id": "0xa321fC1171EB85498faD47D3d127368eBa70265C", + "links": [ + { + "name": "x", + "url": "https://x.com/safedrive19" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cHusGCKb\"" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa321fC1171EB85498faD47D3d127368eBa70265C/logo.png b/blockchains/smartchain/assets/0xa321fC1171EB85498faD47D3d127368eBa70265C/logo.png new file mode 100644 index 00000000..312d236f Binary files /dev/null and b/blockchains/smartchain/assets/0xa321fC1171EB85498faD47D3d127368eBa70265C/logo.png differ diff --git a/blockchains/smartchain/assets/0xa3F4a5E5411dB7d6630aa531D7645c72cFDDa41a/info.json b/blockchains/smartchain/assets/0xa3F4a5E5411dB7d6630aa531D7645c72cFDDa41a/info.json new file mode 100644 index 00000000..ad6b9e5c --- /dev/null +++ b/blockchains/smartchain/assets/0xa3F4a5E5411dB7d6630aa531D7645c72cFDDa41a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitagon", + "website": "https://bitagon.net/", + "description": "Bitagon (TSC) is built based on the PoS consensus protocol, which is decentralized and energy efficient, helping you easily build your own decentralized applications.", + "explorer": "https://bscscan.com/token/0xa3f4a5e5411db7d6630aa531d7645c72cfdda41a", + "type": "BEP20", + "symbol": "TSC", + "decimals": 18, + "status": "active", + "id": "0xa3F4a5E5411dB7d6630aa531D7645c72cFDDa41a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa3F4a5E5411dB7d6630aa531D7645c72cFDDa41a/logo.png b/blockchains/smartchain/assets/0xa3F4a5E5411dB7d6630aa531D7645c72cFDDa41a/logo.png new file mode 100644 index 00000000..08a96323 Binary files /dev/null and b/blockchains/smartchain/assets/0xa3F4a5E5411dB7d6630aa531D7645c72cFDDa41a/logo.png differ diff --git a/blockchains/smartchain/assets/0xa3d80275E300237a62D3431C26d52f185584cC1B/info.json b/blockchains/smartchain/assets/0xa3d80275E300237a62D3431C26d52f185584cC1B/info.json new file mode 100644 index 00000000..6e228895 --- /dev/null +++ b/blockchains/smartchain/assets/0xa3d80275E300237a62D3431C26d52f185584cC1B/info.json @@ -0,0 +1,24 @@ +{ + "name": "RiseHero", + "type": "BEP20", + "symbol": "RISE", + "decimals": 18, + "website": "https://risehero.io", + "description": "A legendary hero metaverse.", + "explorer": "https://bscscan.com/token/0xa3d80275E300237a62D3431C26d52f185584cC1B", + "status": "active", + "id": "0xa3d80275E300237a62D3431C26d52f185584cC1B", + "links": [ + { + "name": "x", + "url": "https://x.com/RiseHeroNFT" + }, + { + "name": "telegram", + "url": "https://t.me/RiseHero" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa3d80275E300237a62D3431C26d52f185584cC1B/logo.png b/blockchains/smartchain/assets/0xa3d80275E300237a62D3431C26d52f185584cC1B/logo.png new file mode 100644 index 00000000..1052085f Binary files /dev/null and b/blockchains/smartchain/assets/0xa3d80275E300237a62D3431C26d52f185584cC1B/logo.png differ diff --git a/blockchains/smartchain/assets/0xa3f020a5C92e15be13CAF0Ee5C95cF79585EeCC9/info.json b/blockchains/smartchain/assets/0xa3f020a5C92e15be13CAF0Ee5C95cF79585EeCC9/info.json new file mode 100644 index 00000000..f10cfb8a --- /dev/null +++ b/blockchains/smartchain/assets/0xa3f020a5C92e15be13CAF0Ee5C95cF79585EeCC9/info.json @@ -0,0 +1,12 @@ +{ + "name": "aelf", + "website": "http://aelf.io", + "description": "Aelf (ELF) is an enterprise-focused blockchain platform powered by cloud computing. Leveraging cloud nodes and parallel processing, Aelf is reportedly able to achieve secure transactions at scale for commercial use cases.", + "explorer": "https://bscscan.com/token/0xa3f020a5C92e15be13CAF0Ee5C95cF79585EeCC9", + "research": "https://research.binance.com/en/projects/aelf", + "type": "BEP20", + "symbol": "ELF", + "decimals": 18, + "status": "active", + "id": "0xa3f020a5C92e15be13CAF0Ee5C95cF79585EeCC9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa3f020a5C92e15be13CAF0Ee5C95cF79585EeCC9/logo.png b/blockchains/smartchain/assets/0xa3f020a5C92e15be13CAF0Ee5C95cF79585EeCC9/logo.png new file mode 100644 index 00000000..0aacaaa8 Binary files /dev/null and b/blockchains/smartchain/assets/0xa3f020a5C92e15be13CAF0Ee5C95cF79585EeCC9/logo.png differ diff --git a/blockchains/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/info.json b/blockchains/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/info.json new file mode 100644 index 00000000..0f088d2f --- /dev/null +++ b/blockchains/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/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://bscscan.com/token/0xa4080f1778e69467e905b8d6f72f6e441f9e9484", + "type": "BEP20", + "symbol": "SYN", + "decimals": 18, + "status": "active", + "id": "0xa4080f1778e69467E905B8d6F72f6e441f9e9484", + "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/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/logo.png b/blockchains/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/logo.png new file mode 100644 index 00000000..577673c4 Binary files /dev/null and b/blockchains/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/logo.png differ diff --git a/blockchains/smartchain/assets/0xa4390B901a63641c92327E5793b45FCB46954444/info.json b/blockchains/smartchain/assets/0xa4390B901a63641c92327E5793b45FCB46954444/info.json new file mode 100644 index 00000000..5ee9b2c5 --- /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 00000000..8d3f0b1f Binary files /dev/null and b/blockchains/smartchain/assets/0xa4390B901a63641c92327E5793b45FCB46954444/logo.png differ diff --git a/blockchains/smartchain/assets/0xa49e44976C236BeB51a1F818D49b9b9759Ed97b1/info.json b/blockchains/smartchain/assets/0xa49e44976C236BeB51a1F818D49b9b9759Ed97b1/info.json new file mode 100644 index 00000000..67f54ac4 --- /dev/null +++ b/blockchains/smartchain/assets/0xa49e44976C236BeB51a1F818D49b9b9759Ed97b1/info.json @@ -0,0 +1,11 @@ +{ + "name": "AraPlanet", + "type": "BEP20", + "symbol": "ARAP", + "decimals": 9, + "website": "https://www.araplanet.org", + "description": "AraPlanet lands as one of the first eco-sustainable crypto currency.", + "explorer": "https://bscscan.com/token/0xa49e44976C236BeB51a1F818D49b9b9759Ed97b1", + "status": "active", + "id": "0xa49e44976C236BeB51a1F818D49b9b9759Ed97b1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa49e44976C236BeB51a1F818D49b9b9759Ed97b1/logo.png b/blockchains/smartchain/assets/0xa49e44976C236BeB51a1F818D49b9b9759Ed97b1/logo.png new file mode 100644 index 00000000..f5eb55e3 Binary files /dev/null and b/blockchains/smartchain/assets/0xa49e44976C236BeB51a1F818D49b9b9759Ed97b1/logo.png differ diff --git a/blockchains/smartchain/assets/0xa4B68D48D7bc6f04420e8077E6F74bdeF809dEa3/info.json b/blockchains/smartchain/assets/0xa4B68D48D7bc6f04420e8077E6F74bdeF809dEa3/info.json new file mode 100644 index 00000000..d007d636 --- /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 00000000..f96f4a93 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 new file mode 100644 index 00000000..2d8ac8d2 --- /dev/null +++ b/blockchains/smartchain/assets/0xa4FFfc757e8c4F24E7b209C033c123D20983Ad40/info.json @@ -0,0 +1,37 @@ +{ + "name": "Hoge Finance", + "website": "https://hogefinance.com", + "description": "We Meme Business.", + "explorer": "https://bscscan.com/token/0xa4FFfc757e8c4F24E7b209C033c123D20983Ad40", + "type": "BEP20", + "symbol": "HOGE", + "decimals": 9, + "status": "active", + "id": "0xa4FFfc757e8c4F24E7b209C033c123D20983Ad40", + "links": [ + { + "name": "reddit", + "url": "https://reddit.com/r/hoge" + }, + { + "name": "discord", + "url": "https://discord.com/invite/hoge" + }, + { + "name": "x", + "url": "https://x.com/hogefinance" + }, + { + "name": "telegram", + "url": "https://t.me/hogefinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hoge-finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hoge-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa4FFfc757e8c4F24E7b209C033c123D20983Ad40/logo.png b/blockchains/smartchain/assets/0xa4FFfc757e8c4F24E7b209C033c123D20983Ad40/logo.png new file mode 100644 index 00000000..fd2f41b9 Binary files /dev/null and b/blockchains/smartchain/assets/0xa4FFfc757e8c4F24E7b209C033c123D20983Ad40/logo.png differ diff --git a/blockchains/smartchain/assets/0xa4c3497b57C8b6D510F3707A1e9694fD791f45FB/info.json b/blockchains/smartchain/assets/0xa4c3497b57C8b6D510F3707A1e9694fD791f45FB/info.json new file mode 100644 index 00000000..8ff9073e --- /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 00000000..8a63e6cc 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 00000000..ffefbbf8 --- /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 00000000..f8ce99a7 Binary files /dev/null and b/blockchains/smartchain/assets/0xa4ce62BB3047E3C4aE52b7eC20c3EB10f4397AF7/logo.png differ diff --git a/blockchains/smartchain/assets/0xa531a733070a5fF4866D1327d82e403Fa35290A6/info.json b/blockchains/smartchain/assets/0xa531a733070a5fF4866D1327d82e403Fa35290A6/info.json new file mode 100644 index 00000000..810ab876 --- /dev/null +++ b/blockchains/smartchain/assets/0xa531a733070a5fF4866D1327d82e403Fa35290A6/info.json @@ -0,0 +1,24 @@ +{ + "name": "Catvills Coin", + "type": "BEP20", + "symbol": "CATVILLS", + "decimals": 8, + "website": "https://www.catvills.io/", + "description": "Catvills is a community build platform with various utilities. Catvills is providing a platform that will increase value that is realistic and will be felt by its holders, by marketing and achieving its goals. This is the anchor on why we created Catvills, and with Catvills creating events and charity for cats all around the world. These are our realistic steps to give back and one of our main functions for Catvills.", + "explorer": "https://bscscan.com/token/0xa531a733070a5fF4866D1327d82e403Fa35290A6", + "status": "active", + "id": "0xa531a733070a5fF4866D1327d82e403Fa35290A6", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/catvills-coin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/catvills-coin" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa531a733070a5fF4866D1327d82e403Fa35290A6/logo.png b/blockchains/smartchain/assets/0xa531a733070a5fF4866D1327d82e403Fa35290A6/logo.png new file mode 100644 index 00000000..2f640927 Binary files /dev/null and b/blockchains/smartchain/assets/0xa531a733070a5fF4866D1327d82e403Fa35290A6/logo.png differ diff --git a/blockchains/smartchain/assets/0xa5360c2070FaECFc231fd6bd743FE88382F2991d/info.json b/blockchains/smartchain/assets/0xa5360c2070FaECFc231fd6bd743FE88382F2991d/info.json new file mode 100644 index 00000000..2562b219 --- /dev/null +++ b/blockchains/smartchain/assets/0xa5360c2070FaECFc231fd6bd743FE88382F2991d/info.json @@ -0,0 +1,12 @@ +{ + "name": "SafeLight", + "website": "https://www.safelightcrypto.com/", + "description": "Self generating liquidity token - Reflection paid back to holders.", + "explorer": "https://bscscan.com/token/0xa5360c2070faecfc231fd6bd743fe88382f2991d", + "research": "", + "type": "BEP20", + "symbol": "SafeLight", + "decimals": 9, + "status": "active", + "id": "0xa5360c2070FaECFc231fd6bd743FE88382F2991d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa5360c2070FaECFc231fd6bd743FE88382F2991d/logo.png b/blockchains/smartchain/assets/0xa5360c2070FaECFc231fd6bd743FE88382F2991d/logo.png new file mode 100644 index 00000000..32191727 Binary files /dev/null and b/blockchains/smartchain/assets/0xa5360c2070FaECFc231fd6bd743FE88382F2991d/logo.png differ diff --git a/blockchains/smartchain/assets/0xa5496935A247fA81B1462E553ad139d2FD0af795/info.json b/blockchains/smartchain/assets/0xa5496935A247fA81B1462E553ad139d2FD0af795/info.json new file mode 100644 index 00000000..af9c1e9d --- /dev/null +++ b/blockchains/smartchain/assets/0xa5496935A247fA81B1462E553ad139d2FD0af795/info.json @@ -0,0 +1,52 @@ +{ + "name": "Flag Network", + "type": "BEP20", + "symbol": "FLAG", + "decimals": 18, + "website": "https://flagnetwork.finance/", + "description": "FLAG - a decentralized blockchain network of the world-scale for NFT, Gamfi, Metaverse, Web3 applications.", + "explorer": "https://bscscan.com/token/0xa5496935A247fA81B1462E553ad139d2FD0af795", + "status": "active", + "id": "0xa5496935A247fA81B1462E553ad139d2FD0af795", + "links": [ + { + "name": "x", + "url": "https://x.com/flagnetwork_NFT" + }, + { + "name": "telegram", + "url": "https://t.me/flagnetworkchat" + }, + { + "name": "telegram_news", + "url": "https://t.me/flagnetworknews" + }, + { + "name": "docs", + "url": "https://docs.flagnetwork.finance/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/flag-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/flag-network" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCVKueYhTBYuE60-HSX09xnQ" + }, + { + "name": "medium", + "url": "https://medium.com/@Flag_Network" + }, + { + "name": "facebook", + "url": "https://facebook.com/Flag-Network-105491488596621" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa5496935A247fA81B1462E553ad139d2FD0af795/logo.png b/blockchains/smartchain/assets/0xa5496935A247fA81B1462E553ad139d2FD0af795/logo.png new file mode 100644 index 00000000..0a875e39 Binary files /dev/null and b/blockchains/smartchain/assets/0xa5496935A247fA81B1462E553ad139d2FD0af795/logo.png differ diff --git a/blockchains/smartchain/assets/0xa5AC8f8E90762380cCE6C16ABa17Ed6d2Cf75888/info.json b/blockchains/smartchain/assets/0xa5AC8f8E90762380cCE6C16ABa17Ed6d2Cf75888/info.json new file mode 100644 index 00000000..32e2cc40 --- /dev/null +++ b/blockchains/smartchain/assets/0xa5AC8f8E90762380cCE6C16ABa17Ed6d2Cf75888/info.json @@ -0,0 +1,11 @@ +{ + "name": "PepeMoon", + "website": "https://www.pepemoon.com", + "description": "Strike the moon, shoot at the stars.", + "explorer": "https://bscscan.com/token/0xa5AC8f8E90762380cCE6C16ABa17Ed6d2Cf75888", + "type": "BEP20", + "symbol": "PEPE", + "decimals": 9, + "status": "active", + "id": "0xa5AC8f8E90762380cCE6C16ABa17Ed6d2Cf75888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa5AC8f8E90762380cCE6C16ABa17Ed6d2Cf75888/logo.png b/blockchains/smartchain/assets/0xa5AC8f8E90762380cCE6C16ABa17Ed6d2Cf75888/logo.png new file mode 100644 index 00000000..138ccdd5 Binary files /dev/null and b/blockchains/smartchain/assets/0xa5AC8f8E90762380cCE6C16ABa17Ed6d2Cf75888/logo.png differ diff --git a/blockchains/smartchain/assets/0xa5b000d453143B357dbA63f4EE83F2f6FDa832b8/info.json b/blockchains/smartchain/assets/0xa5b000d453143B357dbA63f4EE83F2f6FDa832b8/info.json new file mode 100644 index 00000000..37f94e41 --- /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 00000000..882508bd 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 new file mode 100644 index 00000000..6bb2b565 --- /dev/null +++ b/blockchains/smartchain/assets/0xa677bc9bDb10329E488A4d8387ED7a08b2fc9005/info.json @@ -0,0 +1,25 @@ +{ + "name": "Magic Power Token", + "type": "BEP20", + "symbol": "MGP", + "decimals": 18, + "website": "https://magic-cube.finance/#/home", + "description": "MGP (Magic Power) is the governance token of the Magic Power community which will help the Magic Cube Ecosystem grow into a system of decentralized finance(DeFi). It’s created to connect the whole token system at Magic Cube’s phase 1 ecosystem.", + "explorer": "https://bscscan.com/token/0xa677bc9bDb10329E488A4d8387ED7a08b2fc9005", + "status": "active", + "id": "0xa677bc9bDb10329E488A4d8387ED7a08b2fc9005", + "links": [ + { + "name": "x", + "url": "https://x.com/MagicCubeDeFi" + }, + { + "name": "telegram", + "url": "https://t.me/magicpowercommunityglobal" + }, + { + "name": "github", + "url": "https://github.com/MagicCubeFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa677bc9bDb10329E488A4d8387ED7a08b2fc9005/logo.png b/blockchains/smartchain/assets/0xa677bc9bDb10329E488A4d8387ED7a08b2fc9005/logo.png new file mode 100644 index 00000000..805639bc Binary files /dev/null and b/blockchains/smartchain/assets/0xa677bc9bDb10329E488A4d8387ED7a08b2fc9005/logo.png differ diff --git a/blockchains/smartchain/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/info.json b/blockchains/smartchain/assets/0xa683ab3D0CCb5f236d9dF27F76FCf64cfD541b30/info.json new file mode 100644 index 00000000..c300f0c9 --- /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 00000000..39e71c88 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 00000000..7e6d3d56 --- /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/0xa6ccAEBa565a11725fF5D6A642cb622f3D1402Cf/info.json b/blockchains/smartchain/assets/0xa6ccAEBa565a11725fF5D6A642cb622f3D1402Cf/info.json new file mode 100644 index 00000000..6ef7c6b2 --- /dev/null +++ b/blockchains/smartchain/assets/0xa6ccAEBa565a11725fF5D6A642cb622f3D1402Cf/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoMoonSwap", + "type": "BEP20", + "symbol": "CMS", + "decimals": 9, + "website": "https://cryptomoonswap.com/", + "description": "CryptoMoonSwap planning to Build world’s most advanced cryptocurrency exchange. Combining the speed and features of a centralized exchange with the security of a DEX.", + "explorer": "https://bscscan.com/token/0xa6ccAEBa565a11725fF5D6A642cb622f3D1402Cf", + "status": "active", + "id": "0xa6ccAEBa565a11725fF5D6A642cb622f3D1402Cf" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa6ccAEBa565a11725fF5D6A642cb622f3D1402Cf/logo.png b/blockchains/smartchain/assets/0xa6ccAEBa565a11725fF5D6A642cb622f3D1402Cf/logo.png new file mode 100644 index 00000000..0814f91c Binary files /dev/null and b/blockchains/smartchain/assets/0xa6ccAEBa565a11725fF5D6A642cb622f3D1402Cf/logo.png differ diff --git a/blockchains/smartchain/assets/0xa73dF9480e9408908c828be2e1A7345855501508/info.json b/blockchains/smartchain/assets/0xa73dF9480e9408908c828be2e1A7345855501508/info.json new file mode 100644 index 00000000..0a5bcb62 --- /dev/null +++ b/blockchains/smartchain/assets/0xa73dF9480e9408908c828be2e1A7345855501508/info.json @@ -0,0 +1,29 @@ +{ + "name": "BabyDogeZilla", + "website": "https://babydogezilla.com/", + "description": "BabyDogeZilla is the cutest and most badass meme in crypto! BabyDogeZilla is a deflationary token designed to become more scarce over time. All holders of BabyDogeZilla will earn more BabyDogeZilla by simply holding. Watch the amount of BabyDogeZilla grow in your wallet as BabyDogeZilla holders automatically receive a 3% fee from every transaction that happens on the BabyDogeZilla network.", + "explorer": "https://bscscan.com/token/0xa73dF9480e9408908c828be2e1A7345855501508", + "type": "BEP20", + "symbol": "BDZ", + "decimals": 9, + "status": "active", + "id": "0xa73dF9480e9408908c828be2e1A7345855501508", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BabyDogeZillaBSC" + }, + { + "name": "x", + "url": "https://x.com/BabydogezillaA" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/babydogezilla/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/babydogezilla" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa73dF9480e9408908c828be2e1A7345855501508/logo.png b/blockchains/smartchain/assets/0xa73dF9480e9408908c828be2e1A7345855501508/logo.png new file mode 100644 index 00000000..70556f76 Binary files /dev/null and b/blockchains/smartchain/assets/0xa73dF9480e9408908c828be2e1A7345855501508/logo.png differ diff --git a/blockchains/smartchain/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json b/blockchains/smartchain/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/info.json new file mode 100644 index 00000000..c1735c97 --- /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 00000000..7151d49b Binary files /dev/null and b/blockchains/smartchain/assets/0xa753A7395cAe905Cd615Da0B82A53E0560f250af/logo.png differ diff --git a/blockchains/smartchain/assets/0xa75e17A061Ed826C65F138B7A85B44c5D3156afF/info.json b/blockchains/smartchain/assets/0xa75e17A061Ed826C65F138B7A85B44c5D3156afF/info.json new file mode 100644 index 00000000..301d542d --- /dev/null +++ b/blockchains/smartchain/assets/0xa75e17A061Ed826C65F138B7A85B44c5D3156afF/info.json @@ -0,0 +1,14 @@ +{ + "name": "DINA", + "website": "https://dina.finance", + "description": "DINA is a community driven MeMe token which utilizes four functions during each trade: FOMO, LP acquisition, static reward and burn.", + "explorer": "https://bscscan.com/token/0xa75e17A061Ed826C65F138B7A85B44c5D3156afF", + "type": "BEP20", + "symbol": "DINA", + "decimals": 9, + "status": "active", + "id": "0xa75e17A061Ed826C65F138B7A85B44c5D3156afF", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa75e17A061Ed826C65F138B7A85B44c5D3156afF/logo.png b/blockchains/smartchain/assets/0xa75e17A061Ed826C65F138B7A85B44c5D3156afF/logo.png new file mode 100644 index 00000000..e815d1c9 Binary files /dev/null and b/blockchains/smartchain/assets/0xa75e17A061Ed826C65F138B7A85B44c5D3156afF/logo.png differ diff --git a/blockchains/smartchain/assets/0xa77dc77Abc1759915816bB28558E22039C678888/info.json b/blockchains/smartchain/assets/0xa77dc77Abc1759915816bB28558E22039C678888/info.json new file mode 100644 index 00000000..01dde107 --- /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/0xa7aCaFEDCDF33Ad7541698701E9A76b48EC62728/info.json b/blockchains/smartchain/assets/0xa7aCaFEDCDF33Ad7541698701E9A76b48EC62728/info.json new file mode 100644 index 00000000..346dd056 --- /dev/null +++ b/blockchains/smartchain/assets/0xa7aCaFEDCDF33Ad7541698701E9A76b48EC62728/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tadpole", + "website": "http://tadpole.vip", + "description": "Little tadpole is the source of everything,the beginning of loveliness. We believe that tadpoles, with a large number and strong vitality, will sooner or later transform to the frog prince. And our little tadpoles’ vision: as long as you believe and hold TADP, we will surely let you not lose freedom for material things.", + "explorer": "https://bscscan.com/token/0xa7aCaFEDCDF33Ad7541698701E9A76b48EC62728", + "type": "BEP20", + "symbol": "TADP", + "decimals": 0, + "status": "active", + "id": "0xa7aCaFEDCDF33Ad7541698701E9A76b48EC62728" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa7aCaFEDCDF33Ad7541698701E9A76b48EC62728/logo.png b/blockchains/smartchain/assets/0xa7aCaFEDCDF33Ad7541698701E9A76b48EC62728/logo.png new file mode 100644 index 00000000..48fe6675 Binary files /dev/null and b/blockchains/smartchain/assets/0xa7aCaFEDCDF33Ad7541698701E9A76b48EC62728/logo.png differ diff --git a/blockchains/smartchain/assets/0xa7d1e886acf66Ec0656DF2DECB4B7C893A3bAb4C/info.json b/blockchains/smartchain/assets/0xa7d1e886acf66Ec0656DF2DECB4B7C893A3bAb4C/info.json new file mode 100644 index 00000000..a1530d0a --- /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 00000000..410dd779 Binary files /dev/null and b/blockchains/smartchain/assets/0xa7d1e886acf66Ec0656DF2DECB4B7C893A3bAb4C/logo.png differ diff --git a/blockchains/smartchain/assets/0xa7e1E5019088c7B452C9E8BD6c3e0fA7a95478A8/info.json b/blockchains/smartchain/assets/0xa7e1E5019088c7B452C9E8BD6c3e0fA7a95478A8/info.json new file mode 100644 index 00000000..7a57df1e --- /dev/null +++ b/blockchains/smartchain/assets/0xa7e1E5019088c7B452C9E8BD6c3e0fA7a95478A8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Crocodile Coin", + "website": "https://crocodilecoin.xyz", + "description": "Crocodile Coin is a next-gen community driven yield farming and AMM exchange on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0xa7e1e5019088c7b452c9e8bd6c3e0fa7a95478a8", + "type": "BEP20", + "symbol": "CRDL", + "decimals": 18, + "status": "active", + "id": "0xa7e1E5019088c7B452C9E8BD6c3e0fA7a95478A8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa7e1E5019088c7B452C9E8BD6c3e0fA7a95478A8/logo.png b/blockchains/smartchain/assets/0xa7e1E5019088c7B452C9E8BD6c3e0fA7a95478A8/logo.png new file mode 100644 index 00000000..9ff66f48 Binary files /dev/null and b/blockchains/smartchain/assets/0xa7e1E5019088c7B452C9E8BD6c3e0fA7a95478A8/logo.png differ diff --git a/blockchains/smartchain/assets/0xa7e37EaE349c9dCB7ebE1FaaaCDAc245e3d24444/info.json b/blockchains/smartchain/assets/0xa7e37EaE349c9dCB7ebE1FaaaCDAc245e3d24444/info.json new file mode 100644 index 00000000..1dd84841 --- /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 00000000..1ffe386e --- /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 00000000..84b43f33 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 new file mode 100644 index 00000000..5d1ed9dc --- /dev/null +++ b/blockchains/smartchain/assets/0xa83E84d45EDB55324E2d10e1817F071481289D90/info.json @@ -0,0 +1,25 @@ +{ + "name": "Cranch", + "type": "BEP20", + "symbol": "CRH", + "decimals": 18, + "website": "https://cranch.io", + "description": "Cranch is online gaming, staking, farming & NFT marketplace a decentralized cryptocurrency based on the blockchain technology. ", + "explorer": "https://bscscan.com/token/0xa83E84d45EDB55324E2d10e1817F071481289D90", + "status": "active", + "id": "0xa83E84d45EDB55324E2d10e1817F071481289D90", + "links": [ + { + "name": "github", + "url": "https://github.com/cranchtoken/" + }, + { + "name": "x", + "url": "https://x.com/cranch_io" + }, + { + "name": "telegram", + "url": "https://t.me/cranch_community" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa83E84d45EDB55324E2d10e1817F071481289D90/logo.png b/blockchains/smartchain/assets/0xa83E84d45EDB55324E2d10e1817F071481289D90/logo.png new file mode 100644 index 00000000..514e481d Binary files /dev/null and b/blockchains/smartchain/assets/0xa83E84d45EDB55324E2d10e1817F071481289D90/logo.png differ diff --git a/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/info.json b/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/info.json new file mode 100644 index 00000000..28115cb6 --- /dev/null +++ b/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/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://bscscan.com/token/0xa865197A84E780957422237B5D152772654341F3", + "type": "BEP20", + "symbol": "Old OLE", + "decimals": 18, + "status": "abandoned", + "id": "0xa865197A84E780957422237B5D152772654341F3", + "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/0xa865c6CC3A6164c3a0188efEED6F32ABa134693c/info.json b/blockchains/smartchain/assets/0xa865c6CC3A6164c3a0188efEED6F32ABa134693c/info.json new file mode 100644 index 00000000..41f9e669 --- /dev/null +++ b/blockchains/smartchain/assets/0xa865c6CC3A6164c3a0188efEED6F32ABa134693c/info.json @@ -0,0 +1,29 @@ +{ + "name": "Evergreen token", + "website": "https://www.evergreentokens.org", + "description": "Evergreen token is the world first defi project to combine crypto and the environment through planting of trees.", + "explorer": "https://bscscan.com/token/0xa865c6CC3A6164c3a0188efEED6F32ABa134693c", + "type": "BEP20", + "symbol": "EGT", + "decimals": 9, + "status": "active", + "id": "0xa865c6CC3A6164c3a0188efEED6F32ABa134693c", + "links": [ + { + "name": "x", + "url": "https://x.com/evergreentokens" + }, + { + "name": "whitepaper", + "url": "https://dev.evergreentokens.org/files/Green_Paper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/evergreen-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/evergreen-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa865c6CC3A6164c3a0188efEED6F32ABa134693c/logo.png b/blockchains/smartchain/assets/0xa865c6CC3A6164c3a0188efEED6F32ABa134693c/logo.png new file mode 100644 index 00000000..65e3e01d Binary files /dev/null and b/blockchains/smartchain/assets/0xa865c6CC3A6164c3a0188efEED6F32ABa134693c/logo.png differ diff --git a/blockchains/smartchain/assets/0xa898dF02906d40ec81900B3a5Ba36ea20d09b7Cc/info.json b/blockchains/smartchain/assets/0xa898dF02906d40ec81900B3a5Ba36ea20d09b7Cc/info.json new file mode 100644 index 00000000..c31a6e4b --- /dev/null +++ b/blockchains/smartchain/assets/0xa898dF02906d40ec81900B3a5Ba36ea20d09b7Cc/info.json @@ -0,0 +1,11 @@ +{ + "name": "TURBOTRIX FINANCE", + "type": "BEP20", + "symbol": "TTF", + "decimals": 18, + "website": "https://turbotrix.finance/", + "description": "TurboTrix Finance is a decentralised dual blockchain utility defi project securely running on Binance Smart Chain and empowering the Twin TurboTrx ecosystem on Tron with faster transactions and low gas fees. Hodl, signup and earn more token both in Tron and TurboTrix. - Nobody Gets Left Behind.", + "explorer": "https://bscscan.com/token/0xa898dF02906d40ec81900B3a5Ba36ea20d09b7Cc", + "status": "active", + "id": "0xa898dF02906d40ec81900B3a5Ba36ea20d09b7Cc" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa898dF02906d40ec81900B3a5Ba36ea20d09b7Cc/logo.png b/blockchains/smartchain/assets/0xa898dF02906d40ec81900B3a5Ba36ea20d09b7Cc/logo.png new file mode 100644 index 00000000..c27ea3fd Binary files /dev/null and b/blockchains/smartchain/assets/0xa898dF02906d40ec81900B3a5Ba36ea20d09b7Cc/logo.png differ diff --git a/blockchains/smartchain/assets/0xa8c573cd88De2265B39954b4fA2Da72038582616/info.json b/blockchains/smartchain/assets/0xa8c573cd88De2265B39954b4fA2Da72038582616/info.json new file mode 100644 index 00000000..ad442e78 --- /dev/null +++ b/blockchains/smartchain/assets/0xa8c573cd88De2265B39954b4fA2Da72038582616/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stealth Shiba Token", + "type": "BEP20", + "symbol": "SHIBA", + "decimals": 9, + "website": "https://stealthshiba.com", + "description": "Stealth Shiba is a Community-based defi token that aims to provide a safe, trusted and seamless crypto investing and trading environment.", + "explorer": "https://bscscan.com/token/0xa8c573cd88De2265B39954b4fA2Da72038582616", + "status": "active", + "id": "0xa8c573cd88De2265B39954b4fA2Da72038582616" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa8c573cd88De2265B39954b4fA2Da72038582616/logo.png b/blockchains/smartchain/assets/0xa8c573cd88De2265B39954b4fA2Da72038582616/logo.png new file mode 100644 index 00000000..ca3bb4b3 Binary files /dev/null and b/blockchains/smartchain/assets/0xa8c573cd88De2265B39954b4fA2Da72038582616/logo.png differ diff --git a/blockchains/smartchain/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json b/blockchains/smartchain/assets/0xa90424D5D3E770e8644103AB503ed775dD1318FD/info.json new file mode 100644 index 00000000..8303820f --- /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 00000000..e79aa166 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 new file mode 100644 index 00000000..6019d150 --- /dev/null +++ b/blockchains/smartchain/assets/0xa94b7a842aADB617a0B08fA744e033C6De2f7595/info.json @@ -0,0 +1,32 @@ +{ + "name": "FlashX Ultra", + "website": "https://www.flashxultra.com/", + "description": "FlashX Ultra is the second DApp and governance token of FlashX Coin Project. It has a total supply of 200M tokens. $FSXU as Bep20 token running on Binance Smart Chain (BSC).", + "audit": "https://github.com/TechRate/Smart-Contract-Audits/blob/main/FlashX%20Ultra%20Smart%20Contract%20Audit.pdf", + "provider": "https://coinmarketcap.com/currencies/flashx-ultra/", + "backup_provider": "https://www.coingecko.com/en/coins/flashx-ultra", + "explorer": "https://bscscan.com/token/0xa94b7a842aadb617a0b08fa744e033c6de2f7595", + "symbol": "FSXU", + "type": "BEP20", + "decimals": 8, + "status": "active", + "id": "0xa94b7a842aADB617a0B08fA744e033C6De2f7595", + "links": [ + { + "name": "github", + "url": "https://github.com/FlashXBoss/sourcecode/commit/34b44ebe1fa26ea2724b13814560c8e4d72a9949" + }, + { + "name": "x", + "url": "https://x.com/CoinFlashx" + }, + { + "name": "telegram", + "url": "https://t.me/FlashXUltra" + }, + { + "name": "whitepaper", + "url": "https://e7d5a156-25be-4b13-a9a0-ae8ed3f1b749.filesusr.com/ugd/7e167b_3cee187bade545da959ace058aee4b1b.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa94b7a842aADB617a0B08fA744e033C6De2f7595/logo.png b/blockchains/smartchain/assets/0xa94b7a842aADB617a0B08fA744e033C6De2f7595/logo.png new file mode 100644 index 00000000..f720dea9 Binary files /dev/null and b/blockchains/smartchain/assets/0xa94b7a842aADB617a0B08fA744e033C6De2f7595/logo.png differ diff --git a/blockchains/smartchain/assets/0xa96658cd0D04a8fdCDc30D1156CC65BbFC7591eD/info.json b/blockchains/smartchain/assets/0xa96658cd0D04a8fdCDc30D1156CC65BbFC7591eD/info.json new file mode 100644 index 00000000..175c2ed3 --- /dev/null +++ b/blockchains/smartchain/assets/0xa96658cd0D04a8fdCDc30D1156CC65BbFC7591eD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sushiba Token", + "website": "https://www.sushibatoken.com", + "description": "Sushiba is the first fully-decentralized and deflationary token that unites food lovers with dog lovers. It is also a future looking token aimed at establishing an AI-Based decentralized Marketplace built around its uniquely themed decentralized applications.", + "explorer": "https://bscscan.com/token/0xa96658cd0d04a8fdcdc30d1156cc65bbfc7591ed", + "type": "BEP20", + "symbol": "SUSHIBA", + "decimals": 9, + "status": "active", + "id": "0xa96658cd0D04a8fdCDc30D1156CC65BbFC7591eD" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa96658cd0D04a8fdCDc30D1156CC65BbFC7591eD/logo.png b/blockchains/smartchain/assets/0xa96658cd0D04a8fdCDc30D1156CC65BbFC7591eD/logo.png new file mode 100644 index 00000000..e4312f05 Binary files /dev/null and b/blockchains/smartchain/assets/0xa96658cd0D04a8fdCDc30D1156CC65BbFC7591eD/logo.png differ diff --git a/blockchains/smartchain/assets/0xa96f3414334F5A0A529ff5d9D8ea95f42147b8C9/info.json b/blockchains/smartchain/assets/0xa96f3414334F5A0A529ff5d9D8ea95f42147b8C9/info.json new file mode 100644 index 00000000..70739b5f --- /dev/null +++ b/blockchains/smartchain/assets/0xa96f3414334F5A0A529ff5d9D8ea95f42147b8C9/info.json @@ -0,0 +1,29 @@ +{ + "name": "RiskMoon", + "website": "https://riskmoon.com/", + "description": "RiskMoon is an evolving platform to leverage risk with dynamic yield generating strategies from NFTs. NFT staking, marketplace, and DEEPSPACE game in progress.", + "explorer": "https://bscscan.com/token/0xa96f3414334F5A0A529ff5d9D8ea95f42147b8C9", + "type": "BEP20", + "symbol": "RISKMOON", + "decimals": 9, + "status": "active", + "id": "0xa96f3414334F5A0A529ff5d9D8ea95f42147b8C9", + "links": [ + { + "name": "x", + "url": "https://x.com/riskmoonbsc" + }, + { + "name": "telegram", + "url": "https://t.me/RISKMOON" + }, + { + "name": "discord", + "url": "https://discord.com/invite/9aJNPfdpUe" + }, + { + "name": "medium", + "url": "https://riskmoonbsc.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa96f3414334F5A0A529ff5d9D8ea95f42147b8C9/logo.png b/blockchains/smartchain/assets/0xa96f3414334F5A0A529ff5d9D8ea95f42147b8C9/logo.png new file mode 100644 index 00000000..676a12e9 Binary files /dev/null and b/blockchains/smartchain/assets/0xa96f3414334F5A0A529ff5d9D8ea95f42147b8C9/logo.png differ diff --git a/blockchains/smartchain/assets/0xa97ADA2Fe8f69E670e199CF41af720606D8D3FBD/info.json b/blockchains/smartchain/assets/0xa97ADA2Fe8f69E670e199CF41af720606D8D3FBD/info.json new file mode 100644 index 00000000..79b1080f --- /dev/null +++ b/blockchains/smartchain/assets/0xa97ADA2Fe8f69E670e199CF41af720606D8D3FBD/info.json @@ -0,0 +1,11 @@ +{ + "name": "EYFI", + "website": "https://eyfi.finance", + "description": "EYFI, Eyfi finance, eyfi yield farming, eyfi amm dex, dex platform, eyfi staking, yield farming.", + "explorer": "https://bscscan.com/token/0xa97ADA2Fe8f69E670e199CF41af720606D8D3FBD", + "type": "BEP20", + "symbol": "EYFI", + "decimals": 8, + "status": "abandoned", + "id": "0xa97ADA2Fe8f69E670e199CF41af720606D8D3FBD" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa97ADA2Fe8f69E670e199CF41af720606D8D3FBD/logo.png b/blockchains/smartchain/assets/0xa97ADA2Fe8f69E670e199CF41af720606D8D3FBD/logo.png new file mode 100644 index 00000000..5e9007c3 Binary files /dev/null and b/blockchains/smartchain/assets/0xa97ADA2Fe8f69E670e199CF41af720606D8D3FBD/logo.png differ diff --git a/blockchains/smartchain/assets/0xa9B21900115843D655c4A8A5cb7aDF49e8F4113a/info.json b/blockchains/smartchain/assets/0xa9B21900115843D655c4A8A5cb7aDF49e8F4113a/info.json new file mode 100644 index 00000000..9fbb8ef6 --- /dev/null +++ b/blockchains/smartchain/assets/0xa9B21900115843D655c4A8A5cb7aDF49e8F4113a/info.json @@ -0,0 +1,14 @@ +{ + "name": "Rotomoon", + "website": "https://rotomoon.app/", + "description": "Rotomoon is a token from Binance Smart Chain", + "explorer": "https://bscscan.com/token/0xa9B21900115843D655c4A8A5cb7aDF49e8F4113a", + "type": "BEP20", + "symbol": "ROTO", + "decimals": 9, + "status": "active", + "id": "0xa9B21900115843D655c4A8A5cb7aDF49e8F4113a", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa9B21900115843D655c4A8A5cb7aDF49e8F4113a/logo.png b/blockchains/smartchain/assets/0xa9B21900115843D655c4A8A5cb7aDF49e8F4113a/logo.png new file mode 100644 index 00000000..3a0206e0 Binary files /dev/null and b/blockchains/smartchain/assets/0xa9B21900115843D655c4A8A5cb7aDF49e8F4113a/logo.png differ diff --git a/blockchains/smartchain/assets/0xa9F179C99567D6D671c3AC5eDf206F5fc647483f/info.json b/blockchains/smartchain/assets/0xa9F179C99567D6D671c3AC5eDf206F5fc647483f/info.json new file mode 100644 index 00000000..48ce096f --- /dev/null +++ b/blockchains/smartchain/assets/0xa9F179C99567D6D671c3AC5eDf206F5fc647483f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mammon", + "type": "BEP20", + "symbol": "MMON", + "decimals": 8, + "website": "https://mammon.money", + "description": "Mammon (MMON) based on bsc blockchain to pay to trade on coffee industry import and export from Central America El Salvador, Honduras, Guatemala, Costa Rica and Panamá.", + "explorer": "https://bscscan.com/token/0xa9F179C99567D6D671c3AC5eDf206F5fc647483f", + "status": "active", + "id": "0xa9F179C99567D6D671c3AC5eDf206F5fc647483f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa9F179C99567D6D671c3AC5eDf206F5fc647483f/logo.png b/blockchains/smartchain/assets/0xa9F179C99567D6D671c3AC5eDf206F5fc647483f/logo.png new file mode 100644 index 00000000..2a33daa5 Binary files /dev/null and b/blockchains/smartchain/assets/0xa9F179C99567D6D671c3AC5eDf206F5fc647483f/logo.png differ diff --git a/blockchains/smartchain/assets/0xa9c41A46a6B3531d28d5c32F6633dd2fF05dFB90/info.json b/blockchains/smartchain/assets/0xa9c41A46a6B3531d28d5c32F6633dd2fF05dFB90/info.json new file mode 100644 index 00000000..72d2da8a --- /dev/null +++ b/blockchains/smartchain/assets/0xa9c41A46a6B3531d28d5c32F6633dd2fF05dFB90/info.json @@ -0,0 +1,11 @@ +{ + "name": "WaultSwap", + "type": "BEP20", + "symbol": "WEX", + "decimals": 18, + "website": "https://wault.finance/", + "description": "Wault Finance is a decentralized finance hub that connects all of the primary DeFi use-cases within one simple ecosystem, on the Binance Smart Chain. In short, an all-in-one DeFi Platform!We’ve built a protocol including 2 tokens – WAULTx and WEX – and some unique features such as: WaultSwap (AMM), Wault Launchpad (new project presales), Wault Locker (liquidity locks for new or established projects), Wault Farms (staking and farming) and many other great services.", + "explorer": "https://bscscan.com/token/0xa9c41A46a6B3531d28d5c32F6633dd2fF05dFB90", + "status": "active", + "id": "0xa9c41A46a6B3531d28d5c32F6633dd2fF05dFB90" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa9c41A46a6B3531d28d5c32F6633dd2fF05dFB90/logo.png b/blockchains/smartchain/assets/0xa9c41A46a6B3531d28d5c32F6633dd2fF05dFB90/logo.png new file mode 100644 index 00000000..dbaca59e Binary files /dev/null and b/blockchains/smartchain/assets/0xa9c41A46a6B3531d28d5c32F6633dd2fF05dFB90/logo.png differ diff --git a/blockchains/smartchain/assets/0xa9eA4b786ee5b7A733c035564Bfd9341A4c9FC1e/info.json b/blockchains/smartchain/assets/0xa9eA4b786ee5b7A733c035564Bfd9341A4c9FC1e/info.json new file mode 100644 index 00000000..9efafb3f --- /dev/null +++ b/blockchains/smartchain/assets/0xa9eA4b786ee5b7A733c035564Bfd9341A4c9FC1e/info.json @@ -0,0 +1,25 @@ +{ + "name": "Apecoin", + "website": "https://APEcoin.dev", + "description": "APEcoin embraces the humor and viral nature of memes by developing an ecosystem of platforms that celebrate and explore crypto trends. GO APE!", + "explorer": "https://bscscan.com/token/0xa9eA4b786ee5b7A733c035564Bfd9341A4c9FC1e", + "type": "BEP20", + "symbol": "APE", + "decimals": 18, + "status": "active", + "id": "0xa9eA4b786ee5b7A733c035564Bfd9341A4c9FC1e", + "links": [ + { + "name": "x", + "url": "https://x.com/Go_APEcoin?s=20" + }, + { + "name": "telegram", + "url": "https://t.me/APEcoin_Chat" + }, + { + "name": "medium", + "url": "https://go-apecoin.medium.com" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa9eA4b786ee5b7A733c035564Bfd9341A4c9FC1e/logo.png b/blockchains/smartchain/assets/0xa9eA4b786ee5b7A733c035564Bfd9341A4c9FC1e/logo.png new file mode 100644 index 00000000..13cc69f7 Binary files /dev/null and b/blockchains/smartchain/assets/0xa9eA4b786ee5b7A733c035564Bfd9341A4c9FC1e/logo.png differ diff --git a/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/info.json b/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/info.json new file mode 100644 index 00000000..7863d905 --- /dev/null +++ b/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/info.json @@ -0,0 +1,36 @@ +{ + "name": "Pleasure Coin", + "website": "https://pleasurecoin.com/", + "description": "Pleasure Coin is an ERC-20 token on the Ethereum, Polygon and BSC chain that is be utilized within the Pleasure Network, an adult industry ecosystem that empowers individuals and businesses.", + "explorer": "https://bscscan.com/token/0xaA076B62EFC6f357882E07665157A271aB46A063", + "type": "BEP20", + "symbol": "NSFW", + "decimals": 18, + "status": "active", + "tags": [ + "wrapped" + ], + "id": "0xaA076B62EFC6f357882E07665157A271aB46A063", + "links": [ + { + "name": "telegram", + "url": "https://t.me/pleasurecoin_crypto" + }, + { + "name": "discord", + "url": "https://discord.com/invite/GCHkdY6fnF" + }, + { + "name": "x", + "url": "https://x.com/Pleasure_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pleasure-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/pleasure-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/logo.png b/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/logo.png new file mode 100644 index 00000000..2592a2e3 Binary files /dev/null and b/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/logo.png differ diff --git a/blockchains/smartchain/assets/0xaA357b0F167923Efc1D6978a868f81866cA6E98c/info.json b/blockchains/smartchain/assets/0xaA357b0F167923Efc1D6978a868f81866cA6E98c/info.json new file mode 100644 index 00000000..a0ff7e22 --- /dev/null +++ b/blockchains/smartchain/assets/0xaA357b0F167923Efc1D6978a868f81866cA6E98c/info.json @@ -0,0 +1,37 @@ +{ + "name": "ShibX", + "type": "BEP20", + "symbol": "$ShibX", + "decimals": 4, + "website": "https://shibxbsc.com/", + "description": "SHIBX is the first Rebase token which passively rewards Binance Pegged $SHIB INU for holding the token. This Rebase tokens also known as elastic supply is a new contract function that has has taken the BSC network by storm.", + "explorer": "https://bscscan.com/token/0xaA357b0F167923Efc1D6978a868f81866cA6E98c", + "status": "active", + "id": "0xaA357b0F167923Efc1D6978a868f81866cA6E98c", + "links": [ + { + "name": "x", + "url": "https://x.com/ShibXOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/Shib_X" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shibx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shibx/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/rgG7yEse" + }, + { + "name": "whitepaper", + "url": "https://shibxbsc.com/wp-content/uploads/2021/10/SHIBX-WHITEPAPER-1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaA357b0F167923Efc1D6978a868f81866cA6E98c/logo.png b/blockchains/smartchain/assets/0xaA357b0F167923Efc1D6978a868f81866cA6E98c/logo.png new file mode 100644 index 00000000..47862bee Binary files /dev/null and b/blockchains/smartchain/assets/0xaA357b0F167923Efc1D6978a868f81866cA6E98c/logo.png differ diff --git a/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/info.json b/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/info.json new file mode 100644 index 00000000..1d3c6b03 --- /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 00000000..e99ba907 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 00000000..ae89d03d --- /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 00000000..e95e765b 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 new file mode 100644 index 00000000..0f7c9a84 --- /dev/null +++ b/blockchains/smartchain/assets/0xaC41Fb8013c0B63588fC63997785A5d79E73eb28/info.json @@ -0,0 +1,36 @@ +{ + "name": "Frz solar system", + "type": "BEP20", + "symbol": "Frzss", + "decimals": 18, + "website": "https://frzss.com/", + "description": "the main purpose of the FRZS token is to strengthen the solar energy industry ", + "explorer": "https://bscscan.com/token/0xac41fb8013c0b63588fc63997785a5d79e73eb28", + "status": "active", + "id": "0xaC41Fb8013c0B63588fC63997785A5d79E73eb28", + "links": [ + { + "name": "x", + "url": "https://x.com/frztoken?t=50fc06_SxNW9rpEaR8-1cQ&s=09" + }, + { + "name": "telegram", + "url": "https://t.me/frzsstoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/frz-solar-system/" + }, + { + "name": "whitepaper", + "url": "https://frzss.com/White-Paper/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xac41fb8013c0b63588fc63997785a5d79e73eb28#code" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaC41Fb8013c0B63588fC63997785A5d79E73eb28/logo.png b/blockchains/smartchain/assets/0xaC41Fb8013c0B63588fC63997785A5d79E73eb28/logo.png new file mode 100644 index 00000000..a136b9c8 Binary files /dev/null and b/blockchains/smartchain/assets/0xaC41Fb8013c0B63588fC63997785A5d79E73eb28/logo.png differ diff --git a/blockchains/smartchain/assets/0xaC472D0EED2B8a2f57a6E304eA7eBD8E88D1d36f/info.json b/blockchains/smartchain/assets/0xaC472D0EED2B8a2f57a6E304eA7eBD8E88D1d36f/info.json new file mode 100644 index 00000000..d1f4f61f --- /dev/null +++ b/blockchains/smartchain/assets/0xaC472D0EED2B8a2f57a6E304eA7eBD8E88D1d36f/info.json @@ -0,0 +1,11 @@ +{ + "name": "Anime Token", + "type": "BEP20", + "symbol": "ANI", + "decimals": 18, + "website": "https://animetoken.me", + "description": "Anime Token - AnimeSwap AMM on BSC Blockchain.", + "explorer": "https://bscscan.com/token/0xaC472D0EED2B8a2f57a6E304eA7eBD8E88D1d36f", + "status": "active", + "id": "0xaC472D0EED2B8a2f57a6E304eA7eBD8E88D1d36f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaC472D0EED2B8a2f57a6E304eA7eBD8E88D1d36f/logo.png b/blockchains/smartchain/assets/0xaC472D0EED2B8a2f57a6E304eA7eBD8E88D1d36f/logo.png new file mode 100644 index 00000000..11e24d55 Binary files /dev/null and b/blockchains/smartchain/assets/0xaC472D0EED2B8a2f57a6E304eA7eBD8E88D1d36f/logo.png differ diff --git a/blockchains/smartchain/assets/0xaCd6b5f76Db153FB45EAE6D5be5BDbd45d1b2A8C/info.json b/blockchains/smartchain/assets/0xaCd6b5f76Db153FB45EAE6D5be5BDbd45d1b2A8C/info.json new file mode 100644 index 00000000..5360c81b --- /dev/null +++ b/blockchains/smartchain/assets/0xaCd6b5f76Db153FB45EAE6D5be5BDbd45d1b2A8C/info.json @@ -0,0 +1,12 @@ +{ + "name": "Peach Token", + "website": "https://peachswap.org/", + "description": "PeachSwap - An evolution of #Uniswap with $Peach tokenomics on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xaCd6b5f76Db153FB45EAE6D5be5BDbd45d1b2A8C", + "research": "", + "type": "BEP20", + "symbol": "PEACH", + "decimals": 18, + "status": "active", + "id": "0xaCd6b5f76Db153FB45EAE6D5be5BDbd45d1b2A8C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaCd6b5f76Db153FB45EAE6D5be5BDbd45d1b2A8C/logo.png b/blockchains/smartchain/assets/0xaCd6b5f76Db153FB45EAE6D5be5BDbd45d1b2A8C/logo.png new file mode 100644 index 00000000..dd109b5e Binary files /dev/null and b/blockchains/smartchain/assets/0xaCd6b5f76Db153FB45EAE6D5be5BDbd45d1b2A8C/logo.png differ diff --git a/blockchains/smartchain/assets/0xaD56701D9e57957e28e546Db7db508A16d4f86CC/info.json b/blockchains/smartchain/assets/0xaD56701D9e57957e28e546Db7db508A16d4f86CC/info.json new file mode 100644 index 00000000..1340ae6c --- /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 00000000..9346b7f1 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 00000000..cbf14519 --- /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 00000000..c2d1e4c3 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 new file mode 100644 index 00000000..c7b33a1b --- /dev/null +++ b/blockchains/smartchain/assets/0xaDD8A06fd58761A5047426e160B2B88AD3B9D464/info.json @@ -0,0 +1,25 @@ +{ + "name": "CheeseSwap", + "website": "https://cheeseswap.app/", + "description": "CheeseSwap is A Decentralized Finance & Entertainment Project.", + "explorer": "https://bscscan.com/token/0xaDD8A06fd58761A5047426e160B2B88AD3B9D464", + "type": "BEP20", + "symbol": "PIZZA", + "decimals": 18, + "status": "active", + "id": "0xaDD8A06fd58761A5047426e160B2B88AD3B9D464", + "links": [ + { + "name": "github", + "url": "https://github.com/cheeseswapbsc/" + }, + { + "name": "x", + "url": "https://x.com/cheeseswapbsc" + }, + { + "name": "telegram", + "url": "https://t.me/cheeseswapbsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaDD8A06fd58761A5047426e160B2B88AD3B9D464/logo.png b/blockchains/smartchain/assets/0xaDD8A06fd58761A5047426e160B2B88AD3B9D464/logo.png new file mode 100644 index 00000000..46a010ca Binary files /dev/null and b/blockchains/smartchain/assets/0xaDD8A06fd58761A5047426e160B2B88AD3B9D464/logo.png differ diff --git a/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/info.json b/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/info.json new file mode 100644 index 00000000..9133a734 --- /dev/null +++ b/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/info.json @@ -0,0 +1,36 @@ +{ + "name": "ECLAT", + "type": "BEP20", + "symbol": "ELT", + "decimals": 18, + "website": "https://eclat.world", + "description": "Eclat World create an advance emerging platform for decentralized finance world. Eclat ecosystem help to manage crypto market on a hyper-efficient infrastructure.", + "explorer": "https://bscscan.com/token/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167", + "status": "active", + "id": "0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167", + "links": [ + { + "name": "x", + "url": "https://x.com/eclatworld" + }, + { + "name": "telegram", + "url": "https://t.me/eclatworldtoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/eclat/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/eclat" + }, + { + "name": "whitepaper", + "url": "https://eclat.world/WhitePaper.pdf" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/logo.png b/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/logo.png new file mode 100644 index 00000000..c5609229 Binary files /dev/null and b/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/logo.png differ diff --git a/blockchains/smartchain/assets/0xaEC945e04baF28b135Fa7c640f624f8D90F1C3a6/info.json b/blockchains/smartchain/assets/0xaEC945e04baF28b135Fa7c640f624f8D90F1C3a6/info.json new file mode 100644 index 00000000..c8195613 --- /dev/null +++ b/blockchains/smartchain/assets/0xaEC945e04baF28b135Fa7c640f624f8D90F1C3a6/info.json @@ -0,0 +1,37 @@ +{ + "name": "Coin98", + "type": "BEP20", + "symbol": "C98", + "decimals": 18, + "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.", + "website": "https://coin98.com", + "explorer": "https://bscscan.com/token/0xaEC945e04baF28b135Fa7c640f624f8D90F1C3a6", + "status": "active", + "id": "0xaEC945e04baF28b135Fa7c640f624f8D90F1C3a6", + "links": [ + { + "name": "github", + "url": "https://github.com/coin98" + }, + { + "name": "x", + "url": "https://x.com/coin98_finance" + }, + { + "name": "telegram", + "url": "https://t.me/coin98_labs" + }, + { + "name": "whitepaper", + "url": "https://coin98.com/coin98-whitepaper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coin98/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coin98/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaEC945e04baF28b135Fa7c640f624f8D90F1C3a6/logo.png b/blockchains/smartchain/assets/0xaEC945e04baF28b135Fa7c640f624f8D90F1C3a6/logo.png new file mode 100644 index 00000000..adc07976 Binary files /dev/null and b/blockchains/smartchain/assets/0xaEC945e04baF28b135Fa7c640f624f8D90F1C3a6/logo.png differ diff --git a/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/info.json b/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/info.json new file mode 100644 index 00000000..8da7a955 --- /dev/null +++ b/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/info.json @@ -0,0 +1,54 @@ +{ + "name": "Prom", + "type": "BEP20", + "symbol": "PROM", + "decimals": 18, + "website": "https://prom.io", + "description": "Prom is a gaming NFT marketplace & rental. Completely decentralized, confidential, and safe, it meets the needs of players, metaverse-enthusiasts, NFT owners, guilds, and games.", + "explorer": "https://bscscan.com/token/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5", + "status": "active", + "id": "0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5", + "links": [ + { + "name": "x", + "url": "https://x.com/prom_io" + }, + { + "name": "telegram", + "url": "https://t.me/prom_io" + }, + { + "name": "telegram_news", + "url": "https://t.me/prom_ann" + }, + { + "name": "discord", + "url": "https://discord.com/invite/prom" + }, + { + "name": "whitepaper", + "url": "https://prom.io/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/prom/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/prom" + }, + { + "name": "medium", + "url": "https://prom-io.medium.com/" + }, + { + "name": "github", + "url": "https://github.com/prom-io" + } + ], + "tags": [ + "gamefi", + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/logo.png b/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/logo.png new file mode 100644 index 00000000..b8bd23e7 Binary files /dev/null and b/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/logo.png differ diff --git a/blockchains/smartchain/assets/0xaF6B24d341cB5ec258e93aBe929a0326fC98eAF6/info.json b/blockchains/smartchain/assets/0xaF6B24d341cB5ec258e93aBe929a0326fC98eAF6/info.json new file mode 100644 index 00000000..4830f999 --- /dev/null +++ b/blockchains/smartchain/assets/0xaF6B24d341cB5ec258e93aBe929a0326fC98eAF6/info.json @@ -0,0 +1,11 @@ +{ + "name": "ElonCity", + "website": "https://eloncity.dev/", + "description": "The profit (dividends) are accrued to your account on a daily basis and in real-time. You can withdraw the dividends at any time.", + "explorer": "https://bscscan.com/token/0xaF6B24d341cB5ec258e93aBe929a0326fC98eAF6", + "type": "BEP20", + "symbol": "Elons", + "decimals": 8, + "status": "active", + "id": "0xaF6B24d341cB5ec258e93aBe929a0326fC98eAF6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaF6B24d341cB5ec258e93aBe929a0326fC98eAF6/logo.png b/blockchains/smartchain/assets/0xaF6B24d341cB5ec258e93aBe929a0326fC98eAF6/logo.png new file mode 100644 index 00000000..950759ba Binary files /dev/null and b/blockchains/smartchain/assets/0xaF6B24d341cB5ec258e93aBe929a0326fC98eAF6/logo.png differ diff --git a/blockchains/smartchain/assets/0xaF6Bd11A6F8f9c44b9D18f5FA116E403db599f8E/info.json b/blockchains/smartchain/assets/0xaF6Bd11A6F8f9c44b9D18f5FA116E403db599f8E/info.json new file mode 100644 index 00000000..54464a3a --- /dev/null +++ b/blockchains/smartchain/assets/0xaF6Bd11A6F8f9c44b9D18f5FA116E403db599f8E/info.json @@ -0,0 +1,21 @@ +{ + "name": "AlinX", + "type": "BEP20", + "symbol": "ALIX", + "decimals": 18, + "website": "https://alinx.io/", + "description": "AlinX is a play and earn platform built by incorporating NFT into games on the BSC ecosystem. Here players can find a lot of games with various genres to get entertainment in their spare time and be able to earn an extra part of their income by owning themselves with high-value NFTs.", + "explorer": "https://bscscan.com/token/0xaf6bd11a6f8f9c44b9d18f5fa116e403db599f8e", + "status": "active", + "id": "0xaF6Bd11A6F8f9c44b9D18f5FA116E403db599f8E", + "links": [ + { + "name": "x", + "url": "https://x.com/alinx_io" + }, + { + "name": "telegram", + "url": "https://t.me/alinx_group" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaF6Bd11A6F8f9c44b9D18f5FA116E403db599f8E/logo.png b/blockchains/smartchain/assets/0xaF6Bd11A6F8f9c44b9D18f5FA116E403db599f8E/logo.png new file mode 100644 index 00000000..88dc7899 Binary files /dev/null and b/blockchains/smartchain/assets/0xaF6Bd11A6F8f9c44b9D18f5FA116E403db599f8E/logo.png differ diff --git a/blockchains/smartchain/assets/0xaF6C03acf72355Ce98d0741302B78870b376428C/info.json b/blockchains/smartchain/assets/0xaF6C03acf72355Ce98d0741302B78870b376428C/info.json new file mode 100644 index 00000000..8f3b9a88 --- /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 00000000..9bfe6ec7 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 00000000..49bcf82d --- /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/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/logo.png b/blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/logo.png new file mode 100644 index 00000000..239b9fff Binary files /dev/null and b/blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/logo.png differ diff --git a/blockchains/smartchain/assets/0xaFE3321309A994831884fc1725F4c3236AC79f76/info.json b/blockchains/smartchain/assets/0xaFE3321309A994831884fc1725F4c3236AC79f76/info.json new file mode 100644 index 00000000..b65359b3 --- /dev/null +++ b/blockchains/smartchain/assets/0xaFE3321309A994831884fc1725F4c3236AC79f76/info.json @@ -0,0 +1,37 @@ +{ + "name": "Memeflate", + "type": "BEP20", + "symbol": "$MFLATE", + "decimals": 9, + "website": "https://www.memeflate.io", + "description": "MemFlate2.0 Market-Place is a platform that 'HOUSES' all types of buyers and sellers from graphic designers to video production and web development & connect them to projects in need of creatives In turn rewarding creators and holders of $MFLATE through this utility. Further expansion of the project has lead me in to 'real world' service for hire, locally&globally from catering to wedding planners customers will be able to find all services at Memeflate", + "explorer": "https://bscscan.com/token/0xaFE3321309A994831884fc1725F4c3236AC79f76", + "status": "active", + "id": "0xaFE3321309A994831884fc1725F4c3236AC79f76", + "links": [ + { + "name": "x", + "url": "https://x.com/memeflate" + }, + { + "name": "github", + "url": "https://github.com/mrmflate" + }, + { + "name": "telegram", + "url": "https://t.me/MemeFlateReloaded " + }, + { + "name": "whitepaper", + "url": "https://memeflate.io/white-paper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/memeflate" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/memeflate" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaFE3321309A994831884fc1725F4c3236AC79f76/logo.png b/blockchains/smartchain/assets/0xaFE3321309A994831884fc1725F4c3236AC79f76/logo.png new file mode 100644 index 00000000..2bd742e8 Binary files /dev/null and b/blockchains/smartchain/assets/0xaFE3321309A994831884fc1725F4c3236AC79f76/logo.png differ diff --git a/blockchains/smartchain/assets/0xaFF9084f2374585879e8B434C399E29E80ccE635/info.json b/blockchains/smartchain/assets/0xaFF9084f2374585879e8B434C399E29E80ccE635/info.json new file mode 100644 index 00000000..3c016a35 --- /dev/null +++ b/blockchains/smartchain/assets/0xaFF9084f2374585879e8B434C399E29E80ccE635/info.json @@ -0,0 +1,65 @@ +{ + "name": "Flux", + "type": "BEP20", + "symbol": "FLUX", + "decimals": 8, + "website": "https://runonflux.io", + "description": "The Flux Ecosystem is a suite of decentralized computing services and blockchain-as-a-service solutions together to offer an interoperable, decentralized AWS-like environment.Flux utilizes a POW to power the ecosystem, providing incentive for hardware, governance on-chain, enterprise-grade compute power and utilizes the blockchain to ensure transparency.Flux node operators can choose from three tiers to stand up nodes, rewarding anyone for providing hardware to the network anywhere in the world.", + "explorer": "https://bscscan.com/token/0xaFF9084f2374585879e8B434C399E29E80ccE635", + "status": "active", + "id": "0xaFF9084f2374585879e8B434C399E29E80ccE635", + "links": [ + { + "name": "x", + "url": "https://x.com/RunOnFlux" + }, + { + "name": "discord", + "url": "https://discord.com/runonflux" + }, + { + "name": "github", + "url": "https://github.com/RunOnFlux" + }, + { + "name": "telegram", + "url": "https://t.me/zelhub" + }, + { + "name": "forum", + "url": "https://bitcointalk.org/index.php?topic=2853688.0" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/RunOnFlux/" + }, + { + "name": "medium", + "url": "https://fluxofficial.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCphbdfb1MXYgUPsdhQPcnGw" + }, + { + "name": "facebook", + "url": "https://facebook.com/ruonflux/" + }, + { + "name": "source_code", + "url": "https://github.com/RunOnFlux/fluxd" + }, + { + "name": "whitepaper", + "url": "https://fluxwhitepaper.app.runonflux.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zel/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/flux-zelcash" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaFF9084f2374585879e8B434C399E29E80ccE635/logo.png b/blockchains/smartchain/assets/0xaFF9084f2374585879e8B434C399E29E80ccE635/logo.png new file mode 100644 index 00000000..0793b0ee Binary files /dev/null and b/blockchains/smartchain/assets/0xaFF9084f2374585879e8B434C399E29E80ccE635/logo.png differ diff --git a/blockchains/smartchain/assets/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB/info.json b/blockchains/smartchain/assets/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB/info.json new file mode 100644 index 00000000..2ee45cd8 --- /dev/null +++ b/blockchains/smartchain/assets/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB/info.json @@ -0,0 +1,40 @@ +{ + "name": "Grove", + "type": "BEP20", + "symbol": "GVR", + "decimals": 18, + "website": "https://www.grovetoken.com/", + "description": "Our mission is to create wealth, for all Grovers, by harnessing the opportunities of a secure, decentralized digital currency in an environmentally conscious way. By compensating nature for years of abuse, Grove will create a healthier, wealthier future for all.", + "explorer": "https://bscscan.com/token/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB", + "status": "abandoned", + "id": "0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB", + "links": [ + { + "name": "x", + "url": "https://x.com/grovetoken" + }, + { + "name": "telegram", + "url": "https://t.me/grovetoken" + }, + { + "name": "discord", + "url": "https://discord.com/grovetoken" + }, + { + "name": "whitepaper", + "url": "https://global-uploads.webflow.com/62b03f7c4e77803f83b758a2/62b97125c0b635fb993e4ac9_(ENGLISH)%20GroveToken-Whitepaper-v.1.4.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grove/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/grove" + } + ], + "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 00000000..37a7a487 --- /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 00000000..56df13d0 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 new file mode 100644 index 00000000..678cd6ad --- /dev/null +++ b/blockchains/smartchain/assets/0xaa15f52Ef3994213a9e06731F6471786B75372CC/info.json @@ -0,0 +1,25 @@ +{ + "name": "LilDogeFloki", + "website": "https://lildogefloki.fun", + "description": "Lil Doge Floki ($LDF), a community-driven meme token inspired by Elon Musk! Lil Doge Floki's mission is to build a DAO to drive the most popular and original P2E game on BSC that combines Metaverse, NFTs, and the ability to earn why you play!", + "explorer": "https://bscscan.com/token/0xaa15f52Ef3994213a9e06731F6471786B75372CC", + "type": "BEP20", + "symbol": "LDF🐕", + "decimals": 9, + "status": "active", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Lil_Doge_Floki" + }, + { + "name": "x", + "url": "https://x.com/lildogefiokiceo" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lil-doge-floki-token" + } + ], + "id": "0xaa15f52Ef3994213a9e06731F6471786B75372CC" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaa15f52Ef3994213a9e06731F6471786B75372CC/logo.png b/blockchains/smartchain/assets/0xaa15f52Ef3994213a9e06731F6471786B75372CC/logo.png new file mode 100644 index 00000000..d8fd28dc Binary files /dev/null and b/blockchains/smartchain/assets/0xaa15f52Ef3994213a9e06731F6471786B75372CC/logo.png differ diff --git a/blockchains/smartchain/assets/0xaa2C290bF62B7d100D2D7f87b7223e3A71b737F7/info.json b/blockchains/smartchain/assets/0xaa2C290bF62B7d100D2D7f87b7223e3A71b737F7/info.json new file mode 100644 index 00000000..e788c0c0 --- /dev/null +++ b/blockchains/smartchain/assets/0xaa2C290bF62B7d100D2D7f87b7223e3A71b737F7/info.json @@ -0,0 +1,11 @@ +{ + "name": "SaveAnimal", + "website": "https://saveanimal.io/", + "description": "SaveAnimal is a charity token helping animals in need by donating 2% of every transaction", + "explorer": "https://bscscan.com/token/0xaa2C290bF62B7d100D2D7f87b7223e3A71b737F7", + "type": "BEP20", + "symbol": "SAVEANIMAL", + "decimals": 9, + "status": "active", + "id": "0xaa2C290bF62B7d100D2D7f87b7223e3A71b737F7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaa2C290bF62B7d100D2D7f87b7223e3A71b737F7/logo.png b/blockchains/smartchain/assets/0xaa2C290bF62B7d100D2D7f87b7223e3A71b737F7/logo.png new file mode 100644 index 00000000..97665cba Binary files /dev/null and b/blockchains/smartchain/assets/0xaa2C290bF62B7d100D2D7f87b7223e3A71b737F7/logo.png differ diff --git a/blockchains/smartchain/assets/0xaabCaC4B236d1a7290FB05234862348D274621Cf/info.json b/blockchains/smartchain/assets/0xaabCaC4B236d1a7290FB05234862348D274621Cf/info.json new file mode 100644 index 00000000..376a55cd --- /dev/null +++ b/blockchains/smartchain/assets/0xaabCaC4B236d1a7290FB05234862348D274621Cf/info.json @@ -0,0 +1,11 @@ +{ + "name": "IceBreak-R Token", + "website": "https://icebreak-r.com", + "description": "ICEBRK token is the governance and utility token for the IceBreak-R Network, a social media driven NFT-marketplace and DeFi ecosystem", + "explorer": "https://bscscan.com/token/0xaabCaC4B236d1a7290FB05234862348D274621Cf", + "type": "BEP20", + "symbol": "ICEBRK", + "decimals": 9, + "status": "active", + "id": "0xaabCaC4B236d1a7290FB05234862348D274621Cf" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaabCaC4B236d1a7290FB05234862348D274621Cf/logo.png b/blockchains/smartchain/assets/0xaabCaC4B236d1a7290FB05234862348D274621Cf/logo.png new file mode 100644 index 00000000..c9a25f2d Binary files /dev/null and b/blockchains/smartchain/assets/0xaabCaC4B236d1a7290FB05234862348D274621Cf/logo.png differ diff --git a/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/info.json b/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/info.json new file mode 100644 index 00000000..ed92c8be --- /dev/null +++ b/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/info.json @@ -0,0 +1,37 @@ +{ + "name": "BinStarter", + "type": "BEP20", + "symbol": "BSR", + "decimals": 18, + "website": "https://binstarter.io", + "description": "BSR is is a BinStarter Launchpad Token", + "explorer": "https://bscscan.com/token/0xab287e6D370C61f105630e656B5468ACB4D00423", + "status": "abandoned", + "id": "0xab287e6D370C61f105630e656B5468ACB4D00423", + "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": "whitepaper", + "url": "https://binstarter.io/bsrdoc/BinStarter-Whitepaper-PDF.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xab2F74804C022C5249d52e743AF4340E42F5f3b6/info.json b/blockchains/smartchain/assets/0xab2F74804C022C5249d52e743AF4340E42F5f3b6/info.json new file mode 100644 index 00000000..a0465943 --- /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 00000000..2a02e71a 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 00000000..80c160c7 --- /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 00000000..9362c7fa 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 new file mode 100644 index 00000000..bfe1a900 --- /dev/null +++ b/blockchains/smartchain/assets/0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167/info.json @@ -0,0 +1,36 @@ +{ + "name": "FEG Token", + "symbol": "FEGbsc", + "type": "BEP20", + "decimals": 9, + "description": "FEG is a decentralized token that has developed the first fork to combine the powers of Shiba Inu (SHIB) and reflect.finance (RFI) with a super deflationary black hole that hyper-deflates the supply of the FEG governance token.", + "website": "https://fegtoken.com", + "explorer": "https://bscscan.com/token/0xacfc95585d80ab62f67a14c566c1b7a49fe91167", + "status": "abandoned", + "id": "0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/fegtoken" + }, + { + "name": "telegram", + "url": "https://t.me/fegchat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/K372n4NkbJ" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/FegToken_Official/" + }, + { + "name": "medium", + "url": "https://fegtoken.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xacb2d47827C9813AE26De80965845D80935afd0B/info.json b/blockchains/smartchain/assets/0xacb2d47827C9813AE26De80965845D80935afd0B/info.json new file mode 100644 index 00000000..24b67a73 --- /dev/null +++ b/blockchains/smartchain/assets/0xacb2d47827C9813AE26De80965845D80935afd0B/info.json @@ -0,0 +1,25 @@ +{ + "name": "MacaronSwap Token", + "website": "https://macaronswap.finance/", + "description": "The future of decentralized exchange & farming platform on BSC", + "explorer": "https://bscscan.com/token/0xacb2d47827C9813AE26De80965845D80935afd0B", + "type": "BEP20", + "symbol": "MCRN", + "decimals": 18, + "status": "active", + "id": "0xacb2d47827C9813AE26De80965845D80935afd0B", + "links": [ + { + "name": "x", + "url": "https://x.com/macaronswap" + }, + { + "name": "telegram", + "url": "https://t.me/macaronswap" + }, + { + "name": "medium", + "url": "https://medium.com/macaronswap" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xacb2d47827C9813AE26De80965845D80935afd0B/logo.png b/blockchains/smartchain/assets/0xacb2d47827C9813AE26De80965845D80935afd0B/logo.png new file mode 100644 index 00000000..48cfcc66 Binary files /dev/null and b/blockchains/smartchain/assets/0xacb2d47827C9813AE26De80965845D80935afd0B/logo.png differ diff --git a/blockchains/smartchain/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json b/blockchains/smartchain/assets/0xad5cdc3340904285B8159089974A99a1A09EB4C0/info.json new file mode 100644 index 00000000..836530a0 --- /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 00000000..6d22d110 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 00000000..791ea571 --- /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 00000000..c0ded91f Binary files /dev/null and b/blockchains/smartchain/assets/0xadFF8332D429E420BaC898b934E90D40Fb51121B/logo.png differ diff --git a/blockchains/smartchain/assets/0xae768A3d387c3B65d382535a790370Af94bb1691/info.json b/blockchains/smartchain/assets/0xae768A3d387c3B65d382535a790370Af94bb1691/info.json new file mode 100644 index 00000000..faa46a17 --- /dev/null +++ b/blockchains/smartchain/assets/0xae768A3d387c3B65d382535a790370Af94bb1691/info.json @@ -0,0 +1,11 @@ +{ + "name": "UndoToken", + "website": "https://undo.website", + "description": "Recycle using Blockchain.", + "explorer": "https://bscscan.com/token/0xae768A3d387c3B65d382535a790370Af94bb1691", + "type": "BEP20", + "symbol": "UNDO", + "decimals": 9, + "status": "active", + "id": "0xae768A3d387c3B65d382535a790370Af94bb1691" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xae768A3d387c3B65d382535a790370Af94bb1691/logo.png b/blockchains/smartchain/assets/0xae768A3d387c3B65d382535a790370Af94bb1691/logo.png new file mode 100644 index 00000000..52c753fb Binary files /dev/null and b/blockchains/smartchain/assets/0xae768A3d387c3B65d382535a790370Af94bb1691/logo.png differ diff --git a/blockchains/smartchain/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json b/blockchains/smartchain/assets/0xaeB681B69E5094E04d11BCeF51A71358A374C3ED/info.json new file mode 100644 index 00000000..86e9ee07 --- /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 00000000..fb7784c7 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 new file mode 100644 index 00000000..7138602a --- /dev/null +++ b/blockchains/smartchain/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/info.json @@ -0,0 +1,25 @@ +{ + "name": "PontoonToken", + "website": "https://pontoon.fi/", + "description": "Cross-chain liquidity mirror protocol", + "links": [ + { + "name": "x", + "url": "https://x.com/pontoonfi/" + }, + { + "name": "telegram", + "url": "https://t.me/pontoon_fi" + }, + { + "name": "medium", + "url": "https://pontoonfi.medium.com/" + } + ], + "explorer": "https://bscscan.com/token/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02", + "type": "BEP20", + "symbol": "TOON", + "decimals": 18, + "status": "active", + "id": "0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/logo.png b/blockchains/smartchain/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/logo.png new file mode 100755 index 00000000..0dec3fdb Binary files /dev/null and b/blockchains/smartchain/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/logo.png differ diff --git a/blockchains/smartchain/assets/0xaeF0d72a118ce24feE3cD1d43d383897D05B4e99/info.json b/blockchains/smartchain/assets/0xaeF0d72a118ce24feE3cD1d43d383897D05B4e99/info.json new file mode 100644 index 00000000..fc62e8f5 --- /dev/null +++ b/blockchains/smartchain/assets/0xaeF0d72a118ce24feE3cD1d43d383897D05B4e99/info.json @@ -0,0 +1,11 @@ +{ + "name": "WINk", + "symbol": "WIN", + "type": "BEP20", + "decimals": 18, + "description": "WINK describes itself as betting DApp.", + "website": "https://www.wink.org/#/", + "explorer": "https://bscscan.com/token/0xaef0d72a118ce24fee3cd1d43d383897d05b4e99", + "status": "active", + "id": "0xaeF0d72a118ce24feE3cD1d43d383897D05B4e99" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaeF0d72a118ce24feE3cD1d43d383897D05B4e99/logo.png b/blockchains/smartchain/assets/0xaeF0d72a118ce24feE3cD1d43d383897D05B4e99/logo.png new file mode 100644 index 00000000..981c0e37 Binary files /dev/null and b/blockchains/smartchain/assets/0xaeF0d72a118ce24feE3cD1d43d383897D05B4e99/logo.png differ diff --git a/blockchains/smartchain/assets/0xaf96a19c2DD4a0f6B077D9481fCc8C9102FAa141/info.json b/blockchains/smartchain/assets/0xaf96a19c2DD4a0f6B077D9481fCc8C9102FAa141/info.json new file mode 100644 index 00000000..a4442999 --- /dev/null +++ b/blockchains/smartchain/assets/0xaf96a19c2DD4a0f6B077D9481fCc8C9102FAa141/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moonarch.app", + "website": "https://moonarch.app", + "description": "Moonarch provides powerful and original tools to BSC traders", + "explorer": "https://bscscan.com/token/0xaf96a19c2DD4a0f6B077D9481fCc8C9102FAa141", + "type": "BEP20", + "symbol": "MOONARCH", + "decimals": 9, + "status": "active", + "id": "0xaf96a19c2DD4a0f6B077D9481fCc8C9102FAa141" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaf96a19c2DD4a0f6B077D9481fCc8C9102FAa141/logo.png b/blockchains/smartchain/assets/0xaf96a19c2DD4a0f6B077D9481fCc8C9102FAa141/logo.png new file mode 100644 index 00000000..cdf09275 Binary files /dev/null and b/blockchains/smartchain/assets/0xaf96a19c2DD4a0f6B077D9481fCc8C9102FAa141/logo.png differ diff --git a/blockchains/smartchain/assets/0xb020805e0Bc7F0e353D1343d67A239F417D57Bbf/info.json b/blockchains/smartchain/assets/0xb020805e0Bc7F0e353D1343d67A239F417D57Bbf/info.json new file mode 100644 index 00000000..860ed0fb --- /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 00000000..cd61c329 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 00000000..5046d2a8 --- /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 00000000..5b23d9aa Binary files /dev/null and b/blockchains/smartchain/assets/0xb034f6Cb52b7f2Fd5a7EeeffCa6b9aDCD6b9A6F6/logo.png differ diff --git a/blockchains/smartchain/assets/0xb036f689bd98B4Bd3BD648FA09A23e54d839A859/info.json b/blockchains/smartchain/assets/0xb036f689bd98B4Bd3BD648FA09A23e54d839A859/info.json new file mode 100644 index 00000000..759f4c79 --- /dev/null +++ b/blockchains/smartchain/assets/0xb036f689bd98B4Bd3BD648FA09A23e54d839A859/info.json @@ -0,0 +1,11 @@ +{ + "name": "TACOCAT Token", + "type": "BEP20", + "symbol": "TCT", + "decimals": 18, + "website": "https://tacocat.co", + "description": "TacoCat Token is a utility token on the Binance Smart Chain intended to be the backbone of a lifestyle brand and ecosystem governed and operated by a corporate entity named The TacoCat Company Inc.", + "explorer": "https://bscscan.com/token/0xb036f689bd98b4bd3bd648fa09a23e54d839a859", + "status": "active", + "id": "0xb036f689bd98B4Bd3BD648FA09A23e54d839A859" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb036f689bd98B4Bd3BD648FA09A23e54d839A859/logo.png b/blockchains/smartchain/assets/0xb036f689bd98B4Bd3BD648FA09A23e54d839A859/logo.png new file mode 100644 index 00000000..9e2907b9 Binary files /dev/null and b/blockchains/smartchain/assets/0xb036f689bd98B4Bd3BD648FA09A23e54d839A859/logo.png differ diff --git a/blockchains/smartchain/assets/0xb07905396A419B121213efe1d17cfD0ff20aE597/info.json b/blockchains/smartchain/assets/0xb07905396A419B121213efe1d17cfD0ff20aE597/info.json new file mode 100644 index 00000000..b47f57f0 --- /dev/null +++ b/blockchains/smartchain/assets/0xb07905396A419B121213efe1d17cfD0ff20aE597/info.json @@ -0,0 +1,28 @@ +{ + "name": "PIZZANFT", + "website": "https://pizza-nft.com", + "description": "PIZZA NFT, an exclusive creator & developer of The NFT Pizza Dough Astros: Astro KungFu Fighters & Astro Jocks. A series of 2000 NFT Astros will be created and minted for Smart Chain NFT Marketplace. NFT Astros will be characters in 2D, 3D & VR games.", + "explorer": "https://bscscan.com/token/0xb07905396A419B121213efe1d17cfD0ff20aE597", + "type": "BEP20", + "symbol": "$PIZZA", + "decimals": 18, + "status": "active", + "id": "0xb07905396A419B121213efe1d17cfD0ff20aE597", + "tags": [ + "nft" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/SafePizzaCoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pizzanft/" + }, + { + "name": "x", + "url": "https://x.com/pizzaNFT2E" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb07905396A419B121213efe1d17cfD0ff20aE597/logo.png b/blockchains/smartchain/assets/0xb07905396A419B121213efe1d17cfD0ff20aE597/logo.png new file mode 100644 index 00000000..1e01d60e Binary files /dev/null and b/blockchains/smartchain/assets/0xb07905396A419B121213efe1d17cfD0ff20aE597/logo.png differ diff --git a/blockchains/smartchain/assets/0xb1280589dbac3e7ce111bF4A7Fb9c71A30213F7e/info.json b/blockchains/smartchain/assets/0xb1280589dbac3e7ce111bF4A7Fb9c71A30213F7e/info.json new file mode 100644 index 00000000..265f0905 --- /dev/null +++ b/blockchains/smartchain/assets/0xb1280589dbac3e7ce111bF4A7Fb9c71A30213F7e/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEXTools", + "website": "https://dextools.io/app", + "description": "Ultimate Hub and Defi App For Decentralized exchanges like Uniswap, Pancakeswap, Sushiswap, etc.", + "explorer": "https://bscscan.com/token/0xb1280589dbac3e7ce111bF4A7Fb9c71A30213F7e", + "type": "BEP20", + "symbol": "DEXT", + "decimals": 18, + "status": "active", + "id": "0xb1280589dbac3e7ce111bF4A7Fb9c71A30213F7e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb1280589dbac3e7ce111bF4A7Fb9c71A30213F7e/logo.png b/blockchains/smartchain/assets/0xb1280589dbac3e7ce111bF4A7Fb9c71A30213F7e/logo.png new file mode 100644 index 00000000..23e9e742 Binary files /dev/null and b/blockchains/smartchain/assets/0xb1280589dbac3e7ce111bF4A7Fb9c71A30213F7e/logo.png differ diff --git a/blockchains/smartchain/assets/0xb1547683DA678f2e1F003A780143EC10Af8a832B/info.json b/blockchains/smartchain/assets/0xb1547683DA678f2e1F003A780143EC10Af8a832B/info.json new file mode 100644 index 00000000..30bdb0b8 --- /dev/null +++ b/blockchains/smartchain/assets/0xb1547683DA678f2e1F003A780143EC10Af8a832B/info.json @@ -0,0 +1,14 @@ +{ + "name": "Shiba Inu (Portal)", + "type": "BEP20", + "symbol": "SHIB", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://shibatoken.com/", + "explorer": "https://bscscan.com/token/0xb1547683DA678f2e1F003A780143EC10Af8a832B", + "status": "active", + "id": "0xb1547683DA678f2e1F003A780143EC10Af8a832B", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb1547683DA678f2e1F003A780143EC10Af8a832B/logo.png b/blockchains/smartchain/assets/0xb1547683DA678f2e1F003A780143EC10Af8a832B/logo.png new file mode 100644 index 00000000..5f4a1d03 Binary files /dev/null and b/blockchains/smartchain/assets/0xb1547683DA678f2e1F003A780143EC10Af8a832B/logo.png differ diff --git a/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/info.json b/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/info.json new file mode 100644 index 00000000..3b9d51d2 --- /dev/null +++ b/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/info.json @@ -0,0 +1,32 @@ +{ + "name": "Defi Tiger", + "website": "https://www.defitigertoken.com/", + "description": "A Decentralized Meme Asset Driven By A Community Of Defi Enthusiasts With A Unique Love For Felines.", + "explorer": "https://bscscan.com/token/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6", + "type": "BEP20", + "symbol": "DTG", + "decimals": 9, + "status": "active", + "id": "0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6", + "tags": [ + "memes" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/DefiTigertoken" + }, + { + "name": "x", + "url": "https://x.com/defitigertoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defi-tiger/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/defi-tiger/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/logo.png b/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/logo.png new file mode 100644 index 00000000..5366f7d1 Binary files /dev/null and b/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/logo.png differ diff --git a/blockchains/smartchain/assets/0xb1ABA049C42B6fe811766EBA61F51f11C57acC4b/info.json b/blockchains/smartchain/assets/0xb1ABA049C42B6fe811766EBA61F51f11C57acC4b/info.json new file mode 100644 index 00000000..7a39fe48 --- /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 00000000..32e8069f 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 00000000..4e14579e --- /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 new file mode 100644 index 00000000..87059591 --- /dev/null +++ b/blockchains/smartchain/assets/0xb21225F833f2Fb1BE7d88Ee5347aae001F5b5DB1/info.json @@ -0,0 +1,49 @@ +{ + "name": "SPAY", + "type": "BEP20", + "symbol": "SPAY", + "decimals": 9, + "website": "https://spay.finance/", + "description": "Crypto in your everyday life. SPAY aims to provide a decentralized, private and instant payment method based on cryptocurrency.", + "explorer": "https://bscscan.com/token/0xb21225F833f2Fb1BE7d88Ee5347aae001F5b5DB1", + "status": "active", + "id": "0xb21225F833f2Fb1BE7d88Ee5347aae001F5b5DB1", + "links": [ + { + "name": "x", + "url": "https://x.com/smart_spay" + }, + { + "name": "github", + "url": "https://github.com/smartpaymen/" + }, + { + "name": "telegram", + "url": "https://t.me/SPAYGLOBAL" + }, + { + "name": "whitepaper", + "url": "https://spay.finance/wp-content/uploads/2021/10/SPAY-Whitepaper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/Smart-Payment-SPAY-110395591423797/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/smartpayment/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/smart-payment" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xb21225f833f2fb1be7d88ee5347aae001f5b5db1#code" + }, + { + "name": "docs", + "url": "https://github.com/TechRate/Smart-Contract-Audits/blob/main/November/SPAY%20Full%20Smart%20Contract%20Security%20Audit.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb21225F833f2Fb1BE7d88Ee5347aae001F5b5DB1/logo.png b/blockchains/smartchain/assets/0xb21225F833f2Fb1BE7d88Ee5347aae001F5b5DB1/logo.png new file mode 100644 index 00000000..84d19ee9 Binary files /dev/null and b/blockchains/smartchain/assets/0xb21225F833f2Fb1BE7d88Ee5347aae001F5b5DB1/logo.png differ diff --git a/blockchains/smartchain/assets/0xb2343143f814639c9b1f42961C698247171dF34a/info.json b/blockchains/smartchain/assets/0xb2343143f814639c9b1f42961C698247171dF34a/info.json new file mode 100644 index 00000000..3f0f3939 --- /dev/null +++ b/blockchains/smartchain/assets/0xb2343143f814639c9b1f42961C698247171dF34a/info.json @@ -0,0 +1,33 @@ +{ + "name": "CORE MultiChain Token", + "symbol": "CMCX", + "type": "BEP20", + "decimals": 18, + "description": "CORE is a multi chain PoS network focused on interoperability, scalability and usability. It utilizes AI-enabled Proof of Stake algorithm, multi layered consensus model and voting based governance.", + "website": "https://www.coremultichain.com", + "explorer": "https://bscscan.com/token/0xb2343143f814639c9b1f42961C698247171dF34a", + "status": "active", + "id": "0xb2343143f814639c9b1f42961C698247171dF34a", + "links": [ + { + "name": "x", + "url": "https://x.com/COREMultichain" + }, + { + "name": "telegram", + "url": "https://t.me/coreblockchain" + }, + { + "name": "medium", + "url": "https://medium.com/@coreblockchain" + }, + { + "name": "whitepaper", + "url": "https://www.coremultichain.com/docs/core-paper.pdf" + }, + { + "name": "github", + "url": "https://github.com/CORE-Blockchain" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb2343143f814639c9b1f42961C698247171dF34a/logo.png b/blockchains/smartchain/assets/0xb2343143f814639c9b1f42961C698247171dF34a/logo.png new file mode 100644 index 00000000..b2a582bf Binary files /dev/null and b/blockchains/smartchain/assets/0xb2343143f814639c9b1f42961C698247171dF34a/logo.png differ diff --git a/blockchains/smartchain/assets/0xb26D2d67C7652f361b73552310dA5753041b3867/info.json b/blockchains/smartchain/assets/0xb26D2d67C7652f361b73552310dA5753041b3867/info.json new file mode 100644 index 00000000..b46ce16b --- /dev/null +++ b/blockchains/smartchain/assets/0xb26D2d67C7652f361b73552310dA5753041b3867/info.json @@ -0,0 +1,21 @@ +{ + "name": "Binapet", + "website": "https://binapet.com", + "description": "Binapet deprecated token.", + "explorer": "https://bscscan.com/token/0xb26D2d67C7652f361b73552310dA5753041b3867", + "type": "BEP20", + "symbol": "BPET", + "decimals": 18, + "status": "abandoned", + "id": "0xb26D2d67C7652f361b73552310dA5753041b3867", + "links": [ + { + "name": "x", + "url": "https://x.com/binapet" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/binapet" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb28a7f8f5328FafFDd862985177583c2Bb71E016/info.json b/blockchains/smartchain/assets/0xb28a7f8f5328FafFDd862985177583c2Bb71E016/info.json new file mode 100644 index 00000000..ddd5bba6 --- /dev/null +++ b/blockchains/smartchain/assets/0xb28a7f8f5328FafFDd862985177583c2Bb71E016/info.json @@ -0,0 +1,11 @@ +{ + "name": "PolkaPlay Token", + "website": "https://polkaplay.io", + "description": "PolkaPlay is a Social NFT & Gaming platform. From content to NFTs, PolkaPlay is the easiest way to create, sell, and collect NFTs. PolkaPlay enables platform users to create images, short videos, and NFTs seamlessly while earning rewards through Play to Earn games.", + "explorer": "https://bscscan.com/token/0xb28a7f8f5328FafFDd862985177583c2Bb71E016", + "type": "BEP20", + "symbol": "POLO", + "decimals": 18, + "status": "active", + "id": "0xb28a7f8f5328FafFDd862985177583c2Bb71E016" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb28a7f8f5328FafFDd862985177583c2Bb71E016/logo.png b/blockchains/smartchain/assets/0xb28a7f8f5328FafFDd862985177583c2Bb71E016/logo.png new file mode 100644 index 00000000..802d48f7 Binary files /dev/null and b/blockchains/smartchain/assets/0xb28a7f8f5328FafFDd862985177583c2Bb71E016/logo.png differ diff --git a/blockchains/smartchain/assets/0xb2f7797389ad34Ebd3a30ac6402861844fAC7F5e/info.json b/blockchains/smartchain/assets/0xb2f7797389ad34Ebd3a30ac6402861844fAC7F5e/info.json new file mode 100644 index 00000000..d7a2ebf7 --- /dev/null +++ b/blockchains/smartchain/assets/0xb2f7797389ad34Ebd3a30ac6402861844fAC7F5e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Сhord Protocol", + "website": "https://chordprotocol.io", + "description": "Chord is a decentralized network for musicians where anyone can turn their songs and performances or any kind of music into unique NFTs and freely commercialize them without intermediaries.", + "explorer": "https://bscscan.com/token/0xb2f7797389ad34Ebd3a30ac6402861844fAC7F5e", + "type": "BEP20", + "symbol": "CHORD", + "decimals": 18, + "status": "active", + "id": "0xb2f7797389ad34Ebd3a30ac6402861844fAC7F5e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb2f7797389ad34Ebd3a30ac6402861844fAC7F5e/logo.png b/blockchains/smartchain/assets/0xb2f7797389ad34Ebd3a30ac6402861844fAC7F5e/logo.png new file mode 100644 index 00000000..a75de544 Binary files /dev/null and b/blockchains/smartchain/assets/0xb2f7797389ad34Ebd3a30ac6402861844fAC7F5e/logo.png differ diff --git a/blockchains/smartchain/assets/0xb31f5d117541825D6692c10e4357008EDF3E2BCD/info.json b/blockchains/smartchain/assets/0xb31f5d117541825D6692c10e4357008EDF3E2BCD/info.json new file mode 100644 index 00000000..8f504717 --- /dev/null +++ b/blockchains/smartchain/assets/0xb31f5d117541825D6692c10e4357008EDF3E2BCD/info.json @@ -0,0 +1,34 @@ +{ + "name": "Cream Ethereum Token", + "website": "https://app.cream.finance", + "description": "C.R.E.A.M. bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. C.R.E.A.M. has launched on Ethereum and Binance Smart Chain.", + "research": "https://docs.cream.finance", + "explorer": "https://bscscan.com/token/0xb31f5d117541825D6692c10e4357008EDF3E2BCD", + "type": "BEP20", + "symbol": "crETH", + "decimals": 8, + "status": "active", + "id": "0xb31f5d117541825D6692c10e4357008EDF3E2BCD", + "links": [ + { + "name": "github", + "url": "https://github.com/CreamFi" + }, + { + "name": "x", + "url": "https://x.com/CreamdotFinance" + }, + { + "name": "telegram", + "url": "https://t.me/creamfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/8Ms25mV" + }, + { + "name": "medium", + "url": "https://medium.com/@CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb31f5d117541825D6692c10e4357008EDF3E2BCD/logo.png b/blockchains/smartchain/assets/0xb31f5d117541825D6692c10e4357008EDF3E2BCD/logo.png new file mode 100644 index 00000000..76457695 Binary files /dev/null and b/blockchains/smartchain/assets/0xb31f5d117541825D6692c10e4357008EDF3E2BCD/logo.png differ diff --git a/blockchains/smartchain/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/info.json b/blockchains/smartchain/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/info.json new file mode 100644 index 00000000..710f5be3 --- /dev/null +++ b/blockchains/smartchain/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/info.json @@ -0,0 +1,29 @@ +{ + "name": "OpenSwap", + "website": "https://openswap.xyz", + "description": "OpenSwap is an integrated one-stop DeFi hub designed to revolutionize on-chain liquidity.", + "explorer": "https://bscscan.com/token/0xb32ac3c79a94ac1eb258f3c830bbdbc676483c93", + "type": "BEP20", + "symbol": "OSWAP", + "decimals": 18, + "status": "active", + "id": "0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93", + "links": [ + { + "name": "x", + "url": "https://x.com/openswapdex" + }, + { + "name": "blog", + "url": "https://openswapdex.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/openswapdex" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/logo.png b/blockchains/smartchain/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/logo.png new file mode 100644 index 00000000..6b4601ea Binary files /dev/null and b/blockchains/smartchain/assets/0xb32aC3C79A94aC1eb258f3C830bBDbc676483c93/logo.png differ diff --git a/blockchains/smartchain/assets/0xb358b0e5A8943029e66175830D85198fE6cC93f6/info.json b/blockchains/smartchain/assets/0xb358b0e5A8943029e66175830D85198fE6cC93f6/info.json new file mode 100644 index 00000000..2b93dcce --- /dev/null +++ b/blockchains/smartchain/assets/0xb358b0e5A8943029e66175830D85198fE6cC93f6/info.json @@ -0,0 +1,33 @@ +{ + "name": "Aidi Finance", + "website": "https://aidiverse.com", + "description": "AIDI BSC is a deflationary BEP20 token, 100% decentralized, and is the main token in the Aidiverse ecosystem. We are bringing together complete decentralised finance solutions and integrating them with Blockchain gaming and NFTs.", + "explorer": "https://bscscan.com/token/0xb358b0e5a8943029e66175830d85198fe6cc93f6", + "type": "BEP20", + "symbol": "AIDI", + "decimals": 9, + "status": "active", + "id": "0xb358b0e5A8943029e66175830D85198fE6cC93f6", + "links": [ + { + "name": "x", + "url": "https://x.com/AidiToken" + }, + { + "name": "github", + "url": "https://github.com/AidiFinance/Aidiverse-Contracts" + }, + { + "name": "telegram", + "url": "https://t.me/aidi_official" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aidi-finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aidi-finance-bsc/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb358b0e5A8943029e66175830D85198fE6cC93f6/logo.png b/blockchains/smartchain/assets/0xb358b0e5A8943029e66175830D85198fE6cC93f6/logo.png new file mode 100644 index 00000000..6893b4ec Binary files /dev/null and b/blockchains/smartchain/assets/0xb358b0e5A8943029e66175830D85198fE6cC93f6/logo.png differ diff --git a/blockchains/smartchain/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json b/blockchains/smartchain/assets/0xb365Cd2588065F522D379AD19e903304f6B622C6/info.json new file mode 100644 index 00000000..fcd60532 --- /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 00000000..85dccc98 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 00000000..60bd1e5a --- /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/0xb3B3C87C7d3FC6411f2d015760c30AF56b02Aa93/info.json b/blockchains/smartchain/assets/0xb3B3C87C7d3FC6411f2d015760c30AF56b02Aa93/info.json new file mode 100644 index 00000000..0bc9a129 --- /dev/null +++ b/blockchains/smartchain/assets/0xb3B3C87C7d3FC6411f2d015760c30AF56b02Aa93/info.json @@ -0,0 +1,11 @@ +{ + "name": "SKYrocket", + "website": "https://skyrocketsr.com", + "description": "SKYRocket is a community driven token focusing on the mobile games industry.", + "explorer": "https://bscscan.com/token/0xb3b3c87c7d3fc6411f2d015760c30af56b02aa93", + "type": "BEP20", + "symbol": "Sr", + "decimals": 18, + "status": "active", + "id": "0xb3B3C87C7d3FC6411f2d015760c30AF56b02Aa93" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb3B3C87C7d3FC6411f2d015760c30AF56b02Aa93/logo.png b/blockchains/smartchain/assets/0xb3B3C87C7d3FC6411f2d015760c30AF56b02Aa93/logo.png new file mode 100644 index 00000000..a08a4728 Binary files /dev/null and b/blockchains/smartchain/assets/0xb3B3C87C7d3FC6411f2d015760c30AF56b02Aa93/logo.png differ diff --git a/blockchains/smartchain/assets/0xb3Cb6d2f8f2FDe203a022201C81a96c167607F15/info.json b/blockchains/smartchain/assets/0xb3Cb6d2f8f2FDe203a022201C81a96c167607F15/info.json new file mode 100644 index 00000000..aab9daf3 --- /dev/null +++ b/blockchains/smartchain/assets/0xb3Cb6d2f8f2FDe203a022201C81a96c167607F15/info.json @@ -0,0 +1,25 @@ +{ + "name": "GAMMA", + "type": "BEP20", + "symbol": "GAMMA", + "decimals": 18, + "website": "https://planetfinance.io/", + "description": "GAMMA is the utility token that powers Planet Finance. It incentivizes lenders, borrowers & liquidity providers and it can be used to unlock discount levels on Green Planet.", + "explorer": "https://bscscan.com/token/0xb3Cb6d2f8f2FDe203a022201C81a96c167607F15", + "status": "active", + "id": "0xb3Cb6d2f8f2FDe203a022201C81a96c167607F15", + "links": [ + { + "name": "telegram", + "url": "https://t.me/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/0xb3Cb6d2f8f2FDe203a022201C81a96c167607F15/logo.png b/blockchains/smartchain/assets/0xb3Cb6d2f8f2FDe203a022201C81a96c167607F15/logo.png new file mode 100644 index 00000000..36159f02 Binary files /dev/null and b/blockchains/smartchain/assets/0xb3Cb6d2f8f2FDe203a022201C81a96c167607F15/logo.png differ diff --git a/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/info.json b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/info.json new file mode 100644 index 00000000..7753f49e --- /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 00000000..4f5c2f60 Binary files /dev/null and b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/logo.png differ diff --git a/blockchains/smartchain/assets/0xb3d54df1676c1fe4b0987C041fA8C28471429ce7/info.json b/blockchains/smartchain/assets/0xb3d54df1676c1fe4b0987C041fA8C28471429ce7/info.json new file mode 100644 index 00000000..c86ea827 --- /dev/null +++ b/blockchains/smartchain/assets/0xb3d54df1676c1fe4b0987C041fA8C28471429ce7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lovecoin Token", + "type": "BEP20", + "symbol": "Lovecoin", + "decimals": 8, + "website": "https://lovecointoken.com/", + "description": "Lovecoin is a decentralized peer to peer cryptocurrency based upon Bitcoin and Tron blockchain technology, designed with the purpose of spreading; Love, Peace, Happiness and Economic Freedom worldwide.", + "explorer": "https://bscscan.com/token/0xb3d54df1676c1fe4b0987C041fA8C28471429ce7", + "status": "active", + "id": "0xb3d54df1676c1fe4b0987C041fA8C28471429ce7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb3d54df1676c1fe4b0987C041fA8C28471429ce7/logo.png b/blockchains/smartchain/assets/0xb3d54df1676c1fe4b0987C041fA8C28471429ce7/logo.png new file mode 100644 index 00000000..fec018fb Binary files /dev/null and b/blockchains/smartchain/assets/0xb3d54df1676c1fe4b0987C041fA8C28471429ce7/logo.png differ diff --git a/blockchains/smartchain/assets/0xb3d691125514Db7a5bE3326af86a72ecdC2CDE16/info.json b/blockchains/smartchain/assets/0xb3d691125514Db7a5bE3326af86a72ecdC2CDE16/info.json new file mode 100644 index 00000000..fdf8a9ac --- /dev/null +++ b/blockchains/smartchain/assets/0xb3d691125514Db7a5bE3326af86a72ecdC2CDE16/info.json @@ -0,0 +1,25 @@ +{ + "name": "Zoo Token", + "type": "BEP20", + "symbol": "ZOOT", + "decimals": 9, + "website": "https://zootoken.io", + "description": "ZooToken will be the hub for these Animal Coins key-values.", + "explorer": "https://bscscan.com/token/0xb3d691125514Db7a5bE3326af86a72ecdC2CDE16", + "status": "active", + "id": "0xb3d691125514Db7a5bE3326af86a72ecdC2CDE16", + "links": [ + { + "name": "x", + "url": "https://x.com/ZooToken_BSC" + }, + { + "name": "medium", + "url": "https://zootokenio.medium.com" + }, + { + "name": "telegram", + "url": "https://t.me/ZooTokenOfficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb3d691125514Db7a5bE3326af86a72ecdC2CDE16/logo.png b/blockchains/smartchain/assets/0xb3d691125514Db7a5bE3326af86a72ecdC2CDE16/logo.png new file mode 100644 index 00000000..53fcc704 Binary files /dev/null and b/blockchains/smartchain/assets/0xb3d691125514Db7a5bE3326af86a72ecdC2CDE16/logo.png differ diff --git a/blockchains/smartchain/assets/0xb427e47e8fDD678278d2A91EEaC014ffcDDaF029/info.json b/blockchains/smartchain/assets/0xb427e47e8fDD678278d2A91EEaC014ffcDDaF029/info.json new file mode 100644 index 00000000..011cec9d --- /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 00000000..5fabd0a5 --- /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 new file mode 100644 index 00000000..a0fb25f7 --- /dev/null +++ b/blockchains/smartchain/assets/0xb4404DaB7C0eC48b428Cf37DeC7fb628bcC41B36/info.json @@ -0,0 +1,44 @@ +{ + "name": "MetaGear Token", + "type": "BEP20", + "symbol": "GEAR", + "decimals": 18, + "website": "https://metagear.game", + "description": "MetaGear is a game that shows creativity in assembling robots to fight.", + "explorer": "https://bscscan.com/token/0xb4404DaB7C0eC48b428Cf37DeC7fb628bcC41B36", + "status": "active", + "id": "0xb4404DaB7C0eC48b428Cf37DeC7fb628bcC41B36", + "links": [ + { + "name": "x", + "url": "https://x.com/MetaGearGame" + }, + { + "name": "github", + "url": "https://github.com/MetaGear-Game/" + }, + { + "name": "telegram", + "url": "https://t.me/MetaGearOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metagear/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/metagear" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.metagear.game/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/TVrWrcjVJH" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb4404DaB7C0eC48b428Cf37DeC7fb628bcC41B36/logo.png b/blockchains/smartchain/assets/0xb4404DaB7C0eC48b428Cf37DeC7fb628bcC41B36/logo.png new file mode 100644 index 00000000..0a7d69f9 Binary files /dev/null and b/blockchains/smartchain/assets/0xb4404DaB7C0eC48b428Cf37DeC7fb628bcC41B36/logo.png differ diff --git a/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/info.json b/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/info.json new file mode 100644 index 00000000..6dd720fd --- /dev/null +++ b/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/info.json @@ -0,0 +1,26 @@ +{ + "name": "Pepe Coin", + "type": "BEP20", + "symbol": "PEPE", + "decimals": 18, + "website": "https://pepecoinbsc.xyz", + "description": "Pepe is the most memeable memecoin around the world, it‘s time to make memecoins great again and add some frog beside all dog memecoins.", + "explorer": "https://bscscan.com/token/0xb46584e0efde3092e04010a13f2eae62adb3b9f0", + "status": "active", + "id": "0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0", + "links": [ + { + "name": "x", + "url": "https://x.com/Pepecoin_BSC2" + }, + { + "name": "telegram", + "url": "https://t.me/PEPECOINBSC2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepe-coin-bsc2" + } + ], + "tags": [] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/logo.png b/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/logo.png new file mode 100644 index 00000000..a72b3917 Binary files /dev/null and b/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/logo.png differ diff --git a/blockchains/smartchain/assets/0xb4A92eDAb7c9Ba94b6637E8052D8bd133EC4221C/info.json b/blockchains/smartchain/assets/0xb4A92eDAb7c9Ba94b6637E8052D8bd133EC4221C/info.json new file mode 100644 index 00000000..3fab2135 --- /dev/null +++ b/blockchains/smartchain/assets/0xb4A92eDAb7c9Ba94b6637E8052D8bd133EC4221C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rooster Finance", + "symbol": "RTF", + "type": "BEP20", + "decimals": 9, + "description": "Rooster Finance is a decentralized gaming token based on Binance Smart Chain.", + "website": "https://roosterfinance.xyz", + "explorer": "https://bscscan.com/token/0xb4a92edab7c9ba94b6637e8052d8bd133ec4221c", + "status": "active", + "id": "0xb4A92eDAb7c9Ba94b6637E8052D8bd133EC4221C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb4A92eDAb7c9Ba94b6637E8052D8bd133EC4221C/logo.png b/blockchains/smartchain/assets/0xb4A92eDAb7c9Ba94b6637E8052D8bd133EC4221C/logo.png new file mode 100644 index 00000000..15d95fff Binary files /dev/null and b/blockchains/smartchain/assets/0xb4A92eDAb7c9Ba94b6637E8052D8bd133EC4221C/logo.png differ diff --git a/blockchains/smartchain/assets/0xb4D695569236273745B4CD54B539b1b9Cc1513af/info.json b/blockchains/smartchain/assets/0xb4D695569236273745B4CD54B539b1b9Cc1513af/info.json new file mode 100644 index 00000000..06fec444 --- /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 00000000..38f63fa3 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 00000000..8367a9c9 --- /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 00000000..8bef532c Binary files /dev/null and b/blockchains/smartchain/assets/0xb4E14166F6dE109f800C52A84a434C383137C8dC/logo.png differ diff --git a/blockchains/smartchain/assets/0xb54A58cdC7d3fEFd93EA4454E0C1A23Da8bEdC6f/info.json b/blockchains/smartchain/assets/0xb54A58cdC7d3fEFd93EA4454E0C1A23Da8bEdC6f/info.json new file mode 100644 index 00000000..2026b19a --- /dev/null +++ b/blockchains/smartchain/assets/0xb54A58cdC7d3fEFd93EA4454E0C1A23Da8bEdC6f/info.json @@ -0,0 +1,11 @@ +{ + "name": "hoodrat.finance", + "website": "https://hoodrat.finance/", + "description": "HoodRat is a BEP-20 utility token building an AI anti rug-pull scanner.", + "explorer": "https://bscscan.com/token/0xb54A58cdC7d3fEFd93EA4454E0C1A23Da8bEdC6f", + "type": "BEP20", + "symbol": "HOODRAT", + "decimals": 12, + "status": "active", + "id": "0xb54A58cdC7d3fEFd93EA4454E0C1A23Da8bEdC6f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb54A58cdC7d3fEFd93EA4454E0C1A23Da8bEdC6f/logo.png b/blockchains/smartchain/assets/0xb54A58cdC7d3fEFd93EA4454E0C1A23Da8bEdC6f/logo.png new file mode 100644 index 00000000..a44674b2 Binary files /dev/null and b/blockchains/smartchain/assets/0xb54A58cdC7d3fEFd93EA4454E0C1A23Da8bEdC6f/logo.png differ diff --git a/blockchains/smartchain/assets/0xb568922CE28142A70CE3D108BD3Da20B285CAb81/info.json b/blockchains/smartchain/assets/0xb568922CE28142A70CE3D108BD3Da20B285CAb81/info.json new file mode 100644 index 00000000..1168aa3e --- /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 00000000..6043d5b4 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 new file mode 100644 index 00000000..208a6fc8 --- /dev/null +++ b/blockchains/smartchain/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/info.json @@ -0,0 +1,29 @@ +{ + "name": "Litentry", + "website": "https://www.litentry.com", + "description": "Decentralized identity authentication and user activity data management Infrastructure.", + "explorer": "https://bscscan.com/token/0xb59490ab09a0f526cc7305822ac65f2ab12f9723", + "type": "BEP20", + "symbol": "LIT", + "decimals": 18, + "status": "active", + "id": "0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723", + "links": [ + { + "name": "x", + "url": "https://x.com/litentry" + }, + { + "name": "github", + "url": "https://github.com/litentry/" + }, + { + "name": "telegram", + "url": "https://t.me/litentry" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/litentry/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/logo.png b/blockchains/smartchain/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/logo.png new file mode 100644 index 00000000..ec014d66 Binary files /dev/null and b/blockchains/smartchain/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/logo.png differ diff --git a/blockchains/smartchain/assets/0xb5BBA78B4dF2D47DD46078514a3e296AB3c344Fe/info.json b/blockchains/smartchain/assets/0xb5BBA78B4dF2D47DD46078514a3e296AB3c344Fe/info.json new file mode 100644 index 00000000..8371f3ef --- /dev/null +++ b/blockchains/smartchain/assets/0xb5BBA78B4dF2D47DD46078514a3e296AB3c344Fe/info.json @@ -0,0 +1,41 @@ +{ + "name": "Hertz Network BEP-20 Token", + "website": "https://hertz-network.com/", + "description": "HTZ BEP-20 is the Hertz Network bep-20 token created on Binance Smart Chain. HTZ BEP-20 can be swapped with native HTZ using Hertz Network DeFi tool or exchanges.HTZ coin is the native chain of Hertz Network blockchain.", + "explorer": "https://bscscan.com/token/0xb5BBA78B4dF2D47DD46078514a3e296AB3c344Fe", + "type": "BEP20", + "symbol": "HTZ", + "decimals": 4, + "status": "active", + "id": "0xb5BBA78B4dF2D47DD46078514a3e296AB3c344Fe", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hertz-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hertz-network" + }, + { + "name": "x", + "url": "https://x.com/hertz_network" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/hertznetwork/" + }, + { + "name": "telegram", + "url": "https://t.me/hertznetwork" + }, + { + "name": "medium", + "url": "https://hertznetwork.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/HertzNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb5BBA78B4dF2D47DD46078514a3e296AB3c344Fe/logo.png b/blockchains/smartchain/assets/0xb5BBA78B4dF2D47DD46078514a3e296AB3c344Fe/logo.png new file mode 100644 index 00000000..b2756eb3 Binary files /dev/null and b/blockchains/smartchain/assets/0xb5BBA78B4dF2D47DD46078514a3e296AB3c344Fe/logo.png differ diff --git a/blockchains/smartchain/assets/0xb6090a50f66046E3c6aFB9311846a6432E45060A/info.json b/blockchains/smartchain/assets/0xb6090a50f66046E3c6aFB9311846a6432E45060A/info.json new file mode 100644 index 00000000..605db753 --- /dev/null +++ b/blockchains/smartchain/assets/0xb6090a50f66046E3c6aFB9311846a6432E45060A/info.json @@ -0,0 +1,21 @@ +{ + "name": "PinkMoon", + "website": "https://www.pinkmoon.finance/", + "description": "The next frontier in community driven value - Auto locking LP to enable contract driven passive rewards. Simply hold the token to join the journey and reap the rewards.", + "explorer": "https://bscscan.com/token/0xb6090a50f66046E3c6aFB9311846a6432E45060A", + "type": "BEP20", + "symbol": "PINKM", + "decimals": 9, + "status": "active", + "id": "0xb6090a50f66046E3c6aFB9311846a6432E45060A", + "links": [ + { + "name": "x", + "url": "https://x.com/pinkmoonfinance" + }, + { + "name": "telegram", + "url": "https://t.me/pinkmoonfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb6090a50f66046E3c6aFB9311846a6432E45060A/logo.png b/blockchains/smartchain/assets/0xb6090a50f66046E3c6aFB9311846a6432E45060A/logo.png new file mode 100644 index 00000000..86a35fc3 Binary files /dev/null and b/blockchains/smartchain/assets/0xb6090a50f66046E3c6aFB9311846a6432E45060A/logo.png differ diff --git a/blockchains/smartchain/assets/0xb626213cb1D52Caa1eD71e2a0e62c0113eD8d642/info.json b/blockchains/smartchain/assets/0xb626213cb1D52Caa1eD71e2a0e62c0113eD8d642/info.json new file mode 100644 index 00000000..3e40e435 --- /dev/null +++ b/blockchains/smartchain/assets/0xb626213cb1D52Caa1eD71e2a0e62c0113eD8d642/info.json @@ -0,0 +1,37 @@ +{ + "name": "HUGHUG", + "type": "BEP20", + "symbol": "HGHG", + "decimals": 8, + "website": "https://hughug.io", + "description": "HUG HUG COIN PROJECT is launched to address the long-standing problem of the Japanese idol industry. HUG HUG COIN PROJECT operates to realize the idea of content protection by utilizing new technologies such as blockchain and NFT.", + "explorer": "https://bscscan.com/token/0xb626213cb1D52Caa1eD71e2a0e62c0113eD8d642", + "status": "active", + "id": "0xb626213cb1D52Caa1eD71e2a0e62c0113eD8d642", + "links": [ + { + "name": "x", + "url": "https://x.com/HUGHUG_coin" + }, + { + "name": "telegram", + "url": "https://t.me/HUGHUG_coin" + }, + { + "name": "medium", + "url": "https://medium.com/@hughugcoin" + }, + { + "name": "whitepaper", + "url": "https://hughug.io/pdf/hughug_wp.pdf?0827" + }, + { + "name": "facebook", + "url": "https://facebook.com/HUGHUG_coin-101160302224040" + }, + { + "name": "github", + "url": "https://github.com/Rock-n-Block/AUDIT/blob/main/HGHG" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb626213cb1D52Caa1eD71e2a0e62c0113eD8d642/logo.png b/blockchains/smartchain/assets/0xb626213cb1D52Caa1eD71e2a0e62c0113eD8d642/logo.png new file mode 100644 index 00000000..93c2de44 Binary files /dev/null and b/blockchains/smartchain/assets/0xb626213cb1D52Caa1eD71e2a0e62c0113eD8d642/logo.png differ diff --git a/blockchains/smartchain/assets/0xb63EFBc28860c8097e341DE1fCF59456161E9D98/info.json b/blockchains/smartchain/assets/0xb63EFBc28860c8097e341DE1fCF59456161E9D98/info.json new file mode 100644 index 00000000..1555589f --- /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 00000000..7355d42e 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 new file mode 100644 index 00000000..c197334f --- /dev/null +++ b/blockchains/smartchain/assets/0xb6ADB74efb5801160Ff749b1985Fd3bD5000e938/info.json @@ -0,0 +1,25 @@ +{ + "name": "Gamezone.io", + "type": "BEP20", + "symbol": "GZONE", + "decimals": 18, + "website": "https://gamezone.io/", + "description": "Gamezone is a launchpad for gaming projects", + "explorer": "https://bscscan.com/token/0xb6adb74efb5801160ff749b1985fd3bd5000e938", + "status": "active", + "id": "0xb6ADB74efb5801160Ff749b1985Fd3bD5000e938", + "links": [ + { + "name": "x", + "url": "https://x.com/gamezone_app" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamezone/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/gamezone" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb6ADB74efb5801160Ff749b1985Fd3bD5000e938/logo.png b/blockchains/smartchain/assets/0xb6ADB74efb5801160Ff749b1985Fd3bD5000e938/logo.png new file mode 100644 index 00000000..7dba89d8 Binary files /dev/null and b/blockchains/smartchain/assets/0xb6ADB74efb5801160Ff749b1985Fd3bD5000e938/logo.png differ diff --git a/blockchains/smartchain/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json b/blockchains/smartchain/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json new file mode 100644 index 00000000..2ce2983e --- /dev/null +++ b/blockchains/smartchain/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json @@ -0,0 +1,28 @@ +{ + "name": "pTokens TLOS", + "type": "BEP20", + "symbol": "TLOS", + "decimals": 18, + "website": "https://ptokens.io/", + "description": "pNetwork enables cross-chain movement of assets and data.", + "explorer": "https://bscscan.com/token/0xb6c53431608e626ac81a9776ac3e999c5556717c", + "status": "active", + "id": "0xb6C53431608E626AC81a9776ac3e999c5556717c", + "links": [ + { + "name": "x", + "url": "https://x.com/pNetworkDeFi" + }, + { + "name": "github", + "url": "https://github.com/provable-things" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/telos/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/logo.png b/blockchains/smartchain/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/logo.png new file mode 100644 index 00000000..cc526a26 Binary files /dev/null and b/blockchains/smartchain/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/logo.png differ diff --git a/blockchains/smartchain/assets/0xb74ed4112C23B7c8ef1439FA55D304D537C5599B/info.json b/blockchains/smartchain/assets/0xb74ed4112C23B7c8ef1439FA55D304D537C5599B/info.json new file mode 100644 index 00000000..0fa2e3ac --- /dev/null +++ b/blockchains/smartchain/assets/0xb74ed4112C23B7c8ef1439FA55D304D537C5599B/info.json @@ -0,0 +1,11 @@ +{ + "name": "ChesterCoin", + "website": "https://chesterfinance.info/", + "description": "CTRFI is a fork of Safe Moon. Programmed to reward holders while increasing liquidity and value", + "explorer": "https://bscscan.com/token/0xb74ed4112c23b7c8ef1439fa55d304d537c5599b", + "symbol": "CTRFI", + "type": "BEP20", + "decimals": 9, + "status": "active", + "id": "0xb74ed4112C23B7c8ef1439FA55D304D537C5599B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb74ed4112C23B7c8ef1439FA55D304D537C5599B/logo.png b/blockchains/smartchain/assets/0xb74ed4112C23B7c8ef1439FA55D304D537C5599B/logo.png new file mode 100644 index 00000000..c540db6f Binary files /dev/null and b/blockchains/smartchain/assets/0xb74ed4112C23B7c8ef1439FA55D304D537C5599B/logo.png differ diff --git a/blockchains/smartchain/assets/0xb75A7E8876Df49a74CC4c76C6bDA161a8EA4B483/info.json b/blockchains/smartchain/assets/0xb75A7E8876Df49a74CC4c76C6bDA161a8EA4B483/info.json new file mode 100644 index 00000000..4a6147ad --- /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 00000000..4e05bbad 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 new file mode 100644 index 00000000..7d94a204 --- /dev/null +++ b/blockchains/smartchain/assets/0xb78e41AE7fc8121978168557bB096e1A858be2Ea/info.json @@ -0,0 +1,28 @@ +{ + "name": "MicroSHIBA", + "type": "BEP20", + "symbol": "MICROSHIB", + "decimals": 9, + "website": "https://www.microshiba.net/", + "description": "MicroSHIBA is a brand new token from a very experienced team that has implemented a manual buy back system to help protect investors maintain a steady market price in the event of a whale dump or continuous market sells.", + "explorer": "https://bscscan.com/token/0xb78e41AE7fc8121978168557bB096e1A858be2Ea", + "status": "active", + "id": "0xb78e41AE7fc8121978168557bB096e1A858be2Ea", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/MicroshibaEN" + }, + { + "name": "x", + "url": "https://x.com/MicroShibaBSC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/microshib/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb78e41AE7fc8121978168557bB096e1A858be2Ea/logo.png b/blockchains/smartchain/assets/0xb78e41AE7fc8121978168557bB096e1A858be2Ea/logo.png new file mode 100644 index 00000000..a932828a Binary files /dev/null and b/blockchains/smartchain/assets/0xb78e41AE7fc8121978168557bB096e1A858be2Ea/logo.png differ diff --git a/blockchains/smartchain/assets/0xb7CEF49d89321e22dd3F51a212d58398Ad542640/info.json b/blockchains/smartchain/assets/0xb7CEF49d89321e22dd3F51a212d58398Ad542640/info.json new file mode 100644 index 00000000..a6825cba --- /dev/null +++ b/blockchains/smartchain/assets/0xb7CEF49d89321e22dd3F51a212d58398Ad542640/info.json @@ -0,0 +1,14 @@ +{ + "name": "Milk", + "type": "BEP20", + "symbol": "MILK", + "decimals": 9, + "website": "https://www.milktoken.net/", + "description": "The Milk Token is the first token release as part of the Milk and Butter token ecosystem. The Milk Token is deflationary with reflection redistribution and automatic liquidity functionality. Milk Tokens can be staked by users to earn Butter Tokens. The purpose of the Milk and Butter token ecosystem is to develop a system on the Binance Smart Chain for the automated generation of funds for charity with every use of said tokens.", + "explorer": "https://bscscan.com/token/0xb7CEF49d89321e22dd3F51a212d58398Ad542640", + "status": "active", + "id": "0xb7CEF49d89321e22dd3F51a212d58398Ad542640", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb7CEF49d89321e22dd3F51a212d58398Ad542640/logo.png b/blockchains/smartchain/assets/0xb7CEF49d89321e22dd3F51a212d58398Ad542640/logo.png new file mode 100644 index 00000000..8f76f1c3 Binary files /dev/null and b/blockchains/smartchain/assets/0xb7CEF49d89321e22dd3F51a212d58398Ad542640/logo.png differ diff --git a/blockchains/smartchain/assets/0xb7F2bca9b034f8cc143339Dd12bb31D3D50Cf27a/info.json b/blockchains/smartchain/assets/0xb7F2bca9b034f8cc143339Dd12bb31D3D50Cf27a/info.json new file mode 100644 index 00000000..b1013e32 --- /dev/null +++ b/blockchains/smartchain/assets/0xb7F2bca9b034f8cc143339Dd12bb31D3D50Cf27a/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gorilla Diamond", + "type": "BEP20", + "symbol": "GDT", + "decimals": 9, + "website": "https://www.gorilladiamond.com", + "description": "Building the largest peer-to-peer service cypto service platform", + "explorer": "https://bscscan.com/token/0xb7F2bca9b034f8cc143339Dd12bb31D3D50Cf27a", + "status": "active", + "id": "0xb7F2bca9b034f8cc143339Dd12bb31D3D50Cf27a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb7F2bca9b034f8cc143339Dd12bb31D3D50Cf27a/logo.png b/blockchains/smartchain/assets/0xb7F2bca9b034f8cc143339Dd12bb31D3D50Cf27a/logo.png new file mode 100644 index 00000000..d947ac42 Binary files /dev/null and b/blockchains/smartchain/assets/0xb7F2bca9b034f8cc143339Dd12bb31D3D50Cf27a/logo.png differ diff --git a/blockchains/smartchain/assets/0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094/info.json b/blockchains/smartchain/assets/0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094/info.json new file mode 100644 index 00000000..25157df8 --- /dev/null +++ b/blockchains/smartchain/assets/0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094/info.json @@ -0,0 +1,37 @@ +{ + "name": "BNB pegged Paxos Standard", + "website": "https://paxos.com/standard", + "description": "BNB pegged Paxos Standard (PAX BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Paxos Standard (PAX ERC20) at a ratio of 1:1.", + "explorer": "https://bscscan.com/token/0xb7f8cd00c5a06c0537e2abff0b58033d02e5e094", + "research": "https://research.binance.com/en/projects/paxos-standard", + "type": "BEP20", + "symbol": "PAX", + "decimals": 18, + "status": "active", + "id": "0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094", + "tags": [ + "binance-peg" + ], + "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-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094/logo.png b/blockchains/smartchain/assets/0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094/logo.png new file mode 100644 index 00000000..d813568c Binary files /dev/null and b/blockchains/smartchain/assets/0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094/logo.png differ diff --git a/blockchains/smartchain/assets/0xb7b36CA86685Af52186f1f9394e91d115A9Da654/info.json b/blockchains/smartchain/assets/0xb7b36CA86685Af52186f1f9394e91d115A9Da654/info.json new file mode 100644 index 00000000..4e340fec --- /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 00000000..21cbb5c7 --- /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 00000000..55208b60 Binary files /dev/null and b/blockchains/smartchain/assets/0xb7e2E3eF9F5c6b72a162FFc76382e4477A44D913/logo.png differ diff --git a/blockchains/smartchain/assets/0xb813939458aA42ca57B870bEf4bEc24945aDDA6D/info.json b/blockchains/smartchain/assets/0xb813939458aA42ca57B870bEf4bEc24945aDDA6D/info.json new file mode 100644 index 00000000..7cf55f5e --- /dev/null +++ b/blockchains/smartchain/assets/0xb813939458aA42ca57B870bEf4bEc24945aDDA6D/info.json @@ -0,0 +1,11 @@ +{ + "name": "MONKI", + "type": "BEP20", + "symbol": "MONKI", + "decimals": 18, + "website": "https://www.monki.network/", + "description": "MONKI is a brand new Meme token,The only currency of coming up cyberpunk era.", + "explorer": "https://bscscan.com/token/0xb813939458aA42ca57B870bEf4bEc24945aDDA6D", + "status": "active", + "id": "0xb813939458aA42ca57B870bEf4bEc24945aDDA6D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb813939458aA42ca57B870bEf4bEc24945aDDA6D/logo.png b/blockchains/smartchain/assets/0xb813939458aA42ca57B870bEf4bEc24945aDDA6D/logo.png new file mode 100644 index 00000000..21a5101e Binary files /dev/null and b/blockchains/smartchain/assets/0xb813939458aA42ca57B870bEf4bEc24945aDDA6D/logo.png differ diff --git a/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/info.json b/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/info.json new file mode 100644 index 00000000..004b79fa --- /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 00000000..72ed0813 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 new file mode 100644 index 00000000..03a72187 --- /dev/null +++ b/blockchains/smartchain/assets/0xb84ddc645c27D4Dc4bFA325c946f9d89d3AfCc7a/info.json @@ -0,0 +1,29 @@ +{ + "name": "Bonus Cake", + "website": "https://bonuscake.com", + "description": "Bonus Cake is the first dividend and lucky draw CAKE reflection token.", + "explorer": "https://bscscan.com/token/0xb84ddc645c27D4Dc4bFA325c946f9d89d3AfCc7a", + "type": "BEP20", + "symbol": "BonusCake", + "decimals": 18, + "status": "active", + "id": "0xb84ddc645c27D4Dc4bFA325c946f9d89d3AfCc7a", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BonusCake" + }, + { + "name": "x", + "url": "https://x.com/BonusCakeBSC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bonus-cake/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/ru/Криптовалюты/bonus-cake" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb84ddc645c27D4Dc4bFA325c946f9d89d3AfCc7a/logo.png b/blockchains/smartchain/assets/0xb84ddc645c27D4Dc4bFA325c946f9d89d3AfCc7a/logo.png new file mode 100644 index 00000000..04a34fa0 Binary files /dev/null and b/blockchains/smartchain/assets/0xb84ddc645c27D4Dc4bFA325c946f9d89d3AfCc7a/logo.png differ diff --git a/blockchains/smartchain/assets/0xb85d4C45383aCfcFd9869645275349C9c3f28EDB/info.json b/blockchains/smartchain/assets/0xb85d4C45383aCfcFd9869645275349C9c3f28EDB/info.json new file mode 100644 index 00000000..f5bf04c8 --- /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 00000000..16c3c8b9 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 new file mode 100644 index 00000000..4a5e0091 --- /dev/null +++ b/blockchains/smartchain/assets/0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787/info.json @@ -0,0 +1,37 @@ +{ + "name": "Zilliqa", + "type": "BEP20", + "symbol": "ZIL", + "decimals": 12, + "website": "http://www.zilliqa.com/", + "description": "Zilliqa (ZIL) is a public blockchain built on a sharded architecture. It has solved blockchain scalability and speed by implementing sharding.", + "explorer": "https://bscscan.com/token/0xb86abcb37c3a4b64f74f59301aff131a1becc787", + "status": "active", + "id": "0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787", + "links": [ + { + "name": "x", + "url": "https://x.com/zilliqa" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/zilliqa" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/french-connection-finance/" + }, + { + "name": "github", + "url": "https://github.com/Zilliqa" + }, + { + "name": "telegram", + "url": "https://t.me/zilliqachat" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zilliqa/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787/logo.png b/blockchains/smartchain/assets/0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787/logo.png new file mode 100644 index 00000000..78f3d40d Binary files /dev/null and b/blockchains/smartchain/assets/0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787/logo.png differ diff --git a/blockchains/smartchain/assets/0xb899dB682e6D6164D885ff67C1e676141deaaA40/info.json b/blockchains/smartchain/assets/0xb899dB682e6D6164D885ff67C1e676141deaaA40/info.json new file mode 100644 index 00000000..792e2b02 --- /dev/null +++ b/blockchains/smartchain/assets/0xb899dB682e6D6164D885ff67C1e676141deaaA40/info.json @@ -0,0 +1,21 @@ +{ + "name": "Onlyone", + "type": "BEP20", + "symbol": "ONLYONE", + "decimals": 18, + "website": "https://onlyonefinance.com/", + "description": "Onlyone is a community driven fairly launched token on the Binance Smart Chain used in the Onlyone Casino. The total token supply is only one. Five percent of the value of each transaction is redistributed to token holders and other five percent it sent to the liquidity pool.", + "explorer": "https://bscscan.com/token/0xb899dB682e6D6164D885ff67C1e676141deaaA40", + "status": "active", + "id": "0xb899dB682e6D6164D885ff67C1e676141deaaA40", + "links": [ + { + "name": "x", + "url": "https://x.com/onlyonefinance" + }, + { + "name": "telegram", + "url": "https://t.me/onlyone_finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb899dB682e6D6164D885ff67C1e676141deaaA40/logo.png b/blockchains/smartchain/assets/0xb899dB682e6D6164D885ff67C1e676141deaaA40/logo.png new file mode 100644 index 00000000..0ce9789c Binary files /dev/null and b/blockchains/smartchain/assets/0xb899dB682e6D6164D885ff67C1e676141deaaA40/logo.png differ diff --git a/blockchains/smartchain/assets/0xb8C540d00dd0Bf76ea12E4B4B95eFC90804f924E/info.json b/blockchains/smartchain/assets/0xb8C540d00dd0Bf76ea12E4B4B95eFC90804f924E/info.json new file mode 100644 index 00000000..1257f54f --- /dev/null +++ b/blockchains/smartchain/assets/0xb8C540d00dd0Bf76ea12E4B4B95eFC90804f924E/info.json @@ -0,0 +1,22 @@ +{ + "name": "QUSD", + "website": "https://qian.finance", + "description": "QUSD is the first kind of stablecoin of QIAN protocol. In the future, QIAN will launch QHKD, QEUR and other stable assets).", + "explorer": "https://bscscan.com/token/0xb8c540d00dd0bf76ea12e4b4b95efc90804f924e", + "audit_report": "https://qian.finance/PeckShield-Audit-Report-QIAN2-v1.0.pdf", + "type": "BEP20", + "symbol": "QUSD", + "decimals": 18, + "status": "active", + "id": "0xb8C540d00dd0Bf76ea12E4B4B95eFC90804f924E", + "links": [ + { + "name": "whitepaper", + "url": "https://qian.finance/qian_whitepaper_zh.pdf" + }, + { + "name": "github", + "url": "https://github.com/QIAN-Protocol/QIAN" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb8C540d00dd0Bf76ea12E4B4B95eFC90804f924E/logo.png b/blockchains/smartchain/assets/0xb8C540d00dd0Bf76ea12E4B4B95eFC90804f924E/logo.png new file mode 100644 index 00000000..84412499 Binary files /dev/null and b/blockchains/smartchain/assets/0xb8C540d00dd0Bf76ea12E4B4B95eFC90804f924E/logo.png differ diff --git a/blockchains/smartchain/assets/0xb8a5e028f833F08A29564ded368b4CaCB4e18FF5/info.json b/blockchains/smartchain/assets/0xb8a5e028f833F08A29564ded368b4CaCB4e18FF5/info.json new file mode 100644 index 00000000..293289e9 --- /dev/null +++ b/blockchains/smartchain/assets/0xb8a5e028f833F08A29564ded368b4CaCB4e18FF5/info.json @@ -0,0 +1,25 @@ +{ + "name": "Santa Floki", + "type": "BEP20", + "symbol": "HoHoHo", + "decimals": 2, + "website": "https://www.santafloki.com", + "description": "Santa Floki rewards those that are good with BUSD and those that believe in him. His plans this year is to deliver gifts to those in need with its charity program and help warm hearts for Christmas.", + "explorer": "https://bscscan.com/token/0xb8a5e028f833F08A29564ded368b4CaCB4e18FF5", + "status": "abandoned", + "id": "0xb8a5e028f833F08A29564ded368b4CaCB4e18FF5", + "migrate": { + "asset_id": "c20000714_t0x14940169E2Db1595CDD3CACd30DECC5bbB4d9f19", + "url": "https://x.com/Santa_Floki/status/1496413286358781956" + }, + "links": [ + { + "name": "x", + "url": "https://x.com/Santa_Floki" + }, + { + "name": "telegram", + "url": "https://t.me/Santa_Floki" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb8b10DaFb5546b3740886D8a77b8b9bACB44fFfD/info.json b/blockchains/smartchain/assets/0xb8b10DaFb5546b3740886D8a77b8b9bACB44fFfD/info.json new file mode 100644 index 00000000..82d7f5f6 --- /dev/null +++ b/blockchains/smartchain/assets/0xb8b10DaFb5546b3740886D8a77b8b9bACB44fFfD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Travel Coin", + "type": "BEP20", + "symbol": "TCOIN", + "decimals": 4, + "website": "https://tcoin.one", + "description": "The Travel Coin project and the TCOIN token attached to it represent the first ecosystem in the world that uses the blockchain technology to offer an international reward system among all hospitality service providers, without limitations.", + "explorer": "https://bscscan.com/token/0xb8b10DaFb5546b3740886D8a77b8b9bACB44fFfD", + "status": "active", + "id": "0xb8b10DaFb5546b3740886D8a77b8b9bACB44fFfD" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb8b10DaFb5546b3740886D8a77b8b9bACB44fFfD/logo.png b/blockchains/smartchain/assets/0xb8b10DaFb5546b3740886D8a77b8b9bACB44fFfD/logo.png new file mode 100644 index 00000000..66a2533f Binary files /dev/null and b/blockchains/smartchain/assets/0xb8b10DaFb5546b3740886D8a77b8b9bACB44fFfD/logo.png differ diff --git a/blockchains/smartchain/assets/0xb8e3bB633F7276cc17735D86154E0ad5ec9928C0/info.json b/blockchains/smartchain/assets/0xb8e3bB633F7276cc17735D86154E0ad5ec9928C0/info.json new file mode 100644 index 00000000..90b31aa6 --- /dev/null +++ b/blockchains/smartchain/assets/0xb8e3bB633F7276cc17735D86154E0ad5ec9928C0/info.json @@ -0,0 +1,29 @@ +{ + "name": "VELASPAD", + "type": "BEP20", + "symbol": "VLXPAD", + "decimals": 18, + "website": "https://velaspad.io/", + "description": "VLXPAD is a token for VelasPad launchpad", + "explorer": "https://bscscan.com/token/0xb8e3bB633F7276cc17735D86154E0ad5ec9928C0", + "status": "active", + "id": "0xb8e3bB633F7276cc17735D86154E0ad5ec9928C0", + "links": [ + { + "name": "x", + "url": "https://x.com/VelasPad" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/velaspad" + }, + { + "name": "telegram", + "url": "https://t.me/VelasPad" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/velaspad/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb8e3bB633F7276cc17735D86154E0ad5ec9928C0/logo.png b/blockchains/smartchain/assets/0xb8e3bB633F7276cc17735D86154E0ad5ec9928C0/logo.png new file mode 100644 index 00000000..ed4a6a5c Binary files /dev/null and b/blockchains/smartchain/assets/0xb8e3bB633F7276cc17735D86154E0ad5ec9928C0/logo.png differ diff --git a/blockchains/smartchain/assets/0xb93ba7DC61ECFced69067151FC00C41cA369A797/info.json b/blockchains/smartchain/assets/0xb93ba7DC61ECFced69067151FC00C41cA369A797/info.json new file mode 100644 index 00000000..6bf5075d --- /dev/null +++ b/blockchains/smartchain/assets/0xb93ba7DC61ECFced69067151FC00C41cA369A797/info.json @@ -0,0 +1,14 @@ +{ + "name": "WenMoon Token", + "type": "BEP20", + "symbol": "WENMOON", + "decimals": 7, + "website": "https://wenmoon.space", + "description": "High yielding BSC token with 15% transaction fee redistributed to existing wallet holders.", + "explorer": "https://bscscan.com/token/0xb93ba7DC61ECFced69067151FC00C41cA369A797", + "status": "active", + "id": "0xb93ba7DC61ECFced69067151FC00C41cA369A797", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb93ba7DC61ECFced69067151FC00C41cA369A797/logo.png b/blockchains/smartchain/assets/0xb93ba7DC61ECFced69067151FC00C41cA369A797/logo.png new file mode 100644 index 00000000..92bcd3e5 Binary files /dev/null and b/blockchains/smartchain/assets/0xb93ba7DC61ECFced69067151FC00C41cA369A797/logo.png differ diff --git a/blockchains/smartchain/assets/0xb9654A42f0F5dCDEf5617DebF8bd048E33F180E7/info.json b/blockchains/smartchain/assets/0xb9654A42f0F5dCDEf5617DebF8bd048E33F180E7/info.json new file mode 100644 index 00000000..f954b994 --- /dev/null +++ b/blockchains/smartchain/assets/0xb9654A42f0F5dCDEf5617DebF8bd048E33F180E7/info.json @@ -0,0 +1,41 @@ +{ + "name": "ThunderBNB Token", + "website": "https://thunderbnb.app/", + "description": "The next evolution of a reflection token on the BSC with double reward reflection token using the power of 80/20 to maximize your earnings for both now & future", + "explorer": "https://bscscan.com/token/0xb9654A42f0F5dCDEf5617DebF8bd048E33F180E7", + "type": "BEP20", + "symbol": "THUNDERBNB", + "decimals": 18, + "status": "active", + "id": "0xb9654A42f0F5dCDEf5617DebF8bd048E33F180E7", + "links": [ + { + "name": "x", + "url": "https://x.com/ThunderBNBapp" + }, + { + "name": "telegram", + "url": "https://t.me/ThunderBNB" + }, + { + "name": "docs", + "url": "https://docs.thunderbnb.app/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/thunderBNB/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCdEqg6tOw9RRQR7adkX1pvw" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/thunderbnb" + }, + { + "name": "github", + "url": "https://github.com/ThunderBnb/contracts" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb9654A42f0F5dCDEf5617DebF8bd048E33F180E7/logo.png b/blockchains/smartchain/assets/0xb9654A42f0F5dCDEf5617DebF8bd048E33F180E7/logo.png new file mode 100644 index 00000000..54645a8c Binary files /dev/null and b/blockchains/smartchain/assets/0xb9654A42f0F5dCDEf5617DebF8bd048E33F180E7/logo.png differ diff --git a/blockchains/smartchain/assets/0xb966150c7a0150eD4ea979e04F18d109301AAb95/info.json b/blockchains/smartchain/assets/0xb966150c7a0150eD4ea979e04F18d109301AAb95/info.json new file mode 100644 index 00000000..cb2e9141 --- /dev/null +++ b/blockchains/smartchain/assets/0xb966150c7a0150eD4ea979e04F18d109301AAb95/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stonks Token", + "website": "https://www.stonkstoken.space/", + "description": "$STONKS is a community driven fair launched DeFi token. Reflection, Lp acquisition and Burn happens in every trade. It aims to launch a gaming exchange platform to build utility around the token.", + "explorer": "https://bscscan.com/token/0xb966150c7a0150eD4ea979e04F18d109301AAb95", + "type": "BEP20", + "symbol": "$STONKS", + "decimals": 9, + "status": "active", + "id": "0xb966150c7a0150eD4ea979e04F18d109301AAb95" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb966150c7a0150eD4ea979e04F18d109301AAb95/logo.png b/blockchains/smartchain/assets/0xb966150c7a0150eD4ea979e04F18d109301AAb95/logo.png new file mode 100644 index 00000000..e93d1d38 Binary files /dev/null and b/blockchains/smartchain/assets/0xb966150c7a0150eD4ea979e04F18d109301AAb95/logo.png differ diff --git a/blockchains/smartchain/assets/0xb9784C1633ef3b839563B988c323798634714368/info.json b/blockchains/smartchain/assets/0xb9784C1633ef3b839563B988c323798634714368/info.json new file mode 100644 index 00000000..97ce1a88 --- /dev/null +++ b/blockchains/smartchain/assets/0xb9784C1633ef3b839563B988c323798634714368/info.json @@ -0,0 +1,11 @@ +{ + "name": "Phoswap", + "website": "https://phoswap.io", + "description": "Phoswap, a decentralized exchange on Binance Smart Chain provides users swap pools, liquidity pools, farming pools, and staking pools using an Automated Market Maker (AMM) model.", + "explorer": "https://bscscan.com/token/0xb9784C1633ef3b839563B988c323798634714368", + "type": "BEP20", + "symbol": "PHO", + "decimals": 8, + "status": "active", + "id": "0xb9784C1633ef3b839563B988c323798634714368" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb9784C1633ef3b839563B988c323798634714368/logo.png b/blockchains/smartchain/assets/0xb9784C1633ef3b839563B988c323798634714368/logo.png new file mode 100644 index 00000000..5aaa99c3 Binary files /dev/null and b/blockchains/smartchain/assets/0xb9784C1633ef3b839563B988c323798634714368/logo.png differ diff --git a/blockchains/smartchain/assets/0xb994882a1b9bd98A71Dd6ea5F61577c42848B0E8/info.json b/blockchains/smartchain/assets/0xb994882a1b9bd98A71Dd6ea5F61577c42848B0E8/info.json new file mode 100644 index 00000000..e3344d0f --- /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 00000000..2ff0868c 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 new file mode 100644 index 00000000..0cd03fba --- /dev/null +++ b/blockchains/smartchain/assets/0xb9D8592E16A9c1a3AE6021CDDb324EaC1Cbc70d6/info.json @@ -0,0 +1,37 @@ +{ + "name": "PERA", + "website": "https://pera.finance/", + "description": "Pera Finance is a DeFi platform where traders, liquidity providers and holders yield farm together through the DeFi's first decentralized trading competition.", + "explorer": "https://bscscan.com/token/0xb9d8592e16a9c1a3ae6021cddb324eac1cbc70d6", + "type": "BEP20", + "symbol": "PERA", + "decimals": 18, + "status": "active", + "id": "0xb9D8592E16A9c1a3AE6021CDDb324EaC1Cbc70d6", + "links": [ + { + "name": "github", + "url": "https://github.com/perafinance" + }, + { + "name": "x", + "url": "https://x.com/perafinance" + }, + { + "name": "blog", + "url": "https://perafinance.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/perafinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pera-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pera-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb9D8592E16A9c1a3AE6021CDDb324EaC1Cbc70d6/logo.png b/blockchains/smartchain/assets/0xb9D8592E16A9c1a3AE6021CDDb324EaC1Cbc70d6/logo.png new file mode 100644 index 00000000..7e39a1a2 Binary files /dev/null and b/blockchains/smartchain/assets/0xb9D8592E16A9c1a3AE6021CDDb324EaC1Cbc70d6/logo.png differ diff --git a/blockchains/smartchain/assets/0xbA0B46F556633Bd742546E4F37D66D416753003B/info.json b/blockchains/smartchain/assets/0xbA0B46F556633Bd742546E4F37D66D416753003B/info.json new file mode 100644 index 00000000..32259e4c --- /dev/null +++ b/blockchains/smartchain/assets/0xbA0B46F556633Bd742546E4F37D66D416753003B/info.json @@ -0,0 +1,21 @@ +{ + "name": "Idle Cyber", + "type": "BEP20", + "symbol": "AFK", + "decimals": 18, + "website": "https://www.idlecyber.com/", + "description": "Idle Cyber is a P2E model idle game with a new kind of frontier defence and RPG heroes collection mixed with blockchain technology.", + "explorer": "https://bscscan.com/token/0xbA0B46F556633Bd742546E4F37D66D416753003B", + "status": "active", + "id": "0xbA0B46F556633Bd742546E4F37D66D416753003B", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/iddle-cyber/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/idle-cyber" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbA0B46F556633Bd742546E4F37D66D416753003B/logo.png b/blockchains/smartchain/assets/0xbA0B46F556633Bd742546E4F37D66D416753003B/logo.png new file mode 100644 index 00000000..cd7f35ff Binary files /dev/null and b/blockchains/smartchain/assets/0xbA0B46F556633Bd742546E4F37D66D416753003B/logo.png differ diff --git a/blockchains/smartchain/assets/0xbA2aE424d960c26247Dd6c32edC70B295c744C43/info.json b/blockchains/smartchain/assets/0xbA2aE424d960c26247Dd6c32edC70B295c744C43/info.json new file mode 100644 index 00000000..e8107644 --- /dev/null +++ b/blockchains/smartchain/assets/0xbA2aE424d960c26247Dd6c32edC70B295c744C43/info.json @@ -0,0 +1,16 @@ +{ + "name": "BNB pegged 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", + "research": "https://research.binance.com/en/projects/dogecoin", + "type": "BEP20", + "symbol": "DOGE", + "decimals": 8, + "status": "active", + "id": "0xbA2aE424d960c26247Dd6c32edC70B295c744C43", + "tags": [ + "binance-peg", + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbA2aE424d960c26247Dd6c32edC70B295c744C43/logo.png b/blockchains/smartchain/assets/0xbA2aE424d960c26247Dd6c32edC70B295c744C43/logo.png new file mode 100644 index 00000000..8db4b84a Binary files /dev/null and b/blockchains/smartchain/assets/0xbA2aE424d960c26247Dd6c32edC70B295c744C43/logo.png differ diff --git a/blockchains/smartchain/assets/0xbA552586eA573Eaa3436f04027ff4effd0c0abbb/info.json b/blockchains/smartchain/assets/0xbA552586eA573Eaa3436f04027ff4effd0c0abbb/info.json new file mode 100644 index 00000000..429a3b16 --- /dev/null +++ b/blockchains/smartchain/assets/0xbA552586eA573Eaa3436f04027ff4effd0c0abbb/info.json @@ -0,0 +1,17 @@ +{ + "name": "Meer", + "type": "BEP20", + "symbol": "MEER", + "decimals": 18, + "website": "https://www.qitmeer.io/#/index", + "description": "A High-Performance Public Blockchain Powered by the MeerDAG Consensus", + "explorer": "https://bscscan.com/token/0xbA552586eA573Eaa3436f04027ff4effd0c0abbb", + "status": "active", + "id": "0xbA552586eA573Eaa3436f04027ff4effd0c0abbb", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qitmeer-network/" + } + ] +} diff --git a/blockchains/smartchain/assets/0xbA552586eA573Eaa3436f04027ff4effd0c0abbb/logo.png b/blockchains/smartchain/assets/0xbA552586eA573Eaa3436f04027ff4effd0c0abbb/logo.png new file mode 100644 index 00000000..0502f513 Binary files /dev/null and b/blockchains/smartchain/assets/0xbA552586eA573Eaa3436f04027ff4effd0c0abbb/logo.png differ diff --git a/blockchains/smartchain/assets/0xbA5eAB68a7203C9FF72E07b708991F07f55eF40E/info.json b/blockchains/smartchain/assets/0xbA5eAB68a7203C9FF72E07b708991F07f55eF40E/info.json new file mode 100644 index 00000000..e778b3f8 --- /dev/null +++ b/blockchains/smartchain/assets/0xbA5eAB68a7203C9FF72E07b708991F07f55eF40E/info.json @@ -0,0 +1,32 @@ +{ + "name": "KODI COIN", + "type": "BEP20", + "symbol": "KODI", + "decimals": 18, + "website": "https://kodicoin.com", + "description": "Kodi is a Binance Smart Chain based token that provides its users with multiple avenues of passive income. The ecosystem encompasses the CookieSale IDO platform and its Pitch advertising agency to give developers a one-stop shop to build their brands and launch their projects.", + "explorer": "https://bscscan.com/token/0xbA5eAB68a7203C9FF72E07b708991F07f55eF40E", + "status": "active", + "id": "0xbA5eAB68a7203C9FF72E07b708991F07f55eF40E", + "links": [ + { + "name": "x", + "url": "https://x.com/kodi_coin" + }, + { + "name": "telegram", + "url": "https://t.me/kodicoinofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kodicoin/" + }, + { + "name": "whitepaper", + "url": "https://kodi.gitbook.io/kodi-whitepaper/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbA5eAB68a7203C9FF72E07b708991F07f55eF40E/logo.png b/blockchains/smartchain/assets/0xbA5eAB68a7203C9FF72E07b708991F07f55eF40E/logo.png new file mode 100644 index 00000000..e3c4da01 Binary files /dev/null and b/blockchains/smartchain/assets/0xbA5eAB68a7203C9FF72E07b708991F07f55eF40E/logo.png differ diff --git a/blockchains/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/info.json b/blockchains/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/info.json new file mode 100644 index 00000000..5391cdd3 --- /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/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/logo.png b/blockchains/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/logo.png new file mode 100644 index 00000000..d583a120 Binary files /dev/null and b/blockchains/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/logo.png differ diff --git a/blockchains/smartchain/assets/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858/info.json b/blockchains/smartchain/assets/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858/info.json new file mode 100644 index 00000000..aee1cfb6 --- /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 00000000..69ca6c71 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 new file mode 100644 index 00000000..a81c2cd4 --- /dev/null +++ b/blockchains/smartchain/assets/0xbB3837Fa11d4B789717C8f622Ec4f6eee5375C49/info.json @@ -0,0 +1,21 @@ +{ + "name": "BSCView", + "type": "BEP20", + "symbol": "BSCV", + "decimals": 18, + "website": "https://bscview.com/home", + "description": "The Most Comprehensive Trading Tools Available For Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xbB3837Fa11d4B789717C8f622Ec4f6eee5375C49", + "status": "active", + "id": "0xbB3837Fa11d4B789717C8f622Ec4f6eee5375C49", + "links": [ + { + "name": "x", + "url": "https://x.com/bscview" + }, + { + "name": "telegram", + "url": "https://t.me/bscview" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbB3837Fa11d4B789717C8f622Ec4f6eee5375C49/logo.png b/blockchains/smartchain/assets/0xbB3837Fa11d4B789717C8f622Ec4f6eee5375C49/logo.png new file mode 100644 index 00000000..f93b1dd4 Binary files /dev/null and b/blockchains/smartchain/assets/0xbB3837Fa11d4B789717C8f622Ec4f6eee5375C49/logo.png differ diff --git a/blockchains/smartchain/assets/0xbB8170ad35325522c0026d67584D4feFBd08b750/info.json b/blockchains/smartchain/assets/0xbB8170ad35325522c0026d67584D4feFBd08b750/info.json new file mode 100644 index 00000000..f321823b --- /dev/null +++ b/blockchains/smartchain/assets/0xbB8170ad35325522c0026d67584D4feFBd08b750/info.json @@ -0,0 +1,11 @@ +{ + "name": "RADDITARIUM NETWORK", + "type": "BEP20", + "symbol": "RADDIT", + "decimals": 9, + "website": "https://radditarium.com/", + "description": "Please update logo ", + "explorer": "https://bscscan.com/token/0xbB8170ad35325522c0026d67584D4feFBd08b750", + "status": "active", + "id": "0xbB8170ad35325522c0026d67584D4feFBd08b750" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbB8170ad35325522c0026d67584D4feFBd08b750/logo.png b/blockchains/smartchain/assets/0xbB8170ad35325522c0026d67584D4feFBd08b750/logo.png new file mode 100644 index 00000000..5283e26e Binary files /dev/null and b/blockchains/smartchain/assets/0xbB8170ad35325522c0026d67584D4feFBd08b750/logo.png differ diff --git a/blockchains/smartchain/assets/0xbB8DB5e17BBe9c90Da8E3445E335b82d7cc53575/info.json b/blockchains/smartchain/assets/0xbB8DB5e17BBe9c90Da8E3445E335b82d7cc53575/info.json new file mode 100644 index 00000000..92925df8 --- /dev/null +++ b/blockchains/smartchain/assets/0xbB8DB5e17BBe9c90Da8E3445E335b82d7cc53575/info.json @@ -0,0 +1,11 @@ +{ + "name": "Beer", + "type": "BEP20", + "symbol": "Beer", + "decimals": 18, + "website": "https://beergarden.finance/", + "description": "-", + "explorer": "https://bscscan.com/token/0xbB8DB5e17BBe9c90Da8E3445E335b82d7cc53575", + "status": "active", + "id": "0xbB8DB5e17BBe9c90Da8E3445E335b82d7cc53575" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbB8DB5e17BBe9c90Da8E3445E335b82d7cc53575/logo.png b/blockchains/smartchain/assets/0xbB8DB5e17BBe9c90Da8E3445E335b82d7cc53575/logo.png new file mode 100644 index 00000000..0737d11d Binary files /dev/null and b/blockchains/smartchain/assets/0xbB8DB5e17BBe9c90Da8E3445E335b82d7cc53575/logo.png differ diff --git a/blockchains/smartchain/assets/0xbBBcB350C64Fe974e5C42A55c7070644191823f3/info.json b/blockchains/smartchain/assets/0xbBBcB350C64Fe974e5C42A55c7070644191823f3/info.json new file mode 100644 index 00000000..d4d392aa --- /dev/null +++ b/blockchains/smartchain/assets/0xbBBcB350C64Fe974e5C42A55c7070644191823f3/info.json @@ -0,0 +1,34 @@ +{ + "name": "CheersLand Token", + "website": "https://cheersland.org/", + "description": "A scalable GameFi Metaverse Aggregator where anyone can monetize their gaming experiences and social networks ", + "explorer": "https://bscscan.com/token/0xbBBcB350C64Fe974e5C42A55c7070644191823f3", + "type": "BEP20", + "symbol": "CHEERS", + "decimals": 18, + "status": "active", + "id": "0xbBBcB350C64Fe974e5C42A55c7070644191823f3", + "links": [ + { + "name": "telegram", + "url": "https://t.me/cheersland_news" + }, + { + "name": "x", + "url": "https://x.com/cheers_land" + }, + { + "name": "blog", + "url": "https://medium.com/cheersland" + }, + { + "name": "whitepaper", + "url": "https://docs.cheersland.org/" + } + ], + "tags": [ + "gamefi", + "staking", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbBBcB350C64Fe974e5C42A55c7070644191823f3/logo.png b/blockchains/smartchain/assets/0xbBBcB350C64Fe974e5C42A55c7070644191823f3/logo.png new file mode 100644 index 00000000..7c41ffef Binary files /dev/null and b/blockchains/smartchain/assets/0xbBBcB350C64Fe974e5C42A55c7070644191823f3/logo.png differ diff --git a/blockchains/smartchain/assets/0xbBC6057d21BD9c8FcEEDfFe821D7d8bE10d3d82a/info.json b/blockchains/smartchain/assets/0xbBC6057d21BD9c8FcEEDfFe821D7d8bE10d3d82a/info.json new file mode 100644 index 00000000..864e936e --- /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 00000000..b62d0ab4 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 new file mode 100644 index 00000000..42d55e10 --- /dev/null +++ b/blockchains/smartchain/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json @@ -0,0 +1,47 @@ +{ + "name": "EverRise Rewards", + "type": "BEP20", + "symbol": "claimRISE", + "decimals": 18, + "website": "https://www.everrise.com/", + "description": "Virtual token that allows unclaimed rewards from EverRise Staking NFTs and its Vote Escrowed (ve) EverRise to display in wallet balances.", + "explorer": "https://bscscan.com/token/0xbBD7B847C6d0d0B5691518a363194D71426475F1", + "status": "active", + "id": "0xbBD7B847C6d0d0B5691518a363194D71426475F1", + "links": [ + { + "name": "x", + "url": "https://x.com/everrise" + }, + { + "name": "telegram", + "url": "https://t.me/everriseofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/everriseofficial/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/EverRise" + }, + { + "name": "discord", + "url": "https://discord.com/invite/everrise" + }, + { + "name": "github", + "url": "https://github.com/everrise-ecosystem" + }, + { + "name": "facebook", + "url": "https://facebook.com/EverRiseToken" + } + ], + "tags": [ + "defi", + "staking", + "nft", + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png b/blockchains/smartchain/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png new file mode 100644 index 00000000..efff8d00 Binary files /dev/null and b/blockchains/smartchain/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png differ diff --git a/blockchains/smartchain/assets/0xbBeA1AC815E5402DF5Ee9c80A93FC3e72119469D/info.json b/blockchains/smartchain/assets/0xbBeA1AC815E5402DF5Ee9c80A93FC3e72119469D/info.json new file mode 100644 index 00000000..c93af48f --- /dev/null +++ b/blockchains/smartchain/assets/0xbBeA1AC815E5402DF5Ee9c80A93FC3e72119469D/info.json @@ -0,0 +1,11 @@ +{ + "name": "MOONSTORM", + "type": "BEP20", + "symbol": "MOONSTORM", + "decimals": 9, + "website": "https://moonstorm.io/", + "description": "A community owned protocol that rewards holders.", + "explorer": "https://bscscan.com/token/0xbBeA1AC815E5402DF5Ee9c80A93FC3e72119469D", + "status": "active", + "id": "0xbBeA1AC815E5402DF5Ee9c80A93FC3e72119469D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbBeA1AC815E5402DF5Ee9c80A93FC3e72119469D/logo.png b/blockchains/smartchain/assets/0xbBeA1AC815E5402DF5Ee9c80A93FC3e72119469D/logo.png new file mode 100644 index 00000000..a4836b1a Binary files /dev/null and b/blockchains/smartchain/assets/0xbBeA1AC815E5402DF5Ee9c80A93FC3e72119469D/logo.png differ diff --git a/blockchains/smartchain/assets/0xbCBcD3FDC07d496D1145F41a65A3e957EfEd9946/info.json b/blockchains/smartchain/assets/0xbCBcD3FDC07d496D1145F41a65A3e957EfEd9946/info.json new file mode 100644 index 00000000..4768ecb9 --- /dev/null +++ b/blockchains/smartchain/assets/0xbCBcD3FDC07d496D1145F41a65A3e957EfEd9946/info.json @@ -0,0 +1,11 @@ +{ + "name": "AERO SWAP", + "type": "BEP20", + "symbol": "AERO", + "decimals": 2, + "website": "https://aeroswapfinance.com/", + "description": "Aero Swap Finance is a Multi-purpose auto-generate advertisment liquidity defi & NFT aircraft market project built on binance smart chain", + "explorer": "https://bscscan.com/token/0xbCBcD3FDC07d496D1145F41a65A3e957EfEd9946", + "status": "active", + "id": "0xbCBcD3FDC07d496D1145F41a65A3e957EfEd9946" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbCBcD3FDC07d496D1145F41a65A3e957EfEd9946/logo.png b/blockchains/smartchain/assets/0xbCBcD3FDC07d496D1145F41a65A3e957EfEd9946/logo.png new file mode 100644 index 00000000..dbc03c22 Binary files /dev/null and b/blockchains/smartchain/assets/0xbCBcD3FDC07d496D1145F41a65A3e957EfEd9946/logo.png differ diff --git a/blockchains/smartchain/assets/0xbCba01f7d6CC0A950464a4b98BA8358c4F6B69a0/info.json b/blockchains/smartchain/assets/0xbCba01f7d6CC0A950464a4b98BA8358c4F6B69a0/info.json new file mode 100644 index 00000000..511c8b6a --- /dev/null +++ b/blockchains/smartchain/assets/0xbCba01f7d6CC0A950464a4b98BA8358c4F6B69a0/info.json @@ -0,0 +1,37 @@ +{ + "name": "BitcoMine", + "website": "https://bitcominetoken.com/", + "description": "BitcoMine Token rewards its holders 11% from each successful transaction in BTC on daily basis depending on the trading volume.", + "explorer": "https://bscscan.com/token/0xbcba01f7d6cc0a950464a4b98ba8358c4f6b69a0", + "type": "BEP20", + "symbol": "BME", + "decimals": 18, + "status": "active", + "id": "0xbCba01f7d6CC0A950464a4b98BA8358c4F6B69a0", + "links": [ + { + "name": "x", + "url": "https://x.com/BitcoMineToken" + }, + { + "name": "telegram", + "url": "https://t.me/BitcoMineToken" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BitcoMine/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bitcomine" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcomine-token/" + }, + { + "name": "github", + "url": "https://github.com/BitcoMine/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbCba01f7d6CC0A950464a4b98BA8358c4F6B69a0/logo.png b/blockchains/smartchain/assets/0xbCba01f7d6CC0A950464a4b98BA8358c4F6B69a0/logo.png new file mode 100644 index 00000000..272e7edc Binary files /dev/null and b/blockchains/smartchain/assets/0xbCba01f7d6CC0A950464a4b98BA8358c4F6B69a0/logo.png differ diff --git a/blockchains/smartchain/assets/0xbCdfD50ead6b6da1970464985FAb894Fb83d17C0/info.json b/blockchains/smartchain/assets/0xbCdfD50ead6b6da1970464985FAb894Fb83d17C0/info.json new file mode 100644 index 00000000..3c84cb42 --- /dev/null +++ b/blockchains/smartchain/assets/0xbCdfD50ead6b6da1970464985FAb894Fb83d17C0/info.json @@ -0,0 +1,11 @@ +{ + "name": "NFTTONE", + "website": "https://www.nfttone.net/", + "description": "TONE is a decentralized and social NFT marketplace (driven by the community) where you can turn your songs, music, performance or TONE'S into unique NFTs and win prizes, sell them or place it on an auction.", + "explorer": "https://bscscan.com/token/0xbCdfD50ead6b6da1970464985FAb894Fb83d17C0", + "type": "BEP20", + "symbol": "TONE", + "decimals": 8, + "status": "active", + "id": "0xbCdfD50ead6b6da1970464985FAb894Fb83d17C0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbCdfD50ead6b6da1970464985FAb894Fb83d17C0/logo.png b/blockchains/smartchain/assets/0xbCdfD50ead6b6da1970464985FAb894Fb83d17C0/logo.png new file mode 100644 index 00000000..5a2626c6 Binary files /dev/null and b/blockchains/smartchain/assets/0xbCdfD50ead6b6da1970464985FAb894Fb83d17C0/logo.png differ diff --git a/blockchains/smartchain/assets/0xbCeeE918077F63fB1B9e10403F59cA40C7061341/info.json b/blockchains/smartchain/assets/0xbCeeE918077F63fB1B9e10403F59cA40C7061341/info.json new file mode 100644 index 00000000..99335218 --- /dev/null +++ b/blockchains/smartchain/assets/0xbCeeE918077F63fB1B9e10403F59cA40C7061341/info.json @@ -0,0 +1,11 @@ +{ + "name": "Papa Doge Coin", + "website": "https://www.papadoge.space/", + "description": "PAPADOGE’s coming out of his retirement to give everyone who missed out on his son a second chance. We are a meme-based token that aims to be the best protocol in promoting fun and joy. Our community will be stress-free and warming, everyone is welcome to join.", + "explorer": "https://bscscan.com/token/0xbCeeE918077F63fB1B9e10403F59cA40C7061341", + "type": "BEP20", + "symbol": "PAPADOGE", + "decimals": 18, + "status": "active", + "id": "0xbCeeE918077F63fB1B9e10403F59cA40C7061341" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbCeeE918077F63fB1B9e10403F59cA40C7061341/logo.png b/blockchains/smartchain/assets/0xbCeeE918077F63fB1B9e10403F59cA40C7061341/logo.png new file mode 100644 index 00000000..cce7ebf9 Binary files /dev/null and b/blockchains/smartchain/assets/0xbCeeE918077F63fB1B9e10403F59cA40C7061341/logo.png differ diff --git a/blockchains/smartchain/assets/0xbCf114b5454b8c9158A2e554eD891c3319523dfd/info.json b/blockchains/smartchain/assets/0xbCf114b5454b8c9158A2e554eD891c3319523dfd/info.json new file mode 100644 index 00000000..0880dd88 --- /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 00000000..0a76c178 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 00000000..a971e2c6 --- /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 00000000..f580f2c0 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 new file mode 100644 index 00000000..5e0cb814 --- /dev/null +++ b/blockchains/smartchain/assets/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51/info.json @@ -0,0 +1,21 @@ +{ + "name": "DogeBull", + "website": "https://dogecola.finance", + "description": "$DOGEBULL is part of DOGECOLA project. Same family, same community, same devs. Hold $DOGEBULL and you'll receive DOGECOLA automatically in your wallet.", + "explorer": "https://bscscan.com/token/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51", + "type": "BEP20", + "symbol": "DOGEBULL", + "decimals": 18, + "status": "abandoned", + "id": "0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51", + "links": [ + { + "name": "x", + "url": "https://x.com/doge_cola" + }, + { + "name": "telegram", + "url": "https://t.me/dogecola" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json b/blockchains/smartchain/assets/0xbD730E618bcD88C82dDeE52e10275CF2f88A4777/info.json new file mode 100644 index 00000000..99fa9774 --- /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 00000000..ec248062 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 new file mode 100644 index 00000000..325baf65 --- /dev/null +++ b/blockchains/smartchain/assets/0xbD83010eB60F12112908774998F65761cf9f6f9a/info.json @@ -0,0 +1,29 @@ +{ + "name": "Mogul Stars", + "website": "https://www.mogulproductions.com/stars", + "description": "Mogul Productions is a decentralized film financing (DeFi) and movie-based NFT platform that connects creators, movie fans, and film financiers in one space to ensure the best films get made by giving everyone a voice. By leveraging blockchain technology, NFTs and a tokenized system, Mogul incentivizes participation and rewards engagement. Using the Mogul in-app payment and utility token (STARS), users can vote on, greenlight and participate in key decision-making aspects of production.", + "explorer": "https://bscscan.com/token/0xbd83010eb60f12112908774998f65761cf9f6f9a", + "type": "BEP20", + "symbol": "STARS", + "decimals": 18, + "status": "active", + "id": "0xbD83010eB60F12112908774998F65761cf9f6f9a", + "links": [ + { + "name": "telegram", + "url": "https://t.me/mogulproductions" + }, + { + "name": "x", + "url": "https://x.com/mogulofficial_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mogul-productions/" + } + ], + "tags": [ + "defi", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbD83010eB60F12112908774998F65761cf9f6f9a/logo.png b/blockchains/smartchain/assets/0xbD83010eB60F12112908774998F65761cf9f6f9a/logo.png new file mode 100644 index 00000000..052b4900 Binary files /dev/null and b/blockchains/smartchain/assets/0xbD83010eB60F12112908774998F65761cf9f6f9a/logo.png differ diff --git a/blockchains/smartchain/assets/0xbDC3b3639f7AA19e623A4d603A3Fb7Ab20115A91/info.json b/blockchains/smartchain/assets/0xbDC3b3639f7AA19e623A4d603A3Fb7Ab20115A91/info.json new file mode 100644 index 00000000..c811432e --- /dev/null +++ b/blockchains/smartchain/assets/0xbDC3b3639f7AA19e623A4d603A3Fb7Ab20115A91/info.json @@ -0,0 +1,29 @@ +{ + "name": "Coin of Champions", + "type": "BEP20", + "symbol": "COC", + "decimals": 18, + "website": "https://coinofchampions.com/", + "description": "COC token was created to link blockchain and sport industry. The project aims to create a collectible NFT card game based on sports. COC brand would like to spread the values and the features that distinguish the brand and differentiate it from competitors. Sharing, community building, famous sports testimonials and the chance of saving: these are the concepts conveyed through the structure of the brand.", + "explorer": "https://bscscan.com/token/0xbDC3b3639f7AA19e623A4d603A3Fb7Ab20115A91", + "status": "active", + "id": "0xbDC3b3639f7AA19e623A4d603A3Fb7Ab20115A91", + "links": [ + { + "name": "x", + "url": "https://x.com/coinofchampions" + }, + { + "name": "github", + "url": "https://github.com/Coin-of-Champions" + }, + { + "name": "telegram", + "url": "https://t.me/chatcocinternational" + }, + { + "name": "whitepaper", + "url": "https://coinofchampions.com/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbDC3b3639f7AA19e623A4d603A3Fb7Ab20115A91/logo.png b/blockchains/smartchain/assets/0xbDC3b3639f7AA19e623A4d603A3Fb7Ab20115A91/logo.png new file mode 100644 index 00000000..c7968b1e Binary files /dev/null and b/blockchains/smartchain/assets/0xbDC3b3639f7AA19e623A4d603A3Fb7Ab20115A91/logo.png differ diff --git a/blockchains/smartchain/assets/0xbDDD7D426274fc5F370817C80C06b86D651963e4/info.json b/blockchains/smartchain/assets/0xbDDD7D426274fc5F370817C80C06b86D651963e4/info.json new file mode 100644 index 00000000..4f54b3f2 --- /dev/null +++ b/blockchains/smartchain/assets/0xbDDD7D426274fc5F370817C80C06b86D651963e4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Moola", + "website": "https://getmoola.org", + "description": "Moola a token for an upcoming defi statistics platform and deflationary yield farming dapp", + "explorer": "https://bscscan.com/token/0xbDDD7D426274fc5F370817C80C06b86D651963e4", + "type": "BEP20", + "symbol": "MLA", + "decimals": 18, + "status": "active", + "id": "0xbDDD7D426274fc5F370817C80C06b86D651963e4", + "links": [ + { + "name": "x", + "url": "https://x.com/mlatoken" + }, + { + "name": "telegram", + "url": "https://t.me/moolatoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbDDD7D426274fc5F370817C80C06b86D651963e4/logo.png b/blockchains/smartchain/assets/0xbDDD7D426274fc5F370817C80C06b86D651963e4/logo.png new file mode 100644 index 00000000..9e9e5e3a Binary files /dev/null and b/blockchains/smartchain/assets/0xbDDD7D426274fc5F370817C80C06b86D651963e4/logo.png differ diff --git a/blockchains/smartchain/assets/0xbE8183612F145986A41ad8e8fCFefED1C2F9dEbA/info.json b/blockchains/smartchain/assets/0xbE8183612F145986A41ad8e8fCFefED1C2F9dEbA/info.json new file mode 100644 index 00000000..b7e6d169 --- /dev/null +++ b/blockchains/smartchain/assets/0xbE8183612F145986A41ad8e8fCFefED1C2F9dEbA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moon Bud", + "website": "https://moonbud.space", + "description": "Moon Bud is a deflationary meme token that supports charities worldwide", + "explorer": "https://bscscan.com/token/0xbe8183612f145986a41ad8e8fcfefed1c2f9deba", + "type": "BEP20", + "symbol": "MBUD", + "decimals": 9, + "status": "active", + "id": "0xbE8183612F145986A41ad8e8fCFefED1C2F9dEbA" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbE8183612F145986A41ad8e8fCFefED1C2F9dEbA/logo.png b/blockchains/smartchain/assets/0xbE8183612F145986A41ad8e8fCFefED1C2F9dEbA/logo.png new file mode 100644 index 00000000..92a62257 Binary files /dev/null and b/blockchains/smartchain/assets/0xbE8183612F145986A41ad8e8fCFefED1C2F9dEbA/logo.png differ diff --git a/blockchains/smartchain/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json b/blockchains/smartchain/assets/0xbEe6b69345F376598Fe16AbD5592c6F844825E66/info.json new file mode 100644 index 00000000..e487b190 --- /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 00000000..ce91cfbf 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 00000000..1bb402b7 --- /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 00000000..db122827 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 new file mode 100644 index 00000000..c5703a3f --- /dev/null +++ b/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/info.json @@ -0,0 +1,33 @@ +{ + "name": "BNB pegged Elrond", + "website": "https://elrond.com", + "description": "BNB pegged Elrond (EGLD BEP20) is a token issued by Binance on Smart Chain; its price is pegged to Elrond (EGLD) at a ratio of 1:1.", + "explorer": "https://bscscan.com/token/0xbf7c81fff98bbe61b40ed186e4afd6ddd01337fe", + "research": "https://messari.io/asset/elrond/profile", + "type": "BEP20", + "symbol": "EGLD", + "decimals": 18, + "status": "active", + "id": "0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ElrondNetwork" + }, + { + "name": "x", + "url": "https://x.com/ElrondNetwork" + }, + { + "name": "telegram", + "url": "https://t.me/ElrondNetwork" + }, + { + "name": "blog", + "url": "https://elrond.com/blog/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/logo.png b/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/logo.png new file mode 100644 index 00000000..9e448733 Binary files /dev/null and b/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/logo.png differ diff --git a/blockchains/smartchain/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json b/blockchains/smartchain/assets/0xba0Dda8762C24dA9487f5FA026a9B64b695A07Ea/info.json new file mode 100644 index 00000000..788d4593 --- /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 00000000..d66f3d33 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 new file mode 100644 index 00000000..7413efd8 --- /dev/null +++ b/blockchains/smartchain/assets/0xba7E2a9E5193E60368F440E4Ae881cC312d6a160/info.json @@ -0,0 +1,37 @@ +{ + "name": "Minions INU", + "type": "BEP20", + "symbol": "MINION", + "decimals": 9, + "website": "https://minionsinu.net/", + "description": "MinionsINU is designed to create a complex ecosystem in which DeFi and Metaverse are integrated together.", + "explorer": "https://bscscan.com/token/0xba7e2a9e5193e60368f440e4ae881cc312d6a160", + "status": "active", + "id": "0xba7E2a9E5193E60368F440E4Ae881cC312d6a160", + "links": [ + { + "name": "x", + "url": "https://x.com/MinionsINUbsc" + }, + { + "name": "telegram", + "url": "https://t.me/MinionsINUbsc" + }, + { + "name": "youtube", + "url": "https://youtube.com/@minionsinu" + }, + { + "name": "discord", + "url": "https://discord.com/invite/GkDv7BXcR9" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/minions-inu/" + } + ], + "tags": [ + "gamefi", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xba7E2a9E5193E60368F440E4Ae881cC312d6a160/logo.png b/blockchains/smartchain/assets/0xba7E2a9E5193E60368F440E4Ae881cC312d6a160/logo.png new file mode 100644 index 00000000..a84c1e67 Binary files /dev/null and b/blockchains/smartchain/assets/0xba7E2a9E5193E60368F440E4Ae881cC312d6a160/logo.png differ diff --git a/blockchains/smartchain/assets/0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c/info.json b/blockchains/smartchain/assets/0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c/info.json new file mode 100644 index 00000000..7a6222c2 --- /dev/null +++ b/blockchains/smartchain/assets/0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c/info.json @@ -0,0 +1,15 @@ +{ + "name": "Wrapped BNB", + "website": "https://binance.org", + "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.", + "explorer": "https://bscscan.com/token/0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "research": "https://research.binance.com/en/projects/bnb", + "type": "BEP20", + "symbol": "WBNB", + "decimals": 18, + "status": "active", + "id": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c/logo.png b/blockchains/smartchain/assets/0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c/logo.png new file mode 100644 index 00000000..df65de20 Binary files /dev/null and b/blockchains/smartchain/assets/0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c/logo.png differ diff --git a/blockchains/smartchain/assets/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11/info.json b/blockchains/smartchain/assets/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11/info.json new file mode 100644 index 00000000..c6feb3a7 --- /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 00000000..9b86d8ae 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 00000000..7397cc12 --- /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 00000000..a71a2f34 Binary files /dev/null and b/blockchains/smartchain/assets/0xbbBBBBe1da5EAB142B32f8887EE8d3872D847c20/logo.png differ diff --git a/blockchains/smartchain/assets/0xbbC9Fa4B395FeE68465C2Cd4a88cdE267a34ed2a/info.json b/blockchains/smartchain/assets/0xbbC9Fa4B395FeE68465C2Cd4a88cdE267a34ed2a/info.json new file mode 100644 index 00000000..efd30095 --- /dev/null +++ b/blockchains/smartchain/assets/0xbbC9Fa4B395FeE68465C2Cd4a88cdE267a34ed2a/info.json @@ -0,0 +1,11 @@ +{ + "name": "wRipple", + "website": "https://wripple.net", + "description": "Do more something with your Ripple", + "explorer": "https://bscscan.com/token/0xbbc9fa4b395fee68465c2cd4a88cde267a34ed2a", + "symbol": "wXRP", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xbbC9Fa4B395FeE68465C2Cd4a88cdE267a34ed2a" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbbC9Fa4B395FeE68465C2Cd4a88cdE267a34ed2a/logo.png b/blockchains/smartchain/assets/0xbbC9Fa4B395FeE68465C2Cd4a88cdE267a34ed2a/logo.png new file mode 100644 index 00000000..5d7153c8 Binary files /dev/null and b/blockchains/smartchain/assets/0xbbC9Fa4B395FeE68465C2Cd4a88cdE267a34ed2a/logo.png differ diff --git a/blockchains/smartchain/assets/0xbbE4Dfe7a349Fb72aEc6f52d5CD9bDD78AE8f313/info.json b/blockchains/smartchain/assets/0xbbE4Dfe7a349Fb72aEc6f52d5CD9bDD78AE8f313/info.json new file mode 100644 index 00000000..1e53c891 --- /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 00000000..4da81882 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 new file mode 100644 index 00000000..b1de9c83 --- /dev/null +++ b/blockchains/smartchain/assets/0xbbe0A94f363a52dA9229A7546434b6e657A6A78F/info.json @@ -0,0 +1,29 @@ +{ + "name": "DYOR Token", + "website": "https://www.dyortoken.info", + "description": "DYOR (Do Your Own Research) Token was developed by victims of scams to bring together a community to fight against the growing number of rug pulls", + "explorer": "https://bscscan.com/token/0xbbe0A94f363a52dA9229A7546434b6e657A6A78F", + "type": "BEP20", + "symbol": "DYOR", + "decimals": 9, + "status": "abandoned", + "id": "0xbbe0A94f363a52dA9229A7546434b6e657A6A78F", + "migrate": { + "asset_id": "c20000714_t0x10051147418c42218986cedd0adc266441f8a14f", + "url": "https://x.com/DYOR_jetrich/status/1493274001166290949" + }, + "links": [ + { + "name": "telegram", + "url": "https://t.me/joinchat/_zhiZUUM5m45YjUx" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/dyor-token/" + }, + { + "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 new file mode 100644 index 00000000..107fc2b9 --- /dev/null +++ b/blockchains/smartchain/assets/0xbbf33a3c83Cf86D0965A66E108669D272DFE4214/info.json @@ -0,0 +1,29 @@ +{ + "name": "Eifi", + "website": "https://eifi.com", + "description": "EIFI, Eifi finance, eifi yield farming, eifi amm dex, dex platform, eifi staking, yield farming.", + "explorer": "https://bscscan.com/token/0xbbf33a3c83Cf86D0965A66E108669D272DFE4214", + "type": "BEP20", + "symbol": "EiFI", + "decimals": 8, + "status": "active", + "id": "0xbbf33a3c83Cf86D0965A66E108669D272DFE4214", + "links": [ + { + "name": "blog", + "url": "https://eififinance.medium.com/" + }, + { + "name": "x", + "url": "https://x.com/EifiFinance" + }, + { + "name": "whitepaper", + "url": "https://eifi.com/whitepaper/eifi_whitepaper_en.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/eifi-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbbf33a3c83Cf86D0965A66E108669D272DFE4214/logo.png b/blockchains/smartchain/assets/0xbbf33a3c83Cf86D0965A66E108669D272DFE4214/logo.png new file mode 100644 index 00000000..5e9007c3 Binary files /dev/null and b/blockchains/smartchain/assets/0xbbf33a3c83Cf86D0965A66E108669D272DFE4214/logo.png differ diff --git a/blockchains/smartchain/assets/0xbc194e6f748a222754C3E8b9946922c09E7d4e91/info.json b/blockchains/smartchain/assets/0xbc194e6f748a222754C3E8b9946922c09E7d4e91/info.json new file mode 100644 index 00000000..a9b7848b --- /dev/null +++ b/blockchains/smartchain/assets/0xbc194e6f748a222754C3E8b9946922c09E7d4e91/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lever Token", + "type": "BEP20", + "symbol": "LEV", + "decimals": 18, + "website": "https://lever.network/", + "description": "Lever is the world's first AMM-based decentralized margin trading protocol. Lever allows users to lend, borrow and carry out leveraged trading without needing to transfer assets to other third-party platforms. Lever aims to significantly increase capital efficiency in DeFi.", + "explorer": "https://bscscan.com/token/0xbc194e6f748a222754C3E8b9946922c09E7d4e91", + "status": "active", + "id": "0xbc194e6f748a222754C3E8b9946922c09E7d4e91" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbc194e6f748a222754C3E8b9946922c09E7d4e91/logo.png b/blockchains/smartchain/assets/0xbc194e6f748a222754C3E8b9946922c09E7d4e91/logo.png new file mode 100644 index 00000000..374b6e3c Binary files /dev/null and b/blockchains/smartchain/assets/0xbc194e6f748a222754C3E8b9946922c09E7d4e91/logo.png differ diff --git a/blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/info.json b/blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/info.json new file mode 100644 index 00000000..822bce74 --- /dev/null +++ b/blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/info.json @@ -0,0 +1,26 @@ +{ + "name": "Laqira Protocol", + "website": "https://laqira.io/index.php", + "description": "A Metaverse Complex, Tunneling Between People on Earth and Blockchain-Based Technologies", + "explorer": "https://bscscan.com/token/0xbc81ea817b579eC0334BcA8E65E436b7cB540147", + "type": "BEP20", + "symbol": "LQR", + "decimals": 18, + "status": "abandoned", + "id": "0xbc81ea817b579eC0334BcA8E65E436b7cB540147", + "tags": [], + "links": [ + { + "name": "github", + "url": "https://github.com/laqiraprotocol/" + }, + { + "name": "x", + "url": "https://x.com/laqiraprotocol/" + }, + { + "name": "telegram", + "url": "https://t.me/LaqiraProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbcb24AFb019BE7E93EA9C43B7E22Bb55D5B7f45D/info.json b/blockchains/smartchain/assets/0xbcb24AFb019BE7E93EA9C43B7E22Bb55D5B7f45D/info.json new file mode 100644 index 00000000..a8c985d1 --- /dev/null +++ b/blockchains/smartchain/assets/0xbcb24AFb019BE7E93EA9C43B7E22Bb55D5B7f45D/info.json @@ -0,0 +1,11 @@ +{ + "name": "BSCS Token", + "website": "https://bscstation.org/", + "description": "Building A Full-Stack DEFI with NFT Auction On Binance Smart Chain", + "explorer": "https://bscscan.com/token/0xbcb24AFb019BE7E93EA9C43B7E22Bb55D5B7f45D", + "type": "BEP20", + "symbol": "BSCS", + "decimals": 18, + "status": "active", + "id": "0xbcb24AFb019BE7E93EA9C43B7E22Bb55D5B7f45D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbcb24AFb019BE7E93EA9C43B7E22Bb55D5B7f45D/logo.png b/blockchains/smartchain/assets/0xbcb24AFb019BE7E93EA9C43B7E22Bb55D5B7f45D/logo.png new file mode 100644 index 00000000..6f864ccd Binary files /dev/null and b/blockchains/smartchain/assets/0xbcb24AFb019BE7E93EA9C43B7E22Bb55D5B7f45D/logo.png differ diff --git a/blockchains/smartchain/assets/0xbcf39F0EDDa668C58371E519AF37CA705f2bFcbd/info.json b/blockchains/smartchain/assets/0xbcf39F0EDDa668C58371E519AF37CA705f2bFcbd/info.json new file mode 100644 index 00000000..6d20bbba --- /dev/null +++ b/blockchains/smartchain/assets/0xbcf39F0EDDa668C58371E519AF37CA705f2bFcbd/info.json @@ -0,0 +1,33 @@ +{ + "name": "PolyCrowns", + "type": "BEP20", + "symbol": "pCWS", + "decimals": 18, + "website": "https://www.seascape.network", + "description": "PolyCrowns are the official token of the Seascape Network on Binance Smart Chain. They are designed to reward all key stakeholders within the network. The Seascape Network is an incentivized ecosystem consisting of gamers, developers, and influencers with the purpose of bringing DeFi gaming to a broader userbase.", + "explorer": "https://bscscan.com/token/0xbcf39F0EDDa668C58371E519AF37CA705f2bFcbd", + "status": "active", + "id": "0xbcf39F0EDDa668C58371E519AF37CA705f2bFcbd", + "links": [ + { + "name": "github", + "url": "https://github.com/blocklords/seascape-smartcontracts" + }, + { + "name": "x", + "url": "https://x.com/SeascapeNetwork" + }, + { + "name": "telegram", + "url": "https://t.me/seascapenetwork" + }, + { + "name": "discord", + "url": "https://discord.com/invite/qG2Vynh" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SeascapeNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbcf39F0EDDa668C58371E519AF37CA705f2bFcbd/logo.png b/blockchains/smartchain/assets/0xbcf39F0EDDa668C58371E519AF37CA705f2bFcbd/logo.png new file mode 100644 index 00000000..145f5293 Binary files /dev/null and b/blockchains/smartchain/assets/0xbcf39F0EDDa668C58371E519AF37CA705f2bFcbd/logo.png differ diff --git a/blockchains/smartchain/assets/0xbd7B8e4de08D9b01938F7FF2058F110ee1E0E8d4/info.json b/blockchains/smartchain/assets/0xbd7B8e4de08D9b01938F7FF2058F110ee1E0E8d4/info.json new file mode 100644 index 00000000..3e4cb850 --- /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 00000000..d2a350d1 Binary files /dev/null and b/blockchains/smartchain/assets/0xbd7B8e4de08D9b01938F7FF2058F110ee1E0E8d4/logo.png differ diff --git a/blockchains/smartchain/assets/0xbdfB7A9e5A74cD722A9691570108CAaacB17674A/info.json b/blockchains/smartchain/assets/0xbdfB7A9e5A74cD722A9691570108CAaacB17674A/info.json new file mode 100644 index 00000000..8e9329ab --- /dev/null +++ b/blockchains/smartchain/assets/0xbdfB7A9e5A74cD722A9691570108CAaacB17674A/info.json @@ -0,0 +1,11 @@ +{ + "name": "$SpaceSharks", + "website": "https://spacesharks.co/", + "description": "$SPACESHARKS is a deflationary and frictionless yield token built to connect digital artists and those of interest!", + "explorer": "https://bscscan.com/token/0xbdfB7A9e5A74cD722A9691570108CAaacB17674A", + "type": "BEP20", + "symbol": "SPACESHARKS", + "decimals": 18, + "status": "active", + "id": "0xbdfB7A9e5A74cD722A9691570108CAaacB17674A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbdfB7A9e5A74cD722A9691570108CAaacB17674A/logo.png b/blockchains/smartchain/assets/0xbdfB7A9e5A74cD722A9691570108CAaacB17674A/logo.png new file mode 100644 index 00000000..bcbaa61d Binary files /dev/null and b/blockchains/smartchain/assets/0xbdfB7A9e5A74cD722A9691570108CAaacB17674A/logo.png differ diff --git a/blockchains/smartchain/assets/0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143/info.json b/blockchains/smartchain/assets/0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143/info.json new file mode 100644 index 00000000..181d3e31 --- /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 00000000..2e033bfc 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 00000000..5d36d8d0 --- /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 00000000..ce92b435 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 new file mode 100644 index 00000000..eefb3be0 --- /dev/null +++ b/blockchains/smartchain/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json @@ -0,0 +1,32 @@ +{ + "name": "FEG Token", + "type": "BEP20", + "symbol": "FEG", + "decimals": 18, + "website": "https://fegtoken.com/", + "description": "Building an ecosystem and passive income around a governance token. Trade your crypto assets using our non-custodial peer-to-peer trading protocol and earn a passive income with our asset-backed governance token.", + "explorer": "https://bscscan.com/token/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11", + "status": "active", + "id": "0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fegtoken-v2/" + }, + { + "name": "x", + "url": "https://x.com/FEGtoken" + }, + { + "name": "telegram", + "url": "https://t.me/FEGchat" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/feg-token" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/logo.png b/blockchains/smartchain/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/logo.png new file mode 100644 index 00000000..94405ed8 Binary files /dev/null and b/blockchains/smartchain/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/logo.png differ diff --git a/blockchains/smartchain/assets/0xbf151F63D8d1287db5FC7a3bc104a9c38124cdeB/info.json b/blockchains/smartchain/assets/0xbf151F63D8d1287db5FC7a3bc104a9c38124cdeB/info.json new file mode 100644 index 00000000..bdd32234 --- /dev/null +++ b/blockchains/smartchain/assets/0xbf151F63D8d1287db5FC7a3bc104a9c38124cdeB/info.json @@ -0,0 +1,25 @@ +{ + "name": "AVNRich Token", + "type": "BEP20", + "symbol": "AVN", + "decimals": 18, + "website": "https://avnrich.shop", + "description": "AVNRich was founded in 2019, AVNRich token is an innovative e-commerce and decentralized token based on the Binance Smart Chain Network that is used to reward users in a modern way by providing shopping, staking, farming, and IFO benefits to all users.", + "explorer": "https://bscscan.com/token/0xbf151F63D8d1287db5FC7a3bc104a9c38124cdeB", + "status": "active", + "id": "0xbf151F63D8d1287db5FC7a3bc104a9c38124cdeB", + "links": [ + { + "name": "telegram", + "url": "https://t.me/AVNRich_Chat" + }, + { + "name": "x", + "url": "https://x.com/avnrich" + }, + { + "name": "github", + "url": "https://github.com/AvnrichDefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbf151F63D8d1287db5FC7a3bc104a9c38124cdeB/logo.png b/blockchains/smartchain/assets/0xbf151F63D8d1287db5FC7a3bc104a9c38124cdeB/logo.png new file mode 100644 index 00000000..57a828bb Binary files /dev/null and b/blockchains/smartchain/assets/0xbf151F63D8d1287db5FC7a3bc104a9c38124cdeB/logo.png differ diff --git a/blockchains/smartchain/assets/0xbfBEe3dAc982148aC793161f7362344925506903/info.json b/blockchains/smartchain/assets/0xbfBEe3dAc982148aC793161f7362344925506903/info.json new file mode 100644 index 00000000..4dff3f72 --- /dev/null +++ b/blockchains/smartchain/assets/0xbfBEe3dAc982148aC793161f7362344925506903/info.json @@ -0,0 +1,11 @@ +{ + "name": "CatzCoin", + "type": "BEP20", + "symbol": "CATZ", + "decimals": 18, + "website": "https://www.catzcoin.io/", + "description": "Introducing what will be the fastest growing cryptocurrency, made just for cat supporters. A truly connected global community for cat fans powered by a limited supply coin, CatzCoin", + "explorer": "https://bscscan.com/token/0xbfbee3dac982148ac793161f7362344925506903", + "status": "active", + "id": "0xbfBEe3dAc982148aC793161f7362344925506903" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbfBEe3dAc982148aC793161f7362344925506903/logo.png b/blockchains/smartchain/assets/0xbfBEe3dAc982148aC793161f7362344925506903/logo.png new file mode 100644 index 00000000..c7d19fbf Binary files /dev/null and b/blockchains/smartchain/assets/0xbfBEe3dAc982148aC793161f7362344925506903/logo.png differ diff --git a/blockchains/smartchain/assets/0xbfb1a68962Fb4ED040FD3a0a71dC2C2015BCc667/info.json b/blockchains/smartchain/assets/0xbfb1a68962Fb4ED040FD3a0a71dC2C2015BCc667/info.json new file mode 100644 index 00000000..5c72853c --- /dev/null +++ b/blockchains/smartchain/assets/0xbfb1a68962Fb4ED040FD3a0a71dC2C2015BCc667/info.json @@ -0,0 +1,24 @@ +{ + "name": "4JNET", + "type": "BEP20", + "symbol": "4JNET", + "decimals": 9, + "website": "https://www.4j.net/", + "description": "4JNET, the pinnacle of fairness", + "explorer": "https://bscscan.com/token/0xbfb1a68962Fb4ED040FD3a0a71dC2C2015BCc667", + "status": "active", + "id": "0xbfb1a68962Fb4ED040FD3a0a71dC2C2015BCc667", + "links": [ + { + "name": "x", + "url": "https://x.com/4Jnet" + }, + { + "name": "telegram", + "url": "https://t.me/fourjnetchannel" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbfb1a68962Fb4ED040FD3a0a71dC2C2015BCc667/logo.png b/blockchains/smartchain/assets/0xbfb1a68962Fb4ED040FD3a0a71dC2C2015BCc667/logo.png new file mode 100644 index 00000000..71b3eff0 Binary files /dev/null and b/blockchains/smartchain/assets/0xbfb1a68962Fb4ED040FD3a0a71dC2C2015BCc667/logo.png differ diff --git a/blockchains/smartchain/assets/0xbfbc6C29385aC9a0B43e0156C7f53DdA6028A090/info.json b/blockchains/smartchain/assets/0xbfbc6C29385aC9a0B43e0156C7f53DdA6028A090/info.json new file mode 100644 index 00000000..6cbb7f1f --- /dev/null +++ b/blockchains/smartchain/assets/0xbfbc6C29385aC9a0B43e0156C7f53DdA6028A090/info.json @@ -0,0 +1,11 @@ +{ + "name": "Doge-1 Rocket", + "website": "https://www.doge-1rocket.com/", + "description": "Doge-1 Rocket is a community-driven cryptocurrency protocol to provide giveaways and rewards to long-term holders.", + "explorer": "https://bscscan.com/token/0xbfbc6C29385aC9a0B43e0156C7f53DdA6028A090", + "type": "BEP20", + "symbol": "D1R2", + "decimals": 9, + "status": "active", + "id": "0xbfbc6C29385aC9a0B43e0156C7f53DdA6028A090" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbfbc6C29385aC9a0B43e0156C7f53DdA6028A090/logo.png b/blockchains/smartchain/assets/0xbfbc6C29385aC9a0B43e0156C7f53DdA6028A090/logo.png new file mode 100644 index 00000000..9176e78e Binary files /dev/null and b/blockchains/smartchain/assets/0xbfbc6C29385aC9a0B43e0156C7f53DdA6028A090/logo.png differ diff --git a/blockchains/smartchain/assets/0xbfeA674ce7d16E26E39e3c088810367a708eF94C/info.json b/blockchains/smartchain/assets/0xbfeA674ce7d16E26E39e3c088810367a708eF94C/info.json new file mode 100644 index 00000000..bb358828 --- /dev/null +++ b/blockchains/smartchain/assets/0xbfeA674ce7d16E26E39e3c088810367a708eF94C/info.json @@ -0,0 +1,11 @@ +{ + "name": "April Token", + "website": "https://apriloracle.com", + "description": "April is a high speed, cross chain oracle serving the Internet of Blockchains", + "explorer": "https://bscscan.com/token/0xbfea674ce7d16e26e39e3c088810367a708ef94c", + "type": "BEP20", + "symbol": "APRIL", + "decimals": 18, + "status": "active", + "id": "0xbfeA674ce7d16E26E39e3c088810367a708eF94C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbfeA674ce7d16E26E39e3c088810367a708eF94C/logo.png b/blockchains/smartchain/assets/0xbfeA674ce7d16E26E39e3c088810367a708eF94C/logo.png new file mode 100644 index 00000000..e538f513 Binary files /dev/null and b/blockchains/smartchain/assets/0xbfeA674ce7d16E26E39e3c088810367a708eF94C/logo.png differ diff --git a/blockchains/smartchain/assets/0xc003F5193CABE3a6cbB56948dFeaAE2276a6AA5E/info.json b/blockchains/smartchain/assets/0xc003F5193CABE3a6cbB56948dFeaAE2276a6AA5E/info.json new file mode 100644 index 00000000..e770f300 --- /dev/null +++ b/blockchains/smartchain/assets/0xc003F5193CABE3a6cbB56948dFeaAE2276a6AA5E/info.json @@ -0,0 +1,65 @@ +{ + "name": "TruBadger", + "type": "BEP20", + "symbol": "TRUBGR", + "decimals": 18, + "website": "https://www.trubadger.io/", + "description": "TruBadger is a Reflection, Deflationary and Utility DeFi token that cares about its holders, implementing true community governance. The TruBadger ecosystem is making crypto accessible to everyone.", + "explorer": "https://bscscan.com/token/0xc003F5193CABE3a6cbB56948dFeaAE2276a6AA5E", + "status": "active", + "id": "0xc003F5193CABE3a6cbB56948dFeaAE2276a6AA5E", + "links": [ + { + "name": "x", + "url": "https://x.com/thetrubadger/" + }, + { + "name": "github", + "url": "https://github.com/trubadger" + }, + { + "name": "telegram", + "url": "https://t.me/TruBadgerOfficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/TRUBGRannouncements" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ajssE9hPmW" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/TheTruBadger/" + }, + { + "name": "whitepaper", + "url": "https://trubadger.io/whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@trubadgertoken" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/TruBadgerToken" + }, + { + "name": "facebook", + "url": "https://facebook.com/TruBadgerToken/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/en/currencies/trubadger" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/trubadger" + }, + { + "name": "source_code", + "url": "https://github.com/trubadger/smart-contracs" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc003F5193CABE3a6cbB56948dFeaAE2276a6AA5E/logo.png b/blockchains/smartchain/assets/0xc003F5193CABE3a6cbB56948dFeaAE2276a6AA5E/logo.png new file mode 100644 index 00000000..5e258423 Binary files /dev/null and b/blockchains/smartchain/assets/0xc003F5193CABE3a6cbB56948dFeaAE2276a6AA5E/logo.png differ diff --git a/blockchains/smartchain/assets/0xc008c5F579ec1450F20099c39F587547e27c7523/info.json b/blockchains/smartchain/assets/0xc008c5F579ec1450F20099c39F587547e27c7523/info.json new file mode 100644 index 00000000..6df6f094 --- /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 00000000..5fd5a776 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 new file mode 100644 index 00000000..fde95336 --- /dev/null +++ b/blockchains/smartchain/assets/0xc029A12e4A002c6858878FD9D3cc74E227cc2DDa/info.json @@ -0,0 +1,41 @@ +{ + "name": "VELOREX", + "type": "BEP20", + "symbol": "VEX", + "decimals": 9, + "website": "https://velorex.net/", + "description": "Velorex is a Europe based decentralized finance and technology company that provides hardware and software solutions to manage crypto and fiat currency. Velorex is about greater literacy and adoption of cryptocurrency through the provision of fair, safe, and well-designed tools such as ATMs, debit cards, and smart wallets.", + "explorer": "https://bscscan.com/token/0xc029A12e4A002c6858878FD9D3cc74E227cc2DDa", + "status": "active", + "id": "0xc029A12e4A002c6858878FD9D3cc74E227cc2DDa", + "links": [ + { + "name": "x", + "url": "https://x.com/VelorexOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/velorex_net" + }, + { + "name": "telegram_news", + "url": "https://t.me/velorexannouncements" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1oaJpHwTXmVRASGIblPhgTS0kIaXCGAQy/view" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/velorex/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/velorex" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Velorex_official/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc029A12e4A002c6858878FD9D3cc74E227cc2DDa/logo.png b/blockchains/smartchain/assets/0xc029A12e4A002c6858878FD9D3cc74E227cc2DDa/logo.png new file mode 100644 index 00000000..d3c6caaf Binary files /dev/null and b/blockchains/smartchain/assets/0xc029A12e4A002c6858878FD9D3cc74E227cc2DDa/logo.png differ diff --git a/blockchains/smartchain/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/info.json b/blockchains/smartchain/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/info.json new file mode 100644 index 00000000..2853f79a --- /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 00000000..e63fc80b Binary files /dev/null and b/blockchains/smartchain/assets/0xc03fBF20A586fa89C2a5f6F941458E1Fbc40c661/logo.png differ diff --git a/blockchains/smartchain/assets/0xc04e039aE8587e71f8024b36d630f841cc2106CC/info.json b/blockchains/smartchain/assets/0xc04e039aE8587e71f8024b36d630f841cc2106CC/info.json new file mode 100644 index 00000000..20217415 --- /dev/null +++ b/blockchains/smartchain/assets/0xc04e039aE8587e71f8024b36d630f841cc2106CC/info.json @@ -0,0 +1,12 @@ +{ + "name": "Foundry Logistics Token", + "website": "https://foundrydao.com", + "description": "Foundry: A DAO for Economic Freedom. Foundry will attract FRY holders who believe in unstoppable economic freedom. Following SmokeSignal and DAIHard, FRY holders will likely drive Foundry to build or invest in similar pursuits: profitable tools that increase economic freedom which cannot be shut down.", + "explorer": "https://bscscan.com/token/0xc04e039aE8587e71f8024b36d630f841cc2106CC", + "research": "", + "type": "BEP20", + "symbol": "FRY", + "decimals": 18, + "status": "active", + "id": "0xc04e039aE8587e71f8024b36d630f841cc2106CC" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc04e039aE8587e71f8024b36d630f841cc2106CC/logo.png b/blockchains/smartchain/assets/0xc04e039aE8587e71f8024b36d630f841cc2106CC/logo.png new file mode 100644 index 00000000..8e5652b5 Binary files /dev/null and b/blockchains/smartchain/assets/0xc04e039aE8587e71f8024b36d630f841cc2106CC/logo.png differ diff --git a/blockchains/smartchain/assets/0xc080ADF0a40A38Ffe05834174b8883e60eaff3F3/info.json b/blockchains/smartchain/assets/0xc080ADF0a40A38Ffe05834174b8883e60eaff3F3/info.json new file mode 100644 index 00000000..9aeeeb3d --- /dev/null +++ b/blockchains/smartchain/assets/0xc080ADF0a40A38Ffe05834174b8883e60eaff3F3/info.json @@ -0,0 +1,11 @@ +{ + "name": "AlfaPocket", + "website": "https://alfapocket.com", + "description": "AlfaPocket is a cryptocurrency wallet and automatic portfolio builder with an integrated AI Assistant", + "explorer": "https://bscscan.com/token/0xc080adf0a40a38ffe05834174b8883e60eaff3f3", + "type": "BEP20", + "symbol": "ALFA", + "decimals": 18, + "status": "active", + "id": "0xc080ADF0a40A38Ffe05834174b8883e60eaff3F3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc080ADF0a40A38Ffe05834174b8883e60eaff3F3/logo.png b/blockchains/smartchain/assets/0xc080ADF0a40A38Ffe05834174b8883e60eaff3F3/logo.png new file mode 100644 index 00000000..33cf3027 Binary files /dev/null and b/blockchains/smartchain/assets/0xc080ADF0a40A38Ffe05834174b8883e60eaff3F3/logo.png differ diff --git a/blockchains/smartchain/assets/0xc0924EDEFB2C0C303de2d0c21BfF07ab763163B5/info.json b/blockchains/smartchain/assets/0xc0924EDEFB2C0C303de2d0c21BfF07ab763163B5/info.json new file mode 100644 index 00000000..e4c7b5ef --- /dev/null +++ b/blockchains/smartchain/assets/0xc0924EDEFB2C0C303de2d0c21BfF07ab763163B5/info.json @@ -0,0 +1,33 @@ +{ + "name": "Steam Exchange", + "website": "https://steamexchange.ca", + "description": "Canada's first Centralized and Decentralied Exchange", + "explorer": "https://bscscan.com/token/0xc0924edefb2c0c303de2d0c21bff07ab763163b5", + "type": "BEP20", + "symbol": "SteamX", + "decimals": 9, + "status": "active", + "id": "0xc0924EDEFB2C0C303de2d0c21BfF07ab763163B5", + "links": [ + { + "name": "whitepaper", + "url": "https://docs.steamexchange.ca" + }, + { + "name": "telegram", + "url": "https://t.me/SteamXchangeOfficial" + }, + { + "name": "x", + "url": "https://x.com/Steam_Exchange" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC8xL6IB_C51G2GuvYLZJexw" + }, + { + "name": "facebook", + "url": "https://facebook.com/Steam-Exchange-142284624637992/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc0924EDEFB2C0C303de2d0c21BfF07ab763163B5/logo.png b/blockchains/smartchain/assets/0xc0924EDEFB2C0C303de2d0c21BfF07ab763163B5/logo.png new file mode 100644 index 00000000..058a9a70 Binary files /dev/null and b/blockchains/smartchain/assets/0xc0924EDEFB2C0C303de2d0c21BfF07ab763163B5/logo.png differ diff --git a/blockchains/smartchain/assets/0xc094b9604225062c7edCA29DB444B9b035f78C8B/info.json b/blockchains/smartchain/assets/0xc094b9604225062c7edCA29DB444B9b035f78C8B/info.json new file mode 100644 index 00000000..c1966d89 --- /dev/null +++ b/blockchains/smartchain/assets/0xc094b9604225062c7edCA29DB444B9b035f78C8B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Raku Coin", + "type": "BEP20", + "symbol": "RAKUC", + "decimals": 9, + "website": "https://rakucoin.com", + "description": "A meme token that focuses on real use case and utility with developments", + "explorer": "https://bscscan.com/token/0xc094b9604225062c7edca29db444b9b035f78c8b", + "status": "active", + "id": "0xc094b9604225062c7edCA29DB444B9b035f78C8B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc094b9604225062c7edCA29DB444B9b035f78C8B/logo.png b/blockchains/smartchain/assets/0xc094b9604225062c7edCA29DB444B9b035f78C8B/logo.png new file mode 100644 index 00000000..7658a21d Binary files /dev/null and b/blockchains/smartchain/assets/0xc094b9604225062c7edCA29DB444B9b035f78C8B/logo.png differ diff --git a/blockchains/smartchain/assets/0xc0994Af94FEe0361A1e1E1ccf72BCe19d5FD86FB/info.json b/blockchains/smartchain/assets/0xc0994Af94FEe0361A1e1E1ccf72BCe19d5FD86FB/info.json new file mode 100644 index 00000000..fa21396c --- /dev/null +++ b/blockchains/smartchain/assets/0xc0994Af94FEe0361A1e1E1ccf72BCe19d5FD86FB/info.json @@ -0,0 +1,25 @@ +{ + "name": "RichCity", + "type": "BEP20", + "symbol": "RICH", + "decimals": 9, + "website": "https://www.richcity.com/", + "description": "Rich City is an upcoming social NFT mobile game. The goal of the game is to collect rare NFT items, purchase real-estate to display your items, chill with other players and sell and trade NFTs to make real money. The game is powered by $RICH, which will be the sole currency of the game. You can connect your wallet directly to the game to use your coins!", + "explorer": "https://bscscan.com/token/0xc0994Af94FEe0361A1e1E1ccf72BCe19d5FD86FB", + "status": "active", + "id": "0xc0994Af94FEe0361A1e1E1ccf72BCe19d5FD86FB", + "links": [ + { + "name": "telegram", + "url": "https://t.me/playrichcity" + }, + { + "name": "x", + "url": "https://x.com/playrichcity" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/richcity/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc0994Af94FEe0361A1e1E1ccf72BCe19d5FD86FB/logo.png b/blockchains/smartchain/assets/0xc0994Af94FEe0361A1e1E1ccf72BCe19d5FD86FB/logo.png new file mode 100644 index 00000000..2e3d840b Binary files /dev/null and b/blockchains/smartchain/assets/0xc0994Af94FEe0361A1e1E1ccf72BCe19d5FD86FB/logo.png differ diff --git a/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/info.json b/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/info.json new file mode 100644 index 00000000..1fd88cac --- /dev/null +++ b/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/info.json @@ -0,0 +1,44 @@ +{ + "name": "Black Whale Token", + "website": "https://blkwhale.com", + "description": "BLK whale completed various ETF derivatives that Cefi could not do, but in Defi. Users are able to mint ETF tokens designed to track in real-time an index of various valuable coins on multiple exchanges around the world as well as users can check the ETF portfolios of BLK whales manages.", + "explorer": "https://bscscan.com/token/0xc0E6AD13BD58413Ed308729b688d601243E1CF77", + "type": "BEP20", + "symbol": "BLK", + "decimals": 18, + "status": "abandoned", + "id": "0xc0E6AD13BD58413Ed308729b688d601243E1CF77", + "links": [ + { + "name": "x", + "url": "https://x.com/blkwhalegroup" + }, + { + "name": "telegram", + "url": "https://t.me/BLKwhale_global" + }, + { + "name": "medium", + "url": "https://medium.com/@BlkWhale" + }, + { + "name": "facebook", + "url": "https://facebook.com/BlkWhale" + }, + { + "name": "github", + "url": "https://github.com/BlkWhale" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/black-whale" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/black-whale" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc10358f062663448a3489fC258139944534592ac/info.json b/blockchains/smartchain/assets/0xc10358f062663448a3489fC258139944534592ac/info.json new file mode 100644 index 00000000..b76db1ac --- /dev/null +++ b/blockchains/smartchain/assets/0xc10358f062663448a3489fC258139944534592ac/info.json @@ -0,0 +1,48 @@ +{ + "name": "Blockchain Monster Hunt (BCMC)", + "type": "BEP20", + "symbol": "BCMC", + "decimals": 18, + "website": "https://bcmhunt.com", + "description": "First Multichain NFT game", + "explorer": "https://bscscan.com/token/0xc10358f062663448a3489fC258139944534592ac", + "status": "active", + "id": "0xc10358f062663448a3489fC258139944534592ac", + "tags": [ + "nft" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/bcmhunt" + }, + { + "name": "github", + "url": "https://github.com/Ambros-Technology/bcm_public_smartcontract" + }, + { + "name": "telegram", + "url": "https://t.me/BcmHuntGroup" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Ee9aJ287J2" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCzKIjqylMMBngslHazydgKQ" + }, + { + "name": "medium", + "url": "https://medium.com/bcmhunt" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/blockchain-monster-hunt/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/blockchain-monster-hunt" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc10358f062663448a3489fC258139944534592ac/logo.png b/blockchains/smartchain/assets/0xc10358f062663448a3489fC258139944534592ac/logo.png new file mode 100644 index 00000000..bb4ab633 Binary files /dev/null and b/blockchains/smartchain/assets/0xc10358f062663448a3489fC258139944534592ac/logo.png differ diff --git a/blockchains/smartchain/assets/0xc1168B7B85B2BBc8a5C73c007B74E7523B2DA209/info.json b/blockchains/smartchain/assets/0xc1168B7B85B2BBc8a5C73c007B74E7523B2DA209/info.json new file mode 100644 index 00000000..3c4c486e --- /dev/null +++ b/blockchains/smartchain/assets/0xc1168B7B85B2BBc8a5C73c007B74E7523B2DA209/info.json @@ -0,0 +1,11 @@ +{ + "name": "Babybnb", + "website": "https://babybnb.org", + "description": "BABYBNB is an ecosystem supported by holders who, while they hold partake in the benefits and profits from several use cases, mentioned below. BABYBNB aims to revolutionize mass adoption in the space providing secure and smart projects for the masses that have partnered with the BABYBNB platform", + "explorer": "https://bscscan.com/token/0xc1168B7B85B2BBc8a5C73c007B74E7523B2DA209", + "type": "BEP20", + "symbol": "BABYBNB", + "decimals": 9, + "status": "active", + "id": "0xc1168B7B85B2BBc8a5C73c007B74E7523B2DA209" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc1168B7B85B2BBc8a5C73c007B74E7523B2DA209/logo.png b/blockchains/smartchain/assets/0xc1168B7B85B2BBc8a5C73c007B74E7523B2DA209/logo.png new file mode 100644 index 00000000..6240027d Binary files /dev/null and b/blockchains/smartchain/assets/0xc1168B7B85B2BBc8a5C73c007B74E7523B2DA209/logo.png differ diff --git a/blockchains/smartchain/assets/0xc145DC2eBDbe8EAD1fEcDeBF46c76Eb1Fdd0104D/info.json b/blockchains/smartchain/assets/0xc145DC2eBDbe8EAD1fEcDeBF46c76Eb1Fdd0104D/info.json new file mode 100644 index 00000000..8c529d75 --- /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 00000000..c6fba337 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 new file mode 100644 index 00000000..d7320102 --- /dev/null +++ b/blockchains/smartchain/assets/0xc15e89f2149bCC0cBd5FB204C9e77fe878f1e9b2/info.json @@ -0,0 +1,41 @@ +{ + "name": "HUH Token", + "type": "BEP20", + "symbol": "HUH", + "decimals": 9, + "website": "https://huh.social/", + "description": "HUH Token is the first ever UTIMEME cryptocurrency combining the power of meme tokens with the usability of utility tokens. Refer friends now and earn 10% in BNB.", + "explorer": "https://bscscan.com/token/0xc15e89f2149bCC0cBd5FB204C9e77fe878f1e9b2", + "status": "active", + "id": "0xc15e89f2149bCC0cBd5FB204C9e77fe878f1e9b2", + "links": [ + { + "name": "telegram", + "url": "https://t.me/HuHToken" + }, + { + "name": "x", + "url": "https://x.com/HuhToken" + }, + { + "name": "github", + "url": "https://github.com/HUH-Token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/huh/" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.huh.social/" + }, + { + "name": "docs", + "url": "https://docs.huh.social/documents-landing-page/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/huh" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc15e89f2149bCC0cBd5FB204C9e77fe878f1e9b2/logo.png b/blockchains/smartchain/assets/0xc15e89f2149bCC0cBd5FB204C9e77fe878f1e9b2/logo.png new file mode 100644 index 00000000..be7ae0f6 Binary files /dev/null and b/blockchains/smartchain/assets/0xc15e89f2149bCC0cBd5FB204C9e77fe878f1e9b2/logo.png differ diff --git a/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/info.json b/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/info.json new file mode 100644 index 00000000..3f4add0e --- /dev/null +++ b/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/info.json @@ -0,0 +1,36 @@ +{ + "name": "Lunar", + "type": "BEP20", + "symbol": "LNR", + "decimals": 18, + "website": "https://lunar.io/", + "description": "LNR is the community currency and utility token that powers the Lunar Ecosystem.", + "explorer": "https://bscscan.com/token/0xc1a59a17f87ba6651eb8e8f707db7672647c45bd", + "status": "active", + "id": "0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD", + "links": [ + { + "name": "x", + "url": "https://x.com/lnr" + }, + { + "name": "telegram", + "url": "https://t.me/lnrdefi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lunar-v2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/lunar" + }, + { + "name": "facebook", + "url": "https://facebook.com/lnrdefi" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/logo.png b/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/logo.png new file mode 100644 index 00000000..72ab3d22 Binary files /dev/null and b/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/logo.png differ diff --git a/blockchains/smartchain/assets/0xc1D99537392084Cc02D3F52386729b79d01035ce/info.json b/blockchains/smartchain/assets/0xc1D99537392084Cc02D3F52386729b79d01035ce/info.json new file mode 100644 index 00000000..8684b103 --- /dev/null +++ b/blockchains/smartchain/assets/0xc1D99537392084Cc02D3F52386729b79d01035ce/info.json @@ -0,0 +1,29 @@ +{ + "name": "StaysBASE", + "website": "https://staysbase.org", + "description": "The first rebase project pegged to crypto, stocks and gold markets, built on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xc1d99537392084cc02d3f52386729b79d01035ce", + "type": "BEP20", + "symbol": "SBS", + "decimals": 9, + "status": "active", + "id": "0xc1D99537392084Cc02D3F52386729b79d01035ce", + "links": [ + { + "name": "github", + "url": "https://github.com/staysbase/" + }, + { + "name": "x", + "url": "https://x.com/StaysBASE" + }, + { + "name": "telegram", + "url": "https://t.me/StaysBASE" + }, + { + "name": "whitepaper", + "url": "https://staysbase.org/media/lightpaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc1D99537392084Cc02D3F52386729b79d01035ce/logo.png b/blockchains/smartchain/assets/0xc1D99537392084Cc02D3F52386729b79d01035ce/logo.png new file mode 100644 index 00000000..fadfaa67 Binary files /dev/null and b/blockchains/smartchain/assets/0xc1D99537392084Cc02D3F52386729b79d01035ce/logo.png differ diff --git a/blockchains/smartchain/assets/0xc1F47175d96Fe7c4cD5370552e5954f384E3C791/info.json b/blockchains/smartchain/assets/0xc1F47175d96Fe7c4cD5370552e5954f384E3C791/info.json new file mode 100644 index 00000000..4895c576 --- /dev/null +++ b/blockchains/smartchain/assets/0xc1F47175d96Fe7c4cD5370552e5954f384E3C791/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Avalanche)", + "type": "BEP20", + "symbol": "USDCav", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://bscscan.com/token/0xc1F47175d96Fe7c4cD5370552e5954f384E3C791", + "status": "active", + "id": "0xc1F47175d96Fe7c4cD5370552e5954f384E3C791", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc1F47175d96Fe7c4cD5370552e5954f384E3C791/logo.png b/blockchains/smartchain/assets/0xc1F47175d96Fe7c4cD5370552e5954f384E3C791/logo.png new file mode 100644 index 00000000..f448cdfe Binary files /dev/null and b/blockchains/smartchain/assets/0xc1F47175d96Fe7c4cD5370552e5954f384E3C791/logo.png differ diff --git a/blockchains/smartchain/assets/0xc1e667Cf9315FB80674E5cf62ad150Ac90fE7112/info.json b/blockchains/smartchain/assets/0xc1e667Cf9315FB80674E5cf62ad150Ac90fE7112/info.json new file mode 100644 index 00000000..91fbedec --- /dev/null +++ b/blockchains/smartchain/assets/0xc1e667Cf9315FB80674E5cf62ad150Ac90fE7112/info.json @@ -0,0 +1,11 @@ +{ + "name": "TIKTOK COIN", + "website": "https://tiktokcoinbsc.com", + "description": "The Memes Token", + "explorer": "https://bscscan.com/token/0xc1e667Cf9315FB80674E5cf62ad150Ac90fE7112", + "symbol": "TIKTOK", + "type": "BEP20", + "decimals": 0, + "status": "active", + "id": "0xc1e667Cf9315FB80674E5cf62ad150Ac90fE7112" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc1e667Cf9315FB80674E5cf62ad150Ac90fE7112/logo.png b/blockchains/smartchain/assets/0xc1e667Cf9315FB80674E5cf62ad150Ac90fE7112/logo.png new file mode 100644 index 00000000..c0b8288f Binary files /dev/null and b/blockchains/smartchain/assets/0xc1e667Cf9315FB80674E5cf62ad150Ac90fE7112/logo.png differ diff --git a/blockchains/smartchain/assets/0xc2098a8938119A52B1F7661893c0153A6CB116d5/info.json b/blockchains/smartchain/assets/0xc2098a8938119A52B1F7661893c0153A6CB116d5/info.json new file mode 100644 index 00000000..3bf674e3 --- /dev/null +++ b/blockchains/smartchain/assets/0xc2098a8938119A52B1F7661893c0153A6CB116d5/info.json @@ -0,0 +1,25 @@ +{ + "name": "Rangers Protocol Gas(RPG)", + "website": " https://rangersprotocol.com/", + "description": "Rangers Protocol, the future virtual world blockchain infrastructure, is fully compatible with Ethereum, professionally supports NFT and complex applications, and integrates and expands cross-chain, NFT, EVM, and distributed network protocols. It has created an innovative Rangers Engine to support the development of NFT and complex applications and a Rangers Connector to interconnector with various public chains and support asset cross-chain.", + "explorer": "https://bscscan.com/token/0xc2098a8938119A52B1F7661893c0153A6CB116d5", + "type": "BEP20", + "symbol": "RPG", + "decimals": 18, + "status": "active", + "id": "0xc2098a8938119A52B1F7661893c0153A6CB116d5", + "links": [ + { + "name": "x", + "url": "https://x.com/rangersprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/RangersProtocol" + }, + { + "name": "whitepaper", + "url": "https://www.rangersprotocol.com/pdf/RangersProtocolWhitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc2098a8938119A52B1F7661893c0153A6CB116d5/logo.png b/blockchains/smartchain/assets/0xc2098a8938119A52B1F7661893c0153A6CB116d5/logo.png new file mode 100644 index 00000000..159a8bfa Binary files /dev/null and b/blockchains/smartchain/assets/0xc2098a8938119A52B1F7661893c0153A6CB116d5/logo.png differ diff --git a/blockchains/smartchain/assets/0xc22c01470977150a76a5a85dd3D167de495038fA/info.json b/blockchains/smartchain/assets/0xc22c01470977150a76a5a85dd3D167de495038fA/info.json new file mode 100644 index 00000000..57c95641 --- /dev/null +++ b/blockchains/smartchain/assets/0xc22c01470977150a76a5a85dd3D167de495038fA/info.json @@ -0,0 +1,24 @@ +{ + "name": "Space Dragon", + "website": "https://spacedragon.io", + "description": "Space Dragon is a deflationary token created for the community. The focus of the project is to create a universe of dApps to support the BSC ecosystem.", + "explorer": "https://bscscan.com/token/0xc22c01470977150a76a5a85dd3D167de495038fA", + "type": "BEP20", + "symbol": "DRAGON", + "decimals": 9, + "status": "active", + "id": "0xc22c01470977150a76a5a85dd3D167de495038fA", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/spacedragon_io" + }, + { + "name": "telegram", + "url": "https://t.me/spacedragon_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc22c01470977150a76a5a85dd3D167de495038fA/logo.png b/blockchains/smartchain/assets/0xc22c01470977150a76a5a85dd3D167de495038fA/logo.png new file mode 100644 index 00000000..fa753870 Binary files /dev/null and b/blockchains/smartchain/assets/0xc22c01470977150a76a5a85dd3D167de495038fA/logo.png differ diff --git a/blockchains/smartchain/assets/0xc22e8114818A918260662375450e19aC73D32852/info.json b/blockchains/smartchain/assets/0xc22e8114818A918260662375450e19aC73D32852/info.json new file mode 100644 index 00000000..372ac118 --- /dev/null +++ b/blockchains/smartchain/assets/0xc22e8114818A918260662375450e19aC73D32852/info.json @@ -0,0 +1,29 @@ +{ + "name": "KittyCake", + "type": "BEP20", + "symbol": "KCAKE", + "decimals": 18, + "website": "https://kittycake.app", + "description": "KittyCake is an evolution of a yield-generating contract on the Binance Smart Chain (BSC): you get rewarded in CAKE instead of tokens.", + "explorer": "https://bscscan.com/token/0xc22e8114818A918260662375450e19aC73D32852", + "status": "active", + "id": "0xc22e8114818A918260662375450e19aC73D32852", + "links": [ + { + "name": "telegram", + "url": "https://t.me/kittycakebsc" + }, + { + "name": "x", + "url": "https://x.com/kittycaketoken" + }, + { + "name": "whitepaper", + "url": "https://dessertswap.finance/audits/KittyCake%20BEP-20%20Audit%209445619.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kittycake" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc22e8114818A918260662375450e19aC73D32852/logo.png b/blockchains/smartchain/assets/0xc22e8114818A918260662375450e19aC73D32852/logo.png new file mode 100644 index 00000000..d0470bfc Binary files /dev/null and b/blockchains/smartchain/assets/0xc22e8114818A918260662375450e19aC73D32852/logo.png differ diff --git a/blockchains/smartchain/assets/0xc242b6A3983e90D279ed68aC70f47CFC7e5e1e1C/info.json b/blockchains/smartchain/assets/0xc242b6A3983e90D279ed68aC70f47CFC7e5e1e1C/info.json new file mode 100644 index 00000000..8c688d36 --- /dev/null +++ b/blockchains/smartchain/assets/0xc242b6A3983e90D279ed68aC70f47CFC7e5e1e1C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Potluck Protocol", + "type": "BEP20", + "symbol": "PTLK", + "decimals": 18, + "description": "Native token of defi site Potluck Protocol", + "website": "https://potluckprotocol.com", + "explorer": "https://bscscan.com/token/0xc242b6a3983e90d279ed68ac70f47cfc7e5e1e1c", + "status": "active", + "id": "0xc242b6A3983e90D279ed68aC70f47CFC7e5e1e1C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc242b6A3983e90D279ed68aC70f47CFC7e5e1e1C/logo.png b/blockchains/smartchain/assets/0xc242b6A3983e90D279ed68aC70f47CFC7e5e1e1C/logo.png new file mode 100644 index 00000000..82b92eae Binary files /dev/null and b/blockchains/smartchain/assets/0xc242b6A3983e90D279ed68aC70f47CFC7e5e1e1C/logo.png differ diff --git a/blockchains/smartchain/assets/0xc2591D74cC6A0810847ADD242319d4b43c8e5f09/info.json b/blockchains/smartchain/assets/0xc2591D74cC6A0810847ADD242319d4b43c8e5f09/info.json new file mode 100644 index 00000000..328b1e5e --- /dev/null +++ b/blockchains/smartchain/assets/0xc2591D74cC6A0810847ADD242319d4b43c8e5f09/info.json @@ -0,0 +1,11 @@ +{ + "name": "FawkesMask", + "website": "https://fawkesmask.com/", + "description": "Fawkes Mask works on an autonomous frictionless yield farming and liquidity generation protocol", + "explorer": "https://bscscan.com/token/0xc2591d74cc6a0810847add242319d4b43c8e5f09", + "type": "BEP20", + "symbol": "FMK", + "decimals": 9, + "status": "active", + "id": "0xc2591D74cC6A0810847ADD242319d4b43c8e5f09" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc2591D74cC6A0810847ADD242319d4b43c8e5f09/logo.png b/blockchains/smartchain/assets/0xc2591D74cC6A0810847ADD242319d4b43c8e5f09/logo.png new file mode 100644 index 00000000..3b931c42 Binary files /dev/null and b/blockchains/smartchain/assets/0xc2591D74cC6A0810847ADD242319d4b43c8e5f09/logo.png differ diff --git a/blockchains/smartchain/assets/0xc25D94fc3f8D7bD1d88f89802fe075338F71dEC7/info.json b/blockchains/smartchain/assets/0xc25D94fc3f8D7bD1d88f89802fe075338F71dEC7/info.json new file mode 100644 index 00000000..2bc0ac0f --- /dev/null +++ b/blockchains/smartchain/assets/0xc25D94fc3f8D7bD1d88f89802fe075338F71dEC7/info.json @@ -0,0 +1,15 @@ +{ + "name": "PhoenixDefi.Finance Token", + "website": "https://phoenixdefi.Finance", + "description": "PNIX token is a next-generation reflective deflationary protocol built on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xc25d94fc3f8d7bd1d88f89802fe075338f71dec7", + "research": "https://phoenixdefi.Finance", + "type": "BEP20", + "symbol": "PNIX", + "decimals": 18, + "status": "active", + "id": "0xc25D94fc3f8D7bD1d88f89802fe075338F71dEC7", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc25D94fc3f8D7bD1d88f89802fe075338F71dEC7/logo.png b/blockchains/smartchain/assets/0xc25D94fc3f8D7bD1d88f89802fe075338F71dEC7/logo.png new file mode 100644 index 00000000..1d670a95 Binary files /dev/null and b/blockchains/smartchain/assets/0xc25D94fc3f8D7bD1d88f89802fe075338F71dEC7/logo.png differ diff --git a/blockchains/smartchain/assets/0xc29000A4b1eCD326b6DafAE17bDA636475FeA1e7/info.json b/blockchains/smartchain/assets/0xc29000A4b1eCD326b6DafAE17bDA636475FeA1e7/info.json new file mode 100644 index 00000000..658a9328 --- /dev/null +++ b/blockchains/smartchain/assets/0xc29000A4b1eCD326b6DafAE17bDA636475FeA1e7/info.json @@ -0,0 +1,21 @@ +{ + "name": "PancakePoll", + "type": "BEP20", + "symbol": "PPOLL", + "decimals": 9, + "website": "https://pancakepoll.com/", + "description": "PancakePoll is a voting platform that utilizes the security and immutability of the Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xc29000A4b1eCD326b6DafAE17bDA636475FeA1e7", + "status": "active", + "id": "0xc29000A4b1eCD326b6DafAE17bDA636475FeA1e7", + "links": [ + { + "name": "x", + "url": "https://x.com/PancakePoll" + }, + { + "name": "telegram", + "url": "https://t.me/pancakepollbsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc29000A4b1eCD326b6DafAE17bDA636475FeA1e7/logo.png b/blockchains/smartchain/assets/0xc29000A4b1eCD326b6DafAE17bDA636475FeA1e7/logo.png new file mode 100644 index 00000000..8b37b710 Binary files /dev/null and b/blockchains/smartchain/assets/0xc29000A4b1eCD326b6DafAE17bDA636475FeA1e7/logo.png differ diff --git a/blockchains/smartchain/assets/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16/info.json b/blockchains/smartchain/assets/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16/info.json new file mode 100644 index 00000000..8303fa49 --- /dev/null +++ b/blockchains/smartchain/assets/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16/info.json @@ -0,0 +1,69 @@ +{ + "name": "Staked BNB", + "type": "BEP20", + "symbol": "stkBNB", + "decimals": 18, + "website": "https://pstake.finance/", + "description": "stkBNB is one of the stkASSETs from pSTAKE. pSTAKE is a liquid staking protocol that unlocks liquidity for your staked assets. With pSTAKE, you can securely stake your Proof-of-Stake (PoS) assets, participate in protocol improvements and security to earn staking rewards, and receive staked underlying representative tokens (stkASSETs) which can be used to explore additional yield opportunities across DeFi.", + "explorer": "https://bscscan.com/token/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16", + "status": "active", + "id": "0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16", + "links": [ + { + "name": "x", + "url": "https://x.com/pStakeFinance" + }, + { + "name": "github", + "url": "https://github.com/persistenceOne" + }, + { + "name": "telegram", + "url": "https://t.me/pstakefinance" + }, + { + "name": "docs", + "url": "https://docs.pstake.finance/" + }, + { + "name": "blog", + "url": "https://blog.pstake.finance/" + }, + { + "name": "forum", + "url": "https://forum.pstake.finance/" + }, + { + "name": "discord", + "url": "https://discord.com/PKHJ3Kn2M2" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/PersistenceOne/" + }, + { + "name": "medium", + "url": "https://pstake.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC5wqI1ZRdkCjWWVOCQdhxLQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stkbnb/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/pstake-staked-bnb" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16#code" + } + ], + "tags": [ + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16/logo.png b/blockchains/smartchain/assets/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16/logo.png new file mode 100644 index 00000000..f12009e2 Binary files /dev/null and b/blockchains/smartchain/assets/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16/logo.png differ diff --git a/blockchains/smartchain/assets/0xc2a5FdFEa2A04955DF244eb52fFd986fA18cFcc6/info.json b/blockchains/smartchain/assets/0xc2a5FdFEa2A04955DF244eb52fFd986fA18cFcc6/info.json new file mode 100644 index 00000000..b936e2d8 --- /dev/null +++ b/blockchains/smartchain/assets/0xc2a5FdFEa2A04955DF244eb52fFd986fA18cFcc6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Panda Chain", + "type": "BEP20", + "symbol": "Panda", + "decimals": 0, + "website": "http://pandachain.xyz/", + "description": "Panda Chain Finance smart contract generates of the stake amount daily and guarantees a final profit.", + "explorer": "https://bscscan.com/token/0xc2a5fdfea2a04955df244eb52ffd986fa18cfcc6", + "status": "active", + "id": "0xc2a5FdFEa2A04955DF244eb52fFd986fA18cFcc6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc2a5FdFEa2A04955DF244eb52fFd986fA18cFcc6/logo.png b/blockchains/smartchain/assets/0xc2a5FdFEa2A04955DF244eb52fFd986fA18cFcc6/logo.png new file mode 100644 index 00000000..fd967466 Binary files /dev/null and b/blockchains/smartchain/assets/0xc2a5FdFEa2A04955DF244eb52fFd986fA18cFcc6/logo.png differ diff --git a/blockchains/smartchain/assets/0xc2c28b58db223DA89b567A0A98197Fc17C115148/info.json b/blockchains/smartchain/assets/0xc2c28b58db223DA89b567A0A98197Fc17C115148/info.json new file mode 100644 index 00000000..d437c4d5 --- /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 00000000..38b5b16a 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 00000000..9fc91952 --- /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 00000000..c8b7fdf9 Binary files /dev/null and b/blockchains/smartchain/assets/0xc2dD31B1B3a2f515cE0D48De712c6744C3475170/logo.png differ diff --git a/blockchains/smartchain/assets/0xc2e1acef50aE55661855E8dcB72adB182A3cC259/info.json b/blockchains/smartchain/assets/0xc2e1acef50aE55661855E8dcB72adB182A3cC259/info.json new file mode 100644 index 00000000..d1a44c86 --- /dev/null +++ b/blockchains/smartchain/assets/0xc2e1acef50aE55661855E8dcB72adB182A3cC259/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bolt Dollar Share", + "website": "https://boltdollar.finance/", + "description": "Bolt Dollar - previously Bat True Dollar - is a community owned and driven algorithmic stable coin project established on BSC", + "explorer": "https://bscscan.com/token/0xc2e1acef50aE55661855E8dcB72adB182A3cC259", + "type": "BEP20", + "symbol": "BTS", + "decimals": 18, + "status": "active", + "id": "0xc2e1acef50aE55661855E8dcB72adB182A3cC259" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc2e1acef50aE55661855E8dcB72adB182A3cC259/logo.png b/blockchains/smartchain/assets/0xc2e1acef50aE55661855E8dcB72adB182A3cC259/logo.png new file mode 100644 index 00000000..328e11f3 Binary files /dev/null and b/blockchains/smartchain/assets/0xc2e1acef50aE55661855E8dcB72adB182A3cC259/logo.png differ diff --git a/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/info.json b/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/info.json new file mode 100644 index 00000000..965b2e14 --- /dev/null +++ b/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/info.json @@ -0,0 +1,28 @@ +{ + "name": "ADD FINANCE", + "type": "BEP20", + "symbol": "ADD", + "decimals": 18, + "website": "https://add.finance/", + "description": "Add finance is emerging tech platform which scale the defi with AI (Artificial Intelligence ) to make more scalable and reliable trading bots and DApps.", + "explorer": "https://bscscan.com/token/0xc30C95205C7BC70D81da8e852255Cc89B90480f7", + "status": "active", + "id": "0xc30C95205C7BC70D81da8e852255Cc89B90480f7", + "links": [ + { + "name": "x", + "url": "https://x.com/adddotfinance" + }, + { + "name": "telegram", + "url": "https://t.me/adddotfinance" + }, + { + "name": "whitepaper", + "url": "https://add.finance/static/assets/Add%20Finance%20-%20Whitepaper%20Final.pdf" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/logo.png b/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/logo.png new file mode 100644 index 00000000..376a8322 Binary files /dev/null and b/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/logo.png differ diff --git a/blockchains/smartchain/assets/0xc3236733841893DdbD8Eac9F647eEC29DA63F400/info.json b/blockchains/smartchain/assets/0xc3236733841893DdbD8Eac9F647eEC29DA63F400/info.json new file mode 100644 index 00000000..487a23be --- /dev/null +++ b/blockchains/smartchain/assets/0xc3236733841893DdbD8Eac9F647eEC29DA63F400/info.json @@ -0,0 +1,11 @@ +{ + "name": "CarbonDEFI Finance CARBO", + "type": "BEP20", + "symbol": "CARBO", + "decimals": 18, + "website": "https://carbondefi.finance/", + "description": "A project made for the community, 97% owned by the community and with PancakeSwap locked liquidity and RENOUNCED OWNERSHIP. We aim to reduce the pollution by donating to organizations involved in reducing the CARBON footprint. The organizations will be voted by the community.", + "explorer": "https://bscscan.com/token/0xc3236733841893DdbD8Eac9F647eEC29DA63F400", + "status": "active", + "id": "0xc3236733841893DdbD8Eac9F647eEC29DA63F400" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc3236733841893DdbD8Eac9F647eEC29DA63F400/logo.png b/blockchains/smartchain/assets/0xc3236733841893DdbD8Eac9F647eEC29DA63F400/logo.png new file mode 100644 index 00000000..547877ef Binary files /dev/null and b/blockchains/smartchain/assets/0xc3236733841893DdbD8Eac9F647eEC29DA63F400/logo.png differ diff --git a/blockchains/smartchain/assets/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874/info.json b/blockchains/smartchain/assets/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874/info.json new file mode 100644 index 00000000..c725675a --- /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 00000000..985650b0 Binary files /dev/null and b/blockchains/smartchain/assets/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874/logo.png differ diff --git a/blockchains/smartchain/assets/0xc3415ef810eC5219f38b2849Bc579591a564E24C/info.json b/blockchains/smartchain/assets/0xc3415ef810eC5219f38b2849Bc579591a564E24C/info.json new file mode 100644 index 00000000..037c8487 --- /dev/null +++ b/blockchains/smartchain/assets/0xc3415ef810eC5219f38b2849Bc579591a564E24C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pako", + "type": "BEP20", + "symbol": "Pako", + "decimals": 6, + "website": "https://pakotoken.com/", + "description": "Pako is a revolutionary project in a decentralized community, building the first-ever storytelling meme coin, which differentiates itself from other meme coins. Pako shall be the first token to be listed and used as a native token for our future exchange called PakoSwap, also allowing everyone to easily buy nft's on pakotoken.com. Last but not least, Pako will be supporting various charities like Binance Charity, to help with world hunger and WWF to help pandas with their environment.", + "explorer": "https://bscscan.com/token/0xc3415ef810ec5219f38b2849bc579591a564e24c", + "status": "active", + "id": "0xc3415ef810eC5219f38b2849Bc579591a564E24C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc3415ef810eC5219f38b2849Bc579591a564E24C/logo.png b/blockchains/smartchain/assets/0xc3415ef810eC5219f38b2849Bc579591a564E24C/logo.png new file mode 100644 index 00000000..cd95dda7 Binary files /dev/null and b/blockchains/smartchain/assets/0xc3415ef810eC5219f38b2849Bc579591a564E24C/logo.png differ diff --git a/blockchains/smartchain/assets/0xc3583C8328eCB4DC8751C7e4fe7bCC18E558A4b6/info.json b/blockchains/smartchain/assets/0xc3583C8328eCB4DC8751C7e4fe7bCC18E558A4b6/info.json new file mode 100644 index 00000000..b0536c72 --- /dev/null +++ b/blockchains/smartchain/assets/0xc3583C8328eCB4DC8751C7e4fe7bCC18E558A4b6/info.json @@ -0,0 +1,41 @@ +{ + "name": "Vikings Inu", + "type": "BEP20", + "symbol": "VIKINGS", + "decimals": 9, + "website": "https://vikingsinu.org", + "description": "Vikings Doge Coin for Global Communities. 4% redistribution, curated aggregation platform & Vikings Treasure Hunt Game.", + "explorer": "https://bscscan.com/token/0xc3583C8328eCB4DC8751C7e4fe7bCC18E558A4b6", + "status": "active", + "id": "0xc3583C8328eCB4DC8751C7e4fe7bCC18E558A4b6", + "links": [ + { + "name": "x", + "url": "https://x.com/vikingsinu" + }, + { + "name": "github", + "url": "https://github.com/vikingsinu" + }, + { + "name": "telegram", + "url": "https://t.me/vikings_inu" + }, + { + "name": "whitepaper", + "url": "https://vikingsinu.org/assets/Vikings_Inu_Whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vikings-inu/" + }, + { + "name": "medium", + "url": "https://medium.com/@VikingsInu" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xc3583C8328eCB4DC8751C7e4fe7bCC18E558A4b6#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc3583C8328eCB4DC8751C7e4fe7bCC18E558A4b6/logo.png b/blockchains/smartchain/assets/0xc3583C8328eCB4DC8751C7e4fe7bCC18E558A4b6/logo.png new file mode 100644 index 00000000..73a05ee0 Binary files /dev/null and b/blockchains/smartchain/assets/0xc3583C8328eCB4DC8751C7e4fe7bCC18E558A4b6/logo.png differ diff --git a/blockchains/smartchain/assets/0xc35f46aAEb8aD17bCbAa78c03540FEffa44790Cb/info.json b/blockchains/smartchain/assets/0xc35f46aAEb8aD17bCbAa78c03540FEffa44790Cb/info.json new file mode 100644 index 00000000..ac37c89c --- /dev/null +++ b/blockchains/smartchain/assets/0xc35f46aAEb8aD17bCbAa78c03540FEffa44790Cb/info.json @@ -0,0 +1,33 @@ +{ + "name": "Lemur Finance", + "website": "https://lemur.finance/", + "description": "Lemur is an automated yield farming token and 100% decentralized led by the community.", + "explorer": "https://bscscan.com/token/0xc35f46aAEb8aD17bCbAa78c03540FEffa44790Cb", + "type": "BEP20", + "symbol": "LEM", + "decimals": 9, + "status": "active", + "id": "0xc35f46aAEb8aD17bCbAa78c03540FEffa44790Cb", + "links": [ + { + "name": "x", + "url": "https://x.com/FinanceLemur" + }, + { + "name": "telegram", + "url": "https://t.me/lemurfinance" + }, + { + "name": "facebook", + "url": "https://facebook.com/Lemur.Finance/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/LemurFinance/" + }, + { + "name": "medium", + "url": "https://lemurfinance.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc35f46aAEb8aD17bCbAa78c03540FEffa44790Cb/logo.png b/blockchains/smartchain/assets/0xc35f46aAEb8aD17bCbAa78c03540FEffa44790Cb/logo.png new file mode 100644 index 00000000..78691163 Binary files /dev/null and b/blockchains/smartchain/assets/0xc35f46aAEb8aD17bCbAa78c03540FEffa44790Cb/logo.png differ diff --git a/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/info.json b/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/info.json new file mode 100644 index 00000000..cad1bc43 --- /dev/null +++ b/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/info.json @@ -0,0 +1,44 @@ +{ + "name": "VLaunch", + "type": "BEP20", + "symbol": "VPAD", + "decimals": 18, + "website": "https://www.vlaunch.com", + "description": "First Fully Influencer-Backed Multi-Chain Launchpad", + "explorer": "https://bscscan.com/token/0xc3601108947A46B219C09f24c668a52756C8d977", + "status": "abandoned", + "id": "0xc3601108947A46B219C09f24c668a52756C8d977", + "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" + }, + { + "name": "source_code", + "url": "https://github.com/vlaunchcom" + }, + { + "name": "whitepaper", + "url": "https://www.vlaunch.com/whitepaper" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc3Bd3e021801A34104fcb5E29DE6689a9b204513/info.json b/blockchains/smartchain/assets/0xc3Bd3e021801A34104fcb5E29DE6689a9b204513/info.json new file mode 100644 index 00000000..f037cdad --- /dev/null +++ b/blockchains/smartchain/assets/0xc3Bd3e021801A34104fcb5E29DE6689a9b204513/info.json @@ -0,0 +1,29 @@ +{ + "name": "LevelUp Gaming", + "symbol": "LVLUP", + "type": "BEP20", + "decimals": 9, + "description": "LevelUP your one stop P2E Blockchain Gaming Platform built for both players and game developers.", + "website": "https://www.level-up.game", + "explorer": "https://bscscan.com/token/0xc3Bd3e021801A34104fcb5E29DE6689a9b204513", + "status": "active", + "id": "0xc3Bd3e021801A34104fcb5E29DE6689a9b204513", + "links": [ + { + "name": "telegram", + "url": "https://t.me/levelup_games" + }, + { + "name": "x", + "url": "https://x.com/LevelUpBSC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/levelup-gaming/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/levelup-gaming" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc3Bd3e021801A34104fcb5E29DE6689a9b204513/logo.png b/blockchains/smartchain/assets/0xc3Bd3e021801A34104fcb5E29DE6689a9b204513/logo.png new file mode 100644 index 00000000..e28ca9f0 Binary files /dev/null and b/blockchains/smartchain/assets/0xc3Bd3e021801A34104fcb5E29DE6689a9b204513/logo.png differ diff --git a/blockchains/smartchain/assets/0xc3C6D3dbab8E7C4653Cf6ef91d907eddB065f3B2/info.json b/blockchains/smartchain/assets/0xc3C6D3dbab8E7C4653Cf6ef91d907eddB065f3B2/info.json new file mode 100644 index 00000000..5b3ac51f --- /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 00000000..43254694 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 new file mode 100644 index 00000000..fcd50980 --- /dev/null +++ b/blockchains/smartchain/assets/0xc3D912863152E1Afc935AD0D42d469e7C6B05B77/info.json @@ -0,0 +1,25 @@ +{ + "name": "Lucky", + "website": "https://www.luckylion.io", + "description": "LUCKY is a token for play a game in Lucky Lion Platform.", + "explorer": "https://bscscan.com/token/0xc3D912863152E1Afc935AD0D42d469e7C6B05B77", + "type": "BEP20", + "symbol": "LUCKY", + "decimals": 18, + "status": "active", + "id": "0xc3D912863152E1Afc935AD0D42d469e7C6B05B77", + "links": [ + { + "name": "github", + "url": "https://github.com/LuckyLionIO" + }, + { + "name": "x", + "url": "https://x.com/LuckyLionGameFi" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/luckylionofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc3D912863152E1Afc935AD0D42d469e7C6B05B77/logo.png b/blockchains/smartchain/assets/0xc3D912863152E1Afc935AD0D42d469e7C6B05B77/logo.png new file mode 100644 index 00000000..1957e304 Binary files /dev/null and b/blockchains/smartchain/assets/0xc3D912863152E1Afc935AD0D42d469e7C6B05B77/logo.png differ diff --git a/blockchains/smartchain/assets/0xc3EAE9b061Aa0e1B9BD3436080Dc57D2d63FEdc1/info.json b/blockchains/smartchain/assets/0xc3EAE9b061Aa0e1B9BD3436080Dc57D2d63FEdc1/info.json new file mode 100644 index 00000000..73487acb --- /dev/null +++ b/blockchains/smartchain/assets/0xc3EAE9b061Aa0e1B9BD3436080Dc57D2d63FEdc1/info.json @@ -0,0 +1,37 @@ +{ + "name": "BEAR", + "type": "BEP20", + "symbol": "BEAR", + "decimals": 18, + "website": "https://bear.honeyfarm.finance", + "description": "A Native Token of HoneyFarm Finance Layer 2, HoneyBear", + "explorer": "https://bscscan.com/token/0xc3EAE9b061Aa0e1B9BD3436080Dc57D2d63FEdc1", + "status": "active", + "id": "0xc3EAE9b061Aa0e1B9BD3436080Dc57D2d63FEdc1", + "links": [ + { + "name": "x", + "url": "https://x.com/HoneyFarmFi" + }, + { + "name": "github", + "url": "https://github.com/HoneyFarmFi/HoneyFarmContracts" + }, + { + "name": "telegram", + "url": "https://t.me/HoneyFarmChat" + }, + { + "name": "telegram_news", + "url": "https://t.me/HoneyFarmAnn" + }, + { + "name": "blog", + "url": "https://medium.com/@honeyfarmchef" + }, + { + "name": "docs", + "url": "https://docs.honeyfarm.finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc3EAE9b061Aa0e1B9BD3436080Dc57D2d63FEdc1/logo.png b/blockchains/smartchain/assets/0xc3EAE9b061Aa0e1B9BD3436080Dc57D2d63FEdc1/logo.png new file mode 100644 index 00000000..fc2dff76 Binary files /dev/null and b/blockchains/smartchain/assets/0xc3EAE9b061Aa0e1B9BD3436080Dc57D2d63FEdc1/logo.png differ diff --git a/blockchains/smartchain/assets/0xc41689A727469C1573009757200371edf36D540e/info.json b/blockchains/smartchain/assets/0xc41689A727469C1573009757200371edf36D540e/info.json new file mode 100644 index 00000000..45cfe414 --- /dev/null +++ b/blockchains/smartchain/assets/0xc41689A727469C1573009757200371edf36D540e/info.json @@ -0,0 +1,29 @@ +{ + "name": "Dynamix", + "type": "BEP20", + "symbol": "DYNA", + "decimals": 9, + "website": "https://dynamix.finance/", + "description": "Dynamix, The first token created with an evolving algorithm based on events. Dynamic rewards increased from 2% to 8% according to the number of holders, sell fees decreases from 17% to 5% according to hold time, and also buyback and burn system.", + "explorer": "https://bscscan.com/token/0xc41689A727469C1573009757200371edf36D540e", + "status": "active", + "id": "0xc41689A727469C1573009757200371edf36D540e", + "links": [ + { + "name": "github", + "url": "https://github.com/dynamixtoken" + }, + { + "name": "x", + "url": "https://x.com/Dynamixarmy" + }, + { + "name": "telegram", + "url": "https://t.me/DynamixToken" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Dynamixarmy/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc41689A727469C1573009757200371edf36D540e/logo.png b/blockchains/smartchain/assets/0xc41689A727469C1573009757200371edf36D540e/logo.png new file mode 100644 index 00000000..db743f76 Binary files /dev/null and b/blockchains/smartchain/assets/0xc41689A727469C1573009757200371edf36D540e/logo.png differ diff --git a/blockchains/smartchain/assets/0xc435b3C41AE56d9Bc57b8525F4d522C978F168e8/info.json b/blockchains/smartchain/assets/0xc435b3C41AE56d9Bc57b8525F4d522C978F168e8/info.json new file mode 100644 index 00000000..535b4ce1 --- /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 00000000..fb09d9af 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 new file mode 100644 index 00000000..484d60ce --- /dev/null +++ b/blockchains/smartchain/assets/0xc4736F2611A62d545DC2D0d8f0766283617e6FcB/info.json @@ -0,0 +1,24 @@ +{ + "name": "TopGoal", + "type": "BEP20", + "symbol": "Goal", + "decimals": 18, + "website": "https://topgoal.io/", + "description": "TOPGOAL is a football metaverse with officially licensed digital collectibles, GameFi & SocialFi, with vision of bridging sports to web3.", + "explorer": "https://bscscan.com/token/0xc4736f2611a62d545dc2d0d8f0766283617e6fcb", + "status": "active", + "id": "0xc4736F2611A62d545DC2D0d8f0766283617e6FcB", + "links": [ + { + "name": "medium", + "url": "https://medium.com/@topgoal_nft" + }, + { + "name": "x", + "url": "https://x.com/TopGoal_NFT" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc4736F2611A62d545DC2D0d8f0766283617e6FcB/logo.png b/blockchains/smartchain/assets/0xc4736F2611A62d545DC2D0d8f0766283617e6FcB/logo.png new file mode 100644 index 00000000..1e4b4703 Binary files /dev/null and b/blockchains/smartchain/assets/0xc4736F2611A62d545DC2D0d8f0766283617e6FcB/logo.png differ diff --git a/blockchains/smartchain/assets/0xc47f53c425d08f8457471538Ae641655814bEAe8/info.json b/blockchains/smartchain/assets/0xc47f53c425d08f8457471538Ae641655814bEAe8/info.json new file mode 100644 index 00000000..1d845e3b --- /dev/null +++ b/blockchains/smartchain/assets/0xc47f53c425d08f8457471538Ae641655814bEAe8/info.json @@ -0,0 +1,21 @@ +{ + "name": "SurfMoon Token", + "type": "BEP20", + "symbol": "SURFMOON", + "decimals": 9, + "website": "https://surfmoon.io", + "description": "SurfMoon is the first travel-based BNB redistribution token focusing on rewarding it's holders.", + "explorer": "https://bscscan.com/token/0xc47f53c425d08f8457471538Ae641655814bEAe8", + "status": "active", + "id": "0xc47f53c425d08f8457471538Ae641655814bEAe8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/surfmoon/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/surfmoon" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc47f53c425d08f8457471538Ae641655814bEAe8/logo.png b/blockchains/smartchain/assets/0xc47f53c425d08f8457471538Ae641655814bEAe8/logo.png new file mode 100644 index 00000000..30e9de73 Binary files /dev/null and b/blockchains/smartchain/assets/0xc47f53c425d08f8457471538Ae641655814bEAe8/logo.png differ diff --git a/blockchains/smartchain/assets/0xc4957a864245AA4373Be1f33ae24E93876b7Dfe1/info.json b/blockchains/smartchain/assets/0xc4957a864245AA4373Be1f33ae24E93876b7Dfe1/info.json new file mode 100644 index 00000000..6eb75830 --- /dev/null +++ b/blockchains/smartchain/assets/0xc4957a864245AA4373Be1f33ae24E93876b7Dfe1/info.json @@ -0,0 +1,11 @@ +{ + "name": "TurtleDex", + "type": "BEP20", + "symbol": "TTDX", + "decimals": 8, + "website": "https://turtledex.io/", + "description": "Turtledex is the first decentralized storage solution on Binance Smart Chain. Our goal is to provide a network of node operators and share their storage and bandwidth to create completely secured and fast decentralized storage system.", + "explorer": "https://bscscan.com/token/0xc4957a864245AA4373Be1f33ae24E93876b7Dfe1", + "status": "active", + "id": "0xc4957a864245AA4373Be1f33ae24E93876b7Dfe1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc4957a864245AA4373Be1f33ae24E93876b7Dfe1/logo.png b/blockchains/smartchain/assets/0xc4957a864245AA4373Be1f33ae24E93876b7Dfe1/logo.png new file mode 100644 index 00000000..1c2bcbb5 Binary files /dev/null and b/blockchains/smartchain/assets/0xc4957a864245AA4373Be1f33ae24E93876b7Dfe1/logo.png differ diff --git a/blockchains/smartchain/assets/0xc49DDe62B4A0810074721fAcA54Aab52369f486a/info.json b/blockchains/smartchain/assets/0xc49DDe62B4A0810074721fAcA54Aab52369f486a/info.json new file mode 100644 index 00000000..7734d327 --- /dev/null +++ b/blockchains/smartchain/assets/0xc49DDe62B4A0810074721fAcA54Aab52369f486a/info.json @@ -0,0 +1,41 @@ +{ + "name": "Polker", + "website": "https://www.polker.io", + "description": "Polker is the first blockchain online poker game that uses Unreal Engine 4 for immersive and powerful gameplay while utilizing a provably fair system for truly transparent gameplay.", + "explorer": "https://bscscan.com/token/0xc49DDe62B4A0810074721fAcA54Aab52369f486a", + "type": "BEP20", + "symbol": "PKR", + "decimals": 18, + "status": "active", + "id": "0xc49DDe62B4A0810074721fAcA54Aab52369f486a", + "links": [ + { + "name": "github", + "url": "https://github.com/polker-io" + }, + { + "name": "x", + "url": "https://x.com/POLKER_PKR" + }, + { + "name": "facebook", + "url": "https://facebook.com/PolkerPKR" + }, + { + "name": "medium", + "url": "https://polker-pkr.medium.com" + }, + { + "name": "telegram", + "url": "https://t.me/polkercrew" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/polker" + }, + { + "name": "whitepaper", + "url": "https://demo.polker.io/wp-content/uploads/2021/06/Polker-Whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc49DDe62B4A0810074721fAcA54Aab52369f486a/logo.png b/blockchains/smartchain/assets/0xc49DDe62B4A0810074721fAcA54Aab52369f486a/logo.png new file mode 100644 index 00000000..e8b46c1e Binary files /dev/null and b/blockchains/smartchain/assets/0xc49DDe62B4A0810074721fAcA54Aab52369f486a/logo.png differ diff --git a/blockchains/smartchain/assets/0xc4a54699d24C5C130cf866974181E41e22bb3b07/info.json b/blockchains/smartchain/assets/0xc4a54699d24C5C130cf866974181E41e22bb3b07/info.json new file mode 100644 index 00000000..f79077aa --- /dev/null +++ b/blockchains/smartchain/assets/0xc4a54699d24C5C130cf866974181E41e22bb3b07/info.json @@ -0,0 +1,29 @@ +{ + "name": "Floki Elon", + "type": "BEP20", + "symbol": "FlokiElon", + "decimals": 9, + "website": "https://www.flokielon.net/", + "description": "World's Best Community Meme Token", + "explorer": "https://bscscan.com/token/0xc4a54699d24C5C130cf866974181E41e22bb3b07", + "status": "active", + "id": "0xc4a54699d24C5C130cf866974181E41e22bb3b07", + "links": [ + { + "name": "x", + "url": "https://x.com/floki_real" + }, + { + "name": "github", + "url": "https://github.com/flokielonreal" + }, + { + "name": "telegram", + "url": "https://t.me/Floki_Real" + }, + { + "name": "telegram_news", + "url": "https://t.me/FlokiReal" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc4a54699d24C5C130cf866974181E41e22bb3b07/logo.png b/blockchains/smartchain/assets/0xc4a54699d24C5C130cf866974181E41e22bb3b07/logo.png new file mode 100644 index 00000000..bbc6963b Binary files /dev/null and b/blockchains/smartchain/assets/0xc4a54699d24C5C130cf866974181E41e22bb3b07/logo.png differ diff --git a/blockchains/smartchain/assets/0xc5137E8e017799e71A65e0cFe3F340d719AF17D3/info.json b/blockchains/smartchain/assets/0xc5137E8e017799e71A65e0cFe3F340d719AF17D3/info.json new file mode 100644 index 00000000..50b0a502 --- /dev/null +++ b/blockchains/smartchain/assets/0xc5137E8e017799e71A65e0cFe3F340d719AF17D3/info.json @@ -0,0 +1,12 @@ +{ + "name": "ETHb", + "website": "https://ethbridge.justliquidity.org/", + "description": "Ethereum on the Binance Smart Chain wrapped via the JustLiquidity Token Bridge", + "explorer": "https://bscscan.com/token/0xc5137e8e017799e71a65e0cfe3f340d719af17d3", + "research": "", + "type": "BEP20", + "symbol": "ETHb", + "decimals": 18, + "status": "active", + "id": "0xc5137E8e017799e71A65e0cFe3F340d719AF17D3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc5137E8e017799e71A65e0cFe3F340d719AF17D3/logo.png b/blockchains/smartchain/assets/0xc5137E8e017799e71A65e0cFe3F340d719AF17D3/logo.png new file mode 100644 index 00000000..15a85c50 Binary files /dev/null and b/blockchains/smartchain/assets/0xc5137E8e017799e71A65e0cFe3F340d719AF17D3/logo.png differ diff --git a/blockchains/smartchain/assets/0xc53708664b99DF348dd27C3Ac0759d2DA9c40462/info.json b/blockchains/smartchain/assets/0xc53708664b99DF348dd27C3Ac0759d2DA9c40462/info.json new file mode 100644 index 00000000..0ce72011 --- /dev/null +++ b/blockchains/smartchain/assets/0xc53708664b99DF348dd27C3Ac0759d2DA9c40462/info.json @@ -0,0 +1,25 @@ +{ + "name": "Gourmetgalaxy", + "website": "https://gourmetgalaxy.io/", + "description": "Gourmetgalaxy is a fusion between a DeFi Yield Farming, a NFTs Gaming dApp, LaunchPad platform aim at solving the problems that overshadowed Yield Farming platforms.", + "explorer": "https://bscscan.com/token/0xc53708664b99DF348dd27C3Ac0759d2DA9c40462", + "type": "BEP20", + "symbol": "GUM", + "decimals": 18, + "status": "active", + "id": "0xc53708664b99DF348dd27C3Ac0759d2DA9c40462", + "links": [ + { + "name": "github", + "url": "https://github.com/gourmetgalaxy" + }, + { + "name": "telegram", + "url": "https://t.me/gourmetgalaxy_chat" + }, + { + "name": "medium", + "url": "https://gourmetgalaxy.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc53708664b99DF348dd27C3Ac0759d2DA9c40462/logo.png b/blockchains/smartchain/assets/0xc53708664b99DF348dd27C3Ac0759d2DA9c40462/logo.png new file mode 100644 index 00000000..3ddd5166 Binary files /dev/null and b/blockchains/smartchain/assets/0xc53708664b99DF348dd27C3Ac0759d2DA9c40462/logo.png differ diff --git a/blockchains/smartchain/assets/0xc5A49b4CBe004b6FD55B30Ba1dE6AC360FF9765d/info.json b/blockchains/smartchain/assets/0xc5A49b4CBe004b6FD55B30Ba1dE6AC360FF9765d/info.json new file mode 100644 index 00000000..6098d54c --- /dev/null +++ b/blockchains/smartchain/assets/0xc5A49b4CBe004b6FD55B30Ba1dE6AC360FF9765d/info.json @@ -0,0 +1,12 @@ +{ + "name": "Swamp.finance", + "website": "https://swamp.finance/", + "description": "Swamp.finance is a yield farming optimizer for Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xc5A49b4CBe004b6FD55B30Ba1dE6AC360FF9765d", + "research": "", + "type": "BEP20", + "symbol": "SWAMP", + "decimals": 18, + "status": "active", + "id": "0xc5A49b4CBe004b6FD55B30Ba1dE6AC360FF9765d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc5A49b4CBe004b6FD55B30Ba1dE6AC360FF9765d/logo.png b/blockchains/smartchain/assets/0xc5A49b4CBe004b6FD55B30Ba1dE6AC360FF9765d/logo.png new file mode 100644 index 00000000..811ae460 Binary files /dev/null and b/blockchains/smartchain/assets/0xc5A49b4CBe004b6FD55B30Ba1dE6AC360FF9765d/logo.png differ diff --git a/blockchains/smartchain/assets/0xc5a72FC4324EF3fcEBAFf9b5E729487719Eb5B7A/info.json b/blockchains/smartchain/assets/0xc5a72FC4324EF3fcEBAFf9b5E729487719Eb5B7A/info.json new file mode 100644 index 00000000..31914f80 --- /dev/null +++ b/blockchains/smartchain/assets/0xc5a72FC4324EF3fcEBAFf9b5E729487719Eb5B7A/info.json @@ -0,0 +1,33 @@ +{ + "name": "The Doge World", + "website": "https://thedogeworld.io", + "description": "TheDogeWorld is a community based token with upcoming NFT marketplace.", + "explorer": "https://bscscan.com/token/0xc5a72FC4324EF3fcEBAFf9b5E729487719Eb5B7A", + "type": "BEP20", + "symbol": "TDW", + "decimals": 18, + "status": "active", + "id": "0xc5a72FC4324EF3fcEBAFf9b5E729487719Eb5B7A", + "links": [ + { + "name": "x", + "url": "https://x.com/thedogeworld_io" + }, + { + "name": "telegram", + "url": "https://t.me/thedogeworld_io" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-doge-world" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-doge-world/" + }, + { + "name": "whitepaper", + "url": "https://thedogeworld.io/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc5a72FC4324EF3fcEBAFf9b5E729487719Eb5B7A/logo.png b/blockchains/smartchain/assets/0xc5a72FC4324EF3fcEBAFf9b5E729487719Eb5B7A/logo.png new file mode 100644 index 00000000..14d1f5be Binary files /dev/null and b/blockchains/smartchain/assets/0xc5a72FC4324EF3fcEBAFf9b5E729487719Eb5B7A/logo.png differ diff --git a/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json b/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json new file mode 100644 index 00000000..6b0026b6 --- /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 00000000..5d54b8a4 Binary files /dev/null and b/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/logo.png differ diff --git a/blockchains/smartchain/assets/0xc6Cb12df4520B7Bf83f64C79c585b8462e18B6Aa/info.json b/blockchains/smartchain/assets/0xc6Cb12df4520B7Bf83f64C79c585b8462e18B6Aa/info.json new file mode 100644 index 00000000..68ca8be7 --- /dev/null +++ b/blockchains/smartchain/assets/0xc6Cb12df4520B7Bf83f64C79c585b8462e18B6Aa/info.json @@ -0,0 +1,11 @@ +{ + "name": "BEVO NFT Art Token", + "website": "https://bevodigital.art/", + "description": "BEVO Token is a cryptocurrency whose value is backed by real art from real artists. The NFT Art Gallery dAPP will feature paintings, sculptures, photos and digital artwork from artists all around the world. Each piece will be represented by a unique Non-Fungible Token minted on the Binance Smart Chain, for a truly frictionless way to trade not only NFTs but any work of art.", + "explorer": "https://bscscan.com/token/0xc6Cb12df4520B7Bf83f64C79c585b8462e18B6Aa", + "type": "BEP20", + "symbol": "BEVO", + "decimals": 9, + "status": "active", + "id": "0xc6Cb12df4520B7Bf83f64C79c585b8462e18B6Aa" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc6Cb12df4520B7Bf83f64C79c585b8462e18B6Aa/logo.png b/blockchains/smartchain/assets/0xc6Cb12df4520B7Bf83f64C79c585b8462e18B6Aa/logo.png new file mode 100644 index 00000000..6cf7f5dc Binary files /dev/null and b/blockchains/smartchain/assets/0xc6Cb12df4520B7Bf83f64C79c585b8462e18B6Aa/logo.png differ diff --git a/blockchains/smartchain/assets/0xc6f26e6df5f44C0Ccd939581987C09b866cDBd1A/info.json b/blockchains/smartchain/assets/0xc6f26e6df5f44C0Ccd939581987C09b866cDBd1A/info.json new file mode 100644 index 00000000..7e5a3ba3 --- /dev/null +++ b/blockchains/smartchain/assets/0xc6f26e6df5f44C0Ccd939581987C09b866cDBd1A/info.json @@ -0,0 +1,37 @@ +{ + "name": "InfinitUP", + "type": "BEP20", + "symbol": "IUP", + "decimals": 4, + "website": "https://infinitup.io/", + "description": "InfinitUP is a rebase token that also rewards in WBNB.", + "explorer": "https://bscscan.com/token/0xc6f26e6df5f44C0Ccd939581987C09b866cDBd1A", + "status": "active", + "id": "0xc6f26e6df5f44C0Ccd939581987C09b866cDBd1A", + "links": [ + { + "name": "github", + "url": "https://github.com/InfinitUP" + }, + { + "name": "x", + "url": "https://x.com/infinituptoken" + }, + { + "name": "telegram", + "url": "https://t.me/infinitup" + }, + { + "name": "medium", + "url": "https://infinitup.medium.com" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/infinitup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/infinitup" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc6f26e6df5f44C0Ccd939581987C09b866cDBd1A/logo.png b/blockchains/smartchain/assets/0xc6f26e6df5f44C0Ccd939581987C09b866cDBd1A/logo.png new file mode 100644 index 00000000..8bf22411 Binary files /dev/null and b/blockchains/smartchain/assets/0xc6f26e6df5f44C0Ccd939581987C09b866cDBd1A/logo.png differ diff --git a/blockchains/smartchain/assets/0xc7091AA18598b87588e37501b6Ce865263CD67Ce/info.json b/blockchains/smartchain/assets/0xc7091AA18598b87588e37501b6Ce865263CD67Ce/info.json new file mode 100644 index 00000000..8b50b6e4 --- /dev/null +++ b/blockchains/smartchain/assets/0xc7091AA18598b87588e37501b6Ce865263CD67Ce/info.json @@ -0,0 +1,12 @@ +{ + "name": "CheesecakeSwap Token", + "website": "https://cheesecakeswap.com", + "description": "The next generation AMM with high APY rates. Earn CCAKE through yield farming or win it in the Lottery, then stake it in Pools to earn more tokens! Initial Farm Offerings (new token launch model pioneered by CheeseCake Swap), NFTs, and more, on a platform you can trust.", + "explorer": "https://bscscan.com/token/0xc7091AA18598b87588e37501b6Ce865263CD67Ce", + "research": "", + "type": "BEP20", + "symbol": "CCAKE", + "decimals": 18, + "status": "active", + "id": "0xc7091AA18598b87588e37501b6Ce865263CD67Ce" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc7091AA18598b87588e37501b6Ce865263CD67Ce/logo.png b/blockchains/smartchain/assets/0xc7091AA18598b87588e37501b6Ce865263CD67Ce/logo.png new file mode 100644 index 00000000..b1d8b1b6 Binary files /dev/null and b/blockchains/smartchain/assets/0xc7091AA18598b87588e37501b6Ce865263CD67Ce/logo.png differ diff --git a/blockchains/smartchain/assets/0xc709878167Ed069Aea15FD0bD4E9758CEb4Da193/info.json b/blockchains/smartchain/assets/0xc709878167Ed069Aea15FD0bD4E9758CEb4Da193/info.json new file mode 100644 index 00000000..81ff4325 --- /dev/null +++ b/blockchains/smartchain/assets/0xc709878167Ed069Aea15FD0bD4E9758CEb4Da193/info.json @@ -0,0 +1,32 @@ +{ + "name": "DODToken", + "website": "https://dayofdefeat.app", + "description": "DOD (Day of Defeat) is a token issued on the Binance Smart Chain. It is first and exciting social experiment on this planet, with a radical deflationary mathematical model which will keep the price of DOD token rising continuously.", + "explorer": "https://bscscan.com/token/0xc709878167Ed069Aea15FD0bD4E9758CEb4Da193", + "type": "BEP20", + "symbol": "DOD", + "decimals": 18, + "status": "active", + "id": "0xc709878167Ed069Aea15FD0bD4E9758CEb4Da193", + "links": [ + { + "name": "x", + "url": "https://x.com/dayofdefeatBSC" + }, + { + "name": "telegram", + "url": "https://t.me/DayOfDefeatBSC" + }, + { + "name": "whitepaper", + "url": "https://github.com/DOD195450508/docs/blob/main/%24DOD-WhitePaper.pdf" + }, + { + "name": "discord", + "url": "https://discord.com/invite/yVGAW86x" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc709878167Ed069Aea15FD0bD4E9758CEb4Da193/logo.png b/blockchains/smartchain/assets/0xc709878167Ed069Aea15FD0bD4E9758CEb4Da193/logo.png new file mode 100644 index 00000000..31e324d4 Binary files /dev/null and b/blockchains/smartchain/assets/0xc709878167Ed069Aea15FD0bD4E9758CEb4Da193/logo.png differ diff --git a/blockchains/smartchain/assets/0xc713d1053a6e8eFA08aE2903181D8cE5182Aa66c/info.json b/blockchains/smartchain/assets/0xc713d1053a6e8eFA08aE2903181D8cE5182Aa66c/info.json new file mode 100644 index 00000000..b1684a06 --- /dev/null +++ b/blockchains/smartchain/assets/0xc713d1053a6e8eFA08aE2903181D8cE5182Aa66c/info.json @@ -0,0 +1,11 @@ +{ + "name": "NFTBOX", + "website": "https://nftbox.fun", + "description": "NFTBOX is a decentralized finance (DeFi) token.", + "explorer": "https://bscscan.com/token/0xc713d1053a6e8eFA08aE2903181D8cE5182Aa66c", + "type": "BEP20", + "symbol": "NFTBOX", + "decimals": 9, + "status": "active", + "id": "0xc713d1053a6e8eFA08aE2903181D8cE5182Aa66c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc713d1053a6e8eFA08aE2903181D8cE5182Aa66c/logo.png b/blockchains/smartchain/assets/0xc713d1053a6e8eFA08aE2903181D8cE5182Aa66c/logo.png new file mode 100644 index 00000000..ecc7c04b Binary files /dev/null and b/blockchains/smartchain/assets/0xc713d1053a6e8eFA08aE2903181D8cE5182Aa66c/logo.png differ diff --git a/blockchains/smartchain/assets/0xc732B6586A93b6B7CF5FeD3470808Bc74998224D/info.json b/blockchains/smartchain/assets/0xc732B6586A93b6B7CF5FeD3470808Bc74998224D/info.json new file mode 100644 index 00000000..9f9df238 --- /dev/null +++ b/blockchains/smartchain/assets/0xc732B6586A93b6B7CF5FeD3470808Bc74998224D/info.json @@ -0,0 +1,53 @@ +{ + "name": "KmonCoin", + "type": "BEP20", + "symbol": "KMON", + "decimals": 18, + "website": "https://kryptomon.co", + "description": "Kryptomons are digital collectible monsters. Breed and take care of them and fight with other players. Every creature has a unique but mutable genetic code made up of different genotypes that will determine all the aspects - both physical and behavioural - of the creature.", + "explorer": "https://bscscan.com/token/0xc732B6586A93b6B7CF5FeD3470808Bc74998224D", + "status": "active", + "id": "0xc732B6586A93b6B7CF5FeD3470808Bc74998224D", + "links": [ + { + "name": "x", + "url": "https://x.com/KryptomonTeam" + }, + { + "name": "telegram", + "url": "https://t.me/kryptomonofficial" + }, + { + "name": "medium", + "url": "https://medium.com/kryptomon" + }, + { + "name": "whitepaper", + "url": "https://kryptomon.co/white-paper" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/KryptomonGame" + }, + { + "name": "facebook", + "url": "https://facebook.com/KryptomonTeam" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kryptomon/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kryptomon" + }, + { + "name": "discord", + "url": "https://discord.com/invite/hYRjSfsWXt" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Kryptomon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc732B6586A93b6B7CF5FeD3470808Bc74998224D/logo.png b/blockchains/smartchain/assets/0xc732B6586A93b6B7CF5FeD3470808Bc74998224D/logo.png new file mode 100644 index 00000000..72d56007 Binary files /dev/null and b/blockchains/smartchain/assets/0xc732B6586A93b6B7CF5FeD3470808Bc74998224D/logo.png differ diff --git a/blockchains/smartchain/assets/0xc748673057861a797275CD8A068AbB95A902e8de/info.json b/blockchains/smartchain/assets/0xc748673057861a797275CD8A068AbB95A902e8de/info.json new file mode 100644 index 00000000..312b3871 --- /dev/null +++ b/blockchains/smartchain/assets/0xc748673057861a797275CD8A068AbB95A902e8de/info.json @@ -0,0 +1,40 @@ +{ + "name": "Baby Doge Coin", + "type": "BEP20", + "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://bscscan.com/token/0xc748673057861a797275CD8A068AbB95A902e8de", + "status": "active", + "id": "0xc748673057861a797275CD8A068AbB95A902e8de", + "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/smartchain/assets/0xc748673057861a797275CD8A068AbB95A902e8de/logo.png b/blockchains/smartchain/assets/0xc748673057861a797275CD8A068AbB95A902e8de/logo.png new file mode 100644 index 00000000..138b6528 Binary files /dev/null and b/blockchains/smartchain/assets/0xc748673057861a797275CD8A068AbB95A902e8de/logo.png differ diff --git a/blockchains/smartchain/assets/0xc74cD0042c837Ce59210857504eBb0859E06aA22/info.json b/blockchains/smartchain/assets/0xc74cD0042c837Ce59210857504eBb0859E06aA22/info.json new file mode 100644 index 00000000..741c9e2e --- /dev/null +++ b/blockchains/smartchain/assets/0xc74cD0042c837Ce59210857504eBb0859E06aA22/info.json @@ -0,0 +1,57 @@ +{ + "name": "SafuYield", + "type": "BEP20", + "symbol": "SAFUYIELD", + "decimals": 9, + "website": "https://safuyield.com", + "description": "SAFUYIELD is the native ecosystem token of the www.SAFU.net platform and utility for all its projects.", + "explorer": "https://bscscan.com/token/0xc74cD0042c837Ce59210857504eBb0859E06aA22", + "status": "active", + "id": "0xc74cD0042c837Ce59210857504eBb0859E06aA22", + "links": [ + { + "name": "x", + "url": "https://x.com/safuyield" + }, + { + "name": "github", + "url": "https://github.com/safuyield" + }, + { + "name": "telegram", + "url": "https://t.me/safuyield" + }, + { + "name": "telegram_news", + "url": "https://t.me/safuyield_news" + }, + { + "name": "medium", + "url": "https://safuyield.medium.com" + }, + { + "name": "discord", + "url": "https://discord.com/invite/h57WyJuqEp" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SafuYield" + }, + { + "name": "whitepaper", + "url": "https://safu.net/SafuYield-Protocol-litepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/safuyield-protocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/safuyield-protocol" + }, + { + "name": "facebook", + "url": "https://facebook.com/safu.net" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc74cD0042c837Ce59210857504eBb0859E06aA22/logo.png b/blockchains/smartchain/assets/0xc74cD0042c837Ce59210857504eBb0859E06aA22/logo.png new file mode 100644 index 00000000..d71b3be7 Binary files /dev/null and b/blockchains/smartchain/assets/0xc74cD0042c837Ce59210857504eBb0859E06aA22/logo.png differ diff --git a/blockchains/smartchain/assets/0xc77Dd3AdE7b717583E0924466E4E474A5673332c/info.json b/blockchains/smartchain/assets/0xc77Dd3AdE7b717583E0924466E4E474A5673332c/info.json new file mode 100644 index 00000000..cf033e67 --- /dev/null +++ b/blockchains/smartchain/assets/0xc77Dd3AdE7b717583E0924466E4E474A5673332c/info.json @@ -0,0 +1,41 @@ +{ + "name": "Magic Beasties", + "type": "BEP20", + "symbol": "BSTS", + "decimals": 9, + "website": "https://beasties.online/", + "description": "BSTS is a hyper-deflationary token running on Binance Smart Chain, which will be used in the in-game store to buy Beasties and other items", + "explorer": "https://bscscan.com/token/0xc77Dd3AdE7b717583E0924466E4E474A5673332c", + "status": "active", + "id": "0xc77Dd3AdE7b717583E0924466E4E474A5673332c", + "links": [ + { + "name": "x", + "url": "https://x.com/beasties_online" + }, + { + "name": "github", + "url": "https://github.com/MagicBeastiesOnline" + }, + { + "name": "telegram", + "url": "https://t.me/beastieschat" + }, + { + "name": "docs", + "url": "https://docs.beasties.online/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magic-beasties/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/magic-beasties" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xc77Dd3AdE7b717583E0924466E4E474A5673332c#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc77Dd3AdE7b717583E0924466E4E474A5673332c/logo.png b/blockchains/smartchain/assets/0xc77Dd3AdE7b717583E0924466E4E474A5673332c/logo.png new file mode 100644 index 00000000..93f135dc Binary files /dev/null and b/blockchains/smartchain/assets/0xc77Dd3AdE7b717583E0924466E4E474A5673332c/logo.png differ diff --git a/blockchains/smartchain/assets/0xc7806943663158D68740a14ab0B270bD60BDe87D/info.json b/blockchains/smartchain/assets/0xc7806943663158D68740a14ab0B270bD60BDe87D/info.json new file mode 100644 index 00000000..5790efc2 --- /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 00000000..c9a98e6a 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 new file mode 100644 index 00000000..db6a1c11 --- /dev/null +++ b/blockchains/smartchain/assets/0xc7Ad2CE38f208eED77a368613C62062fCE88f125/info.json @@ -0,0 +1,41 @@ +{ + "name": "AERDROP", + "website": "https://www.aerdrop.finance/", + "description": "$AER token offers holders redistribution %, $AER airdrops & free access to the first Defi launchpad for new tokens offering exclusive airdrops.", + "explorer": "https://bscscan.com/token/0xc7Ad2CE38f208eED77a368613C62062fCE88f125", + "type": "BEP20", + "symbol": "AER", + "decimals": 9, + "status": "active", + "id": "0xc7Ad2CE38f208eED77a368613C62062fCE88f125", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aerdrop/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aerdrop" + }, + { + "name": "telegram", + "url": "https://t.me/aerdropofficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/aerdropann" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCOpRiuwOQgEYFkljfJmpNWg" + }, + { + "name": "x", + "url": "https://x.com/AerdropOfficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AerdropOfficial/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc7Ad2CE38f208eED77a368613C62062fCE88f125/logo.png b/blockchains/smartchain/assets/0xc7Ad2CE38f208eED77a368613C62062fCE88f125/logo.png new file mode 100644 index 00000000..ddc0dbbb Binary files /dev/null and b/blockchains/smartchain/assets/0xc7Ad2CE38f208eED77a368613C62062fCE88f125/logo.png differ diff --git a/blockchains/smartchain/assets/0xc7a249D3021b1d62669b2B5cE65D8410b9A44A43/info.json b/blockchains/smartchain/assets/0xc7a249D3021b1d62669b2B5cE65D8410b9A44A43/info.json new file mode 100644 index 00000000..d6336aec --- /dev/null +++ b/blockchains/smartchain/assets/0xc7a249D3021b1d62669b2B5cE65D8410b9A44A43/info.json @@ -0,0 +1,11 @@ +{ + "name": "ChubbyShiba", + "type": "BEP20", + "symbol": "CHSHIBA", + "decimals": 9, + "website": "https://www.chubbyshiba.com/", + "description": "With our generous passive income opportunities, innovative product development, and amazing community, ChubbyShiba checks all the boxes.", + "explorer": "https://bscscan.com/token/0xc7a249D3021b1d62669b2B5cE65D8410b9A44A43", + "status": "active", + "id": "0xc7a249D3021b1d62669b2B5cE65D8410b9A44A43" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc7a249D3021b1d62669b2B5cE65D8410b9A44A43/logo.png b/blockchains/smartchain/assets/0xc7a249D3021b1d62669b2B5cE65D8410b9A44A43/logo.png new file mode 100644 index 00000000..9a57834b Binary files /dev/null and b/blockchains/smartchain/assets/0xc7a249D3021b1d62669b2B5cE65D8410b9A44A43/logo.png differ diff --git a/blockchains/smartchain/assets/0xc82B74532f417cC47FB14F0894D1B216D72F8888/info.json b/blockchains/smartchain/assets/0xc82B74532f417cC47FB14F0894D1B216D72F8888/info.json new file mode 100644 index 00000000..ced2b31d --- /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/0xc836d8dC361E44DbE64c4862D55BA041F88Ddd39/info.json b/blockchains/smartchain/assets/0xc836d8dC361E44DbE64c4862D55BA041F88Ddd39/info.json new file mode 100644 index 00000000..e28c950b --- /dev/null +++ b/blockchains/smartchain/assets/0xc836d8dC361E44DbE64c4862D55BA041F88Ddd39/info.json @@ -0,0 +1,14 @@ +{ + "name": "MATIC (Portal from Polygon)", + "type": "BEP20", + "symbol": "MATICpo", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://polygon.technology/", + "explorer": "https://bscscan.com/token/0xc836d8dC361E44DbE64c4862D55BA041F88Ddd39", + "status": "active", + "id": "0xc836d8dC361E44DbE64c4862D55BA041F88Ddd39", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc836d8dC361E44DbE64c4862D55BA041F88Ddd39/logo.png b/blockchains/smartchain/assets/0xc836d8dC361E44DbE64c4862D55BA041F88Ddd39/logo.png new file mode 100644 index 00000000..60c97897 Binary files /dev/null and b/blockchains/smartchain/assets/0xc836d8dC361E44DbE64c4862D55BA041F88Ddd39/logo.png differ diff --git a/blockchains/smartchain/assets/0xc845341377C68b8003485036c3163b8DBcf8acb2/info.json b/blockchains/smartchain/assets/0xc845341377C68b8003485036c3163b8DBcf8acb2/info.json new file mode 100644 index 00000000..f5845fef --- /dev/null +++ b/blockchains/smartchain/assets/0xc845341377C68b8003485036c3163b8DBcf8acb2/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeWolf", + "website": "https://safewolf.io", + "description": "SAFEWOLF is a community driven project built on Binance Smart Chain #BSC. Two functions occur during each trade: Reflection & Burn. SAFEWOLF brings the most revolutionary mechanism to BSC ecosystem", + "explorer": "https://bscscan.com/token/0xc845341377C68b8003485036c3163b8DBcf8acb2", + "type": "BEP20", + "symbol": "SW", + "decimals": 9, + "status": "active", + "id": "0xc845341377C68b8003485036c3163b8DBcf8acb2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc845341377C68b8003485036c3163b8DBcf8acb2/logo.png b/blockchains/smartchain/assets/0xc845341377C68b8003485036c3163b8DBcf8acb2/logo.png new file mode 100644 index 00000000..722edb15 Binary files /dev/null and b/blockchains/smartchain/assets/0xc845341377C68b8003485036c3163b8DBcf8acb2/logo.png differ diff --git a/blockchains/smartchain/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json b/blockchains/smartchain/assets/0xc845b2894dBddd03858fd2D643B4eF725fE0849d/info.json new file mode 100644 index 00000000..d3965b90 --- /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 00000000..b7945306 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 new file mode 100644 index 00000000..db831c71 --- /dev/null +++ b/blockchains/smartchain/assets/0xc864019047B864B6ab609a968ae2725DFaee808A/info.json @@ -0,0 +1,25 @@ +{ + "name": "Biconomy Token", + "type": "BEP20", + "symbol": "BIT", + "decimals": 9, + "website": "https://biconomy.com", + "description": "Biconomy is a Canadian digital currency exchange.", + "explorer": "https://bscscan.com/token/0xc864019047B864B6ab609a968ae2725DFaee808A", + "status": "active", + "id": "0xc864019047B864B6ab609a968ae2725DFaee808A", + "links": [ + { + "name": "x", + "url": "https://x.com/SheludkoDmitriy?s=12" + }, + { + "name": "telegram", + "url": "https://t.me/Biconomy_Global" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/biconomy-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc864019047B864B6ab609a968ae2725DFaee808A/logo.png b/blockchains/smartchain/assets/0xc864019047B864B6ab609a968ae2725DFaee808A/logo.png new file mode 100644 index 00000000..c327ce98 Binary files /dev/null and b/blockchains/smartchain/assets/0xc864019047B864B6ab609a968ae2725DFaee808A/logo.png differ diff --git a/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/info.json b/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/info.json new file mode 100644 index 00000000..7036a42e --- /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 00000000..1022f742 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 new file mode 100644 index 00000000..e97c61cf --- /dev/null +++ b/blockchains/smartchain/assets/0xc8E8ecB2A5B5d1eCFf007BF74d15A86434aA0c5C/info.json @@ -0,0 +1,33 @@ +{ + "name": "DragonSlayer", + "type": "BEP20", + "symbol": "DRS", + "decimals": 9, + "website": "https://www.dragonslayer.games/", + "description": "Dragon Slayer is a NFT gaming ecosystem aiming to build a vast Dragon Universe living on the Binance Smart Chain where millions of players all around the world participate in the blockchain-based NFT game in a simple, fast and fun way. Dragon Slayer creates a complete blockchain gaming ecosystem that connects game players, developers, communities and distributors.", + "explorer": "https://bscscan.com/token/0xc8E8ecB2A5B5d1eCFf007BF74d15A86434aA0c5C", + "status": "active", + "id": "0xc8E8ecB2A5B5d1eCFf007BF74d15A86434aA0c5C", + "links": [ + { + "name": "x", + "url": "https://x.com/DragonSlayerNft" + }, + { + "name": "telegram", + "url": "https://t.me/DragonSlayerNftChannel" + }, + { + "name": "facebook", + "url": "https://facebook.com/DragonSlayer2NFT" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dragon-slayer" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dragon-slayer" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc8E8ecB2A5B5d1eCFf007BF74d15A86434aA0c5C/logo.png b/blockchains/smartchain/assets/0xc8E8ecB2A5B5d1eCFf007BF74d15A86434aA0c5C/logo.png new file mode 100644 index 00000000..ef833505 Binary files /dev/null and b/blockchains/smartchain/assets/0xc8E8ecB2A5B5d1eCFf007BF74d15A86434aA0c5C/logo.png differ diff --git a/blockchains/smartchain/assets/0xc8aE2289c032B119DFD29396F1FC68Ee91F80118/info.json b/blockchains/smartchain/assets/0xc8aE2289c032B119DFD29396F1FC68Ee91F80118/info.json new file mode 100644 index 00000000..d235eaad --- /dev/null +++ b/blockchains/smartchain/assets/0xc8aE2289c032B119DFD29396F1FC68Ee91F80118/info.json @@ -0,0 +1,11 @@ +{ + "name": "IM Super League", + "type": "BEP20", + "symbol": "IMSL", + "decimals": 9, + "website": "https://imsuperleague.com/", + "description": "The IM Super League is an educative, entertained, and profitable way to play with your favorite football team of all times on the blockchain.", + "explorer": "https://bscscan.com/token/0xc8aE2289c032B119DFD29396F1FC68Ee91F80118", + "status": "active", + "id": "0xc8aE2289c032B119DFD29396F1FC68Ee91F80118" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc8aE2289c032B119DFD29396F1FC68Ee91F80118/logo.png b/blockchains/smartchain/assets/0xc8aE2289c032B119DFD29396F1FC68Ee91F80118/logo.png new file mode 100644 index 00000000..8288cedc Binary files /dev/null and b/blockchains/smartchain/assets/0xc8aE2289c032B119DFD29396F1FC68Ee91F80118/logo.png differ diff --git a/blockchains/smartchain/assets/0xc9132C76060F6b319764Ea075973a650A1a53bC9/info.json b/blockchains/smartchain/assets/0xc9132C76060F6b319764Ea075973a650A1a53bC9/info.json new file mode 100644 index 00000000..2a16c4cb --- /dev/null +++ b/blockchains/smartchain/assets/0xc9132C76060F6b319764Ea075973a650A1a53bC9/info.json @@ -0,0 +1,11 @@ +{ + "name": "DuckDaoDime", + "website": "https://duckdao.io", + "description": "DuckDAO, the world’s largest crowdsourced Incubator for crypto projects.", + "explorer": "https://bscscan.com/token/0xc9132C76060F6b319764Ea075973a650A1a53bC9", + "symbol": "DDIM", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xc9132C76060F6b319764Ea075973a650A1a53bC9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc9132C76060F6b319764Ea075973a650A1a53bC9/logo.png b/blockchains/smartchain/assets/0xc9132C76060F6b319764Ea075973a650A1a53bC9/logo.png new file mode 100644 index 00000000..4551178e Binary files /dev/null and b/blockchains/smartchain/assets/0xc9132C76060F6b319764Ea075973a650A1a53bC9/logo.png differ diff --git a/blockchains/smartchain/assets/0xc91D49653F0364aA9C7877697eB27313c973ad9D/info.json b/blockchains/smartchain/assets/0xc91D49653F0364aA9C7877697eB27313c973ad9D/info.json new file mode 100644 index 00000000..afac3a84 --- /dev/null +++ b/blockchains/smartchain/assets/0xc91D49653F0364aA9C7877697eB27313c973ad9D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Catnip Money", + "website": "https://catnip.money", + "description": "The fair launch token built for sustainable gains. Featuring the worlds first yielding NFTs, auto-liquidity injections & more.", + "explorer": "https://bscscan.com/token/0xc91d49653f0364aa9c7877697eb27313c973ad9d", + "type": "BEP20", + "symbol": "CATNIP", + "decimals": 8, + "status": "active", + "id": "0xc91D49653F0364aA9C7877697eB27313c973ad9D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc91D49653F0364aA9C7877697eB27313c973ad9D/logo.png b/blockchains/smartchain/assets/0xc91D49653F0364aA9C7877697eB27313c973ad9D/logo.png new file mode 100644 index 00000000..90a04eba Binary files /dev/null and b/blockchains/smartchain/assets/0xc91D49653F0364aA9C7877697eB27313c973ad9D/logo.png differ diff --git a/blockchains/smartchain/assets/0xc978BA9309f3c3bE3a79302251A2bB041bAa7118/info.json b/blockchains/smartchain/assets/0xc978BA9309f3c3bE3a79302251A2bB041bAa7118/info.json new file mode 100644 index 00000000..c92d32e0 --- /dev/null +++ b/blockchains/smartchain/assets/0xc978BA9309f3c3bE3a79302251A2bB041bAa7118/info.json @@ -0,0 +1,29 @@ +{ + "name": "Kitty Shiba", + "type": "BEP20", + "symbol": "KSHIBA", + "decimals": 18, + "website": "https://kittyshiba.com", + "description": "KittyShiba, a decentralized & unique way to earn. Running on BSC, Token REFLECTION earning with very intelligent coding, makes KittyShiba much powerful.", + "explorer": "https://bscscan.com/token/0xc978BA9309f3c3bE3a79302251A2bB041bAa7118", + "status": "active", + "id": "0xc978BA9309f3c3bE3a79302251A2bB041bAa7118", + "links": [ + { + "name": "x", + "url": "https://x.com/kittyshiba" + }, + { + "name": "github", + "url": "https://github.com/kittyshiba" + }, + { + "name": "telegram", + "url": "https://t.me/kittyshiba" + }, + { + "name": "telegram_news", + "url": "https://t.me/kittyshibanews" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc978BA9309f3c3bE3a79302251A2bB041bAa7118/logo.png b/blockchains/smartchain/assets/0xc978BA9309f3c3bE3a79302251A2bB041bAa7118/logo.png new file mode 100644 index 00000000..717bd817 Binary files /dev/null and b/blockchains/smartchain/assets/0xc978BA9309f3c3bE3a79302251A2bB041bAa7118/logo.png differ diff --git a/blockchains/smartchain/assets/0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42/info.json b/blockchains/smartchain/assets/0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42/info.json new file mode 100644 index 00000000..53103836 --- /dev/null +++ b/blockchains/smartchain/assets/0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42/info.json @@ -0,0 +1,33 @@ +{ + "name": "ASIX Token", + "type": "BEP20", + "symbol": "ASIX", + "decimals": 9, + "website": "https://asixtoken.com/", + "description": "ASIX Token is prestigious project backed by one of the most famous celebrities in Indonesia, Anang Hermansyah and His family. The token utility focusing on P2E Games, NFT Marketplace and Nusantara Land Metaverse.", + "explorer": "https://bscscan.com/token/0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42", + "status": "abandoned", + "id": "0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/asix-token" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/asix" + }, + { + "name": "telegram", + "url": "https://t.me/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 00000000..9df3da33 --- /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 00000000..a629fbed Binary files /dev/null and b/blockchains/smartchain/assets/0xc99Dbbe7E3abc34ce0De6474759dc8092aBfBd15/logo.png differ diff --git a/blockchains/smartchain/assets/0xc9Ad37E9Baf41377540Df5a77831Db98c1915128/info.json b/blockchains/smartchain/assets/0xc9Ad37E9Baf41377540Df5a77831Db98c1915128/info.json new file mode 100644 index 00000000..86152916 --- /dev/null +++ b/blockchains/smartchain/assets/0xc9Ad37E9Baf41377540Df5a77831Db98c1915128/info.json @@ -0,0 +1,11 @@ +{ + "name": "Green Shiba Inu", + "type": "BEP20", + "symbol": "GINUX", + "decimals": 18, + "website": "https://greenshiba.org", + "description": "Green Shiba Inu is a fully decentralized, zero-emission and fairly distributed community-driven token disrupting the meme economy aiming at protecting the environment!", + "explorer": "https://bscscan.com/token/0xc9Ad37E9Baf41377540Df5a77831Db98c1915128", + "status": "active", + "id": "0xc9Ad37E9Baf41377540Df5a77831Db98c1915128" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc9Ad37E9Baf41377540Df5a77831Db98c1915128/logo.png b/blockchains/smartchain/assets/0xc9Ad37E9Baf41377540Df5a77831Db98c1915128/logo.png new file mode 100644 index 00000000..d1a0e608 Binary files /dev/null and b/blockchains/smartchain/assets/0xc9Ad37E9Baf41377540Df5a77831Db98c1915128/logo.png differ diff --git a/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/info.json b/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/info.json new file mode 100644 index 00000000..b63df68d --- /dev/null +++ b/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/info.json @@ -0,0 +1,24 @@ +{ + "name": "Happiness Token", + "type": "BEP20", + "symbol": "HPS", + "decimals": 18, + "website": "https://billionhappiness.finance/", + "description": "HPS is a deflationary token and booster for BillionHappiness project to support liquidity, buyback, build the ecosystem, and Develop NFT marketplace. To create, buy, or collect digital items secured with BSC blockchain.", + "explorer": "https://bscscan.com/token/0xc9d53a339f3c22e016c6fa1e3eb85ac32c75fed2", + "status": "active", + "id": "0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2", + "links": [ + { + "name": "x", + "url": "https://x.com/BHC_Happiness" + }, + { + "name": "github", + "url": "https://github.com/HPSOfficial" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/logo.png b/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/logo.png new file mode 100644 index 00000000..bef8fa97 Binary files /dev/null and b/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/logo.png differ diff --git a/blockchains/smartchain/assets/0xc9fF63C05E1B2CDa785290F1e3C3D0C8754a8888/info.json b/blockchains/smartchain/assets/0xc9fF63C05E1B2CDa785290F1e3C3D0C8754a8888/info.json new file mode 100644 index 00000000..d3e14102 --- /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 new file mode 100644 index 00000000..beb5f3b2 --- /dev/null +++ b/blockchains/smartchain/assets/0xcA1262e77Fb25c0a4112CFc9bad3ff54F617f2e6/info.json @@ -0,0 +1,28 @@ +{ + "name": "Wrapped JAXNET", + "type": "BEP20", + "symbol": "WJXN", + "decimals": 0, + "website": "https://jax.network", + "description": "Jax.Network provides the technological infrastructure for a decentralized energy-standard monetary system. Our blockchain is anchored to the Bitcoin network and issues two digital currencies JAX and JXN. JAX is a stablecoin pegged to the energy spent on mining, while JXN is an asset coin representing the value of the whole network.", + "explorer": "https://bscscan.com/token/0xcA1262e77Fb25c0a4112CFc9bad3ff54F617f2e6", + "status": "active", + "id": "0xcA1262e77Fb25c0a4112CFc9bad3ff54F617f2e6", + "links": [ + { + "name": "x", + "url": "https://x.com/CommunityJax" + }, + { + "name": "telegram", + "url": "https://t.me/jax_network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jax-network/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcA1262e77Fb25c0a4112CFc9bad3ff54F617f2e6/logo.png b/blockchains/smartchain/assets/0xcA1262e77Fb25c0a4112CFc9bad3ff54F617f2e6/logo.png new file mode 100644 index 00000000..4d0c04f9 Binary files /dev/null and b/blockchains/smartchain/assets/0xcA1262e77Fb25c0a4112CFc9bad3ff54F617f2e6/logo.png differ diff --git a/blockchains/smartchain/assets/0xcAf23964Ca8db16D816eB314a56789F58fE0e10e/info.json b/blockchains/smartchain/assets/0xcAf23964Ca8db16D816eB314a56789F58fE0e10e/info.json new file mode 100644 index 00000000..a0cb740b --- /dev/null +++ b/blockchains/smartchain/assets/0xcAf23964Ca8db16D816eB314a56789F58fE0e10e/info.json @@ -0,0 +1,33 @@ +{ + "name": "Galaxy Goggle", + "website": "https://app.galaxygoggle.money", + "description": "Galaxy Goggle DAO is a decentralized reserve currency protocol based on the GG token. Each GG token is backed by a basket of assets (e.g. MIM, AVAX) in the collateral pool, giving it an intrinsic value that it cannot fall below. GGDAO also introduces economic and game-theoretic dynamics into the market through staking and minting.", + "explorer": "https://bscscan.com/token/0xcAf23964Ca8db16D816eB314a56789F58fE0e10e", + "type": "BEP20", + "symbol": "GG", + "decimals": 9, + "status": "active", + "id": "0xcAf23964Ca8db16D816eB314a56789F58fE0e10e", + "links": [ + { + "name": "github", + "url": "https://github.com/GalaxyGoggle" + }, + { + "name": "x", + "url": "https://x.com/galaxygoggledao" + }, + { + "name": "telegram", + "url": "https://t.me/ApeX_Token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/galaxygoggle-dao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/galaxygoogle-dao" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcAf23964Ca8db16D816eB314a56789F58fE0e10e/logo.png b/blockchains/smartchain/assets/0xcAf23964Ca8db16D816eB314a56789F58fE0e10e/logo.png new file mode 100644 index 00000000..5eb7f133 Binary files /dev/null and b/blockchains/smartchain/assets/0xcAf23964Ca8db16D816eB314a56789F58fE0e10e/logo.png differ diff --git a/blockchains/smartchain/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json b/blockchains/smartchain/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json new file mode 100644 index 00000000..771e4edf --- /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 00000000..6a8b61f4 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 00000000..225e1eac --- /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 00000000..bac3a277 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 00000000..5b5b7ed8 --- /dev/null +++ b/blockchains/smartchain/assets/0xcB2a0F46f67dC4c58a316F1c008EDef5c2311795/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Gold Trust (Ondo Tokenized)", + "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 00000000..140fda8b Binary files /dev/null and b/blockchains/smartchain/assets/0xcB2a0F46f67dC4c58a316F1c008EDef5c2311795/logo.png differ diff --git a/blockchains/smartchain/assets/0xcB368FDb5264a6c2baE1b270EC6A3Ad3029C64C7/info.json b/blockchains/smartchain/assets/0xcB368FDb5264a6c2baE1b270EC6A3Ad3029C64C7/info.json new file mode 100644 index 00000000..c3b0de73 --- /dev/null +++ b/blockchains/smartchain/assets/0xcB368FDb5264a6c2baE1b270EC6A3Ad3029C64C7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hyperion", + "website": "http://hyperion.exchange/", + "description": "Yield farm hyperion on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xcB368FDb5264a6c2baE1b270EC6A3Ad3029C64C7", + "type": "BEP20", + "symbol": "HPR", + "decimals": 8, + "status": "active", + "id": "0xcB368FDb5264a6c2baE1b270EC6A3Ad3029C64C7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcB368FDb5264a6c2baE1b270EC6A3Ad3029C64C7/logo.png b/blockchains/smartchain/assets/0xcB368FDb5264a6c2baE1b270EC6A3Ad3029C64C7/logo.png new file mode 100644 index 00000000..aa96a84e Binary files /dev/null and b/blockchains/smartchain/assets/0xcB368FDb5264a6c2baE1b270EC6A3Ad3029C64C7/logo.png differ diff --git a/blockchains/smartchain/assets/0xcB5EDCB7A2aDe21Ae4A695A5c7fFB7Aa01DFaA5d/info.json b/blockchains/smartchain/assets/0xcB5EDCB7A2aDe21Ae4A695A5c7fFB7Aa01DFaA5d/info.json new file mode 100644 index 00000000..aece9333 --- /dev/null +++ b/blockchains/smartchain/assets/0xcB5EDCB7A2aDe21Ae4A695A5c7fFB7Aa01DFaA5d/info.json @@ -0,0 +1,14 @@ +{ + "name": "FetaToken", + "type": "BEP20", + "symbol": "FETA", + "decimals": 9, + "website": "https://fetatoken.com/", + "description": "FetaToken uses the technology of crypto to support charitable organizations and create community engagement with future projects. The FetaToken community holds events where portions of tokens in the charity wallet gets donated to the community's decided charity organization. FETA, also known as the Fun Ethical Triangular Alt-coin, is a Binance Smart Chain token with an automatic 9% tax on every transaction, of which 3% is distributed to holders, 3% is burned and 3% is sent to the charity wallet.", + "explorer": "https://bscscan.com/token/0xcb5edcb7a2ade21ae4a695a5c7ffb7aa01dfaa5d", + "status": "active", + "id": "0xcB5EDCB7A2aDe21Ae4A695A5c7fFB7Aa01DFaA5d", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcB5EDCB7A2aDe21Ae4A695A5c7fFB7Aa01DFaA5d/logo.png b/blockchains/smartchain/assets/0xcB5EDCB7A2aDe21Ae4A695A5c7fFB7Aa01DFaA5d/logo.png new file mode 100644 index 00000000..8005cc28 Binary files /dev/null and b/blockchains/smartchain/assets/0xcB5EDCB7A2aDe21Ae4A695A5c7fFB7Aa01DFaA5d/logo.png differ diff --git a/blockchains/smartchain/assets/0xcB8b1A33b5569D3728B4F834d01C7DF0608fB184/info.json b/blockchains/smartchain/assets/0xcB8b1A33b5569D3728B4F834d01C7DF0608fB184/info.json new file mode 100644 index 00000000..ad91aaf8 --- /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 00000000..f189753b Binary files /dev/null and b/blockchains/smartchain/assets/0xcB8b1A33b5569D3728B4F834d01C7DF0608fB184/logo.png differ diff --git a/blockchains/smartchain/assets/0xcBB73f034e7f466491A170a0AbF233636C2a93eE/info.json b/blockchains/smartchain/assets/0xcBB73f034e7f466491A170a0AbF233636C2a93eE/info.json new file mode 100644 index 00000000..419a82e6 --- /dev/null +++ b/blockchains/smartchain/assets/0xcBB73f034e7f466491A170a0AbF233636C2a93eE/info.json @@ -0,0 +1,11 @@ +{ + "name": "WAP Token", + "type": "BEP20", + "symbol": "WAP", + "decimals": 18, + "website": "https://wearepeopletoken.com/", + "description": "A community-focused blockchain project. The project is directed towards Families that have suffered from police brutality and minority groups and causes.", + "explorer": "https://bscscan.com/token/0xcBB73f034e7f466491A170a0AbF233636C2a93eE", + "status": "active", + "id": "0xcBB73f034e7f466491A170a0AbF233636C2a93eE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcBB73f034e7f466491A170a0AbF233636C2a93eE/logo.png b/blockchains/smartchain/assets/0xcBB73f034e7f466491A170a0AbF233636C2a93eE/logo.png new file mode 100644 index 00000000..eb32e1ae Binary files /dev/null and b/blockchains/smartchain/assets/0xcBB73f034e7f466491A170a0AbF233636C2a93eE/logo.png differ diff --git a/blockchains/smartchain/assets/0xcBc919D845f393Aa0ceD76085Fd082c8aDcE00be/info.json b/blockchains/smartchain/assets/0xcBc919D845f393Aa0ceD76085Fd082c8aDcE00be/info.json new file mode 100644 index 00000000..628426e1 --- /dev/null +++ b/blockchains/smartchain/assets/0xcBc919D845f393Aa0ceD76085Fd082c8aDcE00be/info.json @@ -0,0 +1,30 @@ +{ + "name": "BOSAGORA", + "website": "https://bosagora.io", + "description": "Contribute to making a better world with blockchain technology as a project enabler.", + "research": "https://bosagora.io", + "explorer": "https://bscscan.com/token/0xcBc919D845f393Aa0ceD76085Fd082c8aDcE00be", + "type": "BEP20", + "symbol": "BOA", + "decimals": 7, + "status": "active", + "id": "0xcBc919D845f393Aa0ceD76085Fd082c8aDcE00be", + "links": [ + { + "name": "github", + "url": "https://github.com/bosagora" + }, + { + "name": "x", + "url": "https://x.com/BOSAGORA1" + }, + { + "name": "telegram", + "url": "https://t.me/bpf_eng" + }, + { + "name": "medium", + "url": "https://medium.com/bosagora" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcBc919D845f393Aa0ceD76085Fd082c8aDcE00be/logo.png b/blockchains/smartchain/assets/0xcBc919D845f393Aa0ceD76085Fd082c8aDcE00be/logo.png new file mode 100644 index 00000000..6a99b344 Binary files /dev/null and b/blockchains/smartchain/assets/0xcBc919D845f393Aa0ceD76085Fd082c8aDcE00be/logo.png differ diff --git a/blockchains/smartchain/assets/0xcCc2d670E801570247E9De1841480F52A62Eb6F3/info.json b/blockchains/smartchain/assets/0xcCc2d670E801570247E9De1841480F52A62Eb6F3/info.json new file mode 100644 index 00000000..46780cf3 --- /dev/null +++ b/blockchains/smartchain/assets/0xcCc2d670E801570247E9De1841480F52A62Eb6F3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Marsturbate", + "website": "https://marsturbate.me", + "description": "MRST - Next generation marketplace for porn nfts", + "explorer": "https://bscscan.com/token/0xccc2d670e801570247e9de1841480f52a62eb6f3", + "type": "BEP20", + "symbol": "MRST", + "decimals": 9, + "status": "active", + "id": "0xcCc2d670E801570247E9De1841480F52A62Eb6F3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcCc2d670E801570247E9De1841480F52A62Eb6F3/logo.png b/blockchains/smartchain/assets/0xcCc2d670E801570247E9De1841480F52A62Eb6F3/logo.png new file mode 100644 index 00000000..56b94dd1 Binary files /dev/null and b/blockchains/smartchain/assets/0xcCc2d670E801570247E9De1841480F52A62Eb6F3/logo.png differ diff --git a/blockchains/smartchain/assets/0xcCe7F9eB881248E04f2975a3Fb3B62631ad9eE37/info.json b/blockchains/smartchain/assets/0xcCe7F9eB881248E04f2975a3Fb3B62631ad9eE37/info.json new file mode 100644 index 00000000..a4b1ff31 --- /dev/null +++ b/blockchains/smartchain/assets/0xcCe7F9eB881248E04f2975a3Fb3B62631ad9eE37/info.json @@ -0,0 +1,11 @@ +{ + "name": "SLAM", + "website": "https://slamtoken.com", + "description": "$SLAM is the governance token of the gambling ecosystem of SLAM. It is a deflationary token that distributes rewards to its holders for holding $SLAM in their wallets.", + "explorer": "https://bscscan.com/token/0xcCe7F9eB881248E04f2975a3Fb3B62631ad9eE37", + "type": "BEP20", + "symbol": "SLAM", + "decimals": 18, + "status": "abandoned", + "id": "0xcCe7F9eB881248E04f2975a3Fb3B62631ad9eE37" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcD1B51b87a8a7137D6421bA5A976225187a26777/info.json b/blockchains/smartchain/assets/0xcD1B51b87a8a7137D6421bA5A976225187a26777/info.json new file mode 100644 index 00000000..d2755746 --- /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 00000000..0a298b95 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 new file mode 100644 index 00000000..5490c251 --- /dev/null +++ b/blockchains/smartchain/assets/0xcD657182A749554fc8487757612F02226355269d/info.json @@ -0,0 +1,29 @@ +{ + "name": "MUSK Token", + "website": "https://muskswap.io", + "description": "MUSK is a token in Binance Smart Chain", + "explorer": "https://bscscan.com/token/0xcD657182A749554fc8487757612F02226355269d", + "type": "BEP20", + "symbol": "MUSK", + "decimals": 18, + "status": "active", + "id": "0xcD657182A749554fc8487757612F02226355269d", + "links": [ + { + "name": "github", + "url": "https://github.com/MuskSwap" + }, + { + "name": "x", + "url": "https://x.com/MUSKSWAPCHANNEL" + }, + { + "name": "medium", + "url": "https://medium.com/@muskswap-official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/muskswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcD657182A749554fc8487757612F02226355269d/logo.png b/blockchains/smartchain/assets/0xcD657182A749554fc8487757612F02226355269d/logo.png new file mode 100644 index 00000000..5220e3ae Binary files /dev/null and b/blockchains/smartchain/assets/0xcD657182A749554fc8487757612F02226355269d/logo.png differ diff --git a/blockchains/smartchain/assets/0xcD6970d5211EfDF2516A4fc73163db7bA812B212/info.json b/blockchains/smartchain/assets/0xcD6970d5211EfDF2516A4fc73163db7bA812B212/info.json new file mode 100644 index 00000000..0df67e2f --- /dev/null +++ b/blockchains/smartchain/assets/0xcD6970d5211EfDF2516A4fc73163db7bA812B212/info.json @@ -0,0 +1,32 @@ +{ + "name": "INRx", + "type": "BEP20", + "symbol": "INRx", + "decimals": 2, + "website": "https://inrx.io/", + "description": "The DEO Governing Stable Currency preserves the value of INRx and guarantees that it will be circulated in the future.", + "explorer": "https://bscscan.com/token/0xcD6970d5211EfDF2516A4fc73163db7bA812B212", + "status": "active", + "id": "0xcD6970d5211EfDF2516A4fc73163db7bA812B212", + "links": [ + { + "name": "x", + "url": "https://x.com/inrxfoundation" + }, + { + "name": "telegram", + "url": "https://t.me/inrxfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/inrx/" + }, + { + "name": "github", + "url": "https://github.com/inrxstablecoin" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcD6970d5211EfDF2516A4fc73163db7bA812B212/logo.png b/blockchains/smartchain/assets/0xcD6970d5211EfDF2516A4fc73163db7bA812B212/logo.png new file mode 100644 index 00000000..75ab0743 Binary files /dev/null and b/blockchains/smartchain/assets/0xcD6970d5211EfDF2516A4fc73163db7bA812B212/logo.png differ diff --git a/blockchains/smartchain/assets/0xcD7C5025753a49f1881B31C48caA7C517Bb46308/info.json b/blockchains/smartchain/assets/0xcD7C5025753a49f1881B31C48caA7C517Bb46308/info.json new file mode 100644 index 00000000..9d9a4234 --- /dev/null +++ b/blockchains/smartchain/assets/0xcD7C5025753a49f1881B31C48caA7C517Bb46308/info.json @@ -0,0 +1,12 @@ +{ + "name": "Raven Protocol", + "website": "https://ravenprotocol.com", + "description": "Raven Protocol is building a network of compute nodes for the purposes of AI training where speed is the key.", + "explorer": "https://bscscan.com/token/0xcD7C5025753a49f1881B31C48caA7C517Bb46308", + "research": "https://github.com/ravenprotocol", + "type": "BEP20", + "symbol": "RAVEN", + "decimals": 18, + "status": "active", + "id": "0xcD7C5025753a49f1881B31C48caA7C517Bb46308" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcD7C5025753a49f1881B31C48caA7C517Bb46308/logo.png b/blockchains/smartchain/assets/0xcD7C5025753a49f1881B31C48caA7C517Bb46308/logo.png new file mode 100644 index 00000000..a308502b Binary files /dev/null and b/blockchains/smartchain/assets/0xcD7C5025753a49f1881B31C48caA7C517Bb46308/logo.png differ diff --git a/blockchains/smartchain/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/info.json b/blockchains/smartchain/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/info.json new file mode 100644 index 00000000..c0e9a666 --- /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 00000000..d290d98d Binary files /dev/null and b/blockchains/smartchain/assets/0xcDf937995A55a9AB551D81b463AC0f7F02795368/logo.png differ diff --git a/blockchains/smartchain/assets/0xcE084e04fc2FE52962aB6E3CC464F80060c1C753/info.json b/blockchains/smartchain/assets/0xcE084e04fc2FE52962aB6E3CC464F80060c1C753/info.json new file mode 100644 index 00000000..a3e2504c --- /dev/null +++ b/blockchains/smartchain/assets/0xcE084e04fc2FE52962aB6E3CC464F80060c1C753/info.json @@ -0,0 +1,11 @@ +{ + "name": "DogeShib", + "website": "https://dogeshiba.org", + "description": "Doge Shiba ($DOGES) is a community driven, fair launched, DeFi token which rewards its users with the ability to earn passive income, without having to lift a paw.", + "explorer": "https://bscscan.com/token/0xcE084e04fc2FE52962aB6E3CC464F80060c1C753", + "type": "BEP20", + "symbol": "Doges", + "decimals": 9, + "status": "active", + "id": "0xcE084e04fc2FE52962aB6E3CC464F80060c1C753" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcE084e04fc2FE52962aB6E3CC464F80060c1C753/logo.png b/blockchains/smartchain/assets/0xcE084e04fc2FE52962aB6E3CC464F80060c1C753/logo.png new file mode 100644 index 00000000..9801d9f1 Binary files /dev/null and b/blockchains/smartchain/assets/0xcE084e04fc2FE52962aB6E3CC464F80060c1C753/logo.png differ diff --git a/blockchains/smartchain/assets/0xcE24439F2D9C6a2289F741120FE202248B666666/info.json b/blockchains/smartchain/assets/0xcE24439F2D9C6a2289F741120FE202248B666666/info.json new file mode 100644 index 00000000..50a43896 --- /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 00000000..5251e9eb 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 00000000..d20d24a9 --- /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 00000000..47c67df2 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 00000000..b4a411b4 --- /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 00000000..b12cf8b9 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 00000000..388f2bbd --- /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 00000000..dc2c27d9 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 00000000..ac929101 --- /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 00000000..dd1a5ed2 Binary files /dev/null and b/blockchains/smartchain/assets/0xcEb29848d04Ad3Cb46E1fE8E45B82ffAc39D797d/logo.png differ diff --git a/blockchains/smartchain/assets/0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63/info.json b/blockchains/smartchain/assets/0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63/info.json new file mode 100644 index 00000000..d5d45853 --- /dev/null +++ b/blockchains/smartchain/assets/0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63/info.json @@ -0,0 +1,15 @@ +{ + "name": "Venus", + "website": "https://venus.io", + "description": "Venus is an algorithmic money market and synthetic stablecoin decentralized finance protocol.", + "explorer": "https://bscscan.com/token/0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63", + "research": "https://research.binance.com/en/projects/venus", + "type": "BEP20", + "symbol": "XVS", + "decimals": 18, + "status": "active", + "id": "0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63/logo.png b/blockchains/smartchain/assets/0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63/logo.png new file mode 100644 index 00000000..008d2243 Binary files /dev/null and b/blockchains/smartchain/assets/0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63/logo.png differ diff --git a/blockchains/smartchain/assets/0xcFDC1e2c7F4B40cFb3632188d6F766309151b7b8/info.json b/blockchains/smartchain/assets/0xcFDC1e2c7F4B40cFb3632188d6F766309151b7b8/info.json new file mode 100644 index 00000000..f1620926 --- /dev/null +++ b/blockchains/smartchain/assets/0xcFDC1e2c7F4B40cFb3632188d6F766309151b7b8/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAFE & SECURE WALLET", + "type": "BEP20", + "symbol": "SAS", + "decimals": 18, + "website": "https://saswallets.com", + "description": "SAFE & SECURE WALLET", + "explorer": "https://bscscan.com/token/0xcFDC1e2c7F4B40cFb3632188d6F766309151b7b8", + "status": "active", + "id": "0xcFDC1e2c7F4B40cFb3632188d6F766309151b7b8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcFDC1e2c7F4B40cFb3632188d6F766309151b7b8/logo.png b/blockchains/smartchain/assets/0xcFDC1e2c7F4B40cFb3632188d6F766309151b7b8/logo.png new file mode 100644 index 00000000..b8c9734d Binary files /dev/null and b/blockchains/smartchain/assets/0xcFDC1e2c7F4B40cFb3632188d6F766309151b7b8/logo.png differ diff --git a/blockchains/smartchain/assets/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f/info.json b/blockchains/smartchain/assets/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f/info.json new file mode 100644 index 00000000..a073227b --- /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 00000000..0a6dc86b Binary files /dev/null and b/blockchains/smartchain/assets/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f/logo.png differ diff --git a/blockchains/smartchain/assets/0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A/info.json b/blockchains/smartchain/assets/0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A/info.json new file mode 100644 index 00000000..da3cda44 --- /dev/null +++ b/blockchains/smartchain/assets/0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Big Oily Orange Boob", + "type": "BEP20", + "symbol": "$BOOB", + "decimals": 9, + "website": "https://coinboob.com", + "description": "Big Oily Orange Boob ($BOOB) is a community token that can be used as a tipping currency for models.$BOOB will also raise funds for breast cancer charities.", + "explorer": "https://bscscan.com/token/0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A", + "status": "active", + "id": "0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A/logo.png b/blockchains/smartchain/assets/0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A/logo.png new file mode 100644 index 00000000..2f7d004f Binary files /dev/null and b/blockchains/smartchain/assets/0xca5f1Bd4B47ECe13a7ca753202F284D9Edd85d8A/logo.png differ diff --git a/blockchains/smartchain/assets/0xca85585A160058e21770e4118A5187a09793b333/info.json b/blockchains/smartchain/assets/0xca85585A160058e21770e4118A5187a09793b333/info.json new file mode 100644 index 00000000..27114b1b --- /dev/null +++ b/blockchains/smartchain/assets/0xca85585A160058e21770e4118A5187a09793b333/info.json @@ -0,0 +1,24 @@ +{ + "name": "TOSKA", + "type": "BEP20", + "symbol": "TSK", + "decimals": 18, + "website": "https://toskacoin.com/", + "description": "Toskaverse", + "explorer": "https://bscscan.com/token/0xca85585A160058e21770e4118A5187a09793b333", + "status": "active", + "id": "0xca85585A160058e21770e4118A5187a09793b333", + "links": [ + { + "name": "youtube", + "url": "https://youtube.com/channel/UCqUv6_LEfVCnEHuFV8CYoKQ" + }, + { + "name": "facebook", + "url": "https://facebook.com/ToskaCoinTSK/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xca85585A160058e21770e4118A5187a09793b333/logo.png b/blockchains/smartchain/assets/0xca85585A160058e21770e4118A5187a09793b333/logo.png new file mode 100644 index 00000000..6d460c84 Binary files /dev/null and b/blockchains/smartchain/assets/0xca85585A160058e21770e4118A5187a09793b333/logo.png differ diff --git a/blockchains/smartchain/assets/0xca861e289f04cB9C67fd6b87ca7EAFa59192f164/info.json b/blockchains/smartchain/assets/0xca861e289f04cB9C67fd6b87ca7EAFa59192f164/info.json new file mode 100644 index 00000000..a10a0f4c --- /dev/null +++ b/blockchains/smartchain/assets/0xca861e289f04cB9C67fd6b87ca7EAFa59192f164/info.json @@ -0,0 +1,36 @@ +{ + "name": "UnityMeta Token", + "type": "BEP20", + "symbol": "UMT", + "decimals": 18, + "website": "https://unitymeta.finance", + "description": "UnityMeta Token is a company that aims to bring innovation and novelty to the Metaverse, utilities, nft, sports, gaming, and crypto trading sector through Blockchain technology", + "explorer": "https://bscscan.com/token/0xca861e289f04cB9C67fd6b87ca7EAFa59192f164", + "status": "active", + "id": "0xca861e289f04cB9C67fd6b87ca7EAFa59192f164", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unitymeta" + }, + { + "name": "x", + "url": "https://x.com/unitymetatoken" + }, + { + "name": "github", + "url": "https://github.com/unitymetatoken" + }, + { + "name": "telegram", + "url": "https://t.me/unitymetatoken" + }, + { + "name": "whitepaper", + "url": "https://unitymeta.finance/UnityMeta-Whitepaper.pdf" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xca861e289f04cB9C67fd6b87ca7EAFa59192f164/logo.png b/blockchains/smartchain/assets/0xca861e289f04cB9C67fd6b87ca7EAFa59192f164/logo.png new file mode 100644 index 00000000..6e2f949e Binary files /dev/null and b/blockchains/smartchain/assets/0xca861e289f04cB9C67fd6b87ca7EAFa59192f164/logo.png differ diff --git a/blockchains/smartchain/assets/0xcaF5191fc480F43e4DF80106c7695ECA56E48B18/info.json b/blockchains/smartchain/assets/0xcaF5191fc480F43e4DF80106c7695ECA56E48B18/info.json new file mode 100644 index 00000000..73acfec1 --- /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 00000000..8c78552f Binary files /dev/null and b/blockchains/smartchain/assets/0xcaF5191fc480F43e4DF80106c7695ECA56E48B18/logo.png differ diff --git a/blockchains/smartchain/assets/0xcb2B25e783A414f0d20A65aFa741C51b1Ad84c49/info.json b/blockchains/smartchain/assets/0xcb2B25e783A414f0d20A65aFa741C51b1Ad84c49/info.json new file mode 100644 index 00000000..b1dffbf4 --- /dev/null +++ b/blockchains/smartchain/assets/0xcb2B25e783A414f0d20A65aFa741C51b1Ad84c49/info.json @@ -0,0 +1,21 @@ +{ + "name": "Starpunk", + "type": "BEP20", + "symbol": "SRP", + "decimals": 18, + "website": "https://starpunk.io/", + "description": "Starpunk is a NFT Gaming Platform which is the all-in-one, decentralized incubator ecosystem for NFT Gaming Startups. We empower game developers, investors, and players together to build a blockchain-based economy, accelerate the introduction of new NFT Games into the market through our Game Launchpad, and allow projects incubated by StarPunk to launch their own white-labelled NFT Marketplace.", + "explorer": "https://bscscan.com/token/0xcb2B25e783A414f0d20A65aFa741C51b1Ad84c49", + "status": "active", + "id": "0xcb2B25e783A414f0d20A65aFa741C51b1Ad84c49", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/starpunk/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/starpunk" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcb2B25e783A414f0d20A65aFa741C51b1Ad84c49/logo.png b/blockchains/smartchain/assets/0xcb2B25e783A414f0d20A65aFa741C51b1Ad84c49/logo.png new file mode 100644 index 00000000..ad318c6d Binary files /dev/null and b/blockchains/smartchain/assets/0xcb2B25e783A414f0d20A65aFa741C51b1Ad84c49/logo.png differ diff --git a/blockchains/smartchain/assets/0xcb74695a4343dEa214CE9C31d40D59c6f6304444/info.json b/blockchains/smartchain/assets/0xcb74695a4343dEa214CE9C31d40D59c6f6304444/info.json new file mode 100644 index 00000000..ddd2936c --- /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/0xcbcCf14B051947BDcd1E20b77015208a1AD5EA25/info.json b/blockchains/smartchain/assets/0xcbcCf14B051947BDcd1E20b77015208a1AD5EA25/info.json new file mode 100644 index 00000000..2a6f3686 --- /dev/null +++ b/blockchains/smartchain/assets/0xcbcCf14B051947BDcd1E20b77015208a1AD5EA25/info.json @@ -0,0 +1,11 @@ +{ + "name": "Promise", + "type": "BEP20", + "symbol": "PROMISE", + "decimals": 9, + "website": "https://promisetoken.com", + "description": "Promise is the world's first BEP20 token based on trust. Our token guarantees a continuously increasing price because everyone who holds the Promise token makes a promise to hold it for at least 15 days.", + "explorer": "https://bscscan.com/token/0xcbcCf14B051947BDcd1E20b77015208a1AD5EA25", + "status": "active", + "id": "0xcbcCf14B051947BDcd1E20b77015208a1AD5EA25" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcbcCf14B051947BDcd1E20b77015208a1AD5EA25/logo.png b/blockchains/smartchain/assets/0xcbcCf14B051947BDcd1E20b77015208a1AD5EA25/logo.png new file mode 100644 index 00000000..19e09e45 Binary files /dev/null and b/blockchains/smartchain/assets/0xcbcCf14B051947BDcd1E20b77015208a1AD5EA25/logo.png differ diff --git a/blockchains/smartchain/assets/0xcc10c8AfD683c5AA86B1d170d75B555bce5a2C37/info.json b/blockchains/smartchain/assets/0xcc10c8AfD683c5AA86B1d170d75B555bce5a2C37/info.json new file mode 100644 index 00000000..f1f9208a --- /dev/null +++ b/blockchains/smartchain/assets/0xcc10c8AfD683c5AA86B1d170d75B555bce5a2C37/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xpose", + "website": "https://xposeprotocol.com", + "description": "We created $Xpose to provide our holders with leading tokenomics within the DeFi space.", + "explorer": "https://bscscan.com/token/0xcc10c8AfD683c5AA86B1d170d75B555bce5a2C37", + "type": "BEP20", + "symbol": "Xpose", + "decimals": 9, + "status": "active", + "id": "0xcc10c8AfD683c5AA86B1d170d75B555bce5a2C37" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcc10c8AfD683c5AA86B1d170d75B555bce5a2C37/logo.png b/blockchains/smartchain/assets/0xcc10c8AfD683c5AA86B1d170d75B555bce5a2C37/logo.png new file mode 100644 index 00000000..c1a923b8 Binary files /dev/null and b/blockchains/smartchain/assets/0xcc10c8AfD683c5AA86B1d170d75B555bce5a2C37/logo.png differ diff --git a/blockchains/smartchain/assets/0xcc13194c6be156BAf0FBF3dc93a0eE8cA95fb1d9/info.json b/blockchains/smartchain/assets/0xcc13194c6be156BAf0FBF3dc93a0eE8cA95fb1d9/info.json new file mode 100644 index 00000000..aa42ba75 --- /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 00000000..4953b858 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 new file mode 100644 index 00000000..349fd9ad --- /dev/null +++ b/blockchains/smartchain/assets/0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E/info.json @@ -0,0 +1,25 @@ +{ + "name": "Crow Token", + "website": "https://crowfinance.net/", + "description": "CrowFinance an Evolution Yield Farming and Yield Optimizer on Binance Smart Chain with daytime and nighttime burn mechanism system.", + "explorer": "https://bscscan.com/token/0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E", + "type": "BEP20", + "symbol": "CROW", + "decimals": 18, + "status": "active", + "id": "0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E", + "links": [ + { + "name": "x", + "url": "https://x.com/crowfinance" + }, + { + "name": "telegram", + "url": "https://t.me/CrowFinance" + }, + { + "name": "medium", + "url": "https://medium.com/@crowfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E/logo.png b/blockchains/smartchain/assets/0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E/logo.png new file mode 100644 index 00000000..5f30c74e Binary files /dev/null and b/blockchains/smartchain/assets/0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E/logo.png differ diff --git a/blockchains/smartchain/assets/0xcc9b175E4b88a22543C44F1cC65B73f63b0D4EfE/info.json b/blockchains/smartchain/assets/0xcc9b175E4b88a22543C44F1cC65B73f63b0D4EfE/info.json new file mode 100644 index 00000000..901a45b7 --- /dev/null +++ b/blockchains/smartchain/assets/0xcc9b175E4b88a22543C44F1cC65B73f63b0D4EfE/info.json @@ -0,0 +1,11 @@ +{ + "name": "BabyShark", + "type": "BEP20", + "symbol": "SHARK", + "decimals": 9, + "website": "https://babysharktoken.com/", + "description": "BabyShark is a token designed to help clean the ocean by using decentralized fundraising. With it's unique tokenomics, BabyShark aims to be the first charity token with zero selling pressure from donations.", + "explorer": "https://bscscan.com/token/0xcc9b175E4b88a22543C44F1cC65B73f63b0D4EfE", + "status": "active", + "id": "0xcc9b175E4b88a22543C44F1cC65B73f63b0D4EfE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcc9b175E4b88a22543C44F1cC65B73f63b0D4EfE/logo.png b/blockchains/smartchain/assets/0xcc9b175E4b88a22543C44F1cC65B73f63b0D4EfE/logo.png new file mode 100644 index 00000000..a656f3ed Binary files /dev/null and b/blockchains/smartchain/assets/0xcc9b175E4b88a22543C44F1cC65B73f63b0D4EfE/logo.png differ diff --git a/blockchains/smartchain/assets/0xccE7162344Dc758e4715079C8Abc981dc72273B9/info.json b/blockchains/smartchain/assets/0xccE7162344Dc758e4715079C8Abc981dc72273B9/info.json new file mode 100644 index 00000000..e579e7c0 --- /dev/null +++ b/blockchains/smartchain/assets/0xccE7162344Dc758e4715079C8Abc981dc72273B9/info.json @@ -0,0 +1,17 @@ +{ + "name": "CRUDE OIL BRENT", + "type": "BEP20", + "symbol": "OIL", + "decimals": 18, + "website": "https://linktr.ee/zedxion", + "description": "The right provider can make a big difference when it comes to building your trading strategy", + "explorer": "https://bscscan.com/token/0xcce7162344dc758e4715079c8abc981dc72273b9", + "status": "active", + "id": "0xccE7162344Dc758e4715079C8Abc981dc72273B9", + "links": [ + { + "name": "x", + "url": "https://x.com/ZedxionC" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xccE7162344Dc758e4715079C8Abc981dc72273B9/logo.png b/blockchains/smartchain/assets/0xccE7162344Dc758e4715079C8Abc981dc72273B9/logo.png new file mode 100644 index 00000000..56ebcd22 Binary files /dev/null and b/blockchains/smartchain/assets/0xccE7162344Dc758e4715079C8Abc981dc72273B9/logo.png differ diff --git a/blockchains/smartchain/assets/0xccdF812aa7cdee4fF7cb89546d7f1718bb8d46E1/info.json b/blockchains/smartchain/assets/0xccdF812aa7cdee4fF7cb89546d7f1718bb8d46E1/info.json new file mode 100644 index 00000000..350440b1 --- /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 00000000..c9fed39c 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 00000000..1e8ba78c --- /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 00000000..8c841bb0 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 new file mode 100644 index 00000000..9e17f3d5 --- /dev/null +++ b/blockchains/smartchain/assets/0xce4A4A15FcCD532eAd67BE3ECf7e6122c61D06bb/info.json @@ -0,0 +1,29 @@ +{ + "name": "ThunderCake Token", + "website": "https://www.thundercake.app/", + "description": "The world 1st double reward reflection token using the power of 80% CAKE / 20% THOREUM.", + "explorer": "https://bscscan.com/token/0xce4A4A15FcCD532eAd67BE3ECf7e6122c61D06bb", + "type": "BEP20", + "symbol": "THUNDERCAKE", + "decimals": 18, + "status": "active", + "id": "0xce4A4A15FcCD532eAd67BE3ECf7e6122c61D06bb", + "links": [ + { + "name": "x", + "url": "https://x.com/ThunderCakeApp" + }, + { + "name": "telegram", + "url": "https://t.me/ThunderCakeOfficial" + }, + { + "name": "medium", + "url": "https://thundercake.medium.com" + }, + { + "name": "docs", + "url": "https://docs.thundercake.app" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xce4A4A15FcCD532eAd67BE3ECf7e6122c61D06bb/logo.png b/blockchains/smartchain/assets/0xce4A4A15FcCD532eAd67BE3ECf7e6122c61D06bb/logo.png new file mode 100644 index 00000000..60c9741c Binary files /dev/null and b/blockchains/smartchain/assets/0xce4A4A15FcCD532eAd67BE3ECf7e6122c61D06bb/logo.png differ diff --git a/blockchains/smartchain/assets/0xce666D0e507C5F2Afe0671Ee29A99cfa97954c48/info.json b/blockchains/smartchain/assets/0xce666D0e507C5F2Afe0671Ee29A99cfa97954c48/info.json new file mode 100644 index 00000000..8643af99 --- /dev/null +++ b/blockchains/smartchain/assets/0xce666D0e507C5F2Afe0671Ee29A99cfa97954c48/info.json @@ -0,0 +1,11 @@ +{ + "name": "Addax", + "website": "https://addaxtoken.com/", + "description": "Addax is a crypto currency with a purpose to tackle real world problems such as climate change, famine, public healthcare, poverty, children in need, education, gender inequality, marine conservation and wildlife conservation through every transaction.", + "explorer": "https://bscscan.com/token/0xce666d0e507c5f2afe0671ee29a99cfa97954c48", + "type": "BEP20", + "symbol": "ADX", + "decimals": 9, + "status": "active", + "id": "0xce666D0e507C5F2Afe0671Ee29A99cfa97954c48" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xce666D0e507C5F2Afe0671Ee29A99cfa97954c48/logo.png b/blockchains/smartchain/assets/0xce666D0e507C5F2Afe0671Ee29A99cfa97954c48/logo.png new file mode 100644 index 00000000..04996fba Binary files /dev/null and b/blockchains/smartchain/assets/0xce666D0e507C5F2Afe0671Ee29A99cfa97954c48/logo.png differ diff --git a/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/info.json b/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/info.json new file mode 100644 index 00000000..75e321ec --- /dev/null +++ b/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/info.json @@ -0,0 +1,37 @@ +{ + "name": "ZFMCOIN", + "website": "https://www.zfmcoin.com/", + "description": "ZFM COIN is a Binance Smart Chain based Token, with burn function, high security, low fees, fast transaction and eco friendly. ZFM COIN Cross-chain Asset Locked by Smart Contract. Data Security Safeguarded by Binance Smart Chain. ZFM COIN Token has a burn function, which means that over time, the number of tokens will decrease.", + "explorer": "https://bscscan.com/token/0xce6b8B2787C657f1b98b7A66B5B63178863fd719", + "research": "https://latoken.com/ieo/ZFM?utm_source=telegram&utm_medium=socials&utm_campaign=zfm_ieo_round1&utm_id=zfm_ieo&utm_content=telegram_post", + "symbol": "ZFM", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xce6b8B2787C657f1b98b7A66B5B63178863fd719", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/zfmcoin/" + }, + { + "name": "x", + "url": "https://x.com/zfmcoin" + }, + { + "name": "telegram", + "url": "https://t.me/ZFMCOIN_ANNOUNCEMENT" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCxzLrDLSO1OgaNXoGoy1McQ" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1Cti8HUp7WWcabQVt_jqueXA07aCOUz1q/view?usp=sharing" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/logo.png b/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/logo.png new file mode 100644 index 00000000..f6949869 Binary files /dev/null and b/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/logo.png differ diff --git a/blockchains/smartchain/assets/0xcea59DCE6A6d73a24e6d6944CFaBc330814c098A/info.json b/blockchains/smartchain/assets/0xcea59DCE6A6d73a24e6d6944CFaBc330814c098A/info.json new file mode 100644 index 00000000..32cff18c --- /dev/null +++ b/blockchains/smartchain/assets/0xcea59DCE6A6d73a24e6d6944CFaBc330814c098A/info.json @@ -0,0 +1,25 @@ +{ + "name": "TORG", + "website": "https://torg.to/intl/about", + "description": "A sustainable, completely decentralized, and utility-focused cryptocurrency, aimed at global human development.", + "explorer": "https://bscscan.com/token/0xcea59DCE6A6d73a24e6d6944CFaBc330814c098A", + "type": "BEP20", + "symbol": "TORG", + "decimals": 18, + "status": "active", + "id": "0xcea59DCE6A6d73a24e6d6944CFaBc330814c098A", + "links": [ + { + "name": "telegram", + "url": "https://t.me/TORGTogether" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/torg/" + }, + { + "name": "x", + "url": "https://x.com/TorgTogether" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcea59DCE6A6d73a24e6d6944CFaBc330814c098A/logo.png b/blockchains/smartchain/assets/0xcea59DCE6A6d73a24e6d6944CFaBc330814c098A/logo.png new file mode 100644 index 00000000..d0fedd49 Binary files /dev/null and b/blockchains/smartchain/assets/0xcea59DCE6A6d73a24e6d6944CFaBc330814c098A/logo.png differ diff --git a/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/info.json b/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/info.json new file mode 100644 index 00000000..638752f4 --- /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 00000000..19ee44e5 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 00000000..ea77376e --- /dev/null +++ b/blockchains/smartchain/assets/0xcf9CAf83053213c44dd7027Db3e1E4aC98E55f8f/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized)", + "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 00000000..8adf5788 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 new file mode 100644 index 00000000..1d8cb390 --- /dev/null +++ b/blockchains/smartchain/assets/0xcfBb1BfA710cb2ebA070CC3beC0C35226FeA4BAF/info.json @@ -0,0 +1,29 @@ +{ + "name": "HeroFiEgg", + "type": "BEP20", + "symbol": "HEROEGG", + "decimals": 18, + "website": "https://www.herofi.io/", + "description": "HeroFi is a mobile aRPG game in which players can earn tokens through PvP/PvE battles between Heroes. 100,000 $HEROEGG will hatch a special character NFT called Genesis Hero that has a gender (either male or female) and a star rating (from three to six).", + "explorer": "https://bscscan.com/token/0xcfBb1BfA710cb2ebA070CC3beC0C35226FeA4BAF", + "status": "active", + "id": "0xcfBb1BfA710cb2ebA070CC3beC0C35226FeA4BAF", + "links": [ + { + "name": "x", + "url": "https://x.com/HeroFiio" + }, + { + "name": "telegram", + "url": "https://t.me/herofiofficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/herofiann" + }, + { + "name": "facebook", + "url": "https://facebook.com/herofiio" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcfBb1BfA710cb2ebA070CC3beC0C35226FeA4BAF/logo.png b/blockchains/smartchain/assets/0xcfBb1BfA710cb2ebA070CC3beC0C35226FeA4BAF/logo.png new file mode 100644 index 00000000..2f3f4190 Binary files /dev/null and b/blockchains/smartchain/assets/0xcfBb1BfA710cb2ebA070CC3beC0C35226FeA4BAF/logo.png differ diff --git a/blockchains/smartchain/assets/0xd07e82440A395f3F3551b42dA9210CD1Ef4f8B24/info.json b/blockchains/smartchain/assets/0xd07e82440A395f3F3551b42dA9210CD1Ef4f8B24/info.json new file mode 100644 index 00000000..1f68b79f --- /dev/null +++ b/blockchains/smartchain/assets/0xd07e82440A395f3F3551b42dA9210CD1Ef4f8B24/info.json @@ -0,0 +1,77 @@ +{ + "name": "Parallel Token", + "type": "BEP20", + "symbol": "PRL", + "decimals": 18, + "website": "https://theparallel.io", + "description": "The Parallel takes some of the greatest ideas from the real world and puts them to work in a magical world, The Parallel Metaverse where everyone can have fun and find happiness.", + "explorer": "https://bscscan.com/token/0xd07e82440A395f3F3551b42dA9210CD1Ef4f8B24", + "status": "active", + "id": "0xd07e82440A395f3F3551b42dA9210CD1Ef4f8B24", + "links": [ + { + "name": "x", + "url": "https://x.com/theparallel_io" + }, + { + "name": "github", + "url": "https://github.com/theparalleldotio" + }, + { + "name": "telegram", + "url": "https://t.me/theparallelcommunity" + }, + { + "name": "telegram_news", + "url": "https://t.me/theparallelofficial" + }, + { + "name": "blog", + "url": "https://docs.theparallel.io/" + }, + { + "name": "docs", + "url": "https://docs.theparallel.io/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ex6SckmWqp" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/theparallel_io/" + }, + { + "name": "forum", + "url": "https://discord.com/invite/ex6SckmWqp" + }, + { + "name": "whitepaper", + "url": "https://docsend.com/view/ncmmsf2qq8ixnq2f" + }, + { + "name": "medium", + "url": "https://medium.com/@theparallel" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCKvlkWCeNDEgxa41k1wBZYA" + }, + { + "name": "facebook", + "url": "https://facebook.com/theparallel.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-parallel/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-parallel" + }, + { + "name": "source_code", + "url": "https://github.com/theparalleldotio" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd07e82440A395f3F3551b42dA9210CD1Ef4f8B24/logo.png b/blockchains/smartchain/assets/0xd07e82440A395f3F3551b42dA9210CD1Ef4f8B24/logo.png new file mode 100644 index 00000000..8b996ddc Binary files /dev/null and b/blockchains/smartchain/assets/0xd07e82440A395f3F3551b42dA9210CD1Ef4f8B24/logo.png differ diff --git a/blockchains/smartchain/assets/0xd0840D5F67206f865AeE7cCE075bd4484cD3cC81/info.json b/blockchains/smartchain/assets/0xd0840D5F67206f865AeE7cCE075bd4484cD3cC81/info.json new file mode 100644 index 00000000..7e3a0928 --- /dev/null +++ b/blockchains/smartchain/assets/0xd0840D5F67206f865AeE7cCE075bd4484cD3cC81/info.json @@ -0,0 +1,11 @@ +{ + "name": "Afen Blockchain", + "website": "https://afengroup.com", + "description": "Afen Blockchain is Revolutionizing Opportunities Through Blockchain", + "explorer": "https://bscscan.com/token/0xd0840d5f67206f865aee7cce075bd4484cd3cc81", + "type": "BEP20", + "symbol": "AFEN", + "decimals": 18, + "status": "active", + "id": "0xd0840D5F67206f865AeE7cCE075bd4484cD3cC81" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd0840D5F67206f865AeE7cCE075bd4484cD3cC81/logo.png b/blockchains/smartchain/assets/0xd0840D5F67206f865AeE7cCE075bd4484cD3cC81/logo.png new file mode 100644 index 00000000..6fa4b4f4 Binary files /dev/null and b/blockchains/smartchain/assets/0xd0840D5F67206f865AeE7cCE075bd4484cD3cC81/logo.png differ diff --git a/blockchains/smartchain/assets/0xd09092B1C9C495Eb7e0A043927492Cf2DEE68a86/info.json b/blockchains/smartchain/assets/0xd09092B1C9C495Eb7e0A043927492Cf2DEE68a86/info.json new file mode 100644 index 00000000..8ec3bedd --- /dev/null +++ b/blockchains/smartchain/assets/0xd09092B1C9C495Eb7e0A043927492Cf2DEE68a86/info.json @@ -0,0 +1,21 @@ +{ + "name": "CxCoin", + "type": "BEP20", + "symbol": "CX", + "decimals": 9, + "website": "https://cxcoin.net/", + "description": "Cxcoin is building a platform to allow streamers and content creators a safe and easy method of receiving support through Cryptocurrencies along with its auto Buyback system.", + "explorer": "https://bscscan.com/token/0xd09092B1C9C495Eb7e0A043927492Cf2DEE68a86", + "status": "active", + "id": "0xd09092B1C9C495Eb7e0A043927492Cf2DEE68a86", + "links": [ + { + "name": "x", + "url": "https://x.com/CoinCx" + }, + { + "name": "telegram", + "url": "https://t.me/CxCoinChat" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd09092B1C9C495Eb7e0A043927492Cf2DEE68a86/logo.png b/blockchains/smartchain/assets/0xd09092B1C9C495Eb7e0A043927492Cf2DEE68a86/logo.png new file mode 100644 index 00000000..884cc165 Binary files /dev/null and b/blockchains/smartchain/assets/0xd09092B1C9C495Eb7e0A043927492Cf2DEE68a86/logo.png differ diff --git a/blockchains/smartchain/assets/0xd09F7B75b9659b864C6F82bb00Ff096f9D277998/info.json b/blockchains/smartchain/assets/0xd09F7B75b9659b864C6F82bb00Ff096f9D277998/info.json new file mode 100644 index 00000000..05cc4de8 --- /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 00000000..fd46efcd 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 00000000..feb27bc8 --- /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 00000000..eaa561f8 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 new file mode 100644 index 00000000..d3fd3902 --- /dev/null +++ b/blockchains/smartchain/assets/0xd0c4BC1B89BbD105EeCb7EBa3f13E7648c0De38F/info.json @@ -0,0 +1,52 @@ +{ + "name": "WEB3 Inu", + "type": "BEP20", + "symbol": "WEB3", + "decimals": 9, + "website": "https://web3inu.org", + "description": "Web3 Inu is a Rent-To-Earn token concept based in real world data interacting in two different layers: On-Chain and Off-Chain.", + "explorer": "https://bscscan.com/token/0xd0c4BC1B89BbD105EeCb7EBa3f13E7648c0De38F", + "status": "active", + "id": "0xd0c4BC1B89BbD105EeCb7EBa3f13E7648c0De38F", + "tags": [ + "gamefi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/web3_inu" + }, + { + "name": "github", + "url": "https://github.com/web3inu" + }, + { + "name": "telegram", + "url": "https://t.me/WEB3_inu" + }, + { + "name": "telegram_news", + "url": "https://t.me/web3inu_news" + }, + { + "name": "whitepaper", + "url": "https://web3inu.org/assets/Whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@web3_inu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/web3-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/web3-inu" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xd0c4bc1b89bbd105eecb7eba3f13e7648c0de38f#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd0c4BC1B89BbD105EeCb7EBa3f13E7648c0De38F/logo.png b/blockchains/smartchain/assets/0xd0c4BC1B89BbD105EeCb7EBa3f13E7648c0De38F/logo.png new file mode 100644 index 00000000..a00b8dfb Binary files /dev/null and b/blockchains/smartchain/assets/0xd0c4BC1B89BbD105EeCb7EBa3f13E7648c0De38F/logo.png differ diff --git a/blockchains/smartchain/assets/0xd1061342B3A119Ad2247c79235ECbd51997ed8eD/info.json b/blockchains/smartchain/assets/0xd1061342B3A119Ad2247c79235ECbd51997ed8eD/info.json new file mode 100644 index 00000000..26299614 --- /dev/null +++ b/blockchains/smartchain/assets/0xd1061342B3A119Ad2247c79235ECbd51997ed8eD/info.json @@ -0,0 +1,11 @@ +{ + "name": "BabyFeg", + "website": "https://www.babyfeg.com", + "description": "Baby Feg Token is an interface token and provides back-end support to new DeFi projects and tokens.", + "explorer": "https://bscscan.com/token/0xd1061342B3A119Ad2247c79235ECbd51997ed8eD", + "type": "BEP20", + "symbol": "BFG", + "decimals": 9, + "status": "active", + "id": "0xd1061342B3A119Ad2247c79235ECbd51997ed8eD" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd1061342B3A119Ad2247c79235ECbd51997ed8eD/logo.png b/blockchains/smartchain/assets/0xd1061342B3A119Ad2247c79235ECbd51997ed8eD/logo.png new file mode 100644 index 00000000..edc6d3be Binary files /dev/null and b/blockchains/smartchain/assets/0xd1061342B3A119Ad2247c79235ECbd51997ed8eD/logo.png differ diff --git a/blockchains/smartchain/assets/0xd10Fe9d371C22416df34340287cd5D9029842Fc3/info.json b/blockchains/smartchain/assets/0xd10Fe9d371C22416df34340287cd5D9029842Fc3/info.json new file mode 100644 index 00000000..4520d6f9 --- /dev/null +++ b/blockchains/smartchain/assets/0xd10Fe9d371C22416df34340287cd5D9029842Fc3/info.json @@ -0,0 +1,48 @@ +{ + "name": "GalaxyHeroes", + "type": "BEP20", + "symbol": "GHC", + "decimals": 18, + "website": "https://galaxyheroes.com", + "description": "Galaxy Heroes Coin is more than just a token. It will have a never seen before NFT platform and gaming app. Be a hero, a Galaxy Hero!", + "explorer": "https://bscscan.com/token/0xd10Fe9d371C22416df34340287cd5D9029842Fc3", + "status": "active", + "id": "0xd10Fe9d371C22416df34340287cd5D9029842Fc3", + "links": [ + { + "name": "x", + "url": "https://x.com/GalaxyHeroesGHC" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/galaxy-heroes-coin" + }, + { + "name": "github", + "url": "https://github.com/sumner770/GalaxyHeroesCoin" + }, + { + "name": "telegram", + "url": "https://t.me/galaxyheroescoin" + }, + { + "name": "discord", + "url": "https://discord.com/galaxyheroes" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/galaxyheroescoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/GalaxyHeroesCoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC0XEhzirmXN0AZQIhoR_Vzg" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd10Fe9d371C22416df34340287cd5D9029842Fc3/logo.png b/blockchains/smartchain/assets/0xd10Fe9d371C22416df34340287cd5D9029842Fc3/logo.png new file mode 100644 index 00000000..02a1cd44 Binary files /dev/null and b/blockchains/smartchain/assets/0xd10Fe9d371C22416df34340287cd5D9029842Fc3/logo.png differ diff --git a/blockchains/smartchain/assets/0xd15C444F1199Ae72795eba15E8C1db44E47abF62/info.json b/blockchains/smartchain/assets/0xd15C444F1199Ae72795eba15E8C1db44E47abF62/info.json new file mode 100644 index 00000000..18ba85b1 --- /dev/null +++ b/blockchains/smartchain/assets/0xd15C444F1199Ae72795eba15E8C1db44E47abF62/info.json @@ -0,0 +1,11 @@ +{ + "name": "TEN Finance", + "website": "https://ten.finance/", + "description": "TEN is a yield aggregator / optimizer that simplifies staking and yield farming with the most liquid Binance Smart Chain Liquidity Pools.", + "explorer": "https://bscscan.com/token/0xd15C444F1199Ae72795eba15E8C1db44E47abF62", + "type": "BEP20", + "symbol": "TENFI", + "decimals": 18, + "status": "active", + "id": "0xd15C444F1199Ae72795eba15E8C1db44E47abF62" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd15C444F1199Ae72795eba15E8C1db44E47abF62/logo.png b/blockchains/smartchain/assets/0xd15C444F1199Ae72795eba15E8C1db44E47abF62/logo.png new file mode 100644 index 00000000..2eda1886 Binary files /dev/null and b/blockchains/smartchain/assets/0xd15C444F1199Ae72795eba15E8C1db44E47abF62/logo.png differ diff --git a/blockchains/smartchain/assets/0xd17479997F34dd9156Deef8F95A52D81D265be9c/info.json b/blockchains/smartchain/assets/0xd17479997F34dd9156Deef8F95A52D81D265be9c/info.json new file mode 100644 index 00000000..b6847662 --- /dev/null +++ b/blockchains/smartchain/assets/0xd17479997F34dd9156Deef8F95A52D81D265be9c/info.json @@ -0,0 +1,24 @@ +{ + "name": "Decentralized USDOLD", + "symbol": "USDDOLD", + "type": "BEP20", + "decimals": 18, + "description": "USDD is a fully decentralized algorithmic stablecoin", + "website": "https://usdd.io/", + "explorer": "https://bscscan.com/token/0xd17479997F34dd9156Deef8F95A52D81D265be9c", + "status": "active", + "id": "0xd17479997F34dd9156Deef8F95A52D81D265be9c", + "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/0xd17479997F34dd9156Deef8F95A52D81D265be9c/logo.png b/blockchains/smartchain/assets/0xd17479997F34dd9156Deef8F95A52D81D265be9c/logo.png new file mode 100644 index 00000000..b17bf63f Binary files /dev/null and b/blockchains/smartchain/assets/0xd17479997F34dd9156Deef8F95A52D81D265be9c/logo.png differ diff --git a/blockchains/smartchain/assets/0xd1948C71362386453Feb698BC5d902ABba38598F/info.json b/blockchains/smartchain/assets/0xd1948C71362386453Feb698BC5d902ABba38598F/info.json new file mode 100644 index 00000000..85312bd3 --- /dev/null +++ b/blockchains/smartchain/assets/0xd1948C71362386453Feb698BC5d902ABba38598F/info.json @@ -0,0 +1,11 @@ +{ + "name": "UniDoge", + "website": "http://unidoge.org", + "description": "100% OF MERCH DONATIONS TO yield COLLABORATIVE.", + "explorer": "https://bscscan.com/token/0xd1948C71362386453Feb698BC5d902ABba38598F", + "type": "BEP20", + "symbol": "UDOGE", + "decimals": 9, + "status": "active", + "id": "0xd1948C71362386453Feb698BC5d902ABba38598F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd1948C71362386453Feb698BC5d902ABba38598F/logo.png b/blockchains/smartchain/assets/0xd1948C71362386453Feb698BC5d902ABba38598F/logo.png new file mode 100644 index 00000000..f788b79f Binary files /dev/null and b/blockchains/smartchain/assets/0xd1948C71362386453Feb698BC5d902ABba38598F/logo.png differ diff --git a/blockchains/smartchain/assets/0xd1ECFDD45c49057479c4Ca95E045855370bC4F5B/info.json b/blockchains/smartchain/assets/0xd1ECFDD45c49057479c4Ca95E045855370bC4F5B/info.json new file mode 100644 index 00000000..91b0707c --- /dev/null +++ b/blockchains/smartchain/assets/0xd1ECFDD45c49057479c4Ca95E045855370bC4F5B/info.json @@ -0,0 +1,29 @@ +{ + "name": "Griffin Art", + "website": "https://griffinart.finance/", + "description": "A Game Platform integrated with a next-generation NFT marketplace.", + "explorer": "https://bscscan.com/token/0xd1ECFDD45c49057479c4Ca95E045855370bC4F5B", + "type": "BEP20", + "symbol": "GART", + "decimals": 9, + "status": "active", + "id": "0xd1ECFDD45c49057479c4Ca95E045855370bC4F5B", + "links": [ + { + "name": "x", + "url": "https://x.com/griffinnftart" + }, + { + "name": "whitepaper", + "url": "https://griffinart.finance/griffinart-whitepaper.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/griffinart" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/GriffinNftArt/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd1ECFDD45c49057479c4Ca95E045855370bC4F5B/logo.png b/blockchains/smartchain/assets/0xd1ECFDD45c49057479c4Ca95E045855370bC4F5B/logo.png new file mode 100644 index 00000000..2e04a947 Binary files /dev/null and b/blockchains/smartchain/assets/0xd1ECFDD45c49057479c4Ca95E045855370bC4F5B/logo.png differ diff --git a/blockchains/smartchain/assets/0xd1F799cB9f5d0a02951b0755BeCeD6C43882712F/info.json b/blockchains/smartchain/assets/0xd1F799cB9f5d0a02951b0755BeCeD6C43882712F/info.json new file mode 100644 index 00000000..251c2400 --- /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 00000000..d57bb66b 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 00000000..3af47506 --- /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 00000000..22f02541 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 new file mode 100644 index 00000000..48e1f833 --- /dev/null +++ b/blockchains/smartchain/assets/0xd21d29B38374528675C34936bf7d5Dd693D2a577/info.json @@ -0,0 +1,28 @@ +{ + "name": "Parsiq Token", + "type": "BEP20", + "symbol": "PRQ", + "decimals": 18, + "website": "https://www.parsiq.net/", + "description": "A Blockchain monitoring and compliance platform.", + "explorer": "https://bscscan.com/token/0xd21d29b38374528675c34936bf7d5dd693d2a577", + "status": "active", + "id": "0xd21d29B38374528675C34936bf7d5Dd693D2a577", + "links": [ + { + "name": "x", + "url": "https://x.com/parsiq_net" + }, + { + "name": "telegram", + "url": "https://t.me/parsiq_group" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/parsiq/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd21d29B38374528675C34936bf7d5Dd693D2a577/logo.png b/blockchains/smartchain/assets/0xd21d29B38374528675C34936bf7d5Dd693D2a577/logo.png new file mode 100644 index 00000000..87014c4b Binary files /dev/null and b/blockchains/smartchain/assets/0xd21d29B38374528675C34936bf7d5Dd693D2a577/logo.png differ diff --git a/blockchains/smartchain/assets/0xd226d8170EE38793430C7Dec6903df4B818BB74C/info.json b/blockchains/smartchain/assets/0xd226d8170EE38793430C7Dec6903df4B818BB74C/info.json new file mode 100644 index 00000000..41212e4d --- /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 00000000..02eec79b 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 new file mode 100644 index 00000000..0b335d33 --- /dev/null +++ b/blockchains/smartchain/assets/0xd2359c576632234D1354B20Bf51B0277Be20C81e/info.json @@ -0,0 +1,36 @@ +{ + "name": "GameGuru", + "type": "BEP20", + "symbol": "GGT", + "decimals": 18, + "website": "http://gameguru.gg", + "description": "GameGuru aims to be the first crypto marketplace for eGift cards and digital gaming products.", + "explorer": "https://bscscan.com/token/0xd2359c576632234d1354b20bf51b0277be20c81e", + "status": "active", + "id": "0xd2359c576632234D1354B20Bf51B0277Be20C81e", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gameguru" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gameguru" + }, + { + "name": "x", + "url": "https://x.com/GameGuruToken" + }, + { + "name": "telegram", + "url": "https://t.me/GameGuruToken" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.gameguru.gg" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd2359c576632234D1354B20Bf51B0277Be20C81e/logo.png b/blockchains/smartchain/assets/0xd2359c576632234D1354B20Bf51B0277Be20C81e/logo.png new file mode 100644 index 00000000..7ee8f72d Binary files /dev/null and b/blockchains/smartchain/assets/0xd2359c576632234D1354B20Bf51B0277Be20C81e/logo.png differ diff --git a/blockchains/smartchain/assets/0xd27D3F7f329D93d897612E413F207A4dbe8bF799/info.json b/blockchains/smartchain/assets/0xd27D3F7f329D93d897612E413F207A4dbe8bF799/info.json new file mode 100644 index 00000000..7f6b187d --- /dev/null +++ b/blockchains/smartchain/assets/0xd27D3F7f329D93d897612E413F207A4dbe8bF799/info.json @@ -0,0 +1,29 @@ +{ + "name": "Moonshot", + "website": "https://project-moonshot.me/", + "description": "Moonshot is a deflationary, frictionless yield and liquidity generation protocol.", + "explorer": "https://bscscan.com/token/0xd27D3F7f329D93d897612E413F207A4dbe8bF799", + "type": "BEP20", + "symbol": "MOONSHOT", + "decimals": 9, + "status": "abandoned", + "id": "0xd27D3F7f329D93d897612E413F207A4dbe8bF799", + "links": [ + { + "name": "github", + "url": "https://github.com/moonshot-platform" + }, + { + "name": "x", + "url": "https://x.com/RS25Moonshot" + }, + { + "name": "telegram", + "url": "https://t.me/MoonShotChat" + }, + { + "name": "medium", + "url": "https://rs25moonshot.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd29EaCE1FcFF9e9252B4A54f5Cbe858ceeFE959c/info.json b/blockchains/smartchain/assets/0xd29EaCE1FcFF9e9252B4A54f5Cbe858ceeFE959c/info.json new file mode 100644 index 00000000..99ec2ca3 --- /dev/null +++ b/blockchains/smartchain/assets/0xd29EaCE1FcFF9e9252B4A54f5Cbe858ceeFE959c/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dogelon Moon", + "website": "https://dogelonmoon.com", + "description": "The Memes Token", + "explorer": "https://bscscan.com/token/0xd29EaCE1FcFF9e9252B4A54f5Cbe858ceeFE959c", + "symbol": "ELON", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xd29EaCE1FcFF9e9252B4A54f5Cbe858ceeFE959c" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd29EaCE1FcFF9e9252B4A54f5Cbe858ceeFE959c/logo.png b/blockchains/smartchain/assets/0xd29EaCE1FcFF9e9252B4A54f5Cbe858ceeFE959c/logo.png new file mode 100644 index 00000000..d999dbea Binary files /dev/null and b/blockchains/smartchain/assets/0xd29EaCE1FcFF9e9252B4A54f5Cbe858ceeFE959c/logo.png differ diff --git a/blockchains/smartchain/assets/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa/info.json b/blockchains/smartchain/assets/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa/info.json new file mode 100644 index 00000000..8ce4432d --- /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 00000000..b5e24fc5 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 00000000..de552f12 --- /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 00000000..105e1752 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 new file mode 100644 index 00000000..2541e930 --- /dev/null +++ b/blockchains/smartchain/assets/0xd32d01A43c869EdcD1117C640fBDcfCFD97d9d65/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nominex Token", + "website": "https://nominex.io/", + "description": "NMX is the first decentralized exchange token with automatic market making (AMM) functionality.", + "explorer": "https://bscscan.com/token/0xd32d01A43c869EdcD1117C640fBDcfCFD97d9d65", + "type": "BEP20", + "symbol": "NMX", + "decimals": 18, + "status": "active", + "id": "0xd32d01A43c869EdcD1117C640fBDcfCFD97d9d65", + "links": [ + { + "name": "github", + "url": "https://github.com/nominex/eth-smart-contracts" + }, + { + "name": "x", + "url": "https://x.com/NominexExchange" + }, + { + "name": "telegram", + "url": "https://t.me/nominex_announcements" + }, + { + "name": "facebook", + "url": "https://facebook.com/Nominex" + }, + { + "name": "whitepaper", + "url": "https://nominex.io/docs/nominex-whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd32d01A43c869EdcD1117C640fBDcfCFD97d9d65/logo.png b/blockchains/smartchain/assets/0xd32d01A43c869EdcD1117C640fBDcfCFD97d9d65/logo.png new file mode 100644 index 00000000..c36db622 Binary files /dev/null and b/blockchains/smartchain/assets/0xd32d01A43c869EdcD1117C640fBDcfCFD97d9d65/logo.png differ diff --git a/blockchains/smartchain/assets/0xd399359683c1cD5267f611261eDE08F22cE9729F/info.json b/blockchains/smartchain/assets/0xd399359683c1cD5267f611261eDE08F22cE9729F/info.json new file mode 100644 index 00000000..3a58cd24 --- /dev/null +++ b/blockchains/smartchain/assets/0xd399359683c1cD5267f611261eDE08F22cE9729F/info.json @@ -0,0 +1,25 @@ +{ + "name": "Mainstream For The Underground", + "website": "https://mftu.net", + "description": "Utility token to pay Independent Musicians as a Distributed Ledger Performance Rights Organization.", + "explorer": "https://bscscan.com/token/0xd399359683c1cd5267f611261ede08f22ce9729f", + "type": "BEP20", + "symbol": "MFTU", + "decimals": 18, + "status": "active", + "id": "0xd399359683c1cD5267f611261eDE08F22cE9729F", + "links": [ + { + "name": "github", + "url": "https://github.com/CyberFM/" + }, + { + "name": "x", + "url": "https://x.com/Mainstream For The Underground" + }, + { + "name": "telegram", + "url": "https://t.me/mftudotnet" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd399359683c1cD5267f611261eDE08F22cE9729F/logo.png b/blockchains/smartchain/assets/0xd399359683c1cD5267f611261eDE08F22cE9729F/logo.png new file mode 100644 index 00000000..f77b4dbe Binary files /dev/null and b/blockchains/smartchain/assets/0xd399359683c1cD5267f611261eDE08F22cE9729F/logo.png differ diff --git a/blockchains/smartchain/assets/0xd3ecC6a4ce1a9fAEC1AA5E30B55f8a1a4b84F938/info.json b/blockchains/smartchain/assets/0xd3ecC6a4ce1a9fAEC1AA5E30B55f8a1a4b84F938/info.json new file mode 100644 index 00000000..12aad41a --- /dev/null +++ b/blockchains/smartchain/assets/0xd3ecC6a4ce1a9fAEC1AA5E30B55f8a1a4b84F938/info.json @@ -0,0 +1,25 @@ +{ + "name": "Elonomics", + "website": "https://Elonomicstoken.com", + "description": "Elonomics is a Rebase and BUSD Rewards token in the BSC network.", + "explorer": "https://bscscan.com/token/0xd3ecc6a4ce1a9faec1aa5e30b55f8a1a4b84f938", + "type": "BEP20", + "symbol": "$ELONOM", + "decimals": 4, + "status": "active", + "id": "0xd3ecC6a4ce1a9fAEC1AA5E30B55f8a1a4b84F938", + "links": [ + { + "name": "x", + "url": "https://x.com/elonomicsbsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elonomics" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/elonomics" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd3ecC6a4ce1a9fAEC1AA5E30B55f8a1a4b84F938/logo.png b/blockchains/smartchain/assets/0xd3ecC6a4ce1a9fAEC1AA5E30B55f8a1a4b84F938/logo.png new file mode 100644 index 00000000..47025439 Binary files /dev/null and b/blockchains/smartchain/assets/0xd3ecC6a4ce1a9fAEC1AA5E30B55f8a1a4b84F938/logo.png differ diff --git a/blockchains/smartchain/assets/0xd4923eC79415741736aD2a6390c067D3a7e605d3/info.json b/blockchains/smartchain/assets/0xd4923eC79415741736aD2a6390c067D3a7e605d3/info.json new file mode 100644 index 00000000..4fac2a1b --- /dev/null +++ b/blockchains/smartchain/assets/0xd4923eC79415741736aD2a6390c067D3a7e605d3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Capsule Decentralized Protocol", + "type": "BEP20", + "symbol": "CAPSULE DEFI", + "decimals": 9, + "website": "https://www.capsuledefi.com/", + "description": "Capsule DEFI - Unites decentralized protocols whose synergy enables the most lucrative, fastest and protected operations in the DeFi space.", + "explorer": "https://bscscan.com/token/0xd4923eC79415741736aD2a6390c067D3a7e605d3", + "status": "active", + "id": "0xd4923eC79415741736aD2a6390c067D3a7e605d3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd4923eC79415741736aD2a6390c067D3a7e605d3/logo.png b/blockchains/smartchain/assets/0xd4923eC79415741736aD2a6390c067D3a7e605d3/logo.png new file mode 100644 index 00000000..e379fb95 Binary files /dev/null and b/blockchains/smartchain/assets/0xd4923eC79415741736aD2a6390c067D3a7e605d3/logo.png differ diff --git a/blockchains/smartchain/assets/0xd4CB328A82bDf5f03eB737f37Fa6B370aef3e888/info.json b/blockchains/smartchain/assets/0xd4CB328A82bDf5f03eB737f37Fa6B370aef3e888/info.json new file mode 100644 index 00000000..5e947189 --- /dev/null +++ b/blockchains/smartchain/assets/0xd4CB328A82bDf5f03eB737f37Fa6B370aef3e888/info.json @@ -0,0 +1,11 @@ +{ + "name": "CREAM", + "website": "https://cream.finance", + "description": "Cream - Crypto Rules Everything Around Me", + "explorer": "https://bscscan.com/token/0xd4CB328A82bDf5f03eB737f37Fa6B370aef3e888", + "type": "BEP20", + "symbol": "CREAM", + "decimals": 18, + "status": "active", + "id": "0xd4CB328A82bDf5f03eB737f37Fa6B370aef3e888" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd4CB328A82bDf5f03eB737f37Fa6B370aef3e888/logo.png b/blockchains/smartchain/assets/0xd4CB328A82bDf5f03eB737f37Fa6B370aef3e888/logo.png new file mode 100644 index 00000000..7925d9c2 Binary files /dev/null and b/blockchains/smartchain/assets/0xd4CB328A82bDf5f03eB737f37Fa6B370aef3e888/logo.png differ diff --git a/blockchains/smartchain/assets/0xd4D2aBBeF1b26458504e7027233D5e7F09ea476d/info.json b/blockchains/smartchain/assets/0xd4D2aBBeF1b26458504e7027233D5e7F09ea476d/info.json new file mode 100644 index 00000000..d44c0679 --- /dev/null +++ b/blockchains/smartchain/assets/0xd4D2aBBeF1b26458504e7027233D5e7F09ea476d/info.json @@ -0,0 +1,37 @@ +{ + "name": "MoonWilly", + "website": "https://moonwilly.com", + "description": "MoonWilly is Certificate Of Deposit on Binance Smart Chain. Holders Earn Passive Rewards in DAI (USD Stablecoin) every Hour, Forever.", + "explorer": "https://bscscan.com/token/0xd4D2aBBeF1b26458504e7027233D5e7F09ea476d", + "type": "BEP20", + "symbol": "MNWL", + "decimals": 18, + "status": "abandoned", + "id": "0xd4D2aBBeF1b26458504e7027233D5e7F09ea476d", + "links": [ + { + "name": "github", + "url": "https://github.com/top1st/Moonwilly-Protocal/" + }, + { + "name": "x", + "url": "https://x.com/Moonwillycoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/moonwilly" + }, + { + "name": "telegram", + "url": "https://t.me/moonwillyproject" + }, + { + "name": "facebook", + "url": "https://facebook.com/MoonWilly-101277595537126" + }, + { + "name": "medium", + "url": "https://medium.com/@moonwillycoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd4EBABd6E70Bf0a16e8cCDBc6b00fE7817390f47/info.json b/blockchains/smartchain/assets/0xd4EBABd6E70Bf0a16e8cCDBc6b00fE7817390f47/info.json new file mode 100644 index 00000000..fc869abe --- /dev/null +++ b/blockchains/smartchain/assets/0xd4EBABd6E70Bf0a16e8cCDBc6b00fE7817390f47/info.json @@ -0,0 +1,28 @@ +{ + "name": "MarsSpaceXToken", + "website": "https://marsspacextoken.com", + "description": "Mars Space X is a deflationary cryptocurrency, but also modern high-end finance.", + "explorer": "https://bscscan.com/token/0xd4EBABd6E70Bf0a16e8cCDBc6b00fE7817390f47", + "type": "BEP20", + "symbol": "MPX", + "decimals": 4, + "status": "active", + "id": "0xd4EBABd6E70Bf0a16e8cCDBc6b00fE7817390f47", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/MarsSpaceXofficial" + }, + { + "name": "x", + "url": "https://x.com/MarsSpaceX_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/mars-space-x/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd4EBABd6E70Bf0a16e8cCDBc6b00fE7817390f47/logo.png b/blockchains/smartchain/assets/0xd4EBABd6E70Bf0a16e8cCDBc6b00fE7817390f47/logo.png new file mode 100644 index 00000000..5c7da58e Binary files /dev/null and b/blockchains/smartchain/assets/0xd4EBABd6E70Bf0a16e8cCDBc6b00fE7817390f47/logo.png differ diff --git a/blockchains/smartchain/assets/0xd522A1DcE1CA4B138DDA042a78672307eb124CC2/info.json b/blockchains/smartchain/assets/0xd522A1DcE1CA4B138DDA042a78672307eb124CC2/info.json new file mode 100644 index 00000000..0fc8c495 --- /dev/null +++ b/blockchains/smartchain/assets/0xd522A1DcE1CA4B138DDA042a78672307eb124CC2/info.json @@ -0,0 +1,25 @@ +{ + "name": "Swapz.app", + "type": "BEP20", + "symbol": "SWAPZ", + "decimals": 18, + "website": "https://www.swapz.app/", + "description": "Swapz is the native currency of Swapz DEX", + "explorer": "https://bscscan.com/token/0xd522A1DcE1CA4B138DDA042a78672307eb124CC2", + "status": "active", + "id": "0xd522A1DcE1CA4B138DDA042a78672307eb124CC2", + "links": [ + { + "name": "x", + "url": "https://x.com/swapz_app" + }, + { + "name": "telegram", + "url": "https://t.me/swapz_app" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/swapz/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd522A1DcE1CA4B138DDA042a78672307eb124CC2/logo.png b/blockchains/smartchain/assets/0xd522A1DcE1CA4B138DDA042a78672307eb124CC2/logo.png new file mode 100644 index 00000000..c2964b6d Binary files /dev/null and b/blockchains/smartchain/assets/0xd522A1DcE1CA4B138DDA042a78672307eb124CC2/logo.png differ diff --git a/blockchains/smartchain/assets/0xd533fa739d24871108cD868064b71D9c705a5126/info.json b/blockchains/smartchain/assets/0xd533fa739d24871108cD868064b71D9c705a5126/info.json new file mode 100644 index 00000000..0b568b95 --- /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 00000000..85a2f6e0 --- /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 00000000..ac62a496 Binary files /dev/null and b/blockchains/smartchain/assets/0xd5369a3CaC0f4448A9A96bb98AF9c887c92fC37B/logo.png differ diff --git a/blockchains/smartchain/assets/0xd54Fd5D0C349C06373f3FE914151D1555b629fB6/info.json b/blockchains/smartchain/assets/0xd54Fd5D0C349C06373f3FE914151D1555b629fB6/info.json new file mode 100644 index 00000000..f8aea131 --- /dev/null +++ b/blockchains/smartchain/assets/0xd54Fd5D0C349C06373f3FE914151D1555b629fB6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bitcoin Anonymous", + "website": "https://bitcoinanonymous.info", + "description": "BTCA allows complete privacy transactions on the BSC chain.", + "explorer": "https://bscscan.com/token/0xd54Fd5D0C349C06373f3FE914151D1555b629fB6", + "type": "BEP20", + "symbol": "BTCA", + "decimals": 18, + "status": "active", + "id": "0xd54Fd5D0C349C06373f3FE914151D1555b629fB6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd54Fd5D0C349C06373f3FE914151D1555b629fB6/logo.png b/blockchains/smartchain/assets/0xd54Fd5D0C349C06373f3FE914151D1555b629fB6/logo.png new file mode 100644 index 00000000..31c936d6 Binary files /dev/null and b/blockchains/smartchain/assets/0xd54Fd5D0C349C06373f3FE914151D1555b629fB6/logo.png differ diff --git a/blockchains/smartchain/assets/0xd5964f3fcee8D649995AB88F04b8982539c282D2/info.json b/blockchains/smartchain/assets/0xd5964f3fcee8D649995AB88F04b8982539c282D2/info.json new file mode 100644 index 00000000..f68b9444 --- /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 00000000..85286052 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 new file mode 100644 index 00000000..3fbc667c --- /dev/null +++ b/blockchains/smartchain/assets/0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD/info.json @@ -0,0 +1,41 @@ +{ + "name": "Binance-Peg Firo Token", + "type": "BEP20", + "symbol": "FIRO", + "decimals": 8, + "website": "https://firo.org/", + "description": "Firo, a decentralized and open source currency that provides financial privacy enabled by the Lelantus protocol. Proven cryptography and auditability.", + "explorer": "https://bscscan.com/token/0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD", + "status": "active", + "id": "0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD", + "links": [ + { + "name": "x", + "url": "https://x.com/firoorg" + }, + { + "name": "github", + "url": "https://github.com/firoorg/firo" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/FiroProject/" + }, + { + "name": "telegram", + "url": "https://t.me/firoorg" + }, + { + "name": "blog", + "url": "https://firo.org/blog/" + }, + { + "name": "facebook", + "url": "https://facebook.com/firoorg/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binance-peg-firo/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD/logo.png b/blockchains/smartchain/assets/0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD/logo.png new file mode 100644 index 00000000..adfb3ee6 Binary files /dev/null and b/blockchains/smartchain/assets/0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD/logo.png differ diff --git a/blockchains/smartchain/assets/0xd5eaAaC47bD1993d661bc087E15dfb079a7f3C19/info.json b/blockchains/smartchain/assets/0xd5eaAaC47bD1993d661bc087E15dfb079a7f3C19/info.json new file mode 100644 index 00000000..57d7d646 --- /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 00000000..9b3fd781 Binary files /dev/null and b/blockchains/smartchain/assets/0xd5eaAaC47bD1993d661bc087E15dfb079a7f3C19/logo.png differ diff --git a/blockchains/smartchain/assets/0xd6004836cb07D063f2cB498C25e351CC93194079/info.json b/blockchains/smartchain/assets/0xd6004836cb07D063f2cB498C25e351CC93194079/info.json new file mode 100644 index 00000000..d14f52be --- /dev/null +++ b/blockchains/smartchain/assets/0xd6004836cb07D063f2cB498C25e351CC93194079/info.json @@ -0,0 +1,11 @@ +{ + "name": "Long Asset", + "type": "BEP20", + "symbol": "LONG", + "decimals": 18, + "website": "https://longasset.io/", + "description": "First Literature Non-Fungible Token (NFT) in Crypto Assets. Long Asset Token functions for Staking, Farming, and can also be used for transactions at the LONG NFT Marketplace, Collectibles & NFTs.", + "explorer": "https://bscscan.com/token/0xd6004836cb07D063f2cB498C25e351CC93194079", + "status": "active", + "id": "0xd6004836cb07D063f2cB498C25e351CC93194079" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd6004836cb07D063f2cB498C25e351CC93194079/logo.png b/blockchains/smartchain/assets/0xd6004836cb07D063f2cB498C25e351CC93194079/logo.png new file mode 100644 index 00000000..d877f994 Binary files /dev/null and b/blockchains/smartchain/assets/0xd6004836cb07D063f2cB498C25e351CC93194079/logo.png differ diff --git a/blockchains/smartchain/assets/0xd615468088B19FB9d4F03CB3CE9E33876fF3Db99/info.json b/blockchains/smartchain/assets/0xd615468088B19FB9d4F03CB3CE9E33876fF3Db99/info.json new file mode 100644 index 00000000..32870585 --- /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 00000000..5c74edc6 Binary files /dev/null and b/blockchains/smartchain/assets/0xd615468088B19FB9d4F03CB3CE9E33876fF3Db99/logo.png differ diff --git a/blockchains/smartchain/assets/0xd632Bd021a07AF70592CE1E18717Ab9aA126DECB/info.json b/blockchains/smartchain/assets/0xd632Bd021a07AF70592CE1E18717Ab9aA126DECB/info.json new file mode 100644 index 00000000..32c8e5ad --- /dev/null +++ b/blockchains/smartchain/assets/0xd632Bd021a07AF70592CE1E18717Ab9aA126DECB/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kangal", + "type": "BEP20", + "symbol": "bKANGAL", + "decimals": 18, + "website": "https://www.kangaltoken.com", + "description": "Kangal is a DAO that is creating the ultimate dApps ecosystem. Kangal holders are able to create and vote on governance proposals, and will be able to stake Kangal and Kangal LP tokens for earning the Utility Token $TEAK of the dApps ecosystem. Kangal is available both on Ethereum and Binance Smart Chain Mainnet.", + "explorer": "https://bscscan.com/token/0xd632Bd021a07AF70592CE1E18717Ab9aA126DECB", + "status": "active", + "id": "0xd632Bd021a07AF70592CE1E18717Ab9aA126DECB" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd632Bd021a07AF70592CE1E18717Ab9aA126DECB/logo.png b/blockchains/smartchain/assets/0xd632Bd021a07AF70592CE1E18717Ab9aA126DECB/logo.png new file mode 100644 index 00000000..908a4865 Binary files /dev/null and b/blockchains/smartchain/assets/0xd632Bd021a07AF70592CE1E18717Ab9aA126DECB/logo.png differ diff --git a/blockchains/smartchain/assets/0xd63CDf02853D759831550fAe7dF8FFfE0B317b39/info.json b/blockchains/smartchain/assets/0xd63CDf02853D759831550fAe7dF8FFfE0B317b39/info.json new file mode 100644 index 00000000..d9c4981a --- /dev/null +++ b/blockchains/smartchain/assets/0xd63CDf02853D759831550fAe7dF8FFfE0B317b39/info.json @@ -0,0 +1,14 @@ +{ + "name": "Serum (Portal from Ethereum)", + "type": "BEP20", + "symbol": "SRMet", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://projectserum.com/", + "explorer": "https://bscscan.com/token/0xd63CDf02853D759831550fAe7dF8FFfE0B317b39", + "status": "active", + "id": "0xd63CDf02853D759831550fAe7dF8FFfE0B317b39", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd63CDf02853D759831550fAe7dF8FFfE0B317b39/logo.png b/blockchains/smartchain/assets/0xd63CDf02853D759831550fAe7dF8FFfE0B317b39/logo.png new file mode 100644 index 00000000..5657a6ff Binary files /dev/null and b/blockchains/smartchain/assets/0xd63CDf02853D759831550fAe7dF8FFfE0B317b39/logo.png differ diff --git a/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/info.json b/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/info.json new file mode 100644 index 00000000..5f247a95 --- /dev/null +++ b/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/info.json @@ -0,0 +1,25 @@ +{ + "name": "Maverick Token", + "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 00000000..f21e40be 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 new file mode 100644 index 00000000..731d7830 --- /dev/null +++ b/blockchains/smartchain/assets/0xd6AF849b09879a3648d56B5d43c6e5908a74CA83/info.json @@ -0,0 +1,28 @@ +{ + "name": "Haber-Stornetta Token", + "type": "BEP20", + "symbol": "HST", + "decimals": 0, + "website": "https://wrapped.jax.net/hst.html", + "description": "Haber-Stornetta Token is the smallest non-divisible unit of value on the beacon chain of the Jax.Network blockchain. Since the asset token by Jax.Network called WJXN has no decimals, HST is required in order to deal with smaller units of WJXN for DeFi purposes. 1 WJXN = 10^8 HST. This unit has been named after the inventors of blockchain technology - namely Dr. Stuart Haber and Dr. Scott Stornetta - the inventors of blockchain technology who introduced the concept of digital timestamping back in 1991. They have been referenced 3 times in the Bitcoin white paper.", + "explorer": "https://bscscan.com/token/0xd6AF849b09879a3648d56B5d43c6e5908a74CA83", + "status": "active", + "id": "0xd6AF849b09879a3648d56B5d43c6e5908a74CA83", + "links": [ + { + "name": "x", + "url": "https://x.com/CommunityJax" + }, + { + "name": "facebook", + "url": "https://facebook.com/network.jax" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCGLFiBG4j-CzEs9TFTKk51g" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd6AF849b09879a3648d56B5d43c6e5908a74CA83/logo.png b/blockchains/smartchain/assets/0xd6AF849b09879a3648d56B5d43c6e5908a74CA83/logo.png new file mode 100644 index 00000000..9fcda0c2 Binary files /dev/null and b/blockchains/smartchain/assets/0xd6AF849b09879a3648d56B5d43c6e5908a74CA83/logo.png differ diff --git a/blockchains/smartchain/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/info.json b/blockchains/smartchain/assets/0xd6B48CCF41a62EB3891e58D0F006B19B01d50cCa/info.json new file mode 100644 index 00000000..795e8467 --- /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 00000000..918d5d94 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 new file mode 100644 index 00000000..851b436b --- /dev/null +++ b/blockchains/smartchain/assets/0xd6edbB510af7901b2C049ce778b65a740c4aeB7f/info.json @@ -0,0 +1,32 @@ +{ + "name": "WOR", + "type": "BEP20", + "symbol": "WARRIOR", + "decimals": 18, + "website": "https://www.hollywood3.com/", + "description": "The \"Hollywood 3.0 Warrior Warrant\" issued by Hollywood Capital Group, abbreviated as WOR. Number of token holders: 89,816", + "explorer": "https://bscscan.com/token/0xd6edbB510af7901b2C049ce778b65a740c4aeB7f", + "status": "active", + "id": "0xd6edbB510af7901b2C049ce778b65a740c4aeB7f", + "links": [ + { + "name": "x", + "url": "https://x.com/WOR_TOKEN" + }, + { + "name": "telegram", + "url": "https://t.me/WARRIOR_ZH" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hollywood-capital-group-warrior" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hollywood-capital-group-warrior/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd6edbB510af7901b2C049ce778b65a740c4aeB7f/logo.png b/blockchains/smartchain/assets/0xd6edbB510af7901b2C049ce778b65a740c4aeB7f/logo.png new file mode 100644 index 00000000..9ec3f202 Binary files /dev/null and b/blockchains/smartchain/assets/0xd6edbB510af7901b2C049ce778b65a740c4aeB7f/logo.png differ diff --git a/blockchains/smartchain/assets/0xd6fDDe76B8C1C45B33790cc8751D5b88984c44ec/info.json b/blockchains/smartchain/assets/0xd6fDDe76B8C1C45B33790cc8751D5b88984c44ec/info.json new file mode 100644 index 00000000..621ade0a --- /dev/null +++ b/blockchains/smartchain/assets/0xd6fDDe76B8C1C45B33790cc8751D5b88984c44ec/info.json @@ -0,0 +1,52 @@ +{ + "name": "StrikeX", + "type": "BEP20", + "symbol": "STRX", + "decimals": 18, + "website": "https://strikex.com", + "description": "StrikeX is the native currency of the blockchain powered eco-system developed & deployed by the UK Registered Company StrikeX Technologies Ltd. Their flag ship product, TradeStrike, will utilise the power of tokenisation to offer trading in Stocks, Cryptocurrencies, NFT’s & even Real Estate. Fully compliant, fully collateralised trading, 24/7 – 365 days a year.", + "explorer": "https://bscscan.com/token/0xd6fDDe76B8C1C45B33790cc8751D5b88984c44ec", + "status": "active", + "id": "0xd6fDDe76B8C1C45B33790cc8751D5b88984c44ec", + "links": [ + { + "name": "x", + "url": "https://x.com/StrikeXofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/strikecoin/" + }, + { + "name": "facebook", + "url": "https://facebook.com/tradestrike" + }, + { + "name": "discord", + "url": "https://discord.com/tradestrike" + }, + { + "name": "medium", + "url": "https://tradestrike.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/strike-x" + }, + { + "name": "telegram", + "url": "https://t.me/StrikeXcrypto" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCZ_gCf9-Tnr7JeoFiSkl7SQ" + }, + { + "name": "reddit", + "url": "https://reddit.com/TradeStrike" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd6fDDe76B8C1C45B33790cc8751D5b88984c44ec/logo.png b/blockchains/smartchain/assets/0xd6fDDe76B8C1C45B33790cc8751D5b88984c44ec/logo.png new file mode 100644 index 00000000..dfb09ffa Binary files /dev/null and b/blockchains/smartchain/assets/0xd6fDDe76B8C1C45B33790cc8751D5b88984c44ec/logo.png differ diff --git a/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/info.json b/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/info.json new file mode 100644 index 00000000..73496651 --- /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/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/logo.png b/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/logo.png new file mode 100644 index 00000000..9889f11c Binary files /dev/null and b/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/logo.png differ diff --git a/blockchains/smartchain/assets/0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684/info.json b/blockchains/smartchain/assets/0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684/info.json new file mode 100644 index 00000000..d5bc19b7 --- /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 00000000..300bedbd 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 00000000..3fda3297 --- /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 00000000..f88c3aa8 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 00000000..9049481e --- /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 00000000..5c697da1 --- /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 00000000..b4303122 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 00000000..2f1c4608 --- /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 00000000..13f4d282 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 new file mode 100644 index 00000000..cb15dcb6 --- /dev/null +++ b/blockchains/smartchain/assets/0xd8813B5Dfa9AbEB693F217Bb905ec99B66FB017C/info.json @@ -0,0 +1,21 @@ +{ + "name": "Binamon Energy", + "type": "BEP20", + "symbol": "BNRG", + "decimals": 18, + "website": "https://binamon.org", + "description": "A Complete Metaverse of Digital Monsters on Binance Smart Chain. With BNRG the users can buy boosters of ENERGY NFT. Energy allows to increase the power of the monsters in Binamon Metaverse. ", + "explorer": "https://bscscan.com/token/0xd8813B5Dfa9AbEB693F217Bb905ec99B66FB017C", + "status": "active", + "id": "0xd8813B5Dfa9AbEB693F217Bb905ec99B66FB017C", + "links": [ + { + "name": "x", + "url": "https://x.com/binamonok" + }, + { + "name": "telegram", + "url": "https://t.me/binamon" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd8813B5Dfa9AbEB693F217Bb905ec99B66FB017C/logo.png b/blockchains/smartchain/assets/0xd8813B5Dfa9AbEB693F217Bb905ec99B66FB017C/logo.png new file mode 100644 index 00000000..72aaad5e Binary files /dev/null and b/blockchains/smartchain/assets/0xd8813B5Dfa9AbEB693F217Bb905ec99B66FB017C/logo.png differ diff --git a/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/info.json b/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/info.json new file mode 100644 index 00000000..26632588 --- /dev/null +++ b/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/info.json @@ -0,0 +1,25 @@ +{ + "name": "The 4th Pillar Token", + "type": "BEP20", + "symbol": "FOUR", + "decimals": 18, + "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": "x", + "url": "https://x.com/4pfour" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-4th-pillar" + } + ], + "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 new file mode 100644 index 00000000..b0d3e287 Binary files /dev/null and b/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/logo.png differ diff --git a/blockchains/smartchain/assets/0xd8A31016cD7da048ca21FFE04256C6d08C3A2251/info.json b/blockchains/smartchain/assets/0xd8A31016cD7da048ca21FFE04256C6d08C3A2251/info.json new file mode 100644 index 00000000..d49e1eb6 --- /dev/null +++ b/blockchains/smartchain/assets/0xd8A31016cD7da048ca21FFE04256C6d08C3A2251/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wenlambo", + "type": "BEP20", + "symbol": "WENLAMBO", + "decimals": 18, + "website": "https://wenlambo.finance", + "description": "WENLAMBO finance is a deflationary token rewarding holders on each transaction and donating part of fees to charity", + "explorer": "https://bscscan.com/token/0xd8A31016cD7da048ca21FFE04256C6d08C3A2251", + "status": "active", + "id": "0xd8A31016cD7da048ca21FFE04256C6d08C3A2251" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd8A31016cD7da048ca21FFE04256C6d08C3A2251/logo.png b/blockchains/smartchain/assets/0xd8A31016cD7da048ca21FFE04256C6d08C3A2251/logo.png new file mode 100644 index 00000000..d76ad4f7 Binary files /dev/null and b/blockchains/smartchain/assets/0xd8A31016cD7da048ca21FFE04256C6d08C3A2251/logo.png differ diff --git a/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json b/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json new file mode 100644 index 00000000..db430d53 --- /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/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png b/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png new file mode 100644 index 00000000..599cd735 Binary files /dev/null and b/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png differ diff --git a/blockchains/smartchain/assets/0xd8a2aE43Fd061d24acd538e3866Ffc2c05151b53/info.json b/blockchains/smartchain/assets/0xd8a2aE43Fd061d24acd538e3866Ffc2c05151b53/info.json new file mode 100644 index 00000000..d08663d6 --- /dev/null +++ b/blockchains/smartchain/assets/0xd8a2aE43Fd061d24acd538e3866Ffc2c05151b53/info.json @@ -0,0 +1,41 @@ +{ + "name": "AIR", + "website": "https://aircoin.cool", + "description": "AIR is to mock the madness of the cryptocurrency market. AIR is everywhere, after buying AirCoin you get nothing but AIR.", + "explorer": "https://bscscan.com/token/0xd8a2aE43Fd061d24acd538e3866Ffc2c05151b53", + "type": "BEP20", + "symbol": "AIR", + "decimals": 18, + "status": "active", + "id": "0xd8a2aE43Fd061d24acd538e3866Ffc2c05151b53", + "links": [ + { + "name": "telegram", + "url": "https://t.me/aircoinreal" + }, + { + "name": "x", + "url": "https://x.com/Aircoinreal" + }, + { + "name": "github", + "url": "https://github.com/Aircoin-official" + }, + { + "name": "facebook", + "url": "https://facebook.com/aircoinreal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/air" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aircoin" + }, + { + "name": "forum", + "url": "https://aircoin.community" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd8a2aE43Fd061d24acd538e3866Ffc2c05151b53/logo.png b/blockchains/smartchain/assets/0xd8a2aE43Fd061d24acd538e3866Ffc2c05151b53/logo.png new file mode 100644 index 00000000..64a5805b Binary files /dev/null and b/blockchains/smartchain/assets/0xd8a2aE43Fd061d24acd538e3866Ffc2c05151b53/logo.png differ diff --git a/blockchains/smartchain/assets/0xd8c202fc83792D98FB94c1FA2FdaC5702A75dF1C/info.json b/blockchains/smartchain/assets/0xd8c202fc83792D98FB94c1FA2FdaC5702A75dF1C/info.json new file mode 100644 index 00000000..f32718f9 --- /dev/null +++ b/blockchains/smartchain/assets/0xd8c202fc83792D98FB94c1FA2FdaC5702A75dF1C/info.json @@ -0,0 +1,11 @@ +{ + "name": "FULLSEND", + "website": "https://www.fullsendcrypto.net/", + "description": "FULLSEND is a token to be used on the dapp platform for feature purposes", + "explorer": "https://bscscan.com/token/0xd8c202fc83792d98fb94c1fa2fdac5702a75df1c", + "type": "BEP20", + "symbol": "FULLSEND", + "decimals": 9, + "status": "active", + "id": "0xd8c202fc83792D98FB94c1FA2FdaC5702A75dF1C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd8c202fc83792D98FB94c1FA2FdaC5702A75dF1C/logo.png b/blockchains/smartchain/assets/0xd8c202fc83792D98FB94c1FA2FdaC5702A75dF1C/logo.png new file mode 100644 index 00000000..4880878c Binary files /dev/null and b/blockchains/smartchain/assets/0xd8c202fc83792D98FB94c1FA2FdaC5702A75dF1C/logo.png differ diff --git a/blockchains/smartchain/assets/0xd90F0846b9D0F371b35a9Fe89102C306458AA56F/info.json b/blockchains/smartchain/assets/0xd90F0846b9D0F371b35a9Fe89102C306458AA56F/info.json new file mode 100644 index 00000000..ceb6286e --- /dev/null +++ b/blockchains/smartchain/assets/0xd90F0846b9D0F371b35a9Fe89102C306458AA56F/info.json @@ -0,0 +1,11 @@ +{ + "name": "FTXFUND", + "website": "https://ftxfund.com/", + "description": "FTX Fund is a blockchain platform under FTX Finance LTD was born with a mission to create a giant foundation in the blockchain industry.", + "explorer": "https://bscscan.com/token/0xd90F0846b9D0F371b35a9Fe89102C306458AA56F", + "type": "BEP20", + "symbol": "FTXF", + "decimals": 18, + "status": "active", + "id": "0xd90F0846b9D0F371b35a9Fe89102C306458AA56F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd90F0846b9D0F371b35a9Fe89102C306458AA56F/logo.png b/blockchains/smartchain/assets/0xd90F0846b9D0F371b35a9Fe89102C306458AA56F/logo.png new file mode 100644 index 00000000..ee66969f Binary files /dev/null and b/blockchains/smartchain/assets/0xd90F0846b9D0F371b35a9Fe89102C306458AA56F/logo.png differ diff --git a/blockchains/smartchain/assets/0xd91ea5884d55f3ba17196C82073fF39F25760194/info.json b/blockchains/smartchain/assets/0xd91ea5884d55f3ba17196C82073fF39F25760194/info.json new file mode 100644 index 00000000..b15a3930 --- /dev/null +++ b/blockchains/smartchain/assets/0xd91ea5884d55f3ba17196C82073fF39F25760194/info.json @@ -0,0 +1,11 @@ +{ + "name": " PROJECT ZERO", + "type": "BEP20", + "symbol": "pZERO", + "decimals": 18, + "website": "https://projectzero.finance/", + "description": "pZERO是DAO ZERO的治理代币,参考ZERO协议搭建通缩的经济模型,具备完善的销毁机制以及奖励和流动性生成的组合。", + "explorer": "https://bscscan.com/token/0xd91ea5884d55f3ba17196C82073fF39F25760194", + "status": "active", + "id": "0xd91ea5884d55f3ba17196C82073fF39F25760194" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd91ea5884d55f3ba17196C82073fF39F25760194/logo.png b/blockchains/smartchain/assets/0xd91ea5884d55f3ba17196C82073fF39F25760194/logo.png new file mode 100644 index 00000000..29ea602d Binary files /dev/null and b/blockchains/smartchain/assets/0xd91ea5884d55f3ba17196C82073fF39F25760194/logo.png differ diff --git a/blockchains/smartchain/assets/0xd9361d306A9e9A43f5883a064038220EF0D46fB0/info.json b/blockchains/smartchain/assets/0xd9361d306A9e9A43f5883a064038220EF0D46fB0/info.json new file mode 100644 index 00000000..f57d0795 --- /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 00000000..40b20197 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 new file mode 100644 index 00000000..021a7122 --- /dev/null +++ b/blockchains/smartchain/assets/0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782/info.json @@ -0,0 +1,28 @@ +{ + "name": "MIOTAC", + "type": "BEP20", + "symbol": "IOTA", + "decimals": 6, + "website": "https://www.iota.org/", + "description": "IOTA is a distributed ledger with its proprietary technology known as Tangle, a system of nodes that confirm transactions. It aims to offer greater speeds than conventional blockchains and an ideal footprint for the ever-expanding Internet of Things ecosystem.", + "explorer": "https://bscscan.com/token/0xd944f1d1e9d5f9bb90b62f9d45e447d989580782", + "status": "active", + "id": "0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782", + "links": [ + { + "name": "x", + "url": "https://x.com/iota" + }, + { + "name": "github", + "url": "https://github.com/iotaledger" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/iota/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782/logo.png b/blockchains/smartchain/assets/0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782/logo.png new file mode 100644 index 00000000..8d7b5b28 Binary files /dev/null and b/blockchains/smartchain/assets/0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782/logo.png differ diff --git a/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/info.json b/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/info.json new file mode 100644 index 00000000..d9230515 --- /dev/null +++ b/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/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://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 00000000..1b8b37e0 Binary files /dev/null and b/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/logo.png differ diff --git a/blockchains/smartchain/assets/0xd948A2c11626a0EFC25f4e0ceA4986056AC41feD/info.json b/blockchains/smartchain/assets/0xd948A2c11626a0EFC25f4e0ceA4986056AC41feD/info.json new file mode 100644 index 00000000..b173cc6a --- /dev/null +++ b/blockchains/smartchain/assets/0xd948A2c11626a0EFC25f4e0ceA4986056AC41feD/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAFEMARSCASH", + "website": "https://safemarscash.org", + "description": "Auto liquidity for an ever-increasing price floor, Deflationary tokenomics, 100% safe and unruggable (liquidity will be locked forever).", + "explorer": "https://bscscan.com/token/0xd948a2c11626a0efc25f4e0cea4986056ac41fed", + "type": "BEP20", + "symbol": "SAFEMARSCASH", + "decimals": 8, + "status": "active", + "id": "0xd948A2c11626a0EFC25f4e0ceA4986056AC41feD" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd948A2c11626a0EFC25f4e0ceA4986056AC41feD/logo.png b/blockchains/smartchain/assets/0xd948A2c11626a0EFC25f4e0ceA4986056AC41feD/logo.png new file mode 100644 index 00000000..2281760b Binary files /dev/null and b/blockchains/smartchain/assets/0xd948A2c11626a0EFC25f4e0ceA4986056AC41feD/logo.png differ diff --git a/blockchains/smartchain/assets/0xd97d097a89113fa59b76c572E5b2Eb647E8eefaf/info.json b/blockchains/smartchain/assets/0xd97d097a89113fa59b76c572E5b2Eb647E8eefaf/info.json new file mode 100644 index 00000000..1c9ff9a8 --- /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 00000000..4f0393cd 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 00000000..baa3a67a --- /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 00000000..c4974d79 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 00000000..7f4a1059 --- /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 00000000..00a751db 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 new file mode 100644 index 00000000..85eb12fb --- /dev/null +++ b/blockchains/smartchain/assets/0xd9dE2B1973E57Dc9DBA90c35d6Cd940ae4A3CBe1/info.json @@ -0,0 +1,37 @@ +{ + "name": "Milo Inu", + "website": "https://milotoken.io", + "description": "Milo does what he can to help more vulnerable people in need", + "explorer": "https://bscscan.com/token/0xd9de2b1973e57dc9dba90c35d6cd940ae4a3cbe1", + "type": "BEP20", + "symbol": "MILO", + "decimals": 9, + "status": "active", + "id": "0xd9dE2B1973E57Dc9DBA90c35d6Cd940ae4A3CBe1", + "links": [ + { + "name": "x", + "url": "https://x.com/MiloInu" + }, + { + "name": "whitepaper", + "url": "https://milotoken.io/static/MiloInu_en.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/MiloInu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/milo-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/milo-inu" + } + ], + "tags": [ + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd9dE2B1973E57Dc9DBA90c35d6Cd940ae4A3CBe1/logo.png b/blockchains/smartchain/assets/0xd9dE2B1973E57Dc9DBA90c35d6Cd940ae4A3CBe1/logo.png new file mode 100644 index 00000000..887f2e47 Binary files /dev/null and b/blockchains/smartchain/assets/0xd9dE2B1973E57Dc9DBA90c35d6Cd940ae4A3CBe1/logo.png differ diff --git a/blockchains/smartchain/assets/0xd9dF708C6BF28A94251356852e27490d20f74444/info.json b/blockchains/smartchain/assets/0xd9dF708C6BF28A94251356852e27490d20f74444/info.json new file mode 100644 index 00000000..d63ab032 --- /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 00000000..c5650c27 --- /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 00000000..95f3546b Binary files /dev/null and b/blockchains/smartchain/assets/0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D/logo.png differ diff --git a/blockchains/smartchain/assets/0xdA20C8a5c3B1AB48e31ba6e43f0F2830E50218D8/info.json b/blockchains/smartchain/assets/0xdA20C8a5c3B1AB48e31ba6e43f0F2830E50218D8/info.json new file mode 100644 index 00000000..a156e7e5 --- /dev/null +++ b/blockchains/smartchain/assets/0xdA20C8a5c3B1AB48e31ba6e43f0F2830E50218D8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bingus Token", + "type": "BEP20", + "symbol": "BINGUS", + "decimals": 9, + "website": "https://bingus.finance", + "description": "Bingus Token is the latest DEFI project with claws to release on the Binance Smart Chain. NFT & Shelter donations ongoing.", + "explorer": "https://bscscan.com/token/0xdA20C8a5c3B1AB48e31ba6e43f0F2830E50218D8", + "status": "active", + "id": "0xdA20C8a5c3B1AB48e31ba6e43f0F2830E50218D8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdA20C8a5c3B1AB48e31ba6e43f0F2830E50218D8/logo.png b/blockchains/smartchain/assets/0xdA20C8a5c3B1AB48e31ba6e43f0F2830E50218D8/logo.png new file mode 100644 index 00000000..d2c8fdf2 Binary files /dev/null and b/blockchains/smartchain/assets/0xdA20C8a5c3B1AB48e31ba6e43f0F2830E50218D8/logo.png differ diff --git a/blockchains/smartchain/assets/0xdABb9afF4cf02f26D2014e4cA9f94aC6fe6572a3/info.json b/blockchains/smartchain/assets/0xdABb9afF4cf02f26D2014e4cA9f94aC6fe6572a3/info.json new file mode 100644 index 00000000..1aa2a627 --- /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 00000000..e2e1397c 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 00000000..6f5a2593 --- /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 00000000..113c1958 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 00000000..c3ec5beb --- /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 00000000..2ce033b0 Binary files /dev/null and b/blockchains/smartchain/assets/0xdB0748297fbEf0B33dF89e86519A0BD3adAf6459/logo.png differ diff --git a/blockchains/smartchain/assets/0xdB238123939637D65a03E4b2b485650B4f9D91CB/info.json b/blockchains/smartchain/assets/0xdB238123939637D65a03E4b2b485650B4f9D91CB/info.json new file mode 100644 index 00000000..b1f0381b --- /dev/null +++ b/blockchains/smartchain/assets/0xdB238123939637D65a03E4b2b485650B4f9D91CB/info.json @@ -0,0 +1,11 @@ +{ + "name": "TasteNFT Token", + "website": "https://tastenfts.com", + "description": "TasteNFT is a static liquidity protocol empowering creators of exclusive NFT artwork with sensual Taste", + "explorer": "https://bscscan.com/token/0xdB238123939637D65a03E4b2b485650B4f9D91CB", + "type": "BEP20", + "symbol": "TASTE", + "decimals": 9, + "status": "active", + "id": "0xdB238123939637D65a03E4b2b485650B4f9D91CB" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdB238123939637D65a03E4b2b485650B4f9D91CB/logo.png b/blockchains/smartchain/assets/0xdB238123939637D65a03E4b2b485650B4f9D91CB/logo.png new file mode 100644 index 00000000..b82b3ffd Binary files /dev/null and b/blockchains/smartchain/assets/0xdB238123939637D65a03E4b2b485650B4f9D91CB/logo.png differ diff --git a/blockchains/smartchain/assets/0xdB29192Fc2B487BB5185e155752328d4f249743C/info.json b/blockchains/smartchain/assets/0xdB29192Fc2B487BB5185e155752328d4f249743C/info.json new file mode 100644 index 00000000..1b14cbbb --- /dev/null +++ b/blockchains/smartchain/assets/0xdB29192Fc2B487BB5185e155752328d4f249743C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ultra NFT", + "type": "BEP20", + "symbol": "UNFT", + "decimals": 9, + "website": "https://ultranft.finance/", + "description": "We are new generation NFT market on Binance Smart Chain. Ultra NFT is a team of young people who are experts in their fields. Ultra NFT focused on endangered animals and natural wonders in the NFT market. It aims to bring in its investors and to take part in projects that are beneficial to its followers. It helps associations related to nature and animals with the proceeds from all trades.", + "explorer": "https://bscscan.com/token/0xdB29192Fc2B487BB5185e155752328d4f249743C", + "status": "active", + "id": "0xdB29192Fc2B487BB5185e155752328d4f249743C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdB29192Fc2B487BB5185e155752328d4f249743C/logo.png b/blockchains/smartchain/assets/0xdB29192Fc2B487BB5185e155752328d4f249743C/logo.png new file mode 100644 index 00000000..c24b4432 Binary files /dev/null and b/blockchains/smartchain/assets/0xdB29192Fc2B487BB5185e155752328d4f249743C/logo.png differ diff --git a/blockchains/smartchain/assets/0xdB66A10d99501034D8680E02B38Dd69076904444/info.json b/blockchains/smartchain/assets/0xdB66A10d99501034D8680E02B38Dd69076904444/info.json new file mode 100644 index 00000000..1d35d0c1 --- /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 new file mode 100644 index 00000000..1b686844 --- /dev/null +++ b/blockchains/smartchain/assets/0xdB8D30b74bf098aF214e862C90E647bbB1fcC58c/info.json @@ -0,0 +1,33 @@ +{ + "name": "BABY CAKE", + "type": "BEP20", + "symbol": "BABYCAKE", + "decimals": 18, + "website": "https://babycake.app/", + "description": "Baby Cake is the first token on the BSC to reward holders with Cake.", + "explorer": "https://bscscan.com/token/0xdB8D30b74bf098aF214e862C90E647bbB1fcC58c", + "status": "active", + "id": "0xdB8D30b74bf098aF214e862C90E647bbB1fcC58c", + "links": [ + { + "name": "x", + "url": "https://x.com/BabyCakeBSC" + }, + { + "name": "telegram", + "url": "https://t.me/babycakeBSC" + }, + { + "name": "medium", + "url": "https://medium.com/@babycake" + }, + { + "name": "whitepaper", + "url": "https://babycake.app/white-paper/" + }, + { + "name": "github", + "url": "https://github.com/babycakebsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdB8D30b74bf098aF214e862C90E647bbB1fcC58c/logo.png b/blockchains/smartchain/assets/0xdB8D30b74bf098aF214e862C90E647bbB1fcC58c/logo.png new file mode 100644 index 00000000..af6d1277 Binary files /dev/null and b/blockchains/smartchain/assets/0xdB8D30b74bf098aF214e862C90E647bbB1fcC58c/logo.png differ diff --git a/blockchains/smartchain/assets/0xdBaAa36B347d56b77Ce0e36f050fCeEBbF9fbc38/info.json b/blockchains/smartchain/assets/0xdBaAa36B347d56b77Ce0e36f050fCeEBbF9fbc38/info.json new file mode 100644 index 00000000..bbaae1f0 --- /dev/null +++ b/blockchains/smartchain/assets/0xdBaAa36B347d56b77Ce0e36f050fCeEBbF9fbc38/info.json @@ -0,0 +1,11 @@ +{ + "name": "SavePlanetEarth", + "website": "https://www.saveplanetearth.io", + "description": "A Worldwide Carbon Sequestration Cryptocurrency Project dedicated to developing sustainable programs aiming to combat Global Warming and Climate Change.", + "explorer": "https://bscscan.com/token/0xdBaAa36B347d56b77Ce0e36f050fCeEBbF9fbc38", + "type": "BEP20", + "symbol": "SPE", + "decimals": 9, + "status": "abandoned", + "id": "0xdBaAa36B347d56b77Ce0e36f050fCeEBbF9fbc38" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdBf8265B1d5244A13424f13977723AcF5395eAB2/info.json b/blockchains/smartchain/assets/0xdBf8265B1d5244A13424f13977723AcF5395eAB2/info.json new file mode 100644 index 00000000..b5f276cf --- /dev/null +++ b/blockchains/smartchain/assets/0xdBf8265B1d5244A13424f13977723AcF5395eAB2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wagerr", + "website": "https://www.wagerr.com", + "description": "BEP20 tokenized version of wagerr", + "explorer": "https://bscscan.com/token/0xdbf8265b1d5244a13424f13977723acf5395eab2", + "type": "BEP20", + "symbol": "WGR", + "decimals": 18, + "status": "active", + "id": "0xdBf8265B1d5244A13424f13977723AcF5395eAB2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdBf8265B1d5244A13424f13977723AcF5395eAB2/logo.png b/blockchains/smartchain/assets/0xdBf8265B1d5244A13424f13977723AcF5395eAB2/logo.png new file mode 100644 index 00000000..b475b1c6 Binary files /dev/null and b/blockchains/smartchain/assets/0xdBf8265B1d5244A13424f13977723AcF5395eAB2/logo.png differ diff --git a/blockchains/smartchain/assets/0xdC0118B27276065C573386aa44e7a6E5e2AF07C1/info.json b/blockchains/smartchain/assets/0xdC0118B27276065C573386aa44e7a6E5e2AF07C1/info.json new file mode 100644 index 00000000..02f51a4b --- /dev/null +++ b/blockchains/smartchain/assets/0xdC0118B27276065C573386aa44e7a6E5e2AF07C1/info.json @@ -0,0 +1,40 @@ +{ + "name": "DeepMaze", + "type": "BEP20", + "symbol": "DPZ", + "decimals": 18, + "website": "https://www.deepmaze.finance/", + "description": "DEEPMAZE is a crowding pool backed auto liquidity Defi token built on Binance Smart Chain. It solves the liquidity, value, and discretion trilemma that is a problem in the current ecosystem.", + "explorer": "https://bscscan.com/token/0xdc0118b27276065c573386aa44e7a6e5e2af07c1", + "status": "active", + "id": "0xdC0118B27276065C573386aa44e7a6E5e2AF07C1", + "links": [ + { + "name": "x", + "url": "https://x.com/DPZFinance" + }, + { + "name": "github", + "url": "https://github.com/deepmazefoundation/" + }, + { + "name": "telegram", + "url": "https://t.me/dpzfinance" + }, + { + "name": "telegram_news", + "url": "https://t.me/dpzfinance" + }, + { + "name": "blog", + "url": "https://deepmaze.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/deepmaze-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdC0118B27276065C573386aa44e7a6E5e2AF07C1/logo.png b/blockchains/smartchain/assets/0xdC0118B27276065C573386aa44e7a6E5e2AF07C1/logo.png new file mode 100644 index 00000000..83f47ce4 Binary files /dev/null and b/blockchains/smartchain/assets/0xdC0118B27276065C573386aa44e7a6E5e2AF07C1/logo.png differ diff --git a/blockchains/smartchain/assets/0xdC419cfe5454bF58001f131E98CF2065E11936A7/info.json b/blockchains/smartchain/assets/0xdC419cfe5454bF58001f131E98CF2065E11936A7/info.json new file mode 100644 index 00000000..5392ccf2 --- /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 00000000..7e787f8a 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 00000000..0e18860b --- /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 00000000..21c86b1f 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 new file mode 100644 index 00000000..948e8fd0 --- /dev/null +++ b/blockchains/smartchain/assets/0xdCA8a5bb74Ec9536D13511C51f6A68821Bf6a1a6/info.json @@ -0,0 +1,25 @@ +{ + "name": "Strains Finance", + "website": "https://strains.finance", + "description": "CBD + NFT = A brand new way to categorize CBD on the blockchain via Strains.Finance", + "explorer": "https://bscscan.com/token/0xdca8a5bb74ec9536d13511c51f6a68821bf6a1a6", + "type": "BEP20", + "symbol": "SFN", + "decimals": 8, + "status": "active", + "id": "0xdCA8a5bb74Ec9536D13511C51f6A68821Bf6a1a6", + "links": [ + { + "name": "github", + "url": "https://github.com/strainsfinance/Strains-SFN-" + }, + { + "name": "x", + "url": "https://x.com/strainsfinance" + }, + { + "name": "telegram", + "url": "https://t.me/strainsfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdCA8a5bb74Ec9536D13511C51f6A68821Bf6a1a6/logo.png b/blockchains/smartchain/assets/0xdCA8a5bb74Ec9536D13511C51f6A68821Bf6a1a6/logo.png new file mode 100644 index 00000000..28dd06d5 Binary files /dev/null and b/blockchains/smartchain/assets/0xdCA8a5bb74Ec9536D13511C51f6A68821Bf6a1a6/logo.png differ diff --git a/blockchains/smartchain/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json b/blockchains/smartchain/assets/0xdCC1a2699441079dA889B1F49e12B69cC791129b/info.json new file mode 100644 index 00000000..88ee4fb7 --- /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 00000000..448e7266 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 new file mode 100644 index 00000000..2115cc32 --- /dev/null +++ b/blockchains/smartchain/assets/0xdCbA3fbd7BBc28abD18A472D28358089467A8a74/info.json @@ -0,0 +1,37 @@ +{ + "name": "Centric RISE", + "type": "BEP20", + "symbol": "CNR", + "decimals": 8, + "description": "Centric is an innovative dual-token digital currency & decentralized blockchain protocol built on sound economics that yields a return hourly.", + "explorer": "https://bscscan.com/token/0xdCbA3fbd7BBc28abD18A472D28358089467A8a74", + "website": "https://www.centric.com/", + "status": "active", + "id": "0xdCbA3fbd7BBc28abD18A472D28358089467A8a74", + "links": [ + { + "name": "github", + "url": "https://github.com/Centric-Org" + }, + { + "name": "x", + "url": "https://x.com/centricrise" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/joincentric" + }, + { + "name": "discord", + "url": "https://discord.com/invite/KjwY64h" + }, + { + "name": "telegram", + "url": "https://t.me/CentricChat" + }, + { + "name": "telegram_news", + "url": "https://t.me/centric" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdCbA3fbd7BBc28abD18A472D28358089467A8a74/logo.png b/blockchains/smartchain/assets/0xdCbA3fbd7BBc28abD18A472D28358089467A8a74/logo.png new file mode 100644 index 00000000..8b9352b7 Binary files /dev/null and b/blockchains/smartchain/assets/0xdCbA3fbd7BBc28abD18A472D28358089467A8a74/logo.png differ diff --git a/blockchains/smartchain/assets/0xdD97AB35e3C0820215bc85a395e13671d84CCBa2/info.json b/blockchains/smartchain/assets/0xdD97AB35e3C0820215bc85a395e13671d84CCBa2/info.json new file mode 100644 index 00000000..c7fe7ca1 --- /dev/null +++ b/blockchains/smartchain/assets/0xdD97AB35e3C0820215bc85a395e13671d84CCBa2/info.json @@ -0,0 +1,29 @@ +{ + "name": "Autoshark", + "website": "https://autoshark.finance/", + "description": "AutoShark is a yield optimizer for Automatic Liquidity Acquisition Farms & AMMs on the Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xdD97AB35e3C0820215bc85a395e13671d84CCBa2", + "type": "BEP20", + "symbol": "JAWS", + "decimals": 18, + "status": "active", + "id": "0xdD97AB35e3C0820215bc85a395e13671d84CCBa2", + "links": [ + { + "name": "telegram", + "url": "https://t.me/AutoSharkFinance" + }, + { + "name": "x", + "url": "https://x.com/autosharkfin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AutoSharkOfficial/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/autoshark" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdD97AB35e3C0820215bc85a395e13671d84CCBa2/logo.png b/blockchains/smartchain/assets/0xdD97AB35e3C0820215bc85a395e13671d84CCBa2/logo.png new file mode 100644 index 00000000..5404f527 Binary files /dev/null and b/blockchains/smartchain/assets/0xdD97AB35e3C0820215bc85a395e13671d84CCBa2/logo.png differ diff --git a/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/info.json b/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/info.json new file mode 100644 index 00000000..f5e61a49 --- /dev/null +++ b/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/info.json @@ -0,0 +1,44 @@ +{ + "name": "Bitcoiva", + "type": "BEP20", + "symbol": "BCA", + "decimals": 18, + "website": "https://www.bitcoiva.com", + "description": "Bitcoiva is the Next-generation crypto-trading platform that supports various forms of transactions such as Fiat to Crypto trading, Crypto to Crypto trading and direct purchase option. Instant, fast and easy transactions are possible with Bitcoiva.", + "explorer": "https://bscscan.com/token/0xddae5f343b7768eadaad88a7f520fff54f198211", + "status": "active", + "id": "0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211", + "links": [ + { + "name": "x", + "url": "https://x.com/bitcoiva" + }, + { + "name": "facebook", + "url": "https://facebook.com/Bitcoiva.com.2021/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCxPyXRsK0TFIKfG1p2Ws0QA" + }, + { + "name": "telegram", + "url": "https://t.me/BITCOIVA" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcoiva/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/bitcoiva" + }, + { + "name": "blog", + "url": "https://blog.bitcoiva.com/" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/logo.png b/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/logo.png new file mode 100644 index 00000000..88b8b578 Binary files /dev/null and b/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/logo.png differ diff --git a/blockchains/smartchain/assets/0xdDb3Bd8645775F59496c821E4F55A7eA6A6dc299/info.json b/blockchains/smartchain/assets/0xdDb3Bd8645775F59496c821E4F55A7eA6A6dc299/info.json new file mode 100644 index 00000000..86dcf8e4 --- /dev/null +++ b/blockchains/smartchain/assets/0xdDb3Bd8645775F59496c821E4F55A7eA6A6dc299/info.json @@ -0,0 +1,53 @@ +{ + "name": "Ape Swap Finance Banana", + "website": "https://apeswap.finance", + "description": "ApeSwap is an Automated Market Maker, Yield Farming, and Staking platform on Binance Smart Chain. ApeSwap was built by DeFi Apes, for DeFi Apes. We have a dedicated team of experienced monkeys, who have been in the crypto space for years.", + "explorer": "https://bscscan.com/token/0xdDb3Bd8645775F59496c821E4F55A7eA6A6dc299", + "type": "BEP20", + "symbol": "GNANA", + "decimals": 18, + "status": "active", + "id": "0xdDb3Bd8645775F59496c821E4F55A7eA6A6dc299", + "links": [ + { + "name": "github", + "url": "https://github.com/ApeSwapFinance" + }, + { + "name": "docs", + "url": "https://apeswap.gitbook.io/apeswap-finance/" + }, + { + "name": "x", + "url": "https://x.com/ape_swap" + }, + { + "name": "telegram", + "url": "https://t.me/ape_swap" + }, + { + "name": "telegram_news", + "url": "https://t.me/ape_swap_news" + }, + { + "name": "medium", + "url": "https://ape-swap.medium.com/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AbVxfGRCSd/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Apeswap/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apeswap-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/apeswap-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdDb3Bd8645775F59496c821E4F55A7eA6A6dc299/logo.png b/blockchains/smartchain/assets/0xdDb3Bd8645775F59496c821E4F55A7eA6A6dc299/logo.png new file mode 100644 index 00000000..4086162c Binary files /dev/null and b/blockchains/smartchain/assets/0xdDb3Bd8645775F59496c821E4F55A7eA6A6dc299/logo.png differ diff --git a/blockchains/smartchain/assets/0xdE009cB3371825bAfb80A01004C58f8166EE13D5/info.json b/blockchains/smartchain/assets/0xdE009cB3371825bAfb80A01004C58f8166EE13D5/info.json new file mode 100644 index 00000000..0e19a7ee --- /dev/null +++ b/blockchains/smartchain/assets/0xdE009cB3371825bAfb80A01004C58f8166EE13D5/info.json @@ -0,0 +1,11 @@ +{ + "name": "LittleUglyDuck Token", + "website": "https://littleuglyduck.com/", + "description": "LittleUglyDuck is a coin issued on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xdE009cB3371825bAfb80A01004C58f8166EE13D5", + "type": "BEP20", + "symbol": "LUD", + "decimals": 9, + "status": "active", + "id": "0xdE009cB3371825bAfb80A01004C58f8166EE13D5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdE009cB3371825bAfb80A01004C58f8166EE13D5/logo.png b/blockchains/smartchain/assets/0xdE009cB3371825bAfb80A01004C58f8166EE13D5/logo.png new file mode 100644 index 00000000..a25562ad Binary files /dev/null and b/blockchains/smartchain/assets/0xdE009cB3371825bAfb80A01004C58f8166EE13D5/logo.png differ diff --git a/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/info.json b/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/info.json new file mode 100644 index 00000000..d0181bcc --- /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 00000000..f6079535 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 new file mode 100644 index 00000000..47eb23be --- /dev/null +++ b/blockchains/smartchain/assets/0xdECE0F6864c1511369ae2c30B90Db9f5fe92832c/info.json @@ -0,0 +1,29 @@ +{ + "name": "DISCIPLINA", + "website": "https://disciplina.io", + "description": "The first blockchain to create verified personal profiles based on academic and professional achievements.", + "explorer": "https://bscscan.com/token/0xdECE0F6864c1511369ae2c30B90Db9f5fe92832c", + "type": "BEP20", + "symbol": "DSCPL", + "decimals": 18, + "status": "active", + "id": "0xdECE0F6864c1511369ae2c30B90Db9f5fe92832c", + "links": [ + { + "name": "x", + "url": "https://x.com/tchmpls_events" + }, + { + "name": "blog", + "url": "https://dscpl.medium.com" + }, + { + "name": "telegram", + "url": "https://t.me/disciplinachain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/disciplina/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdECE0F6864c1511369ae2c30B90Db9f5fe92832c/logo.png b/blockchains/smartchain/assets/0xdECE0F6864c1511369ae2c30B90Db9f5fe92832c/logo.png new file mode 100644 index 00000000..5aa02047 Binary files /dev/null and b/blockchains/smartchain/assets/0xdECE0F6864c1511369ae2c30B90Db9f5fe92832c/logo.png differ diff --git a/blockchains/smartchain/assets/0xdEe89763124Cd649B7aAaEedE8fa8D75b5454444/info.json b/blockchains/smartchain/assets/0xdEe89763124Cd649B7aAaEedE8fa8D75b5454444/info.json new file mode 100644 index 00000000..06d5d78e --- /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/0xdF0816CC717216c8B0863aF8d4f0fC20Bc65d643/info.json b/blockchains/smartchain/assets/0xdF0816CC717216c8B0863aF8d4f0fC20Bc65d643/info.json new file mode 100644 index 00000000..dd695acc --- /dev/null +++ b/blockchains/smartchain/assets/0xdF0816CC717216c8B0863aF8d4f0fC20Bc65d643/info.json @@ -0,0 +1,11 @@ +{ + "name": "SHIBA BSC", + "website": "https://shibsc.com/#/", + "description": "SHIBSC is a decentralized, community driven, fair launched Meme Token in BSC", + "explorer": "https://bscscan.com/token/0xdF0816CC717216c8B0863aF8d4f0fC20Bc65d643", + "type": "BEP20", + "symbol": "SHIBSC", + "decimals": 18, + "status": "active", + "id": "0xdF0816CC717216c8B0863aF8d4f0fC20Bc65d643" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdF0816CC717216c8B0863aF8d4f0fC20Bc65d643/logo.png b/blockchains/smartchain/assets/0xdF0816CC717216c8B0863aF8d4f0fC20Bc65d643/logo.png new file mode 100644 index 00000000..02e34419 Binary files /dev/null and b/blockchains/smartchain/assets/0xdF0816CC717216c8B0863aF8d4f0fC20Bc65d643/logo.png differ diff --git a/blockchains/smartchain/assets/0xdF1F0026374d4BCc490BE5E316963Cf6Df2FfF19/info.json b/blockchains/smartchain/assets/0xdF1F0026374d4BCc490BE5E316963Cf6Df2FfF19/info.json new file mode 100644 index 00000000..92a788c4 --- /dev/null +++ b/blockchains/smartchain/assets/0xdF1F0026374d4BCc490BE5E316963Cf6Df2FfF19/info.json @@ -0,0 +1,11 @@ +{ + "name": "InnovativeBioresearchCoin", + "website": "https://innovativebioresearch.com", + "description": "NNBC is a crypto-asset issued by Innovative Bioresearch Ltd, a biotech company performing novel biomedical research in the field of HIV, cancer, and regeneration research", + "explorer": "https://bscscan.com/token/0xdF1F0026374d4BCc490BE5E316963Cf6Df2FfF19", + "type": "BEP20", + "symbol": "INNBC", + "decimals": 6, + "status": "active", + "id": "0xdF1F0026374d4BCc490BE5E316963Cf6Df2FfF19" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdF1F0026374d4BCc490BE5E316963Cf6Df2FfF19/logo.png b/blockchains/smartchain/assets/0xdF1F0026374d4BCc490BE5E316963Cf6Df2FfF19/logo.png new file mode 100644 index 00000000..016940e6 Binary files /dev/null and b/blockchains/smartchain/assets/0xdF1F0026374d4BCc490BE5E316963Cf6Df2FfF19/logo.png differ diff --git a/blockchains/smartchain/assets/0xdF2fc196d57f7E3736DAAab1De4b717C32380fB6/info.json b/blockchains/smartchain/assets/0xdF2fc196d57f7E3736DAAab1De4b717C32380fB6/info.json new file mode 100644 index 00000000..8d888bf3 --- /dev/null +++ b/blockchains/smartchain/assets/0xdF2fc196d57f7E3736DAAab1De4b717C32380fB6/info.json @@ -0,0 +1,11 @@ +{ + "name": "wCardano", + "type": "BEP20", + "symbol": "wADA", + "decimals": 8, + "website": "https://wcardano.net", + "description": "Yield farm Cardano on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0xdF2fc196d57f7E3736DAAab1De4b717C32380fB6", + "status": "active", + "id": "0xdF2fc196d57f7E3736DAAab1De4b717C32380fB6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdF2fc196d57f7E3736DAAab1De4b717C32380fB6/logo.png b/blockchains/smartchain/assets/0xdF2fc196d57f7E3736DAAab1De4b717C32380fB6/logo.png new file mode 100644 index 00000000..be768f6e Binary files /dev/null and b/blockchains/smartchain/assets/0xdF2fc196d57f7E3736DAAab1De4b717C32380fB6/logo.png differ diff --git a/blockchains/smartchain/assets/0xdF677713a2C661ECD0b2BD4d7485170Aa8c1ECeB/info.json b/blockchains/smartchain/assets/0xdF677713a2C661ECD0b2BD4d7485170Aa8c1ECeB/info.json new file mode 100644 index 00000000..d58c11cd --- /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 00000000..2baa0c6a Binary files /dev/null and b/blockchains/smartchain/assets/0xdF677713a2C661ECD0b2BD4d7485170Aa8c1ECeB/logo.png differ diff --git a/blockchains/smartchain/assets/0xdF6d9fC61Bd8163b59d6381EC93aE1D3a4D95bB2/info.json b/blockchains/smartchain/assets/0xdF6d9fC61Bd8163b59d6381EC93aE1D3a4D95bB2/info.json new file mode 100644 index 00000000..90d26149 --- /dev/null +++ b/blockchains/smartchain/assets/0xdF6d9fC61Bd8163b59d6381EC93aE1D3a4D95bB2/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlimpsRock", + "website": "https://blimpsrock.net", + "description": "$BlimpsRock is a yield and liquidity generating protocol token that works by applying a 10% fee to every transaction and distributing half of that to token holders and then automatically locks the other half in Pancake LP. No need to stake your tokens to earn rewards, simply HODL in your wallet and watch the rewards roll in.", + "explorer": "https://bscscan.com/token/0xdF6d9fC61Bd8163b59d6381EC93aE1D3a4D95bB2", + "type": "BEP20", + "symbol": "BLIMPSROCK", + "decimals": 9, + "status": "active", + "id": "0xdF6d9fC61Bd8163b59d6381EC93aE1D3a4D95bB2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdF6d9fC61Bd8163b59d6381EC93aE1D3a4D95bB2/logo.png b/blockchains/smartchain/assets/0xdF6d9fC61Bd8163b59d6381EC93aE1D3a4D95bB2/logo.png new file mode 100644 index 00000000..6ae4ffe1 Binary files /dev/null and b/blockchains/smartchain/assets/0xdF6d9fC61Bd8163b59d6381EC93aE1D3a4D95bB2/logo.png differ diff --git a/blockchains/smartchain/assets/0xdFE6891ce8E5a5c7Cf54fFdE406A6C2C54145F71/info.json b/blockchains/smartchain/assets/0xdFE6891ce8E5a5c7Cf54fFdE406A6C2C54145F71/info.json new file mode 100644 index 00000000..eb18d8bb --- /dev/null +++ b/blockchains/smartchain/assets/0xdFE6891ce8E5a5c7Cf54fFdE406A6C2C54145F71/info.json @@ -0,0 +1,21 @@ +{ + "name": "CHEEMSINU", + "type": "BEP20", + "symbol": "$CINU", + "decimals": 9, + "website": "https://cheemsinu.net/", + "description": "Combining Memes & Crypto to bring both LOLs and money to the masses of the internet.", + "explorer": "https://bscscan.com/token/0xdFE6891ce8E5a5c7Cf54fFdE406A6C2C54145F71", + "status": "active", + "id": "0xdFE6891ce8E5a5c7Cf54fFdE406A6C2C54145F71", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cheems-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cheems-inu" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdFE6891ce8E5a5c7Cf54fFdE406A6C2C54145F71/logo.png b/blockchains/smartchain/assets/0xdFE6891ce8E5a5c7Cf54fFdE406A6C2C54145F71/logo.png new file mode 100644 index 00000000..a00396d6 Binary files /dev/null and b/blockchains/smartchain/assets/0xdFE6891ce8E5a5c7Cf54fFdE406A6C2C54145F71/logo.png differ diff --git a/blockchains/smartchain/assets/0xda52b818c1348bFee27989E2a0DF39224A3E52fA/info.json b/blockchains/smartchain/assets/0xda52b818c1348bFee27989E2a0DF39224A3E52fA/info.json new file mode 100644 index 00000000..68ce413c --- /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 00000000..a054e611 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 00000000..c104a15d --- /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 00000000..857fe690 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 00000000..eb805de3 --- /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 00000000..179b22a7 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 00000000..83ac38f7 --- /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 00000000..abfc45d7 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 new file mode 100644 index 00000000..87ff9e4d --- /dev/null +++ b/blockchains/smartchain/assets/0xdb607c61Aaa2a954Bf1f9d117953F12d6c319E15/info.json @@ -0,0 +1,36 @@ +{ + "name": "HONEYPAD", + "type": "BEP20", + "symbol": "$HONEY", + "decimals": 9, + "website": "https://www.honeypad.io/", + "description": "Honeypad Is The Hive To Bee! We Reward Holders Through Tax Rewards, Automatic Token Burning, and a Pioneering Buy-back System. All While Providing A Secure And Vibrant Eco-system.", + "explorer": "https://bscscan.com/token/0xdb607c61Aaa2a954Bf1f9d117953F12d6c319E15", + "status": "active", + "id": "0xdb607c61Aaa2a954Bf1f9d117953F12d6c319E15", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/thehoneypad" + }, + { + "name": "medium", + "url": "https://medium.com/@thehoneypad" + }, + { + "name": "telegram_news", + "url": "https://t.me/HoneyPadNews" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Honeypad/" + }, + { + "name": "telegram", + "url": "https://t.me/honeypadofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdb607c61Aaa2a954Bf1f9d117953F12d6c319E15/logo.png b/blockchains/smartchain/assets/0xdb607c61Aaa2a954Bf1f9d117953F12d6c319E15/logo.png new file mode 100644 index 00000000..b0140d4a Binary files /dev/null and b/blockchains/smartchain/assets/0xdb607c61Aaa2a954Bf1f9d117953F12d6c319E15/logo.png differ diff --git a/blockchains/smartchain/assets/0xdb9783Ca04bBD64fe2c6d7B9503A979b3DE30729/info.json b/blockchains/smartchain/assets/0xdb9783Ca04bBD64fe2c6d7B9503A979b3DE30729/info.json new file mode 100644 index 00000000..41379ad9 --- /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 00000000..500fe979 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 00000000..768fe58a --- /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 00000000..3b7a5c57 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 new file mode 100644 index 00000000..e8e7b6b9 --- /dev/null +++ b/blockchains/smartchain/assets/0xdc847755343C3A2B94d6aFC0aAE57651E1b14064/info.json @@ -0,0 +1,56 @@ +{ + "name": "BODA V2", + "website": "https://bodatoken.org/", + "description": "BODAV2 rewards holders with up to 19% in BUSD dividend rewards. 6% BUSD from buy orders and 13% BUSD from sell orders.", + "explorer": "https://bscscan.com/token/0xdc847755343C3A2B94d6aFC0aAE57651E1b14064", + "type": "BEP20", + "symbol": "BODAV2", + "decimals": 18, + "status": "active", + "id": "0xdc847755343C3A2B94d6aFC0aAE57651E1b14064", + "links": [ + { + "name": "github", + "url": "https://github.com/bodatoken/" + }, + { + "name": "x", + "url": "https://x.com/BodaToken" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/bodacoin/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/boda-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/boda-token" + }, + { + "name": "telegram", + "url": "https://t.me/Boda_Token" + }, + { + "name": "discord", + "url": "https://discord.com/XMF4UctSnv" + }, + { + "name": "facebook", + "url": "https://facebook.com/BodaToken/" + }, + { + "name": "medium", + "url": "https://bodatoken.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCZA6agzb8YjBvPj-T8EVijA" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdc847755343C3A2B94d6aFC0aAE57651E1b14064/logo.png b/blockchains/smartchain/assets/0xdc847755343C3A2B94d6aFC0aAE57651E1b14064/logo.png new file mode 100644 index 00000000..7521d646 Binary files /dev/null and b/blockchains/smartchain/assets/0xdc847755343C3A2B94d6aFC0aAE57651E1b14064/logo.png differ diff --git a/blockchains/smartchain/assets/0xdcAf1Afc07d9e1C057bd5cd144659910C4b91682/info.json b/blockchains/smartchain/assets/0xdcAf1Afc07d9e1C057bd5cd144659910C4b91682/info.json new file mode 100644 index 00000000..d0793143 --- /dev/null +++ b/blockchains/smartchain/assets/0xdcAf1Afc07d9e1C057bd5cd144659910C4b91682/info.json @@ -0,0 +1,12 @@ +{ + "name": "SpaceCowBoy", + "website": "https://scb.oxbull.tech", + "description": "Space Cowboy aims to be the NFT platform for digital art and assets related to the theme of Sci-Fi, Bulls and Space Meme", + "explorer": "https://bscscan.com/token/0xdcAf1Afc07d9e1C057bd5cd144659910C4b91682", + "research": "", + "type": "BEP20", + "symbol": "SCB", + "decimals": 18, + "status": "active", + "id": "0xdcAf1Afc07d9e1C057bd5cd144659910C4b91682" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdcAf1Afc07d9e1C057bd5cd144659910C4b91682/logo.png b/blockchains/smartchain/assets/0xdcAf1Afc07d9e1C057bd5cd144659910C4b91682/logo.png new file mode 100644 index 00000000..72393c4f Binary files /dev/null and b/blockchains/smartchain/assets/0xdcAf1Afc07d9e1C057bd5cd144659910C4b91682/logo.png differ diff --git a/blockchains/smartchain/assets/0xdce796806394E015b7BcF71d1558181A194fC62a/info.json b/blockchains/smartchain/assets/0xdce796806394E015b7BcF71d1558181A194fC62a/info.json new file mode 100644 index 00000000..85e57828 --- /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 00000000..8490e6e6 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 00000000..2d2d275d --- /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 00000000..f3607f6c 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 new file mode 100644 index 00000000..0bac25fc --- /dev/null +++ b/blockchains/smartchain/assets/0xdd325C38b12903B727D16961e61333f4871A70E0/info.json @@ -0,0 +1,38 @@ +{ + "name": "Elephant Money Stable", + "type": "BEP20", + "symbol": "TRUNK", + "decimals": 18, + "website": "https://elephant.money", + "description": "Elephant Money Stable is partially collateralized by BUSD at 75% guaranteed. TRUNK passively hardens its collateralization ratio of the remaining 25% on the dollar as the Elephant Money ecosystem grows.", + "explorer": "https://bscscan.com/token/0xdd325C38b12903B727D16961e61333f4871A70E0", + "status": "active", + "id": "0xdd325C38b12903B727D16961e61333f4871A70E0", + "links": [ + { + "name": "medium", + "url": "https://medium.com/elephant-money" + }, + { + "name": "telegram", + "url": "https://t.me/elephant_money" + }, + { + "name": "x", + "url": "https://x.com/ElephantStatus" + }, + { + "name": "whitepaper", + "url": "https://elephant.money/media/elephant-wp.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCBHcyR7ixP70R6hhpck1qUQ" + } + ], + "tags": [ + "stablecoin", + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdd325C38b12903B727D16961e61333f4871A70E0/logo.png b/blockchains/smartchain/assets/0xdd325C38b12903B727D16961e61333f4871A70E0/logo.png new file mode 100644 index 00000000..08cf6599 Binary files /dev/null and b/blockchains/smartchain/assets/0xdd325C38b12903B727D16961e61333f4871A70E0/logo.png differ diff --git a/blockchains/smartchain/assets/0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6/info.json b/blockchains/smartchain/assets/0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6/info.json new file mode 100644 index 00000000..41649af2 --- /dev/null +++ b/blockchains/smartchain/assets/0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6/info.json @@ -0,0 +1,32 @@ +{ + "name": "Jerry Inu", + "type": "BEP20", + "symbol": "JERRY", + "decimals": 9, + "website": "https://jerryinu.com/", + "description": "Jerry Inu is on the way to creating a trend and a new game in the field of Memecoins and Jerry Inu will be the leader in this competitive meme game.", + "explorer": "https://bscscan.com/token/0xdd6978f36c98aff4287e5ac803c9cf1b865641f6", + "status": "active", + "id": "0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6", + "links": [ + { + "name": "x", + "url": "https://x.com/JerryInu" + }, + { + "name": "telegram", + "url": "https://t.me/JerryInuGroup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jerry-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/jerry-inu" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6/logo.png b/blockchains/smartchain/assets/0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6/logo.png new file mode 100644 index 00000000..1f1a9a06 Binary files /dev/null and b/blockchains/smartchain/assets/0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6/logo.png differ diff --git a/blockchains/smartchain/assets/0xde3dbBE30cfa9F437b293294d1fD64B26045C71A/info.json b/blockchains/smartchain/assets/0xde3dbBE30cfa9F437b293294d1fD64B26045C71A/info.json new file mode 100644 index 00000000..ff0265e9 --- /dev/null +++ b/blockchains/smartchain/assets/0xde3dbBE30cfa9F437b293294d1fD64B26045C71A/info.json @@ -0,0 +1,11 @@ +{ + "name": "NFTB Token", + "website": "https://nftb.io", + "description": "NFTB is a token issued by NFTb Marketplace.", + "explorer": "https://bscscan.com/token/0xde3dbBE30cfa9F437b293294d1fD64B26045C71A", + "type": "BEP20", + "symbol": "NFTB", + "decimals": 18, + "status": "active", + "id": "0xde3dbBE30cfa9F437b293294d1fD64B26045C71A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xde3dbBE30cfa9F437b293294d1fD64B26045C71A/logo.png b/blockchains/smartchain/assets/0xde3dbBE30cfa9F437b293294d1fD64B26045C71A/logo.png new file mode 100644 index 00000000..9bf9e033 Binary files /dev/null and b/blockchains/smartchain/assets/0xde3dbBE30cfa9F437b293294d1fD64B26045C71A/logo.png differ diff --git a/blockchains/smartchain/assets/0xdeb1EAF085979A73aB0E85901D786cBa991c2617/info.json b/blockchains/smartchain/assets/0xdeb1EAF085979A73aB0E85901D786cBa991c2617/info.json new file mode 100644 index 00000000..c25fa77b --- /dev/null +++ b/blockchains/smartchain/assets/0xdeb1EAF085979A73aB0E85901D786cBa991c2617/info.json @@ -0,0 +1,25 @@ +{ + "name": "LuckyFortuneDog", + "type": "BEP20", + "symbol": "LFD", + "decimals": 18, + "website": "https://lfd.su/", + "description": "LFD is a community experiment conducted by a charity organization.", + "explorer": "https://bscscan.com/token/0xdeb1EAF085979A73aB0E85901D786cBa991c2617", + "status": "active", + "id": "0xdeb1EAF085979A73aB0E85901D786cBa991c2617", + "links": [ + { + "name": "x", + "url": "https://x.com/LuckyFortuneDog" + }, + { + "name": "github", + "url": "https://github.com/LuckyFortuneDog" + }, + { + "name": "telegram", + "url": "https://t.me/LFDToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdeb1EAF085979A73aB0E85901D786cBa991c2617/logo.png b/blockchains/smartchain/assets/0xdeb1EAF085979A73aB0E85901D786cBa991c2617/logo.png new file mode 100644 index 00000000..88158710 Binary files /dev/null and b/blockchains/smartchain/assets/0xdeb1EAF085979A73aB0E85901D786cBa991c2617/logo.png differ diff --git a/blockchains/smartchain/assets/0xdf5Fac537aa09e1eb0F3f8DD1d34CBdC42CA1076/info.json b/blockchains/smartchain/assets/0xdf5Fac537aa09e1eb0F3f8DD1d34CBdC42CA1076/info.json new file mode 100644 index 00000000..27b15312 --- /dev/null +++ b/blockchains/smartchain/assets/0xdf5Fac537aa09e1eb0F3f8DD1d34CBdC42CA1076/info.json @@ -0,0 +1,33 @@ +{ + "name": "Don't KYC", + "website": "https://dontkyc.com", + "description": "DKYC.", + "explorer": "https://bscscan.com/token/0xdf5Fac537aa09e1eb0F3f8DD1d34CBdC42CA1076", + "type": "BEP20", + "symbol": "DKYC", + "decimals": 9, + "status": "active", + "id": "0xdf5Fac537aa09e1eb0F3f8DD1d34CBdC42CA1076", + "links": [ + { + "name": "x", + "url": "https://x.com/DontKYC" + }, + { + "name": "telegram", + "url": "https://t.me/DontKYC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dont-kyc/" + }, + { + "name": "medium", + "url": "https://medium.com/@donotkyc" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dont-kyc/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdf5Fac537aa09e1eb0F3f8DD1d34CBdC42CA1076/logo.png b/blockchains/smartchain/assets/0xdf5Fac537aa09e1eb0F3f8DD1d34CBdC42CA1076/logo.png new file mode 100644 index 00000000..02de732d Binary files /dev/null and b/blockchains/smartchain/assets/0xdf5Fac537aa09e1eb0F3f8DD1d34CBdC42CA1076/logo.png differ diff --git a/blockchains/smartchain/assets/0xdfa86A77C9C99C2A1d33e56F42081b40Fc3BDFcC/info.json b/blockchains/smartchain/assets/0xdfa86A77C9C99C2A1d33e56F42081b40Fc3BDFcC/info.json new file mode 100644 index 00000000..be452b1a --- /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 00000000..837f0c3f 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 new file mode 100644 index 00000000..64e01fe5 --- /dev/null +++ b/blockchains/smartchain/assets/0xdfd85305A752d70A07A995Fa724Ac4Ff787EBef2/info.json @@ -0,0 +1,25 @@ +{ + "name": "Xenon Pay", + "type": "BEP20", + "symbol": "X2P", + "decimals": 9, + "website": "https://xenonpay.org", + "description": "Xenon Pay is a deflationary, high-yield, frictionless & decentralized token on the Binance Smart Chain. The simple way to grow your money like the world’s most sophisticated investors. While existing solutions offer to solve just one problem at a time, our team is up to build secure, useful, & easy to use payment solutions for multiple problems. It includes easy cryptocurrency payment systems integration.", + "explorer": "https://bscscan.com/token/0xdfd85305a752d70a07a995fa724ac4ff787ebef2", + "links": [ + { + "name": "x", + "url": "https://x.com/PayX2P" + }, + { + "name": "whitepaper", + "url": "https://assets.website-files.com/610aef4e2da61c281db06172/6116c6bdb929435fbc897923_Whitepaper_X2P_Official.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/x2pofficial" + } + ], + "status": "active", + "id": "0xdfd85305A752d70A07A995Fa724Ac4Ff787EBef2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdfd85305A752d70A07A995Fa724Ac4Ff787EBef2/logo.png b/blockchains/smartchain/assets/0xdfd85305A752d70A07A995Fa724Ac4Ff787EBef2/logo.png new file mode 100644 index 00000000..080266dd Binary files /dev/null and b/blockchains/smartchain/assets/0xdfd85305A752d70A07A995Fa724Ac4Ff787EBef2/logo.png differ diff --git a/blockchains/smartchain/assets/0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995/info.json b/blockchains/smartchain/assets/0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995/info.json new file mode 100644 index 00000000..504465ef --- /dev/null +++ b/blockchains/smartchain/assets/0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995/info.json @@ -0,0 +1,29 @@ +{ + "name": "CryptoMines Reborn", + "website": "https://cryptomines.app/", + "description": "CryptoMines Reborn is a SciFi play-to-earn NFT game designed to provide the users with a fun experience by collecting Workers and Spaceships to travel through the universe searching for $CRUX, this mineral allows them to live another day and make some profits along the way.", + "explorer": "https://bscscan.com/token/0xe0191fefdd0d2b39b1a2e4e029ccda8a481b7995", + "type": "BEP20", + "symbol": "CRUX", + "decimals": 18, + "status": "active", + "id": "0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995", + "links": [ + { + "name": "x", + "url": "https://x.com/CryptoMinesApp" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cryptomines" + }, + { + "name": "telegram", + "url": "https://t.me/cryptominesapp" + } + ], + "tags": [ + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995/logo.png b/blockchains/smartchain/assets/0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995/logo.png new file mode 100644 index 00000000..48d68576 Binary files /dev/null and b/blockchains/smartchain/assets/0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995/logo.png differ diff --git a/blockchains/smartchain/assets/0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3/info.json b/blockchains/smartchain/assets/0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3/info.json new file mode 100644 index 00000000..e0736fed --- /dev/null +++ b/blockchains/smartchain/assets/0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3/info.json @@ -0,0 +1,60 @@ +{ + "name": "Ankr Staked ETH", + "type": "BEP20", + "symbol": "ankrETH", + "decimals": 18, + "website": "https://www.ankr.com", + "description": "ankrETH represents your staked ETH and provides liquidity for your staked position. All staking rewards are built into the token price, and ankrETH grows daily in value, but never in number.", + "explorer": "https://bscscan.com/token/0xe05a08226c49b636acf99c40da8dc6af83ce5bb3", + "status": "active", + "id": "0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3", + "links": [ + { + "name": "x", + "url": "https://x.com/ankr" + }, + { + "name": "github", + "url": "https://github.com/Ankr-network" + }, + { + "name": "telegram", + "url": "https://t.me/ankrnetwork" + }, + { + "name": "medium", + "url": "https://medium.com/ankr-network" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Ankrofficial/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ankr" + }, + { + "name": "docs", + "url": "https://ankr.com/docs/staking/overview" + }, + { + "name": "whitepaper", + "url": "https://ankr.com/ankr-whitepaper-2.0.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/@AnkrOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ankreth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ankr-staked-eth" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3/logo.png b/blockchains/smartchain/assets/0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3/logo.png new file mode 100644 index 00000000..8f09e5da Binary files /dev/null and b/blockchains/smartchain/assets/0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3/logo.png differ diff --git a/blockchains/smartchain/assets/0xe0F94Ac5462997D2BC57287Ac3a3aE4C31345D66/info.json b/blockchains/smartchain/assets/0xe0F94Ac5462997D2BC57287Ac3a3aE4C31345D66/info.json new file mode 100644 index 00000000..a57e8220 --- /dev/null +++ b/blockchains/smartchain/assets/0xe0F94Ac5462997D2BC57287Ac3a3aE4C31345D66/info.json @@ -0,0 +1,25 @@ +{ + "name": "CEEK", + "type": "BEP20", + "symbol": "CEEK", + "decimals": 18, + "website": "https://ceek.com", + "description": "CEEK VR", + "explorer": "https://bscscan.com/token/0xe0F94Ac5462997D2BC57287Ac3a3aE4C31345D66", + "status": "active", + "id": "0xe0F94Ac5462997D2BC57287Ac3a3aE4C31345D66", + "links": [ + { + "name": "x", + "url": "https://x.com/CEEK" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ceek-vr/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ceek-smart-vr-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe0F94Ac5462997D2BC57287Ac3a3aE4C31345D66/logo.png b/blockchains/smartchain/assets/0xe0F94Ac5462997D2BC57287Ac3a3aE4C31345D66/logo.png new file mode 100644 index 00000000..edbf3d39 Binary files /dev/null and b/blockchains/smartchain/assets/0xe0F94Ac5462997D2BC57287Ac3a3aE4C31345D66/logo.png differ diff --git a/blockchains/smartchain/assets/0xe0b0C16038845BEd3fCf70304D3e167Df81ce225/info.json b/blockchains/smartchain/assets/0xe0b0C16038845BEd3fCf70304D3e167Df81ce225/info.json new file mode 100644 index 00000000..e929d5da --- /dev/null +++ b/blockchains/smartchain/assets/0xe0b0C16038845BEd3fCf70304D3e167Df81ce225/info.json @@ -0,0 +1,25 @@ +{ + "name": "Crossswap.com", + "type": "BEP20", + "symbol": "CSWAP", + "decimals": 18, + "website": "https://crossswap.com/", + "description": "Cswap is the native token for Crossswap Dex", + "explorer": "https://bscscan.com/token/0xe0b0C16038845BEd3fCf70304D3e167Df81ce225", + "status": "active", + "id": "0xe0b0C16038845BEd3fCf70304D3e167Df81ce225", + "links": [ + { + "name": "x", + "url": "https://x.com/CrossSwapDex" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crossswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/crossswap" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe0b0C16038845BEd3fCf70304D3e167Df81ce225/logo.png b/blockchains/smartchain/assets/0xe0b0C16038845BEd3fCf70304D3e167Df81ce225/logo.png new file mode 100644 index 00000000..c868e5ab Binary files /dev/null and b/blockchains/smartchain/assets/0xe0b0C16038845BEd3fCf70304D3e167Df81ce225/logo.png differ diff --git a/blockchains/smartchain/assets/0xe0d6AD5A77fD1ed1A22F89657E4248A8ac6a8cbF/info.json b/blockchains/smartchain/assets/0xe0d6AD5A77fD1ed1A22F89657E4248A8ac6a8cbF/info.json new file mode 100644 index 00000000..49908711 --- /dev/null +++ b/blockchains/smartchain/assets/0xe0d6AD5A77fD1ed1A22F89657E4248A8ac6a8cbF/info.json @@ -0,0 +1,11 @@ +{ + "name": "DailySwap", + "website": "https://dailyswap.org", + "description": "Introducing the Convenience of Centralization into Decentralization", + "explorer": "https://bscscan.com/token/0xe0d6ad5a77fd1ed1a22f89657e4248a8ac6a8cbf", + "type": "BEP20", + "symbol": "DailyS", + "decimals": 18, + "status": "active", + "id": "0xe0d6AD5A77fD1ed1A22F89657E4248A8ac6a8cbF" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe0d6AD5A77fD1ed1A22F89657E4248A8ac6a8cbF/logo.png b/blockchains/smartchain/assets/0xe0d6AD5A77fD1ed1A22F89657E4248A8ac6a8cbF/logo.png new file mode 100644 index 00000000..a4f4b746 Binary files /dev/null and b/blockchains/smartchain/assets/0xe0d6AD5A77fD1ed1A22F89657E4248A8ac6a8cbF/logo.png differ diff --git a/blockchains/smartchain/assets/0xe0e0Fbc7E8D881953d39CF899409410B50b8C924/info.json b/blockchains/smartchain/assets/0xe0e0Fbc7E8D881953d39CF899409410B50b8C924/info.json new file mode 100644 index 00000000..b9e72b4a --- /dev/null +++ b/blockchains/smartchain/assets/0xe0e0Fbc7E8D881953d39CF899409410B50b8C924/info.json @@ -0,0 +1,33 @@ +{ + "name": "Coin of Nature", + "website": "https://coinofnature.io", + "description": "The major aim of the project is not only to promote sports and a healthy lifestyle but also to develop a sustainable ecosystem based on innovative solutions. ", + "explorer": "https://bscscan.com/token/0xe0e0fbc7e8d881953d39cf899409410b50b8c924", + "type": "BEP20", + "symbol": "CON", + "decimals": 9, + "status": "active", + "id": "0xe0e0Fbc7E8D881953d39CF899409410B50b8C924", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coin-of-nature/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/pl/waluty/coin-of-nature" + }, + { + "name": "x", + "url": "https://x.com/CoinOfNature" + }, + { + "name": "github", + "url": "https://github.com/Coin-of-Nature/Coin-of-Nature" + }, + { + "name": "telegram", + "url": "https://t.me/coin_of_nature" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe0e0Fbc7E8D881953d39CF899409410B50b8C924/logo.png b/blockchains/smartchain/assets/0xe0e0Fbc7E8D881953d39CF899409410B50b8C924/logo.png new file mode 100644 index 00000000..ca9311e0 Binary files /dev/null and b/blockchains/smartchain/assets/0xe0e0Fbc7E8D881953d39CF899409410B50b8C924/logo.png differ diff --git a/blockchains/smartchain/assets/0xe12BB32D77BE4DB10DDC82088b230D35d097E9C5/info.json b/blockchains/smartchain/assets/0xe12BB32D77BE4DB10DDC82088b230D35d097E9C5/info.json new file mode 100644 index 00000000..878616e9 --- /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 00000000..52c3f305 Binary files /dev/null and b/blockchains/smartchain/assets/0xe12BB32D77BE4DB10DDC82088b230D35d097E9C5/logo.png differ diff --git a/blockchains/smartchain/assets/0xe13Ea90ce173e1118042A8f6A21D0D0A14aA6b1B/info.json b/blockchains/smartchain/assets/0xe13Ea90ce173e1118042A8f6A21D0D0A14aA6b1B/info.json new file mode 100644 index 00000000..7b76af5e --- /dev/null +++ b/blockchains/smartchain/assets/0xe13Ea90ce173e1118042A8f6A21D0D0A14aA6b1B/info.json @@ -0,0 +1,11 @@ +{ + "name": "KazooCoin", + "type": "BEP20", + "symbol": "KAZOO", + "decimals": 9, + "website": "https://kazoocoin.com/", + "description": "BSC token with a great community!We aim to become a hub for staying safe while investing.Token vetting, education + forum coming! https://linktr.ee/KazooCoin", + "explorer": "https://bscscan.com/token/0xe13Ea90ce173e1118042A8f6A21D0D0A14aA6b1B", + "status": "active", + "id": "0xe13Ea90ce173e1118042A8f6A21D0D0A14aA6b1B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe13Ea90ce173e1118042A8f6A21D0D0A14aA6b1B/logo.png b/blockchains/smartchain/assets/0xe13Ea90ce173e1118042A8f6A21D0D0A14aA6b1B/logo.png new file mode 100644 index 00000000..2e1d8cfa Binary files /dev/null and b/blockchains/smartchain/assets/0xe13Ea90ce173e1118042A8f6A21D0D0A14aA6b1B/logo.png differ diff --git a/blockchains/smartchain/assets/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED/info.json b/blockchains/smartchain/assets/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED/info.json new file mode 100644 index 00000000..1b028508 --- /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 00000000..8a369f13 Binary files /dev/null and b/blockchains/smartchain/assets/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED/logo.png differ diff --git a/blockchains/smartchain/assets/0xe1DB3d1eE5CfE5C6333BE96e6421f9Bd5b85c987/info.json b/blockchains/smartchain/assets/0xe1DB3d1eE5CfE5C6333BE96e6421f9Bd5b85c987/info.json new file mode 100644 index 00000000..1c691adf --- /dev/null +++ b/blockchains/smartchain/assets/0xe1DB3d1eE5CfE5C6333BE96e6421f9Bd5b85c987/info.json @@ -0,0 +1,11 @@ +{ + "name": "SAFESPACE", + "type": "BEP20", + "symbol": "SAFESPACE", + "decimals": 9, + "website": "https://safespacecrypto.net/", + "description": "Autonomous yield and liquidity generation protocol. Simply hold SAFESPACE in your wallet and you will get more. On each transaction the protocol automatically distributes rewards to holders as well as auto-locks liquidity forever.", + "explorer": "https://bscscan.com/token/0xe1DB3d1eE5CfE5C6333BE96e6421f9Bd5b85c987", + "status": "active", + "id": "0xe1DB3d1eE5CfE5C6333BE96e6421f9Bd5b85c987" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe1DB3d1eE5CfE5C6333BE96e6421f9Bd5b85c987/logo.png b/blockchains/smartchain/assets/0xe1DB3d1eE5CfE5C6333BE96e6421f9Bd5b85c987/logo.png new file mode 100644 index 00000000..49fb22fd Binary files /dev/null and b/blockchains/smartchain/assets/0xe1DB3d1eE5CfE5C6333BE96e6421f9Bd5b85c987/logo.png differ diff --git a/blockchains/smartchain/assets/0xe1F8C6ce0D69CbEB67c6bc3685e52C96291394a8/info.json b/blockchains/smartchain/assets/0xe1F8C6ce0D69CbEB67c6bc3685e52C96291394a8/info.json new file mode 100644 index 00000000..5a07241e --- /dev/null +++ b/blockchains/smartchain/assets/0xe1F8C6ce0D69CbEB67c6bc3685e52C96291394a8/info.json @@ -0,0 +1,11 @@ +{ + "name": "TeamTreesToken", + "type": "BEP20", + "symbol": "TeamTrees", + "decimals": 9, + "website": "https://www.teamtreestoken.org", + "description": "TeamTreesToken is the first community token built on Binance Smart Chain aimed at providing support to the global pandemic in our community. Whether you donated to plant one tree, or one million trees, or simply helped to spread the word, you become A part of #TeamTrees. With more than 800,000 unique donors, #TeamTrees raised more than $21M before January 1, 2020. Support hasn’t stopped either and #TeamTrees keeps growing.", + "explorer": "https://bscscan.com/token/0xe1F8C6ce0D69CbEB67c6bc3685e52C96291394a8", + "status": "active", + "id": "0xe1F8C6ce0D69CbEB67c6bc3685e52C96291394a8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe1F8C6ce0D69CbEB67c6bc3685e52C96291394a8/logo.png b/blockchains/smartchain/assets/0xe1F8C6ce0D69CbEB67c6bc3685e52C96291394a8/logo.png new file mode 100644 index 00000000..7b80065f Binary files /dev/null and b/blockchains/smartchain/assets/0xe1F8C6ce0D69CbEB67c6bc3685e52C96291394a8/logo.png differ diff --git a/blockchains/smartchain/assets/0xe2018E3A2Ba7B2161B4888c316bD59427615DBa0/info.json b/blockchains/smartchain/assets/0xe2018E3A2Ba7B2161B4888c316bD59427615DBa0/info.json new file mode 100644 index 00000000..0055eece --- /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 00000000..e5e2c43a --- /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 00000000..07947479 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 new file mode 100644 index 00000000..220675cc --- /dev/null +++ b/blockchains/smartchain/assets/0xe24F6Bc7635501d5684a963f7e75C8062b9c0eA4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Baby Floki Doge Token", + "website": "https://www.babyflokidoge.info", + "description": "Baby Floki Doge is a hyper-deflationary and auto-staking token on the Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xe24F6Bc7635501d5684a963f7e75C8062b9c0eA4", + "type": "BEP20", + "symbol": "BABYFD", + "decimals": 9, + "status": "active", + "id": "0xe24F6Bc7635501d5684a963f7e75C8062b9c0eA4", + "links": [ + { + "name": "x", + "url": "https://x.com/BabyFlokiDoge/" + }, + { + "name": "telegram", + "url": "https://t.me/babyflokidogecoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe24F6Bc7635501d5684a963f7e75C8062b9c0eA4/logo.png b/blockchains/smartchain/assets/0xe24F6Bc7635501d5684a963f7e75C8062b9c0eA4/logo.png new file mode 100644 index 00000000..fceb49b9 Binary files /dev/null and b/blockchains/smartchain/assets/0xe24F6Bc7635501d5684a963f7e75C8062b9c0eA4/logo.png differ diff --git a/blockchains/smartchain/assets/0xe2604C9561D490624AA35e156e65e590eB749519/info.json b/blockchains/smartchain/assets/0xe2604C9561D490624AA35e156e65e590eB749519/info.json new file mode 100644 index 00000000..834296bf --- /dev/null +++ b/blockchains/smartchain/assets/0xe2604C9561D490624AA35e156e65e590eB749519/info.json @@ -0,0 +1,33 @@ +{ + "name": "GoldMiner", + "type": "BEP20", + "symbol": "GM", + "decimals": 18, + "website": "https://goldminer.games/", + "description": "GoldMiner is a play-to-earn Third-person shooter gold-playing game.$GM is the world's first token that combines GameFi DeFi, and automatic BUYBACK deflation mechanism", + "explorer": "https://bscscan.com/token/0xe2604c9561d490624aa35e156e65e590eb749519", + "status": "active", + "id": "0xe2604C9561D490624AA35e156e65e590eB749519", + "links": [ + { + "name": "x", + "url": "https://x.com/DeFiGoldMiner" + }, + { + "name": "telegram", + "url": "https://t.me/GoldMiner_Game" + }, + { + "name": "medium", + "url": "https://medium.com/@DeFiGoldMiner" + }, + { + "name": "whitepaper", + "url": "https://goldminer.gitbook.io/goldminer-whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/goldminer/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe2604C9561D490624AA35e156e65e590eB749519/logo.png b/blockchains/smartchain/assets/0xe2604C9561D490624AA35e156e65e590eB749519/logo.png new file mode 100644 index 00000000..b927a5ab Binary files /dev/null and b/blockchains/smartchain/assets/0xe2604C9561D490624AA35e156e65e590eB749519/logo.png differ diff --git a/blockchains/smartchain/assets/0xe26DFa937315592011fA90baF99B164f9F61bd08/info.json b/blockchains/smartchain/assets/0xe26DFa937315592011fA90baF99B164f9F61bd08/info.json new file mode 100644 index 00000000..c5b748bb --- /dev/null +++ b/blockchains/smartchain/assets/0xe26DFa937315592011fA90baF99B164f9F61bd08/info.json @@ -0,0 +1,11 @@ +{ + "name": "KAINU", + "type": "BEP20", + "symbol": "KAINU", + "decimals": 18, + "website": "https://kainutoken.com", + "description": "Stake Kainu,Give Kainu, Earn Great Reward", + "explorer": "https://bscscan.com/token/0xe26DFa937315592011fA90baF99B164f9F61bd08", + "status": "active", + "id": "0xe26DFa937315592011fA90baF99B164f9F61bd08" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe26DFa937315592011fA90baF99B164f9F61bd08/logo.png b/blockchains/smartchain/assets/0xe26DFa937315592011fA90baF99B164f9F61bd08/logo.png new file mode 100644 index 00000000..369518bd Binary files /dev/null and b/blockchains/smartchain/assets/0xe26DFa937315592011fA90baF99B164f9F61bd08/logo.png differ diff --git a/blockchains/smartchain/assets/0xe2Ac868F2FD097086d83Bc939248E5aE08d35DA4/info.json b/blockchains/smartchain/assets/0xe2Ac868F2FD097086d83Bc939248E5aE08d35DA4/info.json new file mode 100644 index 00000000..b93fc782 --- /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 00000000..c5348399 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 00000000..d903977b --- /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 00000000..9dce7266 Binary files /dev/null and b/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/logo.png differ diff --git a/blockchains/smartchain/assets/0xe2F4516aA9bd7b864FF0C6DD4EbB8878E1BBc97D/info.json b/blockchains/smartchain/assets/0xe2F4516aA9bd7b864FF0C6DD4EbB8878E1BBc97D/info.json new file mode 100644 index 00000000..7ea5f0b4 --- /dev/null +++ b/blockchains/smartchain/assets/0xe2F4516aA9bd7b864FF0C6DD4EbB8878E1BBc97D/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafePitbull", + "type": "BEP20", + "symbol": "SAFEPIT", + "decimals": 9, + "website": "https://safepitbull.com", + "description": "SAFEPIT is an auto liquidity and reflective token on BSC. Join our telegram safepitofficial or visit website to learn more. ", + "explorer": "https://bscscan.com/token/0xe2F4516aA9bd7b864FF0C6DD4EbB8878E1BBc97D", + "status": "active", + "id": "0xe2F4516aA9bd7b864FF0C6DD4EbB8878E1BBc97D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe2F4516aA9bd7b864FF0C6DD4EbB8878E1BBc97D/logo.png b/blockchains/smartchain/assets/0xe2F4516aA9bd7b864FF0C6DD4EbB8878E1BBc97D/logo.png new file mode 100644 index 00000000..67da1cf0 Binary files /dev/null and b/blockchains/smartchain/assets/0xe2F4516aA9bd7b864FF0C6DD4EbB8878E1BBc97D/logo.png differ diff --git a/blockchains/smartchain/assets/0xe2F710fbE35D0305D8bD009Be2d473A88EF82E64/info.json b/blockchains/smartchain/assets/0xe2F710fbE35D0305D8bD009Be2d473A88EF82E64/info.json new file mode 100644 index 00000000..47382fdd --- /dev/null +++ b/blockchains/smartchain/assets/0xe2F710fbE35D0305D8bD009Be2d473A88EF82E64/info.json @@ -0,0 +1,11 @@ +{ + "name": "IBEX Coin", + "website": "https://ibexcoin.net", + "description": "IBEX is a true deflationary, community driven token.", + "explorer": "https://bscscan.com/token/0xe2f710fbe35d0305d8bd009be2d473a88ef82e64", + "type": "BEP20", + "symbol": "IBEX", + "decimals": 9, + "status": "active", + "id": "0xe2F710fbE35D0305D8bD009Be2d473A88EF82E64" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe2F710fbE35D0305D8bD009Be2d473A88EF82E64/logo.png b/blockchains/smartchain/assets/0xe2F710fbE35D0305D8bD009Be2d473A88EF82E64/logo.png new file mode 100644 index 00000000..6110fe1b Binary files /dev/null and b/blockchains/smartchain/assets/0xe2F710fbE35D0305D8bD009Be2d473A88EF82E64/logo.png differ diff --git a/blockchains/smartchain/assets/0xe2cBF8572EAb769311A8c562b00A14Ca55eaa0EA/info.json b/blockchains/smartchain/assets/0xe2cBF8572EAb769311A8c562b00A14Ca55eaa0EA/info.json new file mode 100644 index 00000000..dbb4eabd --- /dev/null +++ b/blockchains/smartchain/assets/0xe2cBF8572EAb769311A8c562b00A14Ca55eaa0EA/info.json @@ -0,0 +1,21 @@ +{ + "name": "SHIBANOMICS", + "website": "https://shibanomics.co.uk/", + "description": "SHIBANOMICS is a deflationary token which means the Total Supply is always decreasing, making it more and more rare", + "explorer": "https://bscscan.com/token/0xe2cBF8572EAb769311A8c562b00A14Ca55eaa0EA", + "type": "BEP20", + "symbol": "SHIBIN", + "decimals": 9, + "status": "active", + "id": "0xe2cBF8572EAb769311A8c562b00A14Ca55eaa0EA", + "links": [ + { + "name": "telegram", + "url": "https://t.me/shibanomics" + }, + { + "name": "x", + "url": "https://x.com/shibanomicsbsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe2cBF8572EAb769311A8c562b00A14Ca55eaa0EA/logo.png b/blockchains/smartchain/assets/0xe2cBF8572EAb769311A8c562b00A14Ca55eaa0EA/logo.png new file mode 100644 index 00000000..5011cbbb Binary files /dev/null and b/blockchains/smartchain/assets/0xe2cBF8572EAb769311A8c562b00A14Ca55eaa0EA/logo.png differ diff --git a/blockchains/smartchain/assets/0xe2e6e66551E5062Acd56925B48bBa981696CcCC2/info.json b/blockchains/smartchain/assets/0xe2e6e66551E5062Acd56925B48bBa981696CcCC2/info.json new file mode 100644 index 00000000..50eead7b --- /dev/null +++ b/blockchains/smartchain/assets/0xe2e6e66551E5062Acd56925B48bBa981696CcCC2/info.json @@ -0,0 +1,29 @@ +{ + "name": "SafeVault", + "website": "https://vaultdefi.com", + "description": "SafeVault is the first 25.65% auto-reimbursing, BUSD rewarding token. It's Hyper-Deflationary & Self-Sustaining. The Vault team is proud to bring an unprecedented vision to the DeFi space.", + "explorer": "https://bscscan.com/token/0xe2e6e66551e5062acd56925b48bba981696cccc2", + "type": "BEP20", + "symbol": "VAULT", + "decimals": 9, + "status": "active", + "id": "0xe2e6e66551E5062Acd56925B48bBa981696CcCC2", + "links": [ + { + "name": "blog", + "url": "https://vaultdefi.com" + }, + { + "name": "x", + "url": "https://x.com/vaultdefi" + }, + { + "name": "facebook", + "url": "https://facebook.com/vaultdefiofficial" + }, + { + "name": "telegram", + "url": "https://t.me/vault_defi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe2e6e66551E5062Acd56925B48bBa981696CcCC2/logo.png b/blockchains/smartchain/assets/0xe2e6e66551E5062Acd56925B48bBa981696CcCC2/logo.png new file mode 100644 index 00000000..b1a149b3 Binary files /dev/null and b/blockchains/smartchain/assets/0xe2e6e66551E5062Acd56925B48bBa981696CcCC2/logo.png differ diff --git a/blockchains/smartchain/assets/0xe320Df552e78D57E95cF1182B6960746d5016561/info.json b/blockchains/smartchain/assets/0xe320Df552e78D57E95cF1182B6960746d5016561/info.json new file mode 100644 index 00000000..c5e6039b --- /dev/null +++ b/blockchains/smartchain/assets/0xe320Df552e78D57E95cF1182B6960746d5016561/info.json @@ -0,0 +1,28 @@ +{ + "name": "DogeCola", + "website": "https://www.dogecola.finance/", + "description": "The first reflection token and soft drink at the same time. Every buy gives members more with the auto-boost and hyper deflation system in place.", + "explorer": "https://bscscan.com/token/0xe320df552e78d57e95cf1182b6960746d5016561", + "type": "BEP20", + "symbol": "DOGECOLA", + "decimals": 9, + "status": "abandoned", + "id": "0xe320Df552e78D57E95cF1182B6960746d5016561", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dogecola" + }, + { + "name": "x", + "url": "https://x.com/doge_cola" + }, + { + "name": "telegram", + "url": "https://t.me/dogecola" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175/info.json b/blockchains/smartchain/assets/0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175/info.json new file mode 100644 index 00000000..27af1e00 --- /dev/null +++ b/blockchains/smartchain/assets/0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175/info.json @@ -0,0 +1,24 @@ +{ + "name": "Petoverse", + "type": "BEP20", + "symbol": "PETO", + "decimals": 5, + "website": "https://www.petoverse.io/", + "description": "Petoverse is the first METAVERSE PROJECT that provides a decentralized financial asset which rewards users with a sustainable fixed compound interest model through use of its unique PAP PROTOCOL (PETO Auto-staking protocol).", + "explorer": "https://bscscan.com/token/0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175", + "status": "active", + "id": "0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175", + "links": [ + { + "name": "x", + "url": "https://x.com/petoverse" + }, + { + "name": "telegram", + "url": "https://t.me/petoverse" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175/logo.png b/blockchains/smartchain/assets/0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175/logo.png new file mode 100644 index 00000000..f085b9ac Binary files /dev/null and b/blockchains/smartchain/assets/0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175/logo.png differ diff --git a/blockchains/smartchain/assets/0xe361344013cC906c56bbA111bDE00C421852c73b/info.json b/blockchains/smartchain/assets/0xe361344013cC906c56bbA111bDE00C421852c73b/info.json new file mode 100644 index 00000000..af0744fc --- /dev/null +++ b/blockchains/smartchain/assets/0xe361344013cC906c56bbA111bDE00C421852c73b/info.json @@ -0,0 +1,11 @@ +{ + "name": "MOONBOYS FINANCE", + "symbol": "MBS", + "type": "BEP20", + "decimals": 9, + "description": "MoonBoys Finance is a community-driven, fair-launched DeFi token which builds exponential value for its holders using three main principles : static rewards, liquidity pool acquisition, and burns.", + "website": "https://moonboys.finance/", + "explorer": "https://bscscan.com/token/0xe361344013cC906c56bbA111bDE00C421852c73b", + "status": "active", + "id": "0xe361344013cC906c56bbA111bDE00C421852c73b" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe361344013cC906c56bbA111bDE00C421852c73b/logo.png b/blockchains/smartchain/assets/0xe361344013cC906c56bbA111bDE00C421852c73b/logo.png new file mode 100644 index 00000000..543c0e97 Binary files /dev/null and b/blockchains/smartchain/assets/0xe361344013cC906c56bbA111bDE00C421852c73b/logo.png differ diff --git a/blockchains/smartchain/assets/0xe365D0172A39f83660282DEbb6ab7dfaE7bEdA3E/info.json b/blockchains/smartchain/assets/0xe365D0172A39f83660282DEbb6ab7dfaE7bEdA3E/info.json new file mode 100644 index 00000000..025fcbb0 --- /dev/null +++ b/blockchains/smartchain/assets/0xe365D0172A39f83660282DEbb6ab7dfaE7bEdA3E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Electra", + "type": "BEP20", + "symbol": "ELECTRA", + "decimals": 8, + "website": "https://electrachain.io/", + "description": "Next Generation of Hybrid Payment Chain", + "explorer": "https://bscscan.com/token/0xe365D0172A39f83660282DEbb6ab7dfaE7bEdA3E", + "status": "active", + "id": "0xe365D0172A39f83660282DEbb6ab7dfaE7bEdA3E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe365D0172A39f83660282DEbb6ab7dfaE7bEdA3E/logo.png b/blockchains/smartchain/assets/0xe365D0172A39f83660282DEbb6ab7dfaE7bEdA3E/logo.png new file mode 100644 index 00000000..71680600 Binary files /dev/null and b/blockchains/smartchain/assets/0xe365D0172A39f83660282DEbb6ab7dfaE7bEdA3E/logo.png differ diff --git a/blockchains/smartchain/assets/0xe369fec23380f9F14ffD07a1DC4b7c1a9fdD81c9/info.json b/blockchains/smartchain/assets/0xe369fec23380f9F14ffD07a1DC4b7c1a9fdD81c9/info.json new file mode 100644 index 00000000..fbd426db --- /dev/null +++ b/blockchains/smartchain/assets/0xe369fec23380f9F14ffD07a1DC4b7c1a9fdD81c9/info.json @@ -0,0 +1,44 @@ +{ + "name": "FROYO", + "type": "BEP20", + "symbol": "FROYO", + "decimals": 18, + "website": "https://froyo.games", + "description": "FROYO is the main currency in the Froyo metaverse.", + "explorer": "https://bscscan.com/token/0xe369fec23380f9F14ffD07a1DC4b7c1a9fdD81c9", + "status": "active", + "id": "0xe369fec23380f9F14ffD07a1DC4b7c1a9fdD81c9", + "links": [ + { + "name": "x", + "url": "https://x.com/realfroyogames" + }, + { + "name": "github", + "url": "https://github.com/froyogames" + }, + { + "name": "telegram", + "url": "https://t.me/froyogames" + }, + { + "name": "medium", + "url": "https://medium.com/@froyogames" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Aja3uWSSAS" + }, + { + "name": "docs", + "url": "https://docs.froyo.games/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/froyo-games/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe369fec23380f9F14ffD07a1DC4b7c1a9fdD81c9/logo.png b/blockchains/smartchain/assets/0xe369fec23380f9F14ffD07a1DC4b7c1a9fdD81c9/logo.png new file mode 100644 index 00000000..bee45164 Binary files /dev/null and b/blockchains/smartchain/assets/0xe369fec23380f9F14ffD07a1DC4b7c1a9fdD81c9/logo.png differ diff --git a/blockchains/smartchain/assets/0xe3D478FE8E8f55F7e9b2b55cF25868EDc9F924d8/info.json b/blockchains/smartchain/assets/0xe3D478FE8E8f55F7e9b2b55cF25868EDc9F924d8/info.json new file mode 100644 index 00000000..5be6d270 --- /dev/null +++ b/blockchains/smartchain/assets/0xe3D478FE8E8f55F7e9b2b55cF25868EDc9F924d8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Gem Protocol", + "website": "https://gemprotocol.io", + "description": "GEM PROTOCOL is a dApps platform that offers free applications for the Binance Smart Chain community.", + "explorer": "https://bscscan.com/token/0xe3D478FE8E8f55F7e9b2b55cF25868EDc9F924d8", + "type": "BEP20", + "symbol": "GEM", + "decimals": 9, + "status": "active", + "id": "0xe3D478FE8E8f55F7e9b2b55cF25868EDc9F924d8" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe3D478FE8E8f55F7e9b2b55cF25868EDc9F924d8/logo.png b/blockchains/smartchain/assets/0xe3D478FE8E8f55F7e9b2b55cF25868EDc9F924d8/logo.png new file mode 100644 index 00000000..1382a13f Binary files /dev/null and b/blockchains/smartchain/assets/0xe3D478FE8E8f55F7e9b2b55cF25868EDc9F924d8/logo.png differ diff --git a/blockchains/smartchain/assets/0xe3f53c0d48360de764dDc2a1A82c3e6DB5d4624d/info.json b/blockchains/smartchain/assets/0xe3f53c0d48360de764dDc2a1A82c3e6DB5d4624d/info.json new file mode 100644 index 00000000..73b1a516 --- /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 00000000..600d588a 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 00000000..865dc123 --- /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 00000000..d28deab3 Binary files /dev/null and b/blockchains/smartchain/assets/0xe42CfB20e00912409B77A602B5BDcfF3c7aCC5F4/logo.png differ diff --git a/blockchains/smartchain/assets/0xe472f729aC326C1B49921CFD492008c8586e50B9/info.json b/blockchains/smartchain/assets/0xe472f729aC326C1B49921CFD492008c8586e50B9/info.json new file mode 100644 index 00000000..a97f24f5 --- /dev/null +++ b/blockchains/smartchain/assets/0xe472f729aC326C1B49921CFD492008c8586e50B9/info.json @@ -0,0 +1,11 @@ +{ + "name": "PiggyBank Coins", + "website": "https://piggybankdefi.com", + "description": "Whoever said pigs can't fly? Let this pig take you to the moon.", + "explorer": "https://bscscan.com/token/0xe472f729aC326C1B49921CFD492008c8586e50B9", + "type": "BEP20", + "symbol": "PIGGYBANK", + "decimals": 9, + "status": "active", + "id": "0xe472f729aC326C1B49921CFD492008c8586e50B9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe472f729aC326C1B49921CFD492008c8586e50B9/logo.png b/blockchains/smartchain/assets/0xe472f729aC326C1B49921CFD492008c8586e50B9/logo.png new file mode 100644 index 00000000..dbb5e30d Binary files /dev/null and b/blockchains/smartchain/assets/0xe472f729aC326C1B49921CFD492008c8586e50B9/logo.png differ diff --git a/blockchains/smartchain/assets/0xe47D4874F671554AD6619e22FB5570C81413A14f/info.json b/blockchains/smartchain/assets/0xe47D4874F671554AD6619e22FB5570C81413A14f/info.json new file mode 100644 index 00000000..a1e00055 --- /dev/null +++ b/blockchains/smartchain/assets/0xe47D4874F671554AD6619e22FB5570C81413A14f/info.json @@ -0,0 +1,11 @@ +{ + "name": "ELON MARS", + "website": "https://elonmars.info", + "description": "ELON MARS is Community Meme Token", + "explorer": "https://bscscan.com/token/0xe47D4874F671554AD6619e22FB5570C81413A14f", + "symbol": "ELONMARS", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xe47D4874F671554AD6619e22FB5570C81413A14f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe47D4874F671554AD6619e22FB5570C81413A14f/logo.png b/blockchains/smartchain/assets/0xe47D4874F671554AD6619e22FB5570C81413A14f/logo.png new file mode 100644 index 00000000..ecf7174c Binary files /dev/null and b/blockchains/smartchain/assets/0xe47D4874F671554AD6619e22FB5570C81413A14f/logo.png differ diff --git a/blockchains/smartchain/assets/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE/info.json b/blockchains/smartchain/assets/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE/info.json new file mode 100644 index 00000000..d83f0a29 --- /dev/null +++ b/blockchains/smartchain/assets/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE/info.json @@ -0,0 +1,28 @@ +{ + "name": "Frax Share", + "type": "BEP20", + "symbol": "FXS", + "decimals": 18, + "website": "https://frax.finance/", + "description": "FXS is the value accrual and governance token of the entire Frax ecosystem. Frax is a fractional-algorithmic stablecoin protocol. It aims to provide highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC.", + "explorer": "https://bscscan.com/token/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE", + "status": "active", + "id": "0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE", + "links": [ + { + "name": "x", + "url": "https://x.com/fraxfinance" + }, + { + "name": "telegram", + "url": "https://t.me/fraxfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/frax-share/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE/logo.png b/blockchains/smartchain/assets/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE/logo.png new file mode 100644 index 00000000..bf59041d Binary files /dev/null and b/blockchains/smartchain/assets/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE/logo.png differ diff --git a/blockchains/smartchain/assets/0xe49ed1B44117BB7379c1506cf5815aE33089e1A7/info.json b/blockchains/smartchain/assets/0xe49ed1B44117BB7379c1506cf5815aE33089e1A7/info.json new file mode 100644 index 00000000..631cdc71 --- /dev/null +++ b/blockchains/smartchain/assets/0xe49ed1B44117BB7379c1506cf5815aE33089e1A7/info.json @@ -0,0 +1,12 @@ +{ + "name": "Order of the Black Rose", + "website": "https://nftobr.com", + "description": "The official token of Order of the Black Rose", + "explorer": "https://bscscan.com/token/0xe49ed1B44117BB7379c1506cf5815aE33089e1A7", + "research": "", + "type": "BEP20", + "symbol": "OBRb", + "decimals": 18, + "status": "active", + "id": "0xe49ed1B44117BB7379c1506cf5815aE33089e1A7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe49ed1B44117BB7379c1506cf5815aE33089e1A7/logo.png b/blockchains/smartchain/assets/0xe49ed1B44117BB7379c1506cf5815aE33089e1A7/logo.png new file mode 100644 index 00000000..bd44a9b6 Binary files /dev/null and b/blockchains/smartchain/assets/0xe49ed1B44117BB7379c1506cf5815aE33089e1A7/logo.png differ diff --git a/blockchains/smartchain/assets/0xe4B4d059079B5ecDa61485F37f8f39a05E13a36e/info.json b/blockchains/smartchain/assets/0xe4B4d059079B5ecDa61485F37f8f39a05E13a36e/info.json new file mode 100644 index 00000000..7d06545a --- /dev/null +++ b/blockchains/smartchain/assets/0xe4B4d059079B5ecDa61485F37f8f39a05E13a36e/info.json @@ -0,0 +1,11 @@ +{ + "name": "RabbitsMoon", + "type": "BEP20", + "symbol": "Rabbits", + "decimals": 8, + "website": "https://rabbitsmoon.co.in", + "description": "Rabbits Moon is a blockchain innovation hub with a DAO-driven seed stage fund, decentralized incubator, and launchpad, for empowering next innovations of the blockchain ecosystem, through community-driven governance, feedback, involvement and funding mechanisms.", + "explorer": "https://bscscan.com/token/0xe4B4d059079B5ecDa61485F37f8f39a05E13a36e", + "status": "active", + "id": "0xe4B4d059079B5ecDa61485F37f8f39a05E13a36e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe4B4d059079B5ecDa61485F37f8f39a05E13a36e/logo.png b/blockchains/smartchain/assets/0xe4B4d059079B5ecDa61485F37f8f39a05E13a36e/logo.png new file mode 100644 index 00000000..7c6e54ad Binary files /dev/null and b/blockchains/smartchain/assets/0xe4B4d059079B5ecDa61485F37f8f39a05E13a36e/logo.png differ diff --git a/blockchains/smartchain/assets/0xe4CA1F75ECA6214393fCE1C1b316C237664EaA8e/info.json b/blockchains/smartchain/assets/0xe4CA1F75ECA6214393fCE1C1b316C237664EaA8e/info.json new file mode 100644 index 00000000..f349c726 --- /dev/null +++ b/blockchains/smartchain/assets/0xe4CA1F75ECA6214393fCE1C1b316C237664EaA8e/info.json @@ -0,0 +1,34 @@ +{ + "name": "Orion Protocol", + "website": "https://orionprotocol.io/", + "description": "Built on the most advanced liquidity aggregator ever developed, Orion Protocol solves some of the largest issues in DeFi by aggregating the liquidity of the entire crypto market into one decentralized platform. This underpins each solution built on the protocol, including revolutionary trading solution Orion Terminal - aggregating the liquidity of the entire crypto market on one decentralized platform. The roadmap also includes a price oracle and a high-margin DEX.", + "explorer": "https://bscscan.com/token/0xe4ca1f75eca6214393fce1c1b316c237664eaa8e", + "research": "https://research.binance.com/en/projects/orion-protocol", + "type": "BEP20", + "symbol": "ORN", + "decimals": 8, + "status": "active", + "id": "0xe4CA1F75ECA6214393fCE1C1b316C237664EaA8e", + "links": [ + { + "name": "github", + "url": "https://github.com/orionprotocol" + }, + { + "name": "x", + "url": "https://x.com/orion_protocol" + }, + { + "name": "telegram", + "url": "https://t.me/orionprotocol" + }, + { + "name": "medium", + "url": "https://medium.com/orion-protocol" + }, + { + "name": "whitepaper", + "url": "https://www.orionprotocol.io/hubfs/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe4CA1F75ECA6214393fCE1C1b316C237664EaA8e/logo.png b/blockchains/smartchain/assets/0xe4CA1F75ECA6214393fCE1C1b316C237664EaA8e/logo.png new file mode 100644 index 00000000..39e7c4b3 Binary files /dev/null and b/blockchains/smartchain/assets/0xe4CA1F75ECA6214393fCE1C1b316C237664EaA8e/logo.png differ diff --git a/blockchains/smartchain/assets/0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5/info.json b/blockchains/smartchain/assets/0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5/info.json new file mode 100644 index 00000000..44538c4b --- /dev/null +++ b/blockchains/smartchain/assets/0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5/info.json @@ -0,0 +1,36 @@ +{ + "name": "Galxe", + "type": "BEP20", + "symbol": "GAL", + "decimals": 18, + "website": "https://galxe.com/", + "description": "Galxe is the leading Web3 credential data network in the world.", + "explorer": "https://bscscan.com/token/0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5", + "status": "active", + "id": "0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/galxe/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/galxe" + }, + { + "name": "x", + "url": "https://x.com/galxe" + }, + { + "name": "telegram", + "url": "https://t.me/galxe" + }, + { + "name": "discord", + "url": "https://discord.com/invite/galxe" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5/logo.png b/blockchains/smartchain/assets/0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5/logo.png new file mode 100644 index 00000000..2c93c622 Binary files /dev/null and b/blockchains/smartchain/assets/0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5/logo.png differ diff --git a/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/info.json b/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/info.json new file mode 100644 index 00000000..c04c634c --- /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 00000000..bcfd3fce 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 00000000..23f4f0bb --- /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 00000000..6a9a2201 Binary files /dev/null and b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/logo.png differ diff --git a/blockchains/smartchain/assets/0xe540b81133C597b31c3A33E318E5bC0f3e78DfC9/info.json b/blockchains/smartchain/assets/0xe540b81133C597b31c3A33E318E5bC0f3e78DfC9/info.json new file mode 100644 index 00000000..2b0586d5 --- /dev/null +++ b/blockchains/smartchain/assets/0xe540b81133C597b31c3A33E318E5bC0f3e78DfC9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Oros", + "website": "https://oros.finance", + "description": "Earn passive income and help the world like a boss", + "explorer": "https://bscscan.com/token/0xe540b81133C597b31c3A33E318E5bC0f3e78DfC9", + "type": "BEP20", + "symbol": "OROS", + "decimals": 9, + "status": "active", + "id": "0xe540b81133C597b31c3A33E318E5bC0f3e78DfC9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe540b81133C597b31c3A33E318E5bC0f3e78DfC9/logo.png b/blockchains/smartchain/assets/0xe540b81133C597b31c3A33E318E5bC0f3e78DfC9/logo.png new file mode 100644 index 00000000..751d5d6c Binary files /dev/null and b/blockchains/smartchain/assets/0xe540b81133C597b31c3A33E318E5bC0f3e78DfC9/logo.png differ diff --git a/blockchains/smartchain/assets/0xe550a593d09FBC8DCD557b5C88Cea6946A8b404A/info.json b/blockchains/smartchain/assets/0xe550a593d09FBC8DCD557b5C88Cea6946A8b404A/info.json new file mode 100644 index 00000000..228280a3 --- /dev/null +++ b/blockchains/smartchain/assets/0xe550a593d09FBC8DCD557b5C88Cea6946A8b404A/info.json @@ -0,0 +1,11 @@ +{ + "name": "τDogecoin", + "website": "https://btcst.finance/", + "description": "τDogecoin is a synthetic Dogecoin supported by some of the largest miners in the world. Implementing the τ protocol, τDogecoin shows superior capital efficiency and composability for DeFi uses.", + "explorer": "https://bscscan.com/token/0xe550a593d09FBC8DCD557b5C88Cea6946A8b404A", + "type": "BEP20", + "symbol": "τDOGE", + "decimals": 8, + "status": "active", + "id": "0xe550a593d09FBC8DCD557b5C88Cea6946A8b404A" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe550a593d09FBC8DCD557b5C88Cea6946A8b404A/logo.png b/blockchains/smartchain/assets/0xe550a593d09FBC8DCD557b5C88Cea6946A8b404A/logo.png new file mode 100644 index 00000000..727559b3 Binary files /dev/null and b/blockchains/smartchain/assets/0xe550a593d09FBC8DCD557b5C88Cea6946A8b404A/logo.png differ diff --git a/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json b/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json new file mode 100644 index 00000000..8848b1ee --- /dev/null +++ b/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json @@ -0,0 +1,28 @@ +{ + "id": "0xe552Fb52a4F19e44ef5A967632DBc320B0820639", + "name": "MetisDAO", + "website": "https://metis.io", + "description": "Metis Token", + "explorer": "https://bscscan.com/token/0xe552fb52a4f19e44ef5a967632dbc320b0820639", + "type": "BEP20", + "symbol": "Metis", + "decimals": 18, + "status": "abandoned", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/MetisDAO" + }, + { + "name": "github", + "url": "https://github.com/MetisProtocol/metis" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metisdao/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe56842Ed550Ff2794F010738554db45E60730371/info.json b/blockchains/smartchain/assets/0xe56842Ed550Ff2794F010738554db45E60730371/info.json new file mode 100644 index 00000000..730e9b05 --- /dev/null +++ b/blockchains/smartchain/assets/0xe56842Ed550Ff2794F010738554db45E60730371/info.json @@ -0,0 +1,25 @@ +{ + "name": "Binemon token", + "website": "https://binemon.io", + "description": "Binemon is a virtual pet NFT game combined with elements of an Idle RPG game.", + "explorer": "https://bscscan.com/token/0xe56842ed550ff2794f010738554db45e60730371", + "type": "BEP20", + "symbol": "BIN", + "decimals": 18, + "status": "active", + "id": "0xe56842Ed550Ff2794F010738554db45E60730371", + "links": [ + { + "name": "x", + "url": "https://x.com/binemonnft" + }, + { + "name": "telegram", + "url": "https://t.me/binemonchat" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binemon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe56842Ed550Ff2794F010738554db45E60730371/logo.png b/blockchains/smartchain/assets/0xe56842Ed550Ff2794F010738554db45E60730371/logo.png new file mode 100644 index 00000000..598268aa Binary files /dev/null and b/blockchains/smartchain/assets/0xe56842Ed550Ff2794F010738554db45E60730371/logo.png differ diff --git a/blockchains/smartchain/assets/0xe56a473043EaAB7947c0a2408cEA623074500EE3/info.json b/blockchains/smartchain/assets/0xe56a473043EaAB7947c0a2408cEA623074500EE3/info.json new file mode 100644 index 00000000..61b56833 --- /dev/null +++ b/blockchains/smartchain/assets/0xe56a473043EaAB7947c0a2408cEA623074500EE3/info.json @@ -0,0 +1,61 @@ +{ + "name": "Safeswap TOKEN", + "type": "BEP20", + "symbol": "SWAP", + "decimals": 18, + "website": "https://info.safeswap.online", + "description": "Safeswap.finance (SWAP) is a DeFi (DEX) based decentralized trading protocol that allows different types of cryptocurrencies to be swapped & exchanged, SWAP token issued by safeswap.online protocol.", + "explorer": "https://bscscan.com/token/0xe56a473043EaAB7947c0a2408cEA623074500EE3", + "status": "active", + "id": "0xe56a473043EaAB7947c0a2408cEA623074500EE3", + "links": [ + { + "name": "x", + "url": "https://x.com/safeswaponline" + }, + { + "name": "telegram", + "url": "https://t.me/safeswap_online" + }, + { + "name": "telegram_news", + "url": "https://t.me/SafeSwapAnnouncement" + }, + { + "name": "blog", + "url": "https://binancechain.news/%f0%9f%94%b5-safeswap-has-just-launched-2-new-meda-meda-staking-pools-%e2%9a%aa%ef%b8%8f/2021/10/09/" + }, + { + "name": "facebook", + "url": "https://facebook.com/safeswaponline" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/safeswaponline" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCm594jehnIUlIm-WUK4XoXg" + }, + { + "name": "forum", + "url": "https://bitcointalk.org/index.php?topic=5348899" + }, + { + "name": "docs", + "url": "https://docs.google.com/document/d/19nWQlfyRzg1f8lUc5wKmaMpp_UeNQxdlXpIo3gSpk28/edit?usp=drivesdk" + }, + { + "name": "whitepaper", + "url": "https://docs.google.com/document/d/1E0oPPNHg5zmZL5gsL4fWkKVxaMBZ0dnE/edit?usp=drivesdk&ouid=114521995883501580344&rtpof=true&sd=true" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/safeswaponline/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/safeswap-online" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe56a473043EaAB7947c0a2408cEA623074500EE3/logo.png b/blockchains/smartchain/assets/0xe56a473043EaAB7947c0a2408cEA623074500EE3/logo.png new file mode 100644 index 00000000..6ebe42ea Binary files /dev/null and b/blockchains/smartchain/assets/0xe56a473043EaAB7947c0a2408cEA623074500EE3/logo.png differ diff --git a/blockchains/smartchain/assets/0xe57F73EB27Da9D17f90C994744D842e95700C100/info.json b/blockchains/smartchain/assets/0xe57F73EB27Da9D17f90C994744D842e95700C100/info.json new file mode 100644 index 00000000..d3f94cf6 --- /dev/null +++ b/blockchains/smartchain/assets/0xe57F73EB27Da9D17f90C994744D842e95700C100/info.json @@ -0,0 +1,52 @@ +{ + "name": "Pepe AI", + "type": "BEP20", + "symbol": "PepeAI", + "decimals": 9, + "website": "https://pepe.style", + "description": "The most memeable memecoin in existence. The dogs have had their day, it’s time for Pepe AI to take reign.", + "explorer": "https://bscscan.com/token/0xe57F73EB27Da9D17f90C994744D842e95700C100", + "status": "active", + "id": "0xe57F73EB27Da9D17f90C994744D842e95700C100", + "links": [ + { + "name": "x", + "url": "https://x.com/pepe_ai_bsc" + }, + { + "name": "github", + "url": "https://github.com/pepestyle" + }, + { + "name": "telegram", + "url": "https://t.me/pepe_ai_bsc" + }, + { + "name": "source_code", + "url": "https://github.com/pepestyle/contract/blob/main/pepe_ai.sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepe-ai-bsc/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pepe-ai/" + }, + { + "name": "whitepaper", + "url": "https://docs.pepe.style/" + }, + { + "name": "docs", + "url": "https://docs.pepe.style/" + }, + { + "name": "medium", + "url": "https://medium.com/@pepe_ai" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe57F73EB27Da9D17f90C994744D842e95700C100/logo.png b/blockchains/smartchain/assets/0xe57F73EB27Da9D17f90C994744D842e95700C100/logo.png new file mode 100644 index 00000000..83136391 Binary files /dev/null and b/blockchains/smartchain/assets/0xe57F73EB27Da9D17f90C994744D842e95700C100/logo.png differ diff --git a/blockchains/smartchain/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json b/blockchains/smartchain/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json new file mode 100644 index 00000000..472892bc --- /dev/null +++ b/blockchains/smartchain/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/info.json @@ -0,0 +1,44 @@ +{ + "name": "PayBolt", + "type": "BEP20", + "symbol": "PAY", + "decimals": 18, + "website": "https://www.paybolt.io/", + "description": "Pay expenses, earn $PAY rewards with your crypto tokens in near-instant time. Start spending your tokens at cafe, restaurant and everywhere.", + "explorer": "https://bscscan.com/token/0xe580074A10360404AF3ABfe2d524D5806D993ea3", + "status": "active", + "id": "0xe580074A10360404AF3ABfe2d524D5806D993ea3", + "links": [ + { + "name": "telegram", + "url": "https://t.me/PayBolt" + }, + { + "name": "x", + "url": "https://x.com/PayBoltofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/PayBolt" + }, + { + "name": "facebook", + "url": "https://facebook.com/PayBolt" + }, + { + "name": "whitepaper", + "url": "https://file.paybolt.io/paybolt_whitepaper.pdf" + }, + { + "name": "github", + "url": "https://github.com/paybolt" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/paybolt/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/logo.png b/blockchains/smartchain/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/logo.png new file mode 100644 index 00000000..83f7a479 Binary files /dev/null and b/blockchains/smartchain/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/logo.png differ diff --git a/blockchains/smartchain/assets/0xe5BA472C98b7E4695bD856290De66bDEDaffC123/info.json b/blockchains/smartchain/assets/0xe5BA472C98b7E4695bD856290De66bDEDaffC123/info.json new file mode 100644 index 00000000..d59f0a9e --- /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 00000000..4fac0bda Binary files /dev/null and b/blockchains/smartchain/assets/0xe5BA472C98b7E4695bD856290De66bDEDaffC123/logo.png differ diff --git a/blockchains/smartchain/assets/0xe5D46cC0Fd592804B36F9dc6D2ed7D4D149EBd6F/info.json b/blockchains/smartchain/assets/0xe5D46cC0Fd592804B36F9dc6D2ed7D4D149EBd6F/info.json new file mode 100644 index 00000000..7d2aa2bc --- /dev/null +++ b/blockchains/smartchain/assets/0xe5D46cC0Fd592804B36F9dc6D2ed7D4D149EBd6F/info.json @@ -0,0 +1,11 @@ +{ + "name": "Sportemon-Go", + "website": "https://sportemongo.com", + "description": "Sportemon-Go the NFT Gaming Revolution.", + "explorer": "https://bscscan.com/token/0xe5D46cC0Fd592804B36F9dc6D2ed7D4D149EBd6F", + "type": "BEP20", + "symbol": "SGO", + "decimals": 9, + "status": "active", + "id": "0xe5D46cC0Fd592804B36F9dc6D2ed7D4D149EBd6F" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe5D46cC0Fd592804B36F9dc6D2ed7D4D149EBd6F/logo.png b/blockchains/smartchain/assets/0xe5D46cC0Fd592804B36F9dc6D2ed7D4D149EBd6F/logo.png new file mode 100644 index 00000000..92daf7e9 Binary files /dev/null and b/blockchains/smartchain/assets/0xe5D46cC0Fd592804B36F9dc6D2ed7D4D149EBd6F/logo.png differ diff --git a/blockchains/smartchain/assets/0xe5a09784b16E1065C37dF14c6e2f06fDcE317a1b/info.json b/blockchains/smartchain/assets/0xe5a09784b16E1065C37dF14c6e2f06fDcE317a1b/info.json new file mode 100644 index 00000000..eaaaf7d0 --- /dev/null +++ b/blockchains/smartchain/assets/0xe5a09784b16E1065C37dF14c6e2f06fDcE317a1b/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kai Inu", + "website": "https://kaiinu.io/", + "description": "Kai Inu is a deflationary token running on the BSC network joining the ranks of the master pups.", + "explorer": "https://bscscan.com/token/0xe5a09784b16e1065c37df14c6e2f06fdce317a1b", + "type": "BEP20", + "symbol": "KaiInu", + "decimals": 9, + "status": "active", + "id": "0xe5a09784b16E1065C37dF14c6e2f06fDcE317a1b" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe5a09784b16E1065C37dF14c6e2f06fDcE317a1b/logo.png b/blockchains/smartchain/assets/0xe5a09784b16E1065C37dF14c6e2f06fDcE317a1b/logo.png new file mode 100644 index 00000000..51a22f3e Binary files /dev/null and b/blockchains/smartchain/assets/0xe5a09784b16E1065C37dF14c6e2f06fDcE317a1b/logo.png differ diff --git a/blockchains/smartchain/assets/0xe5a46Bf898ce7583B612E5D168073ff773D7857e/info.json b/blockchains/smartchain/assets/0xe5a46Bf898ce7583B612E5D168073ff773D7857e/info.json new file mode 100644 index 00000000..3da6a831 --- /dev/null +++ b/blockchains/smartchain/assets/0xe5a46Bf898ce7583B612E5D168073ff773D7857e/info.json @@ -0,0 +1,36 @@ +{ + "name": "CVIP", + "type": "BEP20", + "symbol": "CVIP", + "decimals": 18, + "website": "https://www.cvip.io/", + "description": "CVIP is a decentralized protocol on binance smart chain where users can farm ,stake participate in IDOs. Users and Partners can perform farm optimisers and earn crypto by participating in various options.", + "explorer": "https://bscscan.com/token/0xe5a46Bf898ce7583B612E5D168073ff773D7857e", + "status": "active", + "id": "0xe5a46Bf898ce7583B612E5D168073ff773D7857e", + "links": [ + { + "name": "x", + "url": "https://x.com/CVIP_IO?t=fWZ9WdMsFI8rPQqvcp4Dzw&s=09" + }, + { + "name": "telegram", + "url": "https://t.me/cvipdotio" + }, + { + "name": "whitepaper", + "url": "https://www.cvip.io/static/file/CVIP-WHITEPAPER1.0.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cvip/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/cvip" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe5a46Bf898ce7583B612E5D168073ff773D7857e/logo.png b/blockchains/smartchain/assets/0xe5a46Bf898ce7583B612E5D168073ff773D7857e/logo.png new file mode 100644 index 00000000..7f85381d Binary files /dev/null and b/blockchains/smartchain/assets/0xe5a46Bf898ce7583B612E5D168073ff773D7857e/logo.png differ diff --git a/blockchains/smartchain/assets/0xe614E2fc6C787035FF51f452e8E826Bfd32D5283/info.json b/blockchains/smartchain/assets/0xe614E2fc6C787035FF51f452e8E826Bfd32D5283/info.json new file mode 100644 index 00000000..2e471d40 --- /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 00000000..985987a0 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 00000000..0cb515c8 --- /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 00000000..04638be4 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 new file mode 100644 index 00000000..66ac198c --- /dev/null +++ b/blockchains/smartchain/assets/0xe64972C311840cFaf2267DCfD365571F9D9544d9/info.json @@ -0,0 +1,29 @@ +{ + "name": "Sphynx BSC", + "type": "BEP20", + "symbol": "SPHYNX", + "decimals": 18, + "website": "https://sphynxtoken.co", + "description": "SphynxSwap aims to provide an AIO solution for trading, farming, staking and holding in a cross chain environment. The amount of platforms out there can be overwhelming and difficult for an individual to navigate. The idea is to break that massive barrier for those new to the world of crypto.", + "explorer": "https://bscscan.com/token/0xe64972C311840cFaf2267DCfD365571F9D9544d9", + "status": "active", + "id": "0xe64972C311840cFaf2267DCfD365571F9D9544d9", + "links": [ + { + "name": "x", + "url": "https://x.com/sphynxswap?s=21" + }, + { + "name": "telegram", + "url": "https://t.me/sphynxswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sphynx-bsc/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/sphynx" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe64972C311840cFaf2267DCfD365571F9D9544d9/logo.png b/blockchains/smartchain/assets/0xe64972C311840cFaf2267DCfD365571F9D9544d9/logo.png new file mode 100644 index 00000000..92d7556e Binary files /dev/null and b/blockchains/smartchain/assets/0xe64972C311840cFaf2267DCfD365571F9D9544d9/logo.png differ diff --git a/blockchains/smartchain/assets/0xe65313B085258a671d044F7Ad9D9fcd514c5d9e9/info.json b/blockchains/smartchain/assets/0xe65313B085258a671d044F7Ad9D9fcd514c5d9e9/info.json new file mode 100644 index 00000000..d94f180b --- /dev/null +++ b/blockchains/smartchain/assets/0xe65313B085258a671d044F7Ad9D9fcd514c5d9e9/info.json @@ -0,0 +1,24 @@ +{ + "name": "Fairface Token", + "type": "BEP20", + "symbol": "FAF", + "decimals": 18, + "website": "https://www.fairface.io/", + "description": "FAF token will be the first one to be implemented as a reward token on B2C platforms.", + "explorer": "https://bscscan.com/token/0xe65313b085258a671d044f7ad9d9fcd514c5d9e9", + "status": "active", + "id": "0xe65313B085258a671d044F7Ad9D9fcd514c5d9e9", + "links": [ + { + "name": "x", + "url": "https://x.com/Faftoken" + }, + { + "name": "telegram", + "url": "https://t.me/fairfacereview" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe65313B085258a671d044F7Ad9D9fcd514c5d9e9/logo.png b/blockchains/smartchain/assets/0xe65313B085258a671d044F7Ad9D9fcd514c5d9e9/logo.png new file mode 100644 index 00000000..1b0e1d28 Binary files /dev/null and b/blockchains/smartchain/assets/0xe65313B085258a671d044F7Ad9D9fcd514c5d9e9/logo.png differ diff --git a/blockchains/smartchain/assets/0xe6837794FBC6DD024733A1A31F86061296FA2752/info.json b/blockchains/smartchain/assets/0xe6837794FBC6DD024733A1A31F86061296FA2752/info.json new file mode 100644 index 00000000..d52d9f27 --- /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 00000000..29bfd0c5 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 00000000..d44d81e7 --- /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 00000000..6f765581 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 00000000..1913aaa8 --- /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 new file mode 100644 index 00000000..d309284f --- /dev/null +++ b/blockchains/smartchain/assets/0xe6E6A022b4d4e538Ca0a1f47941CbBF3F9cc1467/info.json @@ -0,0 +1,37 @@ +{ + "name": "NUTS Gaming", + "type": "BEP20", + "symbol": "NUTSG", + "decimals": 9, + "website": "https://nutsgaming.net", + "description": "NUTS Gaming is a token developed through the Binance Smart Chain. It aims to apply crypto technology to optimize the economy of the poker & gaming industry.", + "explorer": "https://bscscan.com/token/0xe6E6A022b4d4e538Ca0a1f47941CbBF3F9cc1467", + "status": "active", + "id": "0xe6E6A022b4d4e538Ca0a1f47941CbBF3F9cc1467", + "links": [ + { + "name": "x", + "url": "https://x.com/NUTSGamingBSC" + }, + { + "name": "github", + "url": "https://github.com/JeroNUTSG/NUTSgaming" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UClI7J9QNMUdk8Wua3yUj9HA" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/NUTSGamingBSC/" + }, + { + "name": "discord", + "url": "https://discord.com/channels/857269136328622081/857276302489681980" + }, + { + "name": "medium", + "url": "https://medium.com/@NUTSGamingBSC" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe6E6A022b4d4e538Ca0a1f47941CbBF3F9cc1467/logo.png b/blockchains/smartchain/assets/0xe6E6A022b4d4e538Ca0a1f47941CbBF3F9cc1467/logo.png new file mode 100644 index 00000000..40535b4c Binary files /dev/null and b/blockchains/smartchain/assets/0xe6E6A022b4d4e538Ca0a1f47941CbBF3F9cc1467/logo.png differ diff --git a/blockchains/smartchain/assets/0xe6ad583f6b4Dd429889F2307CbB80D53BC684444/info.json b/blockchains/smartchain/assets/0xe6ad583f6b4Dd429889F2307CbB80D53BC684444/info.json new file mode 100644 index 00000000..fdb528b6 --- /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 new file mode 100644 index 00000000..864a61e0 --- /dev/null +++ b/blockchains/smartchain/assets/0xe702c303173f90094ce8c9c6CA3f198eCA0E027C/info.json @@ -0,0 +1,29 @@ +{ + "name": "LOFcrypto", + "website": "https://lofcrypto.com/", + "description": "$LOF is a High-Yield, Deflationary, and Frictionless Farming Token on the Binance Smart Chain. We support content creators & always reward our holders. At $LOF, we care and have made it one of our top goals to donate to charities preventing human trafficking. We’re proud to say that within 24 hours of launch $LOF reached a historical figure $29 million market cap with a record amount of holders. We are humbled & grateful for those who believed in our project from day one.", + "explorer": "https://bscscan.com/token/0xe702c303173f90094ce8c9c6ca3f198eca0e027c", + "type": "BEP20", + "symbol": "LOF", + "decimals": 9, + "status": "active", + "id": "0xe702c303173f90094ce8c9c6CA3f198eCA0E027C", + "links": [ + { + "name": "github", + "url": "https://github.com/LonelyFans/LonelyFans/" + }, + { + "name": "x", + "url": "https://x.com/LOFcrypto" + }, + { + "name": "telegram", + "url": "https://t.me/LOFcrypto" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/LOFcrypto/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe702c303173f90094ce8c9c6CA3f198eCA0E027C/logo.png b/blockchains/smartchain/assets/0xe702c303173f90094ce8c9c6CA3f198eCA0E027C/logo.png new file mode 100644 index 00000000..0bc18a17 Binary files /dev/null and b/blockchains/smartchain/assets/0xe702c303173f90094ce8c9c6CA3f198eCA0E027C/logo.png differ diff --git a/blockchains/smartchain/assets/0xe714A9C04f5925a3fe89E4F6e21437BF0E0c774d/info.json b/blockchains/smartchain/assets/0xe714A9C04f5925a3fe89E4F6e21437BF0E0c774d/info.json new file mode 100644 index 00000000..4c4ee278 --- /dev/null +++ b/blockchains/smartchain/assets/0xe714A9C04f5925a3fe89E4F6e21437BF0E0c774d/info.json @@ -0,0 +1,11 @@ +{ + "name": "GOLD FINCH CRYPTO CURRENCY", + "type": "BEP20", + "symbol": "GFCC", + "decimals": 18, + "website": "https://goldfinch.global", + "description": "GOLD FINCH CRYPTO CURRENCY (GFCC) is a cutting edge block chain Project, with the aim to develop a revolutionary decentralized platform for trading gold and other precious metals and for receiving gold and precious metals markets information.", + "explorer": "https://bscscan.com/token/0xe714A9C04f5925a3fe89E4F6e21437BF0E0c774d", + "status": "active", + "id": "0xe714A9C04f5925a3fe89E4F6e21437BF0E0c774d" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe714A9C04f5925a3fe89E4F6e21437BF0E0c774d/logo.png b/blockchains/smartchain/assets/0xe714A9C04f5925a3fe89E4F6e21437BF0E0c774d/logo.png new file mode 100644 index 00000000..3f6ddcc8 Binary files /dev/null and b/blockchains/smartchain/assets/0xe714A9C04f5925a3fe89E4F6e21437BF0E0c774d/logo.png differ diff --git a/blockchains/smartchain/assets/0xe73c081cB82f1e8486f18a833D547a33F28B1A45/info.json b/blockchains/smartchain/assets/0xe73c081cB82f1e8486f18a833D547a33F28B1A45/info.json new file mode 100644 index 00000000..bb4f4d3f --- /dev/null +++ b/blockchains/smartchain/assets/0xe73c081cB82f1e8486f18a833D547a33F28B1A45/info.json @@ -0,0 +1,26 @@ +{ + "name": "JGB Token", + "type": "BEP20", + "symbol": "JGB", + "decimals": 18, + "website": "https://happytreasure.io", + "description": "JGB is the currency in circulation in the game. Although the quantity of JGB issues is unlimited, the quantity of NFT in the whole game is limited, which also reflects the value of JGB. The balance between its produce and destruction mechanism is the premise of all game design on the platform, because its stability is the cornerstone of the whole platform.", + "explorer": "https://bscscan.com/token/0xe73c081cB82f1e8486f18a833D547a33F28B1A45", + "status": "active", + "id": "0xe73c081cB82f1e8486f18a833D547a33F28B1A45", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Jump_CN" + }, + { + "name": "x", + "url": "https://x.com/HappyTreasure__" + } + ], + "tags": [ + "defi", + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe73c081cB82f1e8486f18a833D547a33F28B1A45/logo.png b/blockchains/smartchain/assets/0xe73c081cB82f1e8486f18a833D547a33F28B1A45/logo.png new file mode 100644 index 00000000..fdafef37 Binary files /dev/null and b/blockchains/smartchain/assets/0xe73c081cB82f1e8486f18a833D547a33F28B1A45/logo.png differ diff --git a/blockchains/smartchain/assets/0xe75BF67Df2388183d9b7714231996C937d4a855A/info.json b/blockchains/smartchain/assets/0xe75BF67Df2388183d9b7714231996C937d4a855A/info.json new file mode 100644 index 00000000..11c82734 --- /dev/null +++ b/blockchains/smartchain/assets/0xe75BF67Df2388183d9b7714231996C937d4a855A/info.json @@ -0,0 +1,32 @@ +{ + "name": "Aeterna", + "type": "BEP20", + "symbol": "$Aeterna", + "decimals": 5, + "website": "https://www.aeterna.eco/", + "description": "Aeterna is a unique de-fi eco-system that offers a variety of ways to generate wealth and navigate your way through a confusing decentralized world.", + "explorer": "https://bscscan.com/token/0xe75BF67Df2388183d9b7714231996C937d4a855A", + "status": "active", + "id": "0xe75BF67Df2388183d9b7714231996C937d4a855A", + "links": [ + { + "name": "x", + "url": "https://x.com/project_aeterna" + }, + { + "name": "telegram", + "url": "https://t.me/aeternamain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aeterna/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/snV7qnVWj8" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe75BF67Df2388183d9b7714231996C937d4a855A/logo.png b/blockchains/smartchain/assets/0xe75BF67Df2388183d9b7714231996C937d4a855A/logo.png new file mode 100644 index 00000000..b9a3ff85 Binary files /dev/null and b/blockchains/smartchain/assets/0xe75BF67Df2388183d9b7714231996C937d4a855A/logo.png differ diff --git a/blockchains/smartchain/assets/0xe76804b43F17FC41F226d63Fd2A676DF409D4678/info.json b/blockchains/smartchain/assets/0xe76804b43F17FC41F226d63Fd2A676DF409D4678/info.json new file mode 100644 index 00000000..1073316c --- /dev/null +++ b/blockchains/smartchain/assets/0xe76804b43F17FC41F226d63Fd2A676DF409D4678/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bat Finance", + "website": "https://app.batex.io", + "description": "BAT is a decentralized, community driven, fair launched Meme Token in BSC", + "explorer": "https://bscscan.com/token/0xe76804b43f17fc41f226d63fd2a676df409d4678", + "type": "BEP20", + "symbol": "BAT", + "decimals": 9, + "status": "active", + "id": "0xe76804b43F17FC41F226d63Fd2A676DF409D4678" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe76804b43F17FC41F226d63Fd2A676DF409D4678/logo.png b/blockchains/smartchain/assets/0xe76804b43F17FC41F226d63Fd2A676DF409D4678/logo.png new file mode 100644 index 00000000..6a51c3bf Binary files /dev/null and b/blockchains/smartchain/assets/0xe76804b43F17FC41F226d63Fd2A676DF409D4678/logo.png differ diff --git a/blockchains/smartchain/assets/0xe77011ed703ed06927dBd78e60c549baBAbF913e/info.json b/blockchains/smartchain/assets/0xe77011ed703ed06927dBd78e60c549baBAbF913e/info.json new file mode 100644 index 00000000..539bc9c4 --- /dev/null +++ b/blockchains/smartchain/assets/0xe77011ed703ed06927dBd78e60c549baBAbF913e/info.json @@ -0,0 +1,11 @@ +{ + "name": "Micro Bitcoin", + "website": "https://mbitcoin.finance/", + "description": "The Micro Bitcoin mBTC is frictionless mining generation mBTC hard-coded on its smart contract to use as future store of value currency.", + "explorer": "https://bscscan.com/token/0xe77011ed703ed06927dBd78e60c549baBAbF913e", + "type": "BEP20", + "symbol": "mBTC", + "decimals": 18, + "status": "active", + "id": "0xe77011ed703ed06927dBd78e60c549baBAbF913e" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe77011ed703ed06927dBd78e60c549baBAbF913e/logo.png b/blockchains/smartchain/assets/0xe77011ed703ed06927dBd78e60c549baBAbF913e/logo.png new file mode 100644 index 00000000..1328cb1c Binary files /dev/null and b/blockchains/smartchain/assets/0xe77011ed703ed06927dBd78e60c549baBAbF913e/logo.png differ diff --git a/blockchains/smartchain/assets/0xe778A2e5D953c82EB9475cf3B87654226a867344/info.json b/blockchains/smartchain/assets/0xe778A2e5D953c82EB9475cf3B87654226a867344/info.json new file mode 100644 index 00000000..d844b3c4 --- /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 00000000..69f7bedf 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 00000000..eec7041f --- /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 00000000..53576b64 Binary files /dev/null and b/blockchains/smartchain/assets/0xe7BA3E4BE1fb144D9e097736a5CF93fC45c6d270/logo.png differ diff --git a/blockchains/smartchain/assets/0xe7Cbd29769F33e371DDbF040F2aC23Af0923C3f7/info.json b/blockchains/smartchain/assets/0xe7Cbd29769F33e371DDbF040F2aC23Af0923C3f7/info.json new file mode 100644 index 00000000..3f891f8f --- /dev/null +++ b/blockchains/smartchain/assets/0xe7Cbd29769F33e371DDbF040F2aC23Af0923C3f7/info.json @@ -0,0 +1,11 @@ +{ + "name": "Project Joule", + "type": "BEP20", + "symbol": "JOL", + "decimals": 0, + "website": "http://projectjoule.finance/", + "description": "Project Joule is decenteralized way of Energy sharing.", + "explorer": "https://bscscan.com/token/0xe7Cbd29769F33e371DDbF040F2aC23Af0923C3f7", + "status": "active", + "id": "0xe7Cbd29769F33e371DDbF040F2aC23Af0923C3f7" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe7Cbd29769F33e371DDbF040F2aC23Af0923C3f7/logo.png b/blockchains/smartchain/assets/0xe7Cbd29769F33e371DDbF040F2aC23Af0923C3f7/logo.png new file mode 100644 index 00000000..1273262d Binary files /dev/null and b/blockchains/smartchain/assets/0xe7Cbd29769F33e371DDbF040F2aC23Af0923C3f7/logo.png differ diff --git a/blockchains/smartchain/assets/0xe7F72Bc0252cA7B16dBb72eEee1AfcDb2429F2DD/info.json b/blockchains/smartchain/assets/0xe7F72Bc0252cA7B16dBb72eEee1AfcDb2429F2DD/info.json new file mode 100644 index 00000000..3d94aca9 --- /dev/null +++ b/blockchains/smartchain/assets/0xe7F72Bc0252cA7B16dBb72eEee1AfcDb2429F2DD/info.json @@ -0,0 +1,25 @@ +{ + "name": "NFTLaunch.network", + "type": "BEP20", + "symbol": "NFTL", + "decimals": 18, + "website": "https://nftlaunch.network/", + "description": "NFTLaunch is a launchpad for NFT projects", + "explorer": "https://bscscan.com/token/0xe7F72Bc0252cA7B16dBb72eEee1AfcDb2429F2DD", + "status": "active", + "id": "0xe7F72Bc0252cA7B16dBb72eEee1AfcDb2429F2DD", + "links": [ + { + "name": "x", + "url": "https://x.com/NFT_LAUNCH" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nftlaunch/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/nftlaunch" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe7F72Bc0252cA7B16dBb72eEee1AfcDb2429F2DD/logo.png b/blockchains/smartchain/assets/0xe7F72Bc0252cA7B16dBb72eEee1AfcDb2429F2DD/logo.png new file mode 100644 index 00000000..b5163226 Binary files /dev/null and b/blockchains/smartchain/assets/0xe7F72Bc0252cA7B16dBb72eEee1AfcDb2429F2DD/logo.png differ diff --git a/blockchains/smartchain/assets/0xe81C6bB0266cd68B4F17278531Dd03eA1F12dA4E/info.json b/blockchains/smartchain/assets/0xe81C6bB0266cd68B4F17278531Dd03eA1F12dA4E/info.json new file mode 100644 index 00000000..8fb5bfc8 --- /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 00000000..76b4d025 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 00000000..ed727dbf --- /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 00000000..9259df4c 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 00000000..5488374f --- /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 00000000..8174a9ef 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 new file mode 100644 index 00000000..44093919 --- /dev/null +++ b/blockchains/smartchain/assets/0xe90d1567ecEF9282CC1AB348D9e9E2ac95659B99/info.json @@ -0,0 +1,25 @@ +{ + "name": "CXPAD Token", + "website": "https://coinxpad.io/", + "description": "Cex / Dex Multi-Chain IDO Launchpad. CoinxPad is where you get access to the best new tokens before they list on other centralized or decentralized exchanges.", + "explorer": "https://bscscan.com/token/0xe90d1567ecEF9282CC1AB348D9e9E2ac95659B99", + "type": "BEP20", + "symbol": "CXPAD", + "decimals": 18, + "status": "active", + "id": "0xe90d1567ecEF9282CC1AB348D9e9E2ac95659B99", + "links": [ + { + "name": "whitepaper", + "url": "https://coinxpad.io/whitepaper" + }, + { + "name": "x", + "url": "https://x.com/coinxpad" + }, + { + "name": "telegram", + "url": "https://t.me/Coinxpad" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe90d1567ecEF9282CC1AB348D9e9E2ac95659B99/logo.png b/blockchains/smartchain/assets/0xe90d1567ecEF9282CC1AB348D9e9E2ac95659B99/logo.png new file mode 100644 index 00000000..3ba9f9c0 Binary files /dev/null and b/blockchains/smartchain/assets/0xe90d1567ecEF9282CC1AB348D9e9E2ac95659B99/logo.png differ diff --git a/blockchains/smartchain/assets/0xe92F7Fe3EAf61DF28b7B75f3FaAB199333c42302/info.json b/blockchains/smartchain/assets/0xe92F7Fe3EAf61DF28b7B75f3FaAB199333c42302/info.json new file mode 100644 index 00000000..7b086b77 --- /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 00000000..1d375c61 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 00000000..59df8d42 --- /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 00000000..6d985419 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 00000000..179f5f88 --- /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 00000000..0c6d1b72 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 00000000..ccbcd36e --- /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 00000000..2e8d3686 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 00000000..bbfb5ccf --- /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 00000000..e0362244 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 new file mode 100644 index 00000000..ab15ab74 --- /dev/null +++ b/blockchains/smartchain/assets/0xe9c64384dEb0C2bF06D991A8D708c77eb545E3d5/info.json @@ -0,0 +1,53 @@ +{ + "name": "Ridotto Token", + "symbol": "RDT", + "type": "BEP20", + "decimals": 18, + "description": "RDT is the native token for the Ridotto cross-chain gambling & lottery protocol.", + "website": "https://ridotto.io", + "explorer": "https://bscscan.com/token/0xe9c64384dEb0C2bF06D991A8D708c77eb545E3d5", + "status": "active", + "id": "0xe9c64384dEb0C2bF06D991A8D708c77eb545E3d5", + "links": [ + { + "name": "x", + "url": "https://x.com/ridotto_io" + }, + { + "name": "github", + "url": "https://github.com/ridotto-io" + }, + { + "name": "telegram", + "url": "https://t.me/ridotto_community" + }, + { + "name": "telegram_news", + "url": "https://t.me/ridotto_io" + }, + { + "name": "discord", + "url": "https://discord.com/invite/qAXNArk2KU" + }, + { + "name": "medium", + "url": "https://ridotto-io.medium.com/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/ridotto_io" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCxumaSF7pnu29f5kU4FAJbw" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ridotto/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ridotto" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe9c64384dEb0C2bF06D991A8D708c77eb545E3d5/logo.png b/blockchains/smartchain/assets/0xe9c64384dEb0C2bF06D991A8D708c77eb545E3d5/logo.png new file mode 100644 index 00000000..77a0d0ea Binary files /dev/null and b/blockchains/smartchain/assets/0xe9c64384dEb0C2bF06D991A8D708c77eb545E3d5/logo.png differ diff --git a/blockchains/smartchain/assets/0xe9d43f7E6b2237e8873a7003b3F43c6B03160bE5/info.json b/blockchains/smartchain/assets/0xe9d43f7E6b2237e8873a7003b3F43c6B03160bE5/info.json new file mode 100644 index 00000000..65e42e03 --- /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 00000000..99c8e900 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 new file mode 100644 index 00000000..b229e5eb --- /dev/null +++ b/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/info.json @@ -0,0 +1,41 @@ +{ + "name": "BNB pegged 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", + "research": "https://research.binance.com/en/projects/binance-usd", + "type": "BEP20", + "symbol": "BUSD", + "decimals": 18, + "status": "active", + "id": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "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/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/logo.png b/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/logo.png new file mode 100644 index 00000000..76d02e37 Binary files /dev/null and b/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/logo.png differ diff --git a/blockchains/smartchain/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/info.json b/blockchains/smartchain/assets/0xeAAd46F4146Ded5a47B55AA7F6c48c191dEAEC88/info.json new file mode 100644 index 00000000..43f95103 --- /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 00000000..4ca5efce 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 new file mode 100644 index 00000000..e859fe82 --- /dev/null +++ b/blockchains/smartchain/assets/0xeAF7D8395CCE52DAef138d39a1CEfA51b97C15aE/info.json @@ -0,0 +1,21 @@ +{ + "name": "TeraBlock Token", + "website": "https://terablock.ai", + "description": "Machine Learning driven, personalised cryptocurrency trade automation to help you easily manage your assets.", + "explorer": "https://bscscan.com/token/0xeAF7D8395CCE52DAef138d39a1CEfA51b97C15aE", + "symbol": "TBC", + "type": "BEP20", + "decimals": 18, + "status": "abandoned", + "id": "0xeAF7D8395CCE52DAef138d39a1CEfA51b97C15aE", + "links": [ + { + "name": "x", + "url": "https://x.com/MyTeraBlock" + }, + { + "name": "telegram", + "url": "https://t.me/TeraBlock" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeB22C12429ff03688dD15a34824d736741605ca0/info.json b/blockchains/smartchain/assets/0xeB22C12429ff03688dD15a34824d736741605ca0/info.json new file mode 100644 index 00000000..6dbb9b0a --- /dev/null +++ b/blockchains/smartchain/assets/0xeB22C12429ff03688dD15a34824d736741605ca0/info.json @@ -0,0 +1,11 @@ +{ + "name": "PocMon", + "website": "https://pocmon.org", + "description": "PocMon ($PMON) is a decentralized community experiment in Binance Smart Chain, with prospects of becoming the #1 Gaming NFT Ecosystem. All that honouring the Pocket Monsters we all know and love.", + "explorer": "https://bscscan.com/token/0xeB22C12429ff03688dD15a34824d736741605ca0", + "type": "BEP20", + "symbol": "PMON", + "decimals": 9, + "status": "active", + "id": "0xeB22C12429ff03688dD15a34824d736741605ca0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeB22C12429ff03688dD15a34824d736741605ca0/logo.png b/blockchains/smartchain/assets/0xeB22C12429ff03688dD15a34824d736741605ca0/logo.png new file mode 100644 index 00000000..84264e27 Binary files /dev/null and b/blockchains/smartchain/assets/0xeB22C12429ff03688dD15a34824d736741605ca0/logo.png differ diff --git a/blockchains/smartchain/assets/0xeB2d878Dcc05c8f39411dF483574907b4fb11990/info.json b/blockchains/smartchain/assets/0xeB2d878Dcc05c8f39411dF483574907b4fb11990/info.json new file mode 100644 index 00000000..46f6c5a4 --- /dev/null +++ b/blockchains/smartchain/assets/0xeB2d878Dcc05c8f39411dF483574907b4fb11990/info.json @@ -0,0 +1,11 @@ +{ + "name": "Brastoken", + "website": "https://brastoken.com/lp-en", + "description": "Brastoken’s main objective is to revolutionize the cryptocurrency market in Brazil by offering multiple banking services in one place.", + "explorer": "https://bscscan.com/token/0xeB2d878Dcc05c8f39411dF483574907b4fb11990", + "type": "BEP20", + "symbol": "BRT", + "decimals": 9, + "status": "active", + "id": "0xeB2d878Dcc05c8f39411dF483574907b4fb11990" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeB2d878Dcc05c8f39411dF483574907b4fb11990/logo.png b/blockchains/smartchain/assets/0xeB2d878Dcc05c8f39411dF483574907b4fb11990/logo.png new file mode 100644 index 00000000..bf31eb67 Binary files /dev/null and b/blockchains/smartchain/assets/0xeB2d878Dcc05c8f39411dF483574907b4fb11990/logo.png differ diff --git a/blockchains/smartchain/assets/0xeB79c85c6d633AE81C97Be71E1691EE7Dc6E132D/info.json b/blockchains/smartchain/assets/0xeB79c85c6d633AE81C97Be71E1691EE7Dc6E132D/info.json new file mode 100644 index 00000000..d33cec48 --- /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 00000000..e71903e1 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 new file mode 100644 index 00000000..7e13ef02 --- /dev/null +++ b/blockchains/smartchain/assets/0xeB84be66c8E71f07eA57Cf3b21626d7784F32A7F/info.json @@ -0,0 +1,25 @@ +{ + "name": "OMAX Token", + "website": "https://www.omaxtoken.com/", + "description": "Omax Token is a community driven, Defi Token. Three simple functions occur during each trade: Reflection, Liquidity Acquisition, and Supply Burn.", + "explorer": "https://bscscan.com/token/0xeB84be66c8E71f07eA57Cf3b21626d7784F32A7F", + "type": "BEP20", + "symbol": "OMAX", + "decimals": 18, + "status": "active", + "id": "0xeB84be66c8E71f07eA57Cf3b21626d7784F32A7F", + "links": [ + { + "name": "x", + "url": "https://x.com/omaxtoken" + }, + { + "name": "telegram", + "url": "https://t.me/OmaxToken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/omax-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeB84be66c8E71f07eA57Cf3b21626d7784F32A7F/logo.png b/blockchains/smartchain/assets/0xeB84be66c8E71f07eA57Cf3b21626d7784F32A7F/logo.png new file mode 100644 index 00000000..05fc1dbf Binary files /dev/null and b/blockchains/smartchain/assets/0xeB84be66c8E71f07eA57Cf3b21626d7784F32A7F/logo.png differ diff --git a/blockchains/smartchain/assets/0xeBB59CeBFb63f218db6B5094DC14AbF34d56D35D/info.json b/blockchains/smartchain/assets/0xeBB59CeBFb63f218db6B5094DC14AbF34d56D35D/info.json new file mode 100644 index 00000000..a68e4049 --- /dev/null +++ b/blockchains/smartchain/assets/0xeBB59CeBFb63f218db6B5094DC14AbF34d56D35D/info.json @@ -0,0 +1,34 @@ +{ + "name": "XPOOL", + "website": "https://xpool.app/ ", + "description": "X-pool is an open-source Decentralized protocol - built on Binance Smart Chain that enables users to borrow assets from the platform, deploy your assets and earn yield with ease", + "research": "https://docs.xpool.app/xpool/", + "explorer": "https://bscscan.com/token/0xeBB59CeBFb63f218db6B5094DC14AbF34d56D35D", + "type": "BEP20", + "symbol": "XPO", + "decimals": 18, + "status": "active", + "id": "0xeBB59CeBFb63f218db6B5094DC14AbF34d56D35D", + "links": [ + { + "name": "github", + "url": "https://github.com/Xpool-lab/xpo-token-v1" + }, + { + "name": "x", + "url": "https://x.com/Xpoolofficial" + }, + { + "name": "telegram", + "url": "https://t.me/xpoolofficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/5UYf5FmpUV" + }, + { + "name": "medium", + "url": "https://medium.com/@Xpool" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeBB59CeBFb63f218db6B5094DC14AbF34d56D35D/logo.png b/blockchains/smartchain/assets/0xeBB59CeBFb63f218db6B5094DC14AbF34d56D35D/logo.png new file mode 100644 index 00000000..9458727f Binary files /dev/null and b/blockchains/smartchain/assets/0xeBB59CeBFb63f218db6B5094DC14AbF34d56D35D/logo.png differ diff --git a/blockchains/smartchain/assets/0xeBBAefF6217d22E7744394061D874015709b8141/info.json b/blockchains/smartchain/assets/0xeBBAefF6217d22E7744394061D874015709b8141/info.json new file mode 100644 index 00000000..22f85b34 --- /dev/null +++ b/blockchains/smartchain/assets/0xeBBAefF6217d22E7744394061D874015709b8141/info.json @@ -0,0 +1,40 @@ +{ + "name": "WAM", + "type": "BEP20", + "symbol": "WAM", + "decimals": 18, + "website": "https://wam.app", + "description": "WAM is a play & earn crypto-gaming platform where everybody can play & compete with friends in simple hyper-casual tournaments to earn crypto rewards.", + "explorer": "https://bscscan.com/token/0xeBBAefF6217d22E7744394061D874015709b8141", + "status": "active", + "id": "0xeBBAefF6217d22E7744394061D874015709b8141", + "links": [ + { + "name": "x", + "url": "https://x.com/playWAM" + }, + { + "name": "telegram", + "url": "https://t.me/wamapp" + }, + { + "name": "github", + "url": "https://github.com/Digitapeu/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/wam" + }, + { + "name": "blog", + "url": "https://blog.wam.app" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.wam.app" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeBBAefF6217d22E7744394061D874015709b8141/logo.png b/blockchains/smartchain/assets/0xeBBAefF6217d22E7744394061D874015709b8141/logo.png new file mode 100644 index 00000000..c6de8862 Binary files /dev/null and b/blockchains/smartchain/assets/0xeBBAefF6217d22E7744394061D874015709b8141/logo.png differ diff --git a/blockchains/smartchain/assets/0xeBC76079Da0c245faE7225b58a57A54809b40618/info.json b/blockchains/smartchain/assets/0xeBC76079Da0c245faE7225b58a57A54809b40618/info.json new file mode 100644 index 00000000..7035c534 --- /dev/null +++ b/blockchains/smartchain/assets/0xeBC76079Da0c245faE7225b58a57A54809b40618/info.json @@ -0,0 +1,37 @@ +{ + "name": "BNBPay", + "type": "BEP20", + "symbol": "BPAY", + "decimals": 9, + "website": "https://www.bnbpay.io/", + "description": "BNBPay is a decentralized scalable crypto payment tailored for merchant transactions. BNBPay incorporates the ERC-1363 protocol to enable users to pay expenses using BPAY tokens and crypto tokens where users are rewarded with BPAY tokens as they spend their crypto tokens at the same time.", + "explorer": "https://bscscan.com/token/0xeBC76079Da0c245faE7225b58a57A54809b40618", + "status": "abandoned", + "id": "0xeBC76079Da0c245faE7225b58a57A54809b40618", + "migrate": { + "asset_id": "c20000714_t0xe580074A10360404AF3ABfe2d524D5806D993ea3", + "url": "https://x.com/bnbpay/status/1498267922992533505?s=21" + }, + "links": [ + { + "name": "telegram", + "url": "https://t.me/bnbpay" + }, + { + "name": "x", + "url": "https://x.com/bnbpay" + }, + { + "name": "github", + "url": "https://github.com/BNBPay" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/bnbpay/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCcYgWaX7vvhjsewd7-d599w" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeBD0070237a0713E8D94fEf1B728d3d993d290ef/info.json b/blockchains/smartchain/assets/0xeBD0070237a0713E8D94fEf1B728d3d993d290ef/info.json new file mode 100644 index 00000000..d77a1762 --- /dev/null +++ b/blockchains/smartchain/assets/0xeBD0070237a0713E8D94fEf1B728d3d993d290ef/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus CAN", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0xeBD0070237a0713E8D94fEf1B728d3d993d290ef", + "type": "BEP20", + "symbol": "vCAN", + "decimals": 8, + "status": "active", + "id": "0xeBD0070237a0713E8D94fEf1B728d3d993d290ef", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeBD0070237a0713E8D94fEf1B728d3d993d290ef/logo.png b/blockchains/smartchain/assets/0xeBD0070237a0713E8D94fEf1B728d3d993d290ef/logo.png new file mode 100644 index 00000000..4ff56c42 Binary files /dev/null and b/blockchains/smartchain/assets/0xeBD0070237a0713E8D94fEf1B728d3d993d290ef/logo.png differ diff --git a/blockchains/smartchain/assets/0xeBDf1b978dC2576Ef0020BA4cF5f98174425c3a1/info.json b/blockchains/smartchain/assets/0xeBDf1b978dC2576Ef0020BA4cF5f98174425c3a1/info.json new file mode 100644 index 00000000..8b85c3aa --- /dev/null +++ b/blockchains/smartchain/assets/0xeBDf1b978dC2576Ef0020BA4cF5f98174425c3a1/info.json @@ -0,0 +1,14 @@ +{ + "name": "SafeRocket", + "website": "https://saferocket.pro/", + "description": "SafeRocket is a community driven, deflationary token", + "explorer": "https://bscscan.com/token/0xebdf1b978dc2576ef0020ba4cf5f98174425c3a1", + "type": "BEP20", + "symbol": "ROCKET", + "decimals": 9, + "status": "active", + "id": "0xeBDf1b978dC2576Ef0020BA4cF5f98174425c3a1", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeBDf1b978dC2576Ef0020BA4cF5f98174425c3a1/logo.png b/blockchains/smartchain/assets/0xeBDf1b978dC2576Ef0020BA4cF5f98174425c3a1/logo.png new file mode 100644 index 00000000..a2354a8e Binary files /dev/null and b/blockchains/smartchain/assets/0xeBDf1b978dC2576Ef0020BA4cF5f98174425c3a1/logo.png differ diff --git a/blockchains/smartchain/assets/0xeBd49b26169e1b52c04cFd19FCf289405dF55F80/info.json b/blockchains/smartchain/assets/0xeBd49b26169e1b52c04cFd19FCf289405dF55F80/info.json new file mode 100644 index 00000000..a1a63906 --- /dev/null +++ b/blockchains/smartchain/assets/0xeBd49b26169e1b52c04cFd19FCf289405dF55F80/info.json @@ -0,0 +1,11 @@ +{ + "name": "Orbs", + "website": "https://www.orbs.com", + "description": "The Orbs Network is a public blockchain infrastructure designed for businesses looking at trust as a competitive strategy", + "explorer": "https://bscscan.com/token/0xeBd49b26169e1b52c04cFd19FCf289405dF55F80", + "type": "BEP20", + "symbol": "ORBS", + "decimals": 18, + "status": "active", + "id": "0xeBd49b26169e1b52c04cFd19FCf289405dF55F80" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeBd49b26169e1b52c04cFd19FCf289405dF55F80/logo.png b/blockchains/smartchain/assets/0xeBd49b26169e1b52c04cFd19FCf289405dF55F80/logo.png new file mode 100644 index 00000000..61805858 Binary files /dev/null and b/blockchains/smartchain/assets/0xeBd49b26169e1b52c04cFd19FCf289405dF55F80/logo.png differ diff --git a/blockchains/smartchain/assets/0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9/info.json b/blockchains/smartchain/assets/0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9/info.json new file mode 100644 index 00000000..32a57c0a --- /dev/null +++ b/blockchains/smartchain/assets/0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9/info.json @@ -0,0 +1,56 @@ +{ + "name": "NUM Token", + "type": "BEP20", + "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://bscscan.com/token/0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9", + "status": "active", + "id": "0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9", + "links": [ + { + "name": "x", + "url": "https://x.com/numbersprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/numbers-protocol/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/numbers-protocol" + }, + { + "name": "telegram", + "url": "https://t.me/numbersprotocol" + }, + { + "name": "github", + "url": "https://github.com/numbersprotocol/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/KBtfEpxd3Z" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/NumbersProtocolIO/" + }, + { + "name": "whitepaper", + "url": "https://link.numbersprotocol.io/litepaper" + }, + { + "name": "medium", + "url": "https://medium.com/numbers-protocol" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/numbersprotocol" + } + ], + "tags": [ + "binance-peg" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9/logo.png b/blockchains/smartchain/assets/0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9/logo.png new file mode 100644 index 00000000..cec3ca17 Binary files /dev/null and b/blockchains/smartchain/assets/0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9/logo.png differ diff --git a/blockchains/smartchain/assets/0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB/info.json b/blockchains/smartchain/assets/0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB/info.json new file mode 100644 index 00000000..44823ccc --- /dev/null +++ b/blockchains/smartchain/assets/0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB/info.json @@ -0,0 +1,28 @@ +{ + "name": "Chirpley Token", + "website": "https://chirpley.ai/", + "description": "Chirpley is an automated, peer-to-peer, all-in-one influencer marketplace specifically focussed on nano and micro influencers. Chirpley will provide marketers with the freedom to act fast and effective, thanks to the possibility of a 1-click marketing bomb.", + "explorer": "https://bscscan.com/token/0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB", + "type": "BEP20", + "symbol": "CHRP", + "decimals": 18, + "status": "active", + "id": "0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB", + "links": [ + { + "name": "x", + "url": "https://x.com/chirpley" + }, + { + "name": "github", + "url": "https://github.com/chirpley" + }, + { + "name": "telegram", + "url": "https://t.me/chirpley" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB/logo.png b/blockchains/smartchain/assets/0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB/logo.png new file mode 100644 index 00000000..d980071a Binary files /dev/null and b/blockchains/smartchain/assets/0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB/logo.png differ diff --git a/blockchains/smartchain/assets/0xeD279e7bfDCBb0513720901Dd522ebCCe6758888/info.json b/blockchains/smartchain/assets/0xeD279e7bfDCBb0513720901Dd522ebCCe6758888/info.json new file mode 100644 index 00000000..4ef22085 --- /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 new file mode 100644 index 00000000..c20ac628 --- /dev/null +++ b/blockchains/smartchain/assets/0xeD7ed82D5A0f1B363309223975f899E7BEd5Fea6/info.json @@ -0,0 +1,33 @@ +{ + "name": "BabyBoxer", + "type": "BEP20", + "symbol": "BBoxer", + "decimals": 9, + "website": "https://babyboxer.io/", + "description": "Baby Boxer is a community-driven, deflationary token on the Binance Smart Chain with a mission to help malnourished babies around the world.", + "explorer": "https://bscscan.com/token/0xeD7ed82D5A0f1B363309223975f899E7BEd5Fea6", + "status": "active", + "id": "0xeD7ed82D5A0f1B363309223975f899E7BEd5Fea6", + "links": [ + { + "name": "x", + "url": "https://x.com/BoxerInuFinance" + }, + { + "name": "github", + "url": "https://github.com/BoxerInuOfficial" + }, + { + "name": "whitepaper", + "url": "https://babyboxer.io/babyboxerwhitepaper.pdf" + }, + { + "name": "telegram_news", + "url": "https://t.me/boxerinunews" + }, + { + "name": "telegram", + "url": "https://t.me/BoxerInuOfficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeD7ed82D5A0f1B363309223975f899E7BEd5Fea6/logo.png b/blockchains/smartchain/assets/0xeD7ed82D5A0f1B363309223975f899E7BEd5Fea6/logo.png new file mode 100644 index 00000000..c110a926 Binary files /dev/null and b/blockchains/smartchain/assets/0xeD7ed82D5A0f1B363309223975f899E7BEd5Fea6/logo.png differ diff --git a/blockchains/smartchain/assets/0xeDAF1F5B8078d4feb4E13c8d5A2c8dE1365be7b6/info.json b/blockchains/smartchain/assets/0xeDAF1F5B8078d4feb4E13c8d5A2c8dE1365be7b6/info.json new file mode 100644 index 00000000..d0ef7e70 --- /dev/null +++ b/blockchains/smartchain/assets/0xeDAF1F5B8078d4feb4E13c8d5A2c8dE1365be7b6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Altrucoin", + "website": "https://altrucoin.io", + "description": "Altrucoin is a decentralized finance token built for yield generation, charitable donations, decentralized governance, and defi lending.", + "explorer": "https://bscscan.com/token/0xeDAF1F5B8078d4feb4E13c8d5A2c8dE1365be7b6", + "type": "BEP20", + "symbol": "ALTRUCOIN", + "decimals": 9, + "status": "active", + "id": "0xeDAF1F5B8078d4feb4E13c8d5A2c8dE1365be7b6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeDAF1F5B8078d4feb4E13c8d5A2c8dE1365be7b6/logo.png b/blockchains/smartchain/assets/0xeDAF1F5B8078d4feb4E13c8d5A2c8dE1365be7b6/logo.png new file mode 100644 index 00000000..95264301 Binary files /dev/null and b/blockchains/smartchain/assets/0xeDAF1F5B8078d4feb4E13c8d5A2c8dE1365be7b6/logo.png differ diff --git a/blockchains/smartchain/assets/0xeDCF71B2e2217064038AdCb54A3C3a5fC3488eF1/info.json b/blockchains/smartchain/assets/0xeDCF71B2e2217064038AdCb54A3C3a5fC3488eF1/info.json new file mode 100644 index 00000000..51f40244 --- /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 00000000..0ce518ad 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 new file mode 100644 index 00000000..aa9169a8 --- /dev/null +++ b/blockchains/smartchain/assets/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955/info.json @@ -0,0 +1,44 @@ +{ + "name": "vEmpire DDAO", + "type": "BEP20", + "symbol": "VEMP", + "decimals": 18, + "website": "https://v-empire.digital", + "description": "vEmpire DDAO is the world’s largest Decentralized Metaverse Investment Organization. The official vEmpire protocol incorporates different strategies to incentivize Metaverse token staking to fund the battle against centralisation.", + "explorer": "https://bscscan.com/token/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955", + "status": "active", + "id": "0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vempire-ddao/" + }, + { + "name": "x", + "url": "https://x.com/vEmpiredigital" + }, + { + "name": "telegram", + "url": "https://t.me/vEmpirediscussion" + }, + { + "name": "facebook", + "url": "https://facebook.com/vEmpireDDAO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vempire-ddao/" + }, + { + "name": "whitepaper", + "url": "https://v-empire.digital/whitepaper" + }, + { + "name": "blog", + "url": "https://medium.com/@v-empire.digital" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955/logo.png b/blockchains/smartchain/assets/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955/logo.png new file mode 100644 index 00000000..a83d58a2 Binary files /dev/null and b/blockchains/smartchain/assets/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955/logo.png differ diff --git a/blockchains/smartchain/assets/0xeDa21B525Ac789EaB1a08ef2404dd8505FfB973D/info.json b/blockchains/smartchain/assets/0xeDa21B525Ac789EaB1a08ef2404dd8505FfB973D/info.json new file mode 100644 index 00000000..195c335f --- /dev/null +++ b/blockchains/smartchain/assets/0xeDa21B525Ac789EaB1a08ef2404dd8505FfB973D/info.json @@ -0,0 +1,25 @@ +{ + "name": "HappinessToken", + "website": "https://billionhappiness.com/", + "description": "HPS is a booster token for BillionHappiness project to support, build the ecosystem, and Develop NFT marketplace. To create, buy, or collect digital items secured with BSC blockchain.", + "explorer": "https://bscscan.com/token/0xeda21b525ac789eab1a08ef2404dd8505ffb973d", + "type": "BEP20", + "symbol": "HPS", + "decimals": 18, + "status": "abandoned", + "id": "0xeDa21B525Ac789EaB1a08ef2404dd8505FfB973D", + "links": [ + { + "name": "github", + "url": "https://github.com/BHCHappiness/" + }, + { + "name": "x", + "url": "https://x.com/BHC_Happiness" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/BillionHappiness" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeDbA2206655d5842Dd51A125df89E0189cECD6e3/info.json b/blockchains/smartchain/assets/0xeDbA2206655d5842Dd51A125df89E0189cECD6e3/info.json new file mode 100644 index 00000000..648c9e47 --- /dev/null +++ b/blockchains/smartchain/assets/0xeDbA2206655d5842Dd51A125df89E0189cECD6e3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Meme10000x", + "website": "https://meme10000x.finance/", + "description": "What is #meme10000x ? meme10000x is a defi project that automatically distributes rewards to holders platform based on the Binance Smart Chain. meme10000x is a token created for Charity Purposes and Crypto Against COVID. Along with that is a strong deflation and anti- dumping mechanism to create a safe platform for achieve 10000x growth.", + "explorer": "https://bscscan.com/token/0xeDbA2206655d5842Dd51A125df89E0189cECD6e3", + "type": "BEP20", + "symbol": "Meme10000x", + "decimals": 9, + "status": "active", + "id": "0xeDbA2206655d5842Dd51A125df89E0189cECD6e3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeDbA2206655d5842Dd51A125df89E0189cECD6e3/logo.png b/blockchains/smartchain/assets/0xeDbA2206655d5842Dd51A125df89E0189cECD6e3/logo.png new file mode 100644 index 00000000..1cbf203c Binary files /dev/null and b/blockchains/smartchain/assets/0xeDbA2206655d5842Dd51A125df89E0189cECD6e3/logo.png differ diff --git a/blockchains/smartchain/assets/0xeDe2F059545e8Cde832d8Da3985cAacf795B8765/info.json b/blockchains/smartchain/assets/0xeDe2F059545e8Cde832d8Da3985cAacf795B8765/info.json new file mode 100644 index 00000000..4c6d59ce --- /dev/null +++ b/blockchains/smartchain/assets/0xeDe2F059545e8Cde832d8Da3985cAacf795B8765/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ormeus Ecosystem", + "website": "https://eco-system.io/", + "description": "The World’s First Business-Backed Blockchain Smart Economy.", + "explorer": "https://bscscan.com/token/0xeDe2F059545e8Cde832d8Da3985cAacf795B8765", + "type": "BEP20", + "symbol": "ECO", + "decimals": 18, + "status": "active", + "id": "0xeDe2F059545e8Cde832d8Da3985cAacf795B8765" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeDe2F059545e8Cde832d8Da3985cAacf795B8765/logo.png b/blockchains/smartchain/assets/0xeDe2F059545e8Cde832d8Da3985cAacf795B8765/logo.png new file mode 100644 index 00000000..47dedff1 Binary files /dev/null and b/blockchains/smartchain/assets/0xeDe2F059545e8Cde832d8Da3985cAacf795B8765/logo.png differ diff --git a/blockchains/smartchain/assets/0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f/info.json b/blockchains/smartchain/assets/0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f/info.json new file mode 100644 index 00000000..7ae0cf82 --- /dev/null +++ b/blockchains/smartchain/assets/0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f/info.json @@ -0,0 +1,44 @@ +{ + "name": "WEB4 AI", + "type": "BEP20", + "symbol": "WEB4", + "decimals": 9, + "website": "https://webfour.build", + "description": "Web4 AI strives to disrupt the Decentralized Finance cryptocurrency space using Artificial Intelligence. Web4 AI, through its diverse DeFi offerings.", + "explorer": "https://bscscan.com/token/0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f", + "status": "active", + "id": "0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f", + "links": [ + { + "name": "x", + "url": "https://x.com/web4ai" + }, + { + "name": "github", + "url": "https://github.com/web4build" + }, + { + "name": "telegram", + "url": "https://t.me/web4ai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/web4-ai" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0xee7e8c85956d32c64bafdcded3f43b3c39b1ce2f#code" + }, + { + "name": "whitepaper", + "url": "https://webfour.build/assets/web4_ai_white_paper_v1.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@web4ai" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f/logo.png b/blockchains/smartchain/assets/0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f/logo.png new file mode 100644 index 00000000..f8d79b2c Binary files /dev/null and b/blockchains/smartchain/assets/0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f/logo.png differ diff --git a/blockchains/smartchain/assets/0xeE8feAeE52CE378BA356A5772BBa29d08AF25cdB/info.json b/blockchains/smartchain/assets/0xeE8feAeE52CE378BA356A5772BBa29d08AF25cdB/info.json new file mode 100644 index 00000000..5e3a4b35 --- /dev/null +++ b/blockchains/smartchain/assets/0xeE8feAeE52CE378BA356A5772BBa29d08AF25cdB/info.json @@ -0,0 +1,11 @@ +{ + "name": "DiamondHold", + "type": "BEP20", + "symbol": "DHOLD", + "decimals": 9, + "description": "A fresh RFI-like cryptocurrency where the longer you hold, the more you are rewarded.", + "website": "https://diamondhold.net/", + "explorer": "https://bscscan.com/token/0xeE8feAeE52CE378BA356A5772BBa29d08AF25cdB", + "id": "0xeE8feAeE52CE378BA356A5772BBa29d08AF25cdB", + "status": "active" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeE8feAeE52CE378BA356A5772BBa29d08AF25cdB/logo.png b/blockchains/smartchain/assets/0xeE8feAeE52CE378BA356A5772BBa29d08AF25cdB/logo.png new file mode 100644 index 00000000..fe271c28 Binary files /dev/null and b/blockchains/smartchain/assets/0xeE8feAeE52CE378BA356A5772BBa29d08AF25cdB/logo.png differ diff --git a/blockchains/smartchain/assets/0xeE9cf3c78EAC6dD85E3abbC14616042e107E4444/info.json b/blockchains/smartchain/assets/0xeE9cf3c78EAC6dD85E3abbC14616042e107E4444/info.json new file mode 100644 index 00000000..cdddf638 --- /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 00000000..c8e3f3d2 --- /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 00000000..99e55b45 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 00000000..fa1d7bce --- /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 00000000..446373ce 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 00000000..4487516d --- /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 00000000..4e2c21ae Binary files /dev/null and b/blockchains/smartchain/assets/0xea40BA42EE2e35F36eb63770F23A96Ec47e14091/logo.png differ diff --git a/blockchains/smartchain/assets/0xea90DC6F64d18771Ca1dac8098526a9082265B42/info.json b/blockchains/smartchain/assets/0xea90DC6F64d18771Ca1dac8098526a9082265B42/info.json new file mode 100644 index 00000000..9b9b40b1 --- /dev/null +++ b/blockchains/smartchain/assets/0xea90DC6F64d18771Ca1dac8098526a9082265B42/info.json @@ -0,0 +1,14 @@ +{ + "name": "DINOPARK TOKEN", + "type": "BEP20", + "symbol": "DINOP", + "decimals": 9, + "website": "https://dinopark.fun/", + "description": "DINOPARK is a deflationary passive-return token. Just hold $DINOP in your wallet and you will see your coins going up in number. Each transaction will automatically distribute to all holders.", + "explorer": "https://bscscan.com/token/0xea90DC6F64d18771Ca1dac8098526a9082265B42", + "status": "active", + "id": "0xea90DC6F64d18771Ca1dac8098526a9082265B42", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xea90DC6F64d18771Ca1dac8098526a9082265B42/logo.png b/blockchains/smartchain/assets/0xea90DC6F64d18771Ca1dac8098526a9082265B42/logo.png new file mode 100644 index 00000000..64e03b88 Binary files /dev/null and b/blockchains/smartchain/assets/0xea90DC6F64d18771Ca1dac8098526a9082265B42/logo.png differ diff --git a/blockchains/smartchain/assets/0xeb19c13c54B1cD48AFc62F6503375e92D5f1e856/info.json b/blockchains/smartchain/assets/0xeb19c13c54B1cD48AFc62F6503375e92D5f1e856/info.json new file mode 100644 index 00000000..85984f30 --- /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 00000000..1ff72bcf 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 new file mode 100644 index 00000000..25ded06e --- /dev/null +++ b/blockchains/smartchain/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/info.json @@ -0,0 +1,32 @@ +{ + "name": "Gather", + "website": "https://gather.network", + "description": "Gather is a platform that allows publishers to monetize without ads and provides businesses & developers access to cheap and reliable processing power.", + "explorer": "https://bscscan.com/token/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674", + "type": "BEP20", + "symbol": "GTH", + "decimals": 18, + "status": "active", + "id": "0xeb986DA994E4a118d5956b02d8b7c3C7CE373674", + "tags": [ + "governance" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/Gather_Network" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/GatherNetwork" + }, + { + "name": "medium", + "url": "https://medium.com/@GatherNetwork" + }, + { + "name": "whitepaper", + "url": "https://gather.network/whitepaper.html" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/logo.png b/blockchains/smartchain/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/logo.png new file mode 100644 index 00000000..e88e23c8 Binary files /dev/null and b/blockchains/smartchain/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/logo.png differ diff --git a/blockchains/smartchain/assets/0xebe29695F8047C13d36e7a790ca8c1b239FfAD1C/info.json b/blockchains/smartchain/assets/0xebe29695F8047C13d36e7a790ca8c1b239FfAD1C/info.json new file mode 100644 index 00000000..260bd8dd --- /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 00000000..2400801a 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 new file mode 100644 index 00000000..25af4832 --- /dev/null +++ b/blockchains/smartchain/assets/0xec15a508a187e8DDfe572A5423Faa82Bbdd65120/info.json @@ -0,0 +1,45 @@ +{ + "name": "Babylons Governance Token", + "website": "https://babylons.io", + "description": "Babylons is the first community-governed game aggregator and NFT marketplace operating on BSC. Create, participate, collect and earn. Only on Babylons..", + "explorer": "https://bscscan.com/token/0xec15a508a187e8DDfe572A5423Faa82Bbdd65120", + "type": "BEP20", + "symbol": "BABI", + "decimals": 18, + "status": "active", + "id": "0xec15a508a187e8DDfe572A5423Faa82Bbdd65120", + "links": [ + { + "name": "github", + "url": "https://github.com/Babylons-io" + }, + { + "name": "x", + "url": "https://x.com/BabylonsNFT" + }, + { + "name": "telegram", + "url": "https://t.me/babylonsnft" + }, + { + "name": "telegram_news", + "url": "https://t.me/babylonsNFT_Ann" + }, + { + "name": "blog", + "url": "https://blog.babylons.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/babylons/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/babylons" + }, + { + "name": "whitepaper", + "url": "https://babylons.io/assets/litepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xec15a508a187e8DDfe572A5423Faa82Bbdd65120/logo.png b/blockchains/smartchain/assets/0xec15a508a187e8DDfe572A5423Faa82Bbdd65120/logo.png new file mode 100644 index 00000000..d12aa861 Binary files /dev/null and b/blockchains/smartchain/assets/0xec15a508a187e8DDfe572A5423Faa82Bbdd65120/logo.png differ diff --git a/blockchains/smartchain/assets/0xec6cA5A04B08e382d218De9Cb30C9d8176406D34/info.json b/blockchains/smartchain/assets/0xec6cA5A04B08e382d218De9Cb30C9d8176406D34/info.json new file mode 100644 index 00000000..17425c9f --- /dev/null +++ b/blockchains/smartchain/assets/0xec6cA5A04B08e382d218De9Cb30C9d8176406D34/info.json @@ -0,0 +1,25 @@ +{ + "name": "CryptoDrop", + "website": "https://cryptodrop.gg/#/play", + "description": "The only decentralized random gamification on chain BSC", + "explorer": "https://bscscan.com/token/0xec6ca5a04b08e382d218de9cb30c9d8176406d34", + "type": "BEP20", + "symbol": "CDROP", + "decimals": 18, + "status": "active", + "id": "0xec6cA5A04B08e382d218De9Cb30C9d8176406D34", + "links": [ + { + "name": "telegram", + "url": "https://t.me/CryptoDropGG" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cryptodrop/" + }, + { + "name": "x", + "url": "https://x.com/cryptodropgg" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xec6cA5A04B08e382d218De9Cb30C9d8176406D34/logo.png b/blockchains/smartchain/assets/0xec6cA5A04B08e382d218De9Cb30C9d8176406D34/logo.png new file mode 100644 index 00000000..0b0bc04f Binary files /dev/null and b/blockchains/smartchain/assets/0xec6cA5A04B08e382d218De9Cb30C9d8176406D34/logo.png differ diff --git a/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/info.json b/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/info.json new file mode 100644 index 00000000..b95329c4 --- /dev/null +++ b/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus USDC", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8", + "type": "BEP20", + "symbol": "vUSDC", + "decimals": 8, + "status": "active", + "id": "0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/logo.png b/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/logo.png new file mode 100644 index 00000000..c30a7b45 Binary files /dev/null and b/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/logo.png differ diff --git a/blockchains/smartchain/assets/0xecc62bd353EDd64Ed31595DbC4C92801aF1e2af0/info.json b/blockchains/smartchain/assets/0xecc62bd353EDd64Ed31595DbC4C92801aF1e2af0/info.json new file mode 100644 index 00000000..78455ee8 --- /dev/null +++ b/blockchains/smartchain/assets/0xecc62bd353EDd64Ed31595DbC4C92801aF1e2af0/info.json @@ -0,0 +1,11 @@ +{ + "name": "CyberDoge", + "website": "https://www.cyber-doge.net", + "description": "Deflationary Defi token built on the BSC Chain that automates the earning process by creating an autonomous friction less yield farming and liquidity generation protocol by creating its own Wide Network for CYBERSWAP, CYBERSTAKING and CYBERGAME", + "explorer": "https://bscscan.com/token/0xecc62bd353EDd64Ed31595DbC4C92801aF1e2af0", + "type": "BEP20", + "symbol": "CybrrrDOGE", + "decimals": 9, + "status": "active", + "id": "0xecc62bd353EDd64Ed31595DbC4C92801aF1e2af0" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xecc62bd353EDd64Ed31595DbC4C92801aF1e2af0/logo.png b/blockchains/smartchain/assets/0xecc62bd353EDd64Ed31595DbC4C92801aF1e2af0/logo.png new file mode 100644 index 00000000..cd13c7e0 Binary files /dev/null and b/blockchains/smartchain/assets/0xecc62bd353EDd64Ed31595DbC4C92801aF1e2af0/logo.png differ diff --git a/blockchains/smartchain/assets/0xed74Bc5DC139356E08dE28143996F5eF6e4334a4/info.json b/blockchains/smartchain/assets/0xed74Bc5DC139356E08dE28143996F5eF6e4334a4/info.json new file mode 100644 index 00000000..fb9e233a --- /dev/null +++ b/blockchains/smartchain/assets/0xed74Bc5DC139356E08dE28143996F5eF6e4334a4/info.json @@ -0,0 +1,49 @@ +{ + "name": "SpookyShiba", + "type": "BEP20", + "symbol": "SPOOKYSHIBA", + "decimals": 9, + "website": "https://SpookyShibaBSC.com", + "description": "SpookyShiba is the first horror Genre Token on Binance Smartchain with utility for holders tied into the NFT Marketplace.", + "explorer": "https://bscscan.com/token/0xed74Bc5DC139356E08dE28143996F5eF6e4334a4", + "status": "abandoned", + "id": "0xed74Bc5DC139356E08dE28143996F5eF6e4334a4", + "links": [ + { + "name": "x", + "url": "https://x.com/shibaspooky" + }, + { + "name": "github", + "url": "https://github.com/CryptoCreators/SpookyShiba" + }, + { + "name": "telegram", + "url": "https://t.me/spookyshibaofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spooky-shiba/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/spookyshiba" + }, + { + "name": "discord", + "url": "https://discord.com/P6hkCFc5kR" + }, + { + "name": "reddit", + "url": "https://reddit.com//r/SpookyShibaBSC" + }, + { + "name": "facebook", + "url": "https://facebook.com/spookyshibatoken" + }, + { + "name": "youtube", + "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 00000000..35832245 --- /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 00000000..3537d091 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 new file mode 100644 index 00000000..ac1650a5 --- /dev/null +++ b/blockchains/smartchain/assets/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/info.json @@ -0,0 +1,40 @@ +{ + "name": "VYNK CHAIN", + "type": "BEP20", + "symbol": "VYNC", + "decimals": 4, + "website": "https://vynkchain.org/", + "description": "VYNC is the governance token of VYNKSAFE: A Decentralized Crypto Bank. VYNK CHAIN is the Defi and Utility token. VYNK CHAIN and VYNKSAFE both are from VynkPay, which is a crypto payments application in the sectors of e-commerce, affiliate marketing, travel & bill payments.", + "explorer": "https://bscscan.com/token/0xee1ae38be4ce0074c4a4a8dc821cc784778f378c", + "status": "active", + "id": "0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c", + "links": [ + { + "name": "x", + "url": "https://x.com/vynkgroup" + }, + { + "name": "github", + "url": "https://github.com/vynkchain" + }, + { + "name": "telegram", + "url": "https://t.me/VYNKCHAIN" + }, + { + "name": "discord", + "url": "https://discord.com/invite/RBCRGZVsQx" + }, + { + "name": "whitepaper", + "url": "https://vynkchain.org/assets/vc/vynkgroup-wp.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vynk-chain/" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/logo.png b/blockchains/smartchain/assets/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/logo.png new file mode 100644 index 00000000..41f63141 Binary files /dev/null and b/blockchains/smartchain/assets/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/logo.png differ diff --git a/blockchains/smartchain/assets/0xee268780473E7a0e47baC41547C6E01512555A16/info.json b/blockchains/smartchain/assets/0xee268780473E7a0e47baC41547C6E01512555A16/info.json new file mode 100644 index 00000000..a741377a --- /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 00000000..c530871f 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 new file mode 100644 index 00000000..b2ea8b09 --- /dev/null +++ b/blockchains/smartchain/assets/0xee901a8a13e5B71dD35AD259D87e17a891D1f0F3/info.json @@ -0,0 +1,37 @@ +{ + "name": "FlokiZap Token", + "website": "https://flokizap.finance/", + "description": "FlokiZ is an airdrop platform and protocol where up-and-coming projects are promoted. It focusses on increasing holders as well as filtering out legit and safe projects for its community. Holders of the token will be eligible for Airdrops, NFT's and exclusivity to contribute in new projects.", + "explorer": "https://bscscan.com/token/0xee901a8a13e5B71dD35AD259D87e17a891D1f0F3", + "type": "BEP20", + "symbol": "FLOKIZ", + "decimals": 18, + "status": "active", + "id": "0xee901a8a13e5B71dD35AD259D87e17a891D1f0F3", + "links": [ + { + "name": "x", + "url": "https://x.com/FlokiZap" + }, + { + "name": "github", + "url": "https://github.com/interfinetwork/smart-contract-audits/blob/main/FlokiZap_AuditReport_InterFi.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/FlokiZapOfficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/gvD9TAwxpp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/flokizap/" + }, + { + "name": "whitepaper", + "url": "https://flokizap.finance/assets/images/FlokiZap-VikingPaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xee901a8a13e5B71dD35AD259D87e17a891D1f0F3/logo.png b/blockchains/smartchain/assets/0xee901a8a13e5B71dD35AD259D87e17a891D1f0F3/logo.png new file mode 100644 index 00000000..c00d8e03 Binary files /dev/null and b/blockchains/smartchain/assets/0xee901a8a13e5B71dD35AD259D87e17a891D1f0F3/logo.png differ diff --git a/blockchains/smartchain/assets/0xef032F652FCE3a0eFfce3796A68eb978b465a336/info.json b/blockchains/smartchain/assets/0xef032F652FCE3a0eFfce3796A68eb978b465a336/info.json new file mode 100644 index 00000000..0ba533ca --- /dev/null +++ b/blockchains/smartchain/assets/0xef032F652FCE3a0eFfce3796A68eb978b465a336/info.json @@ -0,0 +1,11 @@ +{ + "name": "MOOCHII", + "symbol": "MOOCHII", + "type": "BEP20", + "decimals": 9, + "description": "Moochii is one of the fastest growing cryptocurrency communities, with over 1000+ initial investors within the first week. ", + "website": "https://moochii.net/", + "explorer": "https://bscscan.com/token/0xef032F652FCE3a0eFfce3796A68eb978b465a336", + "status": "active", + "id": "0xef032F652FCE3a0eFfce3796A68eb978b465a336" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xef032F652FCE3a0eFfce3796A68eb978b465a336/logo.png b/blockchains/smartchain/assets/0xef032F652FCE3a0eFfce3796A68eb978b465a336/logo.png new file mode 100644 index 00000000..5df84246 Binary files /dev/null and b/blockchains/smartchain/assets/0xef032F652FCE3a0eFfce3796A68eb978b465a336/logo.png differ diff --git a/blockchains/smartchain/assets/0xef5CeB00AE3eb617773016B4ca886b61FA4e027E/info.json b/blockchains/smartchain/assets/0xef5CeB00AE3eb617773016B4ca886b61FA4e027E/info.json new file mode 100644 index 00000000..6d7c27a8 --- /dev/null +++ b/blockchains/smartchain/assets/0xef5CeB00AE3eb617773016B4ca886b61FA4e027E/info.json @@ -0,0 +1,11 @@ +{ + "name": "Burning Token", + "website": "https://burningtoken.cash/", + "description": "Burning Token New Innovation Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xef5CeB00AE3eb617773016B4ca886b61FA4e027E", + "type": "BEP20", + "symbol": "BURN", + "decimals": 18, + "status": "active", + "id": "0xef5CeB00AE3eb617773016B4ca886b61FA4e027E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xef5CeB00AE3eb617773016B4ca886b61FA4e027E/logo.png b/blockchains/smartchain/assets/0xef5CeB00AE3eb617773016B4ca886b61FA4e027E/logo.png new file mode 100644 index 00000000..7a9c9815 Binary files /dev/null and b/blockchains/smartchain/assets/0xef5CeB00AE3eb617773016B4ca886b61FA4e027E/logo.png differ diff --git a/blockchains/smartchain/assets/0xf00598af0CCf2D43613414F36f40123337f56E71/info.json b/blockchains/smartchain/assets/0xf00598af0CCf2D43613414F36f40123337f56E71/info.json new file mode 100644 index 00000000..4981f583 --- /dev/null +++ b/blockchains/smartchain/assets/0xf00598af0CCf2D43613414F36f40123337f56E71/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ants.Finance", + "type": "BEP20", + "symbol": "ANTF", + "decimals": 18, + "website": "https://www.ants.finance/", + "description": "Derived inspiration from the powerful ants, Ants.finance was given birth with the desire to create a united, strong, constantly growing community of the ant.Ants.finance aims to build a decentralized financial system including AMM DEX, Deflation system, Ant's Pool, Ant's Nest, NFT Marketplace, NFT Creative.", + "explorer": "https://bscscan.com/token/0xf00598af0CCf2D43613414F36f40123337f56E71", + "status": "active", + "id": "0xf00598af0CCf2D43613414F36f40123337f56E71" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf00598af0CCf2D43613414F36f40123337f56E71/logo.png b/blockchains/smartchain/assets/0xf00598af0CCf2D43613414F36f40123337f56E71/logo.png new file mode 100644 index 00000000..93b7e5f0 Binary files /dev/null and b/blockchains/smartchain/assets/0xf00598af0CCf2D43613414F36f40123337f56E71/logo.png differ diff --git a/blockchains/smartchain/assets/0xf04FaB6Dda66261eaBfD65e92A6b81dDaF6a950a/info.json b/blockchains/smartchain/assets/0xf04FaB6Dda66261eaBfD65e92A6b81dDaF6a950a/info.json new file mode 100644 index 00000000..ad159bad --- /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 00000000..b17584aa 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 00000000..568a932b --- /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 00000000..f2aca3db 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 new file mode 100644 index 00000000..fa6ec2f0 --- /dev/null +++ b/blockchains/smartchain/assets/0xf06419C638a1d809C024Aa693147dBDc42B60145/info.json @@ -0,0 +1,61 @@ +{ + "name": "BankerDoge", + "type": "BEP20", + "symbol": "BANKER", + "decimals": 9, + "website": "https://bankerdoge.com", + "description": "BankerDoge is a Defi as a Service platform designed to add features such as staking, time-locking, and Defi lending to any BSC token.", + "explorer": "https://bscscan.com/token/0xf06419C638a1d809C024Aa693147dBDc42B60145", + "status": "active", + "id": "0xf06419C638a1d809C024Aa693147dBDc42B60145", + "links": [ + { + "name": "x", + "url": "https://x.com/bankerdoge" + }, + { + "name": "github", + "url": "https://github.com/NathajiM/bankerdogecontract" + }, + { + "name": "telegram", + "url": "https://t.me/BankerDogeOfficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/BankerDogeNews" + }, + { + "name": "medium", + "url": "https://bankerdoge.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCQJSGhSU6sdznnkbCuO5N5Q" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bankerdoge/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bankerdoge" + }, + { + "name": "reddit", + "url": "https://reddit.com/bankerdoge" + }, + { + "name": "facebook", + "url": "https://facebook.com/BankerDoge-160194746146041" + }, + { + "name": "whitepaper", + "url": "https://altruismprotocol.notion.site/BankerDoge-Live-Whitepaper-d8329e5c7f304b53bfbf8583ea2af7df" + }, + { + "name": "discord", + "url": "https://discord.com/bZHRk3dBqn" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf06419C638a1d809C024Aa693147dBDc42B60145/logo.png b/blockchains/smartchain/assets/0xf06419C638a1d809C024Aa693147dBDc42B60145/logo.png new file mode 100644 index 00000000..74240fe6 Binary files /dev/null and b/blockchains/smartchain/assets/0xf06419C638a1d809C024Aa693147dBDc42B60145/logo.png differ diff --git a/blockchains/smartchain/assets/0xf09611a964535b32285bFf5fCf9937C52BaB8ea5/info.json b/blockchains/smartchain/assets/0xf09611a964535b32285bFf5fCf9937C52BaB8ea5/info.json new file mode 100644 index 00000000..420d2cd4 --- /dev/null +++ b/blockchains/smartchain/assets/0xf09611a964535b32285bFf5fCf9937C52BaB8ea5/info.json @@ -0,0 +1,11 @@ +{ + "name": "EVDC", + "website": "https://evdc.network/", + "description": "EVDC is a deflationary and decentralized token that will be used as a digital currency to pay for EV charging.", + "explorer": "https://bscscan.com/token/0xf09611a964535b32285bff5fcf9937c52bab8ea5", + "symbol": "EVDC", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xf09611a964535b32285bFf5fCf9937C52BaB8ea5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf09611a964535b32285bFf5fCf9937C52BaB8ea5/logo.png b/blockchains/smartchain/assets/0xf09611a964535b32285bFf5fCf9937C52BaB8ea5/logo.png new file mode 100644 index 00000000..21e67406 Binary files /dev/null and b/blockchains/smartchain/assets/0xf09611a964535b32285bFf5fCf9937C52BaB8ea5/logo.png differ diff --git a/blockchains/smartchain/assets/0xf09b7B6bA6dAb7CccC3AE477a174b164c39f4C66/info.json b/blockchains/smartchain/assets/0xf09b7B6bA6dAb7CccC3AE477a174b164c39f4C66/info.json new file mode 100644 index 00000000..f7741bb7 --- /dev/null +++ b/blockchains/smartchain/assets/0xf09b7B6bA6dAb7CccC3AE477a174b164c39f4C66/info.json @@ -0,0 +1,17 @@ +{ + "name": "MoonPirate", + "website": "https://www.moonpirate.finance", + "description": "Autonomous yield and liquidity generation protocol on BSC", + "explorer": "https://bscscan.com/token/0xf09b7B6bA6dAb7CccC3AE477a174b164c39f4C66", + "type": "BEP20", + "symbol": "MOONPIRATE", + "decimals": 9, + "status": "active", + "id": "0xf09b7B6bA6dAb7CccC3AE477a174b164c39f4C66", + "links": [ + { + "name": "telegram", + "url": "https://t.me/MoonPirate" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf09b7B6bA6dAb7CccC3AE477a174b164c39f4C66/logo.png b/blockchains/smartchain/assets/0xf09b7B6bA6dAb7CccC3AE477a174b164c39f4C66/logo.png new file mode 100644 index 00000000..21db74ab Binary files /dev/null and b/blockchains/smartchain/assets/0xf09b7B6bA6dAb7CccC3AE477a174b164c39f4C66/logo.png differ diff --git a/blockchains/smartchain/assets/0xf0AB4b8Daa51F6Abf6b4C9FEf0ccA5d127029AA9/info.json b/blockchains/smartchain/assets/0xf0AB4b8Daa51F6Abf6b4C9FEf0ccA5d127029AA9/info.json new file mode 100644 index 00000000..5498eae4 --- /dev/null +++ b/blockchains/smartchain/assets/0xf0AB4b8Daa51F6Abf6b4C9FEf0ccA5d127029AA9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Scooby", + "website": "https://scooby.finance", + "description": "SBD is a community based token that aims to be a plaftorm that gives smaller holders a chance by taking away some of the leverage whales can have.", + "explorer": "https://bscscan.com/token/0xf0AB4b8Daa51F6Abf6b4C9FEf0ccA5d127029AA9", + "type": "BEP20", + "symbol": "SBD", + "decimals": 18, + "status": "active", + "id": "0xf0AB4b8Daa51F6Abf6b4C9FEf0ccA5d127029AA9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf0AB4b8Daa51F6Abf6b4C9FEf0ccA5d127029AA9/logo.png b/blockchains/smartchain/assets/0xf0AB4b8Daa51F6Abf6b4C9FEf0ccA5d127029AA9/logo.png new file mode 100644 index 00000000..4b735f1a Binary files /dev/null and b/blockchains/smartchain/assets/0xf0AB4b8Daa51F6Abf6b4C9FEf0ccA5d127029AA9/logo.png differ diff --git a/blockchains/smartchain/assets/0xf0C99B0288508D004F4aBeCa34d830CE7682977C/info.json b/blockchains/smartchain/assets/0xf0C99B0288508D004F4aBeCa34d830CE7682977C/info.json new file mode 100644 index 00000000..7bc16f21 --- /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 new file mode 100644 index 00000000..bc31b9b1 --- /dev/null +++ b/blockchains/smartchain/assets/0xf0Fcd737fcE18F95621CC7841EbE0eA6EFCCf77e/info.json @@ -0,0 +1,21 @@ +{ + "name": "TreeDefi", + "type": "BEP20", + "symbol": "TREE", + "decimals": 18, + "website": "https://treedefi.com/", + "description": "TreeDefi is a Yield Farming project focused on deflationary tokenomics through a capped token named TREE and an uncapped deflationary token named SEED.", + "explorer": "https://bscscan.com/token/0xf0Fcd737fcE18F95621CC7841EbE0eA6EFCCf77e", + "status": "active", + "id": "0xf0Fcd737fcE18F95621CC7841EbE0eA6EFCCf77e", + "links": [ + { + "name": "x", + "url": "https://x.com/treedefi" + }, + { + "name": "telegram", + "url": "https://t.me/treedefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf0Fcd737fcE18F95621CC7841EbE0eA6EFCCf77e/logo.png b/blockchains/smartchain/assets/0xf0Fcd737fcE18F95621CC7841EbE0eA6EFCCf77e/logo.png new file mode 100644 index 00000000..ae619b2c Binary files /dev/null and b/blockchains/smartchain/assets/0xf0Fcd737fcE18F95621CC7841EbE0eA6EFCCf77e/logo.png differ diff --git a/blockchains/smartchain/assets/0xf117DFCB241c0003d5e2FC72F288755C17a46980/info.json b/blockchains/smartchain/assets/0xf117DFCB241c0003d5e2FC72F288755C17a46980/info.json new file mode 100644 index 00000000..87ec2dd1 --- /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 00000000..5dd05b3f Binary files /dev/null and b/blockchains/smartchain/assets/0xf117DFCB241c0003d5e2FC72F288755C17a46980/logo.png differ diff --git a/blockchains/smartchain/assets/0xf16e81dce15B08F326220742020379B855B87DF9/info.json b/blockchains/smartchain/assets/0xf16e81dce15B08F326220742020379B855B87DF9/info.json new file mode 100644 index 00000000..badd2526 --- /dev/null +++ b/blockchains/smartchain/assets/0xf16e81dce15B08F326220742020379B855B87DF9/info.json @@ -0,0 +1,11 @@ +{ + "name": "IceToken", + "website": "https://popsicle.finance", + "description": "Popsicle finance is a next-gen cross-chain liquidity provider (LP) yield optimization platform", + "explorer": "https://bscscan.com/token/0xf16e81dce15B08F326220742020379B855B87DF9", + "type": "BEP20", + "symbol": "ICE", + "decimals": 18, + "status": "active", + "id": "0xf16e81dce15B08F326220742020379B855B87DF9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf16e81dce15B08F326220742020379B855B87DF9/logo.png b/blockchains/smartchain/assets/0xf16e81dce15B08F326220742020379B855B87DF9/logo.png new file mode 100644 index 00000000..8a599ef6 Binary files /dev/null and b/blockchains/smartchain/assets/0xf16e81dce15B08F326220742020379B855B87DF9/logo.png differ diff --git a/blockchains/smartchain/assets/0xf20f8a3c135dC048C36cb1c94E1f00CEEEa3Dd61/info.json b/blockchains/smartchain/assets/0xf20f8a3c135dC048C36cb1c94E1f00CEEEa3Dd61/info.json new file mode 100644 index 00000000..569c2a50 --- /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 00000000..5429f8d5 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 00000000..126f2c4d --- /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 00000000..8a939bb2 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 00000000..98548207 --- /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 00000000..e51fdfcf 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 new file mode 100644 index 00000000..5108e2c1 --- /dev/null +++ b/blockchains/smartchain/assets/0xf2673f49d2737f97d70995eD43D128E0B8E560c5/info.json @@ -0,0 +1,33 @@ +{ + "name": "Buff Shiba Inu", + "type": "BEP20", + "symbol": "BUFFSHIBA", + "decimals": 9, + "website": "https://buffshibainu.io", + "description": "Buff Shiba Inu, a community-driven token that empowers small and non-private investors to build stronger portfolios.", + "explorer": "https://bscscan.com/token/0xf2673f49d2737f97d70995eD43D128E0B8E560c5", + "status": "active", + "id": "0xf2673f49d2737f97d70995eD43D128E0B8E560c5", + "links": [ + { + "name": "x", + "url": "https://x.com/buffshibainu" + }, + { + "name": "github", + "url": "https://github.com/buffshibainu" + }, + { + "name": "telegram", + "url": "https://t.me/buffshibainu" + }, + { + "name": "telegram_news", + "url": "https://t.me/buffshibachannel" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/buffshibainu" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf2673f49d2737f97d70995eD43D128E0B8E560c5/logo.png b/blockchains/smartchain/assets/0xf2673f49d2737f97d70995eD43D128E0B8E560c5/logo.png new file mode 100644 index 00000000..a535bcdd Binary files /dev/null and b/blockchains/smartchain/assets/0xf2673f49d2737f97d70995eD43D128E0B8E560c5/logo.png differ diff --git a/blockchains/smartchain/assets/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C/info.json b/blockchains/smartchain/assets/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C/info.json new file mode 100644 index 00000000..aca2ddb1 --- /dev/null +++ b/blockchains/smartchain/assets/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C/info.json @@ -0,0 +1,84 @@ +{ + "name": "DEEPSPACE", + "type": "BEP20", + "symbol": "DPS", + "decimals": 9, + "website": "https://deepspace.game", + "description": "Welcome to the DEEPSPACE Metaverse! DEEPSPACE is a Play-to-Earn space multiverse exploration strategy game! Earn passive income from holding $DPS, trading NFTs, and taking risks as you explore DEEPSPACE with your fleet of ships! Prepare to explore, harvest, and fight your way through the DEEPSPACE universe!", + "explorer": "https://bscscan.com/token/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C", + "status": "active", + "id": "0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C", + "links": [ + { + "name": "x", + "url": "https://x.com/DeepSpaceBSC" + }, + { + "name": "github", + "url": "https://github.com/deepspace-game" + }, + { + "name": "telegram", + "url": "https://t.me/DeepSpaceGame" + }, + { + "name": "telegram_news", + "url": "https://t.me/deepspaceannouncements" + }, + { + "name": "blog", + "url": "https://dps.fyi/blog" + }, + { + "name": "docs", + "url": "https://dps.fyi/docs" + }, + { + "name": "forum", + "url": "https://dps.fyi/forum" + }, + { + "name": "discord", + "url": "https://discord.com/invite/deepspace" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/DeepSpaceGame/" + }, + { + "name": "whitepaper", + "url": "https://dps.fyi/whitepaper" + }, + { + "name": "medium", + "url": "https://deepspacebsc.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/DeepSpaceBSC" + }, + { + "name": "facebook", + "url": "https://facebook.com/deepspacebsc/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/deepspace/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/deepspace" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C#code" + } + ], + "tags": [ + "nft", + "defi", + "staking", + "deflationary", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C/logo.png b/blockchains/smartchain/assets/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C/logo.png new file mode 100644 index 00000000..cbf42f84 Binary files /dev/null and b/blockchains/smartchain/assets/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C/logo.png differ diff --git a/blockchains/smartchain/assets/0xf29480344d8e21EFeAB7Fde39F8D8299056A7FEA/info.json b/blockchains/smartchain/assets/0xf29480344d8e21EFeAB7Fde39F8D8299056A7FEA/info.json new file mode 100644 index 00000000..6f894269 --- /dev/null +++ b/blockchains/smartchain/assets/0xf29480344d8e21EFeAB7Fde39F8D8299056A7FEA/info.json @@ -0,0 +1,21 @@ +{ + "name": "TBCC", + "type": "BEP20", + "symbol": "TBCC", + "decimals": 18, + "website": "https://www.tbcc.com/footer/token", + "description": "TBCC token is a utility token that was issued by TBCC development team.", + "explorer": "https://bscscan.com/token/0xf29480344d8e21EFeAB7Fde39F8D8299056A7FEA", + "status": "active", + "id": "0xf29480344d8e21EFeAB7Fde39F8D8299056A7FEA", + "links": [ + { + "name": "telegram", + "url": "https://t.me/tbcc_china" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tbcc-labs/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf29480344d8e21EFeAB7Fde39F8D8299056A7FEA/logo.png b/blockchains/smartchain/assets/0xf29480344d8e21EFeAB7Fde39F8D8299056A7FEA/logo.png new file mode 100644 index 00000000..95f5c7b7 Binary files /dev/null and b/blockchains/smartchain/assets/0xf29480344d8e21EFeAB7Fde39F8D8299056A7FEA/logo.png differ diff --git a/blockchains/smartchain/assets/0xf2C24c47805f4f72d3919C8674bFDd401505794B/info.json b/blockchains/smartchain/assets/0xf2C24c47805f4f72d3919C8674bFDd401505794B/info.json new file mode 100644 index 00000000..3fb97da0 --- /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 00000000..c9f474e3 Binary files /dev/null and b/blockchains/smartchain/assets/0xf2C24c47805f4f72d3919C8674bFDd401505794B/logo.png differ diff --git a/blockchains/smartchain/assets/0xf2E00684457de1a3C87361bC4BfE2DE92342306C/info.json b/blockchains/smartchain/assets/0xf2E00684457de1a3C87361bC4BfE2DE92342306C/info.json new file mode 100644 index 00000000..3af5f6f3 --- /dev/null +++ b/blockchains/smartchain/assets/0xf2E00684457de1a3C87361bC4BfE2DE92342306C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Shield Network", + "type": "BEP20", + "symbol": "SHIELDNET", + "decimals": 18, + "website": "https://www.shieldnetwork.io/", + "description": "Shield Network, a token audit platform where every token is thoroughly audited to ensure safety and avoid scams.", + "explorer": "https://bscscan.com/token/0xf2E00684457de1a3C87361bC4BfE2DE92342306C", + "status": "active", + "id": "0xf2E00684457de1a3C87361bC4BfE2DE92342306C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf2E00684457de1a3C87361bC4BfE2DE92342306C/logo.png b/blockchains/smartchain/assets/0xf2E00684457de1a3C87361bC4BfE2DE92342306C/logo.png new file mode 100644 index 00000000..633a61fb Binary files /dev/null and b/blockchains/smartchain/assets/0xf2E00684457de1a3C87361bC4BfE2DE92342306C/logo.png differ diff --git a/blockchains/smartchain/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/info.json b/blockchains/smartchain/assets/0xf2c88757f8d03634671208935974B60a2a28Bdb3/info.json new file mode 100644 index 00000000..a7cae144 --- /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 00000000..51349b37 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 new file mode 100644 index 00000000..72e34bac --- /dev/null +++ b/blockchains/smartchain/assets/0xf307910A4c7bbc79691fD374889b36d8531B08e3/info.json @@ -0,0 +1,26 @@ +{ + "name": "Ankr Token", + "website": "https://ankr.com", + "description": "Ankr is building an infrastructure platform and marketplace for Web3-stack deployment.", + "explorer": "https://bscscan.com/token/0xf307910A4c7bbc79691fD374889b36d8531B08e3", + "research": "https://research.binance.com/en/projects/ankr-network", + "type": "BEP20", + "symbol": "ANKR", + "decimals": 18, + "status": "active", + "id": "0xf307910A4c7bbc79691fD374889b36d8531B08e3", + "links": [ + { + "name": "blog", + "url": "https://medium.com/ankr-network" + }, + { + "name": "x", + "url": "https://x.com/ankr" + }, + { + "name": "whitepaper", + "url": "https://s3-us-west-1.amazonaws.com/app.ankr.network/assets/Ankr_Whitepaper_20190524.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf307910A4c7bbc79691fD374889b36d8531B08e3/logo.png b/blockchains/smartchain/assets/0xf307910A4c7bbc79691fD374889b36d8531B08e3/logo.png new file mode 100644 index 00000000..2327c339 Binary files /dev/null and b/blockchains/smartchain/assets/0xf307910A4c7bbc79691fD374889b36d8531B08e3/logo.png differ diff --git a/blockchains/smartchain/assets/0xf3147987a00D35EeCC10C731269003CA093740CA/info.json b/blockchains/smartchain/assets/0xf3147987a00D35EeCC10C731269003CA093740CA/info.json new file mode 100644 index 00000000..e83add8a --- /dev/null +++ b/blockchains/smartchain/assets/0xf3147987a00D35EeCC10C731269003CA093740CA/info.json @@ -0,0 +1,21 @@ +{ + "name": "MAT", + "type": "BEP20", + "symbol": "MAT", + "decimals": 18, + "website": "https://mymasterwar.com", + "description": "The token for MyMasterWar, the NFT game with free play to earn model ", + "explorer": "https://bscscan.com/token/0xf3147987a00d35eecc10c731269003ca093740ca", + "status": "active", + "id": "0xf3147987a00D35EeCC10C731269003CA093740CA", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/my-master-war/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/my-master-war/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf3147987a00D35EeCC10C731269003CA093740CA/logo.png b/blockchains/smartchain/assets/0xf3147987a00D35EeCC10C731269003CA093740CA/logo.png new file mode 100644 index 00000000..a9e620ff Binary files /dev/null and b/blockchains/smartchain/assets/0xf3147987a00D35EeCC10C731269003CA093740CA/logo.png differ diff --git a/blockchains/smartchain/assets/0xf3175F46B35bf82f5E1FB44c2a64Db99C52B7Eb4/info.json b/blockchains/smartchain/assets/0xf3175F46B35bf82f5E1FB44c2a64Db99C52B7Eb4/info.json new file mode 100644 index 00000000..7300d283 --- /dev/null +++ b/blockchains/smartchain/assets/0xf3175F46B35bf82f5E1FB44c2a64Db99C52B7Eb4/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoonDawg", + "website": "https://moondawgcoin.com", + "description": "MDG aims to become bsc’s ultimate rewards token. Community members Earn MDG just by holding them in their wallets. MDG holds weekly lottos with huge jackpots.", + "explorer": "https://bscscan.com/token/0xf3175F46B35bf82f5E1FB44c2a64Db99C52B7Eb4", + "type": "BEP20", + "symbol": "MDG", + "decimals": 9, + "status": "active", + "id": "0xf3175F46B35bf82f5E1FB44c2a64Db99C52B7Eb4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf3175F46B35bf82f5E1FB44c2a64Db99C52B7Eb4/logo.png b/blockchains/smartchain/assets/0xf3175F46B35bf82f5E1FB44c2a64Db99C52B7Eb4/logo.png new file mode 100644 index 00000000..d2058dfb Binary files /dev/null and b/blockchains/smartchain/assets/0xf3175F46B35bf82f5E1FB44c2a64Db99C52B7Eb4/logo.png differ diff --git a/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/info.json b/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/info.json new file mode 100644 index 00000000..7b137e9a --- /dev/null +++ b/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/info.json @@ -0,0 +1,28 @@ +{ + "name": "MetaNet", + "type": "BEP20", + "symbol": "MNet", + "decimals": 9, + "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": "abandoned", + "id": "0xf3630c7EED28514b4c14222bB86E31B53A5da101", + "links": [ + { + "name": "x", + "url": "https://x.com/MetaNetflix" + }, + { + "name": "telegram", + "url": "https://t.me/metanetbsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metanet/" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf36F22D8D583fbAFc034450f50110925c76D40d7/info.json b/blockchains/smartchain/assets/0xf36F22D8D583fbAFc034450f50110925c76D40d7/info.json new file mode 100644 index 00000000..50c6762c --- /dev/null +++ b/blockchains/smartchain/assets/0xf36F22D8D583fbAFc034450f50110925c76D40d7/info.json @@ -0,0 +1,14 @@ +{ + "name": "SIAMESE NEKO", + "type": "BEP20", + "symbol": "SIAM", + "decimals": 9, + "website": "https://siamese.finance", + "description": "Community-driven token with 2% reward to holders, 5% to LP on each transaction. 25M Siamese Neko Debit Cards by 2025! Be part of our mission to the moon!", + "explorer": "https://bscscan.com/token/0xf36F22D8D583fbAFc034450f50110925c76D40d7", + "status": "active", + "id": "0xf36F22D8D583fbAFc034450f50110925c76D40d7", + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf36F22D8D583fbAFc034450f50110925c76D40d7/logo.png b/blockchains/smartchain/assets/0xf36F22D8D583fbAFc034450f50110925c76D40d7/logo.png new file mode 100644 index 00000000..08638899 Binary files /dev/null and b/blockchains/smartchain/assets/0xf36F22D8D583fbAFc034450f50110925c76D40d7/logo.png differ diff --git a/blockchains/smartchain/assets/0xf390fB7d16f2cbba037c1fC48862463116a7E545/info.json b/blockchains/smartchain/assets/0xf390fB7d16f2cbba037c1fC48862463116a7E545/info.json new file mode 100644 index 00000000..1df66342 --- /dev/null +++ b/blockchains/smartchain/assets/0xf390fB7d16f2cbba037c1fC48862463116a7E545/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoonLift", + "website": "https://moonlift.io", + "description": "MoonLift is a community driven passive income generation protocol running on Binancesmartchain", + "explorer": "https://bscscan.com/token/0xf390fB7d16f2cbba037c1fC48862463116a7E545", + "type": "BEP20", + "symbol": "MLTP", + "decimals": 18, + "status": "active", + "id": "0xf390fB7d16f2cbba037c1fC48862463116a7E545" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf390fB7d16f2cbba037c1fC48862463116a7E545/logo.png b/blockchains/smartchain/assets/0xf390fB7d16f2cbba037c1fC48862463116a7E545/logo.png new file mode 100644 index 00000000..24f1b05c Binary files /dev/null and b/blockchains/smartchain/assets/0xf390fB7d16f2cbba037c1fC48862463116a7E545/logo.png differ diff --git a/blockchains/smartchain/assets/0xf3DBB49999B25c9D6641a9423C7ad84168D00071/info.json b/blockchains/smartchain/assets/0xf3DBB49999B25c9D6641a9423C7ad84168D00071/info.json new file mode 100644 index 00000000..08c019f2 --- /dev/null +++ b/blockchains/smartchain/assets/0xf3DBB49999B25c9D6641a9423C7ad84168D00071/info.json @@ -0,0 +1,12 @@ +{ + "name": "Hydro Token", + "website": "https://projecthydro.org", + "description": "Multi-chain protocols securing the web3 reality.", + "explorer": "https://bscscan.com/token/0xf3DBB49999B25c9D6641a9423C7ad84168D00071", + "research": "https://github.com/HydroBlockchain/Hydro-Docs", + "type": "BEP20", + "symbol": "HYDRO", + "decimals": 18, + "status": "active", + "id": "0xf3DBB49999B25c9D6641a9423C7ad84168D00071" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf3DBB49999B25c9D6641a9423C7ad84168D00071/logo.png b/blockchains/smartchain/assets/0xf3DBB49999B25c9D6641a9423C7ad84168D00071/logo.png new file mode 100644 index 00000000..64d8db5a Binary files /dev/null and b/blockchains/smartchain/assets/0xf3DBB49999B25c9D6641a9423C7ad84168D00071/logo.png differ diff --git a/blockchains/smartchain/assets/0xf3eDD4f14a018df4b6f02Bf1b2cF17A8120519A2/info.json b/blockchains/smartchain/assets/0xf3eDD4f14a018df4b6f02Bf1b2cF17A8120519A2/info.json new file mode 100644 index 00000000..117f35aa --- /dev/null +++ b/blockchains/smartchain/assets/0xf3eDD4f14a018df4b6f02Bf1b2cF17A8120519A2/info.json @@ -0,0 +1,29 @@ +{ + "name": "PandaInuWalletToken", + "website": "https://pandainu.io", + "description": "PandaInu is a meme-based token & Defi Wallets", + "explorer": "https://bscscan.com/token/0xf3eDD4f14a018df4b6f02Bf1b2cF17A8120519A2", + "type": "BEP20", + "symbol": "PWT", + "decimals": 8, + "status": "active", + "id": "0xf3eDD4f14a018df4b6f02Bf1b2cF17A8120519A2", + "links": [ + { + "name": "reddit", + "url": "https://reddit.com/user/Pandainu_official" + }, + { + "name": "medium", + "url": "https://pandainu.medium.com/" + }, + { + "name": "x", + "url": "https://x.com/Pandainu21" + }, + { + "name": "facebook", + "url": "https://facebook.com/pandainutoken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf3eDD4f14a018df4b6f02Bf1b2cF17A8120519A2/logo.png b/blockchains/smartchain/assets/0xf3eDD4f14a018df4b6f02Bf1b2cF17A8120519A2/logo.png new file mode 100644 index 00000000..bd8dae79 Binary files /dev/null and b/blockchains/smartchain/assets/0xf3eDD4f14a018df4b6f02Bf1b2cF17A8120519A2/logo.png differ diff --git a/blockchains/smartchain/assets/0xf40c1F421eE02A550aFDD8712ef34dCe97EeC6f2/info.json b/blockchains/smartchain/assets/0xf40c1F421eE02A550aFDD8712ef34dCe97EeC6f2/info.json new file mode 100644 index 00000000..8bf9e4d8 --- /dev/null +++ b/blockchains/smartchain/assets/0xf40c1F421eE02A550aFDD8712ef34dCe97EeC6f2/info.json @@ -0,0 +1,11 @@ +{ + "name": "wDogecoin", + "website": "https://wdogecoin.net", + "description": "Yield farm Dogecoin on Binance Smart Chain", + "explorer": "https://bscscan.com/token/0xf40c1f421ee02a550afdd8712ef34dce97eec6f2", + "symbol": "wDOGE", + "type": "BEP20", + "decimals": 8, + "status": "active", + "id": "0xf40c1F421eE02A550aFDD8712ef34dCe97EeC6f2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf40c1F421eE02A550aFDD8712ef34dCe97EeC6f2/logo.png b/blockchains/smartchain/assets/0xf40c1F421eE02A550aFDD8712ef34dCe97EeC6f2/logo.png new file mode 100644 index 00000000..069c924e Binary files /dev/null and b/blockchains/smartchain/assets/0xf40c1F421eE02A550aFDD8712ef34dCe97EeC6f2/logo.png differ diff --git a/blockchains/smartchain/assets/0xf4206e5F264420630520e0D23c14D8Dd5645e6C3/info.json b/blockchains/smartchain/assets/0xf4206e5F264420630520e0D23c14D8Dd5645e6C3/info.json new file mode 100644 index 00000000..dc52636c --- /dev/null +++ b/blockchains/smartchain/assets/0xf4206e5F264420630520e0D23c14D8Dd5645e6C3/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lunar", + "type": "BEP20", + "symbol": "LUNAR", + "decimals": 9, + "website": "https://lunarswap.finance/", + "description": "Innovative, decentralized yield farming token which automatically rewards both BNB and LUNAR goal is to create DEX tools such as limit buys/sells, stop loss/take profit, a liquidity sniper, and similar tools on top on pancakeswap.", + "explorer": "https://bscscan.com/token/0xf4206e5F264420630520e0D23c14D8Dd5645e6C3", + "status": "active", + "id": "0xf4206e5F264420630520e0D23c14D8Dd5645e6C3" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf4206e5F264420630520e0D23c14D8Dd5645e6C3/logo.png b/blockchains/smartchain/assets/0xf4206e5F264420630520e0D23c14D8Dd5645e6C3/logo.png new file mode 100644 index 00000000..de6fe890 Binary files /dev/null and b/blockchains/smartchain/assets/0xf4206e5F264420630520e0D23c14D8Dd5645e6C3/logo.png differ diff --git a/blockchains/smartchain/assets/0xf4341fA52669cea0c1836095529A7E9B04b8b88D/info.json b/blockchains/smartchain/assets/0xf4341fA52669cea0c1836095529A7E9B04b8b88D/info.json new file mode 100644 index 00000000..45362c2f --- /dev/null +++ b/blockchains/smartchain/assets/0xf4341fA52669cea0c1836095529A7E9B04b8b88D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Satozhi", + "type": "BEP20", + "symbol": "SATOZ", + "decimals": 8, + "website": "https://satozhi.com", + "description": "The World's First Proof-of-Burn (PoB) Decentralized Ecosystem", + "explorer": "https://bscscan.com/token/0xf4341fA52669cea0c1836095529A7E9B04b8b88D", + "status": "active", + "id": "0xf4341fA52669cea0c1836095529A7E9B04b8b88D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf4341fA52669cea0c1836095529A7E9B04b8b88D/logo.png b/blockchains/smartchain/assets/0xf4341fA52669cea0c1836095529A7E9B04b8b88D/logo.png new file mode 100644 index 00000000..e2eca24d Binary files /dev/null and b/blockchains/smartchain/assets/0xf4341fA52669cea0c1836095529A7E9B04b8b88D/logo.png differ diff --git a/blockchains/smartchain/assets/0xf45de5A6d02c4a6E050B90Add33ebf0A34D017e0/info.json b/blockchains/smartchain/assets/0xf45de5A6d02c4a6E050B90Add33ebf0A34D017e0/info.json new file mode 100644 index 00000000..b67efdd4 --- /dev/null +++ b/blockchains/smartchain/assets/0xf45de5A6d02c4a6E050B90Add33ebf0A34D017e0/info.json @@ -0,0 +1,48 @@ +{ + "name": "WEB3 Doge", + "type": "BEP20", + "symbol": "WEB3", + "decimals": 9, + "website": "https://web3doge.io", + "description": "Web3 Doge allows you to enter the metaverse by employing a 3D NFT avatar of your real pet on the Web3 Doge platform.", + "explorer": "https://bscscan.com/token/0xf45de5a6d02c4a6e050b90add33ebf0a34d017e0", + "status": "active", + "id": "0xf45de5A6d02c4a6E050B90Add33ebf0A34D017e0", + "links": [ + { + "name": "x", + "url": "https://x.com/web3_doge" + }, + { + "name": "github", + "url": "https://github.com/web3doge" + }, + { + "name": "telegram", + "url": "https://t.me/web3_doge_eng" + }, + { + "name": "whitepaper", + "url": "https://web3doge.io/assets/web3_doge_whitepaper_v1.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@web3_doge" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/web3-doge/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/web3-doge" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xf45de5a6d02c4a6e050b90add33ebf0a34d017e0#code" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf45de5A6d02c4a6E050B90Add33ebf0A34D017e0/logo.png b/blockchains/smartchain/assets/0xf45de5A6d02c4a6E050B90Add33ebf0A34D017e0/logo.png new file mode 100644 index 00000000..37ec3432 Binary files /dev/null and b/blockchains/smartchain/assets/0xf45de5A6d02c4a6E050B90Add33ebf0A34D017e0/logo.png differ diff --git a/blockchains/smartchain/assets/0xf483af09917bA63F1E274056978036d266EB56e6/info.json b/blockchains/smartchain/assets/0xf483af09917bA63F1E274056978036d266EB56e6/info.json new file mode 100644 index 00000000..95a221dc --- /dev/null +++ b/blockchains/smartchain/assets/0xf483af09917bA63F1E274056978036d266EB56e6/info.json @@ -0,0 +1,11 @@ +{ + "name": "BULL COIN", + "website": "http://bullcoin.finance/", + "description": "BullSwap is a completely decentralized transaction protocol", + "explorer": "https://bscscan.com/token/0xf483af09917bA63F1E274056978036d266EB56e6", + "type": "BEP20", + "symbol": "BULL", + "decimals": 18, + "status": "active", + "id": "0xf483af09917bA63F1E274056978036d266EB56e6" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf483af09917bA63F1E274056978036d266EB56e6/logo.png b/blockchains/smartchain/assets/0xf483af09917bA63F1E274056978036d266EB56e6/logo.png new file mode 100644 index 00000000..8367cdff Binary files /dev/null and b/blockchains/smartchain/assets/0xf483af09917bA63F1E274056978036d266EB56e6/logo.png differ diff --git a/blockchains/smartchain/assets/0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46/info.json b/blockchains/smartchain/assets/0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46/info.json new file mode 100644 index 00000000..12038db4 --- /dev/null +++ b/blockchains/smartchain/assets/0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46/info.json @@ -0,0 +1,28 @@ +{ + "name": "VELO", + "type": "BEP20", + "symbol": "VELO", + "decimals": 18, + "website": "http://velo.org/", + "description": "Velo’s core mission is to build a decentralized settlement network that allows its Trusted Partners to securely transfer value among one another in a timely and transparent manner. Velo’s initial focus will be on businesses in the remittance space in the southeast Asia region.", + "explorer": "https://bscscan.com/token/0xf486ad071f3bee968384d2e39e2d8af0fcf6fd46", + "status": "active", + "id": "0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46", + "links": [ + { + "name": "x", + "url": "https://x.com/veloprotocol" + }, + { + "name": "whitepaper", + "url": "https://velo.org/doc/Velo_Whitepaper_EN.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/velo/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46/logo.png b/blockchains/smartchain/assets/0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46/logo.png new file mode 100644 index 00000000..a59dd4bd Binary files /dev/null and b/blockchains/smartchain/assets/0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46/logo.png differ diff --git a/blockchains/smartchain/assets/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4/info.json b/blockchains/smartchain/assets/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4/info.json new file mode 100644 index 00000000..118937b2 --- /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 00000000..ed28b4d8 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 00000000..c09a6fcc --- /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 00000000..5d8e1811 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 00000000..ad0fc22c --- /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 00000000..3ba6533d 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 00000000..6475c8cd --- /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/0xf4a037785b3AE6C70F9Ed71fA2084B3589CABd46/info.json b/blockchains/smartchain/assets/0xf4a037785b3AE6C70F9Ed71fA2084B3589CABd46/info.json new file mode 100644 index 00000000..b423aedd --- /dev/null +++ b/blockchains/smartchain/assets/0xf4a037785b3AE6C70F9Ed71fA2084B3589CABd46/info.json @@ -0,0 +1,11 @@ +{ + "name": "MEMEX.EXCHANGE", + "type": "BEP20", + "symbol": "MEMEX", + "decimals": 8, + "website": "https://memex.exchange", + "description": "The first multi-chain DEX for MEME tokens with an entire ecosystem around meme tokens.", + "explorer": "https://bscscan.com/token/0xf4a037785b3AE6C70F9Ed71fA2084B3589CABd46", + "status": "active", + "id": "0xf4a037785b3AE6C70F9Ed71fA2084B3589CABd46" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf4a037785b3AE6C70F9Ed71fA2084B3589CABd46/logo.png b/blockchains/smartchain/assets/0xf4a037785b3AE6C70F9Ed71fA2084B3589CABd46/logo.png new file mode 100644 index 00000000..99e596d0 Binary files /dev/null and b/blockchains/smartchain/assets/0xf4a037785b3AE6C70F9Ed71fA2084B3589CABd46/logo.png differ diff --git a/blockchains/smartchain/assets/0xf4fd75764A5C086fb12F822be2cA318b3a362DC3/info.json b/blockchains/smartchain/assets/0xf4fd75764A5C086fb12F822be2cA318b3a362DC3/info.json new file mode 100644 index 00000000..2741e4d6 --- /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 00000000..572a5a58 Binary files /dev/null and b/blockchains/smartchain/assets/0xf4fd75764A5C086fb12F822be2cA318b3a362DC3/logo.png differ diff --git a/blockchains/smartchain/assets/0xf5015995376a35b10dcBD96BA6B6e9de1c9f87c5/info.json b/blockchains/smartchain/assets/0xf5015995376a35b10dcBD96BA6B6e9de1c9f87c5/info.json new file mode 100644 index 00000000..561c5718 --- /dev/null +++ b/blockchains/smartchain/assets/0xf5015995376a35b10dcBD96BA6B6e9de1c9f87c5/info.json @@ -0,0 +1,11 @@ +{ + "name": "Military Finance Token", + "type": "BEP20", + "symbol": "MIL", + "decimals": 9, + "website": "https://www.military.finance/", + "description": "Military.finance is a fully decentralized, community-built project to help military veterans and charities. Simply put, we connect crypto to veteran organizations.", + "explorer": "https://bscscan.com/token/0xf5015995376a35b10dcBD96BA6B6e9de1c9f87c5", + "status": "active", + "id": "0xf5015995376a35b10dcBD96BA6B6e9de1c9f87c5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf5015995376a35b10dcBD96BA6B6e9de1c9f87c5/logo.png b/blockchains/smartchain/assets/0xf5015995376a35b10dcBD96BA6B6e9de1c9f87c5/logo.png new file mode 100644 index 00000000..a92a4837 Binary files /dev/null and b/blockchains/smartchain/assets/0xf5015995376a35b10dcBD96BA6B6e9de1c9f87c5/logo.png differ diff --git a/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/info.json b/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/info.json new file mode 100644 index 00000000..bb3beed4 --- /dev/null +++ b/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus ETH", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8", + "type": "BEP20", + "symbol": "vETH", + "decimals": 8, + "status": "active", + "id": "0xf508fCD89b8bd15579dc79A6827cB4686A3592c8", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/logo.png b/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/logo.png new file mode 100644 index 00000000..6461b421 Binary files /dev/null and b/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/logo.png differ diff --git a/blockchains/smartchain/assets/0xf5967B4A40be5d721F06a9e8165dD11F521f37Ea/info.json b/blockchains/smartchain/assets/0xf5967B4A40be5d721F06a9e8165dD11F521f37Ea/info.json new file mode 100644 index 00000000..c3f347bc --- /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 00000000..8f8cb5eb --- /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 00000000..a750e6c4 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 00000000..cfcec794 --- /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/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/logo.png b/blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/logo.png new file mode 100644 index 00000000..3f3fb6fb Binary files /dev/null and b/blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/logo.png differ diff --git a/blockchains/smartchain/assets/0xf647d6B49ea7bb880EcbCFf9913dF0d634875D33/info.json b/blockchains/smartchain/assets/0xf647d6B49ea7bb880EcbCFf9913dF0d634875D33/info.json new file mode 100644 index 00000000..b371a763 --- /dev/null +++ b/blockchains/smartchain/assets/0xf647d6B49ea7bb880EcbCFf9913dF0d634875D33/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stargazer Protocol", + "website": "https://stargazerprotocol.com/", + "description": "Stargazer is comprised of many modules which will be based on tiers. Rugcheck - Ability to rug check a coin and get a rug score. Whale Watch - Watch a wallets movements in real time. Get alerts when buy/sells happen. Adjust the alerts to show only buys, or only sells, or both. Harpoon - With a simple list of coins and a very recent list of holders of one of those coins you can identify a person of interest's wallet address with the harpoon technology.", + "explorer": "https://bscscan.com/token/0xf647d6B49ea7bb880EcbCFf9913dF0d634875D33", + "type": "BEP20", + "symbol": "STARDUST", + "decimals": 9, + "status": "active", + "id": "0xf647d6B49ea7bb880EcbCFf9913dF0d634875D33" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf647d6B49ea7bb880EcbCFf9913dF0d634875D33/logo.png b/blockchains/smartchain/assets/0xf647d6B49ea7bb880EcbCFf9913dF0d634875D33/logo.png new file mode 100644 index 00000000..017ed172 Binary files /dev/null and b/blockchains/smartchain/assets/0xf647d6B49ea7bb880EcbCFf9913dF0d634875D33/logo.png differ diff --git a/blockchains/smartchain/assets/0xf67006f8d22edEbd1191f3E728ab9a90289e6C38/info.json b/blockchains/smartchain/assets/0xf67006f8d22edEbd1191f3E728ab9a90289e6C38/info.json new file mode 100644 index 00000000..90c59f75 --- /dev/null +++ b/blockchains/smartchain/assets/0xf67006f8d22edEbd1191f3E728ab9a90289e6C38/info.json @@ -0,0 +1,32 @@ +{ + "name": "LittleBabyDoge", + "type": "BEP20", + "symbol": "LBD", + "decimals": 9, + "website": "https://littlebabydoge.com/", + "description": "Little Baby Doge is a hyper-deflationary decentralized buyback token, community-driven project that aims to reduce global warming by being the no 1 cryptocurrency platform for fighting climate change!", + "explorer": "https://bscscan.com/token/0xf67006f8d22edEbd1191f3E728ab9a90289e6C38", + "status": "active", + "id": "0xf67006f8d22edEbd1191f3E728ab9a90289e6C38", + "links": [ + { + "name": "x", + "url": "https://x.com/LBD_se" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/little-baby-doge/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/littlebabydoge" + }, + { + "name": "telegram", + "url": "https://t.me/LittleBabyDogeOfficial" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf67006f8d22edEbd1191f3E728ab9a90289e6C38/logo.png b/blockchains/smartchain/assets/0xf67006f8d22edEbd1191f3E728ab9a90289e6C38/logo.png new file mode 100644 index 00000000..e5347b00 Binary files /dev/null and b/blockchains/smartchain/assets/0xf67006f8d22edEbd1191f3E728ab9a90289e6C38/logo.png differ diff --git a/blockchains/smartchain/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/smartchain/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 00000000..e909118a --- /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 00000000..d0c4e5f8 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 new file mode 100644 index 00000000..27ed1c67 --- /dev/null +++ b/blockchains/smartchain/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json @@ -0,0 +1,21 @@ +{ + "name": "Coinhub", + "type": "BEP20", + "symbol": "CHB", + "decimals": 8, + "website": "https://thecoinhub.io/", + "description": "Coinhub is a trading platform with CHB token which is a utility token. It is located in The U.A.E", + "explorer": "https://bscscan.com/token/0xf68D4d917592f3a62417aCE42592F15296cc33A0", + "status": "active", + "id": "0xf68D4d917592f3a62417aCE42592F15296cc33A0", + "links": [ + { + "name": "x", + "url": "https://x.com/coinhubchb" + }, + { + "name": "github", + "url": "https://github.com/https://github.com/trustwallet/assets/pull/22943#issuecomment-1304637991" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/logo.png b/blockchains/smartchain/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/logo.png new file mode 100644 index 00000000..ee7784a1 Binary files /dev/null and b/blockchains/smartchain/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/logo.png differ diff --git a/blockchains/smartchain/assets/0xf69e40069aC227C11459E3f4e8a446b3401616b6/info.json b/blockchains/smartchain/assets/0xf69e40069aC227C11459E3f4e8a446b3401616b6/info.json new file mode 100644 index 00000000..5a56f7ef --- /dev/null +++ b/blockchains/smartchain/assets/0xf69e40069aC227C11459E3f4e8a446b3401616b6/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized)", + "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 00000000..731ceba6 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 00000000..9147a4ae --- /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 00000000..8d1cff2a 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 00000000..d90e6882 --- /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 00000000..4a9c4b74 Binary files /dev/null and b/blockchains/smartchain/assets/0xf706585e7e8900bE0267bEE3B9A2F70835EC6628/logo.png differ diff --git a/blockchains/smartchain/assets/0xf707155AAf4cD8E97D7B298964e84f3221241142/info.json b/blockchains/smartchain/assets/0xf707155AAf4cD8E97D7B298964e84f3221241142/info.json new file mode 100644 index 00000000..3a4295d7 --- /dev/null +++ b/blockchains/smartchain/assets/0xf707155AAf4cD8E97D7B298964e84f3221241142/info.json @@ -0,0 +1,11 @@ +{ + "name": "MARKGOAT Token", + "website": "https://markgoat.finance", + "description": "MARKGOAT is a deflationary cryptocurrency on the Binance Smart Chain (BSC) with charitable purposes that also combines NFT market production and automated liquidity protocol.", + "explorer": "https://bscscan.com/token/0xf707155AAf4cD8E97D7B298964e84f3221241142", + "type": "BEP20", + "symbol": "MARKGOAT", + "decimals": 9, + "status": "active", + "id": "0xf707155AAf4cD8E97D7B298964e84f3221241142" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf707155AAf4cD8E97D7B298964e84f3221241142/logo.png b/blockchains/smartchain/assets/0xf707155AAf4cD8E97D7B298964e84f3221241142/logo.png new file mode 100644 index 00000000..efd4b8fa Binary files /dev/null and b/blockchains/smartchain/assets/0xf707155AAf4cD8E97D7B298964e84f3221241142/logo.png differ diff --git a/blockchains/smartchain/assets/0xf7722aA0714096f1FB5ef83e6041CEBB4d58a08e/info.json b/blockchains/smartchain/assets/0xf7722aA0714096f1FB5ef83e6041CEBB4d58a08e/info.json new file mode 100644 index 00000000..b7470659 --- /dev/null +++ b/blockchains/smartchain/assets/0xf7722aA0714096f1FB5ef83e6041CEBB4d58a08e/info.json @@ -0,0 +1,37 @@ +{ + "name": "RUBY", + "type": "BEP20", + "symbol": "RUBY", + "decimals": 12, + "website": "https://rubyplaynet.com", + "description": "The Ruby Play Network is a gaming rewards platform. We aim to drive adoption of the blockchain to mainstream players by providing them simple ways to earn cryptocurrency.", + "explorer": "https://bscscan.com/token/0xf7722aA0714096f1FB5ef83e6041CEBB4d58a08e", + "status": "active", + "id": "0xf7722aA0714096f1FB5ef83e6041CEBB4d58a08e", + "links": [ + { + "name": "x", + "url": "https://x.com/RubyPlayNetwork" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/axBVv4-VeiQ0MzBh" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/RubyPlayNetwork/" + }, + { + "name": "medium", + "url": "https://medium.com/@Ruby_Play" + }, + { + "name": "facebook", + "url": "https://facebook.com/rubyplaynetwork" + } + ], + "tags": [ + "staking", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf7722aA0714096f1FB5ef83e6041CEBB4d58a08e/logo.png b/blockchains/smartchain/assets/0xf7722aA0714096f1FB5ef83e6041CEBB4d58a08e/logo.png new file mode 100644 index 00000000..810f3c1e Binary files /dev/null and b/blockchains/smartchain/assets/0xf7722aA0714096f1FB5ef83e6041CEBB4d58a08e/logo.png differ diff --git a/blockchains/smartchain/assets/0xf78Bbc835b52D7f0e9538C3566997bA2bf050B85/info.json b/blockchains/smartchain/assets/0xf78Bbc835b52D7f0e9538C3566997bA2bf050B85/info.json new file mode 100644 index 00000000..40d9d9b9 --- /dev/null +++ b/blockchains/smartchain/assets/0xf78Bbc835b52D7f0e9538C3566997bA2bf050B85/info.json @@ -0,0 +1,11 @@ +{ + "name": "SkyBorn", + "type": "BEP20", + "symbol": "SKYBORN", + "decimals": 18, + "website": "https://www.skybornbsc.com/", + "description": "SkyBorn created and continues to grow a cryptocurrency community comprised of members to trade and create shareable community content. The SkyBorn project plans to incorporate NFTs for the upcoming release of Binance's release of NFT Marketplace on June 24th, 2021. Additionally, SkyBorn plans to design a mobile application (game) where all microtransactions will be used towards marketing of the token.", + "explorer": "https://bscscan.com/token/0xf78Bbc835b52D7f0e9538C3566997bA2bf050B85", + "status": "active", + "id": "0xf78Bbc835b52D7f0e9538C3566997bA2bf050B85" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf78Bbc835b52D7f0e9538C3566997bA2bf050B85/logo.png b/blockchains/smartchain/assets/0xf78Bbc835b52D7f0e9538C3566997bA2bf050B85/logo.png new file mode 100644 index 00000000..2b42caa7 Binary files /dev/null and b/blockchains/smartchain/assets/0xf78Bbc835b52D7f0e9538C3566997bA2bf050B85/logo.png differ diff --git a/blockchains/smartchain/assets/0xf79037F6f6bE66832DE4E7516be52826BC3cBcc4/info.json b/blockchains/smartchain/assets/0xf79037F6f6bE66832DE4E7516be52826BC3cBcc4/info.json new file mode 100644 index 00000000..5a80aa1a --- /dev/null +++ b/blockchains/smartchain/assets/0xf79037F6f6bE66832DE4E7516be52826BC3cBcc4/info.json @@ -0,0 +1,12 @@ +{ + "name": "Hard Protocol", + "website": "https://hard.kava.io/", + "description": "Harvest is the world’s first cross-chain money market that enables you to earn more with your digital assets.", + "explorer": "https://bscscan.com/token/0xf79037f6f6be66832de4e7516be52826bc3cbcc4", + "research": "https://research.binance.com/en/projects/hard-protocol", + "type": "BEP20", + "symbol": "HARD", + "decimals": 6, + "status": "active", + "id": "0xf79037F6f6bE66832DE4E7516be52826BC3cBcc4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf79037F6f6bE66832DE4E7516be52826BC3cBcc4/logo.png b/blockchains/smartchain/assets/0xf79037F6f6bE66832DE4E7516be52826BC3cBcc4/logo.png new file mode 100644 index 00000000..9049dc35 Binary files /dev/null and b/blockchains/smartchain/assets/0xf79037F6f6bE66832DE4E7516be52826BC3cBcc4/logo.png differ diff --git a/blockchains/smartchain/assets/0xf79a6caDa446F331BC560CDE7946d09AEF0EE18B/info.json b/blockchains/smartchain/assets/0xf79a6caDa446F331BC560CDE7946d09AEF0EE18B/info.json new file mode 100644 index 00000000..97b01c79 --- /dev/null +++ b/blockchains/smartchain/assets/0xf79a6caDa446F331BC560CDE7946d09AEF0EE18B/info.json @@ -0,0 +1,11 @@ +{ + "name": "Nestle Finance", + "website": "https://www.nestlefinance.com", + "description": "Nestle Finance is an autonomous yield and liquidity protocol", + "explorer": "https://bscscan.com/token/0xf79a6cada446f331bc560cde7946d09aef0ee18b", + "type": "BEP20", + "symbol": "NSTLE", + "decimals": 9, + "status": "active", + "id": "0xf79a6caDa446F331BC560CDE7946d09AEF0EE18B" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf79a6caDa446F331BC560CDE7946d09AEF0EE18B/logo.png b/blockchains/smartchain/assets/0xf79a6caDa446F331BC560CDE7946d09AEF0EE18B/logo.png new file mode 100644 index 00000000..d506cf78 Binary files /dev/null and b/blockchains/smartchain/assets/0xf79a6caDa446F331BC560CDE7946d09AEF0EE18B/logo.png differ diff --git a/blockchains/smartchain/assets/0xf7BF4507336AeA836ab5575eC1801d96c3059483/info.json b/blockchains/smartchain/assets/0xf7BF4507336AeA836ab5575eC1801d96c3059483/info.json new file mode 100644 index 00000000..7c290109 --- /dev/null +++ b/blockchains/smartchain/assets/0xf7BF4507336AeA836ab5575eC1801d96c3059483/info.json @@ -0,0 +1,21 @@ +{ + "name": "Super Floki", + "type": "BEP20", + "symbol": "SLOKI", + "decimals": 9, + "website": "https://superfloki.net/", + "description": "Supported By ELON MUSK. Named by its beloved father, Elon Musk and the potential for this adorable little baby puppy is limitless.", + "explorer": "https://bscscan.com/token/0xf7BF4507336AeA836ab5575eC1801d96c3059483", + "status": "active", + "id": "0xf7BF4507336AeA836ab5575eC1801d96c3059483", + "links": [ + { + "name": "x", + "url": "https://x.com/FlokiSuper" + }, + { + "name": "telegram", + "url": "https://t.me/SuperFlokiEn" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf7BF4507336AeA836ab5575eC1801d96c3059483/logo.png b/blockchains/smartchain/assets/0xf7BF4507336AeA836ab5575eC1801d96c3059483/logo.png new file mode 100644 index 00000000..31ffe196 Binary files /dev/null and b/blockchains/smartchain/assets/0xf7BF4507336AeA836ab5575eC1801d96c3059483/logo.png differ diff --git a/blockchains/smartchain/assets/0xf7DE7E8A6bd59ED41a4b5fe50278b3B7f31384dF/info.json b/blockchains/smartchain/assets/0xf7DE7E8A6bd59ED41a4b5fe50278b3B7f31384dF/info.json new file mode 100644 index 00000000..5a93b293 --- /dev/null +++ b/blockchains/smartchain/assets/0xf7DE7E8A6bd59ED41a4b5fe50278b3B7f31384dF/info.json @@ -0,0 +1,32 @@ +{ + "name": "Radiant v2", + "type": "BEP20", + "symbol": "RDNT", + "decimals": 18, + "website": "https://app.radiant.capital/", + "description": "$RDNT, an OFT-20, is Radiant's native utility token. Radiant Capital is an omnichain money market built atop Layer Zero. Deposit and borrow assets cross-chain, seamlessly. Through decentralized discussions, voting, and governance, the Radiant DAO determines the decisions, and, ultimately, the vision of the Radiant ecosystem.", + "explorer": "https://bscscan.com/token/0xf7de7e8a6bd59ed41a4b5fe50278b3b7f31384df", + "status": "active", + "id": "0xf7DE7E8A6bd59ED41a4b5fe50278b3B7f31384dF", + "links": [ + { + "name": "github", + "url": "https://github.com/radiant-capital" + }, + { + "name": "x", + "url": "https://x.com/RDNTCapital" + }, + { + "name": "discord", + "url": "https://discord.com/invite/radiantcapital" + }, + { + "name": "telegram", + "url": "https://t.me/radiantcapitalofficial" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf7DE7E8A6bd59ED41a4b5fe50278b3B7f31384dF/logo.png b/blockchains/smartchain/assets/0xf7DE7E8A6bd59ED41a4b5fe50278b3B7f31384dF/logo.png new file mode 100644 index 00000000..61eec068 Binary files /dev/null and b/blockchains/smartchain/assets/0xf7DE7E8A6bd59ED41a4b5fe50278b3B7f31384dF/logo.png differ diff --git a/blockchains/smartchain/assets/0xf7F4fAC56f012dE7Dd6adFF54C761986B9E0655a/info.json b/blockchains/smartchain/assets/0xf7F4fAC56f012dE7Dd6adFF54C761986B9E0655a/info.json new file mode 100644 index 00000000..43a9f946 --- /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 00000000..d30d1c81 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 00000000..7c483920 --- /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/0xf818D092BeAF21BEaFe6aCDd8230BD5F7b861D9C/info.json b/blockchains/smartchain/assets/0xf818D092BeAF21BEaFe6aCDd8230BD5F7b861D9C/info.json new file mode 100644 index 00000000..92e95421 --- /dev/null +++ b/blockchains/smartchain/assets/0xf818D092BeAF21BEaFe6aCDd8230BD5F7b861D9C/info.json @@ -0,0 +1,11 @@ +{ + "name": "MoonGhost", + "type": "BEP20", + "symbol": "MOONGHOST", + "decimals": 9, + "website": "http://moonghost.finance/", + "description": "MoonGhost was created with the sole purpose of investor's being able to collect BNB by holding MOONGHOST.", + "explorer": "https://bscscan.com/token/0xf818D092BeAF21BEaFe6aCDd8230BD5F7b861D9C", + "status": "active", + "id": "0xf818D092BeAF21BEaFe6aCDd8230BD5F7b861D9C" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf818D092BeAF21BEaFe6aCDd8230BD5F7b861D9C/logo.png b/blockchains/smartchain/assets/0xf818D092BeAF21BEaFe6aCDd8230BD5F7b861D9C/logo.png new file mode 100644 index 00000000..f23e3faf Binary files /dev/null and b/blockchains/smartchain/assets/0xf818D092BeAF21BEaFe6aCDd8230BD5F7b861D9C/logo.png differ diff --git a/blockchains/smartchain/assets/0xf834673D496AEAcb5E99Dfbfc34f1bDCdf81D7Bd/info.json b/blockchains/smartchain/assets/0xf834673D496AEAcb5E99Dfbfc34f1bDCdf81D7Bd/info.json new file mode 100644 index 00000000..2cb88b4d --- /dev/null +++ b/blockchains/smartchain/assets/0xf834673D496AEAcb5E99Dfbfc34f1bDCdf81D7Bd/info.json @@ -0,0 +1,45 @@ +{ + "name": "Aegis Launchpad", + "website": "https://aegislaunchpad.com/", + "description": "A launchpad that allows any token amount held by investors to participate in IDO's. It also includes an insurance system and P2E game.", + "explorer": "https://bscscan.com/token/0xf834673d496aeacb5e99dfbfc34f1bdcdf81d7bd", + "type": "BEP20", + "symbol": "AGSPAD", + "decimals": 9, + "status": "active", + "id": "0xf834673D496AEAcb5E99Dfbfc34f1bDCdf81D7Bd", + "links": [ + { + "name": "x", + "url": "https://x.com/AegisLaunchpad" + }, + { + "name": "telegram", + "url": "https://t.me/AegisLaunchpad" + }, + { + "name": "facebook", + "url": "https://facebook.com/aegislaunchpad/" + }, + { + "name": "whitepaper", + "url": "https://aegislaunchpad.com/assets/files/AEGIS%20LAUNCHPAD%20WHITEPAPER%201.0%20c2p%20102221%20b.pdf" + }, + { + "name": "medium", + "url": "https://aegislaunchpad.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aegis-launchpad/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aegis-launchpad" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xf834673d496aeacb5e99dfbfc34f1bdcdf81d7bd#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf834673D496AEAcb5E99Dfbfc34f1bDCdf81D7Bd/logo.png b/blockchains/smartchain/assets/0xf834673D496AEAcb5E99Dfbfc34f1bDCdf81D7Bd/logo.png new file mode 100644 index 00000000..c7c014f8 Binary files /dev/null and b/blockchains/smartchain/assets/0xf834673D496AEAcb5E99Dfbfc34f1bDCdf81D7Bd/logo.png differ diff --git a/blockchains/smartchain/assets/0xf8418D0a7f30BB899639B232f9748c0f1fA87870/info.json b/blockchains/smartchain/assets/0xf8418D0a7f30BB899639B232f9748c0f1fA87870/info.json new file mode 100644 index 00000000..cad5499c --- /dev/null +++ b/blockchains/smartchain/assets/0xf8418D0a7f30BB899639B232f9748c0f1fA87870/info.json @@ -0,0 +1,11 @@ +{ + "name": "TheCollectiveCoin", + "website": "https://www.thecollectivecoin.co", + "description": "The Collective is one of the first decentralized freelancer marketplace on the BSC network.", + "explorer": "https://bscscan.com/token/0xf8418D0a7f30BB899639B232f9748c0f1fA87870", + "type": "BEP20", + "symbol": "TCC", + "decimals": 9, + "status": "active", + "id": "0xf8418D0a7f30BB899639B232f9748c0f1fA87870" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf8418D0a7f30BB899639B232f9748c0f1fA87870/logo.png b/blockchains/smartchain/assets/0xf8418D0a7f30BB899639B232f9748c0f1fA87870/logo.png new file mode 100644 index 00000000..a8d09198 Binary files /dev/null and b/blockchains/smartchain/assets/0xf8418D0a7f30BB899639B232f9748c0f1fA87870/logo.png differ diff --git a/blockchains/smartchain/assets/0xf8589b526FdD65F7F301c605a6e04F0F1b4B3620/info.json b/blockchains/smartchain/assets/0xf8589b526FdD65F7F301c605a6e04F0F1b4B3620/info.json new file mode 100644 index 00000000..618f2108 --- /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 00000000..f73aeccf 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 new file mode 100644 index 00000000..26e5deef --- /dev/null +++ b/blockchains/smartchain/assets/0xf859Bf77cBe8699013d6Dbc7C2b926Aaf307F830/info.json @@ -0,0 +1,25 @@ +{ + "name": "Berry Data", + "type": "BEP20", + "symbol": "BRY", + "decimals": 18, + "website": "https://berrydata.co/", + "description": "Berry Data is a transparent community-verified price oracle on BSC(Binance Smart Chain). ", + "explorer": "https://bscscan.com/token/0xf859Bf77cBe8699013d6Dbc7C2b926Aaf307F830", + "status": "active", + "id": "0xf859Bf77cBe8699013d6Dbc7C2b926Aaf307F830", + "links": [ + { + "name": "github", + "url": "https://github.com/berrydata" + }, + { + "name": "x", + "url": "https://x.com/berry_data" + }, + { + "name": "telegram", + "url": "https://t.me/berrydata" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf859Bf77cBe8699013d6Dbc7C2b926Aaf307F830/logo.png b/blockchains/smartchain/assets/0xf859Bf77cBe8699013d6Dbc7C2b926Aaf307F830/logo.png new file mode 100644 index 00000000..124f0236 Binary files /dev/null and b/blockchains/smartchain/assets/0xf859Bf77cBe8699013d6Dbc7C2b926Aaf307F830/logo.png differ diff --git a/blockchains/smartchain/assets/0xf869076283148054Ce4634677b3bb832320463AA/info.json b/blockchains/smartchain/assets/0xf869076283148054Ce4634677b3bb832320463AA/info.json new file mode 100644 index 00000000..ca58cb51 --- /dev/null +++ b/blockchains/smartchain/assets/0xf869076283148054Ce4634677b3bb832320463AA/info.json @@ -0,0 +1,11 @@ +{ + "name": "DADDY FEG", + "symbol": "DADDYFEG", + "type": "BEP20", + "decimals": 9, + "description": "DADDY FEG token will serve as a launchpad for legitimate organizations and projects in the De-Fi Binance Smart Chain space. Tokens who want to be featured on the DADDY FEG token site will need to pay to become partners and be promoted. The launchpad serves the purpose of weeding out illegitimate projects and confirming project activity with team leaders. Any projects found to be associated with projects that failed early will automatically be rejected, due to a poor track record.", + "website": "https://daddyfeg.com/", + "explorer": "https://bscscan.com/token/0xf869076283148054Ce4634677b3bb832320463AA", + "status": "active", + "id": "0xf869076283148054Ce4634677b3bb832320463AA" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf869076283148054Ce4634677b3bb832320463AA/logo.png b/blockchains/smartchain/assets/0xf869076283148054Ce4634677b3bb832320463AA/logo.png new file mode 100644 index 00000000..92c9baae Binary files /dev/null and b/blockchains/smartchain/assets/0xf869076283148054Ce4634677b3bb832320463AA/logo.png differ diff --git a/blockchains/smartchain/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json b/blockchains/smartchain/assets/0xf8A80D1cb9cFD70D03D655D9dF42339846F3B3C8/info.json new file mode 100644 index 00000000..e725ac92 --- /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 00000000..c1902f7a 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 00000000..bcc7239b --- /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 00000000..1b519efc Binary files /dev/null and b/blockchains/smartchain/assets/0xf8C609daDA9256417b678B4045A5B5368ffb7704/logo.png differ diff --git a/blockchains/smartchain/assets/0xf8D954168FbbF579F8FAd5F7583d4f76f10AE97D/info.json b/blockchains/smartchain/assets/0xf8D954168FbbF579F8FAd5F7583d4f76f10AE97D/info.json new file mode 100644 index 00000000..dd2a61c6 --- /dev/null +++ b/blockchains/smartchain/assets/0xf8D954168FbbF579F8FAd5F7583d4f76f10AE97D/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alley Token", + "website": "https://nftalley.io", + "description": "Native token of NFT Alley Protocol(Multi-chain NFT Marketplace)", + "explorer": "https://bscscan.com/token/0xf8D954168FbbF579F8FAd5F7583d4f76f10AE97D", + "type": "BEP20", + "symbol": "ALLEY", + "decimals": 18, + "status": "active", + "id": "0xf8D954168FbbF579F8FAd5F7583d4f76f10AE97D" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf8D954168FbbF579F8FAd5F7583d4f76f10AE97D/logo.png b/blockchains/smartchain/assets/0xf8D954168FbbF579F8FAd5F7583d4f76f10AE97D/logo.png new file mode 100644 index 00000000..c7ae3c2a Binary files /dev/null and b/blockchains/smartchain/assets/0xf8D954168FbbF579F8FAd5F7583d4f76f10AE97D/logo.png differ diff --git a/blockchains/smartchain/assets/0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695/info.json b/blockchains/smartchain/assets/0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695/info.json new file mode 100644 index 00000000..44fcf397 --- /dev/null +++ b/blockchains/smartchain/assets/0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695/info.json @@ -0,0 +1,28 @@ +{ + "name": "Synapse", + "symbol": "SYN", + "type": "BEP20", + "decimals": 18, + "description": "Synapse is a cross-chain layer ∞ protocol powering interoperability between blockchains.", + "website": "https://synapseprotocol.com/", + "explorer": "https://bscscan.com/token/0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695", + "status": "active", + "id": "0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695", + "links": [ + { + "name": "x", + "url": "https://x.com/synapseprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/synapseprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/synapse-2/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695/logo.png b/blockchains/smartchain/assets/0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695/logo.png new file mode 100644 index 00000000..577673c4 Binary files /dev/null and b/blockchains/smartchain/assets/0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695/logo.png differ diff --git a/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/info.json b/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/info.json new file mode 100644 index 00000000..efcebfc6 --- /dev/null +++ b/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus FIL", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343", + "type": "BEP20", + "symbol": "vFIL", + "decimals": 8, + "status": "active", + "id": "0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/logo.png b/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/logo.png new file mode 100644 index 00000000..e94351f0 Binary files /dev/null and b/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/logo.png differ diff --git a/blockchains/smartchain/assets/0xf95e50BE5Efc96117c28775F80C7Cdb41Ebc4888/info.json b/blockchains/smartchain/assets/0xf95e50BE5Efc96117c28775F80C7Cdb41Ebc4888/info.json new file mode 100644 index 00000000..b2b35b21 --- /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 00000000..6c932394 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 new file mode 100644 index 00000000..6bdcfb7a --- /dev/null +++ b/blockchains/smartchain/assets/0xf9752A6E8A5E5f5e6EB3aB4e7d8492460fb319f0/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ares Protocol", + "type": "BEP20", + "symbol": "ARES", + "decimals": 18, + "website": "https://www.aresprotocol.io/", + "description": "A chain-verified decentralized cross-chain oracle service protocol to provide secure and reliable data services for the interconnection of the chain and the digital economy.", + "explorer": "https://bscscan.com/token/0xf9752A6E8A5E5f5e6EB3aB4e7d8492460fb319f0", + "status": "active", + "id": "0xf9752A6E8A5E5f5e6EB3aB4e7d8492460fb319f0", + "links": [ + { + "name": "x", + "url": "https://x.com/AresProtocolLab" + }, + { + "name": "telegram", + "url": "https://t.me/aresprotocolLab" + }, + { + "name": "medium", + "url": "https://aresprotocollab.medium.com" + }, + { + "name": "discord", + "url": "https://discord.com/invite/MKE4yX4h" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf9752A6E8A5E5f5e6EB3aB4e7d8492460fb319f0/logo.png b/blockchains/smartchain/assets/0xf9752A6E8A5E5f5e6EB3aB4e7d8492460fb319f0/logo.png new file mode 100644 index 00000000..ad9c92c4 Binary files /dev/null and b/blockchains/smartchain/assets/0xf9752A6E8A5E5f5e6EB3aB4e7d8492460fb319f0/logo.png differ diff --git a/blockchains/smartchain/assets/0xf99F8f3a95257d82006183bd524efa7aaCc9Ef7A/info.json b/blockchains/smartchain/assets/0xf99F8f3a95257d82006183bd524efa7aaCc9Ef7A/info.json new file mode 100644 index 00000000..77861832 --- /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 00000000..7ae0be2e 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 new file mode 100644 index 00000000..c4e7b82a --- /dev/null +++ b/blockchains/smartchain/assets/0xf9A3FdA781c94942760860fc731c24301c83830A/info.json @@ -0,0 +1,11 @@ +{ + "name": "HONEYPOT PhilosoRaptor", + "website": "https://raptr.finance", + "description": "HONEYPOT PhilosoRaptor", + "explorer": "https://bscscan.com/token/0xf9A3FdA781c94942760860fc731c24301c83830A", + "type": "BEP20", + "symbol": "HONEYPOT RAPTOR", + "decimals": 9, + "status": "spam", + "id": "0xf9A3FdA781c94942760860fc731c24301c83830A" +} diff --git a/blockchains/smartchain/assets/0xf9A3FdA781c94942760860fc731c24301c83830A/logo.png b/blockchains/smartchain/assets/0xf9A3FdA781c94942760860fc731c24301c83830A/logo.png new file mode 100644 index 00000000..dee7f315 Binary files /dev/null and b/blockchains/smartchain/assets/0xf9A3FdA781c94942760860fc731c24301c83830A/logo.png differ diff --git a/blockchains/smartchain/assets/0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE/info.json b/blockchains/smartchain/assets/0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE/info.json new file mode 100644 index 00000000..0918d25d --- /dev/null +++ b/blockchains/smartchain/assets/0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Chromia", + "symbol": "CHR", + "type": "BEP20", + "decimals": 6, + "description": "Chromia is a relational blockchain designed to make it much easier to make complex and scalable dapps.", + "website": "https://chromia.com/", + "explorer": "https://bscscan.com/token/0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE", + "status": "active", + "id": "0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chromia/" + }, + { + "name": "x", + "url": "https://x.com/teamchromia" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE/logo.png b/blockchains/smartchain/assets/0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE/logo.png new file mode 100644 index 00000000..39569603 Binary files /dev/null and b/blockchains/smartchain/assets/0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE/logo.png differ diff --git a/blockchains/smartchain/assets/0xf9c27de474ccE832fAD75107853b78838888ac11/info.json b/blockchains/smartchain/assets/0xf9c27de474ccE832fAD75107853b78838888ac11/info.json new file mode 100644 index 00000000..d6480e5f --- /dev/null +++ b/blockchains/smartchain/assets/0xf9c27de474ccE832fAD75107853b78838888ac11/info.json @@ -0,0 +1,25 @@ +{ + "name": "APM Coin", + "symbol": "APM", + "type": "BEP20", + "decimals": 18, + "description": "apM Coin is a blockchain-based customer reward management and payment platform which aims to improve efficiency and credibility of business transactions between wholesalers and buyers.", + "website": "https://apm-coin.com", + "explorer": "https://bscscan.com/token/0xf9c27de474cce832fad75107853b78838888ac11", + "status": "active", + "id": "0xf9c27de474ccE832fAD75107853b78838888ac11", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apm-coin/" + }, + { + "name": "x", + "url": "https://x.com/apmcoin" + }, + { + "name": "telegram", + "url": "https://t.me/apmcoin_official" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf9c27de474ccE832fAD75107853b78838888ac11/logo.png b/blockchains/smartchain/assets/0xf9c27de474ccE832fAD75107853b78838888ac11/logo.png new file mode 100644 index 00000000..b2330478 Binary files /dev/null and b/blockchains/smartchain/assets/0xf9c27de474ccE832fAD75107853b78838888ac11/logo.png differ diff --git a/blockchains/smartchain/assets/0xfA54fF1a158B5189Ebba6ae130CEd6bbd3aEA76e/info.json b/blockchains/smartchain/assets/0xfA54fF1a158B5189Ebba6ae130CEd6bbd3aEA76e/info.json new file mode 100644 index 00000000..d86fc2b8 --- /dev/null +++ b/blockchains/smartchain/assets/0xfA54fF1a158B5189Ebba6ae130CEd6bbd3aEA76e/info.json @@ -0,0 +1,14 @@ +{ + "name": "SOL (Portal)", + "type": "BEP20", + "symbol": "SOL", + "decimals": 9, + "description": "Cross Chain Portal Bridged Token", + "website": "https://solana.com/", + "explorer": "https://bscscan.com/token/0xfA54fF1a158B5189Ebba6ae130CEd6bbd3aEA76e", + "status": "active", + "id": "0xfA54fF1a158B5189Ebba6ae130CEd6bbd3aEA76e", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfA54fF1a158B5189Ebba6ae130CEd6bbd3aEA76e/logo.png b/blockchains/smartchain/assets/0xfA54fF1a158B5189Ebba6ae130CEd6bbd3aEA76e/logo.png new file mode 100644 index 00000000..7a2e75fd Binary files /dev/null and b/blockchains/smartchain/assets/0xfA54fF1a158B5189Ebba6ae130CEd6bbd3aEA76e/logo.png differ diff --git a/blockchains/smartchain/assets/0xfA949EF822125233f1e1A0691c13977B4354B257/info.json b/blockchains/smartchain/assets/0xfA949EF822125233f1e1A0691c13977B4354B257/info.json new file mode 100644 index 00000000..e4bcbf90 --- /dev/null +++ b/blockchains/smartchain/assets/0xfA949EF822125233f1e1A0691c13977B4354B257/info.json @@ -0,0 +1,11 @@ +{ + "name": "CLOWN", + "website": "https://www.clown-coin.com", + "description": "Clown coin is a binary smart chain network based on the BEP-20 token.", + "explorer": "https://bscscan.com/token/0xfA949EF822125233f1e1A0691c13977B4354B257", + "type": "BEP20", + "symbol": "CLOWN", + "decimals": 9, + "status": "active", + "id": "0xfA949EF822125233f1e1A0691c13977B4354B257" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfA949EF822125233f1e1A0691c13977B4354B257/logo.png b/blockchains/smartchain/assets/0xfA949EF822125233f1e1A0691c13977B4354B257/logo.png new file mode 100644 index 00000000..f01d1c63 Binary files /dev/null and b/blockchains/smartchain/assets/0xfA949EF822125233f1e1A0691c13977B4354B257/logo.png differ diff --git a/blockchains/smartchain/assets/0xfA9a1E901085e269f6D428F79Cd5252d8b919344/info.json b/blockchains/smartchain/assets/0xfA9a1E901085e269f6D428F79Cd5252d8b919344/info.json new file mode 100644 index 00000000..618a4308 --- /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 00000000..1153d70d Binary files /dev/null and b/blockchains/smartchain/assets/0xfA9a1E901085e269f6D428F79Cd5252d8b919344/logo.png differ diff --git a/blockchains/smartchain/assets/0xfAEFe2e0D056243060A6f640d5735CAE307001C4/info.json b/blockchains/smartchain/assets/0xfAEFe2e0D056243060A6f640d5735CAE307001C4/info.json new file mode 100644 index 00000000..efba53de --- /dev/null +++ b/blockchains/smartchain/assets/0xfAEFe2e0D056243060A6f640d5735CAE307001C4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Supermoon", + "website": "https://supermoon.finance/", + "description": "The token for those who dare to dream BIG!", + "explorer": "https://bscscan.com/token/0xfAEFe2e0D056243060A6f640d5735CAE307001C4", + "type": "BEP20", + "symbol": "OSM", + "decimals": 9, + "status": "active", + "id": "0xfAEFe2e0D056243060A6f640d5735CAE307001C4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfAEFe2e0D056243060A6f640d5735CAE307001C4/logo.png b/blockchains/smartchain/assets/0xfAEFe2e0D056243060A6f640d5735CAE307001C4/logo.png new file mode 100644 index 00000000..6ea18d86 Binary files /dev/null and b/blockchains/smartchain/assets/0xfAEFe2e0D056243060A6f640d5735CAE307001C4/logo.png differ diff --git a/blockchains/smartchain/assets/0xfAEce5aCc269774Eb1D544Ee8D45671A55516296/info.json b/blockchains/smartchain/assets/0xfAEce5aCc269774Eb1D544Ee8D45671A55516296/info.json new file mode 100644 index 00000000..d272f0d5 --- /dev/null +++ b/blockchains/smartchain/assets/0xfAEce5aCc269774Eb1D544Ee8D45671A55516296/info.json @@ -0,0 +1,11 @@ +{ + "name": "Digo", + "type": "BEP20", + "symbol": "DGO", + "decimals": 8, + "website": "https://coindigo.tech/", + "description": "Digo token is a crypto asset on the Binance Smart Chain used as a medium of exchange for goods and services, P2P transactions, cryptocurrency exchange and also can serve as a store of value.", + "explorer": "https://bscscan.com/token/0xfAEce5aCc269774Eb1D544Ee8D45671A55516296", + "status": "active", + "id": "0xfAEce5aCc269774Eb1D544Ee8D45671A55516296" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfAEce5aCc269774Eb1D544Ee8D45671A55516296/logo.png b/blockchains/smartchain/assets/0xfAEce5aCc269774Eb1D544Ee8D45671A55516296/logo.png new file mode 100644 index 00000000..10edf2af Binary files /dev/null and b/blockchains/smartchain/assets/0xfAEce5aCc269774Eb1D544Ee8D45671A55516296/logo.png differ diff --git a/blockchains/smartchain/assets/0xfAF9Cc03C9855777FB56D02bC2Bcb9d57e0755DE/info.json b/blockchains/smartchain/assets/0xfAF9Cc03C9855777FB56D02bC2Bcb9d57e0755DE/info.json new file mode 100644 index 00000000..dcdad615 --- /dev/null +++ b/blockchains/smartchain/assets/0xfAF9Cc03C9855777FB56D02bC2Bcb9d57e0755DE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Urgaming", + "website": "https://www.urgaming.io", + "description": "Token to provide solutions to Professional gamers and content creators in the gaming industry.", + "explorer": "https://bscscan.com/token/0xfAF9Cc03C9855777FB56D02bC2Bcb9d57e0755DE", + "type": "BEP20", + "symbol": "URG", + "decimals": 9, + "status": "active", + "id": "0xfAF9Cc03C9855777FB56D02bC2Bcb9d57e0755DE" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfAF9Cc03C9855777FB56D02bC2Bcb9d57e0755DE/logo.png b/blockchains/smartchain/assets/0xfAF9Cc03C9855777FB56D02bC2Bcb9d57e0755DE/logo.png new file mode 100644 index 00000000..1768587a Binary files /dev/null and b/blockchains/smartchain/assets/0xfAF9Cc03C9855777FB56D02bC2Bcb9d57e0755DE/logo.png differ diff --git a/blockchains/smartchain/assets/0xfB17D214d83643da1b079d410647c33aBcE972e2/info.json b/blockchains/smartchain/assets/0xfB17D214d83643da1b079d410647c33aBcE972e2/info.json new file mode 100644 index 00000000..beaa228c --- /dev/null +++ b/blockchains/smartchain/assets/0xfB17D214d83643da1b079d410647c33aBcE972e2/info.json @@ -0,0 +1,11 @@ +{ + "name": "FEG Wrapped DOGE", + "symbol": "fDOGE", + "type": "BEP20", + "decimals": 8, + "description": "FEG Wrapped DOGE", + "website": "https://fegtoken.com", + "explorer": "https://bscscan.com/token/0xfb17d214d83643da1b079d410647c33abce972e2", + "status": "active", + "id": "0xfB17D214d83643da1b079d410647c33aBcE972e2" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfB17D214d83643da1b079d410647c33aBcE972e2/logo.png b/blockchains/smartchain/assets/0xfB17D214d83643da1b079d410647c33aBcE972e2/logo.png new file mode 100644 index 00000000..4b4e40c7 Binary files /dev/null and b/blockchains/smartchain/assets/0xfB17D214d83643da1b079d410647c33aBcE972e2/logo.png differ diff --git a/blockchains/smartchain/assets/0xfB4D42BEd5618fb1a377DDB64EB56B92a6d117f2/info.json b/blockchains/smartchain/assets/0xfB4D42BEd5618fb1a377DDB64EB56B92a6d117f2/info.json new file mode 100644 index 00000000..fd033044 --- /dev/null +++ b/blockchains/smartchain/assets/0xfB4D42BEd5618fb1a377DDB64EB56B92a6d117f2/info.json @@ -0,0 +1,45 @@ +{ + "name": "NOKU v2", + "type": "BEP20", + "symbol": "NOKU", + "decimals": 18, + "website": "https://www.noku.io/", + "description": "Noku develops blockchain platforms. Noku has released Nokuchain: a blockchain designed to raise up the NFTs performance for gaming applications.", + "explorer": "https://bscscan.com/token/0xfB4D42BEd5618fb1a377DDB64EB56B92a6d117f2", + "status": "active", + "id": "0xfB4D42BEd5618fb1a377DDB64EB56B92a6d117f2", + "links": [ + { + "name": "x", + "url": "https://x.com/nokuofficial" + }, + { + "name": "github", + "url": "https://github.com/noku-team" + }, + { + "name": "telegram", + "url": "https://t.me/nokuofficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/nokunews" + }, + { + "name": "facebook", + "url": "https://facebook.com/Noku-317917408638309" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC2Ru2OagHzkuETQLDvy4FuA" + }, + { + "name": "medium", + "url": "https://nokuteam.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/noku/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfB4D42BEd5618fb1a377DDB64EB56B92a6d117f2/logo.png b/blockchains/smartchain/assets/0xfB4D42BEd5618fb1a377DDB64EB56B92a6d117f2/logo.png new file mode 100644 index 00000000..d6331bbc Binary files /dev/null and b/blockchains/smartchain/assets/0xfB4D42BEd5618fb1a377DDB64EB56B92a6d117f2/logo.png differ diff --git a/blockchains/smartchain/assets/0xfBD4D681C92ead6Af0E49950c8B2e47EeAcbB2dB/info.json b/blockchains/smartchain/assets/0xfBD4D681C92ead6Af0E49950c8B2e47EeAcbB2dB/info.json new file mode 100644 index 00000000..7e7ba6e5 --- /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 00000000..a5f2bede 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 00000000..d865cfc4 --- /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 00000000..ab73b87a Binary files /dev/null and b/blockchains/smartchain/assets/0xfBF2398dF672cEE4aFcC2A4A733222331c742a6A/logo.png differ diff --git a/blockchains/smartchain/assets/0xfC8E68E30350c6603D3d29fCc8E676380C28FCf4/info.json b/blockchains/smartchain/assets/0xfC8E68E30350c6603D3d29fCc8E676380C28FCf4/info.json new file mode 100644 index 00000000..0e6f39e7 --- /dev/null +++ b/blockchains/smartchain/assets/0xfC8E68E30350c6603D3d29fCc8E676380C28FCf4/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitBlocks Finance v2", + "website": "http://bitblocks.finance", + "description": "BitBlocks Finance is a decentralized yield farming protocol running on Binance Smart Chain and Pancake swap exchange, with lots of other features that let you earn and win tokens.", + "explorer": "https://bscscan.com/token/0xfc8e68e30350c6603d3d29fcc8e676380c28fcf4", + "type": "BEP20", + "symbol": "BBKFI", + "decimals": 18, + "status": "active", + "id": "0xfC8E68E30350c6603D3d29fCc8E676380C28FCf4" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfC8E68E30350c6603D3d29fCc8E676380C28FCf4/logo.png b/blockchains/smartchain/assets/0xfC8E68E30350c6603D3d29fCc8E676380C28FCf4/logo.png new file mode 100644 index 00000000..10997ed3 Binary files /dev/null and b/blockchains/smartchain/assets/0xfC8E68E30350c6603D3d29fCc8E676380C28FCf4/logo.png differ diff --git a/blockchains/smartchain/assets/0xfCaDD830fF2D6Cf3AD1681E1e8FC5DDCe9d59E74/info.json b/blockchains/smartchain/assets/0xfCaDD830fF2D6Cf3AD1681E1e8FC5DDCe9d59E74/info.json new file mode 100644 index 00000000..4a065aba --- /dev/null +++ b/blockchains/smartchain/assets/0xfCaDD830fF2D6Cf3AD1681E1e8FC5DDCe9d59E74/info.json @@ -0,0 +1,64 @@ +{ + "name": "Zada", + "type": "BEP20", + "symbol": "ZADA", + "decimals": 18, + "website": "https://zadauniverse.com", + "description": "ZADA is the first of its kind, a Hyper Reflection token that rewards its holders in a multitude of ways by simplifying the investing process and building a strong and varied portfolio.", + "explorer": "https://bscscan.com/token/0xfCaDD830fF2D6Cf3AD1681E1e8FC5DDCe9d59E74", + "status": "active", + "id": "0xfCaDD830fF2D6Cf3AD1681E1e8FC5DDCe9d59E74", + "links": [ + { + "name": "x", + "url": "https://x.com/zadabsc" + }, + { + "name": "github", + "url": "https://github.com/ZadaUniverse/Zada-BSC" + }, + { + "name": "telegram", + "url": "https://t.me/zadabsc" + }, + { + "name": "discord", + "url": "https://discord.com/channels/917875788743856158/917882105361489971" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/zadabsc/" + }, + { + "name": "medium", + "url": "https://zadabsc.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC6QwHMbnVsIJ2VH3BrYwAuQ" + }, + { + "name": "facebook", + "url": "https://facebook.com/zadabsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zada/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zada" + }, + { + "name": "whitepaper", + "url": "https://zadauniverse.com/" + }, + { + "name": "source_code", + "url": "https://github.com/ZadaUniverse/Zada-BSC" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfCaDD830fF2D6Cf3AD1681E1e8FC5DDCe9d59E74/logo.png b/blockchains/smartchain/assets/0xfCaDD830fF2D6Cf3AD1681E1e8FC5DDCe9d59E74/logo.png new file mode 100644 index 00000000..cea7e4a6 Binary files /dev/null and b/blockchains/smartchain/assets/0xfCaDD830fF2D6Cf3AD1681E1e8FC5DDCe9d59E74/logo.png differ diff --git a/blockchains/smartchain/assets/0xfCe3EFebC79d21a6B7cc7F3A7216E66e81f4B23B/info.json b/blockchains/smartchain/assets/0xfCe3EFebC79d21a6B7cc7F3A7216E66e81f4B23B/info.json new file mode 100644 index 00000000..fa8ccd22 --- /dev/null +++ b/blockchains/smartchain/assets/0xfCe3EFebC79d21a6B7cc7F3A7216E66e81f4B23B/info.json @@ -0,0 +1,24 @@ +{ + "name": "Meta World Token", + "type": "BEP20", + "symbol": "MTW", + "decimals": 18, + "website": "https://www.meta-world.game", + "description": "Meta-World is an island nation-building game for the NFT platform.", + "explorer": "https://bscscan.com/token/0xfCe3EFebC79d21a6B7cc7F3A7216E66e81f4B23B", + "status": "active", + "id": "0xfCe3EFebC79d21a6B7cc7F3A7216E66e81f4B23B", + "tags": [ + "gamefi" + ], + "links": [ + { + "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/0xfCe3EFebC79d21a6B7cc7F3A7216E66e81f4B23B/logo.png b/blockchains/smartchain/assets/0xfCe3EFebC79d21a6B7cc7F3A7216E66e81f4B23B/logo.png new file mode 100644 index 00000000..55f3e3ce Binary files /dev/null and b/blockchains/smartchain/assets/0xfCe3EFebC79d21a6B7cc7F3A7216E66e81f4B23B/logo.png differ diff --git a/blockchains/smartchain/assets/0xfD26889cd6454D8751562f1c0FcF88b18B46F7B7/info.json b/blockchains/smartchain/assets/0xfD26889cd6454D8751562f1c0FcF88b18B46F7B7/info.json new file mode 100644 index 00000000..d48fb073 --- /dev/null +++ b/blockchains/smartchain/assets/0xfD26889cd6454D8751562f1c0FcF88b18B46F7B7/info.json @@ -0,0 +1,33 @@ +{ + "name": "DRUGS", + "website": "https://traphouse.vip/", + "description": "DRUGS is the primary token of the Traphouse yield farm playa. The most gangster yield farm ever created. Created by the THUGS interactive team.", + "explorer": "https://bscscan.com/token/0xfd26889cd6454d8751562f1c0fcf88b18b46f7b7", + "type": "BEP20", + "symbol": "DRUGS", + "decimals": 18, + "status": "active", + "id": "0xfD26889cd6454D8751562f1c0FcF88b18B46F7B7", + "links": [ + { + "name": "github", + "url": "https://github.com/thugs-defi" + }, + { + "name": "x", + "url": "https://x.com/ThugsFinance" + }, + { + "name": "telegram", + "url": "https://t.me/thugsfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/AJDqFTP" + }, + { + "name": "medium", + "url": "https://thugsfinance.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfD26889cd6454D8751562f1c0FcF88b18B46F7B7/logo.png b/blockchains/smartchain/assets/0xfD26889cd6454D8751562f1c0FcF88b18B46F7B7/logo.png new file mode 100644 index 00000000..6ca3a868 Binary files /dev/null and b/blockchains/smartchain/assets/0xfD26889cd6454D8751562f1c0FcF88b18B46F7B7/logo.png differ diff --git a/blockchains/smartchain/assets/0xfD2CEaF2A104b2817D8D3252801c52AF6B8Dae77/info.json b/blockchains/smartchain/assets/0xfD2CEaF2A104b2817D8D3252801c52AF6B8Dae77/info.json new file mode 100644 index 00000000..bdbcea93 --- /dev/null +++ b/blockchains/smartchain/assets/0xfD2CEaF2A104b2817D8D3252801c52AF6B8Dae77/info.json @@ -0,0 +1,11 @@ +{ + "name": "Futurov Governance Token", + "website": "https://futurov.com/", + "description": "FTV is the user owned and democtratically controlled entertainment DAO and multi-media NFT hub in V/AR.", + "explorer": "https://bscscan.com/token/0xfD2CEaF2A104b2817D8D3252801c52AF6B8Dae77", + "type": "BEP20", + "symbol": "FTV", + "decimals": 18, + "status": "active", + "id": "0xfD2CEaF2A104b2817D8D3252801c52AF6B8Dae77" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfD2CEaF2A104b2817D8D3252801c52AF6B8Dae77/logo.png b/blockchains/smartchain/assets/0xfD2CEaF2A104b2817D8D3252801c52AF6B8Dae77/logo.png new file mode 100644 index 00000000..2bbabca8 Binary files /dev/null and b/blockchains/smartchain/assets/0xfD2CEaF2A104b2817D8D3252801c52AF6B8Dae77/logo.png differ diff --git a/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/info.json b/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/info.json new file mode 100644 index 00000000..257469fb --- /dev/null +++ b/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/info.json @@ -0,0 +1,26 @@ +{ + "name": "Venus USDT", + "website": "https://venus.io/", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", + "research": "https://research.binance.com/en/projects/venus", + "explorer": "https://bscscan.com/token/0xfD5840Cd36d94D7229439859C0112a4185BC0255", + "type": "BEP20", + "symbol": "vUSDT", + "decimals": 8, + "status": "active", + "id": "0xfD5840Cd36d94D7229439859C0112a4185BC0255", + "links": [ + { + "name": "x", + "url": "https://x.com/VenusProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/VenusProtocol" + }, + { + "name": "medium", + "url": "https://medium.com/VenusProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/logo.png b/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/logo.png new file mode 100644 index 00000000..a7e07311 Binary files /dev/null and b/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/logo.png differ diff --git a/blockchains/smartchain/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json b/blockchains/smartchain/assets/0xfDDDb57878eF9D6f681Ec4381DCB626b9E69AC86/info.json new file mode 100644 index 00000000..1a23a075 --- /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 00000000..38cc9015 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 new file mode 100644 index 00000000..305e3d15 --- /dev/null +++ b/blockchains/smartchain/assets/0xfDFD27aE39cebefDBaAc8615F18aa68DDD0F15f5/info.json @@ -0,0 +1,33 @@ +{ + "name": "Giftedhands on BSC", + "website": "https://www.giftedhands.io", + "description": "Giftedhands aims to offer solutions to constant issues in payment to freelancer developers in terms of speeding up the payment process.", + "explorer": "https://bscscan.com/token/0xfDFD27aE39cebefDBaAc8615F18aa68DDD0F15f5", + "type": "BEP20", + "symbol": "GHD", + "decimals": 18, + "status": "active", + "id": "0xfDFD27aE39cebefDBaAc8615F18aa68DDD0F15f5", + "links": [ + { + "name": "x", + "url": "https://x.com/giftedhandsGHD" + }, + { + "name": "telegram", + "url": "https://t.me/GiftedHandsTokenChannel" + }, + { + "name": "youtube", + "url": "https://youtube.com/watch?v=lu9I7rN2Mus" + }, + { + "name": "facebook", + "url": "https://facebook.com/Gitedhands-Token-100871005019968/" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1Z7gUARX-h5xiF7Y5xFRQCiGf0yZQ7QP_/view" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfDFD27aE39cebefDBaAc8615F18aa68DDD0F15f5/logo.png b/blockchains/smartchain/assets/0xfDFD27aE39cebefDBaAc8615F18aa68DDD0F15f5/logo.png new file mode 100644 index 00000000..1b67dcb0 Binary files /dev/null and b/blockchains/smartchain/assets/0xfDFD27aE39cebefDBaAc8615F18aa68DDD0F15f5/logo.png differ diff --git a/blockchains/smartchain/assets/0xfDfF7a8eDA6a3739132867f989bE4bf84E803c15/info.json b/blockchains/smartchain/assets/0xfDfF7a8eDA6a3739132867f989bE4bf84E803c15/info.json new file mode 100644 index 00000000..ee43caef --- /dev/null +++ b/blockchains/smartchain/assets/0xfDfF7a8eDA6a3739132867f989bE4bf84E803c15/info.json @@ -0,0 +1,33 @@ +{ + "name": "New Year Token", + "website": "https://ny-token.com/", + "description": "The New Year token is a currency focused on NFT and New Year symbols, with real use.", + "explorer": "https://bscscan.com/token/0xfDfF7a8eDA6a3739132867f989bE4bf84E803c15", + "type": "BEP20", + "symbol": "NYT", + "decimals": 18, + "status": "active", + "id": "0xfDfF7a8eDA6a3739132867f989bE4bf84E803c15", + "links": [ + { + "name": "x", + "url": "https://x.com/new_year_token" + }, + { + "name": "github", + "url": "https://github.com/new-year-token" + }, + { + "name": "telegram", + "url": "https://t.me/new_year_token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/new-year-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/new-year-token" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfDfF7a8eDA6a3739132867f989bE4bf84E803c15/logo.png b/blockchains/smartchain/assets/0xfDfF7a8eDA6a3739132867f989bE4bf84E803c15/logo.png new file mode 100644 index 00000000..6c9bd46f Binary files /dev/null and b/blockchains/smartchain/assets/0xfDfF7a8eDA6a3739132867f989bE4bf84E803c15/logo.png differ diff --git a/blockchains/smartchain/assets/0xfE073C3B891325AE8686d9Cf2C8b3586674f7BE2/info.json b/blockchains/smartchain/assets/0xfE073C3B891325AE8686d9Cf2C8b3586674f7BE2/info.json new file mode 100644 index 00000000..62204f0f --- /dev/null +++ b/blockchains/smartchain/assets/0xfE073C3B891325AE8686d9Cf2C8b3586674f7BE2/info.json @@ -0,0 +1,21 @@ +{ + "name": "PokerFI.finance", + "type": "BEP20", + "symbol": "PokerFI", + "decimals": 9, + "website": "https://pokerfi.finance", + "description": "Innovation in financial transactions within online and live poker.", + "explorer": "https://bscscan.com/token/0xfE073C3B891325AE8686d9Cf2C8b3586674f7BE2", + "status": "active", + "id": "0xfE073C3B891325AE8686d9Cf2C8b3586674f7BE2", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pokerfi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pokerfi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfE073C3B891325AE8686d9Cf2C8b3586674f7BE2/logo.png b/blockchains/smartchain/assets/0xfE073C3B891325AE8686d9Cf2C8b3586674f7BE2/logo.png new file mode 100644 index 00000000..0fea3e49 Binary files /dev/null and b/blockchains/smartchain/assets/0xfE073C3B891325AE8686d9Cf2C8b3586674f7BE2/logo.png differ diff --git a/blockchains/smartchain/assets/0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba/info.json b/blockchains/smartchain/assets/0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba/info.json new file mode 100644 index 00000000..462883e3 --- /dev/null +++ b/blockchains/smartchain/assets/0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba/info.json @@ -0,0 +1,28 @@ +{ + "name": "Magic Internet Money", + "symbol": "MIM", + "type": "BEP20", + "decimals": 18, + "description": "abracadabra.money is a lending protocol that allows users to borrow a USD-pegged Stablecoin (MIM) using interest-bearing tokens as collateral.", + "website": "https://abracadabra.money/", + "explorer": "https://bscscan.com/token/0xfe19f0b51438fd612f6fd59c1dbb3ea319f433ba", + "status": "active", + "id": "0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba", + "links": [ + { + "name": "x", + "url": "https://x.com/MIM_Spell" + }, + { + "name": "github", + "url": "https://github.com/Abracadabra-money/magic-internet-money" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/magic-internet-money/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba/logo.png b/blockchains/smartchain/assets/0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba/logo.png new file mode 100644 index 00000000..41018132 Binary files /dev/null and b/blockchains/smartchain/assets/0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba/logo.png differ diff --git a/blockchains/smartchain/assets/0xfE1d7f7a8f0bdA6E415593a2e4F82c64b446d404/info.json b/blockchains/smartchain/assets/0xfE1d7f7a8f0bdA6E415593a2e4F82c64b446d404/info.json new file mode 100644 index 00000000..049a8387 --- /dev/null +++ b/blockchains/smartchain/assets/0xfE1d7f7a8f0bdA6E415593a2e4F82c64b446d404/info.json @@ -0,0 +1,32 @@ +{ + "name": "BLP Token", + "website": "https://bullperks.com", + "description": "The BLP token powers The BullPerks ecosystem allowing holders to participate in deals on the platform.", + "explorer": "https://bscscan.com/token/0xfE1d7f7a8f0bdA6E415593a2e4F82c64b446d404", + "type": "BEP20", + "symbol": "BLP", + "decimals": 18, + "status": "active", + "id": "0xfE1d7f7a8f0bdA6E415593a2e4F82c64b446d404", + "links": [ + { + "name": "x", + "url": "https://x.com/bullperks" + }, + { + "name": "telegram", + "url": "https://t.me/BullPerks_Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bullperks/" + }, + { + "name": "whitepaper", + "url": "https://bullperks.com/wp-content/uploads/2022/02/BullPerks-Whitepaper-compressed.pdf" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfE1d7f7a8f0bdA6E415593a2e4F82c64b446d404/logo.png b/blockchains/smartchain/assets/0xfE1d7f7a8f0bdA6E415593a2e4F82c64b446d404/logo.png new file mode 100644 index 00000000..27dd3487 Binary files /dev/null and b/blockchains/smartchain/assets/0xfE1d7f7a8f0bdA6E415593a2e4F82c64b446d404/logo.png differ diff --git a/blockchains/smartchain/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json b/blockchains/smartchain/assets/0xfEbDEd1B0986a8ee107f5AB1a1c5a813491DeCEB/info.json new file mode 100644 index 00000000..eddfb194 --- /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 00000000..984236e9 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 new file mode 100644 index 00000000..a0d06450 --- /dev/null +++ b/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/info.json @@ -0,0 +1,75 @@ +{ + "name": "Vita Inu", + "type": "BEP20", + "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://bscscan.com/token/0xfebe8c1ed424dbf688551d4e2267e7a53698f0aa", + "status": "active", + "id": "0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa", + "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://bscscan.com/address/0xfebe8c1ed424dbf688551d4e2267e7a53698f0aa#code" + } + ], + "tags": [ + "memes", + "defi", + "deflationary", + "gamefi", + "staking", + "nft", + "governance", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/logo.png b/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/logo.png new file mode 100644 index 00000000..0fdad05b Binary files /dev/null and b/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/logo.png differ diff --git a/blockchains/smartchain/assets/0xfEc90FC884f732600378A01FBDd668De889B4444/info.json b/blockchains/smartchain/assets/0xfEc90FC884f732600378A01FBDd668De889B4444/info.json new file mode 100644 index 00000000..cbd466a4 --- /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 new file mode 100644 index 00000000..af16ccdb --- /dev/null +++ b/blockchains/smartchain/assets/0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2/info.json @@ -0,0 +1,25 @@ +{ + "name": "CloudTx", + "type": "BEP20", + "symbol": "Cloud", + "decimals": 9, + "website": "https://cloudtx.finance/", + "description": "Cloud Tx is Proof of Stake blockhain with almost zero fees and gas for transaction. Cloudtx aims to balancing act between security, decentralization, and scalability. Cloudtx also build smart locker for more savety and security.", + "explorer": "https://bscscan.com/token/0xffad7f9f704a5fdc6265e24b436b4b35ed52def2", + "status": "active", + "id": "0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2", + "links": [ + { + "name": "x", + "url": "https://x.com/Cloudtxofficial" + }, + { + "name": "telegram", + "url": "https://t.me/Cloudtx" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cloudtx/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2/logo.png b/blockchains/smartchain/assets/0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2/logo.png new file mode 100644 index 00000000..273b71d3 Binary files /dev/null and b/blockchains/smartchain/assets/0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2/logo.png differ diff --git a/blockchains/smartchain/assets/0xfFdC00285DDe1f5b5c65C6a963357b4C55d8f601/info.json b/blockchains/smartchain/assets/0xfFdC00285DDe1f5b5c65C6a963357b4C55d8f601/info.json new file mode 100644 index 00000000..b73fda69 --- /dev/null +++ b/blockchains/smartchain/assets/0xfFdC00285DDe1f5b5c65C6a963357b4C55d8f601/info.json @@ -0,0 +1,24 @@ +{ + "name": "BleuFi", + "type": "BEP20", + "symbol": "Bleu", + "decimals": 2, + "website": "https://app.bleufi.com/", + "description": "BleuFi Marketplace is a next generation marketplace where artists and collectors can create, sell and collect digital items secured with blockchain.", + "explorer": "https://bscscan.com/token/0xfFdC00285DDe1f5b5c65C6a963357b4C55d8f601", + "status": "active", + "id": "0xfFdC00285DDe1f5b5c65C6a963357b4C55d8f601", + "links": [ + { + "name": "x", + "url": "https://x.com/Bleufiofficial" + }, + { + "name": "telegram", + "url": "https://t.me/BleuFi" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfFdC00285DDe1f5b5c65C6a963357b4C55d8f601/logo.png b/blockchains/smartchain/assets/0xfFdC00285DDe1f5b5c65C6a963357b4C55d8f601/logo.png new file mode 100644 index 00000000..25f5dc07 Binary files /dev/null and b/blockchains/smartchain/assets/0xfFdC00285DDe1f5b5c65C6a963357b4C55d8f601/logo.png differ diff --git a/blockchains/smartchain/assets/0xfa00e35A4a4Fe600f4f63F9d165A1e8e258AF8B8/info.json b/blockchains/smartchain/assets/0xfa00e35A4a4Fe600f4f63F9d165A1e8e258AF8B8/info.json new file mode 100644 index 00000000..5254d9f1 --- /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 00000000..0f827ca6 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 new file mode 100644 index 00000000..152e0470 --- /dev/null +++ b/blockchains/smartchain/assets/0xfa37E513E6cd506c4694b992825a8B614C035581/info.json @@ -0,0 +1,32 @@ +{ + "name": "Nexum Coin", + "website": "https://nexum.io", + "description": "Nexum is the utility token that aims to power the multi-billion Shipping & Oil industry. NEXM is designed to unbank the shipping industry", + "explorer": "https://bscscan.com/token/0xfa37E513E6cd506c4694b992825a8B614C035581", + "type": "BEP20", + "symbol": "NEXM", + "decimals": 8, + "status": "active", + "id": "0xfa37E513E6cd506c4694b992825a8B614C035581", + "links": [ + { + "name": "whitepaper", + "url": "https://nexum.ai/document/nxm_white_paper.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/nexum_official" + }, + { + "name": "x", + "url": "https://x.com/CoinNexum" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/nexum/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfa37E513E6cd506c4694b992825a8B614C035581/logo.png b/blockchains/smartchain/assets/0xfa37E513E6cd506c4694b992825a8B614C035581/logo.png new file mode 100644 index 00000000..ce69e5ca Binary files /dev/null and b/blockchains/smartchain/assets/0xfa37E513E6cd506c4694b992825a8B614C035581/logo.png differ diff --git a/blockchains/smartchain/assets/0xfa5DbE839C674C5a8A74dB57eE661fadE60bbf58/info.json b/blockchains/smartchain/assets/0xfa5DbE839C674C5a8A74dB57eE661fadE60bbf58/info.json new file mode 100644 index 00000000..5d1c3b1b --- /dev/null +++ b/blockchains/smartchain/assets/0xfa5DbE839C674C5a8A74dB57eE661fadE60bbf58/info.json @@ -0,0 +1,11 @@ +{ + "name": "Dog Owner", + "type": "BEP20", + "symbol": "DOGOWN", + "decimals": 18, + "website": "https://www.dogownertoken.com", + "description": "Dog Owner is the ultimate #MEME token that is community focussed but has the main use case being NFT's and NFT Farming.", + "explorer": "https://bscscan.com/token/0xfa5DbE839C674C5a8A74dB57eE661fadE60bbf58", + "status": "active", + "id": "0xfa5DbE839C674C5a8A74dB57eE661fadE60bbf58" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfa5DbE839C674C5a8A74dB57eE661fadE60bbf58/logo.png b/blockchains/smartchain/assets/0xfa5DbE839C674C5a8A74dB57eE661fadE60bbf58/logo.png new file mode 100644 index 00000000..383ebcd0 Binary files /dev/null and b/blockchains/smartchain/assets/0xfa5DbE839C674C5a8A74dB57eE661fadE60bbf58/logo.png differ diff --git a/blockchains/smartchain/assets/0xfaFf5251EA98f90540D6BacDf7A458f61b456C06/info.json b/blockchains/smartchain/assets/0xfaFf5251EA98f90540D6BacDf7A458f61b456C06/info.json new file mode 100644 index 00000000..f82930b8 --- /dev/null +++ b/blockchains/smartchain/assets/0xfaFf5251EA98f90540D6BacDf7A458f61b456C06/info.json @@ -0,0 +1,11 @@ +{ + "name": "Lava Token", + "type": "BEP20", + "symbol": "Lava", + "decimals": 9, + "website": "https://www.lavatoken.com/", + "description": "The Lava Token is a community-driven, fairly launched DeFi Token where users earn rewards via static reflection. ", + "explorer": "https://bscscan.com/token/0xfaFf5251EA98f90540D6BacDf7A458f61b456C06", + "status": "active", + "id": "0xfaFf5251EA98f90540D6BacDf7A458f61b456C06" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfaFf5251EA98f90540D6BacDf7A458f61b456C06/logo.png b/blockchains/smartchain/assets/0xfaFf5251EA98f90540D6BacDf7A458f61b456C06/logo.png new file mode 100644 index 00000000..cdc4298f Binary files /dev/null and b/blockchains/smartchain/assets/0xfaFf5251EA98f90540D6BacDf7A458f61b456C06/logo.png differ diff --git a/blockchains/smartchain/assets/0xfb16B31FA8a6Edcd2dDE78654CB0668c724C1dAc/info.json b/blockchains/smartchain/assets/0xfb16B31FA8a6Edcd2dDE78654CB0668c724C1dAc/info.json new file mode 100644 index 00000000..adf0add3 --- /dev/null +++ b/blockchains/smartchain/assets/0xfb16B31FA8a6Edcd2dDE78654CB0668c724C1dAc/info.json @@ -0,0 +1,45 @@ +{ + "name": "SafePokeman Token", + "type": "BEP20", + "symbol": "SAFEPOKEMAN", + "decimals": 18, + "website": "https://www.safepokeman.com", + "description": "Upload logo for SafePokeman Token", + "explorer": "https://bscscan.com/token/0xfb16B31FA8a6Edcd2dDE78654CB0668c724C1dAc", + "status": "active", + "id": "0xfb16B31FA8a6Edcd2dDE78654CB0668c724C1dAc", + "links": [ + { + "name": "x", + "url": "https://x.com/safepokeman" + }, + { + "name": "telegram", + "url": "https://t.me/safepokemanofficialchat" + }, + { + "name": "telegram_news", + "url": "https://t.me/SafePokeman_News" + }, + { + "name": "discord", + "url": "https://discord.com/invite/GGUbG666x2" + }, + { + "name": "whitepaper", + "url": "https://safepokeman.com/pdf/whitepaper.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC7BP18ZaifVuj6XWptN3ehg" + }, + { + "name": "facebook", + "url": "https://facebook.com/safepokemanofficial/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0xfb16b31fa8a6edcd2dde78654cb0668c724c1dac#code" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfb16B31FA8a6Edcd2dDE78654CB0668c724C1dAc/logo.png b/blockchains/smartchain/assets/0xfb16B31FA8a6Edcd2dDE78654CB0668c724C1dAc/logo.png new file mode 100644 index 00000000..9e6c2cf6 Binary files /dev/null and b/blockchains/smartchain/assets/0xfb16B31FA8a6Edcd2dDE78654CB0668c724C1dAc/logo.png differ diff --git a/blockchains/smartchain/assets/0xfb4b7ee058828b5fBF2e475dA88F1903f453334E/info.json b/blockchains/smartchain/assets/0xfb4b7ee058828b5fBF2e475dA88F1903f453334E/info.json new file mode 100644 index 00000000..eda3768b --- /dev/null +++ b/blockchains/smartchain/assets/0xfb4b7ee058828b5fBF2e475dA88F1903f453334E/info.json @@ -0,0 +1,11 @@ +{ + "name": "OleCoin", + "type": "BEP20", + "symbol": "OLE", + "decimals": 9, + "website": "https://olecoin.io", + "description": "Olecoin is a BEP 20 token leading the launching of the first Brazilian platform to tokenize soccer players future receives. New talents could create their profiles, we use real scouts to validate their informations and once it is approved we create their tokens promoting to our community and with investors. Tokens could be NFT, DeFi or ERC-20. We use the right technology according to the commercial contract signed with the new talent.", + "explorer": "https://bscscan.com/token/0xfb4b7ee058828b5fBF2e475dA88F1903f453334E", + "status": "active", + "id": "0xfb4b7ee058828b5fBF2e475dA88F1903f453334E" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfb4b7ee058828b5fBF2e475dA88F1903f453334E/logo.png b/blockchains/smartchain/assets/0xfb4b7ee058828b5fBF2e475dA88F1903f453334E/logo.png new file mode 100644 index 00000000..4234efbe Binary files /dev/null and b/blockchains/smartchain/assets/0xfb4b7ee058828b5fBF2e475dA88F1903f453334E/logo.png differ diff --git a/blockchains/smartchain/assets/0xfb5B838b6cfEEdC2873aB27866079AC55363D37E/info.json b/blockchains/smartchain/assets/0xfb5B838b6cfEEdC2873aB27866079AC55363D37E/info.json new file mode 100644 index 00000000..6e030ec0 --- /dev/null +++ b/blockchains/smartchain/assets/0xfb5B838b6cfEEdC2873aB27866079AC55363D37E/info.json @@ -0,0 +1,44 @@ +{ + "name": "FLOKI", + "type": "BEP20", + "symbol": "FLOKI", + "decimals": 9, + "website": "https://floki.com", + "description": "The people's cryptocurrency. By combining the power of memes with real utility and charitability, FLOKI gives power and opportunity to the people — to the underdogs — instead of venture capitalists and hedge funds. FLOKI aims to be the most known and most used cryptocurrency in the world.", + "explorer": "https://bscscan.com/token/0xfb5b838b6cfeedc2873ab27866079ac55363d37e", + "status": "active", + "id": "0xfb5B838b6cfEEdC2873aB27866079AC55363D37E", + "links": [ + { + "name": "x", + "url": "https://x.com/realflokiinu" + }, + { + "name": "telegram", + "url": "https://t.me/FlokiInuToken" + }, + { + "name": "whitepaper", + "url": "https://docs.theflokiinu.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/floki-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/floki-inu" + }, + { + "name": "discord", + "url": "https://discord.com/invite/floki" + }, + { + "name": "medium", + "url": "https://realflokiinu.medium.com/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfb5B838b6cfEEdC2873aB27866079AC55363D37E/logo.png b/blockchains/smartchain/assets/0xfb5B838b6cfEEdC2873aB27866079AC55363D37E/logo.png new file mode 100644 index 00000000..271d32ee Binary files /dev/null and b/blockchains/smartchain/assets/0xfb5B838b6cfEEdC2873aB27866079AC55363D37E/logo.png differ diff --git a/blockchains/smartchain/assets/0xfb6115445Bff7b52FeB98650C87f44907E58f802/info.json b/blockchains/smartchain/assets/0xfb6115445Bff7b52FeB98650C87f44907E58f802/info.json new file mode 100644 index 00000000..45693063 --- /dev/null +++ b/blockchains/smartchain/assets/0xfb6115445Bff7b52FeB98650C87f44907E58f802/info.json @@ -0,0 +1,50 @@ +{ + "name": "Binance-Peg Aave Token", + "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", + "research": "https://research.binance.com/en/projects/aave-protocol", + "type": "BEP20", + "symbol": "AAVE", + "decimals": 18, + "status": "active", + "id": "0xfb6115445Bff7b52FeB98650C87f44907E58f802", + "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/smartchain/assets/0xfb6115445Bff7b52FeB98650C87f44907E58f802/logo.png b/blockchains/smartchain/assets/0xfb6115445Bff7b52FeB98650C87f44907E58f802/logo.png new file mode 100644 index 00000000..d53b1142 Binary files /dev/null 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 new file mode 100644 index 00000000..be66029b --- /dev/null +++ b/blockchains/smartchain/assets/0xfb62AE373acA027177D1c18Ee0862817f9080d08/info.json @@ -0,0 +1,25 @@ +{ + "name": "My DeFi Pet Token", + "symbol": "DPET", + "type": "BEP20", + "decimals": 18, + "description": "My DeFi Pet brings traditional game experience and DeFi features to NFT collectibles where players can collect, breed and trade monsters or items, battle and participate in events.", + "website": "https://mydefipet.com/", + "explorer": "https://bscscan.com/token/0xfb62AE373acA027177D1c18Ee0862817f9080d08", + "status": "active", + "id": "0xfb62AE373acA027177D1c18Ee0862817f9080d08", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/my-defi-pet/" + }, + { + "name": "x", + "url": "https://x.com/MyDeFiPet" + }, + { + "name": "telegram", + "url": "https://t.me/mydefipet" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfb62AE373acA027177D1c18Ee0862817f9080d08/logo.png b/blockchains/smartchain/assets/0xfb62AE373acA027177D1c18Ee0862817f9080d08/logo.png new file mode 100644 index 00000000..04a20417 Binary files /dev/null and b/blockchains/smartchain/assets/0xfb62AE373acA027177D1c18Ee0862817f9080d08/logo.png differ diff --git a/blockchains/smartchain/assets/0xfb68406D38BaF071297f5a3AB97AfFd5945c1db9/info.json b/blockchains/smartchain/assets/0xfb68406D38BaF071297f5a3AB97AfFd5945c1db9/info.json new file mode 100644 index 00000000..3e34ee77 --- /dev/null +++ b/blockchains/smartchain/assets/0xfb68406D38BaF071297f5a3AB97AfFd5945c1db9/info.json @@ -0,0 +1,11 @@ +{ + "name": "SafeUniverse", + "type": "BEP20", + "symbol": "SAFUV2", + "decimals": 9, + "website": "https://www.safeuniverse.net/", + "description": "SAFEUNIVERSE v 2.1, A Frictionless Yield Generation, Community Driven Protocol.", + "explorer": "https://bscscan.com/token/0xfb68406D38BaF071297f5a3AB97AfFd5945c1db9", + "status": "active", + "id": "0xfb68406D38BaF071297f5a3AB97AfFd5945c1db9" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfb68406D38BaF071297f5a3AB97AfFd5945c1db9/logo.png b/blockchains/smartchain/assets/0xfb68406D38BaF071297f5a3AB97AfFd5945c1db9/logo.png new file mode 100644 index 00000000..ddc96b50 Binary files /dev/null and b/blockchains/smartchain/assets/0xfb68406D38BaF071297f5a3AB97AfFd5945c1db9/logo.png differ diff --git a/blockchains/smartchain/assets/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE/info.json b/blockchains/smartchain/assets/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE/info.json new file mode 100644 index 00000000..c6dd45b4 --- /dev/null +++ b/blockchains/smartchain/assets/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE/info.json @@ -0,0 +1,29 @@ +{ + "name": "Shill", + "type": "BEP20", + "symbol": "SHILL", + "decimals": 18, + "website": "https://projectseed.com/", + "description": "Game Studio focused on building mobile blockchain gaming ecosystem that utilizes Multi Blockchain and integrates Governance, GameFi, and NFT.", + "explorer": "https://bscscan.com/token/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE", + "status": "active", + "id": "0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE", + "links": [ + { + "name": "telegram", + "url": "https://t.me/projectseedannouncements" + }, + { + "name": "x", + "url": "https://x.com/ProjectSeedGame" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/project-seed/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shill-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE/logo.png b/blockchains/smartchain/assets/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE/logo.png new file mode 100644 index 00000000..7df43767 Binary files /dev/null and b/blockchains/smartchain/assets/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE/logo.png differ diff --git a/blockchains/smartchain/assets/0xfc619FfCc0e0F30427BF938f9A1B2BfAE15bDf84/info.json b/blockchains/smartchain/assets/0xfc619FfCc0e0F30427BF938f9A1B2BfAE15bDf84/info.json new file mode 100644 index 00000000..d4bb85d6 --- /dev/null +++ b/blockchains/smartchain/assets/0xfc619FfCc0e0F30427BF938f9A1B2BfAE15bDf84/info.json @@ -0,0 +1,21 @@ +{ + "name": "Anji", + "type": "BEP20", + "symbol": "ANJI", + "decimals": 9, + "website": "https://www.anji.eco/", + "description": "Anji sets a new precedent with the worlds first smart contract dividends protocol. Growth powered by the community and ecosystem.", + "explorer": "https://bscscan.com/token/0xfc619FfCc0e0F30427BF938f9A1B2BfAE15bDf84", + "status": "active", + "id": "0xfc619FfCc0e0F30427BF938f9A1B2BfAE15bDf84", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/anji/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/anji" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfc619FfCc0e0F30427BF938f9A1B2BfAE15bDf84/logo.png b/blockchains/smartchain/assets/0xfc619FfCc0e0F30427BF938f9A1B2BfAE15bDf84/logo.png new file mode 100644 index 00000000..3565b394 Binary files /dev/null and b/blockchains/smartchain/assets/0xfc619FfCc0e0F30427BF938f9A1B2BfAE15bDf84/logo.png differ diff --git a/blockchains/smartchain/assets/0xfd189358080fce1731cE57330e64f4f158A37ee3/info.json b/blockchains/smartchain/assets/0xfd189358080fce1731cE57330e64f4f158A37ee3/info.json new file mode 100644 index 00000000..d34e955a --- /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 00000000..8a50bb39 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 new file mode 100644 index 00000000..8c25d370 --- /dev/null +++ b/blockchains/smartchain/assets/0xfd290c590866f8282d89671A85Ac9964b165d682/info.json @@ -0,0 +1,37 @@ +{ + "name": "Subme", + "website": "http://subme.cash", + "description": "Subme is the world's first platform focused on subscribing to both physical products and services.", + "explorer": "https://bscscan.com/token/0xfd290c590866f8282d89671A85Ac9964b165d682", + "type": "BEP20", + "symbol": "SUB", + "decimals": 4, + "status": "active", + "id": "0xfd290c590866f8282d89671A85Ac9964b165d682", + "links": [ + { + "name": "x", + "url": "https://x.com/Subme_app" + }, + { + "name": "telegram", + "url": "https://t.me/subme_cash" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/subme" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/SubmeApp/" + }, + { + "name": "facebook", + "url": "https://facebook.com/Submeapp" + }, + { + "name": "medium", + "url": "https://medium.com/subme-app" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfd290c590866f8282d89671A85Ac9964b165d682/logo.png b/blockchains/smartchain/assets/0xfd290c590866f8282d89671A85Ac9964b165d682/logo.png new file mode 100644 index 00000000..844ec686 Binary files /dev/null and b/blockchains/smartchain/assets/0xfd290c590866f8282d89671A85Ac9964b165d682/logo.png differ diff --git a/blockchains/smartchain/assets/0xfe56d5892BDffC7BF58f2E84BE1b2C32D21C308b/info.json b/blockchains/smartchain/assets/0xfe56d5892BDffC7BF58f2E84BE1b2C32D21C308b/info.json new file mode 100644 index 00000000..526835f1 --- /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 00000000..dcd42863 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 00000000..1bc1ae9e --- /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 00000000..0a03049a Binary files /dev/null and b/blockchains/smartchain/assets/0xfe9aA194E3C4604f3872f220eb41C33A287FCD90/logo.png differ diff --git a/blockchains/smartchain/assets/0xfebc87c6ff184B1AD2D2081eCd5d8Fb18571bD24/info.json b/blockchains/smartchain/assets/0xfebc87c6ff184B1AD2D2081eCd5d8Fb18571bD24/info.json new file mode 100644 index 00000000..76c86e5d --- /dev/null +++ b/blockchains/smartchain/assets/0xfebc87c6ff184B1AD2D2081eCd5d8Fb18571bD24/info.json @@ -0,0 +1,11 @@ +{ + "name": "Volta", + "type": "BEP20", + "symbol": "VOLTA", + "decimals": 9, + "website": "https://www.voltacrypto.com", + "description": "A token to improve the financial efficiency of the energy industry.", + "explorer": "https://bscscan.com/token/0xfebc87c6ff184B1AD2D2081eCd5d8Fb18571bD24", + "status": "active", + "id": "0xfebc87c6ff184B1AD2D2081eCd5d8Fb18571bD24" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfebc87c6ff184B1AD2D2081eCd5d8Fb18571bD24/logo.png b/blockchains/smartchain/assets/0xfebc87c6ff184B1AD2D2081eCd5d8Fb18571bD24/logo.png new file mode 100644 index 00000000..c3b548c0 Binary files /dev/null and b/blockchains/smartchain/assets/0xfebc87c6ff184B1AD2D2081eCd5d8Fb18571bD24/logo.png differ diff --git a/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/info.json b/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/info.json new file mode 100644 index 00000000..701f1ad3 --- /dev/null +++ b/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZEDXION", + "type": "BEP20", + "symbol": "ZEDXION", + "decimals": 18, + "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": "abandoned", + "id": "0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34" +} \ No newline at end of file diff --git a/blockchains/smartchain/info/info.json b/blockchains/smartchain/info/info.json new file mode 100644 index 00000000..c0a111a0 --- /dev/null +++ b/blockchains/smartchain/info/info.json @@ -0,0 +1,33 @@ +{ + "name": "BNB Smart Chain", + "website": "https://www.bnbchain.world/en/smartChain", + "description": "A blockchain with a full-fledged environment for developing high-performance decentralized applications and cross-chain compatibility with Binance Chain.", + "explorer": "https://bscscan.com/", + "research": "https://research.binance.com/en/projects/bnb", + "symbol": "BNB", + "type": "coin", + "decimals": 18, + "status": "active", + "tags": [ + "staking-native", + "dapp" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/binance-chain/" + }, + { + "name": "x", + "url": "https://x.com/BNBCHAIN" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/BinanceExchange" + }, + { + "name": "whitepaper", + "url": "https://www.binance.com/resources/ico/Binance_WhitePaper_en.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/info/logo.png b/blockchains/smartchain/info/logo.png new file mode 100644 index 00000000..b331d64d Binary files /dev/null and b/blockchains/smartchain/info/logo.png differ diff --git a/blockchains/smartchain/info/square_logo.png b/blockchains/smartchain/info/square_logo.png new file mode 100644 index 00000000..35b8d54d Binary files /dev/null and b/blockchains/smartchain/info/square_logo.png differ diff --git a/blockchains/smartchain/tokenlist-extended.json b/blockchains/smartchain/tokenlist-extended.json new file mode 100644 index 00000000..f3579c75 --- /dev/null +++ b/blockchains/smartchain/tokenlist-extended.json @@ -0,0 +1,11 @@ +{ + "name": "Trust Wallet: SmartChain Extended List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-01-27T14:33:26.183301", + "tokens": [], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} \ No newline at end of file diff --git a/blockchains/smartchain/tokenlist.json b/blockchains/smartchain/tokenlist.json new file mode 100644 index 00000000..5bd26d94 --- /dev/null +++ b/blockchains/smartchain/tokenlist.json @@ -0,0 +1,899 @@ +{ + "name": "Trust Wallet: Smart Chain", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2021-06-17T12:17:25.447Z", + "tokens": [ + { + "chainId": 56, + "asset": "c20000714_t0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "type": "BEP20", + "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "name": "Wrapped BNB", + "symbol": "WBNB", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c/logo.png", + "pairs": [ + { + "base": "c20000714_t0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153" + }, + { + "base": "c20000714_t0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82" + }, + { + "base": "c20000714_t0x0Eb3a705fc54725037CC9e008bDede697f62F335" + }, + { + "base": "c20000714_t0x16939ef78684453bfDFb47825F8a5F714f12623a" + }, + { + "base": "c20000714_t0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454" + }, + { + "base": "c20000714_t0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3" + }, + { + "base": "c20000714_t0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE" + }, + { + "base": "c20000714_t0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A" + }, + { + "base": "c20000714_t0x2170Ed0880ac9A755fd29B2688956BD959F933F8" + }, + { + "base": "c20000714_t0x23396cF899Ca06c4472205fC903bDB4de249D6fC" + }, + { + "base": "c20000714_t0x233d91A0713155003fc4DcE0AFa871b508B3B715" + }, + { + "base": "c20000714_t0x3aabCf53A1930A42E18D938C019E83Ebee50a849" + }, + { + "base": "c20000714_t0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47" + }, + { + "base": "c20000714_t0x4197C6EF3879a08cD51e5560da5064B773aa1d29" + }, + { + "base": "c20000714_t0x4338665CBB7B2485A8855A139b75D5e34AB0DB94" + }, + { + "base": "c20000714_t0x44754455564474A89358B2C2265883DF993b12F0" + }, + { + "base": "c20000714_t0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A" + }, + { + "base": "c20000714_t0x4B0F1812e5Df2A09796481Ff14017e6005508003" + }, + { + "base": "c20000714_t0x55d398326f99059fF775485246999027B3197955" + }, + { + "base": "c20000714_t0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6" + }, + { + "base": "c20000714_t0x5Ac52EE5b2a633895292Ff6d8A89bB9190451587" + }, + { + "base": "c20000714_t0x63870A18B6e42b01Ef1Ad8A2302ef50B7132054F" + }, + { + "base": "c20000714_t0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2" + }, + { + "base": "c20000714_t0x6c5FE6e99D2484db7E4BF34F365ABA42d0E4dC20" + }, + { + "base": "c20000714_t0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402" + }, + { + "base": "c20000714_t0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c" + }, + { + "base": "c20000714_t0x728C5baC3C3e370E372Fc4671f9ef6916b814d8B" + }, + { + "base": "c20000714_t0x72fAa679E1008Ad8382959FF48E392042A8b06f7" + }, + { + "base": "c20000714_t0x78650B139471520656b9E7aA7A5e9276814a38e9" + }, + { + "base": "c20000714_t0x790Be81C3cA0e53974bE2688cDb954732C9862e1" + }, + { + "base": "c20000714_t0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2" + }, + { + "base": "c20000714_t0x7F70642d88cf1C4a3a7abb072B53B929b653edA5" + }, + { + "base": "c20000714_t0x81859801b01764D4f0Fa5E64729f5a6C3b91435b" + }, + { + "base": "c20000714_t0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e" + }, + { + "base": "c20000714_t0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf" + }, + { + "base": "c20000714_t0x928e55daB735aa8260AF3cEDadA18B5f70C72f1b" + }, + { + "base": "c20000714_t0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8" + }, + { + "base": "c20000714_t0xa184088a740c695E156F91f5cC086a06bb78b827" + }, + { + "base": "c20000714_t0xa1faa113cbE53436Df28FF0aEe54275c13B40975" + }, + { + "base": "c20000714_t0xa2B726B1145A4773F68593CF171187d8EBe4d495" + }, + { + "base": "c20000714_t0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929" + }, + { + "base": "c20000714_t0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18" + }, + { + "base": "c20000714_t0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723" + }, + { + "base": "c20000714_t0xBf5140A22578168FD562DCcF235E5D43A02ce9B1" + }, + { + "base": "c20000714_t0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe" + }, + { + "base": "c20000714_t0xC7d8D35EBA58a0935ff2D5a33Df105DD9f071731" + }, + { + "base": "c20000714_t0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51" + }, + { + "base": "c20000714_t0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E" + }, + { + "base": "c20000714_t0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63" + }, + { + "base": "c20000714_t0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb" + }, + { + "base": "c20000714_t0xE40255C5d7fa7ceEc5120408C78C787CECB4cfdb" + }, + { + "base": "c20000714_t0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56" + }, + { + "base": "c20000714_t0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e" + }, + { + "base": "c20000714_t0xf79037F6f6bE66832DE4E7516be52826BC3cBcc4" + }, + { + "base": "c20000714_t0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD" + }, + { + "base": "c20000714_t0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6" + }, + { + "base": "c20000714_t0x6679eB24F59dFe111864AEc72B443d1Da666B360" + }, + { + "base": "c20000714_t0x734D66f635523D7ddb7d2373C128333DA313041b" + + }, + + { + "base": "c20000714_t0xc748673057861a797275CD8A068AbB95A902e8de" + } + ] + }, + { + "chainId": 56, + "asset": "c20000714_t0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7", + "type": "BEP20", + "address": "0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7", + "name": "Jupiter", + "symbol": "bwJUP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153", + "type": "BEP20", + "address": "0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153", + "name": "BNB pegged Filecoin", + "symbol": "FIL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/logo.png", + "pairs": [] + }, + { + "chainId": 56, + "asset": "c20000714_t0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82", + "type": "BEP20", + "address": "0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82", + "name": "PancakeSwap Token", + "symbol": "CAKE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x0Eb3a705fc54725037CC9e008bDede697f62F335", + "type": "BEP20", + "address": "0x0Eb3a705fc54725037CC9e008bDede697f62F335", + "name": "BNB pegged Cosmos Token", + "symbol": "ATOM", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x16939ef78684453bfDFb47825F8a5F714f12623a", + "type": "BEP20", + "address": "0x16939ef78684453bfDFb47825F8a5F714f12623a", + "name": "BNB pegged Tezos Token", + "symbol": "XTZ", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454", + "type": "BEP20", + "address": "0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454", + "name": "bDollar", + "symbol": "BDO", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454/logo.png", + "pairs": [] + }, + { + "chainId": 56, + "asset": "c20000714_t0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", + "type": "BEP20", + "address": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", + "name": "BNB pegged Dai Token", + "symbol": "DAI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE", + "type": "BEP20", + "address": "0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE", + "name": "BNB pegged XRP Token", + "symbol": "XRP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A", + "type": "BEP20", + "address": "0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A", + "name": "Fuel Token", + "symbol": "Fuel", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A/logo.png", + "pairs": [] + }, + { + "chainId": 56, + "asset": "c20000714_t0x2170Ed0880ac9A755fd29B2688956BD959F933F8", + "type": "BEP20", + "address": "0x2170Ed0880ac9A755fd29B2688956BD959F933F8", + "name": "BNB pegged Ethereum", + "symbol": "ETH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x23396cF899Ca06c4472205fC903bDB4de249D6fC", + "type": "BEP20", + "address": "0x23396cF899Ca06c4472205fC903bDB4de249D6fC", + "name": "Wrapped UST Token", + "symbol": "UST", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x23396cF899Ca06c4472205fC903bDB4de249D6fC/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x233d91A0713155003fc4DcE0AFa871b508B3B715", + "type": "BEP20", + "address": "0x233d91A0713155003fc4DcE0AFa871b508B3B715", + "name": "Ditto", + "symbol": "DITTO", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x233d91A0713155003fc4DcE0AFa871b508B3B715/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x37Ac4D6140e54304D77437A5c11924f61a2D976f", + "type": "BEP20", + "address": "0x37Ac4D6140e54304D77437A5c11924f61a2D976f", + "name": "SparkPoint Fuel", + "symbol": "SFUEL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x37Ac4D6140e54304D77437A5c11924f61a2D976f/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x3aabCf53A1930A42E18D938C019E83Ebee50a849", + "type": "BEP20", + "address": "0x3aabCf53A1930A42E18D938C019E83Ebee50a849", + "name": "SPONGE", + "symbol": "SPG", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x3aabCf53A1930A42E18D938C019E83Ebee50a849/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47", + "type": "BEP20", + "address": "0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47", + "name": "BNB pegged Cardano Token", + "symbol": "ADA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x4197C6EF3879a08cD51e5560da5064B773aa1d29", + "type": "BEP20", + "address": "0x4197C6EF3879a08cD51e5560da5064B773aa1d29", + "name": "ACryptoS", + "symbol": "ACS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x4197C6EF3879a08cD51e5560da5064B773aa1d29/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x4338665CBB7B2485A8855A139b75D5e34AB0DB94", + "type": "BEP20", + "address": "0x4338665CBB7B2485A8855A139b75D5e34AB0DB94", + "name": "BNB pegged Litecoin Token", + "symbol": "LTC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x44754455564474A89358B2C2265883DF993b12F0", + "type": "BEP20", + "address": "0x44754455564474A89358B2C2265883DF993b12F0", + "name": "ZeroSwapToken", + "symbol": "ZEE", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x44754455564474A89358B2C2265883DF993b12F0/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A", + "type": "BEP20", + "address": "0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A", + "name": "Swipe", + "symbol": "SXP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A/logo.png", + "pairs": [] + }, + { + "chainId": 56, + "asset": "c20000714_t0x4B0F1812e5Df2A09796481Ff14017e6005508003", + "type": "BEP20", + "address": "0x4B0F1812e5Df2A09796481Ff14017e6005508003", + "name": "Trust Wallet", + "symbol": "TWT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png", + "pairs": [] + }, + { + "chainId": 56, + "asset": "c20000714_t0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7", + "type": "BEP20", + "address": "0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7", + "name": "VAI Stablecoin", + "symbol": "VAI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/logo.png", + "pairs": [] + }, + { + "chainId": 56, + "asset": "c20000714_t0x55d398326f99059fF775485246999027B3197955", + "type": "BEP20", + "address": "0x55d398326f99059fF775485246999027B3197955", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x55d398326f99059fF775485246999027B3197955/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6", + "type": "BEP20", + "address": "0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6", + "name": "BNB pegged EOS Token", + "symbol": "EOS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x5Ac52EE5b2a633895292Ff6d8A89bB9190451587", + "type": "BEP20", + "address": "0x5Ac52EE5b2a633895292Ff6d8A89bB9190451587", + "name": "BSCX", + "symbol": "BSCX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x5Ac52EE5b2a633895292Ff6d8A89bB9190451587/logo.png", + "pairs": [] + }, + { + "chainId": 56, + "asset": "c20000714_t0x63870A18B6e42b01Ef1Ad8A2302ef50B7132054F", + "type": "BEP20", + "address": "0x63870A18B6e42b01Ef1Ad8A2302ef50B7132054F", + "name": "BLinkToken", + "symbol": "BLINK", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x63870A18B6e42b01Ef1Ad8A2302ef50B7132054F/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2", + "type": "BEP20", + "address": "0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2", + "name": "DODO", + "symbol": "DODO", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x6c5FE6e99D2484db7E4BF34F365ABA42d0E4dC20", + "type": "BEP20", + "address": "0x6c5FE6e99D2484db7E4BF34F365ABA42d0E4dC20", + "name": "Absorber", + "symbol": "ABS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x6c5FE6e99D2484db7E4BF34F365ABA42d0E4dC20/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402", + "type": "BEP20", + "address": "0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402", + "name": "BNB pegged Polkadot Token", + "symbol": "DOT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/logo.png", + "pairs": [] + }, + { + "chainId": 56, + "asset": "c20000714_t0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c", + "type": "BEP20", + "address": "0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c", + "name": "BNB pegged BTCB Token", + "symbol": "BTCB", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x728C5baC3C3e370E372Fc4671f9ef6916b814d8B", + "type": "BEP20", + "address": "0x728C5baC3C3e370E372Fc4671f9ef6916b814d8B", + "name": "UNFI", + "symbol": "UNFI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x728C5baC3C3e370E372Fc4671f9ef6916b814d8B/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x72fAa679E1008Ad8382959FF48E392042A8b06f7", + "type": "BEP20", + "address": "0x72fAa679E1008Ad8382959FF48E392042A8b06f7", + "name": "AllianceBlock Token", + "symbol": "bALBT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x72fAa679E1008Ad8382959FF48E392042A8b06f7/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x78650B139471520656b9E7aA7A5e9276814a38e9", + "type": "BEP20", + "address": "0x78650B139471520656b9E7aA7A5e9276814a38e9", + "name": "StandardBTCHashrateToken", + "symbol": "BTCST", + "decimals": 17, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x78650B139471520656b9E7aA7A5e9276814a38e9/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x790Be81C3cA0e53974bE2688cDb954732C9862e1", + "type": "BEP20", + "address": "0x790Be81C3cA0e53974bE2688cDb954732C9862e1", + "name": "CafeSwap Token", + "symbol": "BREW", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x790Be81C3cA0e53974bE2688cDb954732C9862e1/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2", + "type": "BEP20", + "address": "0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2", + "name": "Kebab Token", + "symbol": "KEBAB", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x7F70642d88cf1C4a3a7abb072B53B929b653edA5", + "type": "BEP20", + "address": "0x7F70642d88cf1C4a3a7abb072B53B929b653edA5", + "name": "BNB pegged YFII.finance Token", + "symbol": "YFII", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x81859801b01764D4f0Fa5E64729f5a6C3b91435b", + "type": "BEP20", + "address": "0x81859801b01764D4f0Fa5E64729f5a6C3b91435b", + "name": "bearn.fi", + "symbol": "BFI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x81859801b01764D4f0Fa5E64729f5a6C3b91435b/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e", + "type": "BEP20", + "address": "0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e", + "name": "BNB pegged yearn.finance", + "symbol": "YFI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf", + "type": "BEP20", + "address": "0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf", + "name": "BNB pegged Bitcoin Cash Token", + "symbol": "BCH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x928e55daB735aa8260AF3cEDadA18B5f70C72f1b", + "type": "BEP20", + "address": "0x928e55daB735aa8260AF3cEDadA18B5f70C72f1b", + "name": "Frontier Token", + "symbol": "FRONT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x928e55daB735aa8260AF3cEDadA18B5f70C72f1b/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8", + "type": "BEP20", + "address": "0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8", + "name": "Helmet.insure Governance Token", + "symbol": "Helmet", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x97a30C692eCe9C317235d48287d23d358170FC40", + "type": "BEP20", + "address": "0x97a30C692eCe9C317235d48287d23d358170FC40", + "name": "CryptEx Token", + "symbol": "CRX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x97a30C692eCe9C317235d48287d23d358170FC40/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xa184088a740c695E156F91f5cC086a06bb78b827", + "type": "BEP20", + "address": "0xa184088a740c695E156F91f5cC086a06bb78b827", + "name": "AUTOv2", + "symbol": "AUTO", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xa184088a740c695E156F91f5cC086a06bb78b827/logo.png", + "pairs": [] + }, + { + "chainId": 56, + "asset": "c20000714_t0xa1faa113cbE53436Df28FF0aEe54275c13B40975", + "type": "BEP20", + "address": "0xa1faa113cbE53436Df28FF0aEe54275c13B40975", + "name": "Alpha Finance", + "symbol": "ALPHA", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/logo.png", + "pairs": [] + }, + { + "chainId": 56, + "asset": "c20000714_t0xa2B726B1145A4773F68593CF171187d8EBe4d495", + "type": "BEP20", + "address": "0xa2B726B1145A4773F68593CF171187d8EBe4d495", + "name": "Injective", + "symbol": "INJ", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/logo.png", + "pairs": [] + }, + { + "chainId": 56, + "asset": "c20000714_t0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929", + "type": "BEP20", + "address": "0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929", + "name": "CertiK Token", + "symbol": "CTK", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18", + "type": "BEP20", + "address": "0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18", + "name": "BNB pegged Band Protocol Token", + "symbol": "BAND", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723", + "type": "BEP20", + "address": "0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723", + "name": "Litentry", + "symbol": "LIT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/logo.png", + "pairs": [] + }, + { + "chainId": 56, + "asset": "c20000714_t0xBf5140A22578168FD562DCcF235E5D43A02ce9B1", + "type": "BEP20", + "address": "0xBf5140A22578168FD562DCcF235E5D43A02ce9B1", + "name": "BNB pegged Uniswap", + "symbol": "UNI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe", + "type": "BEP20", + "address": "0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe", + "name": "BNB pegged Elrond", + "symbol": "EGLD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xC7d8D35EBA58a0935ff2D5a33Df105DD9f071731", + "type": "BEP20", + "address": "0xC7d8D35EBA58a0935ff2D5a33Df105DD9f071731", + "name": "Hedget", + "symbol": "HGET", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xC7d8D35EBA58a0935ff2D5a33Df105DD9f071731/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xC7FB8c5eFE8564205eE5CbA4dE8eeA8a086a4bd2", + "type": "BEP20", + "address": "0xC7FB8c5eFE8564205eE5CbA4dE8eeA8a086a4bd2", + "name": "PocketRocket", + "symbol": "POCROC", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xC7FB8c5eFE8564205eE5CbA4dE8eeA8a086a4bd2/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51", + "type": "BEP20", + "address": "0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51", + "name": "Bunny Token", + "symbol": "BUNNY", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E", + "type": "BEP20", + "address": "0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E", + "name": "Crow Token", + "symbol": "CROW", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E/logo.png", + "pairs": [] + }, + { + "chainId": 56, + "asset": "c20000714_t0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63", + "type": "BEP20", + "address": "0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63", + "name": "Venus", + "symbol": "XVS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb", + "type": "BEP20", + "address": "0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb", + "name": "SafePal Token", + "symbol": "SFP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xE40255C5d7fa7ceEc5120408C78C787CECB4cfdb", + "type": "BEP20", + "address": "0xE40255C5d7fa7ceEc5120408C78C787CECB4cfdb", + "name": "SWGb", + "symbol": "SWGb", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xE40255C5d7fa7ceEc5120408C78C787CECB4cfdb/logo.png", + "pairs": [] + }, + { + "chainId": 56, + "asset": "c20000714_t0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "type": "BEP20", + "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "name": "BNB pegged BUSD", + "symbol": "BUSD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1", + "type": "BEP20", + "address": "0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1", + "name": "TeraBlock Token", + "symbol": "TBC", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e", + "type": "BEP20", + "address": "0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e", + "name": "Reef.finance", + "symbol": "REEF", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e/logo.png", + "pairs": [] + }, + { + "chainId": 56, + "asset": "c20000714_t0xf79037F6f6bE66832DE4E7516be52826BC3cBcc4", + "type": "BEP20", + "address": "0xf79037F6f6bE66832DE4E7516be52826BC3cBcc4", + "name": "Hard Protocol", + "symbol": "HARD", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xf79037F6f6bE66832DE4E7516be52826BC3cBcc4/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD", + "type": "BEP20", + "address": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD", + "name": "BNB pegged ChainLink", + "symbol": "LINK", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6", + "type": "BEP20", + "address": "0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6", + "name": "Goose Golden Egg", + "symbol": "EGG", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x016CF83732f1468150D87dCC5BdF67730B3934D3", + "type": "BEP20", + "address": "0x016CF83732f1468150D87dCC5BdF67730B3934D3", + "name": "AirNFT Token", + "symbol": "AIRT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x016CF83732f1468150D87dCC5BdF67730B3934D3/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x6679eB24F59dFe111864AEc72B443d1Da666B360", + "type": "BEP20", + "address": "0x6679eB24F59dFe111864AEc72B443d1Da666B360", + "name": "ARIVA", + "symbol": "ARV", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x6679eB24F59dFe111864AEc72B443d1Da666B360/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x734D66f635523D7ddb7d2373C128333DA313041b", + "type": "BEP20", + "address": "0x734D66f635523D7ddb7d2373C128333DA313041b", + "name": "ZEDXION", + "symbol": "USDZ", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xC3137c696796D69F783CD0Be4aB4bB96814234Aa", + "type": "BEP20", + "address": "0xC3137c696796D69F783CD0Be4aB4bB96814234Aa", + "name": "Pepa Inu", + "symbol": "PEPA", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xc748673057861a797275CD8A068AbB95A902e8de", + "type": "BEP20", + "address": "0xc748673057861a797275CD8A068AbB95A902e8de", + "name": "Baby Doge Coin", + "symbol": "BabyDoge", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xc748673057861a797275CD8A068AbB95A902e8de/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x95c91eEf65F50570cFC3f269961a00108Cf7BF59", + "type": "BEP20", + "address": "0x95c91eEf65F50570cFC3f269961a00108Cf7BF59", + "name": "The DONS", + "symbol": "DONS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x95c91eEf65F50570cFC3f269961a00108Cf7BF59/logo.png", + "pairs": [] + } + ], + "version": { + "major": 11, + "minor": 0, + "patch": 0 + } +} diff --git a/blockchains/smartchain/validators/assets/0x0813D0D092b97C157A8e68A65ccdF41b956883ae/logo.png b/blockchains/smartchain/validators/assets/0x0813D0D092b97C157A8e68A65ccdF41b956883ae/logo.png new file mode 100644 index 00000000..a907d86b 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 00000000..116bdea9 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 00000000..f95b27e9 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 00000000..9ee2bcce 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 00000000..8068abfd 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 00000000..90eb9346 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 00000000..52943487 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 00000000..74d5a59b 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 00000000..85c107ea 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 00000000..0606bd4f 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 00000000..a96d3610 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 00000000..8a68d860 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 00000000..7c6dcec7 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 00000000..64723bc1 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 00000000..f5f3ada9 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 00000000..83aab020 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 00000000..fc4482cf 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 00000000..988f5174 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 00000000..dc96014c 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 00000000..c2f86eb3 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 00000000..315c42cb 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 00000000..a7943ea7 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 00000000..1a63a1de 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 00000000..aecf77df 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 00000000..e035274e 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 00000000..ee83d6ca 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 00000000..4a63c344 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 00000000..17e1bf0b 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 00000000..7d15f743 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 00000000..433d259b 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 00000000..0b958482 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 00000000..dfdb5b10 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 00000000..e2ac6ba0 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 00000000..77ce1656 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 00000000..c5e3205b 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 00000000..17175bee 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 00000000..a65037d5 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 00000000..31aa120f 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 00000000..d3ae94a4 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 00000000..e1b1fab5 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 00000000..a6d9faad 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 00000000..cf629abd 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 00000000..30dec94b 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 00000000..51c1237b --- /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 00000000..19ae3853 --- /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 00000000..9a8d3dbd 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 00000000..78eb9c78 --- /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 00000000..b3759cdc 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 00000000..cdab9d6b --- /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 00000000..3eb58b3a 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 00000000..cd9bab2a --- /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 00000000..3ab31c8a Binary files /dev/null and b/blockchains/solana/assets/12XbSPVc5hmWjKUzf5ExTysM2pEL3tM953YkMXmLWkGd/logo.png differ diff --git a/blockchains/solana/assets/12uHjozDVgyGWeLqQ8DMCRbig8amW5VmvZu3FdMMdcaG/info.json b/blockchains/solana/assets/12uHjozDVgyGWeLqQ8DMCRbig8amW5VmvZu3FdMMdcaG/info.json new file mode 100644 index 00000000..74747aef --- /dev/null +++ b/blockchains/solana/assets/12uHjozDVgyGWeLqQ8DMCRbig8amW5VmvZu3FdMMdcaG/info.json @@ -0,0 +1,14 @@ +{ + "name": "Akropolis (Portal)", + "type": "SPL", + "symbol": "AKRO", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://akropolis.io", + "explorer": "https://solscan.io/token/12uHjozDVgyGWeLqQ8DMCRbig8amW5VmvZu3FdMMdcaG", + "status": "active", + "id": "12uHjozDVgyGWeLqQ8DMCRbig8amW5VmvZu3FdMMdcaG", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/12uHjozDVgyGWeLqQ8DMCRbig8amW5VmvZu3FdMMdcaG/logo.png b/blockchains/solana/assets/12uHjozDVgyGWeLqQ8DMCRbig8amW5VmvZu3FdMMdcaG/logo.png new file mode 100644 index 00000000..e048ce90 Binary files /dev/null and b/blockchains/solana/assets/12uHjozDVgyGWeLqQ8DMCRbig8amW5VmvZu3FdMMdcaG/logo.png differ diff --git a/blockchains/solana/assets/13QHuepdhtJ3urNsV9i1hdL8nQoca2G7ZaLzb5FYondo/info.json b/blockchains/solana/assets/13QHuepdhtJ3urNsV9i1hdL8nQoca2G7ZaLzb5FYondo/info.json new file mode 100644 index 00000000..110d303e --- /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 00000000..a6b39542 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 00000000..db89c783 --- /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 00000000..7692d40a 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 00000000..4a7c42ee --- /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 00000000..484e882d 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 00000000..9c3102a8 --- /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 00000000..1286f93f 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 00000000..1f55f13a --- /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 00000000..d28deab3 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 00000000..9b3d35d9 --- /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 00000000..99859dc7 --- /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 00000000..b0ed7260 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 00000000..0eac10ca --- /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 00000000..a552db34 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 00000000..beba1cd9 --- /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 00000000..3d67badd 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 00000000..595158cf --- /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 00000000..d26e3162 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 00000000..6667ad3e --- /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 00000000..9a326df9 --- /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 00000000..98304fb8 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 00000000..ad6f874a --- /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 00000000..97f3b9e2 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 00000000..c3d114b9 --- /dev/null +++ b/blockchains/solana/assets/26f12PmBk77wQV1TzLe8XKkNBvMFggbuypxdtMLzNLzz/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZigCoin", + "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 00000000..e610bbed 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 00000000..c5afcb7f --- /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 00000000..266099b8 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 00000000..34fb78f2 --- /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 00000000..57a76adf --- /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 00000000..7d1709f5 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 00000000..5777c3bd --- /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 00000000..dd93bd86 --- /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 00000000..7bbf06f2 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 00000000..0b90d56d --- /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 00000000..8537d2c8 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 new file mode 100644 index 00000000..03ad8196 --- /dev/null +++ b/blockchains/solana/assets/2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk/info.json @@ -0,0 +1,29 @@ +{ + "name": "Wrapped ETH", + "symbol": "ETH", + "type": "SPL", + "decimals": 6, + "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://solscan.io/token/2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk", + "status": "active", + "id": "2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk", + "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/solana/assets/2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk/logo.png b/blockchains/solana/assets/2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk/logo.png new file mode 100644 index 00000000..bf957d38 Binary files /dev/null and b/blockchains/solana/assets/2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk/logo.png differ diff --git a/blockchains/solana/assets/2GmUPhpe93kcTJZrC7NJ2keeDZRT5dBveUgegb13pump/info.json b/blockchains/solana/assets/2GmUPhpe93kcTJZrC7NJ2keeDZRT5dBveUgegb13pump/info.json new file mode 100644 index 00000000..cc0aa8bb --- /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 00000000..ff1c1441 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 00000000..753233c6 --- /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 00000000..5a9b8aaa 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 00000000..3539675c --- /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 00000000..4cf50da4 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 00000000..cbd5b40d --- /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 00000000..91fcc9ed 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 00000000..b506f667 --- /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 00000000..cf7f1d60 Binary files /dev/null and b/blockchains/solana/assets/2QYmQA5k8dFei18MjoaHocEzStBohFiifdnK2vi2pump/logo.png differ diff --git a/blockchains/solana/assets/2XPqoKfJitk8YcMDGBKy7CMzRRyF2X9PniZeCykDUZev/info.json b/blockchains/solana/assets/2XPqoKfJitk8YcMDGBKy7CMzRRyF2X9PniZeCykDUZev/info.json new file mode 100644 index 00000000..390c0571 --- /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 00000000..72ab2d23 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 00000000..f328eb68 --- /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 00000000..2b7ee60a 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 00000000..20d2c7ec --- /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 00000000..89ab64d1 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 00000000..3c8ab813 --- /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 00000000..71e1b325 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 00000000..4a26748b --- /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 00000000..561475b7 --- /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 00000000..8276b54f 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 00000000..aaf74b54 --- /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 00000000..8139b0e9 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 00000000..a22e1a30 --- /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 00000000..70ebe917 --- /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 00000000..3f66b426 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 00000000..50fc48c3 --- /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 00000000..cb658fd3 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 00000000..8e576297 --- /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 00000000..bf38743d 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 00000000..5b0aee5f --- /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 00000000..99819291 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 00000000..fd909fae --- /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 00000000..83968f5f 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 00000000..4b8d540e --- /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 00000000..753534e4 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 00000000..03cac5d4 --- /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 00000000..e4e8ae5d 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 00000000..a8ee6ca2 --- /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 00000000..7b698b5d 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 00000000..fee4d8f0 --- /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 00000000..cc0f0e3d 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 00000000..586ea3b5 --- /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 00000000..51c8bfb1 --- /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 00000000..fe4deca8 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 00000000..a9fcda85 --- /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 00000000..55eb40ef 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 00000000..7eebbeae --- /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 00000000..0650c14a 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 00000000..3348da2b --- /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 00000000..4a226da3 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 00000000..b39c35ff --- /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 00000000..5ab4f4ef Binary files /dev/null and b/blockchains/solana/assets/2ubuHGFS4VJVxSEpvV3kDwz6JiuXdaAoGMwrwYC87tp8/logo.png differ diff --git a/blockchains/solana/assets/2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD/info.json b/blockchains/solana/assets/2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD/info.json new file mode 100644 index 00000000..6f36b570 --- /dev/null +++ b/blockchains/solana/assets/2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD/info.json @@ -0,0 +1,14 @@ +{ + "name": "Hedget (Portal)", + "type": "SPL", + "symbol": "HGET", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.hedget.com/", + "explorer": "https://solscan.io/token/2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD", + "status": "active", + "id": "2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD/logo.png b/blockchains/solana/assets/2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD/logo.png new file mode 100644 index 00000000..4ede2d46 Binary files /dev/null and b/blockchains/solana/assets/2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD/logo.png differ diff --git a/blockchains/solana/assets/2vSVEMtLPSY4HBdKoccxDgPLV25RYrdidM6bT6vpqM2L/info.json b/blockchains/solana/assets/2vSVEMtLPSY4HBdKoccxDgPLV25RYrdidM6bT6vpqM2L/info.json new file mode 100644 index 00000000..33aaca3e --- /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 00000000..c6764ee7 Binary files /dev/null and b/blockchains/solana/assets/2vSVEMtLPSY4HBdKoccxDgPLV25RYrdidM6bT6vpqM2L/logo.png differ diff --git a/blockchains/solana/assets/2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX/info.json b/blockchains/solana/assets/2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX/info.json new file mode 100644 index 00000000..39e5093e --- /dev/null +++ b/blockchains/solana/assets/2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX/info.json @@ -0,0 +1,14 @@ +{ + "name": "Chainlink (Portal)", + "type": "SPL", + "symbol": "LINK", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://chain.link/", + "explorer": "https://solscan.io/token/2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX", + "status": "active", + "id": "2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX/logo.png b/blockchains/solana/assets/2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX/logo.png new file mode 100644 index 00000000..bb40954f Binary files /dev/null and b/blockchains/solana/assets/2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX/logo.png differ diff --git a/blockchains/solana/assets/2z5VijfstyHnDsvGwMExtvjTgTB1TT3JSf29PRe9MvNG/info.json b/blockchains/solana/assets/2z5VijfstyHnDsvGwMExtvjTgTB1TT3JSf29PRe9MvNG/info.json new file mode 100644 index 00000000..5c8354b5 --- /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 00000000..18bec79e 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 00000000..cc435a39 --- /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 00000000..817b322e --- /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 00000000..596eaf4c 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 00000000..e39eb0c7 --- /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 00000000..2b5f0028 --- /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 00000000..025afce2 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 00000000..d5f35038 --- /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 00000000..a2a4e456 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 00000000..417ef3d5 --- /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 00000000..29191a1e --- /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 00000000..c1b80094 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 new file mode 100644 index 00000000..afff53d0 --- /dev/null +++ b/blockchains/solana/assets/33fsBLA8djQm82RpHmE3SuVrPGtZBWNYExsEUeKX1HXX/info.json @@ -0,0 +1,14 @@ +{ + "name": "Binance USD (Portal from Ethereum)", + "type": "SPL", + "symbol": "BUSDet", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.paxos.com/busd/", + "explorer": "https://solscan.io/token/33fsBLA8djQm82RpHmE3SuVrPGtZBWNYExsEUeKX1HXX", + "status": "active", + "id": "33fsBLA8djQm82RpHmE3SuVrPGtZBWNYExsEUeKX1HXX", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/33fsBLA8djQm82RpHmE3SuVrPGtZBWNYExsEUeKX1HXX/logo.png b/blockchains/solana/assets/33fsBLA8djQm82RpHmE3SuVrPGtZBWNYExsEUeKX1HXX/logo.png new file mode 100644 index 00000000..ad5123c0 Binary files /dev/null and b/blockchains/solana/assets/33fsBLA8djQm82RpHmE3SuVrPGtZBWNYExsEUeKX1HXX/logo.png differ diff --git a/blockchains/solana/assets/33rVymHHPxfMvg4EHKBRF3h8a37cG7Et3eQWZzAkpump/info.json b/blockchains/solana/assets/33rVymHHPxfMvg4EHKBRF3h8a37cG7Et3eQWZzAkpump/info.json new file mode 100644 index 00000000..29ef37e0 --- /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 00000000..81b75407 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 00000000..c59d907e --- /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 00000000..2b357162 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 00000000..c7a7989b --- /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 00000000..ea2019ac 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 00000000..e40a9b32 --- /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 00000000..892fb8e4 --- /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 00000000..2360fb28 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 00000000..8e767697 --- /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 00000000..edb19c68 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 00000000..23039509 --- /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 00000000..d8edf81c 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 00000000..ce18819c --- /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 00000000..b07248bd Binary files /dev/null and b/blockchains/solana/assets/3CoTXmxP8pCKoJxd6QSxeYPzi9gzBQB6TmQzH8m1gza2/logo.png differ diff --git a/blockchains/solana/assets/3CyiEDRehaGufzkpXJitCP5tvh7cNhRqd9rPBxZrgK5z/info.json b/blockchains/solana/assets/3CyiEDRehaGufzkpXJitCP5tvh7cNhRqd9rPBxZrgK5z/info.json new file mode 100644 index 00000000..a9fef4ba --- /dev/null +++ b/blockchains/solana/assets/3CyiEDRehaGufzkpXJitCP5tvh7cNhRqd9rPBxZrgK5z/info.json @@ -0,0 +1,14 @@ +{ + "name": "Swipe (Portal)", + "type": "SPL", + "symbol": "SXP", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.swipe.io/", + "explorer": "https://solscan.io/token/3CyiEDRehaGufzkpXJitCP5tvh7cNhRqd9rPBxZrgK5z", + "status": "active", + "id": "3CyiEDRehaGufzkpXJitCP5tvh7cNhRqd9rPBxZrgK5z", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3CyiEDRehaGufzkpXJitCP5tvh7cNhRqd9rPBxZrgK5z/logo.png b/blockchains/solana/assets/3CyiEDRehaGufzkpXJitCP5tvh7cNhRqd9rPBxZrgK5z/logo.png new file mode 100644 index 00000000..ddf38765 Binary files /dev/null and b/blockchains/solana/assets/3CyiEDRehaGufzkpXJitCP5tvh7cNhRqd9rPBxZrgK5z/logo.png differ diff --git a/blockchains/solana/assets/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL/info.json b/blockchains/solana/assets/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL/info.json new file mode 100644 index 00000000..23c3695b --- /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 00000000..a0075ad9 Binary files /dev/null and b/blockchains/solana/assets/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL/logo.png differ diff --git a/blockchains/solana/assets/3EQ6LqLkiFcoxTeGEsHMFpSLWNVPe9yT7XPX2HYSFyxX/info.json b/blockchains/solana/assets/3EQ6LqLkiFcoxTeGEsHMFpSLWNVPe9yT7XPX2HYSFyxX/info.json new file mode 100644 index 00000000..ba040043 --- /dev/null +++ b/blockchains/solana/assets/3EQ6LqLkiFcoxTeGEsHMFpSLWNVPe9yT7XPX2HYSFyxX/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tokemak (Portal)", + "type": "SPL", + "symbol": "TOKE", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.tokemak.xyz/", + "explorer": "https://solscan.io/token/3EQ6LqLkiFcoxTeGEsHMFpSLWNVPe9yT7XPX2HYSFyxX", + "status": "active", + "id": "3EQ6LqLkiFcoxTeGEsHMFpSLWNVPe9yT7XPX2HYSFyxX", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3EQ6LqLkiFcoxTeGEsHMFpSLWNVPe9yT7XPX2HYSFyxX/logo.png b/blockchains/solana/assets/3EQ6LqLkiFcoxTeGEsHMFpSLWNVPe9yT7XPX2HYSFyxX/logo.png new file mode 100644 index 00000000..f53f464b Binary files /dev/null and b/blockchains/solana/assets/3EQ6LqLkiFcoxTeGEsHMFpSLWNVPe9yT7XPX2HYSFyxX/logo.png differ diff --git a/blockchains/solana/assets/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc/info.json b/blockchains/solana/assets/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc/info.json new file mode 100644 index 00000000..da533beb --- /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 00000000..e888a6ee 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 00000000..16fe7d6b --- /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 00000000..eda9d1bd 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 00000000..51f743df --- /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 00000000..b25e74fc 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 00000000..0881d15b --- /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 00000000..91fc6d0e Binary files /dev/null and b/blockchains/solana/assets/3HxDM7xreHuop94zzzVP39fTKLvJCwHcSYgrSf8cyg5M/logo.png differ diff --git a/blockchains/solana/assets/3K6rftdAaQYMPunrtNRHgnK2UAtjm2JwyT2oCiTDouYE/info.json b/blockchains/solana/assets/3K6rftdAaQYMPunrtNRHgnK2UAtjm2JwyT2oCiTDouYE/info.json new file mode 100644 index 00000000..219737a6 --- /dev/null +++ b/blockchains/solana/assets/3K6rftdAaQYMPunrtNRHgnK2UAtjm2JwyT2oCiTDouYE/info.json @@ -0,0 +1,11 @@ +{ + "name": "XCOPE", + "symbol": "XCOPE", + "type": "SPL", + "decimals": 0, + "description": "Acquire COPE in a fun and low risk way, by unlocking your cope report and reaching the top of the COPE Index", + "website": "https://www.unlimitedcope.com", + "explorer": "https://solscan.io/token/3K6rftdAaQYMPunrtNRHgnK2UAtjm2JwyT2oCiTDouYE", + "status": "active", + "id": "3K6rftdAaQYMPunrtNRHgnK2UAtjm2JwyT2oCiTDouYE" +} \ No newline at end of file diff --git a/blockchains/solana/assets/3K6rftdAaQYMPunrtNRHgnK2UAtjm2JwyT2oCiTDouYE/logo.png b/blockchains/solana/assets/3K6rftdAaQYMPunrtNRHgnK2UAtjm2JwyT2oCiTDouYE/logo.png new file mode 100644 index 00000000..625d4116 Binary files /dev/null and b/blockchains/solana/assets/3K6rftdAaQYMPunrtNRHgnK2UAtjm2JwyT2oCiTDouYE/logo.png differ diff --git a/blockchains/solana/assets/3KkQ3AaMs2nZoKvYzGnh5bwRocAGFFFzDWUR4hLT7JpF/info.json b/blockchains/solana/assets/3KkQ3AaMs2nZoKvYzGnh5bwRocAGFFFzDWUR4hLT7JpF/info.json new file mode 100644 index 00000000..7038b44b --- /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 00000000..46d8dc26 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 00000000..1950cbbb --- /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 00000000..7711edf5 --- /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 00000000..1d15389d 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 00000000..6ae21269 --- /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 00000000..817e9fda 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 00000000..26d2608b --- /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 00000000..f99a52d0 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 00000000..ac61218a --- /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 00000000..a87897b9 Binary files /dev/null and b/blockchains/solana/assets/3N2ETvNpPNAxhcaXgkhKoY1yDnQfs41Wnxsx5qNJpump/logo.png differ diff --git a/blockchains/solana/assets/3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh/info.json b/blockchains/solana/assets/3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh/info.json new file mode 100644 index 00000000..554dbc20 --- /dev/null +++ b/blockchains/solana/assets/3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh/info.json @@ -0,0 +1,14 @@ +{ + "name": "Wrapped BTC (Portal)", + "type": "SPL", + "symbol": "WBTC", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.wbtc.network/", + "explorer": "https://solscan.io/token/3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh", + "status": "active", + "id": "3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh/logo.png b/blockchains/solana/assets/3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh/logo.png new file mode 100644 index 00000000..d603db0e Binary files /dev/null and b/blockchains/solana/assets/3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh/logo.png differ diff --git a/blockchains/solana/assets/3Puwt98kwKFrvL16UYh8DB7weCBTzABapMM5SujNpump/info.json b/blockchains/solana/assets/3Puwt98kwKFrvL16UYh8DB7weCBTzABapMM5SujNpump/info.json new file mode 100644 index 00000000..e642d752 --- /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 00000000..0f9d2bbd --- /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 00000000..7a721bb1 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 00000000..1d6b1ead --- /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 00000000..885f0076 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 00000000..58cb180b --- /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 00000000..3e87db70 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 00000000..e65f7f6c --- /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 00000000..fb36f0a5 --- /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 00000000..38834697 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 00000000..d1c42822 --- /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 00000000..75418ea7 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 00000000..12562932 --- /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 00000000..010f91ec Binary files /dev/null and b/blockchains/solana/assets/3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC/logo.png differ diff --git a/blockchains/solana/assets/3UCMiSnkcnkPE1pgQ5ggPCBv6dXgVUy16TmMUe1WpG9x/info.json b/blockchains/solana/assets/3UCMiSnkcnkPE1pgQ5ggPCBv6dXgVUy16TmMUe1WpG9x/info.json new file mode 100644 index 00000000..e59712c4 --- /dev/null +++ b/blockchains/solana/assets/3UCMiSnkcnkPE1pgQ5ggPCBv6dXgVUy16TmMUe1WpG9x/info.json @@ -0,0 +1,14 @@ +{ + "name": "Aleph.im (Portal)", + "type": "SPL", + "symbol": "ALEPH", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://aleph.im/", + "explorer": "https://solscan.io/token/3UCMiSnkcnkPE1pgQ5ggPCBv6dXgVUy16TmMUe1WpG9x", + "status": "active", + "id": "3UCMiSnkcnkPE1pgQ5ggPCBv6dXgVUy16TmMUe1WpG9x", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3UCMiSnkcnkPE1pgQ5ggPCBv6dXgVUy16TmMUe1WpG9x/logo.png b/blockchains/solana/assets/3UCMiSnkcnkPE1pgQ5ggPCBv6dXgVUy16TmMUe1WpG9x/logo.png new file mode 100644 index 00000000..93a2674e Binary files /dev/null and b/blockchains/solana/assets/3UCMiSnkcnkPE1pgQ5ggPCBv6dXgVUy16TmMUe1WpG9x/logo.png differ diff --git a/blockchains/solana/assets/3UYS3XXYC9yWvNyBWFKqqb5w9YQfX65RQzoAKd8jEUCB/info.json b/blockchains/solana/assets/3UYS3XXYC9yWvNyBWFKqqb5w9YQfX65RQzoAKd8jEUCB/info.json new file mode 100644 index 00000000..b0bc3027 --- /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 00000000..b1f477c8 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 00000000..6f99e3ee --- /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 00000000..6844d1d4 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 00000000..2b78b144 --- /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 00000000..80f07ef3 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 00000000..8ee6681e --- /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 00000000..80e5179e 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 00000000..683f4eeb --- /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 00000000..b5138bd3 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 00000000..5f48b155 --- /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 00000000..ef438572 --- /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 00000000..7a3a13c0 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 00000000..bcee8b38 --- /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 00000000..10047533 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 00000000..b20f5aaf --- /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 00000000..bccc0b1b 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 00000000..bafa6acc --- /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 00000000..d87e27d6 Binary files /dev/null and b/blockchains/solana/assets/3Yie9s6iuEmk8aiXYC19xaq2iccTuFzyfKBWv6gFpump/logo.png differ diff --git a/blockchains/solana/assets/3a2VW9t5N6p4baMW3M6yLH1UJ9imMt7VsyUk6ouXPVLq/info.json b/blockchains/solana/assets/3a2VW9t5N6p4baMW3M6yLH1UJ9imMt7VsyUk6ouXPVLq/info.json new file mode 100644 index 00000000..caaf156c --- /dev/null +++ b/blockchains/solana/assets/3a2VW9t5N6p4baMW3M6yLH1UJ9imMt7VsyUk6ouXPVLq/info.json @@ -0,0 +1,14 @@ +{ + "name": "Keep3rV1 (Portal)", + "type": "SPL", + "symbol": "KP3R", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://keep3r.network/", + "explorer": "https://solscan.io/token/3a2VW9t5N6p4baMW3M6yLH1UJ9imMt7VsyUk6ouXPVLq", + "status": "active", + "id": "3a2VW9t5N6p4baMW3M6yLH1UJ9imMt7VsyUk6ouXPVLq", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3a2VW9t5N6p4baMW3M6yLH1UJ9imMt7VsyUk6ouXPVLq/logo.png b/blockchains/solana/assets/3a2VW9t5N6p4baMW3M6yLH1UJ9imMt7VsyUk6ouXPVLq/logo.png new file mode 100644 index 00000000..111db892 Binary files /dev/null and b/blockchains/solana/assets/3a2VW9t5N6p4baMW3M6yLH1UJ9imMt7VsyUk6ouXPVLq/logo.png differ diff --git a/blockchains/solana/assets/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR/info.json b/blockchains/solana/assets/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR/info.json new file mode 100644 index 00000000..0eb085a0 --- /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 00000000..f9dfd397 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 00000000..96e2fd8c --- /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 00000000..c1dade0b --- /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 00000000..9712873e 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 00000000..8ab1bab2 --- /dev/null +++ b/blockchains/solana/assets/3dQTr7ror2QPKQ3GbBCokJUmjErGg8kTJzdnYjNfvi3Z/info.json @@ -0,0 +1,29 @@ +{ + "name": "SwissBorg Token", + "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 00000000..847cda52 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 00000000..dd989ff9 --- /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 00000000..c1cb62e0 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 00000000..e16b0792 --- /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 00000000..26e30c36 --- /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 00000000..7bef25c5 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 new file mode 100644 index 00000000..1b21e26a --- /dev/null +++ b/blockchains/solana/assets/3jzdrXXKxwkBk82u2eCWASZLCKoZs1LQTg87HBEAmBJw/info.json @@ -0,0 +1,29 @@ +{ + "name": "FLOOF", + "symbol": "FLOOF", + "type": "SPL", + "decimals": 1, + "description": "We offer the finest Floof on the Solana blockchain", + "website": "https://www.floofsolana.com/", + "explorer": "https://solscan.io/token/3jzdrXXKxwkBk82u2eCWASZLCKoZs1LQTg87HBEAmBJw", + "status": "active", + "id": "3jzdrXXKxwkBk82u2eCWASZLCKoZs1LQTg87HBEAmBJw", + "links": [ + { + "name": "x", + "url": "https://x.com/FLOOF_SOLANA" + }, + { + "name": "telegram", + "url": "https://t.me/FLOOFSOLANAMEME" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/floof/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/floof" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3jzdrXXKxwkBk82u2eCWASZLCKoZs1LQTg87HBEAmBJw/logo.png b/blockchains/solana/assets/3jzdrXXKxwkBk82u2eCWASZLCKoZs1LQTg87HBEAmBJw/logo.png new file mode 100644 index 00000000..3adc3374 Binary files /dev/null and b/blockchains/solana/assets/3jzdrXXKxwkBk82u2eCWASZLCKoZs1LQTg87HBEAmBJw/logo.png differ diff --git a/blockchains/solana/assets/3oGumEjkZpYUC4abwwJqHqQNr6JbQyUff4SigwWZHBNJ/info.json b/blockchains/solana/assets/3oGumEjkZpYUC4abwwJqHqQNr6JbQyUff4SigwWZHBNJ/info.json new file mode 100644 index 00000000..a70cd912 --- /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 00000000..6bb30fa6 --- /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 00000000..9c301c33 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 00000000..342d1bb8 --- /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 00000000..bd388571 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 00000000..811febf0 --- /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 00000000..0bb63b34 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 new file mode 100644 index 00000000..5dc5cd69 --- /dev/null +++ b/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/info.json @@ -0,0 +1,50 @@ +{ + "name": "Aave Token (Portal)", + "type": "SPL", + "symbol": "AAVE", + "decimals": 8, + "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", + "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 new file mode 100644 index 00000000..d53b1142 Binary files /dev/null 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 00000000..44ae1a1d --- /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 00000000..c5d1a82b 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 00000000..33703ee2 --- /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 00000000..3b782112 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 00000000..bc644e44 --- /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/3x7UeXDF4imKSKnizK9mYyx1M5bTNzpeALfPeB8S6XT9/info.json b/blockchains/solana/assets/3x7UeXDF4imKSKnizK9mYyx1M5bTNzpeALfPeB8S6XT9/info.json new file mode 100644 index 00000000..ed59fba5 --- /dev/null +++ b/blockchains/solana/assets/3x7UeXDF4imKSKnizK9mYyx1M5bTNzpeALfPeB8S6XT9/info.json @@ -0,0 +1,11 @@ +{ + "name": "SKEM", + "symbol": "SKEM", + "type": "SPL", + "decimals": 9, + "description": "SKEM is a Solana meme token with scam busting abilities.", + "website": "https://skem.finance", + "explorer": "https://solscan.io/token/3x7UeXDF4imKSKnizK9mYyx1M5bTNzpeALfPeB8S6XT9", + "status": "active", + "id": "3x7UeXDF4imKSKnizK9mYyx1M5bTNzpeALfPeB8S6XT9" +} \ No newline at end of file diff --git a/blockchains/solana/assets/3x7UeXDF4imKSKnizK9mYyx1M5bTNzpeALfPeB8S6XT9/logo.png b/blockchains/solana/assets/3x7UeXDF4imKSKnizK9mYyx1M5bTNzpeALfPeB8S6XT9/logo.png new file mode 100644 index 00000000..005f248c Binary files /dev/null and b/blockchains/solana/assets/3x7UeXDF4imKSKnizK9mYyx1M5bTNzpeALfPeB8S6XT9/logo.png differ diff --git a/blockchains/solana/assets/3xvLSHrLcM7246X1vu34cM9gNX741kQrzqj6T2HhLvXp/info.json b/blockchains/solana/assets/3xvLSHrLcM7246X1vu34cM9gNX741kQrzqj6T2HhLvXp/info.json new file mode 100644 index 00000000..746cb22d --- /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 00000000..0d6e00e8 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 00000000..233168fb --- /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 00000000..d2ac5e42 Binary files /dev/null and b/blockchains/solana/assets/41fZewbrb8x24yE9KeMJExoVXCDggebPMEwRVvX8pump/logo.png differ diff --git a/blockchains/solana/assets/43VWkd99HjqkhFTZbWBpMpRhjG469nWa7x7uEsgSH7We/info.json b/blockchains/solana/assets/43VWkd99HjqkhFTZbWBpMpRhjG469nWa7x7uEsgSH7We/info.json new file mode 100644 index 00000000..d681de16 --- /dev/null +++ b/blockchains/solana/assets/43VWkd99HjqkhFTZbWBpMpRhjG469nWa7x7uEsgSH7We/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stonks", + "symbol": "STNK", + "type": "SPL", + "decimals": 9, + "description": "Stonks is a meme token that represents the STONKS meme, and to spread awareness about Solana", + "website": "https://www.stonkscoin.org/", + "explorer": "https://solscan.io/token/43VWkd99HjqkhFTZbWBpMpRhjG469nWa7x7uEsgSH7We", + "status": "active", + "id": "43VWkd99HjqkhFTZbWBpMpRhjG469nWa7x7uEsgSH7We" +} \ No newline at end of file diff --git a/blockchains/solana/assets/43VWkd99HjqkhFTZbWBpMpRhjG469nWa7x7uEsgSH7We/logo.png b/blockchains/solana/assets/43VWkd99HjqkhFTZbWBpMpRhjG469nWa7x7uEsgSH7We/logo.png new file mode 100644 index 00000000..5550cc7f Binary files /dev/null and b/blockchains/solana/assets/43VWkd99HjqkhFTZbWBpMpRhjG469nWa7x7uEsgSH7We/logo.png differ diff --git a/blockchains/solana/assets/43m2ewFV5nDepieFjT9EmAQnc1HRtAF247RBpLGFem5F/info.json b/blockchains/solana/assets/43m2ewFV5nDepieFjT9EmAQnc1HRtAF247RBpLGFem5F/info.json new file mode 100644 index 00000000..38e1f5f8 --- /dev/null +++ b/blockchains/solana/assets/43m2ewFV5nDepieFjT9EmAQnc1HRtAF247RBpLGFem5F/info.json @@ -0,0 +1,14 @@ +{ + "name": "USDK (Portal)", + "type": "SPL", + "symbol": "USDK", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.oklink.com/", + "explorer": "https://solscan.io/token/43m2ewFV5nDepieFjT9EmAQnc1HRtAF247RBpLGFem5F", + "status": "active", + "id": "43m2ewFV5nDepieFjT9EmAQnc1HRtAF247RBpLGFem5F", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/43m2ewFV5nDepieFjT9EmAQnc1HRtAF247RBpLGFem5F/logo.png b/blockchains/solana/assets/43m2ewFV5nDepieFjT9EmAQnc1HRtAF247RBpLGFem5F/logo.png new file mode 100644 index 00000000..88ba4342 Binary files /dev/null and b/blockchains/solana/assets/43m2ewFV5nDepieFjT9EmAQnc1HRtAF247RBpLGFem5F/logo.png differ diff --git a/blockchains/solana/assets/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX/info.json b/blockchains/solana/assets/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX/info.json new file mode 100644 index 00000000..de190813 --- /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 00000000..dbb8c478 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 00000000..8c7dd7cc --- /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 00000000..f5a6ea59 --- /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 00000000..54ed0703 Binary files /dev/null and b/blockchains/solana/assets/46Ws3CkfBRjtGumCeH3pNrmpyxPmtJgqYpr7WDeaXXoo/logo.png differ diff --git a/blockchains/solana/assets/49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt/info.json b/blockchains/solana/assets/49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt/info.json new file mode 100644 index 00000000..d92c0947 --- /dev/null +++ b/blockchains/solana/assets/49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt/info.json @@ -0,0 +1,14 @@ +{ + "name": "The Sandbox (Portal)", + "type": "SPL", + "symbol": "SAND", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.sandbox.game/en/", + "explorer": "https://solscan.io/token/49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt", + "status": "active", + "id": "49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt/logo.png b/blockchains/solana/assets/49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt/logo.png new file mode 100644 index 00000000..b3b2a58d Binary files /dev/null and b/blockchains/solana/assets/49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt/logo.png differ diff --git a/blockchains/solana/assets/4AkCN6KLeCmUDjWLg4XyQpuZuWtwBdPcbtBQjsA2pump/info.json b/blockchains/solana/assets/4AkCN6KLeCmUDjWLg4XyQpuZuWtwBdPcbtBQjsA2pump/info.json new file mode 100644 index 00000000..536b45be --- /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 00000000..b6ce4e9c 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 00000000..79194bf0 --- /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 00000000..e5180b01 Binary files /dev/null and b/blockchains/solana/assets/4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump/logo.png differ diff --git a/blockchains/solana/assets/4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao/info.json b/blockchains/solana/assets/4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao/info.json new file mode 100644 index 00000000..3c0a428f --- /dev/null +++ b/blockchains/solana/assets/4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao/info.json @@ -0,0 +1,14 @@ +{ + "name": "AnchorUST (Portal)", + "type": "SPL", + "symbol": "aUST", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://anchorprotocol.com/", + "explorer": "https://solscan.io/token/4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao", + "status": "active", + "id": "4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao/logo.png b/blockchains/solana/assets/4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao/logo.png new file mode 100644 index 00000000..715ef20d Binary files /dev/null and b/blockchains/solana/assets/4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao/logo.png differ diff --git a/blockchains/solana/assets/4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP/info.json b/blockchains/solana/assets/4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP/info.json new file mode 100644 index 00000000..eedcec87 --- /dev/null +++ b/blockchains/solana/assets/4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP/info.json @@ -0,0 +1,14 @@ +{ + "name": "DAI (Portal from Polygon)", + "type": "SPL", + "symbol": "DAIpo", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://makerdao.com/", + "explorer": "https://solscan.io/token/4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP", + "status": "active", + "id": "4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP/logo.png b/blockchains/solana/assets/4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP/logo.png new file mode 100644 index 00000000..6c0a1171 Binary files /dev/null and b/blockchains/solana/assets/4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP/logo.png differ diff --git a/blockchains/solana/assets/4G3kNxwaA2UQHDpaQtJWQm1SReXcUD7LkT14v2oEs7rV/info.json b/blockchains/solana/assets/4G3kNxwaA2UQHDpaQtJWQm1SReXcUD7LkT14v2oEs7rV/info.json new file mode 100644 index 00000000..7096743b --- /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 00000000..6b3749e7 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 00000000..16531ddc --- /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 00000000..9c3bbbb2 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 00000000..f07cc220 --- /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 00000000..2b6a03c1 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 00000000..df5d3882 --- /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 00000000..dfc3b80e Binary files /dev/null and b/blockchains/solana/assets/4HjE7Eebj7iowo1GFfthmvvcp1Zb4QUXKLc3uq3opump/logo.png differ diff --git a/blockchains/solana/assets/4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU/info.json b/blockchains/solana/assets/4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU/info.json new file mode 100644 index 00000000..6c84acdc --- /dev/null +++ b/blockchains/solana/assets/4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU/info.json @@ -0,0 +1,14 @@ +{ + "name": "dYdX (Portal)", + "type": "SPL", + "symbol": "DYDX", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://dydx.exchange/", + "explorer": "https://solscan.io/token/4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU", + "status": "active", + "id": "4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU/logo.png b/blockchains/solana/assets/4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU/logo.png new file mode 100644 index 00000000..c778c547 Binary files /dev/null and b/blockchains/solana/assets/4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU/logo.png differ diff --git a/blockchains/solana/assets/4JFcUJ1HfFKz2F8thdu2frk558EjrLvKEmeMq1ZM2xBP/info.json b/blockchains/solana/assets/4JFcUJ1HfFKz2F8thdu2frk558EjrLvKEmeMq1ZM2xBP/info.json new file mode 100644 index 00000000..1393c57a --- /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 00000000..1a620c7c 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 00000000..2774e171 --- /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 00000000..34e3e5bc 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 00000000..f0417116 --- /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 00000000..5aae15f2 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 00000000..8e204de0 --- /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 00000000..ae84e34f 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 00000000..4a1bba1e --- /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 new file mode 100644 index 00000000..7e3666a1 --- /dev/null +++ b/blockchains/solana/assets/4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t/info.json @@ -0,0 +1,25 @@ +{ + "name": "Crypto Cavemen", + "symbol": "CAVE", + "type": "SPL", + "decimals": 6, + "description": "The Crypto Cavemen Club is an exclusive NFT community comprised of the world's most prehistoric generation of humans.", + "website": "https://cryptocavemen.io/", + "explorer": "https://solscan.io/token/4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t", + "status": "active", + "id": "4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t", + "links": [ + { + "name": "x", + "url": "https://x.com/TheCavemenClub" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crypto-cavemen-club/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cave" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t/logo.png b/blockchains/solana/assets/4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t/logo.png new file mode 100644 index 00000000..b1961233 Binary files /dev/null and b/blockchains/solana/assets/4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t/logo.png differ diff --git a/blockchains/solana/assets/4TBi66vi32S7J8X1A6eWfaLHYmUXu7CStcEmsJQdpump/info.json b/blockchains/solana/assets/4TBi66vi32S7J8X1A6eWfaLHYmUXu7CStcEmsJQdpump/info.json new file mode 100644 index 00000000..856224e5 --- /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 00000000..841bbcbb Binary files /dev/null and b/blockchains/solana/assets/4TBi66vi32S7J8X1A6eWfaLHYmUXu7CStcEmsJQdpump/logo.png differ diff --git a/blockchains/solana/assets/4ThReWAbAVZjNVgs5Ui9Pk3cZ5TYaD9u6Y89fp6EFzoF/info.json b/blockchains/solana/assets/4ThReWAbAVZjNVgs5Ui9Pk3cZ5TYaD9u6Y89fp6EFzoF/info.json new file mode 100644 index 00000000..f1a24a5e --- /dev/null +++ b/blockchains/solana/assets/4ThReWAbAVZjNVgs5Ui9Pk3cZ5TYaD9u6Y89fp6EFzoF/info.json @@ -0,0 +1,14 @@ +{ + "name": "1sol.io (Portal)", + "type": "SPL", + "symbol": "1SOL", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://1sol.io/", + "explorer": "https://solscan.io/token/4ThReWAbAVZjNVgs5Ui9Pk3cZ5TYaD9u6Y89fp6EFzoF", + "status": "active", + "id": "4ThReWAbAVZjNVgs5Ui9Pk3cZ5TYaD9u6Y89fp6EFzoF", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4ThReWAbAVZjNVgs5Ui9Pk3cZ5TYaD9u6Y89fp6EFzoF/logo.png b/blockchains/solana/assets/4ThReWAbAVZjNVgs5Ui9Pk3cZ5TYaD9u6Y89fp6EFzoF/logo.png new file mode 100644 index 00000000..565e48e3 Binary files /dev/null and b/blockchains/solana/assets/4ThReWAbAVZjNVgs5Ui9Pk3cZ5TYaD9u6Y89fp6EFzoF/logo.png differ diff --git a/blockchains/solana/assets/4TwC4AiF1uUSHES2eBftGqemp6TqjEnKghqiH6dFpump/info.json b/blockchains/solana/assets/4TwC4AiF1uUSHES2eBftGqemp6TqjEnKghqiH6dFpump/info.json new file mode 100644 index 00000000..7eb74f77 --- /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 00000000..1716f53c 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 00000000..82a72e10 --- /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 00000000..adf105a3 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 00000000..7cf34359 --- /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 00000000..cbce4c7c --- /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 00000000..44e33c39 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 00000000..724d6e25 --- /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 00000000..9e7a32f9 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 00000000..4e3a3f99 --- /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 00000000..d9c8dd5b 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 00000000..3038fe10 --- /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 00000000..94b49eb6 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 00000000..d7075dac --- /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 00000000..a38414c6 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 00000000..c7f7c39c --- /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 00000000..0eb096de Binary files /dev/null and b/blockchains/solana/assets/4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump/logo.png differ diff --git a/blockchains/solana/assets/4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4/info.json b/blockchains/solana/assets/4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4/info.json new file mode 100644 index 00000000..0248c06b --- /dev/null +++ b/blockchains/solana/assets/4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4/info.json @@ -0,0 +1,14 @@ +{ + "name": "Smooth Love Potion (Portal)", + "type": "SPL", + "symbol": "SLP", + "decimals": 0, + "description": "Cross Chain Portal Bridged Token", + "website": "https://axieinfinity.com/", + "explorer": "https://solscan.io/token/4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4", + "status": "active", + "id": "4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4/logo.png b/blockchains/solana/assets/4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4/logo.png new file mode 100644 index 00000000..b6a07c3b Binary files /dev/null and b/blockchains/solana/assets/4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4/logo.png differ diff --git a/blockchains/solana/assets/4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R/info.json b/blockchains/solana/assets/4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R/info.json new file mode 100644 index 00000000..3991d2ef --- /dev/null +++ b/blockchains/solana/assets/4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R/info.json @@ -0,0 +1,25 @@ +{ + "name": "Raydium", + "symbol": "RAY", + "type": "SPL", + "decimals": 6, + "description": "Raydium is an on-chain order book automated market maker (AMM) that enables lightning-fast trades, shared liquidity and new features for earning yield.", + "website": "https://raydium.io/", + "explorer": "https://solscan.io/token/4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R", + "status": "active", + "id": "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R", + "links": [ + { + "name": "telegram", + "url": "https://t.me/raydiumprotocol" + }, + { + "name": "x", + "url": "https://x.com/RaydiumProtocol" + }, + { + "name": "discord", + "url": "https://discord.com/invite/6EvFwvCfpx" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R/logo.png b/blockchains/solana/assets/4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R/logo.png new file mode 100644 index 00000000..74e69b48 Binary files /dev/null and b/blockchains/solana/assets/4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R/logo.png differ diff --git a/blockchains/solana/assets/4kHu4VktgzpZW9i8LEsHZrNLJcTV98nGhyZE5JSEpump/info.json b/blockchains/solana/assets/4kHu4VktgzpZW9i8LEsHZrNLJcTV98nGhyZE5JSEpump/info.json new file mode 100644 index 00000000..5db01e8b --- /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 00000000..07b0f2ee 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 00000000..65e5b64b --- /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 00000000..dca95f98 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 00000000..2b8ff4a2 --- /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 00000000..8f8bdfeb --- /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 00000000..02294a48 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 00000000..6c873ec4 --- /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 00000000..eb2db321 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 00000000..93393587 --- /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 00000000..bd1f29af --- /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 00000000..886b7709 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 00000000..6cb689ad --- /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 00000000..92c92a10 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 00000000..8aa2dd64 --- /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 00000000..0e79d307 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 00000000..faf0568d --- /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 00000000..ac3d1375 Binary files /dev/null and b/blockchains/solana/assets/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy/logo.png differ diff --git a/blockchains/solana/assets/4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj/info.json b/blockchains/solana/assets/4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj/info.json new file mode 100644 index 00000000..6abc2a9f --- /dev/null +++ b/blockchains/solana/assets/4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj/info.json @@ -0,0 +1,11 @@ +{ + "name": "LIQ Protocol", + "symbol": "LIQ", + "type": "SPL", + "decimals": 6, + "description": "LIQ is a decentralized liquidation engine built for Serum DEX margin markets on the Solana network", + "website": "https://www.liqsolana.com/", + "explorer": "https://solscan.io/token/4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj", + "status": "active", + "id": "4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj" +} \ No newline at end of file diff --git a/blockchains/solana/assets/4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj/logo.png b/blockchains/solana/assets/4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj/logo.png new file mode 100644 index 00000000..80f94c14 Binary files /dev/null and b/blockchains/solana/assets/4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj/logo.png differ diff --git a/blockchains/solana/assets/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr/info.json b/blockchains/solana/assets/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr/info.json new file mode 100644 index 00000000..4e3c72a8 --- /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 00000000..d5ef5892 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 00000000..d7a162d3 --- /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 00000000..5226bba3 --- /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 00000000..686f0189 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 00000000..0af52465 --- /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 00000000..03e36e2c --- /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 00000000..bf338825 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 00000000..3b0bd7cd --- /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 00000000..678943c2 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 00000000..66375253 --- /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 00000000..d833790f --- /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 00000000..3b0557ba 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 00000000..b5ce7e53 --- /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 00000000..f5109006 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 00000000..54ab7e2d --- /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 00000000..35c9168f 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 00000000..8907c759 --- /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 00000000..83d41320 --- /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 00000000..506788d2 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 00000000..2666391c --- /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 00000000..a84b2578 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 00000000..55bb92f6 --- /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 00000000..d41168eb 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 00000000..84943436 --- /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 00000000..7d33c8c9 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 00000000..465bdb54 --- /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 00000000..0f0e6cfe 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 00000000..623662a5 --- /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 00000000..02d9f572 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 00000000..2bf8c5cb --- /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 00000000..9d66724a 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 00000000..575c921f --- /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 00000000..2fb1b6bc 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 00000000..a44c9438 --- /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/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2/info.json b/blockchains/solana/assets/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2/info.json new file mode 100644 index 00000000..336aa0b7 --- /dev/null +++ b/blockchains/solana/assets/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2/info.json @@ -0,0 +1,14 @@ +{ + "name": "Binance USD (Portal from BSC)", + "type": "SPL", + "symbol": "BUSDbs", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.paxos.com/busd/", + "explorer": "https://solscan.io/token/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2", + "status": "active", + "id": "5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2/logo.png b/blockchains/solana/assets/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2/logo.png new file mode 100644 index 00000000..58b66f7e Binary files /dev/null and b/blockchains/solana/assets/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2/logo.png differ diff --git a/blockchains/solana/assets/5SVG3T9CNQsm2kEwzbRq6hASqh1oGfjqTtLXYUibpump/info.json b/blockchains/solana/assets/5SVG3T9CNQsm2kEwzbRq6hASqh1oGfjqTtLXYUibpump/info.json new file mode 100644 index 00000000..8d3f5f2e --- /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 00000000..196448a8 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 00000000..46177e72 --- /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 00000000..43211c31 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 00000000..80cb91bf --- /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 00000000..c45d9dbd Binary files /dev/null and b/blockchains/solana/assets/5ToDNkiBAK6k697RRyngTburU7yZNFZFx7jzsD1Uc7pK/logo.png differ diff --git a/blockchains/solana/assets/5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG/info.json b/blockchains/solana/assets/5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG/info.json new file mode 100644 index 00000000..4e31d062 --- /dev/null +++ b/blockchains/solana/assets/5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG/info.json @@ -0,0 +1,14 @@ +{ + "name": "Chiliz (Portal)", + "type": "SPL", + "symbol": "CHZ", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.chiliz.com/", + "explorer": "https://solscan.io/token/5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG", + "status": "active", + "id": "5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG/logo.png b/blockchains/solana/assets/5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG/logo.png new file mode 100644 index 00000000..fb704aea Binary files /dev/null and b/blockchains/solana/assets/5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG/logo.png differ diff --git a/blockchains/solana/assets/5UAMZkfNmuVcKzr2wo8Jqw4R1k8vfdAVJNN6h3bVpump/info.json b/blockchains/solana/assets/5UAMZkfNmuVcKzr2wo8Jqw4R1k8vfdAVJNN6h3bVpump/info.json new file mode 100644 index 00000000..9037ff76 --- /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 00000000..1a0342bb 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 00000000..861820ae --- /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 00000000..ebb53564 Binary files /dev/null and b/blockchains/solana/assets/5Uare15D5AExZbC9DvQ9NbaMxRbKBeuNhnKCudPKBMjx/logo.png differ diff --git a/blockchains/solana/assets/5Wc4U1ZoQRzF4tPdqKQzBwRSjYe8vEf3EvZMuXgtKUW6/info.json b/blockchains/solana/assets/5Wc4U1ZoQRzF4tPdqKQzBwRSjYe8vEf3EvZMuXgtKUW6/info.json new file mode 100644 index 00000000..4882bce5 --- /dev/null +++ b/blockchains/solana/assets/5Wc4U1ZoQRzF4tPdqKQzBwRSjYe8vEf3EvZMuXgtKUW6/info.json @@ -0,0 +1,14 @@ +{ + "name": "LuaSwap (Portal)", + "type": "SPL", + "symbol": "LUA", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://luaswap.org/#/", + "explorer": "https://solscan.io/token/5Wc4U1ZoQRzF4tPdqKQzBwRSjYe8vEf3EvZMuXgtKUW6", + "status": "active", + "id": "5Wc4U1ZoQRzF4tPdqKQzBwRSjYe8vEf3EvZMuXgtKUW6", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5Wc4U1ZoQRzF4tPdqKQzBwRSjYe8vEf3EvZMuXgtKUW6/logo.png b/blockchains/solana/assets/5Wc4U1ZoQRzF4tPdqKQzBwRSjYe8vEf3EvZMuXgtKUW6/logo.png new file mode 100644 index 00000000..82083624 Binary files /dev/null and b/blockchains/solana/assets/5Wc4U1ZoQRzF4tPdqKQzBwRSjYe8vEf3EvZMuXgtKUW6/logo.png differ diff --git a/blockchains/solana/assets/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN/info.json b/blockchains/solana/assets/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN/info.json new file mode 100644 index 00000000..42bcd710 --- /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 00000000..2824c812 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 00000000..9275d998 --- /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 00000000..836e0c3a 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 00000000..bd47744c --- /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 00000000..a69d7af4 --- /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 00000000..509dbe1a Binary files /dev/null and b/blockchains/solana/assets/5cbq1HriesW4zHpFEk9Gc8UT4ccmfHcBTDCa2XcBduTo/logo.png differ diff --git a/blockchains/solana/assets/5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1/info.json b/blockchains/solana/assets/5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1/info.json new file mode 100644 index 00000000..5076d435 --- /dev/null +++ b/blockchains/solana/assets/5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (PoS) (Portal from Polygon)", + "type": "SPL", + "symbol": "USDTpo", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://solscan.io/token/5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1", + "status": "active", + "id": "5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1/logo.png b/blockchains/solana/assets/5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1/logo.png new file mode 100644 index 00000000..3555ddd3 Binary files /dev/null and b/blockchains/solana/assets/5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1/logo.png differ diff --git a/blockchains/solana/assets/5gs8nf4wojB5EXgDUWNLwXpknzgV2YWDhveAeBZpVLbp/info.json b/blockchains/solana/assets/5gs8nf4wojB5EXgDUWNLwXpknzgV2YWDhveAeBZpVLbp/info.json new file mode 100644 index 00000000..0e6b5d73 --- /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 00000000..187a139a 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 00000000..a2b8385a --- /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 00000000..32e8069f Binary files /dev/null and b/blockchains/solana/assets/5hT2o25X9tGXipwhLckaUdgnxrZ6Y8eiUwdhpLeondo/logo.png differ diff --git a/blockchains/solana/assets/5hcdG6NjQwiNhVa9bcyaaDsCyA1muPQ6WRzQwHfgeeKo/info.json b/blockchains/solana/assets/5hcdG6NjQwiNhVa9bcyaaDsCyA1muPQ6WRzQwHfgeeKo/info.json new file mode 100644 index 00000000..fd53f06b --- /dev/null +++ b/blockchains/solana/assets/5hcdG6NjQwiNhVa9bcyaaDsCyA1muPQ6WRzQwHfgeeKo/info.json @@ -0,0 +1,14 @@ +{ + "name": "SWAG Finance (Portal)", + "type": "SPL", + "symbol": "SWAG", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.swag.finance/", + "explorer": "https://solscan.io/token/5hcdG6NjQwiNhVa9bcyaaDsCyA1muPQ6WRzQwHfgeeKo", + "status": "active", + "id": "5hcdG6NjQwiNhVa9bcyaaDsCyA1muPQ6WRzQwHfgeeKo", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5hcdG6NjQwiNhVa9bcyaaDsCyA1muPQ6WRzQwHfgeeKo/logo.png b/blockchains/solana/assets/5hcdG6NjQwiNhVa9bcyaaDsCyA1muPQ6WRzQwHfgeeKo/logo.png new file mode 100644 index 00000000..e6659582 Binary files /dev/null and b/blockchains/solana/assets/5hcdG6NjQwiNhVa9bcyaaDsCyA1muPQ6WRzQwHfgeeKo/logo.png differ diff --git a/blockchains/solana/assets/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz/info.json b/blockchains/solana/assets/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz/info.json new file mode 100644 index 00000000..d51bb500 --- /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 00000000..b9d430bd 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 00000000..223eae55 --- /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 00000000..fafcb987 Binary files /dev/null and b/blockchains/solana/assets/5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp/logo.png differ diff --git a/blockchains/solana/assets/5njTmK53Ss5jkiHHZvzabVzZj6ztu6WYWpAPYgbVnbjs/info.json b/blockchains/solana/assets/5njTmK53Ss5jkiHHZvzabVzZj6ztu6WYWpAPYgbVnbjs/info.json new file mode 100644 index 00000000..d796e67e --- /dev/null +++ b/blockchains/solana/assets/5njTmK53Ss5jkiHHZvzabVzZj6ztu6WYWpAPYgbVnbjs/info.json @@ -0,0 +1,14 @@ +{ + "name": "Quickswap (Portal)", + "type": "SPL", + "symbol": "QUICK", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://quickswap.exchange/", + "explorer": "https://solscan.io/token/5njTmK53Ss5jkiHHZvzabVzZj6ztu6WYWpAPYgbVnbjs", + "status": "active", + "id": "5njTmK53Ss5jkiHHZvzabVzZj6ztu6WYWpAPYgbVnbjs", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5njTmK53Ss5jkiHHZvzabVzZj6ztu6WYWpAPYgbVnbjs/logo.png b/blockchains/solana/assets/5njTmK53Ss5jkiHHZvzabVzZj6ztu6WYWpAPYgbVnbjs/logo.png new file mode 100644 index 00000000..12637385 Binary files /dev/null and b/blockchains/solana/assets/5njTmK53Ss5jkiHHZvzabVzZj6ztu6WYWpAPYgbVnbjs/logo.png differ diff --git a/blockchains/solana/assets/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm/info.json b/blockchains/solana/assets/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm/info.json new file mode 100644 index 00000000..02077a49 --- /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 00000000..d290a632 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 00000000..3474f618 --- /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 00000000..14e1080b 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 00000000..1379a18b --- /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 00000000..a41bf2cb 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 00000000..a2a5ef03 --- /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 00000000..9e248db1 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 00000000..a8a05b80 --- /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 00000000..a448f9dc 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 00000000..49cb8b5c --- /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 00000000..8ce62927 --- /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 00000000..2c2455f6 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 00000000..fa6458ce --- /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 00000000..8bae7f2b 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 00000000..fe406206 --- /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 00000000..41b0e817 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 00000000..5e00149f --- /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 00000000..fab59275 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 00000000..ee94ac5c --- /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 00000000..686786cc 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 00000000..e95fd93a --- /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 00000000..07307e68 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 00000000..56bf5c0f --- /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 00000000..e524811b 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 00000000..a63d24b5 --- /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 00000000..3fe57f13 Binary files /dev/null and b/blockchains/solana/assets/63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9/logo.png differ diff --git a/blockchains/solana/assets/64L6o4G2H7Ln1vN7AHZsUMW4pbFciHyuwn4wUdSbcFxh/info.json b/blockchains/solana/assets/64L6o4G2H7Ln1vN7AHZsUMW4pbFciHyuwn4wUdSbcFxh/info.json new file mode 100644 index 00000000..9d0d5544 --- /dev/null +++ b/blockchains/solana/assets/64L6o4G2H7Ln1vN7AHZsUMW4pbFciHyuwn4wUdSbcFxh/info.json @@ -0,0 +1,14 @@ +{ + "name": "Keep Network (Portal)", + "type": "SPL", + "symbol": "KEEP", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://keep.network/", + "explorer": "https://solscan.io/token/64L6o4G2H7Ln1vN7AHZsUMW4pbFciHyuwn4wUdSbcFxh", + "status": "active", + "id": "64L6o4G2H7Ln1vN7AHZsUMW4pbFciHyuwn4wUdSbcFxh", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/64L6o4G2H7Ln1vN7AHZsUMW4pbFciHyuwn4wUdSbcFxh/logo.png b/blockchains/solana/assets/64L6o4G2H7Ln1vN7AHZsUMW4pbFciHyuwn4wUdSbcFxh/logo.png new file mode 100644 index 00000000..e180b75b Binary files /dev/null and b/blockchains/solana/assets/64L6o4G2H7Ln1vN7AHZsUMW4pbFciHyuwn4wUdSbcFxh/logo.png differ diff --git a/blockchains/solana/assets/66dzGbVZg9cBNb3sTWd9iAtDZKjgAyztNwAhTitfgoLj/info.json b/blockchains/solana/assets/66dzGbVZg9cBNb3sTWd9iAtDZKjgAyztNwAhTitfgoLj/info.json new file mode 100644 index 00000000..a499f8ea --- /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 00000000..c1811eb6 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 00000000..106cc8ff --- /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 00000000..bf1fc976 --- /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 00000000..6d517db4 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 00000000..4402d210 --- /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 00000000..7f2a573b 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 00000000..bf0d18ca --- /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 00000000..d5d39014 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 00000000..5b57095f --- /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 00000000..f871d917 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 00000000..c4504256 --- /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 00000000..f2e7b759 --- /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 00000000..403432c6 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 00000000..3b3ca99f --- /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 00000000..d77bbfba 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 00000000..fe9d6e86 --- /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 00000000..bb28bb6a 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 00000000..06dfb074 --- /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 00000000..e35d5a3e 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 00000000..5f8e2f74 --- /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 00000000..e2faeafe 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 00000000..e8fab2d8 --- /dev/null +++ b/blockchains/solana/assets/6JLG8iUkAuqiBhL3j2ckDMDf5oWAa6awmyaWezKondo/info.json @@ -0,0 +1,24 @@ +{ + "name": "iShares Bitcoin Trust (Ondo Tokenized)", + "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 00000000..d163a75f 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 00000000..e6f44a8e --- /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 00000000..0dcd5b4c 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 new file mode 100644 index 00000000..f71f1fee --- /dev/null +++ b/blockchains/solana/assets/6LX8BhMQ4Sy2otmAWj7Y5sKd9YTVVUgfMsBzT6B9W7ct/info.json @@ -0,0 +1,14 @@ +{ + "name": "Frax Share (Portal)", + "type": "SPL", + "symbol": "FXS", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://frax.finance", + "explorer": "https://solscan.io/token/6LX8BhMQ4Sy2otmAWj7Y5sKd9YTVVUgfMsBzT6B9W7ct", + "status": "active", + "id": "6LX8BhMQ4Sy2otmAWj7Y5sKd9YTVVUgfMsBzT6B9W7ct", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6LX8BhMQ4Sy2otmAWj7Y5sKd9YTVVUgfMsBzT6B9W7ct/logo.png b/blockchains/solana/assets/6LX8BhMQ4Sy2otmAWj7Y5sKd9YTVVUgfMsBzT6B9W7ct/logo.png new file mode 100644 index 00000000..fe4a799c Binary files /dev/null and b/blockchains/solana/assets/6LX8BhMQ4Sy2otmAWj7Y5sKd9YTVVUgfMsBzT6B9W7ct/logo.png differ diff --git a/blockchains/solana/assets/6LrY2g3dUsnZcJXjXw5EUd9LjnSEz8mA9TbKNEstNT7D/info.json b/blockchains/solana/assets/6LrY2g3dUsnZcJXjXw5EUd9LjnSEz8mA9TbKNEstNT7D/info.json new file mode 100644 index 00000000..78e77d1a --- /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 00000000..335022cb 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 00000000..3af485ff --- /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 00000000..3dfd5415 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 00000000..0c9e62ba --- /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 00000000..8714206d Binary files /dev/null and b/blockchains/solana/assets/6NcdiK8B5KK2DzKvzvCfqi8EHaEqu48fyEzC8Mm9pump/logo.png differ diff --git a/blockchains/solana/assets/6Q5fvsJ6kgAFmisgDqqyaFd9FURYzHf8MCUbpAUaGZnE/info.json b/blockchains/solana/assets/6Q5fvsJ6kgAFmisgDqqyaFd9FURYzHf8MCUbpAUaGZnE/info.json new file mode 100644 index 00000000..7eb50f96 --- /dev/null +++ b/blockchains/solana/assets/6Q5fvsJ6kgAFmisgDqqyaFd9FURYzHf8MCUbpAUaGZnE/info.json @@ -0,0 +1,14 @@ +{ + "name": "OpenDAO (Portal)", + "type": "SPL", + "symbol": "SOS", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.theopendao.com/", + "explorer": "https://solscan.io/token/6Q5fvsJ6kgAFmisgDqqyaFd9FURYzHf8MCUbpAUaGZnE", + "status": "active", + "id": "6Q5fvsJ6kgAFmisgDqqyaFd9FURYzHf8MCUbpAUaGZnE", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6Q5fvsJ6kgAFmisgDqqyaFd9FURYzHf8MCUbpAUaGZnE/logo.png b/blockchains/solana/assets/6Q5fvsJ6kgAFmisgDqqyaFd9FURYzHf8MCUbpAUaGZnE/logo.png new file mode 100644 index 00000000..9d43a7dd Binary files /dev/null and b/blockchains/solana/assets/6Q5fvsJ6kgAFmisgDqqyaFd9FURYzHf8MCUbpAUaGZnE/logo.png differ diff --git a/blockchains/solana/assets/6Qn2muot6pbTTWJ6F83zrpBQTFjb69FcmG1xbg64RoUD/info.json b/blockchains/solana/assets/6Qn2muot6pbTTWJ6F83zrpBQTFjb69FcmG1xbg64RoUD/info.json new file mode 100644 index 00000000..2d5c0e10 --- /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 00000000..381ac281 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 00000000..aec9c731 --- /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 00000000..aaa061d1 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 00000000..33650b92 --- /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 00000000..2a4102ca 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 00000000..f9a0a9e7 --- /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 00000000..b0ecbb13 --- /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 00000000..2ff2ea8e 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 00000000..d2766a7e --- /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 00000000..ec929b31 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 00000000..bd2b80a8 --- /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 00000000..09c07b1c --- /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 00000000..5d1a20f9 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 00000000..1bc4703a --- /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 00000000..fce71a95 --- /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 00000000..87def3f4 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 00000000..34d774aa --- /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 00000000..24b90679 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 00000000..82e542fe --- /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 00000000..2ea9adc7 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 00000000..1d2a0b75 --- /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 00000000..10d42af0 Binary files /dev/null and b/blockchains/solana/assets/6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS/logo.png differ diff --git a/blockchains/solana/assets/6nKUU36URHkewHg5GGGAgxs6szkE4VTioGUT5txQqJFU/info.json b/blockchains/solana/assets/6nKUU36URHkewHg5GGGAgxs6szkE4VTioGUT5txQqJFU/info.json new file mode 100644 index 00000000..6c87ded7 --- /dev/null +++ b/blockchains/solana/assets/6nKUU36URHkewHg5GGGAgxs6szkE4VTioGUT5txQqJFU/info.json @@ -0,0 +1,14 @@ +{ + "name": "Dogelon Mars (Portal)", + "type": "SPL", + "symbol": "ELON", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://dogelonmars.com/", + "explorer": "https://solscan.io/token/6nKUU36URHkewHg5GGGAgxs6szkE4VTioGUT5txQqJFU", + "status": "active", + "id": "6nKUU36URHkewHg5GGGAgxs6szkE4VTioGUT5txQqJFU", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6nKUU36URHkewHg5GGGAgxs6szkE4VTioGUT5txQqJFU/logo.png b/blockchains/solana/assets/6nKUU36URHkewHg5GGGAgxs6szkE4VTioGUT5txQqJFU/logo.png new file mode 100644 index 00000000..b51db513 Binary files /dev/null and b/blockchains/solana/assets/6nKUU36URHkewHg5GGGAgxs6szkE4VTioGUT5txQqJFU/logo.png differ diff --git a/blockchains/solana/assets/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx/info.json b/blockchains/solana/assets/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx/info.json new file mode 100644 index 00000000..e57998cb --- /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 00000000..c8820c4a 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 00000000..1511e557 --- /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 00000000..299e2b90 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 00000000..6a327bd6 --- /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 00000000..68859095 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 00000000..dfe9eda5 --- /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 00000000..77845836 --- /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 00000000..3584edcd 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 00000000..f0d8c60c --- /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 00000000..62c700d1 --- /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 00000000..acd877a7 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 00000000..bf46a5af --- /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 00000000..6546dcac 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 00000000..9889f9b5 --- /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 00000000..e3f1fa3c 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 00000000..efca9486 --- /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 00000000..47b754cb 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 00000000..83696241 --- /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 00000000..52051cc4 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 00000000..8659ebe0 --- /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 00000000..6db807e6 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 00000000..d2d3a092 --- /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 00000000..7f67bf98 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 00000000..a60f2448 --- /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 00000000..c7b1e8a4 --- /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 00000000..382b4c1e 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 00000000..04da3116 --- /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 00000000..6d15c124 --- /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 00000000..ba89f2dd 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 00000000..1f86a81b --- /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 00000000..40883cd3 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 00000000..670b1d45 --- /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 00000000..dc22735b 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 00000000..6eb4d75e --- /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 00000000..749edc58 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 00000000..3caadad7 --- /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 00000000..7bc67562 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 00000000..54a84dc9 --- /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 00000000..c3ace10a Binary files /dev/null and b/blockchains/solana/assets/7SZMQtjz46ciGTozmUsdsCYysYsEQutL6Y2KRmQ8rich/logo.png differ diff --git a/blockchains/solana/assets/7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw/info.json b/blockchains/solana/assets/7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw/info.json new file mode 100644 index 00000000..4e204d5f --- /dev/null +++ b/blockchains/solana/assets/7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw/info.json @@ -0,0 +1,14 @@ +{ + "name": "HUSD Stablecoin (Portal)", + "type": "SPL", + "symbol": "HUSD", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.stcoins.com/", + "explorer": "https://solscan.io/token/7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw", + "status": "active", + "id": "7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw/logo.png b/blockchains/solana/assets/7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw/logo.png new file mode 100644 index 00000000..df5cef36 Binary files /dev/null and b/blockchains/solana/assets/7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw/logo.png differ diff --git a/blockchains/solana/assets/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG/info.json b/blockchains/solana/assets/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG/info.json new file mode 100644 index 00000000..df698cb9 --- /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 00000000..4193ae2b 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 00000000..8a5799d2 --- /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 00000000..ba7f0ac2 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 00000000..46a0542d --- /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 00000000..7b3d7909 --- /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 00000000..87fb6982 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 00000000..da076862 --- /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 00000000..6cfde9bc 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 00000000..2da4fad2 --- /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 00000000..17e78e6e --- /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 00000000..878c310d 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 00000000..555d36bb --- /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 00000000..b1d052cf 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 00000000..9497cb33 --- /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 00000000..b2a1d4a5 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 00000000..5229b3b3 --- /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 00000000..56a800c8 --- /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 00000000..7a67e5d2 Binary files /dev/null and b/blockchains/solana/assets/7dUKUopcNWW6CcU4eRxCHh1uiMh32zDrmGf6ufqhxann/logo.png differ diff --git a/blockchains/solana/assets/7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8/info.json b/blockchains/solana/assets/7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8/info.json new file mode 100644 index 00000000..4d48c4d5 --- /dev/null +++ b/blockchains/solana/assets/7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8/info.json @@ -0,0 +1,14 @@ +{ + "name": "Huobi BTC (Portal)", + "type": "SPL", + "symbol": "HBTC", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.hbtc.finance/zh-cn/", + "explorer": "https://solscan.io/token/7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8", + "status": "active", + "id": "7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8/logo.png b/blockchains/solana/assets/7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8/logo.png new file mode 100644 index 00000000..917b1324 Binary files /dev/null and b/blockchains/solana/assets/7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8/logo.png differ diff --git a/blockchains/solana/assets/7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi/info.json b/blockchains/solana/assets/7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi/info.json new file mode 100644 index 00000000..618a58f4 --- /dev/null +++ b/blockchains/solana/assets/7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi/info.json @@ -0,0 +1,14 @@ +{ + "name": "Decentraland (Portal)", + "type": "SPL", + "symbol": "MANA", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://decentraland.org/", + "explorer": "https://solscan.io/token/7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi", + "status": "active", + "id": "7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi/logo.png b/blockchains/solana/assets/7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi/logo.png new file mode 100644 index 00000000..d9617dce Binary files /dev/null and b/blockchains/solana/assets/7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi/logo.png differ diff --git a/blockchains/solana/assets/7dnMwS2yE6NE1PX81B9Xpm7zUhFXmQABqUiHHzWXiEBn/info.json b/blockchains/solana/assets/7dnMwS2yE6NE1PX81B9Xpm7zUhFXmQABqUiHHzWXiEBn/info.json new file mode 100644 index 00000000..16a9d71d --- /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 00000000..7651d7bb 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 00000000..970ade0d --- /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 00000000..59f9933b --- /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 00000000..760e219c 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 00000000..4effbc14 --- /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 00000000..bcc3f2a1 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 new file mode 100644 index 00000000..63c7a972 --- /dev/null +++ b/blockchains/solana/assets/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs/info.json @@ -0,0 +1,14 @@ +{ + "name": "Curve DAO Token (Portal)", + "type": "SPL", + "symbol": "CRV", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.curve.finance/", + "explorer": "https://solscan.io/token/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs", + "status": "active", + "id": "7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs/logo.png b/blockchains/solana/assets/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs/logo.png new file mode 100644 index 00000000..ae4cd47b Binary files /dev/null and b/blockchains/solana/assets/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs/logo.png differ diff --git a/blockchains/solana/assets/7h6xvgE7ybfoWnHdGnvJi9nr979wXnBUtcJN7uYopump/info.json b/blockchains/solana/assets/7h6xvgE7ybfoWnHdGnvJi9nr979wXnBUtcJN7uYopump/info.json new file mode 100644 index 00000000..0604a11a --- /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 00000000..a6e640a8 --- /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 00000000..0ff8ebaa 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 00000000..d31e8ca8 --- /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 00000000..bc4dc23b 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 new file mode 100644 index 00000000..f9bec80b --- /dev/null +++ b/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/info.json @@ -0,0 +1,36 @@ +{ + "name": "Green Metaverse Token", + "symbol": "GMT", + "type": "SPL", + "decimals": 9, + "description": "GMT is the governance token of STEPN, which is a Web3 lifestyle app with fun social elements and gamification design.", + "website": "https://stepn.com/", + "explorer": "https://solscan.io/token/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx", + "status": "active", + "id": "7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx", + "tags": [ + "governance" + ], + "links": [ + { + "name": "reddit", + "url": "https://reddit.com/r/StepN/" + }, + { + "name": "x", + "url": "https://x.com/Stepnofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/green-metaverse-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/stepn" + }, + { + "name": "discord", + "url": "https://discord.com/invite/stepn" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/logo.png b/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/logo.png new file mode 100644 index 00000000..925798e5 Binary files /dev/null and b/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/logo.png differ diff --git a/blockchains/solana/assets/7iBQu5mGrkrJ6jr1dNf6U6Ew9un5UmSS4m67NJPjpump/info.json b/blockchains/solana/assets/7iBQu5mGrkrJ6jr1dNf6U6Ew9un5UmSS4m67NJPjpump/info.json new file mode 100644 index 00000000..b5fb0178 --- /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 00000000..dc9fe9a4 --- /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 00000000..d175aab1 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 00000000..51f7431c --- /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 00000000..471a5680 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 00000000..ce1e2124 --- /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 00000000..3a21a5f1 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 00000000..01c8bb4b --- /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 00000000..a84fcc0a --- /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 00000000..10e20a27 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 00000000..5f5260b6 --- /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 00000000..0a5e07be 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 00000000..438001bd --- /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 00000000..5e1907d1 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 00000000..5b4d7794 --- /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 00000000..c2f3fcd9 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 00000000..6ecff3c1 --- /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 00000000..13f4d282 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 00000000..73a7104f --- /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 00000000..5c050a5a --- /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 00000000..2919c879 --- /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 00000000..333a7cf8 --- /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 00000000..f64da198 Binary files /dev/null and b/blockchains/solana/assets/7unYePWUHcpB28cnS65TpqT2qqmZaftRz9QABkdR8yN7/logo.png differ diff --git a/blockchains/solana/assets/7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs/info.json b/blockchains/solana/assets/7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs/info.json new file mode 100644 index 00000000..a8c8a912 --- /dev/null +++ b/blockchains/solana/assets/7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs/info.json @@ -0,0 +1,14 @@ +{ + "name": "Ether (Portal)", + "type": "SPL", + "symbol": "ETH", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://ethereum.org/en/", + "explorer": "https://solscan.io/token/7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs", + "status": "active", + "id": "7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs/logo.png b/blockchains/solana/assets/7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs/logo.png new file mode 100644 index 00000000..2d99a939 Binary files /dev/null and b/blockchains/solana/assets/7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs/logo.png differ diff --git a/blockchains/solana/assets/7vsKatZ8BAKXXb16ZZMJyg9X3iLn8Zpq4yBPg8mWBLMd/info.json b/blockchains/solana/assets/7vsKatZ8BAKXXb16ZZMJyg9X3iLn8Zpq4yBPg8mWBLMd/info.json new file mode 100644 index 00000000..c6d3febe --- /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 00000000..6c940006 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 00000000..0f6aeb72 --- /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 00000000..c29fbe2f 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 new file mode 100644 index 00000000..00e30914 --- /dev/null +++ b/blockchains/solana/assets/7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU/info.json @@ -0,0 +1,28 @@ +{ + "name": "Samoyedcoin", + "type": "SPL", + "symbol": "SAMO", + "decimals": 9, + "website": "https://samoyedcoin.com/", + "description": "The premier community, dog money, & ambassador of the Solana ecosystem.", + "explorer": "https://solscan.io/token/7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU", + "status": "active", + "id": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU", + "links": [ + { + "name": "x", + "url": "https://x.com/samoyedcoin" + }, + { + "name": "telegram", + "url": "https://t.me/samoyedcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/samoyedcoin/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU/logo.png b/blockchains/solana/assets/7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU/logo.png new file mode 100644 index 00000000..26ad2e6c Binary files /dev/null and b/blockchains/solana/assets/7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU/logo.png differ diff --git a/blockchains/solana/assets/81f9WRdbdpf4qrwLMSrG3DVMHbNUxfPemhGbkE7bpump/info.json b/blockchains/solana/assets/81f9WRdbdpf4qrwLMSrG3DVMHbNUxfPemhGbkE7bpump/info.json new file mode 100644 index 00000000..bac76df4 --- /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 00000000..c64dc3bc 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 00000000..8a37d63f --- /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 00000000..cc54cd49 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 00000000..64c8dd9c --- /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 00000000..4118ab3a --- /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 00000000..a97ce044 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 00000000..76eca23f --- /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 00000000..009afa91 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 00000000..60085d8d --- /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 00000000..fb4aa381 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 00000000..a4dff7ac --- /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 00000000..f18ac750 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 00000000..e359c896 --- /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 00000000..c5d5b677 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 00000000..2d1c8ff9 --- /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 00000000..71435234 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 00000000..486b9245 --- /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 00000000..cb04ac4b 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 00000000..d10c9802 --- /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 00000000..1744b211 --- /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 00000000..478b39fd 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 00000000..ac5b469f --- /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 00000000..0de752c1 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 00000000..ce042ed6 --- /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 00000000..d74a38b1 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 00000000..8ea35c74 --- /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 00000000..302f3d63 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 00000000..2d5ffe3d --- /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 00000000..3be7884f 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 00000000..c789d51f --- /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 00000000..7c970e26 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 00000000..f3d27111 --- /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 00000000..dc316b73 Binary files /dev/null and b/blockchains/solana/assets/8CzPPqenpfRXvjE5DHfE3kMDgJhHwWZ1WXRzs44KsamW/logo.png differ diff --git a/blockchains/solana/assets/8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36/info.json b/blockchains/solana/assets/8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36/info.json new file mode 100644 index 00000000..1fcf4910 --- /dev/null +++ b/blockchains/solana/assets/8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36/info.json @@ -0,0 +1,14 @@ +{ + "name": "Uniswap (Portal)", + "type": "SPL", + "symbol": "UNI", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://uniswap.org/", + "explorer": "https://solscan.io/token/8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36", + "status": "active", + "id": "8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36/logo.png b/blockchains/solana/assets/8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36/logo.png new file mode 100644 index 00000000..66cd2421 Binary files /dev/null and b/blockchains/solana/assets/8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36/logo.png differ diff --git a/blockchains/solana/assets/8GQsW3f7mdwfjqJon2myADcBsSsRjpXmxHYDG8q1pvV6/info.json b/blockchains/solana/assets/8GQsW3f7mdwfjqJon2myADcBsSsRjpXmxHYDG8q1pvV6/info.json new file mode 100644 index 00000000..f14e7143 --- /dev/null +++ b/blockchains/solana/assets/8GQsW3f7mdwfjqJon2myADcBsSsRjpXmxHYDG8q1pvV6/info.json @@ -0,0 +1,11 @@ +{ + "name": "Holdana", + "symbol": "HOLD", + "type": "SPL", + "decimals": 9, + "description": "Holdana is a community-driven token built on Solana Ecosystem. We plan to be the first hold-rewarding token, providing our already strong and fast-growing community a fun & rewarding experience with the blockchain technology.", + "website": "https://holdana.finance", + "explorer": "https://solscan.io/token/8GQsW3f7mdwfjqJon2myADcBsSsRjpXmxHYDG8q1pvV6", + "status": "active", + "id": "8GQsW3f7mdwfjqJon2myADcBsSsRjpXmxHYDG8q1pvV6" +} \ No newline at end of file diff --git a/blockchains/solana/assets/8GQsW3f7mdwfjqJon2myADcBsSsRjpXmxHYDG8q1pvV6/logo.png b/blockchains/solana/assets/8GQsW3f7mdwfjqJon2myADcBsSsRjpXmxHYDG8q1pvV6/logo.png new file mode 100644 index 00000000..1ef87578 Binary files /dev/null and b/blockchains/solana/assets/8GQsW3f7mdwfjqJon2myADcBsSsRjpXmxHYDG8q1pvV6/logo.png differ diff --git a/blockchains/solana/assets/8HGyAAB1yoM1ttS7pXjHMa3dukTFGQggnFFH3hJZgzQh/info.json b/blockchains/solana/assets/8HGyAAB1yoM1ttS7pXjHMa3dukTFGQggnFFH3hJZgzQh/info.json new file mode 100644 index 00000000..542ce865 --- /dev/null +++ b/blockchains/solana/assets/8HGyAAB1yoM1ttS7pXjHMa3dukTFGQggnFFH3hJZgzQh/info.json @@ -0,0 +1,11 @@ +{ + "name": "COPE", + "symbol": "COPE", + "type": "SPL", + "decimals": 6, + "description": "Acquire COPE in a fun and low risk way, by unlocking your cope report and reaching the top of the COPE Index", + "website": "https://www.unlimitedcope.com/", + "explorer": "https://solscan.io/token/8HGyAAB1yoM1ttS7pXjHMa3dukTFGQggnFFH3hJZgzQh", + "status": "active", + "id": "8HGyAAB1yoM1ttS7pXjHMa3dukTFGQggnFFH3hJZgzQh" +} \ No newline at end of file diff --git a/blockchains/solana/assets/8HGyAAB1yoM1ttS7pXjHMa3dukTFGQggnFFH3hJZgzQh/logo.png b/blockchains/solana/assets/8HGyAAB1yoM1ttS7pXjHMa3dukTFGQggnFFH3hJZgzQh/logo.png new file mode 100644 index 00000000..4b6b6591 Binary files /dev/null and b/blockchains/solana/assets/8HGyAAB1yoM1ttS7pXjHMa3dukTFGQggnFFH3hJZgzQh/logo.png differ diff --git a/blockchains/solana/assets/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5/info.json b/blockchains/solana/assets/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5/info.json new file mode 100644 index 00000000..d60107f4 --- /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 00000000..4f77cb57 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 00000000..9aa1de7f --- /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 00000000..d531d238 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 00000000..a2c30f13 --- /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/8PMHT4swUMtBzgHnh5U564N5sjPSiUz2cjEQzFnnP1Fo/info.json b/blockchains/solana/assets/8PMHT4swUMtBzgHnh5U564N5sjPSiUz2cjEQzFnnP1Fo/info.json new file mode 100644 index 00000000..268e6a80 --- /dev/null +++ b/blockchains/solana/assets/8PMHT4swUMtBzgHnh5U564N5sjPSiUz2cjEQzFnnP1Fo/info.json @@ -0,0 +1,11 @@ +{ + "name": "Rope Token", + "symbol": "ROPE", + "type": "SPL", + "decimals": 9, + "description": "$ROPE is a full-scale decentralized ecosystem that brings the well-known market volatility index to the crypto market.", + "website": "https://www.ropesolana.com", + "explorer": "https://solscan.io/token/8PMHT4swUMtBzgHnh5U564N5sjPSiUz2cjEQzFnnP1Fo", + "status": "active", + "id": "8PMHT4swUMtBzgHnh5U564N5sjPSiUz2cjEQzFnnP1Fo" +} \ No newline at end of file diff --git a/blockchains/solana/assets/8PMHT4swUMtBzgHnh5U564N5sjPSiUz2cjEQzFnnP1Fo/logo.png b/blockchains/solana/assets/8PMHT4swUMtBzgHnh5U564N5sjPSiUz2cjEQzFnnP1Fo/logo.png new file mode 100644 index 00000000..b55c8bdd Binary files /dev/null and b/blockchains/solana/assets/8PMHT4swUMtBzgHnh5U564N5sjPSiUz2cjEQzFnnP1Fo/logo.png differ diff --git a/blockchains/solana/assets/8QhSMvYfXome11VgxFMD75hNbGQXW5QTnjA8khENkY2c/info.json b/blockchains/solana/assets/8QhSMvYfXome11VgxFMD75hNbGQXW5QTnjA8khENkY2c/info.json new file mode 100644 index 00000000..87e7f3f9 --- /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 00000000..4af58ef4 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 00000000..300e53cf --- /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 00000000..6e72d490 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 00000000..b0aa66eb --- /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 00000000..69dc6aea 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 00000000..30c3408b --- /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 00000000..0f0d4e7a 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 00000000..4ef5b35e --- /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 00000000..565d8d8d 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 00000000..ec8b433f --- /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 00000000..9f13d213 Binary files /dev/null and b/blockchains/solana/assets/8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR/logo.png differ diff --git a/blockchains/solana/assets/8UJbtpsEubDVkY53rk7d61hNYKkvouicczB2XmuwiG4g/info.json b/blockchains/solana/assets/8UJbtpsEubDVkY53rk7d61hNYKkvouicczB2XmuwiG4g/info.json new file mode 100644 index 00000000..6869951a --- /dev/null +++ b/blockchains/solana/assets/8UJbtpsEubDVkY53rk7d61hNYKkvouicczB2XmuwiG4g/info.json @@ -0,0 +1,14 @@ +{ + "name": "Illuvium (Portal)", + "type": "SPL", + "symbol": "ILV", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://illuvium.io/", + "explorer": "https://solscan.io/token/8UJbtpsEubDVkY53rk7d61hNYKkvouicczB2XmuwiG4g", + "status": "active", + "id": "8UJbtpsEubDVkY53rk7d61hNYKkvouicczB2XmuwiG4g", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8UJbtpsEubDVkY53rk7d61hNYKkvouicczB2XmuwiG4g/logo.png b/blockchains/solana/assets/8UJbtpsEubDVkY53rk7d61hNYKkvouicczB2XmuwiG4g/logo.png new file mode 100644 index 00000000..8b6029ec Binary files /dev/null and b/blockchains/solana/assets/8UJbtpsEubDVkY53rk7d61hNYKkvouicczB2XmuwiG4g/logo.png differ diff --git a/blockchains/solana/assets/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk/info.json b/blockchains/solana/assets/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk/info.json new file mode 100644 index 00000000..49fac911 --- /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 00000000..ff6f5783 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 00000000..ba415d9a --- /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 00000000..e8bfcfb9 --- /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 00000000..a65d2eb7 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 00000000..3dc02cc4 --- /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 00000000..0b4d2235 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 00000000..82b1b672 --- /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 00000000..a6f9c44e 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 new file mode 100644 index 00000000..c521ceb4 --- /dev/null +++ b/blockchains/solana/assets/8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56/info.json @@ -0,0 +1,14 @@ +{ + "name": "Synthetix Network Token (Portal)", + "type": "SPL", + "symbol": "SNX", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.synthetix.io/", + "explorer": "https://solscan.io/token/8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56", + "status": "active", + "id": "8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56/logo.png b/blockchains/solana/assets/8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56/logo.png new file mode 100644 index 00000000..9f614bf2 Binary files /dev/null and b/blockchains/solana/assets/8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56/logo.png differ diff --git a/blockchains/solana/assets/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb/info.json b/blockchains/solana/assets/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb/info.json new file mode 100644 index 00000000..1eaab0aa --- /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 00000000..f8d2a7f7 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 00000000..c832d113 --- /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 00000000..b04c0458 Binary files /dev/null and b/blockchains/solana/assets/8fJCtfbuAaFzdwTnQP84nNhSpZdVy4Uc929eXZRBN8H4/logo.png differ diff --git a/blockchains/solana/assets/8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN/info.json b/blockchains/solana/assets/8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN/info.json new file mode 100644 index 00000000..024f9197 --- /dev/null +++ b/blockchains/solana/assets/8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN/info.json @@ -0,0 +1,14 @@ +{ + "name": "Fantom (Portal from Ethereum)", + "type": "SPL", + "symbol": "FTMet", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "http://fantom.foundation", + "explorer": "https://solscan.io/token/8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN", + "status": "active", + "id": "8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN/logo.png b/blockchains/solana/assets/8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN/logo.png new file mode 100644 index 00000000..3268b4b1 Binary files /dev/null and b/blockchains/solana/assets/8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN/logo.png differ diff --git a/blockchains/solana/assets/8iFwCaf9LdD3GV8e3nJiTJEA93URVBDZ637M8kPvpump/info.json b/blockchains/solana/assets/8iFwCaf9LdD3GV8e3nJiTJEA93URVBDZ637M8kPvpump/info.json new file mode 100644 index 00000000..f7ef5e38 --- /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 00000000..6401acbb --- /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/8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv/info.json b/blockchains/solana/assets/8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv/info.json new file mode 100644 index 00000000..1a2ebe0f --- /dev/null +++ b/blockchains/solana/assets/8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from BSC)", + "type": "SPL", + "symbol": "USDTbs", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://solscan.io/token/8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv", + "status": "active", + "id": "8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv/logo.png b/blockchains/solana/assets/8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv/logo.png new file mode 100644 index 00000000..49821981 Binary files /dev/null and b/blockchains/solana/assets/8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv/logo.png differ diff --git a/blockchains/solana/assets/8rsp8embW4NC54rMTtXjZUDXw5FpnXSwBQgwxtwMpump/info.json b/blockchains/solana/assets/8rsp8embW4NC54rMTtXjZUDXw5FpnXSwBQgwxtwMpump/info.json new file mode 100644 index 00000000..736e0ff8 --- /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 00000000..eba237c5 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 00000000..d69f3255 --- /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 00000000..c2502e8d 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 00000000..6151098a --- /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 00000000..ff18d735 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 00000000..ca55c505 --- /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 00000000..4c457735 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 00000000..731ced97 --- /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 00000000..bf100d3b 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 00000000..47fbcabb --- /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 00000000..7f95df94 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 00000000..83da0128 --- /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 00000000..cc0eec71 --- /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 00000000..7cb576de --- /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 00000000..91421cb0 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 00000000..7ec1fbcc --- /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 00000000..04799082 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 00000000..2bf15b35 --- /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 00000000..3e313762 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 00000000..30e5e7a1 --- /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 00000000..a2a4e456 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 00000000..55993b1f --- /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 00000000..bceb3c3e 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 new file mode 100644 index 00000000..a5e5548a --- /dev/null +++ b/blockchains/solana/assets/9ARQsBfAn65q522cEqSJuse3cLhA31jgWDBGQHeiq7Mg/info.json @@ -0,0 +1,14 @@ +{ + "name": "My Neighbor Alice (Portal)", + "type": "SPL", + "symbol": "ALICE", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.myneighboralice.com/", + "explorer": "https://solscan.io/token/9ARQsBfAn65q522cEqSJuse3cLhA31jgWDBGQHeiq7Mg", + "status": "active", + "id": "9ARQsBfAn65q522cEqSJuse3cLhA31jgWDBGQHeiq7Mg", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9ARQsBfAn65q522cEqSJuse3cLhA31jgWDBGQHeiq7Mg/logo.png b/blockchains/solana/assets/9ARQsBfAn65q522cEqSJuse3cLhA31jgWDBGQHeiq7Mg/logo.png new file mode 100644 index 00000000..927484a8 Binary files /dev/null and b/blockchains/solana/assets/9ARQsBfAn65q522cEqSJuse3cLhA31jgWDBGQHeiq7Mg/logo.png differ diff --git a/blockchains/solana/assets/9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump/info.json b/blockchains/solana/assets/9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump/info.json new file mode 100644 index 00000000..13f037c3 --- /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 00000000..9e5d7d24 Binary files /dev/null and b/blockchains/solana/assets/9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump/logo.png differ diff --git a/blockchains/solana/assets/9BsnSWDPfbusseZfnXyZ3un14CyPMZYvsKjWY3Y8Gbqn/info.json b/blockchains/solana/assets/9BsnSWDPfbusseZfnXyZ3un14CyPMZYvsKjWY3Y8Gbqn/info.json new file mode 100644 index 00000000..cb3968fa --- /dev/null +++ b/blockchains/solana/assets/9BsnSWDPfbusseZfnXyZ3un14CyPMZYvsKjWY3Y8Gbqn/info.json @@ -0,0 +1,14 @@ +{ + "name": "Perpetual Protocol (Portal)", + "type": "SPL", + "symbol": "PERP", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://referral.perp.exchange/?code=coingecko", + "explorer": "https://solscan.io/token/9BsnSWDPfbusseZfnXyZ3un14CyPMZYvsKjWY3Y8Gbqn", + "status": "active", + "id": "9BsnSWDPfbusseZfnXyZ3un14CyPMZYvsKjWY3Y8Gbqn", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9BsnSWDPfbusseZfnXyZ3un14CyPMZYvsKjWY3Y8Gbqn/logo.png b/blockchains/solana/assets/9BsnSWDPfbusseZfnXyZ3un14CyPMZYvsKjWY3Y8Gbqn/logo.png new file mode 100644 index 00000000..d78e4d35 Binary files /dev/null and b/blockchains/solana/assets/9BsnSWDPfbusseZfnXyZ3un14CyPMZYvsKjWY3Y8Gbqn/logo.png differ diff --git a/blockchains/solana/assets/9DHe3pycTuymFk4H4bbPoAJ4hQrr2kaLDF6J6aAKpump/info.json b/blockchains/solana/assets/9DHe3pycTuymFk4H4bbPoAJ4hQrr2kaLDF6J6aAKpump/info.json new file mode 100644 index 00000000..21131f80 --- /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 00000000..465509be 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 00000000..7d088682 --- /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 00000000..b5b8a29d 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 00000000..5d101db9 --- /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 00000000..43328fbf 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 00000000..b867261d --- /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 00000000..8ababa20 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 00000000..d7c9260b --- /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/9LzCMqDgTKYz9Drzqnpgee3SGa89up3a247ypMj2xrqM/info.json b/blockchains/solana/assets/9LzCMqDgTKYz9Drzqnpgee3SGa89up3a247ypMj2xrqM/info.json new file mode 100644 index 00000000..0f685739 --- /dev/null +++ b/blockchains/solana/assets/9LzCMqDgTKYz9Drzqnpgee3SGa89up3a247ypMj2xrqM/info.json @@ -0,0 +1,14 @@ +{ + "name": "Audius (Portal)", + "type": "SPL", + "symbol": "AUDIO", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://audius.co/", + "explorer": "https://solscan.io/token/9LzCMqDgTKYz9Drzqnpgee3SGa89up3a247ypMj2xrqM", + "status": "active", + "id": "9LzCMqDgTKYz9Drzqnpgee3SGa89up3a247ypMj2xrqM", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9LzCMqDgTKYz9Drzqnpgee3SGa89up3a247ypMj2xrqM/logo.png b/blockchains/solana/assets/9LzCMqDgTKYz9Drzqnpgee3SGa89up3a247ypMj2xrqM/logo.png new file mode 100644 index 00000000..c06d51fc Binary files /dev/null and b/blockchains/solana/assets/9LzCMqDgTKYz9Drzqnpgee3SGa89up3a247ypMj2xrqM/logo.png differ diff --git a/blockchains/solana/assets/9McvH6w97oewLmPxqQEoHUAv3u5iYMyQ9AeZZhguYf1T/info.json b/blockchains/solana/assets/9McvH6w97oewLmPxqQEoHUAv3u5iYMyQ9AeZZhguYf1T/info.json new file mode 100644 index 00000000..0ac73ad4 --- /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 00000000..b3450e42 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 00000000..a4af8007 --- /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 00000000..2bbb2a03 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 00000000..799e8df5 --- /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 00000000..50ef2736 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 00000000..8d7a82ab --- /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 00000000..4657db09 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 00000000..671f71be --- /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/9S4t2NEAiJVMvPdRYKVrfJpBafPBLtvbvyS3DecojQHw/info.json b/blockchains/solana/assets/9S4t2NEAiJVMvPdRYKVrfJpBafPBLtvbvyS3DecojQHw/info.json new file mode 100644 index 00000000..bce9495e --- /dev/null +++ b/blockchains/solana/assets/9S4t2NEAiJVMvPdRYKVrfJpBafPBLtvbvyS3DecojQHw/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wrapped FRONT", + "symbol": "Wrapped FRONT", + "type": "SPL", + "decimals": 6, + "description": "Frontier is a chain-agnostic DeFi aggregation layer. With our applications, users can participate in protocol tracking and management, staking, best-rate asset swapping, liquidity provision, CDP creation & monitoring, and more.", + "website": "https://frontier.xyz/", + "explorer": "https://solscan.io/token/9S4t2NEAiJVMvPdRYKVrfJpBafPBLtvbvyS3DecojQHw", + "status": "active", + "id": "9S4t2NEAiJVMvPdRYKVrfJpBafPBLtvbvyS3DecojQHw" +} \ No newline at end of file diff --git a/blockchains/solana/assets/9S4t2NEAiJVMvPdRYKVrfJpBafPBLtvbvyS3DecojQHw/logo.png b/blockchains/solana/assets/9S4t2NEAiJVMvPdRYKVrfJpBafPBLtvbvyS3DecojQHw/logo.png new file mode 100644 index 00000000..ef5b508b Binary files /dev/null and b/blockchains/solana/assets/9S4t2NEAiJVMvPdRYKVrfJpBafPBLtvbvyS3DecojQHw/logo.png differ diff --git a/blockchains/solana/assets/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg/info.json b/blockchains/solana/assets/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg/info.json new file mode 100644 index 00000000..157a2f0f --- /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 00000000..ef22f390 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 00000000..2d9c216f --- /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 00000000..7fd5c6a9 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 00000000..7ade9e6a --- /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 00000000..f4397d61 --- /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 00000000..4b371e14 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 00000000..9075c946 --- /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 00000000..c2b6531d 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 00000000..eafa2a8a --- /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 00000000..4697401c --- /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 00000000..9bd23396 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 00000000..f8148b5f --- /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 00000000..3f81b1e8 --- /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 00000000..6fc438b0 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 00000000..16cce986 --- /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 00000000..25533c00 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 00000000..f56bd9e0 --- /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 00000000..bde98135 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 00000000..03d9442b --- /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 00000000..555daa61 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 00000000..eb5c6d92 --- /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 00000000..f75f5bc6 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 00000000..e4b2a12c --- /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 00000000..a0b943e1 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 00000000..ea171756 --- /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 00000000..6dee3e1e 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 00000000..d1087975 --- /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 00000000..d193ae87 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 00000000..c71a9b1c --- /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 00000000..80113f19 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 00000000..f8e40e16 --- /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 00000000..4a9926f9 Binary files /dev/null and b/blockchains/solana/assets/9efuvsvRhRt2STFNVCvCa6fBbnEk4u8m1PjvLDP5pump/logo.png differ diff --git a/blockchains/solana/assets/9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa/info.json b/blockchains/solana/assets/9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa/info.json new file mode 100644 index 00000000..7431625d --- /dev/null +++ b/blockchains/solana/assets/9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa/info.json @@ -0,0 +1,14 @@ +{ + "name": "Binance Coin (Portal)", + "type": "SPL", + "symbol": "BNB", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.binance.com/", + "explorer": "https://solscan.io/token/9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa", + "status": "active", + "id": "9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa/logo.png b/blockchains/solana/assets/9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa/logo.png new file mode 100644 index 00000000..24a702d4 Binary files /dev/null and b/blockchains/solana/assets/9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa/logo.png differ diff --git a/blockchains/solana/assets/9gyfbPVwwZx4y1hotNSLcqXCQNpNqqz6ZRvo8yTLpump/info.json b/blockchains/solana/assets/9gyfbPVwwZx4y1hotNSLcqXCQNpNqqz6ZRvo8yTLpump/info.json new file mode 100644 index 00000000..e0739cf0 --- /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 00000000..91f8b48b 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 00000000..ae3c6dc3 --- /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 00000000..4a2aab3b 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 00000000..0df022d3 --- /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 00000000..b77a0c8a 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 00000000..f3a2eeca --- /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 00000000..76801bd1 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 00000000..be22a791 --- /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 00000000..35a5a2a3 --- /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 00000000..e0e242ab Binary files /dev/null and b/blockchains/solana/assets/9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t/logo.png differ diff --git a/blockchains/solana/assets/9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E/info.json b/blockchains/solana/assets/9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E/info.json new file mode 100644 index 00000000..c6b24dcb --- /dev/null +++ b/blockchains/solana/assets/9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped BTC", + "symbol": "BTC", + "type": "SPL", + "decimals": 6, + "description": "Bitcoin is an innovative payment network and a new kind of money.", + "website": "https://bitcoin.org/en/", + "explorer": "https://solscan.io/token/9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E", + "status": "active", + "id": "9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E", + "links": [ + { + "name": "whitepaper", + "url": "https://bitcoin.org/en/bitcoin-paper" + }, + { + "name": "blog", + "url": "https://bitcoin.org/en/blog" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E/logo.png b/blockchains/solana/assets/9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E/logo.png new file mode 100644 index 00000000..cd7cdd40 Binary files /dev/null and b/blockchains/solana/assets/9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E/logo.png differ diff --git a/blockchains/solana/assets/9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE/info.json b/blockchains/solana/assets/9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE/info.json new file mode 100644 index 00000000..d6c13565 --- /dev/null +++ b/blockchains/solana/assets/9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE/info.json @@ -0,0 +1,28 @@ +{ + "name": "WOOFENOMICS", + "symbol": "WOOF", + "type": "SPL", + "decimals": 6, + "description": "WOOF tested the idea of the effect of burning tokens by creating a massive total supply of 1 Trillion tokens.", + "website": "https://woofsolana.com/", + "explorer": "https://solscan.io/token/9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE", + "status": "active", + "id": "9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE", + "links": [ + { + "name": "x", + "url": "https://x.com/WoofSolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/woof/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/woof-token" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE/logo.png b/blockchains/solana/assets/9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE/logo.png new file mode 100644 index 00000000..78c52360 Binary files /dev/null and b/blockchains/solana/assets/9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE/logo.png differ diff --git a/blockchains/solana/assets/9niFQK8MsParjSxhYQ3Ys2a6zHmsEuKSB1M7wwdvZ7bj/info.json b/blockchains/solana/assets/9niFQK8MsParjSxhYQ3Ys2a6zHmsEuKSB1M7wwdvZ7bj/info.json new file mode 100644 index 00000000..5d701711 --- /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 00000000..2d0ec5e6 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 00000000..d7fbc84a --- /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 00000000..4d36b415 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 00000000..f5ec36b2 --- /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 00000000..6f90a2e7 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 00000000..90d89df9 --- /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 00000000..c845b195 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 00000000..8d5e7f95 --- /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 00000000..84f85fdc 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 00000000..d2586a0e --- /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 00000000..2e324289 --- /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 new file mode 100644 index 00000000..e6de2ce0 --- /dev/null +++ b/blockchains/solana/assets/9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i/info.json @@ -0,0 +1,14 @@ +{ + "name": "UST (Portal)", + "type": "SPL", + "symbol": "UST", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://terra.money", + "explorer": "https://solscan.io/token/9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i", + "status": "active", + "id": "9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i/logo.png b/blockchains/solana/assets/9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i/logo.png new file mode 100644 index 00000000..e3110cce Binary files /dev/null and b/blockchains/solana/assets/9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i/logo.png differ diff --git a/blockchains/solana/assets/9wYZetvT8J2ptfsRca5gzLBGvcUug38mp9yT3xaondo/info.json b/blockchains/solana/assets/9wYZetvT8J2ptfsRca5gzLBGvcUug38mp9yT3xaondo/info.json new file mode 100644 index 00000000..ca962e61 --- /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 00000000..c86f92e6 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 00000000..df94936d --- /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 00000000..3a2b934f 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 00000000..fecd7a86 --- /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 00000000..18f94a8e 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 00000000..cddf7a62 --- /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 00000000..acc75efa 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 00000000..aac95646 --- /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 00000000..dff524a7 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 00000000..6ab97e2c --- /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 00000000..0a69de65 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 00000000..7d122c2e --- /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 00000000..2d2fb70c 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 00000000..c3c5733a --- /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 00000000..5ab7a351 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 00000000..d6bd3298 --- /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 00000000..78152f37 Binary files /dev/null and b/blockchains/solana/assets/A9PFmw9Hu8zzxDUoU351pio1E1XWBWBfWnjT9qoondo/logo.png differ diff --git a/blockchains/solana/assets/A9ik2NrpKRRG2snyTjofZQcTuav9yH3mNVHLsLiDQmYt/info.json b/blockchains/solana/assets/A9ik2NrpKRRG2snyTjofZQcTuav9yH3mNVHLsLiDQmYt/info.json new file mode 100644 index 00000000..51ed5c98 --- /dev/null +++ b/blockchains/solana/assets/A9ik2NrpKRRG2snyTjofZQcTuav9yH3mNVHLsLiDQmYt/info.json @@ -0,0 +1,14 @@ +{ + "name": "Frontier (Portal)", + "type": "SPL", + "symbol": "FRONT", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://frontier.xyz/", + "explorer": "https://solscan.io/token/A9ik2NrpKRRG2snyTjofZQcTuav9yH3mNVHLsLiDQmYt", + "status": "active", + "id": "A9ik2NrpKRRG2snyTjofZQcTuav9yH3mNVHLsLiDQmYt", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/A9ik2NrpKRRG2snyTjofZQcTuav9yH3mNVHLsLiDQmYt/logo.png b/blockchains/solana/assets/A9ik2NrpKRRG2snyTjofZQcTuav9yH3mNVHLsLiDQmYt/logo.png new file mode 100644 index 00000000..8fd5f9c8 Binary files /dev/null and b/blockchains/solana/assets/A9ik2NrpKRRG2snyTjofZQcTuav9yH3mNVHLsLiDQmYt/logo.png differ diff --git a/blockchains/solana/assets/A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM/info.json b/blockchains/solana/assets/A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM/info.json new file mode 100644 index 00000000..09f0b44c --- /dev/null +++ b/blockchains/solana/assets/A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Ethereum)", + "type": "SPL", + "symbol": "USDCet", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://solscan.io/token/A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM", + "status": "active", + "id": "A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM/logo.png b/blockchains/solana/assets/A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM/logo.png new file mode 100644 index 00000000..ed00e43f Binary files /dev/null and b/blockchains/solana/assets/A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM/logo.png differ diff --git a/blockchains/solana/assets/ABAq2R9gSpDDGguQxBk4u13s4ZYW6zbwKVBx15mCMG8/info.json b/blockchains/solana/assets/ABAq2R9gSpDDGguQxBk4u13s4ZYW6zbwKVBx15mCMG8/info.json new file mode 100644 index 00000000..8e777ae6 --- /dev/null +++ b/blockchains/solana/assets/ABAq2R9gSpDDGguQxBk4u13s4ZYW6zbwKVBx15mCMG8/info.json @@ -0,0 +1,14 @@ +{ + "name": "GateToken (Portal)", + "type": "SPL", + "symbol": "GT", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://gatechain.io/", + "explorer": "https://solscan.io/token/ABAq2R9gSpDDGguQxBk4u13s4ZYW6zbwKVBx15mCMG8", + "status": "active", + "id": "ABAq2R9gSpDDGguQxBk4u13s4ZYW6zbwKVBx15mCMG8", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ABAq2R9gSpDDGguQxBk4u13s4ZYW6zbwKVBx15mCMG8/logo.png b/blockchains/solana/assets/ABAq2R9gSpDDGguQxBk4u13s4ZYW6zbwKVBx15mCMG8/logo.png new file mode 100644 index 00000000..6c32b31b Binary files /dev/null and b/blockchains/solana/assets/ABAq2R9gSpDDGguQxBk4u13s4ZYW6zbwKVBx15mCMG8/logo.png differ diff --git a/blockchains/solana/assets/AByhZPfGEU9a68KCAvT76Yev85oeur4SoL2VLZuB3HQj/info.json b/blockchains/solana/assets/AByhZPfGEU9a68KCAvT76Yev85oeur4SoL2VLZuB3HQj/info.json new file mode 100644 index 00000000..ec5e5759 --- /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 00000000..f891b81d --- /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 00000000..c7c59336 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 00000000..23212204 --- /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 00000000..935dd2c8 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 00000000..125fcb5c --- /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 00000000..7f9619c2 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 new file mode 100644 index 00000000..6ce1373d --- /dev/null +++ b/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/info.json @@ -0,0 +1,36 @@ +{ + "name": "Green Satoshi Token", + "symbol": "GST", + "type": "SPL", + "decimals": 9, + "description": "GST serves as the replacement to experience points and in-app currency. Users equipped with NFT Sneakers – walk, jog or run outdoors to earn GST, which can be used to level up and mint new Sneakers.", + "website": "https://stepn.com/", + "explorer": "https://solscan.io/token/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB", + "status": "active", + "id": "AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB", + "tags": [ + "gamefi" + ], + "links": [ + { + "name": "reddit", + "url": "https://reddit.com/r/StepN/" + }, + { + "name": "x", + "url": "https://x.com/Stepnofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/green-metaverse-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/stepn" + }, + { + "name": "discord", + "url": "https://discord.com/invite/stepn" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/logo.png b/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/logo.png new file mode 100644 index 00000000..e914d508 Binary files /dev/null and b/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/logo.png differ diff --git a/blockchains/solana/assets/AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3/info.json b/blockchains/solana/assets/AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3/info.json new file mode 100644 index 00000000..8933756d --- /dev/null +++ b/blockchains/solana/assets/AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3/info.json @@ -0,0 +1,33 @@ +{ + "name": "Wrapped FTX", + "symbol": "FTT", + "type": "SPL", + "decimals": 6, + "description": "FTX’s leveraged tokens aim to provide a clean, automated way for users to get leverage. FTT is the FTX ecosystem utility token.", + "website": "https://ftx.com", + "explorer": "https://solscan.io/token/AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3", + "status": "active", + "id": "AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3", + "links": [ + { + "name": "x", + "url": "https://x.com/FTX_Official" + }, + { + "name": "telegram", + "url": "https://t.me/FTX_Official" + }, + { + "name": "whitepaper", + "url": "https://docs.google.com/document/d/1u5MOkENoWP8PGcjuoKqRkNP5Gl1LLRB9JvAHwffQ7ec/view" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ftx-token/" + }, + { + "name": "blog", + "url": "https://blog.ftx.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3/logo.png b/blockchains/solana/assets/AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3/logo.png new file mode 100644 index 00000000..8476fe01 Binary files /dev/null and b/blockchains/solana/assets/AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3/logo.png differ diff --git a/blockchains/solana/assets/AGRidUXLeDij9CJprkZx7WBXtTQC67jtfiwz293mVrJ/info.json b/blockchains/solana/assets/AGRidUXLeDij9CJprkZx7WBXtTQC67jtfiwz293mVrJ/info.json new file mode 100644 index 00000000..9e2b0a08 --- /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 00000000..9f4d2c7a Binary files /dev/null and b/blockchains/solana/assets/AGRidUXLeDij9CJprkZx7WBXtTQC67jtfiwz293mVrJ/logo.png differ diff --git a/blockchains/solana/assets/AGqKX7F4mqJ8x2mUQVangJb5pWQJApaKoUfe5gXM53CV/info.json b/blockchains/solana/assets/AGqKX7F4mqJ8x2mUQVangJb5pWQJApaKoUfe5gXM53CV/info.json new file mode 100644 index 00000000..73309851 --- /dev/null +++ b/blockchains/solana/assets/AGqKX7F4mqJ8x2mUQVangJb5pWQJApaKoUfe5gXM53CV/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Avalanche)", + "type": "SPL", + "symbol": "USDCav", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://solscan.io/token/AGqKX7F4mqJ8x2mUQVangJb5pWQJApaKoUfe5gXM53CV", + "status": "active", + "id": "AGqKX7F4mqJ8x2mUQVangJb5pWQJApaKoUfe5gXM53CV", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AGqKX7F4mqJ8x2mUQVangJb5pWQJApaKoUfe5gXM53CV/logo.png b/blockchains/solana/assets/AGqKX7F4mqJ8x2mUQVangJb5pWQJApaKoUfe5gXM53CV/logo.png new file mode 100644 index 00000000..f448cdfe Binary files /dev/null and b/blockchains/solana/assets/AGqKX7F4mqJ8x2mUQVangJb5pWQJApaKoUfe5gXM53CV/logo.png differ diff --git a/blockchains/solana/assets/AHW5N8iqZobTcBepkSJzZ61XtAuSzBDcpxtrLG6KUKPk/info.json b/blockchains/solana/assets/AHW5N8iqZobTcBepkSJzZ61XtAuSzBDcpxtrLG6KUKPk/info.json new file mode 100644 index 00000000..6795631a --- /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 00000000..be929072 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 00000000..6a9efaf5 --- /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 00000000..483963c1 --- /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 00000000..34fa168e 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 00000000..db70eb27 --- /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 00000000..d4eddf42 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 00000000..6311def3 --- /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 00000000..e2290526 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 00000000..db99d53e --- /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 00000000..fd77e3e7 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 00000000..494c5d93 --- /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 00000000..d6cb132e --- /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 00000000..eb0b8dc0 Binary files /dev/null and b/blockchains/solana/assets/AQCXMYphwzGDctWJC7iJ5FbfyTfpW5HJe1dub54cnRfm/logo.png differ diff --git a/blockchains/solana/assets/ASk8bss7PoxfFVJfXnSJepj9KupTX15QaRnhdjs6DdYe/info.json b/blockchains/solana/assets/ASk8bss7PoxfFVJfXnSJepj9KupTX15QaRnhdjs6DdYe/info.json new file mode 100644 index 00000000..dc2e6a43 --- /dev/null +++ b/blockchains/solana/assets/ASk8bss7PoxfFVJfXnSJepj9KupTX15QaRnhdjs6DdYe/info.json @@ -0,0 +1,14 @@ +{ + "name": "Rari Governance Token (Portal)", + "type": "SPL", + "symbol": "RGT", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://rari.capital/", + "explorer": "https://solscan.io/token/ASk8bss7PoxfFVJfXnSJepj9KupTX15QaRnhdjs6DdYe", + "status": "active", + "id": "ASk8bss7PoxfFVJfXnSJepj9KupTX15QaRnhdjs6DdYe", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ASk8bss7PoxfFVJfXnSJepj9KupTX15QaRnhdjs6DdYe/logo.png b/blockchains/solana/assets/ASk8bss7PoxfFVJfXnSJepj9KupTX15QaRnhdjs6DdYe/logo.png new file mode 100644 index 00000000..cf38fdc0 Binary files /dev/null and b/blockchains/solana/assets/ASk8bss7PoxfFVJfXnSJepj9KupTX15QaRnhdjs6DdYe/logo.png differ diff --git a/blockchains/solana/assets/ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx/info.json b/blockchains/solana/assets/ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx/info.json new file mode 100644 index 00000000..57370bf6 --- /dev/null +++ b/blockchains/solana/assets/ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx/info.json @@ -0,0 +1,25 @@ +{ + "name": "Star Atlas", + "symbol": "ATLAS", + "type": "SPL", + "decimals": 8, + "description": "Star Atlas is a virtual gaming metaverse based in the year 2620", + "website": "https://staratlas.com/", + "explorer": "https://solscan.io/token/ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx", + "status": "active", + "id": "ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx", + "links": [ + { + "name": "x", + "url": "https://x.com/staratlas" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/star-atlas/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/star-atlas" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx/logo.png b/blockchains/solana/assets/ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx/logo.png new file mode 100644 index 00000000..3c46ac61 Binary files /dev/null and b/blockchains/solana/assets/ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx/logo.png differ diff --git a/blockchains/solana/assets/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj/info.json b/blockchains/solana/assets/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj/info.json new file mode 100644 index 00000000..7ba682fa --- /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 00000000..01d4f474 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 new file mode 100644 index 00000000..488772ba --- /dev/null +++ b/blockchains/solana/assets/AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP/info.json @@ -0,0 +1,25 @@ +{ + "name": "Aurory", + "symbol": "AURY", + "type": "SPL", + "decimals": 9, + "description": "The Aurory team is composed of 30+ talents from the gaming and the cryptocurrency industry. ", + "website": "https://aurory.io/", + "explorer": "https://solscan.io/token/AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP", + "status": "active", + "id": "AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP", + "links": [ + { + "name": "x", + "url": "https://x.com/auroryproject" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aurory/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aurory" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP/logo.png b/blockchains/solana/assets/AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP/logo.png new file mode 100644 index 00000000..c3a50ff5 Binary files /dev/null and b/blockchains/solana/assets/AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP/logo.png differ diff --git a/blockchains/solana/assets/AUdvAZm7ScT7S1z5frV7awvmwi4P3WVNcJsbq7spump/info.json b/blockchains/solana/assets/AUdvAZm7ScT7S1z5frV7awvmwi4P3WVNcJsbq7spump/info.json new file mode 100644 index 00000000..75f112c3 --- /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 00000000..c3aa0fea 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 00000000..2c593989 --- /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 00000000..e398d3f3 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 00000000..8900fd28 --- /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 00000000..65ffbd7c 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 00000000..37e930a3 --- /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 00000000..c4ed72cf 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 00000000..c179a10e --- /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 00000000..18d52dda 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 00000000..ae12757d --- /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 00000000..bb90e146 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 00000000..2f8291f7 --- /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 00000000..fcb83a71 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 00000000..0487e81b --- /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 00000000..68a3e5f3 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 00000000..3f9205bf --- /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 00000000..3201fccd 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 00000000..686a681e --- /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 00000000..5d7c37b3 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 00000000..55c75f27 --- /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 new file mode 100644 index 00000000..0b844918 --- /dev/null +++ b/blockchains/solana/assets/AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC/info.json @@ -0,0 +1,14 @@ +{ + "name": "1INCH Token (Portal)", + "type": "SPL", + "symbol": "1INCH", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://1inch.io/", + "explorer": "https://solscan.io/token/AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC", + "status": "active", + "id": "AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC/logo.png b/blockchains/solana/assets/AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC/logo.png new file mode 100644 index 00000000..a13b4c56 Binary files /dev/null and b/blockchains/solana/assets/AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC/logo.png differ diff --git a/blockchains/solana/assets/AkuYN57Dq2UVh3jWy8qcgi4iQdHawLothhQ1yEXbpump/info.json b/blockchains/solana/assets/AkuYN57Dq2UVh3jWy8qcgi4iQdHawLothhQ1yEXbpump/info.json new file mode 100644 index 00000000..79b80e29 --- /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 00000000..37a2632f --- /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 00000000..669c5885 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 00000000..7c3a86c9 --- /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/Aqs5ydqKXEK2cjotDXxHmk8N9PknqQ5q4ZED4ymY1eeh/info.json b/blockchains/solana/assets/Aqs5ydqKXEK2cjotDXxHmk8N9PknqQ5q4ZED4ymY1eeh/info.json new file mode 100644 index 00000000..6a82c0b3 --- /dev/null +++ b/blockchains/solana/assets/Aqs5ydqKXEK2cjotDXxHmk8N9PknqQ5q4ZED4ymY1eeh/info.json @@ -0,0 +1,14 @@ +{ + "name": "Nexus Mutual (Portal)", + "type": "SPL", + "symbol": "NXM", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://nexusmutual.io/", + "explorer": "https://solscan.io/token/Aqs5ydqKXEK2cjotDXxHmk8N9PknqQ5q4ZED4ymY1eeh", + "status": "active", + "id": "Aqs5ydqKXEK2cjotDXxHmk8N9PknqQ5q4ZED4ymY1eeh", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Aqs5ydqKXEK2cjotDXxHmk8N9PknqQ5q4ZED4ymY1eeh/logo.png b/blockchains/solana/assets/Aqs5ydqKXEK2cjotDXxHmk8N9PknqQ5q4ZED4ymY1eeh/logo.png new file mode 100644 index 00000000..0326408b Binary files /dev/null and b/blockchains/solana/assets/Aqs5ydqKXEK2cjotDXxHmk8N9PknqQ5q4ZED4ymY1eeh/logo.png differ diff --git a/blockchains/solana/assets/ArGfk9JJ72QETcmckxVjCZ9ApuATgP1mf9ysVHnPU4ut/info.json b/blockchains/solana/assets/ArGfk9JJ72QETcmckxVjCZ9ApuATgP1mf9ysVHnPU4ut/info.json new file mode 100644 index 00000000..e1c9d7d3 --- /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 00000000..3fe074ec 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 00000000..a6eeea27 --- /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 00000000..71fa32a6 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 00000000..4a48628b --- /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 00000000..e4c31844 Binary files /dev/null and b/blockchains/solana/assets/AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw/logo.png differ diff --git a/blockchains/solana/assets/AuGz22orMknxQHTVGwAu7e3dJikTJKgcjFwMNDikEKmF/info.json b/blockchains/solana/assets/AuGz22orMknxQHTVGwAu7e3dJikTJKgcjFwMNDikEKmF/info.json new file mode 100644 index 00000000..4381bc75 --- /dev/null +++ b/blockchains/solana/assets/AuGz22orMknxQHTVGwAu7e3dJikTJKgcjFwMNDikEKmF/info.json @@ -0,0 +1,14 @@ +{ + "name": "Gala (Portal)", + "type": "SPL", + "symbol": "GALA", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://gala.games/", + "explorer": "https://solscan.io/token/AuGz22orMknxQHTVGwAu7e3dJikTJKgcjFwMNDikEKmF", + "status": "active", + "id": "AuGz22orMknxQHTVGwAu7e3dJikTJKgcjFwMNDikEKmF", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AuGz22orMknxQHTVGwAu7e3dJikTJKgcjFwMNDikEKmF/logo.png b/blockchains/solana/assets/AuGz22orMknxQHTVGwAu7e3dJikTJKgcjFwMNDikEKmF/logo.png new file mode 100644 index 00000000..25e802cd Binary files /dev/null and b/blockchains/solana/assets/AuGz22orMknxQHTVGwAu7e3dJikTJKgcjFwMNDikEKmF/logo.png differ diff --git a/blockchains/solana/assets/AuTmJibSsTT72qywNkE85seSvdzModR9QCFBwpSPsYmN/info.json b/blockchains/solana/assets/AuTmJibSsTT72qywNkE85seSvdzModR9QCFBwpSPsYmN/info.json new file mode 100644 index 00000000..c95fa597 --- /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 00000000..91094582 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 00000000..24589c56 --- /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 00000000..0a90e4ab 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 00000000..5a7779b7 --- /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 00000000..710e1699 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 00000000..9ca40bff --- /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 00000000..3eb12687 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 00000000..5899bde9 --- /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 00000000..d1455c18 Binary files /dev/null and b/blockchains/solana/assets/AvjqpdnoDTSE8xmG5NGYMFjopQhMpthhwoQg3yqvpump/logo.png differ diff --git a/blockchains/solana/assets/AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom/info.json b/blockchains/solana/assets/AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom/info.json new file mode 100644 index 00000000..c94fe8f1 --- /dev/null +++ b/blockchains/solana/assets/AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom/info.json @@ -0,0 +1,14 @@ +{ + "name": "Compound (Portal)", + "type": "SPL", + "symbol": "COMP", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://compound.finance/governance/comp", + "explorer": "https://solscan.io/token/AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom", + "status": "active", + "id": "AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom/logo.png b/blockchains/solana/assets/AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom/logo.png new file mode 100644 index 00000000..0360ee6e Binary files /dev/null and b/blockchains/solana/assets/AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom/logo.png differ diff --git a/blockchains/solana/assets/AxGAbdFtdbj2oNXa4dKqFvwHzgFtW9mFHWmd7vQfpump/info.json b/blockchains/solana/assets/AxGAbdFtdbj2oNXa4dKqFvwHzgFtW9mFHWmd7vQfpump/info.json new file mode 100644 index 00000000..9f89c148 --- /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 00000000..88c30fb4 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 00000000..aec136c2 --- /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 00000000..f01c2a1d 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 00000000..5b77138d --- /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 00000000..0599e98d --- /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/B2wfeYz5VtBnQVrX4M8F6FeDrprVrzKPws5qg1in8bzR/info.json b/blockchains/solana/assets/B2wfeYz5VtBnQVrX4M8F6FeDrprVrzKPws5qg1in8bzR/info.json new file mode 100644 index 00000000..325cbfa2 --- /dev/null +++ b/blockchains/solana/assets/B2wfeYz5VtBnQVrX4M8F6FeDrprVrzKPws5qg1in8bzR/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from Avalanche)", + "type": "SPL", + "symbol": "USDTav", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://solscan.io/token/B2wfeYz5VtBnQVrX4M8F6FeDrprVrzKPws5qg1in8bzR", + "status": "active", + "id": "B2wfeYz5VtBnQVrX4M8F6FeDrprVrzKPws5qg1in8bzR", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/B2wfeYz5VtBnQVrX4M8F6FeDrprVrzKPws5qg1in8bzR/logo.png b/blockchains/solana/assets/B2wfeYz5VtBnQVrX4M8F6FeDrprVrzKPws5qg1in8bzR/logo.png new file mode 100644 index 00000000..9e63d735 Binary files /dev/null and b/blockchains/solana/assets/B2wfeYz5VtBnQVrX4M8F6FeDrprVrzKPws5qg1in8bzR/logo.png differ diff --git a/blockchains/solana/assets/B4f5Tj8h8xSoF9zGHxhL1fLQwvgKWcEFhbTMyVhXJ4ch/info.json b/blockchains/solana/assets/B4f5Tj8h8xSoF9zGHxhL1fLQwvgKWcEFhbTMyVhXJ4ch/info.json new file mode 100644 index 00000000..9bb12844 --- /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 00000000..3e1d4cbe 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 00000000..edad4c28 --- /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 00000000..7bff62ad 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 00000000..76806190 --- /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 00000000..ffdd61f2 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 00000000..976c042e --- /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 00000000..0629c140 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 00000000..596ce9eb --- /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 00000000..2b29ada3 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 00000000..66258e91 --- /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 00000000..7760233d 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 00000000..72e20d96 --- /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 00000000..12335ab8 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 00000000..2ae101ac --- /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/BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U/info.json b/blockchains/solana/assets/BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U/info.json new file mode 100644 index 00000000..f8e586c0 --- /dev/null +++ b/blockchains/solana/assets/BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U/info.json @@ -0,0 +1,14 @@ +{ + "name": "Spell Token (Portal)", + "type": "SPL", + "symbol": "SPELL", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://abracadabra.money/", + "explorer": "https://solscan.io/token/BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U", + "status": "active", + "id": "BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U/logo.png b/blockchains/solana/assets/BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U/logo.png new file mode 100644 index 00000000..bf1b5d85 Binary files /dev/null and b/blockchains/solana/assets/BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U/logo.png differ diff --git a/blockchains/solana/assets/BDW8YHasD3NSDjSHU9Xy6KXtshGayMGQfj5bJpLcpump/info.json b/blockchains/solana/assets/BDW8YHasD3NSDjSHU9Xy6KXtshGayMGQfj5bJpLcpump/info.json new file mode 100644 index 00000000..2cc16117 --- /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 00000000..71fcd832 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 00000000..7b11876e --- /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 00000000..6524f11b 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 00000000..ef027f24 --- /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 00000000..42748a3a --- /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 00000000..569d6e41 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 00000000..20c87957 --- /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 00000000..ffe32399 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 00000000..c04a447f --- /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 00000000..7ed7e8cc --- /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 00000000..c140d0f9 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 00000000..88c7251a --- /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 00000000..acfd22e8 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 00000000..454bb17d --- /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 00000000..b3447252 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 00000000..4c03175f --- /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 00000000..b75dcb0c Binary files /dev/null and b/blockchains/solana/assets/BLDiYcvm3CLcgZ7XUBPgz6idSAkNmWY6MBbm8Xpjpump/logo.png differ diff --git a/blockchains/solana/assets/BLvmrccP4g1B6SpiVvmQrLUDya1nZ4B2D1nm9jzKF7sz/info.json b/blockchains/solana/assets/BLvmrccP4g1B6SpiVvmQrLUDya1nZ4B2D1nm9jzKF7sz/info.json new file mode 100644 index 00000000..2d68ffef --- /dev/null +++ b/blockchains/solana/assets/BLvmrccP4g1B6SpiVvmQrLUDya1nZ4B2D1nm9jzKF7sz/info.json @@ -0,0 +1,14 @@ +{ + "name": "Convex Finance (Portal)", + "type": "SPL", + "symbol": "CVX", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.convexfinance.com/", + "explorer": "https://solscan.io/token/BLvmrccP4g1B6SpiVvmQrLUDya1nZ4B2D1nm9jzKF7sz", + "status": "active", + "id": "BLvmrccP4g1B6SpiVvmQrLUDya1nZ4B2D1nm9jzKF7sz", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BLvmrccP4g1B6SpiVvmQrLUDya1nZ4B2D1nm9jzKF7sz/logo.png b/blockchains/solana/assets/BLvmrccP4g1B6SpiVvmQrLUDya1nZ4B2D1nm9jzKF7sz/logo.png new file mode 100644 index 00000000..2ac49ed3 Binary files /dev/null and b/blockchains/solana/assets/BLvmrccP4g1B6SpiVvmQrLUDya1nZ4B2D1nm9jzKF7sz/logo.png differ diff --git a/blockchains/solana/assets/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz/info.json b/blockchains/solana/assets/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz/info.json new file mode 100644 index 00000000..6dd124a2 --- /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 00000000..44689741 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 00000000..ed21f27b --- /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 00000000..3971555f 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 new file mode 100644 index 00000000..e8a9d076 --- /dev/null +++ b/blockchains/solana/assets/BQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4/info.json @@ -0,0 +1,25 @@ +{ + "name": "Wrapped 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.", + "website": "https://tether.to", + "explorer": "https://solscan.io/token/BQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4", + "status": "active", + "id": "BQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4", + "links": [ + { + "name": "telegram", + "url": "https://t.me/stakingfacilities" + }, + { + "name": "x", + "url": "https://x.com/solanabeach_io" + }, + { + "name": "github", + "url": "https://github.com/solana-beach/issue-tracker" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4/logo.png b/blockchains/solana/assets/BQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4/logo.png new file mode 100644 index 00000000..4b302730 Binary files /dev/null and b/blockchains/solana/assets/BQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4/logo.png differ diff --git a/blockchains/solana/assets/BS8zoc6pmALQnBhBDFak6eFhgGHjpebnHzsxApgondo/info.json b/blockchains/solana/assets/BS8zoc6pmALQnBhBDFak6eFhgGHjpebnHzsxApgondo/info.json new file mode 100644 index 00000000..909e3636 --- /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 00000000..6678ea0d 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 00000000..e25b4c0a --- /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 00000000..9333d861 --- /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 00000000..3fc2bc83 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 00000000..ac090b72 --- /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 00000000..14da80d7 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 00000000..6f2df590 --- /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 00000000..a3ce4275 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 00000000..8c38e0c7 --- /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 00000000..c9ec2ed0 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 00000000..132e84b7 --- /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 00000000..136dac3e 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 00000000..8e2fd491 --- /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 00000000..69f7bedf 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 00000000..4872ebdb --- /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 00000000..c890935b Binary files /dev/null and b/blockchains/solana/assets/BXMkru8ded26p71gJ3AMMwJmwZaYYfQjRo8vbZzondo/logo.png differ diff --git a/blockchains/solana/assets/BXXkv6z8ykpG1yuvUDPgh732wzVHB69RnB9YgSYh3itW/info.json b/blockchains/solana/assets/BXXkv6z8ykpG1yuvUDPgh732wzVHB69RnB9YgSYh3itW/info.json new file mode 100644 index 00000000..0e899e2c --- /dev/null +++ b/blockchains/solana/assets/BXXkv6z8ykpG1yuvUDPgh732wzVHB69RnB9YgSYh3itW/info.json @@ -0,0 +1,33 @@ +{ + "name": "Wrapped USDC", + "symbol": "USDC", + "type": "SPL", + "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/usdc", + "explorer": "https://solscan.io/token/BXXkv6z8ykpG1yuvUDPgh732wzVHB69RnB9YgSYh3itW", + "status": "abandoned", + "id": "BXXkv6z8ykpG1yuvUDPgh732wzVHB69RnB9YgSYh3itW", + "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/solana/assets/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX/info.json b/blockchains/solana/assets/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX/info.json new file mode 100644 index 00000000..9e54920d --- /dev/null +++ b/blockchains/solana/assets/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX/info.json @@ -0,0 +1,14 @@ +{ + "name": "yearn.finance (Portal)", + "type": "SPL", + "symbol": "YFI", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://yearn.finance", + "explorer": "https://solscan.io/token/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX", + "status": "active", + "id": "BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX/logo.png b/blockchains/solana/assets/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX/logo.png new file mode 100644 index 00000000..86698aee Binary files /dev/null and b/blockchains/solana/assets/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX/logo.png differ diff --git a/blockchains/solana/assets/BYZ9CcZGKAXmN2uDsKcQMM9UnZacija4vWcns9Th69xb/info.json b/blockchains/solana/assets/BYZ9CcZGKAXmN2uDsKcQMM9UnZacija4vWcns9Th69xb/info.json new file mode 100644 index 00000000..1cc3426b --- /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 00000000..2024fc34 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 00000000..56071666 --- /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 00000000..4d3165aa 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 00000000..40c575d9 --- /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 00000000..21fbb3a4 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 00000000..5ee0267c --- /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 00000000..4cb13109 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 00000000..6980b62c --- /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 00000000..57c9b3d7 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 00000000..ab8cd81d --- /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 00000000..750a07b3 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 00000000..66a849d0 --- /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 00000000..3997bb79 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 00000000..846f4cdb --- /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 00000000..de5dd6d9 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 00000000..a0f6b03c --- /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 00000000..8c78552f 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 00000000..a337816a --- /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 00000000..73759687 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 00000000..6c7fe288 --- /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 00000000..3cf8369d 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 00000000..4d5ab71e --- /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 00000000..bb349e5c --- /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 00000000..2ce033b0 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 00000000..0d2a83af --- /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 00000000..138c9f7d 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 00000000..e38bdae1 --- /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 00000000..5c4d1aa5 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 00000000..ffc96df1 --- /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 00000000..f043e9e3 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 00000000..05b0c992 --- /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 00000000..a9202692 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 00000000..c40c3d85 --- /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 00000000..8439cf72 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 00000000..5c3a6daa --- /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 00000000..d92eccfb 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 00000000..ef69cb8a --- /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 00000000..cfbd0765 Binary files /dev/null and b/blockchains/solana/assets/ByXTsen3ftsd7SsqgXpSZqrEeoMV8Smhz1vox9j6pump/logo.png differ diff --git a/blockchains/solana/assets/Bzq68gAVedKqQkQbsM28yQ4LYpc2VComDUD9wJBywdTi/info.json b/blockchains/solana/assets/Bzq68gAVedKqQkQbsM28yQ4LYpc2VComDUD9wJBywdTi/info.json new file mode 100644 index 00000000..1ae96fe6 --- /dev/null +++ b/blockchains/solana/assets/Bzq68gAVedKqQkQbsM28yQ4LYpc2VComDUD9wJBywdTi/info.json @@ -0,0 +1,14 @@ +{ + "name": "Interest Bearing Bitcoin (Portal)", + "type": "SPL", + "symbol": "ibBTC", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://app.badger.finance/ibBTC", + "explorer": "https://solscan.io/token/Bzq68gAVedKqQkQbsM28yQ4LYpc2VComDUD9wJBywdTi", + "status": "active", + "id": "Bzq68gAVedKqQkQbsM28yQ4LYpc2VComDUD9wJBywdTi", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Bzq68gAVedKqQkQbsM28yQ4LYpc2VComDUD9wJBywdTi/logo.png b/blockchains/solana/assets/Bzq68gAVedKqQkQbsM28yQ4LYpc2VComDUD9wJBywdTi/logo.png new file mode 100644 index 00000000..21ab65ad Binary files /dev/null and b/blockchains/solana/assets/Bzq68gAVedKqQkQbsM28yQ4LYpc2VComDUD9wJBywdTi/logo.png differ diff --git a/blockchains/solana/assets/C2nneybCJP2i6mk6Nu6SfTcxoNXNLjngnzwDgje2eNrr/info.json b/blockchains/solana/assets/C2nneybCJP2i6mk6Nu6SfTcxoNXNLjngnzwDgje2eNrr/info.json new file mode 100644 index 00000000..339bd69b --- /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 00000000..31a326dd 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 00000000..cdc62c0f --- /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 00000000..08430454 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 00000000..87dc0238 --- /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 00000000..b44d3b57 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 00000000..101b3632 --- /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 00000000..52b965d4 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 00000000..2dc77219 --- /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 00000000..8e0b543e --- /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 00000000..2ce033b0 Binary files /dev/null and b/blockchains/solana/assets/C6c7VcxuUYcV5YTsky5HM4PUmfwHTwsDD5DNwwPondo/logo.png differ diff --git a/blockchains/solana/assets/C6oFsE8nXRDThzrMEQ5SxaNFGKoyyfWDDVPw37JKvPTe/info.json b/blockchains/solana/assets/C6oFsE8nXRDThzrMEQ5SxaNFGKoyyfWDDVPw37JKvPTe/info.json new file mode 100644 index 00000000..c5be2987 --- /dev/null +++ b/blockchains/solana/assets/C6oFsE8nXRDThzrMEQ5SxaNFGKoyyfWDDVPw37JKvPTe/info.json @@ -0,0 +1,14 @@ +{ + "name": "Paxos Gold (Portal)", + "type": "SPL", + "symbol": "PAXG", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.paxos.com/paxgold/", + "explorer": "https://solscan.io/token/C6oFsE8nXRDThzrMEQ5SxaNFGKoyyfWDDVPw37JKvPTe", + "status": "active", + "id": "C6oFsE8nXRDThzrMEQ5SxaNFGKoyyfWDDVPw37JKvPTe", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/C6oFsE8nXRDThzrMEQ5SxaNFGKoyyfWDDVPw37JKvPTe/logo.png b/blockchains/solana/assets/C6oFsE8nXRDThzrMEQ5SxaNFGKoyyfWDDVPw37JKvPTe/logo.png new file mode 100644 index 00000000..c7e1e770 Binary files /dev/null and b/blockchains/solana/assets/C6oFsE8nXRDThzrMEQ5SxaNFGKoyyfWDDVPw37JKvPTe/logo.png differ diff --git a/blockchains/solana/assets/C7NNPWuZCNjZBfW5p6JvGsR8pUdsRpEdP1ZAhnoDwj7h/info.json b/blockchains/solana/assets/C7NNPWuZCNjZBfW5p6JvGsR8pUdsRpEdP1ZAhnoDwj7h/info.json new file mode 100644 index 00000000..95464524 --- /dev/null +++ b/blockchains/solana/assets/C7NNPWuZCNjZBfW5p6JvGsR8pUdsRpEdP1ZAhnoDwj7h/info.json @@ -0,0 +1,14 @@ +{ + "name": "MATIC (Portal from Ethereum)", + "type": "SPL", + "symbol": "MATICet", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://polygon.technology/", + "explorer": "https://solscan.io/token/C7NNPWuZCNjZBfW5p6JvGsR8pUdsRpEdP1ZAhnoDwj7h", + "status": "active", + "id": "C7NNPWuZCNjZBfW5p6JvGsR8pUdsRpEdP1ZAhnoDwj7h", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/C7NNPWuZCNjZBfW5p6JvGsR8pUdsRpEdP1ZAhnoDwj7h/logo.png b/blockchains/solana/assets/C7NNPWuZCNjZBfW5p6JvGsR8pUdsRpEdP1ZAhnoDwj7h/logo.png new file mode 100644 index 00000000..77ae2564 Binary files /dev/null and b/blockchains/solana/assets/C7NNPWuZCNjZBfW5p6JvGsR8pUdsRpEdP1ZAhnoDwj7h/logo.png differ diff --git a/blockchains/solana/assets/C7heQqfNzdMbUFQwcHkL9FvdwsFsDRBnfwZDDyWYCLTZ/info.json b/blockchains/solana/assets/C7heQqfNzdMbUFQwcHkL9FvdwsFsDRBnfwZDDyWYCLTZ/info.json new file mode 100644 index 00000000..cd3c7b05 --- /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 00000000..6f6bb847 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 00000000..3506dad5 --- /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 00000000..2ce033b0 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 00000000..63759330 --- /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 00000000..adc07976 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 00000000..b66fbd11 --- /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 00000000..fe6efcd5 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 00000000..bd53e337 --- /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 00000000..6ea7aa1e 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 00000000..f4b881fe --- /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 00000000..2ce033b0 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 00000000..46c130ff --- /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 00000000..f16a3122 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 00000000..1fb0ac80 --- /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 00000000..3f78b018 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 00000000..0205655d --- /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 00000000..6cedbcd6 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 00000000..adba48bf --- /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 00000000..eb781910 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 new file mode 100644 index 00000000..6da5ab0f --- /dev/null +++ b/blockchains/solana/assets/CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks/info.json @@ -0,0 +1,32 @@ +{ + "name": "Gari", + "type": "SPL", + "symbol": "GARI", + "decimals": 9, + "website": "https://gari.network/", + "description": "CHINGARI IS THE LARGEST ON CHAIN SOCIAL GRAPH ON WEB3", + "explorer": "https://solscan.io/token/CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks", + "status": "active", + "id": "CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks", + "links": [ + { + "name": "x", + "url": "https://x.com/GariToken" + }, + { + "name": "facebook", + "url": "https://facebook.com/GARInetwork-283510420162868" + }, + { + "name": "telegram", + "url": "https://t.me/garitokenofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gari/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks/logo.png b/blockchains/solana/assets/CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks/logo.png new file mode 100644 index 00000000..11b65fe8 Binary files /dev/null and b/blockchains/solana/assets/CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks/logo.png differ diff --git a/blockchains/solana/assets/CKiW2P4zngHa6fiPhMJGGhgDZm638dWotxkzgi8PsDxf/info.json b/blockchains/solana/assets/CKiW2P4zngHa6fiPhMJGGhgDZm638dWotxkzgi8PsDxf/info.json new file mode 100644 index 00000000..d764785e --- /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 00000000..c47936c7 Binary files /dev/null and b/blockchains/solana/assets/CKiW2P4zngHa6fiPhMJGGhgDZm638dWotxkzgi8PsDxf/logo.png differ diff --git a/blockchains/solana/assets/CLQsDGoGibdNPnVCFp8BAsN2unvyvb41Jd5USYwAnzAg/info.json b/blockchains/solana/assets/CLQsDGoGibdNPnVCFp8BAsN2unvyvb41Jd5USYwAnzAg/info.json new file mode 100644 index 00000000..089cd962 --- /dev/null +++ b/blockchains/solana/assets/CLQsDGoGibdNPnVCFp8BAsN2unvyvb41Jd5USYwAnzAg/info.json @@ -0,0 +1,14 @@ +{ + "name": "Ethereum Name Service (Portal)", + "type": "SPL", + "symbol": "ENS", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://ens.domains/", + "explorer": "https://solscan.io/token/CLQsDGoGibdNPnVCFp8BAsN2unvyvb41Jd5USYwAnzAg", + "status": "active", + "id": "CLQsDGoGibdNPnVCFp8BAsN2unvyvb41Jd5USYwAnzAg", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CLQsDGoGibdNPnVCFp8BAsN2unvyvb41Jd5USYwAnzAg/logo.png b/blockchains/solana/assets/CLQsDGoGibdNPnVCFp8BAsN2unvyvb41Jd5USYwAnzAg/logo.png new file mode 100644 index 00000000..78e1e3af Binary files /dev/null and b/blockchains/solana/assets/CLQsDGoGibdNPnVCFp8BAsN2unvyvb41Jd5USYwAnzAg/logo.png differ diff --git a/blockchains/solana/assets/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5/info.json b/blockchains/solana/assets/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5/info.json new file mode 100644 index 00000000..61fe2bef --- /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 00000000..689f6af8 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 00000000..58629b41 --- /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 00000000..8e10e940 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 00000000..d9b9ba00 --- /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 00000000..2025561f 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 00000000..a7f1f770 --- /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 00000000..20e65366 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 00000000..24fa7149 --- /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 00000000..267de150 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 00000000..4ffebd5a --- /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 00000000..531463a3 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 00000000..5f6d43d3 --- /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 00000000..9140876c 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 00000000..6d8651b5 --- /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 00000000..26d7e493 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 00000000..1cd7a19a --- /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 00000000..25e7e166 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 00000000..ccc699d6 --- /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 00000000..2031fcd6 --- /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 00000000..ed8d0e19 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 00000000..a0e66eae --- /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 00000000..f68317d6 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 00000000..3f2bbcf7 --- /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 00000000..ab55f5e2 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 00000000..aa6aad96 --- /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 00000000..441642af 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 00000000..5ed936a4 --- /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 00000000..1e2bfeca 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 00000000..5a3f6b45 --- /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 00000000..34299b5b 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 00000000..96ed8740 --- /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 00000000..3537d091 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 00000000..6f81e8c8 --- /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 00000000..344948ad 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 00000000..6a66ded4 --- /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 00000000..34299b5b Binary files /dev/null and b/blockchains/solana/assets/CZ9GBn1okotqKNUUqoxk4PF2JVi59bw5GWvVo6Dondo/logo.png differ diff --git a/blockchains/solana/assets/CaGa7pddFXS65Gznqwp42kBhkJQdceoFVT7AQYo8Jr8Q/info.json b/blockchains/solana/assets/CaGa7pddFXS65Gznqwp42kBhkJQdceoFVT7AQYo8Jr8Q/info.json new file mode 100644 index 00000000..ced547cf --- /dev/null +++ b/blockchains/solana/assets/CaGa7pddFXS65Gznqwp42kBhkJQdceoFVT7AQYo8Jr8Q/info.json @@ -0,0 +1,14 @@ +{ + "name": "MATH Token (Portal)", + "type": "SPL", + "symbol": "MATH", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://mathchain.org/en/", + "explorer": "https://solscan.io/token/CaGa7pddFXS65Gznqwp42kBhkJQdceoFVT7AQYo8Jr8Q", + "status": "active", + "id": "CaGa7pddFXS65Gznqwp42kBhkJQdceoFVT7AQYo8Jr8Q", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CaGa7pddFXS65Gznqwp42kBhkJQdceoFVT7AQYo8Jr8Q/logo.png b/blockchains/solana/assets/CaGa7pddFXS65Gznqwp42kBhkJQdceoFVT7AQYo8Jr8Q/logo.png new file mode 100644 index 00000000..1911b24c Binary files /dev/null and b/blockchains/solana/assets/CaGa7pddFXS65Gznqwp42kBhkJQdceoFVT7AQYo8Jr8Q/logo.png differ diff --git a/blockchains/solana/assets/CbNYA9n3927uXUukee2Hf4tm3xxkffJPPZvGazc2EAH1/info.json b/blockchains/solana/assets/CbNYA9n3927uXUukee2Hf4tm3xxkffJPPZvGazc2EAH1/info.json new file mode 100644 index 00000000..e3b6a8ae --- /dev/null +++ b/blockchains/solana/assets/CbNYA9n3927uXUukee2Hf4tm3xxkffJPPZvGazc2EAH1/info.json @@ -0,0 +1,14 @@ +{ + "name": "agEUR (Portal)", + "type": "SPL", + "symbol": "agEUR", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.angle.money", + "explorer": "https://solscan.io/token/CbNYA9n3927uXUukee2Hf4tm3xxkffJPPZvGazc2EAH1", + "status": "active", + "id": "CbNYA9n3927uXUukee2Hf4tm3xxkffJPPZvGazc2EAH1", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CbNYA9n3927uXUukee2Hf4tm3xxkffJPPZvGazc2EAH1/logo.png b/blockchains/solana/assets/CbNYA9n3927uXUukee2Hf4tm3xxkffJPPZvGazc2EAH1/logo.png new file mode 100644 index 00000000..6fa26403 Binary files /dev/null and b/blockchains/solana/assets/CbNYA9n3927uXUukee2Hf4tm3xxkffJPPZvGazc2EAH1/logo.png differ diff --git a/blockchains/solana/assets/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk/info.json b/blockchains/solana/assets/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk/info.json new file mode 100644 index 00000000..67cd67fb --- /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 00000000..e167aade 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 00000000..5b147471 --- /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 00000000..6b4c6778 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 00000000..29b944f9 --- /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 00000000..29b8ca13 --- /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 00000000..f1bf0f07 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 00000000..6dd3ec11 --- /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 00000000..2ce033b0 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 00000000..b8ab8327 --- /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 00000000..b0c3c813 --- /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 00000000..a9884aa7 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 00000000..8834438d --- /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 00000000..d6c6c772 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 00000000..898ec53f --- /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 00000000..abf2400a 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 00000000..58ac3bcc --- /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 00000000..a22bc299 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 00000000..6f1e050e --- /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/ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj/info.json b/blockchains/solana/assets/ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj/info.json new file mode 100644 index 00000000..f54be056 --- /dev/null +++ b/blockchains/solana/assets/ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj/info.json @@ -0,0 +1,14 @@ +{ + "name": "SushiToken (Portal)", + "type": "SPL", + "symbol": "SUSHI", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://sushi.com/", + "explorer": "https://solscan.io/token/ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj", + "status": "active", + "id": "ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj/logo.png b/blockchains/solana/assets/ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj/logo.png new file mode 100644 index 00000000..1057abaf Binary files /dev/null and b/blockchains/solana/assets/ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj/logo.png differ diff --git a/blockchains/solana/assets/ChanxovzUBzPLkcbwK4sWDvmoy5A3NZYw5YyFBPppump/info.json b/blockchains/solana/assets/ChanxovzUBzPLkcbwK4sWDvmoy5A3NZYw5YyFBPppump/info.json new file mode 100644 index 00000000..60a9d15b --- /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 00000000..b21e6fec --- /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 00000000..7bdb2851 Binary files /dev/null and b/blockchains/solana/assets/Chqde9rcgzK8LSzbR1F3NUSFBu44Tk66EYBJpt42USDC/logo.png differ diff --git a/blockchains/solana/assets/CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z/info.json b/blockchains/solana/assets/CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z/info.json new file mode 100644 index 00000000..9301b2c8 --- /dev/null +++ b/blockchains/solana/assets/CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z/info.json @@ -0,0 +1,14 @@ +{ + "name": "Shiba Inu (Portal)", + "type": "SPL", + "symbol": "SHIB", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://shibatoken.com/", + "explorer": "https://solscan.io/token/CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z", + "status": "active", + "id": "CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z/logo.png b/blockchains/solana/assets/CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z/logo.png new file mode 100644 index 00000000..5f4a1d03 Binary files /dev/null and b/blockchains/solana/assets/CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z/logo.png differ diff --git a/blockchains/solana/assets/CkTsgUj4kDJ64LD3BN9G8iQEJFK5J1HTGDeTqiv2Qwqk/info.json b/blockchains/solana/assets/CkTsgUj4kDJ64LD3BN9G8iQEJFK5J1HTGDeTqiv2Qwqk/info.json new file mode 100644 index 00000000..d2a7e1a9 --- /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 00000000..019d05be --- /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 00000000..4be71cd2 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 00000000..407ebed8 --- /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 00000000..b8d63c3f 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 00000000..e63ebf96 --- /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 00000000..ce5427a4 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 00000000..43e7fe1a --- /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 00000000..eb6dddd1 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 00000000..77719b92 --- /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 00000000..640134da Binary files /dev/null and b/blockchains/solana/assets/Co6yHBdUcVsrmRq75iKmxAddx9ggg32g3Zd1Vwscpump/logo.png differ diff --git a/blockchains/solana/assets/CobcsUrt3p91FwvULYKorQejgsm5HoQdv5T8RUZ6PnLA/info.json b/blockchains/solana/assets/CobcsUrt3p91FwvULYKorQejgsm5HoQdv5T8RUZ6PnLA/info.json new file mode 100644 index 00000000..ac7463ca --- /dev/null +++ b/blockchains/solana/assets/CobcsUrt3p91FwvULYKorQejgsm5HoQdv5T8RUZ6PnLA/info.json @@ -0,0 +1,14 @@ +{ + "name": "ConstitutionDAO (Portal)", + "type": "SPL", + "symbol": "PEOPLE", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.constitutiondao.com/", + "explorer": "https://solscan.io/token/CobcsUrt3p91FwvULYKorQejgsm5HoQdv5T8RUZ6PnLA", + "status": "active", + "id": "CobcsUrt3p91FwvULYKorQejgsm5HoQdv5T8RUZ6PnLA", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CobcsUrt3p91FwvULYKorQejgsm5HoQdv5T8RUZ6PnLA/logo.png b/blockchains/solana/assets/CobcsUrt3p91FwvULYKorQejgsm5HoQdv5T8RUZ6PnLA/logo.png new file mode 100644 index 00000000..28c3327b Binary files /dev/null and b/blockchains/solana/assets/CobcsUrt3p91FwvULYKorQejgsm5HoQdv5T8RUZ6PnLA/logo.png differ diff --git a/blockchains/solana/assets/CofiHxizezmiQV1r85eV4Midefb6BahAyVeQQQxVpump/info.json b/blockchains/solana/assets/CofiHxizezmiQV1r85eV4Midefb6BahAyVeQQQxVpump/info.json new file mode 100644 index 00000000..8e1f9f66 --- /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 00000000..f1f5fac1 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 00000000..00760287 --- /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 00000000..a23306bc --- /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 00000000..095286d5 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 00000000..88d3516d --- /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 00000000..bdf4e7cc 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 00000000..77359e75 --- /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 00000000..446fb2be Binary files /dev/null and b/blockchains/solana/assets/CreiuhfwdWCN5mJbMJtA9bBpYQrQF2tCBuZwSPWfpump/logo.png differ diff --git a/blockchains/solana/assets/CriXdFS9iRAYbGEQiTcUqbWwG9RBmYt5B6LwTnoJ61Sm/info.json b/blockchains/solana/assets/CriXdFS9iRAYbGEQiTcUqbWwG9RBmYt5B6LwTnoJ61Sm/info.json new file mode 100644 index 00000000..79953027 --- /dev/null +++ b/blockchains/solana/assets/CriXdFS9iRAYbGEQiTcUqbWwG9RBmYt5B6LwTnoJ61Sm/info.json @@ -0,0 +1,14 @@ +{ + "name": "JoeToken (Portal)", + "type": "SPL", + "symbol": "JOE", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.traderjoexyz.com/#/home", + "explorer": "https://solscan.io/token/CriXdFS9iRAYbGEQiTcUqbWwG9RBmYt5B6LwTnoJ61Sm", + "status": "active", + "id": "CriXdFS9iRAYbGEQiTcUqbWwG9RBmYt5B6LwTnoJ61Sm", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CriXdFS9iRAYbGEQiTcUqbWwG9RBmYt5B6LwTnoJ61Sm/logo.png b/blockchains/solana/assets/CriXdFS9iRAYbGEQiTcUqbWwG9RBmYt5B6LwTnoJ61Sm/logo.png new file mode 100644 index 00000000..6665b92f Binary files /dev/null and b/blockchains/solana/assets/CriXdFS9iRAYbGEQiTcUqbWwG9RBmYt5B6LwTnoJ61Sm/logo.png differ diff --git a/blockchains/solana/assets/Crn4x1Y2HUKko7ox2EZMT6N2t2ZyH7eKtwkBGVnhEq1g/info.json b/blockchains/solana/assets/Crn4x1Y2HUKko7ox2EZMT6N2t2ZyH7eKtwkBGVnhEq1g/info.json new file mode 100644 index 00000000..38f02476 --- /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 00000000..0e52fa32 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 00000000..9ae8776e --- /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 00000000..58564c02 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 00000000..fd31e9d7 --- /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 new file mode 100644 index 00000000..9b8916f1 --- /dev/null +++ b/blockchains/solana/assets/CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K/info.json @@ -0,0 +1,28 @@ +{ + "name": "Wrapped ALEPH (Sollet)", + "website": "https://aleph.im/", + "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://solscan.io/token/CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K", + "type": "SPL", + "symbol": "ALEPH", + "decimals": 6, + "status": "active", + "id": "CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K", + "tags": [ + "defi" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/aleph_im" + }, + { + "name": "github", + "url": "https://github.com/aleph-im" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/aleph-im/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K/logo.png b/blockchains/solana/assets/CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K/logo.png new file mode 100644 index 00000000..dd5c56de Binary files /dev/null and b/blockchains/solana/assets/CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K/logo.png differ diff --git a/blockchains/solana/assets/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru/info.json b/blockchains/solana/assets/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru/info.json new file mode 100644 index 00000000..4d60a739 --- /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 00000000..f9552d4d 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 00000000..3520a39b --- /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 00000000..d0bf7f60 --- /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 00000000..f39a7e86 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 00000000..a61e4ba5 --- /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 00000000..1c24240d 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 00000000..0dde7a7c --- /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 00000000..9adb1ffc --- /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 00000000..b19fc1c0 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 new file mode 100644 index 00000000..cbe139a1 --- /dev/null +++ b/blockchains/solana/assets/CzqJTjTp3R9opDHmzF5Gy1G2NKDHEyMufa4Keiju4PLu/info.json @@ -0,0 +1,41 @@ +{ + "name": "Wrapped Conceal", + "symbol": "wCCX", + "type": "SPL", + "decimals": 6, + "description": "Wrapped Conceal ($wCCX) is just a representation of ₡CCX on any of the available bridged ecosystems — a tokenized ₡CCX. Exactly one $wCCX will always represent (or equal) one ₡CCX.", + "website": "https://conceal.network/", + "explorer": "https://solscan.io/token/CzqJTjTp3R9opDHmzF5Gy1G2NKDHEyMufa4Keiju4PLu", + "status": "active", + "id": "CzqJTjTp3R9opDHmzF5Gy1G2NKDHEyMufa4Keiju4PLu", + "links": [ + { + "name": "telegram", + "url": "https://t.me/concealnetworkusers" + }, + { + "name": "x", + "url": "https://x.com/ConcealNetwork" + }, + { + "name": "discord", + "url": "https://discord.com/invite/YbpHVSd" + }, + { + "name": "github", + "url": "https://github.com/sushiswap" + }, + { + "name": "medium", + "url": "https://concealnetwork.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-conceal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-conceal/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CzqJTjTp3R9opDHmzF5Gy1G2NKDHEyMufa4Keiju4PLu/logo.png b/blockchains/solana/assets/CzqJTjTp3R9opDHmzF5Gy1G2NKDHEyMufa4Keiju4PLu/logo.png new file mode 100644 index 00000000..b9f69da4 Binary files /dev/null and b/blockchains/solana/assets/CzqJTjTp3R9opDHmzF5Gy1G2NKDHEyMufa4Keiju4PLu/logo.png differ diff --git a/blockchains/solana/assets/D13VkjDiCxtgRJsH4s1VCxKS4bFZq5UEz2iRsSbapump/info.json b/blockchains/solana/assets/D13VkjDiCxtgRJsH4s1VCxKS4bFZq5UEz2iRsSbapump/info.json new file mode 100644 index 00000000..d9fc601d --- /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 00000000..6d3633a8 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 00000000..53fd3372 --- /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 00000000..d28deab3 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 00000000..b763ae53 --- /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 00000000..8b61f659 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 00000000..ebaeacb1 --- /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 00000000..8258ed16 --- /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 00000000..4fc65af5 --- /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 00000000..ed15e898 --- /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 00000000..6c932394 Binary files /dev/null and b/blockchains/solana/assets/D4uWxzR5StYC6sTRhVts8Eboy3pmVtHeNC62dnQondo/logo.png differ diff --git a/blockchains/solana/assets/D559HwgjYGDYsXpmFUKxhFTEwutvS9sya1kXiyCVogCV/info.json b/blockchains/solana/assets/D559HwgjYGDYsXpmFUKxhFTEwutvS9sya1kXiyCVogCV/info.json new file mode 100644 index 00000000..32f59f91 --- /dev/null +++ b/blockchains/solana/assets/D559HwgjYGDYsXpmFUKxhFTEwutvS9sya1kXiyCVogCV/info.json @@ -0,0 +1,14 @@ +{ + "name": "Amp (Portal)", + "type": "SPL", + "symbol": "AMP", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://amptoken.org/", + "explorer": "https://solscan.io/token/D559HwgjYGDYsXpmFUKxhFTEwutvS9sya1kXiyCVogCV", + "status": "active", + "id": "D559HwgjYGDYsXpmFUKxhFTEwutvS9sya1kXiyCVogCV", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/D559HwgjYGDYsXpmFUKxhFTEwutvS9sya1kXiyCVogCV/logo.png b/blockchains/solana/assets/D559HwgjYGDYsXpmFUKxhFTEwutvS9sya1kXiyCVogCV/logo.png new file mode 100644 index 00000000..7c381270 Binary files /dev/null and b/blockchains/solana/assets/D559HwgjYGDYsXpmFUKxhFTEwutvS9sya1kXiyCVogCV/logo.png differ diff --git a/blockchains/solana/assets/D5WJ9eH4WLF1SUazsMZLUKTz4xb6mKHNzS1ufeynmoon/info.json b/blockchains/solana/assets/D5WJ9eH4WLF1SUazsMZLUKTz4xb6mKHNzS1ufeynmoon/info.json new file mode 100644 index 00000000..229ca65c --- /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 00000000..2d68d92f 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 00000000..46c0ffa0 --- /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 00000000..69ff98d0 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 00000000..40059b41 --- /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 00000000..34299b5b 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 00000000..e212ad55 --- /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 00000000..f6d9cd0d 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 00000000..704fd06d --- /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 00000000..31e72b65 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 new file mode 100644 index 00000000..7f8ce0bd --- /dev/null +++ b/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/info.json @@ -0,0 +1,25 @@ +{ + "name": "The 4th Pillar Token", + "symbol": "FOUR", + "type": "SPL", + "decimals": 9, + "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": "x", + "url": "https://x.com/4pfour" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-4th-pillar" + } + ], + "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 new file mode 100644 index 00000000..b0d3e287 Binary files /dev/null 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 00000000..a61cd173 --- /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 00000000..2ce033b0 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 00000000..88536c92 --- /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 00000000..1f338427 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 00000000..3979c1de --- /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 00000000..f2779fbe 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 00000000..c278c1ce --- /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 00000000..549003b6 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 00000000..3d832085 --- /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 00000000..69da34d6 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 00000000..8e8b591a --- /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 00000000..2ce033b0 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 new file mode 100644 index 00000000..20fe6da1 --- /dev/null +++ b/blockchains/solana/assets/DFL1zNkaGPWm1BqAVqRjCZvHmwTFrEaJtbzJWgseoNJh/info.json @@ -0,0 +1,25 @@ +{ + "name": "DeFi Land", + "symbol": "DFL", + "type": "SPL", + "decimals": 9, + "description": "DeFi Land is a multi-chain agriculture-simulation web-game created to gamify decentralized finance.", + "website": "https://defiland.app/", + "explorer": "https://solscan.io/token/DFL1zNkaGPWm1BqAVqRjCZvHmwTFrEaJtbzJWgseoNJh", + "status": "active", + "id": "DFL1zNkaGPWm1BqAVqRjCZvHmwTFrEaJtbzJWgseoNJh", + "links": [ + { + "name": "x", + "url": "https://x.com/DeFi_Land" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defi-land/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/defi-land" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DFL1zNkaGPWm1BqAVqRjCZvHmwTFrEaJtbzJWgseoNJh/logo.png b/blockchains/solana/assets/DFL1zNkaGPWm1BqAVqRjCZvHmwTFrEaJtbzJWgseoNJh/logo.png new file mode 100644 index 00000000..b657247a Binary files /dev/null and b/blockchains/solana/assets/DFL1zNkaGPWm1BqAVqRjCZvHmwTFrEaJtbzJWgseoNJh/logo.png differ diff --git a/blockchains/solana/assets/DFkp2Jd5y4rCuPJAz9djtqUMHyVF5FxRkVgjztyGpump/info.json b/blockchains/solana/assets/DFkp2Jd5y4rCuPJAz9djtqUMHyVF5FxRkVgjztyGpump/info.json new file mode 100644 index 00000000..f1f23369 --- /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 00000000..a5894379 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 00000000..e6d19401 --- /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 00000000..b869668e 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 00000000..51306897 --- /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 00000000..61df464b 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 00000000..99684e4c --- /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 00000000..e4c38175 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 00000000..96ede7a3 --- /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 00000000..588b9685 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 00000000..b6bd9ea8 --- /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 00000000..26c7aee5 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 00000000..0444091d --- /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 00000000..5a3c714d --- /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 00000000..7844b329 --- /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 00000000..28dac4ce --- /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 00000000..10bbf06f 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 00000000..d7ba30a7 --- /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 00000000..d2dbd049 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 00000000..450358f0 --- /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/DPgNKZJAG2w1S6vfYHDBT62R4qrWWH5f45CnxtbQduZE/info.json b/blockchains/solana/assets/DPgNKZJAG2w1S6vfYHDBT62R4qrWWH5f45CnxtbQduZE/info.json new file mode 100644 index 00000000..7dd6ed5f --- /dev/null +++ b/blockchains/solana/assets/DPgNKZJAG2w1S6vfYHDBT62R4qrWWH5f45CnxtbQduZE/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tribe (Portal)", + "type": "SPL", + "symbol": "TRIBE", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://fei.money/", + "explorer": "https://solscan.io/token/DPgNKZJAG2w1S6vfYHDBT62R4qrWWH5f45CnxtbQduZE", + "status": "active", + "id": "DPgNKZJAG2w1S6vfYHDBT62R4qrWWH5f45CnxtbQduZE", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DPgNKZJAG2w1S6vfYHDBT62R4qrWWH5f45CnxtbQduZE/logo.png b/blockchains/solana/assets/DPgNKZJAG2w1S6vfYHDBT62R4qrWWH5f45CnxtbQduZE/logo.png new file mode 100644 index 00000000..d97dfb3f Binary files /dev/null and b/blockchains/solana/assets/DPgNKZJAG2w1S6vfYHDBT62R4qrWWH5f45CnxtbQduZE/logo.png differ diff --git a/blockchains/solana/assets/DSrpc5dvntFqbhdjSuziUEyeXnkRdu1j45JVGzVTBnkq/info.json b/blockchains/solana/assets/DSrpc5dvntFqbhdjSuziUEyeXnkRdu1j45JVGzVTBnkq/info.json new file mode 100644 index 00000000..6704a200 --- /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 00000000..34b5df23 --- /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 00000000..fcb0925a 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 00000000..c29ec80b --- /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 00000000..69cee97e 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 00000000..f0d58f0f --- /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 00000000..2b3f68e8 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 00000000..ebb77a95 --- /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 00000000..6785e3b1 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 00000000..772e9c79 --- /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 00000000..8f6134ea 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 00000000..5ced53ed --- /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 00000000..d7b8a5c9 --- /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 00000000..69d673b5 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 00000000..f154326a --- /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 00000000..5238dcbd 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 new file mode 100644 index 00000000..749d509d --- /dev/null +++ b/blockchains/solana/assets/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263/info.json @@ -0,0 +1,28 @@ +{ + "name": "Bonk", + "type": "SPL", + "symbol": "Bonk", + "decimals": 5, + "website": "https://www.bonkcoin.com", + "description": "Bonk is the first Solana dog coin for the people, by the people with 50% of the total supply airdropped to the Solana community. The Bonk contributors were tired of toxic “Alameda” tokenomics and wanted to make a fun memecoin where everyone gets a fair shot.", + "explorer": "https://solscan.io/token/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", + "status": "active", + "id": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", + "links": [ + { + "name": "x", + "url": "https://x.com/bonk_inu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/bonk1/" + }, + { + "name": "whitepaper", + "url": "https://www.bonkcoin.com/bonkpaper" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263/logo.png b/blockchains/solana/assets/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263/logo.png new file mode 100644 index 00000000..d5604139 Binary files /dev/null and b/blockchains/solana/assets/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263/logo.png differ diff --git a/blockchains/solana/assets/Df6yfrKC8kZE3KNkrHERKzAetSxbrWeniQfyJY4Jpump/info.json b/blockchains/solana/assets/Df6yfrKC8kZE3KNkrHERKzAetSxbrWeniQfyJY4Jpump/info.json new file mode 100644 index 00000000..ac8a6b6d --- /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 00000000..a8a403e8 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 00000000..c94e5ec7 --- /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 00000000..09d1bec3 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 00000000..eb641c12 --- /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 00000000..e21da689 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 00000000..eca3d003 --- /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 00000000..803758be 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 00000000..58b39e8d --- /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 00000000..b4351ad2 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 00000000..160a55e7 --- /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 00000000..8a3fd699 Binary files /dev/null and b/blockchains/solana/assets/DiDWPZ7vQXfpaeQ8BX68XuDYeiQLv7diDxdeUpaondo/logo.png differ diff --git a/blockchains/solana/assets/DiJut4U3CU8b3bRgwfyqtJMJ4wjzJHaX6hudamjH46Km/info.json b/blockchains/solana/assets/DiJut4U3CU8b3bRgwfyqtJMJ4wjzJHaX6hudamjH46Km/info.json new file mode 100644 index 00000000..36a234f9 --- /dev/null +++ b/blockchains/solana/assets/DiJut4U3CU8b3bRgwfyqtJMJ4wjzJHaX6hudamjH46Km/info.json @@ -0,0 +1,14 @@ +{ + "name": "PopsicleToken (Portal)", + "type": "SPL", + "symbol": "ICE", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://popsicle.finance/", + "explorer": "https://solscan.io/token/DiJut4U3CU8b3bRgwfyqtJMJ4wjzJHaX6hudamjH46Km", + "status": "active", + "id": "DiJut4U3CU8b3bRgwfyqtJMJ4wjzJHaX6hudamjH46Km", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DiJut4U3CU8b3bRgwfyqtJMJ4wjzJHaX6hudamjH46Km/logo.png b/blockchains/solana/assets/DiJut4U3CU8b3bRgwfyqtJMJ4wjzJHaX6hudamjH46Km/logo.png new file mode 100644 index 00000000..98e407eb Binary files /dev/null and b/blockchains/solana/assets/DiJut4U3CU8b3bRgwfyqtJMJ4wjzJHaX6hudamjH46Km/logo.png differ diff --git a/blockchains/solana/assets/DiRshqNDE68bWbGdLHm1GwQ76MvWQG3af6w1NdQondo/info.json b/blockchains/solana/assets/DiRshqNDE68bWbGdLHm1GwQ76MvWQG3af6w1NdQondo/info.json new file mode 100644 index 00000000..df650bf0 --- /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 00000000..c530871f 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 00000000..ff93d4fe --- /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 00000000..35f0a8ec Binary files /dev/null and b/blockchains/solana/assets/Dig28Tf1ufhCBAsjTmFkXCgcNgMqDMYj5A2rDQmondo/logo.png differ diff --git a/blockchains/solana/assets/DkbE8U4gSRuGHcVMA1LwyZPYUjYbfEbjW8DMR3iSXBzr/info.json b/blockchains/solana/assets/DkbE8U4gSRuGHcVMA1LwyZPYUjYbfEbjW8DMR3iSXBzr/info.json new file mode 100644 index 00000000..1720f4a0 --- /dev/null +++ b/blockchains/solana/assets/DkbE8U4gSRuGHcVMA1LwyZPYUjYbfEbjW8DMR3iSXBzr/info.json @@ -0,0 +1,14 @@ +{ + "name": "Reserve Rights (Portal)", + "type": "SPL", + "symbol": "RSR", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://reserve.org/", + "explorer": "https://solscan.io/token/DkbE8U4gSRuGHcVMA1LwyZPYUjYbfEbjW8DMR3iSXBzr", + "status": "active", + "id": "DkbE8U4gSRuGHcVMA1LwyZPYUjYbfEbjW8DMR3iSXBzr", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DkbE8U4gSRuGHcVMA1LwyZPYUjYbfEbjW8DMR3iSXBzr/logo.png b/blockchains/solana/assets/DkbE8U4gSRuGHcVMA1LwyZPYUjYbfEbjW8DMR3iSXBzr/logo.png new file mode 100644 index 00000000..5dd53038 Binary files /dev/null and b/blockchains/solana/assets/DkbE8U4gSRuGHcVMA1LwyZPYUjYbfEbjW8DMR3iSXBzr/logo.png differ diff --git a/blockchains/solana/assets/Dm6FpQ76SsbVmAZ4NvD2mjZP7cxbw1CASr4WwCiondo/info.json b/blockchains/solana/assets/Dm6FpQ76SsbVmAZ4NvD2mjZP7cxbw1CASr4WwCiondo/info.json new file mode 100644 index 00000000..8bea78fe --- /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 00000000..0ad397a4 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 00000000..1fbf553f --- /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/Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1/info.json b/blockchains/solana/assets/Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1/info.json new file mode 100644 index 00000000..f67ace0c --- /dev/null +++ b/blockchains/solana/assets/Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from Ethereum)", + "type": "SPL", + "symbol": "USDTet", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://solscan.io/token/Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1", + "status": "active", + "id": "Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1/logo.png b/blockchains/solana/assets/Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1/logo.png new file mode 100644 index 00000000..46b9968e Binary files /dev/null and b/blockchains/solana/assets/Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1/logo.png differ diff --git a/blockchains/solana/assets/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog/info.json b/blockchains/solana/assets/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog/info.json new file mode 100644 index 00000000..c1a45bf2 --- /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 00000000..5d701cec 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 00000000..cfbce995 --- /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 00000000..3bdf99e2 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 00000000..df4ed4a5 --- /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 00000000..6c9f7e64 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 00000000..dd1fafc4 --- /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 00000000..d262940e 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 00000000..aec2beac --- /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 00000000..ee3b087e 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 00000000..ca63aa49 --- /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 00000000..6767ada8 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 00000000..41ac5455 --- /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 00000000..12948317 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 00000000..2ae1ab9c --- /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 00000000..446373ce 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 new file mode 100644 index 00000000..70112742 --- /dev/null +++ b/blockchains/solana/assets/DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA/info.json @@ -0,0 +1,14 @@ +{ + "name": "Crypto.com Coin (Portal)", + "type": "SPL", + "symbol": "CRO", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://crypto.com/", + "explorer": "https://solscan.io/token/DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA", + "status": "active", + "id": "DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA/logo.png b/blockchains/solana/assets/DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA/logo.png new file mode 100644 index 00000000..ae6f856a Binary files /dev/null and b/blockchains/solana/assets/DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA/logo.png differ diff --git a/blockchains/solana/assets/DwDtUqBZJtbRpdjsFw3N7YKB5epocSru25BGcVhfcYtg/info.json b/blockchains/solana/assets/DwDtUqBZJtbRpdjsFw3N7YKB5epocSru25BGcVhfcYtg/info.json new file mode 100644 index 00000000..150795c6 --- /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 00000000..5beb3526 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 00000000..e5164304 --- /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 00000000..a22bc299 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 00000000..c152c7f0 --- /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 00000000..6a045458 Binary files /dev/null and b/blockchains/solana/assets/DyT6mdhiAYbHPML2AVXviGVxMQbc6Z3VmPZ2MQG6pump/logo.png differ diff --git a/blockchains/solana/assets/E2VmbootbVCBkMNNxKQgCLMS1X3NoGMaYAsufaAsf7M/info.json b/blockchains/solana/assets/E2VmbootbVCBkMNNxKQgCLMS1X3NoGMaYAsufaAsf7M/info.json new file mode 100644 index 00000000..ad8547c0 --- /dev/null +++ b/blockchains/solana/assets/E2VmbootbVCBkMNNxKQgCLMS1X3NoGMaYAsufaAsf7M/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (PoS) (Portal from Polygon)", + "type": "SPL", + "symbol": "USDCpo", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://solscan.io/token/E2VmbootbVCBkMNNxKQgCLMS1X3NoGMaYAsufaAsf7M", + "status": "active", + "id": "E2VmbootbVCBkMNNxKQgCLMS1X3NoGMaYAsufaAsf7M", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/E2VmbootbVCBkMNNxKQgCLMS1X3NoGMaYAsufaAsf7M/logo.png b/blockchains/solana/assets/E2VmbootbVCBkMNNxKQgCLMS1X3NoGMaYAsufaAsf7M/logo.png new file mode 100644 index 00000000..4e3f74d2 Binary files /dev/null and b/blockchains/solana/assets/E2VmbootbVCBkMNNxKQgCLMS1X3NoGMaYAsufaAsf7M/logo.png differ diff --git a/blockchains/solana/assets/E4YowrHx5wm4RtSjfuvTqtNH3Wf7NEj5tYZGD9Bondo/info.json b/blockchains/solana/assets/E4YowrHx5wm4RtSjfuvTqtNH3Wf7NEj5tYZGD9Bondo/info.json new file mode 100644 index 00000000..2239369c --- /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 00000000..ba8cb66e Binary files /dev/null and b/blockchains/solana/assets/E4YowrHx5wm4RtSjfuvTqtNH3Wf7NEj5tYZGD9Bondo/logo.png differ diff --git a/blockchains/solana/assets/E5ndSkaB17Dm7CsD22dvcjfrYSDLCxFcMd6z8ddCk5wp/info.json b/blockchains/solana/assets/E5ndSkaB17Dm7CsD22dvcjfrYSDLCxFcMd6z8ddCk5wp/info.json new file mode 100644 index 00000000..43841f5c --- /dev/null +++ b/blockchains/solana/assets/E5ndSkaB17Dm7CsD22dvcjfrYSDLCxFcMd6z8ddCk5wp/info.json @@ -0,0 +1,11 @@ +{ + "name": "Cryptocurrencies.Ai", + "symbol": "CCAI", + "type": "SPL", + "decimals": 9, + "description": "Next Generation crypto exchange $CCAI with DeFi products on Solana and CEX with Smart trading.", + "website": "https://cryptocurrencies.ai", + "explorer": "https://solscan.io/token/E5ndSkaB17Dm7CsD22dvcjfrYSDLCxFcMd6z8ddCk5wp", + "status": "active", + "id": "E5ndSkaB17Dm7CsD22dvcjfrYSDLCxFcMd6z8ddCk5wp" +} \ No newline at end of file diff --git a/blockchains/solana/assets/E5ndSkaB17Dm7CsD22dvcjfrYSDLCxFcMd6z8ddCk5wp/logo.png b/blockchains/solana/assets/E5ndSkaB17Dm7CsD22dvcjfrYSDLCxFcMd6z8ddCk5wp/logo.png new file mode 100644 index 00000000..f2fff40d Binary files /dev/null and b/blockchains/solana/assets/E5ndSkaB17Dm7CsD22dvcjfrYSDLCxFcMd6z8ddCk5wp/logo.png differ diff --git a/blockchains/solana/assets/E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy/info.json b/blockchains/solana/assets/E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy/info.json new file mode 100644 index 00000000..851b7f6b --- /dev/null +++ b/blockchains/solana/assets/E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy/info.json @@ -0,0 +1,33 @@ +{ + "name": "WOO Network", + "type": "SPL", + "symbol": "WOO", + "decimals": 6, + "website": "https://woo.network", + "description": "Wootrade is a layer one trading infrastructure complete with deep liquidity, frontend trading GUI, and the ability to integrate into any exchange, trading desk, wallet, dApp, or other trading-related platform.", + "explorer": "https://solscan.io/token/E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy", + "status": "active", + "id": "E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy", + "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/solana/assets/E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy/logo.png b/blockchains/solana/assets/E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy/logo.png new file mode 100644 index 00000000..6a4f498c Binary files /dev/null and b/blockchains/solana/assets/E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy/logo.png differ diff --git a/blockchains/solana/assets/E6AujzX54E1ZoPDFP2CyG3HHUVKygEkp6DRqig61pump/info.json b/blockchains/solana/assets/E6AujzX54E1ZoPDFP2CyG3HHUVKygEkp6DRqig61pump/info.json new file mode 100644 index 00000000..9e8c0c6d --- /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 00000000..ffa947fa 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 00000000..8ac4c313 --- /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 00000000..e28463a6 --- /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 00000000..d2742f94 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 00000000..3e299bd0 --- /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 00000000..ed1647f5 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 00000000..7afa6a6c --- /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 00000000..2314b346 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 00000000..bec4671d --- /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 00000000..38f63fa3 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 00000000..1695402d --- /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 00000000..7e125cec 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 00000000..f60ccff3 --- /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 00000000..15357053 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 00000000..f45cc45a --- /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 00000000..a0eced5b 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 00000000..2978954d --- /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 00000000..b251792a 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 00000000..952a5b6e --- /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 00000000..0ba43271 --- /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 00000000..e18adacd 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 new file mode 100644 index 00000000..ca359b0c --- /dev/null +++ b/blockchains/solana/assets/EDVVEYW4fPJ6vKw5LZXRGUSPzxoHrv6eWvTqhCr8oShs/info.json @@ -0,0 +1,14 @@ +{ + "name": "Bancor Network Token (Portal)", + "type": "SPL", + "symbol": "BNT", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.bancor.network/", + "explorer": "https://solscan.io/token/EDVVEYW4fPJ6vKw5LZXRGUSPzxoHrv6eWvTqhCr8oShs", + "status": "active", + "id": "EDVVEYW4fPJ6vKw5LZXRGUSPzxoHrv6eWvTqhCr8oShs", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EDVVEYW4fPJ6vKw5LZXRGUSPzxoHrv6eWvTqhCr8oShs/logo.png b/blockchains/solana/assets/EDVVEYW4fPJ6vKw5LZXRGUSPzxoHrv6eWvTqhCr8oShs/logo.png new file mode 100644 index 00000000..3eb53daf Binary files /dev/null and b/blockchains/solana/assets/EDVVEYW4fPJ6vKw5LZXRGUSPzxoHrv6eWvTqhCr8oShs/logo.png differ diff --git a/blockchains/solana/assets/EDm5TGENkeKUd69PPtFatYWojgMjNHPurSmGZndJgFbu/info.json b/blockchains/solana/assets/EDm5TGENkeKUd69PPtFatYWojgMjNHPurSmGZndJgFbu/info.json new file mode 100644 index 00000000..1513696c --- /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 00000000..70e5252a --- /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 00000000..6c932394 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 00000000..e40257d6 --- /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 00000000..19414ac8 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 00000000..8bd03a02 --- /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 00000000..b01ed635 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 00000000..efc94c0e --- /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 00000000..e096eccb Binary files /dev/null and b/blockchains/solana/assets/EGMuM8qhWTzTEa9P75DuT3G4DNVsexWww7fp1vo8pump/logo.png differ diff --git a/blockchains/solana/assets/EHKQvJGu48ydKA4d3RivrkNyTJTkSdoS32UafxSX1yak/info.json b/blockchains/solana/assets/EHKQvJGu48ydKA4d3RivrkNyTJTkSdoS32UafxSX1yak/info.json new file mode 100644 index 00000000..b1362c80 --- /dev/null +++ b/blockchains/solana/assets/EHKQvJGu48ydKA4d3RivrkNyTJTkSdoS32UafxSX1yak/info.json @@ -0,0 +1,14 @@ +{ + "name": "Ampleforth (Portal)", + "type": "SPL", + "symbol": "AMPL", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.ampleforth.org/", + "explorer": "https://solscan.io/token/EHKQvJGu48ydKA4d3RivrkNyTJTkSdoS32UafxSX1yak", + "status": "active", + "id": "EHKQvJGu48ydKA4d3RivrkNyTJTkSdoS32UafxSX1yak", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EHKQvJGu48ydKA4d3RivrkNyTJTkSdoS32UafxSX1yak/logo.png b/blockchains/solana/assets/EHKQvJGu48ydKA4d3RivrkNyTJTkSdoS32UafxSX1yak/logo.png new file mode 100644 index 00000000..c1bf2227 Binary files /dev/null and b/blockchains/solana/assets/EHKQvJGu48ydKA4d3RivrkNyTJTkSdoS32UafxSX1yak/logo.png differ diff --git a/blockchains/solana/assets/EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q/info.json b/blockchains/solana/assets/EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q/info.json new file mode 100644 index 00000000..468cc751 --- /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 00000000..a37cef9f 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 00000000..e47ef697 --- /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 00000000..34101c97 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 00000000..1a5d878a --- /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 00000000..b7068fa5 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 00000000..9518a683 --- /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 00000000..d869504c 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 00000000..fade38c2 --- /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 00000000..2ce033b0 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 00000000..2a79b2f9 --- /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 00000000..39f585be 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 00000000..0b17ede5 --- /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/EPeUFDgHRxs9xxEPVaL6kfGQvCon7jmAWKVUHuux1Tpz/info.json b/blockchains/solana/assets/EPeUFDgHRxs9xxEPVaL6kfGQvCon7jmAWKVUHuux1Tpz/info.json new file mode 100644 index 00000000..7d3f0828 --- /dev/null +++ b/blockchains/solana/assets/EPeUFDgHRxs9xxEPVaL6kfGQvCon7jmAWKVUHuux1Tpz/info.json @@ -0,0 +1,14 @@ +{ + "name": "Basic Attention Token (Portal)", + "type": "SPL", + "symbol": "BAT", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://basicattentiontoken.org/", + "explorer": "https://solscan.io/token/EPeUFDgHRxs9xxEPVaL6kfGQvCon7jmAWKVUHuux1Tpz", + "status": "active", + "id": "EPeUFDgHRxs9xxEPVaL6kfGQvCon7jmAWKVUHuux1Tpz", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EPeUFDgHRxs9xxEPVaL6kfGQvCon7jmAWKVUHuux1Tpz/logo.png b/blockchains/solana/assets/EPeUFDgHRxs9xxEPVaL6kfGQvCon7jmAWKVUHuux1Tpz/logo.png new file mode 100644 index 00000000..331a781c Binary files /dev/null and b/blockchains/solana/assets/EPeUFDgHRxs9xxEPVaL6kfGQvCon7jmAWKVUHuux1Tpz/logo.png differ diff --git a/blockchains/solana/assets/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/info.json b/blockchains/solana/assets/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/info.json new file mode 100644 index 00000000..55d92d20 --- /dev/null +++ b/blockchains/solana/assets/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/info.json @@ -0,0 +1,24 @@ +{ + "name": "USD Coin", + "symbol": "USDC", + "type": "SPL", + "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/usdc", + "explorer": "https://solscan.io/token/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "status": "active", + "id": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "links": [ + { + "name": "telegram", + "url": "https://t.me/stakingfacilities" + }, + { + "name": "x", + "url": "https://x.com/solanabeach_io" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png b/blockchains/solana/assets/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png new file mode 100644 index 00000000..eafbaac1 Binary files /dev/null and b/blockchains/solana/assets/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png differ diff --git a/blockchains/solana/assets/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU/info.json b/blockchains/solana/assets/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU/info.json new file mode 100644 index 00000000..2d788b89 --- /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 00000000..cab5e44f 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 00000000..88ad1833 --- /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 00000000..0c97fea4 --- /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 new file mode 100644 index 00000000..6a092f9a --- /dev/null +++ b/blockchains/solana/assets/ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs/info.json @@ -0,0 +1,25 @@ +{ + "name": "Media Network", + "symbol": "MEDIA", + "type": "SPL", + "decimals": 6, + "description": "Media Network is a privacy-first and community-governed CDN.", + "website": "https://media.network/", + "explorer": "https://solscan.io/token/ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs", + "status": "active", + "id": "ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs", + "links": [ + { + "name": "x", + "url": "https://x.com/Media_FDN" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/media-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/media-network" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs/logo.png b/blockchains/solana/assets/ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs/logo.png new file mode 100644 index 00000000..eb0c7321 Binary files /dev/null and b/blockchains/solana/assets/ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs/logo.png differ diff --git a/blockchains/solana/assets/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy/info.json b/blockchains/solana/assets/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy/info.json new file mode 100644 index 00000000..c39b88c8 --- /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 00000000..ead46982 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 00000000..6cdaf4ec --- /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 00000000..ed71c3cf 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 00000000..61af11d4 --- /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 00000000..d837616f 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 00000000..2694e872 --- /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 00000000..6be7c939 Binary files /dev/null and b/blockchains/solana/assets/EXA537HSBVpsFijENbt6Muuy9AADUN8dUmYKD4oKbjJE/logo.png differ diff --git a/blockchains/solana/assets/EXExWvT6VyYxEjFzF5BrUxt5GZMPVZnd48y3iWrRefMq/info.json b/blockchains/solana/assets/EXExWvT6VyYxEjFzF5BrUxt5GZMPVZnd48y3iWrRefMq/info.json new file mode 100644 index 00000000..d958e48d --- /dev/null +++ b/blockchains/solana/assets/EXExWvT6VyYxEjFzF5BrUxt5GZMPVZnd48y3iWrRefMq/info.json @@ -0,0 +1,14 @@ +{ + "name": "EnjinCoin (Portal)", + "type": "SPL", + "symbol": "ENJ", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://enjin.io/", + "explorer": "https://solscan.io/token/EXExWvT6VyYxEjFzF5BrUxt5GZMPVZnd48y3iWrRefMq", + "status": "active", + "id": "EXExWvT6VyYxEjFzF5BrUxt5GZMPVZnd48y3iWrRefMq", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EXExWvT6VyYxEjFzF5BrUxt5GZMPVZnd48y3iWrRefMq/logo.png b/blockchains/solana/assets/EXExWvT6VyYxEjFzF5BrUxt5GZMPVZnd48y3iWrRefMq/logo.png new file mode 100644 index 00000000..38c455c5 Binary files /dev/null and b/blockchains/solana/assets/EXExWvT6VyYxEjFzF5BrUxt5GZMPVZnd48y3iWrRefMq/logo.png differ diff --git a/blockchains/solana/assets/EXtprP1wzrNo2bByrU9JyzqEg2hQMSCVJakeHHYondo/info.json b/blockchains/solana/assets/EXtprP1wzrNo2bByrU9JyzqEg2hQMSCVJakeHHYondo/info.json new file mode 100644 index 00000000..2fe1af0e --- /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 00000000..3cee526c 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 00000000..08d3c124 --- /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 00000000..0ebc3937 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 00000000..b2e19b57 --- /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 00000000..3cac9a56 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 00000000..18c73fe9 --- /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 00000000..d328385d 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 00000000..d4b52c56 --- /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 00000000..be2cf7f3 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 new file mode 100644 index 00000000..a1304963 --- /dev/null +++ b/blockchains/solana/assets/EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az/info.json @@ -0,0 +1,21 @@ +{ + "name": "Walken", + "symbol": "WLKN", + "type": "SPL", + "decimals": 9, + "description": "Walk more to enter various Battle-games with your CATthletes within Walken® Platform.", + "website": "https://walken.io/", + "explorer": "https://solscan.io/token/EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az", + "status": "active", + "id": "EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az", + "links": [ + { + "name": "medium", + "url": "https://medium.com/@walken.io" + }, + { + "name": "x", + "url": "https://x.com/walken_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az/logo.png b/blockchains/solana/assets/EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az/logo.png new file mode 100644 index 00000000..b2165b22 Binary files /dev/null and b/blockchains/solana/assets/EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az/logo.png differ diff --git a/blockchains/solana/assets/EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp/info.json b/blockchains/solana/assets/EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp/info.json new file mode 100644 index 00000000..7a7abae4 --- /dev/null +++ b/blockchains/solana/assets/EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp/info.json @@ -0,0 +1,28 @@ +{ + "name": "Solana Name Service", + "symbol": "FIDA", + "type": "SPL", + "decimals": 6, + "description": "Bonfida is the full product suite that bridges the gap between Serum, Solana and the user", + "website": "https://bonfida.org/#/", + "explorer": "https://solscan.io/token/EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp", + "status": "active", + "id": "EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp", + "links": [ + { + "name": "x", + "url": "https://x.com/bonfida" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/bonfida/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bonfida" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/solana/assets/EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp/logo.png b/blockchains/solana/assets/EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp/logo.png new file mode 100644 index 00000000..7ea9821a Binary files /dev/null and b/blockchains/solana/assets/EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp/logo.png differ diff --git a/blockchains/solana/assets/Eex7VB8bGuNYQ9YwZXhmWqxv21ACFnCDyE2qGcT8eNYB/info.json b/blockchains/solana/assets/Eex7VB8bGuNYQ9YwZXhmWqxv21ACFnCDyE2qGcT8eNYB/info.json new file mode 100644 index 00000000..0cd051f3 --- /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 00000000..73ddf643 --- /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 00000000..8626de42 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 00000000..77d273a7 --- /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 00000000..9fc18cae 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 00000000..00b3ce63 --- /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 00000000..a4e1cac8 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 new file mode 100644 index 00000000..d8825127 --- /dev/null +++ b/blockchains/solana/assets/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/info.json @@ -0,0 +1,14 @@ +{ + "name": "DAI (Portal)", + "type": "SPL", + "symbol": "DAI", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://makerdao.com/", + "explorer": "https://solscan.io/token/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o", + "status": "active", + "id": "EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/logo.png b/blockchains/solana/assets/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/logo.png new file mode 100644 index 00000000..6c711d8a Binary files /dev/null and b/blockchains/solana/assets/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/logo.png differ diff --git a/blockchains/solana/assets/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG/info.json b/blockchains/solana/assets/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG/info.json new file mode 100644 index 00000000..2f30be52 --- /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 00000000..3969136c 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 00000000..956abe41 --- /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 00000000..cf8262fe 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 00000000..2eee975f --- /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 00000000..d236db0d 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 00000000..b26d770d --- /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 00000000..d53400d6 --- /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 00000000..ea03d1e2 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 00000000..ce39fc9a --- /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 00000000..4f1ec8de 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 00000000..e05fbf1a --- /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 00000000..12335ab8 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 00000000..f99746ff --- /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 new file mode 100644 index 00000000..72be0a7f --- /dev/null +++ b/blockchains/solana/assets/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB/info.json @@ -0,0 +1,32 @@ +{ + "name": "Tether USDT", + "symbol": "USDT", + "type": "SPL", + "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", + "explorer": "https://solscan.io/token/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "status": "active", + "id": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "links": [ + { + "name": "x", + "url": "https://x.com/Tether_to/" + }, + { + "name": "telegram", + "url": "https://t.me/OfficialTether" + }, + { + "name": "facebook", + "url": "https://facebook.com/tether.to" + }, + { + "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/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB/logo.png b/blockchains/solana/assets/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB/logo.png new file mode 100644 index 00000000..4b302730 Binary files /dev/null and b/blockchains/solana/assets/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB/logo.png differ diff --git a/blockchains/solana/assets/EsP4kJfKUDLfX274WoBSiiEy74Sh4tZKUCDjfULHpump/info.json b/blockchains/solana/assets/EsP4kJfKUDLfX274WoBSiiEy74Sh4tZKUCDjfULHpump/info.json new file mode 100644 index 00000000..3a78a5e1 --- /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 00000000..988362d4 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 00000000..f76c1be3 --- /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 00000000..cb32fbb8 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 00000000..fed4c588 --- /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 00000000..cdeb4886 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 00000000..6530ba6e --- /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 00000000..0a03049a 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 00000000..79694a86 --- /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 00000000..c9a98e6a 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 00000000..cfb32bda --- /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 00000000..da76aeb5 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 00000000..d77327b5 --- /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 00000000..0fd92889 Binary files /dev/null and b/blockchains/solana/assets/Ez3nzG9ofodYCvEmw73XhQ87LWNYVRM2s7diB5tBZPyM/logo.png differ diff --git a/blockchains/solana/assets/EzZp7LRN1xwu3QsB2RJRrWwEGjJGsuWzuMCeQDB3NSPK/info.json b/blockchains/solana/assets/EzZp7LRN1xwu3QsB2RJRrWwEGjJGsuWzuMCeQDB3NSPK/info.json new file mode 100644 index 00000000..08f86e35 --- /dev/null +++ b/blockchains/solana/assets/EzZp7LRN1xwu3QsB2RJRrWwEGjJGsuWzuMCeQDB3NSPK/info.json @@ -0,0 +1,14 @@ +{ + "name": "Yield Guild Games (Portal)", + "type": "SPL", + "symbol": "YGG", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://yieldguild.io/", + "explorer": "https://solscan.io/token/EzZp7LRN1xwu3QsB2RJRrWwEGjJGsuWzuMCeQDB3NSPK", + "status": "active", + "id": "EzZp7LRN1xwu3QsB2RJRrWwEGjJGsuWzuMCeQDB3NSPK", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EzZp7LRN1xwu3QsB2RJRrWwEGjJGsuWzuMCeQDB3NSPK/logo.png b/blockchains/solana/assets/EzZp7LRN1xwu3QsB2RJRrWwEGjJGsuWzuMCeQDB3NSPK/logo.png new file mode 100644 index 00000000..6668dff3 Binary files /dev/null and b/blockchains/solana/assets/EzZp7LRN1xwu3QsB2RJRrWwEGjJGsuWzuMCeQDB3NSPK/logo.png differ diff --git a/blockchains/solana/assets/EzfgjvkSwthhgHaceR3LnKXUoRkP6NUhfghdaHAj1tUv/info.json b/blockchains/solana/assets/EzfgjvkSwthhgHaceR3LnKXUoRkP6NUhfghdaHAj1tUv/info.json new file mode 100644 index 00000000..4907299c --- /dev/null +++ b/blockchains/solana/assets/EzfgjvkSwthhgHaceR3LnKXUoRkP6NUhfghdaHAj1tUv/info.json @@ -0,0 +1,14 @@ +{ + "name": "FTX Token (Portal)", + "type": "SPL", + "symbol": "FTT", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://ftx.com", + "explorer": "https://solscan.io/token/EzfgjvkSwthhgHaceR3LnKXUoRkP6NUhfghdaHAj1tUv", + "status": "active", + "id": "EzfgjvkSwthhgHaceR3LnKXUoRkP6NUhfghdaHAj1tUv", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EzfgjvkSwthhgHaceR3LnKXUoRkP6NUhfghdaHAj1tUv/logo.png b/blockchains/solana/assets/EzfgjvkSwthhgHaceR3LnKXUoRkP6NUhfghdaHAj1tUv/logo.png new file mode 100644 index 00000000..a31cef5e Binary files /dev/null and b/blockchains/solana/assets/EzfgjvkSwthhgHaceR3LnKXUoRkP6NUhfghdaHAj1tUv/logo.png differ diff --git a/blockchains/solana/assets/F14hCmEKjcaXobNE2fMdRX9EcetC2oNuiZVjpce1iohE/info.json b/blockchains/solana/assets/F14hCmEKjcaXobNE2fMdRX9EcetC2oNuiZVjpce1iohE/info.json new file mode 100644 index 00000000..5387ed47 --- /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 00000000..2211d4fd 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 00000000..0f300a2e --- /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 00000000..c0dbb314 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 00000000..d814b856 --- /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 00000000..0f2ae58f 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 00000000..7e4ff69c --- /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 00000000..1a5c94af --- /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 00000000..75d3501c 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 00000000..036578aa --- /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 00000000..769a007b 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 00000000..7a3761f9 --- /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 00000000..0ccfbac7 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 00000000..8c5a3fc5 --- /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 00000000..903a6843 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 00000000..8476a387 --- /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 00000000..452dcbc3 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 00000000..ddf1a8cf --- /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 00000000..625a4048 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 new file mode 100644 index 00000000..1886ff27 --- /dev/null +++ b/blockchains/solana/assets/F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W/info.json @@ -0,0 +1,14 @@ +{ + "name": "LUNA (Portal)", + "type": "SPL", + "symbol": "LUNA", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://terra.money", + "explorer": "https://solscan.io/token/F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W", + "status": "active", + "id": "F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W/logo.png b/blockchains/solana/assets/F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W/logo.png new file mode 100644 index 00000000..2a885151 Binary files /dev/null and b/blockchains/solana/assets/F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W/logo.png differ diff --git a/blockchains/solana/assets/F7Hwf8ib5DVCoiuyGr618Y3gon429Rnd1r5F9R5upump/info.json b/blockchains/solana/assets/F7Hwf8ib5DVCoiuyGr618Y3gon429Rnd1r5F9R5upump/info.json new file mode 100644 index 00000000..e93e1c3e --- /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 00000000..4eb36060 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 00000000..52aa5724 --- /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 00000000..f6828e17 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 00000000..b77ef034 --- /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 00000000..06d24f06 --- /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 00000000..a275d897 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 00000000..5da35d5d --- /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 00000000..3cd1491e Binary files /dev/null and b/blockchains/solana/assets/FCZKwHd9Qn1EQj8fFuNLB8dupAWCoJJNePbMqyHhS77b/logo.png differ diff --git a/blockchains/solana/assets/FCqfQSujuPxy6V42UvafBhsysWtEq1vhjfMN1PUbgaxA/info.json b/blockchains/solana/assets/FCqfQSujuPxy6V42UvafBhsysWtEq1vhjfMN1PUbgaxA/info.json new file mode 100644 index 00000000..36d182c6 --- /dev/null +++ b/blockchains/solana/assets/FCqfQSujuPxy6V42UvafBhsysWtEq1vhjfMN1PUbgaxA/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from BSC)", + "type": "SPL", + "symbol": "USDCbs", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://solscan.io/token/FCqfQSujuPxy6V42UvafBhsysWtEq1vhjfMN1PUbgaxA", + "status": "active", + "id": "FCqfQSujuPxy6V42UvafBhsysWtEq1vhjfMN1PUbgaxA", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FCqfQSujuPxy6V42UvafBhsysWtEq1vhjfMN1PUbgaxA/logo.png b/blockchains/solana/assets/FCqfQSujuPxy6V42UvafBhsysWtEq1vhjfMN1PUbgaxA/logo.png new file mode 100644 index 00000000..8ec55937 Binary files /dev/null and b/blockchains/solana/assets/FCqfQSujuPxy6V42UvafBhsysWtEq1vhjfMN1PUbgaxA/logo.png differ diff --git a/blockchains/solana/assets/FFnEbH4HK4qGYR3sz2FJbTwvBLsp43gR7aiiFvsJpump/info.json b/blockchains/solana/assets/FFnEbH4HK4qGYR3sz2FJbTwvBLsp43gR7aiiFvsJpump/info.json new file mode 100644 index 00000000..0dbe0842 --- /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 00000000..592c614a --- /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 00000000..5cbc67e9 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 00000000..d06be067 --- /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 00000000..c6fba337 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 00000000..687ddb32 --- /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 00000000..312aef28 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 new file mode 100644 index 00000000..20146054 --- /dev/null +++ b/blockchains/solana/assets/FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe/info.json @@ -0,0 +1,65 @@ +{ + "name": "Flux", + "type": "SPL", + "symbol": "FLUX", + "decimals": 8, + "website": "https://runonflux.io", + "description": "The Flux Ecosystem is a suite of decentralized computing services and blockchain-as-a-service solutions together to offer an interoperable, decentralized AWS-like environment.Flux utilizes a POW to power the ecosystem, providing incentive for hardware, governance on-chain, enterprise-grade compute power and utilizes the blockchain to ensure transparency.Flux node operators can choose from three tiers to stand up nodes, rewarding anyone for providing hardware to the network anywhere in the world.", + "explorer": "https://solscan.io/token/FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe", + "status": "active", + "id": "FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe", + "links": [ + { + "name": "x", + "url": "https://x.com/RunOnFlux" + }, + { + "name": "discord", + "url": "https://discord.com/runonflux" + }, + { + "name": "github", + "url": "https://github.com/RunOnFlux" + }, + { + "name": "telegram", + "url": "https://t.me/zelhub" + }, + { + "name": "forum", + "url": "https://bitcointalk.org/index.php?topic=2853688.0" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/RunOnFlux/" + }, + { + "name": "medium", + "url": "https://fluxofficial.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCphbdfb1MXYgUPsdhQPcnGw" + }, + { + "name": "facebook", + "url": "https://facebook.com/ruonflux/" + }, + { + "name": "source_code", + "url": "https://github.com/RunOnFlux/fluxd" + }, + { + "name": "whitepaper", + "url": "https://fluxwhitepaper.app.runonflux.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zel/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/flux-zelcash" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe/logo.png b/blockchains/solana/assets/FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe/logo.png new file mode 100644 index 00000000..fd3dc61c Binary files /dev/null and b/blockchains/solana/assets/FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe/logo.png differ diff --git a/blockchains/solana/assets/FLqH2jB2DZPJP5nnVFAakRKaNTcDZtq71Pnpp6Aondo/info.json b/blockchains/solana/assets/FLqH2jB2DZPJP5nnVFAakRKaNTcDZtq71Pnpp6Aondo/info.json new file mode 100644 index 00000000..71524dcf --- /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 00000000..dd1a5ed2 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 00000000..8edd4b4a --- /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 00000000..eefa539b --- /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 00000000..a680bccc 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 00000000..fe004b80 --- /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 00000000..7e1ff81e 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 new file mode 100644 index 00000000..f2ee3be7 --- /dev/null +++ b/blockchains/solana/assets/FR87nWEUxVgerFGhZM8Y4AggKGLnaXswr1Pd8wZ4kZcp/info.json @@ -0,0 +1,14 @@ +{ + "name": "Frax (Portal)", + "type": "SPL", + "symbol": "FRAX", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://frax.finance", + "explorer": "https://solscan.io/token/FR87nWEUxVgerFGhZM8Y4AggKGLnaXswr1Pd8wZ4kZcp", + "status": "active", + "id": "FR87nWEUxVgerFGhZM8Y4AggKGLnaXswr1Pd8wZ4kZcp", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FR87nWEUxVgerFGhZM8Y4AggKGLnaXswr1Pd8wZ4kZcp/logo.png b/blockchains/solana/assets/FR87nWEUxVgerFGhZM8Y4AggKGLnaXswr1Pd8wZ4kZcp/logo.png new file mode 100644 index 00000000..0e393dd3 Binary files /dev/null and b/blockchains/solana/assets/FR87nWEUxVgerFGhZM8Y4AggKGLnaXswr1Pd8wZ4kZcp/logo.png differ diff --git a/blockchains/solana/assets/FRySi8LPkuByB7VPSCCggxpewFUeeJiwEGRKKuhwpKcX/info.json b/blockchains/solana/assets/FRySi8LPkuByB7VPSCCggxpewFUeeJiwEGRKKuhwpKcX/info.json new file mode 100644 index 00000000..ad099628 --- /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 00000000..11d8327b 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 00000000..697bebe9 --- /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 00000000..171f8280 Binary files /dev/null and b/blockchains/solana/assets/FS66v5XYtJAFo14LiPz5HT93EUMAHmYipCfQhLpU4ss8/logo.png differ diff --git a/blockchains/solana/assets/FTtXEUosNn6EKG2SQtfbGuYB4rBttreQQcoWn1YDsuTq/info.json b/blockchains/solana/assets/FTtXEUosNn6EKG2SQtfbGuYB4rBttreQQcoWn1YDsuTq/info.json new file mode 100644 index 00000000..4b8fae5b --- /dev/null +++ b/blockchains/solana/assets/FTtXEUosNn6EKG2SQtfbGuYB4rBttreQQcoWn1YDsuTq/info.json @@ -0,0 +1,14 @@ +{ + "name": "UpBots (Portal)", + "type": "SPL", + "symbol": "UBXT", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.upbots.com", + "explorer": "https://solscan.io/token/FTtXEUosNn6EKG2SQtfbGuYB4rBttreQQcoWn1YDsuTq", + "status": "active", + "id": "FTtXEUosNn6EKG2SQtfbGuYB4rBttreQQcoWn1YDsuTq", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FTtXEUosNn6EKG2SQtfbGuYB4rBttreQQcoWn1YDsuTq/logo.png b/blockchains/solana/assets/FTtXEUosNn6EKG2SQtfbGuYB4rBttreQQcoWn1YDsuTq/logo.png new file mode 100644 index 00000000..2f7a8202 Binary files /dev/null and b/blockchains/solana/assets/FTtXEUosNn6EKG2SQtfbGuYB4rBttreQQcoWn1YDsuTq/logo.png differ diff --git a/blockchains/solana/assets/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv/info.json b/blockchains/solana/assets/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv/info.json new file mode 100644 index 00000000..d1d979d3 --- /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 00000000..5570fbd4 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 00000000..eb430a15 --- /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 00000000..b50dd521 Binary files /dev/null and b/blockchains/solana/assets/FUAfBo2jgks6gB4Z4LfZkqSZgzNucisEHqnNebaRxM1P/logo.png differ diff --git a/blockchains/solana/assets/FUGsN8H74WjRBBMfQWcf9Kk32gebA9VnNaGxqwcVvUW7/info.json b/blockchains/solana/assets/FUGsN8H74WjRBBMfQWcf9Kk32gebA9VnNaGxqwcVvUW7/info.json new file mode 100644 index 00000000..f4c30f1a --- /dev/null +++ b/blockchains/solana/assets/FUGsN8H74WjRBBMfQWcf9Kk32gebA9VnNaGxqwcVvUW7/info.json @@ -0,0 +1,14 @@ +{ + "name": "Governance OHM (Portal)", + "type": "SPL", + "symbol": "gOHM", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.olympusdao.finance/", + "explorer": "https://solscan.io/token/FUGsN8H74WjRBBMfQWcf9Kk32gebA9VnNaGxqwcVvUW7", + "status": "active", + "id": "FUGsN8H74WjRBBMfQWcf9Kk32gebA9VnNaGxqwcVvUW7", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FUGsN8H74WjRBBMfQWcf9Kk32gebA9VnNaGxqwcVvUW7/logo.png b/blockchains/solana/assets/FUGsN8H74WjRBBMfQWcf9Kk32gebA9VnNaGxqwcVvUW7/logo.png new file mode 100644 index 00000000..03789516 Binary files /dev/null and b/blockchains/solana/assets/FUGsN8H74WjRBBMfQWcf9Kk32gebA9VnNaGxqwcVvUW7/logo.png differ diff --git a/blockchains/solana/assets/FUfmU2in2TBjEXsD9KuSt7qFx7smM9fGNEnSTLgfpump/info.json b/blockchains/solana/assets/FUfmU2in2TBjEXsD9KuSt7qFx7smM9fGNEnSTLgfpump/info.json new file mode 100644 index 00000000..8c5eaf57 --- /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 00000000..71f18ac9 --- /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 00000000..3f46f3a0 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 00000000..ea741dfa --- /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 00000000..1bb23f0f 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 00000000..d85b27a2 --- /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 00000000..7892063b 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 00000000..c95ed069 --- /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 00000000..df0b8121 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 00000000..b638a6fb --- /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 00000000..8ea97261 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 00000000..3389a4fe --- /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 00000000..347cdd6a 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 00000000..f0da445d --- /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 00000000..4aff4a4c 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 00000000..f063aee8 --- /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 00000000..1f4b63c7 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 00000000..a6c28743 --- /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 00000000..39b74c24 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 00000000..961f192f --- /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 00000000..ab6ff48d 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 00000000..72afae8f --- /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 00000000..e20fbce7 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 00000000..4b516172 --- /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 00000000..bf1f1bf2 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 00000000..4017a075 --- /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 new file mode 100644 index 00000000..b3ae6e6f --- /dev/null +++ b/blockchains/solana/assets/FiCiuX9DetEE89PgRAU1hmoptnem8b1fkpEq8PGYTYkd/info.json @@ -0,0 +1,41 @@ +{ + "name": "Million", + "symbol": "MM", + "type": "SPL", + "decimals": 9, + "description": "Million is a digital currency with 1,000,000 total supply. https://milliontoken.org", + "website": "https://milliontoken.org", + "explorer": "https://solscan.io/token/FiCiuX9DetEE89PgRAU1hmoptnem8b1fkpEq8PGYTYkd", + "status": "active", + "id": "FiCiuX9DetEE89PgRAU1hmoptnem8b1fkpEq8PGYTYkd", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/million" + }, + { + "name": "telegram", + "url": "https://t.me/millionjacuzzibar" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/milliontoken/" + }, + { + "name": "x", + "url": "https://x.com/Million__Token" + }, + { + "name": "facebook", + "url": "https://facebook.com/groups/milliontoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/million/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/million" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FiCiuX9DetEE89PgRAU1hmoptnem8b1fkpEq8PGYTYkd/logo.png b/blockchains/solana/assets/FiCiuX9DetEE89PgRAU1hmoptnem8b1fkpEq8PGYTYkd/logo.png new file mode 100644 index 00000000..20b89158 Binary files /dev/null and b/blockchains/solana/assets/FiCiuX9DetEE89PgRAU1hmoptnem8b1fkpEq8PGYTYkd/logo.png differ diff --git a/blockchains/solana/assets/Fm9rHUTF5v3hwMLbStjZXqNBBoZyGriQaFM6sTFz3K8A/info.json b/blockchains/solana/assets/Fm9rHUTF5v3hwMLbStjZXqNBBoZyGriQaFM6sTFz3K8A/info.json new file mode 100644 index 00000000..3a608b8f --- /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 00000000..59e72450 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 00000000..eee2d9f0 --- /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 00000000..132268bc 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 00000000..448e641c --- /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 00000000..7bb73fde 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 00000000..961526ed --- /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 00000000..62646f89 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 00000000..5ab89396 --- /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 00000000..b4f7c1ca 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 00000000..8994f7f2 --- /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 00000000..c3efa9b1 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 00000000..7204cff8 --- /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 00000000..6b74e466 --- /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 00000000..a1cf9ae6 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 00000000..373e3dda --- /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 00000000..8b4ffb04 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 00000000..04b605b7 --- /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 00000000..d1e1626f 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 00000000..55191383 --- /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 00000000..c3668e28 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 00000000..a5bd5f91 --- /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/FtgGSFADXBtroxq8VCausXRr2of47QBf5AS1NtZCu4GD/info.json b/blockchains/solana/assets/FtgGSFADXBtroxq8VCausXRr2of47QBf5AS1NtZCu4GD/info.json new file mode 100644 index 00000000..4869ef08 --- /dev/null +++ b/blockchains/solana/assets/FtgGSFADXBtroxq8VCausXRr2of47QBf5AS1NtZCu4GD/info.json @@ -0,0 +1,11 @@ +{ + "name": "Brazilian Digital Token", + "symbol": "BRZ", + "type": "SPL", + "decimals": 4, + "description": "BRZ is a fully backed Brazilian Real stablecoin, a multi-chain digital asset that provides international liquidity and ease-of-access to both Latin Americans and international players who wish to access the Brazilian market", + "website": "https://brztoken.io/", + "explorer": "https://solscan.io/token/FtgGSFADXBtroxq8VCausXRr2of47QBf5AS1NtZCu4GD", + "status": "active", + "id": "FtgGSFADXBtroxq8VCausXRr2of47QBf5AS1NtZCu4GD" +} \ No newline at end of file diff --git a/blockchains/solana/assets/FtgGSFADXBtroxq8VCausXRr2of47QBf5AS1NtZCu4GD/logo.png b/blockchains/solana/assets/FtgGSFADXBtroxq8VCausXRr2of47QBf5AS1NtZCu4GD/logo.png new file mode 100644 index 00000000..e616f93c Binary files /dev/null and b/blockchains/solana/assets/FtgGSFADXBtroxq8VCausXRr2of47QBf5AS1NtZCu4GD/logo.png differ diff --git a/blockchains/solana/assets/FvgqHMfL9yn39V79huDPy3YUNDoYJpuLWng2JfmQpump/info.json b/blockchains/solana/assets/FvgqHMfL9yn39V79huDPy3YUNDoYJpuLWng2JfmQpump/info.json new file mode 100644 index 00000000..338a762e --- /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 00000000..d351422b 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 00000000..ff69922a --- /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 00000000..8be6e902 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 00000000..6d27808c --- /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 00000000..d203b698 --- /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 00000000..dea8d0c5 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 00000000..09b868c4 --- /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 00000000..54011d4a 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 00000000..8512010a --- /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 00000000..529e5d22 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 00000000..2d77a94b --- /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 00000000..b04a723e 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 00000000..aa2e8acd --- /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 00000000..0adc46ba --- /dev/null +++ b/blockchains/solana/assets/G8LfyGVsjsLzetJ5RWZVAhMo4H9cb58ET1Z6gEZJQdPM/info.json @@ -0,0 +1,29 @@ +{ + "name": "Travala.com", + "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 00000000..1b8b37e0 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 00000000..83b6fe19 --- /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 00000000..3d507c87 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 00000000..28db8bd5 --- /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 00000000..f9296d77 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 00000000..5ce0df80 --- /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 00000000..dd8a30a7 --- /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 00000000..98f55d35 --- /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 00000000..ba828342 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 00000000..56b38827 --- /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 00000000..c2251af7 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 00000000..b3ac19b0 --- /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 00000000..28868bb3 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 new file mode 100644 index 00000000..a15b8e75 --- /dev/null +++ b/blockchains/solana/assets/GENEtH5amGSi8kHAtQoezp1XEXwZJ8vcuePYnXdKrMYz/info.json @@ -0,0 +1,25 @@ +{ + "name": "Genopets", + "symbol": "GENE", + "type": "SPL", + "decimals": 9, + "description": "A Genopet is your NFT spirit animal encoded with your personality and fitness data. ", + "website": "https://genopets.me/", + "explorer": "https://solscan.io/token/GENEtH5amGSi8kHAtQoezp1XEXwZJ8vcuePYnXdKrMYz", + "status": "active", + "id": "GENEtH5amGSi8kHAtQoezp1XEXwZJ8vcuePYnXdKrMYz", + "links": [ + { + "name": "x", + "url": "https://x.com/genopets" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/genopets/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/genopets" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GENEtH5amGSi8kHAtQoezp1XEXwZJ8vcuePYnXdKrMYz/logo.png b/blockchains/solana/assets/GENEtH5amGSi8kHAtQoezp1XEXwZJ8vcuePYnXdKrMYz/logo.png new file mode 100644 index 00000000..aeb435a5 Binary files /dev/null and b/blockchains/solana/assets/GENEtH5amGSi8kHAtQoezp1XEXwZJ8vcuePYnXdKrMYz/logo.png differ diff --git a/blockchains/solana/assets/GEuuznWpn6iuQAJxLKQDVGXPtrqXHNWTk3gZqqvJpump/info.json b/blockchains/solana/assets/GEuuznWpn6iuQAJxLKQDVGXPtrqXHNWTk3gZqqvJpump/info.json new file mode 100644 index 00000000..c07dbf6b --- /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 00000000..1ac222c6 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 00000000..2e152281 --- /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 00000000..b3e8f23f --- /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 00000000..98541f17 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 new file mode 100644 index 00000000..e8fc0506 --- /dev/null +++ b/blockchains/solana/assets/GHvFFSZ9BctWsEc5nujR1MTmmJWY7tgQz2AXE6WVFtGN/info.json @@ -0,0 +1,29 @@ +{ + "name": "SolAPE Finance", + "symbol": "SOLAPE", + "type": "SPL", + "decimals": 9, + "description": "SOLAPE is a deflationary token and Decentralized exchange built on the Solana Network. Built by Apes, For Apes. ", + "website": "https://solape.io", + "explorer": "https://solscan.io/token/GHvFFSZ9BctWsEc5nujR1MTmmJWY7tgQz2AXE6WVFtGN", + "status": "active", + "id": "GHvFFSZ9BctWsEc5nujR1MTmmJWY7tgQz2AXE6WVFtGN", + "links": [ + { + "name": "x", + "url": "https://x.com/solapefinance" + }, + { + "name": "discord", + "url": "https://discord.com/Ypwhz2BPCd" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/solape-token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solapefinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GHvFFSZ9BctWsEc5nujR1MTmmJWY7tgQz2AXE6WVFtGN/logo.png b/blockchains/solana/assets/GHvFFSZ9BctWsEc5nujR1MTmmJWY7tgQz2AXE6WVFtGN/logo.png new file mode 100644 index 00000000..faafbccb Binary files /dev/null and b/blockchains/solana/assets/GHvFFSZ9BctWsEc5nujR1MTmmJWY7tgQz2AXE6WVFtGN/logo.png differ diff --git a/blockchains/solana/assets/GJAFwWjJ3vnTsrQVabjBVK2TYB1YtRCQXRDfDgUnpump/info.json b/blockchains/solana/assets/GJAFwWjJ3vnTsrQVabjBVK2TYB1YtRCQXRDfDgUnpump/info.json new file mode 100644 index 00000000..d867997f --- /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 00000000..775c6755 Binary files /dev/null and b/blockchains/solana/assets/GJAFwWjJ3vnTsrQVabjBVK2TYB1YtRCQXRDfDgUnpump/logo.png differ diff --git a/blockchains/solana/assets/GJa1VeEYLTRoHbaeqcxfzHmjGCGtZGF3CUqxv9znZZAY/info.json b/blockchains/solana/assets/GJa1VeEYLTRoHbaeqcxfzHmjGCGtZGF3CUqxv9znZZAY/info.json new file mode 100644 index 00000000..65770c5a --- /dev/null +++ b/blockchains/solana/assets/GJa1VeEYLTRoHbaeqcxfzHmjGCGtZGF3CUqxv9znZZAY/info.json @@ -0,0 +1,14 @@ +{ + "name": "0x (Portal)", + "type": "SPL", + "symbol": "ZRX", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://0x.org/", + "explorer": "https://solscan.io/token/GJa1VeEYLTRoHbaeqcxfzHmjGCGtZGF3CUqxv9znZZAY", + "status": "active", + "id": "GJa1VeEYLTRoHbaeqcxfzHmjGCGtZGF3CUqxv9znZZAY", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GJa1VeEYLTRoHbaeqcxfzHmjGCGtZGF3CUqxv9znZZAY/logo.png b/blockchains/solana/assets/GJa1VeEYLTRoHbaeqcxfzHmjGCGtZGF3CUqxv9znZZAY/logo.png new file mode 100644 index 00000000..252e63d7 Binary files /dev/null and b/blockchains/solana/assets/GJa1VeEYLTRoHbaeqcxfzHmjGCGtZGF3CUqxv9znZZAY/logo.png differ diff --git a/blockchains/solana/assets/GJtJuWD9qYcCkrwMBmtY1tpapV1sKfB2zUv9Q4aqpump/info.json b/blockchains/solana/assets/GJtJuWD9qYcCkrwMBmtY1tpapV1sKfB2zUv9Q4aqpump/info.json new file mode 100644 index 00000000..78e75b5c --- /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 00000000..be6de7f4 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 00000000..53e61bff --- /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 00000000..8a0f778e 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 00000000..7a38a528 --- /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 00000000..319d1534 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 00000000..0c7506cc --- /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 00000000..41acaa72 --- /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 00000000..b3d219cd 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 00000000..efe5a317 --- /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 00000000..84696fdd 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 00000000..49392ad7 --- /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 00000000..3612d808 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 00000000..3ad253e7 --- /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 00000000..9786f80a 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 00000000..1fd68eb7 --- /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 00000000..1e114404 Binary files /dev/null and b/blockchains/solana/assets/GUdXKe5B35QBcqa8VrPQqn8LCQrK2X1aecCQSJs3EVrS/logo.png differ diff --git a/blockchains/solana/assets/GWdkYFnXnSJAsCBvmsqFLiPPe2tpvXynZcJdxf11Fu3U/info.json b/blockchains/solana/assets/GWdkYFnXnSJAsCBvmsqFLiPPe2tpvXynZcJdxf11Fu3U/info.json new file mode 100644 index 00000000..d31208bd --- /dev/null +++ b/blockchains/solana/assets/GWdkYFnXnSJAsCBvmsqFLiPPe2tpvXynZcJdxf11Fu3U/info.json @@ -0,0 +1,14 @@ +{ + "name": "UFO Gaming (Portal)", + "type": "SPL", + "symbol": "UFO", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://ufogaming.io/", + "explorer": "https://solscan.io/token/GWdkYFnXnSJAsCBvmsqFLiPPe2tpvXynZcJdxf11Fu3U", + "status": "active", + "id": "GWdkYFnXnSJAsCBvmsqFLiPPe2tpvXynZcJdxf11Fu3U", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GWdkYFnXnSJAsCBvmsqFLiPPe2tpvXynZcJdxf11Fu3U/logo.png b/blockchains/solana/assets/GWdkYFnXnSJAsCBvmsqFLiPPe2tpvXynZcJdxf11Fu3U/logo.png new file mode 100644 index 00000000..75379631 Binary files /dev/null and b/blockchains/solana/assets/GWdkYFnXnSJAsCBvmsqFLiPPe2tpvXynZcJdxf11Fu3U/logo.png differ diff --git a/blockchains/solana/assets/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB/info.json b/blockchains/solana/assets/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB/info.json new file mode 100644 index 00000000..8ce63245 --- /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 00000000..d4805355 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 00000000..fbb4a156 --- /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 00000000..7dcfc4bf 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 00000000..23a17bdb --- /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 00000000..2370b52f 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 00000000..df722099 --- /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 new file mode 100644 index 00000000..2d4c9819 --- /dev/null +++ b/blockchains/solana/assets/Ga2AXHpfAF6mv2ekZwcsJFqu7wB4NV331qNH7fW9Nst8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped XRP", + "symbol": "XRP", + "type": "SPL", + "decimals": 6, + "description": "XRP is a digital asset built for payments", + "website": "https://ripple.com/xrp/", + "explorer": "https://solscan.io/token/Ga2AXHpfAF6mv2ekZwcsJFqu7wB4NV331qNH7fW9Nst8", + "status": "active", + "id": "Ga2AXHpfAF6mv2ekZwcsJFqu7wB4NV331qNH7fW9Nst8", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/ripplepay" + }, + { + "name": "x", + "url": "https://x.com/Ripple" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Ga2AXHpfAF6mv2ekZwcsJFqu7wB4NV331qNH7fW9Nst8/logo.png b/blockchains/solana/assets/Ga2AXHpfAF6mv2ekZwcsJFqu7wB4NV331qNH7fW9Nst8/logo.png new file mode 100644 index 00000000..89ca2727 Binary files /dev/null and b/blockchains/solana/assets/Ga2AXHpfAF6mv2ekZwcsJFqu7wB4NV331qNH7fW9Nst8/logo.png differ diff --git a/blockchains/solana/assets/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN/info.json b/blockchains/solana/assets/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN/info.json new file mode 100644 index 00000000..f79e237c --- /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 00000000..081605ea 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 00000000..11eb132d --- /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 00000000..cc372823 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 00000000..b88dc448 --- /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 00000000..a299f5f8 --- /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 00000000..4e9df626 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 00000000..f17cb6bf --- /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 00000000..d6de1793 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 00000000..f6845872 --- /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 00000000..767801bd 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 00000000..6031543c --- /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 00000000..46716afe 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 00000000..14b17aeb --- /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 00000000..e034bb1c --- /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 00000000..2ae598d3 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 00000000..83a671a2 --- /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 00000000..4bdd4e50 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 00000000..386d8f94 --- /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 00000000..1ca43abe Binary files /dev/null and b/blockchains/solana/assets/GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f/logo.png differ diff --git a/blockchains/solana/assets/Gq2norJ1kBemBp3mPfkgAUMhMMmnFmY4zEyi26tRcxFB/info.json b/blockchains/solana/assets/Gq2norJ1kBemBp3mPfkgAUMhMMmnFmY4zEyi26tRcxFB/info.json new file mode 100644 index 00000000..294df161 --- /dev/null +++ b/blockchains/solana/assets/Gq2norJ1kBemBp3mPfkgAUMhMMmnFmY4zEyi26tRcxFB/info.json @@ -0,0 +1,14 @@ +{ + "name": "Ankr (Portal)", + "type": "SPL", + "symbol": "ANKR", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://stakefi.ankr.com", + "explorer": "https://solscan.io/token/Gq2norJ1kBemBp3mPfkgAUMhMMmnFmY4zEyi26tRcxFB", + "status": "active", + "id": "Gq2norJ1kBemBp3mPfkgAUMhMMmnFmY4zEyi26tRcxFB", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Gq2norJ1kBemBp3mPfkgAUMhMMmnFmY4zEyi26tRcxFB/logo.png b/blockchains/solana/assets/Gq2norJ1kBemBp3mPfkgAUMhMMmnFmY4zEyi26tRcxFB/logo.png new file mode 100644 index 00000000..2ccabc8e Binary files /dev/null and b/blockchains/solana/assets/Gq2norJ1kBemBp3mPfkgAUMhMMmnFmY4zEyi26tRcxFB/logo.png differ diff --git a/blockchains/solana/assets/GrQ4UPxrC83QvxW5T6yDATVMEqAYuySGZf5FjL9cBCst/info.json b/blockchains/solana/assets/GrQ4UPxrC83QvxW5T6yDATVMEqAYuySGZf5FjL9cBCst/info.json new file mode 100644 index 00000000..2de8fadd --- /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 00000000..73469174 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 00000000..df4cbd65 --- /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 00000000..9aca5d77 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 00000000..affb0fc5 --- /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 00000000..af32eee7 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 00000000..a6bb7216 --- /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 00000000..b36a85a0 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 00000000..3f50265d --- /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 00000000..2d5bb506 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 00000000..416e23c2 --- /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 00000000..d1afa331 Binary files /dev/null and b/blockchains/solana/assets/Gx5dX1pM5aCQn8wtXEmEHSUia3W57Jq7qdu7kKsHvirt/logo.png differ diff --git a/blockchains/solana/assets/Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG/info.json b/blockchains/solana/assets/Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG/info.json new file mode 100644 index 00000000..d48eef3d --- /dev/null +++ b/blockchains/solana/assets/Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG/info.json @@ -0,0 +1,14 @@ +{ + "name": "MATIC (Portal from Polygon)", + "type": "SPL", + "symbol": "MATICpo", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://polygon.technology/", + "explorer": "https://solscan.io/token/Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG", + "status": "active", + "id": "Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG/logo.png b/blockchains/solana/assets/Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG/logo.png new file mode 100644 index 00000000..60c97897 Binary files /dev/null and b/blockchains/solana/assets/Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG/logo.png differ diff --git a/blockchains/solana/assets/H1aN3vcvB68eaFPbMkoAss3vnfi4AhP5C2dpnrZzdBc7/info.json b/blockchains/solana/assets/H1aN3vcvB68eaFPbMkoAss3vnfi4AhP5C2dpnrZzdBc7/info.json new file mode 100644 index 00000000..0a1f7d9f --- /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 00000000..561a6054 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 00000000..7c37c55e --- /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 00000000..d8deca89 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 00000000..c092452f --- /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 00000000..30c44669 Binary files /dev/null and b/blockchains/solana/assets/H2c31USxu35MDkBrGph8pUDUnmzo2e4Rf4hnvL2Upump/logo.png differ diff --git a/blockchains/solana/assets/H2mf9QNdU2Niq6QR7367Ua2trBsvscLyX5bz7R3Pw5sE/info.json b/blockchains/solana/assets/H2mf9QNdU2Niq6QR7367Ua2trBsvscLyX5bz7R3Pw5sE/info.json new file mode 100644 index 00000000..7c296ee4 --- /dev/null +++ b/blockchains/solana/assets/H2mf9QNdU2Niq6QR7367Ua2trBsvscLyX5bz7R3Pw5sE/info.json @@ -0,0 +1,14 @@ +{ + "name": "Lido Staked Ether (Portal)", + "type": "SPL", + "symbol": "stETH", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://lido.fi/", + "explorer": "https://solscan.io/token/H2mf9QNdU2Niq6QR7367Ua2trBsvscLyX5bz7R3Pw5sE", + "status": "active", + "id": "H2mf9QNdU2Niq6QR7367Ua2trBsvscLyX5bz7R3Pw5sE", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/H2mf9QNdU2Niq6QR7367Ua2trBsvscLyX5bz7R3Pw5sE/logo.png b/blockchains/solana/assets/H2mf9QNdU2Niq6QR7367Ua2trBsvscLyX5bz7R3Pw5sE/logo.png new file mode 100644 index 00000000..423a3c71 Binary files /dev/null and b/blockchains/solana/assets/H2mf9QNdU2Niq6QR7367Ua2trBsvscLyX5bz7R3Pw5sE/logo.png differ diff --git a/blockchains/solana/assets/H33XL6HHDReCVRgSApZpsXM7Hy7JGyLztRJaGxjapump/info.json b/blockchains/solana/assets/H33XL6HHDReCVRgSApZpsXM7Hy7JGyLztRJaGxjapump/info.json new file mode 100644 index 00000000..2ab0a98a --- /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 00000000..11fd192a 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 00000000..1f898c8a --- /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 00000000..508046b9 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 00000000..81b9eca4 --- /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 00000000..cb4b5160 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 00000000..320053a8 --- /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 00000000..6b011dc0 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 00000000..b35a280d --- /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 00000000..6730ff02 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 00000000..22c53966 --- /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 00000000..900a1f10 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 00000000..68b96444 --- /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 00000000..fbf5f303 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 00000000..39cfbe11 --- /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 00000000..62d8cabe 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 00000000..fe1278d6 --- /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 00000000..b6c76d78 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 00000000..568a11f9 --- /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 00000000..fcb70f2d 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 00000000..2bfd8ab7 --- /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 00000000..e78329ae Binary files /dev/null and b/blockchains/solana/assets/HBoNJ5v8g71s2boRivrHnfSB5MVPLDHHyVjruPfhGkvL/logo.png differ diff --git a/blockchains/solana/assets/HCTVFTzHL21a1dPzKxAUeWwqbE8QMUyvgChFDL4XYoi1/info.json b/blockchains/solana/assets/HCTVFTzHL21a1dPzKxAUeWwqbE8QMUyvgChFDL4XYoi1/info.json new file mode 100644 index 00000000..3b5e9a68 --- /dev/null +++ b/blockchains/solana/assets/HCTVFTzHL21a1dPzKxAUeWwqbE8QMUyvgChFDL4XYoi1/info.json @@ -0,0 +1,14 @@ +{ + "name": "Loopring (Portal)", + "type": "SPL", + "symbol": "LRC", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://loopring.org/", + "explorer": "https://solscan.io/token/HCTVFTzHL21a1dPzKxAUeWwqbE8QMUyvgChFDL4XYoi1", + "status": "active", + "id": "HCTVFTzHL21a1dPzKxAUeWwqbE8QMUyvgChFDL4XYoi1", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HCTVFTzHL21a1dPzKxAUeWwqbE8QMUyvgChFDL4XYoi1/logo.png b/blockchains/solana/assets/HCTVFTzHL21a1dPzKxAUeWwqbE8QMUyvgChFDL4XYoi1/logo.png new file mode 100644 index 00000000..86e6a134 Binary files /dev/null and b/blockchains/solana/assets/HCTVFTzHL21a1dPzKxAUeWwqbE8QMUyvgChFDL4XYoi1/logo.png differ diff --git a/blockchains/solana/assets/HCb2Y3mEpRpcePrJFsDo8Web7zmtY3ZwySQnVaw2q4v8/info.json b/blockchains/solana/assets/HCb2Y3mEpRpcePrJFsDo8Web7zmtY3ZwySQnVaw2q4v8/info.json new file mode 100644 index 00000000..2f6e761a --- /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 00000000..ef78eec2 --- /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 00000000..73f70122 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 00000000..33e6abc1 --- /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 00000000..78bac4aa 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 new file mode 100644 index 00000000..0d076bb2 --- /dev/null +++ b/blockchains/solana/assets/HG2FnifX1WPY6UvnkXnMx2kAt4E4Ssu6DZ2aiB5RmLHo/info.json @@ -0,0 +1,33 @@ +{ + "name": "ISLAMICOIN", + "type": "SPL", + "symbol": "ISLAMI", + "decimals": 7, + "website": "https://islamicoin.finance", + "description": "ISLAMICOIN is a cryptocurrency for the Global Muslim community", + "explorer": "https://solscan.io/token/HG2FnifX1WPY6UvnkXnMx2kAt4E4Ssu6DZ2aiB5RmLHo", + "status": "active", + "id": "HG2FnifX1WPY6UvnkXnMx2kAt4E4Ssu6DZ2aiB5RmLHo", + "links": [ + { + "name": "x", + "url": "https://x.com/islamicoin" + }, + { + "name": "github", + "url": "https://github.com/islamiblockchain" + }, + { + "name": "telegram", + "url": "https://t.me/islamicoinchat" + }, + { + "name": "telegram_news", + "url": "https://t.me/islamicoin1" + }, + { + "name": "facebook", + "url": "https://facebook.com/islamicoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HG2FnifX1WPY6UvnkXnMx2kAt4E4Ssu6DZ2aiB5RmLHo/logo.png b/blockchains/solana/assets/HG2FnifX1WPY6UvnkXnMx2kAt4E4Ssu6DZ2aiB5RmLHo/logo.png new file mode 100644 index 00000000..64357e75 Binary files /dev/null and b/blockchains/solana/assets/HG2FnifX1WPY6UvnkXnMx2kAt4E4Ssu6DZ2aiB5RmLHo/logo.png differ diff --git a/blockchains/solana/assets/HGTxJQKzuMjzKkHVpRLcFHwE6ngVCJbcP35FDQtmRzhx/info.json b/blockchains/solana/assets/HGTxJQKzuMjzKkHVpRLcFHwE6ngVCJbcP35FDQtmRzhx/info.json new file mode 100644 index 00000000..800ac775 --- /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 00000000..ff2e4a66 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 new file mode 100644 index 00000000..e9dbc357 --- /dev/null +++ b/blockchains/solana/assets/HGsLG4PnZ28L8A4R5nPqKgZd86zUUdmfnkTRnuFJ5dAX/info.json @@ -0,0 +1,14 @@ +{ + "name": "Graph Token (Portal)", + "type": "SPL", + "symbol": "GRT", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://thegraph.com/", + "explorer": "https://solscan.io/token/HGsLG4PnZ28L8A4R5nPqKgZd86zUUdmfnkTRnuFJ5dAX", + "status": "active", + "id": "HGsLG4PnZ28L8A4R5nPqKgZd86zUUdmfnkTRnuFJ5dAX", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HGsLG4PnZ28L8A4R5nPqKgZd86zUUdmfnkTRnuFJ5dAX/logo.png b/blockchains/solana/assets/HGsLG4PnZ28L8A4R5nPqKgZd86zUUdmfnkTRnuFJ5dAX/logo.png new file mode 100644 index 00000000..a18c3225 Binary files /dev/null and b/blockchains/solana/assets/HGsLG4PnZ28L8A4R5nPqKgZd86zUUdmfnkTRnuFJ5dAX/logo.png differ diff --git a/blockchains/solana/assets/HHjoYwUp5aU6pnrvN4s2pwEErwXNZKhxKGYjRJMoBjLw/info.json b/blockchains/solana/assets/HHjoYwUp5aU6pnrvN4s2pwEErwXNZKhxKGYjRJMoBjLw/info.json new file mode 100644 index 00000000..52b20d51 --- /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 00000000..70a3cc30 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 00000000..3d88fa56 --- /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 00000000..9e007c7f 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 00000000..5f89b58f --- /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 00000000..88a147df 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 00000000..9fece0de --- /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 00000000..6a90062e 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 00000000..fd51ab2b --- /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 00000000..f4655e20 --- /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 00000000..abc9d691 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 00000000..8fd5a00e --- /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 00000000..63711603 Binary files /dev/null and b/blockchains/solana/assets/HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh/logo.png differ diff --git a/blockchains/solana/assets/HRQke5DKdDo3jV7wnomyiM8AA3EzkVnxMDdo2FQ5XUe1/info.json b/blockchains/solana/assets/HRQke5DKdDo3jV7wnomyiM8AA3EzkVnxMDdo2FQ5XUe1/info.json new file mode 100644 index 00000000..b5d438fa --- /dev/null +++ b/blockchains/solana/assets/HRQke5DKdDo3jV7wnomyiM8AA3EzkVnxMDdo2FQ5XUe1/info.json @@ -0,0 +1,14 @@ +{ + "name": "Magic Internet Money (Portal from Ethereum)", + "type": "SPL", + "symbol": "MIMet", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://abracadabra.money/ ", + "explorer": "https://solscan.io/token/HRQke5DKdDo3jV7wnomyiM8AA3EzkVnxMDdo2FQ5XUe1", + "status": "active", + "id": "HRQke5DKdDo3jV7wnomyiM8AA3EzkVnxMDdo2FQ5XUe1", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HRQke5DKdDo3jV7wnomyiM8AA3EzkVnxMDdo2FQ5XUe1/logo.png b/blockchains/solana/assets/HRQke5DKdDo3jV7wnomyiM8AA3EzkVnxMDdo2FQ5XUe1/logo.png new file mode 100644 index 00000000..87719f12 Binary files /dev/null and b/blockchains/solana/assets/HRQke5DKdDo3jV7wnomyiM8AA3EzkVnxMDdo2FQ5XUe1/logo.png differ diff --git a/blockchains/solana/assets/HRiLLm6hYiSdniFGjvcSvQ7XJrA8YSoktcqFbWjmpump/info.json b/blockchains/solana/assets/HRiLLm6hYiSdniFGjvcSvQ7XJrA8YSoktcqFbWjmpump/info.json new file mode 100644 index 00000000..e62ec7b8 --- /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 00000000..621e0d24 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 00000000..9c626e47 --- /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 00000000..ce5487cc 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 00000000..70648372 --- /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 00000000..604517fa Binary files /dev/null and b/blockchains/solana/assets/HUBsveNpjo5pWqNkH57QzxjQASdTVXcSK7bVKTSZtcSX/logo.png differ diff --git a/blockchains/solana/assets/HUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx/info.json b/blockchains/solana/assets/HUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx/info.json new file mode 100644 index 00000000..1c3430ac --- /dev/null +++ b/blockchains/solana/assets/HUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx/info.json @@ -0,0 +1,14 @@ +{ + "name": "Rocket Pool (Portal)", + "type": "SPL", + "symbol": "RPL", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.rocketpool.net", + "explorer": "https://solscan.io/token/HUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx", + "status": "active", + "id": "HUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx/logo.png b/blockchains/solana/assets/HUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx/logo.png new file mode 100644 index 00000000..e8abef5e Binary files /dev/null and b/blockchains/solana/assets/HUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx/logo.png differ diff --git a/blockchains/solana/assets/HUPysX7Cfye9XM5LPjR9KkPgixQ8DGSk9pg2KLisYHyP/info.json b/blockchains/solana/assets/HUPysX7Cfye9XM5LPjR9KkPgixQ8DGSk9pg2KLisYHyP/info.json new file mode 100644 index 00000000..71453d0c --- /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 00000000..e9e07f03 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 00000000..30fa894e --- /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 00000000..d813568c 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 00000000..6fbc7fa3 --- /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 00000000..bd588aed 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 00000000..fa699f39 --- /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 00000000..4f9dcebf 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 new file mode 100644 index 00000000..49b6dfd1 --- /dev/null +++ b/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/info.json @@ -0,0 +1,25 @@ +{ + "name": "Trust Wallet", + "symbol": "TWT", + "type": "SPL", + "decimals": 8, + "description": "Utility token to increase adoption of cryptocurrency.", + "website": "https://trustwallet.com", + "explorer": "https://solscan.io/token/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD", + "status": "active", + "id": "HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD", + "links": [ + { + "name": "github", + "url": "https://github.com/trustwallet/" + }, + { + "name": "x", + "url": "https://x.com/trustwallet" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/trustapp" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png b/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png new file mode 100644 index 00000000..276a83ba Binary files /dev/null and b/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png differ diff --git a/blockchains/solana/assets/HZRCwxP2Vq9PCpPXooayhJ2bxTpo5xfpQrwB1svh332p/info.json b/blockchains/solana/assets/HZRCwxP2Vq9PCpPXooayhJ2bxTpo5xfpQrwB1svh332p/info.json new file mode 100644 index 00000000..46a73a23 --- /dev/null +++ b/blockchains/solana/assets/HZRCwxP2Vq9PCpPXooayhJ2bxTpo5xfpQrwB1svh332p/info.json @@ -0,0 +1,14 @@ +{ + "name": "Lido DAO (Portal)", + "type": "SPL", + "symbol": "LDO", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://stake.lido.fi/", + "explorer": "https://solscan.io/token/HZRCwxP2Vq9PCpPXooayhJ2bxTpo5xfpQrwB1svh332p", + "status": "active", + "id": "HZRCwxP2Vq9PCpPXooayhJ2bxTpo5xfpQrwB1svh332p", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HZRCwxP2Vq9PCpPXooayhJ2bxTpo5xfpQrwB1svh332p/logo.png b/blockchains/solana/assets/HZRCwxP2Vq9PCpPXooayhJ2bxTpo5xfpQrwB1svh332p/logo.png new file mode 100644 index 00000000..cc8b90ca Binary files /dev/null and b/blockchains/solana/assets/HZRCwxP2Vq9PCpPXooayhJ2bxTpo5xfpQrwB1svh332p/logo.png differ diff --git a/blockchains/solana/assets/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1/info.json b/blockchains/solana/assets/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1/info.json new file mode 100644 index 00000000..a64d8bf2 --- /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 00000000..c66f357e 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 00000000..52d09514 --- /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 00000000..0fac03ab 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 00000000..2a7a2000 --- /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 00000000..98fd7dee --- /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 00000000..9108cbd5 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 00000000..5a4dd28c --- /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 00000000..bdac28fb 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 00000000..685eaebb --- /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 00000000..f1396484 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 00000000..242f16a8 --- /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 00000000..b2f1fed9 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 00000000..4a031f07 --- /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 00000000..166a1659 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 00000000..1779c23f --- /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 00000000..fabeb382 Binary files /dev/null and b/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/logo.png differ diff --git a/blockchains/solana/assets/HihxL2iM6L6P1oqoSeiixdJ3PhPYNxvSKH9A2dDqLVDH/info.json b/blockchains/solana/assets/HihxL2iM6L6P1oqoSeiixdJ3PhPYNxvSKH9A2dDqLVDH/info.json new file mode 100644 index 00000000..99c4a6e2 --- /dev/null +++ b/blockchains/solana/assets/HihxL2iM6L6P1oqoSeiixdJ3PhPYNxvSKH9A2dDqLVDH/info.json @@ -0,0 +1,14 @@ +{ + "name": "Cream (Portal)", + "type": "SPL", + "symbol": "CREAM", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://creamcoin.com/", + "explorer": "https://solscan.io/token/HihxL2iM6L6P1oqoSeiixdJ3PhPYNxvSKH9A2dDqLVDH", + "status": "active", + "id": "HihxL2iM6L6P1oqoSeiixdJ3PhPYNxvSKH9A2dDqLVDH", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HihxL2iM6L6P1oqoSeiixdJ3PhPYNxvSKH9A2dDqLVDH/logo.png b/blockchains/solana/assets/HihxL2iM6L6P1oqoSeiixdJ3PhPYNxvSKH9A2dDqLVDH/logo.png new file mode 100644 index 00000000..ba77bd30 Binary files /dev/null and b/blockchains/solana/assets/HihxL2iM6L6P1oqoSeiixdJ3PhPYNxvSKH9A2dDqLVDH/logo.png differ diff --git a/blockchains/solana/assets/HjrN6ChZK2QRL6hMXayjGPLFvxhgjwKEy135VRjondo/info.json b/blockchains/solana/assets/HjrN6ChZK2QRL6hMXayjGPLFvxhgjwKEy135VRjondo/info.json new file mode 100644 index 00000000..a3bb0b40 --- /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 00000000..5fd5a776 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 00000000..f40f370c --- /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 00000000..a578c9e0 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 00000000..1f6732f5 --- /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 00000000..dde12c45 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 00000000..340c372e --- /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 00000000..74666230 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 00000000..fb261518 --- /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 00000000..c9a0d62f 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 00000000..cfa6239c --- /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 00000000..3327ee8a 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 00000000..53cbb377 --- /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 00000000..80cb40a4 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 00000000..247518e1 --- /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 00000000..2d61217b 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 00000000..e62c3a21 --- /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/HxhWkVpk5NS4Ltg5nij2G671CKXFRKPK8vy271Ub4uEK/info.json b/blockchains/solana/assets/HxhWkVpk5NS4Ltg5nij2G671CKXFRKPK8vy271Ub4uEK/info.json new file mode 100644 index 00000000..33b55261 --- /dev/null +++ b/blockchains/solana/assets/HxhWkVpk5NS4Ltg5nij2G671CKXFRKPK8vy271Ub4uEK/info.json @@ -0,0 +1,14 @@ +{ + "name": "Hxro (Portal)", + "type": "SPL", + "symbol": "HXRO", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.hxro.network/", + "explorer": "https://solscan.io/token/HxhWkVpk5NS4Ltg5nij2G671CKXFRKPK8vy271Ub4uEK", + "status": "active", + "id": "HxhWkVpk5NS4Ltg5nij2G671CKXFRKPK8vy271Ub4uEK", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HxhWkVpk5NS4Ltg5nij2G671CKXFRKPK8vy271Ub4uEK/logo.png b/blockchains/solana/assets/HxhWkVpk5NS4Ltg5nij2G671CKXFRKPK8vy271Ub4uEK/logo.png new file mode 100644 index 00000000..ea6f9700 Binary files /dev/null and b/blockchains/solana/assets/HxhWkVpk5NS4Ltg5nij2G671CKXFRKPK8vy271Ub4uEK/logo.png differ diff --git a/blockchains/solana/assets/HysWcbHiYY9888pHbaqhwLYZQeZrcQMXKQWRqS7zcPK5/info.json b/blockchains/solana/assets/HysWcbHiYY9888pHbaqhwLYZQeZrcQMXKQWRqS7zcPK5/info.json new file mode 100644 index 00000000..5da8c959 --- /dev/null +++ b/blockchains/solana/assets/HysWcbHiYY9888pHbaqhwLYZQeZrcQMXKQWRqS7zcPK5/info.json @@ -0,0 +1,14 @@ +{ + "name": "Axie Infinity Shard (Portal from Ethereum)", + "type": "SPL", + "symbol": "AXSet", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://axieinfinity.com/", + "explorer": "https://solscan.io/token/HysWcbHiYY9888pHbaqhwLYZQeZrcQMXKQWRqS7zcPK5", + "status": "active", + "id": "HysWcbHiYY9888pHbaqhwLYZQeZrcQMXKQWRqS7zcPK5", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HysWcbHiYY9888pHbaqhwLYZQeZrcQMXKQWRqS7zcPK5/logo.png b/blockchains/solana/assets/HysWcbHiYY9888pHbaqhwLYZQeZrcQMXKQWRqS7zcPK5/logo.png new file mode 100644 index 00000000..d9761d4e Binary files /dev/null and b/blockchains/solana/assets/HysWcbHiYY9888pHbaqhwLYZQeZrcQMXKQWRqS7zcPK5/logo.png differ diff --git a/blockchains/solana/assets/J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump/info.json b/blockchains/solana/assets/J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump/info.json new file mode 100644 index 00000000..103624d4 --- /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 00000000..1ec95c9e 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 00000000..cb7a3e21 --- /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 00000000..94c1384b 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 00000000..3bc22783 --- /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 00000000..cfc8dc6a 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 00000000..17a61b65 --- /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 00000000..21b50fe9 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 00000000..92d62a72 --- /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 00000000..4d322f46 Binary files /dev/null and b/blockchains/solana/assets/J6xGMwreiQMcw4XtJMwNcvECV7UJM4HxUWronwPYpump/logo.png differ diff --git a/blockchains/solana/assets/J8LKx7pr9Zxh9nMhhT7X3EBmj5RzuhFrHKyJAe2F2i9S/info.json b/blockchains/solana/assets/J8LKx7pr9Zxh9nMhhT7X3EBmj5RzuhFrHKyJAe2F2i9S/info.json new file mode 100644 index 00000000..187657b5 --- /dev/null +++ b/blockchains/solana/assets/J8LKx7pr9Zxh9nMhhT7X3EBmj5RzuhFrHKyJAe2F2i9S/info.json @@ -0,0 +1,14 @@ +{ + "name": "PancakeSwap Token (Portal)", + "type": "SPL", + "symbol": "CAKE", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://pancakeswap.finance/", + "explorer": "https://solscan.io/token/J8LKx7pr9Zxh9nMhhT7X3EBmj5RzuhFrHKyJAe2F2i9S", + "status": "active", + "id": "J8LKx7pr9Zxh9nMhhT7X3EBmj5RzuhFrHKyJAe2F2i9S", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/J8LKx7pr9Zxh9nMhhT7X3EBmj5RzuhFrHKyJAe2F2i9S/logo.png b/blockchains/solana/assets/J8LKx7pr9Zxh9nMhhT7X3EBmj5RzuhFrHKyJAe2F2i9S/logo.png new file mode 100644 index 00000000..cb6457e6 Binary files /dev/null and b/blockchains/solana/assets/J8LKx7pr9Zxh9nMhhT7X3EBmj5RzuhFrHKyJAe2F2i9S/logo.png differ diff --git a/blockchains/solana/assets/J8eZkbpXmTxijvrWYs3Nf59H89ANcS8NFW4KpaMfhdYh/info.json b/blockchains/solana/assets/J8eZkbpXmTxijvrWYs3Nf59H89ANcS8NFW4KpaMfhdYh/info.json new file mode 100644 index 00000000..11c6f607 --- /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 00000000..7a9fc302 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 00000000..302e5cec --- /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 00000000..6364358f 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 00000000..5d5d52cd --- /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 00000000..62f5768d 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 new file mode 100644 index 00000000..32f42f0c --- /dev/null +++ b/blockchains/solana/assets/JET6zMJWkCN9tpRT2v2jfAmm5VnQFDpUBCyaKojmGtz/info.json @@ -0,0 +1,25 @@ +{ + "name": "Jet Protocol", + "symbol": "JET", + "type": "SPL", + "decimals": 9, + "description": "Jet is a decentralized borrowing and lending protocol built for speed, power, and scalability on Solana", + "website": "https://jetprotocol.io/", + "explorer": "https://solscan.io/token/JET6zMJWkCN9tpRT2v2jfAmm5VnQFDpUBCyaKojmGtz", + "status": "active", + "id": "JET6zMJWkCN9tpRT2v2jfAmm5VnQFDpUBCyaKojmGtz", + "links": [ + { + "name": "x", + "url": "https://x.com/jetprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jet-protocol/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/jet" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/JET6zMJWkCN9tpRT2v2jfAmm5VnQFDpUBCyaKojmGtz/logo.png b/blockchains/solana/assets/JET6zMJWkCN9tpRT2v2jfAmm5VnQFDpUBCyaKojmGtz/logo.png new file mode 100644 index 00000000..76e17484 Binary files /dev/null and b/blockchains/solana/assets/JET6zMJWkCN9tpRT2v2jfAmm5VnQFDpUBCyaKojmGtz/logo.png differ diff --git a/blockchains/solana/assets/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN/info.json b/blockchains/solana/assets/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN/info.json new file mode 100644 index 00000000..dbc996ec --- /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 00000000..793364c8 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 00000000..1436b3c7 --- /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 00000000..b2f99db8 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 00000000..0cdc5d74 --- /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 00000000..ff7465ca 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 00000000..58fe016d --- /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 00000000..5964a559 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 00000000..49b89f2b --- /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 00000000..d57bb66b 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 00000000..55547797 --- /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 00000000..56172ca7 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 00000000..44147ae9 --- /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 00000000..275ec766 Binary files /dev/null and b/blockchains/solana/assets/KcCVQxG9LhFYP5o9DWFKTFgFShPPQkDEemVbiFyondo/logo.png differ diff --git a/blockchains/solana/assets/KgV1GvrHQmRBY8sHQQeUKwTm2r2h8t4C8qt12Cw1HVE/info.json b/blockchains/solana/assets/KgV1GvrHQmRBY8sHQQeUKwTm2r2h8t4C8qt12Cw1HVE/info.json new file mode 100644 index 00000000..599b64ac --- /dev/null +++ b/blockchains/solana/assets/KgV1GvrHQmRBY8sHQQeUKwTm2r2h8t4C8qt12Cw1HVE/info.json @@ -0,0 +1,14 @@ +{ + "name": "AVAX (Portal)", + "type": "SPL", + "symbol": "AVAX", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.avax.network/", + "explorer": "https://solscan.io/token/KgV1GvrHQmRBY8sHQQeUKwTm2r2h8t4C8qt12Cw1HVE", + "status": "active", + "id": "KgV1GvrHQmRBY8sHQQeUKwTm2r2h8t4C8qt12Cw1HVE", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/KgV1GvrHQmRBY8sHQQeUKwTm2r2h8t4C8qt12Cw1HVE/logo.png b/blockchains/solana/assets/KgV1GvrHQmRBY8sHQQeUKwTm2r2h8t4C8qt12Cw1HVE/logo.png new file mode 100644 index 00000000..5cfbd9ab Binary files /dev/null and b/blockchains/solana/assets/KgV1GvrHQmRBY8sHQQeUKwTm2r2h8t4C8qt12Cw1HVE/logo.png differ diff --git a/blockchains/solana/assets/KuiYLPVq65qixD9TgvxBC576C4gG6vVTCdbh2zFondo/info.json b/blockchains/solana/assets/KuiYLPVq65qixD9TgvxBC576C4gG6vVTCdbh2zFondo/info.json new file mode 100644 index 00000000..ad8df1c1 --- /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 00000000..c8b7fdf9 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 00000000..1d756a7b --- /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 00000000..ad613c59 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 00000000..cfbd12eb --- /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 00000000..fdfef1ac 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 00000000..a70499ef --- /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 00000000..5b2bb2c7 --- /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 00000000..d163a75f 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 00000000..5d51bd52 --- /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 00000000..461b4eb9 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 00000000..11148240 --- /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 00000000..4d148ee9 Binary files /dev/null and b/blockchains/solana/assets/M6agiXbNgy8Xon9ngiW4ZDPbMFcNCTMkMMkshZyondo/logo.png differ diff --git a/blockchains/solana/assets/MAPS41MDahZ9QdKXhVa4dWB9RuyfV4XqhyAZ8XcYepb/info.json b/blockchains/solana/assets/MAPS41MDahZ9QdKXhVa4dWB9RuyfV4XqhyAZ8XcYepb/info.json new file mode 100644 index 00000000..ad24f78f --- /dev/null +++ b/blockchains/solana/assets/MAPS41MDahZ9QdKXhVa4dWB9RuyfV4XqhyAZ8XcYepb/info.json @@ -0,0 +1,11 @@ +{ + "name": "Maps.me", + "symbol": "MAPS", + "type": "SPL", + "decimals": 6, + "description": "Maps.me 2.0 is the ultimate travel companion and your passport to the new financial system.", + "website": "https://maps.me", + "explorer": "https://solscan.io/token/MAPS41MDahZ9QdKXhVa4dWB9RuyfV4XqhyAZ8XcYepb", + "status": "active", + "id": "MAPS41MDahZ9QdKXhVa4dWB9RuyfV4XqhyAZ8XcYepb" +} \ No newline at end of file diff --git a/blockchains/solana/assets/MAPS41MDahZ9QdKXhVa4dWB9RuyfV4XqhyAZ8XcYepb/logo.png b/blockchains/solana/assets/MAPS41MDahZ9QdKXhVa4dWB9RuyfV4XqhyAZ8XcYepb/logo.png new file mode 100644 index 00000000..372f8c2d Binary files /dev/null and b/blockchains/solana/assets/MAPS41MDahZ9QdKXhVa4dWB9RuyfV4XqhyAZ8XcYepb/logo.png differ diff --git a/blockchains/solana/assets/MEFNBXixkEbait3xn9bkm8WsJzXtVsaJEn4c8Sam21u/info.json b/blockchains/solana/assets/MEFNBXixkEbait3xn9bkm8WsJzXtVsaJEn4c8Sam21u/info.json new file mode 100644 index 00000000..bb221aff --- /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 00000000..dd2ce491 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 00000000..7550c3cc --- /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 00000000..6cdc73ec 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 00000000..2d12c24c --- /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 00000000..46962af4 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 00000000..9284fc50 --- /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 00000000..ed460370 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 00000000..da04297b --- /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 00000000..4e50b5eb 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 new file mode 100644 index 00000000..157f508a --- /dev/null +++ b/blockchains/solana/assets/MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey/info.json @@ -0,0 +1,25 @@ +{ + "name": "Marinade", + "symbol": "MNDE", + "type": "SPL", + "decimals": 9, + "description": "Marinade.finance is a liquid staking protocol built on Solana.", + "website": "https://marinade.finance/", + "explorer": "https://solscan.io/token/MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey", + "status": "active", + "id": "MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey", + "links": [ + { + "name": "x", + "url": "https://x.com/MarinadeFinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mnde/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/marinade" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey/logo.png b/blockchains/solana/assets/MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey/logo.png new file mode 100644 index 00000000..104f868e Binary files /dev/null and b/blockchains/solana/assets/MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey/logo.png differ diff --git a/blockchains/solana/assets/MYXqkDYbzr7vjXAz2BapR4AiYRXzoikGirrLoRzondo/info.json b/blockchains/solana/assets/MYXqkDYbzr7vjXAz2BapR4AiYRXzoikGirrLoRzondo/info.json new file mode 100644 index 00000000..b652d569 --- /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 00000000..b2bd2c4c 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 new file mode 100644 index 00000000..9198d23d --- /dev/null +++ b/blockchains/solana/assets/MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac/info.json @@ -0,0 +1,29 @@ +{ + "name": "Mango Markets", + "symbol": "MNGO", + "type": "SPL", + "decimals": 6, + "description": "Mango v3 is designed to make life easier for market participants", + "website": "https://mango.markets/", + "explorer": "https://solscan.io/token/MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac", + "status": "active", + "id": "MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac", + "links": [ + { + "name": "x", + "url": "https://x.com/mangomarkets" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mango-markets/" + }, + { + "name": "github", + "url": "https://github.com/blockworks-foundation" + } + ], + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac/logo.png b/blockchains/solana/assets/MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac/logo.png new file mode 100644 index 00000000..8cbfabd9 Binary files /dev/null and b/blockchains/solana/assets/MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac/logo.png differ diff --git a/blockchains/solana/assets/MbetZheK6wDs22ftMat7PLiBtoXYBdrMHfpkKRihCYK/info.json b/blockchains/solana/assets/MbetZheK6wDs22ftMat7PLiBtoXYBdrMHfpkKRihCYK/info.json new file mode 100644 index 00000000..009c187d --- /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 00000000..d18ba074 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 00000000..26771d63 --- /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 00000000..5001a982 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 00000000..a1d7ca7f --- /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 00000000..9bbe5934 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 00000000..f0233101 --- /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 00000000..f8290f7a 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 00000000..77d7781e --- /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 00000000..96cbf3b0 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 00000000..75c6c13c --- /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 00000000..475da0de --- /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 00000000..dc81ffb9 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 00000000..ed6e6be5 --- /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 00000000..c9054edf 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 00000000..621c3b7c --- /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 00000000..50198ae8 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 00000000..93be7566 --- /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 00000000..e2e36379 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 00000000..2d833bd2 --- /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 00000000..3dd83ff0 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 00000000..24aa3eb6 --- /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 00000000..3e3c43bc 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 00000000..3f6477c5 --- /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 00000000..779dced8 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 00000000..67d645ca --- /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 00000000..08aee0d7 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 00000000..177b64d1 --- /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 00000000..2cb39057 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 00000000..d20d32cf --- /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 00000000..7bde4f2c 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 00000000..c906120f --- /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 00000000..b783120d 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 00000000..4f9070f3 --- /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 00000000..5d8e1811 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 00000000..64e293d8 --- /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 00000000..25707378 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 00000000..61504621 --- /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 00000000..4da81882 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 00000000..b61cc27b --- /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 00000000..b58bd975 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 00000000..e732aa2f --- /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 00000000..237cc963 Binary files /dev/null and b/blockchains/solana/assets/RoamA1USA8xjvpTJZ6RvvxyDRzNh6GCA1zVGKSiMVkn/logo.png differ diff --git a/blockchains/solana/assets/S3SQfD6RheMXQ3EEYn1Z5sJsbtwfXdt7tSAVXPQFtYo/info.json b/blockchains/solana/assets/S3SQfD6RheMXQ3EEYn1Z5sJsbtwfXdt7tSAVXPQFtYo/info.json new file mode 100644 index 00000000..afc28199 --- /dev/null +++ b/blockchains/solana/assets/S3SQfD6RheMXQ3EEYn1Z5sJsbtwfXdt7tSAVXPQFtYo/info.json @@ -0,0 +1,14 @@ +{ + "name": "ROSE (Portal)", + "type": "SPL", + "symbol": "ROSE", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://oasisprotocol.org/", + "explorer": "https://solscan.io/token/S3SQfD6RheMXQ3EEYn1Z5sJsbtwfXdt7tSAVXPQFtYo", + "status": "active", + "id": "S3SQfD6RheMXQ3EEYn1Z5sJsbtwfXdt7tSAVXPQFtYo", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/S3SQfD6RheMXQ3EEYn1Z5sJsbtwfXdt7tSAVXPQFtYo/logo.png b/blockchains/solana/assets/S3SQfD6RheMXQ3EEYn1Z5sJsbtwfXdt7tSAVXPQFtYo/logo.png new file mode 100644 index 00000000..32179bc3 Binary files /dev/null and b/blockchains/solana/assets/S3SQfD6RheMXQ3EEYn1Z5sJsbtwfXdt7tSAVXPQFtYo/logo.png differ diff --git a/blockchains/solana/assets/SCSuPPNUSypLBsV4darsrYNg4ANPgaGhKhsA3GmMyjz/info.json b/blockchains/solana/assets/SCSuPPNUSypLBsV4darsrYNg4ANPgaGhKhsA3GmMyjz/info.json new file mode 100644 index 00000000..758d6473 --- /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 00000000..4df35785 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 00000000..86636f21 --- /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 00000000..afc437a4 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 00000000..a6c07d13 --- /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 00000000..21b146cb 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 00000000..c3ffbb3c --- /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 00000000..e92f4421 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 00000000..8f87e48d --- /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 00000000..09336580 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 00000000..f82b6923 --- /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 00000000..251f86fc 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 new file mode 100644 index 00000000..a22aa5e6 --- /dev/null +++ b/blockchains/solana/assets/SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt/info.json @@ -0,0 +1,25 @@ +{ + "name": "Serum", + "symbol": "SRM", + "type": "SPL", + "decimals": 6, + "description": "Serum is a decentralized exchange (DEX) and ecosystem that brings unprecedented speed and low transaction costs to decentralized finance. It is built on Solana and is completely permissionless.", + "website": "https://projectserum.com/", + "explorer": "https://solscan.io/token/SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt", + "status": "active", + "id": "SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt", + "links": [ + { + "name": "x", + "url": "https://x.com/projectserum" + }, + { + "name": "telegram", + "url": "https://t.me/ProjectSerum" + }, + { + "name": "discord", + "url": "https://discord.com/invite/zxPsXcB" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt/logo.png b/blockchains/solana/assets/SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt/logo.png new file mode 100644 index 00000000..bc7b770c Binary files /dev/null and b/blockchains/solana/assets/SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt/logo.png differ diff --git a/blockchains/solana/assets/SS6AEWhzRrxhL2cXzKKjhFt3rCzmHHGKmFyugDTondo/info.json b/blockchains/solana/assets/SS6AEWhzRrxhL2cXzKKjhFt3rCzmHHGKmFyugDTondo/info.json new file mode 100644 index 00000000..1e735592 --- /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 00000000..5716d513 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 00000000..895d7589 --- /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 00000000..1263e816 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 new file mode 100644 index 00000000..32a60e55 --- /dev/null +++ b/blockchains/solana/assets/Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Saber Protocol Token", + "type": "SPL", + "symbol": "SBR", + "decimals": 6, + "website": "https://saber.so/", + "description": "Saber is an automated market maker and liquidity pool on Solana designed for extremely efficient trading between similarly priced (pegged) assets, without an opportunity cost.", + "explorer": "https://solscan.io/token/Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1", + "status": "active", + "id": "Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1", + "links": [ + { + "name": "x", + "url": "https://x.com/Saber_HQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/saber/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1/logo.png b/blockchains/solana/assets/Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1/logo.png new file mode 100644 index 00000000..5068657e Binary files /dev/null and b/blockchains/solana/assets/Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1/logo.png differ diff --git a/blockchains/solana/assets/SarosY6Vscao718M4A778z4CGtvcwcGef5M9MEH1LGL/info.json b/blockchains/solana/assets/SarosY6Vscao718M4A778z4CGtvcwcGef5M9MEH1LGL/info.json new file mode 100644 index 00000000..ea502c2b --- /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 00000000..158190d1 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 new file mode 100644 index 00000000..01b82fde --- /dev/null +++ b/blockchains/solana/assets/So11111111111111111111111111111111111111112/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped SOL", + "symbol": "WSOL", + "type": "SPL", + "decimals": 9, + "description": "Solana is a decentralized blockchain built to enable scalable, user-friendly apps for the world.", + "website": "https://solana.com", + "explorer": "https://solscan.io/token/So11111111111111111111111111111111111111112", + "status": "active", + "id": "So11111111111111111111111111111111111111112", + "links": [ + { + "name": "github", + "url": "https://github.com/solana-labs/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/solana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/So11111111111111111111111111111111111111112/logo.png b/blockchains/solana/assets/So11111111111111111111111111111111111111112/logo.png new file mode 100644 index 00000000..11959db7 Binary files /dev/null and b/blockchains/solana/assets/So11111111111111111111111111111111111111112/logo.png differ diff --git a/blockchains/solana/assets/SoLiDMWBct5TurG1LNcocemBK7QmTn4P33GSrRrcd2n/info.json b/blockchains/solana/assets/SoLiDMWBct5TurG1LNcocemBK7QmTn4P33GSrRrcd2n/info.json new file mode 100644 index 00000000..d69e94de --- /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 00000000..cd129b5a 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 00000000..e493e9df --- /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 00000000..ed12ba88 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 new file mode 100644 index 00000000..27904620 --- /dev/null +++ b/blockchains/solana/assets/StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT/info.json @@ -0,0 +1,29 @@ +{ + "name": "Step Finance", + "symbol": "STEP", + "type": "SPL", + "decimals": 9, + "description": "Step Finance is the front page of Solana. Visualise, Analyse, Execute and Aggregate transactions across all Solana contracts in one place. Step is a portfolio management dashboard and transaction aggregator where users can monitor their tokens associated with their wallets, LP positions, Staked Yield farms, Margin positions and more.", + "website": "https://step.finance/", + "explorer": "https://solscan.io/token/StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT", + "status": "active", + "id": "StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT", + "links": [ + { + "name": "discord", + "url": "https://discord.com/k5gMJUAEJe" + }, + { + "name": "x", + "url": "https://x.com/stepfinance_" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/step-finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/step-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT/logo.png b/blockchains/solana/assets/StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT/logo.png new file mode 100644 index 00000000..79b3289f Binary files /dev/null and b/blockchains/solana/assets/StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT/logo.png differ diff --git a/blockchains/solana/assets/T699bgtXQw4CJ59rQ4VzLsupVQUzoL5RmuhHnKrondo/info.json b/blockchains/solana/assets/T699bgtXQw4CJ59rQ4VzLsupVQUzoL5RmuhHnKrondo/info.json new file mode 100644 index 00000000..eaed2992 --- /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 00000000..f580f2c0 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 00000000..f139bb2b --- /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 00000000..edbcee4e 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 00000000..bfbafd88 --- /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 00000000..940143ce 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 00000000..9c9cf8dc --- /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 00000000..d56552e0 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 00000000..aeb91e72 --- /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 00000000..3a8e8230 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 00000000..6047e876 --- /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 00000000..fdb13bc0 --- /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 00000000..8809c213 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 00000000..72c21880 --- /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 00000000..d83a0ac3 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 00000000..8e2e9ca2 --- /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 00000000..cf7a736d 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 00000000..10fa6977 --- /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 US 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 00000000..444ccb65 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 00000000..6ac4172c --- /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 00000000..3d170e52 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 00000000..04287fd2 --- /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 00000000..07947479 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 00000000..08cc6ebf --- /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 00000000..6b0b3a78 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 00000000..b460ee48 --- /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 00000000..45d45f3b --- /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 00000000..038da447 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 00000000..ff250016 --- /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 00000000..1952ea33 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 00000000..08da23d7 --- /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 00000000..d38d3505 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 00000000..38c61fd4 --- /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 00000000..f424f8b4 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 00000000..77ec03aa --- /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 00000000..a3964e69 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 00000000..6e17397d --- /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 00000000..5c74edc6 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 00000000..a99ef966 --- /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 00000000..95d8e653 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 00000000..5bc148bf --- /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 00000000..8bd6718f 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 00000000..ab51a829 --- /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 00000000..ef21853a 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 00000000..d8e24d4c --- /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 00000000..cf1609ac 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 00000000..9b9cc6f6 --- /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 00000000..d5946212 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 00000000..a6a8526c --- /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 00000000..1b179f11 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 00000000..ea9dad5d --- /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 00000000..70683dfd 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 00000000..30242c0c --- /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 00000000..1add0de4 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 00000000..5025ccd2 --- /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 00000000..1407faec 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 00000000..a208ff83 --- /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 00000000..00db496a 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 00000000..7df418dc --- /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 00000000..72cd9e09 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 00000000..c52e8162 --- /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 00000000..7151d49b 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 00000000..ce4843e3 --- /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 00000000..472c951a 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 00000000..4b713185 --- /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 00000000..85dccc98 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 00000000..e581de56 --- /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 00000000..c35598c6 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 00000000..d3cd5c88 --- /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 00000000..6d985419 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 00000000..252571a2 --- /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 00000000..1759e67f 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 00000000..e9c6be66 --- /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 00000000..63973551 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 00000000..8d0ec566 --- /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 00000000..7cb316a4 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 00000000..4dbb762e --- /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 00000000..5968d83b 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 00000000..8bea53a4 --- /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 00000000..857fe690 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 00000000..e149a208 --- /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 00000000..179b22a7 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 00000000..e2fdab47 --- /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 00000000..ce91cfbf 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 00000000..ef007c5d --- /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 00000000..c82cd60e 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 00000000..7e4177c0 --- /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 00000000..df73bbcc 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 00000000..d05d11ca --- /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 00000000..6d22d110 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 00000000..c6e72775 --- /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 00000000..b6fb457e 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 00000000..17c790c0 --- /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 00000000..30817f4f 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 00000000..dd8c81f6 --- /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 00000000..29c2803e 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 00000000..42d7fe94 --- /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 00000000..2757f36e 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 00000000..a9af099b --- /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 00000000..e9f3bc92 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 00000000..ae69ec9d --- /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 00000000..d55ca6ed 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 00000000..7ea87bd8 --- /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 00000000..4e802b83 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 00000000..54945019 --- /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 00000000..e79aa166 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 00000000..70a95ad5 --- /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 00000000..bce8b3c7 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 00000000..798b2255 --- /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 00000000..448e7266 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 00000000..8244f6e1 --- /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 00000000..7051dcb4 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 00000000..0b4685b5 --- /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 00000000..1407faec 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 00000000..6121b6c7 --- /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 00000000..e555fa9b 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 00000000..5340f27b --- /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 00000000..857fe690 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 00000000..69ee3762 --- /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 00000000..2af9425e 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 00000000..0d54edc6 --- /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 00000000..af7129b1 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 00000000..144fc55f --- /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 00000000..b7945306 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 00000000..ae60c6aa --- /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 00000000..0c6d1b72 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 00000000..ace00727 --- /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 00000000..05861150 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 00000000..a9d95516 --- /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 00000000..3b7a5c57 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 00000000..78a1481f --- /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 00000000..a0ca86f1 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 00000000..d38149da --- /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 00000000..c866fd61 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 00000000..31740392 --- /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 00000000..e437be04 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 00000000..45d87b20 --- /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 00000000..80b9ebb6 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 00000000..5f0c942e --- /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 00000000..c1902f7a 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 00000000..74a3bf31 --- /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 00000000..8179bd11 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 00000000..824c8486 --- /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 00000000..38cc9015 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 00000000..a361164d --- /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 00000000..8522e440 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 00000000..af5825c0 --- /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 00000000..59de8858 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 00000000..7f9bd817 --- /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 00000000..da0a1030 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 00000000..a3b98e6b --- /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 00000000..c4ee269a 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 00000000..cbd72cb2 --- /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 00000000..c4974d79 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 00000000..d2dc1bd4 --- /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 00000000..409e4ece 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 00000000..60f765fe --- /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 00000000..a937d858 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 00000000..b74f2155 --- /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 00000000..a3cdfb7f 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 00000000..35721cb0 --- /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 00000000..11bbde89 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 00000000..f3172743 --- /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 00000000..861002db 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 00000000..47980335 --- /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 00000000..fb7784c7 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 00000000..195b5a00 --- /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 00000000..ec248062 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 00000000..58a56444 --- /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 00000000..984236e9 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 00000000..153a5660 --- /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 00000000..4ca5efce 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 00000000..64f27410 --- /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 00000000..c3916659 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 00000000..fe1e2162 --- /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 00000000..85a92734 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 00000000..91293dc6 --- /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 00000000..a3d18c9a 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 00000000..d83cb80d --- /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 00000000..41bfda5c 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 00000000..34e36308 --- /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 00000000..ab73b87a 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 00000000..20b8ebb5 --- /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 00000000..c358f4e9 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 00000000..aa9b0976 --- /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 00000000..d5c48229 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 00000000..98ebf2ca --- /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 00000000..a49ae723 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 00000000..f766bf63 --- /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 00000000..9051b3f3 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 00000000..b2109d51 --- /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 00000000..283632c0 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 00000000..6d9e6817 --- /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 00000000..633999e3 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 00000000..0e707b55 --- /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 00000000..54a36695 --- /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 00000000..a7211c01 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 00000000..c8db3423 --- /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 00000000..418ef4de 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 00000000..78b92af9 --- /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 00000000..db24cd1e 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 00000000..2c6c854b --- /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 00000000..f54067fe 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 00000000..24c4a028 --- /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 00000000..c10c4abc 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 00000000..73d3bdc5 --- /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 00000000..5fb20048 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 00000000..99ca0658 --- /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 00000000..a8353c01 --- /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 00000000..08486bd2 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 00000000..100a3108 --- /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 00000000..3660c0b5 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 00000000..bdd93280 --- /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 00000000..ea300600 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 00000000..8fc4f7d7 --- /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 00000000..872b92a5 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 00000000..aa9e371c --- /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 00000000..4aa234d3 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 00000000..84f2202f --- /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 00000000..c5348399 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 00000000..5a76027a --- /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 00000000..d5a16284 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 00000000..526fd726 --- /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 00000000..29bfd0c5 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 00000000..70dd01f4 --- /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 00000000..4fac0bda 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 new file mode 100644 index 00000000..e231fd4a --- /dev/null +++ b/blockchains/solana/assets/cxxShYRVcepDudXhe7U62QHvw8uBJoKFifmzggGKVC2/info.json @@ -0,0 +1,29 @@ +{ + "name": "SolChicks", + "symbol": "CHICKS", + "type": "SPL", + "decimals": 9, + "description": "We built our game around adorable SolChick NFT collectibles, where players use their SolChicks as their characters in a unique gaming metaverse.", + "website": "https://www.solchicks.io/", + "explorer": "https://solscan.io/token/cxxShYRVcepDudXhe7U62QHvw8uBJoKFifmzggGKVC2", + "status": "active", + "id": "cxxShYRVcepDudXhe7U62QHvw8uBJoKFifmzggGKVC2", + "links": [ + { + "name": "x", + "url": "https://x.com/SolChicksNFT" + }, + { + "name": "telegram", + "url": "https://t.me/solchicksnft" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/solchicks-token/" + } + ], + "tags": [ + "nft", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/cxxShYRVcepDudXhe7U62QHvw8uBJoKFifmzggGKVC2/logo.png b/blockchains/solana/assets/cxxShYRVcepDudXhe7U62QHvw8uBJoKFifmzggGKVC2/logo.png new file mode 100644 index 00000000..d26a493e Binary files /dev/null and b/blockchains/solana/assets/cxxShYRVcepDudXhe7U62QHvw8uBJoKFifmzggGKVC2/logo.png differ diff --git a/blockchains/solana/assets/doPqjCxi6UkANkvMz5fSuYGEo5PGppVpTZMeB5vondo/info.json b/blockchains/solana/assets/doPqjCxi6UkANkvMz5fSuYGEo5PGppVpTZMeB5vondo/info.json new file mode 100644 index 00000000..21396670 --- /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 00000000..b4095558 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 00000000..a5f8bdd2 --- /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 00000000..c9ccc6c6 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 00000000..c48497bd --- /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 00000000..2fa11e37 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 00000000..1605b85d --- /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 00000000..e6dd4732 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 00000000..b32336ce --- /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 00000000..925f4676 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 00000000..382443aa --- /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 00000000..004e2c0a --- /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 00000000..9346b7f1 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 00000000..d0f0cb91 --- /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 00000000..493195c5 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 00000000..ef73dbbc --- /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 00000000..54ad30b9 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 00000000..cc055648 --- /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 00000000..7356839b --- /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 00000000..c9f474e3 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 00000000..674c64f1 --- /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 00000000..415779ac 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 00000000..7e7213fc --- /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 00000000..1153d70d 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 00000000..2147b0da --- /dev/null +++ b/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/info.json @@ -0,0 +1,21 @@ +{ + "name": "Helium Network", + "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 00000000..993296af 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 00000000..6e63f474 --- /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 00000000..2b78123f 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 00000000..bf0270de --- /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 00000000..966f39c8 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 00000000..974c7b00 --- /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 00000000..2e8d3686 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 00000000..5a332fe1 --- /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 00000000..c8b7fdf9 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 00000000..ff956f79 --- /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 00000000..24b97c57 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 00000000..755517ba --- /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 00000000..3edcdfe7 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 new file mode 100644 index 00000000..3d30c00c --- /dev/null +++ b/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/info.json @@ -0,0 +1,33 @@ +{ + "name": "Kin", + "symbol": "KIN", + "type": "SPL", + "decimals": 5, + "description": "Kin gives everyone skin in the game – making it easy for apps and brands to reward users and create exciting experiences with cryptocurrency.", + "website": "https://www.kin.org/", + "explorer": "https://solscan.io/token/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6", + "status": "active", + "id": "kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6", + "links": [ + { + "name": "blog", + "url": "https://kin.org/news" + }, + { + "name": "x", + "url": "https://x.com/kin_ecosystem" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/kin" + }, + { + "name": "whitepaper", + "url": "https://kin.org/whitepaper" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/logo.png b/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/logo.png new file mode 100644 index 00000000..7a8a6eab Binary files /dev/null and b/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/logo.png differ diff --git a/blockchains/solana/assets/m6oDLvJT7rY7M1TxuLWP3pWmAPg2cCWDQR1NKiEondo/info.json b/blockchains/solana/assets/m6oDLvJT7rY7M1TxuLWP3pWmAPg2cCWDQR1NKiEondo/info.json new file mode 100644 index 00000000..00f27382 --- /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 00000000..9bfe6ec7 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 00000000..20f7f5da --- /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 00000000..2a02e71a 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 new file mode 100644 index 00000000..c4dc2169 --- /dev/null +++ b/blockchains/solana/assets/mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So/info.json @@ -0,0 +1,21 @@ +{ + "name": "Marinade staked", + "symbol": "mSOL", + "type": "SPL", + "decimals": 9, + "description": "Marinade.finance is a liquid staking protocol built on Solana.", + "website": "https://marinade.finance/", + "explorer": "https://solscan.io/token/mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So", + "status": "active", + "id": "mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/marinade-staked-sol" + }, + { + "name": "x", + "url": "https://x.com/MarinadeFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So/logo.png b/blockchains/solana/assets/mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So/logo.png new file mode 100644 index 00000000..3878dfca Binary files /dev/null and b/blockchains/solana/assets/mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So/logo.png differ diff --git a/blockchains/solana/assets/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv/info.json b/blockchains/solana/assets/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv/info.json new file mode 100644 index 00000000..91e3f39a --- /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 00000000..46c5e630 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 00000000..d443623d --- /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 00000000..4182240a 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 00000000..184cc6a8 --- /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 00000000..8c3d69ff 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 00000000..87d38a07 --- /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 00000000..c60d0c12 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 00000000..46cf5fdf --- /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 00000000..7689c51f 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 00000000..c2968fa9 --- /dev/null +++ b/blockchains/solana/assets/mqL8yXQpeSvc7NgrAtLLPtRvUiWyLoG5RWLv16iondo/info.json @@ -0,0 +1,28 @@ +{ + "name": "SoFi Technologies (Ondo Tokenized)", + "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 00000000..dcd5cc8d Binary files /dev/null and b/blockchains/solana/assets/mqL8yXQpeSvc7NgrAtLLPtRvUiWyLoG5RWLv16iondo/logo.png differ diff --git a/blockchains/solana/assets/nRtfwU9G82CSHhHGJNxFhtn7FLvWP2rqvQvje1WtL69/info.json b/blockchains/solana/assets/nRtfwU9G82CSHhHGJNxFhtn7FLvWP2rqvQvje1WtL69/info.json new file mode 100644 index 00000000..bd315f34 --- /dev/null +++ b/blockchains/solana/assets/nRtfwU9G82CSHhHGJNxFhtn7FLvWP2rqvQvje1WtL69/info.json @@ -0,0 +1,14 @@ +{ + "name": "Celsius (Portal)", + "type": "SPL", + "symbol": "CEL", + "decimals": 4, + "description": "Cross Chain Portal Bridged Token", + "website": "https://celsius.network/", + "explorer": "https://solscan.io/token/nRtfwU9G82CSHhHGJNxFhtn7FLvWP2rqvQvje1WtL69", + "status": "active", + "id": "nRtfwU9G82CSHhHGJNxFhtn7FLvWP2rqvQvje1WtL69", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/nRtfwU9G82CSHhHGJNxFhtn7FLvWP2rqvQvje1WtL69/logo.png b/blockchains/solana/assets/nRtfwU9G82CSHhHGJNxFhtn7FLvWP2rqvQvje1WtL69/logo.png new file mode 100644 index 00000000..2cad0a2f Binary files /dev/null and b/blockchains/solana/assets/nRtfwU9G82CSHhHGJNxFhtn7FLvWP2rqvQvje1WtL69/logo.png differ diff --git a/blockchains/solana/assets/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG/info.json b/blockchains/solana/assets/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG/info.json new file mode 100644 index 00000000..85dd84dc --- /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 00000000..0e7e5890 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 00000000..08836c72 --- /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 00000000..9489d85b 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 00000000..c23d9847 --- /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 00000000..572a5a58 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 00000000..3be0d79b --- /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 00000000..91145198 --- /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 00000000..ea10cea9 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 00000000..11e07bcf --- /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 00000000..dd47fa8a 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 new file mode 100644 index 00000000..a6b6bc62 --- /dev/null +++ b/blockchains/solana/assets/orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE/info.json @@ -0,0 +1,25 @@ +{ + "name": "Orca", + "symbol": "ORCA", + "type": "SPL", + "decimals": 6, + "description": "Orca is the easiest place to exchange cryptocurrency on Solana.", + "website": "https://orca.so/", + "explorer": "https://solscan.io/token/orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE", + "status": "active", + "id": "orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE", + "links": [ + { + "name": "x", + "url": "https://x.com/orca_so" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/orca/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/orca" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE/logo.png b/blockchains/solana/assets/orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE/logo.png new file mode 100644 index 00000000..4964935e Binary files /dev/null and b/blockchains/solana/assets/orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE/logo.png differ diff --git a/blockchains/solana/assets/ou1uE526v7zmUYP2qCb2LJgfXAyWAtWS9SETtr8ondo/info.json b/blockchains/solana/assets/ou1uE526v7zmUYP2qCb2LJgfXAyWAtWS9SETtr8ondo/info.json new file mode 100644 index 00000000..e59e3def --- /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 00000000..c1a48336 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 00000000..e9b7fdaa --- /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 00000000..b9a1bc9b 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 00000000..87ce33af --- /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 00000000..6e6cc26e 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 new file mode 100644 index 00000000..37c78ae4 --- /dev/null +++ b/blockchains/solana/assets/poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk/info.json @@ -0,0 +1,25 @@ +{ + "name": "Star Atlas DAO", + "symbol": "POLIS", + "type": "SPL", + "decimals": 8, + "description": "Star Atlas is a virtual gaming metaverse based in the year 2620", + "website": "https://staratlas.com/", + "explorer": "https://solscan.io/token/poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk", + "status": "active", + "id": "poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk", + "links": [ + { + "name": "x", + "url": "https://x.com/staratlas" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/star-atlas/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/star-atlas" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk/logo.png b/blockchains/solana/assets/poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk/logo.png new file mode 100644 index 00000000..08f167a7 Binary files /dev/null and b/blockchains/solana/assets/poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk/logo.png differ diff --git a/blockchains/solana/assets/pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn/info.json b/blockchains/solana/assets/pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn/info.json new file mode 100644 index 00000000..f0fbdc49 --- /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 00000000..180d97ce 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 00000000..4c157762 --- /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 00000000..c1d43656 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 00000000..2cc0ae63 --- /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 00000000..d28deab3 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 00000000..9079add2 --- /dev/null +++ b/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/info.json @@ -0,0 +1,25 @@ +{ + "name": "Render Token", + "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 00000000..0abda324 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 00000000..077c9c23 --- /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 00000000..56d2b7fe 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 00000000..3913ba16 --- /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 00000000..de5e230d --- /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 00000000..1df0088f 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 00000000..6373052e --- /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 00000000..3c3de7aa 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 00000000..07afe772 --- /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 00000000..af466179 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 00000000..a8432e3d --- /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 00000000..8c3d69ff 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 00000000..ba0c30e1 --- /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 00000000..99c8e900 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 00000000..ad28405f --- /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 00000000..4d148ee9 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 00000000..922a41b6 --- /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 00000000..88eb0a6c 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 00000000..d89058ee --- /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 00000000..f88c3aa8 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 00000000..82fa1534 --- /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 00000000..935bf3f7 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 00000000..71706af6 --- /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 00000000..b1097ce8 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 00000000..c2d3f31c --- /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 00000000..0ce518ad 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 00000000..a7fa05b2 --- /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 00000000..857455e7 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 00000000..51c62f72 --- /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 00000000..697ef0fb 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 00000000..b3f6edf5 --- /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 00000000..6cc58c5d 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 00000000..aa5e8661 --- /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 00000000..483b75d6 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 00000000..e1e951dc --- /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 00000000..eaa561f8 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 00000000..bc8a4823 --- /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 00000000..ff6bd272 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 00000000..ab081bf0 --- /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 00000000..2825f401 Binary files /dev/null and b/blockchains/solana/assets/xMJ9BnMvrpEUrTEihDKSuQUh8J7P89oEQrbuCWWpump/logo.png differ diff --git a/blockchains/solana/assets/xnorPhAzWXUczCP3KjU5yDxmKKZi5cSbxytQ1LgE3kG/info.json b/blockchains/solana/assets/xnorPhAzWXUczCP3KjU5yDxmKKZi5cSbxytQ1LgE3kG/info.json new file mode 100644 index 00000000..0ba223a2 --- /dev/null +++ b/blockchains/solana/assets/xnorPhAzWXUczCP3KjU5yDxmKKZi5cSbxytQ1LgE3kG/info.json @@ -0,0 +1,14 @@ +{ + "name": "Serum (Portal from Ethereum)", + "type": "SPL", + "symbol": "SRMet", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://projectserum.com/", + "explorer": "https://solscan.io/token/xnorPhAzWXUczCP3KjU5yDxmKKZi5cSbxytQ1LgE3kG", + "status": "active", + "id": "xnorPhAzWXUczCP3KjU5yDxmKKZi5cSbxytQ1LgE3kG", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/xnorPhAzWXUczCP3KjU5yDxmKKZi5cSbxytQ1LgE3kG/logo.png b/blockchains/solana/assets/xnorPhAzWXUczCP3KjU5yDxmKKZi5cSbxytQ1LgE3kG/logo.png new file mode 100644 index 00000000..5657a6ff Binary files /dev/null and b/blockchains/solana/assets/xnorPhAzWXUczCP3KjU5yDxmKKZi5cSbxytQ1LgE3kG/logo.png differ diff --git a/blockchains/solana/assets/xxxxa1sKNGwFtw2kFn8XauW9xq8hBZ5kVtcSesTT9fW/info.json b/blockchains/solana/assets/xxxxa1sKNGwFtw2kFn8XauW9xq8hBZ5kVtcSesTT9fW/info.json new file mode 100644 index 00000000..97260480 --- /dev/null +++ b/blockchains/solana/assets/xxxxa1sKNGwFtw2kFn8XauW9xq8hBZ5kVtcSesTT9fW/info.json @@ -0,0 +1,11 @@ +{ + "name": "Solanium", + "symbol": "SLIM", + "type": "SPL", + "decimals": 6, + "description": "Decentralized fundraising and trading platform on the Solana blockchain.", + "website": "https://solanium.io", + "explorer": "https://solscan.io/token/xxxxa1sKNGwFtw2kFn8XauW9xq8hBZ5kVtcSesTT9fW", + "status": "active", + "id": "xxxxa1sKNGwFtw2kFn8XauW9xq8hBZ5kVtcSesTT9fW" +} \ No newline at end of file diff --git a/blockchains/solana/assets/xxxxa1sKNGwFtw2kFn8XauW9xq8hBZ5kVtcSesTT9fW/logo.png b/blockchains/solana/assets/xxxxa1sKNGwFtw2kFn8XauW9xq8hBZ5kVtcSesTT9fW/logo.png new file mode 100644 index 00000000..e010d60d Binary files /dev/null and b/blockchains/solana/assets/xxxxa1sKNGwFtw2kFn8XauW9xq8hBZ5kVtcSesTT9fW/logo.png differ diff --git a/blockchains/solana/assets/y1AZt42vceCmStjW4zetK3VoNarC1VxJ5iDjpiupump/info.json b/blockchains/solana/assets/y1AZt42vceCmStjW4zetK3VoNarC1VxJ5iDjpiupump/info.json new file mode 100644 index 00000000..93fc6c04 --- /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 00000000..f667f29d 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 00000000..61cc1441 --- /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 00000000..59ca8cac --- /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 00000000..71fbf201 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 00000000..14e08ba8 --- /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 00000000..c9800c36 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 new file mode 100644 index 00000000..3fa750fa --- /dev/null +++ b/blockchains/solana/assets/z3dn17yLaGMKffVogeFHQ9zWVcXgqgf3PQnDsNs2g6M/info.json @@ -0,0 +1,25 @@ +{ + "name": "Oxygen Protocol", + "symbol": "OXY", + "type": "SPL", + "decimals": 6, + "description": "The OXY token powers the Oxygen Protocol, governing it and 100% of its revenue", + "website": "https://www.oxygen.org/", + "explorer": "https://solscan.io/token/z3dn17yLaGMKffVogeFHQ9zWVcXgqgf3PQnDsNs2g6M", + "status": "active", + "id": "z3dn17yLaGMKffVogeFHQ9zWVcXgqgf3PQnDsNs2g6M", + "links": [ + { + "name": "x", + "url": "https://x.com/oxygen_protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oxygen/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/oxygen" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/z3dn17yLaGMKffVogeFHQ9zWVcXgqgf3PQnDsNs2g6M/logo.png b/blockchains/solana/assets/z3dn17yLaGMKffVogeFHQ9zWVcXgqgf3PQnDsNs2g6M/logo.png new file mode 100644 index 00000000..b97bd76f Binary files /dev/null and b/blockchains/solana/assets/z3dn17yLaGMKffVogeFHQ9zWVcXgqgf3PQnDsNs2g6M/logo.png differ diff --git a/blockchains/solana/assets/zZNV7cMF9Z5uqxLPLdAiSith6sVPx11GVYoCnYQovzT/info.json b/blockchains/solana/assets/zZNV7cMF9Z5uqxLPLdAiSith6sVPx11GVYoCnYQovzT/info.json new file mode 100644 index 00000000..cec24a03 --- /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 new file mode 100644 index 00000000..bf7bcb8d --- /dev/null +++ b/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/info.json @@ -0,0 +1,28 @@ +{ + "name": "ZEBEC", + "type": "SPL", + "symbol": "ZBC", + "decimals": 9, + "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": "abandoned", + "id": "zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF", + "links": [ + { + "name": "x", + "url": "https://x.com/Zebec_HQ" + }, + { + "name": "telegram", + "url": "https://t.me/zebecprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/zebec-protocol/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/znv3FZt2HFAvzYf5LxzVyryh3mBXWuTRRng25gEZAjh/info.json b/blockchains/solana/assets/znv3FZt2HFAvzYf5LxzVyryh3mBXWuTRRng25gEZAjh/info.json new file mode 100644 index 00000000..6a531435 --- /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 00000000..2ab3ad7d 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 new file mode 100644 index 00000000..0440cc89 --- /dev/null +++ b/blockchains/solana/info/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.solana.com/", + "research": "https://research.binance.com/en/projects/solana", + "symbol": "SOL", + "type": "coin", + "decimals": 9, + "status": "active", + "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/r/solana" + }, + { + "name": "whitepaper", + "url": "https://github.com/solana-labs/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/info/logo.png b/blockchains/solana/info/logo.png new file mode 100644 index 00000000..a6a429ad Binary files /dev/null and b/blockchains/solana/info/logo.png differ diff --git a/blockchains/solana/info/square_logo.png b/blockchains/solana/info/square_logo.png new file mode 100644 index 00000000..32459316 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 00000000..0d375fe5 --- /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": "Green Metaverse Token", + "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 Network Token (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": "Wrapped FTX", + "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 Token (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.finance (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": "Crypto.com Coin (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": "USD Coin", + "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": "LUNA (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 Network", + "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 Token", + "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/1234LB7uvDC23rdCQoK8C3jNwnovUNyeKxz8wC3dghJ5/logo.png b/blockchains/solana/validators/assets/1234LB7uvDC23rdCQoK8C3jNwnovUNyeKxz8wC3dghJ5/logo.png new file mode 100644 index 00000000..ed7f2ea1 Binary files /dev/null and b/blockchains/solana/validators/assets/1234LB7uvDC23rdCQoK8C3jNwnovUNyeKxz8wC3dghJ5/logo.png differ diff --git a/blockchains/solana/validators/assets/1KXz4xKV2viJCGpxqnQqdf2J45vQr5USdmtcJLTaHkm/logo.png b/blockchains/solana/validators/assets/1KXz4xKV2viJCGpxqnQqdf2J45vQr5USdmtcJLTaHkm/logo.png new file mode 100644 index 00000000..d55d207a Binary files /dev/null and b/blockchains/solana/validators/assets/1KXz4xKV2viJCGpxqnQqdf2J45vQr5USdmtcJLTaHkm/logo.png differ diff --git a/blockchains/solana/validators/assets/2Y2opv8Kq8zFATg6ipqb2AjgCf18tkv1CLMLXQGif2NH/logo.png b/blockchains/solana/validators/assets/2Y2opv8Kq8zFATg6ipqb2AjgCf18tkv1CLMLXQGif2NH/logo.png new file mode 100644 index 00000000..70ee36d1 Binary files /dev/null and b/blockchains/solana/validators/assets/2Y2opv8Kq8zFATg6ipqb2AjgCf18tkv1CLMLXQGif2NH/logo.png differ diff --git a/blockchains/solana/validators/assets/2het6nBRLq9LLZER8fqUEk7j5pbLxq2mVGqSse2nS3tf/logo.png b/blockchains/solana/validators/assets/2het6nBRLq9LLZER8fqUEk7j5pbLxq2mVGqSse2nS3tf/logo.png new file mode 100644 index 00000000..b138476a Binary files /dev/null and b/blockchains/solana/validators/assets/2het6nBRLq9LLZER8fqUEk7j5pbLxq2mVGqSse2nS3tf/logo.png differ diff --git a/blockchains/solana/validators/assets/3r5ZXC1yFqMmk8VwDdUJbEdPmZ8KZvEkzd5ThEYRetTk/logo.png b/blockchains/solana/validators/assets/3r5ZXC1yFqMmk8VwDdUJbEdPmZ8KZvEkzd5ThEYRetTk/logo.png new file mode 100644 index 00000000..35b7d2c0 Binary files /dev/null and b/blockchains/solana/validators/assets/3r5ZXC1yFqMmk8VwDdUJbEdPmZ8KZvEkzd5ThEYRetTk/logo.png differ diff --git a/blockchains/solana/validators/assets/49DJjUX3cwFvaZD5rCAwubiz7qdRWDez9xmB381XdHru/logo.png b/blockchains/solana/validators/assets/49DJjUX3cwFvaZD5rCAwubiz7qdRWDez9xmB381XdHru/logo.png new file mode 100644 index 00000000..f15a416f Binary files /dev/null and b/blockchains/solana/validators/assets/49DJjUX3cwFvaZD5rCAwubiz7qdRWDez9xmB381XdHru/logo.png differ diff --git a/blockchains/solana/validators/assets/4PsiLMyoUQ7QRn1FFiFCvej4hsUTFzfvJnyN4bj1tmSN/logo.png b/blockchains/solana/validators/assets/4PsiLMyoUQ7QRn1FFiFCvej4hsUTFzfvJnyN4bj1tmSN/logo.png new file mode 100644 index 00000000..7d9d7432 Binary files /dev/null and b/blockchains/solana/validators/assets/4PsiLMyoUQ7QRn1FFiFCvej4hsUTFzfvJnyN4bj1tmSN/logo.png differ diff --git a/blockchains/solana/validators/assets/51JBzSTU5rAM8gLAVQKgp4WoZerQcSqWC7BitBzgUNAm/logo.png b/blockchains/solana/validators/assets/51JBzSTU5rAM8gLAVQKgp4WoZerQcSqWC7BitBzgUNAm/logo.png new file mode 100644 index 00000000..59190cd8 Binary files /dev/null and b/blockchains/solana/validators/assets/51JBzSTU5rAM8gLAVQKgp4WoZerQcSqWC7BitBzgUNAm/logo.png differ diff --git a/blockchains/solana/validators/assets/6F5xdRXh2W3B2vhte12VG79JVUkUSLYrHydGX1SAadfZ/logo.png b/blockchains/solana/validators/assets/6F5xdRXh2W3B2vhte12VG79JVUkUSLYrHydGX1SAadfZ/logo.png new file mode 100644 index 00000000..2bd3a1e2 Binary files /dev/null and b/blockchains/solana/validators/assets/6F5xdRXh2W3B2vhte12VG79JVUkUSLYrHydGX1SAadfZ/logo.png differ diff --git a/blockchains/solana/validators/assets/6UDU4Z9TTbYy8gcRKBd7RX3Lm2qMsSR4PMuzoyYPzLma/logo.png b/blockchains/solana/validators/assets/6UDU4Z9TTbYy8gcRKBd7RX3Lm2qMsSR4PMuzoyYPzLma/logo.png new file mode 100644 index 00000000..e136c762 Binary files /dev/null and b/blockchains/solana/validators/assets/6UDU4Z9TTbYy8gcRKBd7RX3Lm2qMsSR4PMuzoyYPzLma/logo.png differ diff --git a/blockchains/solana/validators/assets/6hTLQ5HSdWcpZkbXmZxXaGjCgTh7zh8UeWKWKgGE1BPp/logo.png b/blockchains/solana/validators/assets/6hTLQ5HSdWcpZkbXmZxXaGjCgTh7zh8UeWKWKgGE1BPp/logo.png new file mode 100644 index 00000000..d263de35 Binary files /dev/null and b/blockchains/solana/validators/assets/6hTLQ5HSdWcpZkbXmZxXaGjCgTh7zh8UeWKWKgGE1BPp/logo.png differ diff --git a/blockchains/solana/validators/assets/76nwV8zz8tLz97SBRXH6uwHvgHXtqJDLQfF66jZhQ857/logo.png b/blockchains/solana/validators/assets/76nwV8zz8tLz97SBRXH6uwHvgHXtqJDLQfF66jZhQ857/logo.png new file mode 100644 index 00000000..c5be095b Binary files /dev/null and b/blockchains/solana/validators/assets/76nwV8zz8tLz97SBRXH6uwHvgHXtqJDLQfF66jZhQ857/logo.png differ diff --git a/blockchains/solana/validators/assets/7Hs9z4qsGCbQE9cy2aqgsvWupeZZGiKJgeb1eG4ZKYUH/logo.png b/blockchains/solana/validators/assets/7Hs9z4qsGCbQE9cy2aqgsvWupeZZGiKJgeb1eG4ZKYUH/logo.png new file mode 100644 index 00000000..2a36495c Binary files /dev/null and b/blockchains/solana/validators/assets/7Hs9z4qsGCbQE9cy2aqgsvWupeZZGiKJgeb1eG4ZKYUH/logo.png differ diff --git a/blockchains/solana/validators/assets/7PmWxxiTneGteGxEYvzj5pGDVMQ4nuN9DfUypEXmaA8o/logo.png b/blockchains/solana/validators/assets/7PmWxxiTneGteGxEYvzj5pGDVMQ4nuN9DfUypEXmaA8o/logo.png new file mode 100644 index 00000000..9b3d4357 Binary files /dev/null and b/blockchains/solana/validators/assets/7PmWxxiTneGteGxEYvzj5pGDVMQ4nuN9DfUypEXmaA8o/logo.png differ diff --git a/blockchains/solana/validators/assets/7VGU4ZwR1e1AFekqbqv2gvjeg47e1PwMPm4BfLt6rxNk/logo.png b/blockchains/solana/validators/assets/7VGU4ZwR1e1AFekqbqv2gvjeg47e1PwMPm4BfLt6rxNk/logo.png new file mode 100644 index 00000000..302d4850 Binary files /dev/null and b/blockchains/solana/validators/assets/7VGU4ZwR1e1AFekqbqv2gvjeg47e1PwMPm4BfLt6rxNk/logo.png differ diff --git a/blockchains/solana/validators/assets/9GJmEHGom9eWo4np4L5vC6b6ri1Df2xN8KFoWixvD1Bs/logo.png b/blockchains/solana/validators/assets/9GJmEHGom9eWo4np4L5vC6b6ri1Df2xN8KFoWixvD1Bs/logo.png new file mode 100644 index 00000000..e0ccebf5 Binary files /dev/null and b/blockchains/solana/validators/assets/9GJmEHGom9eWo4np4L5vC6b6ri1Df2xN8KFoWixvD1Bs/logo.png differ diff --git a/blockchains/solana/validators/assets/9QU2QSxhb24FUX3Tu2FpczXjpK3VYrvRudywSZaM29mF/logo.png b/blockchains/solana/validators/assets/9QU2QSxhb24FUX3Tu2FpczXjpK3VYrvRudywSZaM29mF/logo.png new file mode 100644 index 00000000..4d54781c Binary files /dev/null and b/blockchains/solana/validators/assets/9QU2QSxhb24FUX3Tu2FpczXjpK3VYrvRudywSZaM29mF/logo.png differ diff --git a/blockchains/solana/validators/assets/9iEFfC6qCU6DBTWxL84YQdpNmpZ9yBBu4sW62yeiEVKe/logo.png b/blockchains/solana/validators/assets/9iEFfC6qCU6DBTWxL84YQdpNmpZ9yBBu4sW62yeiEVKe/logo.png new file mode 100644 index 00000000..6ad790a9 Binary files /dev/null and b/blockchains/solana/validators/assets/9iEFfC6qCU6DBTWxL84YQdpNmpZ9yBBu4sW62yeiEVKe/logo.png differ diff --git a/blockchains/solana/validators/assets/9sWYTuuR4s12Q4SuSfo5CfWaFggQwA6Z8pf8dWowN5rk/logo.png b/blockchains/solana/validators/assets/9sWYTuuR4s12Q4SuSfo5CfWaFggQwA6Z8pf8dWowN5rk/logo.png new file mode 100644 index 00000000..1d58ec5a Binary files /dev/null and b/blockchains/solana/validators/assets/9sWYTuuR4s12Q4SuSfo5CfWaFggQwA6Z8pf8dWowN5rk/logo.png differ diff --git a/blockchains/solana/validators/assets/9tedbEYypEKXAMkHcg42rn3fXY1B8hB6cdE3ZTFouXLL/logo.png b/blockchains/solana/validators/assets/9tedbEYypEKXAMkHcg42rn3fXY1B8hB6cdE3ZTFouXLL/logo.png new file mode 100644 index 00000000..b3f18138 Binary files /dev/null and b/blockchains/solana/validators/assets/9tedbEYypEKXAMkHcg42rn3fXY1B8hB6cdE3ZTFouXLL/logo.png differ diff --git a/blockchains/solana/validators/assets/9v5gci7uDiaGKRmQ2dn6WJMB94YqFaVFBTiFzBzNhyaw/logo.png b/blockchains/solana/validators/assets/9v5gci7uDiaGKRmQ2dn6WJMB94YqFaVFBTiFzBzNhyaw/logo.png new file mode 100644 index 00000000..0ab4006e Binary files /dev/null and b/blockchains/solana/validators/assets/9v5gci7uDiaGKRmQ2dn6WJMB94YqFaVFBTiFzBzNhyaw/logo.png differ diff --git a/blockchains/solana/validators/assets/AGXZemZbyZjz5NBhufcob2pf8AXnr9HaGFUGNCfooWrB/logo.png b/blockchains/solana/validators/assets/AGXZemZbyZjz5NBhufcob2pf8AXnr9HaGFUGNCfooWrB/logo.png new file mode 100644 index 00000000..c89763c1 Binary files /dev/null and b/blockchains/solana/validators/assets/AGXZemZbyZjz5NBhufcob2pf8AXnr9HaGFUGNCfooWrB/logo.png differ diff --git a/blockchains/solana/validators/assets/AS3nKBQfKs8fJ8ncyHrdvo4FDT6S8HMRhD75JjCcyr1t/logo.png b/blockchains/solana/validators/assets/AS3nKBQfKs8fJ8ncyHrdvo4FDT6S8HMRhD75JjCcyr1t/logo.png new file mode 100644 index 00000000..6bc19107 Binary files /dev/null and b/blockchains/solana/validators/assets/AS3nKBQfKs8fJ8ncyHrdvo4FDT6S8HMRhD75JjCcyr1t/logo.png differ diff --git a/blockchains/solana/validators/assets/BH7asDZbKkTmT3UWiNfmMVRgQEEpXoVThGPmQfgWwDhg/logo.png b/blockchains/solana/validators/assets/BH7asDZbKkTmT3UWiNfmMVRgQEEpXoVThGPmQfgWwDhg/logo.png new file mode 100644 index 00000000..dac9370d Binary files /dev/null and b/blockchains/solana/validators/assets/BH7asDZbKkTmT3UWiNfmMVRgQEEpXoVThGPmQfgWwDhg/logo.png differ diff --git a/blockchains/solana/validators/assets/BmMVRAVef2qmJ1tJpG3JwRUtnfEiTbvDw9ZeFEi4wE7D/logo.png b/blockchains/solana/validators/assets/BmMVRAVef2qmJ1tJpG3JwRUtnfEiTbvDw9ZeFEi4wE7D/logo.png new file mode 100644 index 00000000..0f6305d8 Binary files /dev/null and b/blockchains/solana/validators/assets/BmMVRAVef2qmJ1tJpG3JwRUtnfEiTbvDw9ZeFEi4wE7D/logo.png differ diff --git a/blockchains/solana/validators/assets/BxFf75Vtzro2Hy3coFHKxFMZo5au8W7J8BmLC3gCMotU/logo.png b/blockchains/solana/validators/assets/BxFf75Vtzro2Hy3coFHKxFMZo5au8W7J8BmLC3gCMotU/logo.png new file mode 100644 index 00000000..13373936 Binary files /dev/null and b/blockchains/solana/validators/assets/BxFf75Vtzro2Hy3coFHKxFMZo5au8W7J8BmLC3gCMotU/logo.png differ diff --git a/blockchains/solana/validators/assets/CAf8jfgqhia5VNrEF4A7Y9VLD3numMq9DVSceq7cPhNY/logo.png b/blockchains/solana/validators/assets/CAf8jfgqhia5VNrEF4A7Y9VLD3numMq9DVSceq7cPhNY/logo.png new file mode 100644 index 00000000..8c9e86cb Binary files /dev/null and b/blockchains/solana/validators/assets/CAf8jfgqhia5VNrEF4A7Y9VLD3numMq9DVSceq7cPhNY/logo.png differ diff --git a/blockchains/solana/validators/assets/CRzMxdyS56N2vkb55X5q155sSdVkjZhiFedWcbscCf7K/logo.png b/blockchains/solana/validators/assets/CRzMxdyS56N2vkb55X5q155sSdVkjZhiFedWcbscCf7K/logo.png new file mode 100644 index 00000000..7d65f4ce Binary files /dev/null and b/blockchains/solana/validators/assets/CRzMxdyS56N2vkb55X5q155sSdVkjZhiFedWcbscCf7K/logo.png differ diff --git a/blockchains/solana/validators/assets/CcaHc2L43ZWjwCHART3oZoJvHLAe9hzT2DJNUpBzoTN1/logo.png b/blockchains/solana/validators/assets/CcaHc2L43ZWjwCHART3oZoJvHLAe9hzT2DJNUpBzoTN1/logo.png new file mode 100644 index 00000000..5ed55497 Binary files /dev/null and b/blockchains/solana/validators/assets/CcaHc2L43ZWjwCHART3oZoJvHLAe9hzT2DJNUpBzoTN1/logo.png differ diff --git a/blockchains/solana/validators/assets/CertusDeBmqN8ZawdkxK5kFGMwBXdudvWHYwtNgNhvLu/logo.png b/blockchains/solana/validators/assets/CertusDeBmqN8ZawdkxK5kFGMwBXdudvWHYwtNgNhvLu/logo.png new file mode 100644 index 00000000..52afb073 Binary files /dev/null and b/blockchains/solana/validators/assets/CertusDeBmqN8ZawdkxK5kFGMwBXdudvWHYwtNgNhvLu/logo.png differ diff --git a/blockchains/solana/validators/assets/Chorus6Kis8tFHA7AowrPMcRJk3LbApHTYpgSNXzY5KE/logo.png b/blockchains/solana/validators/assets/Chorus6Kis8tFHA7AowrPMcRJk3LbApHTYpgSNXzY5KE/logo.png new file mode 100644 index 00000000..7d1021cc Binary files /dev/null and b/blockchains/solana/validators/assets/Chorus6Kis8tFHA7AowrPMcRJk3LbApHTYpgSNXzY5KE/logo.png differ diff --git a/blockchains/solana/validators/assets/CogentC52e7kktFfWHwsqSmr8LiS1yAtfqhHcftCPcBJ/logo.png b/blockchains/solana/validators/assets/CogentC52e7kktFfWHwsqSmr8LiS1yAtfqhHcftCPcBJ/logo.png new file mode 100644 index 00000000..146d4e4e Binary files /dev/null and b/blockchains/solana/validators/assets/CogentC52e7kktFfWHwsqSmr8LiS1yAtfqhHcftCPcBJ/logo.png differ diff --git a/blockchains/solana/validators/assets/D1J7k7WouxgwzCfPN5qnW7TSmCTNqgNxWhjAxq62UK8U/logo.png b/blockchains/solana/validators/assets/D1J7k7WouxgwzCfPN5qnW7TSmCTNqgNxWhjAxq62UK8U/logo.png new file mode 100644 index 00000000..95674f5f Binary files /dev/null and b/blockchains/solana/validators/assets/D1J7k7WouxgwzCfPN5qnW7TSmCTNqgNxWhjAxq62UK8U/logo.png differ diff --git a/blockchains/solana/validators/assets/D3DfFvmLBKkX9JJNEpJRXpM1pYTVPQ5dpPQRc9F49xk4/logo.png b/blockchains/solana/validators/assets/D3DfFvmLBKkX9JJNEpJRXpM1pYTVPQ5dpPQRc9F49xk4/logo.png new file mode 100644 index 00000000..2df0ac0e Binary files /dev/null and b/blockchains/solana/validators/assets/D3DfFvmLBKkX9JJNEpJRXpM1pYTVPQ5dpPQRc9F49xk4/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 00000000..c2cb86a4 Binary files /dev/null and b/blockchains/solana/validators/assets/D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz/logo.png differ diff --git a/blockchains/solana/validators/assets/DP3iT6AXJxWsn5pR1ik13vchaTeeyr3fqXFTeysxrXtv/logo.png b/blockchains/solana/validators/assets/DP3iT6AXJxWsn5pR1ik13vchaTeeyr3fqXFTeysxrXtv/logo.png new file mode 100644 index 00000000..71ecba0f Binary files /dev/null and b/blockchains/solana/validators/assets/DP3iT6AXJxWsn5pR1ik13vchaTeeyr3fqXFTeysxrXtv/logo.png differ diff --git a/blockchains/solana/validators/assets/DQ7D6ZRtKbBSxCcAunEkoTzQhCBKLPdzTjPRRnM6wo1f/logo.png b/blockchains/solana/validators/assets/DQ7D6ZRtKbBSxCcAunEkoTzQhCBKLPdzTjPRRnM6wo1f/logo.png new file mode 100644 index 00000000..1778783f Binary files /dev/null and b/blockchains/solana/validators/assets/DQ7D6ZRtKbBSxCcAunEkoTzQhCBKLPdzTjPRRnM6wo1f/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 00000000..816c7298 Binary files /dev/null and b/blockchains/solana/validators/assets/DTwEEF6VSrmTBYkDcj3BKAc52qhvP8CEQUEAMMT1cG3/logo.png differ diff --git a/blockchains/solana/validators/assets/DumiCKHVqoCQKD8roLApzR5Fit8qGV5fVQsJV9sTZk4a/logo.png b/blockchains/solana/validators/assets/DumiCKHVqoCQKD8roLApzR5Fit8qGV5fVQsJV9sTZk4a/logo.png new file mode 100644 index 00000000..cb7a4941 Binary files /dev/null and b/blockchains/solana/validators/assets/DumiCKHVqoCQKD8roLApzR5Fit8qGV5fVQsJV9sTZk4a/logo.png differ diff --git a/blockchains/solana/validators/assets/EARNynHRWg6GfyJCmrrizcZxARB3HVzcaasvNa8kBS72/logo.png b/blockchains/solana/validators/assets/EARNynHRWg6GfyJCmrrizcZxARB3HVzcaasvNa8kBS72/logo.png new file mode 100644 index 00000000..592073ac Binary files /dev/null and b/blockchains/solana/validators/assets/EARNynHRWg6GfyJCmrrizcZxARB3HVzcaasvNa8kBS72/logo.png differ diff --git a/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png b/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png new file mode 100644 index 00000000..0888af01 Binary files /dev/null and b/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png differ diff --git a/blockchains/solana/validators/assets/FKsC411dik9ktS6xPADxs4Fk2SCENvAiuccQHLAPndvk/logo.png b/blockchains/solana/validators/assets/FKsC411dik9ktS6xPADxs4Fk2SCENvAiuccQHLAPndvk/logo.png new file mode 100644 index 00000000..4eeb197f Binary files /dev/null and b/blockchains/solana/validators/assets/FKsC411dik9ktS6xPADxs4Fk2SCENvAiuccQHLAPndvk/logo.png differ diff --git a/blockchains/solana/validators/assets/FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS/logo.png b/blockchains/solana/validators/assets/FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS/logo.png new file mode 100644 index 00000000..f5f3ada9 Binary files /dev/null and b/blockchains/solana/validators/assets/FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS/logo.png differ diff --git a/blockchains/solana/validators/assets/GB44NXtM7zGm6QnzQjzHZcRKSswkJbox8aJsKiXGbFJr/logo.png b/blockchains/solana/validators/assets/GB44NXtM7zGm6QnzQjzHZcRKSswkJbox8aJsKiXGbFJr/logo.png new file mode 100644 index 00000000..3eef671e Binary files /dev/null and b/blockchains/solana/validators/assets/GB44NXtM7zGm6QnzQjzHZcRKSswkJbox8aJsKiXGbFJr/logo.png differ diff --git a/blockchains/solana/validators/assets/GMpKrAwQ9oa4sJqEYQezLr8Z2TUAU72tXD4iMyfoJjbh/logo.png b/blockchains/solana/validators/assets/GMpKrAwQ9oa4sJqEYQezLr8Z2TUAU72tXD4iMyfoJjbh/logo.png new file mode 100644 index 00000000..034236f3 Binary files /dev/null and b/blockchains/solana/validators/assets/GMpKrAwQ9oa4sJqEYQezLr8Z2TUAU72tXD4iMyfoJjbh/logo.png differ diff --git a/blockchains/solana/validators/assets/GhKEDkvGkf2kceG45ppzqnPD6BPXi1PyW1xGNWJdh5QW/logo.png b/blockchains/solana/validators/assets/GhKEDkvGkf2kceG45ppzqnPD6BPXi1PyW1xGNWJdh5QW/logo.png new file mode 100644 index 00000000..f7d95696 Binary files /dev/null and b/blockchains/solana/validators/assets/GhKEDkvGkf2kceG45ppzqnPD6BPXi1PyW1xGNWJdh5QW/logo.png differ diff --git a/blockchains/solana/validators/assets/GvZEwtCHZ7YtCkQCaLRVEXsyVvQkRDhJhQgB6akPme1e/logo.png b/blockchains/solana/validators/assets/GvZEwtCHZ7YtCkQCaLRVEXsyVvQkRDhJhQgB6akPme1e/logo.png new file mode 100644 index 00000000..d263de35 Binary files /dev/null and b/blockchains/solana/validators/assets/GvZEwtCHZ7YtCkQCaLRVEXsyVvQkRDhJhQgB6akPme1e/logo.png differ diff --git a/blockchains/solana/validators/assets/H3GhqPMwvGLdxWg3QJGjXDSkFSJCsFk3Wx9XBTdYZykc/logo.png b/blockchains/solana/validators/assets/H3GhqPMwvGLdxWg3QJGjXDSkFSJCsFk3Wx9XBTdYZykc/logo.png new file mode 100644 index 00000000..6c8fa623 Binary files /dev/null and b/blockchains/solana/validators/assets/H3GhqPMwvGLdxWg3QJGjXDSkFSJCsFk3Wx9XBTdYZykc/logo.png differ diff --git a/blockchains/solana/validators/assets/LunaFpQkZsZVJL2P2BUqNDJqyVYqrw9buQnjQtMLXdK/logo.png b/blockchains/solana/validators/assets/LunaFpQkZsZVJL2P2BUqNDJqyVYqrw9buQnjQtMLXdK/logo.png new file mode 100644 index 00000000..a73cfede Binary files /dev/null and b/blockchains/solana/validators/assets/LunaFpQkZsZVJL2P2BUqNDJqyVYqrw9buQnjQtMLXdK/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 00000000..09b756ea Binary files /dev/null and b/blockchains/solana/validators/assets/PUFFiNkUHF2DMfbKeUcYTSQckDDtkswfxZCDv5WQqwp/logo.png differ diff --git a/blockchains/solana/validators/assets/PUmpKiNnSVAZ3w4KaFX6jKSjXUNHFShGkXbERo54xjb/logo.png b/blockchains/solana/validators/assets/PUmpKiNnSVAZ3w4KaFX6jKSjXUNHFShGkXbERo54xjb/logo.png new file mode 100644 index 00000000..ac09c895 Binary files /dev/null and b/blockchains/solana/validators/assets/PUmpKiNnSVAZ3w4KaFX6jKSjXUNHFShGkXbERo54xjb/logo.png differ diff --git a/blockchains/solana/validators/assets/SFund7s2YPS7iCu7W2TobbuQEpVEAv9ZU7zHKiN1Gow/logo.png b/blockchains/solana/validators/assets/SFund7s2YPS7iCu7W2TobbuQEpVEAv9ZU7zHKiN1Gow/logo.png new file mode 100644 index 00000000..a349d55e Binary files /dev/null and b/blockchains/solana/validators/assets/SFund7s2YPS7iCu7W2TobbuQEpVEAv9ZU7zHKiN1Gow/logo.png differ diff --git a/blockchains/solana/validators/assets/ateamaZDqNWDztxnVKZhRsp4ac53KvT1rVKyU5LnL6o/logo.png b/blockchains/solana/validators/assets/ateamaZDqNWDztxnVKZhRsp4ac53KvT1rVKyU5LnL6o/logo.png new file mode 100644 index 00000000..7fe8f539 Binary files /dev/null and b/blockchains/solana/validators/assets/ateamaZDqNWDztxnVKZhRsp4ac53KvT1rVKyU5LnL6o/logo.png differ diff --git a/blockchains/solana/validators/assets/beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar/logo.png b/blockchains/solana/validators/assets/beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar/logo.png new file mode 100644 index 00000000..cba5da91 Binary files /dev/null and b/blockchains/solana/validators/assets/beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar/logo.png differ diff --git a/blockchains/solana/validators/assets/edu1fZt5i82cFm6ujUoyXLMdujWxZyWYC8fkydWHRNT/logo.png b/blockchains/solana/validators/assets/edu1fZt5i82cFm6ujUoyXLMdujWxZyWYC8fkydWHRNT/logo.png new file mode 100644 index 00000000..8ff809ec Binary files /dev/null and b/blockchains/solana/validators/assets/edu1fZt5i82cFm6ujUoyXLMdujWxZyWYC8fkydWHRNT/logo.png differ diff --git a/blockchains/solana/validators/assets/juicQdAnksqZ5Yb8NQwCLjLWhykvXGktxnQCDvMe6Nx/logo.png b/blockchains/solana/validators/assets/juicQdAnksqZ5Yb8NQwCLjLWhykvXGktxnQCDvMe6Nx/logo.png new file mode 100644 index 00000000..5655e49b Binary files /dev/null and b/blockchains/solana/validators/assets/juicQdAnksqZ5Yb8NQwCLjLWhykvXGktxnQCDvMe6Nx/logo.png differ diff --git a/blockchains/solana/validators/list.json b/blockchains/solana/validators/list.json new file mode 100644 index 00000000..f6681c10 --- /dev/null +++ b/blockchains/solana/validators/list.json @@ -0,0 +1,164 @@ +[ + { + "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": "AS3nKBQfKs8fJ8ncyHrdvo4FDT6S8HMRhD75JjCcyr1t", + "name": "Overclock", + "description": "Dedicated members of the Solana ecosystem running a high performance, secure validator operation.", + "website": "https://www.overclock.one/" + }, + { + "id": "9QU2QSxhb24FUX3Tu2FpczXjpK3VYrvRudywSZaM29mF", + "name": "Everstake", + "description": "Everstake is a staking-as-a-service company from Ukraine. We help institutional investors and regular token holders to profit off their crypto assets. Choose the most promising projects, delegate with Everstake and make 5%-20% annually.", + "website": "https://everstake.one/" + }, + { + "id": "Chorus6Kis8tFHA7AowrPMcRJk3LbApHTYpgSNXzY5KE", + "name": "Chorus One", + "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", + "description": "Jump Crypto is building toward the next frontier in crypto infrastructure.", + "website": "https://jumpcrypto.com/" + }, + { + "id": "beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar", + "name": "Coinbase Cloud", + "description": "Coinbase Cloud provides secure and reliable blockchain infrastructure and APIs. Stake your crypto to our enterprise-grade validators.", + "website": "hhttps://www.coinbase.com/cloud" + }, + { + "id": "DumiCKHVqoCQKD8roLApzR5Fit8qGV5fVQsJV9sTZk4a", + "name": "Staking Facilities", + "description": "Builder of Solanabeach.io, early investor, liquidity provider via Hummingbot.io - we strive to make Solana a success.", + "website": "https://stakingfacilities.com/" + }, + { + "id": "D3DfFvmLBKkX9JJNEpJRXpM1pYTVPQ5dpPQRc9F49xk4", + "name": "Easy 2 Stake", + "description": "Professional PoS staking services.", + "website": "https://easy2stake.com/" + }, + { + "id": "EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F", + "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", + "name": "Stake Systems", + "description": "Building infrastructure to support awesome projects running in the blockchain landscape", + "website": "https://stake.systems" + }, + { + "id": "4PsiLMyoUQ7QRn1FFiFCvej4hsUTFzfvJnyN4bj1tmSN", + "name": "Stakin", + "description": "Staking Services Trusted by Institutions.", + "website": "https://stakin.com/" + }, + { + "id": "CogentC52e7kktFfWHwsqSmr8LiS1yAtfqhHcftCPcBJ", + "name": "Cogent Crypto", + "description": "Highest APY Validator", + "website": "https://CogentCrypto.io/" + }, + { + "id": "EARNynHRWg6GfyJCmrrizcZxARB3HVzcaasvNa8kBS72", + "name": "Solana Compass 🧭", + "description": "Building tools, guides and dashboards to support the Solana ecosystem. High performance validator, excellent uptime.", + "website": "https://solanacompass.com/" + }, + { + "id": "GvZEwtCHZ7YtCkQCaLRVEXsyVvQkRDhJhQgB6akPme1e", + "name": "NO Fees! → melea One", + "description": "0% Fees! & Secure and trusted Validator. Protection against Ddos attacks and high availability. Validating since 2017", + "website": "https://melea.xyz" + }, + { + "id": "6hTLQ5HSdWcpZkbXmZxXaGjCgTh7zh8UeWKWKgGE1BPp", + "name": "NO Fees! → melea Two", + "description": "0% Fees! & Secure and trusted Validator. Protection against Ddos attacks and high availability. Validating since 2017", + "website": "https://melea.xyz" + }, + { + "id": "DP3iT6AXJxWsn5pR1ik13vchaTeeyr3fqXFTeysxrXtv", + "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": "1234LB7uvDC23rdCQoK8C3jNwnovUNyeKxz8wC3dghJ5", + "name": "BlueLotus 👩‍💻", + "description": "Reliable & Secure Solana Validator", + "website": "https://www.bluelotus.one/" + }, + { + "id": "2Y2opv8Kq8zFATg6ipqb2AjgCf18tkv1CLMLXQGif2NH", + "name": "Atomic Nodes", + "description": "Atomic Nodes is a multi chain staking operator, trusted by over 200,000 delegators since 2019.", + "website": "https://atomicnodes.com/" + }, + { + "id": "juicQdAnksqZ5Yb8NQwCLjLWhykvXGktxnQCDvMe6Nx", + "name": "Juicy Stake", + "description": "The ultimate Juicy Stake validator by @knox_trades", + "website": "https://juicystake.io" + }, + { + "id": "6F5xdRXh2W3B2vhte12VG79JVUkUSLYrHydGX1SAadfZ", + "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" + }, + { + "id": "BmMVRAVef2qmJ1tJpG3JwRUtnfEiTbvDw9ZeFEi4wE7D", + "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": "D1J7k7WouxgwzCfPN5qnW7TSmCTNqgNxWhjAxq62UK8U", + "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 new file mode 100644 index 00000000..852eb7f6 --- /dev/null +++ b/blockchains/sommelier/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Sommelier", + "type": "coin", + "symbol": "SOMM", + "decimals": 6, + "website": "https://www.sommelier.finance/", + "description": "Sommelier Finance is a Cosmos SDK-based blockchain that provides risk-managed multichain DeFi strategies.", + "explorer": "https://www.mintscan.io/sommelier", + "status": "active", + "rpc_url": "https://sommelier-rpc.polkachu.com/", + "denom": "usomm", + "lcd_url": "https://sommelier-api.polkachu.com/", + "hrp": "somm", + "links": [ + { + "name": "github", + "url": "https://github.com/PeggyJV" + }, + { + "name": "whitepaper", + "url": "https://tricky-sand-5e6.notion.site/Sommelier-Documentation-006e748753e34a1299f9b1d6ae3a4544" + }, + { + "name": "x", + "url": "https://x.com/sommfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/sommelier/info/logo.png b/blockchains/sommelier/info/logo.png new file mode 100644 index 00000000..6e6eb7f2 Binary files /dev/null and b/blockchains/sommelier/info/logo.png differ diff --git a/blockchains/sommelier/info/square_logo.png b/blockchains/sommelier/info/square_logo.png new file mode 100644 index 00000000..31d329dd 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 00000000..9b28ec00 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 00000000..83225b31 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 00000000..18b82452 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 00000000..552a01c6 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 00000000..02916372 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 00000000..c2cb86a4 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 00000000..91e5c5d0 --- /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 00000000..f48bd101 --- /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 00000000..0c99991a 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 00000000..3f6b7709 --- /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 00000000..7cc8aea3 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 00000000..3c48e41a --- /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 00000000..418f0810 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 00000000..df4bf581 --- /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 00000000..4c707582 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 00000000..fdf79d1e --- /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 00000000..f1fa4fd6 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 00000000..3bb60f8a --- /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 00000000..391df8bc 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 00000000..a1baac50 --- /dev/null +++ b/blockchains/sonic/assets/0x29219dd400f2Bf60E5a23d13Be72B486D4038894/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bridged USDC (Sonic Labs)", + "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 00000000..04f58df4 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 00000000..14a449c9 --- /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 00000000..4a67afbb 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 00000000..f3cd09cc --- /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 00000000..893ef55c 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 00000000..620b521e --- /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 00000000..40e4e94d 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 00000000..f2f7b097 --- /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 00000000..714aa979 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 00000000..f1cc82cf --- /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 00000000..f777ba90 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 00000000..7ea094ae --- /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 00000000..f9328d95 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 00000000..caea165e --- /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 00000000..da6df95a 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 00000000..1114f85a --- /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 00000000..dff3dd14 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 00000000..b3f97a4b --- /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 00000000..a08dd3f4 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 00000000..127f3475 --- /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 00000000..0602e1fa 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 00000000..48488126 --- /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 00000000..fdddc3eb 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 00000000..e15e90fd --- /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 00000000..a879ee50 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 00000000..86bf7096 --- /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 00000000..e4df804c 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 00000000..f6a7dadd --- /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 00000000..20b1d135 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 00000000..a35630db --- /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 00000000..90a6bc48 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 00000000..c58e1348 --- /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 00000000..1eb238c8 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 00000000..c4fc1944 --- /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 00000000..c68d27e1 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 00000000..42a79be9 --- /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 00000000..fc7c2192 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 00000000..f8b0e0a4 --- /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 00000000..701648ef 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 00000000..69812b27 --- /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 00000000..c8d16fd8 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 00000000..2e79caa1 --- /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 00000000..1119cf21 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 00000000..4c4b60ad --- /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 00000000..5bf33a81 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 00000000..08e80f91 --- /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 00000000..0f39e400 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 00000000..05ac0cc6 --- /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 00000000..a13c3432 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 00000000..75b37c3a --- /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 00000000..6a4fb97b 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 00000000..757deef9 --- /dev/null +++ b/blockchains/sonic/assets/0xe715cbA7B5cCb33790ceBFF1436809d36cb17E57/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bridged EURC (Sonic Labs)", + "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 00000000..f23fbed3 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 00000000..411bf421 --- /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 00000000..fcd3e166 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 00000000..19290cd5 --- /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 00000000..92ef75b4 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 00000000..3187453a --- /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 00000000..156dde71 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 00000000..91713b9c --- /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 00000000..7cc8aea3 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 00000000..ce7178c7 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 00000000..92481df9 --- /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": "Bridged USDC (Sonic Labs)", + "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": "Bridged EURC (Sonic Labs)", + "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 new file mode 100644 index 00000000..ca03cef1 --- /dev/null +++ b/blockchains/stargaze/info/info.json @@ -0,0 +1,32 @@ +{ + "name": "Stargaze", + "type": "coin", + "symbol": "STARS", + "decimals": 6, + "website": "https://www.stargaze.zone", + "description": "A Cosmos SDK-based decentralized interchain NFT marketplace and social network.", + "explorer": "https://www.mintscan.io/stargaze", + "status": "active", + "rpc_url": "https://stargaze.c29r3.xyz/rpc/", + "denom": "ustars", + "lcd_url": "https://api-stargaze.d-stake.xyz", + "hrp": "stars", + "fee_rate": "0.0025", + "links": [ + { + "name": "medium", + "url": "https://medium.com/stargaze-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/stargaze/" + }, + { + "name": "x", + "url": "https://x.com/StargazeZone" + } + ], + "tags": [ + "staking-native" + ] +} \ No newline at end of file diff --git a/blockchains/stargaze/info/logo.png b/blockchains/stargaze/info/logo.png new file mode 100644 index 00000000..bae9f21d Binary files /dev/null and b/blockchains/stargaze/info/logo.png differ diff --git a/blockchains/stargaze/info/square_logo.png b/blockchains/stargaze/info/square_logo.png new file mode 100644 index 00000000..c27651f1 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 00000000..2b7d58fd 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 00000000..9dff7bbe 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 00000000..c53de065 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 00000000..d9182668 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 00000000..69693565 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 00000000..a815dfcd 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 00000000..5f4e4507 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 00000000..02916372 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 00000000..e53d0580 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 00000000..c2cb86a4 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 00000000..eaf66cb5 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 00000000..91529a7d 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 00000000..05e24c5c 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 00000000..1b71ae0a 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 00000000..0a806e3a --- /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 new file mode 100644 index 00000000..48dee80a --- /dev/null +++ b/blockchains/steem/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Steem", + "website": "https://steem.com", + "description": "A new way for publishers to monetize their online content and community, based on battle-tested blockchain technology.", + "explorer": "https://steemd.com/", + "research": "https://research.binance.com/en/projects/steem", + "symbol": "STEEM", + "type": "coin", + "decimals": 8, + "status": "abandoned", + "links": [ + { + "name": "github", + "url": "https://github.com/steemit/steem" + }, + { + "name": "x", + "url": "https://x.com/Steemit" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/steemit" + }, + { + "name": "whitepaper", + "url": "https://steem.io/SteemWhitePaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/steem/info/logo.png b/blockchains/steem/info/logo.png new file mode 100644 index 00000000..4bdd9466 Binary files /dev/null and b/blockchains/steem/info/logo.png differ diff --git a/blockchains/steem/info/square_logo.png b/blockchains/steem/info/square_logo.png new file mode 100644 index 00000000..95fa5dce 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 new file mode 100644 index 00000000..69dc55c3 --- /dev/null +++ b/blockchains/stellar/assets/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN/info.json @@ -0,0 +1,28 @@ +{ + "name": "USD Coin", + "type": "STELLAR", + "symbol": "USDC", + "decimals": 7, + "website": "https://www.centre.io", + "description": "USDC is a fully collateralized US Dollar stablecoin, based on the open source fiat stablecoin framework developed by Centre", + "explorer": "https://stellar.expert/explorer/public/asset/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN", + "status": "active", + "id": "USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN", + "links": [ + { + "name": "x", + "url": "https://x.com/centre_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/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/stellar/assets/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN/logo.png b/blockchains/stellar/assets/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN/logo.png new file mode 100644 index 00000000..e3d5a3f6 Binary files /dev/null and b/blockchains/stellar/assets/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN/logo.png differ diff --git a/blockchains/stellar/info/info.json b/blockchains/stellar/info/info.json new file mode 100644 index 00000000..b55cc352 --- /dev/null +++ b/blockchains/stellar/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Stellar", + "website": "https://stellar.org", + "description": "Stellar is an open platform for building financial products. It enables near instant payments, with almost zero fees, and a smart contract platform to create digital asset economy.", + "explorer": "https://dashboard.stellar.org/", + "research": "https://research.binance.com/en/projects/stellar-lumens", + "symbol": "XLM", + "type": "coin", + "decimals": 7, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/stellar" + }, + { + "name": "x", + "url": "https://x.com/StellarOrg" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/stellar" + }, + { + "name": "whitepaper", + "url": "https://www.stellar.org/papers/stellar-consensus-protocol.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/stellar/info/logo.png b/blockchains/stellar/info/logo.png new file mode 100644 index 00000000..41aaf48d Binary files /dev/null and b/blockchains/stellar/info/logo.png differ diff --git a/blockchains/stellar/info/square_logo.png b/blockchains/stellar/info/square_logo.png new file mode 100644 index 00000000..6ea23334 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 00000000..e71145ab --- /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 00000000..00a41b1a 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 00000000..93bc4266 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 new file mode 100644 index 00000000..e0bb8d56 --- /dev/null +++ b/blockchains/stride/assets/staevmos/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stride Staked Evmos", + "symbol": "STEVMOS", + "type": "STRIDE", + "decimals": 18, + "description": "Stride Staked Evmos is the token received in exchange for staking EVMOS with Stride.", + "website": "https://stride.zone", + "explorer": "https://www.mintscan.io/stride/account/staevmos", + "status": "active", + "id": "staevmos" +} \ No newline at end of file diff --git a/blockchains/stride/assets/staevmos/logo.png b/blockchains/stride/assets/staevmos/logo.png new file mode 100644 index 00000000..14110f59 Binary files /dev/null and b/blockchains/stride/assets/staevmos/logo.png differ diff --git a/blockchains/stride/assets/stinj/info.json b/blockchains/stride/assets/stinj/info.json new file mode 100644 index 00000000..37d1967c --- /dev/null +++ b/blockchains/stride/assets/stinj/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stride Staked Injective", + "symbol": "STINJ", + "type": "STRIDE", + "decimals": 18, + "description": "Stride Staked Injective is the token received in exchange for staking ING with Stride.", + "website": "https://stride.zone", + "explorer": "https://www.mintscan.io/stride/account/stinj", + "status": "active", + "id": "stinj" +} \ No newline at end of file diff --git a/blockchains/stride/assets/stinj/logo.png b/blockchains/stride/assets/stinj/logo.png new file mode 100644 index 00000000..23d57dbf Binary files /dev/null and b/blockchains/stride/assets/stinj/logo.png differ diff --git a/blockchains/stride/assets/stuatom/info.json b/blockchains/stride/assets/stuatom/info.json new file mode 100644 index 00000000..4cc88944 --- /dev/null +++ b/blockchains/stride/assets/stuatom/info.json @@ -0,0 +1,17 @@ +{ + "name": "Stride Staked Atom", + "symbol": "STATOM", + "type": "STRIDE", + "decimals": 6, + "description": "Stride Staked Atom is the token received in exchange for staking ATOM with Stride. STATOM is redeemable 1:1 for ATOM, subject to the 21 day unbonding period on Cosmos.", + "website": "https://stride.zone", + "explorer": "https://www.mintscan.io/stride/account/stuatom", + "status": "active", + "id": "stuatom", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stride-staked-atom/" + } + ] +} \ No newline at end of file diff --git a/blockchains/stride/assets/stuatom/logo.png b/blockchains/stride/assets/stuatom/logo.png new file mode 100644 index 00000000..a9ce5b22 Binary files /dev/null and b/blockchains/stride/assets/stuatom/logo.png differ diff --git a/blockchains/stride/assets/stujuno/info.json b/blockchains/stride/assets/stujuno/info.json new file mode 100644 index 00000000..313db9af --- /dev/null +++ b/blockchains/stride/assets/stujuno/info.json @@ -0,0 +1,17 @@ +{ + "name": "Stride Staked Juno", + "symbol": "STJUNO", + "type": "STRIDE", + "decimals": 6, + "description": "Stride Staked Juno is the token received in exchange for staking JUNO with Stride.", + "website": "https://stride.zone", + "explorer": "https://www.mintscan.io/stride/account/stujuno", + "status": "active", + "id": "stujuno", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stride-staked-juno/" + } + ] +} \ No newline at end of file diff --git a/blockchains/stride/assets/stujuno/logo.png b/blockchains/stride/assets/stujuno/logo.png new file mode 100644 index 00000000..dad76df8 Binary files /dev/null and b/blockchains/stride/assets/stujuno/logo.png differ diff --git a/blockchains/stride/assets/stuluna/info.json b/blockchains/stride/assets/stuluna/info.json new file mode 100644 index 00000000..c60fe8a3 --- /dev/null +++ b/blockchains/stride/assets/stuluna/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stride Staked Luna", + "symbol": "STLUNA", + "type": "STRIDE", + "decimals": 6, + "description": "Stride Staked Luna is the token received in exchange for staking LUNA with Stride.", + "website": "https://stride.zone", + "explorer": "https://www.mintscan.io/stride/account/stuluna", + "status": "active", + "id": "stuluna" +} \ No newline at end of file diff --git a/blockchains/stride/assets/stuluna/logo.png b/blockchains/stride/assets/stuluna/logo.png new file mode 100644 index 00000000..aefd71b9 Binary files /dev/null and b/blockchains/stride/assets/stuluna/logo.png differ diff --git a/blockchains/stride/assets/stuosmo/info.json b/blockchains/stride/assets/stuosmo/info.json new file mode 100644 index 00000000..bb5a4e77 --- /dev/null +++ b/blockchains/stride/assets/stuosmo/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stride Staked Osmo", + "symbol": "STOSMO", + "type": "STRIDE", + "decimals": 6, + "description": "Stride Staked Osmo is the token received in exchange for staking OSMO with Stride.", + "website": "https://stride.zone", + "explorer": "https://www.mintscan.io/stride/account/stuosmo", + "status": "active", + "id": "stuosmo" +} \ No newline at end of file diff --git a/blockchains/stride/assets/stuosmo/logo.png b/blockchains/stride/assets/stuosmo/logo.png new file mode 100644 index 00000000..b0f32fb9 Binary files /dev/null and b/blockchains/stride/assets/stuosmo/logo.png differ diff --git a/blockchains/stride/assets/stustars/info.json b/blockchains/stride/assets/stustars/info.json new file mode 100644 index 00000000..4ab67048 --- /dev/null +++ b/blockchains/stride/assets/stustars/info.json @@ -0,0 +1,17 @@ +{ + "name": "Stride Staked Stars", + "symbol": "STSTARS", + "type": "STRIDE", + "decimals": 6, + "description": "Stride Staked Stars is the token received in exchange for staking STARS with Stride.", + "website": "https://stride.zone", + "explorer": "https://www.mintscan.io/stride/account/stustars", + "status": "active", + "id": "stustars", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stride-staked-stars/" + } + ] +} \ No newline at end of file diff --git a/blockchains/stride/assets/stustars/logo.png b/blockchains/stride/assets/stustars/logo.png new file mode 100644 index 00000000..29cf9c0c Binary files /dev/null and b/blockchains/stride/assets/stustars/logo.png differ diff --git a/blockchains/stride/assets/stuumee/info.json b/blockchains/stride/assets/stuumee/info.json new file mode 100644 index 00000000..3785ebcc --- /dev/null +++ b/blockchains/stride/assets/stuumee/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stride Staked Umee", + "symbol": "STUMEE", + "type": "STRIDE", + "decimals": 6, + "description": "Stride Staked Umee is the token received in exchange for staking UMEE with Stride.", + "website": "https://stride.zone", + "explorer": "https://www.mintscan.io/stride/account/stuumee", + "status": "active", + "id": "stuumee" +} \ No newline at end of file diff --git a/blockchains/stride/assets/stuumee/logo.png b/blockchains/stride/assets/stuumee/logo.png new file mode 100644 index 00000000..4464f89f Binary files /dev/null and b/blockchains/stride/assets/stuumee/logo.png differ diff --git a/blockchains/stride/info/info.json b/blockchains/stride/info/info.json new file mode 100644 index 00000000..b12f7d73 --- /dev/null +++ b/blockchains/stride/info/info.json @@ -0,0 +1,31 @@ +{ + "name": "Stride", + "type": "coin", + "symbol": "STRD", + "decimals": 6, + "website": "https://app.stride.zone", + "description": "Using Stride, you can earn both staking and DeFi yields across the Cosmos IBC ecosystem.", + "explorer": "https://www.mintscan.io/stride", + "status": "active", + "rpc_url": "https://stride-rpc.cosmosrescue.com/", + "denom": "ustrd", + "lcd_url": "https://stride-api.cosmosrescue.com/", + "hrp": "stride", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/Stride-Labs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/stride/" + }, + { + "name": "x", + "url": "https://x.com/stride_zone" + } + ] +} \ No newline at end of file diff --git a/blockchains/stride/info/logo.png b/blockchains/stride/info/logo.png new file mode 100644 index 00000000..e75a2ec5 Binary files /dev/null and b/blockchains/stride/info/logo.png differ diff --git a/blockchains/stride/info/square_logo.png b/blockchains/stride/info/square_logo.png new file mode 100644 index 00000000..8a009bc1 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 00000000..c53de065 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 00000000..9b28ec00 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zv8hy7g/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1624f0qe76yhnwvlwp3ury2r2xh6cqemmpts8ge/logo.png b/blockchains/stride/validators/assets/stridevaloper1624f0qe76yhnwvlwp3ury2r2xh6cqemmpts8ge/logo.png new file mode 100644 index 00000000..831b62a5 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1624f0qe76yhnwvlwp3ury2r2xh6cqemmpts8ge/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 00000000..0f6305d8 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 00000000..10205271 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper17axr56uvurzt9dzjl6zplk4qwjkmxgmmqmthwv/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper19nktvlnhd7j2tsyt97jyfnv3kdemx8cqx25ng7/logo.png b/blockchains/stride/validators/assets/stridevaloper19nktvlnhd7j2tsyt97jyfnv3kdemx8cqx25ng7/logo.png new file mode 100644 index 00000000..f30b2458 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper19nktvlnhd7j2tsyt97jyfnv3kdemx8cqx25ng7/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 00000000..c2cb86a4 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1a5c3ejnzy0827t62cyj7etmuchdqvznhp5yp94/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1dae4zycvmyd2qt5td9zzgdjdnwyawp79c5tuec/logo.png b/blockchains/stride/validators/assets/stridevaloper1dae4zycvmyd2qt5td9zzgdjdnwyawp79c5tuec/logo.png new file mode 100644 index 00000000..ef1e1911 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1dae4zycvmyd2qt5td9zzgdjdnwyawp79c5tuec/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1dqpg0hfva0k0awzhxwarjpgzj82hlmvrnxlzsd/logo.png b/blockchains/stride/validators/assets/stridevaloper1dqpg0hfva0k0awzhxwarjpgzj82hlmvrnxlzsd/logo.png new file mode 100644 index 00000000..0e32dd66 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1dqpg0hfva0k0awzhxwarjpgzj82hlmvrnxlzsd/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1dtqsnk3mlqrcxgfvu39lm0jm3pyd0mkrmgkwec/logo.png b/blockchains/stride/validators/assets/stridevaloper1dtqsnk3mlqrcxgfvu39lm0jm3pyd0mkrmgkwec/logo.png new file mode 100644 index 00000000..0210d0e6 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1dtqsnk3mlqrcxgfvu39lm0jm3pyd0mkrmgkwec/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p9nfwja/logo.png b/blockchains/stride/validators/assets/stridevaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p9nfwja/logo.png new file mode 100644 index 00000000..8f6bd2d3 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p9nfwja/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1jj9z2xwxesuy65n90dujsak554eqkrr28aqpl0/logo.png b/blockchains/stride/validators/assets/stridevaloper1jj9z2xwxesuy65n90dujsak554eqkrr28aqpl0/logo.png new file mode 100644 index 00000000..6676e07e Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1jj9z2xwxesuy65n90dujsak554eqkrr28aqpl0/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1kvwpcr45lh7wn53wp9ac42ypr3t8zjqy6ks9au/logo.png b/blockchains/stride/validators/assets/stridevaloper1kvwpcr45lh7wn53wp9ac42ypr3t8zjqy6ks9au/logo.png new file mode 100644 index 00000000..74e85f6c Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1kvwpcr45lh7wn53wp9ac42ypr3t8zjqy6ks9au/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1md2j38ls8hg94vjfafu0a2p9htwlkjmhux9e4v/logo.png b/blockchains/stride/validators/assets/stridevaloper1md2j38ls8hg94vjfafu0a2p9htwlkjmhux9e4v/logo.png new file mode 100644 index 00000000..aab2312d Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1md2j38ls8hg94vjfafu0a2p9htwlkjmhux9e4v/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1x0agh4jnvamn6y5ss94s6ktugwkljp6y2tkj0w/logo.png b/blockchains/stride/validators/assets/stridevaloper1x0agh4jnvamn6y5ss94s6ktugwkljp6y2tkj0w/logo.png new file mode 100644 index 00000000..0048540e Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1x0agh4jnvamn6y5ss94s6ktugwkljp6y2tkj0w/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 00000000..e1178170 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 00000000..e247fab1 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 new file mode 100644 index 00000000..78d968e0 --- /dev/null +++ b/blockchains/stride/validators/list.json @@ -0,0 +1,104 @@ +[ + { + "id": "stridevaloper1dtqsnk3mlqrcxgfvu39lm0jm3pyd0mkrmgkwec", + "name": "Imperator.co", + "description": "100% refund on downtime slashing -- Professional Delegated Proof-of-Stake Network Validator", + "website": "https://imperator.co/" + }, + { + "id": "stridevaloper1x0agh4jnvamn6y5ss94s6ktugwkljp6y2tkj0w", + "name": "Swiss Staking", + "description": "Experienced validator based in Switzerland. We offer a highly secure and stable staking infrastructure.", + "website": "https://swiss-staking.ch/" + }, + { + "id": "stridevaloper1jj9z2xwxesuy65n90dujsak554eqkrr28aqpl0", + "name": "Cosmostation", + "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards", + "website": "https://www.cosmostation.io/" + }, + { + "id": "stridevaloper1dqpg0hfva0k0awzhxwarjpgzj82hlmvrnxlzsd", + "name": "NodeRun", + "description": "Proudly giving back to the community with a portion of our validators rewards using Quick Grants.", + "website": "https://noderun.vip/" + }, + { + "id": "stridevaloper19nktvlnhd7j2tsyt97jyfnv3kdemx8cqx25ng7", + "name": "Everstake", + "description": "Reliable and experienced staking service provider from Ukraine. Visit our website for more details.", + "website": "https://everstake.one/" + }, + { + "id": "stridevaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p9nfwja", + "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": "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", + "description": "Notional Ventures is a leading security auditing consultant, software engineering, and infrastructure provider for the Cosmos blockchain ecosystem", + "website": "https://notional.ventures" + }, + { + "id": "stridevaloper1dae4zycvmyd2qt5td9zzgdjdnwyawp79c5tuec", + "name": "Staking Facilities", + "description": "Secure blockchain ecosystems by staking tokens and participate in the next evolution of the internet!", + "website": "https://stakingfacilities.com/" + }, + { + "id": "stridevaloper1md2j38ls8hg94vjfafu0a2p9htwlkjmhux9e4v", + "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": "stridevaloper1624f0qe76yhnwvlwp3ury2r2xh6cqemmpts8ge", + "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 00000000..a674c639 --- /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 00000000..0a58e4d9 --- /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 00000000..4c023652 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 00000000..c628d2d5 --- /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 00000000..c97aa9c7 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 00000000..ef83e32b --- /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 00000000..4b302730 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 00000000..20383a94 --- /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 00000000..7964957c 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 00000000..a3bc9790 --- /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 00000000..8047edf7 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 00000000..fb0ea936 --- /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 00000000..ec5ee8d0 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 00000000..25987949 --- /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 00000000..f966a927 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 00000000..5f577b25 --- /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 00000000..3f42ed84 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 00000000..930bbb14 --- /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 00000000..6612f805 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 00000000..b1593229 --- /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 00000000..1cd5be80 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 00000000..0d11e1c4 --- /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 00000000..dab585d0 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 new file mode 100644 index 00000000..34261b0b --- /dev/null +++ b/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/info.json @@ -0,0 +1,21 @@ +{ + "name": "USD Coin (Portal from Solana)", + "symbol": "USDCsol", + "type": "SUI", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://portalbridge.com/?targetChain=sui", + "explorer": "https://explorer.sui.io/address/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN", + "status": "active", + "id": "0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::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/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/logo.png b/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/logo.png new file mode 100644 index 00000000..8047edf7 Binary files /dev/null and b/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/logo.png differ diff --git a/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/info.json b/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/info.json new file mode 100644 index 00000000..3e9560aa --- /dev/null +++ b/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tether USD (Portal from Ethereum)", + "symbol": "USDTet", + "type": "SUI", + "decimals": 6, + "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": "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/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/logo.png b/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/logo.png new file mode 100644 index 00000000..98f440a3 Binary files /dev/null and b/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/logo.png differ 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 00000000..20ad5a1d --- /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 00000000..8047edf7 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 00000000..8fec5e4b --- /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 00000000..0878c825 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 new file mode 100644 index 00000000..f0c87d89 --- /dev/null +++ b/blockchains/sui/assets/0xebbf537bc3686be32fe22b498b42715641bbb209267be72236a352e0444cc5df::sui_pepe::SUI_PEPE/info.json @@ -0,0 +1,32 @@ +{ + "name": "SUI PEPE", + "symbol": "SPEPE", + "type": "SUI", + "decimals": 6, + "description": "Pepe is a community based memecoin with one mission: to make memecoins great again. Made to honor the iconic meme we all know and love, Pepe is here to take reign as the most memeable memecoin in existence, fueled purely by memetic power. Pepe is for the people.", + "website": "https://www.pepe.vip/", + "explorer": "https://explorer.sui.io/address/0xebbf537bc3686be32fe22b498b42715641bbb209267be72236a352e0444cc5df::sui_pepe::SUI_PEPE", + "status": "active", + "id": "0xebbf537bc3686be32fe22b498b42715641bbb209267be72236a352e0444cc5df::sui_pepe::SUI_PEPE", + "links": [ + { + "name": "x", + "url": "https://x.com/pepecoineth" + }, + { + "name": "telegram", + "url": "https://t.me/pepecoineth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepe/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pepe" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0xebbf537bc3686be32fe22b498b42715641bbb209267be72236a352e0444cc5df::sui_pepe::SUI_PEPE/logo.png b/blockchains/sui/assets/0xebbf537bc3686be32fe22b498b42715641bbb209267be72236a352e0444cc5df::sui_pepe::SUI_PEPE/logo.png new file mode 100644 index 00000000..90b0d10a Binary files /dev/null and b/blockchains/sui/assets/0xebbf537bc3686be32fe22b498b42715641bbb209267be72236a352e0444cc5df::sui_pepe::SUI_PEPE/logo.png differ 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 00000000..1e4c2b9e --- /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 00000000..0ba92b7b 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 new file mode 100644 index 00000000..09e2264e --- /dev/null +++ b/blockchains/sui/info/info.json @@ -0,0 +1,32 @@ +{ + "name": "Sui", + "website": "https://sui.io/", + "description": "Sui is a boundless platform to build rich and dynamic on-chain assets from gaming to finance.", + "explorer": "https://explorer.sui.io/", + "symbol": "SUI", + "type": "coin", + "decimals": 9, + "status": "active", + "tags": [ + "defi", + "staking-native" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/SuiNetwork" + }, + { + "name": "github", + "url": "https://github.com/MystenLabs/sui" + }, + { + "name": "discord", + "url": "https://discord.com/invite/suiglobal" + }, + { + "name": "coinmarketcap", + "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 new file mode 100644 index 00000000..3808347a Binary files /dev/null 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 00000000..82fe5104 Binary files /dev/null and b/blockchains/sui/info/square_logo.png differ diff --git a/blockchains/sui/validators/assets/0x184fbf9d6c2d2d3f27e27fe3ca2d3b4080bd406221e345e2d36633e638e988e1/logo.png b/blockchains/sui/validators/assets/0x184fbf9d6c2d2d3f27e27fe3ca2d3b4080bd406221e345e2d36633e638e988e1/logo.png new file mode 100644 index 00000000..22f97935 Binary files /dev/null and b/blockchains/sui/validators/assets/0x184fbf9d6c2d2d3f27e27fe3ca2d3b4080bd406221e345e2d36633e638e988e1/logo.png differ diff --git a/blockchains/sui/validators/assets/0x4f9791d5c689306862b4eb9a25914c5433b7dfd5cb4827b461f7dfc813f28a7c/logo.png b/blockchains/sui/validators/assets/0x4f9791d5c689306862b4eb9a25914c5433b7dfd5cb4827b461f7dfc813f28a7c/logo.png new file mode 100644 index 00000000..1db1d333 Binary files /dev/null and b/blockchains/sui/validators/assets/0x4f9791d5c689306862b4eb9a25914c5433b7dfd5cb4827b461f7dfc813f28a7c/logo.png differ diff --git a/blockchains/sui/validators/assets/0x4fffd0005522be4bc029724c7f0f6ed7093a6bf3a09b90e62f61dc15181e1a3e/logo.png b/blockchains/sui/validators/assets/0x4fffd0005522be4bc029724c7f0f6ed7093a6bf3a09b90e62f61dc15181e1a3e/logo.png new file mode 100644 index 00000000..01498cee Binary files /dev/null and b/blockchains/sui/validators/assets/0x4fffd0005522be4bc029724c7f0f6ed7093a6bf3a09b90e62f61dc15181e1a3e/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 00000000..c53de065 Binary files /dev/null and b/blockchains/sui/validators/assets/0x55d2bd7e02c0863914c3af925188c6947e9209b39eb304c630525d69294c3be0/logo.png differ diff --git a/blockchains/sui/validators/assets/0x60ce054d9dc5771fcbeb9a52a1881a97d3092efc8eb29befc3e60281dbe80ca0/logo.png b/blockchains/sui/validators/assets/0x60ce054d9dc5771fcbeb9a52a1881a97d3092efc8eb29befc3e60281dbe80ca0/logo.png new file mode 100644 index 00000000..02bd65ee Binary files /dev/null and b/blockchains/sui/validators/assets/0x60ce054d9dc5771fcbeb9a52a1881a97d3092efc8eb29befc3e60281dbe80ca0/logo.png differ diff --git a/blockchains/sui/validators/assets/0x61953ea72709eed72f4441dd944eec49a11b4acabfc8e04015e89c63be81b6ab/logo.png b/blockchains/sui/validators/assets/0x61953ea72709eed72f4441dd944eec49a11b4acabfc8e04015e89c63be81b6ab/logo.png new file mode 100644 index 00000000..0a827d6b Binary files /dev/null and b/blockchains/sui/validators/assets/0x61953ea72709eed72f4441dd944eec49a11b4acabfc8e04015e89c63be81b6ab/logo.png differ diff --git a/blockchains/sui/validators/assets/0x68cf08c4ef8b0462d8c3879f4e26cc371fbddd844650d0c41a9c3badc8104609/logo.png b/blockchains/sui/validators/assets/0x68cf08c4ef8b0462d8c3879f4e26cc371fbddd844650d0c41a9c3badc8104609/logo.png new file mode 100644 index 00000000..203f6d45 Binary files /dev/null and b/blockchains/sui/validators/assets/0x68cf08c4ef8b0462d8c3879f4e26cc371fbddd844650d0c41a9c3badc8104609/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 00000000..10205271 Binary files /dev/null and b/blockchains/sui/validators/assets/0x885c0345bbf4441f39b98caf2295640a4dc3696ee9e8bc68f2101ca5e6f9bbf1/logo.png differ diff --git a/blockchains/sui/validators/assets/0x91b3d7211dbe057d02e2aa06f1cd678f1408438d494d2e783e0b67a77cca4599/logo.png b/blockchains/sui/validators/assets/0x91b3d7211dbe057d02e2aa06f1cd678f1408438d494d2e783e0b67a77cca4599/logo.png new file mode 100644 index 00000000..1914e999 Binary files /dev/null and b/blockchains/sui/validators/assets/0x91b3d7211dbe057d02e2aa06f1cd678f1408438d494d2e783e0b67a77cca4599/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 00000000..eaf66cb5 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 00000000..0f6305d8 Binary files /dev/null and b/blockchains/sui/validators/assets/0x9c7376a3f903cbe1f467a4edbefb54bb5a2f10886496c591ca955c22f0ae10c9/logo.png differ diff --git a/blockchains/sui/validators/assets/0xad1ca3844353d0c1b86fea2d848fda0c62439168c29e132ef17f9964a19a551f/logo.png b/blockchains/sui/validators/assets/0xad1ca3844353d0c1b86fea2d848fda0c62439168c29e132ef17f9964a19a551f/logo.png new file mode 100644 index 00000000..9c65c6d2 Binary files /dev/null and b/blockchains/sui/validators/assets/0xad1ca3844353d0c1b86fea2d848fda0c62439168c29e132ef17f9964a19a551f/logo.png differ diff --git a/blockchains/sui/validators/assets/0xe719405821d7bd32ded86a2aed34f06f3dacd09c91241ec3f34b219ebeddc6f0/logo.png b/blockchains/sui/validators/assets/0xe719405821d7bd32ded86a2aed34f06f3dacd09c91241ec3f34b219ebeddc6f0/logo.png new file mode 100644 index 00000000..5e96ae80 Binary files /dev/null and b/blockchains/sui/validators/assets/0xe719405821d7bd32ded86a2aed34f06f3dacd09c91241ec3f34b219ebeddc6f0/logo.png differ diff --git a/blockchains/sui/validators/assets/0xec73ec4d6b2a9403937b12ca625f7b3124c4459ff4e3caae6cf6376edefb9f3a/logo.png b/blockchains/sui/validators/assets/0xec73ec4d6b2a9403937b12ca625f7b3124c4459ff4e3caae6cf6376edefb9f3a/logo.png new file mode 100644 index 00000000..27f6365a Binary files /dev/null and b/blockchains/sui/validators/assets/0xec73ec4d6b2a9403937b12ca625f7b3124c4459ff4e3caae6cf6376edefb9f3a/logo.png differ diff --git a/blockchains/sui/validators/list.json b/blockchains/sui/validators/list.json new file mode 100644 index 00000000..4f252048 --- /dev/null +++ b/blockchains/sui/validators/list.json @@ -0,0 +1,86 @@ +[ + { + "id": "0x61953ea72709eed72f4441dd944eec49a11b4acabfc8e04015e89c63be81b6ab", + "name": "Staketab", + "description": "Staketab is engaged in professional validation in various blockchain networks. We develop fast and high-quality explorers and other ecosystem tools.", + "website": "https://staketab.com/" + }, + { + "id": "0x184fbf9d6c2d2d3f27e27fe3ca2d3b4080bd406221e345e2d36633e638e988e1", + "name": "Cosmostation", + "description": "Intelligent crypto infrastructure. Earn with Cosmostation.", + "website": "https://www.cosmostation.io/" + }, + { + "id": "0xad1ca3844353d0c1b86fea2d848fda0c62439168c29e132ef17f9964a19a551f", + "name": "TestnetPride", + "description": "TestnetPride is a staking provider for different Proof of Stake blockchains. We provide a secure service for our community to put their crypto to work", + "website": "http://testnet-pride.com/" + }, + { + "id": "0x4fffd0005522be4bc029724c7f0f6ed7093a6bf3a09b90e62f61dc15181e1a3e", + "name": "Mysten-1", + "description": "Creators of SUI", + "website": "https://mystenlabs.com/" + }, + { + "id": "0xec73ec4d6b2a9403937b12ca625f7b3124c4459ff4e3caae6cf6376edefb9f3a", + "name": "Nodes.Guru", + "description": "Guru of non-custodial staking. Professional node running, the best uptime and 24/7 customer support.", + "website": "https://nodes.guru/" + }, + { + "id": "0x4f9791d5c689306862b4eb9a25914c5433b7dfd5cb4827b461f7dfc813f28a7c", + "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.", + "website": "https://citadel.one/about" + }, + { + "id": "0xe719405821d7bd32ded86a2aed34f06f3dacd09c91241ec3f34b219ebeddc6f0", + "name": "mrgn", + "description": "mrgn research is a proprietary trading firm solving DeFi's liquidity problems", + "website": "https://www.mrgn.ch/" + }, + { + "id": "0x91b3d7211dbe057d02e2aa06f1cd678f1408438d494d2e783e0b67a77cca4599", + "name": "Chainbase", + "description": "The all-in-one data infra for Web3 — Indexing, transforming, and Large-scale utilization of on-chain data with APIs, Pipeline, and SQL.", + "website": "https://chainbase.com/" + }, + { + "id": "0x60ce054d9dc5771fcbeb9a52a1881a97d3092efc8eb29befc3e60281dbe80ca0", + "name": "GalaxyDigital", + "description": "Galaxy is a digital asset and blockchain leader helping institutions, startups, and qualified individuals shape a changing economy.", + "website": "https://www.galaxy.com/" + }, + { + "id": "0x68cf08c4ef8b0462d8c3879f4e26cc371fbddd844650d0c41a9c3badc8104609", + "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/" + } +] diff --git a/blockchains/syscoin/info/info.json b/blockchains/syscoin/info/info.json new file mode 100644 index 00000000..01caf2ef --- /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 00000000..c10e6dbc 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 00000000..4cb9b817 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 new file mode 100644 index 00000000..cacc8490 --- /dev/null +++ b/blockchains/teritori/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Teritori", + "type": "coin", + "symbol": "TORI", + "decimals": 6, + "website": "https://teritori.com/", + "description": "The multi-chain SuperdApp for communities.", + "explorer": "https://www.mintscan.io/teritori", + "status": "active", + "rpc_url": "https://teritori-rpc.polkachu.com", + "denom": "utori", + "lcd_url": "https://teritori-api.polkachu.com", + "hrp": "tori", + "fee_rate": "0.25", + "links": [ + { + "name": "medium", + "url": "https://medium.com/teritori" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/teritori/" + }, + { + "name": "x", + "url": "https://x.com/TeritoriNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/teritori/info/logo.png b/blockchains/teritori/info/logo.png new file mode 100644 index 00000000..63fedfa8 Binary files /dev/null and b/blockchains/teritori/info/logo.png differ diff --git a/blockchains/teritori/info/square_logo.png b/blockchains/teritori/info/square_logo.png new file mode 100644 index 00000000..793f7b4a 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 00000000..9b28ec00 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 00000000..c2cb86a4 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 00000000..02916372 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 00000000..988c66c4 --- /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/terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym/info.json b/blockchains/terra/assets/terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym/info.json new file mode 100644 index 00000000..9a2e8b15 --- /dev/null +++ b/blockchains/terra/assets/terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym/info.json @@ -0,0 +1,14 @@ +{ + "name": "Chainlink (Portal)", + "type": "CW20", + "symbol": "LINK", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://chain.link/", + "explorer": "https://finder.terra.money/mainnet/address/terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym", + "status": "active", + "id": "terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym/logo.png b/blockchains/terra/assets/terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym/logo.png new file mode 100644 index 00000000..bb40954f Binary files /dev/null and b/blockchains/terra/assets/terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym/logo.png differ diff --git a/blockchains/terra/assets/terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur/info.json b/blockchains/terra/assets/terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur/info.json new file mode 100644 index 00000000..1c1b4f45 --- /dev/null +++ b/blockchains/terra/assets/terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur/info.json @@ -0,0 +1,14 @@ +{ + "name": "Lido wstETH (Portal)", + "type": "CW20", + "symbol": "wstETH", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://lido.fi/", + "explorer": "https://finder.terra.money/mainnet/address/terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur", + "status": "active", + "id": "terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur/logo.png b/blockchains/terra/assets/terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur/logo.png new file mode 100644 index 00000000..2eac49b2 Binary files /dev/null and b/blockchains/terra/assets/terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur/logo.png differ diff --git a/blockchains/terra/assets/terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r/info.json b/blockchains/terra/assets/terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r/info.json new file mode 100644 index 00000000..65fef1a5 --- /dev/null +++ b/blockchains/terra/assets/terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r/info.json @@ -0,0 +1,14 @@ +{ + "name": "Ether (Portal)", + "type": "CW20", + "symbol": "ETH", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://ethereum.org/en/", + "explorer": "https://finder.terra.money/mainnet/address/terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r", + "status": "active", + "id": "terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r/logo.png b/blockchains/terra/assets/terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r/logo.png new file mode 100644 index 00000000..2d99a939 Binary files /dev/null and b/blockchains/terra/assets/terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r/logo.png differ diff --git a/blockchains/terra/assets/terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76/info.json b/blockchains/terra/assets/terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76/info.json new file mode 100644 index 00000000..d17897c7 --- /dev/null +++ b/blockchains/terra/assets/terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76/info.json @@ -0,0 +1,25 @@ +{ + "name": "Anchor Protocol Token", + "symbol": "ANC", + "type": "CW20", + "decimals": 6, + "description": "The Anchor Token (ANC) is Anchor Protocol's governance token. ANC tokens can be deposited to create new governance polls, which can be voted on by users that have staked ANC.", + "website": "https://www.anchorprotocol.com", + "explorer": "https://finder.terra.money/mainnet/address/terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76", + "status": "active", + "id": "terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/9aUYgpKZ9c" + }, + { + "name": "whitepaper", + "url": "https://anchorprotocol.com/docs/anchor-v1.1.pdf" + } + ], + "tags": [ + "staking", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76/logo.png b/blockchains/terra/assets/terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76/logo.png new file mode 100644 index 00000000..641db080 Binary files /dev/null and b/blockchains/terra/assets/terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76/logo.png differ diff --git a/blockchains/terra/assets/terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y/info.json b/blockchains/terra/assets/terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y/info.json new file mode 100644 index 00000000..294f15b7 --- /dev/null +++ b/blockchains/terra/assets/terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y/info.json @@ -0,0 +1,14 @@ +{ + "name": "Magic Internet Money (Portal from Ethereum)", + "type": "CW20", + "symbol": "MIMet", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://abracadabra.money/ ", + "explorer": "https://finder.terra.money/mainnet/address/terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y", + "status": "active", + "id": "terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y/logo.png b/blockchains/terra/assets/terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y/logo.png new file mode 100644 index 00000000..87719f12 Binary files /dev/null and b/blockchains/terra/assets/terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y/logo.png differ diff --git a/blockchains/terra/assets/terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc/info.json b/blockchains/terra/assets/terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc/info.json new file mode 100644 index 00000000..13248b84 --- /dev/null +++ b/blockchains/terra/assets/terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc/info.json @@ -0,0 +1,14 @@ +{ + "name": "Saber (Portal)", + "type": "CW20", + "symbol": "SBR", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://saber.so/", + "explorer": "https://finder.terra.money/mainnet/address/terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc", + "status": "active", + "id": "terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc/logo.png b/blockchains/terra/assets/terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc/logo.png new file mode 100644 index 00000000..20b80f33 Binary files /dev/null and b/blockchains/terra/assets/terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc/logo.png differ diff --git a/blockchains/terra/assets/terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk/info.json b/blockchains/terra/assets/terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk/info.json new file mode 100644 index 00000000..03755111 --- /dev/null +++ b/blockchains/terra/assets/terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk/info.json @@ -0,0 +1,14 @@ +{ + "name": "SOL (Portal)", + "type": "CW20", + "symbol": "SOL", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://solana.com/", + "explorer": "https://finder.terra.money/mainnet/address/terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk", + "status": "active", + "id": "terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk/logo.png b/blockchains/terra/assets/terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk/logo.png new file mode 100644 index 00000000..7a2e75fd Binary files /dev/null and b/blockchains/terra/assets/terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk/logo.png differ diff --git a/blockchains/terra/assets/terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55/info.json b/blockchains/terra/assets/terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55/info.json new file mode 100644 index 00000000..c44ee6d8 --- /dev/null +++ b/blockchains/terra/assets/terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55/info.json @@ -0,0 +1,14 @@ +{ + "name": "Wrapped BTC (Portal)", + "type": "CW20", + "symbol": "WBTC", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.wbtc.network/", + "explorer": "https://finder.terra.money/mainnet/address/terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55", + "status": "active", + "id": "terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55/logo.png b/blockchains/terra/assets/terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55/logo.png new file mode 100644 index 00000000..d603db0e Binary files /dev/null and b/blockchains/terra/assets/terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55/logo.png differ diff --git a/blockchains/terra/assets/terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2/info.json b/blockchains/terra/assets/terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2/info.json new file mode 100644 index 00000000..fa65502f --- /dev/null +++ b/blockchains/terra/assets/terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2/info.json @@ -0,0 +1,14 @@ +{ + "name": "Basic Attention Token (Portal)", + "type": "CW20", + "symbol": "BAT", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://basicattentiontoken.org/", + "explorer": "https://finder.terra.money/mainnet/address/terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2", + "status": "active", + "id": "terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2/logo.png b/blockchains/terra/assets/terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2/logo.png new file mode 100644 index 00000000..331a781c Binary files /dev/null and b/blockchains/terra/assets/terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2/logo.png differ diff --git a/blockchains/terra/assets/terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva/info.json b/blockchains/terra/assets/terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva/info.json new file mode 100644 index 00000000..ea39d228 --- /dev/null +++ b/blockchains/terra/assets/terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from Ethereum)", + "type": "CW20", + "symbol": "USDTet", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://finder.terra.money/mainnet/address/terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva", + "status": "active", + "id": "terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva/logo.png b/blockchains/terra/assets/terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva/logo.png new file mode 100644 index 00000000..46b9968e Binary files /dev/null and b/blockchains/terra/assets/terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva/logo.png differ diff --git a/blockchains/terra/assets/terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8/info.json b/blockchains/terra/assets/terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8/info.json new file mode 100644 index 00000000..772c90e5 --- /dev/null +++ b/blockchains/terra/assets/terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8/info.json @@ -0,0 +1,14 @@ +{ + "name": "Binance Coin (Portal)", + "type": "CW20", + "symbol": "BNB", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.binance.com/", + "explorer": "https://finder.terra.money/mainnet/address/terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8", + "status": "active", + "id": "terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8/logo.png b/blockchains/terra/assets/terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8/logo.png new file mode 100644 index 00000000..24a702d4 Binary files /dev/null and b/blockchains/terra/assets/terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8/logo.png differ diff --git a/blockchains/terra/assets/terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a/info.json b/blockchains/terra/assets/terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a/info.json new file mode 100644 index 00000000..bcb5a6d6 --- /dev/null +++ b/blockchains/terra/assets/terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a/info.json @@ -0,0 +1,14 @@ +{ + "name": "SushiToken (Portal)", + "type": "CW20", + "symbol": "SUSHI", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://sushi.com/", + "explorer": "https://finder.terra.money/mainnet/address/terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a", + "status": "active", + "id": "terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a/logo.png b/blockchains/terra/assets/terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a/logo.png new file mode 100644 index 00000000..1057abaf Binary files /dev/null and b/blockchains/terra/assets/terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a/logo.png differ diff --git a/blockchains/terra/assets/terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c/info.json b/blockchains/terra/assets/terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c/info.json new file mode 100644 index 00000000..202bb3ea --- /dev/null +++ b/blockchains/terra/assets/terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c/info.json @@ -0,0 +1,14 @@ +{ + "name": "Serum (Portal from Solana)", + "type": "CW20", + "symbol": "SRMso", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://projectserum.com/", + "explorer": "https://finder.terra.money/mainnet/address/terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c", + "status": "active", + "id": "terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c/logo.png b/blockchains/terra/assets/terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c/logo.png new file mode 100644 index 00000000..94f79d70 Binary files /dev/null and b/blockchains/terra/assets/terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c/logo.png differ diff --git a/blockchains/terra/assets/terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8/info.json b/blockchains/terra/assets/terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8/info.json new file mode 100644 index 00000000..c9d0f169 --- /dev/null +++ b/blockchains/terra/assets/terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8/info.json @@ -0,0 +1,14 @@ +{ + "name": "MATIC (Portal from Polygon)", + "type": "CW20", + "symbol": "MATICpo", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://polygon.technology/", + "explorer": "https://finder.terra.money/mainnet/address/terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8", + "status": "active", + "id": "terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8/logo.png b/blockchains/terra/assets/terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8/logo.png new file mode 100644 index 00000000..60c97897 Binary files /dev/null and b/blockchains/terra/assets/terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8/logo.png differ diff --git a/blockchains/terra/assets/terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4/info.json b/blockchains/terra/assets/terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4/info.json new file mode 100644 index 00000000..6adb612a --- /dev/null +++ b/blockchains/terra/assets/terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Solana)", + "type": "CW20", + "symbol": "USDCso", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://finder.terra.money/mainnet/address/terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4", + "status": "active", + "id": "terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4/logo.png b/blockchains/terra/assets/terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4/logo.png new file mode 100644 index 00000000..c9ca8307 Binary files /dev/null and b/blockchains/terra/assets/terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4/logo.png differ diff --git a/blockchains/terra/assets/terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx/info.json b/blockchains/terra/assets/terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx/info.json new file mode 100644 index 00000000..c7e645e0 --- /dev/null +++ b/blockchains/terra/assets/terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from Avalanche)", + "type": "CW20", + "symbol": "USDTav", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://finder.terra.money/mainnet/address/terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx", + "status": "active", + "id": "terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx/logo.png b/blockchains/terra/assets/terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx/logo.png new file mode 100644 index 00000000..9e63d735 Binary files /dev/null and b/blockchains/terra/assets/terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx/logo.png differ diff --git a/blockchains/terra/assets/terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3/info.json b/blockchains/terra/assets/terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3/info.json new file mode 100644 index 00000000..f873cf65 --- /dev/null +++ b/blockchains/terra/assets/terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3/info.json @@ -0,0 +1,14 @@ +{ + "name": "Governance OHM (Portal)", + "type": "CW20", + "symbol": "gOHM", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.olympusdao.finance/", + "explorer": "https://finder.terra.money/mainnet/address/terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3", + "status": "active", + "id": "terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3/logo.png b/blockchains/terra/assets/terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3/logo.png new file mode 100644 index 00000000..03789516 Binary files /dev/null and b/blockchains/terra/assets/terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3/logo.png differ diff --git a/blockchains/terra/assets/terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5/info.json b/blockchains/terra/assets/terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5/info.json new file mode 100644 index 00000000..3d22933d --- /dev/null +++ b/blockchains/terra/assets/terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from Solana)", + "type": "CW20", + "symbol": "USDTso", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://finder.terra.money/mainnet/address/terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5", + "status": "active", + "id": "terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5/logo.png b/blockchains/terra/assets/terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5/logo.png new file mode 100644 index 00000000..d52df831 Binary files /dev/null and b/blockchains/terra/assets/terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5/logo.png differ diff --git a/blockchains/terra/assets/terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m/info.json b/blockchains/terra/assets/terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m/info.json new file mode 100644 index 00000000..bde5fec1 --- /dev/null +++ b/blockchains/terra/assets/terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m/info.json @@ -0,0 +1,14 @@ +{ + "name": "AVAX (Portal)", + "type": "CW20", + "symbol": "AVAX", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.avax.network/", + "explorer": "https://finder.terra.money/mainnet/address/terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m", + "status": "active", + "id": "terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m/logo.png b/blockchains/terra/assets/terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m/logo.png new file mode 100644 index 00000000..5cfbd9ab Binary files /dev/null and b/blockchains/terra/assets/terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m/logo.png differ diff --git a/blockchains/terra/assets/terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q/info.json b/blockchains/terra/assets/terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q/info.json new file mode 100644 index 00000000..7447f478 --- /dev/null +++ b/blockchains/terra/assets/terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q/info.json @@ -0,0 +1,14 @@ +{ + "name": "Raydium (Portal)", + "type": "CW20", + "symbol": "RAY", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://raydium.io/", + "explorer": "https://finder.terra.money/mainnet/address/terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q", + "status": "active", + "id": "terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q/logo.png b/blockchains/terra/assets/terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q/logo.png new file mode 100644 index 00000000..cd42f718 Binary files /dev/null and b/blockchains/terra/assets/terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q/logo.png differ diff --git a/blockchains/terra/assets/terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd/info.json b/blockchains/terra/assets/terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd/info.json new file mode 100644 index 00000000..71265680 --- /dev/null +++ b/blockchains/terra/assets/terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd/info.json @@ -0,0 +1,14 @@ +{ + "name": "Shiba Inu (Portal)", + "type": "CW20", + "symbol": "SHIB", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://shibatoken.com/", + "explorer": "https://finder.terra.money/mainnet/address/terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd", + "status": "active", + "id": "terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd/logo.png b/blockchains/terra/assets/terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd/logo.png new file mode 100644 index 00000000..5f4a1d03 Binary files /dev/null and b/blockchains/terra/assets/terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd/logo.png differ diff --git a/blockchains/terra/assets/terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z/info.json b/blockchains/terra/assets/terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z/info.json new file mode 100644 index 00000000..b4a3e5b4 --- /dev/null +++ b/blockchains/terra/assets/terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z/info.json @@ -0,0 +1,14 @@ +{ + "name": "Lido DAO (Portal)", + "type": "CW20", + "symbol": "LDO", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://stake.lido.fi/", + "explorer": "https://finder.terra.money/mainnet/address/terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z", + "status": "active", + "id": "terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z/logo.png b/blockchains/terra/assets/terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z/logo.png new file mode 100644 index 00000000..cc8b90ca Binary files /dev/null and b/blockchains/terra/assets/terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z/logo.png differ diff --git a/blockchains/terra/assets/terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x/info.json b/blockchains/terra/assets/terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x/info.json new file mode 100644 index 00000000..90a7b57a --- /dev/null +++ b/blockchains/terra/assets/terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (PoS) (Portal from Polygon)", + "type": "CW20", + "symbol": "USDCpo", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://finder.terra.money/mainnet/address/terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x", + "status": "active", + "id": "terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x/logo.png b/blockchains/terra/assets/terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x/logo.png new file mode 100644 index 00000000..4e3f74d2 Binary files /dev/null and b/blockchains/terra/assets/terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x/logo.png differ diff --git a/blockchains/terra/assets/terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03/info.json b/blockchains/terra/assets/terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03/info.json new file mode 100644 index 00000000..c2dbb2f8 --- /dev/null +++ b/blockchains/terra/assets/terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03/info.json @@ -0,0 +1,14 @@ +{ + "name": "Orion Money (Portal)", + "type": "CW20", + "symbol": "ORION", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://orion.money/", + "explorer": "https://finder.terra.money/mainnet/address/terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03", + "status": "active", + "id": "terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03/logo.png b/blockchains/terra/assets/terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03/logo.png new file mode 100644 index 00000000..89db97dd Binary files /dev/null and b/blockchains/terra/assets/terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03/logo.png differ diff --git a/blockchains/terra/assets/terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp/info.json b/blockchains/terra/assets/terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp/info.json new file mode 100644 index 00000000..2b389eb1 --- /dev/null +++ b/blockchains/terra/assets/terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp/info.json @@ -0,0 +1,14 @@ +{ + "name": "Audius (Portal)", + "type": "CW20", + "symbol": "AUDIO", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://audius.co/", + "explorer": "https://finder.terra.money/mainnet/address/terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp", + "status": "active", + "id": "terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp/logo.png b/blockchains/terra/assets/terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp/logo.png new file mode 100644 index 00000000..c06d51fc Binary files /dev/null and b/blockchains/terra/assets/terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp/logo.png differ diff --git a/blockchains/terra/assets/terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06/info.json b/blockchains/terra/assets/terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06/info.json new file mode 100644 index 00000000..717a33a8 --- /dev/null +++ b/blockchains/terra/assets/terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Ethereum)", + "type": "CW20", + "symbol": "USDCet", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://finder.terra.money/mainnet/address/terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06", + "status": "active", + "id": "terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06/logo.png b/blockchains/terra/assets/terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06/logo.png new file mode 100644 index 00000000..ed00e43f Binary files /dev/null and b/blockchains/terra/assets/terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06/logo.png differ diff --git a/blockchains/terra/assets/terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w/info.json b/blockchains/terra/assets/terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w/info.json new file mode 100644 index 00000000..f8c9f37f --- /dev/null +++ b/blockchains/terra/assets/terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from Avalanche)", + "type": "CW20", + "symbol": "USDCav", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://finder.terra.money/mainnet/address/terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w", + "status": "active", + "id": "terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w/logo.png b/blockchains/terra/assets/terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w/logo.png new file mode 100644 index 00000000..f448cdfe Binary files /dev/null and b/blockchains/terra/assets/terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w/logo.png differ diff --git a/blockchains/terra/assets/terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y/info.json b/blockchains/terra/assets/terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y/info.json new file mode 100644 index 00000000..47b62fc1 --- /dev/null +++ b/blockchains/terra/assets/terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y/info.json @@ -0,0 +1,14 @@ +{ + "name": "Marinade staked SOL (Portal)", + "type": "CW20", + "symbol": "mSOL", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://marinade.finance/", + "explorer": "https://finder.terra.money/mainnet/address/terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y", + "status": "active", + "id": "terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y/logo.png b/blockchains/terra/assets/terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y/logo.png new file mode 100644 index 00000000..b6c01730 Binary files /dev/null and b/blockchains/terra/assets/terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y/logo.png differ diff --git a/blockchains/terra/assets/terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc/info.json b/blockchains/terra/assets/terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc/info.json new file mode 100644 index 00000000..fc3e5399 --- /dev/null +++ b/blockchains/terra/assets/terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc/info.json @@ -0,0 +1,14 @@ +{ + "name": "Star Atlas (Portal)", + "type": "CW20", + "symbol": "ATLAS", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://staratlas.com", + "explorer": "https://finder.terra.money/mainnet/address/terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc", + "status": "active", + "id": "terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc/logo.png b/blockchains/terra/assets/terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc/logo.png new file mode 100644 index 00000000..8cd9b22a Binary files /dev/null and b/blockchains/terra/assets/terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc/logo.png differ diff --git a/blockchains/terra/assets/terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd/info.json b/blockchains/terra/assets/terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd/info.json new file mode 100644 index 00000000..a74cbdc2 --- /dev/null +++ b/blockchains/terra/assets/terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd/info.json @@ -0,0 +1,14 @@ +{ + "name": "Binance USD (Portal from BSC)", + "type": "CW20", + "symbol": "BUSDbs", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.paxos.com/busd/", + "explorer": "https://finder.terra.money/mainnet/address/terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd", + "status": "active", + "id": "terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd/logo.png b/blockchains/terra/assets/terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd/logo.png new file mode 100644 index 00000000..58b66f7e Binary files /dev/null and b/blockchains/terra/assets/terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd/logo.png differ diff --git a/blockchains/terra/assets/terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz/info.json b/blockchains/terra/assets/terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz/info.json new file mode 100644 index 00000000..f9dbf07c --- /dev/null +++ b/blockchains/terra/assets/terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz/info.json @@ -0,0 +1,14 @@ +{ + "name": "Lido bETH (Portal)", + "type": "CW20", + "symbol": "bETH", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.anchorprotocol.com/", + "explorer": "https://finder.terra.money/mainnet/address/terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz", + "status": "active", + "id": "terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz/logo.png b/blockchains/terra/assets/terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz/logo.png new file mode 100644 index 00000000..9b94a46e Binary files /dev/null and b/blockchains/terra/assets/terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz/logo.png differ diff --git a/blockchains/terra/assets/terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd/info.json b/blockchains/terra/assets/terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd/info.json new file mode 100644 index 00000000..d2944c9d --- /dev/null +++ b/blockchains/terra/assets/terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd/info.json @@ -0,0 +1,14 @@ +{ + "name": "Tether USD (Portal from BSC)", + "type": "CW20", + "symbol": "USDTbs", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://tether.to/", + "explorer": "https://finder.terra.money/mainnet/address/terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd", + "status": "active", + "id": "terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd/logo.png b/blockchains/terra/assets/terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd/logo.png new file mode 100644 index 00000000..49821981 Binary files /dev/null and b/blockchains/terra/assets/terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd/logo.png differ diff --git a/blockchains/terra/assets/terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d/info.json b/blockchains/terra/assets/terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d/info.json new file mode 100644 index 00000000..289a8d4f --- /dev/null +++ b/blockchains/terra/assets/terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d/info.json @@ -0,0 +1,14 @@ +{ + "name": "Lido Staked Ether (Portal)", + "type": "CW20", + "symbol": "stETH", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://lido.fi/", + "explorer": "https://finder.terra.money/mainnet/address/terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d", + "status": "active", + "id": "terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d/logo.png b/blockchains/terra/assets/terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d/logo.png new file mode 100644 index 00000000..423a3c71 Binary files /dev/null and b/blockchains/terra/assets/terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d/logo.png differ diff --git a/blockchains/terra/assets/terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf/info.json b/blockchains/terra/assets/terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf/info.json new file mode 100644 index 00000000..a35efc6f --- /dev/null +++ b/blockchains/terra/assets/terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf/info.json @@ -0,0 +1,14 @@ +{ + "name": "Uniswap (Portal)", + "type": "CW20", + "symbol": "UNI", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://uniswap.org/", + "explorer": "https://finder.terra.money/mainnet/address/terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf", + "status": "active", + "id": "terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf/logo.png b/blockchains/terra/assets/terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf/logo.png new file mode 100644 index 00000000..66cd2421 Binary files /dev/null and b/blockchains/terra/assets/terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf/logo.png differ diff --git a/blockchains/terra/assets/terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av/info.json b/blockchains/terra/assets/terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av/info.json new file mode 100644 index 00000000..665daa6f --- /dev/null +++ b/blockchains/terra/assets/terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av/info.json @@ -0,0 +1,14 @@ +{ + "name": "PancakeSwap Token (Portal)", + "type": "CW20", + "symbol": "CAKE", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://pancakeswap.finance/", + "explorer": "https://finder.terra.money/mainnet/address/terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av", + "status": "active", + "id": "terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av/logo.png b/blockchains/terra/assets/terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av/logo.png new file mode 100644 index 00000000..cb6457e6 Binary files /dev/null and b/blockchains/terra/assets/terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av/logo.png differ diff --git a/blockchains/terra/assets/terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu/info.json b/blockchains/terra/assets/terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu/info.json new file mode 100644 index 00000000..8421d71b --- /dev/null +++ b/blockchains/terra/assets/terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu/info.json @@ -0,0 +1,14 @@ +{ + "name": "USD Coin (Portal from BSC)", + "type": "CW20", + "symbol": "USDCbs", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.circle.com/en/usdc", + "explorer": "https://finder.terra.money/mainnet/address/terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu", + "status": "active", + "id": "terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu/logo.png b/blockchains/terra/assets/terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu/logo.png new file mode 100644 index 00000000..8ec55937 Binary files /dev/null and b/blockchains/terra/assets/terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu/logo.png differ diff --git a/blockchains/terra/assets/terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95/info.json b/blockchains/terra/assets/terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95/info.json new file mode 100644 index 00000000..ea127339 --- /dev/null +++ b/blockchains/terra/assets/terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95/info.json @@ -0,0 +1,14 @@ +{ + "name": "DAI (Portal)", + "type": "CW20", + "symbol": "DAI", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://makerdao.com/", + "explorer": "https://finder.terra.money/mainnet/address/terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95", + "status": "active", + "id": "terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95/logo.png b/blockchains/terra/assets/terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95/logo.png new file mode 100644 index 00000000..6c711d8a Binary files /dev/null and b/blockchains/terra/assets/terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95/logo.png differ diff --git a/blockchains/terra/assets/ukrw/info.json b/blockchains/terra/assets/ukrw/info.json new file mode 100644 index 00000000..cd27a9a5 --- /dev/null +++ b/blockchains/terra/assets/ukrw/info.json @@ -0,0 +1,29 @@ +{ + "name": "TerraClassicKRW", + "website": "https://terra.money", + "description": "TerraKRW is the first decentralized stablecoin that is scalable, yield bearing and interchain.", + "explorer": "https://finder.terra.money/mainnet/address/ukrw", + "type": "TERRA", + "symbol": "KRTC", + "decimals": 6, + "status": "active", + "id": "ukrw", + "links": [ + { + "name": "x", + "url": "https://x.com/TerraMoney" + }, + { + "name": "telegram", + "url": "https://t.me/terra_announcements" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bYfyhUT" + }, + { + "name": "medium", + "url": "https://medium.com/terra-money" + } + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/ukrw/logo.png b/blockchains/terra/assets/ukrw/logo.png new file mode 100644 index 00000000..622d4a2e Binary files /dev/null and b/blockchains/terra/assets/ukrw/logo.png differ diff --git a/blockchains/terra/assets/umnt/info.json b/blockchains/terra/assets/umnt/info.json new file mode 100644 index 00000000..c98e7382 --- /dev/null +++ b/blockchains/terra/assets/umnt/info.json @@ -0,0 +1,29 @@ +{ + "name": "TerraClassicUMNT", + "website": "https://terra.money", + "description": "TerraUMNT is the first decentralized stablecoin that is scalable, yield bearing and interchain.", + "explorer": "https://finder.terra.money/mainnet/address/umnt", + "type": "TERRA", + "symbol": "UMNTC", + "decimals": 6, + "status": "active", + "id": "umnt", + "links": [ + { + "name": "x", + "url": "https://x.com/TerraMoney" + }, + { + "name": "telegram", + "url": "https://t.me/terra_announcements" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bYfyhUT" + }, + { + "name": "medium", + "url": "https://medium.com/terra-money" + } + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/umnt/logo.png b/blockchains/terra/assets/umnt/logo.png new file mode 100644 index 00000000..7a44afe5 Binary files /dev/null and b/blockchains/terra/assets/umnt/logo.png differ diff --git a/blockchains/terra/assets/usdr/info.json b/blockchains/terra/assets/usdr/info.json new file mode 100644 index 00000000..78dd9566 --- /dev/null +++ b/blockchains/terra/assets/usdr/info.json @@ -0,0 +1,29 @@ +{ + "name": "TerraClassicSDT", + "website": "https://terra.money", + "description": "TerraSDT is the first decentralized stablecoin that is scalable, yield bearing and interchain.", + "explorer": "https://finder.terra.money/mainnet/address/usdr", + "type": "TERRA", + "symbol": "SDTC", + "decimals": 6, + "status": "active", + "id": "usdr", + "links": [ + { + "name": "x", + "url": "https://x.com/TerraMoney" + }, + { + "name": "telegram", + "url": "https://t.me/terra_announcements" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bYfyhUT" + }, + { + "name": "medium", + "url": "https://medium.com/terra-money" + } + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/usdr/logo.png b/blockchains/terra/assets/usdr/logo.png new file mode 100644 index 00000000..dbf5e23a Binary files /dev/null and b/blockchains/terra/assets/usdr/logo.png differ diff --git a/blockchains/terra/assets/uusd/info.json b/blockchains/terra/assets/uusd/info.json new file mode 100644 index 00000000..180c91aa --- /dev/null +++ b/blockchains/terra/assets/uusd/info.json @@ -0,0 +1,29 @@ +{ + "name": "TerraClassicUSD", + "website": "https://terra.money", + "description": "TerraUSD is the first decentralized stablecoin that is scalable, yield bearing and interchain.", + "explorer": "https://finder.terra.money/mainnet/address/uusd", + "type": "TERRA", + "symbol": "USTC", + "decimals": 6, + "status": "active", + "id": "uusd", + "links": [ + { + "name": "x", + "url": "https://x.com/TerraMoney" + }, + { + "name": "telegram", + "url": "https://t.me/terra_announcements" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bYfyhUT" + }, + { + "name": "medium", + "url": "https://medium.com/terra-money" + } + ] +} \ No newline at end of file diff --git a/blockchains/terra/assets/uusd/logo.png b/blockchains/terra/assets/uusd/logo.png new file mode 100644 index 00000000..b5de7830 Binary files /dev/null and b/blockchains/terra/assets/uusd/logo.png differ diff --git a/blockchains/terra/info/info.json b/blockchains/terra/info/info.json new file mode 100644 index 00000000..756e148c --- /dev/null +++ b/blockchains/terra/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Terra Classic", + "website": "https://terra.money", + "description": "A price-stable cryptocurrency designed for mass adoption. We are building financial infrastructure for the next generation of decentralized applications.", + "explorer": "https://finder.terra.money", + "research": "https://research.binance.com/en/projects/terra", + "symbol": "LUNC", + "type": "coin", + "decimals": 6, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/terra-project" + }, + { + "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/logo.png b/blockchains/terra/info/logo.png new file mode 100644 index 00000000..8ff4ba43 Binary files /dev/null and b/blockchains/terra/info/logo.png differ diff --git a/blockchains/terra/info/square_logo.png b/blockchains/terra/info/square_logo.png new file mode 100644 index 00000000..06c16e02 Binary files /dev/null and b/blockchains/terra/info/square_logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper108lmrztvc3pc3w774shgvpry4d3lf79k2ummna/logo.png b/blockchains/terra/validators/assets/terravaloper108lmrztvc3pc3w774shgvpry4d3lf79k2ummna/logo.png new file mode 100644 index 00000000..0f6305d8 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper108lmrztvc3pc3w774shgvpry4d3lf79k2ummna/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper120ppepaj2lh5vreadx42wnjjznh55vvktp78wk/logo.png b/blockchains/terra/validators/assets/terravaloper120ppepaj2lh5vreadx42wnjjznh55vvktp78wk/logo.png new file mode 100644 index 00000000..2bd3a1e2 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper120ppepaj2lh5vreadx42wnjjznh55vvktp78wk/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1259cmu5zyklsdkmgstxhwqpe0utfe5hhyty0at/logo.png b/blockchains/terra/validators/assets/terravaloper1259cmu5zyklsdkmgstxhwqpe0utfe5hhyty0at/logo.png new file mode 100644 index 00000000..972b4179 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1259cmu5zyklsdkmgstxhwqpe0utfe5hhyty0at/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper12r8929na0amxfj406zw7vk8jmd03fmzcj9r2gg/logo.png b/blockchains/terra/validators/assets/terravaloper12r8929na0amxfj406zw7vk8jmd03fmzcj9r2gg/logo.png new file mode 100644 index 00000000..c53de065 Binary files /dev/null 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 00000000..8247888d Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper13avdm9rqxpftv3vrkaqaakakgh30909x8c07v3/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper14xjkj5rv72fgqz3h78l883rw0njwhmzce45006/logo.png b/blockchains/terra/validators/assets/terravaloper14xjkj5rv72fgqz3h78l883rw0njwhmzce45006/logo.png new file mode 100644 index 00000000..7377f61b Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper14xjkj5rv72fgqz3h78l883rw0njwhmzce45006/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 00000000..af4630e0 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper15ahd0dg9qwkg5tjmkn7fm6sdrpwa47m50l4zrg/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper16e0s5t7q69elnlchrupryw3h7vu8zk23pe5wh8/logo.png b/blockchains/terra/validators/assets/terravaloper16e0s5t7q69elnlchrupryw3h7vu8zk23pe5wh8/logo.png new file mode 100644 index 00000000..80d398ff Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper16e0s5t7q69elnlchrupryw3h7vu8zk23pe5wh8/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1a9q6jl792qg36cp025ccjtgyf4qxrwzqjkmk5d/logo.png b/blockchains/terra/validators/assets/terravaloper1a9q6jl792qg36cp025ccjtgyf4qxrwzqjkmk5d/logo.png new file mode 100644 index 00000000..c5d2e142 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1a9q6jl792qg36cp025ccjtgyf4qxrwzqjkmk5d/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 00000000..472936ed Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1alpf6snw2d76kkwjv3dp4l7pcl6cn9uyt0tcj9/logo.png b/blockchains/terra/validators/assets/terravaloper1alpf6snw2d76kkwjv3dp4l7pcl6cn9uyt0tcj9/logo.png new file mode 100644 index 00000000..63fe5615 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1alpf6snw2d76kkwjv3dp4l7pcl6cn9uyt0tcj9/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1audgfvmgt0js54p3s8kj3r40uwej6vy2tv6rrw/logo.png b/blockchains/terra/validators/assets/terravaloper1audgfvmgt0js54p3s8kj3r40uwej6vy2tv6rrw/logo.png new file mode 100644 index 00000000..cbd25859 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1audgfvmgt0js54p3s8kj3r40uwej6vy2tv6rrw/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1der0lqp4grpnmpuefhwlj72fzccqmhmwgjh6ys/logo.png b/blockchains/terra/validators/assets/terravaloper1der0lqp4grpnmpuefhwlj72fzccqmhmwgjh6ys/logo.png new file mode 100644 index 00000000..51a327ab Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1der0lqp4grpnmpuefhwlj72fzccqmhmwgjh6ys/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 00000000..c2cb86a4 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1f2t96sz9hnwsqnneux6v28xfgn07pkxjduvwjz/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1fuk24ujq5e7zrj7st2m4wvgczdfchhzm5f2ml0/logo.png b/blockchains/terra/validators/assets/terravaloper1fuk24ujq5e7zrj7st2m4wvgczdfchhzm5f2ml0/logo.png new file mode 100644 index 00000000..70ee36d1 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1fuk24ujq5e7zrj7st2m4wvgczdfchhzm5f2ml0/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1n7pkcal0jkp0ac9r338qp9cm5x6cakfnremtnt/logo.png b/blockchains/terra/validators/assets/terravaloper1n7pkcal0jkp0ac9r338qp9cm5x6cakfnremtnt/logo.png new file mode 100644 index 00000000..9ec4e254 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1n7pkcal0jkp0ac9r338qp9cm5x6cakfnremtnt/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1nwrksgv2vuadma8ygs8rhwffu2ygk4j24w2mku/logo.png b/blockchains/terra/validators/assets/terravaloper1nwrksgv2vuadma8ygs8rhwffu2ygk4j24w2mku/logo.png new file mode 100644 index 00000000..7d9d7432 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1nwrksgv2vuadma8ygs8rhwffu2ygk4j24w2mku/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1ptyzewnns2kn37ewtmv6ppsvhdnmeapvgk6d65/logo.png b/blockchains/terra/validators/assets/terravaloper1ptyzewnns2kn37ewtmv6ppsvhdnmeapvgk6d65/logo.png new file mode 100644 index 00000000..362d6366 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1ptyzewnns2kn37ewtmv6ppsvhdnmeapvgk6d65/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1pu8lpz64erz47eemtkhq9wzwu9st9ehywnlw4q/logo.png b/blockchains/terra/validators/assets/terravaloper1pu8lpz64erz47eemtkhq9wzwu9st9ehywnlw4q/logo.png new file mode 100644 index 00000000..ea2ccf3b Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1pu8lpz64erz47eemtkhq9wzwu9st9ehywnlw4q/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1qrgwphlf9c64m5ys6pzsvy055ud03e4kr7sq8u/logo.png b/blockchains/terra/validators/assets/terravaloper1qrgwphlf9c64m5ys6pzsvy055ud03e4kr7sq8u/logo.png new file mode 100644 index 00000000..5fbc40e4 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1qrgwphlf9c64m5ys6pzsvy055ud03e4kr7sq8u/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wy0tzjx/logo.png b/blockchains/terra/validators/assets/terravaloper1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wy0tzjx/logo.png new file mode 100644 index 00000000..bc06b982 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wy0tzjx/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1sym8gyehrdsm03vdc44rg9sflg8zeuqwfzavhx/logo.png b/blockchains/terra/validators/assets/terravaloper1sym8gyehrdsm03vdc44rg9sflg8zeuqwfzavhx/logo.png new file mode 100644 index 00000000..459f3008 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1sym8gyehrdsm03vdc44rg9sflg8zeuqwfzavhx/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1u7cfwp620pn8tjfth92t5dry3mhd3etc2utr94/logo.png b/blockchains/terra/validators/assets/terravaloper1u7cfwp620pn8tjfth92t5dry3mhd3etc2utr94/logo.png new file mode 100644 index 00000000..e527efa7 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1u7cfwp620pn8tjfth92t5dry3mhd3etc2utr94/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1x4ce4fhqdnu8j7hrp64qmthumsvuhlq8y0kvx4/logo.png b/blockchains/terra/validators/assets/terravaloper1x4ce4fhqdnu8j7hrp64qmthumsvuhlq8y0kvx4/logo.png new file mode 100644 index 00000000..87f2f3b0 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1x4ce4fhqdnu8j7hrp64qmthumsvuhlq8y0kvx4/logo.png differ diff --git a/blockchains/terra/validators/list.json b/blockchains/terra/validators/list.json new file mode 100644 index 00000000..0134485d --- /dev/null +++ b/blockchains/terra/validators/list.json @@ -0,0 +1,146 @@ +[ + { + "id": "terravaloper1ptyzewnns2kn37ewtmv6ppsvhdnmeapvgk6d65", + "name": "WeStaking", + "description": "Secure Staking as a Service", + "website": "https://westaking.io" + }, + { + "id": "terravaloper1audgfvmgt0js54p3s8kj3r40uwej6vy2tv6rrw", + "name": "FreshLUNA", + "description": "FreshLuna runs on bare metal in a SSAE16 SOC2 certified Tier 3 datacenter with geographically distributed private sentry nodes, YubiHSM2 hardware protected keys, with 24/7 monitoring, alerting, and analytics.", + "website": "https://freshluna.com" + }, + { + "id": "terravaloper1nwrksgv2vuadma8ygs8rhwffu2ygk4j24w2mku", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "terravaloper1n7pkcal0jkp0ac9r338qp9cm5x6cakfnremtnt", + "name": "AUDIT.one", + "description": "Validators of today, Auditors of tomorrow", + "website": "https://audit.one/" + }, + { + "id": "terravaloper1259cmu5zyklsdkmgstxhwqpe0utfe5hhyty0at", + "name": "Orion.Money", + "description": "Orion Money is building a portfolio of dApps and infrastructure on and off the Terra network, which will open floodgates of new users and capital into the Terra ecosystem.", + "website": "https://orion.money" + }, + { + "id": "terravaloper1a9q6jl792qg36cp025ccjtgyf4qxrwzqjkmk5d", + "name": "stake.systems", + "description": "building infrastructure to support awesome projects running in the blockchain landscape", + "website": "https://stakesystems.io" + }, + { + "id": "terravaloper1u7cfwp620pn8tjfth92t5dry3mhd3etc2utr94", + "name": "Crypto Plant", + "description": "building infrastructure to support awesome projects running in the blockchain landscape", + "website": "https://terra.money" + }, + { + "id": "terravaloper1x4ce4fhqdnu8j7hrp64qmthumsvuhlq8y0kvx4", + "name": "MissionControl", + "description": "Choose a secure and reliable validator based in Italy, we use sentry architecture to ensure maximum uptime and protection from DDoS attacks.", + "website": "https://mcontrol.ml/" + }, + { + "id": "terravaloper1sym8gyehrdsm03vdc44rg9sflg8zeuqwfzavhx", + "name": "syncnode", + "description": "Syncnode wallet provides safe and easy to use digital asset management wallet, an A to Z staking solution and a fully governance built in module.", + "website": "https://wallet.syncnode.ro/" + }, + { + "id": "terravaloper1alpf6snw2d76kkwjv3dp4l7pcl6cn9uyt0tcj9", + "name": "Smart Stake", + "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", + "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": "terravaloper120ppepaj2lh5vreadx42wnjjznh55vvktp78wk", + "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" + }, + { + "id": "terravaloper1pu8lpz64erz47eemtkhq9wzwu9st9ehywnlw4q", + "name": "1% MAX fee & 100% UPTIME", + "description": "We are a stable validator with the most favorable conditions. Our commission is 1% maximum and 100% uptime. We work for you, and we prove it in practice! You can check our real uptime here: https://terra-classic.aurastake.com/", + "website": "https://t.me/MAX_fee1" + }, + { + "id": "terravaloper1qrgwphlf9c64m5ys6pzsvy055ud03e4kr7sq8u", + "name": "lunc_nymph", + "description": "Safeguard #lunc with world-class infrastructure!", + "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://x.com/ClassyCrypto_" + }, + { + "id": "terravaloper12r8929na0amxfj406zw7vk8jmd03fmzcj9r2gg", + "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", + "name": "lunc-validator ⚡️ High Availability Server +Auto-compound", + "description": "Blockchain Reliability Validator Node +Burn Support. Auto-compound your rewards through https://restake.app/terra for greater yield.", + "website": "lunc-validator.com" + }, + { + "id": "terravaloper1fuk24ujq5e7zrj7st2m4wvgczdfchhzm5f2ml0", + "name": "Atomic Nodes", + "description": "Atomic Nodes is a multi chain staking operator, trusted by over 200,000 delegators since 2019.", + "website": "https://atomicnodes.com" + }, + { + "id": "terravaloper16e0s5t7q69elnlchrupryw3h7vu8zk23pe5wh8", + "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 new file mode 100644 index 00000000..edff5a26 --- /dev/null +++ b/blockchains/terrav2/info/info.json @@ -0,0 +1,25 @@ +{ + "name": "Terra", + "website": "https://terra.money", + "description": "A price-stable cryptocurrency designed for mass adoption. We are building financial infrastructure for the next generation of decentralized applications.", + "explorer": "https://finder.terra.money", + "research": "https://research.binance.com/en/projects/terra", + "symbol": "LUNA", + "type": "coin", + "decimals": 6, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/terra-project" + }, + { + "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/terrav2/info/logo.png b/blockchains/terrav2/info/logo.png new file mode 100644 index 00000000..d104f691 Binary files /dev/null and b/blockchains/terrav2/info/logo.png differ diff --git a/blockchains/terrav2/info/square_logo.png b/blockchains/terrav2/info/square_logo.png new file mode 100644 index 00000000..c3431233 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 00000000..10205271 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 00000000..0f6305d8 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 00000000..c53de065 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 00000000..4b098137 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 00000000..0888af01 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 00000000..9b28ec00 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 00000000..c2cb86a4 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 00000000..87ecfa16 --- /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 00000000..c41372aa --- /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 00000000..f460a82e 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 00000000..66bb5abe --- /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 00000000..b5fb248e 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 00000000..e8d36f10 --- /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 00000000..025371c3 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 00000000..40d4d451 --- /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 00000000..36a805dc 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 new file mode 100644 index 00000000..21526b3d --- /dev/null +++ b/blockchains/tezos/info/info.json @@ -0,0 +1,32 @@ +{ + "name": "Tezos", + "website": "https://tezos.com/", + "description": "Tezos is a smart contract platform that uses blockchain voting to be self-governing by its token holders. Also, the platform aims to boost the security of smart contracts.", + "explorer": "https://tezos.id", + "research": "https://research.binance.com/en/projects/tezos", + "symbol": "XTZ", + "type": "coin", + "decimals": 6, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "source_code", + "url": "https://gitlab.com/tezos/tezos" + }, + { + "name": "x", + "url": "https://x.com/tezos" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/tezos" + }, + { + "name": "whitepaper", + "url": "https://www.tezos.com/static/papers/white_paper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/tezos/info/logo.png b/blockchains/tezos/info/logo.png new file mode 100644 index 00000000..a3d1ea93 Binary files /dev/null and b/blockchains/tezos/info/logo.png differ diff --git a/blockchains/tezos/info/square_logo.png b/blockchains/tezos/info/square_logo.png new file mode 100644 index 00000000..e8b8b1ce Binary files /dev/null and b/blockchains/tezos/info/square_logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1LH4L6XYT2JNPhvWYC4Zq3XEiGgEwzNRvo/logo.png b/blockchains/tezos/validators/assets/tz1LH4L6XYT2JNPhvWYC4Zq3XEiGgEwzNRvo/logo.png new file mode 100644 index 00000000..95078b56 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1LH4L6XYT2JNPhvWYC4Zq3XEiGgEwzNRvo/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1LLNkQK4UQV6QcFShiXJ2vT2ELw449MzAA/logo.png b/blockchains/tezos/validators/assets/tz1LLNkQK4UQV6QcFShiXJ2vT2ELw449MzAA/logo.png new file mode 100644 index 00000000..30dd765d Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1LLNkQK4UQV6QcFShiXJ2vT2ELw449MzAA/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1Ldzz6k1BHdhuKvAtMRX7h5kJSMHESMHLC/logo.png b/blockchains/tezos/validators/assets/tz1Ldzz6k1BHdhuKvAtMRX7h5kJSMHESMHLC/logo.png new file mode 100644 index 00000000..58c8318b Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1Ldzz6k1BHdhuKvAtMRX7h5kJSMHESMHLC/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1Lhf4J9Qxoe3DZ2nfe8FGDnvVj7oKjnMY6/logo.png b/blockchains/tezos/validators/assets/tz1Lhf4J9Qxoe3DZ2nfe8FGDnvVj7oKjnMY6/logo.png new file mode 100644 index 00000000..8f9a5477 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1Lhf4J9Qxoe3DZ2nfe8FGDnvVj7oKjnMY6/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1MXFrtZoaXckE41bjUCSjAjAap3AFDSr3N/logo.png b/blockchains/tezos/validators/assets/tz1MXFrtZoaXckE41bjUCSjAjAap3AFDSr3N/logo.png new file mode 100644 index 00000000..e88788d8 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1MXFrtZoaXckE41bjUCSjAjAap3AFDSr3N/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1NEKxGEHsFufk87CVZcrqWu8o22qh46GK6/logo.png b/blockchains/tezos/validators/assets/tz1NEKxGEHsFufk87CVZcrqWu8o22qh46GK6/logo.png new file mode 100644 index 00000000..8ee4942f Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1NEKxGEHsFufk87CVZcrqWu8o22qh46GK6/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1NMNQYrYrfNpmUqQrMhJypf6ovnaDZhJHM/logo.png b/blockchains/tezos/validators/assets/tz1NMNQYrYrfNpmUqQrMhJypf6ovnaDZhJHM/logo.png new file mode 100644 index 00000000..025cc459 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1NMNQYrYrfNpmUqQrMhJypf6ovnaDZhJHM/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1NortRftucvAkD1J58L32EhSVrQEWJCEnB/logo.png b/blockchains/tezos/validators/assets/tz1NortRftucvAkD1J58L32EhSVrQEWJCEnB/logo.png new file mode 100644 index 00000000..9386e828 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1NortRftucvAkD1J58L32EhSVrQEWJCEnB/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1P2Po7YM526ughEsRbY4oR9zaUPDZjxFrb/logo.png b/blockchains/tezos/validators/assets/tz1P2Po7YM526ughEsRbY4oR9zaUPDZjxFrb/logo.png new file mode 100644 index 00000000..366bc2a8 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1P2Po7YM526ughEsRbY4oR9zaUPDZjxFrb/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1Pwgj6j55akKCyvTwwr9X4np1RskSXpQY4/logo.png b/blockchains/tezos/validators/assets/tz1Pwgj6j55akKCyvTwwr9X4np1RskSXpQY4/logo.png new file mode 100644 index 00000000..70b4b325 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1Pwgj6j55akKCyvTwwr9X4np1RskSXpQY4/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1QLXqnfN51dkjeghXvKHkJfhvGiM5gK4tc/logo.png b/blockchains/tezos/validators/assets/tz1QLXqnfN51dkjeghXvKHkJfhvGiM5gK4tc/logo.png new file mode 100644 index 00000000..bff8bd2c Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1QLXqnfN51dkjeghXvKHkJfhvGiM5gK4tc/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1RCFbB9GpALpsZtu6J58sb74dm8qe6XBzv/logo.png b/blockchains/tezos/validators/assets/tz1RCFbB9GpALpsZtu6J58sb74dm8qe6XBzv/logo.png new file mode 100644 index 00000000..bda0e742 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1RCFbB9GpALpsZtu6J58sb74dm8qe6XBzv/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1RV1MBbZMR68tacosb7Mwj6LkbPSUS1er1/logo.png b/blockchains/tezos/validators/assets/tz1RV1MBbZMR68tacosb7Mwj6LkbPSUS1er1/logo.png new file mode 100644 index 00000000..656ebb7b Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1RV1MBbZMR68tacosb7Mwj6LkbPSUS1er1/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1STeamwbp68THcny9zk3LsbG3H36DMvbRK/logo.png b/blockchains/tezos/validators/assets/tz1STeamwbp68THcny9zk3LsbG3H36DMvbRK/logo.png new file mode 100644 index 00000000..5bf03958 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1STeamwbp68THcny9zk3LsbG3H36DMvbRK/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1Scdr2HsZiQjc7bHMeBbmDRXYVvdhjJbBh/logo.png b/blockchains/tezos/validators/assets/tz1Scdr2HsZiQjc7bHMeBbmDRXYVvdhjJbBh/logo.png new file mode 100644 index 00000000..75e11de3 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1Scdr2HsZiQjc7bHMeBbmDRXYVvdhjJbBh/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1TDSmoZXwVevLTEvKCTHWpomG76oC9S2fJ/logo.png b/blockchains/tezos/validators/assets/tz1TDSmoZXwVevLTEvKCTHWpomG76oC9S2fJ/logo.png new file mode 100644 index 00000000..517641ab Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1TDSmoZXwVevLTEvKCTHWpomG76oC9S2fJ/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1Tnjaxk6tbAeC2TmMApPh8UsrEVQvhHvx5/logo.png b/blockchains/tezos/validators/assets/tz1Tnjaxk6tbAeC2TmMApPh8UsrEVQvhHvx5/logo.png new file mode 100644 index 00000000..d286b27e Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1Tnjaxk6tbAeC2TmMApPh8UsrEVQvhHvx5/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1V3yg82mcrPJbegqVCPn6bC8w1CSTRp3f8/logo.png b/blockchains/tezos/validators/assets/tz1V3yg82mcrPJbegqVCPn6bC8w1CSTRp3f8/logo.png new file mode 100644 index 00000000..7b3b3285 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1V3yg82mcrPJbegqVCPn6bC8w1CSTRp3f8/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1Vyuu4EJ5Nym4JcrfRLnp3hpaq1DSEp1Ke/logo.png b/blockchains/tezos/validators/assets/tz1Vyuu4EJ5Nym4JcrfRLnp3hpaq1DSEp1Ke/logo.png new file mode 100644 index 00000000..7d9d7432 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1Vyuu4EJ5Nym4JcrfRLnp3hpaq1DSEp1Ke/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1WCd2jm4uSt4vntk4vSuUWoZQGhLcDuR9q/logo.png b/blockchains/tezos/validators/assets/tz1WCd2jm4uSt4vntk4vSuUWoZQGhLcDuR9q/logo.png new file mode 100644 index 00000000..460324f2 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1WCd2jm4uSt4vntk4vSuUWoZQGhLcDuR9q/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1WctSwL49BZtdWAQ75NY6vr4xsAx6oKdah/logo.png b/blockchains/tezos/validators/assets/tz1WctSwL49BZtdWAQ75NY6vr4xsAx6oKdah/logo.png new file mode 100644 index 00000000..a0395440 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1WctSwL49BZtdWAQ75NY6vr4xsAx6oKdah/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1WpeqFaBG9Jm73Dmgqamy8eF8NWLz9JCoY/logo.png b/blockchains/tezos/validators/assets/tz1WpeqFaBG9Jm73Dmgqamy8eF8NWLz9JCoY/logo.png new file mode 100644 index 00000000..8e6b7c60 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1WpeqFaBG9Jm73Dmgqamy8eF8NWLz9JCoY/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1XXayQohB8XRXN7kMoHbf2NFwNiH3oMRQQ/logo.png b/blockchains/tezos/validators/assets/tz1XXayQohB8XRXN7kMoHbf2NFwNiH3oMRQQ/logo.png new file mode 100644 index 00000000..25d43bc3 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1XXayQohB8XRXN7kMoHbf2NFwNiH3oMRQQ/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1Xek93iSXXckyQ6aYLVS5Rr2tge2en7ZxS/logo.png b/blockchains/tezos/validators/assets/tz1Xek93iSXXckyQ6aYLVS5Rr2tge2en7ZxS/logo.png new file mode 100644 index 00000000..4bc86976 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1Xek93iSXXckyQ6aYLVS5Rr2tge2en7ZxS/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1YiuvpfeVAHbnU8akcWErNfQGFHNQ7F45z/logo.png b/blockchains/tezos/validators/assets/tz1YiuvpfeVAHbnU8akcWErNfQGFHNQ7F45z/logo.png new file mode 100644 index 00000000..3495aed2 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1YiuvpfeVAHbnU8akcWErNfQGFHNQ7F45z/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1Z3KCf8CLGAYfvVWPEr562jDDyWkwNF7sT/logo.png b/blockchains/tezos/validators/assets/tz1Z3KCf8CLGAYfvVWPEr562jDDyWkwNF7sT/logo.png new file mode 100644 index 00000000..2caea351 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1Z3KCf8CLGAYfvVWPEr562jDDyWkwNF7sT/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1aDiEJf9ztRrAJEXZfcG3CKimoKsGhwVAi/logo.png b/blockchains/tezos/validators/assets/tz1aDiEJf9ztRrAJEXZfcG3CKimoKsGhwVAi/logo.png new file mode 100644 index 00000000..b4fde51e Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1aDiEJf9ztRrAJEXZfcG3CKimoKsGhwVAi/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1aRoaRhSpRYvFdyvgWLL6TGyRoGF51wDjM/logo.png b/blockchains/tezos/validators/assets/tz1aRoaRhSpRYvFdyvgWLL6TGyRoGF51wDjM/logo.png new file mode 100644 index 00000000..bdb2ba82 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1aRoaRhSpRYvFdyvgWLL6TGyRoGF51wDjM/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1awXW7wuXy21c66vBudMXQVAPgRnqqwgTH/logo.png b/blockchains/tezos/validators/assets/tz1awXW7wuXy21c66vBudMXQVAPgRnqqwgTH/logo.png new file mode 100644 index 00000000..6891376c Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1awXW7wuXy21c66vBudMXQVAPgRnqqwgTH/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1cb8xcmJWcdVU7cNAd93MfEReorvP52P8x/logo.png b/blockchains/tezos/validators/assets/tz1cb8xcmJWcdVU7cNAd93MfEReorvP52P8x/logo.png new file mode 100644 index 00000000..61aaa2bf Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1cb8xcmJWcdVU7cNAd93MfEReorvP52P8x/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1eEnQhbwf6trb8Q8mPb2RaPkNk2rN7BKi8/logo.png b/blockchains/tezos/validators/assets/tz1eEnQhbwf6trb8Q8mPb2RaPkNk2rN7BKi8/logo.png new file mode 100644 index 00000000..24bf4751 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1eEnQhbwf6trb8Q8mPb2RaPkNk2rN7BKi8/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1hAYfexyzPGG6RhZZMpDvAHifubsbb6kgn/logo.png b/blockchains/tezos/validators/assets/tz1hAYfexyzPGG6RhZZMpDvAHifubsbb6kgn/logo.png new file mode 100644 index 00000000..abcfc329 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1hAYfexyzPGG6RhZZMpDvAHifubsbb6kgn/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz2FCNBrERXtaTtNX6iimR1UJ5JSDxvdHM93/logo.png b/blockchains/tezos/validators/assets/tz2FCNBrERXtaTtNX6iimR1UJ5JSDxvdHM93/logo.png new file mode 100644 index 00000000..a759be89 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz2FCNBrERXtaTtNX6iimR1UJ5JSDxvdHM93/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz3QCNyySViKHmeSr45kzDxzchys7NiXCWoa/logo.png b/blockchains/tezos/validators/assets/tz3QCNyySViKHmeSr45kzDxzchys7NiXCWoa/logo.png new file mode 100644 index 00000000..311a42fa Binary files /dev/null and b/blockchains/tezos/validators/assets/tz3QCNyySViKHmeSr45kzDxzchys7NiXCWoa/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz3adcvQaKXTCg12zbninqo3q8ptKKtDFTLv/logo.png b/blockchains/tezos/validators/assets/tz3adcvQaKXTCg12zbninqo3q8ptKKtDFTLv/logo.png new file mode 100644 index 00000000..39941e3e Binary files /dev/null and b/blockchains/tezos/validators/assets/tz3adcvQaKXTCg12zbninqo3q8ptKKtDFTLv/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz3e75hU4EhDU3ukyJueh5v6UvEHzGwkg3yC/logo.png b/blockchains/tezos/validators/assets/tz3e75hU4EhDU3ukyJueh5v6UvEHzGwkg3yC/logo.png new file mode 100644 index 00000000..57628070 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz3e75hU4EhDU3ukyJueh5v6UvEHzGwkg3yC/logo.png differ diff --git a/blockchains/tezos/validators/list.json b/blockchains/tezos/validators/list.json new file mode 100644 index 00000000..e68c769e --- /dev/null +++ b/blockchains/tezos/validators/list.json @@ -0,0 +1,520 @@ +[ + { + "id": "tz1hAYfexyzPGG6RhZZMpDvAHifubsbb6kgn", + "name": "Swiss Staking", + "description": "Experienced validator based in Switzerland. We offer a highly secure and stable staking infrastructure.", + "website": "https://swiss-staking.ch", + "payout": { + "commission": 10, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 100 + } + }, + { + "id": "tz1NMNQYrYrfNpmUqQrMhJypf6ovnaDZhJHM", + "name": "Smart Node", + "description": "SmartNode is a Staking Service Provider aimed at giving anyone the opportunity to grow their crypto assets", + "website": "https://smart-node.com", + "payout": { + "commission": 10, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 1 + } + }, + { + "id": "tz3QCNyySViKHmeSr45kzDxzchys7NiXCWoa", + "name": "Proof of Bake", + "description": "The world's best Tezos baking service", + "website": "https://proofofbake.com", + "payout": { + "commission": 8, + "payoutDelay": 1, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 100 + } + }, + { + "id": "tz1Vyuu4EJ5Nym4JcrfRLnp3hpaq1DSEp1Ke", + "name": "Stakin", + "description": "Your Trusted Crypto Rewards", + "website": "https://stakin.com", + "payout": { + "commission": 10, + "payoutDelay": 1, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 20 + } + }, + { + "id": "tz3e75hU4EhDU3ukyJueh5v6UvEHzGwkg3yC", + "name": "At James Bakery", + "description": "We were the first bakery to pay the frozen rewards in advance. Our offer is built with the sole aim of giving you peace of mind and tranquillity. Quality at heart. Welcome to At James Bakery :)", + "website": "https://atjames.io", + "payout": { + "commission": 12, + "payoutDelay": 1, + "payoutPeriod": 5 + }, + "staking": { + "minDelegation": 1000 + } + }, + { + "id": "tz1Pwgj6j55akKCyvTwwr9X4np1RskSXpQY4", + "name": "Validators.com", + "description": "Scandinavian based staking service. Get even lower fees with signup.", + "website": "https://validators.com", + "payout": { + "commission": 30, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + }, + "status": { + "disabled": true, + "note": "According to Baking Bad API, baker is not active, current status closed, see: https://api.baking-bad.org/v2/bakers/tz1Pwgj6j55akKCyvTwwr9X4np1RskSXpQY4" + } + }, + { + "id": "tz3adcvQaKXTCg12zbninqo3q8ptKKtDFTLv", + "name": "Tezzigator", + "description": "HSM Baking - When Tezzigator earns, YOU earn.", + "website": "https://tezzigator.com", + "payout": { + "commission": 10, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1eEnQhbwf6trb8Q8mPb2RaPkNk2rN7BKi8", + "name": "Cryptium Labs", + "description": "Secure and available validation from the Swiss Alps.", + "website": "https://tezos.cryptium.ch/", + "payout": { + "commission": 10, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1TDSmoZXwVevLTEvKCTHWpomG76oC9S2fJ", + "name": "Tezos Capital Legacy", + "description": "Tezos Capital Legacy is open and accepting new delegations. The service serves over 1500 customers with a high performing, efficient service.", + "website": "https://tezos.capital", + "payout": { + "commission": 15, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1Tnjaxk6tbAeC2TmMApPh8UsrEVQvhHvx5", + "name": "Crypto Delegate", + "description": "CryptoDelegate delegation service is the best alternative to running your own node. The easy way to grow your Tezos stake is to Delegate your XTZ Tezzies.", + "website": "https://cryptodelegate.com", + "payout": { + "commission": 14, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz2FCNBrERXtaTtNX6iimR1UJ5JSDxvdHM93", + "name": "🐠stake.fish", + "description": "Leading validator for Proof of Stake blockchains. Stake your cryptocurrencies with us. We know validating.", + "website": "https://stake.fish/", + "payout": { + "commission": 8, + "payoutDelay": 1, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1WpeqFaBG9Jm73Dmgqamy8eF8NWLz9JCoY", + "name": "Staking Facilities", + "description": "State of the art validator infrastructure. More than $1,000,000 in generated customer rewards. One of the oldest and most profitable bakers. Access your staking dashboard on our website.", + "website": "https://stakingfacilities.com/tezos", + "payout": { + "commission": 12.5, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1awXW7wuXy21c66vBudMXQVAPgRnqqwgTH", + "name": "InfStones", + "description": "World's leading cloud infrastructure and staking as a service provicer for blockchains. Supernodes on EOS, TRON, VeChain, Ontology, LOOM, IOST and many other chains.", + "website": "https://infstones.io", + "payout": { + "commission": 40, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + }, + "status": { + "disabled": true, + "note": "No more capacity: -27287" + } + }, + { + "id": "tz1RCFbB9GpALpsZtu6J58sb74dm8qe6XBzv", + "name": "Staked", + "description": "Staked is the leading staking partner for the smartest investors in crypto, delivering staking rewards securely and reliably. Staked supports the largest number of chains and offers comprehensive reporting for tax & accounting.", + "website": "https://staked.us/", + "payout": { + "commission": 10, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1Xek93iSXXckyQ6aYLVS5Rr2tge2en7ZxS", + "name": "XTZ Delegate", + "description": "You love Tezos and so do we ! Safely earn more by letting XTZ Delegate bake for you.", + "website": "https://xtzdelegate.io/", + "payout": { + "commission": 10, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 20 + } + }, + { + "id": "tz1MXFrtZoaXckE41bjUCSjAjAap3AFDSr3N", + "name": "Everstake Legacy", + "description": "Everstake - Staking Service Platform. Delegate XTZ with Everstake, your trusted staking partner.", + "website": "https://everstake.one/", + "payout": { + "commission": 21, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1aRoaRhSpRYvFdyvgWLL6TGyRoGF51wDjM", + "name": "Everstake", + "description": "Everstake - Staking Service Platform. Delegate XTZ with Everstake, your trusted staking partner.", + "website": "https://everstake.one/", + "payout": { + "commission": 8, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1NortRftucvAkD1J58L32EhSVrQEWJCEnB", + "name": "Bake'n'Rolls", + "description": "Bake'n'Rolls - one of the first Tezos bakery. Our mission is to deliver freshly baked pretzels on every cycle.", + "website": "https://bakenrolls.com/", + "payout": { + "commission": 9, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1Scdr2HsZiQjc7bHMeBbmDRXYVvdhjJbBh", + "name": "Figment Networks", + "description": "Your Trusted Staking Partner: Offering institutional grade staking infrastructure, services & compliance tools for token holders and stake-based blockchains.", + "website": "https://figment.network/networks/tezos", + "payout": { + "commission": 8, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1Ldzz6k1BHdhuKvAtMRX7h5kJSMHESMHLC", + "name": "PayTezos", + "description": "PayTezos is a P2P cryptocurrency exchange, as well as the Tezos delegation service.", + "website": "https://paytezos.com/tezos", + "payout": { + "commission": 10, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 10 + } + }, + { + "id": "tz1NEKxGEHsFufk87CVZcrqWu8o22qh46GK6", + "name": "moneyevery3days.com", + "description": "Money Every 3 Days - Low fees, dependable payouts and active participant.", + "website": "https://moneyevery3days.com", + "payout": { + "commission": 10, + "payoutDelay": 1, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 100 + } + }, + { + "id": "tz1cb8xcmJWcdVU7cNAd93MfEReorvP52P8x", + "name": "Mint Capital", + "description": "We're currently the only non-promoted baker on Baking-Bad Top 10", + "website": "https://mintcapital.tech/", + "payout": { + "commission": 14.99, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1Z3KCf8CLGAYfvVWPEr562jDDyWkwNF7sT", + "name": "Stake Capital DAO | HotStake", + "description": "Trustless Digital Asset Management", + "website": "https://stake.capital", + "payout": { + "commission": 10, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1WCd2jm4uSt4vntk4vSuUWoZQGhLcDuR9q", + "name": "Happy Tezos", + "description": "HappyTezos is your trusted Tezos Baker | Delegation Service based in EU. We have paid out over 600 000 XTZ to our delegators already! Using HSM and secure datacenters in Europe. Welcome on board!", + "website": "https://happytezos.com/", + "payout": { + "commission": 15, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1P2Po7YM526ughEsRbY4oR9zaUPDZjxFrb", + "name": "P2P Validator", + "description": "Secure Non-Custodial Staking", + "website": "https://p2p.org", + "payout": { + "commission": 9.95, + "payoutDelay": 1, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1LH4L6XYT2JNPhvWYC4Zq3XEiGgEwzNRvo", + "name": "Stir", + "description": "Staking as a Service Provider based in Singapore and Japan. Start Earning Staking Rewards. | Improve Blockchain UX and make it accessible for everyone.", + "website": "https://stir.network/", + "payout": { + "commission": 14, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + }, + "status": { + "disabled": true, + "note": "According to Baking Bad API, baker is not active, current status closed, see: https://api.baking-bad.org/v2/bakers/tz1LH4L6XYT2JNPhvWYC4Zq3XEiGgEwzNRvo" + } + }, + { + "id": "tz1RV1MBbZMR68tacosb7Mwj6LkbPSUS1er1", + "name": "Baking Tacos", + "description": "Baking Tacos is a crunchy, delicious, and extremely satisfying Tezos baker. Our 'Awesome' payouts rating and 'AAA' ranking add to our sweet-n-savory flavor.", + "website": "https://bakingtacos.com", + "payout": { + "commission": 8, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1QLXqnfN51dkjeghXvKHkJfhvGiM5gK4tc", + "name": "FreshTEZOS", + "description": "FreshTEZOS, one of the oldest Tezos bakers, runs on bare metal in a SSAE16 SOC2 certified Tier 3 datacenter, geographically distributed private peers, wrapped in 24/7 monitoring, alerting, and analytics.", + "website": "https://freshtezos.com/", + "payout": { + "commission": 14.99, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1V3yg82mcrPJbegqVCPn6bC8w1CSTRp3f8", + "name": "Staking🛒Shop", + "description": "Staking for best PoS blockchains in one place", + "website": "https://stakingshop.live", + "payout": { + "commission": 5.8, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 100 + } + }, + { + "id": "tz1LLNkQK4UQV6QcFShiXJ2vT2ELw449MzAA", + "name": "TezoSteam", + "description": "Your trusted baker, active since cycle 3", + "website": "https://tezosteam.com/", + "payout": { + "commission": 25, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1STeamwbp68THcny9zk3LsbG3H36DMvbRK", + "name": "StakingTeam", + "description": "An historical and trusted baker, from Italy with love.", + "website": "https://stakingteam.com/", + "payout": { + "commission": 9.9, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "freeSpace": 0, + "minDelegation": 0, + "openForDelegation": true + } + }, + { + "id": "tz1Lhf4J9Qxoe3DZ2nfe8FGDnvVj7oKjnMY6", + "name": "Tez Baker", + "description": "We Bake : You Make", + "website": "https://tezbaker.io/", + "payout": { + "commission": 15, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1XXayQohB8XRXN7kMoHbf2NFwNiH3oMRQQ", + "name": "Bit Cat🐱", + "description": "Secure and stable senior Tezos baker", + "website": "https://bitcat365.com", + "payout": { + "commission": 8, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1WctSwL49BZtdWAQ75NY6vr4xsAx6oKdah", + "name": "Tezos Wake n' Bake", + "description": "Our biggest virtue is integry, we are always at your service. Come and bake with us!", + "website": "https://tezoswakenbake.com", + "payout": { + "commission": 5.9, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 500 + } + }, + { + "id": "tz1aDiEJf9ztRrAJEXZfcG3CKimoKsGhwVAi", + "name": "KryptStar", + "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, + "payoutDelay": 6, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + }, + { + "id": "tz1YiuvpfeVAHbnU8akcWErNfQGFHNQ7F45z", + "name": "Smartlink Baker", + "description": "Smartlink Baker provides secure staking services for Tezos delegators", + "website": "https://smartlink.so", + "payout": { + "commission": 5, + "payoutDelay": 1, + "payoutPeriod": 1 + }, + "staking": { + "minDelegation": 0 + } + } +] \ No newline at end of file diff --git a/blockchains/tftm/info/info.json b/blockchains/tftm/info/info.json new file mode 100644 index 00000000..504e6fd7 --- /dev/null +++ b/blockchains/tftm/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Fantom Testnet", + "symbol": "tFTM", + "type": "coin", + "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://testnet.ftmscan.com", + "rpc_url": "https://rpc.testnet.fantom.network", + "status": "active", + "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/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tftm/info/logo.png b/blockchains/tftm/info/logo.png new file mode 100644 index 00000000..4c55ec1d Binary files /dev/null and b/blockchains/tftm/info/logo.png differ diff --git a/blockchains/tftm/info/square_logo.png b/blockchains/tftm/info/square_logo.png new file mode 100644 index 00000000..793f7b4a Binary files /dev/null and b/blockchains/tftm/info/square_logo.png differ diff --git a/blockchains/theta/assets/tfuel/info.json b/blockchains/theta/assets/tfuel/info.json new file mode 100644 index 00000000..8c20a370 --- /dev/null +++ b/blockchains/theta/assets/tfuel/info.json @@ -0,0 +1,11 @@ +{ + "name": "TFuel", + "type": "THETA", + "symbol": "TFUEL", + "decimals": 18, + "website": "https://community.theta.tv/tfuel-on-sliver-faq/?utm_campaign=tfuel", + "description": "Theta Fuel (TFUEL) is one of the two native tokens on the Theta blockchain", + "explorer": "https://explorer.thetatoken.org/", + "status": "active", + "id": "tfuel" +} \ No newline at end of file diff --git a/blockchains/theta/assets/tfuel/logo.png b/blockchains/theta/assets/tfuel/logo.png new file mode 100644 index 00000000..6beebeba Binary files /dev/null and b/blockchains/theta/assets/tfuel/logo.png differ diff --git a/blockchains/theta/info/info.json b/blockchains/theta/info/info.json new file mode 100644 index 00000000..8938611e --- /dev/null +++ b/blockchains/theta/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "THETA", + "website": "https://thetatoken.org", + "description": "Theta is a decentralized video delivery network, powered by users and an innovative new blockchain.", + "explorer": "https://explorer.thetatoken.org", + "research": "https://research.binance.com/en/projects/theta-network", + "symbol": "THETA", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/thetatoken" + }, + { + "name": "x", + "url": "https://x.com/Theta_Network" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/theta_network" + }, + { + "name": "whitepaper", + "url": "https://s3.us-east-2.amazonaws.com/assets.thetatoken.org/Theta-white-paper-latest.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/theta/info/logo.png b/blockchains/theta/info/logo.png new file mode 100644 index 00000000..5ea75316 Binary files /dev/null and b/blockchains/theta/info/logo.png differ diff --git a/blockchains/theta/info/square_logo.png b/blockchains/theta/info/square_logo.png new file mode 100644 index 00000000..1651fd44 Binary files /dev/null and b/blockchains/theta/info/square_logo.png differ diff --git a/blockchains/thorchain/info/info.json b/blockchains/thorchain/info/info.json new file mode 100644 index 00000000..fe1b37a5 --- /dev/null +++ b/blockchains/thorchain/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "THORChain", + "website": "https://thorchain.org", + "description": "THORChain is a decentralized liquidity network that allows users to swap assets across different blockchains.", + "explorer": "https://viewblock.io/thorchain", + "research": "https://docs.thorchain.org", + "symbol": "RUNE", + "type": "coin", + "decimals": 8, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/thorchain/info/logo.png b/blockchains/thorchain/info/logo.png new file mode 100644 index 00000000..fa6136fd Binary files /dev/null and b/blockchains/thorchain/info/logo.png differ diff --git a/blockchains/thorchain/info/square_logo.png b/blockchains/thorchain/info/square_logo.png new file mode 100644 index 00000000..32d4c087 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 new file mode 100644 index 00000000..e99d4531 --- /dev/null +++ b/blockchains/thundertoken/assets/0x0212b1F75503413b01A98158434c4570FB6e808c/info.json @@ -0,0 +1,24 @@ +{ + "name": "TT-HT", + "website": "https://bridge.thundercore.com/", + "description": "Bridged token of HT 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/0x0212b1F75503413b01A98158434c4570FB6e808c", + "type": "TT20", + "symbol": "TT-HT", + "decimals": 18, + "status": "active", + "id": "0x0212b1F75503413b01A98158434c4570FB6e808c", + "links": [ + { + "name": "x", + "url": "https://x.com/ThunderCoreLab" + }, + { + "name": "discord", + "url": "https://discord.com/channels/467102816230440970/468561199790030849" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/thundertoken/assets/0x0212b1F75503413b01A98158434c4570FB6e808c/logo.png b/blockchains/thundertoken/assets/0x0212b1F75503413b01A98158434c4570FB6e808c/logo.png new file mode 100644 index 00000000..99191995 Binary files /dev/null and b/blockchains/thundertoken/assets/0x0212b1F75503413b01A98158434c4570FB6e808c/logo.png differ diff --git a/blockchains/thundertoken/assets/0x050fe1046B546286e2467De8Cb04800479D1FDE3/info.json b/blockchains/thundertoken/assets/0x050fe1046B546286e2467De8Cb04800479D1FDE3/info.json new file mode 100644 index 00000000..db6a77a6 --- /dev/null +++ b/blockchains/thundertoken/assets/0x050fe1046B546286e2467De8Cb04800479D1FDE3/info.json @@ -0,0 +1,12 @@ +{ + "name": "TT-USDT", + "type": "TT20", + "symbol": "TT-USDT", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://viewblock.io/thundercore/address/0x050fe1046B546286e2467De8Cb04800479D1FDE3", + "status": "active", + "id": "0x050fe1046B546286e2467De8Cb04800479D1FDE3", + "links": [] +} \ No newline at end of file diff --git a/blockchains/thundertoken/assets/0x050fe1046B546286e2467De8Cb04800479D1FDE3/logo.png b/blockchains/thundertoken/assets/0x050fe1046B546286e2467De8Cb04800479D1FDE3/logo.png new file mode 100644 index 00000000..c1269f7b Binary files /dev/null and b/blockchains/thundertoken/assets/0x050fe1046B546286e2467De8Cb04800479D1FDE3/logo.png differ diff --git a/blockchains/thundertoken/assets/0x0A733F90D223d47DEa79aBEfF536F10af1068cB0/info.json b/blockchains/thundertoken/assets/0x0A733F90D223d47DEa79aBEfF536F10af1068cB0/info.json new file mode 100644 index 00000000..09e125ba --- /dev/null +++ b/blockchains/thundertoken/assets/0x0A733F90D223d47DEa79aBEfF536F10af1068cB0/info.json @@ -0,0 +1,12 @@ +{ + "name": "RMBT", + "type": "TT20", + "symbol": "RMBT", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://viewblock.io/thundercore/address/0x0A733F90D223d47DEa79aBEfF536F10af1068cB0", + "id": "0x0A733F90D223d47DEa79aBEfF536F10af1068cB0", + "status": "active", + "links": [] +} \ No newline at end of file diff --git a/blockchains/thundertoken/assets/0x0A733F90D223d47DEa79aBEfF536F10af1068cB0/logo.png b/blockchains/thundertoken/assets/0x0A733F90D223d47DEa79aBEfF536F10af1068cB0/logo.png new file mode 100755 index 00000000..e3ea6148 Binary files /dev/null and b/blockchains/thundertoken/assets/0x0A733F90D223d47DEa79aBEfF536F10af1068cB0/logo.png differ diff --git a/blockchains/thundertoken/assets/0x18fB0A62f207A2a082cA60aA78F47a1af4985190/info.json b/blockchains/thundertoken/assets/0x18fB0A62f207A2a082cA60aA78F47a1af4985190/info.json new file mode 100644 index 00000000..bf63490b --- /dev/null +++ b/blockchains/thundertoken/assets/0x18fB0A62f207A2a082cA60aA78F47a1af4985190/info.json @@ -0,0 +1,24 @@ +{ + "name": "TT-WBTC", + "website": "https://bridge.thundercore.com/", + "description": "Bridged token of WBTC 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/0x18fB0A62f207A2a082cA60aA78F47a1af4985190", + "type": "TT20", + "symbol": "TT-WBTC", + "decimals": 8, + "status": "active", + "id": "0x18fB0A62f207A2a082cA60aA78F47a1af4985190", + "links": [ + { + "name": "x", + "url": "https://x.com/ThunderCoreLab" + }, + { + "name": "discord", + "url": "https://discord.com/channels/467102816230440970/468561199790030849" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/thundertoken/assets/0x18fB0A62f207A2a082cA60aA78F47a1af4985190/logo.png b/blockchains/thundertoken/assets/0x18fB0A62f207A2a082cA60aA78F47a1af4985190/logo.png new file mode 100644 index 00000000..b176edcd Binary files /dev/null and b/blockchains/thundertoken/assets/0x18fB0A62f207A2a082cA60aA78F47a1af4985190/logo.png differ diff --git a/blockchains/thundertoken/assets/0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e/info.json b/blockchains/thundertoken/assets/0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e/info.json new file mode 100644 index 00000000..57b16cf0 --- /dev/null +++ b/blockchains/thundertoken/assets/0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e/info.json @@ -0,0 +1,24 @@ +{ + "name": "TT-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", + "type": "TT20", + "symbol": "TT-USDC", + "decimals": 6, + "status": "active", + "id": "0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e", + "links": [ + { + "name": "x", + "url": "https://x.com/ThunderCoreLab" + }, + { + "name": "discord", + "url": "https://discord.com/channels/467102816230440970/468561199790030849" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/thundertoken/assets/0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e/logo.png b/blockchains/thundertoken/assets/0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e/logo.png new file mode 100644 index 00000000..a921e410 Binary files /dev/null and b/blockchains/thundertoken/assets/0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e/logo.png differ diff --git a/blockchains/thundertoken/assets/0x2b31e3b88847f03c1335E99A0d1274A2c72059DE/info.json b/blockchains/thundertoken/assets/0x2b31e3b88847f03c1335E99A0d1274A2c72059DE/info.json new file mode 100644 index 00000000..2cd1f646 --- /dev/null +++ b/blockchains/thundertoken/assets/0x2b31e3b88847f03c1335E99A0d1274A2c72059DE/info.json @@ -0,0 +1,21 @@ +{ + "name": "TT-SAI", + "website": "https://bridge.thundercore.com/", + "description": "Bridged token of SAI 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/0x2b31e3b88847f03c1335E99A0d1274A2c72059DE", + "type": "TT20", + "symbol": "TT-SAI", + "decimals": 18, + "status": "active", + "id": "0x2b31e3b88847f03c1335E99A0d1274A2c72059DE", + "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/thundertoken/assets/0x2b31e3b88847f03c1335E99A0d1274A2c72059DE/logo.png b/blockchains/thundertoken/assets/0x2b31e3b88847f03c1335E99A0d1274A2c72059DE/logo.png new file mode 100644 index 00000000..5813ce32 Binary files /dev/null and b/blockchains/thundertoken/assets/0x2b31e3b88847f03c1335E99A0d1274A2c72059DE/logo.png differ diff --git a/blockchains/thundertoken/assets/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82/info.json b/blockchains/thundertoken/assets/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82/info.json new file mode 100644 index 00000000..c4148121 --- /dev/null +++ b/blockchains/thundertoken/assets/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82/info.json @@ -0,0 +1,24 @@ +{ + "name": "TT-USDT", + "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", + "type": "TT20", + "symbol": "TT-USDT", + "decimals": 6, + "status": "active", + "id": "0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82", + "links": [ + { + "name": "x", + "url": "https://x.com/ThunderCoreLab" + }, + { + "name": "discord", + "url": "https://discord.com/channels/467102816230440970/468561199790030849" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/thundertoken/assets/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82/logo.png b/blockchains/thundertoken/assets/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82/logo.png new file mode 100644 index 00000000..4381a61c Binary files /dev/null and b/blockchains/thundertoken/assets/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82/logo.png differ diff --git a/blockchains/thundertoken/assets/0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077/info.json b/blockchains/thundertoken/assets/0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077/info.json new file mode 100644 index 00000000..9e44f5e0 --- /dev/null +++ b/blockchains/thundertoken/assets/0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077/info.json @@ -0,0 +1,24 @@ +{ + "name": "TT-ETH", + "website": "https://bridge.thundercore.com/", + "description": "Bridged token of ETH 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/0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077", + "type": "TT20", + "symbol": "TT-ETH", + "decimals": 18, + "status": "active", + "id": "0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077", + "links": [ + { + "name": "x", + "url": "https://x.com/ThunderCoreLab" + }, + { + "name": "discord", + "url": "https://discord.com/channels/467102816230440970/468561199790030849" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/thundertoken/assets/0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077/logo.png b/blockchains/thundertoken/assets/0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077/logo.png new file mode 100644 index 00000000..12f97a57 Binary files /dev/null and b/blockchains/thundertoken/assets/0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077/logo.png differ diff --git a/blockchains/thundertoken/assets/0x876e7D048c6151e3D0F93AaBfBf5B7Da605d416F/info.json b/blockchains/thundertoken/assets/0x876e7D048c6151e3D0F93AaBfBf5B7Da605d416F/info.json new file mode 100644 index 00000000..7b70d604 --- /dev/null +++ b/blockchains/thundertoken/assets/0x876e7D048c6151e3D0F93AaBfBf5B7Da605d416F/info.json @@ -0,0 +1,12 @@ +{ + "name": "CXKJ", + "type": "TT20", + "symbol": "CXKJ", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://viewblock.io/thundercore/address/0x876e7D048c6151e3D0F93AaBfBf5B7Da605d416F", + "status": "active", + "id": "0x876e7D048c6151e3D0F93AaBfBf5B7Da605d416F", + "links": [] +} \ No newline at end of file diff --git a/blockchains/thundertoken/assets/0x876e7D048c6151e3D0F93AaBfBf5B7Da605d416F/logo.png b/blockchains/thundertoken/assets/0x876e7D048c6151e3D0F93AaBfBf5B7Da605d416F/logo.png new file mode 100644 index 00000000..c6f15639 Binary files /dev/null and b/blockchains/thundertoken/assets/0x876e7D048c6151e3D0F93AaBfBf5B7Da605d416F/logo.png differ diff --git a/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/info.json b/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/info.json new file mode 100644 index 00000000..b77f6967 --- /dev/null +++ b/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/info.json @@ -0,0 +1,24 @@ +{ + "name": "TT-BNB", + "website": "https://bridge.thundercore.com/bsc/", + "description": "Bridged token of BSC 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/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69", + "type": "TT20", + "symbol": "TT-BNB", + "decimals": 18, + "status": "active", + "id": "0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69", + "links": [ + { + "name": "x", + "url": "https://x.com/ThunderCoreLab" + }, + { + "name": "discord", + "url": "https://discord.com/channels/467102816230440970/468561199790030849" + } + ], + "tags": [ + "wrapper" + ] +} \ No newline at end of file diff --git a/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/logo.png b/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/logo.png new file mode 100644 index 00000000..173e21f0 Binary files /dev/null and b/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/logo.png differ diff --git a/blockchains/thundertoken/assets/0x92B82d80A51D9b280b75C7a3596358B2A67e4859/info.json b/blockchains/thundertoken/assets/0x92B82d80A51D9b280b75C7a3596358B2A67e4859/info.json new file mode 100644 index 00000000..95ba4239 --- /dev/null +++ b/blockchains/thundertoken/assets/0x92B82d80A51D9b280b75C7a3596358B2A67e4859/info.json @@ -0,0 +1,12 @@ +{ + "name": "TTK", + "type": "TT20", + "symbol": "TTK", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://viewblock.io/thundercore/address/0x92B82d80A51D9b280b75C7a3596358B2A67e4859", + "status": "active", + "id": "0x92B82d80A51D9b280b75C7a3596358B2A67e4859", + "links": [] +} \ No newline at end of file diff --git a/blockchains/thundertoken/assets/0x92B82d80A51D9b280b75C7a3596358B2A67e4859/logo.png b/blockchains/thundertoken/assets/0x92B82d80A51D9b280b75C7a3596358B2A67e4859/logo.png new file mode 100644 index 00000000..f9ccd15c Binary files /dev/null and b/blockchains/thundertoken/assets/0x92B82d80A51D9b280b75C7a3596358B2A67e4859/logo.png differ diff --git a/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/info.json b/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/info.json new file mode 100644 index 00000000..31ab368d --- /dev/null +++ b/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/info.json @@ -0,0 +1,24 @@ +{ + "name": "TT-BUSD", + "website": "https://bridge.thundercore.com/bsc/", + "description": "Bridged token of BSC 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/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171", + "type": "TT20", + "symbol": "TT-BUSD", + "decimals": 18, + "status": "active", + "id": "0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171", + "links": [ + { + "name": "x", + "url": "https://x.com/ThunderCoreLab" + }, + { + "name": "discord", + "url": "https://discord.com/channels/467102816230440970/468561199790030849" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/logo.png b/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/logo.png new file mode 100644 index 00000000..f7f1d3b0 Binary files /dev/null and b/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/logo.png differ diff --git a/blockchains/thundertoken/assets/0xDDf952D68ff6aBC03B6Dd06E98DaD8829a1d2bb3/info.json b/blockchains/thundertoken/assets/0xDDf952D68ff6aBC03B6Dd06E98DaD8829a1d2bb3/info.json new file mode 100644 index 00000000..78c4aeab --- /dev/null +++ b/blockchains/thundertoken/assets/0xDDf952D68ff6aBC03B6Dd06E98DaD8829a1d2bb3/info.json @@ -0,0 +1,12 @@ +{ + "name": "Cultural Chain (CCC)", + "type": "TT20", + "symbol": "CCC", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://viewblock.io/thundercore/address/0xDDf952D68ff6aBC03B6Dd06E98DaD8829a1d2bb3", + "status": "active", + "id": "0xDDf952D68ff6aBC03B6Dd06E98DaD8829a1d2bb3", + "links": [] +} \ No newline at end of file diff --git a/blockchains/thundertoken/assets/0xDDf952D68ff6aBC03B6Dd06E98DaD8829a1d2bb3/logo.png b/blockchains/thundertoken/assets/0xDDf952D68ff6aBC03B6Dd06E98DaD8829a1d2bb3/logo.png new file mode 100644 index 00000000..0d96ddbb Binary files /dev/null and b/blockchains/thundertoken/assets/0xDDf952D68ff6aBC03B6Dd06E98DaD8829a1d2bb3/logo.png differ diff --git a/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/info.json b/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/info.json new file mode 100644 index 00000000..2c4e28ca --- /dev/null +++ b/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/info.json @@ -0,0 +1,24 @@ +{ + "name": "TT-HUSD", + "website": "https://bridge.thundercore.com/", + "description": "Bridged token of HUSD 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/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d", + "type": "TT20", + "symbol": "TT-HUSD", + "decimals": 8, + "status": "active", + "id": "0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d", + "links": [ + { + "name": "x", + "url": "https://x.com/ThunderCoreLab" + }, + { + "name": "discord", + "url": "https://discord.com/channels/467102816230440970/468561199790030849" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/logo.png b/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/logo.png new file mode 100644 index 00000000..934ae941 Binary files /dev/null and b/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/logo.png differ diff --git a/blockchains/thundertoken/assets/0xa71A7659E5d1824Bc0F71B96332B06097C8D6287/info.json b/blockchains/thundertoken/assets/0xa71A7659E5d1824Bc0F71B96332B06097C8D6287/info.json new file mode 100644 index 00000000..1ee8e862 --- /dev/null +++ b/blockchains/thundertoken/assets/0xa71A7659E5d1824Bc0F71B96332B06097C8D6287/info.json @@ -0,0 +1,12 @@ +{ + "name": "Emerald (EMD)", + "type": "TT20", + "symbol": "EMD", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://viewblock.io/thundercore/address/0xa71A7659E5d1824Bc0F71B96332B06097C8D6287", + "status": "active", + "id": "0xa71A7659E5d1824Bc0F71B96332B06097C8D6287", + "links": [] +} \ No newline at end of file diff --git a/blockchains/thundertoken/assets/0xa71A7659E5d1824Bc0F71B96332B06097C8D6287/logo.png b/blockchains/thundertoken/assets/0xa71A7659E5d1824Bc0F71B96332B06097C8D6287/logo.png new file mode 100644 index 00000000..7d881c49 Binary files /dev/null and b/blockchains/thundertoken/assets/0xa71A7659E5d1824Bc0F71B96332B06097C8D6287/logo.png differ diff --git a/blockchains/thundertoken/assets/0xeff6f1612d03205BA5E8d26cAc1397bf778ab1AC/info.json b/blockchains/thundertoken/assets/0xeff6f1612d03205BA5E8d26cAc1397bf778ab1AC/info.json new file mode 100644 index 00000000..8b979897 --- /dev/null +++ b/blockchains/thundertoken/assets/0xeff6f1612d03205BA5E8d26cAc1397bf778ab1AC/info.json @@ -0,0 +1,12 @@ +{ + "name": "PALA INT COMM (pala)", + "type": "TT20", + "symbol": "PALA", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://viewblock.io/thundercore/address/0xeff6f1612d03205BA5E8d26cAc1397bf778ab1AC", + "status": "active", + "id": "0xeff6f1612d03205BA5E8d26cAc1397bf778ab1AC", + "links": [] +} \ No newline at end of file diff --git a/blockchains/thundertoken/assets/0xeff6f1612d03205BA5E8d26cAc1397bf778ab1AC/logo.png b/blockchains/thundertoken/assets/0xeff6f1612d03205BA5E8d26cAc1397bf778ab1AC/logo.png new file mode 100644 index 00000000..3f835ab6 Binary files /dev/null and b/blockchains/thundertoken/assets/0xeff6f1612d03205BA5E8d26cAc1397bf778ab1AC/logo.png differ diff --git a/blockchains/thundertoken/info/info.json b/blockchains/thundertoken/info/info.json new file mode 100644 index 00000000..d803b5e6 --- /dev/null +++ b/blockchains/thundertoken/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "ThunderCore (TT)", + "website": "https://thundercore.com", + "description": "ThunderCore is EVM-compatible and claims to have a throughput of 4,000+ TPS, sub-second confirmation times, and low gas costs, with a view towards making DApps easy to deploy and scale.", + "explorer": "https://scan.thundercore.com", + "research": "https://research.binance.com/en/projects/thundercore", + "symbol": "TT", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/thundertoken" + }, + { + "name": "x", + "url": "https://x.com/ThunderCoreLab" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/thundertoken" + }, + { + "name": "whitepaper", + "url": "https://docs.thundercore.com/thunder-whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/thundertoken/info/logo.png b/blockchains/thundertoken/info/logo.png new file mode 100644 index 00000000..c408c0f2 Binary files /dev/null and b/blockchains/thundertoken/info/logo.png differ diff --git a/blockchains/thundertoken/info/square_logo.png b/blockchains/thundertoken/info/square_logo.png new file mode 100644 index 00000000..8c5678ba 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 00000000..a7652e7b --- /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 00000000..38a1dbc3 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 00000000..813b62d7 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 00000000..9b28ec00 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 00000000..a1fb2e98 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 00000000..4b098137 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 00000000..14f73e55 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 00000000..40552024 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 00000000..09ad204a 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 00000000..10205271 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 00000000..962c00c9 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 00000000..0f6305d8 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 00000000..5b10700c --- /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 new file mode 100644 index 00000000..b5a9039f --- /dev/null +++ b/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/info.json @@ -0,0 +1,11 @@ +{ + "name": "PayFrequent EURO", + "symbol": "PEUR", + "type": "TRC21", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tomoscan.io/token/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776", + "status": "abandoned", + "id": "0x01F83cE6636179b54b0CC0C408f9a8bce40ae776" +} \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json b/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json new file mode 100644 index 00000000..83a18476 --- /dev/null +++ b/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json @@ -0,0 +1,11 @@ +{ + "name": "TOMO", + "symbol": "TOMO", + "type": "TRC21", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://tomoscan.io/token/0x17B26400621695c2D8C2D8869f6259E82D7544c4", + "status": "active", + "id": "0x17B26400621695c2D8C2D8869f6259E82D7544c4" +} \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/logo.png b/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/logo.png new file mode 100644 index 00000000..6c20f868 Binary files /dev/null and b/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/logo.png differ diff --git a/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/info.json b/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/info.json new file mode 100644 index 00000000..9720eec7 --- /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 00000000..004cabcc 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 00000000..895a4bc3 --- /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 00000000..516ff8be 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 00000000..ad57ace3 --- /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 00000000..2a0fb194 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 new file mode 100644 index 00000000..770baefa --- /dev/null +++ b/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/info.json @@ -0,0 +1,11 @@ +{ + "name": "PayFrequent", + "symbol": "PayFQ", + "type": "TRC21", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tomoscan.io/token/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84", + "status": "abandoned", + "id": "0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84" +} \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/info.json b/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/info.json new file mode 100644 index 00000000..3ed6a56c --- /dev/null +++ b/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/info.json @@ -0,0 +1,29 @@ +{ + "name": "TABANK", + "type": "TRC21", + "symbol": "TAB", + "decimals": 18, + "website": "https://tabank.org", + "description": "crypto ecosystem that include: e-commerce, social networks, exchanges and crypto wallet, gaming", + "explorer": "https://tomoscan.io/token/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD", + "status": "active", + "id": "0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD", + "links": [ + { + "name": "x", + "url": "https://x.com/OrgTabank" + }, + { + "name": "telegram", + "url": "https://t.me/tabankorg" + }, + { + "name": "github", + "url": "https://github.com/cryptorbank" + }, + { + "name": "facebook", + "url": "https://facebook.com/tabank.org" + } + ] +} \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/logo.png b/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/logo.png new file mode 100644 index 00000000..c59bba5c Binary files /dev/null and b/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/logo.png differ diff --git a/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/info.json b/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/info.json new file mode 100644 index 00000000..68bd663b --- /dev/null +++ b/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/info.json @@ -0,0 +1,11 @@ +{ + "name": "24x7 Crypto", + "symbol": "24x7", + "type": "TRC21", + "decimals": 4, + "description": "-", + "website": "", + "explorer": "https://tomoscan.io/token/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8", + "status": "abandoned", + "id": "0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8" +} \ No newline at end of file diff --git a/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/info.json b/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/info.json new file mode 100644 index 00000000..52526e3f --- /dev/null +++ b/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/info.json @@ -0,0 +1,11 @@ +{ + "name": "PayFrequent USD", + "symbol": "PUSD", + "type": "TRC21", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tomoscan.io/token/0xcE98172f4fC9Ad02da607843A2C211b7834431da", + "status": "abandoned", + "id": "0xcE98172f4fC9Ad02da607843A2C211b7834431da" +} \ No newline at end of file diff --git a/blockchains/tomochain/info/info.json b/blockchains/tomochain/info/info.json new file mode 100644 index 00000000..12b95db1 --- /dev/null +++ b/blockchains/tomochain/info/info.json @@ -0,0 +1,24 @@ +{ + "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", + "symbol": "VIC", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/tomochain" + }, + { + "name": "x", + "url": "https://x.com/BuildOnViction" + }, + { + "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 new file mode 100644 index 00000000..4a9aa96e Binary files /dev/null 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 00000000..1539768a 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 00000000..38991660 --- /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 00000000..93fd95bb 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 00000000..1b7f97b7 --- /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 00000000..37200bdc 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 00000000..bb38018c --- /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 00000000..c9eb9c85 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 00000000..1cf99217 --- /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 00000000..8471bd65 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 00000000..3d2c923e --- /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 00000000..1cd980d9 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 00000000..6adf90fa --- /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 00000000..d6eeb355 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 00000000..f538b564 --- /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 00000000..876ac4cb 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 00000000..d9bf9049 --- /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 00000000..857fe690 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 00000000..2c144bf2 --- /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 00000000..499d05ab 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 00000000..c7775c2e --- /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 00000000..44986ce3 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 00000000..f37074ab --- /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 00000000..74e8233d 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 00000000..50365ac0 --- /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 00000000..ecda101d 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 00000000..8bd5d75f --- /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 00000000..02c91d1f 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 00000000..daf574e6 --- /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 00000000..65198032 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 00000000..7dc54909 --- /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 00000000..2f69bc78 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 00000000..c26a2f90 --- /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 00000000..431a0c1e 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 00000000..301e08fd --- /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 00000000..c5cee244 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 00000000..b909e48f --- /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 00000000..57cb253f 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 00000000..aa3ea84c --- /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 00000000..93f5bdd0 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 00000000..fba929cc --- /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 00000000..67bdfefe 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 00000000..0b7e97c7 --- /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 00000000..6f48f28b 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 00000000..16431a45 --- /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 00000000..2ac7a8d0 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 00000000..f8eb627d --- /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 00000000..d55ca6ed 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 00000000..629c9948 --- /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 00000000..1fbb8275 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 00000000..70a966c5 --- /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 00000000..27b09f47 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 00000000..4143fc36 --- /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 00000000..fb7784c7 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 00000000..3fd0eb8f --- /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 00000000..fb41273d 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 00000000..562da3a2 --- /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 00000000..965e690b 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 00000000..dd508554 --- /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 00000000..a48bf777 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 00000000..d8835890 --- /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 00000000..80eb04ab 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 00000000..461ed14e --- /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 00000000..3d4f06ea 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 00000000..8b14b748 --- /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 00000000..daa81b4a 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 00000000..5a467efb --- /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 00000000..5d99d96e 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 00000000..76f9162b --- /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 00000000..440231cc 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 00000000..d19e8f98 --- /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 00000000..b0b949af 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 00000000..80c0dacd --- /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 00000000..9ae5b5a7 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 00000000..80c662d3 --- /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 00000000..13940d49 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 00000000..c78a44de --- /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 00000000..8bbfdce0 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 00000000..59c17d89 --- /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 00000000..9fd11069 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 00000000..e954ca5d --- /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 00000000..e6a2aff6 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 00000000..601c21f0 --- /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 00000000..ea385e42 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 00000000..e9ea4cb2 --- /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 00000000..fa5ae973 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 00000000..a31f0e04 --- /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 00000000..d40a01d6 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 00000000..5363c5ae --- /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 00000000..0e377daf 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 00000000..26e9a72c --- /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 00000000..fbf97a9b 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 00000000..8ff77a56 --- /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 00000000..134e51a9 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 00000000..7d0e340e --- /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 00000000..91c8cff4 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 00000000..7702d13b --- /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 00000000..0e599ca6 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 00000000..4c0b4081 --- /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 00000000..86532032 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 00000000..7afe245c --- /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 00000000..f8cda855 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 00000000..abd5e734 --- /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 00000000..d985b220 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 00000000..8f90e7aa --- /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 00000000..903b2efe 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 00000000..cb0e5153 --- /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 00000000..1407faec 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 00000000..23315342 --- /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 00000000..8bab713c 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 00000000..35c13216 --- /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 00000000..23943fce 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 00000000..d3e0702b --- /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 00000000..78ee2944 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 00000000..168886b1 --- /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 00000000..408eeb75 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 00000000..428aebef --- /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 00000000..30817f4f 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 00000000..f364f33b --- /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 00000000..83383248 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 00000000..921fde62 --- /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 00000000..b76bd9c2 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 00000000..ffdbcde3 --- /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 00000000..10f49ff4 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 00000000..2d47d482 --- /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 00000000..53c67cfe 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 00000000..08b8b267 --- /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 00000000..3cf61128 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 00000000..285a612e --- /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 00000000..a0ebb65e 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 00000000..b0984a13 --- /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 00000000..962ff406 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 00000000..cedefe3c --- /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 00000000..2b243463 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 00000000..cb4c532f --- /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 00000000..2c922532 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 00000000..86a593ee --- /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 00000000..7ae24f3f 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 00000000..59775a41 --- /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 00000000..a6ab744f 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 00000000..92937a47 --- /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 00000000..d7f49e3c 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 00000000..216ce60d --- /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 00000000..31e77599 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 00000000..59161806 --- /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 00000000..d6ac8110 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 00000000..036b390f --- /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 00000000..40cdc6a0 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 00000000..bca99b79 --- /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 00000000..2530203d 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 00000000..73872b96 --- /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 00000000..6439b1a6 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 00000000..577092be --- /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 00000000..d527902c 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 00000000..c06930c7 --- /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 00000000..439a8081 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 00000000..f2bf3159 --- /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 00000000..1dd358e1 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 00000000..c2ca0341 --- /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 00000000..4e802b83 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 00000000..67435aed --- /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 00000000..4b4b3fec 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 00000000..6b1ebee8 --- /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 00000000..64fc5d8a 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 00000000..50df7335 --- /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 00000000..52e6642b 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 00000000..4378b133 --- /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 00000000..21ed72e7 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 00000000..0a0f5c20 --- /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 00000000..21269313 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 00000000..39863206 --- /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 00000000..956f9aa7 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 00000000..66efbf1f --- /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 00000000..f5edd54d 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 00000000..fc376469 --- /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 00000000..00013a9f 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 00000000..7f997e73 --- /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 00000000..69f51093 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 00000000..417d5c03 --- /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 00000000..81e69fc9 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 00000000..1d1e4db7 --- /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 00000000..20a4cb2a 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 00000000..0101fbc4 --- /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 00000000..4d55f6cf 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 00000000..bb985b5b --- /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 00000000..86fe45a8 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 00000000..7046c6fb --- /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 00000000..462c3ec6 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 00000000..c26d2247 --- /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 00000000..52234341 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 00000000..0dae6a99 --- /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 00000000..4b5abed4 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 00000000..437d2191 --- /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 00000000..9cb31687 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 00000000..424d0922 --- /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 00000000..1951f3b4 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 00000000..b0bce7da --- /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 00000000..0c6d1b72 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 00000000..29f21b9c --- /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 00000000..1407faec 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 00000000..4c7afff9 --- /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 00000000..e967fb23 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 00000000..fe874a9a --- /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 00000000..bb55902a 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 00000000..71c5e1e2 --- /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 00000000..1351af57 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 00000000..e6a747f8 --- /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 00000000..f70cefde 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 00000000..48bee6c9 --- /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 00000000..176ee6a5 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 00000000..426e1691 --- /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 00000000..0be7e154 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 00000000..a1b5c75f --- /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 00000000..38699eab 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 00000000..e895a2dd --- /dev/null +++ b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ", + "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/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 00000000..b076f934 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 00000000..9c8ea93a --- /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 00000000..09666400 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 00000000..68c76b41 --- /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 00000000..303bb2ae 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 00000000..95eb43f3 --- /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 00000000..b06b455f 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 00000000..7beeded2 --- /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 00000000..84ee028f 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 00000000..9a76dd76 --- /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 00000000..d5c48229 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 00000000..a5a80ffd --- /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 00000000..f16bd0ec 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 00000000..342e09f6 --- /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 00000000..857fe690 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 00000000..68ce8d15 --- /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 00000000..34493c55 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 00000000..9cd0073a --- /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 00000000..caac6aa5 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 00000000..b5879afd --- /dev/null +++ b/blockchains/ton/assets/EQCtD2-7qxHhQoNhxri2JSzH-dlmWqKYCDtlEZqRi3-56gd9/info.json @@ -0,0 +1,20 @@ +{ + "name": "Amazon.com 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 00000000..8a519a35 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 00000000..939e21e7 --- /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 00000000..bfb35387 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 00000000..8a04257b --- /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 00000000..05395389 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 00000000..14957cec --- /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 00000000..5846ce5c 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 00000000..600419ff --- /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 00000000..9a747d53 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 00000000..2c1e7174 --- /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 00000000..3ff644e1 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 00000000..b49ffa4b --- /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 00000000..a3e5ad28 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 00000000..172e8b95 --- /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 00000000..31572cfc 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 00000000..bacd42c5 --- /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 00000000..1a228bc8 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 00000000..f351c9dd --- /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 00000000..1d15389d 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 00000000..28f422d2 --- /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 00000000..a0fe8fe2 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 00000000..ab8177c9 --- /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 00000000..dd98dbc6 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 00000000..07588b91 --- /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 00000000..843e880b 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 00000000..bbec3d6f --- /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 00000000..e5513d14 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 00000000..86580c53 --- /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 00000000..d63f9043 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 00000000..80f269fc --- /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 00000000..e18260b4 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 00000000..35d75d05 --- /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 00000000..e9a5e0b9 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 00000000..2d6fe04a --- /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 00000000..9b526ddf 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 00000000..33598d5f --- /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 00000000..97a609cb 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 00000000..53bea10e --- /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 00000000..55050504 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 00000000..faf214ef --- /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 00000000..ba207f79 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 00000000..46a1c765 --- /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 00000000..1e8911af 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 00000000..54fc78d4 --- /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 00000000..ea955b96 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 00000000..bd7f5ebd --- /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 00000000..d89712cd 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 00000000..dbbd47fa --- /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 00000000..b3762830 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 00000000..7cdd4562 --- /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 00000000..74a17d83 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 00000000..b26c1b08 --- /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 00000000..4ec6c0bb 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 00000000..2ce47665 --- /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 00000000..4ddb0ca1 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 00000000..69846922 --- /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 00000000..76b1167d 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 00000000..8e86a0b9 --- /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 00000000..9c631d1e 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 00000000..7b55609f --- /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 00000000..164455bf 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 00000000..c14b66f4 --- /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 00000000..979613ab 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 00000000..50e8c512 --- /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 00000000..b709c063 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 00000000..34989a0c --- /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 00000000..5968d83b 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 00000000..b49bd52d --- /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 00000000..f4dc2048 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 00000000..1fc4ec2c --- /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 00000000..24a17931 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 00000000..6b9ab755 --- /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 00000000..5a63b362 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 00000000..235d677d --- /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 00000000..311e62f3 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 00000000..8d0cb50c --- /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 00000000..b81c0324 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 00000000..cf01f281 --- /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 00000000..bf515810 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 00000000..fafc5602 --- /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 00000000..bc33814d 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 new file mode 100644 index 00000000..2fc94953 --- /dev/null +++ b/blockchains/ton/info/info.json @@ -0,0 +1,48 @@ +{ + "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": "GRAM", + "type": "coin", + "decimals": 9, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/ton-blockchain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/toncoin/" + }, + { + "name": "telegram", + "url": "https://t.me/toncoin" + }, + { + "name": "whitepaper", + "url": "https://ton.org/whitepaper.pdf" + }, + { + "name": "x", + "url": "https://x.com/ton_blockchain" + }, + { + "name": "telegram_news", + "url": "https://t.me/tonblockchain" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-open-network" + }, + { + "name": "docs", + "url": "https://ton.org/docs" + }, + { + "name": "source_code", + "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 new file mode 100644 index 00000000..62f59d9f Binary files /dev/null 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 00000000..1ad4ce5b Binary files /dev/null and b/blockchains/ton/info/square_logo.png differ diff --git a/blockchains/tron/assets/1000001/info.json b/blockchains/tron/assets/1000001/info.json new file mode 100644 index 00000000..47c2e88c --- /dev/null +++ b/blockchains/tron/assets/1000001/info.json @@ -0,0 +1,11 @@ +{ + "name": "SEED", + "symbol": "SEED", + "type": "TRC10", + "decimals": 0, + "description": "Sesameseed is a blochain community that aims to provide fair and transparent representation in delegated governance.", + "website": "https://www.sesameseed.org/", + "explorer": "https://tronscan.io/#/token/1000001", + "status": "active", + "id": "1000001" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000001/logo.png b/blockchains/tron/assets/1000001/logo.png new file mode 100644 index 00000000..880d99ef Binary files /dev/null and b/blockchains/tron/assets/1000001/logo.png differ diff --git a/blockchains/tron/assets/1000010/info.json b/blockchains/tron/assets/1000010/info.json new file mode 100644 index 00000000..a1611a87 --- /dev/null +++ b/blockchains/tron/assets/1000010/info.json @@ -0,0 +1,11 @@ +{ + "name": "CharityCompassionCoin", + "symbol": "CCC", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000010", + "status": "abandoned", + "id": "1000010" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000010/logo.png b/blockchains/tron/assets/1000010/logo.png new file mode 100644 index 00000000..eb223adf Binary files /dev/null and b/blockchains/tron/assets/1000010/logo.png differ diff --git a/blockchains/tron/assets/1000017/info.json b/blockchains/tron/assets/1000017/info.json new file mode 100644 index 00000000..fa1cf9e4 --- /dev/null +++ b/blockchains/tron/assets/1000017/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tarquin", + "symbol": "Tarq", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000017", + "status": "abandoned", + "id": "1000017" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000017/logo.png b/blockchains/tron/assets/1000017/logo.png new file mode 100644 index 00000000..e09e3f4b Binary files /dev/null and b/blockchains/tron/assets/1000017/logo.png differ diff --git a/blockchains/tron/assets/1000018/info.json b/blockchains/tron/assets/1000018/info.json new file mode 100644 index 00000000..81125f4b --- /dev/null +++ b/blockchains/tron/assets/1000018/info.json @@ -0,0 +1,11 @@ +{ + "name": "TWX", + "symbol": "TWX", + "type": "TRC10", + "decimals": 0, + "description": "TronWallet Exchange / Marketplace Token", + "website": "https://www.tronwallet.me/", + "explorer": "https://tronscan.io/#/token/1000018", + "status": "active", + "id": "1000018" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000018/logo.png b/blockchains/tron/assets/1000018/logo.png new file mode 100755 index 00000000..b5b3414a Binary files /dev/null and b/blockchains/tron/assets/1000018/logo.png differ diff --git a/blockchains/tron/assets/1000131/info.json b/blockchains/tron/assets/1000131/info.json new file mode 100644 index 00000000..ce603363 --- /dev/null +++ b/blockchains/tron/assets/1000131/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronEurope", + "symbol": "TRXE", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000131", + "status": "abandoned", + "id": "1000131" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000131/logo.png b/blockchains/tron/assets/1000131/logo.png new file mode 100644 index 00000000..cb031807 Binary files /dev/null and b/blockchains/tron/assets/1000131/logo.png differ diff --git a/blockchains/tron/assets/1000161/info.json b/blockchains/tron/assets/1000161/info.json new file mode 100644 index 00000000..48e8592e --- /dev/null +++ b/blockchains/tron/assets/1000161/info.json @@ -0,0 +1,11 @@ +{ + "name": "WIN", + "symbol": "WIN", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000161", + "status": "abandoned", + "id": "1000161" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000161/logo.png b/blockchains/tron/assets/1000161/logo.png new file mode 100755 index 00000000..4af29f63 Binary files /dev/null and b/blockchains/tron/assets/1000161/logo.png differ diff --git a/blockchains/tron/assets/1000226/info.json b/blockchains/tron/assets/1000226/info.json new file mode 100644 index 00000000..acfa0641 --- /dev/null +++ b/blockchains/tron/assets/1000226/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRONEuropeRewardCoin", + "symbol": "TERC", + "type": "TRC10", + "decimals": 0, + "description": "It is a coin for internal use from Tron Europe which is only rewarded through voting.", + "website": "https://tron-europe.org/", + "explorer": "https://tronscan.io/#/token/1000226", + "status": "active", + "id": "1000226" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000226/logo.png b/blockchains/tron/assets/1000226/logo.png new file mode 100644 index 00000000..cc6df5dc Binary files /dev/null and b/blockchains/tron/assets/1000226/logo.png differ diff --git a/blockchains/tron/assets/1000231/info.json b/blockchains/tron/assets/1000231/info.json new file mode 100644 index 00000000..8e41594c --- /dev/null +++ b/blockchains/tron/assets/1000231/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRONGOLD", + "symbol": "GOLD", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000231", + "status": "abandoned", + "id": "1000231" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000231/logo.png b/blockchains/tron/assets/1000231/logo.png new file mode 100644 index 00000000..73c6cd86 Binary files /dev/null and b/blockchains/tron/assets/1000231/logo.png differ diff --git a/blockchains/tron/assets/1000251/info.json b/blockchains/tron/assets/1000251/info.json new file mode 100644 index 00000000..9ba30d05 --- /dev/null +++ b/blockchains/tron/assets/1000251/info.json @@ -0,0 +1,11 @@ +{ + "name": "CyberTron", + "symbol": "CTRX", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000251", + "status": "abandoned", + "id": "1000251" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000251/logo.png b/blockchains/tron/assets/1000251/logo.png new file mode 100644 index 00000000..237c07a0 Binary files /dev/null and b/blockchains/tron/assets/1000251/logo.png differ diff --git a/blockchains/tron/assets/1000307/info.json b/blockchains/tron/assets/1000307/info.json new file mode 100644 index 00000000..c69a3812 --- /dev/null +++ b/blockchains/tron/assets/1000307/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronLoot", + "symbol": "LOOT", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000307", + "status": "spam", + "id": "1000307" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000307/logo.png b/blockchains/tron/assets/1000307/logo.png new file mode 100644 index 00000000..a90b128a Binary files /dev/null and b/blockchains/tron/assets/1000307/logo.png differ diff --git a/blockchains/tron/assets/1000317/info.json b/blockchains/tron/assets/1000317/info.json new file mode 100644 index 00000000..ab619f43 --- /dev/null +++ b/blockchains/tron/assets/1000317/info.json @@ -0,0 +1,11 @@ +{ + "name": "IGG", + "symbol": "IGG", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000317", + "status": "abandoned", + "id": "1000317" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000317/logo.png b/blockchains/tron/assets/1000317/logo.png new file mode 100755 index 00000000..626194bc Binary files /dev/null and b/blockchains/tron/assets/1000317/logo.png differ diff --git a/blockchains/tron/assets/1000318/info.json b/blockchains/tron/assets/1000318/info.json new file mode 100644 index 00000000..d8731e40 --- /dev/null +++ b/blockchains/tron/assets/1000318/info.json @@ -0,0 +1,11 @@ +{ + "name": "RoboDollar", + "symbol": "RBD", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000318", + "status": "abandoned", + "id": "1000318" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000318/logo.png b/blockchains/tron/assets/1000318/logo.png new file mode 100644 index 00000000..f8bc540d Binary files /dev/null and b/blockchains/tron/assets/1000318/logo.png differ diff --git a/blockchains/tron/assets/1000324/info.json b/blockchains/tron/assets/1000324/info.json new file mode 100644 index 00000000..1a41c196 --- /dev/null +++ b/blockchains/tron/assets/1000324/info.json @@ -0,0 +1,11 @@ +{ + "name": "RoboCoin", + "symbol": "RBC", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000324", + "status": "abandoned", + "id": "1000324" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000324/logo.png b/blockchains/tron/assets/1000324/logo.png new file mode 100644 index 00000000..9da1b300 Binary files /dev/null and b/blockchains/tron/assets/1000324/logo.png differ diff --git a/blockchains/tron/assets/1000375/info.json b/blockchains/tron/assets/1000375/info.json new file mode 100644 index 00000000..8422d663 --- /dev/null +++ b/blockchains/tron/assets/1000375/info.json @@ -0,0 +1,11 @@ +{ + "name": "Salvatio", + "symbol": "SVT", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000375", + "status": "abandoned", + "id": "1000375" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000375/logo.png b/blockchains/tron/assets/1000375/logo.png new file mode 100644 index 00000000..bed00834 Binary files /dev/null and b/blockchains/tron/assets/1000375/logo.png differ diff --git a/blockchains/tron/assets/1000391/info.json b/blockchains/tron/assets/1000391/info.json new file mode 100644 index 00000000..e37b2de6 --- /dev/null +++ b/blockchains/tron/assets/1000391/info.json @@ -0,0 +1,11 @@ +{ + "name": "IBIZALUXURY", + "symbol": "IBZ", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000391", + "status": "abandoned", + "id": "1000391" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000391/logo.png b/blockchains/tron/assets/1000391/logo.png new file mode 100644 index 00000000..d5afb0be Binary files /dev/null and b/blockchains/tron/assets/1000391/logo.png differ diff --git a/blockchains/tron/assets/1000430/info.json b/blockchains/tron/assets/1000430/info.json new file mode 100644 index 00000000..87961c01 --- /dev/null +++ b/blockchains/tron/assets/1000430/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOOK", + "symbol": "WRT", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000430", + "status": "abandoned", + "id": "1000430" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000430/logo.png b/blockchains/tron/assets/1000430/logo.png new file mode 100644 index 00000000..58699bca Binary files /dev/null and b/blockchains/tron/assets/1000430/logo.png differ diff --git a/blockchains/tron/assets/1000451/info.json b/blockchains/tron/assets/1000451/info.json new file mode 100644 index 00000000..41044223 --- /dev/null +++ b/blockchains/tron/assets/1000451/info.json @@ -0,0 +1,11 @@ +{ + "name": "LoveHearts", + "symbol": "LVH", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000451", + "status": "abandoned", + "id": "1000451" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000451/logo.png b/blockchains/tron/assets/1000451/logo.png new file mode 100755 index 00000000..d861b851 Binary files /dev/null and b/blockchains/tron/assets/1000451/logo.png differ diff --git a/blockchains/tron/assets/1000475/info.json b/blockchains/tron/assets/1000475/info.json new file mode 100644 index 00000000..7f57efe7 --- /dev/null +++ b/blockchains/tron/assets/1000475/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronWeeklyJournal", + "symbol": "TRWJ", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000475", + "status": "abandoned", + "id": "1000475" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000475/logo.png b/blockchains/tron/assets/1000475/logo.png new file mode 100644 index 00000000..eaaed13e Binary files /dev/null and b/blockchains/tron/assets/1000475/logo.png differ diff --git a/blockchains/tron/assets/1000554/info.json b/blockchains/tron/assets/1000554/info.json new file mode 100644 index 00000000..a9611d2c --- /dev/null +++ b/blockchains/tron/assets/1000554/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEXCOIN", + "symbol": "XDEX", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000554", + "status": "abandoned", + "id": "1000554" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000554/logo.png b/blockchains/tron/assets/1000554/logo.png new file mode 100644 index 00000000..6a39aa3d Binary files /dev/null and b/blockchains/tron/assets/1000554/logo.png differ diff --git a/blockchains/tron/assets/1000566/info.json b/blockchains/tron/assets/1000566/info.json new file mode 100644 index 00000000..69e27503 --- /dev/null +++ b/blockchains/tron/assets/1000566/info.json @@ -0,0 +1,11 @@ +{ + "name": "SiddhaMedicine", + "symbol": "SMC", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000566", + "status": "abandoned", + "id": "1000566" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000566/logo.png b/blockchains/tron/assets/1000566/logo.png new file mode 100644 index 00000000..b12fa4e5 Binary files /dev/null and b/blockchains/tron/assets/1000566/logo.png differ diff --git a/blockchains/tron/assets/1000577/info.json b/blockchains/tron/assets/1000577/info.json new file mode 100644 index 00000000..142fce0d --- /dev/null +++ b/blockchains/tron/assets/1000577/info.json @@ -0,0 +1,11 @@ +{ + "name": "MegaTron", + "symbol": "MGA", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000577", + "status": "abandoned", + "id": "1000577" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000577/logo.png b/blockchains/tron/assets/1000577/logo.png new file mode 100644 index 00000000..1afbeac2 Binary files /dev/null and b/blockchains/tron/assets/1000577/logo.png differ diff --git a/blockchains/tron/assets/1000641/info.json b/blockchains/tron/assets/1000641/info.json new file mode 100644 index 00000000..17fd38ea --- /dev/null +++ b/blockchains/tron/assets/1000641/info.json @@ -0,0 +1,11 @@ +{ + "name": "SexTronsPartys", + "symbol": "STP", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000641", + "status": "abandoned", + "id": "1000641" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000641/logo.png b/blockchains/tron/assets/1000641/logo.png new file mode 100644 index 00000000..f4123169 Binary files /dev/null and b/blockchains/tron/assets/1000641/logo.png differ diff --git a/blockchains/tron/assets/1000709/info.json b/blockchains/tron/assets/1000709/info.json new file mode 100644 index 00000000..a3e0160b --- /dev/null +++ b/blockchains/tron/assets/1000709/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alivio", + "symbol": "ALIV", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000709", + "status": "abandoned", + "id": "1000709" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000709/logo.png b/blockchains/tron/assets/1000709/logo.png new file mode 100644 index 00000000..128f34a4 Binary files /dev/null and b/blockchains/tron/assets/1000709/logo.png differ diff --git a/blockchains/tron/assets/1000811/info.json b/blockchains/tron/assets/1000811/info.json new file mode 100644 index 00000000..70b97cf2 --- /dev/null +++ b/blockchains/tron/assets/1000811/info.json @@ -0,0 +1,11 @@ +{ + "name": "RoboQuarter", + "symbol": "RbQ", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000811", + "status": "abandoned", + "id": "1000811" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000811/logo.png b/blockchains/tron/assets/1000811/logo.png new file mode 100644 index 00000000..d6696b9a Binary files /dev/null and b/blockchains/tron/assets/1000811/logo.png differ diff --git a/blockchains/tron/assets/1000814/info.json b/blockchains/tron/assets/1000814/info.json new file mode 100644 index 00000000..0ce5bad6 --- /dev/null +++ b/blockchains/tron/assets/1000814/info.json @@ -0,0 +1,11 @@ +{ + "name": "MGG", + "symbol": "MGG", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000814", + "status": "abandoned", + "id": "1000814" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000814/logo.png b/blockchains/tron/assets/1000814/logo.png new file mode 100644 index 00000000..78d0f30b Binary files /dev/null and b/blockchains/tron/assets/1000814/logo.png differ diff --git a/blockchains/tron/assets/1000822/info.json b/blockchains/tron/assets/1000822/info.json new file mode 100644 index 00000000..cda02e76 --- /dev/null +++ b/blockchains/tron/assets/1000822/info.json @@ -0,0 +1,11 @@ +{ + "name": "TEG", + "symbol": "TEG", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000822", + "status": "abandoned", + "id": "1000822" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000822/logo.png b/blockchains/tron/assets/1000822/logo.png new file mode 100644 index 00000000..89743073 Binary files /dev/null and b/blockchains/tron/assets/1000822/logo.png differ diff --git a/blockchains/tron/assets/1000824/info.json b/blockchains/tron/assets/1000824/info.json new file mode 100644 index 00000000..eedf061e --- /dev/null +++ b/blockchains/tron/assets/1000824/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tipatrade", + "symbol": "TAT", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000824", + "status": "abandoned", + "id": "1000824" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000824/logo.png b/blockchains/tron/assets/1000824/logo.png new file mode 100644 index 00000000..b74f9cf7 Binary files /dev/null and b/blockchains/tron/assets/1000824/logo.png differ diff --git a/blockchains/tron/assets/1000848/info.json b/blockchains/tron/assets/1000848/info.json new file mode 100644 index 00000000..0c9bcd53 --- /dev/null +++ b/blockchains/tron/assets/1000848/info.json @@ -0,0 +1,11 @@ +{ + "name": "HaveABreakHaveAKitKat", + "symbol": "HABKK", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000848", + "status": "abandoned", + "id": "1000848" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000848/logo.png b/blockchains/tron/assets/1000848/logo.png new file mode 100755 index 00000000..1878f219 Binary files /dev/null and b/blockchains/tron/assets/1000848/logo.png differ diff --git a/blockchains/tron/assets/1000849/info.json b/blockchains/tron/assets/1000849/info.json new file mode 100644 index 00000000..e72e4f06 --- /dev/null +++ b/blockchains/tron/assets/1000849/info.json @@ -0,0 +1,11 @@ +{ + "name": "DealWithIt", + "symbol": "DWI", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000849", + "status": "abandoned", + "id": "1000849" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000849/logo.png b/blockchains/tron/assets/1000849/logo.png new file mode 100755 index 00000000..662574a8 Binary files /dev/null and b/blockchains/tron/assets/1000849/logo.png differ diff --git a/blockchains/tron/assets/1000854/info.json b/blockchains/tron/assets/1000854/info.json new file mode 100644 index 00000000..8583e2f1 --- /dev/null +++ b/blockchains/tron/assets/1000854/info.json @@ -0,0 +1,11 @@ +{ + "name": "GSG", + "symbol": "GSG", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000854", + "status": "abandoned", + "id": "1000854" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000854/logo.png b/blockchains/tron/assets/1000854/logo.png new file mode 100644 index 00000000..fa252aed Binary files /dev/null and b/blockchains/tron/assets/1000854/logo.png differ diff --git a/blockchains/tron/assets/1000865/info.json b/blockchains/tron/assets/1000865/info.json new file mode 100644 index 00000000..dd3191bf --- /dev/null +++ b/blockchains/tron/assets/1000865/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronInvestGroup", + "symbol": "TIG", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000865", + "status": "abandoned", + "id": "1000865" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000865/logo.png b/blockchains/tron/assets/1000865/logo.png new file mode 100644 index 00000000..48197137 Binary files /dev/null and b/blockchains/tron/assets/1000865/logo.png differ diff --git a/blockchains/tron/assets/1000891/info.json b/blockchains/tron/assets/1000891/info.json new file mode 100644 index 00000000..91faaa18 --- /dev/null +++ b/blockchains/tron/assets/1000891/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEG", + "symbol": "DEG", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000891", + "status": "abandoned", + "id": "1000891" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000891/logo.png b/blockchains/tron/assets/1000891/logo.png new file mode 100644 index 00000000..45fd4948 Binary files /dev/null and b/blockchains/tron/assets/1000891/logo.png differ diff --git a/blockchains/tron/assets/1000897/info.json b/blockchains/tron/assets/1000897/info.json new file mode 100644 index 00000000..8be30d13 --- /dev/null +++ b/blockchains/tron/assets/1000897/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEXCoin", + "symbol": "XDX", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000897", + "status": "abandoned", + "id": "1000897" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000897/logo.png b/blockchains/tron/assets/1000897/logo.png new file mode 100644 index 00000000..628be4b6 Binary files /dev/null and b/blockchains/tron/assets/1000897/logo.png differ diff --git a/blockchains/tron/assets/1000898/info.json b/blockchains/tron/assets/1000898/info.json new file mode 100644 index 00000000..86f250a5 --- /dev/null +++ b/blockchains/tron/assets/1000898/info.json @@ -0,0 +1,11 @@ +{ + "name": "UPVOTE", + "symbol": "UPVT", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000898", + "status": "abandoned", + "id": "1000898" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000898/logo.png b/blockchains/tron/assets/1000898/logo.png new file mode 100644 index 00000000..d7693b04 Binary files /dev/null and b/blockchains/tron/assets/1000898/logo.png differ diff --git a/blockchains/tron/assets/1000900/info.json b/blockchains/tron/assets/1000900/info.json new file mode 100644 index 00000000..abce0f1b --- /dev/null +++ b/blockchains/tron/assets/1000900/info.json @@ -0,0 +1,11 @@ +{ + "name": "SEG", + "symbol": "SEG", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000900", + "status": "abandoned", + "id": "1000900" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000900/logo.png b/blockchains/tron/assets/1000900/logo.png new file mode 100644 index 00000000..ddf44d80 Binary files /dev/null and b/blockchains/tron/assets/1000900/logo.png differ diff --git a/blockchains/tron/assets/1000907/info.json b/blockchains/tron/assets/1000907/info.json new file mode 100644 index 00000000..a879d073 --- /dev/null +++ b/blockchains/tron/assets/1000907/info.json @@ -0,0 +1,11 @@ +{ + "name": "RUOKToken", + "symbol": "RUOK", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000907", + "status": "abandoned", + "id": "1000907" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000907/logo.png b/blockchains/tron/assets/1000907/logo.png new file mode 100644 index 00000000..eace2953 Binary files /dev/null and b/blockchains/tron/assets/1000907/logo.png differ diff --git a/blockchains/tron/assets/1000930/info.json b/blockchains/tron/assets/1000930/info.json new file mode 100644 index 00000000..58036bd6 --- /dev/null +++ b/blockchains/tron/assets/1000930/info.json @@ -0,0 +1,11 @@ +{ + "name": "GhostNote", + "symbol": "GNOTE", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000930", + "status": "abandoned", + "id": "1000930" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000930/logo.png b/blockchains/tron/assets/1000930/logo.png new file mode 100644 index 00000000..3a5c00d5 Binary files /dev/null and b/blockchains/tron/assets/1000930/logo.png differ diff --git a/blockchains/tron/assets/1000932/info.json b/blockchains/tron/assets/1000932/info.json new file mode 100644 index 00000000..04b5e59e --- /dev/null +++ b/blockchains/tron/assets/1000932/info.json @@ -0,0 +1,11 @@ +{ + "name": "GamingEmpowermentMaterialSource", + "symbol": "GEMS", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000932", + "status": "abandoned", + "id": "1000932" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000932/logo.png b/blockchains/tron/assets/1000932/logo.png new file mode 100644 index 00000000..92ccebb6 Binary files /dev/null and b/blockchains/tron/assets/1000932/logo.png differ diff --git a/blockchains/tron/assets/1000933/info.json b/blockchains/tron/assets/1000933/info.json new file mode 100644 index 00000000..7ece397a --- /dev/null +++ b/blockchains/tron/assets/1000933/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronWatchMarket", + "symbol": "TWM", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000933", + "status": "abandoned", + "id": "1000933" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000933/logo.png b/blockchains/tron/assets/1000933/logo.png new file mode 100644 index 00000000..b893a9b1 Binary files /dev/null and b/blockchains/tron/assets/1000933/logo.png differ diff --git a/blockchains/tron/assets/1000935/info.json b/blockchains/tron/assets/1000935/info.json new file mode 100644 index 00000000..78a1b4d6 --- /dev/null +++ b/blockchains/tron/assets/1000935/info.json @@ -0,0 +1,11 @@ +{ + "name": "KsumNole", + "symbol": "MSK", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000935", + "status": "abandoned", + "id": "1000935" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000935/logo.png b/blockchains/tron/assets/1000935/logo.png new file mode 100644 index 00000000..c98aee23 Binary files /dev/null and b/blockchains/tron/assets/1000935/logo.png differ diff --git a/blockchains/tron/assets/1000943/info.json b/blockchains/tron/assets/1000943/info.json new file mode 100644 index 00000000..f1c0c027 --- /dev/null +++ b/blockchains/tron/assets/1000943/info.json @@ -0,0 +1,11 @@ +{ + "name": "GEMS", + "symbol": "gems", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000943", + "status": "abandoned", + "id": "1000943" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000943/logo.png b/blockchains/tron/assets/1000943/logo.png new file mode 100644 index 00000000..92ccebb6 Binary files /dev/null and b/blockchains/tron/assets/1000943/logo.png differ diff --git a/blockchains/tron/assets/1000945/info.json b/blockchains/tron/assets/1000945/info.json new file mode 100644 index 00000000..b10ce515 --- /dev/null +++ b/blockchains/tron/assets/1000945/info.json @@ -0,0 +1,11 @@ +{ + "name": "EMStoken", + "symbol": "EMS", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000945", + "status": "abandoned", + "id": "1000945" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000945/logo.png b/blockchains/tron/assets/1000945/logo.png new file mode 100755 index 00000000..193f0d87 Binary files /dev/null and b/blockchains/tron/assets/1000945/logo.png differ diff --git a/blockchains/tron/assets/1000981/info.json b/blockchains/tron/assets/1000981/info.json new file mode 100644 index 00000000..a7c72944 --- /dev/null +++ b/blockchains/tron/assets/1000981/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRONBEAN", + "symbol": "BEAN", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000981", + "status": "abandoned", + "id": "1000981" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000981/logo.png b/blockchains/tron/assets/1000981/logo.png new file mode 100644 index 00000000..59a941c9 Binary files /dev/null and b/blockchains/tron/assets/1000981/logo.png differ diff --git a/blockchains/tron/assets/1000985/info.json b/blockchains/tron/assets/1000985/info.json new file mode 100644 index 00000000..445f76e8 --- /dev/null +++ b/blockchains/tron/assets/1000985/info.json @@ -0,0 +1,11 @@ +{ + "name": "Santa", + "symbol": "Santa", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000985", + "status": "abandoned", + "id": "1000985" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000985/logo.png b/blockchains/tron/assets/1000985/logo.png new file mode 100644 index 00000000..9fc6b04d Binary files /dev/null and b/blockchains/tron/assets/1000985/logo.png differ diff --git a/blockchains/tron/assets/1000999/info.json b/blockchains/tron/assets/1000999/info.json new file mode 100644 index 00000000..5e641060 --- /dev/null +++ b/blockchains/tron/assets/1000999/info.json @@ -0,0 +1,11 @@ +{ + "name": "tronloot", + "symbol": "LOOT", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1000999", + "status": "abandoned", + "id": "1000999" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1000999/logo.png b/blockchains/tron/assets/1000999/logo.png new file mode 100644 index 00000000..a90b128a Binary files /dev/null and b/blockchains/tron/assets/1000999/logo.png differ diff --git a/blockchains/tron/assets/1001013/info.json b/blockchains/tron/assets/1001013/info.json new file mode 100644 index 00000000..71a91618 --- /dev/null +++ b/blockchains/tron/assets/1001013/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronPlatinum", + "symbol": "TPL", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001013", + "status": "abandoned", + "id": "1001013" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001013/logo.png b/blockchains/tron/assets/1001013/logo.png new file mode 100644 index 00000000..36fb35cd Binary files /dev/null and b/blockchains/tron/assets/1001013/logo.png differ diff --git a/blockchains/tron/assets/1001030/info.json b/blockchains/tron/assets/1001030/info.json new file mode 100644 index 00000000..da6728c2 --- /dev/null +++ b/blockchains/tron/assets/1001030/info.json @@ -0,0 +1,11 @@ +{ + "name": "StarWars", + "symbol": "Cred", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001030", + "status": "abandoned", + "id": "1001030" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001030/logo.png b/blockchains/tron/assets/1001030/logo.png new file mode 100644 index 00000000..c2a78cca Binary files /dev/null and b/blockchains/tron/assets/1001030/logo.png differ diff --git a/blockchains/tron/assets/1001046/info.json b/blockchains/tron/assets/1001046/info.json new file mode 100644 index 00000000..073f9c89 --- /dev/null +++ b/blockchains/tron/assets/1001046/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronPlatinumBusiness", + "symbol": "TPLB", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001046", + "status": "abandoned", + "id": "1001046" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001046/logo.png b/blockchains/tron/assets/1001046/logo.png new file mode 100644 index 00000000..36fb35cd Binary files /dev/null and b/blockchains/tron/assets/1001046/logo.png differ diff --git a/blockchains/tron/assets/1001047/info.json b/blockchains/tron/assets/1001047/info.json new file mode 100644 index 00000000..0557423f --- /dev/null +++ b/blockchains/tron/assets/1001047/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronPlatinumElite", + "symbol": "TPLE", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001047", + "status": "abandoned", + "id": "1001047" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001047/logo.png b/blockchains/tron/assets/1001047/logo.png new file mode 100644 index 00000000..36fb35cd Binary files /dev/null and b/blockchains/tron/assets/1001047/logo.png differ diff --git a/blockchains/tron/assets/1001050/info.json b/blockchains/tron/assets/1001050/info.json new file mode 100644 index 00000000..1e384cc2 --- /dev/null +++ b/blockchains/tron/assets/1001050/info.json @@ -0,0 +1,11 @@ +{ + "name": "KiwiBerry", + "symbol": "KIWI", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001050", + "status": "abandoned", + "id": "1001050" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001050/logo.png b/blockchains/tron/assets/1001050/logo.png new file mode 100644 index 00000000..544116ab Binary files /dev/null and b/blockchains/tron/assets/1001050/logo.png differ diff --git a/blockchains/tron/assets/1001090/info.json b/blockchains/tron/assets/1001090/info.json new file mode 100644 index 00000000..5f7a314d --- /dev/null +++ b/blockchains/tron/assets/1001090/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRONONE", + "symbol": "TONE", + "type": "TRC10", + "decimals": 0, + "description": "TRON ONE is one of SR of TRON, based on 'everyone build,everyone share'. TONE will build largest culture zone in TRON world.", + "website": "https://www.tronone.com", + "explorer": "https://tronscan.io/#/token/1001090", + "status": "active", + "id": "1001090" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001090/logo.png b/blockchains/tron/assets/1001090/logo.png new file mode 100755 index 00000000..db96bd03 Binary files /dev/null and b/blockchains/tron/assets/1001090/logo.png differ diff --git a/blockchains/tron/assets/1001091/info.json b/blockchains/tron/assets/1001091/info.json new file mode 100644 index 00000000..c864cb62 --- /dev/null +++ b/blockchains/tron/assets/1001091/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCC", + "symbol": "SCC", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001091", + "status": "abandoned", + "id": "1001091" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001091/logo.png b/blockchains/tron/assets/1001091/logo.png new file mode 100644 index 00000000..98388b33 Binary files /dev/null and b/blockchains/tron/assets/1001091/logo.png differ diff --git a/blockchains/tron/assets/1001092/info.json b/blockchains/tron/assets/1001092/info.json new file mode 100644 index 00000000..b891b057 --- /dev/null +++ b/blockchains/tron/assets/1001092/info.json @@ -0,0 +1,11 @@ +{ + "name": "SCT", + "symbol": "SCT", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001092", + "status": "abandoned", + "id": "1001092" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001092/logo.png b/blockchains/tron/assets/1001092/logo.png new file mode 100644 index 00000000..4e403fe9 Binary files /dev/null and b/blockchains/tron/assets/1001092/logo.png differ diff --git a/blockchains/tron/assets/1001107/info.json b/blockchains/tron/assets/1001107/info.json new file mode 100644 index 00000000..70004531 --- /dev/null +++ b/blockchains/tron/assets/1001107/info.json @@ -0,0 +1,11 @@ +{ + "name": "KAOSCANDY", + "symbol": "KAOS", + "type": "TRC10", + "decimals": 0, + "description": "KAOSCANDY is an official Partner Token and integral game coin used within the game Eggies World. KAOSCANDY token will seek partnerships with other Blockchain games to expand the tokens use.", + "website": "http://www.kaoscandy.com/", + "explorer": "https://tronscan.io/#/token/1001107", + "status": "active", + "id": "1001107" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001107/logo.png b/blockchains/tron/assets/1001107/logo.png new file mode 100755 index 00000000..c3bd1a46 Binary files /dev/null and b/blockchains/tron/assets/1001107/logo.png differ diff --git a/blockchains/tron/assets/1001136/info.json b/blockchains/tron/assets/1001136/info.json new file mode 100644 index 00000000..b5787ed8 --- /dev/null +++ b/blockchains/tron/assets/1001136/info.json @@ -0,0 +1,11 @@ +{ + "name": "AssChat", + "symbol": "ASS", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001136", + "status": "abandoned", + "id": "1001136" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001136/logo.png b/blockchains/tron/assets/1001136/logo.png new file mode 100644 index 00000000..fc1a13f5 Binary files /dev/null and b/blockchains/tron/assets/1001136/logo.png differ diff --git a/blockchains/tron/assets/1001137/info.json b/blockchains/tron/assets/1001137/info.json new file mode 100644 index 00000000..8c5a98b6 --- /dev/null +++ b/blockchains/tron/assets/1001137/info.json @@ -0,0 +1,11 @@ +{ + "name": "Botcoin", + "symbol": "BOT", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001137", + "status": "abandoned", + "id": "1001137" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001137/logo.png b/blockchains/tron/assets/1001137/logo.png new file mode 100644 index 00000000..5d354a5b Binary files /dev/null and b/blockchains/tron/assets/1001137/logo.png differ diff --git a/blockchains/tron/assets/1001142/info.json b/blockchains/tron/assets/1001142/info.json new file mode 100644 index 00000000..828c9173 --- /dev/null +++ b/blockchains/tron/assets/1001142/info.json @@ -0,0 +1,11 @@ +{ + "name": "Stream", + "symbol": "STI", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001142", + "status": "abandoned", + "id": "1001142" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001142/logo.png b/blockchains/tron/assets/1001142/logo.png new file mode 100644 index 00000000..682935ee Binary files /dev/null and b/blockchains/tron/assets/1001142/logo.png differ diff --git a/blockchains/tron/assets/1001164/info.json b/blockchains/tron/assets/1001164/info.json new file mode 100644 index 00000000..5d1f2c9e --- /dev/null +++ b/blockchains/tron/assets/1001164/info.json @@ -0,0 +1,11 @@ +{ + "name": "ADVCoin", + "symbol": "ADV", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001164", + "status": "abandoned", + "id": "1001164" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001164/logo.png b/blockchains/tron/assets/1001164/logo.png new file mode 100644 index 00000000..cc672256 Binary files /dev/null and b/blockchains/tron/assets/1001164/logo.png differ diff --git a/blockchains/tron/assets/1001186/info.json b/blockchains/tron/assets/1001186/info.json new file mode 100644 index 00000000..75fe74c1 --- /dev/null +++ b/blockchains/tron/assets/1001186/info.json @@ -0,0 +1,11 @@ +{ + "name": "POINT", + "symbol": "POINT", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001186", + "status": "abandoned", + "id": "1001186" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001186/logo.png b/blockchains/tron/assets/1001186/logo.png new file mode 100644 index 00000000..001357bd Binary files /dev/null and b/blockchains/tron/assets/1001186/logo.png differ diff --git a/blockchains/tron/assets/1001203/info.json b/blockchains/tron/assets/1001203/info.json new file mode 100644 index 00000000..042f85d5 --- /dev/null +++ b/blockchains/tron/assets/1001203/info.json @@ -0,0 +1,11 @@ +{ + "name": "MedicCoin", + "symbol": "MEDIC", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001203", + "status": "abandoned", + "id": "1001203" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001203/logo.png b/blockchains/tron/assets/1001203/logo.png new file mode 100644 index 00000000..f1b51356 Binary files /dev/null and b/blockchains/tron/assets/1001203/logo.png differ diff --git a/blockchains/tron/assets/1001217/info.json b/blockchains/tron/assets/1001217/info.json new file mode 100644 index 00000000..cd13a747 --- /dev/null +++ b/blockchains/tron/assets/1001217/info.json @@ -0,0 +1,11 @@ +{ + "name": "EOY", + "symbol": "EOY", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001217", + "status": "abandoned", + "id": "1001217" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001217/logo.png b/blockchains/tron/assets/1001217/logo.png new file mode 100644 index 00000000..2a5785cd Binary files /dev/null and b/blockchains/tron/assets/1001217/logo.png differ diff --git a/blockchains/tron/assets/1001268/info.json b/blockchains/tron/assets/1001268/info.json new file mode 100644 index 00000000..65ae78da --- /dev/null +++ b/blockchains/tron/assets/1001268/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronTokensContributor", + "symbol": "TTC", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001268", + "status": "abandoned", + "id": "1001268" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001268/logo.png b/blockchains/tron/assets/1001268/logo.png new file mode 100644 index 00000000..873ca447 Binary files /dev/null and b/blockchains/tron/assets/1001268/logo.png differ diff --git a/blockchains/tron/assets/1001302/info.json b/blockchains/tron/assets/1001302/info.json new file mode 100644 index 00000000..5a26aca3 --- /dev/null +++ b/blockchains/tron/assets/1001302/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRD", + "symbol": "TRD", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001302", + "status": "abandoned", + "id": "1001302" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001302/logo.png b/blockchains/tron/assets/1001302/logo.png new file mode 100644 index 00000000..b71da107 Binary files /dev/null and b/blockchains/tron/assets/1001302/logo.png differ diff --git a/blockchains/tron/assets/1001305/info.json b/blockchains/tron/assets/1001305/info.json new file mode 100644 index 00000000..e5811f02 --- /dev/null +++ b/blockchains/tron/assets/1001305/info.json @@ -0,0 +1,11 @@ +{ + "name": "dice", + "symbol": "dice", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001305", + "status": "abandoned", + "id": "1001305" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001305/logo.png b/blockchains/tron/assets/1001305/logo.png new file mode 100644 index 00000000..f76604eb Binary files /dev/null and b/blockchains/tron/assets/1001305/logo.png differ diff --git a/blockchains/tron/assets/1001313/info.json b/blockchains/tron/assets/1001313/info.json new file mode 100644 index 00000000..5f7f375a --- /dev/null +++ b/blockchains/tron/assets/1001313/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoGuyInZA", + "symbol": "CGIZA", + "type": "TRC10", + "decimals": 0, + "description": "Crypto Guy In South Africa (CryptoGuyInZA) is a Cryptocurrency Enthusiast in South Africa that has been elected as a Tron Super Representative by the community.", + "website": "https://www.cryptoguyinza.co.za", + "explorer": "https://tronscan.io/#/token/1001313", + "status": "active", + "id": "1001313" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001313/logo.png b/blockchains/tron/assets/1001313/logo.png new file mode 100755 index 00000000..91683d7d Binary files /dev/null and b/blockchains/tron/assets/1001313/logo.png differ diff --git a/blockchains/tron/assets/1001351/info.json b/blockchains/tron/assets/1001351/info.json new file mode 100644 index 00000000..46f2ad2d --- /dev/null +++ b/blockchains/tron/assets/1001351/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoDivaFund", + "symbol": "CDF", + "type": "TRC10", + "decimals": 0, + "description": "CryptoDiva Fund (CDF) is the official token of the Tron SR CryptoDiva. It will be used to facilitate knowledge sharing, game designing CD community building and other projects on Tron network.", + "website": "http://www.cryptodiva.io/", + "explorer": "https://tronscan.io/#/token/1001351", + "status": "active", + "id": "1001351" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001351/logo.png b/blockchains/tron/assets/1001351/logo.png new file mode 100755 index 00000000..635f84c6 Binary files /dev/null and b/blockchains/tron/assets/1001351/logo.png differ diff --git a/blockchains/tron/assets/1001353/info.json b/blockchains/tron/assets/1001353/info.json new file mode 100644 index 00000000..a9fae6fb --- /dev/null +++ b/blockchains/tron/assets/1001353/info.json @@ -0,0 +1,11 @@ +{ + "name": "OWL", + "symbol": "OWL", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001353", + "status": "abandoned", + "id": "1001353" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001353/logo.png b/blockchains/tron/assets/1001353/logo.png new file mode 100644 index 00000000..bc8406aa Binary files /dev/null and b/blockchains/tron/assets/1001353/logo.png differ diff --git a/blockchains/tron/assets/1001359/info.json b/blockchains/tron/assets/1001359/info.json new file mode 100644 index 00000000..87527f24 --- /dev/null +++ b/blockchains/tron/assets/1001359/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRONCITY", + "symbol": "TCO", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001359", + "status": "abandoned", + "id": "1001359" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001359/logo.png b/blockchains/tron/assets/1001359/logo.png new file mode 100755 index 00000000..69297d7d Binary files /dev/null and b/blockchains/tron/assets/1001359/logo.png differ diff --git a/blockchains/tron/assets/1001361/info.json b/blockchains/tron/assets/1001361/info.json new file mode 100644 index 00000000..8e3cc4f3 --- /dev/null +++ b/blockchains/tron/assets/1001361/info.json @@ -0,0 +1,11 @@ +{ + "name": "SPOK", + "symbol": "SPK", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001361", + "status": "abandoned", + "id": "1001361" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001361/logo.png b/blockchains/tron/assets/1001361/logo.png new file mode 100644 index 00000000..b11dc297 Binary files /dev/null and b/blockchains/tron/assets/1001361/logo.png differ diff --git a/blockchains/tron/assets/1001363/info.json b/blockchains/tron/assets/1001363/info.json new file mode 100644 index 00000000..7dbb6301 --- /dev/null +++ b/blockchains/tron/assets/1001363/info.json @@ -0,0 +1,11 @@ +{ + "name": "CaptainKirk", + "symbol": "CKK", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001363", + "status": "abandoned", + "id": "1001363" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001363/logo.png b/blockchains/tron/assets/1001363/logo.png new file mode 100644 index 00000000..600b25b0 Binary files /dev/null and b/blockchains/tron/assets/1001363/logo.png differ diff --git a/blockchains/tron/assets/1001367/info.json b/blockchains/tron/assets/1001367/info.json new file mode 100644 index 00000000..a152b6e5 --- /dev/null +++ b/blockchains/tron/assets/1001367/info.json @@ -0,0 +1,11 @@ +{ + "name": "PeerToPeer", + "symbol": "PTP", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001367", + "status": "abandoned", + "id": "1001367" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001367/logo.png b/blockchains/tron/assets/1001367/logo.png new file mode 100644 index 00000000..7e279f45 Binary files /dev/null and b/blockchains/tron/assets/1001367/logo.png differ diff --git a/blockchains/tron/assets/1001385/info.json b/blockchains/tron/assets/1001385/info.json new file mode 100644 index 00000000..9af1d911 --- /dev/null +++ b/blockchains/tron/assets/1001385/info.json @@ -0,0 +1,11 @@ +{ + "name": "FURCOIN", + "symbol": "FUR", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001385", + "status": "abandoned", + "id": "1001385" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001385/logo.png b/blockchains/tron/assets/1001385/logo.png new file mode 100644 index 00000000..4754dc6f Binary files /dev/null and b/blockchains/tron/assets/1001385/logo.png differ diff --git a/blockchains/tron/assets/1001411/info.json b/blockchains/tron/assets/1001411/info.json new file mode 100644 index 00000000..665f5755 --- /dev/null +++ b/blockchains/tron/assets/1001411/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoBankCoin", + "symbol": "CBC", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001411", + "status": "abandoned", + "id": "1001411" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001414/info.json b/blockchains/tron/assets/1001414/info.json new file mode 100644 index 00000000..bbca3a41 --- /dev/null +++ b/blockchains/tron/assets/1001414/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRONO", + "symbol": "TRONO", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001414", + "status": "abandoned", + "id": "1001414" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001414/logo.png b/blockchains/tron/assets/1001414/logo.png new file mode 100644 index 00000000..b5cf0b21 Binary files /dev/null and b/blockchains/tron/assets/1001414/logo.png differ diff --git a/blockchains/tron/assets/1001427/info.json b/blockchains/tron/assets/1001427/info.json new file mode 100644 index 00000000..5fc4df5c --- /dev/null +++ b/blockchains/tron/assets/1001427/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRONREFUNDS", + "symbol": "RFD", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001427", + "status": "abandoned", + "id": "1001427" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001427/logo.png b/blockchains/tron/assets/1001427/logo.png new file mode 100644 index 00000000..926727e2 Binary files /dev/null and b/blockchains/tron/assets/1001427/logo.png differ diff --git a/blockchains/tron/assets/1001438/info.json b/blockchains/tron/assets/1001438/info.json new file mode 100644 index 00000000..7a999776 --- /dev/null +++ b/blockchains/tron/assets/1001438/info.json @@ -0,0 +1,11 @@ +{ + "name": "Photon", + "symbol": "PTN", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001438", + "status": "abandoned", + "id": "1001438" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001438/logo.png b/blockchains/tron/assets/1001438/logo.png new file mode 100755 index 00000000..95c93dea Binary files /dev/null and b/blockchains/tron/assets/1001438/logo.png differ diff --git a/blockchains/tron/assets/1001457/info.json b/blockchains/tron/assets/1001457/info.json new file mode 100644 index 00000000..461107c3 --- /dev/null +++ b/blockchains/tron/assets/1001457/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronATM", + "symbol": "TATM", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001457", + "status": "abandoned", + "id": "1001457" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001457/logo.png b/blockchains/tron/assets/1001457/logo.png new file mode 100644 index 00000000..18fa6620 Binary files /dev/null and b/blockchains/tron/assets/1001457/logo.png differ diff --git a/blockchains/tron/assets/1001466/info.json b/blockchains/tron/assets/1001466/info.json new file mode 100644 index 00000000..78dc2d23 --- /dev/null +++ b/blockchains/tron/assets/1001466/info.json @@ -0,0 +1,11 @@ +{ + "name": "Tronics", + "symbol": "TX", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001466", + "status": "abandoned", + "id": "1001466" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001466/logo.png b/blockchains/tron/assets/1001466/logo.png new file mode 100644 index 00000000..be4e4830 Binary files /dev/null and b/blockchains/tron/assets/1001466/logo.png differ diff --git a/blockchains/tron/assets/1001500/info.json b/blockchains/tron/assets/1001500/info.json new file mode 100644 index 00000000..329c258b --- /dev/null +++ b/blockchains/tron/assets/1001500/info.json @@ -0,0 +1,11 @@ +{ + "name": "HaloSocialMeetup", + "symbol": "Halo", + "type": "TRC10", + "decimals": 0, + "description": "Halo Social Meetup is social media simplified.", + "website": "https://www.halosocialmeetup.com/", + "explorer": "https://tronscan.io/#/token/1001500", + "status": "active", + "id": "1001500" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001500/logo.png b/blockchains/tron/assets/1001500/logo.png new file mode 100644 index 00000000..513efcf2 Binary files /dev/null and b/blockchains/tron/assets/1001500/logo.png differ diff --git a/blockchains/tron/assets/1001546/info.json b/blockchains/tron/assets/1001546/info.json new file mode 100644 index 00000000..379fabc0 --- /dev/null +++ b/blockchains/tron/assets/1001546/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRONHERO", + "symbol": "THX", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001546", + "status": "abandoned", + "id": "1001546" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001546/logo.png b/blockchains/tron/assets/1001546/logo.png new file mode 100755 index 00000000..67ebd19c Binary files /dev/null and b/blockchains/tron/assets/1001546/logo.png differ diff --git a/blockchains/tron/assets/1001559/info.json b/blockchains/tron/assets/1001559/info.json new file mode 100644 index 00000000..1c5f2e2d --- /dev/null +++ b/blockchains/tron/assets/1001559/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronID", + "symbol": "TronID", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001559", + "status": "abandoned", + "id": "1001559" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001559/logo.png b/blockchains/tron/assets/1001559/logo.png new file mode 100755 index 00000000..9dbe1e39 Binary files /dev/null and b/blockchains/tron/assets/1001559/logo.png differ diff --git a/blockchains/tron/assets/1001581/info.json b/blockchains/tron/assets/1001581/info.json new file mode 100644 index 00000000..7184b769 --- /dev/null +++ b/blockchains/tron/assets/1001581/info.json @@ -0,0 +1,11 @@ +{ + "name": "HealthPort", + "symbol": "EHR", + "type": "TRC10", + "decimals": 0, + "description": "Health Port is a patient-centric healthcare information system bringing patients a portable, interoperable, decentralized, integrated system for managing their personal electronic health records.", + "website": "https://healthport.io/", + "explorer": "https://tronscan.io/#/token/1001581", + "status": "active", + "id": "1001581" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001581/logo.png b/blockchains/tron/assets/1001581/logo.png new file mode 100644 index 00000000..0500d351 Binary files /dev/null and b/blockchains/tron/assets/1001581/logo.png differ diff --git a/blockchains/tron/assets/1001584/info.json b/blockchains/tron/assets/1001584/info.json new file mode 100644 index 00000000..0dcc4c80 --- /dev/null +++ b/blockchains/tron/assets/1001584/info.json @@ -0,0 +1,11 @@ +{ + "name": "SUDWA", + "symbol": "SUDWA", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001584", + "status": "abandoned", + "id": "1001584" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001584/logo.png b/blockchains/tron/assets/1001584/logo.png new file mode 100644 index 00000000..0e3b2a57 Binary files /dev/null and b/blockchains/tron/assets/1001584/logo.png differ diff --git a/blockchains/tron/assets/1001596/info.json b/blockchains/tron/assets/1001596/info.json new file mode 100644 index 00000000..c298b5a1 --- /dev/null +++ b/blockchains/tron/assets/1001596/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronSecure", + "symbol": "TSC", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001596", + "status": "abandoned", + "id": "1001596" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001596/logo.png b/blockchains/tron/assets/1001596/logo.png new file mode 100644 index 00000000..1da28ff3 Binary files /dev/null and b/blockchains/tron/assets/1001596/logo.png differ diff --git a/blockchains/tron/assets/1001617/info.json b/blockchains/tron/assets/1001617/info.json new file mode 100644 index 00000000..e07642a9 --- /dev/null +++ b/blockchains/tron/assets/1001617/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronArt", + "symbol": "TAR", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001617", + "status": "abandoned", + "id": "1001617" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001617/logo.png b/blockchains/tron/assets/1001617/logo.png new file mode 100755 index 00000000..52f4dfa1 Binary files /dev/null and b/blockchains/tron/assets/1001617/logo.png differ diff --git a/blockchains/tron/assets/1001645/info.json b/blockchains/tron/assets/1001645/info.json new file mode 100644 index 00000000..b96113fb --- /dev/null +++ b/blockchains/tron/assets/1001645/info.json @@ -0,0 +1,11 @@ +{ + "name": "Elite", + "symbol": "ELT", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001645", + "status": "abandoned", + "id": "1001645" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001645/logo.png b/blockchains/tron/assets/1001645/logo.png new file mode 100644 index 00000000..aec47827 Binary files /dev/null and b/blockchains/tron/assets/1001645/logo.png differ diff --git a/blockchains/tron/assets/1001652/info.json b/blockchains/tron/assets/1001652/info.json new file mode 100644 index 00000000..4a80146e --- /dev/null +++ b/blockchains/tron/assets/1001652/info.json @@ -0,0 +1,11 @@ +{ + "name": "ORACLETRX", + "symbol": "OCTX", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001652", + "status": "abandoned", + "id": "1001652" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001652/logo.png b/blockchains/tron/assets/1001652/logo.png new file mode 100644 index 00000000..462d062a Binary files /dev/null and b/blockchains/tron/assets/1001652/logo.png differ diff --git a/blockchains/tron/assets/1001698/info.json b/blockchains/tron/assets/1001698/info.json new file mode 100644 index 00000000..28227447 --- /dev/null +++ b/blockchains/tron/assets/1001698/info.json @@ -0,0 +1,11 @@ +{ + "name": "ONGISTRON", + "symbol": "ONGIS", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001698", + "status": "abandoned", + "id": "1001698" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001698/logo.png b/blockchains/tron/assets/1001698/logo.png new file mode 100644 index 00000000..cf5d54a1 Binary files /dev/null and b/blockchains/tron/assets/1001698/logo.png differ diff --git a/blockchains/tron/assets/1001699/info.json b/blockchains/tron/assets/1001699/info.json new file mode 100644 index 00000000..ffca876d --- /dev/null +++ b/blockchains/tron/assets/1001699/info.json @@ -0,0 +1,11 @@ +{ + "name": "NoleWater", + "symbol": "AMSK", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "https://nolelegends.com/", + "explorer": "https://tronscan.io/#/token/1001699", + "status": "active", + "id": "1001699" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001699/logo.png b/blockchains/tron/assets/1001699/logo.png new file mode 100644 index 00000000..264123c6 Binary files /dev/null and b/blockchains/tron/assets/1001699/logo.png differ diff --git a/blockchains/tron/assets/1001757/info.json b/blockchains/tron/assets/1001757/info.json new file mode 100644 index 00000000..d46d81ed --- /dev/null +++ b/blockchains/tron/assets/1001757/info.json @@ -0,0 +1,11 @@ +{ + "name": "EVO", + "symbol": "EVO", + "type": "TRC10", + "decimals": 0, + "description": "Token to power the DApp Evolution Ecosystem, including TronChat, TronRadar, TronCollectibles and more.", + "website": "https://dappevolution.com/", + "explorer": "https://tronscan.io/#/token/1001757", + "status": "active", + "id": "1001757" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001757/logo.png b/blockchains/tron/assets/1001757/logo.png new file mode 100644 index 00000000..dda19a51 Binary files /dev/null and b/blockchains/tron/assets/1001757/logo.png differ diff --git a/blockchains/tron/assets/1001778/info.json b/blockchains/tron/assets/1001778/info.json new file mode 100644 index 00000000..4f70f609 --- /dev/null +++ b/blockchains/tron/assets/1001778/info.json @@ -0,0 +1,11 @@ +{ + "name": "Awesome", + "symbol": "AWS", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001778", + "status": "abandoned", + "id": "1001778" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001778/logo.png b/blockchains/tron/assets/1001778/logo.png new file mode 100644 index 00000000..301a7947 Binary files /dev/null and b/blockchains/tron/assets/1001778/logo.png differ diff --git a/blockchains/tron/assets/1001801/info.json b/blockchains/tron/assets/1001801/info.json new file mode 100644 index 00000000..0c83f2fc --- /dev/null +++ b/blockchains/tron/assets/1001801/info.json @@ -0,0 +1,11 @@ +{ + "name": "Baba", + "symbol": "BABA", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001801", + "status": "abandoned", + "id": "1001801" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001801/logo.png b/blockchains/tron/assets/1001801/logo.png new file mode 100644 index 00000000..f4165c8c Binary files /dev/null and b/blockchains/tron/assets/1001801/logo.png differ diff --git a/blockchains/tron/assets/1001803/info.json b/blockchains/tron/assets/1001803/info.json new file mode 100644 index 00000000..104b574b --- /dev/null +++ b/blockchains/tron/assets/1001803/info.json @@ -0,0 +1,11 @@ +{ + "name": "LIME", + "symbol": "LIME", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001803", + "status": "abandoned", + "id": "1001803" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001803/logo.png b/blockchains/tron/assets/1001803/logo.png new file mode 100644 index 00000000..d493da5b Binary files /dev/null and b/blockchains/tron/assets/1001803/logo.png differ diff --git a/blockchains/tron/assets/1001825/info.json b/blockchains/tron/assets/1001825/info.json new file mode 100644 index 00000000..3fb651f0 --- /dev/null +++ b/blockchains/tron/assets/1001825/info.json @@ -0,0 +1,11 @@ +{ + "name": "CYBER", + "symbol": "CYBR", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001825", + "status": "abandoned", + "id": "1001825" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001825/logo.png b/blockchains/tron/assets/1001825/logo.png new file mode 100644 index 00000000..1833f1f7 Binary files /dev/null and b/blockchains/tron/assets/1001825/logo.png differ diff --git a/blockchains/tron/assets/1001834/info.json b/blockchains/tron/assets/1001834/info.json new file mode 100644 index 00000000..bcef5508 --- /dev/null +++ b/blockchains/tron/assets/1001834/info.json @@ -0,0 +1,11 @@ +{ + "name": "DeepCloudAI", + "symbol": "DEEP", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001834", + "status": "abandoned", + "id": "1001834" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001834/logo.png b/blockchains/tron/assets/1001834/logo.png new file mode 100644 index 00000000..af4d051b Binary files /dev/null and b/blockchains/tron/assets/1001834/logo.png differ diff --git a/blockchains/tron/assets/1001837/info.json b/blockchains/tron/assets/1001837/info.json new file mode 100644 index 00000000..c2068c79 --- /dev/null +++ b/blockchains/tron/assets/1001837/info.json @@ -0,0 +1,11 @@ +{ + "name": "POS", + "symbol": "POS", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001837", + "status": "abandoned", + "id": "1001837" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001837/logo.png b/blockchains/tron/assets/1001837/logo.png new file mode 100644 index 00000000..e7a2eea2 Binary files /dev/null and b/blockchains/tron/assets/1001837/logo.png differ diff --git a/blockchains/tron/assets/1001845/info.json b/blockchains/tron/assets/1001845/info.json new file mode 100644 index 00000000..95fd7d93 --- /dev/null +++ b/blockchains/tron/assets/1001845/info.json @@ -0,0 +1,11 @@ +{ + "name": "TimerGuardBox", + "symbol": "TGB", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001845", + "status": "abandoned", + "id": "1001845" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001845/logo.png b/blockchains/tron/assets/1001845/logo.png new file mode 100644 index 00000000..74ebe98f Binary files /dev/null and b/blockchains/tron/assets/1001845/logo.png differ diff --git a/blockchains/tron/assets/1001865/info.json b/blockchains/tron/assets/1001865/info.json new file mode 100644 index 00000000..a965da22 --- /dev/null +++ b/blockchains/tron/assets/1001865/info.json @@ -0,0 +1,11 @@ +{ + "name": "GlobalRiceToken", + "symbol": "GRT", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001865", + "status": "abandoned", + "id": "1001865" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001865/logo.png b/blockchains/tron/assets/1001865/logo.png new file mode 100644 index 00000000..58b31a6b Binary files /dev/null and b/blockchains/tron/assets/1001865/logo.png differ diff --git a/blockchains/tron/assets/1001893/info.json b/blockchains/tron/assets/1001893/info.json new file mode 100644 index 00000000..63ccbbd0 --- /dev/null +++ b/blockchains/tron/assets/1001893/info.json @@ -0,0 +1,11 @@ +{ + "name": "BetaORCA", + "symbol": "BetaO", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001893", + "status": "abandoned", + "id": "1001893" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001893/logo.png b/blockchains/tron/assets/1001893/logo.png new file mode 100644 index 00000000..1346189b Binary files /dev/null and b/blockchains/tron/assets/1001893/logo.png differ diff --git a/blockchains/tron/assets/1001909/info.json b/blockchains/tron/assets/1001909/info.json new file mode 100644 index 00000000..9eb7b0d6 --- /dev/null +++ b/blockchains/tron/assets/1001909/info.json @@ -0,0 +1,11 @@ +{ + "name": "DEP", + "symbol": "dep", + "type": "TRC10", + "decimals": 5, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001909", + "status": "abandoned", + "id": "1001909" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001909/logo.png b/blockchains/tron/assets/1001909/logo.png new file mode 100644 index 00000000..21250861 Binary files /dev/null and b/blockchains/tron/assets/1001909/logo.png differ diff --git a/blockchains/tron/assets/1001920/info.json b/blockchains/tron/assets/1001920/info.json new file mode 100644 index 00000000..d4efd528 --- /dev/null +++ b/blockchains/tron/assets/1001920/info.json @@ -0,0 +1,11 @@ +{ + "name": "ORCA", + "symbol": "ORCA", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001920", + "status": "abandoned", + "id": "1001920" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001920/logo.png b/blockchains/tron/assets/1001920/logo.png new file mode 100644 index 00000000..1346189b Binary files /dev/null and b/blockchains/tron/assets/1001920/logo.png differ diff --git a/blockchains/tron/assets/1001943/info.json b/blockchains/tron/assets/1001943/info.json new file mode 100644 index 00000000..bd206203 --- /dev/null +++ b/blockchains/tron/assets/1001943/info.json @@ -0,0 +1,11 @@ +{ + "name": "POPPY", + "symbol": "POPPY", + "type": "TRC10", + "decimals": 6, + "description": "A loyalty and reward token for the Poppy network.", + "website": "https://poppypos.com/", + "explorer": "https://tronscan.io/#/token/1001943", + "status": "active", + "id": "1001943" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001943/logo.png b/blockchains/tron/assets/1001943/logo.png new file mode 100755 index 00000000..6e357aa1 Binary files /dev/null and b/blockchains/tron/assets/1001943/logo.png differ diff --git a/blockchains/tron/assets/1001949/info.json b/blockchains/tron/assets/1001949/info.json new file mode 100644 index 00000000..62c8b917 --- /dev/null +++ b/blockchains/tron/assets/1001949/info.json @@ -0,0 +1,11 @@ +{ + "name": "SOON", + "symbol": "SOON", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1001949", + "status": "abandoned", + "id": "1001949" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1001949/logo.png b/blockchains/tron/assets/1001949/logo.png new file mode 100644 index 00000000..4c1da40b Binary files /dev/null and b/blockchains/tron/assets/1001949/logo.png differ diff --git a/blockchains/tron/assets/1002000/info.json b/blockchains/tron/assets/1002000/info.json new file mode 100644 index 00000000..612ed134 --- /dev/null +++ b/blockchains/tron/assets/1002000/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitTorrent", + "website": "https://bittorrent.com/btt", + "description": "BTTOLD will continue to be supported for a long time, and everyone can swap BTTOLD for BTT at any time. 1 BTTOLD = 1000 BTT.", + "explorer": "https://tronscan.io/#/token/1002000", + "type": "TRC10", + "symbol": "BTTOLD", + "decimals": 6, + "status": "active", + "id": "1002000" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002000/logo.png b/blockchains/tron/assets/1002000/logo.png new file mode 100644 index 00000000..75fb510b Binary files /dev/null and b/blockchains/tron/assets/1002000/logo.png differ diff --git a/blockchains/tron/assets/1002021/info.json b/blockchains/tron/assets/1002021/info.json new file mode 100644 index 00000000..e34879ca --- /dev/null +++ b/blockchains/tron/assets/1002021/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronGuarD", + "symbol": "TGD", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002021", + "status": "abandoned", + "id": "1002021" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002021/logo.png b/blockchains/tron/assets/1002021/logo.png new file mode 100644 index 00000000..409e37c8 Binary files /dev/null and b/blockchains/tron/assets/1002021/logo.png differ diff --git a/blockchains/tron/assets/1002023/info.json b/blockchains/tron/assets/1002023/info.json new file mode 100644 index 00000000..8769134d --- /dev/null +++ b/blockchains/tron/assets/1002023/info.json @@ -0,0 +1,11 @@ +{ + "name": "Kioshu", + "symbol": "KIO", + "type": "TRC10", + "decimals": 0, + "description": "A Multi-Utility Gaming Token Utilized Across Multiple Platforms.", + "website": "https://kioshu.io/", + "explorer": "https://tronscan.io/#/token/1002023", + "status": "active", + "id": "1002023" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002023/logo.png b/blockchains/tron/assets/1002023/logo.png new file mode 100644 index 00000000..a9c28935 Binary files /dev/null and b/blockchains/tron/assets/1002023/logo.png differ diff --git a/blockchains/tron/assets/1002028/info.json b/blockchains/tron/assets/1002028/info.json new file mode 100644 index 00000000..63152c5a --- /dev/null +++ b/blockchains/tron/assets/1002028/info.json @@ -0,0 +1,11 @@ +{ + "name": "ORCAGOLD", + "symbol": "OrcaG", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002028", + "status": "abandoned", + "id": "1002028" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002028/logo.png b/blockchains/tron/assets/1002028/logo.png new file mode 100644 index 00000000..f59c784f Binary files /dev/null and b/blockchains/tron/assets/1002028/logo.png differ diff --git a/blockchains/tron/assets/1002043/info.json b/blockchains/tron/assets/1002043/info.json new file mode 100644 index 00000000..e7604a92 --- /dev/null +++ b/blockchains/tron/assets/1002043/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryTrExCoin", + "symbol": "CRYT", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002043", + "status": "abandoned", + "id": "1002043" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002043/logo.png b/blockchains/tron/assets/1002043/logo.png new file mode 100755 index 00000000..158f850e Binary files /dev/null and b/blockchains/tron/assets/1002043/logo.png differ diff --git a/blockchains/tron/assets/1002058/info.json b/blockchains/tron/assets/1002058/info.json new file mode 100644 index 00000000..fc851c2b --- /dev/null +++ b/blockchains/tron/assets/1002058/info.json @@ -0,0 +1,11 @@ +{ + "name": "REC", + "symbol": "REC", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002058", + "status": "abandoned", + "id": "1002058" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002058/logo.png b/blockchains/tron/assets/1002058/logo.png new file mode 100644 index 00000000..226e34c9 Binary files /dev/null and b/blockchains/tron/assets/1002058/logo.png differ diff --git a/blockchains/tron/assets/1002093/info.json b/blockchains/tron/assets/1002093/info.json new file mode 100644 index 00000000..9c7f8159 --- /dev/null +++ b/blockchains/tron/assets/1002093/info.json @@ -0,0 +1,11 @@ +{ + "name": "iWiW", + "symbol": "iWiW", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002093", + "status": "abandoned", + "id": "1002093" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002093/logo.png b/blockchains/tron/assets/1002093/logo.png new file mode 100755 index 00000000..cdaf378f Binary files /dev/null and b/blockchains/tron/assets/1002093/logo.png differ diff --git a/blockchains/tron/assets/1002116/info.json b/blockchains/tron/assets/1002116/info.json new file mode 100644 index 00000000..77b7a56a --- /dev/null +++ b/blockchains/tron/assets/1002116/info.json @@ -0,0 +1,11 @@ +{ + "name": "Arcnet", + "symbol": "ARC", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002116", + "status": "abandoned", + "id": "1002116" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002116/logo.png b/blockchains/tron/assets/1002116/logo.png new file mode 100644 index 00000000..3c8d4807 Binary files /dev/null and b/blockchains/tron/assets/1002116/logo.png differ diff --git a/blockchains/tron/assets/1002226/info.json b/blockchains/tron/assets/1002226/info.json new file mode 100644 index 00000000..5e3523ab --- /dev/null +++ b/blockchains/tron/assets/1002226/info.json @@ -0,0 +1,11 @@ +{ + "name": "Friendster", + "symbol": "FSTER", + "type": "TRC10", + "decimals": 0, + "description": "Social media token. Web 2.0 on Tron Blockchain.", + "website": "https://www.friendster.io/", + "explorer": "https://tronscan.io/#/token/1002226", + "status": "active", + "id": "1002226" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002226/logo.png b/blockchains/tron/assets/1002226/logo.png new file mode 100644 index 00000000..0e35d309 Binary files /dev/null and b/blockchains/tron/assets/1002226/logo.png differ diff --git a/blockchains/tron/assets/1002234/info.json b/blockchains/tron/assets/1002234/info.json new file mode 100644 index 00000000..87cc5b1e --- /dev/null +++ b/blockchains/tron/assets/1002234/info.json @@ -0,0 +1,11 @@ +{ + "name": "BOOK", + "symbol": "ART", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002234", + "status": "abandoned", + "id": "1002234" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002234/logo.png b/blockchains/tron/assets/1002234/logo.png new file mode 100644 index 00000000..e627e212 Binary files /dev/null and b/blockchains/tron/assets/1002234/logo.png differ diff --git a/blockchains/tron/assets/1002270/info.json b/blockchains/tron/assets/1002270/info.json new file mode 100644 index 00000000..41a79a6d --- /dev/null +++ b/blockchains/tron/assets/1002270/info.json @@ -0,0 +1,11 @@ +{ + "name": "KvazarCash", + "symbol": "KVC", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002270", + "status": "abandoned", + "id": "1002270" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002270/logo.png b/blockchains/tron/assets/1002270/logo.png new file mode 100644 index 00000000..973287d5 Binary files /dev/null and b/blockchains/tron/assets/1002270/logo.png differ diff --git a/blockchains/tron/assets/1002357/info.json b/blockchains/tron/assets/1002357/info.json new file mode 100644 index 00000000..23acbbf7 --- /dev/null +++ b/blockchains/tron/assets/1002357/info.json @@ -0,0 +1,25 @@ +{ + "name": "GMCoin", + "symbol": "GMCoin", + "type": "TRC10", + "decimals": 2, + "description": "GMCoin is the first company token to establish a vast and practical model based on #DeBu #Decentralized #Businesses developed on the whole #cryptocurrency network", + "website": "https://gmc.gm-informatics.com", + "explorer": "https://tronscan.io/#/token/1002357", + "status": "active", + "id": "1002357", + "links": [ + { + "name": "github", + "url": "https://github.com/gmcoin" + }, + { + "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/1002357/logo.png b/blockchains/tron/assets/1002357/logo.png new file mode 100755 index 00000000..706bfc92 Binary files /dev/null and b/blockchains/tron/assets/1002357/logo.png differ diff --git a/blockchains/tron/assets/1002413/info.json b/blockchains/tron/assets/1002413/info.json new file mode 100644 index 00000000..60020e8d --- /dev/null +++ b/blockchains/tron/assets/1002413/info.json @@ -0,0 +1,11 @@ +{ + "name": "BeatzCoin", + "symbol": "BTZC", + "type": "TRC10", + "decimals": 6, + "description": "BTZC is to be used on the VibraVid.io platform.", + "website": "https://www.beatzcoin.io/", + "explorer": "https://tronscan.io/#/token/1002413", + "status": "active", + "id": "1002413" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002413/logo.png b/blockchains/tron/assets/1002413/logo.png new file mode 100644 index 00000000..592b9a62 Binary files /dev/null and b/blockchains/tron/assets/1002413/logo.png differ diff --git a/blockchains/tron/assets/1002469/info.json b/blockchains/tron/assets/1002469/info.json new file mode 100644 index 00000000..3192f7a4 --- /dev/null +++ b/blockchains/tron/assets/1002469/info.json @@ -0,0 +1,11 @@ +{ + "name": "ECOECTRON", + "symbol": "ECOEC", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002469", + "status": "abandoned", + "id": "1002469" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002469/logo.png b/blockchains/tron/assets/1002469/logo.png new file mode 100644 index 00000000..74daef91 Binary files /dev/null and b/blockchains/tron/assets/1002469/logo.png differ diff --git a/blockchains/tron/assets/1002483/info.json b/blockchains/tron/assets/1002483/info.json new file mode 100644 index 00000000..e694c6d2 --- /dev/null +++ b/blockchains/tron/assets/1002483/info.json @@ -0,0 +1,11 @@ +{ + "name": "GOLDSECURE", + "symbol": "GOLD", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002483", + "status": "abandoned", + "id": "1002483" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002483/logo.png b/blockchains/tron/assets/1002483/logo.png new file mode 100644 index 00000000..40da2ff6 Binary files /dev/null and b/blockchains/tron/assets/1002483/logo.png differ diff --git a/blockchains/tron/assets/1002517/info.json b/blockchains/tron/assets/1002517/info.json new file mode 100644 index 00000000..baef57b3 --- /dev/null +++ b/blockchains/tron/assets/1002517/info.json @@ -0,0 +1,11 @@ +{ + "name": "BUILDER", + "symbol": "BUILDER", + "type": "TRC10", + "decimals": 6, + "description": "Token of the game BUILDER.", + "website": "https://tronbuild.fun/", + "explorer": "https://tronscan.io/#/token/1002517", + "status": "active", + "id": "1002517" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002517/logo.png b/blockchains/tron/assets/1002517/logo.png new file mode 100644 index 00000000..fcea47eb Binary files /dev/null and b/blockchains/tron/assets/1002517/logo.png differ diff --git a/blockchains/tron/assets/1002570/info.json b/blockchains/tron/assets/1002570/info.json new file mode 100644 index 00000000..771d6675 --- /dev/null +++ b/blockchains/tron/assets/1002570/info.json @@ -0,0 +1,11 @@ +{ + "name": "Criptoblock", + "symbol": "CBK", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002570", + "status": "abandoned", + "id": "1002570" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002570/logo.png b/blockchains/tron/assets/1002570/logo.png new file mode 100644 index 00000000..0fc5f2e5 Binary files /dev/null and b/blockchains/tron/assets/1002570/logo.png differ diff --git a/blockchains/tron/assets/1002573/info.json b/blockchains/tron/assets/1002573/info.json new file mode 100644 index 00000000..0bbfc89b --- /dev/null +++ b/blockchains/tron/assets/1002573/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTCX", + "symbol": "BTCX", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002573", + "status": "abandoned", + "id": "1002573" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002573/logo.png b/blockchains/tron/assets/1002573/logo.png new file mode 100644 index 00000000..62ee7d49 Binary files /dev/null and b/blockchains/tron/assets/1002573/logo.png differ diff --git a/blockchains/tron/assets/1002575/info.json b/blockchains/tron/assets/1002575/info.json new file mode 100644 index 00000000..aac27c00 --- /dev/null +++ b/blockchains/tron/assets/1002575/info.json @@ -0,0 +1,11 @@ +{ + "name": "DarkMatter", + "symbol": "DMX", + "type": "TRC10", + "decimals": 6, + "description": "Dark Matter is the token utilized by Moon Marketing to spread block-chain technology across the broad gaming community.", + "website": "https://www.moonmarketing.info/", + "explorer": "https://tronscan.io/#/token/1002575", + "status": "active", + "id": "1002575" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002575/logo.png b/blockchains/tron/assets/1002575/logo.png new file mode 100644 index 00000000..0a30d1ea Binary files /dev/null and b/blockchains/tron/assets/1002575/logo.png differ diff --git a/blockchains/tron/assets/1002578/info.json b/blockchains/tron/assets/1002578/info.json new file mode 100644 index 00000000..730edd88 --- /dev/null +++ b/blockchains/tron/assets/1002578/info.json @@ -0,0 +1,11 @@ +{ + "name": "IDA", + "symbol": "IDA", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002578", + "status": "abandoned", + "id": "1002578" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002578/logo.png b/blockchains/tron/assets/1002578/logo.png new file mode 100644 index 00000000..e29ea9a6 Binary files /dev/null and b/blockchains/tron/assets/1002578/logo.png differ diff --git a/blockchains/tron/assets/1002605/info.json b/blockchains/tron/assets/1002605/info.json new file mode 100644 index 00000000..326695ac --- /dev/null +++ b/blockchains/tron/assets/1002605/info.json @@ -0,0 +1,11 @@ +{ + "name": "Blockclass", + "symbol": "BLC", + "type": "TRC10", + "decimals": 2, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002605", + "status": "abandoned", + "id": "1002605" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002605/logo.png b/blockchains/tron/assets/1002605/logo.png new file mode 100644 index 00000000..7fd8650e Binary files /dev/null and b/blockchains/tron/assets/1002605/logo.png differ diff --git a/blockchains/tron/assets/1002633/info.json b/blockchains/tron/assets/1002633/info.json new file mode 100644 index 00000000..188ec635 --- /dev/null +++ b/blockchains/tron/assets/1002633/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronPlace", + "symbol": "TPL", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002633", + "status": "abandoned", + "id": "1002633" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002633/logo.png b/blockchains/tron/assets/1002633/logo.png new file mode 100644 index 00000000..cedbc337 Binary files /dev/null and b/blockchains/tron/assets/1002633/logo.png differ diff --git a/blockchains/tron/assets/1002671/info.json b/blockchains/tron/assets/1002671/info.json new file mode 100644 index 00000000..a41efbcb --- /dev/null +++ b/blockchains/tron/assets/1002671/info.json @@ -0,0 +1,11 @@ +{ + "name": "WorldTravelBlockchain", + "symbol": "WTB", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002671", + "status": "abandoned", + "id": "1002671" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002671/logo.png b/blockchains/tron/assets/1002671/logo.png new file mode 100644 index 00000000..e520661a Binary files /dev/null and b/blockchains/tron/assets/1002671/logo.png differ diff --git a/blockchains/tron/assets/1002672/info.json b/blockchains/tron/assets/1002672/info.json new file mode 100644 index 00000000..88fc3a9f --- /dev/null +++ b/blockchains/tron/assets/1002672/info.json @@ -0,0 +1,11 @@ +{ + "name": "SHIPS", + "symbol": "SHIPS", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002672", + "status": "spam", + "id": "1002672" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002672/logo.png b/blockchains/tron/assets/1002672/logo.png new file mode 100644 index 00000000..f2e6ec3a Binary files /dev/null and b/blockchains/tron/assets/1002672/logo.png differ diff --git a/blockchains/tron/assets/1002683/info.json b/blockchains/tron/assets/1002683/info.json new file mode 100644 index 00000000..99a333ce --- /dev/null +++ b/blockchains/tron/assets/1002683/info.json @@ -0,0 +1,11 @@ +{ + "name": "HappyEX", + "symbol": "HappyEX", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002683", + "status": "abandoned", + "id": "1002683" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002683/logo.png b/blockchains/tron/assets/1002683/logo.png new file mode 100644 index 00000000..bbcf2752 Binary files /dev/null and b/blockchains/tron/assets/1002683/logo.png differ diff --git a/blockchains/tron/assets/1002762/info.json b/blockchains/tron/assets/1002762/info.json new file mode 100644 index 00000000..9385a558 --- /dev/null +++ b/blockchains/tron/assets/1002762/info.json @@ -0,0 +1,11 @@ +{ + "name": "Alphard", + "symbol": "AHD", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002762", + "status": "abandoned", + "id": "1002762" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002762/logo.png b/blockchains/tron/assets/1002762/logo.png new file mode 100644 index 00000000..bc50b3eb Binary files /dev/null and b/blockchains/tron/assets/1002762/logo.png differ diff --git a/blockchains/tron/assets/1002795/info.json b/blockchains/tron/assets/1002795/info.json new file mode 100644 index 00000000..0bc88dfe --- /dev/null +++ b/blockchains/tron/assets/1002795/info.json @@ -0,0 +1,11 @@ +{ + "name": "LootUp", + "symbol": "LOOT", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002795", + "status": "abandoned", + "id": "1002795" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002795/logo.png b/blockchains/tron/assets/1002795/logo.png new file mode 100644 index 00000000..09bd3eec Binary files /dev/null and b/blockchains/tron/assets/1002795/logo.png differ diff --git a/blockchains/tron/assets/1002831/info.json b/blockchains/tron/assets/1002831/info.json new file mode 100644 index 00000000..d5ed9f0c --- /dev/null +++ b/blockchains/tron/assets/1002831/info.json @@ -0,0 +1,11 @@ +{ + "name": "BattleHashes", + "symbol": "BHS", + "type": "TRC10", + "decimals": 0, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002831", + "status": "spam", + "id": "1002831" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002831/logo.png b/blockchains/tron/assets/1002831/logo.png new file mode 100644 index 00000000..a5222c99 Binary files /dev/null and b/blockchains/tron/assets/1002831/logo.png differ diff --git a/blockchains/tron/assets/1002939/info.json b/blockchains/tron/assets/1002939/info.json new file mode 100644 index 00000000..999e7272 --- /dev/null +++ b/blockchains/tron/assets/1002939/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRONFamily", + "symbol": "FAT", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "https://TRON-Family.de", + "explorer": "https://tronscan.io/#/token/1002939", + "status": "active", + "id": "1002939" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002939/logo.png b/blockchains/tron/assets/1002939/logo.png new file mode 100644 index 00000000..bab714d9 Binary files /dev/null and b/blockchains/tron/assets/1002939/logo.png differ diff --git a/blockchains/tron/assets/1002963/info.json b/blockchains/tron/assets/1002963/info.json new file mode 100644 index 00000000..320e0fd7 --- /dev/null +++ b/blockchains/tron/assets/1002963/info.json @@ -0,0 +1,11 @@ +{ + "name": "TURBOTHUNDERPAY", + "symbol": "TTRP", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1002963", + "status": "spam", + "id": "1002963" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002963/logo.png b/blockchains/tron/assets/1002963/logo.png new file mode 100644 index 00000000..9fa406e7 Binary files /dev/null and b/blockchains/tron/assets/1002963/logo.png differ diff --git a/blockchains/tron/assets/1002992/info.json b/blockchains/tron/assets/1002992/info.json new file mode 100644 index 00000000..8837eaa9 --- /dev/null +++ b/blockchains/tron/assets/1002992/info.json @@ -0,0 +1,11 @@ +{ + "name": "GrafenoCoin", + "symbol": "GFNC", + "type": "TRC10", + "decimals": 6, + "description": "GrafenoCoin, GFNC, created to encourage research on Graphene", + "website": "https://grafenocoin.com", + "explorer": "https://tronscan.io/#/token/1002992", + "status": "active", + "id": "1002992" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1002992/logo.png b/blockchains/tron/assets/1002992/logo.png new file mode 100644 index 00000000..af1a2c05 Binary files /dev/null and b/blockchains/tron/assets/1002992/logo.png differ diff --git a/blockchains/tron/assets/1003093/info.json b/blockchains/tron/assets/1003093/info.json new file mode 100644 index 00000000..215fd6a0 --- /dev/null +++ b/blockchains/tron/assets/1003093/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronSV", + "symbol": "TSV", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1003093", + "status": "abandoned", + "id": "1003093" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1003093/logo.png b/blockchains/tron/assets/1003093/logo.png new file mode 100644 index 00000000..7c00e43f Binary files /dev/null and b/blockchains/tron/assets/1003093/logo.png differ diff --git a/blockchains/tron/assets/1003095/info.json b/blockchains/tron/assets/1003095/info.json new file mode 100644 index 00000000..e053a0c8 --- /dev/null +++ b/blockchains/tron/assets/1003095/info.json @@ -0,0 +1,11 @@ +{ + "name": "Phoneum", + "symbol": "PHT", + "type": "TRC10", + "decimals": 2, + "description": "Phoneum is a true mobile-only cryptocurrency, designed to deliver a simplified user experience and platform that enables all users", + "website": "https://phoneum.io/", + "explorer": "https://tronscan.io/#/token/1003095", + "status": "active", + "id": "1003095" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1003095/logo.png b/blockchains/tron/assets/1003095/logo.png new file mode 100644 index 00000000..c8e5e9a3 Binary files /dev/null and b/blockchains/tron/assets/1003095/logo.png differ diff --git a/blockchains/tron/assets/1003097/info.json b/blockchains/tron/assets/1003097/info.json new file mode 100644 index 00000000..67687023 --- /dev/null +++ b/blockchains/tron/assets/1003097/info.json @@ -0,0 +1,11 @@ +{ + "name": "LRX", + "symbol": "LRX", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1003097", + "status": "abandoned", + "id": "1003097" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1003097/logo.png b/blockchains/tron/assets/1003097/logo.png new file mode 100644 index 00000000..6861230d Binary files /dev/null and b/blockchains/tron/assets/1003097/logo.png differ diff --git a/blockchains/tron/assets/1003123/info.json b/blockchains/tron/assets/1003123/info.json new file mode 100644 index 00000000..d900d4de --- /dev/null +++ b/blockchains/tron/assets/1003123/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZetBit", + "symbol": "ZBT", + "type": "TRC10", + "decimals": 6, + "description": "ZetBit is an open source peer-to-peer digital currency.", + "website": "https://tronscan.io/www.zetbit.io", + "explorer": "https://tronscan.io/#/token/1003123", + "status": "active", + "id": "1003123" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1003123/logo.png b/blockchains/tron/assets/1003123/logo.png new file mode 100644 index 00000000..ee275c7b Binary files /dev/null and b/blockchains/tron/assets/1003123/logo.png differ diff --git a/blockchains/tron/assets/1003134/info.json b/blockchains/tron/assets/1003134/info.json new file mode 100644 index 00000000..169603fc --- /dev/null +++ b/blockchains/tron/assets/1003134/info.json @@ -0,0 +1,18 @@ +{ + "name": "FREE coin", + "website": "https://www.FREEcoin.technology", + "description": "The FREE coin is the ideal start-to-crypto coin : large community, many exchangess and wallets, available on Ethereum and Tron.", + "explorer": "https://tronscan.io/#/token/1003134", + "research": "https://bitcointalk.org/index.php?topic=3267883.msg34055291#msg34055291", + "type": "TRC10", + "symbol": "FREE", + "decimals": 6, + "status": "active", + "id": "1003134", + "links": [ + { + "name": "whitepaper", + "url": "https://freecoin.technology/wp-content/uploads/2020/07/WHITEPAPER-2019-12.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/1003134/logo.png b/blockchains/tron/assets/1003134/logo.png new file mode 100644 index 00000000..37feb219 Binary files /dev/null and b/blockchains/tron/assets/1003134/logo.png differ diff --git a/blockchains/tron/assets/1003148/info.json b/blockchains/tron/assets/1003148/info.json new file mode 100644 index 00000000..85e043b5 --- /dev/null +++ b/blockchains/tron/assets/1003148/info.json @@ -0,0 +1,11 @@ +{ + "name": "Txc", + "symbol": "Txc", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1003148", + "status": "abandoned", + "id": "1003148" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1003148/logo.png b/blockchains/tron/assets/1003148/logo.png new file mode 100644 index 00000000..7e265451 Binary files /dev/null and b/blockchains/tron/assets/1003148/logo.png differ diff --git a/blockchains/tron/assets/1003152/info.json b/blockchains/tron/assets/1003152/info.json new file mode 100644 index 00000000..a9f19cb2 --- /dev/null +++ b/blockchains/tron/assets/1003152/info.json @@ -0,0 +1,11 @@ +{ + "name": "GVND", + "symbol": "GVND", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1003152", + "status": "abandoned", + "id": "1003152" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1003152/logo.png b/blockchains/tron/assets/1003152/logo.png new file mode 100644 index 00000000..ad21fdc3 Binary files /dev/null and b/blockchains/tron/assets/1003152/logo.png differ diff --git a/blockchains/tron/assets/1003257/info.json b/blockchains/tron/assets/1003257/info.json new file mode 100644 index 00000000..88003561 --- /dev/null +++ b/blockchains/tron/assets/1003257/info.json @@ -0,0 +1,23 @@ +{ + "name": "Vevocoin", + "website": "https://vevocoin.com/", + "telegram": "https://t.me/vevonews", + "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", + "symbol": "VEVO", + "decimals": 6, + "status": "active", + "id": "1003257", + "links": [ + { + "name": "github", + "url": "https://github.com/vevodev" + }, + { + "name": "whitepaper", + "url": "https://vevocoin.com/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/1003257/logo.png b/blockchains/tron/assets/1003257/logo.png new file mode 100644 index 00000000..0653f49f Binary files /dev/null and b/blockchains/tron/assets/1003257/logo.png differ diff --git a/blockchains/tron/assets/1003406/info.json b/blockchains/tron/assets/1003406/info.json new file mode 100644 index 00000000..9ba26b01 --- /dev/null +++ b/blockchains/tron/assets/1003406/info.json @@ -0,0 +1,11 @@ +{ + "name": "PeerCash", + "symbol": "PEER", + "type": "TRC10", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token/1003406", + "status": "spam", + "id": "1003406" +} \ No newline at end of file diff --git a/blockchains/tron/assets/1003406/logo.png b/blockchains/tron/assets/1003406/logo.png new file mode 100644 index 00000000..beed094c Binary files /dev/null and b/blockchains/tron/assets/1003406/logo.png differ diff --git a/blockchains/tron/assets/1003611/info.json b/blockchains/tron/assets/1003611/info.json new file mode 100644 index 00000000..0eb6b5b0 --- /dev/null +++ b/blockchains/tron/assets/1003611/info.json @@ -0,0 +1,21 @@ +{ + "name": "Toman", + "website": "https://tomantoken.info/", + "description": "Simple buying and selling of goods online.", + "explorer": "https://tronscan.io/#/token/1003611", + "type": "TRC10", + "symbol": "TMN", + "decimals": 6, + "status": "active", + "id": "1003611", + "links": [ + { + "name": "x", + "url": "https://x.com/tomantoken" + }, + { + "name": "telegram", + "url": "https://t.me/tomantoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/1003611/logo.png b/blockchains/tron/assets/1003611/logo.png new file mode 100644 index 00000000..6ef291b7 Binary files /dev/null and b/blockchains/tron/assets/1003611/logo.png differ diff --git a/blockchains/tron/assets/1004117/info.json b/blockchains/tron/assets/1004117/info.json new file mode 100644 index 00000000..242aaffe --- /dev/null +++ b/blockchains/tron/assets/1004117/info.json @@ -0,0 +1,56 @@ +{ + "name": "The Flash Currency", + "type": "TRC10", + "symbol": "TFC", + "decimals": 6, + "website": "https://theflashcurrency.com/", + "description": "TheFlashCurrencyTFC The flash currency is a new token built according to the TRON standard TRC10 standard", + "explorer": "https://tronscan.io/#/token/1004117", + "status": "active", + "id": "1004117", + "links": [ + { + "name": "x", + "url": "https://x.com/FlashTfc" + }, + { + "name": "github", + "url": "https://github.com/theflashcurrency" + }, + { + "name": "telegram", + "url": "https://t.me/flashcurrencytfc" + }, + { + "name": "telegram_news", + "url": "https://t.me/flashtfc" + }, + { + "name": "blog", + "url": "https://theflashcurrency.com/news/" + }, + { + "name": "whitepaper", + "url": "https://theflashcurrency.com/white-paper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/flash-currency/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/ty_gia/theflashcurrency" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC3_VbRIsYWPgzaC9Hu8HTgg" + }, + { + "name": "facebook", + "url": "https://facebook.com/groups/1046965489139636/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/1004117/logo.png b/blockchains/tron/assets/1004117/logo.png new file mode 100644 index 00000000..d10980f8 Binary files /dev/null and b/blockchains/tron/assets/1004117/logo.png differ diff --git a/blockchains/tron/assets/TA6JuPYq2bFCRdTGyQtdTa2Xj5B4NB7sm1/info.json b/blockchains/tron/assets/TA6JuPYq2bFCRdTGyQtdTa2Xj5B4NB7sm1/info.json new file mode 100644 index 00000000..fda638fc --- /dev/null +++ b/blockchains/tron/assets/TA6JuPYq2bFCRdTGyQtdTa2Xj5B4NB7sm1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Power Cash", + "symbol": "PRCH", + "type": "TRC20", + "decimals": 6, + "description": "Power Cash is a low-fee consensus platform designed for real estate asset management.", + "website": "https://PrCh.One/", + "explorer": "https://tronscan.io/#/token20/TA6JuPYq2bFCRdTGyQtdTa2Xj5B4NB7sm1", + "status": "active", + "id": "TA6JuPYq2bFCRdTGyQtdTa2Xj5B4NB7sm1" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TA6JuPYq2bFCRdTGyQtdTa2Xj5B4NB7sm1/logo.png b/blockchains/tron/assets/TA6JuPYq2bFCRdTGyQtdTa2Xj5B4NB7sm1/logo.png new file mode 100644 index 00000000..1c35dc58 Binary files /dev/null and b/blockchains/tron/assets/TA6JuPYq2bFCRdTGyQtdTa2Xj5B4NB7sm1/logo.png differ diff --git a/blockchains/tron/assets/TAFjULxiVgT4qWk6UZwjqwZXTSaGaqnVp4/info.json b/blockchains/tron/assets/TAFjULxiVgT4qWk6UZwjqwZXTSaGaqnVp4/info.json new file mode 100644 index 00000000..e1221040 --- /dev/null +++ b/blockchains/tron/assets/TAFjULxiVgT4qWk6UZwjqwZXTSaGaqnVp4/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitTorrent", + "symbol": "BTT", + "type": "TRC20", + "decimals": 18, + "description": "BitTorrent Chain is a brand-new heterogeneous cross-chain interoperability protocol, which leverages sidechains for the scaling of smart contracts.", + "website": "https://bittorrentchain.io", + "explorer": "https://tronscan.io/#/token20/TAFjULxiVgT4qWk6UZwjqwZXTSaGaqnVp4", + "status": "active", + "id": "TAFjULxiVgT4qWk6UZwjqwZXTSaGaqnVp4" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TAFjULxiVgT4qWk6UZwjqwZXTSaGaqnVp4/logo.png b/blockchains/tron/assets/TAFjULxiVgT4qWk6UZwjqwZXTSaGaqnVp4/logo.png new file mode 100644 index 00000000..75fb510b Binary files /dev/null and b/blockchains/tron/assets/TAFjULxiVgT4qWk6UZwjqwZXTSaGaqnVp4/logo.png differ diff --git a/blockchains/tron/assets/TAP7qf8Ao26ZAKYS5E6SGozUNoSLvBHsGa/info.json b/blockchains/tron/assets/TAP7qf8Ao26ZAKYS5E6SGozUNoSLvBHsGa/info.json new file mode 100644 index 00000000..15275bf7 --- /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 00000000..a5774fb5 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 00000000..9e27c33b --- /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 00000000..bc33814d 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 00000000..0cb18eba --- /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/TAVDwcRTUpfibh5rr6GoE19FArsaHBfcur/info.json b/blockchains/tron/assets/TAVDwcRTUpfibh5rr6GoE19FArsaHBfcur/info.json new file mode 100644 index 00000000..5949de87 --- /dev/null +++ b/blockchains/tron/assets/TAVDwcRTUpfibh5rr6GoE19FArsaHBfcur/info.json @@ -0,0 +1,11 @@ +{ + "name": "TronWow", + "symbol": "WOW", + "type": "TRC20", + "decimals": 9, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TAVDwcRTUpfibh5rr6GoE19FArsaHBfcur", + "status": "abandoned", + "id": "TAVDwcRTUpfibh5rr6GoE19FArsaHBfcur" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TAVDwcRTUpfibh5rr6GoE19FArsaHBfcur/logo.png b/blockchains/tron/assets/TAVDwcRTUpfibh5rr6GoE19FArsaHBfcur/logo.png new file mode 100644 index 00000000..573daada Binary files /dev/null and b/blockchains/tron/assets/TAVDwcRTUpfibh5rr6GoE19FArsaHBfcur/logo.png differ diff --git a/blockchains/tron/assets/TAXgiRcychd5a8ZGXnUJMbKgUNUJBqgZUv/info.json b/blockchains/tron/assets/TAXgiRcychd5a8ZGXnUJMbKgUNUJBqgZUv/info.json new file mode 100644 index 00000000..3d5b8ea9 --- /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 00000000..4b4b3fec 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 00000000..06a16aca --- /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 00000000..d63f9043 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 new file mode 100644 index 00000000..7bf11fd0 --- /dev/null +++ b/blockchains/tron/assets/TAoA331n3iKDkR62kAZ4H2n3vNL7y3d8x9/info.json @@ -0,0 +1,44 @@ +{ + "name": "BemChain", + "type": "TRC20", + "symbol": "BCN", + "decimals": 6, + "website": "https://bcntoken.com/", + "description": "The overall purpose of the BEM Foundation is to bridge the gap between Network Marketing and Blockchain The Bemchain suite is one of the ICO projects of the BEM Foundation, which sells BCN tokens.", + "explorer": "https://tronscan.io/#/token20/TAoA331n3iKDkR62kAZ4H2n3vNL7y3d8x9", + "status": "active", + "id": "TAoA331n3iKDkR62kAZ4H2n3vNL7y3d8x9", + "links": [ + { + "name": "x", + "url": "https://x.com/bcntoken" + }, + { + "name": "github", + "url": "https://github.com/bemchain/bcn" + }, + { + "name": "telegram", + "url": "https://t.me/bemfoundation" + }, + { + "name": "whitepaper", + "url": "https://bcntoken.com/whitepaper/whitepaper_V0.1.2.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCMM-PFhrYmMOpj98XVlNPlw" + }, + { + "name": "discord", + "url": "https://discord.com/bemfoundation" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/bemfoundation" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TAoA331n3iKDkR62kAZ4H2n3vNL7y3d8x9/logo.png b/blockchains/tron/assets/TAoA331n3iKDkR62kAZ4H2n3vNL7y3d8x9/logo.png new file mode 100644 index 00000000..e5d363ed Binary files /dev/null and b/blockchains/tron/assets/TAoA331n3iKDkR62kAZ4H2n3vNL7y3d8x9/logo.png differ diff --git a/blockchains/tron/assets/TAt4ufXFaHZAEV44ev7onThjTnF61SEaEM/info.json b/blockchains/tron/assets/TAt4ufXFaHZAEV44ev7onThjTnF61SEaEM/info.json new file mode 100644 index 00000000..e697c767 --- /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 00000000..2c6e3fac Binary files /dev/null and b/blockchains/tron/assets/TAt4ufXFaHZAEV44ev7onThjTnF61SEaEM/logo.png differ diff --git a/blockchains/tron/assets/TAvQRWviGyfbjcbbDaLVrh7T3tfPK6N5He/info.json b/blockchains/tron/assets/TAvQRWviGyfbjcbbDaLVrh7T3tfPK6N5He/info.json new file mode 100644 index 00000000..64a0a645 --- /dev/null +++ b/blockchains/tron/assets/TAvQRWviGyfbjcbbDaLVrh7T3tfPK6N5He/info.json @@ -0,0 +1,11 @@ +{ + "name": "DYIToken", + "symbol": "DYI", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TAvQRWviGyfbjcbbDaLVrh7T3tfPK6N5He", + "status": "spam", + "id": "TAvQRWviGyfbjcbbDaLVrh7T3tfPK6N5He" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TAvQRWviGyfbjcbbDaLVrh7T3tfPK6N5He/logo.png b/blockchains/tron/assets/TAvQRWviGyfbjcbbDaLVrh7T3tfPK6N5He/logo.png new file mode 100644 index 00000000..136f5801 Binary files /dev/null and b/blockchains/tron/assets/TAvQRWviGyfbjcbbDaLVrh7T3tfPK6N5He/logo.png differ diff --git a/blockchains/tron/assets/TAzpJHxxgJd8f5AKjzndEndH3S9pzNUM5W/info.json b/blockchains/tron/assets/TAzpJHxxgJd8f5AKjzndEndH3S9pzNUM5W/info.json new file mode 100644 index 00000000..9333bac2 --- /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 00000000..c6cefa40 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 00000000..6667392b --- /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 00000000..5a63b362 Binary files /dev/null and b/blockchains/tron/assets/TB6SgnNZyqz2KnFRw6yQM7AqVSCphfvBXy/logo.png differ diff --git a/blockchains/tron/assets/TBnY2jGuuYYF4j7kp1otQizqF5wbEhFKxA/info.json b/blockchains/tron/assets/TBnY2jGuuYYF4j7kp1otQizqF5wbEhFKxA/info.json new file mode 100644 index 00000000..2c492d55 --- /dev/null +++ b/blockchains/tron/assets/TBnY2jGuuYYF4j7kp1otQizqF5wbEhFKxA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Zupi Coin", + "website": "https://zupicoin.com", + "description": "ZUPI is a blockchain-based TRC-20 utility token that supports the features of decentralized applications and protocols", + "explorer": "https://tronscan.io/#/token20/TBnY2jGuuYYF4j7kp1otQizqF5wbEhFKxA", + "symbol": "ZUPI", + "type": "TRC20", + "decimals": 6, + "status": "active", + "id": "TBnY2jGuuYYF4j7kp1otQizqF5wbEhFKxA" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TBnY2jGuuYYF4j7kp1otQizqF5wbEhFKxA/logo.png b/blockchains/tron/assets/TBnY2jGuuYYF4j7kp1otQizqF5wbEhFKxA/logo.png new file mode 100644 index 00000000..aaf85092 Binary files /dev/null and b/blockchains/tron/assets/TBnY2jGuuYYF4j7kp1otQizqF5wbEhFKxA/logo.png differ diff --git a/blockchains/tron/assets/TBwoSTyywvLrgjSgaatxrBhxt3DGpVuENh/info.json b/blockchains/tron/assets/TBwoSTyywvLrgjSgaatxrBhxt3DGpVuENh/info.json new file mode 100644 index 00000000..b256e356 --- /dev/null +++ b/blockchains/tron/assets/TBwoSTyywvLrgjSgaatxrBhxt3DGpVuENh/info.json @@ -0,0 +1,12 @@ +{ + "name": "SEED", + "website": "https://sesameseed.org", + "description": "Sesameseed is a blockchain community that aims to provide fair and transparent representation in delegated governance.", + "explorer": "https://tronscan.io/#/token20/TBwoSTyywvLrgjSgaatxrBhxt3DGpVuENh", + "research": "", + "type": "TRC20", + "symbol": "SEED", + "decimals": 6, + "status": "active", + "id": "TBwoSTyywvLrgjSgaatxrBhxt3DGpVuENh" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TBwoSTyywvLrgjSgaatxrBhxt3DGpVuENh/logo.png b/blockchains/tron/assets/TBwoSTyywvLrgjSgaatxrBhxt3DGpVuENh/logo.png new file mode 100644 index 00000000..880d99ef Binary files /dev/null and b/blockchains/tron/assets/TBwoSTyywvLrgjSgaatxrBhxt3DGpVuENh/logo.png differ diff --git a/blockchains/tron/assets/TBzxhCtwhG858UPYJaRHc4q7WvAsbYN16D/info.json b/blockchains/tron/assets/TBzxhCtwhG858UPYJaRHc4q7WvAsbYN16D/info.json new file mode 100644 index 00000000..b7d8e918 --- /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 00000000..4b5abed4 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 00000000..3614d473 --- /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 00000000..1cd980d9 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 new file mode 100644 index 00000000..63e270d5 --- /dev/null +++ b/blockchains/tron/assets/TCDgp5bwtixaShPifUm7HpZ71C1pe6zif1/info.json @@ -0,0 +1,29 @@ +{ + "name": "NETCOINCAPITAL", + "website": "https://netcoincapital.com", + "description": "NetcoinCapital is blockchain based project it's made for financial service, technology & future", + "explorer": "https://tronscan.io/#/token20/TCDgp5bwtixaShPifUm7HpZ71C1pe6zif1", + "type": "TRC20", + "symbol": "NCC", + "decimals": 6, + "status": "active", + "id": "TCDgp5bwtixaShPifUm7HpZ71C1pe6zif1", + "links": [ + { + "name": "github", + "url": "https://github.com/netcoincapital/" + }, + { + "name": "x", + "url": "https://x.com/ncctoken" + }, + { + "name": "medium", + "url": "https://medium.com/netcoincapital" + }, + { + "name": "telegram", + "url": "https://t.me/ncc_trading" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TCDgp5bwtixaShPifUm7HpZ71C1pe6zif1/logo.png b/blockchains/tron/assets/TCDgp5bwtixaShPifUm7HpZ71C1pe6zif1/logo.png new file mode 100644 index 00000000..614e383c Binary files /dev/null and b/blockchains/tron/assets/TCDgp5bwtixaShPifUm7HpZ71C1pe6zif1/logo.png differ diff --git a/blockchains/tron/assets/TCFLL5dx5ZJdKnWuesXxi1VPwjLVmWZZy9/info.json b/blockchains/tron/assets/TCFLL5dx5ZJdKnWuesXxi1VPwjLVmWZZy9/info.json new file mode 100644 index 00000000..267dc9a7 --- /dev/null +++ b/blockchains/tron/assets/TCFLL5dx5ZJdKnWuesXxi1VPwjLVmWZZy9/info.json @@ -0,0 +1,15 @@ +{ + "name": "JUST", + "website": "https://just.network", + "description": "JUST aims to build a fair, decentralized financial system that provides stablecoin lending and governance mechanisms for users around the world.", + "explorer": "https://tronscan.io/#/token20/TCFLL5dx5ZJdKnWuesXxi1VPwjLVmWZZy9", + "research": "https://research.binance.com/en/projects/just", + "type": "TRC20", + "symbol": "JST", + "decimals": 18, + "status": "active", + "id": "TCFLL5dx5ZJdKnWuesXxi1VPwjLVmWZZy9", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TCFLL5dx5ZJdKnWuesXxi1VPwjLVmWZZy9/logo.png b/blockchains/tron/assets/TCFLL5dx5ZJdKnWuesXxi1VPwjLVmWZZy9/logo.png new file mode 100644 index 00000000..b2ab054b Binary files /dev/null and b/blockchains/tron/assets/TCFLL5dx5ZJdKnWuesXxi1VPwjLVmWZZy9/logo.png differ diff --git a/blockchains/tron/assets/TCLMbjq3kWidS2Cwr34jy9WL6Vehfu7LXr/info.json b/blockchains/tron/assets/TCLMbjq3kWidS2Cwr34jy9WL6Vehfu7LXr/info.json new file mode 100644 index 00000000..caf77ffc --- /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 00000000..86532032 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 new file mode 100644 index 00000000..9a51ae32 --- /dev/null +++ b/blockchains/tron/assets/TCMwzYUUCxLkTNpXjkYSBgXgqXwt7KJ82y/info.json @@ -0,0 +1,41 @@ +{ + "name": "TTCOIN", + "website": "https://ttcoin.info", + "description": "TTcoin is designed for use in TTcoin brands and organizations.", + "explorer": "https://tronscan.io/#/token20/TCMwzYUUCxLkTNpXjkYSBgXgqXwt7KJ82y", + "type": "TRC20", + "symbol": "TC", + "decimals": 4, + "status": "active", + "id": "TCMwzYUUCxLkTNpXjkYSBgXgqXwt7KJ82y", + "links": [ + { + "name": "whitepaper", + "url": "https://github.com/TTCOIN-TC/tc/raw/main/whitepaper/tc-whitepaper-v2-EN.pdf" + }, + { + "name": "x", + "url": "https://x.com/ttcoinofficial" + }, + { + "name": "telegram", + "url": "https://t.me/ttcoinworld" + }, + { + "name": "facebook", + "url": "https://facebook.com/ttcoinofficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/ttcoinofficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCw4ctJY-VD12hwHuHl1D9kw" + }, + { + "name": "github", + "url": "https://github.com/TTCOIN-TC/tc" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TCMwzYUUCxLkTNpXjkYSBgXgqXwt7KJ82y/logo.png b/blockchains/tron/assets/TCMwzYUUCxLkTNpXjkYSBgXgqXwt7KJ82y/logo.png new file mode 100644 index 00000000..2edbc0b8 Binary files /dev/null and b/blockchains/tron/assets/TCMwzYUUCxLkTNpXjkYSBgXgqXwt7KJ82y/logo.png differ diff --git a/blockchains/tron/assets/TCNja6oW3FrN7YfxtpBsckGWc1TLUDoWzo/info.json b/blockchains/tron/assets/TCNja6oW3FrN7YfxtpBsckGWc1TLUDoWzo/info.json new file mode 100644 index 00000000..f4f30118 --- /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 00000000..d5c48229 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 00000000..ce9ed528 --- /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 00000000..a68d2ff9 Binary files /dev/null and b/blockchains/tron/assets/TCR2f2EZEriqFV2b6nfnsZ7TUcVRyx8U8S/logo.png differ diff --git a/blockchains/tron/assets/TCRhVHPv6efvXgogNMhiunAMXFKcMmv2pF/info.json b/blockchains/tron/assets/TCRhVHPv6efvXgogNMhiunAMXFKcMmv2pF/info.json new file mode 100644 index 00000000..861d7631 --- /dev/null +++ b/blockchains/tron/assets/TCRhVHPv6efvXgogNMhiunAMXFKcMmv2pF/info.json @@ -0,0 +1,11 @@ +{ + "name": "Enme Token", + "symbol": "EME", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TCRhVHPv6efvXgogNMhiunAMXFKcMmv2pF", + "status": "abandoned", + "id": "TCRhVHPv6efvXgogNMhiunAMXFKcMmv2pF" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TCRhVHPv6efvXgogNMhiunAMXFKcMmv2pF/logo.png b/blockchains/tron/assets/TCRhVHPv6efvXgogNMhiunAMXFKcMmv2pF/logo.png new file mode 100644 index 00000000..b17da696 Binary files /dev/null and b/blockchains/tron/assets/TCRhVHPv6efvXgogNMhiunAMXFKcMmv2pF/logo.png differ diff --git a/blockchains/tron/assets/TCVJcRqEEpkbs2iSJtMumoTqPxrKPwCLaW/info.json b/blockchains/tron/assets/TCVJcRqEEpkbs2iSJtMumoTqPxrKPwCLaW/info.json new file mode 100644 index 00000000..6a32d6c1 --- /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 00000000..23943fce 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 00000000..f1010755 --- /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 00000000..3ff644e1 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 00000000..7b667299 --- /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 00000000..523f7660 Binary files /dev/null and b/blockchains/tron/assets/TCeEjxAJUxfPCoWwuKxgo1mFwAASsj421j/logo.png differ diff --git a/blockchains/tron/assets/TCfLxS9xHxH8auBL3T8pf3NFTZhsxy4Ncg/info.json b/blockchains/tron/assets/TCfLxS9xHxH8auBL3T8pf3NFTZhsxy4Ncg/info.json new file mode 100644 index 00000000..008575b9 --- /dev/null +++ b/blockchains/tron/assets/TCfLxS9xHxH8auBL3T8pf3NFTZhsxy4Ncg/info.json @@ -0,0 +1,11 @@ +{ + "name": "Pallapay", + "type": "TRC20", + "symbol": "PALLA", + "decimals": 8, + "website": "https://www.pallapay.com/", + "description": "Pallapay is the only payments solution in UAE which allows businesses to accept, process and disburse payments with its product suite.", + "explorer": "https://tronscan.io/#/token20/TCfLxS9xHxH8auBL3T8pf3NFTZhsxy4Ncg", + "status": "active", + "id": "TCfLxS9xHxH8auBL3T8pf3NFTZhsxy4Ncg" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TCfLxS9xHxH8auBL3T8pf3NFTZhsxy4Ncg/logo.png b/blockchains/tron/assets/TCfLxS9xHxH8auBL3T8pf3NFTZhsxy4Ncg/logo.png new file mode 100644 index 00000000..5e3e2f53 Binary files /dev/null and b/blockchains/tron/assets/TCfLxS9xHxH8auBL3T8pf3NFTZhsxy4Ncg/logo.png differ diff --git a/blockchains/tron/assets/TCwM615RL1PrB8hJnAYaPqx2CxJj7D8urh/info.json b/blockchains/tron/assets/TCwM615RL1PrB8hJnAYaPqx2CxJj7D8urh/info.json new file mode 100644 index 00000000..8aa06a3b --- /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 00000000..67bdfefe 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 00000000..29c6111a --- /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 00000000..5968d83b Binary files /dev/null and b/blockchains/tron/assets/TD7Q8YVhptzqfvpS5bk8XvSqYaC92ZkbX5/logo.png differ diff --git a/blockchains/tron/assets/TDFRfJLThnLXgtEBBBmA2LGwz3Ex9dAMCE/info.json b/blockchains/tron/assets/TDFRfJLThnLXgtEBBBmA2LGwz3Ex9dAMCE/info.json new file mode 100644 index 00000000..cf47b806 --- /dev/null +++ b/blockchains/tron/assets/TDFRfJLThnLXgtEBBBmA2LGwz3Ex9dAMCE/info.json @@ -0,0 +1,11 @@ +{ + "name": "CryptoBharatCoin", + "symbol": "CBC", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TDFRfJLThnLXgtEBBBmA2LGwz3Ex9dAMCE", + "status": "abandoned", + "id": "TDFRfJLThnLXgtEBBBmA2LGwz3Ex9dAMCE" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TDFRfJLThnLXgtEBBBmA2LGwz3Ex9dAMCE/logo.png b/blockchains/tron/assets/TDFRfJLThnLXgtEBBBmA2LGwz3Ex9dAMCE/logo.png new file mode 100644 index 00000000..098f081d Binary files /dev/null and b/blockchains/tron/assets/TDFRfJLThnLXgtEBBBmA2LGwz3Ex9dAMCE/logo.png differ diff --git a/blockchains/tron/assets/TDVHfwqTFimf8bAYSkzvQe3vwArRDMdcFh/info.json b/blockchains/tron/assets/TDVHfwqTFimf8bAYSkzvQe3vwArRDMdcFh/info.json new file mode 100644 index 00000000..c890d577 --- /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 00000000..ea955b96 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 new file mode 100644 index 00000000..484a5d26 --- /dev/null +++ b/blockchains/tron/assets/TDXJ1dSPLsN52jhP32NvVyhQ5X265BNU5c/info.json @@ -0,0 +1,30 @@ +{ + "name": "RLE", + "website": "https://richlabexchange.com/", + "description": "Richlab exchange is a cryptocurrency exchange, opening a new era. With the integration of the following services: 1. Shopping 2. Commercial auctions 3. Equity investment 4. Game blockchain 5. Service payment system. All of the above services are integrated", + "explorer": "https://tronscan.io/#/token20/TDXJ1dSPLsN52jhP32NvVyhQ5X265BNU5c", + "research": "https://richlabexchange.com/", + "type": "TRC20", + "symbol": "RLE", + "decimals": 6, + "status": "active", + "id": "TDXJ1dSPLsN52jhP32NvVyhQ5X265BNU5c", + "links": [ + { + "name": "x", + "url": "https://x.com/richlabexchange" + }, + { + "name": "telegram", + "url": "https://t.me/RLEswap" + }, + { + "name": "facebook", + "url": "https://facebook.com/RichLabExChange" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1F_0cjSWeYfT8S9wN_lQe0qUvRwOl9Vwz/view" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TDXJ1dSPLsN52jhP32NvVyhQ5X265BNU5c/logo.png b/blockchains/tron/assets/TDXJ1dSPLsN52jhP32NvVyhQ5X265BNU5c/logo.png new file mode 100644 index 00000000..c37a2f44 Binary files /dev/null and b/blockchains/tron/assets/TDXJ1dSPLsN52jhP32NvVyhQ5X265BNU5c/logo.png differ diff --git a/blockchains/tron/assets/TDfWA29BscN2wdhQ6PVWEajxEn8EU9HQ2z/info.json b/blockchains/tron/assets/TDfWA29BscN2wdhQ6PVWEajxEn8EU9HQ2z/info.json new file mode 100644 index 00000000..fd5a05ac --- /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 00000000..37200bdc Binary files /dev/null and b/blockchains/tron/assets/TDfWA29BscN2wdhQ6PVWEajxEn8EU9HQ2z/logo.png differ diff --git a/blockchains/tron/assets/TDh4z44NbqrCGVCCqBe753UqHW2CcDpurB/info.json b/blockchains/tron/assets/TDh4z44NbqrCGVCCqBe753UqHW2CcDpurB/info.json new file mode 100644 index 00000000..ac1bf1f6 --- /dev/null +++ b/blockchains/tron/assets/TDh4z44NbqrCGVCCqBe753UqHW2CcDpurB/info.json @@ -0,0 +1,11 @@ +{ + "name": "CapitalShareToken", + "symbol": "CSTO", + "type": "TRC20", + "decimals": 18, + "description": "CSTO is the utility token of CSPay Platform on the TRON network.", + "website": "https://capitalst.io/", + "explorer": "https://tronscan.io/#/token20/TDh4z44NbqrCGVCCqBe753UqHW2CcDpurB", + "status": "active", + "id": "TDh4z44NbqrCGVCCqBe753UqHW2CcDpurB" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TDh4z44NbqrCGVCCqBe753UqHW2CcDpurB/logo.png b/blockchains/tron/assets/TDh4z44NbqrCGVCCqBe753UqHW2CcDpurB/logo.png new file mode 100644 index 00000000..5f6d6c52 Binary files /dev/null and b/blockchains/tron/assets/TDh4z44NbqrCGVCCqBe753UqHW2CcDpurB/logo.png differ diff --git a/blockchains/tron/assets/TDxL4V5LE6TYSFXSCWJkkSsCYbgmrDnTer/info.json b/blockchains/tron/assets/TDxL4V5LE6TYSFXSCWJkkSsCYbgmrDnTer/info.json new file mode 100644 index 00000000..32989be4 --- /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 00000000..01b701fc 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 00000000..8e754480 --- /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 new file mode 100644 index 00000000..74f1c151 --- /dev/null +++ b/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/info.json @@ -0,0 +1,24 @@ +{ + "name": "USD Coin", + "type": "TRC20", + "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://tronscan.io/#/token20/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8", + "status": "active", + "id": "TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8", + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "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 new file mode 100644 index 00000000..b6f150d8 Binary files /dev/null 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 new file mode 100644 index 00000000..a6a40c1a --- /dev/null +++ b/blockchains/tron/assets/TFFxGGpVqxCDvo6upD3od5dFNtiRMv4Hc4/info.json @@ -0,0 +1,32 @@ +{ + "name": "Remitt USD", + "symbol": "USDR", + "type": "TRC20", + "decimals": 6, + "description": "Remitt USD stable coin", + "website": "https://remitt.ai", + "explorer": "https://tronscan.io/#/token20/TFFxGGpVqxCDvo6upD3od5dFNtiRMv4Hc4", + "status": "active", + "id": "TFFxGGpVqxCDvo6upD3od5dFNtiRMv4Hc4", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/remitt-repos" + }, + { + "name": "x", + "url": "https://x.com/remitt_bot" + }, + { + "name": "facebook", + "url": "https://facebook.com/Remitt-104461518999781" + }, + { + "name": "whitepaper", + "url": "https://remitt.ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TFFxGGpVqxCDvo6upD3od5dFNtiRMv4Hc4/logo.png b/blockchains/tron/assets/TFFxGGpVqxCDvo6upD3od5dFNtiRMv4Hc4/logo.png new file mode 100644 index 00000000..7e26b56d Binary files /dev/null and b/blockchains/tron/assets/TFFxGGpVqxCDvo6upD3od5dFNtiRMv4Hc4/logo.png differ diff --git a/blockchains/tron/assets/TFcmTYcctE3h3p7PJjp5JraPoMjdUE7rtV/info.json b/blockchains/tron/assets/TFcmTYcctE3h3p7PJjp5JraPoMjdUE7rtV/info.json new file mode 100644 index 00000000..c1fe0773 --- /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 00000000..408eeb75 Binary files /dev/null and b/blockchains/tron/assets/TFcmTYcctE3h3p7PJjp5JraPoMjdUE7rtV/logo.png differ diff --git a/blockchains/tron/assets/TFczxzPhnThNSqr5by8tvxsdCFRRz6cPNq/info.json b/blockchains/tron/assets/TFczxzPhnThNSqr5by8tvxsdCFRRz6cPNq/info.json new file mode 100644 index 00000000..d7ce6a9c --- /dev/null +++ b/blockchains/tron/assets/TFczxzPhnThNSqr5by8tvxsdCFRRz6cPNq/info.json @@ -0,0 +1,11 @@ +{ + "name": "APENFT", + "symbol": "NFT", + "type": "TRC20", + "decimals": 6, + "description": "APENFT Fund was born with the mission to register world-class artworks as NFTs on-chain.", + "website": "https://apenft.org", + "explorer": "https://tronscan.io/#/token20/TFczxzPhnThNSqr5by8tvxsdCFRRz6cPNq", + "status": "active", + "id": "TFczxzPhnThNSqr5by8tvxsdCFRRz6cPNq" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TFczxzPhnThNSqr5by8tvxsdCFRRz6cPNq/logo.png b/blockchains/tron/assets/TFczxzPhnThNSqr5by8tvxsdCFRRz6cPNq/logo.png new file mode 100644 index 00000000..e6a72f90 Binary files /dev/null and b/blockchains/tron/assets/TFczxzPhnThNSqr5by8tvxsdCFRRz6cPNq/logo.png differ diff --git a/blockchains/tron/assets/TFhZEJ2tEwxN2M9Mjgvm7ATyjs9ARW2ehP/info.json b/blockchains/tron/assets/TFhZEJ2tEwxN2M9Mjgvm7ATyjs9ARW2ehP/info.json new file mode 100644 index 00000000..44686130 --- /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 00000000..f5edd54d 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 00000000..dc6e8c3b --- /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 00000000..21269313 Binary files /dev/null and b/blockchains/tron/assets/TFhjqjULhxx83Ed1kvvJmP6DpaF4fYJ2nU/logo.png differ diff --git a/blockchains/tron/assets/TG37mUxRUaH1E8DWSrrmoQ79BnZn1yHztb/info.json b/blockchains/tron/assets/TG37mUxRUaH1E8DWSrrmoQ79BnZn1yHztb/info.json new file mode 100644 index 00000000..1edfd3d8 --- /dev/null +++ b/blockchains/tron/assets/TG37mUxRUaH1E8DWSrrmoQ79BnZn1yHztb/info.json @@ -0,0 +1,11 @@ +{ + "name": "BitGuild PLAT", + "symbol": "PLAT", + "type": "TRC20", + "decimals": 6, + "description": "PLAT serves as the base for all BitGuild token operations, and is fully compatible with all its products, including GuildChat, GuildWallet and blockchain games.", + "website": "https://tronscan.io/www.bitguild.com", + "explorer": "https://tronscan.io/#/token20/TG37mUxRUaH1E8DWSrrmoQ79BnZn1yHztb", + "status": "active", + "id": "TG37mUxRUaH1E8DWSrrmoQ79BnZn1yHztb" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TG37mUxRUaH1E8DWSrrmoQ79BnZn1yHztb/logo.png b/blockchains/tron/assets/TG37mUxRUaH1E8DWSrrmoQ79BnZn1yHztb/logo.png new file mode 100644 index 00000000..426043ed Binary files /dev/null and b/blockchains/tron/assets/TG37mUxRUaH1E8DWSrrmoQ79BnZn1yHztb/logo.png differ diff --git a/blockchains/tron/assets/TGJaEbWPNmM6NErggxJwWQ5ChRH7KxXF3a/info.json b/blockchains/tron/assets/TGJaEbWPNmM6NErggxJwWQ5ChRH7KxXF3a/info.json new file mode 100644 index 00000000..91568f7f --- /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 00000000..e5513d14 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 00000000..f76ec596 --- /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 00000000..ea385e42 Binary files /dev/null and b/blockchains/tron/assets/TGZ5j1Z1Bs4YN54HhBLaWXJQApiQmJnAq5/logo.png differ diff --git a/blockchains/tron/assets/TGbhcodQ1jRWB3ZywmfwsRTh4rwbiL2mzh/info.json b/blockchains/tron/assets/TGbhcodQ1jRWB3ZywmfwsRTh4rwbiL2mzh/info.json new file mode 100644 index 00000000..47a06e43 --- /dev/null +++ b/blockchains/tron/assets/TGbhcodQ1jRWB3ZywmfwsRTh4rwbiL2mzh/info.json @@ -0,0 +1,11 @@ +{ + "name": "LoveHeartsToken", + "symbol": "LVH", + "type": "TRC20", + "decimals": 6, + "description": "LoveHearts claims to be an online currency that connects people.", + "website": "https://t.me/LoveHeartsForever", + "explorer": "https://tronscan.io/#/token20/TGbhcodQ1jRWB3ZywmfwsRTh4rwbiL2mzh", + "status": "active", + "id": "TGbhcodQ1jRWB3ZywmfwsRTh4rwbiL2mzh" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TGbhcodQ1jRWB3ZywmfwsRTh4rwbiL2mzh/logo.png b/blockchains/tron/assets/TGbhcodQ1jRWB3ZywmfwsRTh4rwbiL2mzh/logo.png new file mode 100644 index 00000000..4dc55825 Binary files /dev/null and b/blockchains/tron/assets/TGbhcodQ1jRWB3ZywmfwsRTh4rwbiL2mzh/logo.png differ diff --git a/blockchains/tron/assets/TGkxzkDKyMeq2T7edKnyjZoFypyzjkkssq/info.json b/blockchains/tron/assets/TGkxzkDKyMeq2T7edKnyjZoFypyzjkkssq/info.json new file mode 100644 index 00000000..cde87f6d --- /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 00000000..a5b60873 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 00000000..b797f549 --- /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/THvZvKPLHKLJhEFYKiyqj6j8G8nGgfg7ur/info.json b/blockchains/tron/assets/THvZvKPLHKLJhEFYKiyqj6j8G8nGgfg7ur/info.json new file mode 100644 index 00000000..cc33666f --- /dev/null +++ b/blockchains/tron/assets/THvZvKPLHKLJhEFYKiyqj6j8G8nGgfg7ur/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRONdice", + "symbol": "DICE", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/THvZvKPLHKLJhEFYKiyqj6j8G8nGgfg7ur", + "status": "spam", + "id": "THvZvKPLHKLJhEFYKiyqj6j8G8nGgfg7ur" +} \ No newline at end of file diff --git a/blockchains/tron/assets/THvZvKPLHKLJhEFYKiyqj6j8G8nGgfg7ur/logo.png b/blockchains/tron/assets/THvZvKPLHKLJhEFYKiyqj6j8G8nGgfg7ur/logo.png new file mode 100644 index 00000000..2fc46fe4 Binary files /dev/null and b/blockchains/tron/assets/THvZvKPLHKLJhEFYKiyqj6j8G8nGgfg7ur/logo.png differ diff --git a/blockchains/tron/assets/THvqUNvSRvV1DRJ9wuugBVKeq3rFxpxJej/info.json b/blockchains/tron/assets/THvqUNvSRvV1DRJ9wuugBVKeq3rFxpxJej/info.json new file mode 100644 index 00000000..ced87c2c --- /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 00000000..6f9df7bf 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 00000000..327e69d1 --- /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 00000000..2ac7a8d0 Binary files /dev/null and b/blockchains/tron/assets/TJ26NGP6EH6ieW1CNwq2ghPfczRVeZv87a/logo.png differ diff --git a/blockchains/tron/assets/TJ63TQ3fvibq9pgkiFysPgDWkim1tBjejC/info.json b/blockchains/tron/assets/TJ63TQ3fvibq9pgkiFysPgDWkim1tBjejC/info.json new file mode 100644 index 00000000..0211a50d --- /dev/null +++ b/blockchains/tron/assets/TJ63TQ3fvibq9pgkiFysPgDWkim1tBjejC/info.json @@ -0,0 +1,11 @@ +{ + "name": "LIME", + "symbol": "LIME", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TJ63TQ3fvibq9pgkiFysPgDWkim1tBjejC", + "status": "abandoned", + "id": "TJ63TQ3fvibq9pgkiFysPgDWkim1tBjejC" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TJ63TQ3fvibq9pgkiFysPgDWkim1tBjejC/logo.png b/blockchains/tron/assets/TJ63TQ3fvibq9pgkiFysPgDWkim1tBjejC/logo.png new file mode 100644 index 00000000..5ac44306 Binary files /dev/null and b/blockchains/tron/assets/TJ63TQ3fvibq9pgkiFysPgDWkim1tBjejC/logo.png differ diff --git a/blockchains/tron/assets/TJM6YUK7PsyhncoZG3b28ZFrZFWZLuAT4n/info.json b/blockchains/tron/assets/TJM6YUK7PsyhncoZG3b28ZFrZFWZLuAT4n/info.json new file mode 100644 index 00000000..4ac10994 --- /dev/null +++ b/blockchains/tron/assets/TJM6YUK7PsyhncoZG3b28ZFrZFWZLuAT4n/info.json @@ -0,0 +1,11 @@ +{ + "name": "DTIToken", + "symbol": "DTI", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TJM6YUK7PsyhncoZG3b28ZFrZFWZLuAT4n", + "status": "abandoned", + "id": "TJM6YUK7PsyhncoZG3b28ZFrZFWZLuAT4n" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TJM6YUK7PsyhncoZG3b28ZFrZFWZLuAT4n/logo.png b/blockchains/tron/assets/TJM6YUK7PsyhncoZG3b28ZFrZFWZLuAT4n/logo.png new file mode 100644 index 00000000..1bbfa329 Binary files /dev/null and b/blockchains/tron/assets/TJM6YUK7PsyhncoZG3b28ZFrZFWZLuAT4n/logo.png differ diff --git a/blockchains/tron/assets/TJSBUFSe2E1Ncp5jo9ERD8LajjzpMa7F3C/info.json b/blockchains/tron/assets/TJSBUFSe2E1Ncp5jo9ERD8LajjzpMa7F3C/info.json new file mode 100644 index 00000000..39dd7788 --- /dev/null +++ b/blockchains/tron/assets/TJSBUFSe2E1Ncp5jo9ERD8LajjzpMa7F3C/info.json @@ -0,0 +1,11 @@ +{ + "name": "Bestswap Community Token", + "symbol": "BETC", + "type": "TRC20", + "decimals": 18, + "description": "BETC is the community token of Bestswap. BETC issued based on TRC-20 and is mainly used for community ecological incentives, DEX ecology, voting, KOL, project listing, etc..", + "website": "https://bestswap.com/", + "explorer": "https://tronscan.io/#/token20/TJSBUFSe2E1Ncp5jo9ERD8LajjzpMa7F3C", + "status": "active", + "id": "TJSBUFSe2E1Ncp5jo9ERD8LajjzpMa7F3C" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TJSBUFSe2E1Ncp5jo9ERD8LajjzpMa7F3C/logo.png b/blockchains/tron/assets/TJSBUFSe2E1Ncp5jo9ERD8LajjzpMa7F3C/logo.png new file mode 100644 index 00000000..beed094c Binary files /dev/null and b/blockchains/tron/assets/TJSBUFSe2E1Ncp5jo9ERD8LajjzpMa7F3C/logo.png differ diff --git a/blockchains/tron/assets/TJXdPn1yJ8j8SDWAT5Ki5eWduXeCtJEHrX/info.json b/blockchains/tron/assets/TJXdPn1yJ8j8SDWAT5Ki5eWduXeCtJEHrX/info.json new file mode 100644 index 00000000..7e807b74 --- /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 00000000..1407faec Binary files /dev/null and b/blockchains/tron/assets/TJXdPn1yJ8j8SDWAT5Ki5eWduXeCtJEHrX/logo.png differ diff --git a/blockchains/tron/assets/TJoiXo9nPhqPFvYfuHjUzswdth9Lu7Vg2p/info.json b/blockchains/tron/assets/TJoiXo9nPhqPFvYfuHjUzswdth9Lu7Vg2p/info.json new file mode 100644 index 00000000..f1ae7a01 --- /dev/null +++ b/blockchains/tron/assets/TJoiXo9nPhqPFvYfuHjUzswdth9Lu7Vg2p/info.json @@ -0,0 +1,11 @@ +{ + "name": "DZGToken", + "symbol": "DZG", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TJoiXo9nPhqPFvYfuHjUzswdth9Lu7Vg2p", + "status": "spam", + "id": "TJoiXo9nPhqPFvYfuHjUzswdth9Lu7Vg2p" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TJoiXo9nPhqPFvYfuHjUzswdth9Lu7Vg2p/logo.png b/blockchains/tron/assets/TJoiXo9nPhqPFvYfuHjUzswdth9Lu7Vg2p/logo.png new file mode 100644 index 00000000..aa1090c9 Binary files /dev/null and b/blockchains/tron/assets/TJoiXo9nPhqPFvYfuHjUzswdth9Lu7Vg2p/logo.png differ diff --git a/blockchains/tron/assets/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC/info.json b/blockchains/tron/assets/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC/info.json new file mode 100644 index 00000000..8d049d1b --- /dev/null +++ b/blockchains/tron/assets/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC/info.json @@ -0,0 +1,29 @@ +{ + "name": "Bridge Token", + "symbol": "BRG", + "decimals": 6, + "website": "https://bridge.link/", + "description": "First Ever Public Oracle System on TRON Network", + "explorer": "https://tronscan.io/#/token20/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC", + "type": "TRC20", + "status": "abandoned", + "id": "TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC", + "links": [ + { + "name": "github", + "url": "https://github.com/cryptoland-blockchain-laboratory" + }, + { + "name": "x", + "url": "https://x.com/Bridge Oracle" + }, + { + "name": "telegram", + "url": "https://t.me/BridgeOracle" + }, + { + "name": "whitepaper", + "url": "https://bridge.link/Bridge_White_Paper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TJzcEaqgYk9g4jZLEsB2DksLGikM4dWwYJ/info.json b/blockchains/tron/assets/TJzcEaqgYk9g4jZLEsB2DksLGikM4dWwYJ/info.json new file mode 100644 index 00000000..ef4b5f79 --- /dev/null +++ b/blockchains/tron/assets/TJzcEaqgYk9g4jZLEsB2DksLGikM4dWwYJ/info.json @@ -0,0 +1,11 @@ +{ + "name": "451PCBCOM", + "symbol": "PCB", + "type": "TRC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TJzcEaqgYk9g4jZLEsB2DksLGikM4dWwYJ", + "status": "abandoned", + "id": "TJzcEaqgYk9g4jZLEsB2DksLGikM4dWwYJ" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TJzcEaqgYk9g4jZLEsB2DksLGikM4dWwYJ/logo.png b/blockchains/tron/assets/TJzcEaqgYk9g4jZLEsB2DksLGikM4dWwYJ/logo.png new file mode 100644 index 00000000..543aab6d Binary files /dev/null and b/blockchains/tron/assets/TJzcEaqgYk9g4jZLEsB2DksLGikM4dWwYJ/logo.png differ diff --git a/blockchains/tron/assets/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb/info.json b/blockchains/tron/assets/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb/info.json new file mode 100644 index 00000000..020ddb6f --- /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 00000000..22f02541 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 00000000..124587dc --- /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 00000000..20a4cb2a 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 00000000..ffc15c77 --- /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 00000000..9ae5b5a7 Binary files /dev/null and b/blockchains/tron/assets/TKN6A3wSWHdZGanW5wBFkeFq2Yw3rhGqNz/logo.png differ diff --git a/blockchains/tron/assets/TKTcfBEKpp5ZRPwmiZ8SfLx8W7CDZ7PHCY/info.json b/blockchains/tron/assets/TKTcfBEKpp5ZRPwmiZ8SfLx8W7CDZ7PHCY/info.json new file mode 100644 index 00000000..151d7f32 --- /dev/null +++ b/blockchains/tron/assets/TKTcfBEKpp5ZRPwmiZ8SfLx8W7CDZ7PHCY/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRONWALLET", + "symbol": "TWX", + "type": "TRC20", + "decimals": 6, + "description": "TronWallet Exchange / Marketplace Token.", + "website": "https://www.tronwallet.me/", + "explorer": "https://tronscan.io/#/token20/TKTcfBEKpp5ZRPwmiZ8SfLx8W7CDZ7PHCY", + "status": "active", + "id": "TKTcfBEKpp5ZRPwmiZ8SfLx8W7CDZ7PHCY" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TKTcfBEKpp5ZRPwmiZ8SfLx8W7CDZ7PHCY/logo.png b/blockchains/tron/assets/TKTcfBEKpp5ZRPwmiZ8SfLx8W7CDZ7PHCY/logo.png new file mode 100644 index 00000000..e44ae646 Binary files /dev/null and b/blockchains/tron/assets/TKTcfBEKpp5ZRPwmiZ8SfLx8W7CDZ7PHCY/logo.png differ diff --git a/blockchains/tron/assets/TKTtVPdJDKpEqEf8ny8p2BcSyUjGhoUeJN/info.json b/blockchains/tron/assets/TKTtVPdJDKpEqEf8ny8p2BcSyUjGhoUeJN/info.json new file mode 100644 index 00000000..c7cd76e7 --- /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 00000000..e237b773 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 00000000..8fba8a20 --- /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 00000000..8a519a35 Binary files /dev/null and b/blockchains/tron/assets/TKbZf7Ni93pAB6ZHQLR2BxbnukRsB3WNvh/logo.png differ diff --git a/blockchains/tron/assets/TKkeiboTkxXKJpbmVFbv4a8ov5rAfRDMf9/info.json b/blockchains/tron/assets/TKkeiboTkxXKJpbmVFbv4a8ov5rAfRDMf9/info.json new file mode 100644 index 00000000..86e754b9 --- /dev/null +++ b/blockchains/tron/assets/TKkeiboTkxXKJpbmVFbv4a8ov5rAfRDMf9/info.json @@ -0,0 +1,12 @@ +{ + "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/TKkeiboTkxXKJpbmVFbv4a8ov5rAfRDMf9", + "research": "https://research.binance.com/en/projects/sun", + "type": "TRC20", + "symbol": "SUN", + "decimals": 18, + "status": "abandoned", + "id": "TKkeiboTkxXKJpbmVFbv4a8ov5rAfRDMf9" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TKkeiboTkxXKJpbmVFbv4a8ov5rAfRDMf9/logo.png b/blockchains/tron/assets/TKkeiboTkxXKJpbmVFbv4a8ov5rAfRDMf9/logo.png new file mode 100644 index 00000000..af8e5836 Binary files /dev/null and b/blockchains/tron/assets/TKkeiboTkxXKJpbmVFbv4a8ov5rAfRDMf9/logo.png differ diff --git a/blockchains/tron/assets/TKttnV3FSY1iEoAwB4N52WK2DxdV94KpSd/info.json b/blockchains/tron/assets/TKttnV3FSY1iEoAwB4N52WK2DxdV94KpSd/info.json new file mode 100644 index 00000000..bb208044 --- /dev/null +++ b/blockchains/tron/assets/TKttnV3FSY1iEoAwB4N52WK2DxdV94KpSd/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRONbetDice", + "website": "https://wink.org", + "description": "DICE is the first Dapp game certificate of the WINk platform.", + "explorer": "https://tronscan.io/#/token20/TKttnV3FSY1iEoAwB4N52WK2DxdV94KpSd", + "type": "TRC20", + "symbol": "DICE", + "decimals": 6, + "status": "active", + "id": "TKttnV3FSY1iEoAwB4N52WK2DxdV94KpSd" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TKttnV3FSY1iEoAwB4N52WK2DxdV94KpSd/logo.png b/blockchains/tron/assets/TKttnV3FSY1iEoAwB4N52WK2DxdV94KpSd/logo.png new file mode 100644 index 00000000..383a803a Binary files /dev/null and b/blockchains/tron/assets/TKttnV3FSY1iEoAwB4N52WK2DxdV94KpSd/logo.png differ diff --git a/blockchains/tron/assets/TL7TvJpEKW4XXxudf9FL7hmpPjLTwfkWtQ/info.json b/blockchains/tron/assets/TL7TvJpEKW4XXxudf9FL7hmpPjLTwfkWtQ/info.json new file mode 100644 index 00000000..b4729e29 --- /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 00000000..0e599ca6 Binary files /dev/null and b/blockchains/tron/assets/TL7TvJpEKW4XXxudf9FL7hmpPjLTwfkWtQ/logo.png differ diff --git a/blockchains/tron/assets/TLGd97zsjrkomUDF962ZFMerdQxPffG7hX/info.json b/blockchains/tron/assets/TLGd97zsjrkomUDF962ZFMerdQxPffG7hX/info.json new file mode 100644 index 00000000..36b2a007 --- /dev/null +++ b/blockchains/tron/assets/TLGd97zsjrkomUDF962ZFMerdQxPffG7hX/info.json @@ -0,0 +1,17 @@ +{ + "name": "ZPAY", + "website": "https://zelaapay.ae", + "description": "ZPAE is the gateway to unlock the power of crypto all across the Middle East.", + "explorer": "https://tronscan.io/#/token20/TLGd97zsjrkomUDF962ZFMerdQxPffG7hX", + "type": "TRC20", + "symbol": "ZPAE", + "decimals": 18, + "status": "active", + "id": "TLGd97zsjrkomUDF962ZFMerdQxPffG7hX", + "links": [ + { + "name": "whitepaper", + "url": "https://zelaapay.ae/wp-content/uploads/2020/08/Whitepaper-2.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TLGd97zsjrkomUDF962ZFMerdQxPffG7hX/logo.png b/blockchains/tron/assets/TLGd97zsjrkomUDF962ZFMerdQxPffG7hX/logo.png new file mode 100644 index 00000000..0112560a Binary files /dev/null and b/blockchains/tron/assets/TLGd97zsjrkomUDF962ZFMerdQxPffG7hX/logo.png differ diff --git a/blockchains/tron/assets/TLLo3PU91yKPbwvSbuawvWKCzNX2JHYEE2/info.json b/blockchains/tron/assets/TLLo3PU91yKPbwvSbuawvWKCzNX2JHYEE2/info.json new file mode 100644 index 00000000..f3fff4f9 --- /dev/null +++ b/blockchains/tron/assets/TLLo3PU91yKPbwvSbuawvWKCzNX2JHYEE2/info.json @@ -0,0 +1,11 @@ +{ + "name": "Paynet Coin", + "website": "https://paynetcoin.com", + "description": "Paynetcoin (PAYN) is a cryptocurrency (TRC20) that provides online travel payment platforms, e-commerce, airline tickets, tours ...", + "explorer": "https://tronscan.io/#/token20/TLLo3PU91yKPbwvSbuawvWKCzNX2JHYEE2", + "type": "TRC20", + "symbol": "PAYN", + "decimals": 8, + "status": "abandoned", + "id": "TLLo3PU91yKPbwvSbuawvWKCzNX2JHYEE2" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TLV152XFZaimsfaVMCHYDcbexZL4ZhcfGf/info.json b/blockchains/tron/assets/TLV152XFZaimsfaVMCHYDcbexZL4ZhcfGf/info.json new file mode 100644 index 00000000..67cbf007 --- /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 00000000..876ac4cb 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 new file mode 100644 index 00000000..7749345f --- /dev/null +++ b/blockchains/tron/assets/TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7/info.json @@ -0,0 +1,25 @@ +{ + "name": "WINk", + "website": "https://wink.org", + "description": "WINK (formerly TRONBet) describes itself as a betting DApp based on the TRC20 WIN token.", + "explorer": "https://tronscan.io/#/token20/TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7", + "type": "TRC20", + "symbol": "WIN", + "decimals": 6, + "status": "active", + "id": "TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WINkLink_Oracle_official" + }, + { + "name": "x", + "url": "https://x.com/WinkLink_Oracle" + }, + { + "name": "whitepaper", + "url": "https://winklink.org/#/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7/logo.png b/blockchains/tron/assets/TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7/logo.png new file mode 100644 index 00000000..c9d40dea Binary files /dev/null and b/blockchains/tron/assets/TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7/logo.png differ diff --git a/blockchains/tron/assets/TLeVfrdym8RoJreJ23dAGyfJDygRtiWKBZ/info.json b/blockchains/tron/assets/TLeVfrdym8RoJreJ23dAGyfJDygRtiWKBZ/info.json new file mode 100644 index 00000000..6884e504 --- /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 00000000..2f94710c 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 00000000..52b87db4 --- /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 00000000..74a17d83 Binary files /dev/null and b/blockchains/tron/assets/TLsaB3dRnv3YHmxJm4uh1UWrPLiGZd6nrB/logo.png differ diff --git a/blockchains/tron/assets/TMNTn2uFAHhkGE3uuM84rhfRRjt6ry9xnL/info.json b/blockchains/tron/assets/TMNTn2uFAHhkGE3uuM84rhfRRjt6ry9xnL/info.json new file mode 100644 index 00000000..49d67777 --- /dev/null +++ b/blockchains/tron/assets/TMNTn2uFAHhkGE3uuM84rhfRRjt6ry9xnL/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZEDXION", + "type": "TRC20", + "symbol": "ZEDXION", + "decimals": 18, + "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://tronscan.io/#/token20/TMNTn2uFAHhkGE3uuM84rhfRRjt6ry9xnL", + "status": "abandoned", + "id": "TMNTn2uFAHhkGE3uuM84rhfRRjt6ry9xnL" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TMNyGQm6DxaaKxH2sSebScgRNsMgqANEzY/info.json b/blockchains/tron/assets/TMNyGQm6DxaaKxH2sSebScgRNsMgqANEzY/info.json new file mode 100644 index 00000000..63e3e88a --- /dev/null +++ b/blockchains/tron/assets/TMNyGQm6DxaaKxH2sSebScgRNsMgqANEzY/info.json @@ -0,0 +1,11 @@ +{ + "name": "MVMTOKEN", + "symbol": "MVM", + "type": "TRC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TMNyGQm6DxaaKxH2sSebScgRNsMgqANEzY", + "status": "abandoned", + "id": "TMNyGQm6DxaaKxH2sSebScgRNsMgqANEzY" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TMNyGQm6DxaaKxH2sSebScgRNsMgqANEzY/logo.png b/blockchains/tron/assets/TMNyGQm6DxaaKxH2sSebScgRNsMgqANEzY/logo.png new file mode 100644 index 00000000..beed094c Binary files /dev/null and b/blockchains/tron/assets/TMNyGQm6DxaaKxH2sSebScgRNsMgqANEzY/logo.png differ diff --git a/blockchains/tron/assets/TMQCUJzSkcTyrCkhKNUUr8GuWGiD4grNUx/info.json b/blockchains/tron/assets/TMQCUJzSkcTyrCkhKNUUr8GuWGiD4grNUx/info.json new file mode 100644 index 00000000..d59f21dd --- /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 00000000..d55ca6ed Binary files /dev/null and b/blockchains/tron/assets/TMQCUJzSkcTyrCkhKNUUr8GuWGiD4grNUx/logo.png differ diff --git a/blockchains/tron/assets/TMhjbHzJCiMWqa5oqn2DF3mGw5yh9oQNf2/info.json b/blockchains/tron/assets/TMhjbHzJCiMWqa5oqn2DF3mGw5yh9oQNf2/info.json new file mode 100644 index 00000000..060c3f2d --- /dev/null +++ b/blockchains/tron/assets/TMhjbHzJCiMWqa5oqn2DF3mGw5yh9oQNf2/info.json @@ -0,0 +1,11 @@ +{ + "name": "DLNToken", + "symbol": "DLN", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TMhjbHzJCiMWqa5oqn2DF3mGw5yh9oQNf2", + "status": "abandoned", + "id": "TMhjbHzJCiMWqa5oqn2DF3mGw5yh9oQNf2" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TMhjbHzJCiMWqa5oqn2DF3mGw5yh9oQNf2/logo.png b/blockchains/tron/assets/TMhjbHzJCiMWqa5oqn2DF3mGw5yh9oQNf2/logo.png new file mode 100644 index 00000000..5ff233da Binary files /dev/null and b/blockchains/tron/assets/TMhjbHzJCiMWqa5oqn2DF3mGw5yh9oQNf2/logo.png differ diff --git a/blockchains/tron/assets/TMkWtCUBF9zatuda6onxoPeAUvkGiwaCHP/info.json b/blockchains/tron/assets/TMkWtCUBF9zatuda6onxoPeAUvkGiwaCHP/info.json new file mode 100644 index 00000000..9ef3c676 --- /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 00000000..fa5ae973 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 new file mode 100644 index 00000000..3aa6070f --- /dev/null +++ b/blockchains/tron/assets/TMnqP8yuZrKJFXN59KoVDthkmM3LRkiZXP/info.json @@ -0,0 +1,33 @@ +{ + "name": "Pollux Coin", + "website": "https://polluxcoin.info", + "description": "Pollux coin is Blockchain based decentralized crypto currency which runs on Tron Blockchain designed for the file sharing and storage of data.", + "explorer": "https://tronscan.io/#/token20/TMnqP8yuZrKJFXN59KoVDthkmM3LRkiZXP", + "type": "TRC20", + "symbol": "POX", + "decimals": 8, + "status": "active", + "id": "TMnqP8yuZrKJFXN59KoVDthkmM3LRkiZXP", + "links": [ + { + "name": "github", + "url": "https://github.com/polluxcoin2020/pox" + }, + { + "name": "x", + "url": "https://x.com/polluxcoin1" + }, + { + "name": "telegram", + "url": "https://t.me/polluxcoinchat" + }, + { + "name": "facebook", + "url": "https://facebook.com/PolluxCoin" + }, + { + "name": "whitepaper", + "url": "https://polluxcoin.info/white-paper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TMnqP8yuZrKJFXN59KoVDthkmM3LRkiZXP/logo.png b/blockchains/tron/assets/TMnqP8yuZrKJFXN59KoVDthkmM3LRkiZXP/logo.png new file mode 100644 index 00000000..3424c007 Binary files /dev/null and b/blockchains/tron/assets/TMnqP8yuZrKJFXN59KoVDthkmM3LRkiZXP/logo.png differ diff --git a/blockchains/tron/assets/TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGT/info.json b/blockchains/tron/assets/TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGT/info.json new file mode 100644 index 00000000..77136321 --- /dev/null +++ b/blockchains/tron/assets/TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGT/info.json @@ -0,0 +1,11 @@ +{ + "name": "JUST Stablecoin", + "symbol": "USDJ", + "type": "TRC20", + "decimals": 18, + "description": "USDJ is a stablecoin of TRON. It’s generated through decentralized smart contracts on the TRON network. Anyone can pledge TRX as collateral to generate USDJ. USDJ enters into free circulation as any other cryptocurrency does once generated. It is pegged to the US dollar through Collateralized Debt Positions (CDPs), and also has autonomous feedback mechanisms.", + "website": "https://www.just.network/", + "explorer": "https://tronscan.io/#/token20/TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGT", + "status": "active", + "id": "TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGT" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGT/logo.png b/blockchains/tron/assets/TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGT/logo.png new file mode 100644 index 00000000..d7b182b7 Binary files /dev/null and b/blockchains/tron/assets/TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGT/logo.png differ diff --git a/blockchains/tron/assets/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH/info.json b/blockchains/tron/assets/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH/info.json new file mode 100644 index 00000000..9d3d1674 --- /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 00000000..ae200798 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 new file mode 100644 index 00000000..7b9c6227 --- /dev/null +++ b/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/info.json @@ -0,0 +1,24 @@ +{ + "name": "BUSD Token", + "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", + "type": "TRC20", + "symbol": "BUSD", + "decimals": 18, + "status": "active", + "id": "TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH", + "links": [ + { + "name": "x", + "url": "https://x.com/binance" + }, + { + "name": "telegram", + "url": "https://t.me/binanceexchange" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/logo.png b/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/logo.png new file mode 100644 index 00000000..5c7d8e78 Binary files /dev/null and b/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/logo.png differ diff --git a/blockchains/tron/assets/TN29FkCKL8dFMSZ4uian61to5dLi9RoaRz/info.json b/blockchains/tron/assets/TN29FkCKL8dFMSZ4uian61to5dLi9RoaRz/info.json new file mode 100644 index 00000000..14e606c8 --- /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 00000000..9128196a 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 00000000..f02d7f48 --- /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 00000000..7b26c3ec Binary files /dev/null and b/blockchains/tron/assets/TN2tRjEMhgHSVKzj4ssy4gvHpXQNh5weSg/logo.png differ diff --git a/blockchains/tron/assets/TN7zQd2oCCguSQykZ437tZzLEaGJ7EGyha/info.json b/blockchains/tron/assets/TN7zQd2oCCguSQykZ437tZzLEaGJ7EGyha/info.json new file mode 100644 index 00000000..625bc55b --- /dev/null +++ b/blockchains/tron/assets/TN7zQd2oCCguSQykZ437tZzLEaGJ7EGyha/info.json @@ -0,0 +1,11 @@ +{ + "name": "JackPool.finance", + "website": "https://jackpool.finance", + "description": "JFI is described to be a yield farming profit maximiser protocol on Justswap.", + "explorer": "https://tronscan.io/#/token20/TN7zQd2oCCguSQykZ437tZzLEaGJ7EGyha", + "type": "TRC20", + "symbol": "JFI", + "decimals": 18, + "status": "active", + "id": "TN7zQd2oCCguSQykZ437tZzLEaGJ7EGyha" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TN7zQd2oCCguSQykZ437tZzLEaGJ7EGyha/logo.png b/blockchains/tron/assets/TN7zQd2oCCguSQykZ437tZzLEaGJ7EGyha/logo.png new file mode 100644 index 00000000..d3372a5a Binary files /dev/null and b/blockchains/tron/assets/TN7zQd2oCCguSQykZ437tZzLEaGJ7EGyha/logo.png differ diff --git a/blockchains/tron/assets/TNMR6r9Z4cL7eWNrNQ4e4sm2XPhhifexZU/info.json b/blockchains/tron/assets/TNMR6r9Z4cL7eWNrNQ4e4sm2XPhhifexZU/info.json new file mode 100644 index 00000000..ffebd341 --- /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 00000000..5846ce5c 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 00000000..02e423d5 --- /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 00000000..4a2381e4 Binary files /dev/null and b/blockchains/tron/assets/TNUC9Qb1rRpS5CbWLmNMxXBjyFoydXjWFR/logo.png differ diff --git a/blockchains/tron/assets/TNZXVQUKQ8Gnjq2BqLvt2kC5WbeDQc1q3j/info.json b/blockchains/tron/assets/TNZXVQUKQ8Gnjq2BqLvt2kC5WbeDQc1q3j/info.json new file mode 100644 index 00000000..341bcf08 --- /dev/null +++ b/blockchains/tron/assets/TNZXVQUKQ8Gnjq2BqLvt2kC5WbeDQc1q3j/info.json @@ -0,0 +1,11 @@ +{ + "name": "DXNToken", + "symbol": "DXN", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TNZXVQUKQ8Gnjq2BqLvt2kC5WbeDQc1q3j", + "status": "spam", + "id": "TNZXVQUKQ8Gnjq2BqLvt2kC5WbeDQc1q3j" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TNZXVQUKQ8Gnjq2BqLvt2kC5WbeDQc1q3j/logo.png b/blockchains/tron/assets/TNZXVQUKQ8Gnjq2BqLvt2kC5WbeDQc1q3j/logo.png new file mode 100644 index 00000000..17eb451f Binary files /dev/null and b/blockchains/tron/assets/TNZXVQUKQ8Gnjq2BqLvt2kC5WbeDQc1q3j/logo.png differ diff --git a/blockchains/tron/assets/TNc4EDHvHHEmQuQWN5pXGxU6PFJJqGS1U8/info.json b/blockchains/tron/assets/TNc4EDHvHHEmQuQWN5pXGxU6PFJJqGS1U8/info.json new file mode 100644 index 00000000..07cf4e9b --- /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 00000000..caac6aa5 Binary files /dev/null and b/blockchains/tron/assets/TNc4EDHvHHEmQuQWN5pXGxU6PFJJqGS1U8/logo.png differ diff --git a/blockchains/tron/assets/TNjt5fShPVJ4YpsLuU4THuBbg58g2bZoLk/info.json b/blockchains/tron/assets/TNjt5fShPVJ4YpsLuU4THuBbg58g2bZoLk/info.json new file mode 100644 index 00000000..4a068f38 --- /dev/null +++ b/blockchains/tron/assets/TNjt5fShPVJ4YpsLuU4THuBbg58g2bZoLk/info.json @@ -0,0 +1,11 @@ +{ + "name": "Hora Token", + "symbol": "HORA", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TNjt5fShPVJ4YpsLuU4THuBbg58g2bZoLk", + "status": "abandoned", + "id": "TNjt5fShPVJ4YpsLuU4THuBbg58g2bZoLk" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TNjt5fShPVJ4YpsLuU4THuBbg58g2bZoLk/logo.png b/blockchains/tron/assets/TNjt5fShPVJ4YpsLuU4THuBbg58g2bZoLk/logo.png new file mode 100644 index 00000000..4a827f16 Binary files /dev/null and b/blockchains/tron/assets/TNjt5fShPVJ4YpsLuU4THuBbg58g2bZoLk/logo.png differ diff --git a/blockchains/tron/assets/TP3prcvQknVthrVnn281cKST56eWiLgJJM/info.json b/blockchains/tron/assets/TP3prcvQknVthrVnn281cKST56eWiLgJJM/info.json new file mode 100644 index 00000000..56ffb178 --- /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 00000000..852ae7cb 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 new file mode 100644 index 00000000..e77fae08 --- /dev/null +++ b/blockchains/tron/assets/TPAQRJSVatTZLLaguCFMXGFKegKnqnKH2s/info.json @@ -0,0 +1,25 @@ +{ + "name": "Mainstream For The Underground", + "website": "https://mftu.net", + "description": "Utility token to paying musicians through online radio. Paying Independent Musicians as a Distributed Ledger Performance Rights Organization.", + "explorer": "https://tronscan.io/#/token20/TPAQRJSVatTZLLaguCFMXGFKegKnqnKH2s", + "type": "TRC20", + "symbol": "MFTU", + "decimals": 18, + "status": "active", + "id": "TPAQRJSVatTZLLaguCFMXGFKegKnqnKH2s", + "links": [ + { + "name": "github", + "url": "https://github.com/CyberFM/" + }, + { + "name": "x", + "url": "https://x.com/Mainstream For The Underground" + }, + { + "name": "telegram", + "url": "https://t.me/mftudotnet" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TPAQRJSVatTZLLaguCFMXGFKegKnqnKH2s/logo.png b/blockchains/tron/assets/TPAQRJSVatTZLLaguCFMXGFKegKnqnKH2s/logo.png new file mode 100755 index 00000000..5b712369 Binary files /dev/null and b/blockchains/tron/assets/TPAQRJSVatTZLLaguCFMXGFKegKnqnKH2s/logo.png differ diff --git a/blockchains/tron/assets/TPFqcBAaaUMCSVRCqPaQ9QnzKhmuoLR6Rc/info.json b/blockchains/tron/assets/TPFqcBAaaUMCSVRCqPaQ9QnzKhmuoLR6Rc/info.json new file mode 100644 index 00000000..b0a2da77 --- /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 US 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 00000000..444ccb65 Binary files /dev/null and b/blockchains/tron/assets/TPFqcBAaaUMCSVRCqPaQ9QnzKhmuoLR6Rc/logo.png differ diff --git a/blockchains/tron/assets/TPRuU2GbXPwvvSuggE4xKMRtzsfwYfvBWq/info.json b/blockchains/tron/assets/TPRuU2GbXPwvvSuggE4xKMRtzsfwYfvBWq/info.json new file mode 100644 index 00000000..47cecddd --- /dev/null +++ b/blockchains/tron/assets/TPRuU2GbXPwvvSuggE4xKMRtzsfwYfvBWq/info.json @@ -0,0 +1,11 @@ +{ + "name": "ICEDIUM", + "symbol": "ICD", + "type": "TRC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TPRuU2GbXPwvvSuggE4xKMRtzsfwYfvBWq", + "status": "abandoned", + "id": "TPRuU2GbXPwvvSuggE4xKMRtzsfwYfvBWq" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TPRuU2GbXPwvvSuggE4xKMRtzsfwYfvBWq/logo.png b/blockchains/tron/assets/TPRuU2GbXPwvvSuggE4xKMRtzsfwYfvBWq/logo.png new file mode 100644 index 00000000..70c80394 Binary files /dev/null and b/blockchains/tron/assets/TPRuU2GbXPwvvSuggE4xKMRtzsfwYfvBWq/logo.png differ diff --git a/blockchains/tron/assets/TPWAzBeNMoA6rYEeBYXmVtXpN17yjuT8c7/info.json b/blockchains/tron/assets/TPWAzBeNMoA6rYEeBYXmVtXpN17yjuT8c7/info.json new file mode 100644 index 00000000..d620d04a --- /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 00000000..9c631d1e 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 new file mode 100644 index 00000000..a55b3639 --- /dev/null +++ b/blockchains/tron/assets/TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn/info.json @@ -0,0 +1,24 @@ +{ + "name": "Decentralized USDOLD", + "symbol": "USDDOLD", + "type": "TRC20", + "decimals": 18, + "description": "USDD is a fully decentralized algorithmic stablecoin", + "website": "https://usdd.io/", + "explorer": "https://tronscan.io/#/token20/TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn", + "status": "active", + "id": "TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn", + "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/TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn/logo.png b/blockchains/tron/assets/TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn/logo.png new file mode 100644 index 00000000..b17bf63f Binary files /dev/null and b/blockchains/tron/assets/TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn/logo.png differ diff --git a/blockchains/tron/assets/TPeoxx1VhUMnAUyjwWfximDYFDQaxNQQ45/info.json b/blockchains/tron/assets/TPeoxx1VhUMnAUyjwWfximDYFDQaxNQQ45/info.json new file mode 100644 index 00000000..c41de352 --- /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 00000000..588827b9 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 00000000..c9c1391d --- /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 00000000..14f4371e 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 00000000..5369c86d --- /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 00000000..22f2d2e6 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 00000000..a1ff2ec9 --- /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 00000000..303bb2ae 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 new file mode 100644 index 00000000..6b57854a --- /dev/null +++ b/blockchains/tron/assets/TQYuR8FpmhMJK3ZpfoTgERjaZRywqMnFAH/info.json @@ -0,0 +1,28 @@ +{ + "name": "Paynet Coin", + "website": "https://paynetcoin.com", + "description": "Paynetcoin (PAYN) is a cryptocurrency (TRC20) that provides online travel payment platforms, e-commerce, airline tickets, tours ...", + "explorer": "https://tronscan.io/#/token20/TQYuR8FpmhMJK3ZpfoTgERjaZRywqMnFAH", + "type": "TRC20", + "symbol": "PAYN", + "decimals": 8, + "status": "active", + "id": "TQYuR8FpmhMJK3ZpfoTgERjaZRywqMnFAH", + "links": [ + { + "name": "x", + "url": "https://x.com/paynetcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/paynet-coin/" + }, + { + "name": "telegram", + "url": "https://t.me/PaynetcoinEN" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TQYuR8FpmhMJK3ZpfoTgERjaZRywqMnFAH/logo.png b/blockchains/tron/assets/TQYuR8FpmhMJK3ZpfoTgERjaZRywqMnFAH/logo.png new file mode 100644 index 00000000..c4659fd4 Binary files /dev/null and b/blockchains/tron/assets/TQYuR8FpmhMJK3ZpfoTgERjaZRywqMnFAH/logo.png differ diff --git a/blockchains/tron/assets/TQhfmGiZvRt3oe9vKv6W9WXRr4oErxc8RE/info.json b/blockchains/tron/assets/TQhfmGiZvRt3oe9vKv6W9WXRr4oErxc8RE/info.json new file mode 100644 index 00000000..5183d40d --- /dev/null +++ b/blockchains/tron/assets/TQhfmGiZvRt3oe9vKv6W9WXRr4oErxc8RE/info.json @@ -0,0 +1,11 @@ +{ + "name": "Travelcoins", + "symbol": "TRVx", + "type": "TRC20", + "decimals": 6, + "description": "The Travelcoins tokens and smart contracts ecosystem will be used in the travel industry and bring all travel ecosystems together with a public travel blockchain.", + "website": "https://travelcoins.io/", + "explorer": "https://tronscan.io/#/token20/TQhfmGiZvRt3oe9vKv6W9WXRr4oErxc8RE", + "status": "active", + "id": "TQhfmGiZvRt3oe9vKv6W9WXRr4oErxc8RE" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TQhfmGiZvRt3oe9vKv6W9WXRr4oErxc8RE/logo.png b/blockchains/tron/assets/TQhfmGiZvRt3oe9vKv6W9WXRr4oErxc8RE/logo.png new file mode 100644 index 00000000..658d64b0 Binary files /dev/null and b/blockchains/tron/assets/TQhfmGiZvRt3oe9vKv6W9WXRr4oErxc8RE/logo.png differ diff --git a/blockchains/tron/assets/TQkgrmpo1fLmJtzNxcUxZtznzGKNfk187S/info.json b/blockchains/tron/assets/TQkgrmpo1fLmJtzNxcUxZtznzGKNfk187S/info.json new file mode 100644 index 00000000..54e7d83d --- /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 00000000..2b4713da 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 00000000..f9120aa4 --- /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 00000000..52e6642b Binary files /dev/null and b/blockchains/tron/assets/TQnorYAdiQTAEexqaB53MFpKpnLAdMe4sw/logo.png differ diff --git a/blockchains/tron/assets/TQsm77PKjtpfawYu2LuQVTkigQcHPFLBaw/info.json b/blockchains/tron/assets/TQsm77PKjtpfawYu2LuQVTkigQcHPFLBaw/info.json new file mode 100644 index 00000000..49929639 --- /dev/null +++ b/blockchains/tron/assets/TQsm77PKjtpfawYu2LuQVTkigQcHPFLBaw/info.json @@ -0,0 +1,11 @@ +{ + "name": "Intercoin", + "type": "TRC20", + "symbol": "INTC", + "decimals": 6, + "website": "https://www.intercoin.network", + "description": "In compliance with SEC regulations, INTC is the currency of the people, by the people, for the people. Because every human being on the planet has the right to own cryptocurrency and the freedom to use it anywhere on a secure, fast, sustainable and decentralized network, without paying absurd transaction fees.", + "explorer": "https://tronscan.io/#/token20/TQsm77PKjtpfawYu2LuQVTkigQcHPFLBaw", + "status": "active", + "id": "TQsm77PKjtpfawYu2LuQVTkigQcHPFLBaw" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TQsm77PKjtpfawYu2LuQVTkigQcHPFLBaw/logo.png b/blockchains/tron/assets/TQsm77PKjtpfawYu2LuQVTkigQcHPFLBaw/logo.png new file mode 100644 index 00000000..b4889b06 Binary files /dev/null and b/blockchains/tron/assets/TQsm77PKjtpfawYu2LuQVTkigQcHPFLBaw/logo.png differ diff --git a/blockchains/tron/assets/TQzRNTjWkmnL1Lup6fNzSdTaGQuc3ZYk1K/info.json b/blockchains/tron/assets/TQzRNTjWkmnL1Lup6fNzSdTaGQuc3ZYk1K/info.json new file mode 100644 index 00000000..338b0df6 --- /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 00000000..09666400 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 00000000..7e8a513b --- /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 00000000..b76bd9c2 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 new file mode 100644 index 00000000..9693c316 --- /dev/null +++ b/blockchains/tron/assets/TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t/info.json @@ -0,0 +1,44 @@ +{ + "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", + "type": "TRC20", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t", + "links": [ + { + "name": "whitepaper", + "url": "https://tether.to/wp-content/uploads/2016/06/TetherWhitePaper.pdf" + }, + { + "name": "x", + "url": "https://x.com/Tether_to" + }, + { + "name": "telegram", + "url": "https://t.me/tronnetworkEN" + }, + { + "name": "medium", + "url": "https://medium.com/tron-foundation" + }, + { + "name": "discord", + "url": "https://discord.com/invite/hqKvyAM" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Tronix/" + }, + { + "name": "facebook", + "url": "https://facebook.com/tronfoundation" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t/logo.png b/blockchains/tron/assets/TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t/logo.png new file mode 100644 index 00000000..4b302730 Binary files /dev/null and b/blockchains/tron/assets/TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t/logo.png differ diff --git a/blockchains/tron/assets/TRCtLNYrhBjNgRmYTx2NGGSAg1k8u7V557/info.json b/blockchains/tron/assets/TRCtLNYrhBjNgRmYTx2NGGSAg1k8u7V557/info.json new file mode 100644 index 00000000..3648fd97 --- /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 00000000..bfb35387 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 00000000..ebe4d443 --- /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 00000000..5d99d96e 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 00000000..3528f707 --- /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 00000000..d6ac8110 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 00000000..cc5127a6 --- /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 00000000..97a609cb 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 00000000..c167331b --- /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 00000000..9abe0feb 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 00000000..943d7b5e --- /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 00000000..a6ab744f 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 new file mode 100644 index 00000000..05491321 --- /dev/null +++ b/blockchains/tron/assets/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S/info.json @@ -0,0 +1,21 @@ +{ + "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", + "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/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S/logo.png b/blockchains/tron/assets/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S/logo.png new file mode 100644 index 00000000..af8e5836 Binary files /dev/null and b/blockchains/tron/assets/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S/logo.png differ diff --git a/blockchains/tron/assets/TSYfjdt4x3QDEFADucb6TSzz1XUCTSq1NU/info.json b/blockchains/tron/assets/TSYfjdt4x3QDEFADucb6TSzz1XUCTSq1NU/info.json new file mode 100644 index 00000000..1f4697d1 --- /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 00000000..fb7784c7 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 00000000..80e74d2a --- /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 00000000..1951f3b4 Binary files /dev/null and b/blockchains/tron/assets/TScLC8RqWY5bZwcLrzAVUaMUK22d1BRciP/logo.png differ diff --git a/blockchains/tron/assets/TSkG9SSKdWV5QBuTPN6udi48rym5iPpLof/info.json b/blockchains/tron/assets/TSkG9SSKdWV5QBuTPN6udi48rym5iPpLof/info.json new file mode 100644 index 00000000..743bf0b3 --- /dev/null +++ b/blockchains/tron/assets/TSkG9SSKdWV5QBuTPN6udi48rym5iPpLof/info.json @@ -0,0 +1,11 @@ +{ + "name": "CraftToken", + "symbol": "CFT", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TSkG9SSKdWV5QBuTPN6udi48rym5iPpLof", + "status": "abandoned", + "id": "TSkG9SSKdWV5QBuTPN6udi48rym5iPpLof" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TSkG9SSKdWV5QBuTPN6udi48rym5iPpLof/logo.png b/blockchains/tron/assets/TSkG9SSKdWV5QBuTPN6udi48rym5iPpLof/logo.png new file mode 100644 index 00000000..9d2dc27d Binary files /dev/null and b/blockchains/tron/assets/TSkG9SSKdWV5QBuTPN6udi48rym5iPpLof/logo.png differ diff --git a/blockchains/tron/assets/TSrLhu1fVjPDtGbZD6Fn4ra9gHFUUAjzkN/info.json b/blockchains/tron/assets/TSrLhu1fVjPDtGbZD6Fn4ra9gHFUUAjzkN/info.json new file mode 100644 index 00000000..ce7059cc --- /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 00000000..4e802b83 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 00000000..9028cccd --- /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 00000000..86fe45a8 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 00000000..3f32c29f --- /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 00000000..d985b220 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 00000000..4803f44a --- /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 00000000..81e69fc9 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 00000000..21bdae6d --- /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 00000000..a92f4885 Binary files /dev/null and b/blockchains/tron/assets/TTLVdtBYipLVqVbPaaQb2Zbcubbpddtxu7/logo.png differ diff --git a/blockchains/tron/assets/TTUwzoZAK6rpDjpSh8B2XFTnxGfbMLHJaq/info.json b/blockchains/tron/assets/TTUwzoZAK6rpDjpSh8B2XFTnxGfbMLHJaq/info.json new file mode 100644 index 00000000..884bf96f --- /dev/null +++ b/blockchains/tron/assets/TTUwzoZAK6rpDjpSh8B2XFTnxGfbMLHJaq/info.json @@ -0,0 +1,11 @@ +{ + "name": "KING OF DEFI", + "type": "TRC20", + "symbol": "KODX", + "decimals": 6, + "website": "https://kingofdefi.org/", + "description": "New Gateway for staking, lending and borrowing.", + "explorer": "https://tronscan.io/#/token20/TTUwzoZAK6rpDjpSh8B2XFTnxGfbMLHJaq", + "status": "active", + "id": "TTUwzoZAK6rpDjpSh8B2XFTnxGfbMLHJaq" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TTUwzoZAK6rpDjpSh8B2XFTnxGfbMLHJaq/logo.png b/blockchains/tron/assets/TTUwzoZAK6rpDjpSh8B2XFTnxGfbMLHJaq/logo.png new file mode 100644 index 00000000..0942a634 Binary files /dev/null and b/blockchains/tron/assets/TTUwzoZAK6rpDjpSh8B2XFTnxGfbMLHJaq/logo.png differ diff --git a/blockchains/tron/assets/TTWcUCrXeh9riHfguXzkh1iK9BUwPtCF7z/info.json b/blockchains/tron/assets/TTWcUCrXeh9riHfguXzkh1iK9BUwPtCF7z/info.json new file mode 100644 index 00000000..8c6a4872 --- /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 00000000..91c8cff4 Binary files /dev/null and b/blockchains/tron/assets/TTWcUCrXeh9riHfguXzkh1iK9BUwPtCF7z/logo.png differ diff --git a/blockchains/tron/assets/TTYpHRvz826qA8ChsSvdJKfAY4wiY7p1NP/info.json b/blockchains/tron/assets/TTYpHRvz826qA8ChsSvdJKfAY4wiY7p1NP/info.json new file mode 100644 index 00000000..66ffa7f0 --- /dev/null +++ b/blockchains/tron/assets/TTYpHRvz826qA8ChsSvdJKfAY4wiY7p1NP/info.json @@ -0,0 +1,11 @@ +{ + "name": "DCIToken", + "symbol": "DCI", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TTYpHRvz826qA8ChsSvdJKfAY4wiY7p1NP", + "status": "spam", + "id": "TTYpHRvz826qA8ChsSvdJKfAY4wiY7p1NP" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TTYpHRvz826qA8ChsSvdJKfAY4wiY7p1NP/logo.png b/blockchains/tron/assets/TTYpHRvz826qA8ChsSvdJKfAY4wiY7p1NP/logo.png new file mode 100644 index 00000000..bb7d01ae Binary files /dev/null and b/blockchains/tron/assets/TTYpHRvz826qA8ChsSvdJKfAY4wiY7p1NP/logo.png differ diff --git a/blockchains/tron/assets/TTfj39Vm7ATpNJMsfDUWYVzxK8mPPA4yYE/info.json b/blockchains/tron/assets/TTfj39Vm7ATpNJMsfDUWYVzxK8mPPA4yYE/info.json new file mode 100644 index 00000000..9d627457 --- /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 00000000..8bbfdce0 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 00000000..c7aca3fa --- /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 00000000..4457466d 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 00000000..c1ba5e84 --- /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 00000000..21ed72e7 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 00000000..434c87bb --- /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 00000000..311e62f3 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 00000000..cf7feac0 --- /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 00000000..6f48f28b 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 00000000..7e1b9805 --- /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 00000000..30817f4f 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 00000000..2e2f96d7 --- /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 00000000..2b243463 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 00000000..de52a90b --- /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 00000000..4b2d95ce Binary files /dev/null and b/blockchains/tron/assets/TUFonyWZ4Tza5MzgDj6g2u5rfdGoRVYG7g/logo.png differ diff --git a/blockchains/tron/assets/TUH4wj8tox7sVxvkTqHLogn6mRVKfrK71M/info.json b/blockchains/tron/assets/TUH4wj8tox7sVxvkTqHLogn6mRVKfrK71M/info.json new file mode 100644 index 00000000..14935437 --- /dev/null +++ b/blockchains/tron/assets/TUH4wj8tox7sVxvkTqHLogn6mRVKfrK71M/info.json @@ -0,0 +1,11 @@ +{ + "name": "Happiness", + "type": "TRC20", + "symbol": "HPNS", + "decimals": 6, + "website": "https://way2happiness.info/", + "description": "Happiness", + "explorer": "https://tronscan.io/#/token20/TUH4wj8tox7sVxvkTqHLogn6mRVKfrK71M", + "status": "active", + "id": "TUH4wj8tox7sVxvkTqHLogn6mRVKfrK71M" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TUH4wj8tox7sVxvkTqHLogn6mRVKfrK71M/logo.png b/blockchains/tron/assets/TUH4wj8tox7sVxvkTqHLogn6mRVKfrK71M/logo.png new file mode 100644 index 00000000..1dfb4537 Binary files /dev/null and b/blockchains/tron/assets/TUH4wj8tox7sVxvkTqHLogn6mRVKfrK71M/logo.png differ diff --git a/blockchains/tron/assets/TUH63441fBWg2Jam4qTYC8aKX7Np3fHi1b/info.json b/blockchains/tron/assets/TUH63441fBWg2Jam4qTYC8aKX7Np3fHi1b/info.json new file mode 100644 index 00000000..80449a36 --- /dev/null +++ b/blockchains/tron/assets/TUH63441fBWg2Jam4qTYC8aKX7Np3fHi1b/info.json @@ -0,0 +1,11 @@ +{ + "name": "ChinaInvestmentExchangeToken", + "symbol": "CIEX", + "type": "TRC20", + "decimals": 18, + "description": "CIEX is the official platform token issued by CIEX Digital Assets Exchange Platform on the TRON network.", + "website": "https://ciex.io", + "explorer": "https://tronscan.io/#/token20/TUH63441fBWg2Jam4qTYC8aKX7Np3fHi1b", + "status": "active", + "id": "TUH63441fBWg2Jam4qTYC8aKX7Np3fHi1b" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TUH63441fBWg2Jam4qTYC8aKX7Np3fHi1b/logo.png b/blockchains/tron/assets/TUH63441fBWg2Jam4qTYC8aKX7Np3fHi1b/logo.png new file mode 100644 index 00000000..37c9e25d Binary files /dev/null and b/blockchains/tron/assets/TUH63441fBWg2Jam4qTYC8aKX7Np3fHi1b/logo.png differ diff --git a/blockchains/tron/assets/TUL5yxRKeSWvceLZ3BSU5iNJcQmNxkWayh/info.json b/blockchains/tron/assets/TUL5yxRKeSWvceLZ3BSU5iNJcQmNxkWayh/info.json new file mode 100644 index 00000000..2eedb6da --- /dev/null +++ b/blockchains/tron/assets/TUL5yxRKeSWvceLZ3BSU5iNJcQmNxkWayh/info.json @@ -0,0 +1,11 @@ +{ + "name": "Vena", + "symbol": "vena", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TUL5yxRKeSWvceLZ3BSU5iNJcQmNxkWayh", + "status": "abandoned", + "id": "TUL5yxRKeSWvceLZ3BSU5iNJcQmNxkWayh" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TUL5yxRKeSWvceLZ3BSU5iNJcQmNxkWayh/logo.png b/blockchains/tron/assets/TUL5yxRKeSWvceLZ3BSU5iNJcQmNxkWayh/logo.png new file mode 100644 index 00000000..75ad751d Binary files /dev/null and b/blockchains/tron/assets/TUL5yxRKeSWvceLZ3BSU5iNJcQmNxkWayh/logo.png differ diff --git a/blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/info.json b/blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/info.json new file mode 100644 index 00000000..6a7a3745 --- /dev/null +++ b/blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZEDXION", + "symbol": "Zedxion", + "type": "TRC20", + "decimals": 18, + "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.", + "website": "https://zedxion.io/", + "explorer": "https://tronscan.io/#/token20/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY", + "status": "active", + "id": "TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY", + "links": [ + { + "name": "x", + "url": "https://x.com/ZedxionC" + }, + { + "name": "telegram", + "url": "https://t.me/zedxion" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/logo.png b/blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/logo.png new file mode 100644 index 00000000..f8a3cf70 Binary files /dev/null and b/blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/logo.png differ diff --git a/blockchains/tron/assets/TUPM7K8REVzD2UdV4R5fe5M8XbnR2DdoJ6/info.json b/blockchains/tron/assets/TUPM7K8REVzD2UdV4R5fe5M8XbnR2DdoJ6/info.json new file mode 100644 index 00000000..b9a8a193 --- /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 00000000..b3aa7381 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 00000000..7bced0d3 --- /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 00000000..499d05ab 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 00000000..d7b62060 --- /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 00000000..1351af57 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 new file mode 100644 index 00000000..9f62d0fb --- /dev/null +++ b/blockchains/tron/assets/TUpMhErZL2fhh4sVNULAbNKLokS4GjC1F4/info.json @@ -0,0 +1,33 @@ +{ + "name": "TrueUSDToken", + "symbol": "TrueUSD", + "type": "TRC20", + "decimals": 18, + "description": "TrueUSD (TUSD) is the first independently-verified digital asset redeemable 1-for-1 for US Dollars.", + "website": "https://www.trueusd.com/", + "explorer": "https://tronscan.io/#/token20/TUpMhErZL2fhh4sVNULAbNKLokS4GjC1F4", + "status": "active", + "id": "TUpMhErZL2fhh4sVNULAbNKLokS4GjC1F4", + "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/tron/assets/TUpMhErZL2fhh4sVNULAbNKLokS4GjC1F4/logo.png b/blockchains/tron/assets/TUpMhErZL2fhh4sVNULAbNKLokS4GjC1F4/logo.png new file mode 100644 index 00000000..0ae677cd Binary files /dev/null and b/blockchains/tron/assets/TUpMhErZL2fhh4sVNULAbNKLokS4GjC1F4/logo.png differ diff --git a/blockchains/tron/assets/TUsRFkJG8LZ5fqh2TSmHUSw7kRWUbzfqAF/info.json b/blockchains/tron/assets/TUsRFkJG8LZ5fqh2TSmHUSw7kRWUbzfqAF/info.json new file mode 100644 index 00000000..1a640997 --- /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 00000000..1407faec Binary files /dev/null and b/blockchains/tron/assets/TUsRFkJG8LZ5fqh2TSmHUSw7kRWUbzfqAF/logo.png differ diff --git a/blockchains/tron/assets/TV2UZpAzMPuMNpzQW8FJEHidDB1oht7Anb/info.json b/blockchains/tron/assets/TV2UZpAzMPuMNpzQW8FJEHidDB1oht7Anb/info.json new file mode 100644 index 00000000..3f2ae4d3 --- /dev/null +++ b/blockchains/tron/assets/TV2UZpAzMPuMNpzQW8FJEHidDB1oht7Anb/info.json @@ -0,0 +1,11 @@ +{ + "name": "DXAToken", + "symbol": "DXA", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TV2UZpAzMPuMNpzQW8FJEHidDB1oht7Anb", + "status": "abandoned", + "id": "TV2UZpAzMPuMNpzQW8FJEHidDB1oht7Anb" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TV2UZpAzMPuMNpzQW8FJEHidDB1oht7Anb/logo.png b/blockchains/tron/assets/TV2UZpAzMPuMNpzQW8FJEHidDB1oht7Anb/logo.png new file mode 100644 index 00000000..ef0a638b Binary files /dev/null and b/blockchains/tron/assets/TV2UZpAzMPuMNpzQW8FJEHidDB1oht7Anb/logo.png differ diff --git a/blockchains/tron/assets/TV5yB8f4AdoAfVVUdkytyZnX5e7SeGAZr2/info.json b/blockchains/tron/assets/TV5yB8f4AdoAfVVUdkytyZnX5e7SeGAZr2/info.json new file mode 100644 index 00000000..137d3b85 --- /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 00000000..9f7e619a 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 00000000..aa7d0e58 --- /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 00000000..0be7e154 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 00000000..301a3a07 --- /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 00000000..c61778b8 Binary files /dev/null and b/blockchains/tron/assets/TVgHqeP41s3qMDH3oKBsScEUzvyXw6bKAm/logo.png differ diff --git a/blockchains/tron/assets/TVj7RNVHy6thbM7BWdSe9G6gXwKhjhdNZS/info.json b/blockchains/tron/assets/TVj7RNVHy6thbM7BWdSe9G6gXwKhjhdNZS/info.json new file mode 100644 index 00000000..a463eb81 --- /dev/null +++ b/blockchains/tron/assets/TVj7RNVHy6thbM7BWdSe9G6gXwKhjhdNZS/info.json @@ -0,0 +1,12 @@ +{ + "name": "Klever", + "website": "https://klever.io", + "description": "Klever app is described to be a simple, secure p2p crypto wallet for blockchain.", + "explorer": "https://tronscan.io/#/token20/TVj7RNVHy6thbM7BWdSe9G6gXwKhjhdNZS", + "research": "", + "type": "TRC20", + "symbol": "KLV", + "decimals": 6, + "status": "active", + "id": "TVj7RNVHy6thbM7BWdSe9G6gXwKhjhdNZS" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TVj7RNVHy6thbM7BWdSe9G6gXwKhjhdNZS/logo.png b/blockchains/tron/assets/TVj7RNVHy6thbM7BWdSe9G6gXwKhjhdNZS/logo.png new file mode 100644 index 00000000..83eddada Binary files /dev/null and b/blockchains/tron/assets/TVj7RNVHy6thbM7BWdSe9G6gXwKhjhdNZS/logo.png differ diff --git a/blockchains/tron/assets/TVoKC3ZhU7rcisPRFgunNwHVmSqfmiTB9m/info.json b/blockchains/tron/assets/TVoKC3ZhU7rcisPRFgunNwHVmSqfmiTB9m/info.json new file mode 100644 index 00000000..fd7a0c92 --- /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 00000000..4f2dc190 Binary files /dev/null and b/blockchains/tron/assets/TVoKC3ZhU7rcisPRFgunNwHVmSqfmiTB9m/logo.png differ diff --git a/blockchains/tron/assets/TVocZFCRZ6tg8MqKCKXzZ9H2qSg29T75tK/info.json b/blockchains/tron/assets/TVocZFCRZ6tg8MqKCKXzZ9H2qSg29T75tK/info.json new file mode 100644 index 00000000..307157c5 --- /dev/null +++ b/blockchains/tron/assets/TVocZFCRZ6tg8MqKCKXzZ9H2qSg29T75tK/info.json @@ -0,0 +1,11 @@ +{ + "name": "MRWEB", + "symbol": "AMA", + "type": "TRC20", + "decimals": 6, + "description": "MRweb is a peer-to-peer Internet currency that enables instant, near-zero cost payments to anyone in the world. MRweb is an open source.", + "website": "https://mrweb.finance", + "explorer": "https://tronscan.io/#/token20/TVocZFCRZ6tg8MqKCKXzZ9H2qSg29T75tK", + "status": "active", + "id": "TVocZFCRZ6tg8MqKCKXzZ9H2qSg29T75tK" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TVocZFCRZ6tg8MqKCKXzZ9H2qSg29T75tK/logo.png b/blockchains/tron/assets/TVocZFCRZ6tg8MqKCKXzZ9H2qSg29T75tK/logo.png new file mode 100644 index 00000000..db0792f6 Binary files /dev/null and b/blockchains/tron/assets/TVocZFCRZ6tg8MqKCKXzZ9H2qSg29T75tK/logo.png differ diff --git a/blockchains/tron/assets/TVq5jvoRtxGHdHwKWDaBVsF3X9Kp2KWXxu/info.json b/blockchains/tron/assets/TVq5jvoRtxGHdHwKWDaBVsF3X9Kp2KWXxu/info.json new file mode 100644 index 00000000..e30ceaaa --- /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 00000000..e6a2aff6 Binary files /dev/null and b/blockchains/tron/assets/TVq5jvoRtxGHdHwKWDaBVsF3X9Kp2KWXxu/logo.png differ diff --git a/blockchains/tron/assets/TVthmvBhhmgVNnXZwCvCFoCUTC9Hj4eg6y/info.json b/blockchains/tron/assets/TVthmvBhhmgVNnXZwCvCFoCUTC9Hj4eg6y/info.json new file mode 100644 index 00000000..4a7c0d5a --- /dev/null +++ b/blockchains/tron/assets/TVthmvBhhmgVNnXZwCvCFoCUTC9Hj4eg6y/info.json @@ -0,0 +1,11 @@ +{ + "name": "ReaLife", + "symbol": "REAL", + "type": "TRC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TVthmvBhhmgVNnXZwCvCFoCUTC9Hj4eg6y", + "status": "abandoned", + "id": "TVthmvBhhmgVNnXZwCvCFoCUTC9Hj4eg6y" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TVthmvBhhmgVNnXZwCvCFoCUTC9Hj4eg6y/logo.png b/blockchains/tron/assets/TVthmvBhhmgVNnXZwCvCFoCUTC9Hj4eg6y/logo.png new file mode 100644 index 00000000..1146ca03 Binary files /dev/null and b/blockchains/tron/assets/TVthmvBhhmgVNnXZwCvCFoCUTC9Hj4eg6y/logo.png differ diff --git a/blockchains/tron/assets/TW2BkFwvkoH9Cx2zwifTacwkGSGiyiZWmt/info.json b/blockchains/tron/assets/TW2BkFwvkoH9Cx2zwifTacwkGSGiyiZWmt/info.json new file mode 100644 index 00000000..4581a459 --- /dev/null +++ b/blockchains/tron/assets/TW2BkFwvkoH9Cx2zwifTacwkGSGiyiZWmt/info.json @@ -0,0 +1,11 @@ +{ + "name": "\"\"\"Poker Tron Token\"\"\"", + "symbol": "\"\"\"PKT\"\"\"", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TW2BkFwvkoH9Cx2zwifTacwkGSGiyiZWmt", + "status": "abandoned", + "id": "TW2BkFwvkoH9Cx2zwifTacwkGSGiyiZWmt" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TW2BkFwvkoH9Cx2zwifTacwkGSGiyiZWmt/logo.png b/blockchains/tron/assets/TW2BkFwvkoH9Cx2zwifTacwkGSGiyiZWmt/logo.png new file mode 100644 index 00000000..5973c872 Binary files /dev/null and b/blockchains/tron/assets/TW2BkFwvkoH9Cx2zwifTacwkGSGiyiZWmt/logo.png differ diff --git a/blockchains/tron/assets/TWGihP2nEr6yccA4BLMLTNqK7qkFPA2psj/info.json b/blockchains/tron/assets/TWGihP2nEr6yccA4BLMLTNqK7qkFPA2psj/info.json new file mode 100644 index 00000000..b972ae1c --- /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 00000000..9cb31687 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 00000000..cf37f4f3 --- /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 00000000..857fe690 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 new file mode 100644 index 00000000..a5703755 --- /dev/null +++ b/blockchains/tron/assets/TWUs7FajJdRK26U1A5KZJbo8wP7jHiRFwk/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZOE CASH", + "type": "TRC20", + "symbol": "ZOE", + "decimals": 6, + "website": "https://zoe.cash/", + "description": "Zoe Cash Decentralised multipurpose system integrating finance, online training, certifications, jobs, encrypted social interaction and monetisation of goals, stored and validated on a proprietary blockchain.", + "explorer": "https://tronscan.io/#/token20/TWUs7FajJdRK26U1A5KZJbo8wP7jHiRFwk", + "status": "active", + "id": "TWUs7FajJdRK26U1A5KZJbo8wP7jHiRFwk", + "links": [ + { + "name": "x", + "url": "https://x.com/zoecashoficial" + }, + { + "name": "telegram", + "url": "https://t.me/zoecash" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TWUs7FajJdRK26U1A5KZJbo8wP7jHiRFwk/logo.png b/blockchains/tron/assets/TWUs7FajJdRK26U1A5KZJbo8wP7jHiRFwk/logo.png new file mode 100644 index 00000000..883a140f Binary files /dev/null and b/blockchains/tron/assets/TWUs7FajJdRK26U1A5KZJbo8wP7jHiRFwk/logo.png differ diff --git a/blockchains/tron/assets/TWVVcRqRmpyAi9dASvTXrqnS7FrwvDezMn/info.json b/blockchains/tron/assets/TWVVcRqRmpyAi9dASvTXrqnS7FrwvDezMn/info.json new file mode 100644 index 00000000..344b051e --- /dev/null +++ b/blockchains/tron/assets/TWVVcRqRmpyAi9dASvTXrqnS7FrwvDezMn/info.json @@ -0,0 +1,11 @@ +{ + "name": "Oikos Network Token", + "symbol": "OKS", + "type": "TRC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TWVVcRqRmpyAi9dASvTXrqnS7FrwvDezMn", + "status": "abandoned", + "id": "TWVVcRqRmpyAi9dASvTXrqnS7FrwvDezMn" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TWVVcRqRmpyAi9dASvTXrqnS7FrwvDezMn/logo.png b/blockchains/tron/assets/TWVVcRqRmpyAi9dASvTXrqnS7FrwvDezMn/logo.png new file mode 100644 index 00000000..6ace39dd Binary files /dev/null and b/blockchains/tron/assets/TWVVcRqRmpyAi9dASvTXrqnS7FrwvDezMn/logo.png differ diff --git a/blockchains/tron/assets/TWWTQF417iXzAeBfZDfNMfnzH74iKvVFtF/info.json b/blockchains/tron/assets/TWWTQF417iXzAeBfZDfNMfnzH74iKvVFtF/info.json new file mode 100644 index 00000000..260a8655 --- /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 00000000..78ee2944 Binary files /dev/null and b/blockchains/tron/assets/TWWTQF417iXzAeBfZDfNMfnzH74iKvVFtF/logo.png differ diff --git a/blockchains/tron/assets/TWXZxJDGWVhNz2SXx31kQGA5kb2cjAz9ys/info.json b/blockchains/tron/assets/TWXZxJDGWVhNz2SXx31kQGA5kb2cjAz9ys/info.json new file mode 100644 index 00000000..f9017227 --- /dev/null +++ b/blockchains/tron/assets/TWXZxJDGWVhNz2SXx31kQGA5kb2cjAz9ys/info.json @@ -0,0 +1,11 @@ +{ + "name": "AZEUSX", + "type": "TRC20", + "symbol": "AZX", + "decimals": 6, + "description": "AZX is a platform for the future of funding that powering dat for the new equity blockchain", + "website": "https://azeusx.com", + "explorer": "https://tronscan.io/#/token20/TWXZxJDGWVhNz2SXx31kQGA5kb2cjAz9ys", + "status": "active", + "id": "TWXZxJDGWVhNz2SXx31kQGA5kb2cjAz9ys" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TWXZxJDGWVhNz2SXx31kQGA5kb2cjAz9ys/logo.png b/blockchains/tron/assets/TWXZxJDGWVhNz2SXx31kQGA5kb2cjAz9ys/logo.png new file mode 100644 index 00000000..95188c5e Binary files /dev/null and b/blockchains/tron/assets/TWXZxJDGWVhNz2SXx31kQGA5kb2cjAz9ys/logo.png differ diff --git a/blockchains/tron/assets/TWf5Nkz16Fz67iW3KYcE5xAjGBjMr3sNZz/info.json b/blockchains/tron/assets/TWf5Nkz16Fz67iW3KYcE5xAjGBjMr3sNZz/info.json new file mode 100644 index 00000000..fb0f7ac9 --- /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 00000000..d89712cd 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 00000000..8e7658f6 --- /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 00000000..4db53b07 --- /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 00000000..02c91d1f 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 new file mode 100644 index 00000000..0a5a7502 --- /dev/null +++ b/blockchains/tron/assets/TWmocwvHpui48QXUVJeW2SvcFe8LyNgLCU/info.json @@ -0,0 +1,29 @@ +{ + "name": "NETCOINCAPITAL", + "website": "https://netcoincapital.com", + "description": "NetcoinCapital is blockchain based project it's made for financial service, technology & future", + "explorer": "https://tronscan.io/#/token20/TWmocwvHpui48QXUVJeW2SvcFe8LyNgLCU", + "type": "TRC20", + "symbol": "NCC", + "decimals": 18, + "status": "abandoned", + "id": "TWmocwvHpui48QXUVJeW2SvcFe8LyNgLCU", + "links": [ + { + "name": "github", + "url": "https://github.com/netcoincapital/" + }, + { + "name": "x", + "url": "https://x.com/ncctoken" + }, + { + "name": "medium", + "url": "https://medium.com/netcoincapital" + }, + { + "name": "telegram", + "url": "https://t.me/ncc_trading" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TWr6yzukRwZ53HDe3bzcC8RCTbiKa4Zzb6/info.json b/blockchains/tron/assets/TWr6yzukRwZ53HDe3bzcC8RCTbiKa4Zzb6/info.json new file mode 100644 index 00000000..56127b9f --- /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 00000000..9d7b0435 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 00000000..eda641c7 --- /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 00000000..93fd95bb 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 00000000..91d33816 --- /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 00000000..74e8233d 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 00000000..af3e2c7f --- /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 00000000..37271994 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 new file mode 100644 index 00000000..14385046 --- /dev/null +++ b/blockchains/tron/assets/TXBcx59eDVndV5upFQnTR2xdvqFd5reXET/info.json @@ -0,0 +1,61 @@ +{ + "name": "Black Phoenix", + "type": "TRC20", + "symbol": "BPX", + "decimals": 18, + "website": "https://www.blackphoenixbpx.com", + "description": "The token is designed to be profitable for people unfamiliar with digital currency.And tries to be profitable. And teach the new generation of money to the world with future plans and its amazing combination of metaverse, DeFi, GameFi and NFT instruments.", + "explorer": "https://tronscan.io/#/token20/TXBcx59eDVndV5upFQnTR2xdvqFd5reXET", + "status": "active", + "id": "TXBcx59eDVndV5upFQnTR2xdvqFd5reXET", + "links": [ + { + "name": "x", + "url": "https://x.com/OfficialBPX" + }, + { + "name": "github", + "url": "https://github.com/BLACKPHOENIXBPX" + }, + { + "name": "telegram", + "url": "https://t.me/BlackPhoenixOfficial" + }, + { + "name": "telegram_news", + "url": "https://t.me/BlackPhoenixNEWS" + }, + { + "name": "blog", + "url": "https://blackphoenixbpx.com/blog/" + }, + { + "name": "reddit", + "url": "https://reddit.com/u/OfficialBlackPhoenix" + }, + { + "name": "whitepaper", + "url": "https://blackphoenixbpx.com/wp-content/uploads/2021/04/BLACK_PHOENIX.Black_Paper.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCUviDjZeYhvhdQSlgMywNvw" + }, + { + "name": "facebook", + "url": "https://facebook.com/BlackPhoenixBPX" + }, + { + "name": "medium", + "url": "https://medium.com/@officialblackphoenix" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/black-phoenix/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/black-phoenix" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TXBcx59eDVndV5upFQnTR2xdvqFd5reXET/logo.png b/blockchains/tron/assets/TXBcx59eDVndV5upFQnTR2xdvqFd5reXET/logo.png new file mode 100644 index 00000000..c54b97a3 Binary files /dev/null and b/blockchains/tron/assets/TXBcx59eDVndV5upFQnTR2xdvqFd5reXET/logo.png differ diff --git a/blockchains/tron/assets/TXDk8mbtRbXeYuMNS83CfKPaYYT8XWv9Hz/info.json b/blockchains/tron/assets/TXDk8mbtRbXeYuMNS83CfKPaYYT8XWv9Hz/info.json new file mode 100644 index 00000000..fb1b2b2b --- /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 00000000..b17bf63f 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 00000000..737dc3f4 --- /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 00000000..903b2efe 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 00000000..53c3175e --- /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 00000000..7e787f8a 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 00000000..c99908e2 --- /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 00000000..ef576b8f 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 00000000..5a49bed1 --- /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 00000000..b3762830 Binary files /dev/null and b/blockchains/tron/assets/TXcvVJHbkRdUDhoM2P9q6jSJAqtmQqrVqP/logo.png differ diff --git a/blockchains/tron/assets/TXfUT4K3z8tatGAk3rEw5qMuqrPXp28h4g/info.json b/blockchains/tron/assets/TXfUT4K3z8tatGAk3rEw5qMuqrPXp28h4g/info.json new file mode 100644 index 00000000..a9b1f28a --- /dev/null +++ b/blockchains/tron/assets/TXfUT4K3z8tatGAk3rEw5qMuqrPXp28h4g/info.json @@ -0,0 +1,11 @@ +{ + "name": "DLIToken", + "symbol": "DLI", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TXfUT4K3z8tatGAk3rEw5qMuqrPXp28h4g", + "status": "spam", + "id": "TXfUT4K3z8tatGAk3rEw5qMuqrPXp28h4g" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TXfUT4K3z8tatGAk3rEw5qMuqrPXp28h4g/logo.png b/blockchains/tron/assets/TXfUT4K3z8tatGAk3rEw5qMuqrPXp28h4g/logo.png new file mode 100644 index 00000000..85bf0082 Binary files /dev/null and b/blockchains/tron/assets/TXfUT4K3z8tatGAk3rEw5qMuqrPXp28h4g/logo.png differ diff --git a/blockchains/tron/assets/TXqapjiBCFBhjuLUEF34ow2NjmQDanbQ6u/info.json b/blockchains/tron/assets/TXqapjiBCFBhjuLUEF34ow2NjmQDanbQ6u/info.json new file mode 100644 index 00000000..39836cf1 --- /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 00000000..857fe690 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 00000000..948369fb --- /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 00000000..0c6d1b72 Binary files /dev/null and b/blockchains/tron/assets/TY5XRUJFnCUDnpMwuufY4do9cbZgcRR99o/logo.png differ diff --git a/blockchains/tron/assets/TYLrbh1pVcx95bop33XQ1iYdh7r3ogEQ8Q/info.json b/blockchains/tron/assets/TYLrbh1pVcx95bop33XQ1iYdh7r3ogEQ8Q/info.json new file mode 100644 index 00000000..648bf720 --- /dev/null +++ b/blockchains/tron/assets/TYLrbh1pVcx95bop33XQ1iYdh7r3ogEQ8Q/info.json @@ -0,0 +1,11 @@ +{ + "name": "Centric RISE", + "symbol": "CNR", + "type": "TRC20", + "decimals": 8, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TYLrbh1pVcx95bop33XQ1iYdh7r3ogEQ8Q", + "status": "active", + "id": "TYLrbh1pVcx95bop33XQ1iYdh7r3ogEQ8Q" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TYLrbh1pVcx95bop33XQ1iYdh7r3ogEQ8Q/logo.png b/blockchains/tron/assets/TYLrbh1pVcx95bop33XQ1iYdh7r3ogEQ8Q/logo.png new file mode 100644 index 00000000..b1bcf5b5 Binary files /dev/null and b/blockchains/tron/assets/TYLrbh1pVcx95bop33XQ1iYdh7r3ogEQ8Q/logo.png differ diff --git a/blockchains/tron/assets/TYM9eM22SCynRc5YaMxE2PX1kwv7H2rXAu/info.json b/blockchains/tron/assets/TYM9eM22SCynRc5YaMxE2PX1kwv7H2rXAu/info.json new file mode 100644 index 00000000..a92388e4 --- /dev/null +++ b/blockchains/tron/assets/TYM9eM22SCynRc5YaMxE2PX1kwv7H2rXAu/info.json @@ -0,0 +1,11 @@ +{ + "name": "KDG Token", + "symbol": "KDG", + "type": "TRC20", + "decimals": 18, + "description": "The aims of Kingdom Game 4.0 is participating in the process of promoting digital currency to become the first game token, to pioneer connecting current popular Games; With Smart Contract technology, multiple payment for Gamers, it shall be created a new market for people who own cryptocurrency. By buying Kingdom Game 4.0’s token at Agents nationwide. Gamers could buy in-game items or upgrade level.", + "website": "https://kingdomgame.org/", + "explorer": "https://tronscan.io/#/token20/TYM9eM22SCynRc5YaMxE2PX1kwv7H2rXAu", + "status": "active", + "id": "TYM9eM22SCynRc5YaMxE2PX1kwv7H2rXAu" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TYM9eM22SCynRc5YaMxE2PX1kwv7H2rXAu/logo.png b/blockchains/tron/assets/TYM9eM22SCynRc5YaMxE2PX1kwv7H2rXAu/logo.png new file mode 100644 index 00000000..efb66342 Binary files /dev/null and b/blockchains/tron/assets/TYM9eM22SCynRc5YaMxE2PX1kwv7H2rXAu/logo.png differ diff --git a/blockchains/tron/assets/TYNgrZX2eLPZ8UUoZEWuiUZYn3bh8fHU8f/info.json b/blockchains/tron/assets/TYNgrZX2eLPZ8UUoZEWuiUZYn3bh8fHU8f/info.json new file mode 100644 index 00000000..80fb95f9 --- /dev/null +++ b/blockchains/tron/assets/TYNgrZX2eLPZ8UUoZEWuiUZYn3bh8fHU8f/info.json @@ -0,0 +1,11 @@ +{ + "name": "YLToken", + "symbol": "YL", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TYNgrZX2eLPZ8UUoZEWuiUZYn3bh8fHU8f", + "status": "spam", + "id": "TYNgrZX2eLPZ8UUoZEWuiUZYn3bh8fHU8f" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TYNgrZX2eLPZ8UUoZEWuiUZYn3bh8fHU8f/logo.png b/blockchains/tron/assets/TYNgrZX2eLPZ8UUoZEWuiUZYn3bh8fHU8f/logo.png new file mode 100644 index 00000000..59bf7eba Binary files /dev/null and b/blockchains/tron/assets/TYNgrZX2eLPZ8UUoZEWuiUZYn3bh8fHU8f/logo.png differ diff --git a/blockchains/tron/assets/TYiMPNKE31VcfwaYgU8Wn1RzjLDi932LkV/info.json b/blockchains/tron/assets/TYiMPNKE31VcfwaYgU8Wn1RzjLDi932LkV/info.json new file mode 100644 index 00000000..28fe1632 --- /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 00000000..53c67cfe Binary files /dev/null and b/blockchains/tron/assets/TYiMPNKE31VcfwaYgU8Wn1RzjLDi932LkV/logo.png differ diff --git a/blockchains/tron/assets/TYqgBctn2NjCQZLBbh1SMEAsH36mopnNqo/info.json b/blockchains/tron/assets/TYqgBctn2NjCQZLBbh1SMEAsH36mopnNqo/info.json new file mode 100644 index 00000000..733dcc7a --- /dev/null +++ b/blockchains/tron/assets/TYqgBctn2NjCQZLBbh1SMEAsH36mopnNqo/info.json @@ -0,0 +1,11 @@ +{ + "name": "DTF", + "symbol": "DTF", + "type": "TRC20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TYqgBctn2NjCQZLBbh1SMEAsH36mopnNqo", + "status": "abandoned", + "id": "TYqgBctn2NjCQZLBbh1SMEAsH36mopnNqo" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TYqgBctn2NjCQZLBbh1SMEAsH36mopnNqo/logo.png b/blockchains/tron/assets/TYqgBctn2NjCQZLBbh1SMEAsH36mopnNqo/logo.png new file mode 100644 index 00000000..67edbcd1 Binary files /dev/null and b/blockchains/tron/assets/TYqgBctn2NjCQZLBbh1SMEAsH36mopnNqo/logo.png differ diff --git a/blockchains/tron/assets/TYwzUjaR5fiKkzwPHVYjyP22QgBKdqUwgo/info.json b/blockchains/tron/assets/TYwzUjaR5fiKkzwPHVYjyP22QgBKdqUwgo/info.json new file mode 100644 index 00000000..5a781372 --- /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 00000000..9b115d0a Binary files /dev/null and b/blockchains/tron/assets/TYwzUjaR5fiKkzwPHVYjyP22QgBKdqUwgo/logo.png differ diff --git a/blockchains/tron/assets/TYxoK7DAvfze7ByWA7LYnzcoLxdKQpjrD1/info.json b/blockchains/tron/assets/TYxoK7DAvfze7ByWA7LYnzcoLxdKQpjrD1/info.json new file mode 100644 index 00000000..7f01f0ef --- /dev/null +++ b/blockchains/tron/assets/TYxoK7DAvfze7ByWA7LYnzcoLxdKQpjrD1/info.json @@ -0,0 +1,11 @@ +{ + "name": "FFToken", + "symbol": "FF", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TYxoK7DAvfze7ByWA7LYnzcoLxdKQpjrD1", + "status": "spam", + "id": "TYxoK7DAvfze7ByWA7LYnzcoLxdKQpjrD1" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TYxoK7DAvfze7ByWA7LYnzcoLxdKQpjrD1/logo.png b/blockchains/tron/assets/TYxoK7DAvfze7ByWA7LYnzcoLxdKQpjrD1/logo.png new file mode 100644 index 00000000..633ea0bb Binary files /dev/null and b/blockchains/tron/assets/TYxoK7DAvfze7ByWA7LYnzcoLxdKQpjrD1/logo.png differ diff --git a/blockchains/tron/assets/TZ5jA9F5zGRgi9qk9ATMu6D7wyEpnxQGJh/info.json b/blockchains/tron/assets/TZ5jA9F5zGRgi9qk9ATMu6D7wyEpnxQGJh/info.json new file mode 100644 index 00000000..807d582b --- /dev/null +++ b/blockchains/tron/assets/TZ5jA9F5zGRgi9qk9ATMu6D7wyEpnxQGJh/info.json @@ -0,0 +1,29 @@ +{ + "name": "CyberFM Radio", + "type": "TRC20", + "symbol": "CYFM", + "decimals": 6, + "website": "https://cyber-fm.com", + "description": "Utility token to reward Radio listeners and is 1 of 2 in the DLPRO Dual Token Economy.", + "explorer": "https://tronscan.io/#/token20/TZ5jA9F5zGRgi9qk9ATMu6D7wyEpnxQGJh", + "status": "active", + "id": "TZ5jA9F5zGRgi9qk9ATMu6D7wyEpnxQGJh", + "links": [ + { + "name": "github", + "url": "https://github.com/CyberFM/" + }, + { + "name": "x", + "url": "https://x.com/CyberFM" + }, + { + "name": "telegram", + "url": "https://t.me/mftudotnet" + }, + { + "name": "facebook", + "url": "https://facebook.com/cyberfm" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TZ5jA9F5zGRgi9qk9ATMu6D7wyEpnxQGJh/logo.png b/blockchains/tron/assets/TZ5jA9F5zGRgi9qk9ATMu6D7wyEpnxQGJh/logo.png new file mode 100644 index 00000000..680f5c60 Binary files /dev/null and b/blockchains/tron/assets/TZ5jA9F5zGRgi9qk9ATMu6D7wyEpnxQGJh/logo.png differ diff --git a/blockchains/tron/assets/TZ7gXbhgWVNWVzwK3T1sWuwUvKk2PgerrL/info.json b/blockchains/tron/assets/TZ7gXbhgWVNWVzwK3T1sWuwUvKk2PgerrL/info.json new file mode 100644 index 00000000..213bd864 --- /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 00000000..4ddb0ca1 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 00000000..0e6533ac --- /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 00000000..bf515810 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 00000000..5ad158f5 --- /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 00000000..24a17931 Binary files /dev/null and b/blockchains/tron/assets/TZ8auz2fN4yBzeeLfycpU4VeYgmrCnzE9x/logo.png differ diff --git a/blockchains/tron/assets/TZGQJY1QbZuXJmMgDgoZVeG4mD1Ef6SdWU/info.json b/blockchains/tron/assets/TZGQJY1QbZuXJmMgDgoZVeG4mD1Ef6SdWU/info.json new file mode 100644 index 00000000..4b941599 --- /dev/null +++ b/blockchains/tron/assets/TZGQJY1QbZuXJmMgDgoZVeG4mD1Ef6SdWU/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRON UP", + "symbol": "UP", + "type": "TRC20", + "decimals": 6, + "description": "TRON UP is a decentralized game platform, the main members of the team are blockchain technology enthusiasts from all over the world.", + "website": "https://tronup.io/", + "explorer": "https://tronscan.io/#/token20/TZGQJY1QbZuXJmMgDgoZVeG4mD1Ef6SdWU", + "status": "active", + "id": "TZGQJY1QbZuXJmMgDgoZVeG4mD1Ef6SdWU" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TZGQJY1QbZuXJmMgDgoZVeG4mD1Ef6SdWU/logo.png b/blockchains/tron/assets/TZGQJY1QbZuXJmMgDgoZVeG4mD1Ef6SdWU/logo.png new file mode 100644 index 00000000..daa6880d Binary files /dev/null and b/blockchains/tron/assets/TZGQJY1QbZuXJmMgDgoZVeG4mD1Ef6SdWU/logo.png differ diff --git a/blockchains/tron/assets/TZHTVehxLeoVQ5uuQLy3TDx4Uuw6EmHVNF/info.json b/blockchains/tron/assets/TZHTVehxLeoVQ5uuQLy3TDx4Uuw6EmHVNF/info.json new file mode 100644 index 00000000..8539e3c6 --- /dev/null +++ b/blockchains/tron/assets/TZHTVehxLeoVQ5uuQLy3TDx4Uuw6EmHVNF/info.json @@ -0,0 +1,11 @@ +{ + "name": "TRON GO", + "symbol": "GO", + "type": "TRC20", + "decimals": 6, + "description": "-", + "website": "", + "explorer": "https://tronscan.io/#/token20/TZHTVehxLeoVQ5uuQLy3TDx4Uuw6EmHVNF", + "status": "abandoned", + "id": "TZHTVehxLeoVQ5uuQLy3TDx4Uuw6EmHVNF" +} \ No newline at end of file diff --git a/blockchains/tron/assets/TZHTVehxLeoVQ5uuQLy3TDx4Uuw6EmHVNF/logo.png b/blockchains/tron/assets/TZHTVehxLeoVQ5uuQLy3TDx4Uuw6EmHVNF/logo.png new file mode 100644 index 00000000..b6235c75 Binary files /dev/null and b/blockchains/tron/assets/TZHTVehxLeoVQ5uuQLy3TDx4Uuw6EmHVNF/logo.png differ diff --git a/blockchains/tron/info/info.json b/blockchains/tron/info/info.json new file mode 100644 index 00000000..8df76fac --- /dev/null +++ b/blockchains/tron/info/info.json @@ -0,0 +1,32 @@ +{ + "name": "TRON", + "website": "https://tron.network/", + "description": "TRON is dedicated to building the infrastructure for a truly decentralized Internet.", + "explorer": "https://tronscan.io/#/", + "research": "https://research.binance.com/en/projects/tron", + "symbol": "TRX", + "type": "coin", + "decimals": 6, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/tronprotocol" + }, + { + "name": "x", + "url": "https://x.com/Tronfoundation" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Tronix" + }, + { + "name": "whitepaper", + "url": "https://developers.tron.network/docs" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/info/logo.png b/blockchains/tron/info/logo.png new file mode 100644 index 00000000..4a2381e4 Binary files /dev/null and b/blockchains/tron/info/logo.png differ diff --git a/blockchains/tron/info/square_logo.png b/blockchains/tron/info/square_logo.png new file mode 100644 index 00000000..004f4cfb 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 new file mode 100644 index 00000000..39519f36 --- /dev/null +++ b/blockchains/tron/tokenlist.json @@ -0,0 +1,22 @@ +{ + "name": "Trust Wallet: Tron Chain List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2023-01-23T12:30:11.183301", + "tokens": [ + { + "asset": "c195_tTMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH", + "type": "TRC20", + "address": "TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH", + "name": "BUSD Token", + "symbol": "BUSD", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/logo.png", + "pairs": [] + } + ], + "version": { + "major": 0, + "minor": 0, + "patch": 0 + } + } diff --git a/blockchains/tron/validators/assets/TCEo1hMAdaJrQmvnGTCcGT2LqrGU4N7Jqf/logo.png b/blockchains/tron/validators/assets/TCEo1hMAdaJrQmvnGTCcGT2LqrGU4N7Jqf/logo.png new file mode 100644 index 00000000..a1f84c2c Binary files /dev/null and b/blockchains/tron/validators/assets/TCEo1hMAdaJrQmvnGTCcGT2LqrGU4N7Jqf/logo.png differ diff --git a/blockchains/tron/validators/assets/TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47/logo.png b/blockchains/tron/validators/assets/TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47/logo.png new file mode 100644 index 00000000..f5f3ada9 Binary files /dev/null and b/blockchains/tron/validators/assets/TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47/logo.png differ diff --git a/blockchains/tron/validators/assets/TGzz8gjYiYRqpfmDwnLxfgPuLVNmpCswVp/logo.png b/blockchains/tron/validators/assets/TGzz8gjYiYRqpfmDwnLxfgPuLVNmpCswVp/logo.png new file mode 100644 index 00000000..f93025bc Binary files /dev/null and b/blockchains/tron/validators/assets/TGzz8gjYiYRqpfmDwnLxfgPuLVNmpCswVp/logo.png differ diff --git a/blockchains/tron/validators/assets/TJvaAeFb8Lykt9RQcVyyTFN2iDvGMuyD4M/logo.png b/blockchains/tron/validators/assets/TJvaAeFb8Lykt9RQcVyyTFN2iDvGMuyD4M/logo.png new file mode 100644 index 00000000..afa2a5d6 Binary files /dev/null and b/blockchains/tron/validators/assets/TJvaAeFb8Lykt9RQcVyyTFN2iDvGMuyD4M/logo.png differ diff --git a/blockchains/tron/validators/assets/TLyqzVGLV1srkB7dToTAEqgDSfPtXRJZYH/logo.png b/blockchains/tron/validators/assets/TLyqzVGLV1srkB7dToTAEqgDSfPtXRJZYH/logo.png new file mode 100644 index 00000000..bfc04770 Binary files /dev/null and b/blockchains/tron/validators/assets/TLyqzVGLV1srkB7dToTAEqgDSfPtXRJZYH/logo.png differ diff --git a/blockchains/tron/validators/assets/TMAqheVWMaNm15UJTNgasEVpJ7YHYiZVZ8/logo.png b/blockchains/tron/validators/assets/TMAqheVWMaNm15UJTNgasEVpJ7YHYiZVZ8/logo.png new file mode 100644 index 00000000..2bd3a1e2 Binary files /dev/null and b/blockchains/tron/validators/assets/TMAqheVWMaNm15UJTNgasEVpJ7YHYiZVZ8/logo.png differ diff --git a/blockchains/tron/validators/assets/TPMGfspxLQGom8sKutrbHcDKtHjRHFbGKw/logo.png b/blockchains/tron/validators/assets/TPMGfspxLQGom8sKutrbHcDKtHjRHFbGKw/logo.png new file mode 100644 index 00000000..6891376c Binary files /dev/null and b/blockchains/tron/validators/assets/TPMGfspxLQGom8sKutrbHcDKtHjRHFbGKw/logo.png differ diff --git a/blockchains/tron/validators/assets/TSNbzxac4WhxN91XvaUfPTKP2jNT18mP6T/logo.png b/blockchains/tron/validators/assets/TSNbzxac4WhxN91XvaUfPTKP2jNT18mP6T/logo.png new file mode 100644 index 00000000..e85fbe4a Binary files /dev/null and b/blockchains/tron/validators/assets/TSNbzxac4WhxN91XvaUfPTKP2jNT18mP6T/logo.png differ diff --git a/blockchains/tron/validators/assets/TUD4YXYdj2t1gP5th3A7t97mx1AUmrrQRt/logo.png b/blockchains/tron/validators/assets/TUD4YXYdj2t1gP5th3A7t97mx1AUmrrQRt/logo.png new file mode 100644 index 00000000..f761ee03 Binary files /dev/null and b/blockchains/tron/validators/assets/TUD4YXYdj2t1gP5th3A7t97mx1AUmrrQRt/logo.png differ diff --git a/blockchains/tron/validators/assets/TV9QitxEJ3pdiAUAfJ2QuPxLKp9qTTR3og/logo.png b/blockchains/tron/validators/assets/TV9QitxEJ3pdiAUAfJ2QuPxLKp9qTTR3og/logo.png new file mode 100644 index 00000000..7d5f84f9 Binary files /dev/null and b/blockchains/tron/validators/assets/TV9QitxEJ3pdiAUAfJ2QuPxLKp9qTTR3og/logo.png differ diff --git a/blockchains/tron/validators/assets/TWGGB35HUudizmcLheQN7kANDnD8KfgKkK/logo.png b/blockchains/tron/validators/assets/TWGGB35HUudizmcLheQN7kANDnD8KfgKkK/logo.png new file mode 100644 index 00000000..3dffa4ad Binary files /dev/null and b/blockchains/tron/validators/assets/TWGGB35HUudizmcLheQN7kANDnD8KfgKkK/logo.png differ diff --git a/blockchains/tron/validators/assets/TWkpg1ZQ4fTv7sj41zBUTMo1kuJEUWTere/logo.png b/blockchains/tron/validators/assets/TWkpg1ZQ4fTv7sj41zBUTMo1kuJEUWTere/logo.png new file mode 100644 index 00000000..50bd6d9c Binary files /dev/null and b/blockchains/tron/validators/assets/TWkpg1ZQ4fTv7sj41zBUTMo1kuJEUWTere/logo.png differ diff --git a/blockchains/tron/validators/list.json b/blockchains/tron/validators/list.json new file mode 100644 index 00000000..ba10a31a --- /dev/null +++ b/blockchains/tron/validators/list.json @@ -0,0 +1,110 @@ +[ + { + "id": "TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com", + "payout": { + "commission": 100 + } + }, + { + "id": "TLyqzVGLV1srkB7dToTAEqgDSfPtXRJZYH", + "name": "Binance", + "description": "Binance is a global cryptocurrency exchange that provides a platform for trading more than 100 cryptocurrencies. Since early 2018, Binance is considered as the biggest cryptocurrency exchange in the world in terms of trading volume.", + "website": "https://binance.com/en/staking", + "payout": { + "commission": 100 + } + }, + { + "id": "TGzz8gjYiYRqpfmDwnLxfgPuLVNmpCswVp", + "name": "Sesameseed", + "description": "Sesameseed is a blockchain community providing fair and transparent representation in delegated governance by rewarding Voters for their participation on Tron and Ontology.", + "website": "https://sesameseed.org", + "payout": { + "commission": 20 + } + }, + { + "id": "TPMGfspxLQGom8sKutrbHcDKtHjRHFbGKw", + "name": "InfStones", + "description": "World's leading cloud infrastructure and staking as a service provicer for blockchains. Supernodes on EOS, TRON, VeChain, Ontology, LOOM, IOST and many other chains.", + "website": "https://infstones.io/", + "payout": { + "commission": 100 + } + }, + { + "id": "TV9QitxEJ3pdiAUAfJ2QuPxLKp9qTTR3og", + "name": "BitGuild", + "description": "BitGuild is a team of blockchain and gaming industry veterans that aims to create the go-to platform for blockchain gaming and entertainment", + "website": "https://bitguild.com", + "payout": { + "commission": 0 + } + }, + { + "id": "TWGGB35HUudizmcLheQN7kANDnD8KfgKkK", + "name": "TRON-Family", + "description": "TRON-Family is a Super Representative Partner who stands for community work and development.", + "website": "https://tron-family.de", + "payout": { + "commission": 20 + } + }, + { + "id": "TWkpg1ZQ4fTv7sj41zBUTMo1kuJEUWTere", + "name": "TRONLink", + "description": "TronLink, similar to MetaMask, is a bridge for allowing TRON DApps to run in the browser without having to deploy a TRON Full Node", + "website": "https://tronlink.org/", + "payout": { + "commission": 20 + } + }, + { + "id": "TCEo1hMAdaJrQmvnGTCcGT2LqrGU4N7Jqf", + "name": "TRONScan", + "description": "TRON is an ambitious project dedicated to the establishment of a truly decentralized Internet and its infrastructure.", + "website": "https://tronscan.org/", + "payout": { + "commission": 20 + } + }, + { + "id": "TUD4YXYdj2t1gP5th3A7t97mx1AUmrrQRt", + "name": "TRONGrid", + "description": "TronGrid offers an easy to use hosted API, load balanced full nodes, secure and reliable developer tools with direct access to the TRON Network.", + "website": "https://trongrid.io/", + "payout": { + "commission": 20 + } + }, + { + "id": "TSNbzxac4WhxN91XvaUfPTKP2jNT18mP6T", + "name": "BitTorrent", + "description": "The world's biggest distributed network, powered by BTT.", + "website": "https://bittorrent.com/", + "payout": { + "commission": 20 + } + }, + { + "id": "TJvaAeFb8Lykt9RQcVyyTFN2iDvGMuyD4M", + "name": "Poloniex", + "description": "Poloniex Futures provides both REST APIs and Websocket Feeds for interacting with our futures exchange.", + "website": "https://poloniex.com/", + "payout": { + "commission": 0 + } + }, + { + "id": "TMAqheVWMaNm15UJTNgasEVpJ7YHYiZVZ8", + "name": "Allnodes.com ⚡️ 0% fee", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes.", + "website": "https://wwww.allnodes.com/trx/staking", + "payout": { + "commission": 0 + } + } +] \ No newline at end of file diff --git a/blockchains/umee/info/info.json b/blockchains/umee/info/info.json new file mode 100644 index 00000000..b3ddf823 --- /dev/null +++ b/blockchains/umee/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Umee", + "type": "coin", + "symbol": "UMEE", + "decimals": 6, + "website": "https://www.umee.cc/", + "description": "A cross-chain DeFi market that enables multi-chain leverage, lending & borrowing and staking.", + "explorer": "https://www.mintscan.io/umee", + "status": "active", + "rpc_url": "https://umee-rpc.polkachu.com/", + "denom": "uumee", + "lcd_url": "https://umee-lcd.quantnode.tech/", + "hrp": "umee", + "links": [ + { + "name": "github", + "url": "https://github.com/umee-network" + }, + { + "name": "whitepaper", + "url": "https://docs.umee.cc/umee" + }, + { + "name": "x", + "url": "https://x.com/Umee_CrossChain" + } + ] +} \ No newline at end of file diff --git a/blockchains/umee/info/logo.png b/blockchains/umee/info/logo.png new file mode 100644 index 00000000..654575bd Binary files /dev/null and b/blockchains/umee/info/logo.png differ diff --git a/blockchains/umee/info/square_logo.png b/blockchains/umee/info/square_logo.png new file mode 100644 index 00000000..793f7b4a 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 00000000..eaf66cb5 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 00000000..84f50066 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 00000000..e1178170 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 00000000..02916372 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 00000000..f8a4c666 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 00000000..6e18b1ce 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 00000000..0888af01 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 00000000..c2cb86a4 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 00000000..9b14a7bf --- /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/assets/0x0000000000000000000000000000456E65726779/info.json b/blockchains/vechain/assets/0x0000000000000000000000000000456E65726779/info.json new file mode 100644 index 00000000..cbd434dc --- /dev/null +++ b/blockchains/vechain/assets/0x0000000000000000000000000000456E65726779/info.json @@ -0,0 +1,12 @@ +{ + "name": "VeThor Token", + "type": "VET", + "symbol": "VeThor", + "decimals": 18, + "website": "https://vechain.org", + "description": "VeThor is the secondary token of the VeChainThor ecosystem and functions as the gas for transactions.", + "explorer": "https://explore.vechain.org/accounts/0x0000000000000000000000000000456E65726779", + "research": "https://research.binance.com/en/projects/vethor-token", + "status": "active", + "id": "0x0000000000000000000000000000456E65726779" +} diff --git a/blockchains/vechain/assets/0x0000000000000000000000000000456E65726779/logo.png b/blockchains/vechain/assets/0x0000000000000000000000000000456E65726779/logo.png new file mode 100644 index 00000000..97cf8ddf Binary files /dev/null and b/blockchains/vechain/assets/0x0000000000000000000000000000456E65726779/logo.png differ diff --git a/blockchains/vechain/info/info.json b/blockchains/vechain/info/info.json new file mode 100644 index 00000000..9f7fb9fa --- /dev/null +++ b/blockchains/vechain/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "VeChain", + "website": "https://vechain.org", + "description": "VeChain is the world’s leading blockchain platform offering Blockchain-as-a-Service to enterprises for products and information. VeChain strives to build a trust-free and distributed business ecosystem.", + "explorer": "https://insight.vecha.in", + "research": "https://research.binance.com/en/projects/vechain", + "symbol": "VET", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/vechain" + }, + { + "name": "x", + "url": "https://x.com/vechainofficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/vechain" + }, + { + "name": "whitepaper", + "url": "https://www.vechain.org/whitepaper/#header" + } + ] +} \ No newline at end of file diff --git a/blockchains/vechain/info/logo.png b/blockchains/vechain/info/logo.png new file mode 100644 index 00000000..b07113f5 Binary files /dev/null and b/blockchains/vechain/info/logo.png differ diff --git a/blockchains/vechain/info/square_logo.png b/blockchains/vechain/info/square_logo.png new file mode 100644 index 00000000..6da25d65 Binary files /dev/null and b/blockchains/vechain/info/square_logo.png differ diff --git a/blockchains/vechain/validators/list.json b/blockchains/vechain/validators/list.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/blockchains/vechain/validators/list.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/blockchains/verge/info/info.json b/blockchains/verge/info/info.json new file mode 100644 index 00000000..adaf08c5 --- /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 00000000..a04d4f18 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 00000000..a235dc6b 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 new file mode 100644 index 00000000..fac319b3 --- /dev/null +++ b/blockchains/viacoin/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Viacoin", + "website": "http://viacoin.org", + "description": "Viacoin is an open source crypto-currency created in 2014, derived from the Bitcoin protocol that supports embedded consensus with an extended OP_RETURN of 120 byte.", + "explorer": "https://chainz.cryptoid.info/via", + "research": "https://research.binance.com/en/projects/viacoin", + "symbol": "VIA", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/viacoin/viacoin" + }, + { + "name": "x", + "url": "https://x.com/viacoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/viacoin" + }, + { + "name": "whitepaper", + "url": "https://github.com/viacoin/documents/blob/master/whitepapers/Viacoin_fullcolor_whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/viacoin/info/logo.png b/blockchains/viacoin/info/logo.png new file mode 100644 index 00000000..1b3a4158 Binary files /dev/null and b/blockchains/viacoin/info/logo.png differ diff --git a/blockchains/viacoin/info/square_logo.png b/blockchains/viacoin/info/square_logo.png new file mode 100644 index 00000000..89cdaede Binary files /dev/null and b/blockchains/viacoin/info/square_logo.png differ diff --git a/blockchains/wanchain/assets/0x0f2e7C0E904a525A24FF6f658053f6bA5Ce7A209/info.json b/blockchains/wanchain/assets/0x0f2e7C0E904a525A24FF6f658053f6bA5Ce7A209/info.json new file mode 100644 index 00000000..67d619eb --- /dev/null +++ b/blockchains/wanchain/assets/0x0f2e7C0E904a525A24FF6f658053f6bA5Ce7A209/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wanchain LRC Crosschain Token", + "symbol": "LRC", + "type": "WAN20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://www.wanscan.org/token/0x0F2E7c0e904A525a24ff6F658053F6Ba5cE7a209", + "status": "active", + "id": "0x0f2e7C0E904a525A24FF6f658053f6bA5Ce7A209" +} \ No newline at end of file diff --git a/blockchains/wanchain/assets/0x0f2e7C0E904a525A24FF6f658053f6bA5Ce7A209/logo.png b/blockchains/wanchain/assets/0x0f2e7C0E904a525A24FF6f658053f6bA5Ce7A209/logo.png new file mode 100644 index 00000000..fd2db345 Binary files /dev/null and b/blockchains/wanchain/assets/0x0f2e7C0E904a525A24FF6f658053f6bA5Ce7A209/logo.png differ diff --git a/blockchains/wanchain/assets/0x350bb91C9C8Ef4e8C0e19fbdc6A90A24bcb1eC2A/info.json b/blockchains/wanchain/assets/0x350bb91C9C8Ef4e8C0e19fbdc6A90A24bcb1eC2A/info.json new file mode 100644 index 00000000..2bff7b62 --- /dev/null +++ b/blockchains/wanchain/assets/0x350bb91C9C8Ef4e8C0e19fbdc6A90A24bcb1eC2A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wanchain MKR Crosschain Token", + "symbol": "MKR", + "type": "WAN20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://www.wanscan.org/token/0x350BB91c9c8eF4E8c0E19FBDC6a90a24BCB1Ec2a", + "status": "active", + "id": "0x350bb91C9C8Ef4e8C0e19fbdc6A90A24bcb1eC2A" +} \ No newline at end of file diff --git a/blockchains/wanchain/assets/0x350bb91C9C8Ef4e8C0e19fbdc6A90A24bcb1eC2A/logo.png b/blockchains/wanchain/assets/0x350bb91C9C8Ef4e8C0e19fbdc6A90A24bcb1eC2A/logo.png new file mode 100644 index 00000000..c635070c Binary files /dev/null and b/blockchains/wanchain/assets/0x350bb91C9C8Ef4e8C0e19fbdc6A90A24bcb1eC2A/logo.png differ diff --git a/blockchains/wanchain/assets/0x3BEB80170272f07aCA12987AF86A59888255A807/info.json b/blockchains/wanchain/assets/0x3BEB80170272f07aCA12987AF86A59888255A807/info.json new file mode 100644 index 00000000..53a00132 --- /dev/null +++ b/blockchains/wanchain/assets/0x3BEB80170272f07aCA12987AF86A59888255A807/info.json @@ -0,0 +1,11 @@ +{ + "name": "Curve", + "symbol": "CURV", + "type": "WAN20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://www.wanscan.org/token/0x3beb80170272F07Aca12987af86a59888255a807", + "status": "active", + "id": "0x3BEB80170272f07aCA12987AF86A59888255A807" +} \ No newline at end of file diff --git a/blockchains/wanchain/assets/0x3BEB80170272f07aCA12987AF86A59888255A807/logo.png b/blockchains/wanchain/assets/0x3BEB80170272f07aCA12987AF86A59888255A807/logo.png new file mode 100644 index 00000000..c7fbe5a8 Binary files /dev/null and b/blockchains/wanchain/assets/0x3BEB80170272f07aCA12987AF86A59888255A807/logo.png differ diff --git a/blockchains/wanchain/assets/0x51316966907ef568689775066e97c46a4Ffde1a4/info.json b/blockchains/wanchain/assets/0x51316966907ef568689775066e97c46a4Ffde1a4/info.json new file mode 100644 index 00000000..1189f71e --- /dev/null +++ b/blockchains/wanchain/assets/0x51316966907ef568689775066e97c46a4Ffde1a4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Wanchain AURA Crosschain Token", + "symbol": "AURA", + "type": "WAN20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://www.wanscan.org/token/0x51316966907EF568689775066E97C46A4fFDE1A4", + "status": "active", + "id": "0x51316966907ef568689775066e97c46a4Ffde1a4" +} \ No newline at end of file diff --git a/blockchains/wanchain/assets/0x51316966907ef568689775066e97c46a4Ffde1a4/logo.png b/blockchains/wanchain/assets/0x51316966907ef568689775066e97c46a4Ffde1a4/logo.png new file mode 100644 index 00000000..e77ac089 Binary files /dev/null and b/blockchains/wanchain/assets/0x51316966907ef568689775066e97c46a4Ffde1a4/logo.png differ diff --git a/blockchains/wanchain/assets/0xA13a41a2349D09C1E3a0dD4d9448Af4aD799fC4A/info.json b/blockchains/wanchain/assets/0xA13a41a2349D09C1E3a0dD4d9448Af4aD799fC4A/info.json new file mode 100644 index 00000000..1547244c --- /dev/null +++ b/blockchains/wanchain/assets/0xA13a41a2349D09C1E3a0dD4d9448Af4aD799fC4A/info.json @@ -0,0 +1,11 @@ +{ + "name": "BlockMedx Token", + "symbol": "MDX", + "type": "WAN20", + "decimals": 18, + "description": "-", + "website": "", + "explorer": "https://www.wanscan.org/token/0xa13A41A2349d09c1e3A0Dd4D9448aF4Ad799Fc4a", + "status": "active", + "id": "0xA13a41a2349D09C1E3a0dD4d9448Af4aD799fC4A" +} \ No newline at end of file diff --git a/blockchains/wanchain/assets/0xA13a41a2349D09C1E3a0dD4d9448Af4aD799fC4A/logo.png b/blockchains/wanchain/assets/0xA13a41a2349D09C1E3a0dD4d9448Af4aD799fC4A/logo.png new file mode 100644 index 00000000..114388bf Binary files /dev/null and b/blockchains/wanchain/assets/0xA13a41a2349D09C1E3a0dD4d9448Af4aD799fC4A/logo.png differ diff --git a/blockchains/wanchain/assets/0xc6f4465a6A521124c8E3096b62575C157999d361/info.json b/blockchains/wanchain/assets/0xc6f4465a6A521124c8E3096b62575C157999d361/info.json new file mode 100644 index 00000000..d375ec26 --- /dev/null +++ b/blockchains/wanchain/assets/0xc6f4465a6A521124c8E3096b62575C157999d361/info.json @@ -0,0 +1,11 @@ +{ + "name": "FNX Token", + "type": "WAN20", + "symbol": "FNX", + "decimals": 0, + "website": "https://finnexus.io/", + "description": "FNX is the token of FinNexus, the project building a network of multi-chain protocol clusters to power innovative cross-chain DeFi products.", + "explorer": "https://www.wanscan.org/token/0xc6f4465a6A521124c8E3096b62575C157999d361", + "status": "active", + "id": "0xc6f4465a6A521124c8E3096b62575C157999d361" +} \ No newline at end of file diff --git a/blockchains/wanchain/assets/0xc6f4465a6A521124c8E3096b62575C157999d361/logo.png b/blockchains/wanchain/assets/0xc6f4465a6A521124c8E3096b62575C157999d361/logo.png new file mode 100644 index 00000000..3564bf8e Binary files /dev/null and b/blockchains/wanchain/assets/0xc6f4465a6A521124c8E3096b62575C157999d361/logo.png differ diff --git a/blockchains/wanchain/info/info.json b/blockchains/wanchain/info/info.json new file mode 100644 index 00000000..1f7c39f2 --- /dev/null +++ b/blockchains/wanchain/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Wanchain", + "website": "https://wanchain.org", + "description": "Wanchain aims to build a super financial market of digital assets. It is an infrastructure connecting different digital assets with Private Cross-Chain Smart Contracts.", + "explorer": "https://www.wanscan.org", + "research": "https://research.binance.com/en/projects/wanchain", + "symbol": "WAN", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/wanchain" + }, + { + "name": "x", + "url": "https://x.com/wanchain_org" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/wanchain" + }, + { + "name": "whitepaper", + "url": "https://www.explorewanchain.org" + } + ] +} \ No newline at end of file diff --git a/blockchains/wanchain/info/logo.png b/blockchains/wanchain/info/logo.png new file mode 100644 index 00000000..eef380ff Binary files /dev/null and b/blockchains/wanchain/info/logo.png differ diff --git a/blockchains/wanchain/info/square_logo.png b/blockchains/wanchain/info/square_logo.png new file mode 100644 index 00000000..04807e54 Binary files /dev/null and b/blockchains/wanchain/info/square_logo.png differ diff --git a/blockchains/wanchain/validators/assets/0xb5c930beA4383CE7377C8e83c8C8a0eFB505dBe8/logo.png b/blockchains/wanchain/validators/assets/0xb5c930beA4383CE7377C8e83c8C8a0eFB505dBe8/logo.png new file mode 100644 index 00000000..f19889c8 Binary files /dev/null and b/blockchains/wanchain/validators/assets/0xb5c930beA4383CE7377C8e83c8C8a0eFB505dBe8/logo.png differ diff --git a/blockchains/wanchain/validators/list.json b/blockchains/wanchain/validators/list.json new file mode 100644 index 00000000..cbb395b3 --- /dev/null +++ b/blockchains/wanchain/validators/list.json @@ -0,0 +1,8 @@ +[ + { + "id": "0xb5c930beA4383CE7377C8e83c8C8a0eFB505dBe8", + "name": "Anonstake", + "description": "Anonstake.com allows people to delegate tokens and start staking on Proof-of-Stake blockchains.", + "website": "https://anonstake.com" + } +] \ No newline at end of file diff --git a/blockchains/waves/assets/4LHHvYGNKJUg5hj65aGD5vgScvCBmLpdRFtjokvCjSL8/info.json b/blockchains/waves/assets/4LHHvYGNKJUg5hj65aGD5vgScvCBmLpdRFtjokvCjSL8/info.json new file mode 100644 index 00000000..606e25d3 --- /dev/null +++ b/blockchains/waves/assets/4LHHvYGNKJUg5hj65aGD5vgScvCBmLpdRFtjokvCjSL8/info.json @@ -0,0 +1,11 @@ +{ + "name": "Waves Enterprise System Token", + "type": "WAVES", + "symbol": "WEST", + "decimals": 8, + "website": "", + "description": "-", + "explorer": "https://wavesexplorer.com/assets/4LHHvYGNKJUg5hj65aGD5vgScvCBmLpdRFtjokvCjSL8", + "status": "active", + "id": "4LHHvYGNKJUg5hj65aGD5vgScvCBmLpdRFtjokvCjSL8" +} \ No newline at end of file diff --git a/blockchains/waves/assets/4LHHvYGNKJUg5hj65aGD5vgScvCBmLpdRFtjokvCjSL8/logo.png b/blockchains/waves/assets/4LHHvYGNKJUg5hj65aGD5vgScvCBmLpdRFtjokvCjSL8/logo.png new file mode 100644 index 00000000..2c18b8a5 Binary files /dev/null and b/blockchains/waves/assets/4LHHvYGNKJUg5hj65aGD5vgScvCBmLpdRFtjokvCjSL8/logo.png differ diff --git a/blockchains/waves/assets/6nSpVyNH7yM69eg446wrQR94ipbbcmZMU1ENPwanC97g/info.json b/blockchains/waves/assets/6nSpVyNH7yM69eg446wrQR94ipbbcmZMU1ENPwanC97g/info.json new file mode 100644 index 00000000..2aa4386a --- /dev/null +++ b/blockchains/waves/assets/6nSpVyNH7yM69eg446wrQR94ipbbcmZMU1ENPwanC97g/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neutrino System Base Token", + "type": "WAVES", + "symbol": "NSBT", + "decimals": 6, + "website": "", + "description": "-", + "explorer": "https://wavesexplorer.com/assets/6nSpVyNH7yM69eg446wrQR94ipbbcmZMU1ENPwanC97g", + "status": "active", + "id": "6nSpVyNH7yM69eg446wrQR94ipbbcmZMU1ENPwanC97g" +} \ No newline at end of file diff --git a/blockchains/waves/assets/6nSpVyNH7yM69eg446wrQR94ipbbcmZMU1ENPwanC97g/logo.png b/blockchains/waves/assets/6nSpVyNH7yM69eg446wrQR94ipbbcmZMU1ENPwanC97g/logo.png new file mode 100644 index 00000000..5ade1b6b Binary files /dev/null and b/blockchains/waves/assets/6nSpVyNH7yM69eg446wrQR94ipbbcmZMU1ENPwanC97g/logo.png differ diff --git a/blockchains/waves/assets/8inca5fv4xr6KZtRMRPYr7vADfk8fd6G2z1gMoRkbUYS/info.json b/blockchains/waves/assets/8inca5fv4xr6KZtRMRPYr7vADfk8fd6G2z1gMoRkbUYS/info.json new file mode 100644 index 00000000..001a03ca --- /dev/null +++ b/blockchains/waves/assets/8inca5fv4xr6KZtRMRPYr7vADfk8fd6G2z1gMoRkbUYS/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neutrino JPY", + "type": "WAVES", + "symbol": "NeutrinoJPY", + "decimals": 6, + "website": "", + "description": "-", + "explorer": "https://wavesexplorer.com/assets/8inca5fv4xr6KZtRMRPYr7vADfk8fd6G2z1gMoRkbUYS", + "status": "active", + "id": "8inca5fv4xr6KZtRMRPYr7vADfk8fd6G2z1gMoRkbUYS" +} \ No newline at end of file diff --git a/blockchains/waves/assets/8inca5fv4xr6KZtRMRPYr7vADfk8fd6G2z1gMoRkbUYS/logo.png b/blockchains/waves/assets/8inca5fv4xr6KZtRMRPYr7vADfk8fd6G2z1gMoRkbUYS/logo.png new file mode 100644 index 00000000..615e018f Binary files /dev/null and b/blockchains/waves/assets/8inca5fv4xr6KZtRMRPYr7vADfk8fd6G2z1gMoRkbUYS/logo.png differ diff --git a/blockchains/waves/assets/9sQutD5HnRvjM1uui5cVC4w9xkMPAfYEV8ymug3Mon2Y/info.json b/blockchains/waves/assets/9sQutD5HnRvjM1uui5cVC4w9xkMPAfYEV8ymug3Mon2Y/info.json new file mode 100644 index 00000000..9f3f7af7 --- /dev/null +++ b/blockchains/waves/assets/9sQutD5HnRvjM1uui5cVC4w9xkMPAfYEV8ymug3Mon2Y/info.json @@ -0,0 +1,11 @@ +{ + "name": "SignatureChain", + "type": "WAVES", + "symbol": "SIGN", + "decimals": 8, + "website": "", + "description": "-", + "explorer": "https://wavesexplorer.com/assets/9sQutD5HnRvjM1uui5cVC4w9xkMPAfYEV8ymug3Mon2Y", + "status": "active", + "id": "9sQutD5HnRvjM1uui5cVC4w9xkMPAfYEV8ymug3Mon2Y" +} \ No newline at end of file diff --git a/blockchains/waves/assets/9sQutD5HnRvjM1uui5cVC4w9xkMPAfYEV8ymug3Mon2Y/logo.png b/blockchains/waves/assets/9sQutD5HnRvjM1uui5cVC4w9xkMPAfYEV8ymug3Mon2Y/logo.png new file mode 100644 index 00000000..f411b295 Binary files /dev/null and b/blockchains/waves/assets/9sQutD5HnRvjM1uui5cVC4w9xkMPAfYEV8ymug3Mon2Y/logo.png differ diff --git a/blockchains/waves/assets/DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p/info.json b/blockchains/waves/assets/DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p/info.json new file mode 100644 index 00000000..e38356cd --- /dev/null +++ b/blockchains/waves/assets/DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neutrino USD", + "type": "WAVES", + "symbol": "NeutrinoUSD", + "decimals": 6, + "website": "", + "description": "-", + "explorer": "https://wavesexplorer.com/assets/DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p", + "status": "active", + "id": "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p" +} \ No newline at end of file diff --git a/blockchains/waves/assets/DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p/logo.png b/blockchains/waves/assets/DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p/logo.png new file mode 100644 index 00000000..f7c01145 Binary files /dev/null and b/blockchains/waves/assets/DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p/logo.png differ diff --git a/blockchains/waves/assets/DGbqkzM6Ds5NAF2B3GHYfyZRmWKt7xLYRYcwpMm7D6V4/info.json b/blockchains/waves/assets/DGbqkzM6Ds5NAF2B3GHYfyZRmWKt7xLYRYcwpMm7D6V4/info.json new file mode 100644 index 00000000..87e76f6a --- /dev/null +++ b/blockchains/waves/assets/DGbqkzM6Ds5NAF2B3GHYfyZRmWKt7xLYRYcwpMm7D6V4/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neutrino TRY", + "type": "WAVES", + "symbol": "NeutrinoTRY", + "decimals": 6, + "website": "", + "description": "-", + "explorer": "https://wavesexplorer.com/assets/DGbqkzM6Ds5NAF2B3GHYfyZRmWKt7xLYRYcwpMm7D6V4", + "status": "active", + "id": "DGbqkzM6Ds5NAF2B3GHYfyZRmWKt7xLYRYcwpMm7D6V4" +} \ No newline at end of file diff --git a/blockchains/waves/assets/DGbqkzM6Ds5NAF2B3GHYfyZRmWKt7xLYRYcwpMm7D6V4/logo.png b/blockchains/waves/assets/DGbqkzM6Ds5NAF2B3GHYfyZRmWKt7xLYRYcwpMm7D6V4/logo.png new file mode 100644 index 00000000..c393b0a5 Binary files /dev/null and b/blockchains/waves/assets/DGbqkzM6Ds5NAF2B3GHYfyZRmWKt7xLYRYcwpMm7D6V4/logo.png differ diff --git a/blockchains/waves/assets/DHgwrRvVyqJsepd32YbBqUeDH4GJ1N984X8QoekjgH8J/info.json b/blockchains/waves/assets/DHgwrRvVyqJsepd32YbBqUeDH4GJ1N984X8QoekjgH8J/info.json new file mode 100644 index 00000000..4388ffbe --- /dev/null +++ b/blockchains/waves/assets/DHgwrRvVyqJsepd32YbBqUeDH4GJ1N984X8QoekjgH8J/info.json @@ -0,0 +1,11 @@ +{ + "name": "WavesCommunity", + "type": "WAVES", + "symbol": "WavesCommunity", + "decimals": 2, + "website": "", + "description": "-", + "explorer": "https://wavesexplorer.com/assets/DHgwrRvVyqJsepd32YbBqUeDH4GJ1N984X8QoekjgH8J", + "status": "active", + "id": "DHgwrRvVyqJsepd32YbBqUeDH4GJ1N984X8QoekjgH8J" +} \ No newline at end of file diff --git a/blockchains/waves/assets/DHgwrRvVyqJsepd32YbBqUeDH4GJ1N984X8QoekjgH8J/logo.png b/blockchains/waves/assets/DHgwrRvVyqJsepd32YbBqUeDH4GJ1N984X8QoekjgH8J/logo.png new file mode 100644 index 00000000..8aaefec2 Binary files /dev/null and b/blockchains/waves/assets/DHgwrRvVyqJsepd32YbBqUeDH4GJ1N984X8QoekjgH8J/logo.png differ diff --git a/blockchains/waves/assets/DUk2YTxhRoAqMJLus4G2b3fR8hMHVh6eiyFx5r29VR6t/info.json b/blockchains/waves/assets/DUk2YTxhRoAqMJLus4G2b3fR8hMHVh6eiyFx5r29VR6t/info.json new file mode 100644 index 00000000..32131a64 --- /dev/null +++ b/blockchains/waves/assets/DUk2YTxhRoAqMJLus4G2b3fR8hMHVh6eiyFx5r29VR6t/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neutrino EUR", + "type": "WAVES", + "symbol": "NeutrinoEUR", + "decimals": 6, + "website": "", + "description": "-", + "explorer": "https://wavesexplorer.com/assets/DUk2YTxhRoAqMJLus4G2b3fR8hMHVh6eiyFx5r29VR6t", + "status": "active", + "id": "DUk2YTxhRoAqMJLus4G2b3fR8hMHVh6eiyFx5r29VR6t" +} \ No newline at end of file diff --git a/blockchains/waves/assets/DUk2YTxhRoAqMJLus4G2b3fR8hMHVh6eiyFx5r29VR6t/logo.png b/blockchains/waves/assets/DUk2YTxhRoAqMJLus4G2b3fR8hMHVh6eiyFx5r29VR6t/logo.png new file mode 100644 index 00000000..d18af26a Binary files /dev/null and b/blockchains/waves/assets/DUk2YTxhRoAqMJLus4G2b3fR8hMHVh6eiyFx5r29VR6t/logo.png differ diff --git a/blockchains/waves/assets/DhaaqiG8xz8njeBuMtTM2G6avg9Jdhfrxw5onm5GaXx1/info.json b/blockchains/waves/assets/DhaaqiG8xz8njeBuMtTM2G6avg9Jdhfrxw5onm5GaXx1/info.json new file mode 100644 index 00000000..e621a797 --- /dev/null +++ b/blockchains/waves/assets/DhaaqiG8xz8njeBuMtTM2G6avg9Jdhfrxw5onm5GaXx1/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neutrino GBP", + "type": "WAVES", + "symbol": "NeutrinoGBP", + "decimals": 6, + "website": "", + "description": "-", + "explorer": "https://wavesexplorer.com/assets/DhaaqiG8xz8njeBuMtTM2G6avg9Jdhfrxw5onm5GaXx1", + "status": "active", + "id": "DhaaqiG8xz8njeBuMtTM2G6avg9Jdhfrxw5onm5GaXx1" +} \ No newline at end of file diff --git a/blockchains/waves/assets/DhaaqiG8xz8njeBuMtTM2G6avg9Jdhfrxw5onm5GaXx1/logo.png b/blockchains/waves/assets/DhaaqiG8xz8njeBuMtTM2G6avg9Jdhfrxw5onm5GaXx1/logo.png new file mode 100644 index 00000000..07bc3c3e Binary files /dev/null and b/blockchains/waves/assets/DhaaqiG8xz8njeBuMtTM2G6avg9Jdhfrxw5onm5GaXx1/logo.png differ diff --git a/blockchains/waves/assets/DxFwXxS1r3uZ2QEiSqhe6uoXMJBsz4ShLtHvr4HDzNri/info.json b/blockchains/waves/assets/DxFwXxS1r3uZ2QEiSqhe6uoXMJBsz4ShLtHvr4HDzNri/info.json new file mode 100644 index 00000000..14273ea7 --- /dev/null +++ b/blockchains/waves/assets/DxFwXxS1r3uZ2QEiSqhe6uoXMJBsz4ShLtHvr4HDzNri/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neutrino BRL", + "type": "WAVES", + "symbol": "NeutrinoBRL", + "decimals": 6, + "website": "", + "description": "-", + "explorer": "https://wavesexplorer.com/assets/DxFwXxS1r3uZ2QEiSqhe6uoXMJBsz4ShLtHvr4HDzNri", + "status": "active", + "id": "DxFwXxS1r3uZ2QEiSqhe6uoXMJBsz4ShLtHvr4HDzNri" +} \ No newline at end of file diff --git a/blockchains/waves/assets/DxFwXxS1r3uZ2QEiSqhe6uoXMJBsz4ShLtHvr4HDzNri/logo.png b/blockchains/waves/assets/DxFwXxS1r3uZ2QEiSqhe6uoXMJBsz4ShLtHvr4HDzNri/logo.png new file mode 100644 index 00000000..8de6c6b2 Binary files /dev/null and b/blockchains/waves/assets/DxFwXxS1r3uZ2QEiSqhe6uoXMJBsz4ShLtHvr4HDzNri/logo.png differ diff --git a/blockchains/waves/assets/bPWkA3MNyEr1TuDchWgdpqJZhGhfPXj7dJdr3qiW2kD/info.json b/blockchains/waves/assets/bPWkA3MNyEr1TuDchWgdpqJZhGhfPXj7dJdr3qiW2kD/info.json new file mode 100644 index 00000000..c84e7fc8 --- /dev/null +++ b/blockchains/waves/assets/bPWkA3MNyEr1TuDchWgdpqJZhGhfPXj7dJdr3qiW2kD/info.json @@ -0,0 +1,11 @@ +{ + "name": "TurtleNetwork", + "type": "WAVES", + "symbol": "TurtleNetwork", + "decimals": 8, + "website": "", + "description": "-", + "explorer": "https://wavesexplorer.com/assets/bPWkA3MNyEr1TuDchWgdpqJZhGhfPXj7dJdr3qiW2kD", + "status": "active", + "id": "bPWkA3MNyEr1TuDchWgdpqJZhGhfPXj7dJdr3qiW2kD" +} \ No newline at end of file diff --git a/blockchains/waves/assets/bPWkA3MNyEr1TuDchWgdpqJZhGhfPXj7dJdr3qiW2kD/logo.png b/blockchains/waves/assets/bPWkA3MNyEr1TuDchWgdpqJZhGhfPXj7dJdr3qiW2kD/logo.png new file mode 100644 index 00000000..1fa8660c Binary files /dev/null and b/blockchains/waves/assets/bPWkA3MNyEr1TuDchWgdpqJZhGhfPXj7dJdr3qiW2kD/logo.png differ diff --git a/blockchains/waves/assets/eWeMD5KNeuRaALCAb4uuJKtAvon2JcTyXQyoBMhuN2X/info.json b/blockchains/waves/assets/eWeMD5KNeuRaALCAb4uuJKtAvon2JcTyXQyoBMhuN2X/info.json new file mode 100644 index 00000000..2ea6084f --- /dev/null +++ b/blockchains/waves/assets/eWeMD5KNeuRaALCAb4uuJKtAvon2JcTyXQyoBMhuN2X/info.json @@ -0,0 +1,11 @@ +{ + "name": "Neutrino RUB", + "type": "WAVES", + "symbol": "NeutrinoRUB", + "decimals": 6, + "website": "", + "description": "-", + "explorer": "https://wavesexplorer.com/assets/eWeMD5KNeuRaALCAb4uuJKtAvon2JcTyXQyoBMhuN2X", + "status": "active", + "id": "eWeMD5KNeuRaALCAb4uuJKtAvon2JcTyXQyoBMhuN2X" +} \ No newline at end of file diff --git a/blockchains/waves/assets/eWeMD5KNeuRaALCAb4uuJKtAvon2JcTyXQyoBMhuN2X/logo.png b/blockchains/waves/assets/eWeMD5KNeuRaALCAb4uuJKtAvon2JcTyXQyoBMhuN2X/logo.png new file mode 100644 index 00000000..039bd353 Binary files /dev/null and b/blockchains/waves/assets/eWeMD5KNeuRaALCAb4uuJKtAvon2JcTyXQyoBMhuN2X/logo.png differ diff --git a/blockchains/waves/info/info.json b/blockchains/waves/info/info.json new file mode 100644 index 00000000..f0ab7280 --- /dev/null +++ b/blockchains/waves/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Waves", + "website": "https://wavesplatform.com", + "description": "Waves is an open-source blockchain platform, developed, marketed, and operated by Waves Platform AG, that allows users to launch their own custom cryptocurrency tokens.", + "explorer": "http://wavesexplorer.com", + "research": "https://research.binance.com/en/projects/waves", + "symbol": "WAVES", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/wavesplatform" + }, + { + "name": "x", + "url": "https://x.com/wavesplatform" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Wavesplatform" + }, + { + "name": "whitepaper", + "url": "https://blog.wavesplatform.com/waves-whitepaper-164dd6ca6a23" + } + ] +} \ No newline at end of file diff --git a/blockchains/waves/info/logo.png b/blockchains/waves/info/logo.png new file mode 100644 index 00000000..64a02ea2 Binary files /dev/null and b/blockchains/waves/info/logo.png differ diff --git a/blockchains/waves/info/square_logo.png b/blockchains/waves/info/square_logo.png new file mode 100644 index 00000000..489e8921 Binary files /dev/null and b/blockchains/waves/info/square_logo.png differ diff --git a/blockchains/waves/validators/assets/3P23fi1qfVw6RVDn4CH2a5nNouEtWNQ4THs/logo.png b/blockchains/waves/validators/assets/3P23fi1qfVw6RVDn4CH2a5nNouEtWNQ4THs/logo.png new file mode 100644 index 00000000..8b6a3cc8 Binary files /dev/null and b/blockchains/waves/validators/assets/3P23fi1qfVw6RVDn4CH2a5nNouEtWNQ4THs/logo.png differ diff --git a/blockchains/waves/validators/assets/3P2cC7cwEwnz4z6RFyx7DWnWCtTHBcaL53P/logo.png b/blockchains/waves/validators/assets/3P2cC7cwEwnz4z6RFyx7DWnWCtTHBcaL53P/logo.png new file mode 100644 index 00000000..ecc8214f Binary files /dev/null and b/blockchains/waves/validators/assets/3P2cC7cwEwnz4z6RFyx7DWnWCtTHBcaL53P/logo.png differ diff --git a/blockchains/waves/validators/assets/3P4QYFDHZqLw94MY1XNEwxdXpFiDuaLjTDu/logo.png b/blockchains/waves/validators/assets/3P4QYFDHZqLw94MY1XNEwxdXpFiDuaLjTDu/logo.png new file mode 100644 index 00000000..af74ecdf Binary files /dev/null and b/blockchains/waves/validators/assets/3P4QYFDHZqLw94MY1XNEwxdXpFiDuaLjTDu/logo.png differ diff --git a/blockchains/waves/validators/assets/3P7GQo48n1SM7EZXnmNBRMcD5oDwKXf8SSm/logo.png b/blockchains/waves/validators/assets/3P7GQo48n1SM7EZXnmNBRMcD5oDwKXf8SSm/logo.png new file mode 100644 index 00000000..4580d0e9 Binary files /dev/null and b/blockchains/waves/validators/assets/3P7GQo48n1SM7EZXnmNBRMcD5oDwKXf8SSm/logo.png differ diff --git a/blockchains/waves/validators/assets/3P7Je6sKebPKVrdY2c5tVp77vzU5zorD818/logo.png b/blockchains/waves/validators/assets/3P7Je6sKebPKVrdY2c5tVp77vzU5zorD818/logo.png new file mode 100644 index 00000000..e48a473f Binary files /dev/null and b/blockchains/waves/validators/assets/3P7Je6sKebPKVrdY2c5tVp77vzU5zorD818/logo.png differ diff --git a/blockchains/waves/validators/assets/3P7ajba4wWLXq6t1G8VaoaVqbUb1dDp8fm4/logo.png b/blockchains/waves/validators/assets/3P7ajba4wWLXq6t1G8VaoaVqbUb1dDp8fm4/logo.png new file mode 100644 index 00000000..db2cb137 Binary files /dev/null and b/blockchains/waves/validators/assets/3P7ajba4wWLXq6t1G8VaoaVqbUb1dDp8fm4/logo.png differ diff --git a/blockchains/waves/validators/assets/3P9DEDP5VbyXQyKtXDUt2crRPn5B7gs6ujc/logo.png b/blockchains/waves/validators/assets/3P9DEDP5VbyXQyKtXDUt2crRPn5B7gs6ujc/logo.png new file mode 100755 index 00000000..0bc18d91 Binary files /dev/null and b/blockchains/waves/validators/assets/3P9DEDP5VbyXQyKtXDUt2crRPn5B7gs6ujc/logo.png differ diff --git a/blockchains/waves/validators/assets/3PA1KvFfq9VuJjg45p2ytGgaNjrgnLSgf4r/logo.png b/blockchains/waves/validators/assets/3PA1KvFfq9VuJjg45p2ytGgaNjrgnLSgf4r/logo.png new file mode 100644 index 00000000..d715c960 Binary files /dev/null and b/blockchains/waves/validators/assets/3PA1KvFfq9VuJjg45p2ytGgaNjrgnLSgf4r/logo.png differ diff --git a/blockchains/waves/validators/assets/3PEFQiFMLm1gTVjPdfCErG8mTHRcH2ATaWa/logo.png b/blockchains/waves/validators/assets/3PEFQiFMLm1gTVjPdfCErG8mTHRcH2ATaWa/logo.png new file mode 100644 index 00000000..57dd7733 Binary files /dev/null and b/blockchains/waves/validators/assets/3PEFQiFMLm1gTVjPdfCErG8mTHRcH2ATaWa/logo.png differ diff --git a/blockchains/waves/validators/assets/3PEjdMgnR7a48RnZoW8RF8TeEqidue28Wgm/logo.png b/blockchains/waves/validators/assets/3PEjdMgnR7a48RnZoW8RF8TeEqidue28Wgm/logo.png new file mode 100644 index 00000000..57073016 Binary files /dev/null and b/blockchains/waves/validators/assets/3PEjdMgnR7a48RnZoW8RF8TeEqidue28Wgm/logo.png differ diff --git a/blockchains/waves/validators/assets/3PGobRuQzBY9VbeKLaZqrcQtW26wrE9jFm7/logo.png b/blockchains/waves/validators/assets/3PGobRuQzBY9VbeKLaZqrcQtW26wrE9jFm7/logo.png new file mode 100644 index 00000000..328f8e27 Binary files /dev/null and b/blockchains/waves/validators/assets/3PGobRuQzBY9VbeKLaZqrcQtW26wrE9jFm7/logo.png differ diff --git a/blockchains/waves/validators/assets/3PLp1QsFxukK5nnTBYHAqjz9duWMriDkHeT/logo.png b/blockchains/waves/validators/assets/3PLp1QsFxukK5nnTBYHAqjz9duWMriDkHeT/logo.png new file mode 100644 index 00000000..a0563d31 Binary files /dev/null and b/blockchains/waves/validators/assets/3PLp1QsFxukK5nnTBYHAqjz9duWMriDkHeT/logo.png differ diff --git a/blockchains/waves/validators/assets/3PPPTqGUYHJUYqKkRCV3kAS44guun9iN7J8/logo.png b/blockchains/waves/validators/assets/3PPPTqGUYHJUYqKkRCV3kAS44guun9iN7J8/logo.png new file mode 100644 index 00000000..72ecf723 Binary files /dev/null and b/blockchains/waves/validators/assets/3PPPTqGUYHJUYqKkRCV3kAS44guun9iN7J8/logo.png differ diff --git a/blockchains/waves/validators/assets/3PPRLpTAn9ku11YpPh1YfZcojCgopeet6er/logo.png b/blockchains/waves/validators/assets/3PPRLpTAn9ku11YpPh1YfZcojCgopeet6er/logo.png new file mode 100644 index 00000000..95078b56 Binary files /dev/null and b/blockchains/waves/validators/assets/3PPRLpTAn9ku11YpPh1YfZcojCgopeet6er/logo.png differ diff --git a/blockchains/waves/validators/list.json b/blockchains/waves/validators/list.json new file mode 100644 index 00000000..88d6f97a --- /dev/null +++ b/blockchains/waves/validators/list.json @@ -0,0 +1,86 @@ +[ + { + "id": "3P9DEDP5VbyXQyKtXDUt2crRPn5B7gs6ujc", + "name": "Tradisys", + "description": "One of the biggest leasing pools on Waves Blockchain. Managed by a professional team with a huge technical infrastructure. Leasing to Tradisys: simple, stable, secure.", + "website": "https://tradisys.com" + }, + { + "id": "3PEFQiFMLm1gTVjPdfCErG8mTHRcH2ATaWa", + "name": "BearWaves", + "description": "One of the first leasing pools on Waves Blockchain. Hosting multiple nodes on all Waves chains. Managed by professionals with Waves knowhow.", + "website": "https://bearwaves.nl/" + }, + { + "id": "3PGobRuQzBY9VbeKLaZqrcQtW26wrE9jFm7", + "name": "Wavescap", + "description": "Wavescap.com provides all kind of information investors and developers in the Waves eco system could need! With several years of experience within the Waves Blockchain our team make sure that your lease not only gain passive income, but also benefits the whole infrastructure of the network!", + "website": "https://wavescap.com" + }, + { + "id": "3PLp1QsFxukK5nnTBYHAqjz9duWMriDkHeT", + "name": "dodllnode", + "description": "Our main idea is 100% payouts to all participants. With this idea we became prize winners of the “Game of Nodes”. You will get full income from your leasing. It’s safe and max profitable!", + "website": "https://dodllnode.com" + }, + { + "id": "3P4QYFDHZqLw94MY1XNEwxdXpFiDuaLjTDu", + "name": "InProfit", + "description": "Stake with us and be InProfit.", + "website": "https://inprofitnode.org" + }, + { + "id": "3PPPTqGUYHJUYqKkRCV3kAS44guun9iN7J8", + "name": "Cryptin", + "description": "Weekly payout of revenue and creators of Waves guides and videos", + "website": "https://waves.cryptin.eu/" + }, + { + "id": "3PA1KvFfq9VuJjg45p2ytGgaNjrgnLSgf4r", + "name": "BlackTurtleNode", + "description": "Long-established leasing, Trusted High level Developers & Passionate Team with Strong Community support. Extra Rewards in TurtleNetwork (TN)", + "website": "https://turtlenetwork.eu" + }, + { + "id": "3P2cC7cwEwnz4z6RFyx7DWnWCtTHBcaL53P", + "name": "BoxiNode", + "description": "The node with the highest stake revenue. Professional team, regular payouts and 100% uptime are the main qualities of the BoxiNode!", + "website": "https://boxinode.com" + }, + { + "id": "3PEjdMgnR7a48RnZoW8RF8TeEqidue28Wgm", + "name": "WavesAssist", + "description": "Reliable lease node that pays the rewards on a daily basis. For more information see our website.", + "website": "https://wavesassist.com/" + }, + { + "id": "3P23fi1qfVw6RVDn4CH2a5nNouEtWNQ4THs", + "name": "WavesNode.NET", + "description": "130+ weekly payouts and counting, a trusted node since day 1. High uptime and highly skilled team, running node from our own datacenter.", + "website": "https://wavesnode.net" + }, + { + "id": "3PPRLpTAn9ku11YpPh1YfZcojCgopeet6er", + "name": "Stir", + "description": "Staking as a Service Provider based in Singapore and Japan. Start Earning Staking Rewards. | Improve Blockchain UX and make it accessible for everyone.", + "website": "https://stir.network/" + }, + { + "id": "3P7GQo48n1SM7EZXnmNBRMcD5oDwKXf8SSm", + "name": "Endless Summer", + "description": "Running since the day Waves went live! Quick responce time. Very reliable dedicated server.", + "website": "https://wavesexplorer.com/address/3P7GQo48n1SM7EZXnmNBRMcD5oDwKXf8SSm/tx" + }, + { + "id": "3P7ajba4wWLXq6t1G8VaoaVqbUb1dDp8fm4", + "name": "Plukkieforger", + "description": "Secure, fast, automated payments! Payreports available. Contributes to Waves ecosystem.", + "website": "http://cryptouniverse.nl/" + }, + { + "id": "3P7Je6sKebPKVrdY2c5tVp77vzU5zorD818", + "name": "TeaCash", + "description": "TeaCash Project (TEA) - Building Vietnam Tea industry on Blockchain.", + "website": "http://thuytrathai.top" + } +] \ No newline at end of file diff --git a/blockchains/wemix/info/info.json b/blockchains/wemix/info/info.json new file mode 100644 index 00000000..fd1646b9 --- /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 00000000..48229825 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 00000000..ec35416e 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 new file mode 100644 index 00000000..90468973 --- /dev/null +++ b/blockchains/xdai/assets/0x0116e28B43A358162B96f70B4De14C98A4465f25/info.json @@ -0,0 +1,37 @@ +{ + "name": "UniCrypt", + "website": "https://unicrypt.network", + "description": "UNCX is the governance token of the UniCrypt platform.", + "explorer": "https://blockscout.com/xdai/mainnet/tokens/0x0116e28B43A358162B96f70B4De14C98A4465f25", + "type": "XDAI", + "symbol": "UNCX", + "decimals": 18, + "status": "active", + "id": "0x0116e28B43A358162B96f70B4De14C98A4465f25", + "links": [ + { + "name": "x", + "url": "https://x.com/UNCX_token" + }, + { + "name": "medium", + "url": "https://unicrypt.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/uncx_token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uncx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/unicrypt" + }, + { + "name": "docs", + "url": "https://docs.unicrypt.network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/xdai/assets/0x0116e28B43A358162B96f70B4De14C98A4465f25/logo.png b/blockchains/xdai/assets/0x0116e28B43A358162B96f70B4De14C98A4465f25/logo.png new file mode 100644 index 00000000..7dd5b728 Binary files /dev/null and b/blockchains/xdai/assets/0x0116e28B43A358162B96f70B4De14C98A4465f25/logo.png differ diff --git a/blockchains/xdai/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json b/blockchains/xdai/assets/0x0DC4F92879B7670e5f4e4e6e3c801D229129D90D/info.json new file mode 100644 index 00000000..759607fd --- /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 00000000..be1b6bf2 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 00000000..b809102f --- /dev/null +++ b/blockchains/xdai/assets/0x177127622c4A00F3d409B75571e12cB3c8973d3c/info.json @@ -0,0 +1,56 @@ +{ + "name": "CoW Protocol Token from Mainnet", + "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 00000000..8df3f5b4 Binary files /dev/null and b/blockchains/xdai/assets/0x177127622c4A00F3d409B75571e12cB3c8973d3c/logo.png differ diff --git a/blockchains/xdai/assets/0x1e16aa4Df73d29C029d94CeDa3e3114EC191E25A/info.json b/blockchains/xdai/assets/0x1e16aa4Df73d29C029d94CeDa3e3114EC191E25A/info.json new file mode 100644 index 00000000..2df72481 --- /dev/null +++ b/blockchains/xdai/assets/0x1e16aa4Df73d29C029d94CeDa3e3114EC191E25A/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moons", + "type": "XDAI", + "symbol": "XMOON", + "decimals": 18, + "website": "", + "description": "-", + "explorer": "https://blockscout.com/xdai/mainnet/tokens/0x1e16aa4Df73d29C029d94CeDa3e3114EC191E25A", + "status": "active", + "id": "0x1e16aa4Df73d29C029d94CeDa3e3114EC191E25A" +} \ No newline at end of file diff --git a/blockchains/xdai/assets/0x1e16aa4Df73d29C029d94CeDa3e3114EC191E25A/logo.png b/blockchains/xdai/assets/0x1e16aa4Df73d29C029d94CeDa3e3114EC191E25A/logo.png new file mode 100644 index 00000000..5d31c07b Binary files /dev/null and b/blockchains/xdai/assets/0x1e16aa4Df73d29C029d94CeDa3e3114EC191E25A/logo.png differ diff --git a/blockchains/xdai/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json b/blockchains/xdai/assets/0x337E7456B420bD3481e7FA61fA9850343d610d34/info.json new file mode 100644 index 00000000..9536c28c --- /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 00000000..854c9b59 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 00000000..2d59e813 --- /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 00000000..bb0e7293 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 00000000..33f469bc --- /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 00000000..08570c22 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 new file mode 100644 index 00000000..7cdcd27a --- /dev/null +++ b/blockchains/xdai/assets/0x703120F2f2011a0D03A03a531Ac0e84e81F15989/info.json @@ -0,0 +1,37 @@ +{ + "name": "UNCL", + "website": "https://unicrypt.network", + "description": "UNCL is the liquidity rewards token of the UniCrypt Farming platform.", + "explorer": "https://blockscout.com/xdai/mainnet/tokens/0x703120F2f2011a0D03A03a531Ac0e84e81F15989", + "type": "XDAI", + "symbol": "UNCL", + "decimals": 18, + "status": "active", + "id": "0x703120F2f2011a0D03A03a531Ac0e84e81F15989", + "links": [ + { + "name": "x", + "url": "https://x.com/UNCX_token" + }, + { + "name": "medium", + "url": "https://unicrypt.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/uncx_token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uncl/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uncl" + }, + { + "name": "docs", + "url": "https://docs.unicrypt.network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/xdai/assets/0x703120F2f2011a0D03A03a531Ac0e84e81F15989/logo.png b/blockchains/xdai/assets/0x703120F2f2011a0D03A03a531Ac0e84e81F15989/logo.png new file mode 100644 index 00000000..4fed8801 Binary files /dev/null and b/blockchains/xdai/assets/0x703120F2f2011a0D03A03a531Ac0e84e81F15989/logo.png differ diff --git a/blockchains/xdai/assets/0x71850b7E9Ee3f13Ab46d67167341E4bDc905Eef9/info.json b/blockchains/xdai/assets/0x71850b7E9Ee3f13Ab46d67167341E4bDc905Eef9/info.json new file mode 100644 index 00000000..8de25de5 --- /dev/null +++ b/blockchains/xdai/assets/0x71850b7E9Ee3f13Ab46d67167341E4bDc905Eef9/info.json @@ -0,0 +1,11 @@ +{ + "name": "Honey", + "type": "XDAI", + "symbol": "HNY", + "decimals": 18, + "website": "", + "description": "-", + "explorer": "https://blockscout.com/xdai/mainnet/tokens/0x71850b7E9Ee3f13Ab46d67167341E4bDc905Eef9", + "status": "active", + "id": "0x71850b7E9Ee3f13Ab46d67167341E4bDc905Eef9" +} \ No newline at end of file diff --git a/blockchains/xdai/assets/0x71850b7E9Ee3f13Ab46d67167341E4bDc905Eef9/logo.png b/blockchains/xdai/assets/0x71850b7E9Ee3f13Ab46d67167341E4bDc905Eef9/logo.png new file mode 100644 index 00000000..7b646a46 Binary files /dev/null and b/blockchains/xdai/assets/0x71850b7E9Ee3f13Ab46d67167341E4bDc905Eef9/logo.png differ diff --git a/blockchains/xdai/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json b/blockchains/xdai/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/info.json new file mode 100644 index 00000000..6488b9d1 --- /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 00000000..c7f511bb Binary files /dev/null and b/blockchains/xdai/assets/0x8a1D45e102e886510e891d2Ec656a708991e2D76/logo.png differ diff --git a/blockchains/xdai/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/info.json b/blockchains/xdai/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/info.json new file mode 100644 index 00000000..e323fe64 --- /dev/null +++ b/blockchains/xdai/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/info.json @@ -0,0 +1,11 @@ +{ + "name": "Xion Global Token", + "website": "https://xion.finance", + "description": "Xion is bringing cross chain decentralised payments, loyalty and financial rewards to a global commerce industry. Think 'Stripe' for web 3.", + "explorer": "https://blockscout.com/xdai/mainnet/tokens/0xc25af3123d2420054c8fcd144c21113aa2853f39", + "type": "XDAI", + "symbol": "XGT", + "decimals": 18, + "status": "active", + "id": "0xC25AF3123d2420054c8fcd144c21113aa2853F39" +} \ No newline at end of file diff --git a/blockchains/xdai/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/logo.png b/blockchains/xdai/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/logo.png new file mode 100644 index 00000000..59a5a187 Binary files /dev/null and b/blockchains/xdai/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/logo.png differ diff --git a/blockchains/xdai/assets/0xD057604A14982FE8D88c5fC25Aac3267eA142a08/info.json b/blockchains/xdai/assets/0xD057604A14982FE8D88c5fC25Aac3267eA142a08/info.json new file mode 100644 index 00000000..afe865b1 --- /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 00000000..a268f7dd 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 00000000..7c59b559 --- /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 00000000..a268f7dd 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 00000000..035b312b --- /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 00000000..6a9e9da2 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 00000000..f8424d9c --- /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 00000000..d53b1142 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 new file mode 100644 index 00000000..4e565d15 --- /dev/null +++ b/blockchains/xdai/assets/0xDfF7fcF6a86F7Dc86E7facECA502851f82a349A6/info.json @@ -0,0 +1,37 @@ +{ + "name": "Hoge Finance", + "website": "https://hogefinance.com", + "description": "We Meme Business.", + "explorer": "https://blockscout.com/xdai/mainnet/tokens/0xDfF7fcF6a86F7Dc86E7facECA502851f82a349A6", + "type": "XDAI", + "symbol": "HOGE", + "decimals": 9, + "status": "active", + "id": "0xDfF7fcF6a86F7Dc86E7facECA502851f82a349A6", + "links": [ + { + "name": "reddit", + "url": "https://reddit.com/r/hoge" + }, + { + "name": "discord", + "url": "https://discord.com/invite/hoge" + }, + { + "name": "x", + "url": "https://x.com/hogefinance" + }, + { + "name": "telegram", + "url": "https://t.me/hogefinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hoge-finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hoge-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/xdai/assets/0xDfF7fcF6a86F7Dc86E7facECA502851f82a349A6/logo.png b/blockchains/xdai/assets/0xDfF7fcF6a86F7Dc86E7facECA502851f82a349A6/logo.png new file mode 100644 index 00000000..fd2f41b9 Binary files /dev/null and b/blockchains/xdai/assets/0xDfF7fcF6a86F7Dc86E7facECA502851f82a349A6/logo.png differ diff --git a/blockchains/xdai/assets/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB/info.json b/blockchains/xdai/assets/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB/info.json new file mode 100644 index 00000000..c9aac4b1 --- /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 00000000..b9ef84f3 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 new file mode 100644 index 00000000..897972ec --- /dev/null +++ b/blockchains/xdai/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Gnosis Chain", + "website": "https://xdaichain.com", + "description": "The first-ever USD stable blockchain and multi-chain staking token.", + "explorer": "https://blockscout.com/poa/xdai", + "research": "https://research.binance.com/en/projects/poa-network", + "symbol": "xDAI", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/xdaichain" + }, + { + "name": "x", + "url": "https://x.com/xdaichain" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/POA" + }, + { + "name": "whitepaper", + "url": "https://www.xdaichain.com/for-validators/posdao-whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/xdai/info/logo.png b/blockchains/xdai/info/logo.png new file mode 100644 index 00000000..9fdc4538 Binary files /dev/null and b/blockchains/xdai/info/logo.png differ diff --git a/blockchains/xdai/info/square_logo.png b/blockchains/xdai/info/square_logo.png new file mode 100644 index 00000000..72b546a0 Binary files /dev/null and b/blockchains/xdai/info/square_logo.png differ diff --git a/blockchains/xdai/tokenlist-extended.json b/blockchains/xdai/tokenlist-extended.json new file mode 100644 index 00000000..8d6ad05b --- /dev/null +++ b/blockchains/xdai/tokenlist-extended.json @@ -0,0 +1,21 @@ +{ + "name": "Trust Wallet: xDai", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-08-27T11:24:30.017275", + "tokens": [ + { + "asset": "c10000100_t0x703120F2f2011a0D03A03a531Ac0e84e81F15989", + "type": "XDAI", + "address": "0x703120F2f2011a0D03A03a531Ac0e84e81F15989", + "name": "UNCL", + "symbol": "UNCL", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/xdai/assets/0x703120F2f2011a0D03A03a531Ac0e84e81F15989/logo.png" + } + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} \ No newline at end of file diff --git a/blockchains/xdai/tokenlist.json b/blockchains/xdai/tokenlist.json new file mode 100644 index 00000000..b16b2a05 --- /dev/null +++ b/blockchains/xdai/tokenlist.json @@ -0,0 +1,52 @@ +{ + "name": "Trust Wallet: Fantom List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2022-07-14T17:19:11.183301", + "tokens": [ + { + "asset": "c10000100_t0x71850b7E9Ee3f13Ab46d67167341E4bDc905Eef9", + "type": "XDAI", + "address": "0x71850b7E9Ee3f13Ab46d67167341E4bDc905Eef9", + "name": "Honey", + "symbol": "HNY", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/xdai/assets/0x71850b7E9Ee3f13Ab46d67167341E4bDc905Eef9/logo.png", + "pairs": [] + }, + { + "asset": "c10000100_t0x0116e28B43A358162B96f70B4De14C98A4465f25", + "type": "XDAI", + "address": "0x0116e28B43A358162B96f70B4De14C98A4465f25", + "name": "UniCrypt", + "symbol": "UNCX", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/xdai/assets/0x0116e28B43A358162B96f70B4De14C98A4465f25/logo.png", + "pairs": [] + }, + { + "asset": "c10000100_t0xC25AF3123d2420054c8fcd144c21113aa2853F39", + "type": "XDAI", + "address": "0xC25AF3123d2420054c8fcd144c21113aa2853F39", + "name": "Xion Global Token", + "symbol": "XGT", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/xdai/assets/0xC25AF3123d2420054c8fcd144c21113aa2853F39/logo.png", + "pairs": [] + }, + { + "asset": "c10000100_t0x1e16aa4Df73d29C029d94CeDa3e3114EC191E25A", + "type": "XDAI", + "address": "0x1e16aa4Df73d29C029d94CeDa3e3114EC191E25A", + "name": "Moons", + "symbol": "XMOON", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/xdai/assets/0x1e16aa4Df73d29C029d94CeDa3e3114EC191E25A/logo.png", + "pairs": [] + } + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} diff --git a/blockchains/xdc/info/info.json b/blockchains/xdc/info/info.json new file mode 100644 index 00000000..5b10624b --- /dev/null +++ b/blockchains/xdc/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "XinFin Network", + "website": "https://xinfin.network", + "description": "XinFin Network is a Enterprise Ready Hybrid Blockchain For Global Trade and Finance,Combining the power of Public & Private blockchains with Interoperable Smart Contracts ", + "explorer": "https://explorer.xinfin.network/", + "symbol": "XDC", + "type": "coin", + "decimals": 10, + "status": "abandoned", + "links": [ + { + "name": "github", + "url": "https://github.com/XinFinORG" + }, + { + "name": "x", + "url": "https://x.com/XinFin_Official" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/xinfin" + }, + { + "name": "whitepaper", + "url": "https://xinfin.org/docs/whitepaper-tech.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/xdc/info/logo.png b/blockchains/xdc/info/logo.png new file mode 100644 index 00000000..563bc329 Binary files /dev/null and b/blockchains/xdc/info/logo.png differ diff --git a/blockchains/xdc/info/square_logo.png b/blockchains/xdc/info/square_logo.png new file mode 100644 index 00000000..77dbc425 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 00000000..712327d4 --- /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 00000000..4d4fac32 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 00000000..1b9419e7 --- /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 00000000..e5591566 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 00000000..f25156ae --- /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 00000000..6a8c187e 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 00000000..2335a20e --- /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 00000000..e6630c4f 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 00000000..7a86d619 --- /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 00000000..3bf60f31 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 00000000..8d3ecb58 --- /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 00000000..20468fc5 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 00000000..c8930d47 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 00000000..8ef7a214 --- /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 00000000..71086b12 --- /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 00000000..b4d63f01 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 00000000..851804a8 --- /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 00000000..ba2c6c0b 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 00000000..95af7e80 --- /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 00000000..971e8e3e 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 00000000..709f5729 --- /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 00000000..20468fc5 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 00000000..b58be462 --- /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 00000000..909f11f1 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 00000000..74db45b4 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 new file mode 100644 index 00000000..2cec72d0 --- /dev/null +++ b/blockchains/zcash/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Zcash", + "website": "https://z.cash", + "description": "Zcash is a decentralized and open-source cryptocurrency that provides strong privacy protections. Shielded transactions hide the sender, recipient, and value on the blockchain.", + "explorer": "https://explorer.zcha.in", + "research": "https://research.binance.com/en/projects/zcash", + "symbol": "ZEC", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/zcash/zcash" + }, + { + "name": "x", + "url": "https://x.com/electriccoinco" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/zec/" + }, + { + "name": "whitepaper", + "url": "https://github.com/zcash/zips/blob/master/protocol/protocol.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/zcash/info/logo.png b/blockchains/zcash/info/logo.png new file mode 100644 index 00000000..5489f3e5 Binary files /dev/null and b/blockchains/zcash/info/logo.png differ diff --git a/blockchains/zcash/info/square_logo.png b/blockchains/zcash/info/square_logo.png new file mode 100644 index 00000000..2f7b5729 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 new file mode 100644 index 00000000..202fac83 --- /dev/null +++ b/blockchains/zelcash/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Flux", + "website": "https://runonflux.io", + "description": "Flux is the cryptocurrency that powers the Flux Ecosystem. The Flux Network comprises Proof-of-Work miners and FluxNode Operators, who are rewarded in Flux for validating transactions and providing computational resources.", + "explorer": "https://explorer.runonflux.io", + "symbol": "FLUX", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/zelcash/zelcash" + }, + { + "name": "x", + "url": "https://x.com/flux" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/RunOnFlux" + }, + { + "name": "whitepaper", + "url": "https://runonflux.io/wp-content/uploads/2021/04/Flux_Whitepaper_V.1_release.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/zelcash/info/logo.png b/blockchains/zelcash/info/logo.png new file mode 100644 index 00000000..0793b0ee Binary files /dev/null and b/blockchains/zelcash/info/logo.png differ diff --git a/blockchains/zelcash/info/square_logo.png b/blockchains/zelcash/info/square_logo.png new file mode 100644 index 00000000..48c16b89 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 00000000..8f3d2f83 --- /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 00000000..a4f16a68 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 00000000..ff1fea52 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 00000000..8adcf9bc --- /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 00000000..cb34ccd8 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 00000000..16a3ecb7 --- /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 00000000..915e0d35 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 00000000..ae330ec1 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 00000000..f5f3ada9 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 00000000..ce95514d 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 00000000..377f168f 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 00000000..8b0aedec 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 00000000..e6da5746 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 00000000..a8401d2c 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 00000000..ebabff78 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 00000000..50e9f132 --- /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 00000000..0b7ef822 --- /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 00000000..915e0d35 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 00000000..ae330ec1 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 new file mode 100644 index 00000000..8fd52c68 --- /dev/null +++ b/blockchains/zilliqa/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Zilliqa", + "website": "https://zilliqa.com", + "description": "Zilliqa will be the world's first high-throughput public blockchain platform - designed to scale to thousands ​of transactions per second.", + "explorer": "https://viewblock.io/zilliqa", + "research": "https://research.binance.com/en/projects/zilliqa", + "symbol": "ZIL", + "type": "coin", + "decimals": 12, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/Zilliqa/Zilliqa" + }, + { + "name": "x", + "url": "https://x.com/zilliqa" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/zilliqa" + }, + { + "name": "whitepaper", + "url": "https://docs.zilliqa.com/whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/zilliqa/info/logo.png b/blockchains/zilliqa/info/logo.png new file mode 100644 index 00000000..5a243661 Binary files /dev/null and b/blockchains/zilliqa/info/logo.png differ diff --git a/blockchains/zilliqa/info/square_logo.png b/blockchains/zilliqa/info/square_logo.png new file mode 100644 index 00000000..fbb9600f 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 00000000..f1bcaf8e --- /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 00000000..37ac7a82 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 00000000..f9a7d13a --- /dev/null +++ b/blockchains/zklink/assets/0x1a1A3b2ff016332e866787B311fcB63928464509/info.json @@ -0,0 +1,36 @@ +{ + "name": "Nova 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.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 00000000..289efad3 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 00000000..0c80a4c0 --- /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 00000000..61da107e 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 00000000..6f986c04 --- /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 00000000..702d64a2 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 00000000..eb2bc1eb --- /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 00000000..0d949e02 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 00000000..9bb1e5b5 --- /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 00000000..d2e466d9 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 00000000..edbe356c 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 new file mode 100644 index 00000000..d7b7c1ba --- /dev/null +++ b/blockchains/zksync/assets/0x0000000000000000000000000000000000000000/info.json @@ -0,0 +1,32 @@ +{ + "name": "Wrapped Ether", + "type": "ZKSYNC", + "symbol": "WETH", + "decimals": 18, + "website": "https://ethereum.org/en/", + "description": "wETH is 'wrapped ETH'", + "explorer": "https://explorer.zksync.io/address/0x0000000000000000000000000000000000000000", + "status": "active", + "id": "0x0000000000000000000000000000000000000000", + "links": [ + { + "name": "x", + "url": "https://x.com/ethdotorg" + }, + { + "name": "github", + "url": "https://github.com/ethereum/ethereum-org-website" + }, + { + "name": "discord", + "url": "https://discord.com/CetY6Y4" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/zksync/assets/0x0000000000000000000000000000000000000000/logo.png b/blockchains/zksync/assets/0x0000000000000000000000000000000000000000/logo.png new file mode 100644 index 00000000..c8c11d10 Binary files /dev/null and b/blockchains/zksync/assets/0x0000000000000000000000000000000000000000/logo.png differ diff --git a/blockchains/zksync/assets/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3/info.json b/blockchains/zksync/assets/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3/info.json new file mode 100644 index 00000000..e49c62cc --- /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 00000000..4ef22557 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 00000000..77c26565 --- /dev/null +++ b/blockchains/zksync/assets/0x1d17CBcF0D6D143135aE902365D2E5e2A16538D4/info.json @@ -0,0 +1,32 @@ +{ + "name": "USD Coin", + "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 00000000..e163b59d 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 00000000..785fae06 --- /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 00000000..57c50b4e 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 00000000..cdab1c11 --- /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 00000000..7542efae 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 new file mode 100644 index 00000000..b7b76b7e --- /dev/null +++ b/blockchains/zksync/assets/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4/info.json @@ -0,0 +1,32 @@ +{ + "name": "USD Coin Bridged", + "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/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4", + "status": "active", + "id": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4", + "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/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4/logo.png b/blockchains/zksync/assets/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4/logo.png new file mode 100644 index 00000000..e163b59d Binary files /dev/null and b/blockchains/zksync/assets/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4/logo.png differ diff --git a/blockchains/zksync/assets/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41/info.json b/blockchains/zksync/assets/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41/info.json new file mode 100644 index 00000000..a2dc640a --- /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 00000000..bc59e0c4 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 00000000..51bfc6c0 --- /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 00000000..d8f5809e 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 new file mode 100644 index 00000000..b0ceb84a --- /dev/null +++ b/blockchains/zksync/assets/0xdd9f72afED3631a6C85b5369D84875e6c42f1827/info.json @@ -0,0 +1,32 @@ +{ + "name": "Symbiosis", + "type": "ZKSYNC", + "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://explorer.zksync.io/address/0xdd9f72afED3631a6C85b5369D84875e6c42f1827", + "status": "active", + "id": "0xdd9f72afED3631a6C85b5369D84875e6c42f1827", + "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/zksync/assets/0xdd9f72afED3631a6C85b5369D84875e6c42f1827/logo.png b/blockchains/zksync/assets/0xdd9f72afED3631a6C85b5369D84875e6c42f1827/logo.png new file mode 100644 index 00000000..26f3dbd5 Binary files /dev/null and b/blockchains/zksync/assets/0xdd9f72afED3631a6C85b5369D84875e6c42f1827/logo.png differ diff --git a/blockchains/zksync/assets/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2/info.json b/blockchains/zksync/assets/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2/info.json new file mode 100644 index 00000000..a2337aa4 --- /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 00000000..367b9b96 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 new file mode 100644 index 00000000..573ade7f --- /dev/null +++ b/blockchains/zksync/info/info.json @@ -0,0 +1,22 @@ +{ + "name": "ZkSync Era", + "website": "https://zksync.io/", + "description": "zkSync Era is made to look and feel like Ethereum, but with lower fees.", + "explorer": "https://explorer.zksync.io/", + "research": "https://github.com/zksync-sdk", + "symbol": "ETH", + "rpc_url": "https://zksync2-mainnet.zksync.io", + "type": "coin", + "coin_type": 324, + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "x", + "url": "https://x.com/zksync" + } + ] +} \ No newline at end of file diff --git a/blockchains/zksync/info/logo.png b/blockchains/zksync/info/logo.png new file mode 100644 index 00000000..aae19b2c Binary files /dev/null and b/blockchains/zksync/info/logo.png differ diff --git a/blockchains/zksync/info/square_logo.png b/blockchains/zksync/info/square_logo.png new file mode 100644 index 00000000..93eef7bc 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 00000000..649f2aa9 --- /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/cmd/main.go b/cmd/main.go new file mode 100644 index 00000000..205b70b2 --- /dev/null +++ b/cmd/main.go @@ -0,0 +1,10 @@ +package main + +import ( + "github.com/trustwallet/assets/internal/manager" +) + +func main() { + manager.InitCommands() + manager.Execute() +} diff --git a/dapps/0x.org.png b/dapps/0x.org.png new file mode 100644 index 00000000..b6c468fe Binary files /dev/null and b/dapps/0x.org.png differ diff --git a/dapps/aave.com.png b/dapps/aave.com.png new file mode 100644 index 00000000..8808ef84 Binary files /dev/null and b/dapps/aave.com.png differ diff --git a/dapps/aavegotchi.com.png b/dapps/aavegotchi.com.png new file mode 100644 index 00000000..51a607b6 Binary files /dev/null and b/dapps/aavegotchi.com.png differ diff --git a/dapps/account.orchid.com.png b/dapps/account.orchid.com.png new file mode 100644 index 00000000..9a8c35f6 Binary files /dev/null and b/dapps/account.orchid.com.png differ diff --git a/dapps/across.to.png b/dapps/across.to.png new file mode 100644 index 00000000..d9474ac7 Binary files /dev/null and b/dapps/across.to.png differ diff --git a/dapps/acryptos.com.png b/dapps/acryptos.com.png new file mode 100644 index 00000000..179352b1 Binary files /dev/null and b/dapps/acryptos.com.png differ diff --git a/dapps/adsbywifi.com.png b/dapps/adsbywifi.com.png new file mode 100644 index 00000000..ec6f51e9 Binary files /dev/null and b/dapps/adsbywifi.com.png differ diff --git a/dapps/aerodrome.finance.png b/dapps/aerodrome.finance.png new file mode 100644 index 00000000..9a48cd71 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 00000000..d0d62f62 Binary files /dev/null and b/dapps/aftermath.finance.png differ diff --git a/dapps/aircash.finance.png b/dapps/aircash.finance.png new file mode 100644 index 00000000..fec2544a Binary files /dev/null and b/dapps/aircash.finance.png differ diff --git a/dapps/alienworlds.io.png b/dapps/alienworlds.io.png new file mode 100644 index 00000000..7ba2bbed 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 00000000..036662d1 Binary files /dev/null and b/dapps/allbridge.io.png differ diff --git a/dapps/angelbattles.com.png b/dapps/angelbattles.com.png new file mode 100644 index 00000000..9e40cadf Binary files /dev/null and b/dapps/angelbattles.com.png differ diff --git a/dapps/angle.money.png b/dapps/angle.money.png new file mode 100644 index 00000000..4e27673d Binary files /dev/null and b/dapps/angle.money.png differ diff --git a/dapps/apenowpaylater.com.png b/dapps/apenowpaylater.com.png new file mode 100644 index 00000000..5758c478 Binary files /dev/null and b/dapps/apenowpaylater.com.png differ diff --git a/dapps/apeswap.finance.png b/dapps/apeswap.finance.png new file mode 100644 index 00000000..5676acf9 Binary files /dev/null and b/dapps/apeswap.finance.png differ diff --git a/dapps/apollox.finance.png b/dapps/apollox.finance.png new file mode 100644 index 00000000..e75f2037 Binary files /dev/null and b/dapps/apollox.finance.png differ diff --git a/dapps/app.1inch.io.png b/dapps/app.1inch.io.png new file mode 100644 index 00000000..79345e39 Binary files /dev/null and b/dapps/app.1inch.io.png differ diff --git a/dapps/app.aave.com.png b/dapps/app.aave.com.png new file mode 100644 index 00000000..323f5d1d Binary files /dev/null and b/dapps/app.aave.com.png differ diff --git a/dapps/app.airnfts.com.png b/dapps/app.airnfts.com.png new file mode 100644 index 00000000..65c0d03a Binary files /dev/null and b/dapps/app.airnfts.com.png differ diff --git a/dapps/app.apeswap.finance.png b/dapps/app.apeswap.finance.png new file mode 100644 index 00000000..5676acf9 Binary files /dev/null and b/dapps/app.apeswap.finance.png differ diff --git a/dapps/app.beefy.finance.png b/dapps/app.beefy.finance.png new file mode 100644 index 00000000..6c09bb9a Binary files /dev/null and b/dapps/app.beefy.finance.png differ diff --git a/dapps/app.clashofcoins.png b/dapps/app.clashofcoins.png new file mode 100644 index 00000000..27357093 Binary files /dev/null and b/dapps/app.clashofcoins.png differ diff --git a/dapps/app.cream.finance.png b/dapps/app.cream.finance.png new file mode 100644 index 00000000..d476ef73 Binary files /dev/null and b/dapps/app.cream.finance.png differ diff --git a/dapps/app.cryptoder.by.png b/dapps/app.cryptoder.by.png new file mode 100644 index 00000000..4684fd4e Binary files /dev/null and b/dapps/app.cryptoder.by.png differ diff --git a/dapps/app.cryptoxmas.xyz.png b/dapps/app.cryptoxmas.xyz.png new file mode 100644 index 00000000..6da5e581 Binary files /dev/null and b/dapps/app.cryptoxmas.xyz.png differ diff --git a/dapps/app.cyberconnect.png b/dapps/app.cyberconnect.png new file mode 100644 index 00000000..134961e5 Binary files /dev/null and b/dapps/app.cyberconnect.png differ diff --git a/dapps/app.deepspace.game.png b/dapps/app.deepspace.game.png new file mode 100644 index 00000000..cbf42f84 Binary files /dev/null and b/dapps/app.deepspace.game.png differ diff --git a/dapps/app.defimoneymarket.com.png b/dapps/app.defimoneymarket.com.png new file mode 100644 index 00000000..3cae47fe Binary files /dev/null and b/dapps/app.defimoneymarket.com.png differ diff --git a/dapps/app.defipie.com.png b/dapps/app.defipie.com.png new file mode 100644 index 00000000..dfba3559 Binary files /dev/null and b/dapps/app.defipie.com.png differ diff --git a/dapps/app.dhedge.org.png b/dapps/app.dhedge.org.png new file mode 100644 index 00000000..8bdc36d7 Binary files /dev/null and b/dapps/app.dhedge.org.png differ diff --git a/dapps/app.dify.finance.png b/dapps/app.dify.finance.png new file mode 100644 index 00000000..f1cc2e81 Binary files /dev/null and b/dapps/app.dify.finance.png differ diff --git a/dapps/app.dmail.png b/dapps/app.dmail.png new file mode 100644 index 00000000..30a53afb Binary files /dev/null and b/dapps/app.dmail.png differ diff --git a/dapps/app.dodoex.io.png b/dapps/app.dodoex.io.png new file mode 100644 index 00000000..1a787b79 Binary files /dev/null and b/dapps/app.dodoex.io.png differ diff --git a/dapps/app.ens.domains.png b/dapps/app.ens.domains.png new file mode 100644 index 00000000..8ec8376e Binary files /dev/null and b/dapps/app.ens.domains.png differ diff --git a/dapps/app.ercdex.com.png b/dapps/app.ercdex.com.png new file mode 100644 index 00000000..e55ef8de Binary files /dev/null and b/dapps/app.ercdex.com.png differ diff --git a/dapps/app.everrise.com.png b/dapps/app.everrise.com.png new file mode 100644 index 00000000..3c0a9a64 Binary files /dev/null and b/dapps/app.everrise.com.png differ diff --git a/dapps/app.frax.finance.png b/dapps/app.frax.finance.png new file mode 100644 index 00000000..5cfb0129 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 00000000..7ac3ca0c 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 00000000..e27b6568 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 00000000..725370aa 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 00000000..b0edfdef 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 00000000..010ca21c 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 00000000..aa99ef66 Binary files /dev/null and b/dapps/app.machines.cash.png differ diff --git a/dapps/app.mail3.me.png b/dapps/app.mail3.me.png new file mode 100644 index 00000000..1d25fab6 Binary files /dev/null and b/dapps/app.mail3.me.png differ diff --git a/dapps/app.marginfi.com.png b/dapps/app.marginfi.com.png new file mode 100644 index 00000000..3515a560 Binary files /dev/null and b/dapps/app.marginfi.com.png differ diff --git a/dapps/app.marsecosystem.com.png b/dapps/app.marsecosystem.com.png new file mode 100644 index 00000000..a06b2978 Binary files /dev/null and b/dapps/app.marsecosystem.com.png differ diff --git a/dapps/app.mcdex.io.png b/dapps/app.mcdex.io.png new file mode 100644 index 00000000..64e715c4 Binary files /dev/null and b/dapps/app.mcdex.io.png differ diff --git a/dapps/app.mocaid.png b/dapps/app.mocaid.png new file mode 100644 index 00000000..7d4b1899 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 00000000..8c452a18 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 00000000..c44d9149 Binary files /dev/null and b/dapps/app.neutron.png differ diff --git a/dapps/app.nuo.network.png b/dapps/app.nuo.network.png new file mode 100644 index 00000000..802f61eb Binary files /dev/null and b/dapps/app.nuo.network.png differ diff --git a/dapps/app.paraswap.io.png b/dapps/app.paraswap.io.png new file mode 100644 index 00000000..09e475ed Binary files /dev/null and b/dapps/app.paraswap.io.png differ diff --git a/dapps/app.polygon.zkevm.png b/dapps/app.polygon.zkevm.png new file mode 100644 index 00000000..e4aaa732 Binary files /dev/null and b/dapps/app.polygon.zkevm.png differ diff --git a/dapps/app.pooltogether.com.png b/dapps/app.pooltogether.com.png new file mode 100644 index 00000000..038bdfda Binary files /dev/null and b/dapps/app.pooltogether.com.png differ diff --git a/dapps/app.pooltogether.us.png b/dapps/app.pooltogether.us.png new file mode 100644 index 00000000..518f6a5b Binary files /dev/null and b/dapps/app.pooltogether.us.png differ diff --git a/dapps/app.pstake.finance.png b/dapps/app.pstake.finance.png new file mode 100644 index 00000000..67a851fb 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 00000000..e46f7671 Binary files /dev/null and b/dapps/app.questn.com.png differ diff --git a/dapps/app.raise.it.png b/dapps/app.raise.it.png new file mode 100644 index 00000000..7981bcb9 Binary files /dev/null and b/dapps/app.raise.it.png differ diff --git a/dapps/app.refinable.com.png b/dapps/app.refinable.com.png new file mode 100644 index 00000000..9cca83d9 Binary files /dev/null and b/dapps/app.refinable.com.png differ diff --git a/dapps/app.sablier.finance.png b/dapps/app.sablier.finance.png new file mode 100644 index 00000000..41428a6f Binary files /dev/null and b/dapps/app.sablier.finance.png differ diff --git a/dapps/app.satori.finance.png b/dapps/app.satori.finance.png new file mode 100644 index 00000000..7a866f1d Binary files /dev/null and b/dapps/app.satori.finance.png differ diff --git a/dapps/app.shibance.com.png b/dapps/app.shibance.com.png new file mode 100644 index 00000000..4711c475 Binary files /dev/null and b/dapps/app.shibance.com.png differ diff --git a/dapps/app.sil.finance.png b/dapps/app.sil.finance.png new file mode 100644 index 00000000..b29cd62f Binary files /dev/null and b/dapps/app.sil.finance.png differ diff --git a/dapps/app.spaceid.png b/dapps/app.spaceid.png new file mode 100644 index 00000000..e33fa704 Binary files /dev/null and b/dapps/app.spaceid.png differ diff --git a/dapps/app.stakepark.xyz.png b/dapps/app.stakepark.xyz.png new file mode 100644 index 00000000..5d18f70d Binary files /dev/null and b/dapps/app.stakepark.xyz.png differ diff --git a/dapps/app.sushi.com.png b/dapps/app.sushi.com.png new file mode 100644 index 00000000..6a28495b Binary files /dev/null and b/dapps/app.sushi.com.png differ diff --git a/dapps/app.swaptuna.com.png b/dapps/app.swaptuna.com.png new file mode 100644 index 00000000..495457c2 Binary files /dev/null and b/dapps/app.swaptuna.com.png differ diff --git a/dapps/app.swipe.org.png b/dapps/app.swipe.org.png new file mode 100644 index 00000000..d64d92d8 Binary files /dev/null and b/dapps/app.swipe.org.png differ diff --git a/dapps/app.timvi.com.png b/dapps/app.timvi.com.png new file mode 100644 index 00000000..dca62d48 Binary files /dev/null and b/dapps/app.timvi.com.png differ diff --git a/dapps/app.totle.com.png b/dapps/app.totle.com.png new file mode 100644 index 00000000..3c70231a Binary files /dev/null and b/dapps/app.totle.com.png differ diff --git a/dapps/app.udex.one.png b/dapps/app.udex.one.png new file mode 100644 index 00000000..762d335e Binary files /dev/null and b/dapps/app.udex.one.png differ diff --git a/dapps/app.uniswap.org.png b/dapps/app.uniswap.org.png new file mode 100644 index 00000000..640bd55c Binary files /dev/null and b/dapps/app.uniswap.org.png differ diff --git a/dapps/app.unrekt.net.png b/dapps/app.unrekt.net.png new file mode 100644 index 00000000..ba49f17a Binary files /dev/null and b/dapps/app.unrekt.net.png differ diff --git a/dapps/app.veil.co.png b/dapps/app.veil.co.png new file mode 100644 index 00000000..0084c2ba Binary files /dev/null and b/dapps/app.veil.co.png differ diff --git a/dapps/app.venus.io.png b/dapps/app.venus.io.png new file mode 100644 index 00000000..83e4dfb5 Binary files /dev/null and b/dapps/app.venus.io.png differ diff --git a/dapps/app.warriders.com.png b/dapps/app.warriders.com.png new file mode 100644 index 00000000..31b03f60 Binary files /dev/null and b/dapps/app.warriders.com.png differ diff --git a/dapps/app.whales.market.png b/dapps/app.whales.market.png new file mode 100644 index 00000000..8c69544c Binary files /dev/null and b/dapps/app.whales.market.png differ diff --git a/dapps/app.zerion.io.png b/dapps/app.zerion.io.png new file mode 100644 index 00000000..0bae4b2f Binary files /dev/null and b/dapps/app.zerion.io.png differ diff --git a/dapps/app.zksync.era.png b/dapps/app.zksync.era.png new file mode 100644 index 00000000..80586600 Binary files /dev/null and b/dapps/app.zksync.era.png differ diff --git a/dapps/aptos.pancakeswap.finance.png b/dapps/aptos.pancakeswap.finance.png new file mode 100644 index 00000000..df23093e Binary files /dev/null and b/dapps/aptos.pancakeswap.finance.png differ diff --git a/dapps/arb_giveaway.png b/dapps/arb_giveaway.png new file mode 100644 index 00000000..26ecd219 Binary files /dev/null and b/dapps/arb_giveaway.png differ diff --git a/dapps/aura.finance.png b/dapps/aura.finance.png new file mode 100644 index 00000000..10eef80b Binary files /dev/null and b/dapps/aura.finance.png differ diff --git a/dapps/autofarm.network.png b/dapps/autofarm.network.png new file mode 100644 index 00000000..1bd27575 Binary files /dev/null and b/dapps/autofarm.network.png differ diff --git a/dapps/ave.ai.png b/dapps/ave.ai.png new file mode 100644 index 00000000..cde97309 Binary files /dev/null and b/dapps/ave.ai.png differ diff --git a/dapps/avnrichdefi.com.png b/dapps/avnrichdefi.com.png new file mode 100644 index 00000000..4ae66bcb Binary files /dev/null and b/dapps/avnrichdefi.com.png differ diff --git a/dapps/avnswap.com.png b/dapps/avnswap.com.png new file mode 100644 index 00000000..4ae66bcb Binary files /dev/null and b/dapps/avnswap.com.png differ diff --git a/dapps/axelar.network.png b/dapps/axelar.network.png new file mode 100644 index 00000000..7c2b2efe Binary files /dev/null and b/dapps/axelar.network.png differ diff --git a/dapps/axieinfinity.com.png b/dapps/axieinfinity.com.png new file mode 100644 index 00000000..503926b4 Binary files /dev/null and b/dapps/axieinfinity.com.png differ diff --git a/dapps/babaoshu.cn.png b/dapps/babaoshu.cn.png new file mode 100644 index 00000000..3e38b6bd Binary files /dev/null and b/dapps/babaoshu.cn.png differ diff --git a/dapps/babyswap.finance.png b/dapps/babyswap.finance.png new file mode 100644 index 00000000..a8650e99 Binary files /dev/null and b/dapps/babyswap.finance.png differ diff --git a/dapps/bakeryswap.org.png b/dapps/bakeryswap.org.png new file mode 100644 index 00000000..d819fa13 Binary files /dev/null and b/dapps/bakeryswap.org.png differ diff --git a/dapps/balancer.exchange.png b/dapps/balancer.exchange.png new file mode 100644 index 00000000..103663d8 Binary files /dev/null and b/dapps/balancer.exchange.png differ diff --git a/dapps/balancer.finance.png b/dapps/balancer.finance.png new file mode 100644 index 00000000..45540ff9 Binary files /dev/null and b/dapps/balancer.finance.png differ diff --git a/dapps/bananagun.io.png b/dapps/bananagun.io.png new file mode 100644 index 00000000..a2f68d98 Binary files /dev/null and b/dapps/bananagun.io.png differ diff --git a/dapps/bancor.network.png b/dapps/bancor.network.png new file mode 100644 index 00000000..1cb468c9 Binary files /dev/null and b/dapps/bancor.network.png differ diff --git a/dapps/bank.spankchain.com.png b/dapps/bank.spankchain.com.png new file mode 100644 index 00000000..2a9127c9 Binary files /dev/null and b/dapps/bank.spankchain.com.png differ diff --git a/dapps/barn.beefy.finance.png b/dapps/barn.beefy.finance.png new file mode 100644 index 00000000..d92efc49 Binary files /dev/null and b/dapps/barn.beefy.finance.png differ diff --git a/dapps/beta.adex.network.png b/dapps/beta.adex.network.png new file mode 100644 index 00000000..a1ab1ab1 Binary files /dev/null and b/dapps/beta.adex.network.png differ diff --git a/dapps/beta.bounty0x.io.png b/dapps/beta.bounty0x.io.png new file mode 100644 index 00000000..2221a5f5 Binary files /dev/null and b/dapps/beta.bounty0x.io.png differ diff --git a/dapps/beta.cent.co.png b/dapps/beta.cent.co.png new file mode 100644 index 00000000..2939c2bf Binary files /dev/null and b/dapps/beta.cent.co.png differ diff --git a/dapps/beta.dharma.io.png b/dapps/beta.dharma.io.png new file mode 100644 index 00000000..5131ca2e Binary files /dev/null and b/dapps/beta.dharma.io.png differ diff --git a/dapps/betoken.fund.png b/dapps/betoken.fund.png new file mode 100644 index 00000000..46f4d8e3 Binary files /dev/null and b/dapps/betoken.fund.png differ diff --git a/dapps/biswap.org.png b/dapps/biswap.org.png new file mode 100644 index 00000000..e4d6f247 Binary files /dev/null and b/dapps/biswap.org.png differ diff --git a/dapps/bitpaid.org.png b/dapps/bitpaid.org.png new file mode 100644 index 00000000..9d95d2ff Binary files /dev/null and b/dapps/bitpaid.org.png differ diff --git a/dapps/blizzard.money.png b/dapps/blizzard.money.png new file mode 100644 index 00000000..677186aa Binary files /dev/null and b/dapps/blizzard.money.png differ diff --git a/dapps/blockchaincuties.co.png b/dapps/blockchaincuties.co.png new file mode 100644 index 00000000..b7e11952 Binary files /dev/null and b/dapps/blockchaincuties.co.png differ diff --git a/dapps/blur.io.png b/dapps/blur.io.png new file mode 100644 index 00000000..11f03098 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 00000000..7baa6e2b Binary files /dev/null and b/dapps/bnbchain.org.png differ diff --git a/dapps/bns.finance.png b/dapps/bns.finance.png new file mode 100644 index 00000000..0ba1609a Binary files /dev/null and b/dapps/bns.finance.png differ diff --git a/dapps/bounty0x.io.png b/dapps/bounty0x.io.png new file mode 100644 index 00000000..2221a5f5 Binary files /dev/null and b/dapps/bounty0x.io.png differ diff --git a/dapps/brain-warp.win4.fun.png b/dapps/brain-warp.win4.fun.png new file mode 100644 index 00000000..046d586c Binary files /dev/null and b/dapps/brain-warp.win4.fun.png differ diff --git a/dapps/bravefrontierheroes.com.png b/dapps/bravefrontierheroes.com.png new file mode 100644 index 00000000..53523c5a Binary files /dev/null and b/dapps/bravefrontierheroes.com.png differ diff --git a/dapps/bridge.poa.net.png b/dapps/bridge.poa.net.png new file mode 100644 index 00000000..58610c0d Binary files /dev/null and b/dapps/bridge.poa.net.png differ diff --git a/dapps/bsc.dego.finance.png b/dapps/bsc.dego.finance.png new file mode 100644 index 00000000..4c85b16e Binary files /dev/null and b/dapps/bsc.dego.finance.png differ diff --git a/dapps/bsc.farm.png b/dapps/bsc.farm.png new file mode 100644 index 00000000..e4a4a407 Binary files /dev/null and b/dapps/bsc.farm.png differ diff --git a/dapps/bscproject.org.png b/dapps/bscproject.org.png new file mode 100644 index 00000000..89cc6ada Binary files /dev/null and b/dapps/bscproject.org.png differ diff --git a/dapps/bscscan.com.png b/dapps/bscscan.com.png new file mode 100644 index 00000000..4bf013bd Binary files /dev/null and b/dapps/bscscan.com.png differ diff --git a/dapps/bscswap.com.png b/dapps/bscswap.com.png new file mode 100644 index 00000000..f2722802 Binary files /dev/null and b/dapps/bscswap.com.png differ diff --git a/dapps/btu-car-rental.com.png b/dapps/btu-car-rental.com.png new file mode 100644 index 00000000..cd7fbecc Binary files /dev/null and b/dapps/btu-car-rental.com.png differ diff --git a/dapps/cafeswap.finance.png b/dapps/cafeswap.finance.png new file mode 100644 index 00000000..e29d79f0 Binary files /dev/null and b/dapps/cafeswap.finance.png differ diff --git a/dapps/camelot.exchange.png b/dapps/camelot.exchange.png new file mode 100644 index 00000000..f4ceec64 Binary files /dev/null and b/dapps/camelot.exchange.png differ diff --git a/dapps/canwork.io.png b/dapps/canwork.io.png new file mode 100644 index 00000000..ee13e1af Binary files /dev/null and b/dapps/canwork.io.png differ diff --git a/dapps/cbridge.celer.network.png b/dapps/cbridge.celer.network.png new file mode 100644 index 00000000..d2ce3127 Binary files /dev/null and b/dapps/cbridge.celer.network.png differ diff --git a/dapps/cdp.makerdao.png b/dapps/cdp.makerdao.png new file mode 100644 index 00000000..1c16db05 Binary files /dev/null and b/dapps/cdp.makerdao.png differ diff --git a/dapps/cdpsaver.com.png b/dapps/cdpsaver.com.png new file mode 100644 index 00000000..62fce8d0 Binary files /dev/null and b/dapps/cdpsaver.com.png differ diff --git a/dapps/cgm.discover.png b/dapps/cgm.discover.png new file mode 100644 index 00000000..45287b4e Binary files /dev/null and b/dapps/cgm.discover.png differ diff --git a/dapps/chainlist.org.png b/dapps/chainlist.org.png new file mode 100644 index 00000000..1a98dbc7 Binary files /dev/null and b/dapps/chainlist.org.png differ diff --git a/dapps/chainmonsters.io.png b/dapps/chainmonsters.io.png new file mode 100644 index 00000000..0deb07b1 Binary files /dev/null and b/dapps/chainmonsters.io.png differ diff --git a/dapps/chat.b.ai.png b/dapps/chat.b.ai.png new file mode 100644 index 00000000..aee2d0d7 Binary files /dev/null and b/dapps/chat.b.ai.png differ diff --git a/dapps/cheeseswap.app.png b/dapps/cheeseswap.app.png new file mode 100644 index 00000000..b988a95e Binary files /dev/null and b/dapps/cheeseswap.app.png differ diff --git a/dapps/chesstoshi.com.png b/dapps/chesstoshi.com.png new file mode 100644 index 00000000..3e984072 Binary files /dev/null and b/dapps/chesstoshi.com.png differ diff --git a/dapps/chibifighters.io.png b/dapps/chibifighters.io.png new file mode 100644 index 00000000..7c9d2671 Binary files /dev/null and b/dapps/chibifighters.io.png differ diff --git a/dapps/coinpanda.io.png b/dapps/coinpanda.io.png new file mode 100644 index 00000000..b04d4013 Binary files /dev/null and b/dapps/coinpanda.io.png differ diff --git a/dapps/cointracker.io.png b/dapps/cointracker.io.png new file mode 100644 index 00000000..012d291e Binary files /dev/null and b/dapps/cointracker.io.png differ diff --git a/dapps/cold-staking.callisto.network.png b/dapps/cold-staking.callisto.network.png new file mode 100644 index 00000000..fb356b6c Binary files /dev/null and b/dapps/cold-staking.callisto.network.png differ diff --git a/dapps/color-craze.win4.fun.png b/dapps/color-craze.win4.fun.png new file mode 100644 index 00000000..bed69e53 Binary files /dev/null and b/dapps/color-craze.win4.fun.png differ diff --git a/dapps/commerce.bidali.com.png b/dapps/commerce.bidali.com.png new file mode 100644 index 00000000..bc810ecb Binary files /dev/null and b/dapps/commerce.bidali.com.png differ diff --git a/dapps/compound.finance.png b/dapps/compound.finance.png new file mode 100644 index 00000000..5d812a57 Binary files /dev/null and b/dapps/compound.finance.png differ diff --git a/dapps/comproi.com.png b/dapps/comproi.com.png new file mode 100644 index 00000000..79d69106 Binary files /dev/null and b/dapps/comproi.com.png differ diff --git a/dapps/cow.fi.png b/dapps/cow.fi.png new file mode 100644 index 00000000..1fb5d604 Binary files /dev/null and b/dapps/cow.fi.png differ diff --git a/dapps/cryptantcrab.io.png b/dapps/cryptantcrab.io.png new file mode 100644 index 00000000..31d1477e Binary files /dev/null and b/dapps/cryptantcrab.io.png differ diff --git a/dapps/cryptobots.me.png b/dapps/cryptobots.me.png new file mode 100644 index 00000000..89e16d47 Binary files /dev/null and b/dapps/cryptobots.me.png differ diff --git a/dapps/cryptochrome.org.png b/dapps/cryptochrome.org.png new file mode 100644 index 00000000..e81f655f Binary files /dev/null and b/dapps/cryptochrome.org.png differ diff --git a/dapps/cryptocities.net.png b/dapps/cryptocities.net.png new file mode 100644 index 00000000..69750753 Binary files /dev/null and b/dapps/cryptocities.net.png differ diff --git a/dapps/cryptocrystal.io.png b/dapps/cryptocrystal.io.png new file mode 100644 index 00000000..6343071d Binary files /dev/null and b/dapps/cryptocrystal.io.png differ diff --git a/dapps/cryptoder.by.png b/dapps/cryptoder.by.png new file mode 100644 index 00000000..4684fd4e Binary files /dev/null and b/dapps/cryptoder.by.png differ diff --git a/dapps/cryptodozer.io.png b/dapps/cryptodozer.io.png new file mode 100644 index 00000000..3f028c6d Binary files /dev/null and b/dapps/cryptodozer.io.png differ diff --git a/dapps/cryptofighters.io.png b/dapps/cryptofighters.io.png new file mode 100644 index 00000000..6db3d717 Binary files /dev/null and b/dapps/cryptofighters.io.png differ diff --git a/dapps/cryptogoods.co.png b/dapps/cryptogoods.co.png new file mode 100644 index 00000000..d2f060ff Binary files /dev/null and b/dapps/cryptogoods.co.png differ diff --git a/dapps/cryptogs.io.png b/dapps/cryptogs.io.png new file mode 100644 index 00000000..3c623040 Binary files /dev/null and b/dapps/cryptogs.io.png differ diff --git a/dapps/cryptomines.pro.png b/dapps/cryptomines.pro.png new file mode 100644 index 00000000..982f4f0e Binary files /dev/null and b/dapps/cryptomines.pro.png differ diff --git a/dapps/cryptopurr.co.png b/dapps/cryptopurr.co.png new file mode 100644 index 00000000..5ba4aac1 Binary files /dev/null and b/dapps/cryptopurr.co.png differ diff --git a/dapps/cryptoracingleague.io.png b/dapps/cryptoracingleague.io.png new file mode 100644 index 00000000..acb3e0e4 Binary files /dev/null and b/dapps/cryptoracingleague.io.png differ diff --git a/dapps/cryptosketches.com.png b/dapps/cryptosketches.com.png new file mode 100644 index 00000000..8fb4852b Binary files /dev/null and b/dapps/cryptosketches.com.png differ diff --git a/dapps/cryptostrikers.com.png b/dapps/cryptostrikers.com.png new file mode 100644 index 00000000..87eaab1f Binary files /dev/null and b/dapps/cryptostrikers.com.png differ diff --git a/dapps/cryptotitties.fun.png b/dapps/cryptotitties.fun.png new file mode 100644 index 00000000..51fe60b1 Binary files /dev/null and b/dapps/cryptotitties.fun.png differ diff --git a/dapps/csc-game.com.png b/dapps/csc-game.com.png new file mode 100644 index 00000000..2e8f8843 Binary files /dev/null and b/dapps/csc-game.com.png differ diff --git a/dapps/curve.fi.png b/dapps/curve.fi.png new file mode 100644 index 00000000..919ebfbb Binary files /dev/null and b/dapps/curve.fi.png differ diff --git a/dapps/dapp.dragonereum.io.png b/dapps/dapp.dragonereum.io.png new file mode 100644 index 00000000..31041df4 Binary files /dev/null and b/dapps/dapp.dragonereum.io.png differ diff --git a/dapps/dapp.originprotocol.com.png b/dapps/dapp.originprotocol.com.png new file mode 100644 index 00000000..7f5fcedc Binary files /dev/null and b/dapps/dapp.originprotocol.com.png differ diff --git a/dapps/dapp.spartanprotocol.org.png b/dapps/dapp.spartanprotocol.org.png new file mode 100644 index 00000000..6c5afef5 Binary files /dev/null and b/dapps/dapp.spartanprotocol.org.png differ diff --git a/dapps/dappbay.bnbchain.org.png b/dapps/dappbay.bnbchain.org.png new file mode 100644 index 00000000..ea5afb82 Binary files /dev/null and b/dapps/dappbay.bnbchain.org.png differ diff --git a/dapps/dapps-www.pinksale.finance.png b/dapps/dapps-www.pinksale.finance.png new file mode 100644 index 00000000..97b08f3f Binary files /dev/null and b/dapps/dapps-www.pinksale.finance.png differ diff --git a/dapps/dapps.trustwallet.com.png b/dapps/dapps.trustwallet.com.png new file mode 100644 index 00000000..d37ce884 Binary files /dev/null and b/dapps/dapps.trustwallet.com.png differ diff --git a/dapps/ddex.io.png b/dapps/ddex.io.png new file mode 100644 index 00000000..9ab0b891 Binary files /dev/null and b/dapps/ddex.io.png differ diff --git a/dapps/debank.com.png b/dapps/debank.com.png new file mode 100644 index 00000000..2775b616 Binary files /dev/null and b/dapps/debank.com.png differ diff --git a/dapps/debridge.finance.png b/dapps/debridge.finance.png new file mode 100644 index 00000000..962185dd Binary files /dev/null and b/dapps/debridge.finance.png differ diff --git a/dapps/defi.timvi.com.png b/dapps/defi.timvi.com.png new file mode 100644 index 00000000..a384a4bf Binary files /dev/null and b/dapps/defi.timvi.com.png differ diff --git a/dapps/defisaver.com.png b/dapps/defisaver.com.png new file mode 100644 index 00000000..72614629 Binary files /dev/null and b/dapps/defisaver.com.png differ diff --git a/dapps/deversifi.com.png b/dapps/deversifi.com.png new file mode 100644 index 00000000..0138bfe8 Binary files /dev/null and b/dapps/deversifi.com.png differ diff --git a/dapps/dex.ag.png b/dapps/dex.ag.png new file mode 100644 index 00000000..3aad1560 Binary files /dev/null and b/dapps/dex.ag.png differ diff --git a/dapps/dex.blue.png b/dapps/dex.blue.png new file mode 100644 index 00000000..ad9259fc Binary files /dev/null and b/dapps/dex.blue.png differ diff --git a/dapps/dex.leonicornswap.com.png b/dapps/dex.leonicornswap.com.png new file mode 100644 index 00000000..f0f1aae7 Binary files /dev/null and b/dapps/dex.leonicornswap.com.png differ diff --git a/dapps/dex.verisafe.io.png b/dapps/dex.verisafe.io.png new file mode 100644 index 00000000..0e02f7ae Binary files /dev/null and b/dapps/dex.verisafe.io.png differ diff --git a/dapps/dflow.net.png b/dapps/dflow.net.png new file mode 100644 index 00000000..06409915 Binary files /dev/null and b/dapps/dflow.net.png differ diff --git a/dapps/dice2.win.png b/dapps/dice2.win.png new file mode 100644 index 00000000..504470ea Binary files /dev/null and b/dapps/dice2.win.png differ diff --git a/dapps/discover_12days_1.png b/dapps/discover_12days_1.png new file mode 100644 index 00000000..a6489943 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 00000000..664eb957 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 00000000..71dfcbfa 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 00000000..25897beb 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 00000000..ae5d52e9 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 00000000..15211929 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 00000000..3dec5d55 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 00000000..3dec5d55 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 00000000..be82e230 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 00000000..b56156f0 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 00000000..7085eb9e 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 00000000..7085eb9e 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 00000000..68b9b06c 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 00000000..6f95a311 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 00000000..49daf77c 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 00000000..5eab4f1c 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 00000000..6f92f322 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 00000000..b032dc3e 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 00000000..486bbb00 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 00000000..04ecbc04 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 00000000..b59289cd 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 00000000..cbf74504 Binary files /dev/null and b/dapps/discover_wod.png differ diff --git a/dapps/doperaider.com.png b/dapps/doperaider.com.png new file mode 100644 index 00000000..8a244f9d Binary files /dev/null and b/dapps/doperaider.com.png differ diff --git a/dapps/dozerbird.io.png b/dapps/dozerbird.io.png new file mode 100644 index 00000000..bcb409b5 Binary files /dev/null and b/dapps/dozerbird.io.png differ diff --git a/dapps/dx.app.png b/dapps/dx.app.png new file mode 100644 index 00000000..e8a57583 Binary files /dev/null and b/dapps/dx.app.png differ diff --git a/dapps/dydx.exchange.png b/dapps/dydx.exchange.png new file mode 100644 index 00000000..80a7c278 Binary files /dev/null and b/dapps/dydx.exchange.png differ diff --git a/dapps/easytrade.io.png b/dapps/easytrade.io.png new file mode 100644 index 00000000..0be6e424 Binary files /dev/null and b/dapps/easytrade.io.png differ diff --git a/dapps/egyptoken.com.png b/dapps/egyptoken.com.png new file mode 100644 index 00000000..620f02d0 Binary files /dev/null and b/dapps/egyptoken.com.png differ diff --git a/dapps/element.market.png b/dapps/element.market.png new file mode 100644 index 00000000..648fe0be Binary files /dev/null and b/dapps/element.market.png differ diff --git a/dapps/emoon.io.png b/dapps/emoon.io.png new file mode 100644 index 00000000..0a02dba4 Binary files /dev/null and b/dapps/emoon.io.png differ diff --git a/dapps/ens.domains.png b/dapps/ens.domains.png new file mode 100644 index 00000000..8ec8376e Binary files /dev/null and b/dapps/ens.domains.png differ diff --git a/dapps/erc20faucet.com.png b/dapps/erc20faucet.com.png new file mode 100644 index 00000000..95390684 Binary files /dev/null and b/dapps/erc20faucet.com.png differ diff --git a/dapps/esports.win4.fun.png b/dapps/esports.win4.fun.png new file mode 100644 index 00000000..946206d2 Binary files /dev/null and b/dapps/esports.win4.fun.png differ diff --git a/dapps/eth2.io.png b/dapps/eth2.io.png new file mode 100644 index 00000000..b0068f9b Binary files /dev/null and b/dapps/eth2.io.png differ diff --git a/dapps/eth2dai.com.png b/dapps/eth2dai.com.png new file mode 100644 index 00000000..7fbfba07 Binary files /dev/null and b/dapps/eth2dai.com.png differ diff --git a/dapps/ether-quest.com.png b/dapps/ether-quest.com.png new file mode 100644 index 00000000..ec57cde4 Binary files /dev/null and b/dapps/ether-quest.com.png differ diff --git a/dapps/ether.online.png b/dapps/ether.online.png new file mode 100644 index 00000000..aeaac4f1 Binary files /dev/null and b/dapps/ether.online.png differ diff --git a/dapps/etherbots.io.png b/dapps/etherbots.io.png new file mode 100644 index 00000000..e155783e Binary files /dev/null and b/dapps/etherbots.io.png differ diff --git a/dapps/ethercraft.io.png b/dapps/ethercraft.io.png new file mode 100644 index 00000000..067d1285 Binary files /dev/null and b/dapps/ethercraft.io.png differ diff --git a/dapps/etheremon.com.png b/dapps/etheremon.com.png new file mode 100644 index 00000000..ff02e47c Binary files /dev/null and b/dapps/etheremon.com.png differ diff --git a/dapps/ethernauts.co.png b/dapps/ethernauts.co.png new file mode 100644 index 00000000..65700cd5 Binary files /dev/null and b/dapps/ethernauts.co.png differ diff --git a/dapps/etherscan.io.png b/dapps/etherscan.io.png new file mode 100644 index 00000000..475d8037 Binary files /dev/null and b/dapps/etherscan.io.png differ diff --git a/dapps/ethlend.io.png b/dapps/ethlend.io.png new file mode 100644 index 00000000..f2cc9397 Binary files /dev/null and b/dapps/ethlend.io.png differ diff --git a/dapps/everdragons.com.png b/dapps/everdragons.com.png new file mode 100644 index 00000000..b325876b Binary files /dev/null and b/dapps/everdragons.com.png differ diff --git a/dapps/everrise.com.png b/dapps/everrise.com.png new file mode 100644 index 00000000..2cb53a8c Binary files /dev/null and b/dapps/everrise.com.png differ diff --git a/dapps/exchange.cafeswap.finance.png b/dapps/exchange.cafeswap.finance.png new file mode 100644 index 00000000..6a7a275f Binary files /dev/null and b/dapps/exchange.cafeswap.finance.png differ diff --git a/dapps/exchange.pancakeswap.finance.png b/dapps/exchange.pancakeswap.finance.png new file mode 100644 index 00000000..edeeec5f Binary files /dev/null and b/dapps/exchange.pancakeswap.finance.png differ diff --git a/dapps/exchange.robustswap.com.png b/dapps/exchange.robustswap.com.png new file mode 100644 index 00000000..80a8fb23 Binary files /dev/null and b/dapps/exchange.robustswap.com.png differ diff --git a/dapps/exchange.shibance.com.png b/dapps/exchange.shibance.com.png new file mode 100644 index 00000000..4711c475 Binary files /dev/null and b/dapps/exchange.shibance.com.png differ diff --git a/dapps/exnce.com.png b/dapps/exnce.com.png new file mode 100644 index 00000000..98270aae Binary files /dev/null and b/dapps/exnce.com.png differ diff --git a/dapps/expotrading.com.png b/dapps/expotrading.com.png new file mode 100644 index 00000000..24e5e4db Binary files /dev/null and b/dapps/expotrading.com.png differ diff --git a/dapps/fanbits.com.png b/dapps/fanbits.com.png new file mode 100644 index 00000000..998866d2 Binary files /dev/null and b/dapps/fanbits.com.png differ diff --git a/dapps/farm.hyperjump.fi.png b/dapps/farm.hyperjump.fi.png new file mode 100644 index 00000000..0920bb92 Binary files /dev/null and b/dapps/farm.hyperjump.fi.png differ diff --git a/dapps/featured.market.png b/dapps/featured.market.png new file mode 100644 index 00000000..330dd1bf Binary files /dev/null and b/dapps/featured.market.png differ diff --git a/dapps/filmvault.io.png b/dapps/filmvault.io.png new file mode 100644 index 00000000..36c1427a Binary files /dev/null and b/dapps/filmvault.io.png differ diff --git a/dapps/findtherabbit.me.png b/dapps/findtherabbit.me.png new file mode 100644 index 00000000..54c1fee7 Binary files /dev/null and b/dapps/findtherabbit.me.png differ diff --git a/dapps/fishbank.io.png b/dapps/fishbank.io.png new file mode 100644 index 00000000..386b63ab Binary files /dev/null and b/dapps/fishbank.io.png differ diff --git a/dapps/flap.sh.png b/dapps/flap.sh.png new file mode 100644 index 00000000..3686f4df 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 00000000..e9dad333 Binary files /dev/null and b/dapps/fluid.instadapp.io.png differ diff --git a/dapps/foam.tools.png b/dapps/foam.tools.png new file mode 100644 index 00000000..01eb6b71 Binary files /dev/null and b/dapps/foam.tools.png differ diff --git a/dapps/football-fever.png b/dapps/football-fever.png new file mode 100644 index 00000000..312e21dc Binary files /dev/null and b/dapps/football-fever.png differ diff --git a/dapps/for.tube.png b/dapps/for.tube.png new file mode 100644 index 00000000..ce68fa7c Binary files /dev/null and b/dapps/for.tube.png differ diff --git a/dapps/four.meme.ai.png b/dapps/four.meme.ai.png new file mode 100644 index 00000000..594fdf87 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 00000000..28689901 Binary files /dev/null and b/dapps/four.meme.png differ diff --git a/dapps/fractional.art.png b/dapps/fractional.art.png new file mode 100644 index 00000000..ee8ff034 Binary files /dev/null and b/dapps/fractional.art.png differ diff --git a/dapps/freighttrust.com.png b/dapps/freighttrust.com.png new file mode 100644 index 00000000..fbdcc5eb Binary files /dev/null and b/dapps/freighttrust.com.png differ diff --git a/dapps/frens.community.png b/dapps/frens.community.png new file mode 100644 index 00000000..7370117b Binary files /dev/null and b/dapps/frens.community.png differ diff --git a/dapps/frens.link.png b/dapps/frens.link.png new file mode 100644 index 00000000..e8ababd5 Binary files /dev/null and b/dapps/frens.link.png differ diff --git a/dapps/fry.world.png b/dapps/fry.world.png new file mode 100644 index 00000000..d7c29dc0 Binary files /dev/null and b/dapps/fry.world.png differ diff --git a/dapps/fundrequest.io.png b/dapps/fundrequest.io.png new file mode 100644 index 00000000..0a84fea1 Binary files /dev/null and b/dapps/fundrequest.io.png differ diff --git a/dapps/gains.trade.png b/dapps/gains.trade.png new file mode 100644 index 00000000..a7d79ca8 Binary files /dev/null and b/dapps/gains.trade.png differ diff --git a/dapps/galler.io.png b/dapps/galler.io.png new file mode 100644 index 00000000..412cbe26 Binary files /dev/null and b/dapps/galler.io.png differ diff --git a/dapps/game.lordless.io.png b/dapps/game.lordless.io.png new file mode 100644 index 00000000..c22f9e05 Binary files /dev/null and b/dapps/game.lordless.io.png differ diff --git a/dapps/gmgn.ai.png b/dapps/gmgn.ai.png new file mode 100644 index 00000000..996656fb 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 00000000..be0dd640 Binary files /dev/null and b/dapps/gmt.io.png differ diff --git a/dapps/gmx.io.png b/dapps/gmx.io.png new file mode 100644 index 00000000..69a69f9e Binary files /dev/null and b/dapps/gmx.io.png differ diff --git a/dapps/gomble.io:.png b/dapps/gomble.io:.png new file mode 100644 index 00000000..1b28824f Binary files /dev/null and b/dapps/gomble.io:.png differ diff --git a/dapps/governance.trustwallet.com.png b/dapps/governance.trustwallet.com.png new file mode 100644 index 00000000..8e978555 Binary files /dev/null and b/dapps/governance.trustwallet.com.png differ diff --git a/dapps/hex.win.png b/dapps/hex.win.png new file mode 100644 index 00000000..1ca48701 Binary files /dev/null and b/dapps/hex.win.png differ diff --git a/dapps/hodltoken.net.png b/dapps/hodltoken.net.png new file mode 100644 index 00000000..fe8a76df Binary files /dev/null and b/dapps/hodltoken.net.png differ diff --git a/dapps/hodlx.exchange.png b/dapps/hodlx.exchange.png new file mode 100644 index 00000000..b66b3c18 Binary files /dev/null and b/dapps/hodlx.exchange.png differ diff --git a/dapps/hooked.io.png b/dapps/hooked.io.png new file mode 100644 index 00000000..17678819 Binary files /dev/null and b/dapps/hooked.io.png differ diff --git a/dapps/hotcross.com.png b/dapps/hotcross.com.png new file mode 100644 index 00000000..fc2ed6fa Binary files /dev/null and b/dapps/hotcross.com.png differ diff --git a/dapps/idex.market.png b/dapps/idex.market.png new file mode 100644 index 00000000..abbf8fc3 Binary files /dev/null and b/dapps/idex.market.png differ diff --git a/dapps/idle.finance.png b/dapps/idle.finance.png new file mode 100644 index 00000000..d9722baf Binary files /dev/null and b/dapps/idle.finance.png differ diff --git a/dapps/incscan.io.png b/dapps/incscan.io.png new file mode 100644 index 00000000..6e230bbb Binary files /dev/null and b/dapps/incscan.io.png differ diff --git a/dapps/inddex.io.png b/dapps/inddex.io.png new file mode 100644 index 00000000..5f329b5e Binary files /dev/null and b/dapps/inddex.io.png differ diff --git a/dapps/indorse.io.png b/dapps/indorse.io.png new file mode 100644 index 00000000..3479c51f Binary files /dev/null and b/dapps/indorse.io.png differ diff --git a/dapps/info.apeswap.finance.png b/dapps/info.apeswap.finance.png new file mode 100644 index 00000000..5676acf9 Binary files /dev/null and b/dapps/info.apeswap.finance.png differ diff --git a/dapps/info.hyperjump.fi.png b/dapps/info.hyperjump.fi.png new file mode 100644 index 00000000..0920bb92 Binary files /dev/null and b/dapps/info.hyperjump.fi.png differ diff --git a/dapps/info.narwhalswap.org.png b/dapps/info.narwhalswap.org.png new file mode 100644 index 00000000..75de53f1 Binary files /dev/null and b/dapps/info.narwhalswap.org.png differ diff --git a/dapps/info.uniswap.org.png b/dapps/info.uniswap.org.png new file mode 100644 index 00000000..640bd55c Binary files /dev/null and b/dapps/info.uniswap.org.png differ diff --git a/dapps/instadapp.io.png b/dapps/instadapp.io.png new file mode 100644 index 00000000..467b1184 Binary files /dev/null and b/dapps/instadapp.io.png differ diff --git a/dapps/instant.airswap.io.png b/dapps/instant.airswap.io.png new file mode 100644 index 00000000..6fda18d3 Binary files /dev/null and b/dapps/instant.airswap.io.png differ diff --git a/dapps/insurace.png b/dapps/insurace.png new file mode 100644 index 00000000..b51538a2 Binary files /dev/null and b/dapps/insurace.png differ diff --git a/dapps/iskra.world.png b/dapps/iskra.world.png new file mode 100644 index 00000000..8e10a1a1 Binary files /dev/null and b/dapps/iskra.world.png differ diff --git a/dapps/johnorionyoung.com.png b/dapps/johnorionyoung.com.png new file mode 100644 index 00000000..98aa216d Binary files /dev/null and b/dapps/johnorionyoung.com.png differ diff --git a/dapps/julswap.com.png b/dapps/julswap.com.png new file mode 100644 index 00000000..d64b376a Binary files /dev/null and b/dapps/julswap.com.png differ diff --git a/dapps/jup.ag.png b/dapps/jup.ag.png new file mode 100644 index 00000000..8f270a0b 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 00000000..2afab09b 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 00000000..b83bafa2 Binary files /dev/null and b/dapps/kamino.finance.png differ diff --git a/dapps/kebabfinance.com.png b/dapps/kebabfinance.com.png new file mode 100644 index 00000000..72a93552 Binary files /dev/null and b/dapps/kebabfinance.com.png differ diff --git a/dapps/knownorigin.io.png b/dapps/knownorigin.io.png new file mode 100644 index 00000000..e1bda59a Binary files /dev/null and b/dapps/knownorigin.io.png differ diff --git a/dapps/koinly.io.png b/dapps/koinly.io.png new file mode 100644 index 00000000..07778731 Binary files /dev/null and b/dapps/koinly.io.png differ diff --git a/dapps/kyber.network.png b/dapps/kyber.network.png new file mode 100644 index 00000000..125ecc95 Binary files /dev/null and b/dapps/kyber.network.png differ diff --git a/dapps/kyber.org.png b/dapps/kyber.org.png new file mode 100644 index 00000000..125ecc95 Binary files /dev/null and b/dapps/kyber.org.png differ diff --git a/dapps/kyberswap.com.png b/dapps/kyberswap.com.png new file mode 100644 index 00000000..125ecc95 Binary files /dev/null and b/dapps/kyberswap.com.png differ diff --git a/dapps/launchpool_rocket.png b/dapps/launchpool_rocket.png new file mode 100644 index 00000000..1a913343 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 00000000..b6e475e7 Binary files /dev/null and b/dapps/lens.xyx.png differ diff --git a/dapps/lido.fi.png b/dapps/lido.fi.png new file mode 100644 index 00000000..e433e57f Binary files /dev/null and b/dapps/lido.fi.png differ diff --git a/dapps/liquidmesh.io.png b/dapps/liquidmesh.io.png new file mode 100644 index 00000000..da1a722e 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 00000000..2dc16eea Binary files /dev/null and b/dapps/lista.org.png differ diff --git a/dapps/localethereum.com.png b/dapps/localethereum.com.png new file mode 100644 index 00000000..d154b57c Binary files /dev/null and b/dapps/localethereum.com.png differ diff --git a/dapps/lol.hunt.town.png b/dapps/lol.hunt.town.png new file mode 100644 index 00000000..83bfaeb9 Binary files /dev/null and b/dapps/lol.hunt.town.png differ diff --git a/dapps/looksrare.org.png b/dapps/looksrare.org.png new file mode 100644 index 00000000..e76ed87a Binary files /dev/null and b/dapps/looksrare.org.png differ diff --git a/dapps/m.dex.top.png b/dapps/m.dex.top.png new file mode 100644 index 00000000..0aff3c0e Binary files /dev/null and b/dapps/m.dex.top.png differ diff --git a/dapps/magiceden.io.png b/dapps/magiceden.io.png new file mode 100644 index 00000000..7c7a355b 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 00000000..58d9405a 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 00000000..a66514ed Binary files /dev/null and b/dapps/marinade.finance.app.png differ diff --git a/dapps/market.decentraland.org.png b/dapps/market.decentraland.org.png new file mode 100644 index 00000000..710d0d31 Binary files /dev/null and b/dapps/market.decentraland.org.png differ diff --git a/dapps/marketplace.axieinfinity.com.png b/dapps/marketplace.axieinfinity.com.png new file mode 100644 index 00000000..503926b4 Binary files /dev/null and b/dapps/marketplace.axieinfinity.com.png differ diff --git a/dapps/marketplace.e11.io.png b/dapps/marketplace.e11.io.png new file mode 100644 index 00000000..09c59b21 Binary files /dev/null and b/dapps/marketplace.e11.io.png differ diff --git a/dapps/marketplace.thetanarena.com.png b/dapps/marketplace.thetanarena.com.png new file mode 100644 index 00000000..c3716e9f Binary files /dev/null and b/dapps/marketplace.thetanarena.com.png differ diff --git a/dapps/master.tomochain.com.png b/dapps/master.tomochain.com.png new file mode 100644 index 00000000..7c99d940 Binary files /dev/null and b/dapps/master.tomochain.com.png differ diff --git a/dapps/math-race.win4.fun.png b/dapps/math-race.win4.fun.png new file mode 100644 index 00000000..e4c5f710 Binary files /dev/null and b/dapps/math-race.win4.fun.png differ diff --git a/dapps/maxbet.pigfarm.io.png b/dapps/maxbet.pigfarm.io.png new file mode 100644 index 00000000..e6ed47a0 Binary files /dev/null and b/dapps/maxbet.pigfarm.io.png differ diff --git a/dapps/mclaren.png b/dapps/mclaren.png new file mode 100644 index 00000000..0bca1160 Binary files /dev/null and b/dapps/mclaren.png differ diff --git a/dapps/megacryptopolis.com.png b/dapps/megacryptopolis.com.png new file mode 100644 index 00000000..16ad2cf3 Binary files /dev/null and b/dapps/megacryptopolis.com.png differ diff --git a/dapps/member.iotex.io.png b/dapps/member.iotex.io.png new file mode 100644 index 00000000..d372cbeb Binary files /dev/null and b/dapps/member.iotex.io.png differ diff --git a/dapps/membrana.io.png b/dapps/membrana.io.png new file mode 100644 index 00000000..ff11459c Binary files /dev/null and b/dapps/membrana.io.png differ diff --git a/dapps/meme.market.png b/dapps/meme.market.png new file mode 100644 index 00000000..adb84630 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 00000000..3128a72d Binary files /dev/null and b/dapps/merlinswap.org.png differ diff --git a/dapps/mobox.io.png b/dapps/mobox.io.png new file mode 100644 index 00000000..d24de62b Binary files /dev/null and b/dapps/mobox.io.png differ diff --git a/dapps/mooniswap.exchange.png b/dapps/mooniswap.exchange.png new file mode 100644 index 00000000..38a82a1c Binary files /dev/null and b/dapps/mooniswap.exchange.png differ diff --git a/dapps/multisender.app.png b/dapps/multisender.app.png new file mode 100644 index 00000000..c500fa63 Binary files /dev/null and b/dapps/multisender.app.png differ diff --git a/dapps/multitoken.io.png b/dapps/multitoken.io.png new file mode 100644 index 00000000..65e50dd4 Binary files /dev/null and b/dapps/multitoken.io.png differ diff --git a/dapps/mycryptoheroes.net.png b/dapps/mycryptoheroes.net.png new file mode 100644 index 00000000..8f69f880 Binary files /dev/null and b/dapps/mycryptoheroes.net.png differ diff --git a/dapps/myriad.markets.png b/dapps/myriad.markets.png new file mode 100644 index 00000000..2e77e67a 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 00000000..d295230e Binary files /dev/null and b/dapps/myshell.ai.png differ diff --git a/dapps/mythereum.io.png b/dapps/mythereum.io.png new file mode 100644 index 00000000..00d35e8a Binary files /dev/null and b/dapps/mythereum.io.png differ diff --git a/dapps/namebazaar.io.png b/dapps/namebazaar.io.png new file mode 100644 index 00000000..8286e50d Binary files /dev/null and b/dapps/namebazaar.io.png differ diff --git a/dapps/nami.trade.png b/dapps/nami.trade.png new file mode 100644 index 00000000..2fa15c7b Binary files /dev/null and b/dapps/nami.trade.png differ diff --git a/dapps/narwhalswap.org.png b/dapps/narwhalswap.org.png new file mode 100644 index 00000000..75de53f1 Binary files /dev/null and b/dapps/narwhalswap.org.png differ diff --git a/dapps/native.org.png b/dapps/native.org.png new file mode 100644 index 00000000..26b10abb Binary files /dev/null and b/dapps/native.org.png differ diff --git a/dapps/nestdapp.io.png b/dapps/nestdapp.io.png new file mode 100644 index 00000000..001f2b43 Binary files /dev/null and b/dapps/nestdapp.io.png differ diff --git a/dapps/newlittlerabbit.net.png b/dapps/newlittlerabbit.net.png new file mode 100644 index 00000000..ce44195f Binary files /dev/null and b/dapps/newlittlerabbit.net.png differ diff --git a/dapps/nft.wazirx.org.png b/dapps/nft.wazirx.org.png new file mode 100644 index 00000000..054cff13 Binary files /dev/null and b/dapps/nft.wazirx.org.png differ diff --git a/dapps/nftb.io.png b/dapps/nftb.io.png new file mode 100644 index 00000000..8d2bc762 Binary files /dev/null and b/dapps/nftb.io.png differ diff --git a/dapps/nftoaster.com.png b/dapps/nftoaster.com.png new file mode 100644 index 00000000..7361fca5 Binary files /dev/null and b/dapps/nftoaster.com.png differ diff --git a/dapps/nifty.gallery.png b/dapps/nifty.gallery.png new file mode 100644 index 00000000..8cb1320e Binary files /dev/null and b/dapps/nifty.gallery.png differ diff --git a/dapps/nuo.network.png b/dapps/nuo.network.png new file mode 100644 index 00000000..c5b4e96b Binary files /dev/null and b/dapps/nuo.network.png differ diff --git a/dapps/oasis.app.png b/dapps/oasis.app.png new file mode 100644 index 00000000..0c9c0eba Binary files /dev/null and b/dapps/oasis.app.png differ diff --git a/dapps/onhexel.com.png b/dapps/onhexel.com.png new file mode 100644 index 00000000..30c91fb7 Binary files /dev/null and b/dapps/onhexel.com.png differ diff --git a/dapps/openocean.finance.png b/dapps/openocean.finance.png new file mode 100644 index 00000000..1211f7d7 Binary files /dev/null and b/dapps/openocean.finance.png differ diff --git a/dapps/opensea.io.png b/dapps/opensea.io.png new file mode 100644 index 00000000..a8cd875f Binary files /dev/null and b/dapps/opensea.io.png differ diff --git a/dapps/orchid.com.png b/dapps/orchid.com.png new file mode 100644 index 00000000..9a8c35f6 Binary files /dev/null and b/dapps/orchid.com.png differ diff --git a/dapps/p3c.io.png b/dapps/p3c.io.png new file mode 100644 index 00000000..fcc600bb Binary files /dev/null and b/dapps/p3c.io.png differ diff --git a/dapps/pacoca.io.png b/dapps/pacoca.io.png new file mode 100644 index 00000000..d92efb81 Binary files /dev/null and b/dapps/pacoca.io.png differ diff --git a/dapps/pancakeswap.finance.png b/dapps/pancakeswap.finance.png new file mode 100644 index 00000000..df23093e Binary files /dev/null and b/dapps/pancakeswap.finance.png differ diff --git a/dapps/pantheon.exchange.png b/dapps/pantheon.exchange.png new file mode 100644 index 00000000..13a25c00 Binary files /dev/null and b/dapps/pantheon.exchange.png differ diff --git a/dapps/pay.sablier.finance.png b/dapps/pay.sablier.finance.png new file mode 100644 index 00000000..f2baeae1 Binary files /dev/null and b/dapps/pay.sablier.finance.png differ diff --git a/dapps/peepeth.com.png b/dapps/peepeth.com.png new file mode 100644 index 00000000..9f4b9800 Binary files /dev/null and b/dapps/peepeth.com.png differ diff --git a/dapps/pendle.finance.png b/dapps/pendle.finance.png new file mode 100644 index 00000000..e5e6c7ca 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 00000000..2914ff6f 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 00000000..bb4bfed0 Binary files /dev/null and b/dapps/philand.xyz.png differ diff --git a/dapps/phoswap.io.png b/dapps/phoswap.io.png new file mode 100644 index 00000000..a85fe03c Binary files /dev/null and b/dapps/phoswap.io.png differ diff --git a/dapps/pizzafinance.app.png b/dapps/pizzafinance.app.png new file mode 100644 index 00000000..a5bf234c Binary files /dev/null and b/dapps/pizzafinance.app.png differ diff --git a/dapps/platform.trustwallet.com.png b/dapps/platform.trustwallet.com.png new file mode 100644 index 00000000..ed737f6a Binary files /dev/null and b/dapps/platform.trustwallet.com.png differ diff --git a/dapps/play.carv.io.png b/dapps/play.carv.io.png new file mode 100644 index 00000000..a3f4b2da Binary files /dev/null and b/dapps/play.carv.io.png differ diff --git a/dapps/play.moonpot.com.png b/dapps/play.moonpot.com.png new file mode 100644 index 00000000..9c517292 Binary files /dev/null and b/dapps/play.moonpot.com.png differ diff --git a/dapps/plex.dharma.io.png b/dapps/plex.dharma.io.png new file mode 100644 index 00000000..793dc64a Binary files /dev/null and b/dapps/plex.dharma.io.png differ diff --git a/dapps/polygon.info.apeswap.finance.png b/dapps/polygon.info.apeswap.finance.png new file mode 100644 index 00000000..5676acf9 Binary files /dev/null and b/dapps/polygon.info.apeswap.finance.png differ diff --git a/dapps/polymarket.com.png b/dapps/polymarket.com.png new file mode 100644 index 00000000..a5252c3b Binary files /dev/null and b/dapps/polymarket.com.png differ diff --git a/dapps/poocoin.app.png b/dapps/poocoin.app.png new file mode 100644 index 00000000..ecc742e4 Binary files /dev/null and b/dapps/poocoin.app.png differ diff --git a/dapps/pools.fyi.png b/dapps/pools.fyi.png new file mode 100644 index 00000000..ee730acd Binary files /dev/null and b/dapps/pools.fyi.png differ diff --git a/dapps/pooltogether.com.png b/dapps/pooltogether.com.png new file mode 100644 index 00000000..8a90090f Binary files /dev/null and b/dapps/pooltogether.com.png differ diff --git a/dapps/pooltogether.us.png b/dapps/pooltogether.us.png new file mode 100644 index 00000000..c7788e96 Binary files /dev/null and b/dapps/pooltogether.us.png differ diff --git a/dapps/poolx.launchzone.org.png b/dapps/poolx.launchzone.org.png new file mode 100644 index 00000000..ebe54a79 Binary files /dev/null and b/dapps/poolx.launchzone.org.png differ diff --git a/dapps/portfolio.defiprime.com.png b/dapps/portfolio.defiprime.com.png new file mode 100644 index 00000000..515e276e Binary files /dev/null and b/dapps/portfolio.defiprime.com.png differ diff --git a/dapps/powerpool.finance.png b/dapps/powerpool.finance.png new file mode 100644 index 00000000..ebf7b409 Binary files /dev/null and b/dapps/powerpool.finance.png differ diff --git a/dapps/prdt.finance.png b/dapps/prdt.finance.png new file mode 100644 index 00000000..17e9878f Binary files /dev/null and b/dapps/prdt.finance.png differ diff --git a/dapps/predict.fun.png b/dapps/predict.fun.png new file mode 100644 index 00000000..9f7bcc40 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 00000000..8cd394c2 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 00000000..6f5342a4 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 00000000..b942d150 Binary files /dev/null and b/dapps/rango.png differ diff --git a/dapps/rarebits.io.png b/dapps/rarebits.io.png new file mode 100644 index 00000000..ecd62c05 Binary files /dev/null and b/dapps/rarebits.io.png differ diff --git a/dapps/rarible.com.png b/dapps/rarible.com.png new file mode 100644 index 00000000..6e727432 Binary files /dev/null and b/dapps/rarible.com.png differ diff --git a/dapps/rats.png b/dapps/rats.png new file mode 100644 index 00000000..1356fe2e 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 00000000..777d192d Binary files /dev/null and b/dapps/raydium.io.png differ diff --git a/dapps/relay.radar.tech.png b/dapps/relay.radar.tech.png new file mode 100644 index 00000000..1f271d3c Binary files /dev/null and b/dapps/relay.radar.tech.png differ diff --git a/dapps/review.hunt.town.png b/dapps/review.hunt.town.png new file mode 100644 index 00000000..eb837ac0 Binary files /dev/null and b/dapps/review.hunt.town.png differ diff --git a/dapps/robustswap.com.png b/dapps/robustswap.com.png new file mode 100644 index 00000000..80a8fb23 Binary files /dev/null and b/dapps/robustswap.com.png differ diff --git a/dapps/rocketpool.net.png b/dapps/rocketpool.net.png new file mode 100644 index 00000000..67792d60 Binary files /dev/null and b/dapps/rocketpool.net.png differ diff --git a/dapps/saturn.network.png b/dapps/saturn.network.png new file mode 100644 index 00000000..fc0c9b76 Binary files /dev/null and b/dapps/saturn.network.png differ diff --git a/dapps/shiftly.finance.png b/dapps/shiftly.finance.png new file mode 100644 index 00000000..9d1d14b0 Binary files /dev/null and b/dapps/shiftly.finance.png differ diff --git a/dapps/sky.money.png b/dapps/sky.money.png new file mode 100644 index 00000000..179a7e45 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 new file mode 100644 index 00000000..c243d676 Binary files /dev/null and b/dapps/slots.spin4.fun.png differ diff --git a/dapps/smartdrops.io.png b/dapps/smartdrops.io.png new file mode 100644 index 00000000..7bed7bff Binary files /dev/null and b/dapps/smartdrops.io.png differ diff --git a/dapps/smartz.io.png b/dapps/smartz.io.png new file mode 100644 index 00000000..0ce2de7a Binary files /dev/null and b/dapps/smartz.io.png differ diff --git a/dapps/snark.art.png b/dapps/snark.art.png new file mode 100644 index 00000000..2e8311a4 Binary files /dev/null and b/dapps/snark.art.png differ diff --git a/dapps/solend.fi.png b/dapps/solend.fi.png new file mode 100644 index 00000000..c3eb4548 Binary files /dev/null and b/dapps/solend.fi.png differ diff --git a/dapps/sorare.com.png b/dapps/sorare.com.png new file mode 100644 index 00000000..b930d2da Binary files /dev/null and b/dapps/sorare.com.png differ diff --git a/dapps/space-race.win4.fun.png b/dapps/space-race.win4.fun.png new file mode 100644 index 00000000..63c35edc Binary files /dev/null and b/dapps/space-race.win4.fun.png differ diff --git a/dapps/space-tetris.win4.fun.png b/dapps/space-tetris.win4.fun.png new file mode 100644 index 00000000..0335c105 Binary files /dev/null and b/dapps/space-tetris.win4.fun.png differ diff --git a/dapps/spartanswap.org.png b/dapps/spartanswap.org.png new file mode 100644 index 00000000..0dd74aba Binary files /dev/null and b/dapps/spartanswap.org.png differ diff --git a/dapps/spiderdex.com.png b/dapps/spiderdex.com.png new file mode 100644 index 00000000..adaf3631 Binary files /dev/null and b/dapps/spiderdex.com.png differ diff --git a/dapps/squidrouter.com.png b/dapps/squidrouter.com.png new file mode 100644 index 00000000..ec372e6c 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 new file mode 100644 index 00000000..b9b9a8fd Binary files /dev/null and b/dapps/staking.thundercore.com.png differ diff --git a/dapps/stargate.finance.png b/dapps/stargate.finance.png new file mode 100644 index 00000000..eb56736d Binary files /dev/null and b/dapps/stargate.finance.png differ diff --git a/dapps/steemhunt.com.png b/dapps/steemhunt.com.png new file mode 100644 index 00000000..971d5e27 Binary files /dev/null and b/dapps/steemhunt.com.png differ diff --git a/dapps/steemit.com.png b/dapps/steemit.com.png new file mode 100644 index 00000000..e42005aa Binary files /dev/null and b/dapps/steemit.com.png differ diff --git a/dapps/store.touristoken.com.png b/dapps/store.touristoken.com.png new file mode 100644 index 00000000..997f6095 Binary files /dev/null and b/dapps/store.touristoken.com.png differ diff --git a/dapps/streetswap.vip.png b/dapps/streetswap.vip.png new file mode 100644 index 00000000..f1c60f84 Binary files /dev/null and b/dapps/streetswap.vip.png differ diff --git a/dapps/summer.fi.png b/dapps/summer.fi.png new file mode 100644 index 00000000..f85878bd 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 00000000..8d7a8de6 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 00000000..dc94307f Binary files /dev/null and b/dapps/sunpump.meme.png differ diff --git a/dapps/surnft.com.png b/dapps/surnft.com.png new file mode 100644 index 00000000..45b11616 Binary files /dev/null and b/dapps/surnft.com.png differ diff --git a/dapps/sushiswapclassic.org.png b/dapps/sushiswapclassic.org.png new file mode 100644 index 00000000..3ec6967a Binary files /dev/null and b/dapps/sushiswapclassic.org.png differ diff --git a/dapps/swap.cow.fi.png b/dapps/swap.cow.fi.png new file mode 100644 index 00000000..ff02c925 Binary files /dev/null and b/dapps/swap.cow.fi.png differ diff --git a/dapps/swap.hyperjump.fi.png b/dapps/swap.hyperjump.fi.png new file mode 100644 index 00000000..0920bb92 Binary files /dev/null and b/dapps/swap.hyperjump.fi.png differ diff --git a/dapps/swapkit.dev.png b/dapps/swapkit.dev.png new file mode 100644 index 00000000..466a25d0 Binary files /dev/null and b/dapps/swapkit.dev.png differ diff --git a/dapps/swapliquidity.org.png b/dapps/swapliquidity.org.png new file mode 100644 index 00000000..60a2f813 Binary files /dev/null and b/dapps/swapliquidity.org.png differ diff --git a/dapps/swaps.xyz.png b/dapps/swaps.xyz.png new file mode 100644 index 00000000..1407da25 Binary files /dev/null and b/dapps/swaps.xyz.png differ diff --git a/dapps/swaptoken.app.png b/dapps/swaptoken.app.png new file mode 100644 index 00000000..1f5ced7a Binary files /dev/null and b/dapps/swaptoken.app.png differ diff --git a/dapps/swaptuna.com.png b/dapps/swaptuna.com.png new file mode 100644 index 00000000..495457c2 Binary files /dev/null and b/dapps/swaptuna.com.png differ diff --git a/dapps/swapx.launchzone.org.png b/dapps/swapx.launchzone.org.png new file mode 100644 index 00000000..f4e80257 Binary files /dev/null and b/dapps/swapx.launchzone.org.png differ diff --git a/dapps/swft.png b/dapps/swft.png new file mode 100644 index 00000000..42d37ec4 Binary files /dev/null and b/dapps/swft.png differ diff --git a/dapps/switcheo.exchange.png b/dapps/switcheo.exchange.png new file mode 100644 index 00000000..a1cd3f47 Binary files /dev/null and b/dapps/switcheo.exchange.png differ diff --git a/dapps/t.me:solana_unibot.png b/dapps/t.me:solana_unibot.png new file mode 100644 index 00000000..3fbda4bb 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 00000000..30dabac7 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 00000000..f53a26c6 Binary files /dev/null and b/dapps/thorchain.org.png differ diff --git a/dapps/token.hunt.town.png b/dapps/token.hunt.town.png new file mode 100644 index 00000000..6abd318e Binary files /dev/null and b/dapps/token.hunt.town.png differ diff --git a/dapps/token.store.png b/dapps/token.store.png new file mode 100644 index 00000000..43086545 Binary files /dev/null and b/dapps/token.store.png differ diff --git a/dapps/tokenfactory.surge.sh.png b/dapps/tokenfactory.surge.sh.png new file mode 100644 index 00000000..983753c6 Binary files /dev/null and b/dapps/tokenfactory.surge.sh.png differ diff --git a/dapps/tokenlon.im.png b/dapps/tokenlon.im.png new file mode 100644 index 00000000..a3f2847c Binary files /dev/null and b/dapps/tokenlon.im.png differ diff --git a/dapps/tokensets.com.png b/dapps/tokensets.com.png new file mode 100644 index 00000000..d8b7d92c Binary files /dev/null and b/dapps/tokensets.com.png differ diff --git a/dapps/tokentool.bitbond.com.png b/dapps/tokentool.bitbond.com.png new file mode 100644 index 00000000..08874c8b Binary files /dev/null and b/dapps/tokentool.bitbond.com.png differ diff --git a/dapps/tomoswap.com.png b/dapps/tomoswap.com.png new file mode 100644 index 00000000..17424f73 Binary files /dev/null and b/dapps/tomoswap.com.png differ diff --git a/dapps/tools.crypton.xyz.png b/dapps/tools.crypton.xyz.png new file mode 100644 index 00000000..47a87912 Binary files /dev/null and b/dapps/tools.crypton.xyz.png differ diff --git a/dapps/tornado.cash.png b/dapps/tornado.cash.png new file mode 100644 index 00000000..f694453a Binary files /dev/null and b/dapps/tornado.cash.png differ diff --git a/dapps/traderjoexyz.com.png b/dapps/traderjoexyz.com.png new file mode 100644 index 00000000..e0631df8 Binary files /dev/null and b/dapps/traderjoexyz.com.png differ diff --git a/dapps/tranchess.com.png b/dapps/tranchess.com.png new file mode 100644 index 00000000..e3e634c7 Binary files /dev/null and b/dapps/tranchess.com.png differ diff --git a/dapps/traphouse.vip.png b/dapps/traphouse.vip.png new file mode 100644 index 00000000..f1c60f84 Binary files /dev/null and b/dapps/traphouse.vip.png differ diff --git a/dapps/trust.logo.png b/dapps/trust.logo.png new file mode 100644 index 00000000..6205c811 Binary files /dev/null and b/dapps/trust.logo.png differ diff --git a/dapps/ttroll.ttmobileapps.com.png b/dapps/ttroll.ttmobileapps.com.png new file mode 100644 index 00000000..25e4c142 Binary files /dev/null and b/dapps/ttroll.ttmobileapps.com.png differ diff --git a/dapps/tw.dicsover.jetton_promo.png b/dapps/tw.dicsover.jetton_promo.png new file mode 100644 index 00000000..246a7d4f 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 00000000..cd092c54 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 00000000..84363b2d 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 00000000..6bb8706c 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 00000000..782565b0 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 00000000..68a7505f 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 00000000..611d3d0f Binary files /dev/null and b/dapps/tw.swift.starte_guide_logo.png differ diff --git a/dapps/uniswap.exchange.png b/dapps/uniswap.exchange.png new file mode 100644 index 00000000..3adb868f Binary files /dev/null and b/dapps/uniswap.exchange.png differ diff --git a/dapps/uniswap.io.png b/dapps/uniswap.io.png new file mode 100644 index 00000000..9507a516 Binary files /dev/null and b/dapps/uniswap.io.png differ diff --git a/dapps/v1exchange.pancakeswap.finance.png b/dapps/v1exchange.pancakeswap.finance.png new file mode 100644 index 00000000..67ad01f3 Binary files /dev/null and b/dapps/v1exchange.pancakeswap.finance.png differ diff --git a/dapps/v3app.everrise.com.png b/dapps/v3app.everrise.com.png new file mode 100644 index 00000000..3cb06525 Binary files /dev/null and b/dapps/v3app.everrise.com.png differ diff --git a/dapps/veno.finance.png b/dapps/veno.finance.png new file mode 100644 index 00000000..36d5d104 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 00000000..8284eb0a Binary files /dev/null and b/dapps/viewer.tokenscript.org.png differ diff --git a/dapps/voting.cafeswap.finance.png b/dapps/voting.cafeswap.finance.png new file mode 100644 index 00000000..0ea16dd7 Binary files /dev/null and b/dapps/voting.cafeswap.finance.png differ diff --git a/dapps/wallet.mocotoken.io.png b/dapps/wallet.mocotoken.io.png new file mode 100644 index 00000000..a09ff296 Binary files /dev/null and b/dapps/wallet.mocotoken.io.png differ diff --git a/dapps/wardenswap.finance.png b/dapps/wardenswap.finance.png new file mode 100644 index 00000000..e1bc26f3 Binary files /dev/null and b/dapps/wardenswap.finance.png differ diff --git a/dapps/warpcast.com.png b/dapps/warpcast.com.png new file mode 100644 index 00000000..baecf3b7 Binary files /dev/null and b/dapps/warpcast.com.png differ diff --git a/dapps/wolfible.com.png b/dapps/wolfible.com.png new file mode 100644 index 00000000..3fa965c3 Binary files /dev/null and b/dapps/wolfible.com.png differ diff --git a/dapps/word-race.win4.fun.png b/dapps/word-race.win4.fun.png new file mode 100644 index 00000000..4c4a808e Binary files /dev/null and b/dapps/word-race.win4.fun.png differ diff --git a/dapps/www.aialaya.io:.png b/dapps/www.aialaya.io:.png new file mode 100644 index 00000000..78744c81 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 00000000..de6129de 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 00000000..47c93fac Binary files /dev/null and b/dapps/www.avalonfinance.xyz.png differ diff --git a/dapps/www.bakeryswap.org.png b/dapps/www.bakeryswap.org.png new file mode 100644 index 00000000..d819fa13 Binary files /dev/null and b/dapps/www.bakeryswap.org.png differ diff --git a/dapps/www.binance.com.png b/dapps/www.binance.com.png new file mode 100644 index 00000000..bb4ded34 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 00000000..d47a71b2 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 00000000..fcfcccee Binary files /dev/null and b/dapps/www.circle.com.png differ diff --git a/dapps/www.comproi.com.png b/dapps/www.comproi.com.png new file mode 100644 index 00000000..79d69106 Binary files /dev/null and b/dapps/www.comproi.com.png differ diff --git a/dapps/www.convexfinance.com.png b/dapps/www.convexfinance.com.png new file mode 100644 index 00000000..38049422 Binary files /dev/null and b/dapps/www.convexfinance.com.png differ diff --git a/dapps/www.crypt-oink.io.png b/dapps/www.crypt-oink.io.png new file mode 100644 index 00000000..9376ce3b Binary files /dev/null and b/dapps/www.crypt-oink.io.png differ diff --git a/dapps/www.eigenlayer.xyz:.png.png b/dapps/www.eigenlayer.xyz:.png.png new file mode 100644 index 00000000..8f097b74 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 00000000..cfcd8bdc Binary files /dev/null and b/dapps/www.friend.tech.png differ diff --git a/dapps/www.galler.io.png b/dapps/www.galler.io.png new file mode 100644 index 00000000..412cbe26 Binary files /dev/null and b/dapps/www.galler.io.png differ diff --git a/dapps/www.google.com.png b/dapps/www.google.com.png new file mode 100644 index 00000000..ccbcfc1c Binary files /dev/null and b/dapps/www.google.com.png differ diff --git a/dapps/www.helmet.insure.png b/dapps/www.helmet.insure.png new file mode 100644 index 00000000..970a738b Binary files /dev/null and b/dapps/www.helmet.insure.png differ diff --git a/dapps/www.holoworldai.com:.png b/dapps/www.holoworldai.com:.png new file mode 100644 index 00000000..3d09247d 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 00000000..489f9f20 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 00000000..6c3a1021 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 00000000..5239552b 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 00000000..880ac4c5 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 00000000..9dc1f01d 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 00000000..41422525 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 00000000..177a2316 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 00000000..9ff5a87d 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 00000000..2e5d971d 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 00000000..91421cb0 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 00000000..01b0166f 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 00000000..9c285390 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 00000000..ea35f627 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 00000000..3422af27 Binary files /dev/null and b/dapps/www.worldofdypians.com.png differ diff --git a/dapps/xank.io.png b/dapps/xank.io.png new file mode 100644 index 00000000..942e7f0b Binary files /dev/null and b/dapps/xank.io.png differ diff --git a/dapps/yearn.finance.png b/dapps/yearn.finance.png new file mode 100644 index 00000000..5c5217ca Binary files /dev/null and b/dapps/yearn.finance.png differ diff --git a/dapps/yieldwatch.net.png b/dapps/yieldwatch.net.png new file mode 100644 index 00000000..23ab370a Binary files /dev/null and b/dapps/yieldwatch.net.png differ diff --git a/dapps/yticons.co.png b/dapps/yticons.co.png new file mode 100644 index 00000000..27ba4fea Binary files /dev/null and b/dapps/yticons.co.png differ diff --git a/dapps/zed.run.png b/dapps/zed.run.png new file mode 100644 index 00000000..91a58c86 Binary files /dev/null and b/dapps/zed.run.png differ diff --git a/dapps/zerion.io.png b/dapps/zerion.io.png new file mode 100644 index 00000000..68390d33 Binary files /dev/null and b/dapps/zerion.io.png differ diff --git a/dapps/zerolend.xyz.png b/dapps/zerolend.xyz.png new file mode 100644 index 00000000..b53a0a75 Binary files /dev/null and b/dapps/zerolend.xyz.png differ diff --git a/go.mod b/go.mod new file mode 100644 index 00000000..1dc3304f --- /dev/null +++ b/go.mod @@ -0,0 +1,45 @@ +module github.com/trustwallet/assets + +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.9-0.20240905070109-9da7e7c4847a + github.com/trustwallet/go-libs v0.7.3 + github.com/trustwallet/go-primitives v0.1.32 +) + +require ( + github.com/beorn7/perks v1.0.1 // 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.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 + github.com/prometheus/client_golang v1.12.0 // indirect + github.com/prometheus/client_model v0.2.0 // indirect + github.com/prometheus/common v0.32.1 // indirect + github.com/prometheus/procfs v0.7.3 // indirect + github.com/spf13/afero v1.6.0 // indirect + github.com/spf13/cast v1.4.1 // indirect + 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.9.0 // indirect + golang.org/x/image v0.5.0 // 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 new file mode 100644 index 00000000..43cfa97b --- /dev/null +++ b/go.sum @@ -0,0 +1,565 @@ +cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= +cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= +cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= +cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= +cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= +cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= +cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= +cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= +cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= +cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= +cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= +cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= +cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= +cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= +cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= +cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= +cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= +cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= +cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= +cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= +cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= +cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= +cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= +cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= +cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= +cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= +cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= +cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= +cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= +cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= +dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= +github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= +github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +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/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= +github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= +github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/deckarep/golang-set v1.7.1 h1:SCQV0S6gTtp6itiFrTqI+pfmJ4LN85S1YzhDf9rTHJQ= +github.com/deckarep/golang-set v1.7.1/go.mod h1:93vsz/8Wt4joVM7c2AVqh+YRMiUSc14yDtF28KmMOgQ= +github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= +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.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= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= +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.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= +github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= +github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= +github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= +github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= +github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= +github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= +github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= +github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= +github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.8 h1:e6P7q2lk1O+qJJb4BtCQXlK8vWEO8V1ZeuEdJNOqZyg= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= +github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= +github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= +github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= +github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= +github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= +github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= +github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= +github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= +github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= +github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= +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= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= +github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +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.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.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= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc= +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= +github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= +github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= +github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= +github.com/prometheus/client_golang v1.12.0 h1:C+UIj/QWtmqY13Arb8kwMt5j34/0Z2iKamrJ+ryC0Gg= +github.com/prometheus/client_golang v1.12.0/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= +github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= +github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= +github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= +github.com/prometheus/common v0.32.1 h1:hWIdL3N2HoUx3B8j3YN9mWor0qhY/NlEKZEaXxuIRh4= +github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= +github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= +github.com/prometheus/procfs v0.7.3 h1:4jVXhlkAyzOScmCkXBTOLRLTz8EeU+eyjrwB/EPq0VU= +github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= +github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= +github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= +github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= +github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= +github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0= +github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= +github.com/spf13/afero v1.6.0 h1:xoax2sJ2DT8S8xA2paPFjDCScCNeWsg75VG0DLRreiY= +github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= +github.com/spf13/cast v1.4.1 h1:s0hze+J0196ZfEMTs80N7UlFt0BDuQ7Q+JDnHiMWKdA= +github.com/spf13/cast v1.4.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= +github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I= +github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0= +github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk= +github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= +github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= +github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= +github.com/spf13/viper v1.10.0 h1:mXH0UwHS4D2HwWZa75im4xIQynLfblmWV7qcWpfv0yk= +github.com/spf13/viper v1.10.0/go.mod h1:SoyBPwAtKDzypXNDFKN5kzH7ppppbGZtls1UpIy5AsM= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +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.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.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.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= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= +go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= +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= +golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +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.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= +golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= +golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= +golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= +golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= +golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= +golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.5.0 h1:5JMiNunQeQw++mMOz48/ISeNu3Iweh/JaZU8ZLqHRrI= +golang.org/x/image v0.5.0/go.mod h1:FVC7BI/5Ym8R25iw5OLsgshdUBbT1h5jZTpA+mvAdZ4= +golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= +golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= +golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= +golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= +golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= +golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= +golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= +golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +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= +golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +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.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= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +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/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= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= +golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= +golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= +google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= +google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= +google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= +google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= +google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= +google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= +google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= +google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= +google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= +google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= +google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= +google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= +google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= +google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= +google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= +google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= +google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= +google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= +google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= +google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= +google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= +google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= +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.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= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= +gopkg.in/ini.v1 v1.66.2 h1:XfR1dOYubytKy4Shzc2LHrrGhU0lDCfDGG1yLPmpgsI= +gopkg.in/ini.v1 v1.66.2/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= +honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= +rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= +rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= diff --git a/internal/config/config.go b/internal/config/config.go new file mode 100644 index 00000000..07733178 --- /dev/null +++ b/internal/config/config.go @@ -0,0 +1,58 @@ +package config + +import ( + "path/filepath" + + "github.com/trustwallet/go-libs/config/viper" +) + +type ( + Config struct { + App App `mapstructure:"app"` + ClientURLs ClientURLs `mapstructure:"client_urls"` + URLs URLs `mapstructure:"urls"` + TimeFormat string `mapstructure:"time_format"` + ValidatorsSettings ValidatorsSettings `mapstructure:"validators_settings"` + } + + App struct { + LogLevel string `mapstructure:"log_level"` + } + + ClientURLs struct { + Binance struct { + Dex string `mapstructure:"dex"` + Explorer string `mapstructure:"explorer"` + } `mapstructure:"binance"` + AssetsManagerAPI string `mapstructure:"assets_manager_api"` + } + + URLs struct { + AssetsApp string `mapstructure:"assets_app"` + Logo string `mapstructure:"logo"` + } + + ValidatorsSettings struct { + RootFolder RootFolder `mapstructure:"root_folder"` + ChainFolder ChainFolder `mapstructure:"chain_folder"` + AssetFolder AssetFolder `mapstructure:"asset_folder"` + ChainInfoFolder ChainInfoFolder `mapstructure:"chain_info_folder"` + ChainValidatorsAssetFolder ChainValidatorsAssetFolder `mapstructure:"chain_validators_asset_folder"` + DappsFolder DappsFolder `mapstructure:"dapps_folder"` + } +) + +// Default is a configuration instance. +var Default = Config{} //nolint:gochecknoglobals // config must be global + +// SetConfig reads a config file and returs an initialized config instance. +func SetConfig(confPath string) error { + confPath, err := filepath.Abs(confPath) + if err != nil { + return err + } + + viper.Load(confPath, &Default) + + return nil +} diff --git a/internal/config/validators.go b/internal/config/validators.go new file mode 100644 index 00000000..28078256 --- /dev/null +++ b/internal/config/validators.go @@ -0,0 +1,37 @@ +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 { + AllowedFiles []string `mapstructure:"allowed_files,omitempty"` +} + +type AssetFolder struct { + AllowedFiles []string `mapstructure:"allowed_files,omitempty"` +} + +type ChainInfoFolder struct { + HasFiles []string `mapstructure:"has_files,omitempty"` +} + +type ChainValidatorsAssetFolder struct { + HasFiles []string `mapstructure:"has_files,omitempty"` +} + +type DappsFolder struct { + Ext string `mapstructure:"ext,omitempty"` +} + +type CoinInfoFile struct { + Tags []Tag `mapstructure:"tags,omitempty"` +} + +type Tag struct { + ID string `mapstructure:"id,omitempty"` + Name string `mapstructure:"name,omitempty"` + Description string `mapstructure:"description,omitempty"` +} diff --git a/internal/config/values.go b/internal/config/values.go new file mode 100644 index 00000000..5e614332 --- /dev/null +++ b/internal/config/values.go @@ -0,0 +1,14 @@ +package config + +import "github.com/trustwallet/go-primitives/coin" + +var StackingChains = []coin.Coin{ + coin.Tezos(), + coin.Cosmos(), + coin.Iotex(), + coin.Tron(), + coin.Waves(), + coin.Kava(), + coin.Terra(), + coin.Binance(), +} diff --git a/internal/info/asset.go b/internal/info/asset.go new file mode 100644 index 00000000..c175e10a --- /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 00000000..623ea247 --- /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 00000000..adf5981a --- /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 00000000..72701588 --- /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 00000000..a95addf6 --- /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 00000000..9a585f8d --- /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 00000000..3f4c2288 --- /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 00000000..0d87b323 --- /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 00000000..102d101f --- /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 00000000..d0c8c27a --- /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/commands.go b/internal/manager/commands.go new file mode 100644 index 00000000..d52a6762 --- /dev/null +++ b/internal/manager/commands.go @@ -0,0 +1,145 @@ +package manager + +import ( + "encoding/json" + "fmt" + "time" + + libFile "github.com/trustwallet/assets-go-libs/file" + "github.com/trustwallet/assets-go-libs/path" + "github.com/trustwallet/assets-go-libs/validation/info" + "github.com/trustwallet/assets-go-libs/validation/tokenlist" + "github.com/trustwallet/go-primitives/asset" + "github.com/trustwallet/go-primitives/coin" + "github.com/trustwallet/go-primitives/types" + + "github.com/trustwallet/assets/internal/config" +) + +func CreateAssetInfoJSONTemplate(token string) error { + c, tokenID, err := asset.ParseID(token) + if err != nil { + return fmt.Errorf("failed to parse token id: %v", err) + } + + chain, ok := coin.Coins[c] + if !ok { + return fmt.Errorf("invalid token") + } + + assetInfoPath := path.GetAssetInfoPath(chain.Handle, tokenID) + + var emptyStr string + var emptyInt int + assetInfoModel := info.AssetModel{ + Name: &emptyStr, + Type: &emptyStr, + Symbol: &emptyStr, + Decimals: &emptyInt, + Website: &emptyStr, + Explorer: &emptyStr, + Status: &emptyStr, + ID: &tokenID, + Links: []info.Link{ + { + Name: &emptyStr, + URL: &emptyStr, + }, + }, + Tags: []string{""}, + } + + bytes, err := json.Marshal(&assetInfoModel) + if err != nil { + return fmt.Errorf("failed to marshal json: %v", err) + } + + f, err := libFile.CreateFileWithPath(assetInfoPath) + if err != nil { + return fmt.Errorf("failed to create file: %v", err) + } + defer f.Close() + + _, err = f.Write(bytes) + if err != nil { + return fmt.Errorf("failed to write bytes to file") + } + + err = libFile.FormatJSONFile(assetInfoPath) + if err != nil { + return fmt.Errorf("failed to format json file") + } + + return nil +} + +func AddTokenToTokenListJSON(chain coin.Coin, assetID, tokenID string, tokenListType path.TokenListType) error { + setup() + + // Check for duplicates. + tokenListTypes := []path.TokenListType{path.TokenlistDefault, path.TokenlistExtended} + for _, t := range tokenListTypes { + tokenListPath := path.GetTokenListPath(chain.Handle, t) + var list tokenlist.Model + + err := libFile.ReadJSONFile(tokenListPath, &list) + if err != nil { + return fmt.Errorf("failed to read data from %s: %w", tokenListPath, err) + } + + for _, item := range list.Tokens { + if item.Asset == assetID { + return fmt.Errorf("duplicate asset, already exist in %s", tokenListPath) + } + } + } + + var list tokenlist.Model + tokenListPath := path.GetTokenListPath(chain.Handle, tokenListType) + + err := libFile.ReadJSONFile(tokenListPath, &list) + if err != nil { + return fmt.Errorf("failed to read data from %s: %w", tokenListPath, err) + } + + assetInfo, err := getAssetInfo(chain, tokenID) + if err != nil { + return fmt.Errorf("failed to get token info: %w", err) + } + + newToken := tokenlist.Token{ + Asset: assetID, + Type: types.TokenType(*assetInfo.Type), + Address: *assetInfo.ID, + Name: *assetInfo.Name, + Symbol: *assetInfo.Symbol, + Decimals: uint(*assetInfo.Decimals), + LogoURI: path.GetAssetLogoURL(config.Default.URLs.AssetsApp, chain.Handle, tokenID), + } + list.Tokens = append(list.Tokens, newToken) + + data, err := libFile.PrepareJSONData(&tokenlist.Model{ + Name: fmt.Sprintf("Trust Wallet: %s", coin.Coins[chain.ID].Name), + LogoURI: config.Default.URLs.Logo, + Timestamp: time.Now().Format(config.Default.TimeFormat), + Tokens: list.Tokens, + Version: tokenlist.Version{Major: list.Version.Major + 1}, + }) + if err != nil { + return err + } + + return libFile.CreateJSONFile(tokenListPath, data) +} + +func getAssetInfo(chain coin.Coin, tokenID string) (*info.AssetModel, error) { + path := path.GetAssetInfoPath(chain.Handle, tokenID) + var assetModel info.AssetModel + + err := libFile.ReadJSONFile(path, &assetModel) + if err != nil { + return nil, fmt.Errorf("failed to read data from info.json: %w", err) + } + + return &assetModel, nil +} diff --git a/internal/manager/manager.go b/internal/manager/manager.go new file mode 100644 index 00000000..96c91db8 --- /dev/null +++ b/internal/manager/manager.go @@ -0,0 +1,173 @@ +package manager + +import ( + "os" + "strings" + + "github.com/trustwallet/assets-go-libs/file" + "github.com/trustwallet/assets-go-libs/path" + "github.com/trustwallet/assets/internal/config" + "github.com/trustwallet/assets/internal/processor" + "github.com/trustwallet/assets/internal/report" + "github.com/trustwallet/assets/internal/service" + "github.com/trustwallet/go-primitives/asset" + "github.com/trustwallet/go-primitives/coin" + + log "github.com/sirupsen/logrus" + "github.com/spf13/cobra" +) + +var configPath, root string + +func InitCommands() { + rootCmd.Flags().StringVar(&configPath, "config", ".github/assets.config.yaml", + "config file (default is $HOME/.github/assets.config.yaml)") + rootCmd.Flags().StringVar(&root, "root", ".", "root path to files") + + rootCmd.AddCommand(checkCmd) + rootCmd.AddCommand(fixCmd) + rootCmd.AddCommand(updateAutoCmd) + rootCmd.AddCommand(addTokenCmd) + rootCmd.AddCommand(addTokenlistCmd) + rootCmd.AddCommand(addTokenlistExtendedCmd) +} + +var ( + rootCmd = &cobra.Command{ + Use: "assets", + Short: "", + Long: "", + Run: func(cmd *cobra.Command, args []string) {}, + } + checkCmd = &cobra.Command{ + Use: "check", + Short: " Execute validation checks", + Run: func(cmd *cobra.Command, args []string) { + assetsService := InitAssetsService() + assetsService.RunJob(assetsService.Check) + }, + } + fixCmd = &cobra.Command{ + Use: "fix", + Short: "Perform automatic fixes where possible", + Run: func(cmd *cobra.Command, args []string) { + assetsService := InitAssetsService() + assetsService.RunJob(assetsService.Fix) + }, + } + updateAutoCmd = &cobra.Command{ + Use: "update-auto", + Short: "Run automatic updates from external sources", + Run: func(cmd *cobra.Command, args []string) { + assetsService := InitAssetsService() + assetsService.RunUpdateAuto() + }, + } + + addTokenCmd = &cobra.Command{ + Use: "add-token", + Short: "Creates info.json template for the asset", + Run: func(cmd *cobra.Command, args []string) { + if len(args) != 1 { + log.Fatal("1 argument was expected") + } + + err := CreateAssetInfoJSONTemplate(args[0]) + if err != nil { + log.Fatalf("Can't create asset info json template: %v", err) + } + }, + } + + addTokenlistCmd = &cobra.Command{ + Use: "add-tokenlist", + Short: "Adds token to tokenlist.json", + Run: func(cmd *cobra.Command, args []string) { + handleAddTokenList(args, path.TokenlistDefault) + }, + } + + addTokenlistExtendedCmd = &cobra.Command{ + Use: "add-tokenlist-extended", + Short: "Adds token to tokenlist-extended.json", + Run: func(cmd *cobra.Command, args []string) { + handleAddTokenList(args, path.TokenlistExtended) + }, + } +) + +func handleAddTokenList(args []string, tokenlistType path.TokenListType) { + if len(args) != 1 { + log.Fatal("1 argument was expected") + } + + c, tokenID, err := asset.ParseID(args[0]) + if err != nil { + log.Fatalf("Can't parse token: %v", err) + } + + chain, ok := coin.Coins[c] + if !ok { + log.Fatal("Invalid token") + } + + err = AddTokenToTokenListJSON(chain, args[0], tokenID, tokenlistType) + if err != nil { + log.Fatalf("Can't add token: %v", err) + } +} + +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() + + paths, err := file.ReadLocalFileStructure(root, config.Default.ValidatorsSettings.RootFolder.SkipFiles) + if err != nil { + 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() + + return service.NewService(fileService, validatorsService, reportService, paths) +} + +func setup() { + if err := config.SetConfig(configPath); err != nil { + log.WithError(err).Fatal("Failed to set config.") + } + + logLevel, err := log.ParseLevel(config.Default.App.LogLevel) + if err != nil { + log.WithError(err).Fatal("Failed to parse log level.") + } + + log.SetLevel(logLevel) +} + +// Execute adds all child commands to the root command and sets flags appropriately. +// This is called by main.main(). It only needs to happen once to the rootCmd. +func Execute() { + err := rootCmd.Execute() + if err != nil { + os.Exit(1) + } +} diff --git a/internal/processor/fixers.go b/internal/processor/fixers.go new file mode 100644 index 00000000..88c58f56 --- /dev/null +++ b/internal/processor/fixers.go @@ -0,0 +1,185 @@ +package processor + +import ( + "fmt" + "os" + "path/filepath" + "strings" + + "github.com/trustwallet/assets-go-libs/file" + "github.com/trustwallet/assets-go-libs/image" + "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/go-primitives/address" + "github.com/trustwallet/go-primitives/coin" + "github.com/trustwallet/go-primitives/types" + + log "github.com/sirupsen/logrus" +) + +func (s *Service) FixJSON(f *file.AssetFile) error { + return file.FormatJSONFile(f.Path()) +} + +func (s *Service) FixETHAddressChecksum(f *file.AssetFile) error { + if !coin.IsEVM(f.Chain().ID) { + return nil + } + + assetDir := filepath.Base(f.Path()) + + err := validation.ValidateETHForkAddress(f.Chain(), assetDir) + if err != nil { + checksum, e := address.EIP55Checksum(assetDir) + if e != nil { + return fmt.Errorf("failed to get checksum: %s", e) + } + + newName := path.GetAssetPath(f.Chain().Handle, checksum) + + if e = os.Rename(f.Path(), newName); e != nil { + return fmt.Errorf("failed to rename dir: %s", e) + } + + s.fileService.UpdateFile(f, checksum) + + log.WithField("from", assetDir). + WithField("to", checksum). + Debug("Renamed asset") + } + + return nil +} + +func (s *Service) FixLogo(f *file.AssetFile) error { + width, height, err := image.GetPNGImageDimensions(f.Path()) + if err != nil { + return err + } + + var isLogoTooLarge bool + if width > validation.MaxW || height > validation.MaxH { + isLogoTooLarge = true + } + + if isLogoTooLarge { + log.WithField("path", f.Path()).Debug("Fixing too large image") + + targetW, targetH := calculateTargetDimension(width, height) + + err = image.ResizePNG(f.Path(), targetW, targetH) + if err != nil { + return err + } + } + + err = validation.ValidateLogoFileSize(f.Path()) + if err != nil { //nolint:staticcheck + // TODO: Compress images. + } + + return nil +} + +func calculateTargetDimension(width, height int) (targetW, targetH int) { + widthFloat := float32(width) + heightFloat := float32(height) + + maxEdge := widthFloat + if heightFloat > widthFloat { + maxEdge = heightFloat + } + + ratio := validation.MaxW / maxEdge + + targetW = int(widthFloat * ratio) + targetH = int(heightFloat * ratio) + + return targetW, targetH +} + +func (s *Service) FixChainInfoJSON(f *file.AssetFile) error { + var chainInfo info.CoinModel + + err := file.ReadJSONFile(f.Path(), &chainInfo) + if err != nil { + return err + } + + expectedType := string(types.Coin) + if chainInfo.Type == nil || *chainInfo.Type != expectedType { + chainInfo.Type = &expectedType + + data, err := file.PrepareJSONData(&chainInfo) + if err != nil { + return err + } + + return file.CreateJSONFile(f.Path(), data) + } + + return nil +} + +func (s *Service) FixAssetInfo(f *file.AssetFile) error { + var assetInfo info.AssetModel + + err := file.ReadJSONFile(f.Path(), &assetInfo) + if err != nil { + return err + } + + var isModified bool + + // Fix asset type. + var assetType string + if assetInfo.Type != nil { + assetType = *assetInfo.Type + } + + // We need to skip error check to fix asset type if it's incorrect or empty. + chain, _ := types.GetChainFromAssetType(assetType) + + expectedTokenType, ok := types.GetTokenType(f.Chain().ID, f.Asset()) + if !ok { + expectedTokenType = strings.ToUpper(assetType) + } + + // 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. + assetID := f.Asset() + if assetInfo.ID == nil || *assetInfo.ID != assetID { + assetInfo.ID = &assetID + isModified = true + } + + expectedExplorerURL, err := coin.GetCoinExploreURL(f.Chain(), f.Asset(), assetType) + if err != nil { + return err + } + + // Fix asset explorer url. + if assetInfo.Explorer == nil || !strings.EqualFold(expectedExplorerURL, *assetInfo.Explorer) { + assetInfo.Explorer = &expectedExplorerURL + isModified = true + } + + if isModified { + data, err := file.PrepareJSONData(&assetInfo) + if err != nil { + return err + } + + return file.CreateJSONFile(f.Path(), data) + } + + return nil +} diff --git a/internal/processor/model.go b/internal/processor/model.go new file mode 100644 index 00000000..b743a6bf --- /dev/null +++ b/internal/processor/model.go @@ -0,0 +1,51 @@ +package processor + +import ( + "github.com/trustwallet/assets-go-libs/file" +) + +type ( + Validator struct { + Name string + Run func(f *file.AssetFile) error + } + + Fixer struct { + Name string + Run func(f *file.AssetFile) error + } + + Updater struct { + Name string + Run func() error + } +) + +type ( + ForceListPair struct { + Token0 string + Token1 string + } + + TradingPairs struct { + Data struct { + Pairs []TradingPair `json:"pairs"` + } `json:"data"` + } + + TradingPair struct { + ID string `json:"id"` + ReserveUSD string `json:"reserveUSD"` + VolumeUSD string `json:"volumeUSD"` + TxCount string `json:"txCount"` + Token0 *TokenInfo `json:"token0"` + Token1 *TokenInfo `json:"token1"` + } + + TokenInfo struct { + ID string `json:"id"` + Symbol string `json:"symbol"` + Name string `json:"name"` + Decimals string `json:"decimals"` + } +) diff --git a/internal/processor/service.go b/internal/processor/service.go new file mode 100644 index 00000000..c4e2c1fd --- /dev/null +++ b/internal/processor/service.go @@ -0,0 +1,119 @@ +package processor + +import ( + assetsmanager "github.com/trustwallet/assets-go-libs/client/assets-manager" + "github.com/trustwallet/assets-go-libs/file" + "github.com/trustwallet/assets/internal/config" +) + +type Service struct { + fileService *file.Service + assetsManager assetsmanager.Client +} + +func NewService(fileProvider *file.Service) *Service { + return &Service{ + fileService: fileProvider, + assetsManager: assetsmanager.InitClient(config.Default.ClientURLs.AssetsManagerAPI, nil), + } +} + +func (s *Service) GetValidator(f *file.AssetFile) []Validator { + jsonValidator := Validator{Name: "JSON validation", Run: s.ValidateJSON} + + switch f.Type() { + case file.TypeAssetFolder: + return []Validator{ + {Name: "Each asset folder has valid asset address and contains only allowed files", Run: s.ValidateAssetFolder}, + } + case file.TypeChainFolder: + return []Validator{ + {Name: "Chain folders are lowercase and contains only allowed files", Run: s.ValidateChainFolder}, + } + case file.TypeChainInfoFolder: + return []Validator{ + {Name: "Chain Info Folder (has files)", Run: s.ValidateInfoFolder}, + } + case file.TypeDappsFolder: + return []Validator{ + {Name: "Dapps folder contains only allowed png files in lowercase", Run: s.ValidateDappsFolder}, + } + case file.TypeRootFolder: + return []Validator{ + {Name: "Root folder contains only allowed files", Run: s.ValidateRootFolder}, + } + case file.TypeValidatorsAssetFolder: + return []Validator{ + {Name: "Validators asset folder has logo and valid asset address)", Run: s.ValidateValidatorsAssetFolder}, + } + + case file.TypeAssetLogoFile, file.TypeChainLogoFile, file.TypeDappsLogoFile, file.TypeValidatorsLogoFile: + return []Validator{ + {Name: "Logos size and dimension are valid", Run: s.ValidateImage}, + } + case file.TypeAssetInfoFile: + return []Validator{ + jsonValidator, + {Name: "Asset info file is valid", Run: s.ValidateAssetInfoFile}, + } + case file.TypeChainInfoFile: + return []Validator{ + {Name: "Chain info file is valid", Run: s.ValidateChainInfoFile}, + } + case file.TypeTokenListFile: + return []Validator{ + jsonValidator, + {Name: "Tokenlist file is valid", Run: s.ValidateTokenListFile}, + } + case file.TypeTokenListExtendedFile: + return []Validator{ + jsonValidator, + {Name: "Tokenlist Extended file is valid", Run: s.ValidateTokenListExtendedFile}, + } + case file.TypeValidatorsListFile: + return []Validator{ + jsonValidator, + {Name: "Validators list file is valid", Run: s.ValidateValidatorsListFile}, + } + } + + return nil +} + +func (s *Service) GetFixers(f *file.AssetFile) []Fixer { + jsonFixer := Fixer{ + Name: "Formatting all json files", + Run: s.FixJSON, + } + + switch f.Type() { + case file.TypeAssetFolder: + return []Fixer{ + {Name: "Renaming EVM's asset folder to valid address checksum", Run: s.FixETHAddressChecksum}, + } + case file.TypeAssetInfoFile: + return []Fixer{ + jsonFixer, + {Name: "Fixing asset info.json files", Run: s.FixAssetInfo}, + } + case file.TypeChainInfoFile: + return []Fixer{ + jsonFixer, + {Name: "Fixing chain info.json files", Run: s.FixChainInfoJSON}, + } + case file.TypeChainLogoFile, file.TypeAssetLogoFile, file.TypeValidatorsLogoFile, file.TypeDappsLogoFile: + return []Fixer{ + {Name: "Resizing and compressing logo images", Run: s.FixLogo}, + } + case file.TypeValidatorsListFile: + return []Fixer{ + jsonFixer, + } + } + + return nil +} + +func (s *Service) GetUpdatersAuto() []Updater { + return []Updater{} +} diff --git a/internal/processor/validators.go b/internal/processor/validators.go new file mode 100644 index 00000000..61842118 --- /dev/null +++ b/internal/processor/validators.go @@ -0,0 +1,351 @@ +package processor + +import ( + "bytes" + "fmt" + "os" + + "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/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" +) + +func (s *Service) ValidateJSON(f *file.AssetFile) error { + file, err := os.Open(f.Path()) + if err != nil { + return err + } + defer file.Close() + + buf := bytes.NewBuffer(nil) + _, err = buf.ReadFrom(file) + if err != nil { + return err + } + + err = validation.ValidateJSON(buf.Bytes()) + if err != nil { + return err + } + + return nil +} + +func (s *Service) ValidateRootFolder(f *file.AssetFile) error { + dirFiles, err := file.ReadDir(f.Path()) + if err != nil { + return err + } + + err = validation.ValidateAllowedFiles(dirFiles, config.Default.ValidatorsSettings.RootFolder.AllowedFiles) + if err != nil { + return err + } + + return nil +} + +func (s *Service) ValidateChainFolder(f *file.AssetFile) error { + file, err := os.Open(f.Path()) + if err != nil { + return err + } + defer file.Close() + + fileInfo, err := file.Stat() + if err != nil { + return err + } + + var compErr = validation.NewErrComposite() + + err = validation.ValidateLowercase(fileInfo.Name()) + if err != nil { + compErr.Append(err) + } + + dirFiles, err := file.ReadDir(0) + if err != nil { + return err + } + + err = validation.ValidateAllowedFiles(dirFiles, config.Default.ValidatorsSettings.ChainFolder.AllowedFiles) + if err != nil { + compErr.Append(err) + } + + if compErr.Len() > 0 { + return compErr + } + + return nil +} + +func (s *Service) ValidateImage(f *file.AssetFile) error { + var compErr = validation.NewErrComposite() + + err := validation.ValidateLogoFileSize(f.Path()) + if err != nil { + compErr.Append(err) + } + + // TODO: Replace it with validation.ValidatePngImageDimension when "assets" repo is fixed. + // Read comments in ValidatePngImageDimensionForCI. + err = validation.ValidatePngImageDimensionForCI(f.Path()) + if err != nil { + compErr.Append(err) + } + + if compErr.Len() > 0 { + return compErr + } + + return nil +} + +func (s *Service) ValidateAssetFolder(f *file.AssetFile) error { + dirFiles, err := file.ReadDir(f.Path()) + if err != nil { + return err + } + + var compErr = validation.NewErrComposite() + + err = validation.ValidateAllowedFiles(dirFiles, config.Default.ValidatorsSettings.AssetFolder.AllowedFiles) + if err != nil { + compErr.Append(err) + } + + err = validation.ValidateAssetAddress(f.Chain(), f.Asset()) + if err != nil { + compErr.Append(err) + } + + errInfo := validation.ValidateHasFiles(dirFiles, []string{"info.json"}) + errLogo := validation.ValidateHasFiles(dirFiles, []string{"logo.png"}) + + if errLogo != nil || errInfo != nil { + assetInfoPath := path.GetAssetInfoPath(f.Chain().Handle, f.Asset()) + + var infoJson info.AssetModel + if err = file.ReadJSONFile(assetInfoPath, &infoJson); err != nil { + return err + } + + if infoJson.GetStatus() != "spam" && infoJson.GetStatus() != "abandoned" { + compErr.Append(fmt.Errorf("%w: logo.png for non-spam assest", validation.ErrMissingFile)) + } + } + + if compErr.Len() > 0 { + return compErr + } + + return nil +} + +func (s *Service) ValidateDappsFolder(f *file.AssetFile) error { + dirFiles, err := file.ReadDir(f.Path()) + if err != nil { + return err + } + + var compErr = validation.NewErrComposite() + + for _, dirFile := range dirFiles { + err = validation.ValidateExtension(dirFile.Name(), config.Default.ValidatorsSettings.DappsFolder.Ext) + if err != nil { + compErr.Append(err) + } + + err = validation.ValidateLowercase(dirFile.Name()) + if err != nil { + compErr.Append(err) + } + } + + if compErr.Len() > 0 { + return compErr + } + + return nil +} + +func (s *Service) ValidateChainInfoFile(f *file.AssetFile) error { + var coinInfo info.CoinModel + if err := file.ReadJSONFile(f.Path(), &coinInfo); err != nil { + return err + } + + receivedTags, err := s.assetsManager.GetTagValues() + if err != nil { + return fmt.Errorf("failed to get tag values: %w", err) + } + + tags := make([]string, len(receivedTags.Tags)) + for i, t := range receivedTags.Tags { + tags[i] = t.ID + } + + err = info.ValidateCoin(coinInfo, tags) + if err != nil { + return err + } + + return nil +} + +func (s *Service) ValidateAssetInfoFile(f *file.AssetFile) error { + var assetInfo info.AssetModel + if err := file.ReadJSONFile(f.Path(), &assetInfo); 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 +} + +func (s *Service) ValidateValidatorsListFile(f *file.AssetFile) error { + if !isStackingChain(f.Chain()) { + return nil + } + + var model []list.Model + if err := file.ReadJSONFile(f.Path(), &model); err != nil { + return err + } + + err := list.ValidateList(model) + if err != nil { + return err + } + + listIDs := make([]string, len(model)) + for i, listItem := range model { + listIDs[i] = *listItem.ID + } + + assetsPath := path.GetValidatorAssetsPath(f.Chain().Handle) + assetFolder := s.fileService.GetAssetFile(assetsPath) + + dirFiles, err := file.ReadDir(assetFolder.Path()) + if err != nil { + return err + } + + err = validation.ValidateAllowedFiles(dirFiles, listIDs) + if err != nil { + return err + } + + return nil +} + +func isStackingChain(c coin.Coin) bool { + for _, stackingChain := range config.StackingChains { + if c.ID == stackingChain.ID { + return true + } + } + + return false +} + +func (s *Service) ValidateTokenListFile(f *file.AssetFile) error { + tokenListPath := f.Path() + tokenListExtendedPath := path.GetTokenListPath(f.Chain().Handle, path.TokenlistExtended) + + return validateTokenList(tokenListPath, tokenListExtendedPath, f.Chain()) +} + +func (s *Service) ValidateTokenListExtendedFile(f *file.AssetFile) error { + tokenListPathExtended := f.Path() + tokenListPath := path.GetTokenListPath(f.Chain().Handle, path.TokenlistDefault) + + return validateTokenList(tokenListPathExtended, tokenListPath, f.Chain()) +} + +func validateTokenList(path1, path2 string, chain1 coin.Coin) error { + var tokenList1 tokenlist.Model + err := file.ReadJSONFile(path1, &tokenList1) + if err != nil { + return err + } + + if file.Exists(path2) { + var tokenList2 tokenlist.Model + err = file.ReadJSONFile(path2, &tokenList2) + if err != nil { + return err + } + + tokensMap := make(map[string]bool) + for _, token := range tokenList2.Tokens { + tokensMap[token.Asset] = true + } + + for _, token := range tokenList1.Tokens { + if _, exists := tokensMap[token.Asset]; exists { + return fmt.Errorf("duplicate asset: %s from %s, already exist in %s", + token.Asset, path1, path2) + } + } + } + + err = tokenlist.ValidateTokenList(tokenList1, chain1, path1) + if err != nil { + return err + } + + return nil +} + +func (s *Service) ValidateInfoFolder(f *file.AssetFile) error { + dirFiles, err := file.ReadDir(f.Path()) + if err != nil { + return err + } + + err = validation.ValidateHasFiles(dirFiles, config.Default.ValidatorsSettings.ChainInfoFolder.HasFiles) + if err != nil { + return err + } + + return nil +} + +func (s *Service) ValidateValidatorsAssetFolder(f *file.AssetFile) error { + dirFiles, err := file.ReadDir(f.Path()) + if err != nil { + return err + } + + compErr := validation.NewErrComposite() + err = validation.ValidateValidatorsAddress(f.Chain(), f.Asset()) + if err != nil { + compErr.Append(err) + } + + err = validation.ValidateHasFiles(dirFiles, config.Default.ValidatorsSettings.ChainValidatorsAssetFolder.HasFiles) + if err != nil { + compErr.Append(err) + } + + if compErr.Len() > 0 { + return compErr + } + + return nil +} diff --git a/internal/report/service.go b/internal/report/service.go new file mode 100644 index 00000000..543640ad --- /dev/null +++ b/internal/report/service.go @@ -0,0 +1,28 @@ +package report + +import "fmt" + +type Service struct { + errors int + totalFiles int +} + +func NewService() *Service { + return &Service{} +} + +func (s *Service) IncErrors() { + s.errors += 1 +} + +func (s *Service) IncTotalFiles() { + s.totalFiles += 1 +} + +func (s Service) IsFailed() bool { + return s.errors > 0 +} + +func (s Service) GetReport() string { + return fmt.Sprintf("Total files: %d, errors: %d", s.totalFiles, s.errors) +} diff --git a/internal/service/service.go b/internal/service/service.go new file mode 100644 index 00000000..e9cd3138 --- /dev/null +++ b/internal/service/service.go @@ -0,0 +1,105 @@ +package service + +import ( + "github.com/trustwallet/assets-go-libs/file" + "github.com/trustwallet/assets-go-libs/validation" + "github.com/trustwallet/assets/internal/processor" + "github.com/trustwallet/assets/internal/report" + + log "github.com/sirupsen/logrus" +) + +type Service struct { + fileService *file.Service + processorService *processor.Service + reportService *report.Service + paths []string +} + +func NewService(fs *file.Service, cs *processor.Service, rs *report.Service, paths []string) *Service { + return &Service{ + fileService: fs, + processorService: cs, + reportService: rs, + paths: paths, + } +} + +func (s *Service) RunJob(job func(*file.AssetFile)) { + for _, path := range s.paths { + f := s.fileService.GetAssetFile(path) + s.reportService.IncTotalFiles() + job(f) + } + + reportMsg := s.reportService.GetReport() + if s.reportService.IsFailed() { + log.Fatal(reportMsg) + } else { + log.Info(reportMsg) + } +} + +func (s *Service) Check(f *file.AssetFile) { + validators := s.processorService.GetValidator(f) + + for _, validator := range validators { + if err := validator.Run(f); err != nil { + s.handleError(err, f, validator.Name) + } + } +} + +func (s *Service) Fix(f *file.AssetFile) { + fixers := s.processorService.GetFixers(f) + + for _, fixer := range fixers { + if err := fixer.Run(f); err != nil { + s.handleError(err, f, fixer.Name) + } + } +} + +func (s *Service) RunUpdateAuto() { + updaters := s.processorService.GetUpdatersAuto() + s.runUpdaters(updaters) +} + +func (s *Service) runUpdaters(updaters []processor.Updater) { + for _, updater := range updaters { + err := updater.Run() + if err != nil { + log.WithError(err).Error() + } + } +} + +func (s *Service) handleError(err error, info *file.AssetFile, valName string) { + errors := UnwrapComposite(err) + + for _, err := range errors { + log.WithFields(log.Fields{ + "type": info.Type(), + "chain": info.Chain().Handle, + "asset": info.Asset(), + "path": info.Path(), + "validation": valName, + }).Error(err) + + s.reportService.IncErrors() + } +} + +func UnwrapComposite(err error) []error { + compErr, ok := err.(*validation.ErrComposite) + if !ok { + return []error{err} + } + + var errors []error + for _, e := range compErr.GetErrors() { + errors = append(errors, UnwrapComposite(e)...) + } + + return errors +}